diff --git a/.github/workflows/deploy-gh-pages.yml b/.github/workflows/deploy-gh-pages.yml index 62abc5ae..7d7f9c94 100644 --- a/.github/workflows/deploy-gh-pages.yml +++ b/.github/workflows/deploy-gh-pages.yml @@ -34,6 +34,8 @@ jobs: with: cache-disabled: true - name: Build wasm target + env: + PROJECT_BUILD_TYPE: release run: ./gradlew :gallery:wasmJsBrowserDistribution - name: Setup Pages uses: actions/configure-pages@v5 diff --git a/.github/workflows/gradle-publish.yml b/.github/workflows/gradle-publish.yml index 5ad27310..1c7ff341 100644 --- a/.github/workflows/gradle-publish.yml +++ b/.github/workflows/gradle-publish.yml @@ -37,10 +37,10 @@ jobs: - name: Publish to Maven Central uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1 with: - arguments: publish + arguments: publishToMavenCentral --no-configuration-cache env: - OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }} - OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} - SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }} - SIGNING_KEY: ${{ secrets.SIGNING_KEY }} - SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }} + ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.MAVEN_CENTRAL_USERNAME }} + ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MAVEN_CENTRAL_PASSWORD }} + ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.MAVEN_SIGNING_KEY }} + ORG_GRADLE_PROJECT_signingInMemoryKeyId: ${{ secrets.MAVEN_SIGNING_KEY_ID }} + ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.MAVEN_SIGNING_PASSWORD }} diff --git a/.github/workflows/multiplatform_snapshot_build.yml b/.github/workflows/multiplatform_snapshot_build.yml new file mode 100644 index 00000000..5967e0b0 --- /dev/null +++ b/.github/workflows/multiplatform_snapshot_build.yml @@ -0,0 +1,160 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. +# This workflow will build a package using Gradle and then publish it to GitHub packages when a release is created +# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#Publishing-using-gradle + +name: Multiplatform Snapshot Build + +on: + push: + branches: + - dev + paths-ignore: + - 'assets/**' + - '**.md' + - 'LICENSE' + - '**.gitignore' + + pull_request_review: + types: submitted + +jobs: + build: + strategy: + matrix: + type: [PublishLibrary, Android, Windows, Linux, macOS, iOS, WasmJs, Js] + include: + - type: PublishLibrary + publish: release + os: macos-latest + - type: Android + android: apk + os: ubuntu-latest + - type: Windows + desktop: msi + os: windows-latest + - type: Linux + desktop: deb + os: ubuntu-latest + - type: macOS + desktop: dmg + os: macos-latest + - type: iOS + iOS: ipa + # workaround runner version for iPhoneOS sdk 18.2 + os: macos-15 + - type: WasmJs + js: wasmJs + os: windows-latest + - type: Js + js: js + os: ubuntu-latest + + runs-on: ${{ matrix.os }} + if: ${{ github.event_name != 'pull_request_review' || github.event.review.state == 'approved' }} + permissions: + contents: read + packages: write + + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + ref: ${{ github.ref }} + - name: Set up JDK 17 + uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'temurin' + + # Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies. + # See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md + - name: Setup Gradle + uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0 + + # Publish Snapshot Library + - name: Publish Library + if: ${{ github.ref == 'refs/heads/dev' && github.event_name == 'push' && matrix.type == 'PublishLibrary' }} + run: | + ./gradlew publishToMavenLocal + ./gradlew publishToMavenCentral --no-configuration-cache + env: + ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.MAVEN_CENTRAL_USERNAME }} + ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MAVEN_CENTRAL_PASSWORD }} + ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.MAVEN_SIGNING_KEY }} + ORG_GRADLE_PROJECT_signingInMemoryKeyId: ${{ secrets.MAVEN_SIGNING_KEY_ID }} + ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.MAVEN_SIGNING_PASSWORD }} + + - name: Upload Library Artifact + if: ${{ github.event_name == 'push' && matrix.type == 'PublishLibrary' }} + uses: actions/upload-artifact@v4 + with: + name: Repository-${{ github.run_id }} + path: ~/.m2/repository + + # Android Build Action + - name: Build Gallery for ${{ matrix.type }} + if: ${{ matrix.android }} + run: | + echo "$ANDROID_KEYSTORE" | base64 --decode > ${{ github.workspace }}/android_sign_key.jks + ./gradlew :gallery:assembleRelease + env: + ANDROID_KEYSTORE: ${{ secrets.ANDROID_KEYSTORE }} + ANDROID_SIGNING_FILE: ${{ github.workspace }}/android_sign_key.jks + ANDROID_SIGNING_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }} + ANDROID_SIGNING_KEY_ALIAS: ${{ secrets.KEY_ALIAS }} + ANDROID_SIGNING_KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }} + + - name: Upload android build artifacts + if: ${{ matrix.android }} + uses: actions/upload-artifact@v4 + with: + name: Gallery-${{ matrix.type }}-${{ github.run_id }} + path: ${{github.workspace}}/gallery/build/outputs/**/*.${{ matrix.android }} + + # Desktop Build Action + - name: Build Gallery for ${{ matrix.type }} + if: ${{ matrix.desktop }} + run: | + ./gradlew :gallery:packageReleaseDistributionForCurrentOS + + - name: Upload desktop build artifacts + if: ${{ matrix.desktop }} + uses: actions/upload-artifact@v4 + with: + name: Gallery-${{ matrix.type }}-${{ github.run_id }} + path: ${{github.workspace}}/gallery/build/compose/binaries/main-release/${{ matrix.desktop }}/*.${{ matrix.desktop }} + + # iOS Build Action, Note: Due to the long build time, the iOS build only build the debug version. + - name: Set up Xcode + if: ${{ matrix.iOS }} + uses: maxim-lobanov/setup-xcode@v1 + with: + xcode-version: 'latest-stable' + + - name: Build Gallery for iOS + if: ${{ matrix.iOS }} + run: | + xcodebuild -scheme iosApp -configuration Debug -sdk iphoneos -archivePath gallery/iosApp/build/Gallery.xcarchive archive -workspace gallery/iosApp/iosApp.xcodeproj/project.xcworkspace CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO + + - name: Upload iOS Artifact + if: ${{ matrix.iOS }} + uses: actions/upload-artifact@v4 + with: + name: Gallery-${{ matrix.type }}-${{ github.run_id }} + path: ${{ github.workspace }}/gallery/iosApp/build/ + + # Js and WasmJs Build Action + - name: Build Gallery for ${{ matrix.type }} + if: ${{ matrix.js }} + run: | + ./gradlew :gallery:${{ matrix.js }}BrowserDistribution + + - name: Upload ${{ matrix.type }} build artifacts + if: ${{ matrix.js }} + uses: actions/upload-artifact@v4 + with: + name: Gallery-${{ matrix.type }}-${{ github.run_id }} + path: ./gallery/build/dist/${{ matrix.js }}/productionExecutable diff --git a/CONTRIBUTION.md b/CONTRIBUTION.md new file mode 100644 index 00000000..ac4ab18e --- /dev/null +++ b/CONTRIBUTION.md @@ -0,0 +1,149 @@ +# Contributing to Compose-Fluent-UI + +Hello and welcome! 🎉 + +**Our project components are designed using the [Windows UI Kit Figma guidelines](https://www.figma.com/community/file/1440832812269040007/windows-ui-kit). Therefore, the layout and style of the components must strictly adhere to this design guide. Additionally, the components showcased in the Gallery should align as closely as possible with this design guide.** + +We are thrilled to have you considering contributing to Compose-Fluent-UI. Contributions are what make the open-source community such an incredible place to learn, inspire, and create. Here are some guidelines to help you get started: + +## Getting Started + +- **Fork this repository**: Click on the "Fork" button at the top right of this page. This will create a copy of the repository in your account. +- **Select the Dev branch**: Choose the `dev` branch as your base branch. +- **Create a new branch**: Create a new branch from `dev` for your feature or bug fix using `git checkout -b your-branch-name`. +- **Base all development work on your new branch**: Ensure that all your development work is committed to the branch you just created from `dev`. + +## Developing Components + +- **Create the source code**: In the `fluent/components` directory, create the source code for the component that corresponds to the Windows UI Kit. +```Kotlin +// Button.kt +package io.github.composefluent.components +``` +- **Handle internal classes**: If your component involves internal classes that may be used by other components (such as `OverflowRow`), create the relevant classes in the appropriate package (e.g., `/layout`). +```Kotlin +// OverflowRow.kt +package io.github.composefluent.layout.overflow + +@Composable +internal fun OverflowRow( + modifier: Modifier = Modifier, + overflow: OverflowPosition = OverflowPosition.End, + state: OverflowRowState = rememberOverflowRowState(), + horizontalArrangement: Arrangement.Horizontal = Arrangement.Start, + verticalAlignment: Alignment.Vertical = Alignment.CenterVertically, + overflowAction: @Composable OverflowActionScope.() -> Unit = {}, + contentPadding: PaddingValues = PaddingValues(), + alwaysShowOverflowAction: Boolean = false, + content: OverflowRowScope.() -> Unit +) +``` +- **Adhere to guidelines**: When developing, strictly follow the Windows UI Kit for layout, typography, and color. +- **Include TODOs for animations**: If your component involves animations and you're unsure of the specific parameters to use, add a `TODO` note. + +## Testing and Showcasing Components + +The Gallery app uses KSP and KotlinPoet to automatically generate a navigation tree and Kotlin example source code. Below are the steps to add a component example page in the Gallery: + +1. **Create [YourComponent]Screen.kt**: In the package corresponding to the component group, create a `[YourComponent]Screen.kt` file. +```Kotlin +// ButtonScreen.kt +package io.github.composefluent.gallery.screen.basicinput +``` +2. **Create a method with @Component annotation**: Create a method named `[YourComponent]Screen` and annotate it with `@Component`, providing the relevant `description` and `index`. +```Kotlin +// ButtonScreen.kt +@Component(index = 0, description = "A control that responds to user input") +@Composable +fun ButtonScreen() { + +} +``` + +3. **Use GalleryPage method**: In this method, use the `GalleryPage` method to create a uniform component example page layout. The `GalleryPage` method takes `componentPath` and `galleryPath` as parameters, which are provided by the `FluentSourceFile` and `ComponentPagePath` classes generated by KSP, indicating the source code path of the component and the corresponding Gallery example code path. +```Kotlin +// ButtonScreen.kt +@Component(index = 0, description = "A control that responds to user input") +@Composable +fun ButtonScreen() { + GalleryPage( + componentPath = FluentSourceFile.Button, + galleryPath = ComponentPagePath.ButtonScreen, + ) { + // Sample sections. + } +} +``` +4. **Use Section method in GalleryPage**: Within `GalleryPage`, use the `Section` method for each component example. The `Section` method provides `output` and `options` parameters for adjusting options and display output. The `sourceCode` parameter should be the global variable generated by the `@Sample` annotation (which contains the component source code). +```Kotlin +// ButtonScreen.kt +@Component(index = 0, description = "A control that responds to user input") +@Composable +fun ButtonScreen() { + GalleryPage( + componentPath = FluentSourceFile.Button, + galleryPath = ComponentPagePath.ButtonScreen, + ) { + val clickTextContent = remember { mutableStateOf("") } + val buttonEnabled = remember { mutableStateOf(true) } + Section( + title = "A simple Button with text content.", + content = { + ButtonSample(enabled = buttonEnabled.value) { clickTextContent.value = "You clicked: Button 1" } + }, + output = { + if (clickTextContent.value.isNotBlank()) { + Text(clickTextContent.value) + } + }, + options = { + CheckBox( + checked = !buttonEnabled.value, + onCheckStateChange = { buttonEnabled.value = !it }, + label = "Disable button" + ) + }, + sourceCode = sourceCodeOfButtonSample + ) + } +} +``` +5. **Create an example**: In the `[YourComponent]Screen.kt` file, add a new method named `[YourComponentCase]Sample` with a private visibility modifier, and annotate this method with `@Sample`. This will generate a global variable `sourceCodeOf[YourComponentCase]Sample`, which should be assigned to the `sourceCode` parameter in the corresponding `Section`. +```Kotlin +//ButtonScreen.kt +@Sample +@Composable +private fun ButtonSample(enabled: Boolean = true, onClick: () -> Unit) { + Button(disabled = !enabled, onClick = onClick) { + Text("Standard Compose Button") + } +} +``` +6. **Add new groups if needed**: If you cannot find the appropriate group for the component, add a new group in the `ComponentGroupInfo` object, following the format of the existing groups. After adding the group, place the Screen file in the corresponding package. +```Kotlin +// ComponentGrupInfo.kt +package io.github.composefluent.gallery.component + +object ComponentGroupInfo { + prival const val screenPackage: String = "io.github.composefluent.gallery.screen" + + // Basic Input is group name, ChckboxChecked is icon, packageMap is the component screens under this group were placed, like ButtonScreen + @ComponentGroup("CheckboxChecked", index = 2, packageMap = "$screenPackage.basicinput") + const val BasicInput = "Basic input" + + //other groups + //.... +} +``` + +7. At the end, you should see the component example page you've created in the Gallery, ready for demonstration and testing. +![Sample Page](/assets/sample_page_screenshot.png) + +8. **Debugging components with scale mode if needed**: If you need to debug your component with scale mode, you can test it in `TestComponentScreen`. Navigate to this test page in the Gallery app through `Settings > Test Component`. +![Test Component Screen](/assets/test_component_screenshot.png) + +## Need Help? + +If you have any questions or need assistance, feel free to open an issue or reach out to the maintainers. We’re here to help! + +Thank you for considering contributing to **Compose-Fluent-UI**. We can’t wait to see what you’ll create! \ No newline at end of file diff --git a/README.md b/README.md index e677d5dc..a3b85c58 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,11 @@

Compose Fluent logo Compose Fluent

-[![License](https://img.shields.io/github/license/Konyaco/compose-fluent-ui)](LICENSE) -[![Version](https://img.shields.io/github/v/release/Konyaco/compose-fluent-ui?include_prereleases)](https://github.com/Konyaco/compose-fluent-ui/releases) -[![Maven Central](https://img.shields.io/maven-central/v/com.konyaco/fluent)](https://central.sonatype.com/artifact/com.konyaco/fluent/) +[![License](https://img.shields.io/github/license/compose-fluent/compose-fluent-ui)](LICENSE) +[![Version](https://img.shields.io/github/v/release/compose-fluent/compose-fluent-ui?include_prereleases)](https://github.com/compose-fluent/compose-fluent-ui/releases) +[![Maven Central](https://img.shields.io/maven-central/v/io.github.compose-fluent/fluent)](https://central.sonatype.com/artifact/io.github.compose-fluent/fluent/) +[![Telegram Link](https://img.shields.io/badge/Telegram-compose__fluent__ui-blue?logo=telegram&logoColor=fff)](https://t.me/compose_fluent_ui) +[//]: # ([![Snapshot](https://img.shields.io/nexus/s/io.github.compose-fluent/fluent?server=https%3A%2F%2Fcentral.sonatype.com&label=snapshot)](https://central.sonatype.com/service/rest/repository/browse/maven-snapshots/io/github/compose-fluent)) **Fluent Design** UI library for **Compose Multiplatform** @@ -17,20 +19,51 @@ Please note that there are lots of hard-coding and workarounds in our source cod Thank you for using our library. We look forward to receiving your feedback and contributions! +### Supported Kotlin Targets + +| Target | Platform | +|:------------------|:----------------------| +| desktop | Linux, macOS, Windows | +| iosX64 | iPhone, iPad | +| iosArm64 | iPhone, iPad | +| iosSimulatorArm64 | iOS Simulator | +| androidTarget | Android Devices | +| wasmJs | Web Browsers | +| js | Web Browsers | ## Quick Start ### Add Dependency ```kts -implementation("com.konyaco:fluent:0.0.1-dev.8") -implementation("com.konyaco:fluent-icons-extended:0.0.1-dev.8") // If you want to use full fluent icons. +implementation("io.github.compose-fluent:fluent:0.0.1-dev.8") +implementation("io.github.compose-fluent:fluent-icons-extended:0.0.1-dev.8") // If you want to use full fluent icons. +``` + +#### Snapshot Versions + +Snapshot versions are automatically published from the `dev` branch. To access snapshot artifacts, add the Sonatype snapshot repository to your `build.gradle.kts`: + +```kotlin +repositories { + mavenCentral() + // Add Sonatype snapshots repository + maven("https://central.sonatype.com/repository/maven-snapshots/") +} ``` +Then specify the snapshot dependency with the `-SNAPSHOT` suffix: + +```kotlin +implementation("io.github.compose-fluent:fluent:0.1.0-SNAPSHOT") +``` + +You can check our latest snapshots at [Maven Central](https://central.sonatype.com/artifact/io.github.compose-fluent/fluent/). + ### Example ```kotlin -import com.konyaco.fluent.component.* +import io.github.composefluent.component.* @Composable fun App() { @@ -51,70 +84,89 @@ See [`gallery`](gallery) module for more details. - Components are under `component` package - `Mica` and `Layer` are under `background` package -## License - -This library is under Apache-2.0 license. - -The copyright of the icon assets (in `com.konyaco.fluent.icons` package) belongs to Microsoft. - ## Components ### Layers - +- Materials + - [x] App Layer Mica + - [x] App Layer Mica Alt + - [x] App Layer Acrylic Default + - [x] App Layer Acrylic Base + - [x] App Layer Accent Acrylic Default + - [x] App Layer Accent Acrylic Base + - [x] App Layer Thin Acrylic + - [ ] Window Layer Mica + - [ ] Window Layer Acrylic - Mica - [x] Simple Mica - [ ] Real Mica - Layer - [x] Simple Layer - [ ] Real Layer -- [x] Acrylic - [x] Card ### Basic Components - [x] Buttons - [x] Button - - [x] AccentButton - - [x] SubtleButton - - [x] DropdownButton - - [x] HyperlinkButton - - [x] RepeatButton - - [x] ToggleButton - - [x] SplitButton - - [x] ToggleSplitButton -- [x] RadioButton -- [x] ToggleSwitch -- [x] CheckBox - - [ ] TriStateCheckBox -- [x] ComboBox (Simple) -- [x] ProgressBar -- [x] ProgressRing + - [x] Accent Button + - [x] Subtle Button + - [x] Dropdown Button + - [x] Hyperlink Button + - [x] Repeat Button + - [x] Toggle Button + - [x] Split Button + - [x] Toggle Split Button +- [x] Radio Button +- [x] Toggle Switch +- [x] Check Box + - [ ] TriState Check Box +- [x] Combo Box (Simple) +- [x] Progress Bar +- [x] Progress Ring - [x] Slider -- [x] TextField +- [x] Text Field +- [X] Text -- [x] ColorPicker -- [x] RatingControl -- [ ] Pill Button +- [x] Color Picker +- [x] Rating Control +- [x] Pill Button +- [x] Segmented Button +- [x] Lite Filter +- [x] List Item +- [x] Grid View Item +- [x] Flip View +- [x] Pips Pager ### Compound Components -- [x] CalendarView (Simple) -- [x] DateTimePicker (Simple) +- [x] Calendar View (Simple) + > If you need running on the Android 7.1 and below, you should enable [core library desugar](https://developer.android.com/studio/write/java8-support#library-desugaring) to avoid crash. +- [x] Date Time Picker (Simple) - [x] Color Picker - [ ] Navigation - - [x] SideNav - - [ ] BreadcrumbBar + - [x] Side Nav + - [x] Top Nav + - [x] Navigation View + - [x] Breadcrumb Bar - [ ] Pivot - - [ ] TabView -- [ ] Tooltip -- [ ] InfoBar -- [ ] FilePicker -- [ ] Menu + - [x] Tab View + - [x] Selector Bar +- [x] Tooltip +- [x] Info Bar +- [x] Badge +- [ ] File Picker +- [x] Menu Bar (Simple) +- [x] MenuFlyout (Simple) +- [x] Expander +- [x] Command Bar +- [x] Command Bar Flyout +- [x] Auto Suggest Box ### Dialogs -- [x] FluentDialog -- [x] ContentDialog +- [x] Fluent Dialog +- [x] Content Dialog - [x] Flyout (Simple) ### Animations @@ -129,3 +181,44 @@ The copyright of the icon assets (in `com.konyaco.fluent.icons` package) belongs ### Accessibility - [ ] Accessibility Semantics + +## Contribution + +See [CONTRIBUTION.md](CONTRIBUTION.md) + +## License + +This library is licensed under the Apache License 2.0. + +The copyright of the icon assets (in `io.github.composefluent.icons` package) belongs to Microsoft. + +## Credits + +This project is built upon the foundations laid by several remarkable open-source projects. We extend our sincere gratitude to the developers and maintainers of these projects for their invaluable contributions to the open-source community. + +### Fluent + +| Project | Description | License | +|---|---|---| +| **[Windows UI Kit (Figma)](https://www.figma.com/community/file/1440832812269040007/windows-ui-kit)** | Provided design mockups for controls. | [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) | +| [JetBrains/compose-multiplatform](https://github.com/JetBrains/compose-multiplatform) | Provides the fundamental framework for Compose Multiplatform development. | [Apache License 2.0](https://github.com/JetBrains/compose-multiplatform/blob/master/LICENSE.txt) | +| [Kotlin/kotlinx-datetime](https://github.com/Kotlin/kotlinx-datetime) | Provides a unified clock API. | [Apache License 2.0](https://github.com/Kotlin/kotlinx-datetime/blob/master/LICENSE.txt) | +| [chrisbanes/haze](https://github.com/chrisbanes/haze) | Offers essential implementations for acrylic and mica effects. | [Apache License 2.0](https://github.com/chrisbanes/haze/blob/main/LICENSE) | + +### Fluent-Icons +| Project | Description | License | +|---|---|---| +| [microsoft/fluentui-system-icons](https://github.com/microsoft/fluentui-system-icons) | Supplies the icon assets used in the project. | [MIT License](https://github.com/microsoft/fluentui-system-icons/blob/main/LICENSE) | +| [DevSrSouza/svg-to-compose](https://github.com/DevSrSouza/svg-to-compose) | Facilitates the conversion of SVG icons to Compose icons, aiding in the implementation of Fluent icons. | [MIT License](https://github.com/DevSrSouza/svg-to-compose/blob/master/LICENSE) | + +### Gallery +| Project | Description | License | +|---|---|---| +| [lhwdev/compose-window](https://github.com/lhwdev/compose-window) | Provides guidance on passing pointer events back to the parent window. | [Apache License 2.0](https://github.com/lhwdev/compose-window/blob/main/LICENSE) | +| [grassator/win32-window-custom-titlebar](https://github.com/grassator/win32-window-custom-titlebar) | Demonstrates how to hide the Windows title bar. | [MIT License](https://github.com/grassator/win32-window-custom-titlebar/blob/master/LICENSE) | +| [MayakaApps/ComposeWindowStyler](https://github.com/MayakaApps/ComposeWindowStyler) | Enables mica window backgrounds on Windows. | [MIT License](https://github.com/MayakaApps/ComposeWindowStyler/blob/main/LICENSE) | +| [java-native-access/jna](https://github.com/java-native-access/jna) | Provides the capability to interact with Win32 APIs, enabling title bar customization. | [Apache License 2.0](https://github.com/java-native-access/jna/blob/master/LICENSE) | +| [google/ksp](https://github.com/google/ksp) | Along with KotlinPoet, helps with source code generation for examples and navigation logic. | [Apache License 2.0](https://github.com/google/ksp/blob/main/LICENSE) | +| [square/kotlinpoet](https://github.com/square/kotlinpoet) | Along with KSP, helps with source code generation for examples and navigation logic. | [Apache License 2.0](https://github.com/square/kotlinpoet/blob/main/LICENSE.txt) | +| [SnipMeDev/Highlights](https://github.com/SnipMeDev/Highlights) | Enables syntax highlighting for example code. | [Apache License 2.0](https://github.com/SnipMeDev/Highlights/blob/main/LICENSE) | +| [yshrsmz/BuildKonfig](https://github.com/yshrsmz/BuildKonfig) | Facilitates the generation of build configuration parameter classes. | [Apache License 2.0](https://github.com/yshrsmz/BuildKonfig/blob/master/LICENSE) | diff --git a/assets/sample_page_screenshot.png b/assets/sample_page_screenshot.png new file mode 100644 index 00000000..91657f42 Binary files /dev/null and b/assets/sample_page_screenshot.png differ diff --git a/assets/screenshot.png b/assets/screenshot.png index e4380cce..e292b786 100644 Binary files a/assets/screenshot.png and b/assets/screenshot.png differ diff --git a/assets/test_component_screenshot.png b/assets/test_component_screenshot.png new file mode 100644 index 00000000..03af8b72 Binary files /dev/null and b/assets/test_component_screenshot.png differ diff --git a/build-plugin/build.gradle.kts b/build-plugin/build.gradle.kts index 362af2cb..9a65906a 100644 --- a/build-plugin/build.gradle.kts +++ b/build-plugin/build.gradle.kts @@ -5,11 +5,23 @@ plugins { repositories { mavenCentral() + google() } dependencies { implementation(gradleApi()) + implementation(kotlin("gradle-plugin", libs.versions.kotlin.get())) + gradlePluginImplementation(libs.plugins.android.kotlin.multiplatform.library.get()) + gradlePluginImplementation(libs.plugins.maven.publish.get()) +} + +fun DependencyHandler.gradlePluginImplementation(plugin: PluginDependency) { + implementation( + group = plugin.pluginId, + name = "${plugin.pluginId}.gradle.plugin", + version = plugin.version.toString() + ) } kotlin { @@ -23,8 +35,8 @@ kotlin { gradlePlugin { plugins { create("BuildPlugin") { - id = "com.konyaco.fluent.plugin.build" - implementationClass = "com.konyaco.fluent.plugin.build.BuildPlugin" + id = "io.github.composefluent.plugin.build" + implementationClass = "io.github.composefluent.plugin.build.BuildPlugin" } } } \ No newline at end of file diff --git a/build-plugin/src/main/java/com/konyaco/fluent/plugin/build/BuildConfig.kt b/build-plugin/src/main/java/com/konyaco/fluent/plugin/build/BuildConfig.kt deleted file mode 100644 index 301ac7e0..00000000 --- a/build-plugin/src/main/java/com/konyaco/fluent/plugin/build/BuildConfig.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.konyaco.fluent.plugin.build - -import org.gradle.api.JavaVersion - -object BuildConfig { - - const val group = "com.konyaco" - - const val packageName = "$group.fluent" - - const val libraryVersion = "0.0.1-dev.8" - - object Android { - const val compileSdkVersion = 34 - - const val minSdkVersion = 24 - } - - object Jvm { - const val jvmToolchainVersion = 17 - val javaVersion = JavaVersion.VERSION_17 - } -} \ No newline at end of file diff --git a/build-plugin/src/main/java/com/konyaco/fluent/plugin/build/BuildExtension.kt b/build-plugin/src/main/java/com/konyaco/fluent/plugin/build/BuildExtension.kt deleted file mode 100644 index ea279ed4..00000000 --- a/build-plugin/src/main/java/com/konyaco/fluent/plugin/build/BuildExtension.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.konyaco.fluent.plugin.build - -import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl -import org.jetbrains.kotlin.gradle.dsl.KotlinMultiplatformExtension - -@OptIn(ExperimentalWasmDsl::class) -fun KotlinMultiplatformExtension.applyTargets(publish: Boolean = true) { - jvm("desktop") - androidTarget { - if (publish) publishLibraryVariants("release") - } - jvmToolchain(BuildConfig.Jvm.jvmToolchainVersion) - wasmJs { browser() } - js { browser() } - iosX64() - iosArm64() - iosSimulatorArm64() -} \ No newline at end of file diff --git a/build-plugin/src/main/java/com/konyaco/fluent/plugin/build/BuildPlugin.kt b/build-plugin/src/main/java/com/konyaco/fluent/plugin/build/BuildPlugin.kt deleted file mode 100644 index a71a0c25..00000000 --- a/build-plugin/src/main/java/com/konyaco/fluent/plugin/build/BuildPlugin.kt +++ /dev/null @@ -1,84 +0,0 @@ -package com.konyaco.fluent.plugin.build - -import org.gradle.api.Plugin -import org.gradle.api.Project -import org.gradle.api.publish.PublishingExtension -import org.gradle.api.publish.maven.MavenPublication -import org.gradle.api.tasks.bundling.Jar -import org.gradle.kotlin.dsl.create -import org.gradle.kotlin.dsl.findByType -import org.gradle.kotlin.dsl.withType -import org.gradle.plugins.signing.SigningExtension - -class BuildPlugin : Plugin { - override fun apply(target: Project) { - target.allprojects.forEach { - it.afterEvaluate { - - it.extensions.findByType()?.apply { - setupMavenPublishing(it) - it.extensions.findByType()?.setupSigning(this) - } - } - } - } - - private fun SigningExtension.setupSigning(publishing: PublishingExtension) { - useInMemoryPgpKeys( - System.getenv("SIGNING_KEY_ID"), - System.getenv("SIGNING_KEY"), - System.getenv("SIGNING_PASSWORD") - ) - sign(publishing.publications) - } - - private fun PublishingExtension.setupMavenPublishing(target: Project) { - val javadocJar = target.tasks.findByName("javadocJar") ?: target.tasks.create("javadocJar", Jar::class) { - archiveClassifier.set("javadoc") - } - publications.withType { - artifact(javadocJar) - pom { - name.set("compose-fluent-ui") - description.set("A Fluent Design UI library for compose-multiplatform.") - url.set("https://github.com/Konyaco/compose-fluent-ui") - - licenses { - license { - name.set("The Apache License, Version 2.0") - url.set("http://www.apache.org/licenses/LICENSE-2.0.txt") - } - } - - developers { - developer { - name.set("Kon Yaco") - email.set("atwzj233@gmail.com") - url.set("https://github.com/Konyaco") - } - } - - scm { - url.set("https://github.com/Konyaco/compose-fluent-ui") - connection.set("scm:git:git://github.com/Konyaco/compose-fluent-ui.git") - developerConnection.set("scm:git:ssh://github.com/Konyaco/compose-fluent-ui.git") - } - } - } - repositories { - maven { - val releasesUrl ="https://s01.oss.sonatype.org/content/repositories/snapshots/" - val snapshotsUrl = "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/" - name = "OSSRH" - url = target.uri( - if (target.version.toString().endsWith("SNAPSHOT")) releasesUrl - else snapshotsUrl - ) - credentials { - username = System.getenv("OSSRH_USERNAME") - password = System.getenv("OSSRH_PASSWORD") - } - } - } - } -} diff --git a/build-plugin/src/main/java/io/github/composefluent/plugin/build/BuildConfig.kt b/build-plugin/src/main/java/io/github/composefluent/plugin/build/BuildConfig.kt new file mode 100644 index 00000000..5a3c985f --- /dev/null +++ b/build-plugin/src/main/java/io/github/composefluent/plugin/build/BuildConfig.kt @@ -0,0 +1,34 @@ +package io.github.composefluent.plugin.build + +import org.gradle.api.JavaVersion + +object BuildConfig { + + const val group = "io.github.compose-fluent" + + const val packageName = "io.github.composefluent" + + internal const val snapshotLibraryVersion = "0.1.0-SNAPSHOT" + + val isRelease = System.getenv("PROJECT_BUILD_TYPE") == "release" + + var libraryVersion: String = snapshotLibraryVersion + internal set + + var integerVersionName: String = "" + internal set + + var branch: String = "dev" + internal set + + object Android { + const val compileSdkVersion = 35 + + const val minSdkVersion = 24 + } + + object Jvm { + const val jvmToolchainVersion = 17 + val javaVersion = JavaVersion.VERSION_17 + } +} \ No newline at end of file diff --git a/build-plugin/src/main/java/io/github/composefluent/plugin/build/BuildExtension.kt b/build-plugin/src/main/java/io/github/composefluent/plugin/build/BuildExtension.kt new file mode 100644 index 00000000..8ae9641d --- /dev/null +++ b/build-plugin/src/main/java/io/github/composefluent/plugin/build/BuildExtension.kt @@ -0,0 +1,60 @@ +package io.github.composefluent.plugin.build + +import com.android.build.api.dsl.androidLibrary +import org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi +import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl +import org.jetbrains.kotlin.gradle.dsl.KotlinMultiplatformExtension +import org.jetbrains.kotlin.gradle.plugin.KotlinSourceSetTree + +@OptIn(ExperimentalWasmDsl::class, ExperimentalKotlinGradlePluginApi::class) +fun KotlinMultiplatformExtension.applyTargets(namespaceModule: String = "") { + jvm("desktop") + + try { + androidLibrary { + compileSdk = 35 + namespace = "${BuildConfig.packageName}$namespaceModule" + } + } catch (_: IllegalStateException) { + // handle exception when android library plugin was not applied + androidTarget() + } + + jvmToolchain(BuildConfig.Jvm.jvmToolchainVersion) + wasmJs { browser() } + js { browser() } + iosX64() + iosArm64() + iosSimulatorArm64() + + applyHierarchyTemplate { + sourceSetTrees(KotlinSourceSetTree.main, KotlinSourceSetTree.test) + + common { + group("skiko") { + withCompilations { + it.target.name != "android" + } + } + + group("jvm") { + withJvm() + withAndroidTarget() + withCompilations { it.target.name == "android" } + } + + group("web") { + withJs() + withWasmJs() + } + + group("apple") { + withApple() + } + + group("ios") { + withIos() + } + } + } +} \ No newline at end of file diff --git a/build-plugin/src/main/java/io/github/composefluent/plugin/build/BuildPlugin.kt b/build-plugin/src/main/java/io/github/composefluent/plugin/build/BuildPlugin.kt new file mode 100644 index 00000000..d41a4b0e --- /dev/null +++ b/build-plugin/src/main/java/io/github/composefluent/plugin/build/BuildPlugin.kt @@ -0,0 +1,200 @@ +package io.github.composefluent.plugin.build + +import com.vanniktech.maven.publish.MavenPublishBaseExtension +import io.github.composefluent.plugin.build.BuildConfig.branch +import io.github.composefluent.plugin.build.BuildConfig.integerVersionName +import io.github.composefluent.plugin.build.BuildConfig.isRelease +import io.github.composefluent.plugin.build.BuildConfig.libraryVersion +import io.github.composefluent.plugin.build.BuildConfig.snapshotLibraryVersion +import org.gradle.api.Plugin +import org.gradle.api.Project +import org.gradle.api.publish.PublishingExtension +import org.gradle.api.publish.maven.MavenPublication +import org.gradle.api.tasks.bundling.Jar +import org.gradle.kotlin.dsl.create +import org.gradle.kotlin.dsl.findByType +import org.gradle.kotlin.dsl.withType +import org.gradle.plugins.signing.SigningExtension + +class BuildPlugin : Plugin { + override fun apply(target: Project) { + + setupLibraryVersion(target) + + target.allprojects.forEach { project -> + project.afterEvaluate { + + project.extensions.findByType()?.apply { + setupMavenPortalPublishing(project) + } + /*project.extensions.findByType()?.apply { + setupMavenPublishing(project) + project.extensions.findByType()?.let { signing -> + signing.setupSigning(this) + + // workaround for publishing with javadoc see https://github.com/gradle/gradle/issues/26091#issuecomment-1722947958 + project.tasks.withType().configureEach { + val signingTask = project.tasks.withType() + mustRunAfter(signingTask) + } + } + }*/ + } + } + } + + private fun MavenPublishBaseExtension.setupMavenPortalPublishing(target: Project) { + publishToMavenCentral() + signAllPublications() + coordinates(target.group.toString(), target.name, target.version.toString()) + + pom { + name.set("Compose Fluent UI") + description.set("A Fluent Design UI library for Compose Multiplatform.") + inceptionYear.set("2025") + url.set("https://github.com/compose-fluent/compose-fluent-ui") + licenses { + license { + name.set("The Apache License, Version 2.0") + url.set("https://www.apache.org/licenses/LICENSE-2.0.txt") + distribution.set("https://www.apache.org/licenses/LICENSE-2.0.txt") + } + } + developers { + developer { + id.set("konyaco") + name.set("Yaco") + url.set("https://github.com/konyaco") + } + developer { + id.set("sanlorng") + name.set("Sanlorng") + url.set("https://github.com/sanlorng") + } + } + scm { + url.set("https://github.com/compose-fluent/compose-fluent-ui") + connection.set("scm:git:git://github.com/compose-fluent/compose-fluent-ui.git") + developerConnection.set("scm:git:ssh://github.com/compose-fluent/compose-fluent-ui.git") + } + } + } + + private fun SigningExtension.setupSigning(publishing: PublishingExtension) { + useInMemoryPgpKeys( + System.getenv("SIGNING_KEY_ID"), + System.getenv("SIGNING_KEY"), + System.getenv("SIGNING_PASSWORD") + ) + sign(publishing.publications) + } + + @Deprecated("use setupMavenPortalPublishing instead") + private fun PublishingExtension.setupMavenPublishing(target: Project) { + val javadocJar = target.tasks.findByName("javadocJar") ?: target.tasks.create("javadocJar", Jar::class) { + archiveClassifier.set("javadoc") + } + publications.withType { + artifact(javadocJar) + pom { + name.set("compose-fluent-ui") + description.set("A Fluent Design UI library for compose-multiplatform.") + url.set("https://github.com/compose-fluent/compose-fluent-ui") + + licenses { + license { + name.set("The Apache License, Version 2.0") + url.set("http://www.apache.org/licenses/LICENSE-2.0.txt") + } + } + + developers { + developer { + name.set("Kon Yaco") + email.set("atwzj233@gmail.com") + url.set("https://github.com/compose-fluent") + } + } + + scm { + url.set("https://github.com/compose-fluent/compose-fluent-ui") + connection.set("scm:git:git://github.com/compose-fluent/compose-fluent-ui.git") + developerConnection.set("scm:git:ssh://github.com/compose-fluent/compose-fluent-ui.git") + } + } + } + repositories { + maven { + val snapshotsUrl = "https://s01.oss.sonatype.org/content/repositories/snapshots/" + val releasesUrl = "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/" + name = "OSSRH" + url = target.uri( + if (target.version.toString().endsWith("SNAPSHOT")) snapshotsUrl + else releasesUrl + ) + credentials { + username = System.getenv("OSSRH_USERNAME") + password = System.getenv("OSSRH_PASSWORD") + } + } + } + } + + + private fun setupLibraryVersion(target: Project) { + val providers = target.providers + + providers.exec { + commandLine("git", "branch", "--show-current") + isIgnoreExitValue = true + }.standardOutput + .asText + .orNull + ?.trim() + ?.let { branch = it } + + val gitTag = providers.exec { + commandLine("git", "describe", "--abbrev=0", "--tags") + isIgnoreExitValue = true + }.standardOutput.asText.get().trim() + + val relativeCommitCount = providers.exec { + commandLine("git", "describe", "--tags") + isIgnoreExitValue = true + }.standardOutput.asText.get().trim() + .removePrefix(gitTag) + .let { + if (it.isNotEmpty()) { + it.split("-")[1].toInt() + } else { + 0 + } + } + + libraryVersion = when { + isRelease -> gitTag + else -> snapshotLibraryVersion + } + + integerVersionName = libraryVersion + .removePrefix("v") + .removeSuffix("-SNAPSHOT") + .substringBefore("-dev") + .let { + val parts = it.split(".") + var major = parts.getOrNull(0) ?: "0" + var minor = parts.getOrNull(1) ?: "0" + if (major.startsWith("0")) { + major = "1" + minor = "0" + } + when (parts.size) { + 1, 2 -> "${major}.$minor.$relativeCommitCount" + else -> { + val patchVersion = parts[2].toIntOrNull() ?: 0 + "${major}.${minor}.${patchVersion * 200 + relativeCommitCount}" + } + } + } + } +} diff --git a/build.gradle.kts b/build.gradle.kts index 357d3824..a5df63e3 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,13 +1,16 @@ -import com.konyaco.fluent.plugin.build.BuildConfig +import io.github.composefluent.plugin.build.BuildConfig plugins { alias(libs.plugins.kotlin.multiplatform) apply false alias(libs.plugins.kotlin.compose) alias(libs.plugins.compose) apply false - alias(libs.plugins.android.library) apply false + alias(libs.plugins.compose.hotReload) apply false + alias(libs.plugins.android.kotlin.multiplatform.library) apply false alias(libs.plugins.android.application) apply false alias(libs.plugins.kotlin.android) apply false - id("com.konyaco.fluent.plugin.build") + alias(libs.plugins.build.konfig) apply false + alias(libs.plugins.maven.publish) apply false + id("io.github.composefluent.plugin.build") } group = BuildConfig.group diff --git a/fluent-icons-core/build.gradle.kts b/fluent-icons-core/build.gradle.kts index 33b8aa0b..26bfe821 100644 --- a/fluent-icons-core/build.gradle.kts +++ b/fluent-icons-core/build.gradle.kts @@ -1,45 +1,24 @@ -import com.konyaco.fluent.plugin.build.BuildConfig -import com.konyaco.fluent.plugin.build.applyTargets +import io.github.composefluent.plugin.build.BuildConfig +import io.github.composefluent.plugin.build.applyTargets plugins { alias(libs.plugins.kotlin.multiplatform) alias(libs.plugins.kotlin.compose) alias(libs.plugins.compose) - alias(libs.plugins.android.library) + alias(libs.plugins.android.kotlin.multiplatform.library) alias(libs.plugins.ksp) - id("maven-publish") - signing + alias(libs.plugins.maven.publish) } group = BuildConfig.group version = BuildConfig.libraryVersion kotlin { - applyTargets() + applyTargets(namespaceModule = ".icons") sourceSets { - val commonMain by getting { - dependencies { - implementation(compose.foundation) - } + commonMain.dependencies { + implementation(compose.foundation) } - val desktopMain by getting { - dependencies { - implementation(compose.desktop.currentOs) - } - } - val desktopTest by getting - } -} - -android { - compileSdk = BuildConfig.Android.compileSdkVersion - namespace = "${BuildConfig.packageName}.icons" - defaultConfig { - minSdk = BuildConfig.Android.minSdkVersion - } - compileOptions { - sourceCompatibility = BuildConfig.Jvm.javaVersion - targetCompatibility = BuildConfig.Jvm.javaVersion } } diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/Icons.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/Icons.kt deleted file mode 100644 index fa06b95f..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/Icons.kt +++ /dev/null @@ -1,62 +0,0 @@ -package com.konyaco.fluent.icons - -import androidx.compose.ui.graphics.* -import androidx.compose.ui.graphics.vector.DefaultFillType -import androidx.compose.ui.graphics.vector.ImageVector -import androidx.compose.ui.graphics.vector.PathBuilder -import androidx.compose.ui.graphics.vector.path -import androidx.compose.ui.unit.dp - -/** - * Fluent icons. See [Fluent Icons Catalog](https://react.fluentui.dev/iframe.html?viewMode=docs&id=concepts-developer-icons-icons-catalog--page) - */ -object Icons { - object Filled - object Regular - val Default = Regular -} - -inline fun fluentIcon( - name: String, - block: ImageVector.Builder.() -> ImageVector.Builder -): ImageVector = ImageVector.Builder( - name = name, - defaultWidth = FluentIconDimension.dp, - defaultHeight = FluentIconDimension.dp, - viewportWidth = 24f, - viewportHeight = 24f -).block().build() - -/** - * Adds a vector path to this icon with Fluent defaults. - * - * @param fillAlpha fill alpha for this path - * @param strokeAlpha stroke alpha for this path - * @param pathFillType [PathFillType] for this path - * @param pathBuilder builder lambda to add commands to this path - */ -inline fun ImageVector.Builder.fluentPath( - fillAlpha: Float = 1f, - strokeAlpha: Float = 1f, - pathFillType: PathFillType = DefaultFillType, - pathBuilder: PathBuilder.() -> Unit -) = -// TODO: b/146213225 -// Some of these defaults are already set when parsing from XML, but do not currently exist - // when added programmatically. We should unify these and simplify them where possible. - path( - fill = SolidColor(Color.Black), - fillAlpha = fillAlpha, - stroke = null, - strokeAlpha = strokeAlpha, - strokeLineWidth = 1f, - strokeLineCap = StrokeCap.Butt, - strokeLineJoin = StrokeJoin.Bevel, - strokeLineMiter = 1f, - pathFillType = pathFillType, - pathBuilder = pathBuilder - ) - -// All Fluent icons (currently) are 12dp by 12dp, with a viewport size of 12 by 12. -@PublishedApi -internal const val FluentIconDimension = 16f diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Add.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Add.kt deleted file mode 100644 index 793aabbc..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Add.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Add: ImageVector - get() { - if (_add != null) { - return _add!! - } - _add = fluentIcon(name = "Filled.Add") { - fluentPath { - moveTo(11.88f, 3.0f) - horizontalLineTo(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - verticalLineTo(11.0f) - horizontalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - verticalLineTo(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - horizontalLineTo(13.0f) - verticalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - horizontalLineTo(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - verticalLineTo(13.0f) - horizontalLineTo(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - verticalLineTo(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) - horizontalLineTo(11.0f) - verticalLineTo(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) - horizontalLineTo(12.0f) - horizontalLineToRelative(-0.12f) - close() - } - } - return _add!! - } - -private var _add: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Alert.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Alert.kt deleted file mode 100644 index 85cb9628..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Alert.kt +++ /dev/null @@ -1,37 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Alert: ImageVector - get() { - if (_alert != null) { - return _alert!! - } - _alert = fluentIcon(name = "Filled.Alert") { - fluentPath { - moveTo(9.04f, 19.0f) - horizontalLineToRelative(5.92f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -5.92f, 0.0f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(7.5f, 7.5f, 0.0f, false, true, 7.5f, 7.5f) - verticalLineToRelative(4.0f) - lineToRelative(1.42f, 3.16f) - arcToRelative(0.95f, 0.95f, 0.0f, false, true, -0.87f, 1.34f) - horizontalLineTo(3.95f) - arcToRelative(0.95f, 0.95f, 0.0f, false, true, -0.86f, -1.34f) - lineTo(4.5f, 13.5f) - verticalLineTo(9.24f) - arcTo(7.5f, 7.5f, 0.0f, false, true, 12.0f, 2.0f) - close() - } - } - return _alert!! - } - -private var _alert: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowDown.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowDown.kt deleted file mode 100644 index 25a428cf..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowDown.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowDown: ImageVector - get() { - if (_arrowDown != null) { - return _arrowDown!! - } - _arrowDown = fluentIcon(name = "Filled.ArrowDown") { - fluentPath { - moveTo(19.72f, 13.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.43f, -1.4f) - lineTo(13.0f, 17.67f) - verticalLineTo(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(13.66f) - lineTo(5.72f, 12.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.43f, 1.4f) - lineToRelative(6.82f, 6.93f) - curveToRelative(0.5f, 0.5f, 1.3f, 0.5f, 1.78f, 0.0f) - lineToRelative(6.83f, -6.93f) - close() - } - } - return _arrowDown!! - } - -private var _arrowDown: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowDownLeft.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowDownLeft.kt deleted file mode 100644 index 2b324c8a..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowDownLeft.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowDownLeft: ImageVector - get() { - if (_arrowDownLeft != null) { - return _arrowDownLeft!! - } - _arrowDownLeft = fluentIcon(name = "Filled.ArrowDownLeft") { - fluentPath { - moveTo(13.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - horizontalLineTo(6.41f) - lineToRelative(14.3f, -14.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, -1.4f) - lineTo(5.0f, 17.58f) - verticalLineTo(11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(9.0f) - close() - } - } - return _arrowDownLeft!! - } - -private var _arrowDownLeft: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowDownload.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowDownload.kt deleted file mode 100644 index 987681f8..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowDownload.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowDownload: ImageVector - get() { - if (_arrowDownload != null) { - return _arrowDownload!! - } - _arrowDownload = fluentIcon(name = "Filled.ArrowDownload") { - fluentPath { - moveTo(5.25f, 20.5f) - horizontalLineToRelative(13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineTo(5.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(13.6f) - horizontalLineToRelative(-13.5f) - close() - moveTo(11.88f, 2.0f) - horizontalLineTo(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - verticalLineTo(15.59f) - lineToRelative(3.3f, -3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.31f, -0.08f) - lineToRelative(0.1f, 0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.32f) - lineToRelative(-0.08f, 0.1f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.08f) - lineToRelative(-0.1f, -0.09f) - lineToRelative(-5.0f, -5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -1.49f) - lineToRelative(0.1f, 0.08f) - lineTo(11.0f, 15.6f) - verticalLineTo(2.98f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -0.99f) - horizontalLineTo(12.0f) - horizontalLineToRelative(-0.12f) - close() - } - } - return _arrowDownload!! - } - -private var _arrowDownload: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowExpand.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowExpand.kt deleted file mode 100644 index b41a77a6..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowExpand.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowExpand: ImageVector - get() { - if (_arrowExpand != null) { - return _arrowExpand!! - } - _arrowExpand = fluentIcon(name = "Filled.ArrowExpand") { - fluentPath { - moveTo(7.67f, 14.92f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, 1.42f) - lineTo(6.41f, 19.0f) - lineTo(8.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.89f) - lineTo(9.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - lineTo(4.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineToRelative(-4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(1.6f) - lineToRelative(2.67f, -2.68f) - close() - moveTo(16.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(1.59f) - lineToRelative(-2.67f, -2.66f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.32f) - lineToRelative(0.08f, -0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 0.0f) - lineTo(19.0f, 17.6f) - lineTo(19.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.89f, -0.99f) - lineTo(20.0f, 15.01f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(8.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - lineTo(6.42f, 5.0f) - lineToRelative(2.66f, 2.67f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.09f, 1.32f) - lineToRelative(-0.09f, 0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.41f, 0.0f) - lineTo(5.0f, 6.4f) - lineTo(5.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - lineTo(4.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(3.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(4.0f) - close() - moveTo(20.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(19.0f, 6.41f) - lineToRelative(-2.66f, 2.67f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.09f) - lineToRelative(-0.1f, -0.09f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.41f) - lineTo(17.6f, 5.0f) - lineTo(16.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.99f, -0.88f) - lineTo(15.01f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(4.0f) - close() - } - } - return _arrowExpand!! - } - -private var _arrowExpand: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowForward.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowForward.kt deleted file mode 100644 index a688e1f4..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowForward.kt +++ /dev/null @@ -1,37 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowForward: ImageVector - get() { - if (_arrowForward != null) { - return _arrowForward!! - } - _arrowForward = fluentIcon(name = "Filled.ArrowForward") { - fluentPath { - moveTo(14.3f, 16.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.41f, 1.4f) - lineToRelative(5.0f, -5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.4f) - lineToRelative(-5.0f, -5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.41f, 1.4f) - lineToRelative(3.29f, 3.3f) - horizontalLineTo(11.0f) - arcToRelative(8.0f, 8.0f, 0.0f, false, false, -8.0f, 7.75f) - verticalLineTo(19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 5.78f, -6.0f) - horizontalLineToRelative(6.81f) - lineToRelative(-3.3f, 3.3f) - close() - } - } - return _arrowForward!! - } - -private var _arrowForward: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowLeft.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowLeft.kt deleted file mode 100644 index 5f291bdd..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowLeft.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowLeft: ImageVector - get() { - if (_arrowLeft != null) { - return _arrowLeft!! - } - _arrowLeft = fluentIcon(name = "Filled.ArrowLeft") { - fluentPath { - moveTo(10.3f, 19.72f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, -1.43f) - lineTo(6.33f, 13.0f) - horizontalLineTo(20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - horizontalLineTo(6.33f) - lineToRelative(5.37f, -5.28f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.42f) - lineToRelative(-6.93f, 6.82f) - curveToRelative(-0.5f, 0.5f, -0.5f, 1.3f, 0.0f, 1.78f) - lineToRelative(6.92f, 6.83f) - close() - } - } - return _arrowLeft!! - } - -private var _arrowLeft: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowRight.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowRight.kt deleted file mode 100644 index eec2f873..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowRight.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowRight: ImageVector - get() { - if (_arrowRight != null) { - return _arrowRight!! - } - _arrowRight = fluentIcon(name = "Filled.ArrowRight") { - fluentPath { - moveTo(13.7f, 4.28f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.4f, 1.43f) - lineTo(17.67f, 11.0f) - horizontalLineTo(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(13.66f) - lineToRelative(-5.36f, 5.28f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 1.43f) - lineToRelative(6.93f, -6.82f) - curveToRelative(0.5f, -0.5f, 0.5f, -1.3f, 0.0f, -1.78f) - lineTo(13.7f, 4.28f) - close() - } - } - return _arrowRight!! - } - -private var _arrowRight: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSync.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSync.kt deleted file mode 100644 index 25f63953..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSync.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowSync: ImageVector - get() { - if (_arrowSync != null) { - return _arrowSync!! - } - _arrowSync = fluentIcon(name = "Filled.ArrowSync") { - fluentPath { - moveTo(16.05f, 5.03f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.2f, 1.4f) - arcToRelative(6.99f, 6.99f, 0.0f, false, true, -3.17f, 12.49f) - lineToRelative(0.71f, -0.71f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.41f, -1.42f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.42f) - lineToRelative(2.5f, 2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.41f, -1.42f) - lineToRelative(-0.84f, -0.84f) - arcToRelative(9.0f, 9.0f, 0.0f, false, false, 4.5f, -16.11f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.19f) - close() - moveTo(14.12f, 3.29f) - lineTo(11.62f, 0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.5f, 1.32f) - lineToRelative(0.09f, 0.1f) - lineToRelative(0.84f, 0.84f) - arcToRelative(9.0f, 9.0f, 0.0f, false, false, -4.78f, 15.9f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.28f, -1.55f) - arcToRelative(6.98f, 6.98f, 0.0f, false, true, 3.37f, -12.32f) - lineToRelative(-0.71f, 0.71f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.32f, 1.5f) - lineToRelative(0.1f, -0.08f) - lineToRelative(2.5f, -2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.07f, -1.32f) - lineToRelative(-0.08f, -0.1f) - close() - } - } - return _arrowSync!! - } - -private var _arrowSync: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowUp.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowUp.kt deleted file mode 100644 index 32cb0e01..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowUp.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowUp: ImageVector - get() { - if (_arrowUp != null) { - return _arrowUp!! - } - _arrowUp = fluentIcon(name = "Filled.ArrowUp") { - fluentPath { - moveTo(4.28f, 10.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.43f, 1.4f) - lineTo(11.0f, 6.33f) - verticalLineTo(20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineTo(6.33f) - lineToRelative(5.28f, 5.37f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.43f, -1.4f) - lineToRelative(-6.82f, -6.93f) - curveToRelative(-0.5f, -0.5f, -1.3f, -0.5f, -1.78f, 0.0f) - lineTo(4.28f, 10.3f) - close() - } - } - return _arrowUp!! - } - -private var _arrowUp: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowUpLeft.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowUpLeft.kt deleted file mode 100644 index 26ec0956..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowUpLeft.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowUpLeft: ImageVector - get() { - if (_arrowUpLeft != null) { - return _arrowUpLeft!! - } - _arrowUpLeft = fluentIcon(name = "Filled.ArrowUpLeft") { - fluentPath { - moveTo(13.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineTo(6.41f) - lineToRelative(14.3f, 14.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 1.4f) - lineTo(5.0f, 6.42f) - verticalLineTo(13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineTo(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(9.0f) - close() - } - } - return _arrowUpLeft!! - } - -private var _arrowUpLeft: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowUpRight.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowUpRight.kt deleted file mode 100644 index 5367e26f..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowUpRight.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowUpRight: ImageVector - get() { - if (_arrowUpRight != null) { - return _arrowUpRight!! - } - _arrowUpRight = fluentIcon(name = "Filled.ArrowUpRight") { - fluentPath { - moveTo(11.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(6.59f) - lineTo(3.29f, 19.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.42f, 1.4f) - lineTo(19.0f, 6.42f) - verticalLineTo(13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineTo(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineToRelative(-9.0f) - close() - } - } - return _arrowUpRight!! - } - -private var _arrowUpRight: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Attach.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Attach.kt deleted file mode 100644 index 73c02fc5..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Attach.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Attach: ImageVector - get() { - if (_attach != null) { - return _attach!! - } - _attach = fluentIcon(name = "Filled.Attach") { - fluentPath { - moveTo(16.0f, 2.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 4.4f, 10.08f) - lineToRelative(-0.2f, 0.2f) - lineTo(11.49f, 21.0f) - lineToRelative(-0.05f, 0.04f) - lineToRelative(-0.06f, 0.05f) - arcToRelative(3.71f, 3.71f, 0.0f, false, true, -6.15f, -2.82f) - curveToRelative(0.0f, -0.9f, 0.33f, -1.76f, 0.9f, -2.42f) - lineToRelative(0.15f, -0.17f) - horizontalLineToRelative(0.01f) - lineToRelative(7.3f, -7.31f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.41f) - lineTo(7.7f, 17.1f) - lineToRelative(-0.01f, 0.01f) - arcToRelative(1.72f, 1.72f, 0.0f, false, false, 2.29f, 2.55f) - lineToRelative(0.12f, -0.1f) - lineToRelative(8.7f, -8.7f) - lineToRelative(0.16f, -0.16f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -5.75f, -5.55f) - lineToRelative(-0.16f, 0.16f) - lineToRelative(-0.02f, 0.01f) - lineToRelative(-9.32f, 9.33f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, -1.41f) - lineTo(11.6f, 3.9f) - lineToRelative(0.05f, -0.04f) - arcTo(5.98f, 5.98f, 0.0f, false, true, 16.0f, 2.0f) - close() - } - } - return _attach!! - } - -private var _attach: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Backspace.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Backspace.kt deleted file mode 100644 index 25110266..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Backspace.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Backspace: ImageVector - get() { - if (_backspace != null) { - return _backspace!! - } - _backspace = fluentIcon(name = "Filled.Backspace") { - fluentPath { - moveTo(18.75f, 4.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.24f, 3.07f) - lineToRelative(0.01f, 0.18f) - verticalLineToRelative(9.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - horizontalLineToRelative(-8.5f) - curveToRelative(-0.77f, 0.0f, -1.5f, -0.27f, -2.09f, -0.76f) - lineToRelative(-0.15f, -0.13f) - lineToRelative(-5.0f, -4.75f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -0.11f, -4.6f) - lineTo(3.0f, 9.64f) - lineToRelative(5.0f, -4.75f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.03f, -0.88f) - lineToRelative(0.2f, -0.01f) - horizontalLineToRelative(8.51f) - close() - moveTo(11.45f, 8.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.05f, 1.05f) - lineToRelative(0.07f, 0.08f) - lineTo(12.94f, 12.0f) - lineToRelative(-2.47f, 2.47f) - lineToRelative(-0.07f, 0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.05f, 1.05f) - lineToRelative(0.08f, -0.07f) - lineTo(14.0f, 13.06f) - lineToRelative(2.47f, 2.47f) - lineToRelative(0.08f, 0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.05f, -1.05f) - lineToRelative(-0.07f, -0.08f) - lineTo(15.06f, 12.0f) - lineToRelative(2.47f, -2.47f) - lineToRelative(0.07f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.05f, -1.05f) - lineToRelative(-0.08f, 0.07f) - lineTo(14.0f, 10.94f) - lineToRelative(-2.47f, -2.47f) - lineToRelative(-0.08f, -0.07f) - close() - } - } - return _backspace!! - } - -private var _backspace: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarLtr.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarLtr.kt deleted file mode 100644 index 083bba08..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarLtr.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarLtr: ImageVector - get() { - if (_calendarLtr != null) { - return _calendarLtr!! - } - _calendarLtr = fluentIcon(name = "Filled.CalendarLtr") { - fluentPath { - moveTo(21.0f, 8.5f) - verticalLineToRelative(9.25f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 8.5f) - horizontalLineToRelative(18.0f) - close() - moveTo(7.25f, 15.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(12.0f, 15.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(7.25f, 10.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(12.0f, 10.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(16.75f, 10.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - lineTo(21.0f, 7.0f) - lineTo(3.0f, 7.0f) - verticalLineToRelative(-0.75f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - } - } - return _calendarLtr!! - } - -private var _calendarLtr: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CaretDown.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CaretDown.kt deleted file mode 100644 index 0520a0ae..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CaretDown.kt +++ /dev/null @@ -1,30 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CaretDown: ImageVector - get() { - if (_caretDown != null) { - return _caretDown!! - } - _caretDown = fluentIcon(name = "Filled.CaretDown") { - fluentPath { - moveTo(6.1f, 8.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -0.94f, 2.07f) - lineToRelative(5.52f, 6.31f) - curveToRelative(0.7f, 0.8f, 1.94f, 0.8f, 2.64f, 0.0f) - lineToRelative(5.52f, -6.3f) - curveToRelative(0.7f, -0.82f, 0.13f, -2.08f, -0.94f, -2.08f) - horizontalLineTo(6.1f) - close() - } - } - return _caretDown!! - } - -private var _caretDown: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CaretDownRight.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CaretDownRight.kt deleted file mode 100644 index 4cc3383f..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CaretDownRight.kt +++ /dev/null @@ -1,30 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CaretDownRight: ImageVector - get() { - if (_caretDownRight != null) { - return _caretDownRight!! - } - _caretDownRight = fluentIcon(name = "Filled.CaretDownRight") { - fluentPath { - moveTo(18.0f, 7.2f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.13f, -0.88f) - lineToRelative(-9.55f, 9.55f) - curveToRelative(-0.78f, 0.78f, -0.23f, 2.13f, 0.89f, 2.13f) - horizontalLineToRelative(9.04f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineTo(7.21f) - close() - } - } - return _caretDownRight!! - } - -private var _caretDownRight: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CaretLeft.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CaretLeft.kt deleted file mode 100644 index 9dd3cabb..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CaretLeft.kt +++ /dev/null @@ -1,30 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CaretLeft: ImageVector - get() { - if (_caretLeft != null) { - return _caretLeft!! - } - _caretLeft = fluentIcon(name = "Filled.CaretLeft") { - fluentPath { - moveTo(15.0f, 17.9f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.07f, 0.94f) - lineToRelative(-6.31f, -5.52f) - curveToRelative(-0.8f, -0.7f, -0.8f, -1.94f, 0.0f, -2.64f) - lineToRelative(6.3f, -5.52f) - curveToRelative(0.82f, -0.7f, 2.08f, -0.13f, 2.08f, 0.94f) - verticalLineToRelative(11.8f) - close() - } - } - return _caretLeft!! - } - -private var _caretLeft: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CaretRight.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CaretRight.kt deleted file mode 100644 index c5040920..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CaretRight.kt +++ /dev/null @@ -1,30 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CaretRight: ImageVector - get() { - if (_caretRight != null) { - return _caretRight!! - } - _caretRight = fluentIcon(name = "Filled.CaretRight") { - fluentPath { - moveTo(9.0f, 17.9f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.07f, 0.94f) - lineToRelative(6.31f, -5.52f) - curveToRelative(0.8f, -0.7f, 0.8f, -1.94f, 0.0f, -2.64f) - lineToRelative(-6.3f, -5.52f) - curveTo(10.25f, 4.46f, 9.0f, 5.03f, 9.0f, 6.1f) - verticalLineToRelative(11.8f) - close() - } - } - return _caretRight!! - } - -private var _caretRight: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CaretUp.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CaretUp.kt deleted file mode 100644 index 86cf0c93..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CaretUp.kt +++ /dev/null @@ -1,30 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CaretUp: ImageVector - get() { - if (_caretUp != null) { - return _caretUp!! - } - _caretUp = fluentIcon(name = "Filled.CaretUp") { - fluentPath { - moveTo(6.1f, 16.98f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.94f, -2.07f) - lineToRelative(5.52f, -6.31f) - curveToRelative(0.7f, -0.8f, 1.94f, -0.8f, 2.64f, 0.0f) - lineToRelative(5.52f, 6.3f) - curveToRelative(0.7f, 0.82f, 0.13f, 2.08f, -0.94f, 2.08f) - horizontalLineTo(6.1f) - close() - } - } - return _caretUp!! - } - -private var _caretUp: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Checkmark.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Checkmark.kt deleted file mode 100644 index 6421cbc9..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Checkmark.kt +++ /dev/null @@ -1,31 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Checkmark: ImageVector - get() { - if (_checkmark != null) { - return _checkmark!! - } - _checkmark = fluentIcon(name = "Filled.Checkmark") { - fluentPath { - moveToRelative(8.5f, 16.59f) - lineToRelative(-3.8f, -3.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) - lineToRelative(4.5f, 4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) - lineToRelative(11.0f, -11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.42f) - lineTo(8.5f, 16.6f) - close() - } - } - return _checkmark!! - } - -private var _checkmark: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChevronDown.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChevronDown.kt deleted file mode 100644 index d714e24f..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChevronDown.kt +++ /dev/null @@ -1,32 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChevronDown: ImageVector - get() { - if (_chevronDown != null) { - return _chevronDown!! - } - _chevronDown = fluentIcon(name = "Filled.ChevronDown") { - fluentPath { - moveTo(4.3f, 8.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) - lineToRelative(6.3f, 6.29f) - lineToRelative(6.3f, -6.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, 1.42f) - lineToRelative(-7.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) - lineToRelative(-7.0f, -7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.42f) - close() - } - } - return _chevronDown!! - } - -private var _chevronDown: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChevronLeft.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChevronLeft.kt deleted file mode 100644 index 00ae6ca1..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChevronLeft.kt +++ /dev/null @@ -1,32 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChevronLeft: ImageVector - get() { - if (_chevronLeft != null) { - return _chevronLeft!! - } - _chevronLeft = fluentIcon(name = "Filled.ChevronLeft") { - fluentPath { - moveTo(15.7f, 4.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.4f) - lineTo(9.42f, 12.0f) - lineToRelative(6.3f, 6.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 1.4f) - lineToRelative(-7.0f, -7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) - lineToRelative(7.0f, -7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 0.0f) - close() - } - } - return _chevronLeft!! - } - -private var _chevronLeft: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChevronRight.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChevronRight.kt deleted file mode 100644 index f37018cd..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChevronRight.kt +++ /dev/null @@ -1,32 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChevronRight: ImageVector - get() { - if (_chevronRight != null) { - return _chevronRight!! - } - _chevronRight = fluentIcon(name = "Filled.ChevronRight") { - fluentPath { - moveTo(8.3f, 4.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.4f) - lineToRelative(6.29f, 6.3f) - lineToRelative(-6.3f, 6.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.42f, 1.4f) - lineToRelative(7.0f, -7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.4f) - lineToRelative(-7.0f, -7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, 0.0f) - close() - } - } - return _chevronRight!! - } - -private var _chevronRight: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChevronUp.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChevronUp.kt deleted file mode 100644 index 0462560f..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChevronUp.kt +++ /dev/null @@ -1,32 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChevronUp: ImageVector - get() { - if (_chevronUp != null) { - return _chevronUp!! - } - _chevronUp = fluentIcon(name = "Filled.ChevronUp") { - fluentPath { - moveTo(4.3f, 15.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) - lineTo(12.0f, 9.42f) - lineToRelative(6.3f, 6.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, -1.42f) - lineToRelative(-7.0f, -7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) - lineToRelative(-7.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.42f) - close() - } - } - return _chevronUp!! - } - -private var _chevronUp: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardPaste.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardPaste.kt deleted file mode 100644 index 47132cbb..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardPaste.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClipboardPaste: ImageVector - get() { - if (_clipboardPaste != null) { - return _clipboardPaste!! - } - _clipboardPaste = fluentIcon(name = "Filled.ClipboardPaste") { - fluentPath { - moveTo(12.75f, 2.0f) - curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) - horizontalLineToRelative(1.76f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) - lineToRelative(-0.01f, -0.1f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-2.13f) - curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.78f, 0.0f, -1.46f, -0.4f, -1.87f, -1.0f) - lineTo(5.25f, 5.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.75f) - horizontalLineToRelative(3.1f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.29f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - curveToRelative(0.0f, 0.42f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-3.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) - lineTo(3.0f, 19.76f) - lineTo(3.0f, 6.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(5.25f, 4.0f) - horizontalLineToRelative(1.76f) - curveToRelative(0.13f, -1.12f, 1.08f, -2.0f, 2.24f, -2.0f) - horizontalLineToRelative(3.5f) - close() - moveTo(18.75f, 8.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - horizontalLineToRelative(-6.5f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineToRelative(-0.01f, -0.15f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineToRelative(0.15f, -0.01f) - horizontalLineToRelative(6.5f) - close() - moveTo(12.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - close() - } - } - return _clipboardPaste!! - } - -private var _clipboardPaste: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Clock.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Clock.kt deleted file mode 100644 index 2aff326a..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Clock.kt +++ /dev/null @@ -1,35 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Clock: ImageVector - get() { - if (_clock != null) { - return _clock!! - } - _clock = fluentIcon(name = "Filled.Clock") { - fluentPath { - moveTo(15.25f, 13.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineTo(12.0f) - horizontalLineToRelative(3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) - close() - } - } - return _clock!! - } - -private var _clock: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cloud.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cloud.kt deleted file mode 100644 index 240f4a94..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cloud.kt +++ /dev/null @@ -1,30 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Cloud: ImageVector - get() { - if (_cloud != null) { - return _cloud!! - } - _cloud = fluentIcon(name = "Filled.Cloud") { - fluentPath { - moveTo(6.09f, 9.75f) - arcToRelative(5.75f, 5.75f, 0.0f, false, true, 11.32f, 0.0f) - horizontalLineToRelative(0.09f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, 8.0f) - horizontalLineTo(6.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, -8.0f) - horizontalLineToRelative(0.09f) - close() - } - } - return _cloud!! - } - -private var _cloud: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Copy.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Copy.kt deleted file mode 100644 index 84200883..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Copy.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Copy: ImageVector - get() { - if (_copy != null) { - return _copy!! - } - _copy = fluentIcon(name = "Filled.Copy") { - fluentPath { - moveTo(5.5f, 4.63f) - verticalLineTo(17.25f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(8.62f) - curveToRelative(-0.31f, 0.88f, -1.15f, 1.5f, -2.13f, 1.5f) - horizontalLineTo(8.75f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 4.0f, 17.25f) - verticalLineTo(6.75f) - curveToRelative(0.0f, -0.98f, 0.63f, -1.81f, 1.5f, -2.12f) - close() - moveTo(17.75f, 2.0f) - curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) - verticalLineToRelative(13.0f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-9.0f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-13.0f) - curveTo(6.5f, 3.01f, 7.5f, 2.0f, 8.75f, 2.0f) - horizontalLineToRelative(9.0f) - close() - } - } - return _copy!! - } - -private var _copy: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cut.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cut.kt deleted file mode 100644 index f9184047..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cut.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Cut: ImageVector - get() { - if (_cut != null) { - return _cut!! - } - _cut = fluentIcon(name = "Filled.Cut") { - fluentPath { - moveTo(7.83f, 2.44f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.66f, 1.12f) - lineToRelative(4.8f, 7.11f) - lineToRelative(-2.33f, 3.68f) - arcTo(3.99f, 3.99f, 0.0f, false, false, 3.0f, 18.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 7.2f, -2.4f) - lineToRelative(1.98f, -3.12f) - lineToRelative(1.89f, 2.8f) - arcTo(3.99f, 3.99f, 0.0f, false, false, 17.0f, 22.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, -1.25f, -7.8f) - lineToRelative(-3.62f, -5.38f) - lineToRelative(-4.3f, -6.38f) - close() - moveTo(5.0f, 18.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -4.0f, 0.0f) - close() - moveTo(15.0f, 18.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -4.0f, 0.0f) - close() - moveTo(14.52f, 8.79f) - lineTo(17.85f, 3.53f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.7f, -1.07f) - lineTo(13.3f, 6.98f) - lineToRelative(1.22f, 1.81f) - close() - } - } - return _cut!! - } - -private var _cut: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Delete.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Delete.kt deleted file mode 100644 index e37e6683..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Delete.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Delete: ImageVector - get() { - if (_delete != null) { - return _delete!! - } - _delete = fluentIcon(name = "Filled.Delete") { - fluentPath { - moveTo(10.0f, 5.0f) - horizontalLineToRelative(4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, -4.0f, 0.0f) - close() - moveTo(8.5f, 5.0f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 7.0f, 0.0f) - horizontalLineToRelative(5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.32f) - lineToRelative(-1.17f, 12.11f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 15.03f, 22.0f) - lineTo(8.97f, 22.0f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.73f, -3.39f) - lineTo(4.07f, 6.5f) - lineTo(2.75f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(8.5f, 5.0f) - close() - moveTo(10.5f, 9.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-7.5f) - close() - moveTo(14.25f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - } - } - return _delete!! - } - -private var _delete: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Dismiss.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Dismiss.kt deleted file mode 100644 index f4b609a4..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Dismiss.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Dismiss: ImageVector - get() { - if (_dismiss != null) { - return _dismiss!! - } - _dismiss = fluentIcon(name = "Filled.Dismiss") { - fluentPath { - moveToRelative(4.21f, 4.39f) - lineToRelative(0.08f, -0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) - lineToRelative(0.1f, 0.08f) - lineTo(12.0f, 10.6f) - lineToRelative(6.3f, -6.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, 1.42f) - lineTo(13.42f, 12.0f) - lineToRelative(6.3f, 6.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.31f) - lineToRelative(-0.08f, 0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.08f) - lineToRelative(-0.1f, -0.08f) - lineTo(12.0f, 13.4f) - lineToRelative(-6.3f, 6.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.42f) - lineTo(10.58f, 12.0f) - lineToRelative(-6.3f, -6.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.31f) - lineToRelative(0.08f, -0.1f) - lineToRelative(-0.08f, 0.1f) - close() - } - } - return _dismiss!! - } - -private var _dismiss: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Document.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Document.kt deleted file mode 100644 index cd97c17e..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Document.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Document: ImageVector - get() { - if (_document != null) { - return _document!! - } - _document = fluentIcon(name = "Filled.Document") { - fluentPath { - moveTo(12.0f, 2.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - lineTo(6.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.0f) - close() - moveTo(13.5f, 2.5f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.5f) - lineToRelative(-6.0f, -6.0f) - close() - } - } - return _document!! - } - -private var _document: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Edit.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Edit.kt deleted file mode 100644 index 8bbddc3c..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Edit.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Edit: ImageVector - get() { - if (_edit != null) { - return _edit!! - } - _edit = fluentIcon(name = "Filled.Edit") { - fluentPath { - moveTo(15.9f, 3.05f) - arcToRelative(3.58f, 3.58f, 0.0f, true, true, 5.05f, 5.06f) - lineToRelative(-0.89f, 0.9f) - lineTo(15.0f, 3.93f) - lineToRelative(0.9f, -0.9f) - close() - moveTo(13.93f, 5.0f) - lineToRelative(-10.0f, 10.0f) - curveToRelative(-0.4f, 0.4f, -0.7f, 0.92f, -0.82f, 1.48f) - lineToRelative(-1.1f, 4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.9f, 0.9f) - lineToRelative(4.6f, -1.1f) - arcTo(3.1f, 3.1f, 0.0f, false, false, 9.0f, 20.07f) - lineToRelative(10.0f, -10.0f) - lineTo(13.94f, 5.0f) - close() - } - } - return _edit!! - } - -private var _edit: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ErrorCircle.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ErrorCircle.kt deleted file mode 100644 index 3f1086e0..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ErrorCircle.kt +++ /dev/null @@ -1,37 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ErrorCircle: ImageVector - get() { - if (_errorCircle != null) { - return _errorCircle!! - } - _errorCircle = fluentIcon(name = "Filled.ErrorCircle") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(12.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(12.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 0.88f) - verticalLineToRelative(5.24f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - lineTo(13.0f, 7.88f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 12.0f, 7.0f) - close() - } - } - return _errorCircle!! - } - -private var _errorCircle: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Eye.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Eye.kt deleted file mode 100644 index 991dcda3..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Eye.kt +++ /dev/null @@ -1,33 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Eye: ImageVector - get() { - if (_eye != null) { - return _eye!! - } - _eye = fluentIcon(name = "Filled.Eye") { - fluentPath { - moveTo(12.0f, 9.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, 0.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, -8.0f) - close() - moveTo(12.0f, 5.5f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 9.7f, 7.56f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.45f, 0.37f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, -16.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.45f, -0.36f) - arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 5.5f) - close() - } - } - return _eye!! - } - -private var _eye: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Filter.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Filter.kt deleted file mode 100644 index 03a5eeb2..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Filter.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Filter: ImageVector - get() { - if (_filter != null) { - return _filter!! - } - _filter = fluentIcon(name = "Filled.Filter") { - fluentPath { - moveTo(10.0f, 16.0f) - horizontalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(10.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(14.0f, 16.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(8.0f, 11.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(8.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(16.0f, 11.0f) - lineTo(8.0f, 11.0f) - close() - moveTo(5.0f, 6.0f) - horizontalLineToRelative(14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(5.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(19.0f, 6.0f) - lineTo(5.0f, 6.0f) - close() - } - } - return _filter!! - } - -private var _filter: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Flag.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Flag.kt deleted file mode 100644 index ab5dd6cd..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Flag.kt +++ /dev/null @@ -1,37 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Flag: ImageVector - get() { - if (_flag != null) { - return _flag!! - } - _flag = fluentIcon(name = "Filled.Flag") { - fluentPath { - moveTo(3.0f, 3.75f) - curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(16.5f) - curveToRelative(0.62f, 0.0f, 0.98f, 0.7f, 0.6f, 1.2f) - lineTo(16.7f, 9.75f) - lineToRelative(4.16f, 5.55f) - curveToRelative(0.38f, 0.5f, 0.02f, 1.2f, -0.6f, 1.2f) - horizontalLineTo(4.5f) - verticalLineToRelative(4.75f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineTo(3.75f) - close() - } - } - return _flag!! - } - -private var _flag: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Flash.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Flash.kt deleted file mode 100644 index fedcbf5f..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Flash.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Flash: ImageVector - get() { - if (_flash != null) { - return _flash!! - } - _flash = fluentIcon(name = "Filled.Flash") { - fluentPath { - moveTo(7.43f, 2.83f) - curveTo(7.6f, 2.33f, 8.07f, 2.0f, 8.6f, 2.0f) - horizontalLineToRelative(6.46f) - curveToRelative(0.85f, 0.0f, 1.45f, 0.84f, 1.18f, 1.65f) - lineTo(14.8f, 8.0f) - horizontalLineToRelative(3.96f) - curveToRelative(1.1f, 0.0f, 1.67f, 1.33f, 0.9f, 2.12f) - lineTo(8.59f, 21.54f) - curveToRelative(-1.06f, 1.08f, -2.88f, 0.1f, -2.55f, -1.38f) - lineToRelative(1.27f, -5.66f) - lineToRelative(-1.56f, -0.01f) - curveToRelative(-1.21f, 0.0f, -2.05f, -1.2f, -1.65f, -2.34f) - lineToRelative(3.33f, -9.32f) - close() - } - } - return _flash!! - } - -private var _flash: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Folder.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Folder.kt deleted file mode 100644 index e7b22d80..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Folder.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Folder: ImageVector - get() { - if (_folder != null) { - return _folder!! - } - _folder = fluentIcon(name = "Filled.Folder") { - fluentPath { - moveTo(13.82f, 6.5f) - horizontalLineToRelative(5.93f) - curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) - lineToRelative(0.01f, 0.16f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - horizontalLineTo(4.25f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(2.0f, 17.75f) - verticalLineTo(10.5f) - horizontalLineToRelative(6.4f) - curveToRelative(0.4f, -0.04f, 0.77f, -0.18f, 1.1f, -0.4f) - lineToRelative(0.15f, -0.12f) - lineToRelative(4.17f, -3.48f) - close() - moveTo(8.21f, 4.0f) - curveToRelative(0.46f, 0.0f, 0.9f, 0.14f, 1.28f, 0.4f) - lineToRelative(0.16f, 0.12f) - lineToRelative(2.1f, 1.75f) - lineToRelative(-3.06f, 2.56f) - lineToRelative(-0.09f, 0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.29f, 0.1f) - lineToRelative(-0.1f, 0.01f) - horizontalLineTo(2.0f) - verticalLineTo(6.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 4.0f) - horizontalLineToRelative(3.96f) - close() - } - } - return _folder!! - } - -private var _folder: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Heart.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Heart.kt deleted file mode 100644 index ef53e064..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Heart.kt +++ /dev/null @@ -1,31 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Heart: ImageVector - get() { - if (_heart != null) { - return _heart!! - } - _heart = fluentIcon(name = "Filled.Heart") { - fluentPath { - moveTo(12.82f, 5.58f) - lineTo(12.0f, 6.4f) - lineToRelative(-0.82f, -0.82f) - arcToRelative(5.37f, 5.37f, 0.0f, true, false, -7.6f, 7.6f) - lineToRelative(7.89f, 7.9f) - curveToRelative(0.3f, 0.29f, 0.77f, 0.29f, 1.06f, 0.0f) - lineToRelative(7.9f, -7.9f) - arcToRelative(5.38f, 5.38f, 0.0f, true, false, -7.61f, -7.6f) - close() - } - } - return _heart!! - } - -private var _heart: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/History.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/History.kt deleted file mode 100644 index bac9c22a..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/History.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.History: ImageVector - get() { - if (_history != null) { - return _history!! - } - _history = fluentIcon(name = "Filled.History") { - fluentPath { - moveTo(19.25f, 12.0f) - arcTo(7.25f, 7.25f, 0.0f, false, false, 7.58f, 6.25f) - horizontalLineToRelative(0.67f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineTo(7.0f) - horizontalLineToRelative(-0.03f) - lineToRelative(0.03f, -0.05f) - verticalLineToRelative(-2.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - verticalLineToRelative(0.5f) - arcToRelative(9.25f, 9.25f, 0.0f, true, true, -3.43f, 6.12f) - curveToRelative(0.06f, -0.51f, 0.51f, -0.87f, 1.03f, -0.87f) - curveToRelative(0.6f, 0.0f, 1.02f, 0.57f, 0.95f, 1.16f) - arcToRelative(7.25f, 7.25f, 0.0f, true, false, 14.45f, 0.84f) - close() - moveTo(13.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-2.0f) - verticalLineTo(8.0f) - close() - } - } - return _history!! - } - -private var _history: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Home.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Home.kt deleted file mode 100644 index 484e4760..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Home.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Home: ImageVector - get() { - if (_home != null) { - return _home!! - } - _home = fluentIcon(name = "Filled.Home") { - fluentPath { - moveTo(13.45f, 2.53f) - curveToRelative(-0.84f, -0.7f, -2.06f, -0.7f, -2.9f, 0.0f) - lineTo(3.8f, 8.23f) - curveToRelative(-0.5f, 0.43f, -0.8f, 1.05f, -0.8f, 1.72f) - verticalLineToRelative(9.3f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(3.0f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.68f, 0.54f, -1.23f, 1.22f, -1.25f) - horizontalLineToRelative(2.56f) - curveToRelative(0.68f, 0.02f, 1.22f, 0.57f, 1.22f, 1.25f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(3.0f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-9.3f) - curveToRelative(0.0f, -0.67f, -0.3f, -1.3f, -0.8f, -1.72f) - lineToRelative(-6.75f, -5.7f) - close() - } - } - return _home!! - } - -private var _home: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Image.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Image.kt deleted file mode 100644 index dfd7f1f2..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Image.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Image: ImageVector - get() { - if (_image != null) { - return _image!! - } - _image = fluentIcon(name = "Filled.Image") { - fluentPath { - moveToRelative(11.56f, 13.65f) - lineToRelative(-0.09f, 0.07f) - lineToRelative(-6.92f, 6.8f) - curveToRelative(0.5f, 0.3f, 1.08f, 0.48f, 1.7f, 0.48f) - horizontalLineToRelative(11.5f) - curveToRelative(0.62f, 0.0f, 1.2f, -0.18f, 1.7f, -0.48f) - lineToRelative(-6.92f, -6.8f) - lineToRelative(-0.1f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.87f, 0.0f) - close() - moveTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.63f, 0.18f, 1.21f, 0.49f, 1.7f) - lineToRelative(6.93f, -6.8f) - lineToRelative(0.14f, -0.13f) - curveToRelative(0.83f, -0.7f, 2.05f, -0.7f, 2.89f, 0.01f) - lineToRelative(0.13f, 0.12f) - lineToRelative(6.93f, 6.8f) - curveToRelative(0.31f, -0.49f, 0.49f, -1.07f, 0.49f, -1.7f) - lineTo(21.0f, 6.25f) - close() - moveTo(15.25f, 10.75f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, 4.0f) - close() - } - } - return _image!! - } - -private var _image: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Important.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Important.kt deleted file mode 100644 index b4dd7e1e..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Important.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Important: ImageVector - get() { - if (_important != null) { - return _important!! - } - _important = fluentIcon(name = "Filled.Important") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(3.88f, 3.88f, 0.0f, false, false, -3.88f, 3.88f) - curveToRelative(0.0f, 2.92f, 1.21f, 6.55f, 1.82f, 8.2f) - arcTo(2.19f, 2.19f, 0.0f, false, false, 12.0f, 15.5f) - curveToRelative(0.9f, 0.0f, 1.74f, -0.54f, 2.06f, -1.42f) - curveToRelative(0.61f, -1.64f, 1.82f, -5.25f, 1.82f, -8.2f) - arcTo(3.88f, 3.88f, 0.0f, false, false, 12.0f, 2.0f) - close() - moveTo(12.0f, 17.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, -5.0f) - close() - } - } - return _important!! - } - -private var _important: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Info.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Info.kt deleted file mode 100644 index e8a8ceea..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Info.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Info: ImageVector - get() { - if (_info != null) { - return _info!! - } - _info = fluentIcon(name = "Filled.Info") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(12.0f, 10.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 0.88f) - verticalLineToRelative(5.74f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - verticalLineToRelative(-5.62f) - lineToRelative(-0.01f, -0.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -0.88f) - close() - moveTo(12.0f, 6.5f) - arcTo(1.25f, 1.25f, 0.0f, true, false, 12.0f, 9.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - } - } - return _info!! - } - -private var _info: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Key.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Key.kt deleted file mode 100644 index 4fd5d256..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Key.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Key: ImageVector - get() { - if (_key != null) { - return _key!! - } - _key = fluentIcon(name = "Filled.Key") { - fluentPath { - moveTo(8.95f, 8.6f) - arcToRelative(6.55f, 6.55f, 0.0f, false, true, 6.55f, -6.55f) - curveToRelative(3.6f, 0.0f, 6.55f, 2.82f, 6.55f, 6.45f) - arcToRelative(6.55f, 6.55f, 0.0f, false, true, -8.1f, 6.35f) - curveToRelative(-0.03f, 0.67f, -0.58f, 1.2f, -1.25f, 1.2f) - horizontalLineToRelative(-1.75f) - verticalLineToRelative(1.75f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - lineTo(7.95f, 19.05f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(3.7f, 22.05f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-2.17f) - curveToRelative(0.0f, -0.73f, 0.29f, -1.43f, 0.8f, -1.95f) - lineTo(9.0f, 9.95f) - arcToRelative(0.27f, 0.27f, 0.0f, false, false, 0.07f, -0.25f) - arcToRelative(6.39f, 6.39f, 0.0f, false, true, -0.11f, -1.1f) - close() - moveTo(18.25f, 7.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) - close() - } - } - return _key!! - } - -private var _key: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Link.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Link.kt deleted file mode 100644 index e5011d07..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Link.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Link: ImageVector - get() { - if (_link != null) { - return _link!! - } - _link = fluentIcon(name = "Filled.Link") { - fluentPath { - moveTo(9.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(7.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -0.18f, 6.0f) - lineTo(9.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(7.0f, 17.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, -0.22f, -10.0f) - lineTo(9.0f, 7.0f) - close() - moveTo(17.0f, 7.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.22f, 10.0f) - lineTo(15.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(17.0f, 15.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.18f, -6.0f) - lineTo(15.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(17.0f, 7.0f) - close() - moveTo(7.0f, 11.0f) - horizontalLineToRelative(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(7.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(17.0f, 11.0f) - lineTo(7.0f, 11.0f) - close() - } - } - return _link!! - } - -private var _link: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Mail.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Mail.kt deleted file mode 100644 index b899ef48..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Mail.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Mail: ImageVector - get() { - if (_mail != null) { - return _mail!! - } - _mail = fluentIcon(name = "Filled.Mail") { - fluentPath { - moveTo(22.0f, 8.6f) - verticalLineToRelative(8.15f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - horizontalLineTo(5.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 16.75f) - verticalLineTo(8.61f) - lineToRelative(9.65f, 5.05f) - curveToRelative(0.22f, 0.12f, 0.48f, 0.12f, 0.7f, 0.0f) - lineTo(22.0f, 8.61f) - close() - moveTo(5.25f, 4.0f) - horizontalLineToRelative(13.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.23f, 2.92f) - lineTo(12.0f, 12.15f) - lineTo(2.02f, 6.92f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.04f, -2.91f) - lineTo(5.25f, 4.0f) - horizontalLineToRelative(13.5f) - horizontalLineToRelative(-13.5f) - close() - } - } - return _mail!! - } - -private var _mail: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Maximize.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Maximize.kt deleted file mode 100644 index c473fdfd..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Maximize.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Maximize: ImageVector - get() { - if (_maximize != null) { - return _maximize!! - } - _maximize = fluentIcon(name = "Filled.Maximize") { - fluentPath { - moveTo(6.0f, 3.0f) - horizontalLineToRelative(12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - lineTo(6.0f, 21.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(3.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - close() - moveTo(6.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - lineTo(19.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(6.0f, 5.0f) - close() - } - } - return _maximize!! - } - -private var _maximize: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MoreHorizontal.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MoreHorizontal.kt deleted file mode 100644 index 7ff7b071..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MoreHorizontal.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MoreHorizontal: ImageVector - get() { - if (_moreHorizontal != null) { - return _moreHorizontal!! - } - _moreHorizontal = fluentIcon(name = "Filled.MoreHorizontal") { - fluentPath { - moveTo(8.0f, 12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(14.0f, 12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(18.0f, 14.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) - close() - } - } - return _moreHorizontal!! - } - -private var _moreHorizontal: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MoreVertical.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MoreVertical.kt deleted file mode 100644 index b96534fd..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MoreVertical.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MoreVertical: ImageVector - get() { - if (_moreVertical != null) { - return _moreVertical!! - } - _moreVertical = fluentIcon(name = "Filled.MoreVertical") { - fluentPath { - moveTo(12.0f, 8.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, 4.0f) - close() - moveTo(12.0f, 14.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, 4.0f) - close() - moveTo(10.0f, 18.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -4.0f, 0.0f) - close() - } - } - return _moreVertical!! - } - -private var _moreVertical: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Navigation.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Navigation.kt deleted file mode 100644 index 26869ce1..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Navigation.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Navigation: ImageVector - get() { - if (_navigation != null) { - return _navigation!! - } - _navigation = fluentIcon(name = "Filled.Navigation") { - fluentPath { - moveTo(3.0f, 17.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(3.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(21.0f, 17.0f) - lineTo(3.0f, 17.0f) - close() - moveTo(3.0f, 11.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(3.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(21.0f, 11.0f) - lineTo(3.0f, 11.0f) - close() - moveTo(3.0f, 5.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(3.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(21.0f, 5.0f) - lineTo(3.0f, 5.0f) - close() - } - } - return _navigation!! - } - -private var _navigation: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Open.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Open.kt deleted file mode 100644 index c22d971b..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Open.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Open: ImageVector - get() { - if (_open != null) { - return _open!! - } - _open = fluentIcon(name = "Filled.Open") { - fluentPath { - moveTo(6.25f, 4.75f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(11.5f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(4.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.5f, 3.5f) - lineTo(6.25f, 21.25f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.5f, -3.5f) - lineTo(2.75f, 6.25f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 3.5f, -3.5f) - horizontalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(12.75f, 3.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(19.25f, 6.16f) - lineToRelative(-4.8f, 4.8f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.4f, -1.42f) - lineToRelative(4.79f, -4.79f) - horizontalLineToRelative(-4.09f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - } - } - return _open!! - } - -private var _open: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Options.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Options.kt deleted file mode 100644 index 6ebe1baf..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Options.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Options: ImageVector - get() { - if (_options != null) { - return _options!! - } - _options = fluentIcon(name = "Filled.Options") { - fluentPath { - moveTo(8.75f, 13.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.16f, 2.5f) - horizontalLineToRelative(9.34f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-9.44f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.32f, 0.0f) - lineTo(2.75f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(2.94f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.16f, -2.5f) - close() - moveTo(15.25f, 4.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.16f, 2.5f) - horizontalLineToRelative(2.84f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-2.94f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.32f, 0.0f) - lineTo(2.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(9.44f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 15.25f, 4.0f) - close() - } - } - return _options!! - } - -private var _options: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Pause.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Pause.kt deleted file mode 100644 index f660558e..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Pause.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Pause: ImageVector - get() { - if (_pause != null) { - return _pause!! - } - _pause = fluentIcon(name = "Filled.Pause") { - fluentPath { - moveTo(5.75f, 3.0f) - curveTo(4.78f, 3.0f, 4.0f, 3.78f, 4.0f, 4.75f) - verticalLineToRelative(14.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(3.5f) - curveToRelative(0.96f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(11.0f, 4.75f) - curveTo(11.0f, 3.78f, 10.2f, 3.0f, 9.25f, 3.0f) - horizontalLineToRelative(-3.5f) - close() - moveTo(14.75f, 3.0f) - curveTo(13.78f, 3.0f, 13.0f, 3.78f, 13.0f, 4.75f) - verticalLineToRelative(14.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(3.5f) - curveToRelative(0.96f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(20.0f, 4.75f) - curveTo(20.0f, 3.78f, 19.2f, 3.0f, 18.25f, 3.0f) - horizontalLineToRelative(-3.5f) - close() - } - } - return _pause!! - } - -private var _pause: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Person.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Person.kt deleted file mode 100644 index 083f2915..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Person.kt +++ /dev/null @@ -1,37 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Person: ImageVector - get() { - if (_person != null) { - return _person!! - } - _person = fluentIcon(name = "Filled.Person") { - fluentPath { - moveTo(17.75f, 14.0f) - curveTo(19.0f, 14.0f, 20.0f, 15.0f, 20.0f, 16.25f) - verticalLineToRelative(0.92f) - curveToRelative(0.0f, 0.57f, -0.18f, 1.13f, -0.5f, 1.6f) - curveTo(17.93f, 20.93f, 15.41f, 22.0f, 12.0f, 22.0f) - reflectiveCurveToRelative(-5.94f, -1.07f, -7.49f, -3.24f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.5f, -1.6f) - verticalLineToRelative(-0.91f) - curveTo(4.0f, 15.0f, 5.0f, 14.0f, 6.24f, 14.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - } - } - return _person!! - } - -private var _person: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Pin.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Pin.kt deleted file mode 100644 index ed48ec7d..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Pin.kt +++ /dev/null @@ -1,41 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Pin: ImageVector - get() { - if (_pin != null) { - return _pin!! - } - _pin = fluentIcon(name = "Filled.Pin") { - fluentPath { - moveToRelative(21.07f, 7.76f) - lineToRelative(-4.83f, -4.83f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -4.4f, 0.72f) - lineTo(9.4f, 8.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.42f, 0.37f) - lineTo(4.8f, 10.33f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -0.48f, 2.07f) - lineToRelative(3.1f, 3.1f) - lineTo(3.0f, 19.94f) - verticalLineTo(21.0f) - horizontalLineToRelative(1.06f) - lineToRelative(4.44f, -4.44f) - lineToRelative(3.1f, 3.1f) - curveToRelative(0.66f, 0.66f, 1.77f, 0.4f, 2.07f, -0.47f) - lineToRelative(1.44f, -4.17f) - curveToRelative(0.06f, -0.18f, 0.2f, -0.33f, 0.37f, -0.42f) - lineToRelative(4.87f, -2.44f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 0.72f, -4.4f) - close() - } - } - return _pin!! - } - -private var _pin: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Play.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Play.kt deleted file mode 100644 index 4682ac69..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Play.kt +++ /dev/null @@ -1,30 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Play: ImageVector - get() { - if (_play != null) { - return _play!! - } - _play = fluentIcon(name = "Filled.Play") { - fluentPath { - moveTo(5.0f, 5.27f) - curveToRelative(0.0f, -1.7f, 1.83f, -2.79f, 3.33f, -1.97f) - lineToRelative(12.36f, 6.72f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, 3.96f) - lineTo(8.33f, 20.7f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 5.0f, 18.73f) - verticalLineTo(5.27f) - close() - } - } - return _play!! - } - -private var _play: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReOrder.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReOrder.kt deleted file mode 100644 index 6baed963..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReOrder.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ReOrder: ImageVector - get() { - if (_reOrder != null) { - return _reOrder!! - } - _reOrder = fluentIcon(name = "Filled.ReOrder") { - fluentPath { - moveTo(3.0f, 13.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(3.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(21.0f, 13.0f) - lineTo(3.0f, 13.0f) - close() - moveTo(3.0f, 9.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(3.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(21.0f, 9.0f) - lineTo(3.0f, 9.0f) - close() - } - } - return _reOrder!! - } - -private var _reOrder: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Rename.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Rename.kt deleted file mode 100644 index 9a82c70f..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Rename.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Rename: ImageVector - get() { - if (_rename != null) { - return _rename!! - } - _rename = fluentIcon(name = "Filled.Rename") { - fluentPath { - moveTo(9.75f, 2.0f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(12.5f, 3.5f) - verticalLineToRelative(17.0f) - horizontalLineToRelative(1.25f) - curveToRelative(0.37f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.64f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(11.0f, 20.5f) - verticalLineToRelative(-17.0f) - lineTo(9.75f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineTo(9.0f, 2.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - close() - moveTo(18.25f, 5.0f) - curveToRelative(1.79f, 0.0f, 3.24f, 1.45f, 3.25f, 3.25f) - verticalLineToRelative(7.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 18.44f, 19.0f) - lineTo(13.5f, 19.0f) - lineTo(13.5f, 5.0f) - horizontalLineToRelative(4.74f) - close() - moveTo(10.0f, 5.0f) - verticalLineToRelative(14.0f) - lineTo(5.24f, 19.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 15.75f) - verticalLineToRelative(-7.5f) - curveTo(2.0f, 6.45f, 3.46f, 5.0f, 5.25f, 5.0f) - lineTo(10.0f, 5.0f) - close() - } - } - return _rename!! - } - -private var _rename: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Save.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Save.kt deleted file mode 100644 index 80a01ccb..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Save.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Save: ImageVector - get() { - if (_save != null) { - return _save!! - } - _save = fluentIcon(name = "Filled.Save") { - fluentPath { - moveTo(6.75f, 3.0f) - horizontalLineToRelative(-1.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) - lineTo(6.0f, 21.0f) - verticalLineToRelative(-6.0f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(7.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(6.0f) - horizontalLineToRelative(0.25f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) - lineTo(21.0f, 8.29f) - curveToRelative(0.0f, -0.87f, -0.34f, -1.7f, -0.95f, -2.3f) - lineTo(18.0f, 3.95f) - curveToRelative(-0.6f, -0.6f, -1.41f, -0.94f, -2.26f, -0.95f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(9.0f, 9.75f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - lineTo(6.75f, 3.0f) - close() - moveTo(14.25f, 3.0f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(9.0f, 8.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(8.25f, 3.0f) - horizontalLineToRelative(6.0f) - close() - moveTo(16.5f, 21.0f) - verticalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.0f) - horizontalLineToRelative(9.0f) - close() - } - } - return _save!! - } - -private var _save: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Search.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Search.kt deleted file mode 100644 index b7bf0387..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Search.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Search: ImageVector - get() { - if (_search != null) { - return _search!! - } - _search = fluentIcon(name = "Filled.Search") { - fluentPath { - moveTo(10.0f, 2.5f) - arcToRelative(7.5f, 7.5f, 0.0f, false, true, 5.96f, 12.05f) - lineToRelative(4.75f, 4.74f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 1.5f) - lineToRelative(-0.1f, -0.08f) - lineToRelative(-4.74f, -4.75f) - arcTo(7.5f, 7.5f, 0.0f, true, true, 10.0f, 2.5f) - close() - moveTo(10.0f, 4.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, -11.0f) - close() - } - } - return _search!! - } - -private var _search: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Send.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Send.kt deleted file mode 100644 index 7229be2e..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Send.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Send: ImageVector - get() { - if (_send != null) { - return _send!! - } - _send = fluentIcon(name = "Filled.Send") { - fluentPath { - moveToRelative(12.81f, 12.2f) - lineToRelative(-7.53f, 1.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.38f, 0.32f) - lineToRelative(-2.6f, 6.96f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.03f, 0.94f) - lineToRelative(18.0f, -9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.34f) - lineToRelative(-18.0f, -9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.03f, 0.94f) - lineToRelative(2.6f, 6.96f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.38f, 0.32f) - lineToRelative(7.53f, 1.25f) - arcToRelative(0.2f, 0.2f, 0.0f, false, true, 0.0f, 0.4f) - close() - } - } - return _send!! - } - -private var _send: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Settings.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Settings.kt deleted file mode 100644 index f03532df..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Settings.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Settings: ImageVector - get() { - if (_settings != null) { - return _settings!! - } - _settings = fluentIcon(name = "Filled.Settings") { - fluentPath { - moveTo(12.01f, 2.25f) - curveToRelative(0.74f, 0.0f, 1.47f, 0.1f, 2.18f, 0.25f) - curveToRelative(0.32f, 0.07f, 0.55f, 0.33f, 0.59f, 0.65f) - lineToRelative(0.17f, 1.53f) - arcToRelative(1.38f, 1.38f, 0.0f, false, false, 1.92f, 1.11f) - lineToRelative(1.4f, -0.61f) - curveToRelative(0.3f, -0.13f, 0.64f, -0.06f, 0.85f, 0.17f) - arcToRelative(9.8f, 9.8f, 0.0f, false, true, 2.2f, 3.8f) - curveToRelative(0.1f, 0.3f, 0.0f, 0.63f, -0.26f, 0.82f) - lineToRelative(-1.25f, 0.92f) - arcToRelative(1.38f, 1.38f, 0.0f, false, false, 0.0f, 2.22f) - lineToRelative(1.25f, 0.92f) - curveToRelative(0.26f, 0.19f, 0.36f, 0.52f, 0.27f, 0.82f) - arcToRelative(9.8f, 9.8f, 0.0f, false, true, -2.2f, 3.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.85f, 0.17f) - lineToRelative(-1.4f, -0.62f) - arcToRelative(1.38f, 1.38f, 0.0f, false, false, -1.93f, 1.12f) - lineToRelative(-0.17f, 1.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.58f, 0.65f) - arcToRelative(9.52f, 9.52f, 0.0f, false, true, -4.4f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.57f, -0.65f) - lineToRelative(-0.17f, -1.52f) - arcToRelative(1.38f, 1.38f, 0.0f, false, false, -1.93f, -1.11f) - lineToRelative(-1.4f, 0.62f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.85f, -0.18f) - arcToRelative(9.8f, 9.8f, 0.0f, false, true, -2.2f, -3.8f) - curveToRelative(-0.1f, -0.3f, 0.0f, -0.63f, 0.26f, -0.82f) - lineToRelative(1.25f, -0.92f) - arcToRelative(1.38f, 1.38f, 0.0f, false, false, 0.0f, -2.22f) - lineToRelative(-1.24f, -0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.28f, -0.82f) - arcToRelative(9.8f, 9.8f, 0.0f, false, true, 2.2f, -3.8f) - curveToRelative(0.23f, -0.23f, 0.57f, -0.3f, 0.86f, -0.17f) - lineToRelative(1.4f, 0.62f) - curveToRelative(0.4f, 0.17f, 0.86f, 0.15f, 1.25f, -0.08f) - curveToRelative(0.38f, -0.22f, 0.63f, -0.6f, 0.68f, -1.04f) - lineToRelative(0.17f, -1.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.58f, -0.65f) - curveToRelative(0.72f, -0.16f, 1.45f, -0.24f, 2.2f, -0.25f) - close() - moveTo(12.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - } - } - return _settings!! - } - -private var _settings: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Share.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Share.kt deleted file mode 100644 index 184be0cf..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Share.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Share: ImageVector - get() { - if (_share != null) { - return _share!! - } - _share = fluentIcon(name = "Filled.Share") { - fluentPath { - moveTo(6.75f, 4.0f) - horizontalLineToRelative(3.46f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 5.5f) - curveToRelative(-1.2f, 0.0f, -2.17f, 0.92f, -2.25f, 2.1f) - verticalLineToRelative(9.65f) - curveToRelative(0.0f, 1.19f, 0.92f, 2.17f, 2.1f, 2.24f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(9.5f) - curveToRelative(1.19f, 0.0f, 2.16f, -0.93f, 2.24f, -2.1f) - verticalLineToRelative(-0.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.6f) - curveToRelative(0.0f, 2.0f, -1.56f, 3.64f, -3.54f, 3.74f) - lineToRelative(-0.2f, 0.01f) - horizontalLineToRelative(-9.5f) - curveToRelative(-2.0f, 0.0f, -3.64f, -1.57f, -3.75f, -3.55f) - verticalLineToRelative(-9.7f) - curveToRelative(0.0f, -2.0f, 1.57f, -3.64f, 3.55f, -3.75f) - horizontalLineToRelative(3.66f) - horizontalLineToRelative(-3.46f) - close() - moveTo(14.5f, 6.54f) - lineTo(14.5f, 3.75f) - curveToRelative(0.0f, -0.62f, 0.7f, -0.96f, 1.19f, -0.61f) - lineToRelative(0.08f, 0.07f) - lineToRelative(6.0f, 5.75f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.7f, 0.07f, 1.0f) - lineToRelative(-0.08f, 0.08f) - lineToRelative(-5.99f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.26f, -0.43f) - verticalLineToRelative(-2.91f) - horizontalLineToRelative(-0.33f) - curveToRelative(-2.66f, -0.01f, -4.93f, 1.08f, -6.86f, 3.3f) - curveToRelative(-0.5f, 0.56f, -1.43f, 0.13f, -1.31f, -0.62f) - curveToRelative(0.83f, -5.14f, 3.6f, -8.04f, 8.19f, -8.56f) - lineToRelative(0.3f, -0.03f) - lineTo(14.5f, 3.75f) - verticalLineToRelative(2.8f) - close() - } - } - return _share!! - } - -private var _share: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Star.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Star.kt deleted file mode 100644 index 432623c5..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Star.kt +++ /dev/null @@ -1,39 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Star: ImageVector - get() { - if (_star != null) { - return _star!! - } - _star = fluentIcon(name = "Filled.Star") { - fluentPath { - moveTo(10.79f, 3.1f) - curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) - lineToRelative(2.36f, 4.78f) - lineToRelative(5.27f, 0.77f) - curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) - lineToRelative(-3.82f, 3.72f) - lineToRelative(0.9f, 5.25f) - arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, 1.42f) - lineTo(12.0f, 18.86f) - lineToRelative(-4.72f, 2.48f) - arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) - lineToRelative(0.9f, -5.25f) - lineToRelative(-3.81f, -3.72f) - curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) - lineToRelative(5.27f, -0.77f) - lineToRelative(2.36f, -4.78f) - close() - } - } - return _star!! - } - -private var _star: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Subtract.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Subtract.kt deleted file mode 100644 index 7392d31d..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Subtract.kt +++ /dev/null @@ -1,28 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Subtract: ImageVector - get() { - if (_subtract != null) { - return _subtract!! - } - _subtract = fluentIcon(name = "Filled.Subtract") { - fluentPath { - moveTo(4.0f, 13.0f) - horizontalLineToRelative(16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineTo(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - close() - } - } - return _subtract!! - } - -private var _subtract: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Tag.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Tag.kt deleted file mode 100644 index b143775d..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Tag.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Tag: ImageVector - get() { - if (_tag != null) { - return _tag!! - } - _tag = fluentIcon(name = "Filled.Tag") { - fluentPath { - moveTo(19.75f, 2.0f) - curveTo(20.99f, 2.0f, 22.0f, 3.0f, 22.0f, 4.25f) - verticalLineToRelative(5.46f) - curveToRelative(0.0f, 0.86f, -0.34f, 1.69f, -0.95f, 2.3f) - lineToRelative(-8.5f, 8.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -4.6f, 0.0f) - lineTo(3.5f, 16.06f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.6f) - lineToRelative(8.5f, -8.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.3f, -0.96f) - horizontalLineToRelative(5.46f) - close() - moveTo(17.0f, 5.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - } - } - return _tag!! - } - -private var _tag: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Warning.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Warning.kt deleted file mode 100644 index 8c577842..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Warning.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Warning: ImageVector - get() { - if (_warning != null) { - return _warning!! - } - _warning = fluentIcon(name = "Filled.Warning") { - fluentPath { - moveTo(10.03f, 3.66f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.94f, 0.0f) - lineToRelative(7.74f, 14.0f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 19.74f, 21.0f) - lineTo(4.25f, 21.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -1.97f, -3.34f) - lineToRelative(7.75f, -14.0f) - close() - moveTo(13.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(12.74f, 9.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - verticalLineToRelative(4.5f) - lineToRelative(0.02f, 0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.49f, -0.1f) - verticalLineToRelative(-4.5f) - lineToRelative(-0.01f, -0.1f) - close() - } - } - return _warning!! - } - -private var _warning: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Wrench.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Wrench.kt deleted file mode 100644 index d0f16afb..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Wrench.kt +++ /dev/null @@ -1,35 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Wrench: ImageVector - get() { - if (_wrench != null) { - return _wrench!! - } - _wrench = fluentIcon(name = "Filled.Wrench") { - fluentPath { - moveTo(16.75f, 2.0f) - arcToRelative(5.25f, 5.25f, 0.0f, false, false, -5.0f, 6.84f) - lineToRelative(-9.07f, 9.38f) - arcToRelative(2.34f, 2.34f, 0.0f, true, false, 3.37f, 3.26f) - lineTo(15.0f, 12.2f) - arcTo(5.24f, 5.24f, 0.0f, false, false, 21.8f, 5.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.25f, -0.32f) - lineToRelative(-3.19f, 3.18f) - lineTo(15.3f, 6.6f) - lineToRelative(3.16f, -3.16f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.33f, -1.26f) - curveToRelative(-0.44f, -0.12f, -0.9f, -0.18f, -1.38f, -0.18f) - close() - } - } - return _wrench!! - } - -private var _wrench: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Add.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Add.kt deleted file mode 100644 index dea59083..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Add.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Add: ImageVector - get() { - if (_add != null) { - return _add!! - } - _add = fluentIcon(name = "Regular.Add") { - fluentPath { - moveTo(11.75f, 3.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineTo(11.0f) - horizontalLineToRelative(7.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineTo(12.5f) - verticalLineToRelative(7.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, 0.1f) - verticalLineTo(12.5f) - horizontalLineTo(3.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineTo(11.0f) - verticalLineTo(3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _add!! - } - -private var _add: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Alert.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Alert.kt deleted file mode 100644 index 05aa1079..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Alert.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Alert: ImageVector - get() { - if (_alert != null) { - return _alert!! - } - _alert = fluentIcon(name = "Regular.Alert") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(7.5f, 7.5f, 0.0f, false, true, 7.5f, 7.25f) - verticalLineToRelative(4.35f) - lineToRelative(1.38f, 3.15f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.15f, 1.75f) - lineTo(15.0f, 18.5f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.18f) - verticalLineToRelative(-0.18f) - lineTo(4.27f, 18.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.14f, -1.75f) - lineTo(4.5f, 13.6f) - lineTo(4.5f, 9.5f) - curveTo(4.5f, 5.35f, 7.85f, 2.0f, 12.0f, 2.0f) - close() - moveTo(13.5f, 18.5f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.15f) - verticalLineToRelative(-0.15f) - close() - moveTo(12.0f, 3.5f) - curveToRelative(-3.32f, 0.0f, -6.0f, 2.67f, -6.0f, 6.0f) - verticalLineToRelative(4.4f) - lineTo(4.66f, 17.0f) - horizontalLineToRelative(14.7f) - lineTo(18.0f, 13.9f) - lineTo(18.0f, 9.29f) - arcToRelative(5.99f, 5.99f, 0.0f, false, false, -6.0f, -5.78f) - close() - } - } - return _alert!! - } - -private var _alert: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowDown.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowDown.kt deleted file mode 100644 index f34dca79..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowDown.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowDown: ImageVector - get() { - if (_arrowDown != null) { - return _arrowDown!! - } - _arrowDown = fluentIcon(name = "Regular.ArrowDown") { - fluentPath { - moveTo(19.8f, 13.27f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.1f, -1.04f) - lineToRelative(-5.95f, 6.25f) - verticalLineTo(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) - verticalLineToRelative(14.73f) - lineTo(5.3f, 12.23f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.1f, 1.04f) - lineToRelative(7.08f, 7.42f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.44f, 0.0f) - lineToRelative(7.07f, -7.42f) - close() - } - } - return _arrowDown!! - } - -private var _arrowDown: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowDownLeft.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowDownLeft.kt deleted file mode 100644 index 9c4a49dc..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowDownLeft.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowDownLeft: ImageVector - get() { - if (_arrowDownLeft != null) { - return _arrowDownLeft!! - } - _arrowDownLeft = fluentIcon(name = "Regular.ArrowDownLeft") { - fluentPath { - moveTo(13.25f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineTo(5.58f) - lineToRelative(15.2f, -15.2f) - arcToRelative(0.76f, 0.76f, 0.0f, false, false, -1.08f, -1.08f) - lineTo(4.5f, 18.42f) - verticalLineToRelative(-7.67f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.42f, 0.33f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(9.5f) - close() - } - } - return _arrowDownLeft!! - } - -private var _arrowDownLeft: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowDownload.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowDownload.kt deleted file mode 100644 index 199bd0aa..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowDownload.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowDownload: ImageVector - get() { - if (_arrowDownload != null) { - return _arrowDownload!! - } - _arrowDownload = fluentIcon(name = "Regular.ArrowDownload") { - fluentPath { - moveTo(18.25f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - horizontalLineToRelative(-13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(13.0f) - close() - moveTo(11.65f, 2.01f) - horizontalLineToRelative(0.1f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.64f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(13.7f) - lineToRelative(3.72f, -3.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 0.07f) - lineToRelative(-0.09f, -0.07f) - lineToRelative(-5.0f, -5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) - lineToRelative(0.08f, 0.07f) - lineTo(11.0f, 16.43f) - lineTo(11.0f, 2.76f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.75f) - horizontalLineToRelative(0.1f) - horizontalLineToRelative(-0.1f) - close() - } - } - return _arrowDownload!! - } - -private var _arrowDownload: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowExpand.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowExpand.kt deleted file mode 100644 index 236bd002..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowExpand.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowExpand: ImageVector - get() { - if (_arrowExpand != null) { - return _arrowExpand!! - } - _arrowExpand = fluentIcon(name = "Regular.ArrowExpand") { - fluentPath { - moveTo(7.6f, 15.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) - lineToRelative(-3.1f, 3.1f) - horizontalLineToRelative(2.19f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.64f) - lineToRelative(0.01f, 0.1f) - curveToRelative(0.0f, 0.42f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(2.2f) - lineToRelative(3.1f, -3.1f) - close() - moveTo(16.25f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.2f) - lineToRelative(-3.1f, -3.09f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(3.1f, 3.1f) - verticalLineToRelative(-2.2f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.69f, 0.64f, -0.74f) - horizontalLineToRelative(0.1f) - curveToRelative(0.42f, 0.0f, 0.75f, 0.33f, 0.75f, 0.74f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.42f, -0.33f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-4.0f) - close() - moveTo(7.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(5.56f, 4.5f) - lineToRelative(3.1f, 3.1f) - curveToRelative(0.26f, 0.26f, 0.29f, 0.68f, 0.07f, 0.97f) - lineToRelative(-0.07f, 0.09f) - curveToRelative(-0.3f, 0.29f, -0.77f, 0.29f, -1.07f, 0.0f) - lineTo(4.5f, 5.56f) - verticalLineToRelative(2.19f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 7.75f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.0f) - close() - moveTo(20.25f, 3.0f) - curveToRelative(0.42f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.2f) - lineToRelative(-3.09f, 3.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.08f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.07f) - lineToRelative(3.1f, -3.09f) - horizontalLineToRelative(-2.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.74f, -0.75f) - horizontalLineToRelative(4.0f) - close() - } - } - return _arrowExpand!! - } - -private var _arrowExpand: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowForward.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowForward.kt deleted file mode 100644 index 0246c68e..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowForward.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowForward: ImageVector - get() { - if (_arrowForward != null) { - return _arrowForward!! - } - _arrowForward = fluentIcon(name = "Regular.ArrowForward") { - fluentPath { - moveTo(14.72f, 16.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineToRelative(5.0f, -5.0f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-5.0f, -5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineTo(18.44f, 11.0f) - horizontalLineTo(10.6f) - curveToRelative(-1.6f, 0.0f, -2.81f, 0.24f, -3.89f, 0.76f) - lineToRelative(-0.24f, 0.13f) - arcToRelative(6.2f, 6.2f, 0.0f, false, false, -2.58f, 2.58f) - arcTo(8.4f, 8.4f, 0.0f, false, false, 3.0f, 18.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - curveToRelative(0.0f, -1.48f, 0.23f, -2.52f, 0.71f, -3.43f) - arcToRelative(4.7f, 4.7f, 0.0f, false, true, 1.96f, -1.96f) - arcToRelative(6.63f, 6.63f, 0.0f, false, true, 3.1f, -0.7f) - lineToRelative(0.33f, -0.01f) - horizontalLineToRelative(7.84f) - lineToRelative(-3.72f, 3.72f) - close() - } - } - return _arrowForward!! - } - -private var _arrowForward: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowLeft.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowLeft.kt deleted file mode 100644 index 2ef02b48..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowLeft.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowLeft: ImageVector - get() { - if (_arrowLeft != null) { - return _arrowLeft!! - } - _arrowLeft = fluentIcon(name = "Regular.ArrowLeft") { - fluentPath { - moveTo(10.73f, 19.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.04f, -1.1f) - lineToRelative(-6.25f, -5.95f) - horizontalLineToRelative(14.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(5.52f) - lineToRelative(6.25f, -5.95f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.04f, -1.1f) - lineToRelative(-7.42f, 7.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.44f) - lineToRelative(7.42f, 7.07f) - close() - } - } - return _arrowLeft!! - } - -private var _arrowLeft: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowRight.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowRight.kt deleted file mode 100644 index 2edb8eaa..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowRight.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowRight: ImageVector - get() { - if (_arrowRight != null) { - return _arrowRight!! - } - _arrowRight = fluentIcon(name = "Regular.ArrowRight") { - fluentPath { - moveTo(13.27f, 4.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.04f, 1.1f) - lineToRelative(6.25f, 5.95f) - horizontalLineTo(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(14.73f) - lineToRelative(-6.25f, 5.95f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.04f, 1.1f) - lineToRelative(7.42f, -7.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.44f) - lineTo(13.27f, 4.2f) - close() - } - } - return _arrowRight!! - } - -private var _arrowRight: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSync.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSync.kt deleted file mode 100644 index 68181767..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSync.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowSync: ImageVector - get() { - if (_arrowSync != null) { - return _arrowSync!! - } - _arrowSync = fluentIcon(name = "Regular.ArrowSync") { - fluentPath { - moveTo(16.25f, 5.18f) - curveToRelative(-0.25f, 0.33f, -0.19f, 0.8f, 0.14f, 1.05f) - arcToRelative(7.24f, 7.24f, 0.0f, false, true, -3.6f, 12.98f) - lineToRelative(0.68f, -0.68f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, -1.13f) - lineToRelative(-0.08f, 0.07f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.98f) - lineToRelative(0.07f, 0.08f) - lineToRelative(2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, -0.98f) - lineToRelative(-0.07f, -0.08f) - lineToRelative(-0.75f, -0.75f) - arcTo(8.75f, 8.75f, 0.0f, false, false, 17.3f, 5.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.05f, 0.14f) - close() - moveTo(10.53f, 1.47f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(0.75f, 0.75f) - arcToRelative(8.75f, 8.75f, 0.0f, false, false, -4.85f, 15.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.96f, -1.16f) - arcTo(7.23f, 7.23f, 0.0f, false, true, 11.2f, 4.8f) - lineToRelative(-0.68f, 0.68f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(2.0f, -2.0f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - close() - } - } - return _arrowSync!! - } - -private var _arrowSync: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowUp.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowUp.kt deleted file mode 100644 index 8e27ee10..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowUp.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowUp: ImageVector - get() { - if (_arrowUp != null) { - return _arrowUp!! - } - _arrowUp = fluentIcon(name = "Regular.ArrowUp") { - fluentPath { - moveTo(4.2f, 10.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.1f, 1.04f) - lineToRelative(5.95f, -6.25f) - verticalLineToRelative(14.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineTo(5.52f) - lineToRelative(5.95f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.1f, -1.04f) - lineToRelative(-7.08f, -7.42f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.44f, 0.0f) - lineTo(4.2f, 10.73f) - close() - } - } - return _arrowUp!! - } - -private var _arrowUp: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowUpLeft.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowUpLeft.kt deleted file mode 100644 index 7e170268..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowUpLeft.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowUpLeft: ImageVector - get() { - if (_arrowUpLeft != null) { - return _arrowUpLeft!! - } - _arrowUpLeft = fluentIcon(name = "Regular.ArrowUpLeft") { - fluentPath { - moveTo(13.25f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineTo(5.58f) - lineToRelative(15.2f, 15.2f) - arcToRelative(0.76f, 0.76f, 0.0f, false, true, -1.08f, 1.08f) - lineTo(4.5f, 5.58f) - verticalLineToRelative(7.67f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(9.5f) - close() - } - } - return _arrowUpLeft!! - } - -private var _arrowUpLeft: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowUpRight.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowUpRight.kt deleted file mode 100644 index efd0f8c9..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowUpRight.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowUpRight: ImageVector - get() { - if (_arrowUpRight != null) { - return _arrowUpRight!! - } - _arrowUpRight = fluentIcon(name = "Regular.ArrowUpRight") { - fluentPath { - moveTo(10.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.67f) - lineTo(3.22f, 19.7f) - arcToRelative(0.76f, 0.76f, 0.0f, true, false, 1.08f, 1.08f) - lineToRelative(15.2f, -15.2f) - verticalLineToRelative(7.67f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-9.5f) - close() - } - } - return _arrowUpRight!! - } - -private var _arrowUpRight: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Attach.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Attach.kt deleted file mode 100644 index 2239626e..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Attach.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Attach: ImageVector - get() { - if (_attach != null) { - return _attach!! - } - _attach = fluentIcon(name = "Regular.Attach") { - fluentPath { - moveTo(11.77f, 3.74f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 8.66f, 8.3f) - lineToRelative(-0.19f, 0.2f) - lineToRelative(-8.8f, 8.8f) - lineToRelative(-0.03f, 0.03f) - arcToRelative(3.72f, 3.72f, 0.0f, false, true, -5.4f, -5.1f) - lineToRelative(0.05f, -0.06f) - lineToRelative(0.08f, -0.09f) - lineToRelative(0.14f, -0.15f) - lineToRelative(7.44f, -7.45f) - curveToRelative(0.27f, -0.27f, 0.69f, -0.29f, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.08f, 0.98f) - lineToRelative(-0.08f, 0.08f) - lineToRelative(-7.59f, 7.61f) - arcToRelative(2.23f, 2.23f, 0.0f, false, false, 3.17f, 3.1f) - lineToRelative(8.84f, -8.82f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 13.0f, 4.64f) - lineToRelative(-0.17f, 0.16f) - lineToRelative(-0.01f, 0.02f) - lineToRelative(-9.54f, 9.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.97f) - lineToRelative(0.07f, -0.09f) - lineToRelative(9.55f, -9.55f) - close() - } - } - return _attach!! - } - -private var _attach: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Backspace.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Backspace.kt deleted file mode 100644 index 48adeea8..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Backspace.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Backspace: ImageVector - get() { - if (_backspace != null) { - return _backspace!! - } - _backspace = fluentIcon(name = "Regular.Backspace") { - fluentPath { - moveTo(18.75f, 4.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.24f, 3.07f) - lineToRelative(0.01f, 0.18f) - verticalLineToRelative(9.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - horizontalLineToRelative(-8.5f) - curveToRelative(-0.77f, 0.0f, -1.5f, -0.27f, -2.09f, -0.76f) - lineToRelative(-0.15f, -0.13f) - lineToRelative(-5.0f, -4.75f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -0.11f, -4.6f) - lineTo(3.0f, 9.64f) - lineToRelative(5.0f, -4.75f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.03f, -0.88f) - lineToRelative(0.2f, -0.01f) - horizontalLineToRelative(8.51f) - close() - moveTo(18.75f, 5.5f) - horizontalLineToRelative(-8.5f) - curveToRelative(-0.4f, 0.0f, -0.77f, 0.13f, -1.08f, 0.37f) - lineToRelative(-0.13f, 0.11f) - lineToRelative(-5.0f, 4.75f) - lineToRelative(-0.06f, 0.06f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -0.05f, 2.36f) - lineToRelative(0.12f, 0.12f) - lineToRelative(5.0f, 4.75f) - curveToRelative(0.28f, 0.27f, 0.64f, 0.43f, 1.03f, 0.47f) - lineToRelative(0.17f, 0.01f) - horizontalLineToRelative(8.5f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.92f, -0.7f, -1.67f, -1.6f, -1.74f) - lineToRelative(-0.15f, -0.01f) - close() - moveTo(11.45f, 8.4f) - lineTo(11.53f, 8.47f) - lineTo(14.0f, 10.94f) - lineToRelative(2.47f, -2.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineTo(15.06f, 12.0f) - lineToRelative(2.47f, 2.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) - lineToRelative(-0.08f, -0.07f) - lineTo(14.0f, 13.06f) - lineToRelative(-2.47f, 2.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineTo(12.94f, 12.0f) - lineToRelative(-2.47f, -2.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) - close() - } - } - return _backspace!! - } - -private var _backspace: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarLtr.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarLtr.kt deleted file mode 100644 index f5d03042..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarLtr.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarLtr: ImageVector - get() { - if (_calendarLtr != null) { - return _calendarLtr!! - } - _calendarLtr = fluentIcon(name = "Regular.CalendarLtr") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(19.5f, 8.5f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(9.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 8.5f) - close() - moveTo(7.75f, 14.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(12.0f, 14.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(7.75f, 10.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(12.0f, 10.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(16.25f, 10.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 7.0f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - } - } - return _calendarLtr!! - } - -private var _calendarLtr: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CaretDown.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CaretDown.kt deleted file mode 100644 index 9532e85e..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CaretDown.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CaretDown: ImageVector - get() { - if (_caretDown != null) { - return _caretDown!! - } - _caretDown = fluentIcon(name = "Regular.CaretDown") { - fluentPath { - moveTo(5.16f, 10.07f) - curveTo(4.46f, 9.27f, 5.03f, 8.0f, 6.1f, 8.0f) - horizontalLineToRelative(11.8f) - curveToRelative(1.07f, 0.0f, 1.65f, 1.26f, 0.94f, 2.07f) - lineToRelative(-5.52f, 6.31f) - curveToRelative(-0.7f, 0.8f, -1.94f, 0.8f, -2.64f, 0.0f) - lineToRelative(-5.52f, -6.3f) - close() - moveTo(6.66f, 9.5f) - lineTo(11.81f, 15.4f) - curveToRelative(0.1f, 0.11f, 0.28f, 0.11f, 0.38f, 0.0f) - lineToRelative(5.16f, -5.9f) - lineTo(6.65f, 9.5f) - close() - } - } - return _caretDown!! - } - -private var _caretDown: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CaretDownRight.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CaretDownRight.kt deleted file mode 100644 index 20668115..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CaretDownRight.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CaretDownRight: ImageVector - get() { - if (_caretDownRight != null) { - return _caretDownRight!! - } - _caretDownRight = fluentIcon(name = "Regular.CaretDownRight") { - fluentPath { - moveToRelative(16.5f, 7.81f) - lineToRelative(-8.69f, 8.7f) - horizontalLineToRelative(8.44f) - curveToRelative(0.14f, -0.01f, 0.25f, -0.12f, 0.25f, -0.26f) - lineTo(16.5f, 7.81f) - close() - moveTo(15.87f, 6.32f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.13f, 0.89f) - verticalLineToRelative(9.04f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(7.21f, 18.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.89f, -2.13f) - lineToRelative(9.55f, -9.55f) - close() - } - } - return _caretDownRight!! - } - -private var _caretDownRight: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CaretLeft.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CaretLeft.kt deleted file mode 100644 index 2827c525..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CaretLeft.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CaretLeft: ImageVector - get() { - if (_caretLeft != null) { - return _caretLeft!! - } - _caretLeft = fluentIcon(name = "Regular.CaretLeft") { - fluentPath { - moveTo(12.93f, 18.84f) - curveToRelative(0.8f, 0.7f, 2.07f, 0.13f, 2.07f, -0.94f) - lineTo(15.0f, 6.1f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.07f, -0.94f) - lineToRelative(-6.31f, 5.52f) - curveToRelative(-0.8f, 0.7f, -0.8f, 1.94f, 0.0f, 2.64f) - lineToRelative(6.3f, 5.52f) - close() - moveTo(13.5f, 17.34f) - lineTo(7.6f, 12.2f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, 0.0f, -0.38f) - lineToRelative(5.9f, -5.16f) - verticalLineToRelative(10.7f) - close() - } - } - return _caretLeft!! - } - -private var _caretLeft: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CaretRight.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CaretRight.kt deleted file mode 100644 index 2f9cbf33..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CaretRight.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CaretRight: ImageVector - get() { - if (_caretRight != null) { - return _caretRight!! - } - _caretRight = fluentIcon(name = "Regular.CaretRight") { - fluentPath { - moveTo(11.07f, 18.84f) - curveToRelative(-0.8f, 0.7f, -2.07f, 0.13f, -2.07f, -0.94f) - lineTo(9.0f, 6.1f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.07f, -0.94f) - lineToRelative(6.31f, 5.52f) - curveToRelative(0.8f, 0.7f, 0.8f, 1.94f, 0.0f, 2.64f) - lineToRelative(-6.3f, 5.52f) - close() - moveTo(10.5f, 17.34f) - lineTo(16.4f, 12.19f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.0f, -0.38f) - lineToRelative(-5.9f, -5.16f) - verticalLineToRelative(10.7f) - close() - } - } - return _caretRight!! - } - -private var _caretRight: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CaretUp.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CaretUp.kt deleted file mode 100644 index eadf7318..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CaretUp.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CaretUp: ImageVector - get() { - if (_caretUp != null) { - return _caretUp!! - } - _caretUp = fluentIcon(name = "Regular.CaretUp") { - fluentPath { - moveTo(5.16f, 14.9f) - curveToRelative(-0.7f, 0.82f, -0.13f, 2.08f, 0.94f, 2.08f) - horizontalLineToRelative(11.8f) - curveToRelative(1.07f, 0.0f, 1.65f, -1.26f, 0.94f, -2.07f) - lineTo(13.32f, 8.6f) - curveToRelative(-0.7f, -0.8f, -1.94f, -0.8f, -2.64f, 0.0f) - lineToRelative(-5.52f, 6.3f) - close() - moveTo(6.66f, 15.48f) - lineTo(11.81f, 9.58f) - curveToRelative(0.1f, -0.1f, 0.28f, -0.1f, 0.38f, 0.0f) - lineToRelative(5.16f, 5.9f) - lineTo(6.65f, 15.48f) - close() - } - } - return _caretUp!! - } - -private var _caretUp: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Checkmark.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Checkmark.kt deleted file mode 100644 index b28fd92e..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Checkmark.kt +++ /dev/null @@ -1,31 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Checkmark: ImageVector - get() { - if (_checkmark != null) { - return _checkmark!! - } - _checkmark = fluentIcon(name = "Regular.Checkmark") { - fluentPath { - moveTo(4.53f, 12.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(4.5f, 4.5f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(11.0f, -11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineTo(8.5f, 16.94f) - lineToRelative(-3.97f, -3.97f) - close() - } - } - return _checkmark!! - } - -private var _checkmark: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChevronDown.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChevronDown.kt deleted file mode 100644 index 0fe9f0ad..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChevronDown.kt +++ /dev/null @@ -1,32 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChevronDown: ImageVector - get() { - if (_chevronDown != null) { - return _chevronDown!! - } - _chevronDown = fluentIcon(name = "Regular.ChevronDown") { - fluentPath { - moveTo(4.22f, 8.47f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineTo(12.0f, 15.19f) - lineToRelative(6.72f, -6.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-7.25f, 7.25f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineTo(4.22f, 9.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - } - } - return _chevronDown!! - } - -private var _chevronDown: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChevronLeft.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChevronLeft.kt deleted file mode 100644 index d7cd58d5..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChevronLeft.kt +++ /dev/null @@ -1,32 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChevronLeft: ImageVector - get() { - if (_chevronLeft != null) { - return _chevronLeft!! - } - _chevronLeft = fluentIcon(name = "Regular.ChevronLeft") { - fluentPath { - moveTo(15.53f, 4.22f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineTo(8.81f, 12.0f) - lineToRelative(6.72f, 6.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-7.25f, -7.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(7.25f, -7.25f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - } - } - return _chevronLeft!! - } - -private var _chevronLeft: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChevronRight.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChevronRight.kt deleted file mode 100644 index 80c8fd04..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChevronRight.kt +++ /dev/null @@ -1,32 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChevronRight: ImageVector - get() { - if (_chevronRight != null) { - return _chevronRight!! - } - _chevronRight = fluentIcon(name = "Regular.ChevronRight") { - fluentPath { - moveTo(8.47f, 4.22f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineTo(15.19f, 12.0f) - lineToRelative(-6.72f, 6.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(7.25f, -7.25f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineTo(9.53f, 4.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - close() - } - } - return _chevronRight!! - } - -private var _chevronRight: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChevronUp.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChevronUp.kt deleted file mode 100644 index 60082774..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChevronUp.kt +++ /dev/null @@ -1,32 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChevronUp: ImageVector - get() { - if (_chevronUp != null) { - return _chevronUp!! - } - _chevronUp = fluentIcon(name = "Regular.ChevronUp") { - fluentPath { - moveTo(4.22f, 15.53f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineTo(12.0f, 8.81f) - lineToRelative(6.72f, 6.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-7.25f, -7.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-7.25f, 7.25f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - close() - } - } - return _chevronUp!! - } - -private var _chevronUp: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardPaste.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardPaste.kt deleted file mode 100644 index ac9f5a07..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardPaste.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClipboardPaste: ImageVector - get() { - if (_clipboardPaste != null) { - return _clipboardPaste!! - } - _clipboardPaste = fluentIcon(name = "Regular.ClipboardPaste") { - fluentPath { - moveTo(12.75f, 2.0f) - curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) - horizontalLineToRelative(1.76f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) - lineToRelative(-0.01f, -0.1f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-2.13f) - curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.78f, 0.0f, -1.46f, -0.4f, -1.87f, -1.0f) - lineTo(5.25f, 5.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.75f) - horizontalLineToRelative(3.1f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.29f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - curveToRelative(0.0f, 0.42f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-3.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) - lineTo(3.0f, 19.76f) - lineTo(3.0f, 6.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(5.25f, 4.0f) - horizontalLineToRelative(1.76f) - curveToRelative(0.13f, -1.12f, 1.08f, -2.0f, 2.24f, -2.0f) - horizontalLineToRelative(3.5f) - close() - moveTo(18.75f, 8.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - horizontalLineToRelative(-6.5f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineToRelative(-0.01f, -0.15f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineToRelative(0.15f, -0.01f) - horizontalLineToRelative(6.5f) - close() - moveTo(18.75f, 9.5f) - horizontalLineToRelative(-6.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(6.5f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - close() - moveTo(12.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - close() - } - } - return _clipboardPaste!! - } - -private var _clipboardPaste: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Clock.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Clock.kt deleted file mode 100644 index 4c6e6157..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Clock.kt +++ /dev/null @@ -1,39 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Clock: ImageVector - get() { - if (_clock != null) { - return _clock!! - } - _clock = fluentIcon(name = "Regular.Clock") { - fluentPath { - moveTo(3.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 17.0f, 0.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, -17.0f, 0.0f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) - close() - moveTo(12.0f, 6.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - verticalLineToRelative(6.1f) - curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) - horizontalLineToRelative(4.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - lineTo(12.0f, 12.0f) - lineTo(12.0f, 6.65f) - close() - } - } - return _clock!! - } - -private var _clock: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cloud.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cloud.kt deleted file mode 100644 index 167fc289..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cloud.kt +++ /dev/null @@ -1,41 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Cloud: ImageVector - get() { - if (_cloud != null) { - return _cloud!! - } - _cloud = fluentIcon(name = "Regular.Cloud") { - fluentPath { - moveTo(6.09f, 9.75f) - arcToRelative(5.75f, 5.75f, 0.0f, false, true, 11.32f, 0.0f) - horizontalLineToRelative(0.09f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, 8.0f) - lineTo(6.0f, 17.75f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, -8.0f) - horizontalLineToRelative(0.09f) - close() - moveTo(11.75f, 6.5f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, -4.24f, 4.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, 0.71f) - lineTo(6.0f, 11.25f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) - horizontalLineToRelative(11.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, -5.0f) - horizontalLineToRelative(-0.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.71f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, -4.24f, -4.04f) - close() - } - } - return _cloud!! - } - -private var _cloud: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Copy.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Copy.kt deleted file mode 100644 index f7262901..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Copy.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Copy: ImageVector - get() { - if (_copy != null) { - return _copy!! - } - _copy = fluentIcon(name = "Regular.Copy") { - fluentPath { - moveTo(5.5f, 4.63f) - lineTo(5.5f, 17.25f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(8.62f) - curveToRelative(-0.31f, 0.88f, -1.15f, 1.5f, -2.13f, 1.5f) - lineTo(8.75f, 22.0f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 4.0f, 17.25f) - lineTo(4.0f, 6.75f) - curveToRelative(0.0f, -0.98f, 0.63f, -1.81f, 1.5f, -2.12f) - close() - moveTo(17.75f, 2.0f) - curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) - verticalLineToRelative(13.0f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-9.0f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-13.0f) - curveTo(6.5f, 3.01f, 7.5f, 2.0f, 8.75f, 2.0f) - horizontalLineToRelative(9.0f) - close() - moveTo(17.75f, 3.5f) - horizontalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(13.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(9.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - } - } - return _copy!! - } - -private var _copy: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cut.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cut.kt deleted file mode 100644 index fb5cc78f..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cut.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Cut: ImageVector - get() { - if (_cut != null) { - return _cut!! - } - _cut = fluentIcon(name = "Regular.Cut") { - fluentPath { - moveTo(12.14f, 9.34f) - lineTo(7.37f, 2.33f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.24f, 0.84f) - lineToRelative(5.13f, 7.55f) - lineToRelative(-2.4f, 3.74f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 1.18f, 0.94f) - lineToRelative(2.14f, -3.33f) - lineToRelative(2.06f, 3.03f) - arcTo(3.99f, 3.99f, 0.0f, false, false, 17.0f, 22.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, -1.5f, -7.71f) - lineToRelative(-2.44f, -3.6f) - lineToRelative(-0.92f, -1.35f) - close() - moveTo(4.5f, 18.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) - close() - moveTo(14.5f, 18.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) - close() - moveTo(13.94f, 9.32f) - lineTo(17.88f, 3.15f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.26f, -0.8f) - lineToRelative(-3.6f, 5.62f) - lineToRelative(0.92f, 1.35f) - close() - } - } - return _cut!! - } - -private var _cut: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Delete.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Delete.kt deleted file mode 100644 index 2e95ead1..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Delete.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Delete: ImageVector - get() { - if (_delete != null) { - return _delete!! - } - _delete = fluentIcon(name = "Regular.Delete") { - fluentPath { - moveTo(10.0f, 5.0f) - horizontalLineToRelative(4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, -4.0f, 0.0f) - close() - moveTo(8.5f, 5.0f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 7.0f, 0.0f) - horizontalLineToRelative(5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.32f) - lineToRelative(-1.17f, 12.11f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 15.03f, 22.0f) - lineTo(8.97f, 22.0f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.73f, -3.39f) - lineTo(4.07f, 6.5f) - lineTo(2.75f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(8.5f, 5.0f) - close() - moveTo(10.5f, 9.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-7.5f) - close() - moveTo(14.25f, 9.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-7.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(6.73f, 18.47f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.24f, 2.03f) - horizontalLineToRelative(6.06f) - curveToRelative(1.15f, 0.0f, 2.12f, -0.88f, 2.24f, -2.03f) - lineTo(18.42f, 6.5f) - lineTo(5.58f, 6.5f) - lineToRelative(1.15f, 11.97f) - close() - } - } - return _delete!! - } - -private var _delete: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Dismiss.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Dismiss.kt deleted file mode 100644 index 10e4d424..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Dismiss.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Dismiss: ImageVector - get() { - if (_dismiss != null) { - return _dismiss!! - } - _dismiss = fluentIcon(name = "Regular.Dismiss") { - fluentPath { - moveToRelative(4.4f, 4.55f) - lineToRelative(0.07f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - lineTo(12.0f, 10.94f) - lineToRelative(6.47f, -6.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineTo(13.06f, 12.0f) - lineToRelative(6.47f, 6.47f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineTo(12.0f, 13.06f) - lineToRelative(-6.47f, 6.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineTo(10.94f, 12.0f) - lineTo(4.47f, 5.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(-0.07f, 0.08f) - close() - } - } - return _dismiss!! - } - -private var _dismiss: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Document.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Document.kt deleted file mode 100644 index 3048e6b5..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Document.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Document: ImageVector - get() { - if (_document != null) { - return _document!! - } - _document = fluentIcon(name = "Regular.Document") { - fluentPath { - moveTo(6.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(16.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(13.6f, 2.6f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 12.17f, 2.0f) - lineTo(6.0f, 2.0f) - close() - moveTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - lineTo(6.0f, 20.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(5.5f, 4.0f) - close() - moveTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - lineToRelative(3.88f, 3.88f) - close() - } - } - return _document!! - } - -private var _document: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Edit.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Edit.kt deleted file mode 100644 index c80d5fac..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Edit.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Edit: ImageVector - get() { - if (_edit != null) { - return _edit!! - } - _edit = fluentIcon(name = "Regular.Edit") { - fluentPath { - moveTo(20.95f, 3.05f) - arcToRelative(3.58f, 3.58f, 0.0f, false, false, -5.06f, 0.0f) - lineTo(3.94f, 15.0f) - curveToRelative(-0.4f, 0.4f, -0.7f, 0.92f, -0.82f, 1.48f) - lineToRelative(-1.1f, 4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.9f, 0.9f) - lineToRelative(4.6f, -1.1f) - arcTo(3.1f, 3.1f, 0.0f, false, false, 9.0f, 20.07f) - lineTo(20.95f, 8.11f) - arcToRelative(3.58f, 3.58f, 0.0f, false, false, 0.0f, -5.06f) - close() - moveTo(16.95f, 4.11f) - arcToRelative(2.08f, 2.08f, 0.0f, true, true, 2.94f, 2.94f) - lineToRelative(-0.89f, 0.89f) - lineTo(16.06f, 5.0f) - lineToRelative(0.9f, -0.9f) - close() - moveTo(15.0f, 6.06f) - lineTo(17.94f, 9.0f) - lineToRelative(-10.0f, 10.0f) - arcToRelative(1.6f, 1.6f, 0.0f, false, true, -0.76f, 0.43f) - lineToRelative(-3.42f, 0.8f) - lineToRelative(0.82f, -3.4f) - curveToRelative(0.06f, -0.3f, 0.21f, -0.56f, 0.42f, -0.77f) - lineToRelative(10.0f, -10.0f) - close() - } - } - return _edit!! - } - -private var _edit: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ErrorCircle.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ErrorCircle.kt deleted file mode 100644 index 30e162b6..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ErrorCircle.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ErrorCircle: ImageVector - get() { - if (_errorCircle != null) { - return _errorCircle!! - } - _errorCircle = fluentIcon(name = "Regular.ErrorCircle") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(12.0f, 3.67f) - arcToRelative(8.34f, 8.34f, 0.0f, false, false, 0.0f, 16.66f) - arcToRelative(8.34f, 8.34f, 0.0f, false, false, 0.0f, -16.66f) - close() - moveTo(12.0f, 14.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(12.0f, 7.0f) - curveToRelative(0.37f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) - verticalLineToRelative(4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.48f, 0.1f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.74f, -0.75f) - close() - } - } - return _errorCircle!! - } - -private var _errorCircle: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Eye.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Eye.kt deleted file mode 100644 index bab34856..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Eye.kt +++ /dev/null @@ -1,37 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Eye: ImageVector - get() { - if (_eye != null) { - return _eye!! - } - _eye = fluentIcon(name = "Regular.Eye") { - fluentPath { - moveTo(12.0f, 9.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, 0.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, -8.0f) - close() - moveTo(12.0f, 10.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, -5.0f) - close() - moveTo(12.0f, 5.5f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 9.7f, 7.56f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.45f, 0.37f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, -16.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.45f, -0.36f) - arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 5.5f) - close() - } - } - return _eye!! - } - -private var _eye: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Filter.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Filter.kt deleted file mode 100644 index 7acfbaad..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Filter.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Filter: ImageVector - get() { - if (_filter != null) { - return _filter!! - } - _filter = fluentIcon(name = "Regular.Filter") { - fluentPath { - moveTo(13.5f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.0f) - close() - moveTo(16.5f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(9.0f) - close() - moveTo(19.5f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(15.0f) - close() - } - } - return _filter!! - } - -private var _filter: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Flag.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Flag.kt deleted file mode 100644 index d63bdf45..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Flag.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Flag: ImageVector - get() { - if (_flag != null) { - return _flag!! - } - _flag = fluentIcon(name = "Regular.Flag") { - fluentPath { - moveTo(3.0f, 3.75f) - curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(16.5f) - curveToRelative(0.62f, 0.0f, 0.98f, 0.7f, 0.6f, 1.2f) - lineTo(16.7f, 9.75f) - lineToRelative(4.16f, 5.55f) - curveToRelative(0.38f, 0.5f, 0.02f, 1.2f, -0.6f, 1.2f) - lineTo(4.5f, 16.5f) - verticalLineToRelative(4.75f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - lineTo(3.0f, 3.75f) - close() - moveTo(18.75f, 4.5f) - lineTo(4.5f, 4.5f) - lineTo(4.5f, 15.0f) - horizontalLineToRelative(14.25f) - lineToRelative(-3.6f, -4.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -0.9f) - lineToRelative(3.6f, -4.8f) - close() - } - } - return _flag!! - } - -private var _flag: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Flash.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Flash.kt deleted file mode 100644 index 9256334c..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Flash.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Flash: ImageVector - get() { - if (_flash != null) { - return _flash!! - } - _flash = fluentIcon(name = "Regular.Flash") { - fluentPath { - moveTo(7.43f, 2.83f) - curveTo(7.6f, 2.33f, 8.07f, 2.0f, 8.6f, 2.0f) - horizontalLineToRelative(6.46f) - curveToRelative(0.85f, 0.0f, 1.45f, 0.84f, 1.18f, 1.65f) - lineTo(14.8f, 8.0f) - horizontalLineToRelative(3.96f) - curveToRelative(1.1f, 0.0f, 1.67f, 1.33f, 0.9f, 2.12f) - lineTo(8.59f, 21.54f) - curveToRelative(-1.06f, 1.08f, -2.88f, 0.1f, -2.55f, -1.38f) - lineToRelative(1.27f, -5.66f) - lineToRelative(-1.56f, -0.01f) - curveToRelative(-1.21f, 0.0f, -2.05f, -1.2f, -1.65f, -2.34f) - lineToRelative(3.33f, -9.32f) - close() - moveTo(8.78f, 3.5f) - lineTo(5.52f, 12.66f) - curveToRelative(-0.06f, 0.16f, 0.06f, 0.33f, 0.23f, 0.33f) - lineToRelative(2.5f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.73f, 0.91f) - lineTo(7.51f, 20.5f) - lineTo(18.16f, 9.5f) - horizontalLineToRelative(-4.41f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.71f, -0.99f) - lineTo(14.7f, 3.5f) - lineTo(8.78f, 3.5f) - close() - } - } - return _flash!! - } - -private var _flash: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Folder.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Folder.kt deleted file mode 100644 index 77773b5c..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Folder.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Folder: ImageVector - get() { - if (_folder != null) { - return _folder!! - } - _folder = fluentIcon(name = "Regular.Folder") { - fluentPath { - moveTo(8.2f, 4.0f) - curveToRelative(0.47f, 0.0f, 0.92f, 0.14f, 1.3f, 0.4f) - lineToRelative(0.15f, 0.12f) - lineToRelative(2.37f, 1.98f) - horizontalLineToRelative(7.73f) - curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) - lineToRelative(0.01f, 0.16f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - lineTo(4.25f, 20.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(2.0f, 17.75f) - lineTo(2.0f, 6.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 4.0f) - horizontalLineToRelative(3.96f) - close() - moveTo(9.65f, 9.98f) - curveToRelative(-0.36f, 0.3f, -0.8f, 0.47f, -1.25f, 0.51f) - lineToRelative(-0.2f, 0.01f) - lineTo(3.5f, 10.5f) - verticalLineToRelative(7.25f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(15.5f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - verticalLineToRelative(-9.0f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-7.73f) - lineTo(9.65f, 9.98f) - close() - moveTo(8.2f, 5.5f) - lineTo(4.25f, 5.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - lineTo(3.5f, 9.0f) - horizontalLineToRelative(4.7f) - curveToRelative(0.15f, 0.0f, 0.28f, -0.04f, 0.4f, -0.11f) - lineToRelative(0.09f, -0.06f) - lineToRelative(1.89f, -1.58f) - lineToRelative(-1.9f, -1.58f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.37f, -0.16f) - lineToRelative(-0.1f, -0.01f) - close() - } - } - return _folder!! - } - -private var _folder: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Heart.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Heart.kt deleted file mode 100644 index 4c02443f..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Heart.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Heart: ImageVector - get() { - if (_heart != null) { - return _heart!! - } - _heart = fluentIcon(name = "Regular.Heart") { - fluentPath { - moveTo(12.82f, 5.58f) - lineTo(12.0f, 6.4f) - lineToRelative(-0.82f, -0.82f) - arcToRelative(5.37f, 5.37f, 0.0f, true, false, -7.6f, 7.6f) - lineToRelative(7.89f, 7.9f) - curveToRelative(0.3f, 0.29f, 0.77f, 0.29f, 1.06f, 0.0f) - lineToRelative(7.9f, -7.9f) - arcToRelative(5.38f, 5.38f, 0.0f, true, false, -7.61f, -7.6f) - close() - moveTo(19.37f, 12.12f) - lineTo(12.0f, 19.48f) - lineToRelative(-7.36f, -7.36f) - arcToRelative(3.87f, 3.87f, 0.0f, true, true, 5.48f, -5.48f) - lineTo(11.47f, 8.0f) - curveToRelative(0.3f, 0.3f, 0.79f, 0.29f, 1.08f, -0.02f) - lineToRelative(1.33f, -1.34f) - arcToRelative(3.88f, 3.88f, 0.0f, false, true, 5.49f, 5.48f) - close() - } - } - return _heart!! - } - -private var _heart: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/History.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/History.kt deleted file mode 100644 index 3c5efacb..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/History.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.History: ImageVector - get() { - if (_history != null) { - return _history!! - } - _history = fluentIcon(name = "Regular.History") { - fluentPath { - moveTo(19.5f, 12.0f) - arcTo(7.5f, 7.5f, 0.0f, false, false, 6.9f, 6.5f) - horizontalLineToRelative(1.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(1.04f) - arcToRelative(9.0f, 9.0f, 0.0f, true, true, -2.9f, 5.33f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.76f, -0.62f) - curveToRelative(0.46f, 0.0f, 0.79f, 0.44f, 0.72f, 0.9f) - arcTo(7.5f, 7.5f, 0.0f, true, false, 19.5f, 12.0f) - close() - moveTo(12.5f, 7.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(12.5f, 11.5f) - lineTo(12.5f, 7.75f) - close() - } - } - return _history!! - } - -private var _history: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Home.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Home.kt deleted file mode 100644 index 41680f98..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Home.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Home: ImageVector - get() { - if (_home != null) { - return _home!! - } - _home = fluentIcon(name = "Regular.Home") { - fluentPath { - moveTo(10.55f, 2.53f) - curveToRelative(0.84f, -0.7f, 2.06f, -0.7f, 2.9f, 0.0f) - lineToRelative(6.75f, 5.7f) - curveToRelative(0.5f, 0.42f, 0.8f, 1.05f, 0.8f, 1.71f) - verticalLineToRelative(9.31f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-5.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-3.5f) - curveTo(3.78f, 21.0f, 3.0f, 20.22f, 3.0f, 19.25f) - verticalLineToRelative(-9.3f) - curveToRelative(0.0f, -0.67f, 0.3f, -1.3f, 0.8f, -1.73f) - lineToRelative(6.75f, -5.69f) - close() - moveTo(12.48f, 3.68f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.96f, 0.0f) - lineToRelative(-6.75f, 5.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.27f, 0.56f) - verticalLineToRelative(9.31f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.1f, 0.25f, -0.25f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(3.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.1f, 0.25f, -0.25f) - verticalLineToRelative(-9.3f) - curveToRelative(0.0f, -0.23f, -0.1f, -0.44f, -0.27f, -0.58f) - lineToRelative(-6.75f, -5.7f) - close() - } - } - return _home!! - } - -private var _home: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Image.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Image.kt deleted file mode 100644 index dd7ee691..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Image.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Image: ImageVector - get() { - if (_image != null) { - return _image!! - } - _image = fluentIcon(name = "Regular.Image") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(18.33f, 19.4f) - lineTo(12.53f, 13.71f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, -0.07f) - lineToRelative(-0.08f, 0.07f) - lineToRelative(-5.81f, 5.7f) - curveToRelative(0.18f, 0.06f, 0.38f, 0.09f, 0.58f, 0.09f) - horizontalLineToRelative(11.5f) - curveToRelative(0.2f, 0.0f, 0.4f, -0.03f, 0.58f, -0.1f) - lineToRelative(-5.8f, -5.69f) - lineToRelative(5.8f, 5.7f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.2f, 0.04f, 0.4f, 0.1f, 0.6f) - lineToRelative(5.83f, -5.7f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.02f, -0.12f) - lineToRelative(0.12f, 0.11f) - lineToRelative(5.83f, 5.7f) - curveToRelative(0.06f, -0.18f, 0.1f, -0.38f, 0.1f, -0.59f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(15.25f, 6.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -4.5f) - close() - moveTo(15.25f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - } - } - return _image!! - } - -private var _image: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Important.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Important.kt deleted file mode 100644 index 8566503f..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Important.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Important: ImageVector - get() { - if (_important != null) { - return _important!! - } - _important = fluentIcon(name = "Regular.Important") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(3.88f, 3.88f, 0.0f, false, false, -3.88f, 3.88f) - curveToRelative(0.0f, 2.92f, 1.21f, 6.55f, 1.82f, 8.2f) - arcTo(2.19f, 2.19f, 0.0f, false, false, 12.0f, 15.5f) - curveToRelative(0.9f, 0.0f, 1.74f, -0.54f, 2.06f, -1.42f) - curveToRelative(0.61f, -1.64f, 1.82f, -5.25f, 1.82f, -8.2f) - arcTo(3.88f, 3.88f, 0.0f, false, false, 12.0f, 2.0f) - close() - moveTo(9.62f, 5.88f) - arcToRelative(2.38f, 2.38f, 0.0f, false, true, 4.76f, 0.0f) - curveToRelative(0.0f, 2.65f, -1.12f, 6.04f, -1.72f, 7.68f) - arcTo(0.69f, 0.69f, 0.0f, false, true, 12.0f, 14.0f) - arcToRelative(0.69f, 0.69f, 0.0f, false, true, -0.65f, -0.44f) - curveToRelative(-0.61f, -1.65f, -1.72f, -5.06f, -1.72f, -7.68f) - close() - moveTo(12.0f, 17.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, -5.0f) - close() - moveTo(11.0f, 19.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - close() - } - } - return _important!! - } - -private var _important: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Info.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Info.kt deleted file mode 100644 index ea160596..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Info.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Info: ImageVector - get() { - if (_info != null) { - return _info!! - } - _info = fluentIcon(name = "Regular.Info") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) - close() - moveTo(12.0f, 10.5f) - curveToRelative(0.38f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) - verticalLineToRelative(0.1f) - lineToRelative(0.01f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-5.6f) - curveToRelative(0.0f, -0.42f, 0.33f, -0.75f, 0.75f, -0.75f) - close() - moveTo(12.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - } - } - return _info!! - } - -private var _info: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Key.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Key.kt deleted file mode 100644 index fd44e6bf..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Key.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Key: ImageVector - get() { - if (_key != null) { - return _key!! - } - _key = fluentIcon(name = "Regular.Key") { - fluentPath { - moveTo(18.25f, 7.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(15.5f, 2.05f) - arcTo(6.55f, 6.55f, 0.0f, false, false, 9.06f, 9.7f) - curveToRelative(0.02f, 0.1f, -0.02f, 0.2f, -0.07f, 0.25f) - lineToRelative(-6.24f, 6.23f) - curveToRelative(-0.51f, 0.52f, -0.8f, 1.22f, -0.8f, 1.95f) - verticalLineToRelative(2.17f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-1.25f) - horizontalLineTo(9.7f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-1.75f) - horizontalLineToRelative(1.75f) - curveToRelative(0.67f, 0.0f, 1.22f, -0.54f, 1.25f, -1.2f) - arcToRelative(6.55f, 6.55f, 0.0f, false, false, 8.1f, -6.35f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, -6.55f, -6.45f) - close() - moveTo(10.45f, 8.6f) - arcToRelative(5.05f, 5.05f, 0.0f, false, true, 5.05f, -5.05f) - curveToRelative(2.8f, 0.0f, 5.05f, 2.18f, 5.05f, 4.95f) - arcToRelative(5.05f, 5.05f, 0.0f, false, true, -7.06f, 4.61f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.04f, 0.69f) - verticalLineToRelative(0.75f) - horizontalLineTo(10.7f) - curveToRelative(-0.7f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(1.75f) - horizontalLineTo(7.7f) - curveToRelative(-0.7f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineTo(3.7f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-2.17f) - curveToRelative(0.0f, -0.33f, 0.13f, -0.65f, 0.37f, -0.89f) - lineToRelative(6.23f, -6.23f) - curveToRelative(0.42f, -0.42f, 0.58f, -1.0f, 0.49f, -1.57f) - curveToRelative(-0.06f, -0.3f, -0.1f, -0.58f, -0.1f, -0.84f) - close() - } - } - return _key!! - } - -private var _key: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Link.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Link.kt deleted file mode 100644 index cfb55f83..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Link.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Link: ImageVector - get() { - if (_link != null) { - return _link!! - } - _link = fluentIcon(name = "Regular.Link") { - fluentPath { - moveTo(9.25f, 7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.11f, 1.5f) - horizontalLineTo(7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -0.2f, 7.0f) - horizontalLineToRelative(2.45f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.11f, 1.5f) - horizontalLineTo(7.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, -0.25f, -10.0f) - horizontalLineToRelative(2.5f) - close() - moveTo(17.0f, 7.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.25f, 10.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.11f, -1.5f) - horizontalLineTo(17.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.2f, -7.0f) - horizontalLineToRelative(-2.45f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.11f, -1.5f) - horizontalLineTo(17.0f) - close() - moveTo(7.0f, 11.25f) - horizontalLineToRelative(10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineTo(7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineTo(17.0f) - horizontalLineTo(7.0f) - close() - } - } - return _link!! - } - -private var _link: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Mail.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Mail.kt deleted file mode 100644 index 1d173354..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Mail.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Mail: ImageVector - get() { - if (_mail != null) { - return _mail!! - } - _mail = fluentIcon(name = "Regular.Mail") { - fluentPath { - moveTo(5.25f, 4.0f) - horizontalLineToRelative(13.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.24f, 3.07f) - lineToRelative(0.01f, 0.18f) - verticalLineToRelative(9.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - horizontalLineTo(5.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 16.75f) - verticalLineToRelative(-9.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(5.25f, 4.0f) - horizontalLineToRelative(13.5f) - horizontalLineToRelative(-13.5f) - close() - moveTo(20.5f, 9.37f) - lineToRelative(-8.15f, 4.3f) - curveToRelative(-0.19f, 0.1f, -0.4f, 0.1f, -0.6f, 0.04f) - lineToRelative(-0.1f, -0.05f) - lineTo(3.5f, 9.37f) - verticalLineToRelative(7.38f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(13.5f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - verticalLineTo(9.37f) - close() - moveTo(18.75f, 5.5f) - horizontalLineTo(5.25f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - lineToRelative(-0.01f, 0.15f) - verticalLineToRelative(0.43f) - lineToRelative(8.5f, 4.47f) - lineToRelative(8.5f, -4.47f) - verticalLineToRelative(-0.43f) - curveToRelative(0.0f, -0.92f, -0.7f, -1.67f, -1.6f, -1.74f) - lineToRelative(-0.15f, -0.01f) - close() - } - } - return _mail!! - } - -private var _mail: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Maximize.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Maximize.kt deleted file mode 100644 index 87bb615a..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Maximize.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Maximize: ImageVector - get() { - if (_maximize != null) { - return _maximize!! - } - _maximize = fluentIcon(name = "Regular.Maximize") { - fluentPath { - moveTo(5.75f, 3.0f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) - lineTo(5.75f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - close() - moveTo(5.75f, 4.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(12.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - lineTo(19.5f, 5.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(5.75f, 4.5f) - close() - } - } - return _maximize!! - } - -private var _maximize: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MoreHorizontal.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MoreHorizontal.kt deleted file mode 100644 index 32355c80..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MoreHorizontal.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MoreHorizontal: ImageVector - get() { - if (_moreHorizontal != null) { - return _moreHorizontal!! - } - _moreHorizontal = fluentIcon(name = "Regular.MoreHorizontal") { - fluentPath { - moveTo(7.75f, 12.0f) - arcToRelative(1.75f, 1.75f, 0.0f, true, true, -3.5f, 0.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 3.5f, 0.0f) - close() - moveTo(13.75f, 12.0f) - arcToRelative(1.75f, 1.75f, 0.0f, true, true, -3.5f, 0.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 3.5f, 0.0f) - close() - moveTo(18.0f, 13.75f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, -3.5f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, 3.5f) - close() - } - } - return _moreHorizontal!! - } - -private var _moreHorizontal: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MoreVertical.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MoreVertical.kt deleted file mode 100644 index eccb11c2..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MoreVertical.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MoreVertical: ImageVector - get() { - if (_moreVertical != null) { - return _moreVertical!! - } - _moreVertical = fluentIcon(name = "Regular.MoreVertical") { - fluentPath { - moveTo(12.0f, 7.75f) - arcToRelative(1.75f, 1.75f, 0.0f, true, true, 0.0f, -3.5f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.0f, 3.5f) - close() - moveTo(12.0f, 13.75f) - arcToRelative(1.75f, 1.75f, 0.0f, true, true, 0.0f, -3.5f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.0f, 3.5f) - close() - moveTo(10.25f, 18.0f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, 3.5f, 0.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -3.5f, 0.0f) - close() - } - } - return _moreVertical!! - } - -private var _moreVertical: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Navigation.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Navigation.kt deleted file mode 100644 index 79de0120..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Navigation.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Navigation: ImageVector - get() { - if (_navigation != null) { - return _navigation!! - } - _navigation = fluentIcon(name = "Regular.Navigation") { - fluentPath { - moveTo(2.75f, 18.0f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(2.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(18.6f) - horizontalLineToRelative(-18.5f) - close() - moveTo(2.75f, 11.5f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(2.75f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(18.6f) - horizontalLineToRelative(-18.5f) - close() - moveTo(2.75f, 5.0f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(2.75f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - horizontalLineToRelative(18.6f) - horizontalLineToRelative(-18.5f) - close() - } - } - return _navigation!! - } - -private var _navigation: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Open.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Open.kt deleted file mode 100644 index 44e5ad63..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Open.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Open: ImageVector - get() { - if (_open != null) { - return _open!! - } - _open = fluentIcon(name = "Regular.Open") { - fluentPath { - moveTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineTo(6.25f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - verticalLineTo(6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.0f) - close() - moveTo(13.0f, 3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineTo(5.56f) - lineToRelative(-5.22f, 5.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(5.22f, -5.22f) - horizontalLineToRelative(-4.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _open!! - } - -private var _open: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Options.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Options.kt deleted file mode 100644 index 30ce57ec..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Options.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Options: ImageVector - get() { - if (_options != null) { - return _options!! - } - _options = fluentIcon(name = "Regular.Options") { - fluentPath { - moveTo(8.75f, 13.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.16f, 2.5f) - horizontalLineToRelative(9.34f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-9.44f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.32f, 0.0f) - lineTo(2.75f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(2.94f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.16f, -2.5f) - close() - moveTo(8.75f, 15.0f) - curveToRelative(-0.76f, 0.0f, -1.41f, 0.49f, -1.65f, 1.17f) - lineToRelative(-0.02f, 0.07f) - lineToRelative(-0.04f, 0.14f) - arcToRelative(1.76f, 1.76f, 0.0f, false, false, 0.02f, 0.82f) - lineToRelative(0.04f, 0.13f) - lineToRelative(0.02f, 0.07f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 3.28f, -0.07f) - lineToRelative(0.04f, -0.13f) - lineToRelative(-0.01f, 0.06f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.04f, -0.82f) - lineToRelative(-0.03f, -0.13f) - lineToRelative(-0.02f, -0.07f) - lineToRelative(-0.04f, -0.14f) - arcTo(1.75f, 1.75f, 0.0f, false, false, 8.75f, 15.0f) - close() - moveTo(15.25f, 4.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.16f, 2.5f) - horizontalLineToRelative(2.84f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-2.94f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.32f, 0.0f) - lineTo(2.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(9.44f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 15.25f, 4.0f) - close() - moveTo(15.25f, 5.5f) - curveToRelative(-0.76f, 0.0f, -1.41f, 0.49f, -1.65f, 1.17f) - lineToRelative(-0.02f, 0.07f) - lineToRelative(-0.04f, 0.14f) - arcToRelative(1.76f, 1.76f, 0.0f, false, false, 0.02f, 0.82f) - lineToRelative(0.04f, 0.13f) - lineToRelative(0.02f, 0.07f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 3.28f, -0.07f) - lineToRelative(0.04f, -0.13f) - lineToRelative(-0.01f, 0.06f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.04f, -0.82f) - lineToRelative(-0.03f, -0.13f) - lineToRelative(-0.02f, -0.07f) - lineToRelative(-0.04f, -0.14f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.63f, -1.1f) - close() - } - } - return _options!! - } - -private var _options: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Pause.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Pause.kt deleted file mode 100644 index 3f48c18f..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Pause.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Pause: ImageVector - get() { - if (_pause != null) { - return _pause!! - } - _pause = fluentIcon(name = "Regular.Pause") { - fluentPath { - moveTo(6.25f, 3.0f) - curveTo(5.01f, 3.0f, 4.0f, 4.0f, 4.0f, 5.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 19.99f, 5.0f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(2.5f) - curveTo(9.99f, 21.0f, 11.0f, 20.0f, 11.0f, 18.75f) - lineTo(11.0f, 5.25f) - curveTo(11.0f, 4.01f, 10.0f, 3.0f, 8.75f, 3.0f) - horizontalLineToRelative(-2.5f) - close() - moveTo(5.5f, 5.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(5.5f, 5.25f) - close() - moveTo(15.25f, 3.0f) - curveTo(14.01f, 3.0f, 13.0f, 4.0f, 13.0f, 5.25f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(2.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 5.25f) - curveTo(20.0f, 4.01f, 19.0f, 3.0f, 17.75f, 3.0f) - horizontalLineToRelative(-2.5f) - close() - moveTo(14.5f, 5.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(14.5f, 5.25f) - close() - } - } - return _pause!! - } - -private var _pause: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Person.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Person.kt deleted file mode 100644 index 82b44a18..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Person.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Person: ImageVector - get() { - if (_person != null) { - return _person!! - } - _person = fluentIcon(name = "Regular.Person") { - fluentPath { - moveTo(17.75f, 14.0f) - curveTo(19.0f, 14.0f, 20.0f, 15.0f, 20.0f, 16.25f) - verticalLineToRelative(0.57f) - curveToRelative(0.0f, 0.9f, -0.32f, 1.76f, -0.9f, 2.44f) - curveTo(17.53f, 21.1f, 15.15f, 22.0f, 12.0f, 22.0f) - curveToRelative(-3.15f, 0.0f, -5.53f, -0.9f, -7.1f, -2.74f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.9f, -2.43f) - verticalLineToRelative(-0.58f) - curveTo(4.0f, 15.0f, 5.01f, 14.0f, 6.25f, 14.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.75f, 15.5f) - lineTo(6.25f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.58f) - curveToRelative(0.0f, 0.53f, 0.2f, 1.05f, 0.54f, 1.46f) - curveTo(7.3f, 19.76f, 9.26f, 20.5f, 12.0f, 20.5f) - curveToRelative(2.74f, 0.0f, 4.7f, -0.74f, 5.96f, -2.21f) - curveToRelative(0.35f, -0.41f, 0.54f, -0.93f, 0.54f, -1.47f) - verticalLineToRelative(-0.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - } - } - return _person!! - } - -private var _person: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Pin.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Pin.kt deleted file mode 100644 index f3237739..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Pin.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Pin: ImageVector - get() { - if (_pin != null) { - return _pin!! - } - _pin = fluentIcon(name = "Regular.Pin") { - fluentPath { - moveToRelative(16.24f, 2.93f) - lineToRelative(4.83f, 4.83f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.72f, 4.4f) - lineToRelative(-4.87f, 2.44f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.37f, 0.42f) - lineToRelative(-1.44f, 4.17f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.07f, 0.48f) - lineToRelative(-3.1f, -3.1f) - lineTo(4.06f, 21.0f) - lineTo(3.0f, 21.0f) - verticalLineToRelative(-1.06f) - lineToRelative(4.44f, -4.44f) - lineToRelative(-3.1f, -3.1f) - curveToRelative(-0.66f, -0.66f, -0.4f, -1.77f, 0.47f, -2.07f) - lineToRelative(4.17f, -1.44f) - curveToRelative(0.18f, -0.06f, 0.34f, -0.2f, 0.42f, -0.37f) - lineToRelative(2.44f, -4.87f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 4.4f, -0.72f) - close() - moveTo(20.01f, 8.82f) - lineTo(15.18f, 3.99f) - curveToRelative(-0.6f, -0.6f, -1.62f, -0.44f, -2.0f, 0.33f) - lineToRelative(-2.44f, 4.87f) - curveToRelative(-0.26f, 0.52f, -0.72f, 0.93f, -1.27f, 1.12f) - lineToRelative(-3.8f, 1.3f) - lineToRelative(6.71f, 6.71f) - lineToRelative(1.31f, -3.79f) - curveToRelative(0.2f, -0.55f, 0.6f, -1.01f, 1.12f, -1.27f) - lineToRelative(4.87f, -2.44f) - curveToRelative(0.77f, -0.38f, 0.93f, -1.4f, 0.33f, -2.0f) - close() - } - } - return _pin!! - } - -private var _pin: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Play.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Play.kt deleted file mode 100644 index 3262d9ff..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Play.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Play: ImageVector - get() { - if (_play != null) { - return _play!! - } - _play = fluentIcon(name = "Regular.Play") { - fluentPath { - moveTo(7.6f, 4.61f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.1f, 0.66f) - verticalLineToRelative(13.46f) - curveToRelative(0.0f, 0.56f, 0.6f, 0.93f, 1.1f, 0.65f) - lineToRelative(12.37f, -6.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.32f) - lineTo(7.61f, 4.61f) - close() - moveTo(5.0f, 5.27f) - curveToRelative(0.0f, -1.7f, 1.83f, -2.79f, 3.33f, -1.97f) - lineToRelative(12.36f, 6.72f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, 3.96f) - lineTo(8.33f, 20.7f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 5.0f, 18.73f) - verticalLineTo(5.27f) - close() - } - } - return _play!! - } - -private var _play: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReOrder.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReOrder.kt deleted file mode 100644 index 7b69a4af..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReOrder.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ReOrder: ImageVector - get() { - if (_reOrder != null) { - return _reOrder!! - } - _reOrder = fluentIcon(name = "Regular.ReOrder") { - fluentPath { - moveTo(2.75f, 13.25f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(2.75f, 14.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(18.6f) - horizontalLineToRelative(-18.5f) - close() - moveTo(2.75f, 9.25f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(2.75f, 10.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(18.6f) - horizontalLineToRelative(-18.5f) - close() - } - } - return _reOrder!! - } - -private var _reOrder: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Rename.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Rename.kt deleted file mode 100644 index 0ac072f4..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Rename.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Rename: ImageVector - get() { - if (_rename != null) { - return _rename!! - } - _rename = fluentIcon(name = "Regular.Rename") { - fluentPath { - moveTo(9.75f, 2.0f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(12.5f, 3.5f) - verticalLineToRelative(17.0f) - horizontalLineToRelative(1.25f) - curveToRelative(0.37f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.64f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(11.0f, 20.5f) - verticalLineToRelative(-17.0f) - lineTo(9.75f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineTo(9.0f, 2.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(18.25f, 5.0f) - curveToRelative(1.79f, 0.0f, 3.24f, 1.45f, 3.25f, 3.25f) - verticalLineToRelative(7.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 18.44f, 19.0f) - lineTo(13.5f, 19.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(4.8f) - curveToRelative(0.94f, -0.03f, 1.7f, -0.8f, 1.69f, -1.75f) - verticalLineToRelative(-7.5f) - curveToRelative(0.0f, -0.97f, -0.79f, -1.75f, -1.75f, -1.75f) - lineTo(13.5f, 6.5f) - lineTo(13.5f, 5.0f) - horizontalLineToRelative(4.74f) - close() - moveTo(10.0f, 5.0f) - verticalLineToRelative(1.5f) - lineTo(5.25f, 6.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(10.0f, 17.5f) - lineTo(10.0f, 19.0f) - lineTo(5.25f, 19.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 15.75f) - verticalLineToRelative(-7.5f) - curveTo(2.0f, 6.45f, 3.46f, 5.0f, 5.25f, 5.0f) - lineTo(10.0f, 5.0f) - close() - } - } - return _rename!! - } - -private var _rename: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Save.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Save.kt deleted file mode 100644 index eccf362f..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Save.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Save: ImageVector - get() { - if (_save != null) { - return _save!! - } - _save = fluentIcon(name = "Regular.Save") { - fluentPath { - moveTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(9.96f) - curveToRelative(0.87f, 0.0f, 1.7f, 0.34f, 2.3f, 0.95f) - lineTo(20.05f, 6.0f) - curveToRelative(0.6f, 0.6f, 0.95f, 1.43f, 0.95f, 2.3f) - verticalLineToRelative(9.96f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) - lineTo(5.75f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - close() - moveTo(5.75f, 4.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - lineTo(6.0f, 19.5f) - verticalLineToRelative(-5.25f) - curveTo(6.0f, 13.01f, 7.0f, 12.0f, 8.25f, 12.0f) - horizontalLineToRelative(7.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(5.25f) - horizontalLineToRelative(0.25f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - lineTo(19.5f, 8.29f) - curveToRelative(0.0f, -0.47f, -0.18f, -0.91f, -0.51f, -1.24f) - lineTo(16.95f, 5.0f) - curveToRelative(-0.26f, -0.26f, -0.6f, -0.43f, -0.95f, -0.49f) - verticalLineToRelative(2.73f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-4.5f) - curveTo(8.01f, 9.5f, 7.0f, 8.5f, 7.0f, 7.25f) - lineTo(7.0f, 4.5f) - lineTo(5.75f, 4.5f) - close() - moveTo(16.5f, 19.5f) - verticalLineToRelative(-5.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(5.25f) - horizontalLineToRelative(9.0f) - close() - moveTo(8.5f, 4.5f) - verticalLineToRelative(2.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(14.5f, 4.5f) - horizontalLineToRelative(-6.0f) - close() - } - } - return _save!! - } - -private var _save: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Search.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Search.kt deleted file mode 100644 index 84e002e6..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Search.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Search: ImageVector - get() { - if (_search != null) { - return _search!! - } - _search = fluentIcon(name = "Regular.Search") { - fluentPath { - moveTo(10.0f, 2.75f) - arcToRelative(7.25f, 7.25f, 0.0f, false, true, 5.63f, 11.82f) - lineToRelative(4.9f, 4.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-4.9f, -4.9f) - arcTo(7.25f, 7.25f, 0.0f, true, true, 10.0f, 2.75f) - close() - moveTo(10.0f, 4.25f) - arcToRelative(5.75f, 5.75f, 0.0f, true, false, 0.0f, 11.5f) - arcToRelative(5.75f, 5.75f, 0.0f, false, false, 0.0f, -11.5f) - close() - } - } - return _search!! - } - -private var _search: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Send.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Send.kt deleted file mode 100644 index b3f2fc3c..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Send.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Send: ImageVector - get() { - if (_send != null) { - return _send!! - } - _send = fluentIcon(name = "Regular.Send") { - fluentPath { - moveTo(5.7f, 12.0f) - lineTo(2.3f, 3.27f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.94f, -0.98f) - lineToRelative(0.1f, 0.04f) - lineToRelative(18.0f, 9.0f) - curveToRelative(0.51f, 0.26f, 0.54f, 0.97f, 0.1f, 1.28f) - lineToRelative(-0.1f, 0.06f) - lineToRelative(-18.0f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.07f, -0.85f) - lineToRelative(0.03f, -0.1f) - lineTo(5.7f, 12.0f) - lineTo(2.3f, 3.27f) - lineTo(5.7f, 12.0f) - close() - moveTo(4.4f, 4.54f) - lineToRelative(2.61f, 6.7f) - lineToRelative(6.63f, 0.01f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 0.38f, -0.27f, 0.7f, -0.64f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineTo(7.0f) - lineToRelative(-2.6f, 6.7f) - lineTo(19.31f, 12.0f) - lineTo(4.4f, 4.54f) - close() - } - } - return _send!! - } - -private var _send: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Settings.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Settings.kt deleted file mode 100644 index 34ee5cc0..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Settings.kt +++ /dev/null @@ -1,97 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Settings: ImageVector - get() { - if (_settings != null) { - return _settings!! - } - _settings = fluentIcon(name = "Regular.Settings") { - fluentPath { - moveTo(12.01f, 2.25f) - curveToRelative(0.74f, 0.0f, 1.47f, 0.1f, 2.18f, 0.25f) - curveToRelative(0.32f, 0.07f, 0.55f, 0.33f, 0.59f, 0.65f) - lineToRelative(0.17f, 1.53f) - arcToRelative(1.38f, 1.38f, 0.0f, false, false, 1.92f, 1.11f) - lineToRelative(1.4f, -0.61f) - curveToRelative(0.3f, -0.13f, 0.64f, -0.06f, 0.85f, 0.17f) - arcToRelative(9.8f, 9.8f, 0.0f, false, true, 2.2f, 3.8f) - curveToRelative(0.1f, 0.3f, 0.0f, 0.63f, -0.26f, 0.82f) - lineToRelative(-1.25f, 0.92f) - arcToRelative(1.38f, 1.38f, 0.0f, false, false, 0.0f, 2.22f) - lineToRelative(1.25f, 0.92f) - curveToRelative(0.26f, 0.19f, 0.36f, 0.52f, 0.27f, 0.82f) - arcToRelative(9.8f, 9.8f, 0.0f, false, true, -2.2f, 3.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.85f, 0.17f) - lineToRelative(-1.4f, -0.62f) - arcToRelative(1.38f, 1.38f, 0.0f, false, false, -1.93f, 1.12f) - lineToRelative(-0.17f, 1.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.58f, 0.65f) - arcToRelative(9.52f, 9.52f, 0.0f, false, true, -4.4f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.57f, -0.65f) - lineToRelative(-0.17f, -1.52f) - arcToRelative(1.38f, 1.38f, 0.0f, false, false, -1.93f, -1.11f) - lineToRelative(-1.4f, 0.62f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.85f, -0.18f) - arcToRelative(9.8f, 9.8f, 0.0f, false, true, -2.2f, -3.8f) - curveToRelative(-0.1f, -0.3f, 0.0f, -0.63f, 0.26f, -0.82f) - lineToRelative(1.25f, -0.92f) - arcToRelative(1.38f, 1.38f, 0.0f, false, false, 0.0f, -2.22f) - lineToRelative(-1.24f, -0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.28f, -0.82f) - arcToRelative(9.8f, 9.8f, 0.0f, false, true, 2.2f, -3.8f) - curveToRelative(0.23f, -0.23f, 0.57f, -0.3f, 0.86f, -0.17f) - lineToRelative(1.4f, 0.62f) - curveToRelative(0.4f, 0.17f, 0.86f, 0.15f, 1.25f, -0.08f) - curveToRelative(0.38f, -0.22f, 0.63f, -0.6f, 0.68f, -1.04f) - lineToRelative(0.17f, -1.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.58f, -0.65f) - curveToRelative(0.72f, -0.16f, 1.45f, -0.24f, 2.2f, -0.25f) - close() - moveTo(12.01f, 3.75f) - curveToRelative(-0.45f, 0.0f, -0.9f, 0.04f, -1.35f, 0.12f) - lineToRelative(-0.11f, 0.97f) - arcToRelative(2.89f, 2.89f, 0.0f, false, true, -4.03f, 2.33f) - lineToRelative(-0.9f, -0.4f) - arcTo(8.3f, 8.3f, 0.0f, false, false, 4.29f, 9.1f) - lineToRelative(0.8f, 0.59f) - arcToRelative(2.88f, 2.88f, 0.0f, false, true, 0.0f, 4.64f) - lineToRelative(-0.8f, 0.59f) - arcToRelative(8.3f, 8.3f, 0.0f, false, false, 1.35f, 2.32f) - lineToRelative(0.9f, -0.4f) - arcToRelative(2.88f, 2.88f, 0.0f, false, true, 4.02f, 2.32f) - lineToRelative(0.1f, 0.99f) - curveToRelative(0.9f, 0.15f, 1.8f, 0.15f, 2.7f, 0.0f) - lineToRelative(0.1f, -0.99f) - arcToRelative(2.88f, 2.88f, 0.0f, false, true, 4.02f, -2.32f) - lineToRelative(0.9f, 0.4f) - arcToRelative(8.3f, 8.3f, 0.0f, false, false, 1.35f, -2.32f) - lineToRelative(-0.8f, -0.59f) - arcToRelative(2.88f, 2.88f, 0.0f, false, true, 0.0f, -4.64f) - lineToRelative(0.8f, -0.59f) - arcToRelative(8.3f, 8.3f, 0.0f, false, false, -1.35f, -2.32f) - lineToRelative(-0.9f, 0.4f) - arcToRelative(2.88f, 2.88f, 0.0f, false, true, -4.02f, -2.32f) - lineToRelative(-0.1f, -0.98f) - curveToRelative(-0.45f, -0.08f, -0.9f, -0.11f, -1.34f, -0.12f) - close() - moveTo(12.0f, 8.25f) - arcToRelative(3.75f, 3.75f, 0.0f, true, true, 0.0f, 7.5f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 0.0f, -7.5f) - close() - moveTo(12.0f, 9.75f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, 4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, -4.5f) - close() - } - } - return _settings!! - } - -private var _settings: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Share.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Share.kt deleted file mode 100644 index 23ac3187..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Share.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Share: ImageVector - get() { - if (_share != null) { - return _share!! - } - _share = fluentIcon(name = "Regular.Share") { - fluentPath { - moveTo(6.75f, 4.0f) - horizontalLineToRelative(3.46f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 5.5f) - curveToRelative(-1.2f, 0.0f, -2.17f, 0.92f, -2.25f, 2.1f) - verticalLineToRelative(9.65f) - curveToRelative(0.0f, 1.19f, 0.92f, 2.17f, 2.1f, 2.24f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(9.5f) - curveToRelative(1.19f, 0.0f, 2.16f, -0.93f, 2.24f, -2.1f) - verticalLineToRelative(-0.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.6f) - curveToRelative(0.0f, 2.0f, -1.56f, 3.64f, -3.54f, 3.74f) - lineToRelative(-0.2f, 0.01f) - horizontalLineToRelative(-9.5f) - curveToRelative(-2.0f, 0.0f, -3.64f, -1.57f, -3.75f, -3.55f) - verticalLineToRelative(-9.7f) - curveToRelative(0.0f, -2.0f, 1.57f, -3.64f, 3.55f, -3.75f) - horizontalLineToRelative(3.66f) - horizontalLineToRelative(-3.46f) - close() - moveTo(14.5f, 6.52f) - lineTo(14.5f, 3.75f) - curveToRelative(0.0f, -0.62f, 0.7f, -0.96f, 1.19f, -0.61f) - lineToRelative(0.08f, 0.07f) - lineToRelative(6.0f, 5.75f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.7f, 0.07f, 1.0f) - lineToRelative(-0.08f, 0.08f) - lineToRelative(-5.99f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.26f, -0.43f) - verticalLineToRelative(-2.83f) - lineToRelative(-0.35f, 0.03f) - curveToRelative(-2.4f, 0.25f, -4.7f, 1.33f, -6.92f, 3.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.23f, -0.66f) - curveToRelative(0.66f, -5.32f, 3.44f, -8.25f, 8.2f, -8.62f) - lineToRelative(0.3f, -0.02f) - lineTo(14.51f, 3.75f) - verticalLineToRelative(2.77f) - close() - moveTo(16.0f, 5.5f) - verticalLineToRelative(1.74f) - curveToRelative(0.0f, 0.41f, -0.33f, 0.75f, -0.75f, 0.75f) - curveToRelative(-3.87f, 0.0f, -6.27f, 1.68f, -7.31f, 5.16f) - lineToRelative(-0.08f, 0.28f) - lineToRelative(0.35f, -0.24f) - arcToRelative(12.68f, 12.68f, 0.0f, false, true, 7.04f, -2.2f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.74f) - lineToRelative(4.16f, -3.99f) - lineToRelative(-4.16f, -4.0f) - close() - } - } - return _share!! - } - -private var _share: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Star.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Star.kt deleted file mode 100644 index 2bc11631..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Star.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Star: ImageVector - get() { - if (_star != null) { - return _star!! - } - _star = fluentIcon(name = "Regular.Star") { - fluentPath { - moveTo(10.79f, 3.1f) - curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) - lineToRelative(2.36f, 4.78f) - lineToRelative(5.27f, 0.77f) - curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) - lineToRelative(-3.82f, 3.72f) - lineToRelative(0.9f, 5.25f) - arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, 1.42f) - lineTo(12.0f, 18.86f) - lineToRelative(-4.72f, 2.48f) - arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) - lineToRelative(0.9f, -5.25f) - lineToRelative(-3.81f, -3.72f) - curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) - lineToRelative(5.27f, -0.77f) - lineToRelative(2.36f, -4.78f) - close() - moveTo(11.99f, 4.04f) - lineTo(9.75f, 8.6f) - curveToRelative(-0.2f, 0.4f, -0.58f, 0.68f, -1.02f, 0.74f) - lineToRelative(-5.05f, 0.74f) - lineToRelative(3.66f, 3.56f) - curveToRelative(0.32f, 0.3f, 0.46f, 0.76f, 0.39f, 1.2f) - lineToRelative(-0.87f, 5.02f) - lineToRelative(4.52f, -2.37f) - curveToRelative(0.4f, -0.2f, 0.86f, -0.2f, 1.26f, 0.0f) - lineToRelative(4.51f, 2.37f) - lineToRelative(-0.86f, -5.03f) - curveToRelative(-0.07f, -0.43f, 0.07f, -0.88f, 0.39f, -1.2f) - lineToRelative(3.65f, -3.55f) - lineToRelative(-5.05f, -0.74f) - arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.01f, -0.74f) - lineTo(12.0f, 4.04f) - close() - } - } - return _star!! - } - -private var _star: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Subtract.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Subtract.kt deleted file mode 100644 index ff8fc4d5..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Subtract.kt +++ /dev/null @@ -1,28 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Subtract: ImageVector - get() { - if (_subtract != null) { - return _subtract!! - } - _subtract = fluentIcon(name = "Regular.Subtract") { - fluentPath { - moveTo(3.75f, 12.5f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - } - } - return _subtract!! - } - -private var _subtract: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Tag.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Tag.kt deleted file mode 100644 index 0e65eaa7..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Tag.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Tag: ImageVector - get() { - if (_tag != null) { - return _tag!! - } - _tag = fluentIcon(name = "Regular.Tag") { - fluentPath { - moveTo(19.75f, 2.0f) - curveTo(20.99f, 2.0f, 22.0f, 3.0f, 22.0f, 4.25f) - verticalLineToRelative(5.46f) - curveToRelative(0.0f, 0.86f, -0.34f, 1.69f, -0.95f, 2.3f) - lineToRelative(-8.5f, 8.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -4.6f, 0.0f) - lineTo(3.5f, 16.06f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.6f) - lineToRelative(8.5f, -8.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.3f, -0.96f) - horizontalLineToRelative(5.46f) - close() - moveTo(19.75f, 3.5f) - horizontalLineToRelative(-5.47f) - curveToRelative(-0.46f, 0.0f, -0.9f, 0.18f, -1.23f, 0.51f) - lineToRelative(-8.52f, 8.53f) - curveToRelative(-0.67f, 0.68f, -0.66f, 1.78f, 0.02f, 2.46f) - lineTo(9.0f, 19.45f) - curveToRelative(0.68f, 0.68f, 1.8f, 0.68f, 2.48f, 0.0f) - lineToRelative(8.5f, -8.5f) - curveToRelative(0.33f, -0.33f, 0.51f, -0.77f, 0.51f, -1.24f) - lineTo(20.49f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(17.0f, 5.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - } - } - return _tag!! - } - -private var _tag: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Warning.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Warning.kt deleted file mode 100644 index dc6a5aad..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Warning.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Warning: ImageVector - get() { - if (_warning != null) { - return _warning!! - } - _warning = fluentIcon(name = "Regular.Warning") { - fluentPath { - moveTo(13.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(12.74f, 9.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - lineToRelative(0.01f, 4.5f) - verticalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - verticalLineToRelative(-4.5f) - lineToRelative(-0.01f, -0.1f) - close() - moveTo(13.97f, 3.65f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.94f, 0.0f) - lineTo(2.3f, 17.67f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 21.0f) - horizontalLineToRelative(15.49f) - curveToRelative(1.71f, 0.0f, 2.8f, -1.84f, 1.96f, -3.34f) - lineToRelative(-7.74f, -14.0f) - close() - moveTo(11.34f, 4.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.32f, 0.0f) - lineToRelative(7.74f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, 1.11f) - lineTo(4.25f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -1.11f) - lineToRelative(7.74f, -14.0f) - close() - } - } - return _warning!! - } - -private var _warning: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Wrench.kt b/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Wrench.kt deleted file mode 100644 index 1500b194..00000000 --- a/fluent-icons-core/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Wrench.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Wrench: ImageVector - get() { - if (_wrench != null) { - return _wrench!! - } - _wrench = fluentIcon(name = "Regular.Wrench") { - fluentPath { - moveTo(10.5f, 7.75f) - arcToRelative(5.75f, 5.75f, 0.0f, false, true, 8.38f, -5.11f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.19f, 1.2f) - lineTo(16.3f, 6.6f) - lineToRelative(1.06f, 1.06f) - lineToRelative(2.78f, -2.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.2f, 0.18f) - arcToRelative(5.75f, 5.75f, 0.0f, false, true, -6.42f, 8.28f) - lineToRelative(-7.37f, 7.62f) - arcToRelative(3.05f, 3.05f, 0.0f, false, true, -4.4f, -4.24f) - lineTo(10.64f, 9.0f) - curveToRelative(-0.08f, -0.4f, -0.13f, -0.81f, -0.13f, -1.24f) - close() - moveTo(16.25f, 3.5f) - arcTo(4.25f, 4.25f, 0.0f, false, false, 12.18f, 9.0f) - curveToRelative(0.08f, 0.26f, 0.01f, 0.54f, -0.18f, 0.74f) - lineToRelative(-7.76f, 8.03f) - arcToRelative(1.55f, 1.55f, 0.0f, true, false, 2.23f, 2.16f) - lineToRelative(7.67f, -7.94f) - curveToRelative(0.2f, -0.2f, 0.5f, -0.28f, 0.78f, -0.2f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, 5.46f, -5.02f) - lineToRelative(-2.49f, 2.5f) - curveToRelative(-0.3f, 0.28f, -0.77f, 0.28f, -1.06f, 0.0f) - lineToRelative(-2.12f, -2.13f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(2.47f, -2.47f) - curveToRelative(-0.3f, -0.06f, -0.61f, -0.1f, -0.93f, -0.1f) - close() - } - } - return _wrench!! - } - -private var _wrench: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/Icons.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/Icons.kt new file mode 100644 index 00000000..bd303d78 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/Icons.kt @@ -0,0 +1,62 @@ +package io.github.composefluent.icons + +import androidx.compose.ui.graphics.* +import androidx.compose.ui.graphics.vector.DefaultFillType +import androidx.compose.ui.graphics.vector.ImageVector +import androidx.compose.ui.graphics.vector.PathBuilder +import androidx.compose.ui.graphics.vector.path +import androidx.compose.ui.unit.dp + +/** + * Fluent icons. See [Fluent Icons Catalog](https://react.fluentui.dev/iframe.html?viewMode=docs&id=concepts-developer-icons-icons-catalog--page) + */ +object Icons { + object Filled + object Regular + val Default = Regular +} + +inline fun fluentIcon( + name: String, + block: ImageVector.Builder.() -> ImageVector.Builder +): ImageVector = ImageVector.Builder( + name = name, + defaultWidth = FluentIconDimension.dp, + defaultHeight = FluentIconDimension.dp, + viewportWidth = 24f, + viewportHeight = 24f +).block().build() + +/** + * Adds a vector path to this icon with Fluent defaults. + * + * @param fillAlpha fill alpha for this path + * @param strokeAlpha stroke alpha for this path + * @param pathFillType [PathFillType] for this path + * @param pathBuilder builder lambda to add commands to this path + */ +inline fun ImageVector.Builder.fluentPath( + fillAlpha: Float = 1f, + strokeAlpha: Float = 1f, + pathFillType: PathFillType = DefaultFillType, + pathBuilder: PathBuilder.() -> Unit +) = +// TODO: b/146213225 +// Some of these defaults are already set when parsing from XML, but do not currently exist + // when added programmatically. We should unify these and simplify them where possible. + path( + fill = SolidColor(Color.Black), + fillAlpha = fillAlpha, + stroke = null, + strokeAlpha = strokeAlpha, + strokeLineWidth = 1f, + strokeLineCap = StrokeCap.Butt, + strokeLineJoin = StrokeJoin.Bevel, + strokeLineMiter = 1f, + pathFillType = pathFillType, + pathBuilder = pathBuilder + ) + +// All Fluent icons (currently) are 12dp by 12dp, with a viewport size of 12 by 12. +@PublishedApi +internal const val FluentIconDimension = 16f diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Add.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Add.kt new file mode 100644 index 00000000..73b5754f --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Add.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Add: ImageVector + get() { + if (_add != null) { + return _add!! + } + _add = fluentIcon(name = "Filled.Add") { + fluentPath { + moveTo(11.88f, 3.0f) + horizontalLineTo(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + verticalLineTo(11.0f) + horizontalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + verticalLineTo(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + horizontalLineTo(13.0f) + verticalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + horizontalLineTo(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + verticalLineTo(13.0f) + horizontalLineTo(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + verticalLineTo(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) + horizontalLineTo(11.0f) + verticalLineTo(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) + horizontalLineTo(12.0f) + horizontalLineToRelative(-0.12f) + close() + } + } + return _add!! + } + +private var _add: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Alert.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Alert.kt new file mode 100644 index 00000000..850ad434 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Alert.kt @@ -0,0 +1,37 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Alert: ImageVector + get() { + if (_alert != null) { + return _alert!! + } + _alert = fluentIcon(name = "Filled.Alert") { + fluentPath { + moveTo(9.04f, 19.0f) + horizontalLineToRelative(5.92f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -5.92f, 0.0f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(7.5f, 7.5f, 0.0f, false, true, 7.5f, 7.5f) + verticalLineToRelative(4.0f) + lineToRelative(1.42f, 3.16f) + arcToRelative(0.95f, 0.95f, 0.0f, false, true, -0.87f, 1.34f) + horizontalLineTo(3.95f) + arcToRelative(0.95f, 0.95f, 0.0f, false, true, -0.86f, -1.34f) + lineTo(4.5f, 13.5f) + verticalLineTo(9.24f) + arcTo(7.5f, 7.5f, 0.0f, false, true, 12.0f, 2.0f) + close() + } + } + return _alert!! + } + +private var _alert: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowDown.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowDown.kt new file mode 100644 index 00000000..886549bf --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowDown.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowDown: ImageVector + get() { + if (_arrowDown != null) { + return _arrowDown!! + } + _arrowDown = fluentIcon(name = "Filled.ArrowDown") { + fluentPath { + moveTo(19.72f, 13.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.43f, -1.4f) + lineTo(13.0f, 17.67f) + verticalLineTo(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(13.66f) + lineTo(5.72f, 12.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.43f, 1.4f) + lineToRelative(6.82f, 6.93f) + curveToRelative(0.5f, 0.5f, 1.3f, 0.5f, 1.78f, 0.0f) + lineToRelative(6.83f, -6.93f) + close() + } + } + return _arrowDown!! + } + +private var _arrowDown: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowDownLeft.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowDownLeft.kt new file mode 100644 index 00000000..7cf7a55b --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowDownLeft.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowDownLeft: ImageVector + get() { + if (_arrowDownLeft != null) { + return _arrowDownLeft!! + } + _arrowDownLeft = fluentIcon(name = "Filled.ArrowDownLeft") { + fluentPath { + moveTo(13.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + horizontalLineTo(6.41f) + lineToRelative(14.3f, -14.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, -1.4f) + lineTo(5.0f, 17.58f) + verticalLineTo(11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(9.0f) + close() + } + } + return _arrowDownLeft!! + } + +private var _arrowDownLeft: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowDownload.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowDownload.kt new file mode 100644 index 00000000..0a4746fc --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowDownload.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowDownload: ImageVector + get() { + if (_arrowDownload != null) { + return _arrowDownload!! + } + _arrowDownload = fluentIcon(name = "Filled.ArrowDownload") { + fluentPath { + moveTo(5.25f, 20.5f) + horizontalLineToRelative(13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineTo(5.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(13.6f) + horizontalLineToRelative(-13.5f) + close() + moveTo(11.88f, 2.0f) + horizontalLineTo(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + verticalLineTo(15.59f) + lineToRelative(3.3f, -3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.31f, -0.08f) + lineToRelative(0.1f, 0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.32f) + lineToRelative(-0.08f, 0.1f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.08f) + lineToRelative(-0.1f, -0.09f) + lineToRelative(-5.0f, -5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -1.49f) + lineToRelative(0.1f, 0.08f) + lineTo(11.0f, 15.6f) + verticalLineTo(2.98f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -0.99f) + horizontalLineTo(12.0f) + horizontalLineToRelative(-0.12f) + close() + } + } + return _arrowDownload!! + } + +private var _arrowDownload: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowExpand.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowExpand.kt new file mode 100644 index 00000000..18b9119e --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowExpand.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowExpand: ImageVector + get() { + if (_arrowExpand != null) { + return _arrowExpand!! + } + _arrowExpand = fluentIcon(name = "Filled.ArrowExpand") { + fluentPath { + moveTo(7.67f, 14.92f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, 1.42f) + lineTo(6.41f, 19.0f) + lineTo(8.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.89f) + lineTo(9.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + lineTo(4.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineToRelative(-4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(1.6f) + lineToRelative(2.67f, -2.68f) + close() + moveTo(16.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(1.59f) + lineToRelative(-2.67f, -2.66f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.32f) + lineToRelative(0.08f, -0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 0.0f) + lineTo(19.0f, 17.6f) + lineTo(19.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.89f, -0.99f) + lineTo(20.0f, 15.01f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(8.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + lineTo(6.42f, 5.0f) + lineToRelative(2.66f, 2.67f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.09f, 1.32f) + lineToRelative(-0.09f, 0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.41f, 0.0f) + lineTo(5.0f, 6.4f) + lineTo(5.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + lineTo(4.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(3.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(4.0f) + close() + moveTo(20.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(19.0f, 6.41f) + lineToRelative(-2.66f, 2.67f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.09f) + lineToRelative(-0.1f, -0.09f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.41f) + lineTo(17.6f, 5.0f) + lineTo(16.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.99f, -0.88f) + lineTo(15.01f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(4.0f) + close() + } + } + return _arrowExpand!! + } + +private var _arrowExpand: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowForward.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowForward.kt new file mode 100644 index 00000000..d8ddc703 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowForward.kt @@ -0,0 +1,37 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowForward: ImageVector + get() { + if (_arrowForward != null) { + return _arrowForward!! + } + _arrowForward = fluentIcon(name = "Filled.ArrowForward") { + fluentPath { + moveTo(14.3f, 16.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.41f, 1.4f) + lineToRelative(5.0f, -5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.4f) + lineToRelative(-5.0f, -5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.41f, 1.4f) + lineToRelative(3.29f, 3.3f) + horizontalLineTo(11.0f) + arcToRelative(8.0f, 8.0f, 0.0f, false, false, -8.0f, 7.75f) + verticalLineTo(19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 5.78f, -6.0f) + horizontalLineToRelative(6.81f) + lineToRelative(-3.3f, 3.3f) + close() + } + } + return _arrowForward!! + } + +private var _arrowForward: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowLeft.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowLeft.kt new file mode 100644 index 00000000..16b8912e --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowLeft.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowLeft: ImageVector + get() { + if (_arrowLeft != null) { + return _arrowLeft!! + } + _arrowLeft = fluentIcon(name = "Filled.ArrowLeft") { + fluentPath { + moveTo(10.3f, 19.72f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, -1.43f) + lineTo(6.33f, 13.0f) + horizontalLineTo(20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + horizontalLineTo(6.33f) + lineToRelative(5.37f, -5.28f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.42f) + lineToRelative(-6.93f, 6.82f) + curveToRelative(-0.5f, 0.5f, -0.5f, 1.3f, 0.0f, 1.78f) + lineToRelative(6.92f, 6.83f) + close() + } + } + return _arrowLeft!! + } + +private var _arrowLeft: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowRight.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowRight.kt new file mode 100644 index 00000000..86a69136 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowRight.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowRight: ImageVector + get() { + if (_arrowRight != null) { + return _arrowRight!! + } + _arrowRight = fluentIcon(name = "Filled.ArrowRight") { + fluentPath { + moveTo(13.7f, 4.28f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.4f, 1.43f) + lineTo(17.67f, 11.0f) + horizontalLineTo(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(13.66f) + lineToRelative(-5.36f, 5.28f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 1.43f) + lineToRelative(6.93f, -6.82f) + curveToRelative(0.5f, -0.5f, 0.5f, -1.3f, 0.0f, -1.78f) + lineTo(13.7f, 4.28f) + close() + } + } + return _arrowRight!! + } + +private var _arrowRight: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSync.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSync.kt new file mode 100644 index 00000000..98ed73a9 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSync.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowSync: ImageVector + get() { + if (_arrowSync != null) { + return _arrowSync!! + } + _arrowSync = fluentIcon(name = "Filled.ArrowSync") { + fluentPath { + moveTo(16.05f, 5.03f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.2f, 1.4f) + arcToRelative(6.99f, 6.99f, 0.0f, false, true, -3.17f, 12.49f) + lineToRelative(0.71f, -0.71f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.41f, -1.42f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.42f) + lineToRelative(2.5f, 2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.41f, -1.42f) + lineToRelative(-0.84f, -0.84f) + arcToRelative(9.0f, 9.0f, 0.0f, false, false, 4.5f, -16.11f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.19f) + close() + moveTo(14.12f, 3.29f) + lineTo(11.62f, 0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.5f, 1.32f) + lineToRelative(0.09f, 0.1f) + lineToRelative(0.84f, 0.84f) + arcToRelative(9.0f, 9.0f, 0.0f, false, false, -4.78f, 15.9f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.28f, -1.55f) + arcToRelative(6.98f, 6.98f, 0.0f, false, true, 3.37f, -12.32f) + lineToRelative(-0.71f, 0.71f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.32f, 1.5f) + lineToRelative(0.1f, -0.08f) + lineToRelative(2.5f, -2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.07f, -1.32f) + lineToRelative(-0.08f, -0.1f) + close() + } + } + return _arrowSync!! + } + +private var _arrowSync: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowUp.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowUp.kt new file mode 100644 index 00000000..4e65439d --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowUp.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowUp: ImageVector + get() { + if (_arrowUp != null) { + return _arrowUp!! + } + _arrowUp = fluentIcon(name = "Filled.ArrowUp") { + fluentPath { + moveTo(4.28f, 10.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.43f, 1.4f) + lineTo(11.0f, 6.33f) + verticalLineTo(20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineTo(6.33f) + lineToRelative(5.28f, 5.37f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.43f, -1.4f) + lineToRelative(-6.82f, -6.93f) + curveToRelative(-0.5f, -0.5f, -1.3f, -0.5f, -1.78f, 0.0f) + lineTo(4.28f, 10.3f) + close() + } + } + return _arrowUp!! + } + +private var _arrowUp: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowUpLeft.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowUpLeft.kt new file mode 100644 index 00000000..303f5c08 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowUpLeft.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowUpLeft: ImageVector + get() { + if (_arrowUpLeft != null) { + return _arrowUpLeft!! + } + _arrowUpLeft = fluentIcon(name = "Filled.ArrowUpLeft") { + fluentPath { + moveTo(13.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineTo(6.41f) + lineToRelative(14.3f, 14.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 1.4f) + lineTo(5.0f, 6.42f) + verticalLineTo(13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineTo(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(9.0f) + close() + } + } + return _arrowUpLeft!! + } + +private var _arrowUpLeft: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowUpRight.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowUpRight.kt new file mode 100644 index 00000000..7c6f7aeb --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowUpRight.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowUpRight: ImageVector + get() { + if (_arrowUpRight != null) { + return _arrowUpRight!! + } + _arrowUpRight = fluentIcon(name = "Filled.ArrowUpRight") { + fluentPath { + moveTo(11.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(6.59f) + lineTo(3.29f, 19.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.42f, 1.4f) + lineTo(19.0f, 6.42f) + verticalLineTo(13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineTo(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineToRelative(-9.0f) + close() + } + } + return _arrowUpRight!! + } + +private var _arrowUpRight: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Attach.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Attach.kt new file mode 100644 index 00000000..7f0608c9 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Attach.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Attach: ImageVector + get() { + if (_attach != null) { + return _attach!! + } + _attach = fluentIcon(name = "Filled.Attach") { + fluentPath { + moveTo(16.0f, 2.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 4.4f, 10.08f) + lineToRelative(-0.2f, 0.2f) + lineTo(11.49f, 21.0f) + lineToRelative(-0.05f, 0.04f) + lineToRelative(-0.06f, 0.05f) + arcToRelative(3.71f, 3.71f, 0.0f, false, true, -6.15f, -2.82f) + curveToRelative(0.0f, -0.9f, 0.33f, -1.76f, 0.9f, -2.42f) + lineToRelative(0.15f, -0.17f) + horizontalLineToRelative(0.01f) + lineToRelative(7.3f, -7.31f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.41f) + lineTo(7.7f, 17.1f) + lineToRelative(-0.01f, 0.01f) + arcToRelative(1.72f, 1.72f, 0.0f, false, false, 2.29f, 2.55f) + lineToRelative(0.12f, -0.1f) + lineToRelative(8.7f, -8.7f) + lineToRelative(0.16f, -0.16f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -5.75f, -5.55f) + lineToRelative(-0.16f, 0.16f) + lineToRelative(-0.02f, 0.01f) + lineToRelative(-9.32f, 9.33f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, -1.41f) + lineTo(11.6f, 3.9f) + lineToRelative(0.05f, -0.04f) + arcTo(5.98f, 5.98f, 0.0f, false, true, 16.0f, 2.0f) + close() + } + } + return _attach!! + } + +private var _attach: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Backspace.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Backspace.kt new file mode 100644 index 00000000..3b863765 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Backspace.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Backspace: ImageVector + get() { + if (_backspace != null) { + return _backspace!! + } + _backspace = fluentIcon(name = "Filled.Backspace") { + fluentPath { + moveTo(18.75f, 4.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.24f, 3.07f) + lineToRelative(0.01f, 0.18f) + verticalLineToRelative(9.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + horizontalLineToRelative(-8.5f) + curveToRelative(-0.77f, 0.0f, -1.5f, -0.27f, -2.09f, -0.76f) + lineToRelative(-0.15f, -0.13f) + lineToRelative(-5.0f, -4.75f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -0.11f, -4.6f) + lineTo(3.0f, 9.64f) + lineToRelative(5.0f, -4.75f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.03f, -0.88f) + lineToRelative(0.2f, -0.01f) + horizontalLineToRelative(8.51f) + close() + moveTo(11.45f, 8.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.05f, 1.05f) + lineToRelative(0.07f, 0.08f) + lineTo(12.94f, 12.0f) + lineToRelative(-2.47f, 2.47f) + lineToRelative(-0.07f, 0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.05f, 1.05f) + lineToRelative(0.08f, -0.07f) + lineTo(14.0f, 13.06f) + lineToRelative(2.47f, 2.47f) + lineToRelative(0.08f, 0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.05f, -1.05f) + lineToRelative(-0.07f, -0.08f) + lineTo(15.06f, 12.0f) + lineToRelative(2.47f, -2.47f) + lineToRelative(0.07f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.05f, -1.05f) + lineToRelative(-0.08f, 0.07f) + lineTo(14.0f, 10.94f) + lineToRelative(-2.47f, -2.47f) + lineToRelative(-0.08f, -0.07f) + close() + } + } + return _backspace!! + } + +private var _backspace: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarLtr.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarLtr.kt new file mode 100644 index 00000000..774ea2c8 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarLtr.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarLtr: ImageVector + get() { + if (_calendarLtr != null) { + return _calendarLtr!! + } + _calendarLtr = fluentIcon(name = "Filled.CalendarLtr") { + fluentPath { + moveTo(21.0f, 8.5f) + verticalLineToRelative(9.25f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 8.5f) + horizontalLineToRelative(18.0f) + close() + moveTo(7.25f, 15.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(12.0f, 15.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(7.25f, 10.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(12.0f, 10.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(16.75f, 10.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + lineTo(21.0f, 7.0f) + lineTo(3.0f, 7.0f) + verticalLineToRelative(-0.75f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + } + } + return _calendarLtr!! + } + +private var _calendarLtr: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/CaretDown.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/CaretDown.kt new file mode 100644 index 00000000..57403628 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/CaretDown.kt @@ -0,0 +1,30 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CaretDown: ImageVector + get() { + if (_caretDown != null) { + return _caretDown!! + } + _caretDown = fluentIcon(name = "Filled.CaretDown") { + fluentPath { + moveTo(6.1f, 8.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -0.94f, 2.07f) + lineToRelative(5.52f, 6.31f) + curveToRelative(0.7f, 0.8f, 1.94f, 0.8f, 2.64f, 0.0f) + lineToRelative(5.52f, -6.3f) + curveToRelative(0.7f, -0.82f, 0.13f, -2.08f, -0.94f, -2.08f) + horizontalLineTo(6.1f) + close() + } + } + return _caretDown!! + } + +private var _caretDown: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/CaretDownRight.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/CaretDownRight.kt new file mode 100644 index 00000000..5d2b26c3 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/CaretDownRight.kt @@ -0,0 +1,30 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CaretDownRight: ImageVector + get() { + if (_caretDownRight != null) { + return _caretDownRight!! + } + _caretDownRight = fluentIcon(name = "Filled.CaretDownRight") { + fluentPath { + moveTo(18.0f, 7.2f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.13f, -0.88f) + lineToRelative(-9.55f, 9.55f) + curveToRelative(-0.78f, 0.78f, -0.23f, 2.13f, 0.89f, 2.13f) + horizontalLineToRelative(9.04f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineTo(7.21f) + close() + } + } + return _caretDownRight!! + } + +private var _caretDownRight: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/CaretLeft.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/CaretLeft.kt new file mode 100644 index 00000000..a9b19ac6 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/CaretLeft.kt @@ -0,0 +1,30 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CaretLeft: ImageVector + get() { + if (_caretLeft != null) { + return _caretLeft!! + } + _caretLeft = fluentIcon(name = "Filled.CaretLeft") { + fluentPath { + moveTo(15.0f, 17.9f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.07f, 0.94f) + lineToRelative(-6.31f, -5.52f) + curveToRelative(-0.8f, -0.7f, -0.8f, -1.94f, 0.0f, -2.64f) + lineToRelative(6.3f, -5.52f) + curveToRelative(0.82f, -0.7f, 2.08f, -0.13f, 2.08f, 0.94f) + verticalLineToRelative(11.8f) + close() + } + } + return _caretLeft!! + } + +private var _caretLeft: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/CaretRight.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/CaretRight.kt new file mode 100644 index 00000000..8cdca548 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/CaretRight.kt @@ -0,0 +1,30 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CaretRight: ImageVector + get() { + if (_caretRight != null) { + return _caretRight!! + } + _caretRight = fluentIcon(name = "Filled.CaretRight") { + fluentPath { + moveTo(9.0f, 17.9f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.07f, 0.94f) + lineToRelative(6.31f, -5.52f) + curveToRelative(0.8f, -0.7f, 0.8f, -1.94f, 0.0f, -2.64f) + lineToRelative(-6.3f, -5.52f) + curveTo(10.25f, 4.46f, 9.0f, 5.03f, 9.0f, 6.1f) + verticalLineToRelative(11.8f) + close() + } + } + return _caretRight!! + } + +private var _caretRight: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/CaretUp.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/CaretUp.kt new file mode 100644 index 00000000..80f320df --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/CaretUp.kt @@ -0,0 +1,30 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CaretUp: ImageVector + get() { + if (_caretUp != null) { + return _caretUp!! + } + _caretUp = fluentIcon(name = "Filled.CaretUp") { + fluentPath { + moveTo(6.1f, 16.98f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.94f, -2.07f) + lineToRelative(5.52f, -6.31f) + curveToRelative(0.7f, -0.8f, 1.94f, -0.8f, 2.64f, 0.0f) + lineToRelative(5.52f, 6.3f) + curveToRelative(0.7f, 0.82f, 0.13f, 2.08f, -0.94f, 2.08f) + horizontalLineTo(6.1f) + close() + } + } + return _caretUp!! + } + +private var _caretUp: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Checkmark.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Checkmark.kt new file mode 100644 index 00000000..a5e967d1 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Checkmark.kt @@ -0,0 +1,31 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Checkmark: ImageVector + get() { + if (_checkmark != null) { + return _checkmark!! + } + _checkmark = fluentIcon(name = "Filled.Checkmark") { + fluentPath { + moveToRelative(8.5f, 16.59f) + lineToRelative(-3.8f, -3.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) + lineToRelative(4.5f, 4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) + lineToRelative(11.0f, -11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.42f) + lineTo(8.5f, 16.6f) + close() + } + } + return _checkmark!! + } + +private var _checkmark: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChevronDown.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChevronDown.kt new file mode 100644 index 00000000..5a938cd5 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChevronDown.kt @@ -0,0 +1,32 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChevronDown: ImageVector + get() { + if (_chevronDown != null) { + return _chevronDown!! + } + _chevronDown = fluentIcon(name = "Filled.ChevronDown") { + fluentPath { + moveTo(4.3f, 8.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) + lineToRelative(6.3f, 6.29f) + lineToRelative(6.3f, -6.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, 1.42f) + lineToRelative(-7.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) + lineToRelative(-7.0f, -7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.42f) + close() + } + } + return _chevronDown!! + } + +private var _chevronDown: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChevronLeft.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChevronLeft.kt new file mode 100644 index 00000000..3a0b1cf5 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChevronLeft.kt @@ -0,0 +1,32 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChevronLeft: ImageVector + get() { + if (_chevronLeft != null) { + return _chevronLeft!! + } + _chevronLeft = fluentIcon(name = "Filled.ChevronLeft") { + fluentPath { + moveTo(15.7f, 4.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.4f) + lineTo(9.42f, 12.0f) + lineToRelative(6.3f, 6.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 1.4f) + lineToRelative(-7.0f, -7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) + lineToRelative(7.0f, -7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 0.0f) + close() + } + } + return _chevronLeft!! + } + +private var _chevronLeft: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChevronRight.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChevronRight.kt new file mode 100644 index 00000000..603a4ade --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChevronRight.kt @@ -0,0 +1,32 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChevronRight: ImageVector + get() { + if (_chevronRight != null) { + return _chevronRight!! + } + _chevronRight = fluentIcon(name = "Filled.ChevronRight") { + fluentPath { + moveTo(8.3f, 4.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.4f) + lineToRelative(6.29f, 6.3f) + lineToRelative(-6.3f, 6.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.42f, 1.4f) + lineToRelative(7.0f, -7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.4f) + lineToRelative(-7.0f, -7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, 0.0f) + close() + } + } + return _chevronRight!! + } + +private var _chevronRight: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChevronUp.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChevronUp.kt new file mode 100644 index 00000000..f6779c39 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChevronUp.kt @@ -0,0 +1,32 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChevronUp: ImageVector + get() { + if (_chevronUp != null) { + return _chevronUp!! + } + _chevronUp = fluentIcon(name = "Filled.ChevronUp") { + fluentPath { + moveTo(4.3f, 15.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) + lineTo(12.0f, 9.42f) + lineToRelative(6.3f, 6.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, -1.42f) + lineToRelative(-7.0f, -7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) + lineToRelative(-7.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.42f) + close() + } + } + return _chevronUp!! + } + +private var _chevronUp: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardPaste.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardPaste.kt new file mode 100644 index 00000000..f4a09b72 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardPaste.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClipboardPaste: ImageVector + get() { + if (_clipboardPaste != null) { + return _clipboardPaste!! + } + _clipboardPaste = fluentIcon(name = "Filled.ClipboardPaste") { + fluentPath { + moveTo(12.75f, 2.0f) + curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) + horizontalLineToRelative(1.76f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) + lineToRelative(-0.01f, -0.1f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-2.13f) + curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.78f, 0.0f, -1.46f, -0.4f, -1.87f, -1.0f) + lineTo(5.25f, 5.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.75f) + horizontalLineToRelative(3.1f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.29f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + curveToRelative(0.0f, 0.42f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-3.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) + lineTo(3.0f, 19.76f) + lineTo(3.0f, 6.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(5.25f, 4.0f) + horizontalLineToRelative(1.76f) + curveToRelative(0.13f, -1.12f, 1.08f, -2.0f, 2.24f, -2.0f) + horizontalLineToRelative(3.5f) + close() + moveTo(18.75f, 8.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + horizontalLineToRelative(-6.5f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineToRelative(-0.01f, -0.15f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineToRelative(0.15f, -0.01f) + horizontalLineToRelative(6.5f) + close() + moveTo(12.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + close() + } + } + return _clipboardPaste!! + } + +private var _clipboardPaste: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Clock.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Clock.kt new file mode 100644 index 00000000..cd5ced54 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Clock.kt @@ -0,0 +1,35 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Clock: ImageVector + get() { + if (_clock != null) { + return _clock!! + } + _clock = fluentIcon(name = "Filled.Clock") { + fluentPath { + moveTo(15.25f, 13.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineTo(12.0f) + horizontalLineToRelative(3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) + close() + } + } + return _clock!! + } + +private var _clock: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cloud.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cloud.kt new file mode 100644 index 00000000..2d6779e9 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cloud.kt @@ -0,0 +1,30 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Cloud: ImageVector + get() { + if (_cloud != null) { + return _cloud!! + } + _cloud = fluentIcon(name = "Filled.Cloud") { + fluentPath { + moveTo(6.09f, 9.75f) + arcToRelative(5.75f, 5.75f, 0.0f, false, true, 11.32f, 0.0f) + horizontalLineToRelative(0.09f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, 8.0f) + horizontalLineTo(6.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, -8.0f) + horizontalLineToRelative(0.09f) + close() + } + } + return _cloud!! + } + +private var _cloud: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Copy.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Copy.kt new file mode 100644 index 00000000..11a2a64c --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Copy.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Copy: ImageVector + get() { + if (_copy != null) { + return _copy!! + } + _copy = fluentIcon(name = "Filled.Copy") { + fluentPath { + moveTo(5.5f, 4.63f) + verticalLineTo(17.25f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(8.62f) + curveToRelative(-0.31f, 0.88f, -1.15f, 1.5f, -2.13f, 1.5f) + horizontalLineTo(8.75f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 4.0f, 17.25f) + verticalLineTo(6.75f) + curveToRelative(0.0f, -0.98f, 0.63f, -1.81f, 1.5f, -2.12f) + close() + moveTo(17.75f, 2.0f) + curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) + verticalLineToRelative(13.0f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-9.0f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-13.0f) + curveTo(6.5f, 3.01f, 7.5f, 2.0f, 8.75f, 2.0f) + horizontalLineToRelative(9.0f) + close() + } + } + return _copy!! + } + +private var _copy: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cut.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cut.kt new file mode 100644 index 00000000..46456625 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cut.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Cut: ImageVector + get() { + if (_cut != null) { + return _cut!! + } + _cut = fluentIcon(name = "Filled.Cut") { + fluentPath { + moveTo(7.83f, 2.44f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.66f, 1.12f) + lineToRelative(4.8f, 7.11f) + lineToRelative(-2.33f, 3.68f) + arcTo(3.99f, 3.99f, 0.0f, false, false, 3.0f, 18.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 7.2f, -2.4f) + lineToRelative(1.98f, -3.12f) + lineToRelative(1.89f, 2.8f) + arcTo(3.99f, 3.99f, 0.0f, false, false, 17.0f, 22.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, -1.25f, -7.8f) + lineToRelative(-3.62f, -5.38f) + lineToRelative(-4.3f, -6.38f) + close() + moveTo(5.0f, 18.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -4.0f, 0.0f) + close() + moveTo(15.0f, 18.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -4.0f, 0.0f) + close() + moveTo(14.52f, 8.79f) + lineTo(17.85f, 3.53f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.7f, -1.07f) + lineTo(13.3f, 6.98f) + lineToRelative(1.22f, 1.81f) + close() + } + } + return _cut!! + } + +private var _cut: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Delete.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Delete.kt new file mode 100644 index 00000000..9afaaec3 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Delete.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Delete: ImageVector + get() { + if (_delete != null) { + return _delete!! + } + _delete = fluentIcon(name = "Filled.Delete") { + fluentPath { + moveTo(10.0f, 5.0f) + horizontalLineToRelative(4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, -4.0f, 0.0f) + close() + moveTo(8.5f, 5.0f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 7.0f, 0.0f) + horizontalLineToRelative(5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.32f) + lineToRelative(-1.17f, 12.11f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 15.03f, 22.0f) + lineTo(8.97f, 22.0f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.73f, -3.39f) + lineTo(4.07f, 6.5f) + lineTo(2.75f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(8.5f, 5.0f) + close() + moveTo(10.5f, 9.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-7.5f) + close() + moveTo(14.25f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + } + } + return _delete!! + } + +private var _delete: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Dismiss.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Dismiss.kt new file mode 100644 index 00000000..8345e865 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Dismiss.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Dismiss: ImageVector + get() { + if (_dismiss != null) { + return _dismiss!! + } + _dismiss = fluentIcon(name = "Filled.Dismiss") { + fluentPath { + moveToRelative(4.21f, 4.39f) + lineToRelative(0.08f, -0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) + lineToRelative(0.1f, 0.08f) + lineTo(12.0f, 10.6f) + lineToRelative(6.3f, -6.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, 1.42f) + lineTo(13.42f, 12.0f) + lineToRelative(6.3f, 6.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.31f) + lineToRelative(-0.08f, 0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.08f) + lineToRelative(-0.1f, -0.08f) + lineTo(12.0f, 13.4f) + lineToRelative(-6.3f, 6.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.42f) + lineTo(10.58f, 12.0f) + lineToRelative(-6.3f, -6.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.31f) + lineToRelative(0.08f, -0.1f) + lineToRelative(-0.08f, 0.1f) + close() + } + } + return _dismiss!! + } + +private var _dismiss: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Document.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Document.kt new file mode 100644 index 00000000..4ff996f2 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Document.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Document: ImageVector + get() { + if (_document != null) { + return _document!! + } + _document = fluentIcon(name = "Filled.Document") { + fluentPath { + moveTo(12.0f, 2.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + lineTo(6.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.0f) + close() + moveTo(13.5f, 2.5f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.5f) + lineToRelative(-6.0f, -6.0f) + close() + } + } + return _document!! + } + +private var _document: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Edit.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Edit.kt new file mode 100644 index 00000000..5331dfe0 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Edit.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Edit: ImageVector + get() { + if (_edit != null) { + return _edit!! + } + _edit = fluentIcon(name = "Filled.Edit") { + fluentPath { + moveTo(15.9f, 3.05f) + arcToRelative(3.58f, 3.58f, 0.0f, true, true, 5.05f, 5.06f) + lineToRelative(-0.89f, 0.9f) + lineTo(15.0f, 3.93f) + lineToRelative(0.9f, -0.9f) + close() + moveTo(13.93f, 5.0f) + lineToRelative(-10.0f, 10.0f) + curveToRelative(-0.4f, 0.4f, -0.7f, 0.92f, -0.82f, 1.48f) + lineToRelative(-1.1f, 4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.9f, 0.9f) + lineToRelative(4.6f, -1.1f) + arcTo(3.1f, 3.1f, 0.0f, false, false, 9.0f, 20.07f) + lineToRelative(10.0f, -10.0f) + lineTo(13.94f, 5.0f) + close() + } + } + return _edit!! + } + +private var _edit: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ErrorCircle.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ErrorCircle.kt new file mode 100644 index 00000000..46b6bd8b --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ErrorCircle.kt @@ -0,0 +1,37 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ErrorCircle: ImageVector + get() { + if (_errorCircle != null) { + return _errorCircle!! + } + _errorCircle = fluentIcon(name = "Filled.ErrorCircle") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(12.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(12.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 0.88f) + verticalLineToRelative(5.24f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + lineTo(13.0f, 7.88f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 12.0f, 7.0f) + close() + } + } + return _errorCircle!! + } + +private var _errorCircle: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Eye.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Eye.kt new file mode 100644 index 00000000..137922d5 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Eye.kt @@ -0,0 +1,33 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Eye: ImageVector + get() { + if (_eye != null) { + return _eye!! + } + _eye = fluentIcon(name = "Filled.Eye") { + fluentPath { + moveTo(12.0f, 9.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, 0.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, -8.0f) + close() + moveTo(12.0f, 5.5f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 9.7f, 7.56f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.45f, 0.37f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, -16.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.45f, -0.36f) + arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 5.5f) + close() + } + } + return _eye!! + } + +private var _eye: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Filter.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Filter.kt new file mode 100644 index 00000000..c3470c4b --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Filter.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Filter: ImageVector + get() { + if (_filter != null) { + return _filter!! + } + _filter = fluentIcon(name = "Filled.Filter") { + fluentPath { + moveTo(10.0f, 16.0f) + horizontalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(10.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(14.0f, 16.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(8.0f, 11.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(8.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(16.0f, 11.0f) + lineTo(8.0f, 11.0f) + close() + moveTo(5.0f, 6.0f) + horizontalLineToRelative(14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(5.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(19.0f, 6.0f) + lineTo(5.0f, 6.0f) + close() + } + } + return _filter!! + } + +private var _filter: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Flag.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Flag.kt new file mode 100644 index 00000000..2276b724 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Flag.kt @@ -0,0 +1,37 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Flag: ImageVector + get() { + if (_flag != null) { + return _flag!! + } + _flag = fluentIcon(name = "Filled.Flag") { + fluentPath { + moveTo(3.0f, 3.75f) + curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(16.5f) + curveToRelative(0.62f, 0.0f, 0.98f, 0.7f, 0.6f, 1.2f) + lineTo(16.7f, 9.75f) + lineToRelative(4.16f, 5.55f) + curveToRelative(0.38f, 0.5f, 0.02f, 1.2f, -0.6f, 1.2f) + horizontalLineTo(4.5f) + verticalLineToRelative(4.75f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineTo(3.75f) + close() + } + } + return _flag!! + } + +private var _flag: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Flash.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Flash.kt new file mode 100644 index 00000000..ed0d5b1e --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Flash.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Flash: ImageVector + get() { + if (_flash != null) { + return _flash!! + } + _flash = fluentIcon(name = "Filled.Flash") { + fluentPath { + moveTo(7.43f, 2.83f) + curveTo(7.6f, 2.33f, 8.07f, 2.0f, 8.6f, 2.0f) + horizontalLineToRelative(6.46f) + curveToRelative(0.85f, 0.0f, 1.45f, 0.84f, 1.18f, 1.65f) + lineTo(14.8f, 8.0f) + horizontalLineToRelative(3.96f) + curveToRelative(1.1f, 0.0f, 1.67f, 1.33f, 0.9f, 2.12f) + lineTo(8.59f, 21.54f) + curveToRelative(-1.06f, 1.08f, -2.88f, 0.1f, -2.55f, -1.38f) + lineToRelative(1.27f, -5.66f) + lineToRelative(-1.56f, -0.01f) + curveToRelative(-1.21f, 0.0f, -2.05f, -1.2f, -1.65f, -2.34f) + lineToRelative(3.33f, -9.32f) + close() + } + } + return _flash!! + } + +private var _flash: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Folder.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Folder.kt new file mode 100644 index 00000000..93e8808c --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Folder.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Folder: ImageVector + get() { + if (_folder != null) { + return _folder!! + } + _folder = fluentIcon(name = "Filled.Folder") { + fluentPath { + moveTo(13.82f, 6.5f) + horizontalLineToRelative(5.93f) + curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) + lineToRelative(0.01f, 0.16f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + horizontalLineTo(4.25f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(2.0f, 17.75f) + verticalLineTo(10.5f) + horizontalLineToRelative(6.4f) + curveToRelative(0.4f, -0.04f, 0.77f, -0.18f, 1.1f, -0.4f) + lineToRelative(0.15f, -0.12f) + lineToRelative(4.17f, -3.48f) + close() + moveTo(8.21f, 4.0f) + curveToRelative(0.46f, 0.0f, 0.9f, 0.14f, 1.28f, 0.4f) + lineToRelative(0.16f, 0.12f) + lineToRelative(2.1f, 1.75f) + lineToRelative(-3.06f, 2.56f) + lineToRelative(-0.09f, 0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.29f, 0.1f) + lineToRelative(-0.1f, 0.01f) + horizontalLineTo(2.0f) + verticalLineTo(6.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 4.0f) + horizontalLineToRelative(3.96f) + close() + } + } + return _folder!! + } + +private var _folder: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Heart.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Heart.kt new file mode 100644 index 00000000..9ea1ed37 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Heart.kt @@ -0,0 +1,31 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Heart: ImageVector + get() { + if (_heart != null) { + return _heart!! + } + _heart = fluentIcon(name = "Filled.Heart") { + fluentPath { + moveTo(12.82f, 5.58f) + lineTo(12.0f, 6.4f) + lineToRelative(-0.82f, -0.82f) + arcToRelative(5.37f, 5.37f, 0.0f, true, false, -7.6f, 7.6f) + lineToRelative(7.89f, 7.9f) + curveToRelative(0.3f, 0.29f, 0.77f, 0.29f, 1.06f, 0.0f) + lineToRelative(7.9f, -7.9f) + arcToRelative(5.38f, 5.38f, 0.0f, true, false, -7.61f, -7.6f) + close() + } + } + return _heart!! + } + +private var _heart: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/History.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/History.kt new file mode 100644 index 00000000..15d2f223 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/History.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.History: ImageVector + get() { + if (_history != null) { + return _history!! + } + _history = fluentIcon(name = "Filled.History") { + fluentPath { + moveTo(19.25f, 12.0f) + arcTo(7.25f, 7.25f, 0.0f, false, false, 7.58f, 6.25f) + horizontalLineToRelative(0.67f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineTo(7.0f) + horizontalLineToRelative(-0.03f) + lineToRelative(0.03f, -0.05f) + verticalLineToRelative(-2.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + verticalLineToRelative(0.5f) + arcToRelative(9.25f, 9.25f, 0.0f, true, true, -3.43f, 6.12f) + curveToRelative(0.06f, -0.51f, 0.51f, -0.87f, 1.03f, -0.87f) + curveToRelative(0.6f, 0.0f, 1.02f, 0.57f, 0.95f, 1.16f) + arcToRelative(7.25f, 7.25f, 0.0f, true, false, 14.45f, 0.84f) + close() + moveTo(13.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-2.0f) + verticalLineTo(8.0f) + close() + } + } + return _history!! + } + +private var _history: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Home.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Home.kt new file mode 100644 index 00000000..f7a25323 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Home.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Home: ImageVector + get() { + if (_home != null) { + return _home!! + } + _home = fluentIcon(name = "Filled.Home") { + fluentPath { + moveTo(13.45f, 2.53f) + curveToRelative(-0.84f, -0.7f, -2.06f, -0.7f, -2.9f, 0.0f) + lineTo(3.8f, 8.23f) + curveToRelative(-0.5f, 0.43f, -0.8f, 1.05f, -0.8f, 1.72f) + verticalLineToRelative(9.3f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(3.0f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.68f, 0.54f, -1.23f, 1.22f, -1.25f) + horizontalLineToRelative(2.56f) + curveToRelative(0.68f, 0.02f, 1.22f, 0.57f, 1.22f, 1.25f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(3.0f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-9.3f) + curveToRelative(0.0f, -0.67f, -0.3f, -1.3f, -0.8f, -1.72f) + lineToRelative(-6.75f, -5.7f) + close() + } + } + return _home!! + } + +private var _home: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Image.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Image.kt new file mode 100644 index 00000000..2bd63d49 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Image.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Image: ImageVector + get() { + if (_image != null) { + return _image!! + } + _image = fluentIcon(name = "Filled.Image") { + fluentPath { + moveToRelative(11.56f, 13.65f) + lineToRelative(-0.09f, 0.07f) + lineToRelative(-6.92f, 6.8f) + curveToRelative(0.5f, 0.3f, 1.08f, 0.48f, 1.7f, 0.48f) + horizontalLineToRelative(11.5f) + curveToRelative(0.62f, 0.0f, 1.2f, -0.18f, 1.7f, -0.48f) + lineToRelative(-6.92f, -6.8f) + lineToRelative(-0.1f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.87f, 0.0f) + close() + moveTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.63f, 0.18f, 1.21f, 0.49f, 1.7f) + lineToRelative(6.93f, -6.8f) + lineToRelative(0.14f, -0.13f) + curveToRelative(0.83f, -0.7f, 2.05f, -0.7f, 2.89f, 0.01f) + lineToRelative(0.13f, 0.12f) + lineToRelative(6.93f, 6.8f) + curveToRelative(0.31f, -0.49f, 0.49f, -1.07f, 0.49f, -1.7f) + lineTo(21.0f, 6.25f) + close() + moveTo(15.25f, 10.75f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, 4.0f) + close() + } + } + return _image!! + } + +private var _image: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Important.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Important.kt new file mode 100644 index 00000000..b8d4bbeb --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Important.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Important: ImageVector + get() { + if (_important != null) { + return _important!! + } + _important = fluentIcon(name = "Filled.Important") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(3.88f, 3.88f, 0.0f, false, false, -3.88f, 3.88f) + curveToRelative(0.0f, 2.92f, 1.21f, 6.55f, 1.82f, 8.2f) + arcTo(2.19f, 2.19f, 0.0f, false, false, 12.0f, 15.5f) + curveToRelative(0.9f, 0.0f, 1.74f, -0.54f, 2.06f, -1.42f) + curveToRelative(0.61f, -1.64f, 1.82f, -5.25f, 1.82f, -8.2f) + arcTo(3.88f, 3.88f, 0.0f, false, false, 12.0f, 2.0f) + close() + moveTo(12.0f, 17.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, -5.0f) + close() + } + } + return _important!! + } + +private var _important: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Info.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Info.kt new file mode 100644 index 00000000..6ec07261 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Info.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Info: ImageVector + get() { + if (_info != null) { + return _info!! + } + _info = fluentIcon(name = "Filled.Info") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(12.0f, 10.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 0.88f) + verticalLineToRelative(5.74f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + verticalLineToRelative(-5.62f) + lineToRelative(-0.01f, -0.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -0.88f) + close() + moveTo(12.0f, 6.5f) + arcTo(1.25f, 1.25f, 0.0f, true, false, 12.0f, 9.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + } + } + return _info!! + } + +private var _info: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Key.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Key.kt new file mode 100644 index 00000000..52eaca20 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Key.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Key: ImageVector + get() { + if (_key != null) { + return _key!! + } + _key = fluentIcon(name = "Filled.Key") { + fluentPath { + moveTo(8.95f, 8.6f) + arcToRelative(6.55f, 6.55f, 0.0f, false, true, 6.55f, -6.55f) + curveToRelative(3.6f, 0.0f, 6.55f, 2.82f, 6.55f, 6.45f) + arcToRelative(6.55f, 6.55f, 0.0f, false, true, -8.1f, 6.35f) + curveToRelative(-0.03f, 0.67f, -0.58f, 1.2f, -1.25f, 1.2f) + horizontalLineToRelative(-1.75f) + verticalLineToRelative(1.75f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + lineTo(7.95f, 19.05f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(3.7f, 22.05f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-2.17f) + curveToRelative(0.0f, -0.73f, 0.29f, -1.43f, 0.8f, -1.95f) + lineTo(9.0f, 9.95f) + arcToRelative(0.27f, 0.27f, 0.0f, false, false, 0.07f, -0.25f) + arcToRelative(6.39f, 6.39f, 0.0f, false, true, -0.11f, -1.1f) + close() + moveTo(18.25f, 7.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) + close() + } + } + return _key!! + } + +private var _key: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Link.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Link.kt new file mode 100644 index 00000000..53c80ce4 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Link.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Link: ImageVector + get() { + if (_link != null) { + return _link!! + } + _link = fluentIcon(name = "Filled.Link") { + fluentPath { + moveTo(9.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(7.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -0.18f, 6.0f) + lineTo(9.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(7.0f, 17.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, -0.22f, -10.0f) + lineTo(9.0f, 7.0f) + close() + moveTo(17.0f, 7.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.22f, 10.0f) + lineTo(15.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(17.0f, 15.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.18f, -6.0f) + lineTo(15.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(17.0f, 7.0f) + close() + moveTo(7.0f, 11.0f) + horizontalLineToRelative(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(7.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(17.0f, 11.0f) + lineTo(7.0f, 11.0f) + close() + } + } + return _link!! + } + +private var _link: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Mail.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Mail.kt new file mode 100644 index 00000000..b64b9283 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Mail.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Mail: ImageVector + get() { + if (_mail != null) { + return _mail!! + } + _mail = fluentIcon(name = "Filled.Mail") { + fluentPath { + moveTo(22.0f, 8.6f) + verticalLineToRelative(8.15f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + horizontalLineTo(5.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 16.75f) + verticalLineTo(8.61f) + lineToRelative(9.65f, 5.05f) + curveToRelative(0.22f, 0.12f, 0.48f, 0.12f, 0.7f, 0.0f) + lineTo(22.0f, 8.61f) + close() + moveTo(5.25f, 4.0f) + horizontalLineToRelative(13.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.23f, 2.92f) + lineTo(12.0f, 12.15f) + lineTo(2.02f, 6.92f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.04f, -2.91f) + lineTo(5.25f, 4.0f) + horizontalLineToRelative(13.5f) + horizontalLineToRelative(-13.5f) + close() + } + } + return _mail!! + } + +private var _mail: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Maximize.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Maximize.kt new file mode 100644 index 00000000..adb57faf --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Maximize.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Maximize: ImageVector + get() { + if (_maximize != null) { + return _maximize!! + } + _maximize = fluentIcon(name = "Filled.Maximize") { + fluentPath { + moveTo(6.0f, 3.0f) + horizontalLineToRelative(12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + lineTo(6.0f, 21.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(3.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + close() + moveTo(6.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + lineTo(19.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(6.0f, 5.0f) + close() + } + } + return _maximize!! + } + +private var _maximize: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/MoreHorizontal.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/MoreHorizontal.kt new file mode 100644 index 00000000..d26da96c --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/MoreHorizontal.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MoreHorizontal: ImageVector + get() { + if (_moreHorizontal != null) { + return _moreHorizontal!! + } + _moreHorizontal = fluentIcon(name = "Filled.MoreHorizontal") { + fluentPath { + moveTo(8.0f, 12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(14.0f, 12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(18.0f, 14.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) + close() + } + } + return _moreHorizontal!! + } + +private var _moreHorizontal: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/MoreVertical.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/MoreVertical.kt new file mode 100644 index 00000000..65233352 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/MoreVertical.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MoreVertical: ImageVector + get() { + if (_moreVertical != null) { + return _moreVertical!! + } + _moreVertical = fluentIcon(name = "Filled.MoreVertical") { + fluentPath { + moveTo(12.0f, 8.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, 4.0f) + close() + moveTo(12.0f, 14.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, 4.0f) + close() + moveTo(10.0f, 18.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -4.0f, 0.0f) + close() + } + } + return _moreVertical!! + } + +private var _moreVertical: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Navigation.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Navigation.kt new file mode 100644 index 00000000..21777a9c --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Navigation.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Navigation: ImageVector + get() { + if (_navigation != null) { + return _navigation!! + } + _navigation = fluentIcon(name = "Filled.Navigation") { + fluentPath { + moveTo(3.0f, 17.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(3.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(21.0f, 17.0f) + lineTo(3.0f, 17.0f) + close() + moveTo(3.0f, 11.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(3.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(21.0f, 11.0f) + lineTo(3.0f, 11.0f) + close() + moveTo(3.0f, 5.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(3.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(21.0f, 5.0f) + lineTo(3.0f, 5.0f) + close() + } + } + return _navigation!! + } + +private var _navigation: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Open.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Open.kt new file mode 100644 index 00000000..2636dfa1 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Open.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Open: ImageVector + get() { + if (_open != null) { + return _open!! + } + _open = fluentIcon(name = "Filled.Open") { + fluentPath { + moveTo(6.25f, 4.75f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(11.5f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(4.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.5f, 3.5f) + lineTo(6.25f, 21.25f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.5f, -3.5f) + lineTo(2.75f, 6.25f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 3.5f, -3.5f) + horizontalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(12.75f, 3.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(19.25f, 6.16f) + lineToRelative(-4.8f, 4.8f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.4f, -1.42f) + lineToRelative(4.79f, -4.79f) + horizontalLineToRelative(-4.09f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + } + } + return _open!! + } + +private var _open: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Options.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Options.kt new file mode 100644 index 00000000..d1a9c312 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Options.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Options: ImageVector + get() { + if (_options != null) { + return _options!! + } + _options = fluentIcon(name = "Filled.Options") { + fluentPath { + moveTo(8.75f, 13.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.16f, 2.5f) + horizontalLineToRelative(9.34f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-9.44f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.32f, 0.0f) + lineTo(2.75f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(2.94f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.16f, -2.5f) + close() + moveTo(15.25f, 4.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.16f, 2.5f) + horizontalLineToRelative(2.84f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-2.94f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.32f, 0.0f) + lineTo(2.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(9.44f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 15.25f, 4.0f) + close() + } + } + return _options!! + } + +private var _options: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Pause.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Pause.kt new file mode 100644 index 00000000..528c3ca0 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Pause.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Pause: ImageVector + get() { + if (_pause != null) { + return _pause!! + } + _pause = fluentIcon(name = "Filled.Pause") { + fluentPath { + moveTo(5.75f, 3.0f) + curveTo(4.78f, 3.0f, 4.0f, 3.78f, 4.0f, 4.75f) + verticalLineToRelative(14.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(3.5f) + curveToRelative(0.96f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(11.0f, 4.75f) + curveTo(11.0f, 3.78f, 10.2f, 3.0f, 9.25f, 3.0f) + horizontalLineToRelative(-3.5f) + close() + moveTo(14.75f, 3.0f) + curveTo(13.78f, 3.0f, 13.0f, 3.78f, 13.0f, 4.75f) + verticalLineToRelative(14.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(3.5f) + curveToRelative(0.96f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(20.0f, 4.75f) + curveTo(20.0f, 3.78f, 19.2f, 3.0f, 18.25f, 3.0f) + horizontalLineToRelative(-3.5f) + close() + } + } + return _pause!! + } + +private var _pause: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Person.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Person.kt new file mode 100644 index 00000000..994ed6d1 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Person.kt @@ -0,0 +1,37 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Person: ImageVector + get() { + if (_person != null) { + return _person!! + } + _person = fluentIcon(name = "Filled.Person") { + fluentPath { + moveTo(17.75f, 14.0f) + curveTo(19.0f, 14.0f, 20.0f, 15.0f, 20.0f, 16.25f) + verticalLineToRelative(0.92f) + curveToRelative(0.0f, 0.57f, -0.18f, 1.13f, -0.5f, 1.6f) + curveTo(17.93f, 20.93f, 15.41f, 22.0f, 12.0f, 22.0f) + reflectiveCurveToRelative(-5.94f, -1.07f, -7.49f, -3.24f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.5f, -1.6f) + verticalLineToRelative(-0.91f) + curveTo(4.0f, 15.0f, 5.0f, 14.0f, 6.24f, 14.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + } + } + return _person!! + } + +private var _person: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Pin.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Pin.kt new file mode 100644 index 00000000..bcf5cd9e --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Pin.kt @@ -0,0 +1,41 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Pin: ImageVector + get() { + if (_pin != null) { + return _pin!! + } + _pin = fluentIcon(name = "Filled.Pin") { + fluentPath { + moveToRelative(21.07f, 7.76f) + lineToRelative(-4.83f, -4.83f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -4.4f, 0.72f) + lineTo(9.4f, 8.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.42f, 0.37f) + lineTo(4.8f, 10.33f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -0.48f, 2.07f) + lineToRelative(3.1f, 3.1f) + lineTo(3.0f, 19.94f) + verticalLineTo(21.0f) + horizontalLineToRelative(1.06f) + lineToRelative(4.44f, -4.44f) + lineToRelative(3.1f, 3.1f) + curveToRelative(0.66f, 0.66f, 1.77f, 0.4f, 2.07f, -0.47f) + lineToRelative(1.44f, -4.17f) + curveToRelative(0.06f, -0.18f, 0.2f, -0.33f, 0.37f, -0.42f) + lineToRelative(4.87f, -2.44f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 0.72f, -4.4f) + close() + } + } + return _pin!! + } + +private var _pin: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Play.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Play.kt new file mode 100644 index 00000000..625f8207 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Play.kt @@ -0,0 +1,30 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Play: ImageVector + get() { + if (_play != null) { + return _play!! + } + _play = fluentIcon(name = "Filled.Play") { + fluentPath { + moveTo(5.0f, 5.27f) + curveToRelative(0.0f, -1.7f, 1.83f, -2.79f, 3.33f, -1.97f) + lineToRelative(12.36f, 6.72f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, 3.96f) + lineTo(8.33f, 20.7f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 5.0f, 18.73f) + verticalLineTo(5.27f) + close() + } + } + return _play!! + } + +private var _play: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReOrder.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReOrder.kt new file mode 100644 index 00000000..6ed62b3e --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReOrder.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ReOrder: ImageVector + get() { + if (_reOrder != null) { + return _reOrder!! + } + _reOrder = fluentIcon(name = "Filled.ReOrder") { + fluentPath { + moveTo(3.0f, 13.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(3.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(21.0f, 13.0f) + lineTo(3.0f, 13.0f) + close() + moveTo(3.0f, 9.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(3.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(21.0f, 9.0f) + lineTo(3.0f, 9.0f) + close() + } + } + return _reOrder!! + } + +private var _reOrder: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Rename.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Rename.kt new file mode 100644 index 00000000..3a12b84a --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Rename.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Rename: ImageVector + get() { + if (_rename != null) { + return _rename!! + } + _rename = fluentIcon(name = "Filled.Rename") { + fluentPath { + moveTo(9.75f, 2.0f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(12.5f, 3.5f) + verticalLineToRelative(17.0f) + horizontalLineToRelative(1.25f) + curveToRelative(0.37f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.64f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(11.0f, 20.5f) + verticalLineToRelative(-17.0f) + lineTo(9.75f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineTo(9.0f, 2.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + close() + moveTo(18.25f, 5.0f) + curveToRelative(1.79f, 0.0f, 3.24f, 1.45f, 3.25f, 3.25f) + verticalLineToRelative(7.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 18.44f, 19.0f) + lineTo(13.5f, 19.0f) + lineTo(13.5f, 5.0f) + horizontalLineToRelative(4.74f) + close() + moveTo(10.0f, 5.0f) + verticalLineToRelative(14.0f) + lineTo(5.24f, 19.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 15.75f) + verticalLineToRelative(-7.5f) + curveTo(2.0f, 6.45f, 3.46f, 5.0f, 5.25f, 5.0f) + lineTo(10.0f, 5.0f) + close() + } + } + return _rename!! + } + +private var _rename: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Save.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Save.kt new file mode 100644 index 00000000..fbab248e --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Save.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Save: ImageVector + get() { + if (_save != null) { + return _save!! + } + _save = fluentIcon(name = "Filled.Save") { + fluentPath { + moveTo(6.75f, 3.0f) + horizontalLineToRelative(-1.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) + lineTo(6.0f, 21.0f) + verticalLineToRelative(-6.0f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(7.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(6.0f) + horizontalLineToRelative(0.25f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) + lineTo(21.0f, 8.29f) + curveToRelative(0.0f, -0.87f, -0.34f, -1.7f, -0.95f, -2.3f) + lineTo(18.0f, 3.95f) + curveToRelative(-0.6f, -0.6f, -1.41f, -0.94f, -2.26f, -0.95f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(9.0f, 9.75f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + lineTo(6.75f, 3.0f) + close() + moveTo(14.25f, 3.0f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(9.0f, 8.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(8.25f, 3.0f) + horizontalLineToRelative(6.0f) + close() + moveTo(16.5f, 21.0f) + verticalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.0f) + horizontalLineToRelative(9.0f) + close() + } + } + return _save!! + } + +private var _save: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Search.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Search.kt new file mode 100644 index 00000000..99cdb711 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Search.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Search: ImageVector + get() { + if (_search != null) { + return _search!! + } + _search = fluentIcon(name = "Filled.Search") { + fluentPath { + moveTo(10.0f, 2.5f) + arcToRelative(7.5f, 7.5f, 0.0f, false, true, 5.96f, 12.05f) + lineToRelative(4.75f, 4.74f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 1.5f) + lineToRelative(-0.1f, -0.08f) + lineToRelative(-4.74f, -4.75f) + arcTo(7.5f, 7.5f, 0.0f, true, true, 10.0f, 2.5f) + close() + moveTo(10.0f, 4.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, -11.0f) + close() + } + } + return _search!! + } + +private var _search: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Send.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Send.kt new file mode 100644 index 00000000..754bb6f4 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Send.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Send: ImageVector + get() { + if (_send != null) { + return _send!! + } + _send = fluentIcon(name = "Filled.Send") { + fluentPath { + moveToRelative(12.81f, 12.2f) + lineToRelative(-7.53f, 1.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.38f, 0.32f) + lineToRelative(-2.6f, 6.96f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.03f, 0.94f) + lineToRelative(18.0f, -9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.34f) + lineToRelative(-18.0f, -9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.03f, 0.94f) + lineToRelative(2.6f, 6.96f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.38f, 0.32f) + lineToRelative(7.53f, 1.25f) + arcToRelative(0.2f, 0.2f, 0.0f, false, true, 0.0f, 0.4f) + close() + } + } + return _send!! + } + +private var _send: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Settings.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Settings.kt new file mode 100644 index 00000000..52d4e5a1 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Settings.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Settings: ImageVector + get() { + if (_settings != null) { + return _settings!! + } + _settings = fluentIcon(name = "Filled.Settings") { + fluentPath { + moveTo(12.01f, 2.25f) + curveToRelative(0.74f, 0.0f, 1.47f, 0.1f, 2.18f, 0.25f) + curveToRelative(0.32f, 0.07f, 0.55f, 0.33f, 0.59f, 0.65f) + lineToRelative(0.17f, 1.53f) + arcToRelative(1.38f, 1.38f, 0.0f, false, false, 1.92f, 1.11f) + lineToRelative(1.4f, -0.61f) + curveToRelative(0.3f, -0.13f, 0.64f, -0.06f, 0.85f, 0.17f) + arcToRelative(9.8f, 9.8f, 0.0f, false, true, 2.2f, 3.8f) + curveToRelative(0.1f, 0.3f, 0.0f, 0.63f, -0.26f, 0.82f) + lineToRelative(-1.25f, 0.92f) + arcToRelative(1.38f, 1.38f, 0.0f, false, false, 0.0f, 2.22f) + lineToRelative(1.25f, 0.92f) + curveToRelative(0.26f, 0.19f, 0.36f, 0.52f, 0.27f, 0.82f) + arcToRelative(9.8f, 9.8f, 0.0f, false, true, -2.2f, 3.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.85f, 0.17f) + lineToRelative(-1.4f, -0.62f) + arcToRelative(1.38f, 1.38f, 0.0f, false, false, -1.93f, 1.12f) + lineToRelative(-0.17f, 1.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.58f, 0.65f) + arcToRelative(9.52f, 9.52f, 0.0f, false, true, -4.4f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.57f, -0.65f) + lineToRelative(-0.17f, -1.52f) + arcToRelative(1.38f, 1.38f, 0.0f, false, false, -1.93f, -1.11f) + lineToRelative(-1.4f, 0.62f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.85f, -0.18f) + arcToRelative(9.8f, 9.8f, 0.0f, false, true, -2.2f, -3.8f) + curveToRelative(-0.1f, -0.3f, 0.0f, -0.63f, 0.26f, -0.82f) + lineToRelative(1.25f, -0.92f) + arcToRelative(1.38f, 1.38f, 0.0f, false, false, 0.0f, -2.22f) + lineToRelative(-1.24f, -0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.28f, -0.82f) + arcToRelative(9.8f, 9.8f, 0.0f, false, true, 2.2f, -3.8f) + curveToRelative(0.23f, -0.23f, 0.57f, -0.3f, 0.86f, -0.17f) + lineToRelative(1.4f, 0.62f) + curveToRelative(0.4f, 0.17f, 0.86f, 0.15f, 1.25f, -0.08f) + curveToRelative(0.38f, -0.22f, 0.63f, -0.6f, 0.68f, -1.04f) + lineToRelative(0.17f, -1.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.58f, -0.65f) + curveToRelative(0.72f, -0.16f, 1.45f, -0.24f, 2.2f, -0.25f) + close() + moveTo(12.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + } + } + return _settings!! + } + +private var _settings: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Share.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Share.kt new file mode 100644 index 00000000..3bc4ffd5 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Share.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Share: ImageVector + get() { + if (_share != null) { + return _share!! + } + _share = fluentIcon(name = "Filled.Share") { + fluentPath { + moveTo(6.75f, 4.0f) + horizontalLineToRelative(3.46f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 5.5f) + curveToRelative(-1.2f, 0.0f, -2.17f, 0.92f, -2.25f, 2.1f) + verticalLineToRelative(9.65f) + curveToRelative(0.0f, 1.19f, 0.92f, 2.17f, 2.1f, 2.24f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(9.5f) + curveToRelative(1.19f, 0.0f, 2.16f, -0.93f, 2.24f, -2.1f) + verticalLineToRelative(-0.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.6f) + curveToRelative(0.0f, 2.0f, -1.56f, 3.64f, -3.54f, 3.74f) + lineToRelative(-0.2f, 0.01f) + horizontalLineToRelative(-9.5f) + curveToRelative(-2.0f, 0.0f, -3.64f, -1.57f, -3.75f, -3.55f) + verticalLineToRelative(-9.7f) + curveToRelative(0.0f, -2.0f, 1.57f, -3.64f, 3.55f, -3.75f) + horizontalLineToRelative(3.66f) + horizontalLineToRelative(-3.46f) + close() + moveTo(14.5f, 6.54f) + lineTo(14.5f, 3.75f) + curveToRelative(0.0f, -0.62f, 0.7f, -0.96f, 1.19f, -0.61f) + lineToRelative(0.08f, 0.07f) + lineToRelative(6.0f, 5.75f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.7f, 0.07f, 1.0f) + lineToRelative(-0.08f, 0.08f) + lineToRelative(-5.99f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.26f, -0.43f) + verticalLineToRelative(-2.91f) + horizontalLineToRelative(-0.33f) + curveToRelative(-2.66f, -0.01f, -4.93f, 1.08f, -6.86f, 3.3f) + curveToRelative(-0.5f, 0.56f, -1.43f, 0.13f, -1.31f, -0.62f) + curveToRelative(0.83f, -5.14f, 3.6f, -8.04f, 8.19f, -8.56f) + lineToRelative(0.3f, -0.03f) + lineTo(14.5f, 3.75f) + verticalLineToRelative(2.8f) + close() + } + } + return _share!! + } + +private var _share: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Star.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Star.kt new file mode 100644 index 00000000..5dc2444e --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Star.kt @@ -0,0 +1,39 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Star: ImageVector + get() { + if (_star != null) { + return _star!! + } + _star = fluentIcon(name = "Filled.Star") { + fluentPath { + moveTo(10.79f, 3.1f) + curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) + lineToRelative(2.36f, 4.78f) + lineToRelative(5.27f, 0.77f) + curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) + lineToRelative(-3.82f, 3.72f) + lineToRelative(0.9f, 5.25f) + arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, 1.42f) + lineTo(12.0f, 18.86f) + lineToRelative(-4.72f, 2.48f) + arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) + lineToRelative(0.9f, -5.25f) + lineToRelative(-3.81f, -3.72f) + curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) + lineToRelative(5.27f, -0.77f) + lineToRelative(2.36f, -4.78f) + close() + } + } + return _star!! + } + +private var _star: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Subtract.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Subtract.kt new file mode 100644 index 00000000..83def7d5 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Subtract.kt @@ -0,0 +1,28 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Subtract: ImageVector + get() { + if (_subtract != null) { + return _subtract!! + } + _subtract = fluentIcon(name = "Filled.Subtract") { + fluentPath { + moveTo(4.0f, 13.0f) + horizontalLineToRelative(16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineTo(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + close() + } + } + return _subtract!! + } + +private var _subtract: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Tag.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Tag.kt new file mode 100644 index 00000000..6a7a56fc --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Tag.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Tag: ImageVector + get() { + if (_tag != null) { + return _tag!! + } + _tag = fluentIcon(name = "Filled.Tag") { + fluentPath { + moveTo(19.75f, 2.0f) + curveTo(20.99f, 2.0f, 22.0f, 3.0f, 22.0f, 4.25f) + verticalLineToRelative(5.46f) + curveToRelative(0.0f, 0.86f, -0.34f, 1.69f, -0.95f, 2.3f) + lineToRelative(-8.5f, 8.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -4.6f, 0.0f) + lineTo(3.5f, 16.06f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.6f) + lineToRelative(8.5f, -8.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.3f, -0.96f) + horizontalLineToRelative(5.46f) + close() + moveTo(17.0f, 5.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + } + } + return _tag!! + } + +private var _tag: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Warning.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Warning.kt new file mode 100644 index 00000000..bdacbc91 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Warning.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Warning: ImageVector + get() { + if (_warning != null) { + return _warning!! + } + _warning = fluentIcon(name = "Filled.Warning") { + fluentPath { + moveTo(10.03f, 3.66f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.94f, 0.0f) + lineToRelative(7.74f, 14.0f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 19.74f, 21.0f) + lineTo(4.25f, 21.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -1.97f, -3.34f) + lineToRelative(7.75f, -14.0f) + close() + moveTo(13.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(12.74f, 9.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + verticalLineToRelative(4.5f) + lineToRelative(0.02f, 0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.49f, -0.1f) + verticalLineToRelative(-4.5f) + lineToRelative(-0.01f, -0.1f) + close() + } + } + return _warning!! + } + +private var _warning: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Wrench.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Wrench.kt new file mode 100644 index 00000000..83f5bf03 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/filled/Wrench.kt @@ -0,0 +1,35 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Wrench: ImageVector + get() { + if (_wrench != null) { + return _wrench!! + } + _wrench = fluentIcon(name = "Filled.Wrench") { + fluentPath { + moveTo(16.75f, 2.0f) + arcToRelative(5.25f, 5.25f, 0.0f, false, false, -5.0f, 6.84f) + lineToRelative(-9.07f, 9.38f) + arcToRelative(2.34f, 2.34f, 0.0f, true, false, 3.37f, 3.26f) + lineTo(15.0f, 12.2f) + arcTo(5.24f, 5.24f, 0.0f, false, false, 21.8f, 5.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.25f, -0.32f) + lineToRelative(-3.19f, 3.18f) + lineTo(15.3f, 6.6f) + lineToRelative(3.16f, -3.16f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.33f, -1.26f) + curveToRelative(-0.44f, -0.12f, -0.9f, -0.18f, -1.38f, -0.18f) + close() + } + } + return _wrench!! + } + +private var _wrench: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Add.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Add.kt new file mode 100644 index 00000000..dd54d8d8 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Add.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Add: ImageVector + get() { + if (_add != null) { + return _add!! + } + _add = fluentIcon(name = "Regular.Add") { + fluentPath { + moveTo(11.75f, 3.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineTo(11.0f) + horizontalLineToRelative(7.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineTo(12.5f) + verticalLineToRelative(7.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, 0.1f) + verticalLineTo(12.5f) + horizontalLineTo(3.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineTo(11.0f) + verticalLineTo(3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _add!! + } + +private var _add: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Alert.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Alert.kt new file mode 100644 index 00000000..1a3ce09f --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Alert.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Alert: ImageVector + get() { + if (_alert != null) { + return _alert!! + } + _alert = fluentIcon(name = "Regular.Alert") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(7.5f, 7.5f, 0.0f, false, true, 7.5f, 7.25f) + verticalLineToRelative(4.35f) + lineToRelative(1.38f, 3.15f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.15f, 1.75f) + lineTo(15.0f, 18.5f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.18f) + verticalLineToRelative(-0.18f) + lineTo(4.27f, 18.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.14f, -1.75f) + lineTo(4.5f, 13.6f) + lineTo(4.5f, 9.5f) + curveTo(4.5f, 5.35f, 7.85f, 2.0f, 12.0f, 2.0f) + close() + moveTo(13.5f, 18.5f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.15f) + verticalLineToRelative(-0.15f) + close() + moveTo(12.0f, 3.5f) + curveToRelative(-3.32f, 0.0f, -6.0f, 2.67f, -6.0f, 6.0f) + verticalLineToRelative(4.4f) + lineTo(4.66f, 17.0f) + horizontalLineToRelative(14.7f) + lineTo(18.0f, 13.9f) + lineTo(18.0f, 9.29f) + arcToRelative(5.99f, 5.99f, 0.0f, false, false, -6.0f, -5.78f) + close() + } + } + return _alert!! + } + +private var _alert: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowDown.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowDown.kt new file mode 100644 index 00000000..9dbff9a0 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowDown.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowDown: ImageVector + get() { + if (_arrowDown != null) { + return _arrowDown!! + } + _arrowDown = fluentIcon(name = "Regular.ArrowDown") { + fluentPath { + moveTo(19.8f, 13.27f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.1f, -1.04f) + lineToRelative(-5.95f, 6.25f) + verticalLineTo(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) + verticalLineToRelative(14.73f) + lineTo(5.3f, 12.23f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.1f, 1.04f) + lineToRelative(7.08f, 7.42f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.44f, 0.0f) + lineToRelative(7.07f, -7.42f) + close() + } + } + return _arrowDown!! + } + +private var _arrowDown: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowDownLeft.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowDownLeft.kt new file mode 100644 index 00000000..3f73e6cd --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowDownLeft.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowDownLeft: ImageVector + get() { + if (_arrowDownLeft != null) { + return _arrowDownLeft!! + } + _arrowDownLeft = fluentIcon(name = "Regular.ArrowDownLeft") { + fluentPath { + moveTo(13.25f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineTo(5.58f) + lineToRelative(15.2f, -15.2f) + arcToRelative(0.76f, 0.76f, 0.0f, false, false, -1.08f, -1.08f) + lineTo(4.5f, 18.42f) + verticalLineToRelative(-7.67f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.42f, 0.33f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(9.5f) + close() + } + } + return _arrowDownLeft!! + } + +private var _arrowDownLeft: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowDownload.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowDownload.kt new file mode 100644 index 00000000..e9267fe5 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowDownload.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowDownload: ImageVector + get() { + if (_arrowDownload != null) { + return _arrowDownload!! + } + _arrowDownload = fluentIcon(name = "Regular.ArrowDownload") { + fluentPath { + moveTo(18.25f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + horizontalLineToRelative(-13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(13.0f) + close() + moveTo(11.65f, 2.01f) + horizontalLineToRelative(0.1f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.64f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(13.7f) + lineToRelative(3.72f, -3.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 0.07f) + lineToRelative(-0.09f, -0.07f) + lineToRelative(-5.0f, -5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) + lineToRelative(0.08f, 0.07f) + lineTo(11.0f, 16.43f) + lineTo(11.0f, 2.76f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.75f) + horizontalLineToRelative(0.1f) + horizontalLineToRelative(-0.1f) + close() + } + } + return _arrowDownload!! + } + +private var _arrowDownload: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowExpand.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowExpand.kt new file mode 100644 index 00000000..434bfd83 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowExpand.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowExpand: ImageVector + get() { + if (_arrowExpand != null) { + return _arrowExpand!! + } + _arrowExpand = fluentIcon(name = "Regular.ArrowExpand") { + fluentPath { + moveTo(7.6f, 15.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) + lineToRelative(-3.1f, 3.1f) + horizontalLineToRelative(2.19f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.64f) + lineToRelative(0.01f, 0.1f) + curveToRelative(0.0f, 0.42f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(2.2f) + lineToRelative(3.1f, -3.1f) + close() + moveTo(16.25f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.2f) + lineToRelative(-3.1f, -3.09f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(3.1f, 3.1f) + verticalLineToRelative(-2.2f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.69f, 0.64f, -0.74f) + horizontalLineToRelative(0.1f) + curveToRelative(0.42f, 0.0f, 0.75f, 0.33f, 0.75f, 0.74f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.42f, -0.33f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-4.0f) + close() + moveTo(7.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(5.56f, 4.5f) + lineToRelative(3.1f, 3.1f) + curveToRelative(0.26f, 0.26f, 0.29f, 0.68f, 0.07f, 0.97f) + lineToRelative(-0.07f, 0.09f) + curveToRelative(-0.3f, 0.29f, -0.77f, 0.29f, -1.07f, 0.0f) + lineTo(4.5f, 5.56f) + verticalLineToRelative(2.19f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 7.75f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.0f) + close() + moveTo(20.25f, 3.0f) + curveToRelative(0.42f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.2f) + lineToRelative(-3.09f, 3.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.08f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.07f) + lineToRelative(3.1f, -3.09f) + horizontalLineToRelative(-2.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.74f, -0.75f) + horizontalLineToRelative(4.0f) + close() + } + } + return _arrowExpand!! + } + +private var _arrowExpand: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowForward.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowForward.kt new file mode 100644 index 00000000..81364774 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowForward.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowForward: ImageVector + get() { + if (_arrowForward != null) { + return _arrowForward!! + } + _arrowForward = fluentIcon(name = "Regular.ArrowForward") { + fluentPath { + moveTo(14.72f, 16.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineToRelative(5.0f, -5.0f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-5.0f, -5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineTo(18.44f, 11.0f) + horizontalLineTo(10.6f) + curveToRelative(-1.6f, 0.0f, -2.81f, 0.24f, -3.89f, 0.76f) + lineToRelative(-0.24f, 0.13f) + arcToRelative(6.2f, 6.2f, 0.0f, false, false, -2.58f, 2.58f) + arcTo(8.4f, 8.4f, 0.0f, false, false, 3.0f, 18.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + curveToRelative(0.0f, -1.48f, 0.23f, -2.52f, 0.71f, -3.43f) + arcToRelative(4.7f, 4.7f, 0.0f, false, true, 1.96f, -1.96f) + arcToRelative(6.63f, 6.63f, 0.0f, false, true, 3.1f, -0.7f) + lineToRelative(0.33f, -0.01f) + horizontalLineToRelative(7.84f) + lineToRelative(-3.72f, 3.72f) + close() + } + } + return _arrowForward!! + } + +private var _arrowForward: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowLeft.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowLeft.kt new file mode 100644 index 00000000..d259a4b5 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowLeft.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowLeft: ImageVector + get() { + if (_arrowLeft != null) { + return _arrowLeft!! + } + _arrowLeft = fluentIcon(name = "Regular.ArrowLeft") { + fluentPath { + moveTo(10.73f, 19.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.04f, -1.1f) + lineToRelative(-6.25f, -5.95f) + horizontalLineToRelative(14.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(5.52f) + lineToRelative(6.25f, -5.95f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.04f, -1.1f) + lineToRelative(-7.42f, 7.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.44f) + lineToRelative(7.42f, 7.07f) + close() + } + } + return _arrowLeft!! + } + +private var _arrowLeft: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowRight.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowRight.kt new file mode 100644 index 00000000..1888abdb --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowRight.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowRight: ImageVector + get() { + if (_arrowRight != null) { + return _arrowRight!! + } + _arrowRight = fluentIcon(name = "Regular.ArrowRight") { + fluentPath { + moveTo(13.27f, 4.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.04f, 1.1f) + lineToRelative(6.25f, 5.95f) + horizontalLineTo(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(14.73f) + lineToRelative(-6.25f, 5.95f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.04f, 1.1f) + lineToRelative(7.42f, -7.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.44f) + lineTo(13.27f, 4.2f) + close() + } + } + return _arrowRight!! + } + +private var _arrowRight: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSync.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSync.kt new file mode 100644 index 00000000..22f6cf2f --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSync.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowSync: ImageVector + get() { + if (_arrowSync != null) { + return _arrowSync!! + } + _arrowSync = fluentIcon(name = "Regular.ArrowSync") { + fluentPath { + moveTo(16.25f, 5.18f) + curveToRelative(-0.25f, 0.33f, -0.19f, 0.8f, 0.14f, 1.05f) + arcToRelative(7.24f, 7.24f, 0.0f, false, true, -3.6f, 12.98f) + lineToRelative(0.68f, -0.68f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, -1.13f) + lineToRelative(-0.08f, 0.07f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.98f) + lineToRelative(0.07f, 0.08f) + lineToRelative(2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, -0.98f) + lineToRelative(-0.07f, -0.08f) + lineToRelative(-0.75f, -0.75f) + arcTo(8.75f, 8.75f, 0.0f, false, false, 17.3f, 5.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.05f, 0.14f) + close() + moveTo(10.53f, 1.47f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(0.75f, 0.75f) + arcToRelative(8.75f, 8.75f, 0.0f, false, false, -4.85f, 15.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.96f, -1.16f) + arcTo(7.23f, 7.23f, 0.0f, false, true, 11.2f, 4.8f) + lineToRelative(-0.68f, 0.68f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(2.0f, -2.0f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + close() + } + } + return _arrowSync!! + } + +private var _arrowSync: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowUp.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowUp.kt new file mode 100644 index 00000000..a9c51615 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowUp.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowUp: ImageVector + get() { + if (_arrowUp != null) { + return _arrowUp!! + } + _arrowUp = fluentIcon(name = "Regular.ArrowUp") { + fluentPath { + moveTo(4.2f, 10.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.1f, 1.04f) + lineToRelative(5.95f, -6.25f) + verticalLineToRelative(14.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineTo(5.52f) + lineToRelative(5.95f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.1f, -1.04f) + lineToRelative(-7.08f, -7.42f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.44f, 0.0f) + lineTo(4.2f, 10.73f) + close() + } + } + return _arrowUp!! + } + +private var _arrowUp: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowUpLeft.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowUpLeft.kt new file mode 100644 index 00000000..13f931ac --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowUpLeft.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowUpLeft: ImageVector + get() { + if (_arrowUpLeft != null) { + return _arrowUpLeft!! + } + _arrowUpLeft = fluentIcon(name = "Regular.ArrowUpLeft") { + fluentPath { + moveTo(13.25f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineTo(5.58f) + lineToRelative(15.2f, 15.2f) + arcToRelative(0.76f, 0.76f, 0.0f, false, true, -1.08f, 1.08f) + lineTo(4.5f, 5.58f) + verticalLineToRelative(7.67f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(9.5f) + close() + } + } + return _arrowUpLeft!! + } + +private var _arrowUpLeft: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowUpRight.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowUpRight.kt new file mode 100644 index 00000000..24d443af --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowUpRight.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowUpRight: ImageVector + get() { + if (_arrowUpRight != null) { + return _arrowUpRight!! + } + _arrowUpRight = fluentIcon(name = "Regular.ArrowUpRight") { + fluentPath { + moveTo(10.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.67f) + lineTo(3.22f, 19.7f) + arcToRelative(0.76f, 0.76f, 0.0f, true, false, 1.08f, 1.08f) + lineToRelative(15.2f, -15.2f) + verticalLineToRelative(7.67f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-9.5f) + close() + } + } + return _arrowUpRight!! + } + +private var _arrowUpRight: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Attach.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Attach.kt new file mode 100644 index 00000000..4e67d52d --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Attach.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Attach: ImageVector + get() { + if (_attach != null) { + return _attach!! + } + _attach = fluentIcon(name = "Regular.Attach") { + fluentPath { + moveTo(11.77f, 3.74f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 8.66f, 8.3f) + lineToRelative(-0.19f, 0.2f) + lineToRelative(-8.8f, 8.8f) + lineToRelative(-0.03f, 0.03f) + arcToRelative(3.72f, 3.72f, 0.0f, false, true, -5.4f, -5.1f) + lineToRelative(0.05f, -0.06f) + lineToRelative(0.08f, -0.09f) + lineToRelative(0.14f, -0.15f) + lineToRelative(7.44f, -7.45f) + curveToRelative(0.27f, -0.27f, 0.69f, -0.29f, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.08f, 0.98f) + lineToRelative(-0.08f, 0.08f) + lineToRelative(-7.59f, 7.61f) + arcToRelative(2.23f, 2.23f, 0.0f, false, false, 3.17f, 3.1f) + lineToRelative(8.84f, -8.82f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 13.0f, 4.64f) + lineToRelative(-0.17f, 0.16f) + lineToRelative(-0.01f, 0.02f) + lineToRelative(-9.54f, 9.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.97f) + lineToRelative(0.07f, -0.09f) + lineToRelative(9.55f, -9.55f) + close() + } + } + return _attach!! + } + +private var _attach: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Backspace.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Backspace.kt new file mode 100644 index 00000000..613ea37a --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Backspace.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Backspace: ImageVector + get() { + if (_backspace != null) { + return _backspace!! + } + _backspace = fluentIcon(name = "Regular.Backspace") { + fluentPath { + moveTo(18.75f, 4.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.24f, 3.07f) + lineToRelative(0.01f, 0.18f) + verticalLineToRelative(9.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + horizontalLineToRelative(-8.5f) + curveToRelative(-0.77f, 0.0f, -1.5f, -0.27f, -2.09f, -0.76f) + lineToRelative(-0.15f, -0.13f) + lineToRelative(-5.0f, -4.75f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -0.11f, -4.6f) + lineTo(3.0f, 9.64f) + lineToRelative(5.0f, -4.75f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.03f, -0.88f) + lineToRelative(0.2f, -0.01f) + horizontalLineToRelative(8.51f) + close() + moveTo(18.75f, 5.5f) + horizontalLineToRelative(-8.5f) + curveToRelative(-0.4f, 0.0f, -0.77f, 0.13f, -1.08f, 0.37f) + lineToRelative(-0.13f, 0.11f) + lineToRelative(-5.0f, 4.75f) + lineToRelative(-0.06f, 0.06f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -0.05f, 2.36f) + lineToRelative(0.12f, 0.12f) + lineToRelative(5.0f, 4.75f) + curveToRelative(0.28f, 0.27f, 0.64f, 0.43f, 1.03f, 0.47f) + lineToRelative(0.17f, 0.01f) + horizontalLineToRelative(8.5f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.92f, -0.7f, -1.67f, -1.6f, -1.74f) + lineToRelative(-0.15f, -0.01f) + close() + moveTo(11.45f, 8.4f) + lineTo(11.53f, 8.47f) + lineTo(14.0f, 10.94f) + lineToRelative(2.47f, -2.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineTo(15.06f, 12.0f) + lineToRelative(2.47f, 2.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) + lineToRelative(-0.08f, -0.07f) + lineTo(14.0f, 13.06f) + lineToRelative(-2.47f, 2.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineTo(12.94f, 12.0f) + lineToRelative(-2.47f, -2.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) + close() + } + } + return _backspace!! + } + +private var _backspace: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarLtr.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarLtr.kt new file mode 100644 index 00000000..c76e2460 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarLtr.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarLtr: ImageVector + get() { + if (_calendarLtr != null) { + return _calendarLtr!! + } + _calendarLtr = fluentIcon(name = "Regular.CalendarLtr") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(19.5f, 8.5f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(9.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 8.5f) + close() + moveTo(7.75f, 14.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(12.0f, 14.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(7.75f, 10.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(12.0f, 10.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(16.25f, 10.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 7.0f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + } + } + return _calendarLtr!! + } + +private var _calendarLtr: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/CaretDown.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/CaretDown.kt new file mode 100644 index 00000000..93f36b0f --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/CaretDown.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CaretDown: ImageVector + get() { + if (_caretDown != null) { + return _caretDown!! + } + _caretDown = fluentIcon(name = "Regular.CaretDown") { + fluentPath { + moveTo(5.16f, 10.07f) + curveTo(4.46f, 9.27f, 5.03f, 8.0f, 6.1f, 8.0f) + horizontalLineToRelative(11.8f) + curveToRelative(1.07f, 0.0f, 1.65f, 1.26f, 0.94f, 2.07f) + lineToRelative(-5.52f, 6.31f) + curveToRelative(-0.7f, 0.8f, -1.94f, 0.8f, -2.64f, 0.0f) + lineToRelative(-5.52f, -6.3f) + close() + moveTo(6.66f, 9.5f) + lineTo(11.81f, 15.4f) + curveToRelative(0.1f, 0.11f, 0.28f, 0.11f, 0.38f, 0.0f) + lineToRelative(5.16f, -5.9f) + lineTo(6.65f, 9.5f) + close() + } + } + return _caretDown!! + } + +private var _caretDown: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/CaretDownRight.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/CaretDownRight.kt new file mode 100644 index 00000000..e12edaad --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/CaretDownRight.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CaretDownRight: ImageVector + get() { + if (_caretDownRight != null) { + return _caretDownRight!! + } + _caretDownRight = fluentIcon(name = "Regular.CaretDownRight") { + fluentPath { + moveToRelative(16.5f, 7.81f) + lineToRelative(-8.69f, 8.7f) + horizontalLineToRelative(8.44f) + curveToRelative(0.14f, -0.01f, 0.25f, -0.12f, 0.25f, -0.26f) + lineTo(16.5f, 7.81f) + close() + moveTo(15.87f, 6.32f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.13f, 0.89f) + verticalLineToRelative(9.04f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(7.21f, 18.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.89f, -2.13f) + lineToRelative(9.55f, -9.55f) + close() + } + } + return _caretDownRight!! + } + +private var _caretDownRight: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/CaretLeft.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/CaretLeft.kt new file mode 100644 index 00000000..bef02573 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/CaretLeft.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CaretLeft: ImageVector + get() { + if (_caretLeft != null) { + return _caretLeft!! + } + _caretLeft = fluentIcon(name = "Regular.CaretLeft") { + fluentPath { + moveTo(12.93f, 18.84f) + curveToRelative(0.8f, 0.7f, 2.07f, 0.13f, 2.07f, -0.94f) + lineTo(15.0f, 6.1f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.07f, -0.94f) + lineToRelative(-6.31f, 5.52f) + curveToRelative(-0.8f, 0.7f, -0.8f, 1.94f, 0.0f, 2.64f) + lineToRelative(6.3f, 5.52f) + close() + moveTo(13.5f, 17.34f) + lineTo(7.6f, 12.2f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, 0.0f, -0.38f) + lineToRelative(5.9f, -5.16f) + verticalLineToRelative(10.7f) + close() + } + } + return _caretLeft!! + } + +private var _caretLeft: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/CaretRight.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/CaretRight.kt new file mode 100644 index 00000000..56e7e33e --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/CaretRight.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CaretRight: ImageVector + get() { + if (_caretRight != null) { + return _caretRight!! + } + _caretRight = fluentIcon(name = "Regular.CaretRight") { + fluentPath { + moveTo(11.07f, 18.84f) + curveToRelative(-0.8f, 0.7f, -2.07f, 0.13f, -2.07f, -0.94f) + lineTo(9.0f, 6.1f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.07f, -0.94f) + lineToRelative(6.31f, 5.52f) + curveToRelative(0.8f, 0.7f, 0.8f, 1.94f, 0.0f, 2.64f) + lineToRelative(-6.3f, 5.52f) + close() + moveTo(10.5f, 17.34f) + lineTo(16.4f, 12.19f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.0f, -0.38f) + lineToRelative(-5.9f, -5.16f) + verticalLineToRelative(10.7f) + close() + } + } + return _caretRight!! + } + +private var _caretRight: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/CaretUp.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/CaretUp.kt new file mode 100644 index 00000000..2d2310c1 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/CaretUp.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CaretUp: ImageVector + get() { + if (_caretUp != null) { + return _caretUp!! + } + _caretUp = fluentIcon(name = "Regular.CaretUp") { + fluentPath { + moveTo(5.16f, 14.9f) + curveToRelative(-0.7f, 0.82f, -0.13f, 2.08f, 0.94f, 2.08f) + horizontalLineToRelative(11.8f) + curveToRelative(1.07f, 0.0f, 1.65f, -1.26f, 0.94f, -2.07f) + lineTo(13.32f, 8.6f) + curveToRelative(-0.7f, -0.8f, -1.94f, -0.8f, -2.64f, 0.0f) + lineToRelative(-5.52f, 6.3f) + close() + moveTo(6.66f, 15.48f) + lineTo(11.81f, 9.58f) + curveToRelative(0.1f, -0.1f, 0.28f, -0.1f, 0.38f, 0.0f) + lineToRelative(5.16f, 5.9f) + lineTo(6.65f, 15.48f) + close() + } + } + return _caretUp!! + } + +private var _caretUp: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Checkmark.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Checkmark.kt new file mode 100644 index 00000000..77f8f387 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Checkmark.kt @@ -0,0 +1,31 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Checkmark: ImageVector + get() { + if (_checkmark != null) { + return _checkmark!! + } + _checkmark = fluentIcon(name = "Regular.Checkmark") { + fluentPath { + moveTo(4.53f, 12.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(4.5f, 4.5f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(11.0f, -11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineTo(8.5f, 16.94f) + lineToRelative(-3.97f, -3.97f) + close() + } + } + return _checkmark!! + } + +private var _checkmark: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChevronDown.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChevronDown.kt new file mode 100644 index 00000000..46b75bd4 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChevronDown.kt @@ -0,0 +1,32 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChevronDown: ImageVector + get() { + if (_chevronDown != null) { + return _chevronDown!! + } + _chevronDown = fluentIcon(name = "Regular.ChevronDown") { + fluentPath { + moveTo(4.22f, 8.47f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineTo(12.0f, 15.19f) + lineToRelative(6.72f, -6.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-7.25f, 7.25f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineTo(4.22f, 9.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + } + } + return _chevronDown!! + } + +private var _chevronDown: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChevronLeft.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChevronLeft.kt new file mode 100644 index 00000000..39a7226e --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChevronLeft.kt @@ -0,0 +1,32 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChevronLeft: ImageVector + get() { + if (_chevronLeft != null) { + return _chevronLeft!! + } + _chevronLeft = fluentIcon(name = "Regular.ChevronLeft") { + fluentPath { + moveTo(15.53f, 4.22f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineTo(8.81f, 12.0f) + lineToRelative(6.72f, 6.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-7.25f, -7.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(7.25f, -7.25f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + } + } + return _chevronLeft!! + } + +private var _chevronLeft: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChevronRight.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChevronRight.kt new file mode 100644 index 00000000..2c4a5695 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChevronRight.kt @@ -0,0 +1,32 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChevronRight: ImageVector + get() { + if (_chevronRight != null) { + return _chevronRight!! + } + _chevronRight = fluentIcon(name = "Regular.ChevronRight") { + fluentPath { + moveTo(8.47f, 4.22f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineTo(15.19f, 12.0f) + lineToRelative(-6.72f, 6.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(7.25f, -7.25f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineTo(9.53f, 4.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + close() + } + } + return _chevronRight!! + } + +private var _chevronRight: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChevronUp.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChevronUp.kt new file mode 100644 index 00000000..14b0107f --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChevronUp.kt @@ -0,0 +1,32 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChevronUp: ImageVector + get() { + if (_chevronUp != null) { + return _chevronUp!! + } + _chevronUp = fluentIcon(name = "Regular.ChevronUp") { + fluentPath { + moveTo(4.22f, 15.53f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineTo(12.0f, 8.81f) + lineToRelative(6.72f, 6.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-7.25f, -7.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-7.25f, 7.25f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + close() + } + } + return _chevronUp!! + } + +private var _chevronUp: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardPaste.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardPaste.kt new file mode 100644 index 00000000..4ef8ff04 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardPaste.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClipboardPaste: ImageVector + get() { + if (_clipboardPaste != null) { + return _clipboardPaste!! + } + _clipboardPaste = fluentIcon(name = "Regular.ClipboardPaste") { + fluentPath { + moveTo(12.75f, 2.0f) + curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) + horizontalLineToRelative(1.76f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) + lineToRelative(-0.01f, -0.1f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-2.13f) + curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.78f, 0.0f, -1.46f, -0.4f, -1.87f, -1.0f) + lineTo(5.25f, 5.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.75f) + horizontalLineToRelative(3.1f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.29f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + curveToRelative(0.0f, 0.42f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-3.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) + lineTo(3.0f, 19.76f) + lineTo(3.0f, 6.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(5.25f, 4.0f) + horizontalLineToRelative(1.76f) + curveToRelative(0.13f, -1.12f, 1.08f, -2.0f, 2.24f, -2.0f) + horizontalLineToRelative(3.5f) + close() + moveTo(18.75f, 8.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + horizontalLineToRelative(-6.5f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineToRelative(-0.01f, -0.15f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineToRelative(0.15f, -0.01f) + horizontalLineToRelative(6.5f) + close() + moveTo(18.75f, 9.5f) + horizontalLineToRelative(-6.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(6.5f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + close() + moveTo(12.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + close() + } + } + return _clipboardPaste!! + } + +private var _clipboardPaste: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Clock.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Clock.kt new file mode 100644 index 00000000..20048aee --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Clock.kt @@ -0,0 +1,39 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Clock: ImageVector + get() { + if (_clock != null) { + return _clock!! + } + _clock = fluentIcon(name = "Regular.Clock") { + fluentPath { + moveTo(3.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 17.0f, 0.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, -17.0f, 0.0f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) + close() + moveTo(12.0f, 6.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + verticalLineToRelative(6.1f) + curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) + horizontalLineToRelative(4.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + lineTo(12.0f, 12.0f) + lineTo(12.0f, 6.65f) + close() + } + } + return _clock!! + } + +private var _clock: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cloud.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cloud.kt new file mode 100644 index 00000000..172990cb --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cloud.kt @@ -0,0 +1,41 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Cloud: ImageVector + get() { + if (_cloud != null) { + return _cloud!! + } + _cloud = fluentIcon(name = "Regular.Cloud") { + fluentPath { + moveTo(6.09f, 9.75f) + arcToRelative(5.75f, 5.75f, 0.0f, false, true, 11.32f, 0.0f) + horizontalLineToRelative(0.09f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, 8.0f) + lineTo(6.0f, 17.75f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, -8.0f) + horizontalLineToRelative(0.09f) + close() + moveTo(11.75f, 6.5f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, -4.24f, 4.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, 0.71f) + lineTo(6.0f, 11.25f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) + horizontalLineToRelative(11.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, -5.0f) + horizontalLineToRelative(-0.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.71f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, -4.24f, -4.04f) + close() + } + } + return _cloud!! + } + +private var _cloud: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Copy.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Copy.kt new file mode 100644 index 00000000..fba86b37 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Copy.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Copy: ImageVector + get() { + if (_copy != null) { + return _copy!! + } + _copy = fluentIcon(name = "Regular.Copy") { + fluentPath { + moveTo(5.5f, 4.63f) + lineTo(5.5f, 17.25f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(8.62f) + curveToRelative(-0.31f, 0.88f, -1.15f, 1.5f, -2.13f, 1.5f) + lineTo(8.75f, 22.0f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 4.0f, 17.25f) + lineTo(4.0f, 6.75f) + curveToRelative(0.0f, -0.98f, 0.63f, -1.81f, 1.5f, -2.12f) + close() + moveTo(17.75f, 2.0f) + curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) + verticalLineToRelative(13.0f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-9.0f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-13.0f) + curveTo(6.5f, 3.01f, 7.5f, 2.0f, 8.75f, 2.0f) + horizontalLineToRelative(9.0f) + close() + moveTo(17.75f, 3.5f) + horizontalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(13.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(9.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + } + } + return _copy!! + } + +private var _copy: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cut.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cut.kt new file mode 100644 index 00000000..5add8c8b --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cut.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Cut: ImageVector + get() { + if (_cut != null) { + return _cut!! + } + _cut = fluentIcon(name = "Regular.Cut") { + fluentPath { + moveTo(12.14f, 9.34f) + lineTo(7.37f, 2.33f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.24f, 0.84f) + lineToRelative(5.13f, 7.55f) + lineToRelative(-2.4f, 3.74f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 1.18f, 0.94f) + lineToRelative(2.14f, -3.33f) + lineToRelative(2.06f, 3.03f) + arcTo(3.99f, 3.99f, 0.0f, false, false, 17.0f, 22.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, -1.5f, -7.71f) + lineToRelative(-2.44f, -3.6f) + lineToRelative(-0.92f, -1.35f) + close() + moveTo(4.5f, 18.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) + close() + moveTo(14.5f, 18.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) + close() + moveTo(13.94f, 9.32f) + lineTo(17.88f, 3.15f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.26f, -0.8f) + lineToRelative(-3.6f, 5.62f) + lineToRelative(0.92f, 1.35f) + close() + } + } + return _cut!! + } + +private var _cut: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Delete.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Delete.kt new file mode 100644 index 00000000..ce4e2239 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Delete.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Delete: ImageVector + get() { + if (_delete != null) { + return _delete!! + } + _delete = fluentIcon(name = "Regular.Delete") { + fluentPath { + moveTo(10.0f, 5.0f) + horizontalLineToRelative(4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, -4.0f, 0.0f) + close() + moveTo(8.5f, 5.0f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 7.0f, 0.0f) + horizontalLineToRelative(5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.32f) + lineToRelative(-1.17f, 12.11f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 15.03f, 22.0f) + lineTo(8.97f, 22.0f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.73f, -3.39f) + lineTo(4.07f, 6.5f) + lineTo(2.75f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(8.5f, 5.0f) + close() + moveTo(10.5f, 9.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-7.5f) + close() + moveTo(14.25f, 9.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-7.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(6.73f, 18.47f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.24f, 2.03f) + horizontalLineToRelative(6.06f) + curveToRelative(1.15f, 0.0f, 2.12f, -0.88f, 2.24f, -2.03f) + lineTo(18.42f, 6.5f) + lineTo(5.58f, 6.5f) + lineToRelative(1.15f, 11.97f) + close() + } + } + return _delete!! + } + +private var _delete: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Dismiss.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Dismiss.kt new file mode 100644 index 00000000..062845fa --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Dismiss.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Dismiss: ImageVector + get() { + if (_dismiss != null) { + return _dismiss!! + } + _dismiss = fluentIcon(name = "Regular.Dismiss") { + fluentPath { + moveToRelative(4.4f, 4.55f) + lineToRelative(0.07f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + lineTo(12.0f, 10.94f) + lineToRelative(6.47f, -6.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineTo(13.06f, 12.0f) + lineToRelative(6.47f, 6.47f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineTo(12.0f, 13.06f) + lineToRelative(-6.47f, 6.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineTo(10.94f, 12.0f) + lineTo(4.47f, 5.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(-0.07f, 0.08f) + close() + } + } + return _dismiss!! + } + +private var _dismiss: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Document.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Document.kt new file mode 100644 index 00000000..c118c4e4 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Document.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Document: ImageVector + get() { + if (_document != null) { + return _document!! + } + _document = fluentIcon(name = "Regular.Document") { + fluentPath { + moveTo(6.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(16.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(13.6f, 2.6f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 12.17f, 2.0f) + lineTo(6.0f, 2.0f) + close() + moveTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + lineTo(6.0f, 20.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(5.5f, 4.0f) + close() + moveTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + lineToRelative(3.88f, 3.88f) + close() + } + } + return _document!! + } + +private var _document: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Edit.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Edit.kt new file mode 100644 index 00000000..cec772b8 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Edit.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Edit: ImageVector + get() { + if (_edit != null) { + return _edit!! + } + _edit = fluentIcon(name = "Regular.Edit") { + fluentPath { + moveTo(20.95f, 3.05f) + arcToRelative(3.58f, 3.58f, 0.0f, false, false, -5.06f, 0.0f) + lineTo(3.94f, 15.0f) + curveToRelative(-0.4f, 0.4f, -0.7f, 0.92f, -0.82f, 1.48f) + lineToRelative(-1.1f, 4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.9f, 0.9f) + lineToRelative(4.6f, -1.1f) + arcTo(3.1f, 3.1f, 0.0f, false, false, 9.0f, 20.07f) + lineTo(20.95f, 8.11f) + arcToRelative(3.58f, 3.58f, 0.0f, false, false, 0.0f, -5.06f) + close() + moveTo(16.95f, 4.11f) + arcToRelative(2.08f, 2.08f, 0.0f, true, true, 2.94f, 2.94f) + lineToRelative(-0.89f, 0.89f) + lineTo(16.06f, 5.0f) + lineToRelative(0.9f, -0.9f) + close() + moveTo(15.0f, 6.06f) + lineTo(17.94f, 9.0f) + lineToRelative(-10.0f, 10.0f) + arcToRelative(1.6f, 1.6f, 0.0f, false, true, -0.76f, 0.43f) + lineToRelative(-3.42f, 0.8f) + lineToRelative(0.82f, -3.4f) + curveToRelative(0.06f, -0.3f, 0.21f, -0.56f, 0.42f, -0.77f) + lineToRelative(10.0f, -10.0f) + close() + } + } + return _edit!! + } + +private var _edit: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ErrorCircle.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ErrorCircle.kt new file mode 100644 index 00000000..ba8cef87 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ErrorCircle.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ErrorCircle: ImageVector + get() { + if (_errorCircle != null) { + return _errorCircle!! + } + _errorCircle = fluentIcon(name = "Regular.ErrorCircle") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(12.0f, 3.67f) + arcToRelative(8.34f, 8.34f, 0.0f, false, false, 0.0f, 16.66f) + arcToRelative(8.34f, 8.34f, 0.0f, false, false, 0.0f, -16.66f) + close() + moveTo(12.0f, 14.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(12.0f, 7.0f) + curveToRelative(0.37f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) + verticalLineToRelative(4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.48f, 0.1f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.74f, -0.75f) + close() + } + } + return _errorCircle!! + } + +private var _errorCircle: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Eye.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Eye.kt new file mode 100644 index 00000000..57fab653 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Eye.kt @@ -0,0 +1,37 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Eye: ImageVector + get() { + if (_eye != null) { + return _eye!! + } + _eye = fluentIcon(name = "Regular.Eye") { + fluentPath { + moveTo(12.0f, 9.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, 0.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, -8.0f) + close() + moveTo(12.0f, 10.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, -5.0f) + close() + moveTo(12.0f, 5.5f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 9.7f, 7.56f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.45f, 0.37f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, -16.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.45f, -0.36f) + arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 5.5f) + close() + } + } + return _eye!! + } + +private var _eye: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Filter.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Filter.kt new file mode 100644 index 00000000..351f92a8 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Filter.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Filter: ImageVector + get() { + if (_filter != null) { + return _filter!! + } + _filter = fluentIcon(name = "Regular.Filter") { + fluentPath { + moveTo(13.5f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.0f) + close() + moveTo(16.5f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(9.0f) + close() + moveTo(19.5f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(15.0f) + close() + } + } + return _filter!! + } + +private var _filter: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Flag.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Flag.kt new file mode 100644 index 00000000..74344e87 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Flag.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Flag: ImageVector + get() { + if (_flag != null) { + return _flag!! + } + _flag = fluentIcon(name = "Regular.Flag") { + fluentPath { + moveTo(3.0f, 3.75f) + curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(16.5f) + curveToRelative(0.62f, 0.0f, 0.98f, 0.7f, 0.6f, 1.2f) + lineTo(16.7f, 9.75f) + lineToRelative(4.16f, 5.55f) + curveToRelative(0.38f, 0.5f, 0.02f, 1.2f, -0.6f, 1.2f) + lineTo(4.5f, 16.5f) + verticalLineToRelative(4.75f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + lineTo(3.0f, 3.75f) + close() + moveTo(18.75f, 4.5f) + lineTo(4.5f, 4.5f) + lineTo(4.5f, 15.0f) + horizontalLineToRelative(14.25f) + lineToRelative(-3.6f, -4.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -0.9f) + lineToRelative(3.6f, -4.8f) + close() + } + } + return _flag!! + } + +private var _flag: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Flash.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Flash.kt new file mode 100644 index 00000000..e41cf96f --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Flash.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Flash: ImageVector + get() { + if (_flash != null) { + return _flash!! + } + _flash = fluentIcon(name = "Regular.Flash") { + fluentPath { + moveTo(7.43f, 2.83f) + curveTo(7.6f, 2.33f, 8.07f, 2.0f, 8.6f, 2.0f) + horizontalLineToRelative(6.46f) + curveToRelative(0.85f, 0.0f, 1.45f, 0.84f, 1.18f, 1.65f) + lineTo(14.8f, 8.0f) + horizontalLineToRelative(3.96f) + curveToRelative(1.1f, 0.0f, 1.67f, 1.33f, 0.9f, 2.12f) + lineTo(8.59f, 21.54f) + curveToRelative(-1.06f, 1.08f, -2.88f, 0.1f, -2.55f, -1.38f) + lineToRelative(1.27f, -5.66f) + lineToRelative(-1.56f, -0.01f) + curveToRelative(-1.21f, 0.0f, -2.05f, -1.2f, -1.65f, -2.34f) + lineToRelative(3.33f, -9.32f) + close() + moveTo(8.78f, 3.5f) + lineTo(5.52f, 12.66f) + curveToRelative(-0.06f, 0.16f, 0.06f, 0.33f, 0.23f, 0.33f) + lineToRelative(2.5f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.73f, 0.91f) + lineTo(7.51f, 20.5f) + lineTo(18.16f, 9.5f) + horizontalLineToRelative(-4.41f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.71f, -0.99f) + lineTo(14.7f, 3.5f) + lineTo(8.78f, 3.5f) + close() + } + } + return _flash!! + } + +private var _flash: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Folder.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Folder.kt new file mode 100644 index 00000000..b5f7825f --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Folder.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Folder: ImageVector + get() { + if (_folder != null) { + return _folder!! + } + _folder = fluentIcon(name = "Regular.Folder") { + fluentPath { + moveTo(8.2f, 4.0f) + curveToRelative(0.47f, 0.0f, 0.92f, 0.14f, 1.3f, 0.4f) + lineToRelative(0.15f, 0.12f) + lineToRelative(2.37f, 1.98f) + horizontalLineToRelative(7.73f) + curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) + lineToRelative(0.01f, 0.16f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + lineTo(4.25f, 20.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(2.0f, 17.75f) + lineTo(2.0f, 6.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 4.0f) + horizontalLineToRelative(3.96f) + close() + moveTo(9.65f, 9.98f) + curveToRelative(-0.36f, 0.3f, -0.8f, 0.47f, -1.25f, 0.51f) + lineToRelative(-0.2f, 0.01f) + lineTo(3.5f, 10.5f) + verticalLineToRelative(7.25f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(15.5f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + verticalLineToRelative(-9.0f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-7.73f) + lineTo(9.65f, 9.98f) + close() + moveTo(8.2f, 5.5f) + lineTo(4.25f, 5.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + lineTo(3.5f, 9.0f) + horizontalLineToRelative(4.7f) + curveToRelative(0.15f, 0.0f, 0.28f, -0.04f, 0.4f, -0.11f) + lineToRelative(0.09f, -0.06f) + lineToRelative(1.89f, -1.58f) + lineToRelative(-1.9f, -1.58f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.37f, -0.16f) + lineToRelative(-0.1f, -0.01f) + close() + } + } + return _folder!! + } + +private var _folder: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Heart.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Heart.kt new file mode 100644 index 00000000..9347ae90 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Heart.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Heart: ImageVector + get() { + if (_heart != null) { + return _heart!! + } + _heart = fluentIcon(name = "Regular.Heart") { + fluentPath { + moveTo(12.82f, 5.58f) + lineTo(12.0f, 6.4f) + lineToRelative(-0.82f, -0.82f) + arcToRelative(5.37f, 5.37f, 0.0f, true, false, -7.6f, 7.6f) + lineToRelative(7.89f, 7.9f) + curveToRelative(0.3f, 0.29f, 0.77f, 0.29f, 1.06f, 0.0f) + lineToRelative(7.9f, -7.9f) + arcToRelative(5.38f, 5.38f, 0.0f, true, false, -7.61f, -7.6f) + close() + moveTo(19.37f, 12.12f) + lineTo(12.0f, 19.48f) + lineToRelative(-7.36f, -7.36f) + arcToRelative(3.87f, 3.87f, 0.0f, true, true, 5.48f, -5.48f) + lineTo(11.47f, 8.0f) + curveToRelative(0.3f, 0.3f, 0.79f, 0.29f, 1.08f, -0.02f) + lineToRelative(1.33f, -1.34f) + arcToRelative(3.88f, 3.88f, 0.0f, false, true, 5.49f, 5.48f) + close() + } + } + return _heart!! + } + +private var _heart: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/History.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/History.kt new file mode 100644 index 00000000..f92cd83a --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/History.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.History: ImageVector + get() { + if (_history != null) { + return _history!! + } + _history = fluentIcon(name = "Regular.History") { + fluentPath { + moveTo(19.5f, 12.0f) + arcTo(7.5f, 7.5f, 0.0f, false, false, 6.9f, 6.5f) + horizontalLineToRelative(1.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(1.04f) + arcToRelative(9.0f, 9.0f, 0.0f, true, true, -2.9f, 5.33f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.76f, -0.62f) + curveToRelative(0.46f, 0.0f, 0.79f, 0.44f, 0.72f, 0.9f) + arcTo(7.5f, 7.5f, 0.0f, true, false, 19.5f, 12.0f) + close() + moveTo(12.5f, 7.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(12.5f, 11.5f) + lineTo(12.5f, 7.75f) + close() + } + } + return _history!! + } + +private var _history: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Home.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Home.kt new file mode 100644 index 00000000..e4469432 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Home.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Home: ImageVector + get() { + if (_home != null) { + return _home!! + } + _home = fluentIcon(name = "Regular.Home") { + fluentPath { + moveTo(10.55f, 2.53f) + curveToRelative(0.84f, -0.7f, 2.06f, -0.7f, 2.9f, 0.0f) + lineToRelative(6.75f, 5.7f) + curveToRelative(0.5f, 0.42f, 0.8f, 1.05f, 0.8f, 1.71f) + verticalLineToRelative(9.31f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-5.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-3.5f) + curveTo(3.78f, 21.0f, 3.0f, 20.22f, 3.0f, 19.25f) + verticalLineToRelative(-9.3f) + curveToRelative(0.0f, -0.67f, 0.3f, -1.3f, 0.8f, -1.73f) + lineToRelative(6.75f, -5.69f) + close() + moveTo(12.48f, 3.68f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.96f, 0.0f) + lineToRelative(-6.75f, 5.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.27f, 0.56f) + verticalLineToRelative(9.31f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.1f, 0.25f, -0.25f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(3.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.1f, 0.25f, -0.25f) + verticalLineToRelative(-9.3f) + curveToRelative(0.0f, -0.23f, -0.1f, -0.44f, -0.27f, -0.58f) + lineToRelative(-6.75f, -5.7f) + close() + } + } + return _home!! + } + +private var _home: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Image.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Image.kt new file mode 100644 index 00000000..eac798db --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Image.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Image: ImageVector + get() { + if (_image != null) { + return _image!! + } + _image = fluentIcon(name = "Regular.Image") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(18.33f, 19.4f) + lineTo(12.53f, 13.71f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, -0.07f) + lineToRelative(-0.08f, 0.07f) + lineToRelative(-5.81f, 5.7f) + curveToRelative(0.18f, 0.06f, 0.38f, 0.09f, 0.58f, 0.09f) + horizontalLineToRelative(11.5f) + curveToRelative(0.2f, 0.0f, 0.4f, -0.03f, 0.58f, -0.1f) + lineToRelative(-5.8f, -5.69f) + lineToRelative(5.8f, 5.7f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.2f, 0.04f, 0.4f, 0.1f, 0.6f) + lineToRelative(5.83f, -5.7f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.02f, -0.12f) + lineToRelative(0.12f, 0.11f) + lineToRelative(5.83f, 5.7f) + curveToRelative(0.06f, -0.18f, 0.1f, -0.38f, 0.1f, -0.59f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(15.25f, 6.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -4.5f) + close() + moveTo(15.25f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + } + } + return _image!! + } + +private var _image: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Important.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Important.kt new file mode 100644 index 00000000..baee4eff --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Important.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Important: ImageVector + get() { + if (_important != null) { + return _important!! + } + _important = fluentIcon(name = "Regular.Important") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(3.88f, 3.88f, 0.0f, false, false, -3.88f, 3.88f) + curveToRelative(0.0f, 2.92f, 1.21f, 6.55f, 1.82f, 8.2f) + arcTo(2.19f, 2.19f, 0.0f, false, false, 12.0f, 15.5f) + curveToRelative(0.9f, 0.0f, 1.74f, -0.54f, 2.06f, -1.42f) + curveToRelative(0.61f, -1.64f, 1.82f, -5.25f, 1.82f, -8.2f) + arcTo(3.88f, 3.88f, 0.0f, false, false, 12.0f, 2.0f) + close() + moveTo(9.62f, 5.88f) + arcToRelative(2.38f, 2.38f, 0.0f, false, true, 4.76f, 0.0f) + curveToRelative(0.0f, 2.65f, -1.12f, 6.04f, -1.72f, 7.68f) + arcTo(0.69f, 0.69f, 0.0f, false, true, 12.0f, 14.0f) + arcToRelative(0.69f, 0.69f, 0.0f, false, true, -0.65f, -0.44f) + curveToRelative(-0.61f, -1.65f, -1.72f, -5.06f, -1.72f, -7.68f) + close() + moveTo(12.0f, 17.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, -5.0f) + close() + moveTo(11.0f, 19.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + close() + } + } + return _important!! + } + +private var _important: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Info.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Info.kt new file mode 100644 index 00000000..d40b18c5 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Info.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Info: ImageVector + get() { + if (_info != null) { + return _info!! + } + _info = fluentIcon(name = "Regular.Info") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) + close() + moveTo(12.0f, 10.5f) + curveToRelative(0.38f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) + verticalLineToRelative(0.1f) + lineToRelative(0.01f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-5.6f) + curveToRelative(0.0f, -0.42f, 0.33f, -0.75f, 0.75f, -0.75f) + close() + moveTo(12.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + } + } + return _info!! + } + +private var _info: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Key.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Key.kt new file mode 100644 index 00000000..de31a8eb --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Key.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Key: ImageVector + get() { + if (_key != null) { + return _key!! + } + _key = fluentIcon(name = "Regular.Key") { + fluentPath { + moveTo(18.25f, 7.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(15.5f, 2.05f) + arcTo(6.55f, 6.55f, 0.0f, false, false, 9.06f, 9.7f) + curveToRelative(0.02f, 0.1f, -0.02f, 0.2f, -0.07f, 0.25f) + lineToRelative(-6.24f, 6.23f) + curveToRelative(-0.51f, 0.52f, -0.8f, 1.22f, -0.8f, 1.95f) + verticalLineToRelative(2.17f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-1.25f) + horizontalLineTo(9.7f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-1.75f) + horizontalLineToRelative(1.75f) + curveToRelative(0.67f, 0.0f, 1.22f, -0.54f, 1.25f, -1.2f) + arcToRelative(6.55f, 6.55f, 0.0f, false, false, 8.1f, -6.35f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, -6.55f, -6.45f) + close() + moveTo(10.45f, 8.6f) + arcToRelative(5.05f, 5.05f, 0.0f, false, true, 5.05f, -5.05f) + curveToRelative(2.8f, 0.0f, 5.05f, 2.18f, 5.05f, 4.95f) + arcToRelative(5.05f, 5.05f, 0.0f, false, true, -7.06f, 4.61f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.04f, 0.69f) + verticalLineToRelative(0.75f) + horizontalLineTo(10.7f) + curveToRelative(-0.7f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(1.75f) + horizontalLineTo(7.7f) + curveToRelative(-0.7f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineTo(3.7f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-2.17f) + curveToRelative(0.0f, -0.33f, 0.13f, -0.65f, 0.37f, -0.89f) + lineToRelative(6.23f, -6.23f) + curveToRelative(0.42f, -0.42f, 0.58f, -1.0f, 0.49f, -1.57f) + curveToRelative(-0.06f, -0.3f, -0.1f, -0.58f, -0.1f, -0.84f) + close() + } + } + return _key!! + } + +private var _key: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Link.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Link.kt new file mode 100644 index 00000000..836e3d3d --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Link.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Link: ImageVector + get() { + if (_link != null) { + return _link!! + } + _link = fluentIcon(name = "Regular.Link") { + fluentPath { + moveTo(9.25f, 7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.11f, 1.5f) + horizontalLineTo(7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -0.2f, 7.0f) + horizontalLineToRelative(2.45f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.11f, 1.5f) + horizontalLineTo(7.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, -0.25f, -10.0f) + horizontalLineToRelative(2.5f) + close() + moveTo(17.0f, 7.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.25f, 10.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.11f, -1.5f) + horizontalLineTo(17.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.2f, -7.0f) + horizontalLineToRelative(-2.45f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.11f, -1.5f) + horizontalLineTo(17.0f) + close() + moveTo(7.0f, 11.25f) + horizontalLineToRelative(10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineTo(7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineTo(17.0f) + horizontalLineTo(7.0f) + close() + } + } + return _link!! + } + +private var _link: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Mail.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Mail.kt new file mode 100644 index 00000000..484b062c --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Mail.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Mail: ImageVector + get() { + if (_mail != null) { + return _mail!! + } + _mail = fluentIcon(name = "Regular.Mail") { + fluentPath { + moveTo(5.25f, 4.0f) + horizontalLineToRelative(13.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.24f, 3.07f) + lineToRelative(0.01f, 0.18f) + verticalLineToRelative(9.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + horizontalLineTo(5.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 16.75f) + verticalLineToRelative(-9.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(5.25f, 4.0f) + horizontalLineToRelative(13.5f) + horizontalLineToRelative(-13.5f) + close() + moveTo(20.5f, 9.37f) + lineToRelative(-8.15f, 4.3f) + curveToRelative(-0.19f, 0.1f, -0.4f, 0.1f, -0.6f, 0.04f) + lineToRelative(-0.1f, -0.05f) + lineTo(3.5f, 9.37f) + verticalLineToRelative(7.38f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(13.5f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + verticalLineTo(9.37f) + close() + moveTo(18.75f, 5.5f) + horizontalLineTo(5.25f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + lineToRelative(-0.01f, 0.15f) + verticalLineToRelative(0.43f) + lineToRelative(8.5f, 4.47f) + lineToRelative(8.5f, -4.47f) + verticalLineToRelative(-0.43f) + curveToRelative(0.0f, -0.92f, -0.7f, -1.67f, -1.6f, -1.74f) + lineToRelative(-0.15f, -0.01f) + close() + } + } + return _mail!! + } + +private var _mail: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Maximize.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Maximize.kt new file mode 100644 index 00000000..6ad8c083 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Maximize.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Maximize: ImageVector + get() { + if (_maximize != null) { + return _maximize!! + } + _maximize = fluentIcon(name = "Regular.Maximize") { + fluentPath { + moveTo(5.75f, 3.0f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) + lineTo(5.75f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + close() + moveTo(5.75f, 4.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(12.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + lineTo(19.5f, 5.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(5.75f, 4.5f) + close() + } + } + return _maximize!! + } + +private var _maximize: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/MoreHorizontal.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/MoreHorizontal.kt new file mode 100644 index 00000000..fed3fca5 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/MoreHorizontal.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MoreHorizontal: ImageVector + get() { + if (_moreHorizontal != null) { + return _moreHorizontal!! + } + _moreHorizontal = fluentIcon(name = "Regular.MoreHorizontal") { + fluentPath { + moveTo(7.75f, 12.0f) + arcToRelative(1.75f, 1.75f, 0.0f, true, true, -3.5f, 0.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 3.5f, 0.0f) + close() + moveTo(13.75f, 12.0f) + arcToRelative(1.75f, 1.75f, 0.0f, true, true, -3.5f, 0.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 3.5f, 0.0f) + close() + moveTo(18.0f, 13.75f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, -3.5f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, 3.5f) + close() + } + } + return _moreHorizontal!! + } + +private var _moreHorizontal: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/MoreVertical.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/MoreVertical.kt new file mode 100644 index 00000000..3e63714a --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/MoreVertical.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MoreVertical: ImageVector + get() { + if (_moreVertical != null) { + return _moreVertical!! + } + _moreVertical = fluentIcon(name = "Regular.MoreVertical") { + fluentPath { + moveTo(12.0f, 7.75f) + arcToRelative(1.75f, 1.75f, 0.0f, true, true, 0.0f, -3.5f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.0f, 3.5f) + close() + moveTo(12.0f, 13.75f) + arcToRelative(1.75f, 1.75f, 0.0f, true, true, 0.0f, -3.5f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.0f, 3.5f) + close() + moveTo(10.25f, 18.0f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, 3.5f, 0.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -3.5f, 0.0f) + close() + } + } + return _moreVertical!! + } + +private var _moreVertical: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Navigation.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Navigation.kt new file mode 100644 index 00000000..dd0ad55b --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Navigation.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Navigation: ImageVector + get() { + if (_navigation != null) { + return _navigation!! + } + _navigation = fluentIcon(name = "Regular.Navigation") { + fluentPath { + moveTo(2.75f, 18.0f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(2.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(18.6f) + horizontalLineToRelative(-18.5f) + close() + moveTo(2.75f, 11.5f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(2.75f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(18.6f) + horizontalLineToRelative(-18.5f) + close() + moveTo(2.75f, 5.0f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(2.75f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + horizontalLineToRelative(18.6f) + horizontalLineToRelative(-18.5f) + close() + } + } + return _navigation!! + } + +private var _navigation: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Open.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Open.kt new file mode 100644 index 00000000..b2ad2d1f --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Open.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Open: ImageVector + get() { + if (_open != null) { + return _open!! + } + _open = fluentIcon(name = "Regular.Open") { + fluentPath { + moveTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineTo(6.25f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + verticalLineTo(6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.0f) + close() + moveTo(13.0f, 3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineTo(5.56f) + lineToRelative(-5.22f, 5.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(5.22f, -5.22f) + horizontalLineToRelative(-4.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _open!! + } + +private var _open: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Options.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Options.kt new file mode 100644 index 00000000..1d5a2fa5 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Options.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Options: ImageVector + get() { + if (_options != null) { + return _options!! + } + _options = fluentIcon(name = "Regular.Options") { + fluentPath { + moveTo(8.75f, 13.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.16f, 2.5f) + horizontalLineToRelative(9.34f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-9.44f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.32f, 0.0f) + lineTo(2.75f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(2.94f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.16f, -2.5f) + close() + moveTo(8.75f, 15.0f) + curveToRelative(-0.76f, 0.0f, -1.41f, 0.49f, -1.65f, 1.17f) + lineToRelative(-0.02f, 0.07f) + lineToRelative(-0.04f, 0.14f) + arcToRelative(1.76f, 1.76f, 0.0f, false, false, 0.02f, 0.82f) + lineToRelative(0.04f, 0.13f) + lineToRelative(0.02f, 0.07f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 3.28f, -0.07f) + lineToRelative(0.04f, -0.13f) + lineToRelative(-0.01f, 0.06f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.04f, -0.82f) + lineToRelative(-0.03f, -0.13f) + lineToRelative(-0.02f, -0.07f) + lineToRelative(-0.04f, -0.14f) + arcTo(1.75f, 1.75f, 0.0f, false, false, 8.75f, 15.0f) + close() + moveTo(15.25f, 4.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.16f, 2.5f) + horizontalLineToRelative(2.84f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-2.94f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.32f, 0.0f) + lineTo(2.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(9.44f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 15.25f, 4.0f) + close() + moveTo(15.25f, 5.5f) + curveToRelative(-0.76f, 0.0f, -1.41f, 0.49f, -1.65f, 1.17f) + lineToRelative(-0.02f, 0.07f) + lineToRelative(-0.04f, 0.14f) + arcToRelative(1.76f, 1.76f, 0.0f, false, false, 0.02f, 0.82f) + lineToRelative(0.04f, 0.13f) + lineToRelative(0.02f, 0.07f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 3.28f, -0.07f) + lineToRelative(0.04f, -0.13f) + lineToRelative(-0.01f, 0.06f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.04f, -0.82f) + lineToRelative(-0.03f, -0.13f) + lineToRelative(-0.02f, -0.07f) + lineToRelative(-0.04f, -0.14f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.63f, -1.1f) + close() + } + } + return _options!! + } + +private var _options: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Pause.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Pause.kt new file mode 100644 index 00000000..b91b65ab --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Pause.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Pause: ImageVector + get() { + if (_pause != null) { + return _pause!! + } + _pause = fluentIcon(name = "Regular.Pause") { + fluentPath { + moveTo(6.25f, 3.0f) + curveTo(5.01f, 3.0f, 4.0f, 4.0f, 4.0f, 5.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 19.99f, 5.0f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(2.5f) + curveTo(9.99f, 21.0f, 11.0f, 20.0f, 11.0f, 18.75f) + lineTo(11.0f, 5.25f) + curveTo(11.0f, 4.01f, 10.0f, 3.0f, 8.75f, 3.0f) + horizontalLineToRelative(-2.5f) + close() + moveTo(5.5f, 5.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(5.5f, 5.25f) + close() + moveTo(15.25f, 3.0f) + curveTo(14.01f, 3.0f, 13.0f, 4.0f, 13.0f, 5.25f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(2.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 5.25f) + curveTo(20.0f, 4.01f, 19.0f, 3.0f, 17.75f, 3.0f) + horizontalLineToRelative(-2.5f) + close() + moveTo(14.5f, 5.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(14.5f, 5.25f) + close() + } + } + return _pause!! + } + +private var _pause: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Person.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Person.kt new file mode 100644 index 00000000..24fade95 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Person.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Person: ImageVector + get() { + if (_person != null) { + return _person!! + } + _person = fluentIcon(name = "Regular.Person") { + fluentPath { + moveTo(17.75f, 14.0f) + curveTo(19.0f, 14.0f, 20.0f, 15.0f, 20.0f, 16.25f) + verticalLineToRelative(0.57f) + curveToRelative(0.0f, 0.9f, -0.32f, 1.76f, -0.9f, 2.44f) + curveTo(17.53f, 21.1f, 15.15f, 22.0f, 12.0f, 22.0f) + curveToRelative(-3.15f, 0.0f, -5.53f, -0.9f, -7.1f, -2.74f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.9f, -2.43f) + verticalLineToRelative(-0.58f) + curveTo(4.0f, 15.0f, 5.01f, 14.0f, 6.25f, 14.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.75f, 15.5f) + lineTo(6.25f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.58f) + curveToRelative(0.0f, 0.53f, 0.2f, 1.05f, 0.54f, 1.46f) + curveTo(7.3f, 19.76f, 9.26f, 20.5f, 12.0f, 20.5f) + curveToRelative(2.74f, 0.0f, 4.7f, -0.74f, 5.96f, -2.21f) + curveToRelative(0.35f, -0.41f, 0.54f, -0.93f, 0.54f, -1.47f) + verticalLineToRelative(-0.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + } + } + return _person!! + } + +private var _person: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Pin.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Pin.kt new file mode 100644 index 00000000..c1b6d1af --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Pin.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Pin: ImageVector + get() { + if (_pin != null) { + return _pin!! + } + _pin = fluentIcon(name = "Regular.Pin") { + fluentPath { + moveToRelative(16.24f, 2.93f) + lineToRelative(4.83f, 4.83f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.72f, 4.4f) + lineToRelative(-4.87f, 2.44f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.37f, 0.42f) + lineToRelative(-1.44f, 4.17f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.07f, 0.48f) + lineToRelative(-3.1f, -3.1f) + lineTo(4.06f, 21.0f) + lineTo(3.0f, 21.0f) + verticalLineToRelative(-1.06f) + lineToRelative(4.44f, -4.44f) + lineToRelative(-3.1f, -3.1f) + curveToRelative(-0.66f, -0.66f, -0.4f, -1.77f, 0.47f, -2.07f) + lineToRelative(4.17f, -1.44f) + curveToRelative(0.18f, -0.06f, 0.34f, -0.2f, 0.42f, -0.37f) + lineToRelative(2.44f, -4.87f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 4.4f, -0.72f) + close() + moveTo(20.01f, 8.82f) + lineTo(15.18f, 3.99f) + curveToRelative(-0.6f, -0.6f, -1.62f, -0.44f, -2.0f, 0.33f) + lineToRelative(-2.44f, 4.87f) + curveToRelative(-0.26f, 0.52f, -0.72f, 0.93f, -1.27f, 1.12f) + lineToRelative(-3.8f, 1.3f) + lineToRelative(6.71f, 6.71f) + lineToRelative(1.31f, -3.79f) + curveToRelative(0.2f, -0.55f, 0.6f, -1.01f, 1.12f, -1.27f) + lineToRelative(4.87f, -2.44f) + curveToRelative(0.77f, -0.38f, 0.93f, -1.4f, 0.33f, -2.0f) + close() + } + } + return _pin!! + } + +private var _pin: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Play.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Play.kt new file mode 100644 index 00000000..78357bd6 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Play.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Play: ImageVector + get() { + if (_play != null) { + return _play!! + } + _play = fluentIcon(name = "Regular.Play") { + fluentPath { + moveTo(7.6f, 4.61f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.1f, 0.66f) + verticalLineToRelative(13.46f) + curveToRelative(0.0f, 0.56f, 0.6f, 0.93f, 1.1f, 0.65f) + lineToRelative(12.37f, -6.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.32f) + lineTo(7.61f, 4.61f) + close() + moveTo(5.0f, 5.27f) + curveToRelative(0.0f, -1.7f, 1.83f, -2.79f, 3.33f, -1.97f) + lineToRelative(12.36f, 6.72f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, 3.96f) + lineTo(8.33f, 20.7f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 5.0f, 18.73f) + verticalLineTo(5.27f) + close() + } + } + return _play!! + } + +private var _play: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReOrder.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReOrder.kt new file mode 100644 index 00000000..8be8ebcd --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReOrder.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ReOrder: ImageVector + get() { + if (_reOrder != null) { + return _reOrder!! + } + _reOrder = fluentIcon(name = "Regular.ReOrder") { + fluentPath { + moveTo(2.75f, 13.25f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(2.75f, 14.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(18.6f) + horizontalLineToRelative(-18.5f) + close() + moveTo(2.75f, 9.25f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(2.75f, 10.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(18.6f) + horizontalLineToRelative(-18.5f) + close() + } + } + return _reOrder!! + } + +private var _reOrder: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Rename.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Rename.kt new file mode 100644 index 00000000..143b944c --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Rename.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Rename: ImageVector + get() { + if (_rename != null) { + return _rename!! + } + _rename = fluentIcon(name = "Regular.Rename") { + fluentPath { + moveTo(9.75f, 2.0f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(12.5f, 3.5f) + verticalLineToRelative(17.0f) + horizontalLineToRelative(1.25f) + curveToRelative(0.37f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.64f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(11.0f, 20.5f) + verticalLineToRelative(-17.0f) + lineTo(9.75f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineTo(9.0f, 2.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(18.25f, 5.0f) + curveToRelative(1.79f, 0.0f, 3.24f, 1.45f, 3.25f, 3.25f) + verticalLineToRelative(7.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 18.44f, 19.0f) + lineTo(13.5f, 19.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(4.8f) + curveToRelative(0.94f, -0.03f, 1.7f, -0.8f, 1.69f, -1.75f) + verticalLineToRelative(-7.5f) + curveToRelative(0.0f, -0.97f, -0.79f, -1.75f, -1.75f, -1.75f) + lineTo(13.5f, 6.5f) + lineTo(13.5f, 5.0f) + horizontalLineToRelative(4.74f) + close() + moveTo(10.0f, 5.0f) + verticalLineToRelative(1.5f) + lineTo(5.25f, 6.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(10.0f, 17.5f) + lineTo(10.0f, 19.0f) + lineTo(5.25f, 19.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 15.75f) + verticalLineToRelative(-7.5f) + curveTo(2.0f, 6.45f, 3.46f, 5.0f, 5.25f, 5.0f) + lineTo(10.0f, 5.0f) + close() + } + } + return _rename!! + } + +private var _rename: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Save.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Save.kt new file mode 100644 index 00000000..c4cb2bcf --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Save.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Save: ImageVector + get() { + if (_save != null) { + return _save!! + } + _save = fluentIcon(name = "Regular.Save") { + fluentPath { + moveTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(9.96f) + curveToRelative(0.87f, 0.0f, 1.7f, 0.34f, 2.3f, 0.95f) + lineTo(20.05f, 6.0f) + curveToRelative(0.6f, 0.6f, 0.95f, 1.43f, 0.95f, 2.3f) + verticalLineToRelative(9.96f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) + lineTo(5.75f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + close() + moveTo(5.75f, 4.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + lineTo(6.0f, 19.5f) + verticalLineToRelative(-5.25f) + curveTo(6.0f, 13.01f, 7.0f, 12.0f, 8.25f, 12.0f) + horizontalLineToRelative(7.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(5.25f) + horizontalLineToRelative(0.25f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + lineTo(19.5f, 8.29f) + curveToRelative(0.0f, -0.47f, -0.18f, -0.91f, -0.51f, -1.24f) + lineTo(16.95f, 5.0f) + curveToRelative(-0.26f, -0.26f, -0.6f, -0.43f, -0.95f, -0.49f) + verticalLineToRelative(2.73f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-4.5f) + curveTo(8.01f, 9.5f, 7.0f, 8.5f, 7.0f, 7.25f) + lineTo(7.0f, 4.5f) + lineTo(5.75f, 4.5f) + close() + moveTo(16.5f, 19.5f) + verticalLineToRelative(-5.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(5.25f) + horizontalLineToRelative(9.0f) + close() + moveTo(8.5f, 4.5f) + verticalLineToRelative(2.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(14.5f, 4.5f) + horizontalLineToRelative(-6.0f) + close() + } + } + return _save!! + } + +private var _save: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Search.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Search.kt new file mode 100644 index 00000000..9f3d3bfb --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Search.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Search: ImageVector + get() { + if (_search != null) { + return _search!! + } + _search = fluentIcon(name = "Regular.Search") { + fluentPath { + moveTo(10.0f, 2.75f) + arcToRelative(7.25f, 7.25f, 0.0f, false, true, 5.63f, 11.82f) + lineToRelative(4.9f, 4.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-4.9f, -4.9f) + arcTo(7.25f, 7.25f, 0.0f, true, true, 10.0f, 2.75f) + close() + moveTo(10.0f, 4.25f) + arcToRelative(5.75f, 5.75f, 0.0f, true, false, 0.0f, 11.5f) + arcToRelative(5.75f, 5.75f, 0.0f, false, false, 0.0f, -11.5f) + close() + } + } + return _search!! + } + +private var _search: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Send.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Send.kt new file mode 100644 index 00000000..3138d492 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Send.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Send: ImageVector + get() { + if (_send != null) { + return _send!! + } + _send = fluentIcon(name = "Regular.Send") { + fluentPath { + moveTo(5.7f, 12.0f) + lineTo(2.3f, 3.27f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.94f, -0.98f) + lineToRelative(0.1f, 0.04f) + lineToRelative(18.0f, 9.0f) + curveToRelative(0.51f, 0.26f, 0.54f, 0.97f, 0.1f, 1.28f) + lineToRelative(-0.1f, 0.06f) + lineToRelative(-18.0f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.07f, -0.85f) + lineToRelative(0.03f, -0.1f) + lineTo(5.7f, 12.0f) + lineTo(2.3f, 3.27f) + lineTo(5.7f, 12.0f) + close() + moveTo(4.4f, 4.54f) + lineToRelative(2.61f, 6.7f) + lineToRelative(6.63f, 0.01f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 0.38f, -0.27f, 0.7f, -0.64f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineTo(7.0f) + lineToRelative(-2.6f, 6.7f) + lineTo(19.31f, 12.0f) + lineTo(4.4f, 4.54f) + close() + } + } + return _send!! + } + +private var _send: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Settings.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Settings.kt new file mode 100644 index 00000000..0b378dc3 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Settings.kt @@ -0,0 +1,97 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Settings: ImageVector + get() { + if (_settings != null) { + return _settings!! + } + _settings = fluentIcon(name = "Regular.Settings") { + fluentPath { + moveTo(12.01f, 2.25f) + curveToRelative(0.74f, 0.0f, 1.47f, 0.1f, 2.18f, 0.25f) + curveToRelative(0.32f, 0.07f, 0.55f, 0.33f, 0.59f, 0.65f) + lineToRelative(0.17f, 1.53f) + arcToRelative(1.38f, 1.38f, 0.0f, false, false, 1.92f, 1.11f) + lineToRelative(1.4f, -0.61f) + curveToRelative(0.3f, -0.13f, 0.64f, -0.06f, 0.85f, 0.17f) + arcToRelative(9.8f, 9.8f, 0.0f, false, true, 2.2f, 3.8f) + curveToRelative(0.1f, 0.3f, 0.0f, 0.63f, -0.26f, 0.82f) + lineToRelative(-1.25f, 0.92f) + arcToRelative(1.38f, 1.38f, 0.0f, false, false, 0.0f, 2.22f) + lineToRelative(1.25f, 0.92f) + curveToRelative(0.26f, 0.19f, 0.36f, 0.52f, 0.27f, 0.82f) + arcToRelative(9.8f, 9.8f, 0.0f, false, true, -2.2f, 3.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.85f, 0.17f) + lineToRelative(-1.4f, -0.62f) + arcToRelative(1.38f, 1.38f, 0.0f, false, false, -1.93f, 1.12f) + lineToRelative(-0.17f, 1.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.58f, 0.65f) + arcToRelative(9.52f, 9.52f, 0.0f, false, true, -4.4f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.57f, -0.65f) + lineToRelative(-0.17f, -1.52f) + arcToRelative(1.38f, 1.38f, 0.0f, false, false, -1.93f, -1.11f) + lineToRelative(-1.4f, 0.62f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.85f, -0.18f) + arcToRelative(9.8f, 9.8f, 0.0f, false, true, -2.2f, -3.8f) + curveToRelative(-0.1f, -0.3f, 0.0f, -0.63f, 0.26f, -0.82f) + lineToRelative(1.25f, -0.92f) + arcToRelative(1.38f, 1.38f, 0.0f, false, false, 0.0f, -2.22f) + lineToRelative(-1.24f, -0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.28f, -0.82f) + arcToRelative(9.8f, 9.8f, 0.0f, false, true, 2.2f, -3.8f) + curveToRelative(0.23f, -0.23f, 0.57f, -0.3f, 0.86f, -0.17f) + lineToRelative(1.4f, 0.62f) + curveToRelative(0.4f, 0.17f, 0.86f, 0.15f, 1.25f, -0.08f) + curveToRelative(0.38f, -0.22f, 0.63f, -0.6f, 0.68f, -1.04f) + lineToRelative(0.17f, -1.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.58f, -0.65f) + curveToRelative(0.72f, -0.16f, 1.45f, -0.24f, 2.2f, -0.25f) + close() + moveTo(12.01f, 3.75f) + curveToRelative(-0.45f, 0.0f, -0.9f, 0.04f, -1.35f, 0.12f) + lineToRelative(-0.11f, 0.97f) + arcToRelative(2.89f, 2.89f, 0.0f, false, true, -4.03f, 2.33f) + lineToRelative(-0.9f, -0.4f) + arcTo(8.3f, 8.3f, 0.0f, false, false, 4.29f, 9.1f) + lineToRelative(0.8f, 0.59f) + arcToRelative(2.88f, 2.88f, 0.0f, false, true, 0.0f, 4.64f) + lineToRelative(-0.8f, 0.59f) + arcToRelative(8.3f, 8.3f, 0.0f, false, false, 1.35f, 2.32f) + lineToRelative(0.9f, -0.4f) + arcToRelative(2.88f, 2.88f, 0.0f, false, true, 4.02f, 2.32f) + lineToRelative(0.1f, 0.99f) + curveToRelative(0.9f, 0.15f, 1.8f, 0.15f, 2.7f, 0.0f) + lineToRelative(0.1f, -0.99f) + arcToRelative(2.88f, 2.88f, 0.0f, false, true, 4.02f, -2.32f) + lineToRelative(0.9f, 0.4f) + arcToRelative(8.3f, 8.3f, 0.0f, false, false, 1.35f, -2.32f) + lineToRelative(-0.8f, -0.59f) + arcToRelative(2.88f, 2.88f, 0.0f, false, true, 0.0f, -4.64f) + lineToRelative(0.8f, -0.59f) + arcToRelative(8.3f, 8.3f, 0.0f, false, false, -1.35f, -2.32f) + lineToRelative(-0.9f, 0.4f) + arcToRelative(2.88f, 2.88f, 0.0f, false, true, -4.02f, -2.32f) + lineToRelative(-0.1f, -0.98f) + curveToRelative(-0.45f, -0.08f, -0.9f, -0.11f, -1.34f, -0.12f) + close() + moveTo(12.0f, 8.25f) + arcToRelative(3.75f, 3.75f, 0.0f, true, true, 0.0f, 7.5f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 0.0f, -7.5f) + close() + moveTo(12.0f, 9.75f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, 4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, -4.5f) + close() + } + } + return _settings!! + } + +private var _settings: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Share.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Share.kt new file mode 100644 index 00000000..00a1e0ce --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Share.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Share: ImageVector + get() { + if (_share != null) { + return _share!! + } + _share = fluentIcon(name = "Regular.Share") { + fluentPath { + moveTo(6.75f, 4.0f) + horizontalLineToRelative(3.46f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 5.5f) + curveToRelative(-1.2f, 0.0f, -2.17f, 0.92f, -2.25f, 2.1f) + verticalLineToRelative(9.65f) + curveToRelative(0.0f, 1.19f, 0.92f, 2.17f, 2.1f, 2.24f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(9.5f) + curveToRelative(1.19f, 0.0f, 2.16f, -0.93f, 2.24f, -2.1f) + verticalLineToRelative(-0.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.6f) + curveToRelative(0.0f, 2.0f, -1.56f, 3.64f, -3.54f, 3.74f) + lineToRelative(-0.2f, 0.01f) + horizontalLineToRelative(-9.5f) + curveToRelative(-2.0f, 0.0f, -3.64f, -1.57f, -3.75f, -3.55f) + verticalLineToRelative(-9.7f) + curveToRelative(0.0f, -2.0f, 1.57f, -3.64f, 3.55f, -3.75f) + horizontalLineToRelative(3.66f) + horizontalLineToRelative(-3.46f) + close() + moveTo(14.5f, 6.52f) + lineTo(14.5f, 3.75f) + curveToRelative(0.0f, -0.62f, 0.7f, -0.96f, 1.19f, -0.61f) + lineToRelative(0.08f, 0.07f) + lineToRelative(6.0f, 5.75f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.7f, 0.07f, 1.0f) + lineToRelative(-0.08f, 0.08f) + lineToRelative(-5.99f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.26f, -0.43f) + verticalLineToRelative(-2.83f) + lineToRelative(-0.35f, 0.03f) + curveToRelative(-2.4f, 0.25f, -4.7f, 1.33f, -6.92f, 3.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.23f, -0.66f) + curveToRelative(0.66f, -5.32f, 3.44f, -8.25f, 8.2f, -8.62f) + lineToRelative(0.3f, -0.02f) + lineTo(14.51f, 3.75f) + verticalLineToRelative(2.77f) + close() + moveTo(16.0f, 5.5f) + verticalLineToRelative(1.74f) + curveToRelative(0.0f, 0.41f, -0.33f, 0.75f, -0.75f, 0.75f) + curveToRelative(-3.87f, 0.0f, -6.27f, 1.68f, -7.31f, 5.16f) + lineToRelative(-0.08f, 0.28f) + lineToRelative(0.35f, -0.24f) + arcToRelative(12.68f, 12.68f, 0.0f, false, true, 7.04f, -2.2f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.74f) + lineToRelative(4.16f, -3.99f) + lineToRelative(-4.16f, -4.0f) + close() + } + } + return _share!! + } + +private var _share: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Star.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Star.kt new file mode 100644 index 00000000..9f06f598 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Star.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Star: ImageVector + get() { + if (_star != null) { + return _star!! + } + _star = fluentIcon(name = "Regular.Star") { + fluentPath { + moveTo(10.79f, 3.1f) + curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) + lineToRelative(2.36f, 4.78f) + lineToRelative(5.27f, 0.77f) + curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) + lineToRelative(-3.82f, 3.72f) + lineToRelative(0.9f, 5.25f) + arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, 1.42f) + lineTo(12.0f, 18.86f) + lineToRelative(-4.72f, 2.48f) + arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) + lineToRelative(0.9f, -5.25f) + lineToRelative(-3.81f, -3.72f) + curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) + lineToRelative(5.27f, -0.77f) + lineToRelative(2.36f, -4.78f) + close() + moveTo(11.99f, 4.04f) + lineTo(9.75f, 8.6f) + curveToRelative(-0.2f, 0.4f, -0.58f, 0.68f, -1.02f, 0.74f) + lineToRelative(-5.05f, 0.74f) + lineToRelative(3.66f, 3.56f) + curveToRelative(0.32f, 0.3f, 0.46f, 0.76f, 0.39f, 1.2f) + lineToRelative(-0.87f, 5.02f) + lineToRelative(4.52f, -2.37f) + curveToRelative(0.4f, -0.2f, 0.86f, -0.2f, 1.26f, 0.0f) + lineToRelative(4.51f, 2.37f) + lineToRelative(-0.86f, -5.03f) + curveToRelative(-0.07f, -0.43f, 0.07f, -0.88f, 0.39f, -1.2f) + lineToRelative(3.65f, -3.55f) + lineToRelative(-5.05f, -0.74f) + arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.01f, -0.74f) + lineTo(12.0f, 4.04f) + close() + } + } + return _star!! + } + +private var _star: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Subtract.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Subtract.kt new file mode 100644 index 00000000..c8861d03 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Subtract.kt @@ -0,0 +1,28 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Subtract: ImageVector + get() { + if (_subtract != null) { + return _subtract!! + } + _subtract = fluentIcon(name = "Regular.Subtract") { + fluentPath { + moveTo(3.75f, 12.5f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + } + } + return _subtract!! + } + +private var _subtract: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Tag.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Tag.kt new file mode 100644 index 00000000..bdcbbb16 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Tag.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Tag: ImageVector + get() { + if (_tag != null) { + return _tag!! + } + _tag = fluentIcon(name = "Regular.Tag") { + fluentPath { + moveTo(19.75f, 2.0f) + curveTo(20.99f, 2.0f, 22.0f, 3.0f, 22.0f, 4.25f) + verticalLineToRelative(5.46f) + curveToRelative(0.0f, 0.86f, -0.34f, 1.69f, -0.95f, 2.3f) + lineToRelative(-8.5f, 8.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -4.6f, 0.0f) + lineTo(3.5f, 16.06f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.6f) + lineToRelative(8.5f, -8.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.3f, -0.96f) + horizontalLineToRelative(5.46f) + close() + moveTo(19.75f, 3.5f) + horizontalLineToRelative(-5.47f) + curveToRelative(-0.46f, 0.0f, -0.9f, 0.18f, -1.23f, 0.51f) + lineToRelative(-8.52f, 8.53f) + curveToRelative(-0.67f, 0.68f, -0.66f, 1.78f, 0.02f, 2.46f) + lineTo(9.0f, 19.45f) + curveToRelative(0.68f, 0.68f, 1.8f, 0.68f, 2.48f, 0.0f) + lineToRelative(8.5f, -8.5f) + curveToRelative(0.33f, -0.33f, 0.51f, -0.77f, 0.51f, -1.24f) + lineTo(20.49f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(17.0f, 5.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + } + } + return _tag!! + } + +private var _tag: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Warning.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Warning.kt new file mode 100644 index 00000000..970a1d97 --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Warning.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Warning: ImageVector + get() { + if (_warning != null) { + return _warning!! + } + _warning = fluentIcon(name = "Regular.Warning") { + fluentPath { + moveTo(13.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(12.74f, 9.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + lineToRelative(0.01f, 4.5f) + verticalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + verticalLineToRelative(-4.5f) + lineToRelative(-0.01f, -0.1f) + close() + moveTo(13.97f, 3.65f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.94f, 0.0f) + lineTo(2.3f, 17.67f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 21.0f) + horizontalLineToRelative(15.49f) + curveToRelative(1.71f, 0.0f, 2.8f, -1.84f, 1.96f, -3.34f) + lineToRelative(-7.74f, -14.0f) + close() + moveTo(11.34f, 4.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.32f, 0.0f) + lineToRelative(7.74f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, 1.11f) + lineTo(4.25f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -1.11f) + lineToRelative(7.74f, -14.0f) + close() + } + } + return _warning!! + } + +private var _warning: ImageVector? = null diff --git a/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Wrench.kt b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Wrench.kt new file mode 100644 index 00000000..bb5738da --- /dev/null +++ b/fluent-icons-core/src/commonMain/kotlin/io/github/composefluent/icons/regular/Wrench.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Wrench: ImageVector + get() { + if (_wrench != null) { + return _wrench!! + } + _wrench = fluentIcon(name = "Regular.Wrench") { + fluentPath { + moveTo(10.5f, 7.75f) + arcToRelative(5.75f, 5.75f, 0.0f, false, true, 8.38f, -5.11f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.19f, 1.2f) + lineTo(16.3f, 6.6f) + lineToRelative(1.06f, 1.06f) + lineToRelative(2.78f, -2.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.2f, 0.18f) + arcToRelative(5.75f, 5.75f, 0.0f, false, true, -6.42f, 8.28f) + lineToRelative(-7.37f, 7.62f) + arcToRelative(3.05f, 3.05f, 0.0f, false, true, -4.4f, -4.24f) + lineTo(10.64f, 9.0f) + curveToRelative(-0.08f, -0.4f, -0.13f, -0.81f, -0.13f, -1.24f) + close() + moveTo(16.25f, 3.5f) + arcTo(4.25f, 4.25f, 0.0f, false, false, 12.18f, 9.0f) + curveToRelative(0.08f, 0.26f, 0.01f, 0.54f, -0.18f, 0.74f) + lineToRelative(-7.76f, 8.03f) + arcToRelative(1.55f, 1.55f, 0.0f, true, false, 2.23f, 2.16f) + lineToRelative(7.67f, -7.94f) + curveToRelative(0.2f, -0.2f, 0.5f, -0.28f, 0.78f, -0.2f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, 5.46f, -5.02f) + lineToRelative(-2.49f, 2.5f) + curveToRelative(-0.3f, 0.28f, -0.77f, 0.28f, -1.06f, 0.0f) + lineToRelative(-2.12f, -2.13f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(2.47f, -2.47f) + curveToRelative(-0.3f, -0.06f, -0.61f, -0.1f, -0.93f, -0.1f) + close() + } + } + return _wrench!! + } + +private var _wrench: ImageVector? = null diff --git a/fluent-icons-extended/build.gradle.kts b/fluent-icons-extended/build.gradle.kts index c17e85de..6d61c6e9 100644 --- a/fluent-icons-extended/build.gradle.kts +++ b/fluent-icons-extended/build.gradle.kts @@ -1,47 +1,25 @@ -import com.konyaco.fluent.plugin.build.BuildConfig -import com.konyaco.fluent.plugin.build.applyTargets +import io.github.composefluent.plugin.build.BuildConfig +import io.github.composefluent.plugin.build.applyTargets plugins { alias(libs.plugins.kotlin.multiplatform) alias(libs.plugins.kotlin.compose) alias(libs.plugins.compose) - alias(libs.plugins.android.library) + alias(libs.plugins.android.kotlin.multiplatform.library) alias(libs.plugins.ksp) - id("maven-publish") - signing + alias(libs.plugins.maven.publish) } group = BuildConfig.group version = BuildConfig.libraryVersion kotlin { - applyTargets() + applyTargets(namespaceModule = ".icons.extended") sourceSets { - val commonMain by getting { - dependencies { - implementation(compose.foundation) - implementation(project(":fluent")) - implementation(project(":fluent-icons-core")) - } + commonMain.dependencies { + implementation(compose.foundation) + implementation(project(":fluent-icons-core")) } - val desktopMain by getting { - dependencies { - implementation(compose.desktop.currentOs) - } - } - val desktopTest by getting - } -} - -android { - compileSdk = BuildConfig.Android.compileSdkVersion - namespace = "${BuildConfig.packageName}.icons.extended" - defaultConfig { - minSdk = BuildConfig.Android.minSdkVersion - } - compileOptions { - sourceCompatibility = BuildConfig.Jvm.javaVersion - targetCompatibility = BuildConfig.Jvm.javaVersion } } diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AccessTime.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AccessTime.kt deleted file mode 100644 index 7409b344..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AccessTime.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AccessTime: ImageVector - get() { - if (_accessTime != null) { - return _accessTime!! - } - _accessTime = fluentIcon(name = "Filled.AccessTime") { - fluentPath { - moveTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 20.0f, 0.0f) - close() - moveTo(7.5f, 8.74f) - arcTo(2.3f, 2.3f, 0.0f, false, true, 9.25f, 8.0f) - curveToRelative(1.15f, 0.0f, 1.9f, 0.8f, 2.15f, 1.66f) - curveToRelative(0.26f, 0.85f, 0.1f, 1.9f, -0.62f, 2.62f) - arcToRelative(8.1f, 8.1f, 0.0f, false, true, -0.79f, 0.67f) - lineToRelative(-0.04f, 0.03f) - curveToRelative(-0.28f, 0.22f, -0.53f, 0.41f, -0.75f, 0.63f) - arcToRelative(2.3f, 2.3f, 0.0f, false, false, -0.58f, 0.89f) - horizontalLineToRelative(2.13f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - curveToRelative(0.0f, -1.25f, 0.52f, -2.08f, 1.14f, -2.7f) - curveToRelative(0.3f, -0.3f, 0.62f, -0.55f, 0.9f, -0.76f) - curveToRelative(0.28f, -0.22f, 0.5f, -0.4f, 0.68f, -0.57f) - curveToRelative(0.27f, -0.27f, 0.37f, -0.72f, 0.25f, -1.13f) - curveToRelative(-0.12f, -0.38f, -0.37f, -0.59f, -0.72f, -0.59f) - reflectiveCurveToRelative(-0.53f, 0.14f, -0.64f, 0.25f) - arcToRelative(0.84f, 0.84f, 0.0f, false, false, -0.15f, 0.23f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.43f, -0.46f) - lineToRelative(0.04f, -0.1f) - lineToRelative(0.08f, -0.17f) - curveToRelative(0.07f, -0.14f, 0.18f, -0.32f, 0.35f, -0.5f) - close() - moveTo(13.25f, 8.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.75f) - horizontalLineToRelative(1.5f) - verticalLineTo(8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(6.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineTo(13.0f) - horizontalLineToRelative(-2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _accessTime!! - } - -private var _accessTime: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Accessibility.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Accessibility.kt deleted file mode 100644 index 24c03899..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Accessibility.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Accessibility: ImageVector - get() { - if (_accessibility != null) { - return _accessibility!! - } - _accessibility = fluentIcon(name = "Filled.Accessibility") { - fluentPath { - moveTo(12.0f, 6.5f) - arcTo(2.25f, 2.25f, 0.0f, true, false, 12.0f, 2.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) - close() - moveTo(6.15f, 4.18f) - arcToRelative(2.27f, 2.27f, 0.0f, false, false, -2.96f, 1.18f) - arcToRelative(2.24f, 2.24f, 0.0f, false, false, 1.18f, 2.96f) - lineTo(7.39f, 9.6f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.61f, 0.92f) - verticalLineToRelative(3.04f) - lineToRelative(-1.88f, 5.46f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 4.26f, 1.46f) - lineToRelative(1.38f, -4.02f) - curveToRelative(0.08f, -0.23f, 0.4f, -0.23f, 0.48f, 0.0f) - lineToRelative(1.38f, 4.02f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 4.26f, -1.46f) - lineTo(16.0f, 13.56f) - verticalLineToRelative(-3.04f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.61f, -0.92f) - lineToRelative(3.02f, -1.28f) - arcToRelative(2.24f, 2.24f, 0.0f, false, false, 1.18f, -2.96f) - arcToRelative(2.27f, 2.27f, 0.0f, false, false, -2.96f, -1.18f) - lineToRelative(-1.6f, 0.68f) - curveToRelative(-0.35f, 0.14f, -0.58f, 0.42f, -0.7f, 0.73f) - arcToRelative(3.8f, 3.8f, 0.0f, false, true, -7.1f, 0.0f) - curveToRelative(-0.12f, -0.3f, -0.35f, -0.59f, -0.7f, -0.73f) - lineToRelative(-1.6f, -0.68f) - close() - } - } - return _accessibility!! - } - -private var _accessibility: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AccessibilityCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AccessibilityCheckmark.kt deleted file mode 100644 index 31f181ab..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AccessibilityCheckmark.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AccessibilityCheckmark: ImageVector - get() { - if (_accessibilityCheckmark != null) { - return _accessibilityCheckmark!! - } - _accessibilityCheckmark = fluentIcon(name = "Filled.AccessibilityCheckmark") { - fluentPath { - moveTo(12.0f, 6.5f) - arcTo(2.25f, 2.25f, 0.0f, true, false, 12.0f, 2.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) - close() - moveTo(6.15f, 4.18f) - arcToRelative(2.27f, 2.27f, 0.0f, false, false, -2.96f, 1.18f) - arcToRelative(2.24f, 2.24f, 0.0f, false, false, 1.18f, 2.96f) - lineTo(7.39f, 9.6f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.61f, 0.92f) - verticalLineToRelative(3.04f) - lineToRelative(-1.88f, 5.46f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 4.26f, 1.46f) - lineToRelative(0.7f, -2.01f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, 4.93f, -7.3f) - verticalLineToRelative(-0.65f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.6f, -0.92f) - lineToRelative(3.02f, -1.28f) - arcToRelative(2.24f, 2.24f, 0.0f, false, false, 1.18f, -2.96f) - arcToRelative(2.27f, 2.27f, 0.0f, false, false, -2.96f, -1.18f) - lineToRelative(-1.6f, 0.68f) - curveToRelative(-0.35f, 0.14f, -0.58f, 0.42f, -0.7f, 0.73f) - arcToRelative(3.8f, 3.8f, 0.0f, false, true, -7.1f, 0.0f) - curveToRelative(-0.12f, -0.3f, -0.35f, -0.59f, -0.7f, -0.73f) - lineToRelative(-1.6f, -0.68f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-3.65f, 3.64f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _accessibilityCheckmark!! - } - -private var _accessibilityCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AddCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AddCircle.kt deleted file mode 100644 index 546a1c87..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AddCircle.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AddCircle: ImageVector - get() { - if (_addCircle != null) { - return _addCircle!! - } - _addCircle = fluentIcon(name = "Filled.AddCircle") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(12.0f, 7.0f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - horizontalLineToRelative(3.6f) - verticalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.1f) - verticalLineToRelative(-3.6f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - horizontalLineToRelative(-3.6f) - verticalLineToRelative(-3.5f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 12.0f, 7.0f) - close() - } - } - return _addCircle!! - } - -private var _addCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AddSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AddSquare.kt deleted file mode 100644 index a7a030e7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AddSquare.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AddSquare: ImageVector - get() { - if (_addSquare != null) { - return _addSquare!! - } - _addSquare = fluentIcon(name = "Filled.AddSquare") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(12.75f, 7.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - verticalLineToRelative(-3.5f) - close() - } - } - return _addSquare!! - } - -private var _addSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AddSubtractCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AddSubtractCircle.kt deleted file mode 100644 index 505e5263..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AddSubtractCircle.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AddSubtractCircle: ImageVector - get() { - if (_addSubtractCircle != null) { - return _addSubtractCircle!! - } - _addSubtractCircle = fluentIcon(name = "Filled.AddSubtractCircle") { - fluentPath { - moveTo(13.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - close() - moveTo(12.0f, 22.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) - close() - moveTo(18.52f, 6.54f) - arcTo(8.5f, 8.5f, 0.0f, false, true, 6.55f, 18.51f) - lineTo(18.51f, 6.55f) - close() - moveTo(6.0f, 8.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - lineTo(8.0f, 8.0f) - lineTo(8.0f, 6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(9.5f, 8.0f) - horizontalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(9.5f, 9.5f) - verticalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(8.0f, 9.5f) - lineTo(6.75f, 9.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 6.0f, 8.75f) - close() - } - } - return _addSubtractCircle!! - } - -private var _addSubtractCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Airplane.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Airplane.kt deleted file mode 100644 index fb325250..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Airplane.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Airplane: ImageVector - get() { - if (_airplane != null) { - return _airplane!! - } - _airplane = fluentIcon(name = "Filled.Airplane") { - fluentPath { - moveTo(21.99f, 11.95f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.05f, 1.99f) - lineToRelative(-4.74f, -0.14f) - lineToRelative(-3.45f, 7.14f) - curveToRelative(-0.28f, 0.57f, -0.86f, 0.94f, -1.5f, 0.94f) - arcToRelative(0.93f, 0.93f, 0.0f, false, true, -0.92f, -1.04f) - lineToRelative(0.86f, -7.19f) - lineToRelative(-3.76f, -0.1f) - lineToRelative(-0.5f, 1.33f) - curveToRelative(-0.18f, 0.51f, -0.66f, 0.85f, -1.2f, 0.85f) - arcToRelative(0.9f, 0.9f, 0.0f, false, true, -0.9f, -0.9f) - verticalLineToRelative(-1.48f) - lineTo(3.0f, 13.18f) - arcToRelative(1.26f, 1.26f, 0.0f, false, true, 0.0f, -2.47f) - lineToRelative(0.82f, -0.17f) - verticalLineTo(9.07f) - arcToRelative(0.9f, 0.9f, 0.0f, false, true, 0.78f, -0.9f) - horizontalLineToRelative(0.12f) - curveToRelative(0.54f, 0.0f, 1.02f, 0.33f, 1.2f, 0.84f) - lineToRelative(0.5f, 1.34f) - lineToRelative(3.75f, -0.1f) - lineToRelative(-0.85f, -7.1f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.51f, 0.4f, -0.93f, 0.92f, -0.93f) - curveToRelative(0.58f, 0.0f, 1.12f, 0.3f, 1.42f, 0.8f) - lineToRelative(0.08f, 0.14f) - lineToRelative(3.4f, 7.04f) - lineToRelative(4.79f, -0.14f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.05f, 1.93f) - verticalLineToRelative(0.06f) - close() - } - } - return _airplane!! - } - -private var _airplane: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AirplaneTakeOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AirplaneTakeOff.kt deleted file mode 100644 index fd0f9c8d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AirplaneTakeOff.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AirplaneTakeOff: ImageVector - get() { - if (_airplaneTakeOff != null) { - return _airplaneTakeOff!! - } - _airplaneTakeOff = fluentIcon(name = "Filled.AirplaneTakeOff") { - fluentPath { - moveTo(12.4f, 5.93f) - lineTo(10.51f, 4.4f) - arcToRelative(1.84f, 1.84f, 0.0f, false, false, -2.76f, 2.33f) - lineToRelative(0.38f, 0.68f) - lineToRelative(3.46f, -0.72f) - curveToRelative(0.06f, -0.01f, 0.17f, -0.06f, 0.3f, -0.2f) - curveToRelative(0.14f, -0.18f, 0.3f, -0.37f, 0.5f, -0.57f) - close() - moveTo(3.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineTo(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(21.55f, 6.83f) - curveToRelative(-0.95f, -1.08f, -2.62f, -2.5f, -4.86f, -2.33f) - arcToRelative(4.7f, 4.7f, 0.0f, false, false, -2.43f, 1.06f) - curveToRelative(-0.67f, 0.52f, -1.22f, 1.12f, -1.6f, 1.57f) - curveToRelative(-0.24f, 0.3f, -0.54f, 0.49f, -0.85f, 0.55f) - lineToRelative(-4.67f, 0.97f) - lineToRelative(-0.96f, -1.77f) - arcTo(1.7f, 1.7f, 0.0f, false, false, 3.0f, 7.7f) - verticalLineToRelative(3.7f) - arcToRelative(2.3f, 2.3f, 0.0f, false, false, 2.73f, 2.24f) - lineToRelative(3.3f, -0.63f) - lineToRelative(-0.51f, 1.23f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 3.46f, 1.97f) - lineToRelative(3.23f, -4.32f) - lineToRelative(5.37f, -1.85f) - arcToRelative(2.14f, 2.14f, 0.0f, false, false, 1.34f, -1.32f) - arcToRelative(1.9f, 1.9f, 0.0f, false, false, -0.37f, -1.88f) - close() - } - } - return _airplaneTakeOff!! - } - -private var _airplaneTakeOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Album.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Album.kt deleted file mode 100644 index a2886435..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Album.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Album: ImageVector - get() { - if (_album != null) { - return _album!! - } - _album = fluentIcon(name = "Filled.Album") { - fluentPath { - moveTo(2.0f, 6.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(1.0f) - verticalLineToRelative(16.0f) - lineTo(4.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(2.0f, 6.0f) - close() - moveTo(16.0f, 8.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(16.5f, 9.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(6.5f, 20.0f) - lineTo(20.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(22.0f, 6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - lineTo(6.5f, 4.0f) - verticalLineToRelative(16.0f) - close() - moveTo(12.0f, 7.0f) - horizontalLineToRelative(4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - verticalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(10.0f, 9.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - close() - } - } - return _album!! - } - -private var _album: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlbumAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlbumAdd.kt deleted file mode 100644 index bb3dd0d0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlbumAdd.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AlbumAdd: ImageVector - get() { - if (_albumAdd != null) { - return _albumAdd!! - } - _albumAdd = fluentIcon(name = "Filled.AlbumAdd") { - fluentPath { - moveTo(2.0f, 6.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(1.0f) - verticalLineToRelative(7.17f) - arcToRelative(6.49f, 6.49f, 0.0f, false, false, -3.0f, 1.64f) - lineTo(2.0f, 6.0f) - close() - moveTo(16.0f, 8.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(16.5f, 9.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(12.5f, 20.0f) - lineTo(20.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(22.0f, 6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - lineTo(6.5f, 4.0f) - verticalLineToRelative(7.0f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, 6.0f, 9.0f) - close() - moveTo(10.0f, 9.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - verticalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(10.0f, 9.0f) - close() - moveTo(6.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(7.0f, 20.5f) - lineTo(7.0f, 18.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - lineTo(7.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -1.0f, 0.0f) - lineTo(6.0f, 17.0f) - lineTo(3.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - lineTo(6.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) - close() - } - } - return _albumAdd!! - } - -private var _albumAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlertBadge.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlertBadge.kt deleted file mode 100644 index b1d0fb35..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlertBadge.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AlertBadge: ImageVector - get() { - if (_alertBadge != null) { - return _alertBadge!! - } - _alertBadge = fluentIcon(name = "Filled.AlertBadge") { - fluentPath { - moveTo(18.5f, 9.0f) - curveToRelative(0.34f, 0.0f, 0.66f, -0.05f, 0.97f, -0.14f) - curveToRelative(0.02f, 0.21f, 0.03f, 0.43f, 0.03f, 0.64f) - verticalLineToRelative(4.0f) - lineToRelative(1.42f, 3.16f) - arcToRelative(0.95f, 0.95f, 0.0f, false, true, -0.87f, 1.34f) - lineTo(3.95f, 18.0f) - arcToRelative(0.95f, 0.95f, 0.0f, false, true, -0.86f, -1.34f) - lineTo(4.5f, 13.5f) - lineTo(4.5f, 9.24f) - arcToRelative(7.5f, 7.5f, 0.0f, false, true, 11.44f, -6.12f) - arcTo(3.49f, 3.49f, 0.0f, false, false, 18.5f, 9.0f) - close() - moveTo(14.96f, 19.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -5.92f, 0.0f) - horizontalLineToRelative(5.92f) - close() - moveTo(18.5f, 8.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) - close() - } - } - return _alertBadge!! - } - -private var _alertBadge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlertOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlertOff.kt deleted file mode 100644 index eedc047b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlertOff.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AlertOff: ImageVector - get() { - if (_alertOff != null) { - return _alertOff!! - } - _alertOff = fluentIcon(name = "Filled.AlertOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(3.0f, 3.0f) - curveToRelative(-0.42f, 0.9f, -0.68f, 1.9f, -0.72f, 2.96f) - verticalLineToRelative(4.26f) - lineToRelative(-1.41f, 3.16f) - arcTo(0.95f, 0.95f, 0.0f, false, false, 3.95f, 18.0f) - horizontalLineToRelative(13.0f) - lineToRelative(3.77f, 3.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(21.0f, 17.05f) - curveToRelative(0.0f, 0.22f, -0.07f, 0.42f, -0.2f, 0.58f) - lineTo(7.06f, 3.87f) - arcTo(7.5f, 7.5f, 0.0f, false, true, 19.5f, 9.5f) - verticalLineToRelative(4.0f) - lineToRelative(1.42f, 3.15f) - curveToRelative(0.05f, 0.12f, 0.08f, 0.26f, 0.08f, 0.4f) - close() - moveTo(14.96f, 19.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -5.92f, 0.0f) - horizontalLineToRelative(5.92f) - close() - } - } - return _alertOff!! - } - -private var _alertOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlertOn.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlertOn.kt deleted file mode 100644 index db640b70..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlertOn.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AlertOn: ImageVector - get() { - if (_alertOn != null) { - return _alertOn!! - } - _alertOn = fluentIcon(name = "Filled.AlertOn") { - fluentPath { - moveTo(9.04f, 19.0f) - horizontalLineToRelative(5.92f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -5.92f, 0.0f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(7.5f, 7.5f, 0.0f, false, true, 7.5f, 7.5f) - verticalLineToRelative(4.0f) - lineToRelative(1.42f, 3.16f) - arcToRelative(0.95f, 0.95f, 0.0f, false, true, -0.87f, 1.34f) - lineTo(3.95f, 18.0f) - arcToRelative(0.95f, 0.95f, 0.0f, false, true, -0.86f, -1.34f) - lineTo(4.5f, 13.5f) - lineTo(4.5f, 9.24f) - arcTo(7.5f, 7.5f, 0.0f, false, true, 12.0f, 2.0f) - close() - moveTo(23.0f, 8.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(21.0f, 9.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(23.0f, 8.25f) - close() - moveTo(3.0f, 8.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(1.0f, 9.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(3.0f, 8.25f) - close() - moveTo(22.6f, 2.55f) - curveToRelative(0.23f, 0.3f, 0.2f, 0.72f, -0.07f, 0.98f) - lineToRelative(-0.08f, 0.07f) - lineToRelative(-2.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, -1.13f) - lineToRelative(0.08f, -0.07f) - lineToRelative(2.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, 0.15f) - close() - moveTo(2.45f, 2.4f) - lineToRelative(2.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.9f, 1.2f) - lineToRelative(-2.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.9f, -1.2f) - close() - } - } - return _alertOn!! - } - -private var _alertOn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlertSnooze.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlertSnooze.kt deleted file mode 100644 index 56f2196b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlertSnooze.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AlertSnooze: ImageVector - get() { - if (_alertSnooze != null) { - return _alertSnooze!! - } - _alertSnooze = fluentIcon(name = "Filled.AlertSnooze") { - fluentPath { - moveTo(15.25f, 7.0f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(1.04f) - lineToRelative(-1.65f, 2.31f) - lineToRelative(-0.06f, 0.1f) - curveToRelative(-0.25f, 0.48f, 0.1f, 1.09f, 0.67f, 1.09f) - horizontalLineToRelative(2.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-1.04f) - lineToRelative(1.65f, -2.31f) - lineToRelative(0.06f, -0.1f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 15.25f, 7.0f) - close() - moveTo(21.25f, 2.0f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(2.13f) - lineToRelative(-2.76f, 4.35f) - lineToRelative(-0.05f, 0.09f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 17.75f, 9.0f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-2.13f) - lineToRelative(2.76f, -4.35f) - lineToRelative(0.05f, -0.09f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 21.25f, 2.0f) - close() - moveTo(12.7f, 5.5f) - horizontalLineToRelative(2.55f) - curveToRelative(0.5f, 0.0f, 0.96f, 0.16f, 1.32f, 0.42f) - lineToRelative(0.62f, -0.99f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -1.69f, -2.06f) - arcToRelative(7.5f, 7.5f, 0.0f, false, false, -11.0f, 6.37f) - verticalLineToRelative(4.26f) - lineToRelative(-1.41f, 3.16f) - arcTo(0.95f, 0.95f, 0.0f, false, false, 3.95f, 18.0f) - horizontalLineToRelative(16.1f) - arcToRelative(0.95f, 0.95f, 0.0f, false, false, 0.87f, -1.34f) - lineTo(19.5f, 13.5f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(-1.75f) - lineToRelative(-0.39f, -0.03f) - arcToRelative(2.24f, 2.24f, 0.0f, false, true, -1.8f, 3.0f) - lineToRelative(-0.06f, 0.02f) - lineToRelative(-0.2f, 0.01f) - horizontalLineToRelative(-2.55f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.0f, -3.3f) - lineToRelative(0.03f, -0.04f) - lineToRelative(0.11f, -0.18f) - lineToRelative(0.38f, -0.53f) - arcToRelative(2.24f, 2.24f, 0.0f, false, true, 1.18f, -3.93f) - horizontalLineToRelative(0.05f) - lineToRelative(0.2f, -0.02f) - close() - moveTo(14.96f, 19.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -5.92f, 0.0f) - horizontalLineToRelative(5.92f) - close() - } - } - return _alertSnooze!! - } - -private var _alertSnooze: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlertUrgent.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlertUrgent.kt deleted file mode 100644 index f1b39b50..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlertUrgent.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AlertUrgent: ImageVector - get() { - if (_alertUrgent != null) { - return _alertUrgent!! - } - _alertUrgent = fluentIcon(name = "Filled.AlertUrgent") { - fluentPath { - moveToRelative(10.43f, 19.92f) - lineToRelative(3.56f, -1.5f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -3.56f, 1.5f) - close() - moveTo(15.86f, 2.1f) - arcToRelative(11.72f, 11.72f, 0.0f, false, true, 4.68f, 4.4f) - arcTo(11.72f, 11.72f, 0.0f, false, true, 22.0f, 12.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, -0.04f) - curveToRelative(0.05f, -2.1f, -0.37f, -3.92f, -1.26f, -5.46f) - arcToRelative(10.23f, 10.23f, 0.0f, false, false, -4.1f, -3.82f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.72f, -1.32f) - close() - moveTo(6.71f, 6.52f) - arcToRelative(5.82f, 5.82f, 0.0f, false, true, 7.6f, 2.74f) - lineToRelative(0.1f, 0.21f) - lineToRelative(1.29f, 2.9f) - lineToRelative(1.7f, 1.46f) - curveToRelative(0.09f, 0.08f, 0.17f, 0.18f, 0.26f, 0.33f) - lineToRelative(0.06f, 0.11f) - curveToRelative(0.28f, 0.63f, 0.0f, 1.37f, -0.64f, 1.65f) - lineTo(6.76f, 20.49f) - arcTo(1.25f, 1.25f, 0.0f, false, true, 5.0f, 19.35f) - lineTo(5.0f, 17.0f) - lineToRelative(-1.24f, -2.79f) - arcToRelative(5.82f, 5.82f, 0.0f, false, true, 2.95f, -7.7f) - close() - moveTo(15.62f, 5.69f) - curveToRelative(0.97f, 0.53f, 1.75f, 1.3f, 2.32f, 2.3f) - curveToRelative(0.57f, 0.99f, 0.85f, 2.04f, 0.82f, 3.14f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, -0.03f) - curveToRelative(0.02f, -0.82f, -0.18f, -1.6f, -0.62f, -2.37f) - arcToRelative(4.42f, 4.42f, 0.0f, false, false, -1.73f, -1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.71f, -1.32f) - close() - } - } - return _alertUrgent!! - } - -private var _alertUrgent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlignBottom.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlignBottom.kt deleted file mode 100644 index 6fc92bfd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlignBottom.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AlignBottom: ImageVector - get() { - if (_alignBottom != null) { - return _alignBottom!! - } - _alignBottom = fluentIcon(name = "Filled.AlignBottom") { - fluentPath { - moveTo(2.75f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(2.75f, 21.0f) - close() - moveTo(4.0f, 15.75f) - curveTo(4.0f, 16.99f, 5.0f, 18.0f, 6.25f, 18.0f) - horizontalLineToRelative(2.5f) - curveTo(9.99f, 18.0f, 11.0f, 17.0f, 11.0f, 15.75f) - lineTo(11.0f, 5.25f) - curveTo(11.0f, 4.01f, 10.0f, 3.0f, 8.75f, 3.0f) - horizontalLineToRelative(-2.5f) - curveTo(5.01f, 3.0f, 4.0f, 4.0f, 4.0f, 5.25f) - verticalLineToRelative(10.5f) - close() - moveTo(13.0f, 15.75f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(2.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-7.0f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-2.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(7.0f) - close() - } - } - return _alignBottom!! - } - -private var _alignBottom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlignCenterHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlignCenterHorizontal.kt deleted file mode 100644 index fa4947d8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlignCenterHorizontal.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AlignCenterHorizontal: ImageVector - get() { - if (_alignCenterHorizontal != null) { - return _alignCenterHorizontal!! - } - _alignCenterHorizontal = fluentIcon(name = "Filled.AlignCenterHorizontal") { - fluentPath { - moveTo(21.25f, 12.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(20.0f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-2.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-2.5f) - curveTo(5.01f, 4.5f, 4.0f, 5.5f, 4.0f, 6.75f) - verticalLineToRelative(4.5f) - horizontalLineTo(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineTo(4.0f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(2.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-4.5f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(2.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-2.5f) - horizontalLineToRelative(1.25f) - close() - } - } - return _alignCenterHorizontal!! - } - -private var _alignCenterHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlignCenterVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlignCenterVertical.kt deleted file mode 100644 index 7f104604..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlignCenterVertical.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AlignCenterVertical: ImageVector - get() { - if (_alignCenterVertical != null) { - return _alignCenterVertical!! - } - _alignCenterVertical = fluentIcon(name = "Filled.AlignCenterVertical") { - fluentPath { - moveTo(11.25f, 21.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineTo(20.0f) - horizontalLineToRelative(2.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-2.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(4.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-4.5f) - verticalLineTo(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineTo(4.0f) - horizontalLineToRelative(-4.5f) - curveTo(5.51f, 4.0f, 4.5f, 5.0f, 4.5f, 6.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-2.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(1.25f) - close() - } - } - return _alignCenterVertical!! - } - -private var _alignCenterVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlignLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlignLeft.kt deleted file mode 100644 index f8ed2f84..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlignLeft.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AlignLeft: ImageVector - get() { - if (_alignLeft != null) { - return _alignLeft!! - } - _alignLeft = fluentIcon(name = "Filled.AlignLeft") { - fluentPath { - moveTo(3.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(3.0f, 2.75f) - close() - moveTo(8.25f, 4.0f) - curveTo(7.01f, 4.0f, 6.0f, 5.0f, 6.0f, 6.25f) - verticalLineToRelative(2.5f) - curveTo(6.0f, 9.99f, 7.0f, 11.0f, 8.25f, 11.0f) - horizontalLineToRelative(10.5f) - curveTo(19.99f, 11.0f, 21.0f, 10.0f, 21.0f, 8.75f) - verticalLineToRelative(-2.5f) - curveTo(21.0f, 5.01f, 20.0f, 4.0f, 18.75f, 4.0f) - lineTo(8.25f, 4.0f) - close() - moveTo(8.25f, 13.0f) - curveTo(7.01f, 13.0f, 6.0f, 14.0f, 6.0f, 15.25f) - verticalLineToRelative(2.5f) - curveTo(6.0f, 18.99f, 7.0f, 20.0f, 8.25f, 20.0f) - horizontalLineToRelative(7.0f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-7.0f) - close() - } - } - return _alignLeft!! - } - -private var _alignLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlignRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlignRight.kt deleted file mode 100644 index 99d35f96..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlignRight.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AlignRight: ImageVector - get() { - if (_alignRight != null) { - return _alignRight!! - } - _alignRight = fluentIcon(name = "Filled.AlignRight") { - fluentPath { - moveTo(21.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(21.0f, 2.75f) - close() - moveTo(15.75f, 4.0f) - curveTo(16.99f, 4.0f, 18.0f, 5.0f, 18.0f, 6.25f) - verticalLineToRelative(2.5f) - curveTo(18.0f, 9.99f, 17.0f, 11.0f, 15.75f, 11.0f) - lineTo(5.25f, 11.0f) - curveTo(4.01f, 11.0f, 3.0f, 10.0f, 3.0f, 8.75f) - verticalLineToRelative(-2.5f) - curveTo(3.0f, 5.01f, 4.0f, 4.0f, 5.25f, 4.0f) - horizontalLineToRelative(10.5f) - close() - moveTo(15.75f, 13.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-7.0f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(7.0f) - close() - } - } - return _alignRight!! - } - -private var _alignRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlignTop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlignTop.kt deleted file mode 100644 index 28527963..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AlignTop.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AlignTop: ImageVector - get() { - if (_alignTop != null) { - return _alignTop!! - } - _alignTop = fluentIcon(name = "Filled.AlignTop") { - fluentPath { - moveTo(2.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(2.75f, 3.0f) - close() - moveTo(4.0f, 8.25f) - curveTo(4.0f, 7.01f, 5.0f, 6.0f, 6.25f, 6.0f) - horizontalLineToRelative(2.5f) - curveTo(9.99f, 6.0f, 11.0f, 7.0f, 11.0f, 8.25f) - verticalLineToRelative(10.5f) - curveTo(11.0f, 19.99f, 10.0f, 21.0f, 8.75f, 21.0f) - horizontalLineToRelative(-2.5f) - curveTo(5.01f, 21.0f, 4.0f, 20.0f, 4.0f, 18.75f) - lineTo(4.0f, 8.25f) - close() - moveTo(13.0f, 8.25f) - curveTo(13.0f, 7.01f, 14.0f, 6.0f, 15.25f, 6.0f) - horizontalLineToRelative(2.5f) - curveTo(18.99f, 6.0f, 20.0f, 7.0f, 20.0f, 8.25f) - verticalLineToRelative(7.0f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-2.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-7.0f) - close() - } - } - return _alignTop!! - } - -private var _alignTop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AnimalCat.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AnimalCat.kt deleted file mode 100644 index 1f531f0c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AnimalCat.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AnimalCat: ImageVector - get() { - if (_animalCat != null) { - return _animalCat!! - } - _animalCat = fluentIcon(name = "Filled.AnimalCat") { - fluentPath { - moveTo(7.25f, 22.0f) - horizontalLineTo(5.8f) - arcToRelative(3.8f, 3.8f, 0.0f, false, true, -2.78f, -6.39f) - lineToRelative(1.14f, -1.22f) - arcToRelative(3.06f, 3.06f, 0.0f, false, false, -0.08f, -4.25f) - lineTo(2.97f, 9.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineToRelative(1.11f, 1.11f) - arcToRelative(4.56f, 4.56f, 0.0f, false, true, 0.11f, 6.34f) - lineToRelative(-1.13f, 1.21f) - arcTo(2.3f, 2.3f, 0.0f, false, false, 5.8f, 20.5f) - horizontalLineToRelative(0.67f) - arcTo(23.84f, 23.84f, 0.0f, false, true, 7.0f, 15.45f) - curveToRelative(0.34f, -1.46f, 0.91f, -3.0f, 1.9f, -4.17f) - arcToRelative(5.4f, 5.4f, 0.0f, false, true, 3.6f, -1.99f) - verticalLineTo(5.15f) - arcTo(3.15f, 3.15f, 0.0f, false, true, 15.64f, 2.0f) - curveTo(16.4f, 2.0f, 17.0f, 2.6f, 17.0f, 3.35f) - verticalLineTo(4.0f) - horizontalLineToRelative(1.64f) - curveToRelative(0.95f, 0.0f, 1.83f, 0.5f, 2.33f, 1.3f) - lineToRelative(0.62f, 1.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.09f, 4.19f) - verticalLineToRelative(9.26f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-0.75f) - verticalLineToRelative(-2.25f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 12.74f, 16.0f) - horizontalLineTo(11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.25f) - curveToRelative(1.25f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineTo(22.0f) - horizontalLineTo(7.25f) - close() - } - } - return _animalCat!! - } - -private var _animalCat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AnimalDog.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AnimalDog.kt deleted file mode 100644 index e43f5d66..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AnimalDog.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AnimalDog: ImageVector - get() { - if (_animalDog != null) { - return _animalDog!! - } - _animalDog = fluentIcon(name = "Filled.AnimalDog") { - fluentPath { - moveTo(10.88f, 8.66f) - curveToRelative(0.38f, 0.22f, 0.84f, 0.34f, 1.37f, 0.34f) - curveToRelative(0.84f, 0.0f, 1.55f, -0.3f, 2.04f, -0.84f) - curveToRelative(0.48f, -0.53f, 0.7f, -1.22f, 0.7f, -1.91f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - curveToRelative(0.0f, 0.38f, -0.11f, 0.69f, -0.3f, 0.9f) - curveToRelative(-0.18f, 0.19f, -0.48f, 0.35f, -0.94f, 0.35f) - curveToRelative(-0.45f, 0.0f, -0.73f, -0.16f, -0.92f, -0.37f) - curveToRelative(-0.18f, -0.21f, -0.3f, -0.5f, -0.33f, -0.84f) - verticalLineTo(4.25f) - curveTo(11.0f, 3.01f, 12.0f, 2.0f, 13.25f, 2.0f) - horizontalLineToRelative(3.18f) - curveToRelative(0.51f, 0.0f, 1.01f, 0.14f, 1.45f, 0.4f) - lineToRelative(2.76f, 1.71f) - curveToRelative(0.22f, 0.14f, 0.36f, 0.38f, 0.36f, 0.64f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-0.25f) - verticalLineToRelative(9.53f) - curveToRelative(0.92f, 0.1f, 1.62f, 0.37f, 2.05f, 0.97f) - curveToRelative(0.25f, 0.36f, 0.36f, 0.76f, 0.4f, 1.13f) - curveToRelative(0.05f, 0.35f, 0.05f, 0.73f, 0.05f, 1.09f) - verticalLineToRelative(0.03f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineTo(17.0f) - verticalLineToRelative(-0.77f) - curveToRelative(0.0f, -0.58f, 0.0f, -2.21f, -1.5f, -3.17f) - verticalLineToRelative(-2.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.26f) - arcToRelative(4.62f, 4.62f, 0.0f, false, false, -0.7f, -0.02f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.08f, 1.5f) - horizontalLineTo(13.5f) - arcToRelative(1.94f, 1.94f, 0.0f, false, true, 0.93f, 0.18f) - curveToRelative(1.04f, 0.48f, 1.07f, 1.44f, 1.07f, 2.07f) - verticalLineTo(22.0f) - horizontalLineTo(5.83f) - arcToRelative(3.83f, 3.83f, 0.0f, false, true, -1.97f, -7.12f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.78f, 1.28f) - arcToRelative(2.33f, 2.33f, 0.0f, false, false, 1.2f, 4.34f) - curveToRelative(0.31f, 0.0f, 0.51f, -0.08f, 0.64f, -0.18f) - curveToRelative(0.14f, -0.1f, 0.25f, -0.23f, 0.33f, -0.4f) - arcToRelative(1.93f, 1.93f, 0.0f, false, false, 0.19f, -0.7f) - verticalLineToRelative(-0.03f) - arcToRelative(7.94f, 7.94f, 0.0f, false, true, 0.03f, -0.65f) - curveToRelative(0.04f, -0.43f, 0.1f, -1.02f, 0.23f, -1.68f) - curveToRelative(0.26f, -1.29f, 0.8f, -2.97f, 1.96f, -4.14f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.54f, -3.36f) - lineToRelative(0.12f, -0.7f) - close() - } - } - return _animalDog!! - } - -private var _animalDog: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AnimalRabbit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AnimalRabbit.kt deleted file mode 100644 index 75a56284..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AnimalRabbit.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AnimalRabbit: ImageVector - get() { - if (_animalRabbit != null) { - return _animalRabbit!! - } - _animalRabbit = fluentIcon(name = "Filled.AnimalRabbit") { - fluentPath { - moveToRelative(15.53f, 5.44f) - lineToRelative(5.43f, 5.43f) - arcToRelative(3.58f, 3.58f, 0.0f, false, true, -3.35f, 6.0f) - verticalLineTo(17.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-2.1f) - verticalLineToRelative(-0.75f) - lineToRelative(-0.01f, -0.17f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.57f, -2.58f) - horizontalLineTo(9.66f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineTo(10.87f) - curveToRelative(0.6f, 0.07f, 1.06f, 0.53f, 1.12f, 1.12f) - verticalLineTo(19.0f) - horizontalLineTo(7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.2f, 0.02f, -0.39f, 0.04f, -0.57f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 1.87f, -3.12f) - arcTo(4.46f, 4.46f, 0.0f, false, true, 9.5f, 10.0f) - horizontalLineToRelative(3.6f) - curveToRelative(0.6f, 0.0f, 1.18f, 0.11f, 1.71f, 0.33f) - curveToRelative(0.16f, -0.28f, 0.36f, -0.54f, 0.6f, -0.78f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.11f, -2.1f) - close() - } - } - return _animalRabbit!! - } - -private var _animalRabbit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AnimalTurtle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AnimalTurtle.kt deleted file mode 100644 index 6bcf15d1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AnimalTurtle.kt +++ /dev/null @@ -1,94 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AnimalTurtle: ImageVector - get() { - if (_animalTurtle != null) { - return _animalTurtle!! - } - _animalTurtle = fluentIcon(name = "Filled.AnimalTurtle") { - fluentPath { - moveTo(11.0f, 6.0f) - arcToRelative(6.14f, 6.14f, 0.0f, false, true, 5.8f, 4.12f) - lineToRelative(0.07f, 0.24f) - lineToRelative(0.05f, 0.14f) - horizontalLineToRelative(2.33f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.74f, 2.58f) - verticalLineToRelative(1.17f) - curveToRelative(0.0f, 0.92f, -0.7f, 1.67f, -1.6f, 1.74f) - horizontalLineToRelative(-1.77f) - lineToRelative(0.24f, 0.6f) - curveToRelative(0.35f, 0.84f, -0.01f, 1.8f, -0.81f, 2.21f) - lineToRelative(-0.14f, 0.07f) - curveToRelative(-0.16f, 0.06f, -0.32f, 0.1f, -0.5f, 0.12f) - horizontalLineToRelative(-1.95f) - curveToRelative(-0.63f, 0.0f, -1.2f, -0.33f, -1.51f, -0.86f) - lineToRelative(-0.08f, -0.14f) - lineToRelative(-0.53f, -1.14f) - horizontalLineToRelative(0.05f) - curveToRelative(-1.4f, 0.18f, -2.82f, 0.2f, -4.22f, 0.06f) - lineToRelative(-0.5f, -0.06f) - lineTo(8.14f, 18.0f) - curveToRelative(-0.3f, 0.61f, -0.9f, 1.0f, -1.59f, 1.0f) - horizontalLineToRelative(-1.8f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.62f, -2.41f) - lineToRelative(0.44f, -1.05f) - arcTo(3.24f, 3.24f, 0.0f, false, true, 2.0f, 12.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.64f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(1.89f) - lineToRelative(0.5f, -1.64f) - arcTo(6.14f, 6.14f, 0.0f, false, true, 11.0f, 6.0f) - close() - moveTo(17.77f, 15.7f) - curveToRelative(-0.77f, 0.3f, -1.55f, 0.56f, -2.35f, 0.76f) - lineToRelative(-0.55f, 0.13f) - lineToRelative(0.36f, 0.77f) - curveToRelative(0.03f, 0.05f, 0.07f, 0.09f, 0.12f, 0.11f) - lineToRelative(0.05f, 0.02f) - horizontalLineToRelative(1.84f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.25f, -0.27f) - lineToRelative(-0.02f, -0.07f) - lineTo(17.0f, 16.0f) - horizontalLineToRelative(-0.05f) - lineToRelative(0.42f, -0.15f) - lineToRelative(0.4f, -0.16f) - close() - moveTo(4.22f, 15.7f) - lineTo(4.62f, 15.84f) - lineTo(5.0f, 15.98f) - lineTo(4.52f, 17.15f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.23f, 0.34f) - horizontalLineToRelative(1.86f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.17f, -0.14f) - lineToRelative(0.36f, -0.76f) - horizontalLineToRelative(0.04f) - curveToRelative(-1.0f, -0.2f, -2.0f, -0.51f, -2.96f, -0.9f) - close() - moveTo(4.02f, 14.0f) - lineTo(4.17f, 13.5f) - horizontalLineToRelative(-0.5f) - lineToRelative(0.02f, 0.05f) - curveToRelative(0.09f, 0.17f, 0.2f, 0.32f, 0.33f, 0.45f) - close() - moveTo(17.37f, 12.0f) - lineTo(18.13f, 14.5f) - horizontalLineToRelative(2.12f) - curveToRelative(0.11f, 0.0f, 0.21f, -0.08f, 0.24f, -0.2f) - verticalLineToRelative(-1.05f) - curveToRelative(0.0f, -0.65f, -0.49f, -1.18f, -1.12f, -1.24f) - horizontalLineToRelative(-0.12f) - lineTo(17.37f, 12.0f) - close() - } - } - return _animalTurtle!! - } - -private var _animalTurtle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AppFolder.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AppFolder.kt deleted file mode 100644 index 2cdd1e0f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AppFolder.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AppFolder: ImageVector - get() { - if (_appFolder != null) { - return _appFolder!! - } - _appFolder = fluentIcon(name = "Filled.AppFolder") { - fluentPath { - moveTo(11.5f, 14.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-2.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(2.0f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-2.0f) - close() - moveTo(18.0f, 14.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-2.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(2.0f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-2.0f) - close() - moveTo(11.5f, 7.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-2.0f) - curveTo(6.78f, 6.0f, 6.0f, 6.78f, 6.0f, 7.75f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(2.0f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-2.0f) - close() - moveTo(18.0f, 7.75f) - curveTo(18.0f, 6.78f, 17.2f, 6.0f, 16.25f, 6.0f) - horizontalLineToRelative(-2.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(2.0f) - curveToRelative(0.96f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-2.0f) - close() - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 6.25f) - close() - } - } - return _appFolder!! - } - -private var _appFolder: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AppGeneric.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AppGeneric.kt deleted file mode 100644 index 170abe91..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AppGeneric.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AppGeneric: ImageVector - get() { - if (_appGeneric != null) { - return _appGeneric!! - } - _appGeneric = fluentIcon(name = "Filled.AppGeneric") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(4.5f, 8.0f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(9.75f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 8.0f) - close() - moveTo(6.0f, 10.35f) - curveToRelative(0.0f, -0.47f, 0.38f, -0.85f, 0.85f, -0.85f) - horizontalLineToRelative(3.3f) - curveToRelative(0.47f, 0.0f, 0.85f, 0.38f, 0.85f, 0.85f) - verticalLineToRelative(6.8f) - curveToRelative(0.0f, 0.47f, -0.38f, 0.85f, -0.85f, 0.85f) - horizontalLineToRelative(-3.3f) - arcToRelative(0.85f, 0.85f, 0.0f, false, true, -0.85f, -0.85f) - verticalLineToRelative(-6.8f) - close() - moveTo(7.5f, 11.0f) - verticalLineToRelative(5.5f) - horizontalLineToRelative(2.0f) - lineTo(9.5f, 11.0f) - horizontalLineToRelative(-2.0f) - close() - moveTo(12.75f, 9.5f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(12.0f, 13.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _appGeneric!! - } - -private var _appGeneric: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AppRecent.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AppRecent.kt deleted file mode 100644 index 740aedd6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AppRecent.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AppRecent: ImageVector - get() { - if (_appRecent != null) { - return _appRecent!! - } - _appRecent = fluentIcon(name = "Filled.AppRecent") { - fluentPath { - moveTo(18.0f, 19.75f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - horizontalLineToRelative(-7.5f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(6.0f, 19.75f) - verticalLineTo(4.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(8.25f, 2.0f) - horizontalLineToRelative(7.5f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(15.5f) - close() - moveTo(19.0f, 5.0f) - horizontalLineToRelative(0.75f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - horizontalLineTo(19.0f) - verticalLineTo(5.0f) - close() - moveTo(5.0f, 19.0f) - horizontalLineToRelative(-0.75f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(2.0f, 16.75f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 5.0f) - horizontalLineTo(5.0f) - verticalLineToRelative(14.0f) - close() - } - } - return _appRecent!! - } - -private var _appRecent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AppStore.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AppStore.kt deleted file mode 100644 index d4973255..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AppStore.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AppStore: ImageVector - get() { - if (_appStore != null) { - return _appStore!! - } - _appStore = fluentIcon(name = "Filled.AppStore") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(9.37f, 15.25f) - lineTo(7.63f, 15.25f) - lineToRelative(-0.07f, 0.12f) - lineToRelative(-0.04f, 0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.28f, 0.74f) - lineToRelative(0.06f, -0.08f) - lineToRelative(0.5f, -0.88f) - close() - moveTo(13.29f, 10.02f) - lineTo(12.42f, 11.52f) - lineTo(15.08f, 16.12f) - lineTo(15.14f, 16.21f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.28f, -0.74f) - lineToRelative(-0.04f, -0.1f) - lineToRelative(-0.5f, -0.87f) - horizontalLineToRelative(0.97f) - curveToRelative(0.34f, -0.05f, 0.6f, -0.31f, 0.64f, -0.64f) - lineToRelative(0.01f, -0.1f) - verticalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, -0.65f) - horizontalLineToRelative(-1.84f) - lineToRelative(-1.72f, -2.99f) - close() - moveTo(13.26f, 7.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, 0.19f) - lineToRelative(-0.05f, 0.08f) - lineToRelative(-0.24f, 0.41f) - lineToRelative(-0.24f, -0.4f) - lineToRelative(-0.05f, -0.09f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.87f, -0.24f) - lineToRelative(-0.1f, 0.05f) - lineToRelative(-0.09f, 0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.23f, 0.86f) - lineToRelative(0.04f, 0.1f) - lineToRelative(0.67f, 1.15f) - lineTo(8.95f, 13.0f) - horizontalLineToRelative(-1.7f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) - horizontalLineToRelative(6.13f) - lineTo(12.4f, 13.0f) - horizontalLineToRelative(-1.73f) - lineToRelative(2.85f, -4.87f) - lineToRelative(0.05f, -0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.32f, -0.93f) - close() - } - } - return _appStore!! - } - -private var _appStore: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AppTitle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AppTitle.kt deleted file mode 100644 index 140e98d2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AppTitle.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AppTitle: ImageVector - get() { - if (_appTitle != null) { - return _appTitle!! - } - _appTitle = fluentIcon(name = "Filled.AppTitle") { - fluentPath { - moveTo(4.75f, 20.5f) - horizontalLineToRelative(14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineTo(4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(14.6f) - horizontalLineToRelative(-14.5f) - close() - moveTo(16.25f, 3.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 20.0f, 6.75f) - verticalLineToRelative(8.5f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 16.25f, 19.0f) - horizontalLineToRelative(-8.5f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 4.0f, 15.25f) - verticalLineToRelative(-8.5f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 7.75f, 3.0f) - horizontalLineToRelative(8.5f) - close() - } - } - return _appTitle!! - } - -private var _appTitle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ApprovalsApp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ApprovalsApp.kt deleted file mode 100644 index 7d3fa153..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ApprovalsApp.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ApprovalsApp: ImageVector - get() { - if (_approvalsApp != null) { - return _approvalsApp!! - } - _approvalsApp = fluentIcon(name = "Filled.ApprovalsApp") { - fluentPath { - moveTo(10.54f, 1.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 0.0f) - lineToRelative(2.5f, 2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.4f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.42f, -1.4f) - lineToRelative(0.76f, -0.77f) - arcToRelative(7.0f, 7.0f, 0.0f, true, false, 7.65f, 7.85f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.98f, 0.24f) - arcToRelative(9.0f, 9.0f, 0.0f, true, true, -9.57f, -10.1f) - lineToRelative(-0.82f, -0.81f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.42f) - close() - moveTo(16.21f, 9.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.4f) - lineToRelative(-4.5f, 4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 0.0f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.42f, -1.4f) - lineTo(11.0f, 13.58f) - lineToRelative(3.8f, -3.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) - close() - } - } - return _approvalsApp!! - } - -private var _approvalsApp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Apps.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Apps.kt deleted file mode 100644 index c2ad900f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Apps.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Apps: ImageVector - get() { - if (_apps != null) { - return _apps!! - } - _apps = fluentIcon(name = "Filled.Apps") { - fluentPath { - moveToRelative(18.5f, 2.33f) - lineToRelative(3.17f, 3.18f) - curveToRelative(0.88f, 0.88f, 0.88f, 2.3f, 0.0f, 3.18f) - lineToRelative(-2.58f, 2.59f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 21.0f, 13.5f) - verticalLineToRelative(5.25f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(5.25f, 21.0f) - curveTo(4.01f, 21.0f, 3.0f, 20.0f, 3.0f, 18.75f) - lineTo(3.0f, 5.25f) - curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(5.25f) - curveToRelative(1.13f, 0.0f, 2.06f, 0.83f, 2.23f, 1.92f) - lineToRelative(2.58f, -2.59f) - curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.0f) - close() - moveTo(4.5f, 18.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(-6.75f) - lineTo(4.5f, 12.75f) - verticalLineToRelative(6.0f) - close() - moveTo(12.75f, 19.5f) - horizontalLineToRelative(6.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(19.5f, 13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-6.0f) - verticalLineToRelative(6.75f) - close() - moveTo(10.5f, 4.5f) - lineTo(5.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.0f) - horizontalLineToRelative(6.75f) - verticalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(12.75f, 9.3f) - verticalLineToRelative(1.95f) - horizontalLineToRelative(1.94f) - lineTo(12.75f, 9.3f) - close() - } - } - return _apps!! - } - -private var _apps: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AppsAddIn.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AppsAddIn.kt deleted file mode 100644 index 984dd66c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AppsAddIn.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AppsAddIn: ImageVector - get() { - if (_appsAddIn != null) { - return _appsAddIn!! - } - _appsAddIn = fluentIcon(name = "Filled.AppsAddIn") { - fluentPath { - moveTo(10.5f, 3.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 13.0f, 5.5f) - lineTo(13.0f, 11.0f) - horizontalLineToRelative(5.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) - verticalLineToRelative(5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.5f, 2.5f) - horizontalLineToRelative(-13.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 3.0f, 18.5f) - verticalLineToRelative(-13.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 5.5f, 3.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(11.0f, 13.0f) - lineTo(5.0f, 13.0f) - verticalLineToRelative(5.5f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - lineTo(11.0f, 19.0f) - verticalLineToRelative(-6.0f) - close() - moveTo(18.5f, 13.0f) - lineTo(13.0f, 13.0f) - verticalLineToRelative(6.0f) - horizontalLineToRelative(5.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(10.5f, 5.0f) - horizontalLineToRelative(-5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - lineTo(5.0f, 11.0f) - horizontalLineToRelative(6.0f) - lineTo(11.0f, 5.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(17.88f, 2.0f) - lineTo(18.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(19.0f, 5.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(22.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - lineTo(19.0f, 7.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - lineTo(18.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - lineTo(17.0f, 7.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - lineTo(14.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) - lineTo(17.0f, 5.0f) - lineTo(17.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) - lineTo(18.0f, 2.0f) - horizontalLineToRelative(-0.12f) - close() - } - } - return _appsAddIn!! - } - -private var _appsAddIn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AppsList.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AppsList.kt deleted file mode 100644 index 7610ab5c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AppsList.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AppsList: ImageVector - get() { - if (_appsList != null) { - return _appsList!! - } - _appsList = fluentIcon(name = "Filled.AppsList") { - fluentPath { - moveTo(6.25f, 16.0f) - curveTo(7.2f, 16.0f, 8.0f, 16.8f, 8.0f, 17.75f) - verticalLineToRelative(2.5f) - curveTo(8.0f, 21.22f, 7.2f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(-2.5f) - curveTo(2.78f, 22.0f, 2.0f, 21.22f, 2.0f, 20.25f) - verticalLineToRelative(-2.5f) - curveTo(2.0f, 16.8f, 2.78f, 16.0f, 3.75f, 16.0f) - horizontalLineToRelative(2.5f) - close() - moveTo(9.75f, 18.0f) - horizontalLineToRelative(11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(9.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(11.6f) - horizontalLineToRelative(-11.5f) - close() - moveTo(6.25f, 9.0f) - curveTo(7.2f, 9.0f, 8.0f, 9.78f, 8.0f, 10.75f) - verticalLineToRelative(2.5f) - curveTo(8.0f, 14.22f, 7.2f, 15.0f, 6.25f, 15.0f) - horizontalLineToRelative(-2.5f) - curveTo(2.78f, 15.0f, 2.0f, 14.22f, 2.0f, 13.25f) - verticalLineToRelative(-2.5f) - curveTo(2.0f, 9.78f, 2.78f, 9.0f, 3.75f, 9.0f) - horizontalLineToRelative(2.5f) - close() - moveTo(9.75f, 11.0f) - horizontalLineToRelative(11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(9.75f, 12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(11.6f) - horizontalLineToRelative(-11.5f) - close() - moveTo(6.25f, 2.0f) - curveTo(7.2f, 2.0f, 8.0f, 2.78f, 8.0f, 3.75f) - verticalLineToRelative(2.5f) - curveTo(8.0f, 7.2f, 7.2f, 8.0f, 6.25f, 8.0f) - horizontalLineToRelative(-2.5f) - curveTo(2.78f, 8.0f, 2.0f, 7.2f, 2.0f, 6.25f) - verticalLineToRelative(-2.5f) - curveTo(2.0f, 2.78f, 2.78f, 2.0f, 3.75f, 2.0f) - horizontalLineToRelative(2.5f) - close() - moveTo(9.75f, 4.0f) - horizontalLineToRelative(11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(9.75f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(11.6f) - horizontalLineToRelative(-11.5f) - close() - } - } - return _appsList!! - } - -private var _appsList: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AppsListDetail.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AppsListDetail.kt deleted file mode 100644 index 2c442c28..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AppsListDetail.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AppsListDetail: ImageVector - get() { - if (_appsListDetail != null) { - return _appsListDetail!! - } - _appsListDetail = fluentIcon(name = "Filled.AppsListDetail") { - fluentPath { - moveTo(4.25f, 4.0f) - curveTo(3.01f, 4.0f, 2.0f, 5.0f, 2.0f, 6.25f) - verticalLineToRelative(2.5f) - curveTo(2.0f, 9.99f, 3.0f, 11.0f, 4.25f, 11.0f) - horizontalLineToRelative(2.5f) - curveTo(7.99f, 11.0f, 9.0f, 10.0f, 9.0f, 8.75f) - verticalLineToRelative(-2.5f) - curveTo(9.0f, 5.01f, 8.0f, 4.0f, 6.75f, 4.0f) - horizontalLineToRelative(-2.5f) - close() - moveTo(11.25f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-10.0f) - close() - moveTo(11.25f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-7.0f) - close() - moveTo(4.25f, 13.0f) - curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) - verticalLineToRelative(2.5f) - curveTo(2.0f, 18.99f, 3.0f, 20.0f, 4.25f, 20.0f) - horizontalLineToRelative(2.5f) - curveTo(7.99f, 20.0f, 9.0f, 19.0f, 9.0f, 17.75f) - verticalLineToRelative(-2.5f) - curveTo(9.0f, 14.01f, 8.0f, 13.0f, 6.75f, 13.0f) - horizontalLineToRelative(-2.5f) - close() - moveTo(11.25f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-10.0f) - close() - moveTo(11.25f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-7.0f) - close() - } - } - return _appsListDetail!! - } - -private var _appsListDetail: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Archive.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Archive.kt deleted file mode 100644 index 8f0c7c27..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Archive.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Archive: ImageVector - get() { - if (_archive != null) { - return _archive!! - } - _archive = fluentIcon(name = "Filled.Archive") { - fluentPath { - moveTo(3.0f, 4.5f) - curveTo(3.0f, 3.67f, 3.67f, 3.0f, 4.5f, 3.0f) - horizontalLineToRelative(15.0f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - lineTo(21.0f, 6.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-15.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 3.0f, 6.0f) - lineTo(3.0f, 4.5f) - close() - moveTo(4.0f, 9.0f) - horizontalLineToRelative(16.0f) - verticalLineToRelative(8.25f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 16.25f, 21.0f) - horizontalLineToRelative(-8.5f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 4.0f, 17.25f) - lineTo(4.0f, 9.0f) - close() - moveTo(10.25f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - close() - } - } - return _archive!! - } - -private var _archive: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArchiveArrowBack.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArchiveArrowBack.kt deleted file mode 100644 index 5922eef3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArchiveArrowBack.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArchiveArrowBack: ImageVector - get() { - if (_archiveArrowBack != null) { - return _archiveArrowBack!! - } - _archiveArrowBack = fluentIcon(name = "Filled.ArchiveArrowBack") { - fluentPath { - moveTo(3.0f, 4.5f) - curveTo(3.0f, 3.67f, 3.67f, 3.0f, 4.5f, 3.0f) - horizontalLineToRelative(15.0f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - lineTo(21.0f, 6.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-15.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 3.0f, 6.0f) - lineTo(3.0f, 4.5f) - close() - moveTo(4.0f, 9.0f) - horizontalLineToRelative(16.0f) - verticalLineToRelative(2.5f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, -5.5f, 0.23f) - curveToRelative(-0.01f, -0.4f, -0.34f, -0.73f, -0.75f, -0.73f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.1f) - arcToRelative(6.49f, 6.49f, 0.0f, false, false, -1.33f, 8.5f) - lineTo(7.75f, 21.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 4.0f, 17.25f) - lineTo(4.0f, 9.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(16.35f, 15.35f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(1.5f, 1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-0.64f, -0.65f) - horizontalLineToRelative(2.04f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(0.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-0.25f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-2.04f) - lineToRelative(0.64f, -0.65f) - close() - } - } - return _archiveArrowBack!! - } - -private var _archiveArrowBack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArchiveMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArchiveMultiple.kt deleted file mode 100644 index 1baf0963..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArchiveMultiple.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArchiveMultiple: ImageVector - get() { - if (_archiveMultiple != null) { - return _archiveMultiple!! - } - _archiveMultiple = fluentIcon(name = "Filled.ArchiveMultiple") { - fluentPath { - moveTo(4.75f, 2.0f) - curveTo(3.78f, 2.0f, 3.0f, 2.78f, 3.0f, 3.75f) - verticalLineToRelative(1.5f) - curveTo(3.0f, 6.22f, 3.78f, 7.0f, 4.75f, 7.0f) - horizontalLineToRelative(13.5f) - curveTo(19.22f, 7.0f, 20.0f, 6.22f, 20.0f, 5.25f) - verticalLineToRelative(-1.5f) - curveTo(20.0f, 2.78f, 19.22f, 2.0f, 18.25f, 2.0f) - lineTo(4.75f, 2.0f) - close() - moveTo(19.0f, 8.0f) - lineTo(4.0f, 8.0f) - verticalLineToRelative(7.75f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 3.75f, 3.75f) - horizontalLineToRelative(7.5f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 19.0f, 15.75f) - lineTo(19.0f, 8.0f) - close() - moveTo(9.0f, 11.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.48f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(9.75f, 12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(21.5f, 11.75f) - curveToRelative(0.0f, -1.23f, -0.59f, -2.32f, -1.5f, -3.0f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 2.35f, -1.9f, 4.25f, -4.25f, 4.25f) - horizontalLineToRelative(-8.5f) - curveToRelative(0.68f, 0.91f, 1.77f, 1.5f, 3.0f, 1.5f) - horizontalLineToRelative(5.5f) - arcToRelative(5.75f, 5.75f, 0.0f, false, false, 5.75f, -5.75f) - verticalLineToRelative(-4.5f) - close() - } - } - return _archiveMultiple!! - } - -private var _archiveMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArchiveSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArchiveSettings.kt deleted file mode 100644 index 04f6934c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArchiveSettings.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArchiveSettings: ImageVector - get() { - if (_archiveSettings != null) { - return _archiveSettings!! - } - _archiveSettings = fluentIcon(name = "Filled.ArchiveSettings") { - fluentPath { - moveTo(3.0f, 4.5f) - curveTo(3.0f, 3.67f, 3.67f, 3.0f, 4.5f, 3.0f) - horizontalLineToRelative(15.0f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - lineTo(21.0f, 6.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-15.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 3.0f, 6.0f) - lineTo(3.0f, 4.5f) - close() - moveTo(4.0f, 9.0f) - horizontalLineToRelative(16.0f) - verticalLineToRelative(2.5f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, -5.5f, 0.23f) - curveToRelative(-0.01f, -0.4f, -0.34f, -0.73f, -0.75f, -0.73f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.1f) - arcToRelative(6.49f, 6.49f, 0.0f, false, false, -1.33f, 8.5f) - lineTo(7.75f, 21.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 4.0f, 17.25f) - lineTo(4.0f, 9.0f) - close() - moveTo(14.28f, 13.98f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.59f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) - lineToRelative(0.55f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) - lineToRelative(-0.19f, 0.64f) - curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) - lineToRelative(0.49f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.9f) - lineToRelative(-0.2f, -0.7f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) - lineToRelative(0.59f, -0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, -0.01f, -1.8f) - lineToRelative(-0.54f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.19f, -0.63f) - curveToRelative(-0.44f, -0.39f, -0.94f, -0.7f, -1.49f, -0.93f) - lineToRelative(-0.49f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.91f) - lineToRelative(0.2f, 0.69f) - close() - moveTo(17.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) - close() - } - } - return _archiveSettings!! - } - -private var _archiveSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowAutofitContent.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowAutofitContent.kt deleted file mode 100644 index 84162d11..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowAutofitContent.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowAutofitContent: ImageVector - get() { - if (_arrowAutofitContent != null) { - return _arrowAutofitContent!! - } - _arrowAutofitContent = fluentIcon(name = "Filled.ArrowAutofitContent") { - fluentPath { - moveTo(6.06f, 5.24f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.12f, -0.98f) - lineToRelative(-1.75f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 0.98f) - lineToRelative(1.75f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.12f, -0.98f) - lineTo(5.4f, 7.5f) - horizontalLineToRelative(2.86f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(5.4f) - lineToRelative(0.66f, -0.76f) - close() - moveTo(18.02f, 4.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 1.05f) - lineToRelative(0.66f, 0.76f) - horizontalLineToRelative(-2.86f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.86f) - lineToRelative(-0.66f, 0.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, 0.98f) - lineToRelative(1.75f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -0.98f) - lineToRelative(-1.75f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -0.07f) - close() - moveTo(5.75f, 11.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 13.75f) - verticalLineToRelative(4.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, 2.75f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 17.75f) - verticalLineToRelative(-4.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 11.0f) - horizontalLineTo(5.75f) - close() - moveTo(6.0f, 15.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineTo(6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _arrowAutofitContent!! - } - -private var _arrowAutofitContent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowAutofitDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowAutofitDown.kt deleted file mode 100644 index 287d6a86..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowAutofitDown.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowAutofitDown: ImageVector - get() { - if (_arrowAutofitDown != null) { - return _arrowAutofitDown!! - } - _arrowAutofitDown = fluentIcon(name = "Filled.ArrowAutofitDown") { - fluentPath { - moveToRelative(12.95f, 18.1f) - lineToRelative(0.09f, 0.1f) - lineToRelative(2.35f, 2.36f) - curveToRelative(0.18f, 0.27f, 0.5f, 0.44f, 0.86f, 0.44f) - curveToRelative(0.32f, 0.0f, 0.62f, -0.14f, 0.8f, -0.37f) - horizontalLineToRelative(0.01f) - lineToRelative(0.05f, -0.07f) - lineToRelative(2.36f, -2.36f) - lineToRelative(0.08f, -0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.01f, -1.18f) - verticalLineToRelative(-0.01f) - lineToRelative(-0.1f, -0.12f) - lineToRelative(-0.1f, -0.09f) - horizontalLineToRelative(-0.01f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.18f, -0.01f) - lineToRelative(-0.12f, 0.1f) - lineToRelative(-0.8f, 0.8f) - verticalLineTo(3.79f) - lineToRelative(-0.01f, -0.01f) - curveToRelative(-0.07f, -0.47f, -0.51f, -0.78f, -0.99f, -0.78f) - reflectiveCurveToRelative(-0.92f, 0.31f, -0.99f, 0.78f) - lineToRelative(-0.01f, 0.12f) - verticalLineToRelative(13.69f) - lineToRelative(-0.8f, -0.8f) - lineToRelative(-0.1f, -0.09f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.4f) - close() - moveTo(4.0f, 17.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 20.0f) - horizontalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - verticalLineToRelative(-11.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-6.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 6.5f) - verticalLineToRelative(11.0f) - close() - } - } - return _arrowAutofitDown!! - } - -private var _arrowAutofitDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowAutofitHeight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowAutofitHeight.kt deleted file mode 100644 index d3f6724f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowAutofitHeight.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowAutofitHeight: ImageVector - get() { - if (_arrowAutofitHeight != null) { - return _arrowAutofitHeight!! - } - _arrowAutofitHeight = fluentIcon(name = "Filled.ArrowAutofitHeight") { - fluentPath { - moveToRelative(12.95f, 5.9f) - lineToRelative(0.09f, -0.1f) - lineToRelative(2.35f, -2.36f) - curveToRelative(0.18f, -0.27f, 0.5f, -0.44f, 0.86f, -0.44f) - curveToRelative(0.32f, 0.0f, 0.62f, 0.14f, 0.8f, 0.37f) - horizontalLineToRelative(0.01f) - lineToRelative(0.05f, 0.07f) - lineToRelative(2.36f, 2.36f) - lineToRelative(0.08f, 0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.01f, 1.18f) - verticalLineToRelative(0.01f) - lineToRelative(-0.1f, 0.12f) - lineToRelative(-0.1f, 0.09f) - horizontalLineToRelative(-0.01f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.18f, 0.01f) - lineToRelative(-0.12f, -0.1f) - lineToRelative(-0.8f, -0.8f) - lineTo(17.25f, 9.71f) - lineToRelative(-0.01f, 0.01f) - curveToRelative(-0.07f, 0.47f, -0.51f, 0.78f, -0.99f, 0.78f) - reflectiveCurveToRelative(-0.92f, -0.31f, -0.99f, -0.78f) - lineToRelative(-0.01f, -0.12f) - lineTo(15.25f, 6.41f) - lineToRelative(-0.8f, 0.8f) - lineToRelative(-0.1f, 0.09f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.4f) - close() - moveTo(4.0f, 6.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 4.0f) - horizontalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(11.0f) - curveToRelative(0.0f, 0.27f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-4.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 17.5f) - verticalLineToRelative(-11.0f) - close() - moveTo(14.45f, 16.79f) - lineTo(14.35f, 16.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.3f, 1.5f) - lineToRelative(2.34f, 2.36f) - curveToRelative(0.18f, 0.27f, 0.5f, 0.44f, 0.86f, 0.44f) - reflectiveCurveToRelative(0.68f, -0.17f, 0.86f, -0.44f) - lineToRelative(2.36f, -2.36f) - lineToRelative(0.08f, -0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.09f, -1.3f) - verticalLineToRelative(-0.01f) - lineToRelative(-0.1f, -0.09f) - horizontalLineToRelative(-0.01f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.3f, 0.1f) - lineToRelative(-0.8f, 0.79f) - verticalLineToRelative(-3.31f) - curveToRelative(-0.08f, -0.47f, -0.52f, -0.78f, -1.0f, -0.78f) - curveToRelative(-0.52f, 0.0f, -1.0f, 0.38f, -1.0f, 0.9f) - verticalLineToRelative(3.19f) - lineToRelative(-0.8f, -0.8f) - close() - } - } - return _arrowAutofitHeight!! - } - -private var _arrowAutofitHeight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowAutofitHeightDotted.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowAutofitHeightDotted.kt deleted file mode 100644 index c3658594..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowAutofitHeightDotted.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowAutofitHeightDotted: ImageVector - get() { - if (_arrowAutofitHeightDotted != null) { - return _arrowAutofitHeightDotted!! - } - _arrowAutofitHeightDotted = fluentIcon(name = "Filled.ArrowAutofitHeightDotted") { - fluentPath { - moveTo(17.2f, 3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 1.4f) - lineToRelative(1.8f, -1.79f) - lineToRelative(1.8f, 1.8f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, -1.42f) - lineToRelative(-2.5f, -2.5f) - close() - moveTo(6.5f, 4.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 6.5f) - verticalLineToRelative(11.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 20.0f) - horizontalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - verticalLineToRelative(-11.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(17.2f, 20.7f) - lineTo(19.7f, 18.2f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.4f) - lineToRelative(-1.8f, 1.79f) - lineToRelative(-1.8f, -1.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) - lineToRelative(2.5f, 2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(16.5f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(16.5f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(17.5f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - } - } - return _arrowAutofitHeightDotted!! - } - -private var _arrowAutofitHeightDotted: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowAutofitUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowAutofitUp.kt deleted file mode 100644 index adadc9c5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowAutofitUp.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowAutofitUp: ImageVector - get() { - if (_arrowAutofitUp != null) { - return _arrowAutofitUp!! - } - _arrowAutofitUp = fluentIcon(name = "Filled.ArrowAutofitUp") { - fluentPath { - moveToRelative(12.95f, 5.9f) - lineToRelative(0.09f, -0.1f) - lineToRelative(2.35f, -2.36f) - curveToRelative(0.18f, -0.27f, 0.5f, -0.44f, 0.86f, -0.44f) - curveToRelative(0.32f, 0.0f, 0.62f, 0.14f, 0.8f, 0.37f) - horizontalLineToRelative(0.01f) - lineToRelative(0.05f, 0.07f) - lineToRelative(2.36f, 2.36f) - lineToRelative(0.08f, 0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.01f, 1.18f) - verticalLineToRelative(0.01f) - lineToRelative(-0.1f, 0.12f) - lineToRelative(-0.1f, 0.09f) - horizontalLineToRelative(-0.01f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.18f, 0.01f) - lineToRelative(-0.12f, -0.1f) - lineToRelative(-0.8f, -0.8f) - verticalLineTo(20.21f) - lineToRelative(-0.01f, 0.01f) - curveToRelative(-0.07f, 0.47f, -0.51f, 0.78f, -0.99f, 0.78f) - reflectiveCurveToRelative(-0.92f, -0.31f, -0.99f, -0.78f) - lineToRelative(-0.01f, -0.12f) - verticalLineTo(6.41f) - lineToRelative(-0.8f, 0.8f) - lineToRelative(-0.1f, 0.09f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.4f) - close() - moveTo(4.0f, 6.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 4.0f) - horizontalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(11.0f) - curveToRelative(0.0f, 0.27f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-6.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 17.5f) - verticalLineToRelative(-11.0f) - close() - } - } - return _arrowAutofitUp!! - } - -private var _arrowAutofitUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowAutofitWidth.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowAutofitWidth.kt deleted file mode 100644 index 00f892aa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowAutofitWidth.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowAutofitWidth: ImageVector - get() { - if (_arrowAutofitWidth != null) { - return _arrowAutofitWidth!! - } - _arrowAutofitWidth = fluentIcon(name = "Filled.ArrowAutofitWidth") { - fluentPath { - moveTo(17.5f, 4.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 20.0f, 6.5f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - horizontalLineToRelative(-11.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-4.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 4.0f) - horizontalLineToRelative(11.0f) - close() - moveTo(18.2f, 13.04f) - lineTo(18.1f, 12.95f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.4f) - lineToRelative(0.09f, 0.1f) - lineToRelative(0.8f, 0.8f) - lineTo(14.29f, 15.25f) - lineToRelative(-0.01f, 0.01f) - curveToRelative(-0.47f, 0.07f, -0.78f, 0.51f, -0.78f, 0.99f) - reflectiveCurveToRelative(0.31f, 0.92f, 0.78f, 0.99f) - lineToRelative(0.12f, 0.01f) - horizontalLineToRelative(3.19f) - lineToRelative(-0.8f, 0.8f) - lineToRelative(-0.1f, 0.11f) - verticalLineToRelative(0.01f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.18f) - horizontalLineToRelative(0.01f) - lineToRelative(0.1f, 0.11f) - lineToRelative(0.1f, 0.1f) - horizontalLineToRelative(0.02f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.17f, 0.0f) - lineToRelative(0.01f, -0.01f) - lineToRelative(0.1f, -0.08f) - lineToRelative(2.36f, -2.36f) - lineToRelative(0.07f, -0.05f) - curveToRelative(0.23f, -0.19f, 0.37f, -0.49f, 0.37f, -0.8f) - curveToRelative(0.0f, -0.37f, -0.17f, -0.69f, -0.44f, -0.87f) - lineToRelative(-2.36f, -2.35f) - close() - moveTo(7.27f, 14.36f) - lineToRelative(-0.08f, 0.1f) - lineToRelative(-0.8f, 0.8f) - horizontalLineToRelative(3.18f) - curveToRelative(0.53f, 0.0f, 0.9f, 0.47f, 0.9f, 1.0f) - curveToRelative(0.0f, 0.47f, -0.31f, 0.91f, -0.77f, 0.98f) - horizontalLineToRelative(-0.01f) - lineToRelative(-0.11f, 0.01f) - horizontalLineToRelative(-3.2f) - lineToRelative(0.8f, 0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.1f, 1.3f) - lineToRelative(-0.1f, 0.1f) - verticalLineToRelative(0.01f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.3f, 0.1f) - lineToRelative(-0.1f, -0.1f) - lineToRelative(-2.36f, -2.35f) - curveToRelative(-0.28f, -0.17f, -0.45f, -0.5f, -0.45f, -0.86f) - curveToRelative(0.0f, -0.35f, 0.17f, -0.68f, 0.45f, -0.86f) - lineToRelative(2.35f, -2.34f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.5f, 1.3f) - close() - } - } - return _arrowAutofitWidth!! - } - -private var _arrowAutofitWidth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowAutofitWidthDotted.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowAutofitWidthDotted.kt deleted file mode 100644 index 83b1cd6d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowAutofitWidthDotted.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowAutofitWidthDotted: ImageVector - get() { - if (_arrowAutofitWidthDotted != null) { - return _arrowAutofitWidthDotted!! - } - _arrowAutofitWidthDotted = fluentIcon(name = "Filled.ArrowAutofitWidthDotted") { - fluentPath { - moveTo(20.0f, 6.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 17.5f, 4.0f) - horizontalLineToRelative(-11.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 6.5f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.28f, 0.23f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(11.0f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(18.2f, 19.7f) - lineTo(20.7f, 17.2f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.4f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.4f) - lineToRelative(1.79f, 1.8f) - lineToRelative(-1.8f, 1.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.4f) - close() - moveTo(3.3f, 15.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.4f) - lineToRelative(2.5f, 2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, -1.4f) - lineToRelative(-1.79f, -1.8f) - lineToRelative(1.8f, -1.8f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.42f, -1.4f) - lineToRelative(-2.5f, 2.5f) - close() - moveTo(13.0f, 16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(9.0f, 15.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(8.0f, 17.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(1.0f) - close() - moveTo(17.0f, 16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - close() - } - } - return _arrowAutofitWidthDotted!! - } - -private var _arrowAutofitWidthDotted: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowBetweenDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowBetweenDown.kt deleted file mode 100644 index b2e9a974..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowBetweenDown.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowBetweenDown: ImageVector - get() { - if (_arrowBetweenDown != null) { - return _arrowBetweenDown!! - } - _arrowBetweenDown = fluentIcon(name = "Filled.ArrowBetweenDown") { - fluentPath { - moveTo(6.5f, 2.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) - verticalLineToRelative(0.25f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 7.0f, 5.0f) - horizontalLineToRelative(10.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) - verticalLineToRelative(-0.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(0.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - lineTo(7.0f, 3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - verticalLineToRelative(-0.25f) - close() - moveTo(12.0f, 6.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(7.09f) - lineToRelative(2.8f, -2.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.42f) - lineToRelative(-4.5f, 4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) - lineToRelative(-4.5f, -4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, -1.42f) - lineToRelative(2.8f, 2.8f) - lineTo(11.0f, 7.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(4.5f, 21.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 7.0f, 19.0f) - horizontalLineToRelative(10.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) - verticalLineToRelative(0.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-0.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - lineTo(7.0f, 21.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(0.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-0.25f) - close() - } - } - return _arrowBetweenDown!! - } - -private var _arrowBetweenDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowBidirectionalUpDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowBidirectionalUpDown.kt deleted file mode 100644 index e2e6d861..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowBidirectionalUpDown.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowBidirectionalUpDown: ImageVector - get() { - if (_arrowBidirectionalUpDown != null) { - return _arrowBidirectionalUpDown!! - } - _arrowBidirectionalUpDown = fluentIcon(name = "Filled.ArrowBidirectionalUpDown") { - fluentPath { - moveTo(7.97f, 9.69f) - arcTo(1.0f, 1.0f, 0.0f, true, true, 6.54f, 8.3f) - lineToRelative(4.75f, -5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.45f, 0.0f) - lineToRelative(4.75f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.46f, 1.38f) - lineTo(13.0f, 6.5f) - verticalLineToRelative(11.0f) - lineToRelative(3.02f, -3.19f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.46f, 1.38f) - lineToRelative(-4.76f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.45f, 0.0f) - lineToRelative(-4.74f, -5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.44f, -1.38f) - lineTo(11.0f, 17.5f) - verticalLineToRelative(-11.0f) - lineTo(7.97f, 9.7f) - close() - } - } - return _arrowBidirectionalUpDown!! - } - -private var _arrowBidirectionalUpDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowBounce.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowBounce.kt deleted file mode 100644 index ef21a59a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowBounce.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowBounce: ImageVector - get() { - if (_arrowBounce != null) { - return _arrowBounce!! - } - _arrowBounce = fluentIcon(name = "Filled.ArrowBounce") { - fluentPath { - moveTo(11.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineTo(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineTo(9.41f) - lineToRelative(8.04f, 8.05f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 0.0f) - lineTo(21.7f, 9.2f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, -1.42f) - lineToRelative(-7.54f, 7.55f) - lineTo(5.41f, 8.0f) - horizontalLineTo(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - close() - } - } - return _arrowBounce!! - } - -private var _arrowBounce: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCircleDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCircleDown.kt deleted file mode 100644 index a6294971..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCircleDown.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowCircleDown: ImageVector - get() { - if (_arrowCircleDown != null) { - return _arrowCircleDown!! - } - _arrowCircleDown = fluentIcon(name = "Filled.ArrowCircleDown") { - fluentPath { - moveTo(2.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, -20.0f, 0.0f) - close() - moveTo(16.53f, 11.72f) - curveToRelative(0.27f, 0.27f, 0.29f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-4.0f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-4.0f, -4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -1.13f) - lineToRelative(0.09f, 0.07f) - lineToRelative(2.72f, 2.72f) - lineTo(11.25f, 7.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineTo(12.0f, 7.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - verticalLineToRelative(0.1f) - lineToRelative(0.01f, 6.69f) - lineToRelative(2.72f, -2.72f) - curveToRelative(0.27f, -0.27f, 0.68f, -0.3f, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - close() - } - } - return _arrowCircleDown!! - } - -private var _arrowCircleDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCircleDownDouble.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCircleDownDouble.kt deleted file mode 100644 index 7e3603a5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCircleDownDouble.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowCircleDownDouble: ImageVector - get() { - if (_arrowCircleDownDouble != null) { - return _arrowCircleDownDouble!! - } - _arrowCircleDownDouble = fluentIcon(name = "Filled.ArrowCircleDownDouble") { - fluentPath { - moveTo(11.25f, 13.75f) - curveToRelative(0.27f, 0.27f, 0.29f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-1.97f, 1.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-1.97f, -1.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) - lineToRelative(0.08f, 0.07f) - lineToRelative(0.69f, 0.7f) - verticalLineToRelative(-6.7f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - verticalLineToRelative(0.1f) - lineToRelative(0.01f, 6.69f) - lineToRelative(0.69f, -0.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - close() - moveTo(2.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, -20.0f, 0.0f) - close() - moveTo(17.67f, 13.68f) - lineTo(17.75f, 13.75f) - curveToRelative(0.27f, 0.27f, 0.29f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-1.97f, 1.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-1.97f, -1.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) - lineToRelative(0.08f, 0.07f) - lineToRelative(0.69f, 0.7f) - verticalLineToRelative(-6.7f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - verticalLineToRelative(6.79f) - lineToRelative(0.7f, -0.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - close() - } - } - return _arrowCircleDownDouble!! - } - -private var _arrowCircleDownDouble: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCircleDownRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCircleDownRight.kt deleted file mode 100644 index ba21a9ad..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCircleDownRight.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowCircleDownRight: ImageVector - get() { - if (_arrowCircleDownRight != null) { - return _arrowCircleDownRight!! - } - _arrowCircleDownRight = fluentIcon(name = "Filled.ArrowCircleDownRight") { - fluentPath { - moveTo(12.0f, 22.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) - close() - moveTo(14.5f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(4.74f) - lineTo(8.22f, 9.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineToRelative(5.22f, 5.17f) - lineTo(14.5f, 8.75f) - close() - } - } - return _arrowCircleDownRight!! - } - -private var _arrowCircleDownRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCircleDownSplit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCircleDownSplit.kt deleted file mode 100644 index 72db62c5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCircleDownSplit.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowCircleDownSplit: ImageVector - get() { - if (_arrowCircleDownSplit != null) { - return _arrowCircleDownSplit!! - } - _arrowCircleDownSplit = fluentIcon(name = "Filled.ArrowCircleDownSplit") { - fluentPath { - moveTo(12.0f, 22.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, -20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, 20.0f) - close() - moveTo(11.0f, 14.0f) - lineTo(10.92f, 13.93f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) - lineToRelative(-0.44f, 0.44f) - lineTo(9.5f, 10.5f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(3.94f) - lineToRelative(-0.51f, -0.44f) - lineToRelative(-0.09f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, 1.13f) - lineToRelative(1.79f, 1.72f) - lineToRelative(0.08f, 0.07f) - curveToRelative(0.3f, 0.22f, 0.71f, 0.2f, 0.98f, -0.07f) - lineToRelative(1.72f, -1.72f) - lineToRelative(0.07f, -0.08f) - curveToRelative(0.22f, -0.3f, 0.2f, -0.72f, -0.07f, -0.98f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) - lineToRelative(-0.44f, 0.44f) - verticalLineToRelative(-4.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.64f) - horizontalLineToRelative(-2.5f) - lineTo(12.75f, 5.65f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 12.0f, 5.0f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - lineTo(11.25f, 9.0f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - verticalLineToRelative(4.69f) - lineTo(7.56f, 14.0f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 1.13f) - lineToRelative(1.72f, 1.72f) - lineToRelative(0.08f, 0.07f) - curveToRelative(0.3f, 0.22f, 0.71f, 0.2f, 0.98f, -0.07f) - lineTo(11.0f, 15.06f) - lineToRelative(0.07f, -0.09f) - curveToRelative(0.22f, -0.29f, 0.2f, -0.7f, -0.07f, -0.97f) - close() - } - } - return _arrowCircleDownSplit!! - } - -private var _arrowCircleDownSplit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCircleLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCircleLeft.kt deleted file mode 100644 index 012316c0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCircleLeft.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowCircleLeft: ImageVector - get() { - if (_arrowCircleLeft != null) { - return _arrowCircleLeft!! - } - _arrowCircleLeft = fluentIcon(name = "Filled.ArrowCircleLeft") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) - close() - moveTo(12.28f, 16.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-4.0f, -4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-2.72f, 2.72f) - horizontalLineToRelative(6.69f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(9.56f, 12.75f) - lineToRelative(2.72f, 2.72f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - close() - } - } - return _arrowCircleLeft!! - } - -private var _arrowCircleLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCircleRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCircleRight.kt deleted file mode 100644 index 7701e7fe..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCircleRight.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowCircleRight: ImageVector - get() { - if (_arrowCircleRight != null) { - return _arrowCircleRight!! - } - _arrowCircleRight = fluentIcon(name = "Filled.ArrowCircleRight") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(12.78f, 7.47f) - lineTo(12.7f, 7.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.89f, -0.01f) - lineToRelative(-0.09f, 0.08f) - lineToRelative(-0.07f, 0.08f) - curveToRelative(-0.2f, 0.26f, -0.2f, 0.62f, 0.0f, 0.89f) - lineToRelative(0.07f, 0.09f) - lineToRelative(2.72f, 2.72f) - lineTo(7.65f, 11.25f) - curveToRelative(-0.33f, 0.05f, -0.6f, 0.31f, -0.64f, 0.65f) - lineTo(7.0f, 12.0f) - verticalLineToRelative(0.1f) - curveToRelative(0.05f, 0.33f, 0.32f, 0.6f, 0.65f, 0.64f) - horizontalLineToRelative(6.79f) - lineToRelative(-2.72f, 2.73f) - lineToRelative(-0.07f, 0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.05f, 1.05f) - lineToRelative(0.08f, -0.07f) - lineToRelative(4.0f, -4.0f) - lineToRelative(0.07f, -0.08f) - curveToRelative(0.2f, -0.26f, 0.2f, -0.62f, 0.01f, -0.89f) - lineToRelative(-0.08f, -0.09f) - lineToRelative(-4.0f, -4.0f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(0.08f, 0.07f) - close() - } - } - return _arrowCircleRight!! - } - -private var _arrowCircleRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCircleUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCircleUp.kt deleted file mode 100644 index a97c0b29..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCircleUp.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowCircleUp: ImageVector - get() { - if (_arrowCircleUp != null) { - return _arrowCircleUp!! - } - _arrowCircleUp = fluentIcon(name = "Filled.ArrowCircleUp") { - fluentPath { - moveTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 20.0f, 0.0f) - close() - moveTo(7.47f, 12.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - lineToRelative(4.0f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 1.13f) - lineToRelative(-0.09f, -0.07f) - lineToRelative(-2.72f, -2.72f) - verticalLineToRelative(6.69f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineTo(12.0f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - verticalLineToRelative(-0.1f) - lineToRelative(-0.01f, -6.69f) - lineToRelative(-2.72f, 2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - close() - } - } - return _arrowCircleUp!! - } - -private var _arrowCircleUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCircleUpLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCircleUpLeft.kt deleted file mode 100644 index 2a3b9dd4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCircleUpLeft.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowCircleUpLeft: ImageVector - get() { - if (_arrowCircleUpLeft != null) { - return _arrowCircleUpLeft!! - } - _arrowCircleUpLeft = fluentIcon(name = "Filled.ArrowCircleUpLeft") { - fluentPath { - moveTo(12.0f, 22.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) - close() - moveTo(15.25f, 9.5f) - horizontalLineToRelative(-4.74f) - lineToRelative(5.27f, 5.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(9.5f, 10.61f) - verticalLineToRelative(4.64f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-6.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - } - } - return _arrowCircleUpLeft!! - } - -private var _arrowCircleUpLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowClockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowClockwise.kt deleted file mode 100644 index 08689f74..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowClockwise.kt +++ /dev/null @@ -1,39 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowClockwise: ImageVector - get() { - if (_arrowClockwise != null) { - return _arrowClockwise!! - } - _arrowClockwise = fluentIcon(name = "Filled.ArrowClockwise") { - fluentPath { - moveTo(12.0f, 4.75f) - arcToRelative(7.25f, 7.25f, 0.0f, true, false, 7.2f, 6.4f) - curveToRelative(-0.07f, -0.58f, 0.36f, -1.15f, 0.95f, -1.15f) - curveToRelative(0.52f, 0.0f, 0.97f, 0.36f, 1.03f, 0.87f) - arcToRelative(9.25f, 9.25f, 0.0f, true, true, -3.43f, -6.12f) - verticalLineToRelative(-0.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(2.7f) - lineToRelative(0.03f, 0.05f) - horizontalLineToRelative(-0.03f) - verticalLineToRelative(0.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(0.67f) - arcTo(7.22f, 7.22f, 0.0f, false, false, 12.0f, 4.75f) - close() - } - } - return _arrowClockwise!! - } - -private var _arrowClockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowClockwiseDashes.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowClockwiseDashes.kt deleted file mode 100644 index 0e900fb4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowClockwiseDashes.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowClockwiseDashes: ImageVector - get() { - if (_arrowClockwiseDashes != null) { - return _arrowClockwiseDashes!! - } - _arrowClockwiseDashes = fluentIcon(name = "Filled.ArrowClockwiseDashes") { - fluentPath { - moveTo(12.0f, 2.75f) - curveToRelative(-0.66f, 0.0f, -1.3f, 0.07f, -1.92f, 0.2f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.41f, 1.96f) - arcToRelative(7.28f, 7.28f, 0.0f, false, true, 3.02f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.41f, -1.96f) - arcToRelative(9.28f, 9.28f, 0.0f, false, false, -1.92f, -0.2f) - close() - moveTo(17.75f, 4.75f) - verticalLineToRelative(-0.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(0.67f) - curveToRelative(-0.15f, -0.12f, -0.31f, -0.23f, -0.47f, -0.33f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.09f, -1.68f) - curveToRelative(0.24f, 0.16f, 0.48f, 0.33f, 0.71f, 0.51f) - close() - moveTo(8.35f, 4.53f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.39f, -0.29f) - arcToRelative(9.3f, 9.3f, 0.0f, false, false, -2.72f, 2.72f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.68f, 1.1f) - arcToRelative(7.3f, 7.3f, 0.0f, false, true, 2.13f, -2.14f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.3f, -1.39f) - close() - moveTo(4.13f, 9.31f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.19f, 0.77f) - arcToRelative(9.28f, 9.28f, 0.0f, false, false, 0.0f, 3.84f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.96f, -0.41f) - arcToRelative(7.28f, 7.28f, 0.0f, false, true, 0.0f, -3.02f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.77f, -1.18f) - close() - moveTo(20.24f, 10.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - lineTo(19.24f, 12.0f) - curveToRelative(0.0f, 0.52f, -0.05f, 1.02f, -0.16f, 1.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.96f, 0.42f) - curveToRelative(0.13f, -0.62f, 0.2f, -1.26f, 0.2f, -1.92f) - verticalLineToRelative(-0.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - moveTo(19.46f, 15.65f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.39f, 0.3f) - arcToRelative(7.3f, 7.3f, 0.0f, false, true, -2.13f, 2.13f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.09f, 1.68f) - arcToRelative(9.3f, 9.3f, 0.0f, false, false, 2.72f, -2.72f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.3f, -1.38f) - close() - moveTo(5.91f, 15.95f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.68f, 1.09f) - arcToRelative(9.3f, 9.3f, 0.0f, false, false, 2.72f, 2.72f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.1f, -1.68f) - arcToRelative(7.3f, 7.3f, 0.0f, false, true, -2.14f, -2.13f) - close() - moveTo(10.48f, 19.09f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -0.41f, 1.96f) - arcToRelative(9.28f, 9.28f, 0.0f, false, false, 3.84f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -0.41f, -1.96f) - arcToRelative(7.29f, 7.29f, 0.0f, false, true, -3.02f, 0.0f) - close() - } - } - return _arrowClockwiseDashes!! - } - -private var _arrowClockwiseDashes: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCollapseAll.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCollapseAll.kt deleted file mode 100644 index e7e9747e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCollapseAll.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowCollapseAll: ImageVector - get() { - if (_arrowCollapseAll != null) { - return _arrowCollapseAll!! - } - _arrowCollapseAll = fluentIcon(name = "Filled.ArrowCollapseAll") { - fluentPath { - moveTo(2.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(3.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(6.3f, 8.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) - lineToRelative(3.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 1.4f) - lineTo(8.0f, 11.42f) - lineTo(8.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-7.59f) - lineToRelative(-1.3f, 1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.42f) - lineToRelative(3.0f, -3.0f) - close() - moveTo(21.0f, 10.0f) - horizontalLineToRelative(-9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - close() - } - } - return _arrowCollapseAll!! - } - -private var _arrowCollapseAll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCounterclockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCounterclockwise.kt deleted file mode 100644 index d7c0903e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCounterclockwise.kt +++ /dev/null @@ -1,39 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowCounterclockwise: ImageVector - get() { - if (_arrowCounterclockwise != null) { - return _arrowCounterclockwise!! - } - _arrowCounterclockwise = fluentIcon(name = "Filled.ArrowCounterclockwise") { - fluentPath { - moveTo(12.0f, 4.75f) - arcToRelative(7.25f, 7.25f, 0.0f, true, true, -7.2f, 6.4f) - curveToRelative(0.07f, -0.58f, -0.36f, -1.15f, -0.95f, -1.15f) - curveToRelative(-0.52f, 0.0f, -0.97f, 0.36f, -1.03f, 0.87f) - arcToRelative(9.25f, 9.25f, 0.0f, true, false, 3.43f, -6.12f) - verticalLineToRelative(-0.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) - verticalLineToRelative(2.7f) - lineTo(4.22f, 7.0f) - horizontalLineToRelative(0.03f) - verticalLineToRelative(0.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - horizontalLineToRelative(-0.67f) - arcTo(7.22f, 7.22f, 0.0f, false, true, 12.0f, 4.75f) - close() - } - } - return _arrowCounterclockwise!! - } - -private var _arrowCounterclockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCounterclockwiseDashes.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCounterclockwiseDashes.kt deleted file mode 100644 index 442a7d42..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCounterclockwiseDashes.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowCounterclockwiseDashes: ImageVector - get() { - if (_arrowCounterclockwiseDashes != null) { - return _arrowCounterclockwiseDashes!! - } - _arrowCounterclockwiseDashes = fluentIcon(name = "Filled.ArrowCounterclockwiseDashes") { - fluentPath { - moveTo(12.0f, 2.75f) - curveToRelative(0.66f, 0.0f, 1.3f, 0.07f, 1.92f, 0.2f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -0.41f, 1.96f) - arcToRelative(7.28f, 7.28f, 0.0f, false, false, -3.02f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -0.41f, -1.96f) - curveToRelative(0.62f, -0.13f, 1.26f, -0.2f, 1.92f, -0.2f) - close() - moveTo(6.25f, 4.75f) - verticalLineToRelative(-0.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) - verticalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-0.67f) - curveToRelative(0.15f, -0.12f, 0.31f, -0.23f, 0.47f, -0.33f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.09f, -1.68f) - curveToRelative(-0.24f, 0.16f, -0.48f, 0.33f, -0.71f, 0.51f) - close() - moveTo(15.65f, 4.53f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.39f, -0.29f) - arcToRelative(9.3f, 9.3f, 0.0f, false, true, 2.72f, 2.72f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.68f, 1.1f) - arcToRelative(7.3f, 7.3f, 0.0f, false, false, -2.13f, -2.14f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.3f, -1.39f) - close() - moveTo(19.86f, 9.31f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.19f, 0.77f) - arcToRelative(9.28f, 9.28f, 0.0f, false, true, 0.0f, 3.84f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.96f, -0.41f) - arcToRelative(7.29f, 7.29f, 0.0f, false, false, 0.0f, -3.02f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.77f, -1.18f) - close() - moveTo(3.75f, 10.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - lineTo(4.75f, 12.0f) - curveToRelative(0.0f, 0.52f, 0.05f, 1.02f, 0.16f, 1.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.96f, 0.42f) - arcToRelative(9.28f, 9.28f, 0.0f, false, true, -0.2f, -1.92f) - verticalLineToRelative(-0.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(4.53f, 15.65f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.39f, 0.3f) - arcToRelative(7.3f, 7.3f, 0.0f, false, false, 2.13f, 2.13f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.09f, 1.68f) - arcToRelative(9.3f, 9.3f, 0.0f, false, true, -2.72f, -2.72f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.3f, -1.38f) - close() - moveTo(18.08f, 15.95f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.68f, 1.09f) - arcToRelative(9.3f, 9.3f, 0.0f, false, true, -2.72f, 2.72f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.1f, -1.68f) - arcToRelative(7.3f, 7.3f, 0.0f, false, false, 2.14f, -2.13f) - close() - moveTo(13.51f, 19.09f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.41f, 1.96f) - arcToRelative(9.28f, 9.28f, 0.0f, false, true, -3.84f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.41f, -1.96f) - arcToRelative(7.29f, 7.29f, 0.0f, false, false, 3.02f, 0.0f) - close() - } - } - return _arrowCounterclockwiseDashes!! - } - -private var _arrowCounterclockwiseDashes: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCurveDownLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCurveDownLeft.kt deleted file mode 100644 index ef892322..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowCurveDownLeft.kt +++ /dev/null @@ -1,39 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowCurveDownLeft: ImageVector - get() { - if (_arrowCurveDownLeft != null) { - return _arrowCurveDownLeft!! - } - _arrowCurveDownLeft = fluentIcon(name = "Filled.ArrowCurveDownLeft") { - fluentPath { - moveTo(16.87f, 3.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.37f, 1.37f) - arcToRelative(6.18f, 6.18f, 0.0f, false, false, -3.12f, 3.7f) - arcToRelative(13.87f, 13.87f, 0.0f, false, false, -0.38f, 4.06f) - verticalLineToRelative(5.46f) - lineToRelative(3.3f, -3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, 1.42f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) - lineToRelative(-5.0f, -5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, -1.42f) - lineToRelative(3.3f, 3.3f) - verticalLineToRelative(-5.49f) - curveToRelative(0.0f, -1.37f, -0.01f, -3.02f, 0.47f, -4.61f) - arcToRelative(8.17f, 8.17f, 0.0f, false, true, 4.03f, -4.86f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.37f, 0.37f) - close() - } - } - return _arrowCurveDownLeft!! - } - -private var _arrowCurveDownLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowEnterLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowEnterLeft.kt deleted file mode 100644 index 7180f53e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowEnterLeft.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowEnterLeft: ImageVector - get() { - if (_arrowEnterLeft != null) { - return _arrowEnterLeft!! - } - _arrowEnterLeft = fluentIcon(name = "Filled.ArrowEnterLeft") { - fluentPath { - moveTo(21.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - verticalLineToRelative(6.62f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.3f, 3.5f) - horizontalLineTo(5.4f) - lineToRelative(3.3f, 3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.31f) - lineToRelative(-0.08f, 0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.08f) - lineToRelative(-0.1f, -0.08f) - lineToRelative(-5.0f, -5.0f) - arcToRelative(1.01f, 1.01f, 0.0f, false, true, -0.1f, -0.11f) - lineToRelative(-0.07f, -0.12f) - lineToRelative(-0.05f, -0.1f) - lineToRelative(-0.03f, -0.11f) - lineToRelative(-0.03f, -0.12f) - verticalLineToRelative(-0.06f) - lineTo(2.0f, 14.0f) - verticalLineToRelative(-0.08f) - lineToRelative(0.02f, -0.12f) - lineToRelative(0.03f, -0.11f) - lineToRelative(0.04f, -0.11f) - lineToRelative(0.06f, -0.1f) - lineToRelative(0.06f, -0.1f) - lineToRelative(0.08f, -0.09f) - lineToRelative(5.0f, -5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.5f, 1.32f) - lineToRelative(-0.08f, 0.1f) - lineTo(5.4f, 13.0f) - horizontalLineTo(18.5f) - curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) - verticalLineTo(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - } - } - return _arrowEnterLeft!! - } - -private var _arrowEnterLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowEnterUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowEnterUp.kt deleted file mode 100644 index 9fd2c5a5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowEnterUp.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowEnterUp: ImageVector - get() { - if (_arrowEnterUp != null) { - return _arrowEnterUp!! - } - _arrowEnterUp = fluentIcon(name = "Filled.ArrowEnterUp") { - fluentPath { - moveTo(20.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - horizontalLineTo(12.5f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 9.0f, 18.7f) - verticalLineTo(5.4f) - lineToRelative(-3.3f, 3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.31f, 0.08f) - lineToRelative(-0.1f, -0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.32f) - lineToRelative(0.08f, -0.1f) - lineToRelative(5.0f, -5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.11f, -0.1f) - lineToRelative(0.12f, -0.07f) - lineToRelative(0.1f, -0.05f) - lineToRelative(0.11f, -0.03f) - lineToRelative(0.12f, -0.03f) - horizontalLineToRelative(0.06f) - lineTo(10.0f, 2.0f) - horizontalLineToRelative(0.08f) - lineToRelative(0.12f, 0.02f) - lineToRelative(0.11f, 0.03f) - lineToRelative(0.11f, 0.04f) - lineToRelative(0.1f, 0.06f) - lineToRelative(0.1f, 0.06f) - lineToRelative(0.09f, 0.08f) - lineToRelative(5.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 1.5f) - lineToRelative(-0.1f, -0.08f) - lineTo(11.0f, 5.4f) - verticalLineTo(18.5f) - curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.36f, 1.5f) - horizontalLineTo(19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - close() - } - } - return _arrowEnterUp!! - } - -private var _arrowEnterUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowExportLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowExportLtr.kt deleted file mode 100644 index c02359eb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowExportLtr.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowExportLtr: ImageVector - get() { - if (_arrowExportLtr != null) { - return _arrowExportLtr!! - } - _arrowExportLtr = fluentIcon(name = "Filled.ArrowExportLtr") { - fluentPath { - moveTo(2.75f, 4.5f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.29f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineTo(5.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(15.21f, 6.4f) - lineToRelative(0.08f, -0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) - lineToRelative(0.1f, 0.08f) - lineToRelative(5.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.32f) - lineToRelative(-0.09f, 0.1f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.5f, -1.32f) - lineToRelative(0.1f, -0.1f) - lineTo(18.57f, 13.0f) - horizontalLineTo(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - verticalLineTo(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) - horizontalLineToRelative(12.7f) - lineTo(15.3f, 7.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.31f) - lineToRelative(0.08f, -0.1f) - lineToRelative(-0.08f, 0.1f) - close() - } - } - return _arrowExportLtr!! - } - -private var _arrowExportLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowExportRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowExportRtl.kt deleted file mode 100644 index 95edb2e4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowExportRtl.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowExportRtl: ImageVector - get() { - if (_arrowExportRtl != null) { - return _arrowExportRtl!! - } - _arrowExportRtl = fluentIcon(name = "Filled.ArrowExportRtl") { - fluentPath { - moveTo(21.25f, 4.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.29f, -0.75f, 0.65f) - verticalLineToRelative(13.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.49f, 0.1f) - verticalLineTo(5.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.74f, -0.75f) - close() - moveTo(8.79f, 6.4f) - lineToRelative(-0.09f, -0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.32f, -0.08f) - lineToRelative(-0.1f, 0.08f) - lineToRelative(-4.99f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.08f, 1.32f) - lineToRelative(0.08f, 0.1f) - lineToRelative(5.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.5f, -1.32f) - lineToRelative(-0.09f, -0.1f) - lineTo(5.42f, 13.0f) - horizontalLineTo(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.99f, -0.88f) - verticalLineTo(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.88f, -1.0f) - horizontalLineTo(5.41f) - lineToRelative(3.3f, -3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.08f, -1.31f) - lineToRelative(-0.09f, -0.1f) - lineToRelative(0.09f, 0.1f) - close() - } - } - return _arrowExportRtl!! - } - -private var _arrowExportRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowExportUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowExportUp.kt deleted file mode 100644 index 9edbe202..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowExportUp.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowExportUp: ImageVector - get() { - if (_arrowExportUp != null) { - return _arrowExportUp!! - } - _arrowExportUp = fluentIcon(name = "Filled.ArrowExportUp") { - fluentPath { - moveTo(12.7f, 2.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 1.4f) - lineTo(11.0f, 5.42f) - verticalLineTo(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineTo(5.41f) - lineToRelative(3.3f, 3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, -1.42f) - lineToRelative(-5.0f, -5.0f) - close() - moveTo(5.26f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(5.25f) - close() - } - } - return _arrowExportUp!! - } - -private var _arrowExportUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowForwardDownLightning.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowForwardDownLightning.kt deleted file mode 100644 index 9ad23463..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowForwardDownLightning.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowForwardDownLightning: ImageVector - get() { - if (_arrowForwardDownLightning != null) { - return _arrowForwardDownLightning!! - } - _arrowForwardDownLightning = fluentIcon(name = "Filled.ArrowForwardDownLightning") { - fluentPath { - moveTo(13.0f, 16.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(8.53f, 13.0f) - lineTo(7.1f, 13.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.47f, 0.32f) - lineToRelative(-1.13f, 3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.47f, 0.68f) - horizontalLineToRelative(0.78f) - lineToRelative(-0.77f, 2.32f) - arcToRelative(0.52f, 0.52f, 0.0f, false, false, 0.92f, 0.44f) - lineToRelative(2.63f, -4.03f) - arcToRelative(0.47f, 0.47f, 0.0f, false, false, -0.4f, -0.73f) - lineTo(8.5f, 15.0f) - lineToRelative(0.5f, -1.32f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.47f, -0.68f) - close() - moveTo(16.3f, 4.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.4f) - lineTo(19.59f, 9.0f) - horizontalLineToRelative(-6.81f) - arcTo(6.0f, 6.0f, 0.0f, false, true, 7.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(0.25f) - arcTo(8.0f, 8.0f, 0.0f, false, false, 13.0f, 11.0f) - horizontalLineToRelative(6.59f) - lineToRelative(-3.3f, 3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.42f, 1.4f) - lineToRelative(5.0f, -5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.4f) - lineToRelative(-5.0f, -5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.41f, 0.0f) - close() - } - } - return _arrowForwardDownLightning!! - } - -private var _arrowForwardDownLightning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowForwardDownPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowForwardDownPerson.kt deleted file mode 100644 index 29351622..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowForwardDownPerson.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowForwardDownPerson: ImageVector - get() { - if (_arrowForwardDownPerson != null) { - return _arrowForwardDownPerson!! - } - _arrowForwardDownPerson = fluentIcon(name = "Filled.ArrowForwardDownPerson") { - fluentPath { - moveTo(16.3f, 5.7f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.41f, -1.4f) - lineToRelative(5.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.4f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.41f, -1.4f) - lineToRelative(3.29f, -3.3f) - lineTo(13.0f, 11.0f) - arcToRelative(8.0f, 8.0f, 0.0f, false, true, -8.0f, -7.75f) - lineTo(5.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, 5.78f, 6.0f) - horizontalLineToRelative(6.81f) - lineToRelative(-3.3f, -3.3f) - close() - moveTo(9.0f, 13.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(11.0f, 18.88f) - curveTo(11.0f, 20.43f, 9.71f, 22.0f, 6.5f, 22.0f) - reflectiveCurveTo(2.0f, 20.44f, 2.0f, 18.87f) - verticalLineToRelative(-0.1f) - curveTo(2.0f, 17.8f, 2.8f, 17.0f, 3.77f, 17.0f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _arrowForwardDownPerson!! - } - -private var _arrowForwardDownPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowHookDownLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowHookDownLeft.kt deleted file mode 100644 index fab90dd0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowHookDownLeft.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowHookDownLeft: ImageVector - get() { - if (_arrowHookDownLeft != null) { - return _arrowHookDownLeft!! - } - _arrowHookDownLeft = fluentIcon(name = "Filled.ArrowHookDownLeft") { - fluentPath { - moveTo(7.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(5.0f) - curveToRelative(2.24f, 0.0f, 4.01f, 0.78f, 5.22f, 2.02f) - arcTo(6.42f, 6.42f, 0.0f, false, true, 20.0f, 10.5f) - curveToRelative(0.0f, 1.61f, -0.59f, 3.24f, -1.78f, 4.48f) - arcTo(7.06f, 7.06f, 0.0f, false, true, 13.0f, 17.0f) - horizontalLineTo(8.41f) - lineToRelative(2.05f, 2.04f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 1.42f) - lineTo(5.3f, 16.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.42f) - lineToRelative(3.75f, -3.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 1.42f) - lineTo(8.4f, 15.0f) - horizontalLineTo(13.0f) - curveToRelative(1.76f, 0.0f, 2.99f, -0.6f, 3.78f, -1.41f) - arcTo(4.42f, 4.42f, 0.0f, false, false, 18.0f, 10.5f) - curveToRelative(0.0f, -1.14f, -0.41f, -2.26f, -1.22f, -3.09f) - arcTo(5.07f, 5.07f, 0.0f, false, false, 13.0f, 6.0f) - horizontalLineTo(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - } - } - return _arrowHookDownLeft!! - } - -private var _arrowHookDownLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowHookDownRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowHookDownRight.kt deleted file mode 100644 index 2a974d0f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowHookDownRight.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowHookDownRight: ImageVector - get() { - if (_arrowHookDownRight != null) { - return _arrowHookDownRight!! - } - _arrowHookDownRight = fluentIcon(name = "Filled.ArrowHookDownRight") { - fluentPath { - moveTo(10.5f, 6.0f) - horizontalLineTo(16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-5.5f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, 0.0f, 13.0f) - horizontalLineToRelative(5.14f) - lineToRelative(-1.93f, 1.93f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.41f, 1.42f) - lineToRelative(3.53f, -3.53f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.21f, -0.31f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.18f, -1.24f) - lineToRelative(-0.03f, -0.03f) - lineToRelative(-3.53f, -3.53f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.41f, 1.41f) - lineTo(15.59f, 15.0f) - horizontalLineTo(10.5f) - arcToRelative(4.5f, 4.5f, 0.0f, true, true, 0.0f, -9.0f) - close() - } - } - return _arrowHookDownRight!! - } - -private var _arrowHookDownRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowHookUpLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowHookUpLeft.kt deleted file mode 100644 index a6ad62e6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowHookUpLeft.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowHookUpLeft: ImageVector - get() { - if (_arrowHookUpLeft != null) { - return _arrowHookUpLeft!! - } - _arrowHookUpLeft = fluentIcon(name = "Filled.ArrowHookUpLeft") { - fluentPath { - moveTo(7.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(5.0f) - curveToRelative(2.24f, 0.0f, 4.01f, -0.78f, 5.22f, -2.02f) - arcTo(6.42f, 6.42f, 0.0f, false, false, 20.0f, 13.5f) - curveToRelative(0.0f, -1.61f, -0.59f, -3.24f, -1.78f, -4.48f) - arcTo(7.06f, 7.06f, 0.0f, false, false, 13.0f, 7.0f) - horizontalLineTo(8.41f) - lineToRelative(2.05f, -2.04f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, -1.42f) - lineTo(5.3f, 7.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.42f) - lineToRelative(3.75f, 3.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, -1.42f) - lineTo(8.4f, 9.0f) - horizontalLineTo(13.0f) - curveToRelative(1.76f, 0.0f, 2.99f, 0.6f, 3.78f, 1.41f) - curveToRelative(0.8f, 0.83f, 1.22f, 1.95f, 1.22f, 3.09f) - reflectiveCurveToRelative(-0.41f, 2.26f, -1.22f, 3.09f) - arcTo(5.07f, 5.07f, 0.0f, false, true, 13.0f, 18.0f) - horizontalLineTo(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - close() - } - } - return _arrowHookUpLeft!! - } - -private var _arrowHookUpLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowHookUpRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowHookUpRight.kt deleted file mode 100644 index 0ef40fd9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowHookUpRight.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowHookUpRight: ImageVector - get() { - if (_arrowHookUpRight != null) { - return _arrowHookUpRight!! - } - _arrowHookUpRight = fluentIcon(name = "Filled.ArrowHookUpRight") { - fluentPath { - moveTo(10.5f, 18.0f) - horizontalLineTo(16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-5.5f) - arcToRelative(6.5f, 6.5f, 0.0f, true, true, 0.0f, -13.0f) - horizontalLineToRelative(5.14f) - lineToRelative(-1.93f, -1.93f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, -1.42f) - lineToRelative(3.53f, 3.53f) - curveToRelative(0.1f, 0.1f, 0.16f, 0.2f, 0.21f, 0.31f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.18f, 1.24f) - lineToRelative(-0.03f, 0.03f) - lineToRelative(-3.53f, 3.53f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.41f, -1.41f) - lineTo(15.59f, 9.0f) - horizontalLineTo(10.5f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, 0.0f, 9.0f) - close() - } - } - return _arrowHookUpRight!! - } - -private var _arrowHookUpRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowImport.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowImport.kt deleted file mode 100644 index 8d842308..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowImport.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowImport: ImageVector - get() { - if (_arrowImport != null) { - return _arrowImport!! - } - _arrowImport = fluentIcon(name = "Filled.ArrowImport") { - fluentPath { - moveTo(21.25f, 4.5f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(20.5f, 5.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(12.21f, 6.39f) - lineTo(12.29f, 6.29f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) - lineToRelative(0.1f, 0.08f) - lineToRelative(5.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.32f) - lineToRelative(-0.09f, 0.1f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.5f, -1.32f) - lineToRelative(0.1f, -0.1f) - lineTo(15.57f, 13.0f) - lineTo(3.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - lineTo(2.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) - horizontalLineToRelative(12.7f) - lineTo(12.3f, 7.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.31f) - lineToRelative(0.08f, -0.1f) - lineToRelative(-0.08f, 0.1f) - close() - } - } - return _arrowImport!! - } - -private var _arrowImport: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowMaximize.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowMaximize.kt deleted file mode 100644 index c09c0511..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowMaximize.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowMaximize: ImageVector - get() { - if (_arrowMaximize != null) { - return _arrowMaximize!! - } - _arrowMaximize = fluentIcon(name = "Filled.ArrowMaximize") { - fluentPath { - moveTo(12.5f, 3.0f) - horizontalLineToRelative(7.55f) - lineToRelative(0.12f, 0.02f) - lineToRelative(0.09f, 0.02f) - lineToRelative(0.1f, 0.03f) - lineToRelative(0.1f, 0.04f) - lineToRelative(0.06f, 0.04f) - lineToRelative(0.06f, 0.04f) - lineToRelative(0.06f, 0.05f) - lineToRelative(0.07f, 0.06f) - lineToRelative(0.1f, 0.1f) - lineToRelative(0.06f, 0.12f) - lineToRelative(0.06f, 0.11f) - lineToRelative(0.03f, 0.1f) - lineToRelative(0.02f, 0.07f) - verticalLineToRelative(0.05f) - lineTo(21.0f, 4.0f) - verticalLineToRelative(7.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - verticalLineTo(6.41f) - lineTo(6.4f, 19.0f) - horizontalLineToRelative(5.09f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - verticalLineTo(20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - horizontalLineTo(3.94f) - lineToRelative(-0.1f, -0.01f) - lineToRelative(-0.07f, -0.02f) - lineToRelative(-0.08f, -0.02f) - lineToRelative(-0.07f, -0.02f) - lineToRelative(-0.09f, -0.05f) - lineToRelative(-0.09f, -0.05f) - lineToRelative(-0.1f, -0.07f) - lineToRelative(0.04f, 0.03f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.17f, -0.17f) - lineToRelative(-0.05f, -0.07f) - lineToRelative(-0.04f, -0.06f) - lineToRelative(-0.03f, -0.07f) - lineToRelative(-0.03f, -0.08f) - lineToRelative(-0.03f, -0.08f) - lineToRelative(-0.02f, -0.1f) - verticalLineToRelative(-0.07f) - lineTo(3.0f, 20.0f) - verticalLineToRelative(-7.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - verticalLineToRelative(5.21f) - lineTo(17.58f, 5.0f) - horizontalLineTo(12.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - verticalLineTo(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - } - } - return _arrowMaximize!! - } - -private var _arrowMaximize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowMaximizeVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowMaximizeVertical.kt deleted file mode 100644 index a32b829e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowMaximizeVertical.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowMaximizeVertical: ImageVector - get() { - if (_arrowMaximizeVertical != null) { - return _arrowMaximizeVertical!! - } - _arrowMaximizeVertical = fluentIcon(name = "Filled.ArrowMaximizeVertical") { - fluentPath { - moveTo(15.2f, 6.2f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) - lineToRelative(-0.8f, -0.79f) - verticalLineTo(9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineTo(5.41f) - lineToRelative(-0.8f, 0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.42f) - lineToRelative(2.5f, -2.5f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 12.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.7f, 0.3f) - lineToRelative(2.5f, 2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.4f) - close() - } - fluentPath { - moveTo(5.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineTo(5.0f) - close() - } - fluentPath { - moveTo(12.0f, 22.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.7f, -0.3f) - lineToRelative(2.5f, -2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.4f) - lineToRelative(-0.8f, 0.79f) - verticalLineTo(15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(3.59f) - lineToRelative(-0.8f, -0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) - lineToRelative(2.5f, 2.5f) - curveToRelative(0.19f, 0.19f, 0.44f, 0.29f, 0.7f, 0.29f) - } - } - return _arrowMaximizeVertical!! - } - -private var _arrowMaximizeVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowMinimize.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowMinimize.kt deleted file mode 100644 index 99006d6c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowMinimize.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowMinimize: ImageVector - get() { - if (_arrowMinimize != null) { - return _arrowMinimize!! - } - _arrowMinimize = fluentIcon(name = "Filled.ArrowMinimize") { - fluentPath { - moveTo(10.5f, 12.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.89f) - lineTo(11.5f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(9.5f, 15.9f) - lineToRelative(-5.8f, 5.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.31f, 0.08f) - lineToRelative(-0.1f, -0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.32f) - lineToRelative(0.08f, -0.1f) - lineToRelative(5.79f, -5.78f) - lineTo(3.0f, 14.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - horizontalLineToRelative(7.62f) - close() - moveTo(13.5f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(14.5f, 8.1f) - lineToRelative(5.8f, -5.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.31f, -0.08f) - lineToRelative(0.1f, 0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.32f) - lineToRelative(-0.08f, 0.1f) - lineToRelative(-5.8f, 5.8f) - lineTo(21.0f, 9.52f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 1.99f) - lineTo(13.5f, 11.51f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - lineTo(12.5f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - } - } - return _arrowMinimize!! - } - -private var _arrowMinimize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowMinimizeVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowMinimizeVertical.kt deleted file mode 100644 index 14214dd4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowMinimizeVertical.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowMinimizeVertical: ImageVector - get() { - if (_arrowMinimizeVertical != null) { - return _arrowMinimizeVertical!! - } - _arrowMinimizeVertical = fluentIcon(name = "Filled.ArrowMinimizeVertical") { - fluentPath { - moveTo(13.8f, 18.7f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, -1.4f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, 1.4f) - lineToRelative(0.8f, -0.79f) - lineTo(11.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-3.09f) - lineToRelative(0.8f, 0.8f) - close() - moveTo(4.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(5.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(13.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(3.09f) - lineToRelative(-0.8f, -0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) - lineToRelative(2.5f, 2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) - lineToRelative(2.5f, -2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.42f) - lineToRelative(-0.8f, 0.8f) - lineTo(13.0f, 3.0f) - close() - } - } - return _arrowMinimizeVertical!! - } - -private var _arrowMinimizeVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowMove.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowMove.kt deleted file mode 100644 index 043e844a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowMove.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowMove: ImageVector - get() { - if (_arrowMove != null) { - return _arrowMove!! - } - _arrowMove = fluentIcon(name = "Filled.ArrowMove") { - fluentPath { - moveTo(15.46f, 6.46f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 0.0f) - lineTo(13.0f, 5.4f) - verticalLineToRelative(2.84f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(11.0f, 5.41f) - lineTo(9.96f, 6.46f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, -1.42f) - lineTo(11.3f, 2.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 0.0f) - lineToRelative(2.75f, 2.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.42f) - close() - moveTo(6.46f, 14.04f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.42f, 1.42f) - lineTo(2.3f, 12.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.42f) - lineToRelative(2.75f, -2.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 1.42f) - lineTo(5.4f, 11.0f) - horizontalLineToRelative(2.84f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(5.41f, 13.0f) - lineToRelative(1.05f, 1.04f) - close() - moveTo(18.96f, 15.46f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, -1.42f) - lineTo(18.6f, 13.0f) - horizontalLineToRelative(-2.84f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(2.84f) - lineToRelative(-1.05f, -1.04f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, -1.42f) - lineToRelative(2.75f, 2.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.42f) - lineToRelative(-2.75f, 2.75f) - close() - moveTo(11.0f, 18.59f) - verticalLineToRelative(-2.84f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(2.84f) - lineToRelative(1.04f, -1.05f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 1.42f) - lineTo(12.7f, 21.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 0.0f) - lineToRelative(-2.75f, -2.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.42f, -1.42f) - lineTo(11.0f, 18.6f) - close() - } - } - return _arrowMove!! - } - -private var _arrowMove: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowNext.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowNext.kt deleted file mode 100644 index 251985cb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowNext.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowNext: ImageVector - get() { - if (_arrowNext != null) { - return _arrowNext!! - } - _arrowNext = fluentIcon(name = "Filled.ArrowNext") { - fluentPath { - moveTo(18.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(19.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(17.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(5.3f, 3.3f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 6.6f, 3.2f) - lineToRelative(0.1f, 0.08f) - lineToRelative(8.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.32f) - lineToRelative(-0.08f, 0.1f) - lineToRelative(-8.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.5f, -1.32f) - lineToRelative(0.08f, -0.1f) - lineTo(12.6f, 12.0f) - lineToRelative(-7.3f, -7.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) - close() - } - } - return _arrowNext!! - } - -private var _arrowNext: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowOutlineUpRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowOutlineUpRight.kt deleted file mode 100644 index 0aee1aaa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowOutlineUpRight.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowOutlineUpRight: ImageVector - get() { - if (_arrowOutlineUpRight != null) { - return _arrowOutlineUpRight!! - } - _arrowOutlineUpRight = fluentIcon(name = "Filled.ArrowOutlineUpRight") { - fluentPath { - moveTo(19.83f, 2.01f) - curveToRelative(1.24f, -0.14f, 2.3f, 0.91f, 2.16f, 2.16f) - lineToRelative(-1.34f, 12.06f) - arcToRelative(1.95f, 1.95f, 0.0f, false, true, -3.32f, 1.16f) - lineToRelative(-1.27f, -1.27f) - lineToRelative(-5.3f, 5.3f) - curveToRelative(-0.76f, 0.77f, -2.0f, 0.77f, -2.76f, 0.0f) - lineTo(2.57f, 16.0f) - curveToRelative(-0.76f, -0.76f, -0.76f, -2.0f, 0.0f, -2.76f) - lineToRelative(5.3f, -5.3f) - lineToRelative(-1.26f, -1.27f) - arcToRelative(1.95f, 1.95f, 0.0f, false, true, 1.16f, -3.32f) - lineToRelative(12.06f, -1.34f) - close() - } - } - return _arrowOutlineUpRight!! - } - -private var _arrowOutlineUpRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowParagraph.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowParagraph.kt deleted file mode 100644 index f2813841..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowParagraph.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowParagraph: ImageVector - get() { - if (_arrowParagraph != null) { - return _arrowParagraph!! - } - _arrowParagraph = fluentIcon(name = "Filled.ArrowParagraph") { - fluentPath { - moveTo(21.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - horizontalLineToRelative(-4.59f) - lineToRelative(2.3f, 2.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 1.4f) - lineToRelative(-4.0f, -4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) - lineToRelative(4.0f, -4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.42f, 1.4f) - lineTo(14.4f, 8.0f) - horizontalLineTo(19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineTo(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(7.3f, 11.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.4f) - lineTo(9.58f, 15.0f) - horizontalLineTo(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(6.59f) - lineToRelative(-2.3f, 2.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.42f, 1.4f) - lineToRelative(4.0f, -4.0f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 13.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.3f, -0.71f) - lineToRelative(-4.0f, -4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) - close() - } - } - return _arrowParagraph!! - } - -private var _arrowParagraph: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowPrevious.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowPrevious.kt deleted file mode 100644 index eb1e99d9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowPrevious.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowPrevious: ImageVector - get() { - if (_arrowPrevious != null) { - return _arrowPrevious!! - } - _arrowPrevious = fluentIcon(name = "Filled.ArrowPrevious") { - fluentPath { - moveTo(6.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 0.88f) - lineTo(5.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.12f) - lineTo(7.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - moveTo(18.7f, 3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.31f, -0.09f) - lineToRelative(-0.1f, 0.08f) - lineToRelative(-8.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.08f, 1.32f) - lineToRelative(0.08f, 0.1f) - lineToRelative(8.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.5f, -1.32f) - lineToRelative(-0.08f, -0.1f) - lineTo(11.4f, 12.0f) - lineToRelative(7.3f, -7.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.4f) - close() - } - } - return _arrowPrevious!! - } - -private var _arrowPrevious: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowRedo.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowRedo.kt deleted file mode 100644 index 725e23ed..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowRedo.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowRedo: ImageVector - get() { - if (_arrowRedo != null) { - return _arrowRedo!! - } - _arrowRedo = fluentIcon(name = "Filled.ArrowRedo") { - fluentPath { - moveToRelative(18.0f, 7.59f) - lineToRelative(-3.64f, -3.64f) - arcToRelative(6.66f, 6.66f, 0.0f, true, false, -9.42f, 9.42f) - lineToRelative(8.34f, 8.34f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.41f, -1.42f) - lineToRelative(-8.34f, -8.33f) - arcToRelative(4.66f, 4.66f, 0.0f, false, true, 6.42f, -6.76f) - lineToRelative(0.18f, 0.17f) - lineTo(16.59f, 9.0f) - horizontalLineTo(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 0.88f) - verticalLineTo(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.88f, 1.0f) - horizontalLineTo(19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -0.88f) - verticalLineTo(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, -0.11f) - verticalLineToRelative(4.7f) - lineToRelative(-3.64f, -3.64f) - lineTo(18.0f, 7.6f) - close() - } - } - return _arrowRedo!! - } - -private var _arrowRedo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowRepeat1.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowRepeat1.kt deleted file mode 100644 index 8c243ae3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowRepeat1.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowRepeat1: ImageVector - get() { - if (_arrowRepeat1 != null) { - return _arrowRepeat1!! - } - _arrowRepeat1 = fluentIcon(name = "Filled.ArrowRepeat1") { - fluentPath { - moveToRelative(14.71f, 2.29f) - lineToRelative(-0.08f, -0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.33f, 0.08f) - lineToRelative(-0.08f, 0.09f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.08f, 1.32f) - lineTo(14.6f, 5.0f) - lineTo(8.76f, 5.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, false, -5.57f, 10.9f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.63f, -1.17f) - lineToRelative(-0.14f, -0.22f) - arcTo(5.0f, 5.0f, 0.0f, false, true, 9.0f, 7.0f) - horizontalLineToRelative(5.6f) - lineToRelative(-1.3f, 1.3f) - lineToRelative(-0.08f, 0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.5f, 1.33f) - lineToRelative(3.0f, -3.0f) - lineToRelative(0.08f, -0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.08f, -1.32f) - lineToRelative(-3.0f, -3.0f) - close() - moveTo(20.79f, 8.06f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.62f, 1.18f) - curveToRelative(0.44f, 0.66f, 0.72f, 1.42f, 0.8f, 2.25f) - curveToRelative(0.74f, 0.3f, 1.41f, 0.74f, 1.99f, 1.28f) - arcToRelative(7.07f, 7.07f, 0.0f, false, false, -1.17f, -4.71f) - close() - moveTo(9.4f, 16.99f) - horizontalLineToRelative(1.61f) - arcToRelative(6.6f, 6.6f, 0.0f, false, false, 0.15f, 2.0f) - lineTo(9.4f, 18.99f) - lineToRelative(1.3f, 1.3f) - lineToRelative(0.09f, 0.09f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 1.4f) - lineToRelative(-0.1f, -0.08f) - lineToRelative(-3.0f, -3.0f) - lineToRelative(-0.08f, -0.09f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.23f) - lineToRelative(0.08f, -0.1f) - lineToRelative(3.0f, -3.0f) - lineToRelative(0.1f, -0.07f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.22f, -0.01f) - lineToRelative(0.1f, 0.08f) - lineToRelative(0.08f, 0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.22f) - lineToRelative(-0.08f, 0.1f) - lineToRelative(-1.3f, 1.29f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(18.11f, 14.01f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.56f, 0.27f) - curveToRelative(-0.05f, 0.11f, -0.27f, 0.45f, -0.61f, 0.82f) - curveToRelative(-0.33f, 0.38f, -0.74f, 0.74f, -1.16f, 0.95f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.44f, 0.9f) - curveToRelative(0.5f, -0.25f, 0.93f, -0.62f, 1.28f, -0.98f) - verticalLineToRelative(4.53f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.39f, -0.49f) - close() - } - } - return _arrowRepeat1!! - } - -private var _arrowRepeat1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowRepeatAll.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowRepeatAll.kt deleted file mode 100644 index a21c12f1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowRepeatAll.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowRepeatAll: ImageVector - get() { - if (_arrowRepeatAll != null) { - return _arrowRepeatAll!! - } - _arrowRepeatAll = fluentIcon(name = "Filled.ArrowRepeatAll") { - fluentPath { - moveToRelative(14.71f, 2.29f) - lineToRelative(-0.08f, -0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.33f, 0.08f) - lineToRelative(-0.08f, 0.09f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.08f, 1.32f) - lineTo(14.6f, 5.0f) - lineTo(8.76f, 5.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, false, -5.57f, 10.9f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.63f, -1.17f) - lineToRelative(-0.14f, -0.22f) - arcTo(5.0f, 5.0f, 0.0f, false, true, 9.0f, 7.0f) - horizontalLineToRelative(5.6f) - lineToRelative(-1.3f, 1.3f) - lineToRelative(-0.08f, 0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.5f, 1.33f) - lineToRelative(3.0f, -3.0f) - lineToRelative(0.08f, -0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.08f, -1.32f) - lineToRelative(-3.0f, -3.0f) - close() - moveTo(20.79f, 8.06f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.62f, 1.18f) - arcTo(5.0f, 5.0f, 0.0f, false, true, 15.0f, 16.99f) - lineTo(9.41f, 16.99f) - lineToRelative(1.3f, -1.3f) - lineToRelative(0.08f, -0.09f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.23f) - lineToRelative(-0.08f, -0.09f) - lineToRelative(-0.1f, -0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.23f, 0.0f) - lineToRelative(-0.09f, 0.08f) - lineToRelative(-3.0f, 3.0f) - lineToRelative(-0.08f, 0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.23f) - lineToRelative(0.08f, 0.09f) - lineToRelative(3.0f, 3.0f) - lineToRelative(0.1f, 0.09f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, -1.41f) - lineToRelative(-0.08f, -0.09f) - lineToRelative(-1.3f, -1.3f) - horizontalLineToRelative(5.83f) - arcTo(7.0f, 7.0f, 0.0f, false, false, 20.8f, 8.05f) - close() - } - } - return _arrowRepeatAll!! - } - -private var _arrowRepeatAll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowRepeatAllOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowRepeatAllOff.kt deleted file mode 100644 index 694cd532..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowRepeatAllOff.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowRepeatAllOff: ImageVector - get() { - if (_arrowRepeatAllOff != null) { - return _arrowRepeatAllOff!! - } - _arrowRepeatAllOff = fluentIcon(name = "Filled.ArrowRepeatAllOff") { - fluentPath { - moveToRelative(3.61f, 2.2f) - lineToRelative(0.1f, 0.1f) - lineToRelative(18.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 1.49f) - lineToRelative(-0.1f, -0.08f) - lineToRelative(-3.07f, -3.07f) - curveToRelative(-0.6f, 0.2f, -1.23f, 0.32f, -1.89f, 0.35f) - lineTo(15.0f, 19.0f) - lineTo(9.4f, 19.0f) - lineToRelative(1.3f, 1.3f) - lineToRelative(0.09f, 0.09f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 1.41f) - lineToRelative(-0.1f, -0.08f) - lineToRelative(-3.0f, -3.0f) - lineToRelative(-0.08f, -0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.23f) - lineToRelative(0.08f, -0.1f) - lineToRelative(3.0f, -3.0f) - lineToRelative(0.1f, -0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.22f, 0.0f) - lineToRelative(0.1f, 0.08f) - lineToRelative(0.08f, 0.09f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.23f) - lineToRelative(-0.08f, 0.1f) - lineTo(9.4f, 17.0f) - horizontalLineToRelative(5.6f) - lineToRelative(0.54f, -0.03f) - lineToRelative(-9.2f, -9.2f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, -1.67f, 6.75f) - lineToRelative(0.14f, 0.22f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.63f, 1.16f) - arcTo(6.99f, 6.99f, 0.0f, false, true, 4.9f, 6.32f) - lineTo(2.29f, 3.71f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -1.5f) - close() - moveTo(20.0f, 7.69f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.79f, 0.38f) - lineToRelative(0.05f, 0.08f) - lineToRelative(0.02f, 0.03f) - arcToRelative(6.96f, 6.96f, 0.0f, false, true, -1.0f, 8.87f) - lineToRelative(-1.41f, -1.42f) - arcToRelative(4.99f, 4.99f, 0.0f, false, false, 0.86f, -6.16f) - lineToRelative(-0.14f, -0.22f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 20.0f, 7.68f) - close() - moveTo(14.63f, 2.22f) - lineTo(14.71f, 2.3f) - lineTo(17.71f, 5.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.09f, 1.33f) - lineToRelative(-0.08f, 0.09f) - lineToRelative(-3.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.5f, -1.32f) - lineToRelative(0.08f, -0.1f) - lineTo(14.6f, 7.0f) - lineTo(9.83f, 7.0f) - lineTo(7.9f, 5.1f) - curveToRelative(0.28f, -0.05f, 0.56f, -0.07f, 0.85f, -0.08f) - horizontalLineToRelative(5.84f) - lineToRelative(-1.3f, -1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.33f) - lineToRelative(0.08f, -0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.33f, -0.07f) - close() - } - } - return _arrowRepeatAllOff!! - } - -private var _arrowRepeatAllOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowReply.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowReply.kt deleted file mode 100644 index 99c71843..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowReply.kt +++ /dev/null @@ -1,37 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowReply: ImageVector - get() { - if (_arrowReply != null) { - return _arrowReply!! - } - _arrowReply = fluentIcon(name = "Filled.ArrowReply") { - fluentPath { - moveTo(9.7f, 16.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.41f, 1.4f) - lineToRelative(-5.0f, -5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) - lineToRelative(5.0f, -5.0f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 9.7f, 7.7f) - lineTo(6.41f, 11.0f) - horizontalLineTo(13.0f) - arcToRelative(8.0f, 8.0f, 0.0f, false, true, 8.0f, 7.75f) - verticalLineTo(19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, -5.78f, -6.0f) - horizontalLineTo(6.41f) - lineToRelative(3.3f, 3.3f) - close() - } - } - return _arrowReply!! - } - -private var _arrowReply: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowReplyAll.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowReplyAll.kt deleted file mode 100644 index 6d637b89..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowReplyAll.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowReplyAll: ImageVector - get() { - if (_arrowReplyAll != null) { - return _arrowReplyAll!! - } - _arrowReplyAll = fluentIcon(name = "Filled.ArrowReplyAll") { - fluentPath { - moveTo(13.7f, 16.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.41f, 1.4f) - lineToRelative(-5.0f, -5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) - lineToRelative(5.0f, -5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, 1.4f) - lineTo(10.41f, 11.0f) - lineTo(13.0f, 11.0f) - arcToRelative(8.0f, 8.0f, 0.0f, false, true, 8.0f, 7.75f) - lineTo(21.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, -5.78f, -6.0f) - horizontalLineToRelative(-2.81f) - lineToRelative(3.3f, 3.3f) - close() - moveTo(8.7f, 6.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.4f) - lineTo(4.41f, 12.0f) - lineToRelative(4.3f, 4.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.42f, 1.4f) - lineToRelative(-5.0f, -5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) - lineToRelative(5.0f, -5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, 0.0f) - close() - } - } - return _arrowReplyAll!! - } - -private var _arrowReplyAll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowReplyDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowReplyDown.kt deleted file mode 100644 index d3e56c01..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowReplyDown.kt +++ /dev/null @@ -1,37 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowReplyDown: ImageVector - get() { - if (_arrowReplyDown != null) { - return _arrowReplyDown!! - } - _arrowReplyDown = fluentIcon(name = "Filled.ArrowReplyDown") { - fluentPath { - moveTo(9.7f, 8.7f) - arcTo(1.0f, 1.0f, 0.0f, true, false, 8.3f, 7.3f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.4f) - lineToRelative(5.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.41f, -1.4f) - lineTo(6.41f, 14.0f) - horizontalLineTo(13.0f) - arcToRelative(8.0f, 8.0f, 0.0f, false, false, 8.0f, -7.75f) - verticalLineTo(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, -5.78f, 6.0f) - horizontalLineTo(6.41f) - lineToRelative(3.3f, -3.3f) - close() - } - } - return _arrowReplyDown!! - } - -private var _arrowReplyDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowReset.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowReset.kt deleted file mode 100644 index 40302a56..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowReset.kt +++ /dev/null @@ -1,37 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowReset: ImageVector - get() { - if (_arrowReset != null) { - return _arrowReset!! - } - _arrowReset = fluentIcon(name = "Filled.ArrowReset") { - fluentPath { - moveTo(7.2f, 2.54f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.42f) - lineTo(5.42f, 5.75f) - horizontalLineToRelative(7.84f) - arcToRelative(8.0f, 8.0f, 0.0f, true, true, -8.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(6.0f, 6.0f, 0.0f, true, false, 6.0f, -6.0f) - horizontalLineTo(5.41f) - lineToRelative(1.8f, 1.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 1.4f) - lineToRelative(-3.5f, -3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) - lineToRelative(3.5f, -3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 0.0f) - close() - } - } - return _arrowReset!! - } - -private var _arrowReset: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowRotateClockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowRotateClockwise.kt deleted file mode 100644 index fcbe0835..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowRotateClockwise.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowRotateClockwise: ImageVector - get() { - if (_arrowRotateClockwise != null) { - return _arrowRotateClockwise!! - } - _arrowRotateClockwise = fluentIcon(name = "Filled.ArrowRotateClockwise") { - fluentPath { - moveTo(12.0f, 3.0f) - arcToRelative(9.0f, 9.0f, 0.0f, false, true, 4.13f, 17.0f) - lineTo(18.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(14.0f, 22.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - lineTo(13.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(15.0f, 18.33f) - arcTo(7.0f, 7.0f, 0.0f, true, false, 5.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(9.0f, 9.0f, 0.0f, false, true, 9.0f, -9.0f) - close() - moveTo(12.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) - close() - moveTo(12.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - } - } - return _arrowRotateClockwise!! - } - -private var _arrowRotateClockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowRotateCounterclockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowRotateCounterclockwise.kt deleted file mode 100644 index 31a50249..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowRotateCounterclockwise.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowRotateCounterclockwise: ImageVector - get() { - if (_arrowRotateCounterclockwise != null) { - return _arrowRotateCounterclockwise!! - } - _arrowRotateCounterclockwise = fluentIcon(name = "Filled.ArrowRotateCounterclockwise") { - fluentPath { - moveTo(12.0f, 3.0f) - arcToRelative(9.0f, 9.0f, 0.0f, false, false, -4.13f, 17.0f) - lineTo(6.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, 2.0f) - lineTo(10.0f, 22.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -0.88f) - lineTo(11.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, -0.12f) - lineTo(9.0f, 18.33f) - arcTo(7.0f, 7.0f, 0.0f, true, true, 19.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - arcToRelative(9.0f, 9.0f, 0.0f, false, false, -9.0f, -9.0f) - close() - moveTo(12.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - moveTo(12.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - } - } - return _arrowRotateCounterclockwise!! - } - -private var _arrowRotateCounterclockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowRouting.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowRouting.kt deleted file mode 100644 index 2846b976..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowRouting.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowRouting: ImageVector - get() { - if (_arrowRouting != null) { - return _arrowRouting!! - } - _arrowRouting = fluentIcon(name = "Filled.ArrowRouting") { - fluentPath { - moveTo(18.7f, 2.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.4f, 1.4f) - lineTo(18.59f, 5.0f) - horizontalLineToRelative(-5.6f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineTo(7.84f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineTo(9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) - verticalLineTo(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(5.58f) - lineTo(17.3f, 8.29f) - arcTo(1.0f, 1.0f, 0.0f, true, false, 18.7f, 9.7f) - lineToRelative(3.01f, -3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.41f) - lineToRelative(-3.0f, -3.0f) - close() - } - } - return _arrowRouting!! - } - -private var _arrowRouting: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowRoutingRectangleMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowRoutingRectangleMultiple.kt deleted file mode 100644 index 3ea798dd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowRoutingRectangleMultiple.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowRoutingRectangleMultiple: ImageVector - get() { - if (_arrowRoutingRectangleMultiple != null) { - return _arrowRoutingRectangleMultiple!! - } - _arrowRoutingRectangleMultiple = fluentIcon(name = "Filled.ArrowRoutingRectangleMultiple") { - fluentPath { - moveTo(18.7f, 2.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.4f, 1.4f) - lineTo(18.59f, 5.0f) - horizontalLineToRelative(-5.6f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - lineTo(7.84f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 2.0f) - lineTo(9.0f, 20.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) - lineTo(12.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(5.58f) - lineTo(17.3f, 8.29f) - arcTo(1.0f, 1.0f, 0.0f, true, false, 18.7f, 9.7f) - lineToRelative(3.01f, -3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.41f) - lineToRelative(-3.0f, -3.0f) - close() - moveTo(14.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -1.0f, 0.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) - horizontalLineToRelative(4.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) - verticalLineToRelative(-3.0f) - close() - } - } - return _arrowRoutingRectangleMultiple!! - } - -private var _arrowRoutingRectangleMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowShuffle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowShuffle.kt deleted file mode 100644 index 7610698b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowShuffle.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowShuffle: ImageVector - get() { - if (_arrowShuffle != null) { - return _arrowShuffle!! - } - _arrowShuffle = fluentIcon(name = "Filled.ArrowShuffle") { - fluentPath { - moveTo(19.2f, 4.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.4f, 1.4f) - lineToRelative(0.8f, 0.8f) - curveToRelative(-3.81f, 0.17f, -6.17f, 2.6f, -8.23f, 4.72f) - lineToRelative(-0.09f, 0.08f) - curveTo(8.06f, 13.6f, 6.15f, 15.5f, 3.0f, 15.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - curveToRelative(4.05f, 0.0f, 6.5f, -2.52f, 8.63f, -4.72f) - lineToRelative(0.09f, -0.08f) - curveToRelative(2.12f, -2.19f, 3.96f, -4.02f, 6.85f, -4.19f) - lineToRelative(-0.78f, 0.78f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.42f) - lineToRelative(2.5f, -2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) - lineToRelative(-2.5f, -2.5f) - close() - moveTo(3.0f, 6.5f) - curveToRelative(3.23f, 0.0f, 5.44f, 1.6f, 7.29f, 3.37f) - lineToRelative(-0.58f, 0.58f) - lineToRelative(-0.14f, 0.16f) - lineToRelative(-0.68f, 0.69f) - curveTo(7.19f, 9.68f, 5.48f, 8.5f, 3.0f, 8.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - close() - moveTo(18.6f, 17.5f) - curveToRelative(-3.02f, -0.14f, -5.12f, -1.68f, -6.89f, -3.37f) - lineToRelative(0.58f, -0.58f) - lineToRelative(0.14f, -0.16f) - lineToRelative(0.68f, -0.69f) - curveToRelative(1.6f, 1.53f, 3.21f, 2.66f, 5.46f, 2.79f) - lineToRelative(-0.78f, -0.78f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, -1.42f) - lineToRelative(2.5f, 2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.42f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, -1.42f) - lineToRelative(0.8f, -0.8f) - close() - } - } - return _arrowShuffle!! - } - -private var _arrowShuffle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowShuffleOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowShuffleOff.kt deleted file mode 100644 index 3b6a9b45..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowShuffleOff.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowShuffleOff: ImageVector - get() { - if (_arrowShuffleOff != null) { - return _arrowShuffleOff!! - } - _arrowShuffleOff = fluentIcon(name = "Filled.ArrowShuffleOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(3.7f, 3.7f) - arcTo(8.81f, 8.81f, 0.0f, false, false, 3.0f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - curveToRelative(2.48f, 0.0f, 4.19f, 1.18f, 5.89f, 2.8f) - arcToRelative(85.0f, 85.0f, 0.0f, false, false, 0.67f, -0.68f) - lineToRelative(0.7f, 0.7f) - curveTo(8.05f, 13.6f, 6.14f, 15.5f, 3.0f, 15.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - curveToRelative(4.05f, 0.0f, 6.5f, -2.52f, 8.63f, -4.72f) - lineToRelative(0.05f, -0.04f) - lineToRelative(0.7f, 0.7f) - lineToRelative(-0.1f, 0.1f) - lineToRelative(-0.57f, 0.6f) - arcToRelative(12.4f, 12.4f, 0.0f, false, false, 4.18f, 2.8f) - lineToRelative(1.68f, 1.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.3f, 1.29f) - lineToRelative(1.85f, 1.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(17.58f, 14.4f) - lineTo(21.05f, 17.87f) - lineTo(21.71f, 17.21f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.63f, 1.11f) - close() - moveTo(12.41f, 9.23f) - lineTo(13.83f, 10.65f) - curveToRelative(1.38f, -1.19f, 2.83f, -2.03f, 4.74f, -2.14f) - lineToRelative(-0.78f, 0.78f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.42f) - lineToRelative(2.5f, -2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.42f, 1.42f) - lineToRelative(0.8f, 0.8f) - curveToRelative(-2.62f, 0.11f, -4.56f, 1.3f, -6.18f, 2.72f) - close() - } - } - return _arrowShuffleOff!! - } - -private var _arrowShuffleOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSort.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSort.kt deleted file mode 100644 index dcb75559..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSort.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowSort: ImageVector - get() { - if (_arrowSort != null) { - return _arrowSort!! - } - _arrowSort = fluentIcon(name = "Filled.ArrowSort") { - fluentPath { - moveToRelative(6.29f, 4.3f) - lineToRelative(-4.0f, 4.0f) - lineToRelative(-0.08f, 0.09f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.08f, 1.32f) - lineToRelative(0.1f, 0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.32f, -0.08f) - lineTo(6.0f, 7.4f) - verticalLineToRelative(11.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 0.9f) - lineToRelative(0.1f, -0.02f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.9f, -0.99f) - verticalLineTo(7.42f) - lineToRelative(2.28f, 2.29f) - lineToRelative(0.1f, 0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.32f, -1.5f) - lineToRelative(-4.0f, -4.0f) - lineToRelative(-0.1f, -0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.32f, 0.08f) - close() - moveTo(17.0f, 4.0f) - lineToRelative(-0.12f, 0.01f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.88f, 1.0f) - verticalLineToRelative(11.57f) - lineToRelative(-2.3f, -2.29f) - lineToRelative(-0.09f, -0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.32f, 1.5f) - lineToRelative(4.0f, 4.0f) - lineToRelative(0.1f, 0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.32f, -0.08f) - lineToRelative(4.0f, -4.0f) - lineToRelative(0.08f, -0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.08f, -1.32f) - lineToRelative(-0.1f, -0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.32f, 0.08f) - lineTo(18.0f, 16.6f) - verticalLineTo(4.89f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 17.0f, 4.0f) - close() - } - } - return _arrowSort!! - } - -private var _arrowSort: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSortDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSortDown.kt deleted file mode 100644 index b2a3b0e0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSortDown.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowSortDown: ImageVector - get() { - if (_arrowSortDown != null) { - return _arrowSortDown!! - } - _arrowSortDown = fluentIcon(name = "Filled.ArrowSortDown") { - fluentPath { - moveTo(11.88f, 4.01f) - horizontalLineTo(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - verticalLineToRelative(11.7f) - lineToRelative(2.3f, -2.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.31f, -0.08f) - lineToRelative(0.1f, 0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.32f) - lineToRelative(-0.08f, 0.1f) - lineToRelative(-4.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.08f) - lineToRelative(-0.1f, -0.08f) - lineToRelative(-4.0f, -4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -1.5f) - lineToRelative(0.1f, 0.08f) - lineTo(11.0f, 16.6f) - verticalLineTo(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -0.99f) - horizontalLineTo(12.0f) - horizontalLineToRelative(-0.12f) - close() - } - } - return _arrowSortDown!! - } - -private var _arrowSortDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSortDownLines.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSortDownLines.kt deleted file mode 100644 index e3dd724b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSortDownLines.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowSortDownLines: ImageVector - get() { - if (_arrowSortDownLines != null) { - return _arrowSortDownLines!! - } - _arrowSortDownLines = fluentIcon(name = "Filled.ArrowSortDownLines") { - fluentPath { - moveToRelative(8.5f, 4.0f) - lineToRelative(-0.12f, 0.01f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.88f, 1.0f) - verticalLineToRelative(11.57f) - lineTo(5.2f, 14.3f) - lineToRelative(-0.09f, -0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.32f, 1.5f) - lineToRelative(4.0f, 4.0f) - lineToRelative(0.1f, 0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.32f, -0.08f) - lineToRelative(4.0f, -4.0f) - lineToRelative(0.08f, -0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.08f, -1.32f) - lineToRelative(-0.1f, -0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.32f, 0.08f) - lineTo(9.5f, 16.6f) - lineTo(9.5f, 4.89f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -0.89f) - close() - moveTo(13.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-8.0f) - close() - moveTo(13.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-5.0f) - close() - moveTo(12.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - } - } - return _arrowSortDownLines!! - } - -private var _arrowSortDownLines: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSortUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSortUp.kt deleted file mode 100644 index 02d28898..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSortUp.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowSortUp: ImageVector - get() { - if (_arrowSortUp != null) { - return _arrowSortUp!! - } - _arrowSortUp = fluentIcon(name = "Filled.ArrowSortUp") { - fluentPath { - moveToRelative(7.3f, 8.3f) - lineToRelative(3.99f, -4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.1f) - lineToRelative(0.1f, 0.1f) - lineToRelative(4.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 1.5f) - lineToRelative(-0.1f, -0.1f) - lineTo(13.0f, 7.43f) - verticalLineTo(19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - horizontalLineTo(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - verticalLineTo(7.4f) - lineToRelative(-2.3f, 2.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.31f, 0.08f) - lineToRelative(-0.1f, -0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.32f) - lineToRelative(0.08f, -0.1f) - lineToRelative(4.0f, -4.0f) - lineToRelative(-4.0f, 4.0f) - close() - } - } - return _arrowSortUp!! - } - -private var _arrowSortUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSplit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSplit.kt deleted file mode 100644 index cfb47d07..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSplit.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowSplit: ImageVector - get() { - if (_arrowSplit != null) { - return _arrowSplit!! - } - _arrowSplit = fluentIcon(name = "Filled.ArrowSplit") { - fluentPath { - moveTo(12.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(2.25f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.0f, 11.75f) - verticalLineToRelative(5.84f) - lineToRelative(1.3f, -1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.42f) - lineToRelative(-3.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) - lineToRelative(-3.0f, -3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, -1.42f) - lineToRelative(1.3f, 1.3f) - verticalLineToRelative(-5.84f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(5.84f) - lineToRelative(1.3f, -1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.42f) - lineToRelative(-3.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) - lineToRelative(-3.0f, -3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, -1.42f) - lineTo(6.0f, 17.6f) - verticalLineToRelative(-5.84f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 8.75f, 9.0f) - horizontalLineTo(11.0f) - verticalLineTo(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - } - } - return _arrowSplit!! - } - -private var _arrowSplit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSquareDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSquareDown.kt deleted file mode 100644 index 64023a11..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSquareDown.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowSquareDown: ImageVector - get() { - if (_arrowSquareDown != null) { - return _arrowSquareDown!! - } - _arrowSquareDown = fluentIcon(name = "Filled.ArrowSquareDown") { - fluentPath { - moveTo(5.5f, 3.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 3.0f, 5.5f) - verticalLineToRelative(13.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 5.5f, 21.0f) - horizontalLineToRelative(13.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) - verticalLineToRelative(-13.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 18.5f, 3.0f) - horizontalLineToRelative(-13.0f) - close() - moveTo(16.53f, 11.72f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-4.0f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-4.0f, -4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) - lineToRelative(0.08f, 0.07f) - lineToRelative(2.72f, 2.72f) - lineTo(11.25f, 7.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineTo(12.0f, 7.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(6.69f) - lineToRelative(2.72f, -2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - close() - } - } - return _arrowSquareDown!! - } - -private var _arrowSquareDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowStepIn.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowStepIn.kt deleted file mode 100644 index b3d1b115..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowStepIn.kt +++ /dev/null @@ -1,39 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowStepIn: ImageVector - get() { - if (_arrowStepIn != null) { - return _arrowStepIn!! - } - _arrowStepIn = fluentIcon(name = "Filled.ArrowStepIn") { - fluentPath { - moveTo(12.0f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(9.26f) - lineToRelative(3.48f, -3.3f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.04f, 1.08f) - lineToRelative(-4.75f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.04f, 0.0f) - lineTo(6.73f, 9.8f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.04f, -1.08f) - lineToRelative(3.48f, 3.3f) - lineTo(11.25f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(15.0f, 19.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) - close() - } - } - return _arrowStepIn!! - } - -private var _arrowStepIn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowStepInLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowStepInLeft.kt deleted file mode 100644 index a2e11f7c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowStepInLeft.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowStepInLeft: ImageVector - get() { - if (_arrowStepInLeft != null) { - return _arrowStepInLeft!! - } - _arrowStepInLeft = fluentIcon(name = "Filled.ArrowStepInLeft") { - fluentPath { - moveTo(15.3f, 16.23f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.1f, 1.04f) - lineToRelative(-4.5f, -4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.04f) - lineToRelative(4.5f, -4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.1f, 1.04f) - lineTo(12.0f, 11.25f) - horizontalLineToRelative(9.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-9.26f) - lineToRelative(3.3f, 3.48f) - close() - moveTo(2.0f, 12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.0f) - close() - } - } - return _arrowStepInLeft!! - } - -private var _arrowStepInLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowStepInRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowStepInRight.kt deleted file mode 100644 index 4a17f3e4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowStepInRight.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowStepInRight: ImageVector - get() { - if (_arrowStepInRight != null) { - return _arrowStepInRight!! - } - _arrowStepInRight = fluentIcon(name = "Filled.ArrowStepInRight") { - fluentPath { - moveTo(8.7f, 16.23f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.1f, 1.04f) - lineToRelative(4.5f, -4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.04f) - lineTo(9.8f, 6.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.1f, 1.04f) - lineToRelative(3.3f, 3.48f) - horizontalLineTo(2.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(9.26f) - lineToRelative(-3.3f, 3.48f) - close() - moveTo(22.0f, 12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, -6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 6.0f, 0.0f) - close() - } - } - return _arrowStepInRight!! - } - -private var _arrowStepInRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowStepOut.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowStepOut.kt deleted file mode 100644 index 36a11dd9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowStepOut.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowStepOut: ImageVector - get() { - if (_arrowStepOut != null) { - return _arrowStepOut!! - } - _arrowStepOut = fluentIcon(name = "Filled.ArrowStepOut") { - fluentPath { - moveTo(12.75f, 13.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineTo(4.49f) - lineTo(7.77f, 7.8f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.04f, -1.08f) - lineToRelative(4.75f, -4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.04f, 0.0f) - lineToRelative(4.75f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.04f, 1.08f) - lineToRelative(-3.48f, -3.3f) - verticalLineToRelative(9.26f) - close() - moveTo(15.0f, 19.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) - close() - } - } - return _arrowStepOut!! - } - -private var _arrowStepOut: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSwap.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSwap.kt deleted file mode 100644 index 4d1cdb9f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSwap.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowSwap: ImageVector - get() { - if (_arrowSwap != null) { - return _arrowSwap!! - } - _arrowSwap = fluentIcon(name = "Filled.ArrowSwap") { - fluentPath { - moveToRelative(15.2f, 2.3f) - lineToRelative(4.0f, 3.99f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.1f, 1.32f) - lineToRelative(-0.1f, 0.09f) - lineToRelative(-4.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.49f, -1.31f) - lineToRelative(0.08f, -0.1f) - lineTo(16.1f, 8.0f) - lineTo(5.5f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.87f) - lineTo(4.5f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) - lineTo(16.1f, 6.0f) - lineToRelative(-2.3f, -2.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.09f, -1.31f) - lineToRelative(0.08f, -0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) - lineToRelative(0.1f, 0.08f) - lineToRelative(4.0f, 4.0f) - lineToRelative(-4.0f, -4.0f) - close() - moveTo(19.5f, 16.88f) - lineTo(19.5f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.89f, 1.0f) - lineTo(7.91f, 18.0f) - lineToRelative(2.3f, 2.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.31f) - lineToRelative(-0.08f, 0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.08f) - lineToRelative(-0.1f, -0.08f) - lineToRelative(-4.0f, -4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.32f) - lineToRelative(0.08f, -0.1f) - lineToRelative(4.0f, -4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.5f, 1.32f) - lineToRelative(-0.08f, 0.1f) - lineTo(7.9f, 16.0f) - lineTo(18.5f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(19.5f, 17.0f) - verticalLineToRelative(-0.12f) - close() - } - } - return _arrowSwap!! - } - -private var _arrowSwap: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSyncCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSyncCheckmark.kt deleted file mode 100644 index 40d8a6df..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSyncCheckmark.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowSyncCheckmark: ImageVector - get() { - if (_arrowSyncCheckmark != null) { - return _arrowSyncCheckmark!! - } - _arrowSyncCheckmark = fluentIcon(name = "Filled.ArrowSyncCheckmark") { - fluentPath { - moveTo(16.25f, 5.18f) - curveToRelative(-0.25f, 0.33f, -0.19f, 0.8f, 0.14f, 1.05f) - arcToRelative(7.24f, 7.24f, 0.0f, false, true, -3.6f, 12.98f) - arcToRelative(7.3f, 7.3f, 0.0f, false, true, -2.05f, -0.07f) - lineToRelative(-0.33f, 0.33f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.98f) - lineToRelative(0.07f, 0.08f) - lineToRelative(2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, -0.98f) - lineToRelative(-0.07f, -0.08f) - lineToRelative(-0.75f, -0.75f) - arcTo(8.75f, 8.75f, 0.0f, false, false, 17.3f, 5.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.05f, 0.14f) - close() - moveTo(10.53f, 1.47f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(0.75f, 0.75f) - arcToRelative(8.75f, 8.75f, 0.0f, false, false, -4.85f, 15.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.96f, -1.16f) - arcTo(7.23f, 7.23f, 0.0f, false, true, 11.2f, 4.8f) - horizontalLineToRelative(-0.01f) - arcToRelative(7.32f, 7.32f, 0.0f, false, true, 2.06f, 0.07f) - lineToRelative(0.33f, -0.33f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - close() - moveTo(18.0f, 12.0f) - arcToRelative(6.0f, 6.0f, 0.0f, true, true, -12.0f, 0.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 12.0f, 0.0f) - close() - moveTo(15.03f, 9.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineTo(11.0f, 12.94f) - lineToRelative(-0.97f, -0.97f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.5f, 1.5f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(3.5f, -3.5f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - close() - } - } - return _arrowSyncCheckmark!! - } - -private var _arrowSyncCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSyncCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSyncCircle.kt deleted file mode 100644 index 46436163..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSyncCircle.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowSyncCircle: ImageVector - get() { - if (_arrowSyncCircle != null) { - return _arrowSyncCircle!! - } - _arrowSyncCircle = fluentIcon(name = "Filled.ArrowSyncCircle") { - fluentPath { - moveTo(12.0f, 22.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, -20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, 20.0f) - close() - moveTo(15.27f, 10.75f) - lineTo(14.0f, 10.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.75f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(17.5f, 8.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - lineTo(16.0f, 9.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, -7.83f, -0.23f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.16f, 0.96f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.94f, 1.02f) - close() - moveTo(8.0f, 15.75f) - lineTo(8.0f, 15.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 7.82f, 0.24f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.14f, -0.97f) - arcToRelative(3.51f, 3.51f, 0.0f, false, true, -5.84f, -0.77f) - lineTo(10.0f, 13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(7.25f, 12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - close() - } - } - return _arrowSyncCircle!! - } - -private var _arrowSyncCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSyncDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSyncDismiss.kt deleted file mode 100644 index 0aad4da2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowSyncDismiss.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowSyncDismiss: ImageVector - get() { - if (_arrowSyncDismiss != null) { - return _arrowSyncDismiss!! - } - _arrowSyncDismiss = fluentIcon(name = "Filled.ArrowSyncDismiss") { - fluentPath { - moveTo(16.25f, 5.18f) - curveToRelative(-0.25f, 0.33f, -0.19f, 0.8f, 0.14f, 1.05f) - arcToRelative(7.24f, 7.24f, 0.0f, false, true, -3.6f, 12.98f) - lineToRelative(0.01f, -0.01f) - arcToRelative(7.33f, 7.33f, 0.0f, false, true, -2.05f, -0.07f) - lineToRelative(-0.34f, 0.34f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.98f) - lineToRelative(0.07f, 0.08f) - lineToRelative(2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, -0.98f) - lineToRelative(-0.07f, -0.08f) - lineToRelative(-0.75f, -0.75f) - arcTo(8.75f, 8.75f, 0.0f, false, false, 17.3f, 5.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.05f, 0.14f) - close() - moveTo(10.53f, 1.47f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(0.75f, 0.75f) - arcToRelative(8.75f, 8.75f, 0.0f, false, false, -4.85f, 15.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.96f, -1.16f) - arcTo(7.23f, 7.23f, 0.0f, false, true, 11.2f, 4.8f) - lineToRelative(-0.01f, 0.01f) - arcToRelative(7.32f, 7.32f, 0.0f, false, true, 2.05f, 0.07f) - lineToRelative(0.34f, -0.34f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - close() - moveTo(18.0f, 12.0f) - arcToRelative(6.0f, 6.0f, 0.0f, true, true, -12.0f, 0.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 12.0f, 0.0f) - close() - moveTo(10.53f, 9.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(10.94f, 12.0f) - lineToRelative(-1.47f, 1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineTo(12.0f, 13.06f) - lineToRelative(1.47f, 1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineTo(13.06f, 12.0f) - lineToRelative(1.47f, -1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineTo(12.0f, 10.94f) - lineToRelative(-1.47f, -1.47f) - close() - } - } - return _arrowSyncDismiss!! - } - -private var _arrowSyncDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTrending.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTrending.kt deleted file mode 100644 index dbffe728..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTrending.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowTrending: ImageVector - get() { - if (_arrowTrending != null) { - return _arrowTrending!! - } - _arrowTrending = fluentIcon(name = "Filled.ArrowTrending") { - fluentPath { - moveTo(14.0f, 5.5f) - horizontalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - verticalLineToRelative(7.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - verticalLineTo(8.9f) - lineToRelative(-7.3f, 7.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.31f, 0.08f) - lineToRelative(-0.1f, -0.08f) - lineTo(9.0f, 13.9f) - lineToRelative(-5.28f, 5.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.5f, -1.32f) - lineToRelative(0.08f, -0.1f) - lineToRelative(6.0f, -6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) - lineToRelative(0.1f, 0.08f) - lineTo(12.0f, 14.1f) - lineToRelative(6.58f, -6.59f) - horizontalLineTo(14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.99f, -0.88f) - verticalLineTo(6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) - horizontalLineTo(21.0f) - horizontalLineToRelative(-7.0f) - close() - } - } - return _arrowTrending!! - } - -private var _arrowTrending: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTrendingCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTrendingCheckmark.kt deleted file mode 100644 index c16e068c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTrendingCheckmark.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowTrendingCheckmark: ImageVector - get() { - if (_arrowTrendingCheckmark != null) { - return _arrowTrendingCheckmark!! - } - _arrowTrendingCheckmark = fluentIcon(name = "Filled.ArrowTrendingCheckmark") { - fluentPath { - moveTo(20.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(19.0f, 6.41f) - lineToRelative(-5.8f, 5.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) - lineTo(10.0f, 10.4f) - lineToRelative(-5.3f, 5.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.42f) - lineToRelative(6.0f, -6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) - lineToRelative(1.8f, 1.8f) - lineTo(17.59f, 5.0f) - lineTo(15.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-3.65f, 3.64f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _arrowTrendingCheckmark!! - } - -private var _arrowTrendingCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTrendingDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTrendingDown.kt deleted file mode 100644 index 7cf7526e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTrendingDown.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowTrendingDown: ImageVector - get() { - if (_arrowTrendingDown != null) { - return _arrowTrendingDown!! - } - _arrowTrendingDown = fluentIcon(name = "Filled.ArrowTrendingDown") { - fluentPath { - moveTo(14.0f, 19.0f) - horizontalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -0.88f) - verticalLineTo(11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, -0.12f) - verticalLineToRelative(4.7f) - lineTo(12.7f, 8.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.31f, -0.08f) - lineToRelative(-0.1f, 0.08f) - lineTo(9.0f, 10.6f) - lineToRelative(-5.28f, -5.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.5f, 1.32f) - lineToRelative(0.08f, 0.1f) - lineToRelative(6.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.32f, 0.08f) - lineToRelative(0.1f, -0.09f) - lineTo(12.0f, 10.41f) - lineTo(18.58f, 17.0f) - horizontalLineTo(14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.99f, 0.88f) - verticalLineTo(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.88f, 1.0f) - horizontalLineTo(14.0f) - close() - } - } - return _arrowTrendingDown!! - } - -private var _arrowTrendingDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTrendingLines.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTrendingLines.kt deleted file mode 100644 index 472ed0d3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTrendingLines.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowTrendingLines: ImageVector - get() { - if (_arrowTrendingLines != null) { - return _arrowTrendingLines!! - } - _arrowTrendingLines = fluentIcon(name = "Filled.ArrowTrendingLines") { - fluentPath { - moveTo(17.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(20.0f, 5.41f) - lineToRelative(-5.8f, 5.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) - lineTo(10.0f, 8.4f) - lineToRelative(-5.3f, 5.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.42f) - lineToRelative(6.0f, -6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) - lineToRelative(2.8f, 2.8f) - lineTo(18.59f, 4.0f) - lineTo(17.0f, 4.0f) - close() - moveTo(5.0f, 18.0f) - verticalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - close() - moveTo(10.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-7.0f) - close() - moveTo(14.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(20.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(20.0f, 11.0f) - close() - } - } - return _arrowTrendingLines!! - } - -private var _arrowTrendingLines: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTrendingSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTrendingSettings.kt deleted file mode 100644 index 39e89ed0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTrendingSettings.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowTrendingSettings: ImageVector - get() { - if (_arrowTrendingSettings != null) { - return _arrowTrendingSettings!! - } - _arrowTrendingSettings = fluentIcon(name = "Filled.ArrowTrendingSettings") { - fluentPath { - moveTo(20.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(19.0f, 6.41f) - lineToRelative(-5.8f, 5.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) - lineTo(10.0f, 10.4f) - lineToRelative(-5.3f, 5.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.42f) - lineToRelative(6.0f, -6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) - lineToRelative(1.8f, 1.8f) - lineTo(17.59f, 5.0f) - lineTo(15.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(14.28f, 13.98f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.59f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) - lineToRelative(0.55f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) - lineToRelative(-0.19f, 0.64f) - curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) - lineToRelative(0.49f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) - lineToRelative(-0.2f, -0.69f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) - lineToRelative(0.59f, -0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, -1.8f) - lineToRelative(-0.55f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.19f, -0.63f) - curveToRelative(-0.44f, -0.4f, -0.94f, -0.7f, -1.49f, -0.93f) - lineToRelative(-0.49f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) - lineToRelative(0.2f, 0.7f) - close() - moveTo(17.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) - close() - } - } - return _arrowTrendingSettings!! - } - -private var _arrowTrendingSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTrendingSparkle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTrendingSparkle.kt deleted file mode 100644 index 28189ec7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTrendingSparkle.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowTrendingSparkle: ImageVector - get() { - if (_arrowTrendingSparkle != null) { - return _arrowTrendingSparkle!! - } - _arrowTrendingSparkle = fluentIcon(name = "Filled.ArrowTrendingSparkle") { - fluentPath { - moveTo(4.85f, 8.15f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, 0.69f, 1.11f) - lineToRelative(0.45f, 1.38f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 1.02f, 0.0f) - lineToRelative(0.45f, -1.38f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, 1.8f, -1.8f) - lineToRelative(1.38f, -0.44f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, -1.03f) - horizontalLineToRelative(-0.03f) - lineToRelative(-1.38f, -0.45f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.8f, -1.8f) - lineTo(7.0f, 2.36f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, -1.03f, 0.0f) - lineTo(5.5f, 3.74f) - lineToRelative(-0.01f, 0.03f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.76f, 1.77f) - lineToRelative(-1.38f, 0.44f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, 1.03f) - lineToRelative(1.38f, 0.45f) - curveToRelative(0.42f, 0.14f, 0.8f, 0.37f, 1.11f, 0.69f) - close() - moveTo(20.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-2.59f) - lineToRelative(-5.8f, 5.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) - lineTo(10.0f, 14.4f) - lineToRelative(-5.3f, 5.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.42f) - lineToRelative(6.0f, -6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) - lineToRelative(1.8f, 1.8f) - lineTo(17.59f, 9.0f) - lineTo(15.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(20.02f, 17.96f) - lineTo(20.78f, 18.21f) - horizontalLineToRelative(0.02f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, 0.47f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, 0.1f) - lineToRelative(-0.77f, 0.26f) - arcToRelative(1.58f, 1.58f, 0.0f, false, false, -1.0f, 1.0f) - lineToRelative(-0.24f, 0.76f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.58f, 0.0f) - lineToRelative(-0.24f, -0.77f) - arcToRelative(1.57f, 1.57f, 0.0f, false, false, -1.0f, -1.0f) - lineToRelative(-0.77f, -0.25f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, -0.46f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, -0.1f) - lineToRelative(0.77f, -0.26f) - arcToRelative(1.58f, 1.58f, 0.0f, false, false, 0.98f, -1.0f) - lineToRelative(0.25f, -0.76f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.57f, 0.0f) - lineToRelative(0.25f, 0.77f) - arcToRelative(1.58f, 1.58f, 0.0f, false, false, 1.0f, 1.0f) - close() - } - } - return _arrowTrendingSparkle!! - } - -private var _arrowTrendingSparkle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTrendingText.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTrendingText.kt deleted file mode 100644 index 25aff950..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTrendingText.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowTrendingText: ImageVector - get() { - if (_arrowTrendingText != null) { - return _arrowTrendingText!! - } - _arrowTrendingText = fluentIcon(name = "Filled.ArrowTrendingText") { - fluentPath { - moveTo(21.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineToRelative(-5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(2.59f) - lineToRelative(-5.09f, 5.09f) - lineToRelative(-1.8f, -1.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) - lineToRelative(-6.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, 1.42f) - lineToRelative(5.3f, -5.3f) - lineToRelative(1.8f, 1.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.56f, 0.28f) - curveToRelative(0.3f, -0.2f, 0.63f, -0.34f, 0.98f, -0.42f) - lineTo(19.0f, 6.41f) - lineTo(19.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(21.0f, 4.0f) - close() - moveTo(14.0f, 13.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - verticalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - horizontalLineToRelative(-7.0f) - close() - moveTo(14.0f, 16.5f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - moveTo(14.0f, 19.5f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - } - } - return _arrowTrendingText!! - } - -private var _arrowTrendingText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTrendingWrench.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTrendingWrench.kt deleted file mode 100644 index 8f209c2f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTrendingWrench.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowTrendingWrench: ImageVector - get() { - if (_arrowTrendingWrench != null) { - return _arrowTrendingWrench!! - } - _arrowTrendingWrench = fluentIcon(name = "Filled.ArrowTrendingWrench") { - fluentPath { - moveTo(21.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineToRelative(-5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(2.59f) - lineToRelative(-5.09f, 5.09f) - lineToRelative(-1.8f, -1.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) - lineToRelative(-6.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, 1.42f) - lineToRelative(5.3f, -5.3f) - lineToRelative(1.8f, 1.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) - lineTo(19.0f, 6.4f) - lineTo(19.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(21.0f, 4.0f) - close() - moveTo(20.48f, 11.83f) - curveToRelative(0.25f, -0.25f, 0.17f, -0.67f, -0.18f, -0.75f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.54f, 5.47f) - lineToRelative(-3.74f, 3.75f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 2.12f, 2.12f) - lineToRelative(3.74f, -3.74f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 5.47f, -4.54f) - curveToRelative(-0.08f, -0.35f, -0.5f, -0.44f, -0.75f, -0.19f) - lineToRelative(-1.74f, 1.75f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.12f, -2.12f) - lineToRelative(1.74f, -1.75f) - close() - } - } - return _arrowTrendingWrench!! - } - -private var _arrowTrendingWrench: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTurnBidirectionalDownRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTurnBidirectionalDownRight.kt deleted file mode 100644 index 763be254..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTurnBidirectionalDownRight.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowTurnBidirectionalDownRight: ImageVector - get() { - if (_arrowTurnBidirectionalDownRight != null) { - return _arrowTurnBidirectionalDownRight!! - } - _arrowTurnBidirectionalDownRight = fluentIcon(name = - "Filled.ArrowTurnBidirectionalDownRight") { - fluentPath { - moveTo(17.7f, 3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.4f, 1.4f) - lineTo(18.58f, 7.0f) - horizontalLineTo(11.5f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 7.0f, 11.5f) - verticalLineToRelative(7.09f) - lineToRelative(-2.3f, -2.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.4f, 1.42f) - lineToRelative(4.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.42f) - lineTo(9.0f, 18.6f) - verticalLineTo(11.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 11.5f, 9.0f) - horizontalLineToRelative(7.09f) - lineToRelative(-2.3f, 2.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.42f, 1.4f) - lineToRelative(4.0f, -4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.4f) - lineToRelative(-4.0f, -4.0f) - close() - } - } - return _arrowTurnBidirectionalDownRight!! - } - -private var _arrowTurnBidirectionalDownRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTurnRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTurnRight.kt deleted file mode 100644 index b4fc0fe7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowTurnRight.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowTurnRight: ImageVector - get() { - if (_arrowTurnRight != null) { - return _arrowTurnRight!! - } - _arrowTurnRight = fluentIcon(name = "Filled.ArrowTurnRight") { - fluentPath { - moveTo(16.46f, 3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.42f, 1.4f) - lineToRelative(2.3f, 2.3f) - horizontalLineTo(10.5f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 6.0f, 11.5f) - verticalLineTo(20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-8.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 10.5f, 9.0f) - horizontalLineToRelative(7.34f) - lineToRelative(-2.8f, 2.8f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.42f, 1.4f) - lineToRelative(4.25f, -4.24f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) - lineTo(16.46f, 3.3f) - close() - } - } - return _arrowTurnRight!! - } - -private var _arrowTurnRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowUndo.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowUndo.kt deleted file mode 100644 index 9cdcc960..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowUndo.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowUndo: ImageVector - get() { - if (_arrowUndo != null) { - return _arrowUndo!! - } - _arrowUndo = fluentIcon(name = "Filled.ArrowUndo") { - fluentPath { - moveToRelative(6.9f, 6.68f) - lineToRelative(2.74f, -2.73f) - arcToRelative(6.66f, 6.66f, 0.0f, true, true, 9.42f, 9.42f) - lineToRelative(-8.34f, 8.34f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.41f, -1.42f) - lineToRelative(8.34f, -8.33f) - arcToRelative(4.66f, 4.66f, 0.0f, false, false, -6.42f, -6.76f) - lineToRelative(-0.18f, 0.17f) - lineTo(7.41f, 9.0f) - horizontalLineTo(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - verticalLineTo(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - horizontalLineTo(4.94f) - lineToRelative(-0.1f, -0.01f) - lineToRelative(-0.1f, -0.03f) - lineToRelative(-0.14f, -0.04f) - lineToRelative(-0.08f, -0.04f) - lineToRelative(-0.1f, -0.07f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.13f, -0.1f) - lineToRelative(-0.09f, -0.1f) - lineToRelative(-0.07f, -0.12f) - lineToRelative(-0.05f, -0.1f) - lineToRelative(-0.04f, -0.1f) - lineToRelative(-0.01f, -0.06f) - lineToRelative(-0.02f, -0.08f) - verticalLineToRelative(-0.06f) - lineTo(4.0f, 10.0f) - verticalLineTo(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.11f) - verticalLineToRelative(4.7f) - lineToRelative(3.64f, -3.64f) - lineToRelative(-2.73f, 2.73f) - close() - } - } - return _arrowUndo!! - } - -private var _arrowUndo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowUpload.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowUpload.kt deleted file mode 100644 index 44056453..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowUpload.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowUpload: ImageVector - get() { - if (_arrowUpload != null) { - return _arrowUpload!! - } - _arrowUpload = fluentIcon(name = "Filled.ArrowUpload") { - fluentPath { - moveTo(5.25f, 3.5f) - horizontalLineToRelative(13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - horizontalLineTo(5.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.49f) - horizontalLineToRelative(0.1f) - close() - moveTo(11.88f, 22.0f) - horizontalLineTo(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -0.88f) - verticalLineTo(8.4f) - lineToRelative(3.3f, 3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.31f, 0.08f) - lineToRelative(0.1f, -0.09f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.08f, -1.32f) - lineToRelative(-0.08f, -0.1f) - lineToRelative(-5.0f, -4.99f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.32f, -0.08f) - lineToRelative(-0.1f, 0.08f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.32f, 1.5f) - lineToRelative(0.1f, -0.09f) - lineTo(11.0f, 8.42f) - verticalLineTo(21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.88f, 1.0f) - close() - } - } - return _arrowUpload!! - } - -private var _arrowUpload: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowsBidirectional.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowsBidirectional.kt deleted file mode 100644 index 3d09132b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ArrowsBidirectional.kt +++ /dev/null @@ -1,41 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ArrowsBidirectional: ImageVector - get() { - if (_arrowsBidirectional != null) { - return _arrowsBidirectional!! - } - _arrowsBidirectional = fluentIcon(name = "Filled.ArrowsBidirectional") { - fluentPath { - moveTo(15.0f, 9.0f) - horizontalLineTo(9.0f) - verticalLineTo(6.75f) - curveToRelative(0.0f, -0.66f, -0.78f, -1.0f, -1.26f, -0.54f) - lineToRelative(-5.5f, 5.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.08f) - lineToRelative(5.5f, 5.25f) - lineToRelative(0.08f, 0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.19f, -0.61f) - verticalLineTo(15.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.66f, 0.78f, 1.0f, 1.26f, 0.54f) - lineToRelative(5.5f, -5.25f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.79f, 0.0f, -1.08f) - lineToRelative(-5.5f, -5.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.27f, 0.54f) - verticalLineTo(9.0f) - close() - } - } - return _arrowsBidirectional!! - } - -private var _arrowsBidirectional: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AttachArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AttachArrowRight.kt deleted file mode 100644 index 193c55ce..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AttachArrowRight.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AttachArrowRight: ImageVector - get() { - if (_attachArrowRight != null) { - return _attachArrowRight!! - } - _attachArrowRight = fluentIcon(name = "Filled.AttachArrowRight") { - fluentPath { - moveTo(16.0f, 2.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 4.64f, 9.8f) - arcToRelative(6.45f, 6.45f, 0.0f, false, false, -2.07f, -0.71f) - lineToRelative(0.23f, -0.23f) - lineToRelative(0.16f, -0.17f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -5.75f, -5.55f) - lineToRelative(-0.16f, 0.16f) - lineToRelative(-0.02f, 0.01f) - lineToRelative(-9.32f, 9.33f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, -1.41f) - lineTo(11.6f, 3.9f) - lineToRelative(0.05f, -0.04f) - arcTo(5.98f, 5.98f, 0.0f, false, true, 16.0f, 2.0f) - close() - moveTo(11.1f, 18.57f) - curveToRelative(0.12f, 0.75f, 0.37f, 1.45f, 0.73f, 2.1f) - lineToRelative(-0.34f, 0.34f) - lineToRelative(-0.05f, 0.04f) - lineToRelative(-0.06f, 0.05f) - arcToRelative(3.71f, 3.71f, 0.0f, false, true, -6.15f, -2.82f) - curveToRelative(0.0f, -0.9f, 0.33f, -1.76f, 0.9f, -2.42f) - lineToRelative(0.15f, -0.17f) - horizontalLineToRelative(0.01f) - lineToRelative(7.3f, -7.31f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.41f) - lineTo(7.7f, 17.1f) - lineToRelative(-0.01f, 0.01f) - arcToRelative(1.72f, 1.72f, 0.0f, false, false, 2.29f, 2.55f) - lineToRelative(0.12f, -0.1f) - lineToRelative(0.99f, -0.98f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(19.29f, 17.0f) - lineTo(14.5f, 17.0f) - close() - } - } - return _attachArrowRight!! - } - -private var _attachArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AttachText.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AttachText.kt deleted file mode 100644 index 4e2b8b56..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AttachText.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AttachText: ImageVector - get() { - if (_attachText != null) { - return _attachText!! - } - _attachText = fluentIcon(name = "Filled.AttachText") { - fluentPath { - moveTo(7.0f, 3.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 5.0f, 4.78f) - lineTo(12.0f, 19.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.18f) - lineTo(6.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(8.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.12f) - lineTo(10.0f, 8.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -6.0f, -0.18f) - lineTo(4.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(2.0f, 8.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 5.0f, -5.0f) - close() - moveTo(15.0f, 17.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(15.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(17.0f, 17.0f) - horizontalLineToRelative(-2.0f) - close() - moveTo(15.0f, 13.0f) - horizontalLineToRelative(5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(15.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - horizontalLineToRelative(5.62f) - lineTo(15.0f, 13.0f) - close() - moveTo(15.0f, 9.0f) - horizontalLineToRelative(5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(15.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - horizontalLineToRelative(5.62f) - lineTo(15.0f, 9.0f) - close() - moveTo(15.0f, 5.0f) - horizontalLineToRelative(5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(15.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - horizontalLineToRelative(5.62f) - lineTo(15.0f, 5.0f) - close() - } - } - return _attachText!! - } - -private var _attachText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AutoFitHeight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AutoFitHeight.kt deleted file mode 100644 index 346221ab..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AutoFitHeight.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AutoFitHeight: ImageVector - get() { - if (_autoFitHeight != null) { - return _autoFitHeight!! - } - _autoFitHeight = fluentIcon(name = "Filled.AutoFitHeight") { - fluentPath { - moveTo(6.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(6.0f, 3.0f) - close() - moveTo(10.35f, 13.7f) - lineTo(10.45f, 13.79f) - lineTo(11.25f, 14.59f) - lineTo(11.25f, 9.4f) - lineToRelative(-0.8f, 0.8f) - lineToRelative(-0.1f, 0.09f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.4f) - lineToRelative(0.09f, -0.1f) - lineToRelative(2.35f, -2.36f) - curveToRelative(0.18f, -0.27f, 0.5f, -0.44f, 0.86f, -0.44f) - curveToRelative(0.32f, 0.0f, 0.62f, 0.14f, 0.8f, 0.37f) - horizontalLineToRelative(0.01f) - lineToRelative(0.05f, 0.07f) - lineToRelative(2.36f, 2.36f) - lineToRelative(0.08f, 0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.01f, 1.18f) - verticalLineToRelative(0.01f) - lineToRelative(-0.1f, 0.12f) - lineToRelative(-0.1f, 0.09f) - horizontalLineToRelative(-0.01f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.18f, 0.01f) - lineToRelative(-0.12f, -0.1f) - lineToRelative(-0.8f, -0.8f) - verticalLineToRelative(5.18f) - lineToRelative(0.8f, -0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.3f, -0.1f) - verticalLineToRelative(0.01f) - lineToRelative(0.1f, 0.09f) - horizontalLineToRelative(0.01f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.1f, 1.3f) - verticalLineToRelative(0.01f) - lineToRelative(-0.1f, 0.1f) - lineToRelative(-2.35f, 2.36f) - curveToRelative(-0.18f, 0.27f, -0.5f, 0.44f, -0.86f, 0.44f) - curveToRelative(-0.35f, 0.0f, -0.68f, -0.17f, -0.86f, -0.44f) - lineTo(9.04f, 15.2f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.3f, -1.51f) - horizontalLineToRelative(0.01f) - close() - moveTo(5.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(6.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - } - } - return _autoFitHeight!! - } - -private var _autoFitHeight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AutoFitWidth.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AutoFitWidth.kt deleted file mode 100644 index dd6521c8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/AutoFitWidth.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.AutoFitWidth: ImageVector - get() { - if (_autoFitWidth != null) { - return _autoFitWidth!! - } - _autoFitWidth = fluentIcon(name = "Filled.AutoFitWidth") { - fluentPath { - moveTo(3.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(5.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) - verticalLineToRelative(12.0f) - close() - moveTo(19.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(21.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(12.0f) - close() - moveTo(13.79f, 13.8f) - lineTo(13.7f, 13.9f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.5f, 1.3f) - lineToRelative(2.36f, -2.34f) - curveToRelative(0.27f, -0.18f, 0.44f, -0.5f, 0.44f, -0.86f) - reflectiveCurveToRelative(-0.17f, -0.68f, -0.44f, -0.86f) - lineTo(15.2f, 8.78f) - lineToRelative(-0.1f, -0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.3f, 0.1f) - horizontalLineToRelative(-0.01f) - lineToRelative(-0.09f, 0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.1f, 1.3f) - lineToRelative(0.79f, 0.8f) - lineTo(9.4f, 11.0f) - lineToRelative(0.8f, -0.8f) - lineToRelative(0.1f, -0.11f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.19f) - horizontalLineToRelative(-0.01f) - lineToRelative(-0.1f, -0.1f) - lineToRelative(-0.1f, -0.1f) - lineToRelative(-0.02f, -0.01f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.17f, 0.0f) - lineToRelative(-0.01f, 0.01f) - lineToRelative(-0.1f, 0.09f) - lineToRelative(-2.36f, 2.35f) - lineToRelative(-0.07f, 0.05f) - curveToRelative(-0.23f, 0.2f, -0.37f, 0.49f, -0.37f, 0.81f) - curveToRelative(0.0f, 0.36f, 0.17f, 0.68f, 0.44f, 0.86f) - lineToRelative(2.36f, 2.36f) - lineToRelative(0.1f, 0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, -1.4f) - lineToRelative(-0.09f, -0.1f) - lineToRelative(-0.8f, -0.8f) - horizontalLineToRelative(5.18f) - lineToRelative(-0.8f, 0.8f) - close() - } - } - return _autoFitWidth!! - } - -private var _autoFitWidth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Autocorrect.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Autocorrect.kt deleted file mode 100644 index 9ca24654..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Autocorrect.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Autocorrect: ImageVector - get() { - if (_autocorrect != null) { - return _autocorrect!! - } - _autocorrect = fluentIcon(name = "Filled.Autocorrect") { - fluentPath { - moveTo(13.6f, 4.72f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.94f, 0.95f) - lineToRelative(2.87f, 4.58f) - horizontalLineToRelative(4.09f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - horizontalLineToRelative(-2.75f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, -4.0f, -2.0f) - horizontalLineToRelative(0.3f) - lineToRelative(-0.28f, -0.45f) - lineToRelative(-1.92f, -3.07f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.63f, -0.1f) - lineToRelative(-0.07f, 0.1f) - lineTo(3.6f, 18.78f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.75f, -0.96f) - lineToRelative(0.05f, -0.1f) - lineTo(9.46f, 5.67f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 4.13f, -0.95f) - close() - moveTo(14.75f, 12.25f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - } - } - return _autocorrect!! - } - -private var _autocorrect: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Autosum.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Autosum.kt deleted file mode 100644 index 6a0b0afa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Autosum.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Autosum: ImageVector - get() { - if (_autosum != null) { - return _autosum!! - } - _autosum = fluentIcon(name = "Filled.Autosum") { - fluentPath { - moveTo(4.83f, 4.61f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 5.75f, 4.0f) - horizontalLineToRelative(12.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineTo(8.11f) - lineToRelative(4.95f, 5.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.04f, 1.34f) - lineTo(7.92f, 18.5f) - horizontalLineToRelative(10.33f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineTo(5.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.76f, -1.65f) - lineToRelative(6.0f, -7.0f) - lineTo(5.03f, 5.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.2f, -1.09f) - close() - } - } - return _autosum!! - } - -private var _autosum: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Backpack.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Backpack.kt deleted file mode 100644 index 75039d38..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Backpack.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Backpack: ImageVector - get() { - if (_backpack != null) { - return _backpack!! - } - _backpack = fluentIcon(name = "Filled.Backpack") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.74f, 3.42f) - arcTo(8.0f, 8.0f, 0.0f, false, false, 4.0f, 12.5f) - lineTo(4.0f, 14.0f) - horizontalLineToRelative(16.0f) - verticalLineToRelative(-1.5f) - arcToRelative(8.0f, 8.0f, 0.0f, false, false, -4.26f, -7.08f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 12.0f, 2.0f) - close() - moveTo(20.0f, 15.71f) - lineTo(9.5f, 15.71f) - verticalLineToRelative(1.54f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.54f) - lineTo(4.0f, 15.71f) - verticalLineToRelative(3.04f) - curveTo(4.0f, 20.55f, 5.46f, 22.0f, 7.25f, 22.0f) - horizontalLineToRelative(9.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-3.04f) - close() - moveTo(12.0f, 4.5f) - curveToRelative(-0.7f, 0.0f, -1.37f, 0.09f, -2.02f, 0.26f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.04f, 0.0f) - arcTo(8.01f, 8.01f, 0.0f, false, false, 12.0f, 4.5f) - close() - moveTo(8.0f, 10.42f) - arcTo(2.42f, 2.42f, 0.0f, false, true, 10.42f, 8.0f) - horizontalLineToRelative(3.16f) - arcTo(2.42f, 2.42f, 0.0f, false, true, 16.0f, 10.42f) - curveToRelative(0.0f, 0.87f, -0.7f, 1.58f, -1.58f, 1.58f) - lineTo(9.58f, 12.0f) - curveTo(8.71f, 12.0f, 8.0f, 11.3f, 8.0f, 10.42f) - close() - moveTo(10.42f, 9.5f) - curveToRelative(-0.51f, 0.0f, -0.92f, 0.41f, -0.92f, 0.92f) - curveToRelative(0.0f, 0.04f, 0.04f, 0.08f, 0.08f, 0.08f) - horizontalLineToRelative(4.84f) - curveToRelative(0.04f, 0.0f, 0.08f, -0.04f, 0.08f, -0.08f) - curveToRelative(0.0f, -0.51f, -0.41f, -0.92f, -0.92f, -0.92f) - horizontalLineToRelative(-3.16f) - close() - } - } - return _backpack!! - } - -private var _backpack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BackpackAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BackpackAdd.kt deleted file mode 100644 index 7ee924a1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BackpackAdd.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BackpackAdd: ImageVector - get() { - if (_backpackAdd != null) { - return _backpackAdd!! - } - _backpackAdd = fluentIcon(name = "Filled.BackpackAdd") { - fluentPath { - moveTo(8.26f, 5.42f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 7.48f, 0.0f) - arcToRelative(8.0f, 8.0f, 0.0f, false, true, 4.2f, 6.05f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, -4.17f, -0.24f) - curveToRelative(0.15f, -0.24f, 0.23f, -0.52f, 0.23f, -0.81f) - arcTo(2.42f, 2.42f, 0.0f, false, false, 13.58f, 8.0f) - horizontalLineToRelative(-3.16f) - arcTo(2.42f, 2.42f, 0.0f, false, false, 8.0f, 10.42f) - curveToRelative(0.0f, 0.87f, 0.7f, 1.58f, 1.58f, 1.58f) - horizontalLineToRelative(4.45f) - curveToRelative(-0.8f, 0.51f, -1.5f, 1.2f, -2.0f, 2.0f) - lineTo(4.0f, 14.0f) - verticalLineToRelative(-1.5f) - arcToRelative(8.0f, 8.0f, 0.0f, false, true, 4.26f, -7.08f) - close() - moveTo(9.98f, 4.76f) - arcToRelative(8.01f, 8.01f, 0.0f, false, true, 4.04f, 0.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -4.04f, 0.0f) - close() - moveTo(11.25f, 15.71f) - lineTo(9.5f, 15.71f) - verticalLineToRelative(1.54f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.54f) - lineTo(4.0f, 15.71f) - verticalLineToRelative(3.04f) - curveTo(4.0f, 20.55f, 5.46f, 22.0f, 7.25f, 22.0f) - horizontalLineToRelative(5.56f) - arcToRelative(6.48f, 6.48f, 0.0f, false, true, -1.56f, -6.29f) - close() - moveTo(9.5f, 10.41f) - curveToRelative(0.0f, -0.5f, 0.41f, -0.91f, 0.92f, -0.91f) - horizontalLineToRelative(3.16f) - curveToRelative(0.51f, 0.0f, 0.92f, 0.41f, 0.92f, 0.92f) - curveToRelative(0.0f, 0.04f, -0.04f, 0.08f, -0.08f, 0.08f) - lineTo(9.58f, 10.5f) - arcToRelative(0.08f, 0.08f, 0.0f, false, true, -0.08f, -0.08f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(18.0f, 20.5f) - lineTo(18.0f, 18.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - lineTo(18.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -1.0f, 0.0f) - lineTo(17.0f, 17.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - lineTo(17.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) - close() - } - } - return _backpackAdd!! - } - -private var _backpackAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Badge.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Badge.kt deleted file mode 100644 index 6149274f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Badge.kt +++ /dev/null @@ -1,37 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Badge: ImageVector - get() { - if (_badge != null) { - return _badge!! - } - _badge = fluentIcon(name = "Filled.Badge") { - fluentPath { - moveTo(16.0f, 4.5f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 5.0f, 3.16f) - verticalLineToRelative(10.59f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) - horizontalLineTo(5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - verticalLineTo(5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(10.59f) - curveToRelative(-0.22f, 0.46f, -0.34f, 0.96f, -0.34f, 1.5f) - close() - moveTo(19.5f, 2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - } - } - return _badge!! - } - -private var _badge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Balloon.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Balloon.kt deleted file mode 100644 index 14d0a1ae..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Balloon.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Balloon: ImageVector - get() { - if (_balloon != null) { - return _balloon!! - } - _balloon = fluentIcon(name = "Filled.Balloon") { - fluentPath { - moveTo(5.0f, 9.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, 14.0f, 0.0f) - curveToRelative(0.0f, 2.03f, -0.67f, 4.24f, -1.85f, 5.96f) - arcToRelative(6.58f, 6.58f, 0.0f, false, true, -4.4f, 2.99f) - verticalLineToRelative(0.3f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.25f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(13.5f, 20.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-0.3f) - arcToRelative(6.58f, 6.58f, 0.0f, false, true, -4.4f, -3.0f) - arcTo(10.88f, 10.88f, 0.0f, false, true, 5.0f, 9.0f) - close() - moveTo(12.92f, 5.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.34f, 1.47f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 1.85f, 1.85f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.46f, -0.35f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -2.97f, -2.96f) - close() - } - } - return _balloon!! - } - -private var _balloon: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BarcodeScanner.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BarcodeScanner.kt deleted file mode 100644 index 2f853eb6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BarcodeScanner.kt +++ /dev/null @@ -1,91 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BarcodeScanner: ImageVector - get() { - if (_barcodeScanner != null) { - return _barcodeScanner!! - } - _barcodeScanner = fluentIcon(name = "Filled.BarcodeScanner") { - fluentPath { - moveTo(2.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(1.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - lineTo(5.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(1.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - lineTo(2.0f, 6.0f) - close() - moveTo(16.5f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - lineTo(19.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(1.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(20.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineToRelative(-1.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(3.0f, 15.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - lineTo(4.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(1.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(5.0f, 21.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - verticalLineToRelative(-1.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(21.0f, 15.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - lineTo(22.0f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - horizontalLineToRelative(-1.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - lineTo(19.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineToRelative(-1.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(6.0f, 6.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(8.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-8.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(11.0f, 7.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(8.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-8.5f) - close() - moveTo(14.0f, 6.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(8.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-8.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(19.0f, 7.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(8.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-8.5f) - close() - } - } - return _barcodeScanner!! - } - -private var _barcodeScanner: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery0.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery0.kt deleted file mode 100644 index c181e8f5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery0.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Battery0: ImageVector - get() { - if (_battery0 != null) { - return _battery0!! - } - _battery0 = fluentIcon(name = "Filled.Battery0") { - fluentPath { - moveTo(2.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - horizontalLineTo(5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - verticalLineTo(9.0f) - close() - } - } - return _battery0!! - } - -private var _battery0: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery1.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery1.kt deleted file mode 100644 index db9a343a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery1.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Battery1: ImageVector - get() { - if (_battery1 != null) { - return _battery1!! - } - _battery1 = fluentIcon(name = "Filled.Battery1") { - fluentPath { - moveTo(17.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - horizontalLineTo(5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - verticalLineTo(9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(7.0f, 9.0f) - horizontalLineTo(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineToRelative(-4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - } - } - return _battery1!! - } - -private var _battery1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery10.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery10.kt deleted file mode 100644 index 62ad5a60..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery10.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Battery10: ImageVector - get() { - if (_battery10 != null) { - return _battery10!! - } - _battery10 = fluentIcon(name = "Filled.Battery10") { - fluentPath { - moveTo(17.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - lineTo(5.0f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(2.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(16.0f, 9.0f) - lineTo(6.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineToRelative(-4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - } - } - return _battery10!! - } - -private var _battery10: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery2.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery2.kt deleted file mode 100644 index ee4fb0b8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery2.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Battery2: ImageVector - get() { - if (_battery2 != null) { - return _battery2!! - } - _battery2 = fluentIcon(name = "Filled.Battery2") { - fluentPath { - moveTo(17.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - horizontalLineTo(5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - verticalLineTo(9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(8.0f, 9.0f) - horizontalLineTo(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineToRelative(-4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - } - } - return _battery2!! - } - -private var _battery2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery3.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery3.kt deleted file mode 100644 index f1ad73ab..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery3.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Battery3: ImageVector - get() { - if (_battery3 != null) { - return _battery3!! - } - _battery3 = fluentIcon(name = "Filled.Battery3") { - fluentPath { - moveTo(17.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - horizontalLineTo(5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - verticalLineTo(9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(9.0f, 9.0f) - horizontalLineTo(6.02f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineTo(9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineToRelative(-4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - } - } - return _battery3!! - } - -private var _battery3: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery4.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery4.kt deleted file mode 100644 index 1254ec66..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery4.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Battery4: ImageVector - get() { - if (_battery4 != null) { - return _battery4!! - } - _battery4 = fluentIcon(name = "Filled.Battery4") { - fluentPath { - moveTo(17.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - lineTo(5.0f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(2.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(10.0f, 9.0f) - lineTo(6.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineToRelative(-4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - } - } - return _battery4!! - } - -private var _battery4: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery5.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery5.kt deleted file mode 100644 index b8c2bd32..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery5.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Battery5: ImageVector - get() { - if (_battery5 != null) { - return _battery5!! - } - _battery5 = fluentIcon(name = "Filled.Battery5") { - fluentPath { - moveTo(17.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - lineTo(5.0f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(2.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(11.0f, 9.0f) - lineTo(6.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineToRelative(-4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - } - } - return _battery5!! - } - -private var _battery5: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery6.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery6.kt deleted file mode 100644 index 09acdbae..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery6.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Battery6: ImageVector - get() { - if (_battery6 != null) { - return _battery6!! - } - _battery6 = fluentIcon(name = "Filled.Battery6") { - fluentPath { - moveTo(17.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - lineTo(5.0f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(2.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(12.0f, 9.0f) - lineTo(6.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineToRelative(-4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - } - } - return _battery6!! - } - -private var _battery6: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery7.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery7.kt deleted file mode 100644 index 7275b7dc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery7.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Battery7: ImageVector - get() { - if (_battery7 != null) { - return _battery7!! - } - _battery7 = fluentIcon(name = "Filled.Battery7") { - fluentPath { - moveTo(17.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - lineTo(5.0f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(2.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(13.0f, 9.0f) - lineTo(6.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineToRelative(-4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - } - } - return _battery7!! - } - -private var _battery7: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery8.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery8.kt deleted file mode 100644 index 74551298..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery8.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Battery8: ImageVector - get() { - if (_battery8 != null) { - return _battery8!! - } - _battery8 = fluentIcon(name = "Filled.Battery8") { - fluentPath { - moveTo(17.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - lineTo(5.0f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(2.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(14.0f, 9.0f) - lineTo(6.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineToRelative(-4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - } - } - return _battery8!! - } - -private var _battery8: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery9.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery9.kt deleted file mode 100644 index 3f291dc9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Battery9.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Battery9: ImageVector - get() { - if (_battery9 != null) { - return _battery9!! - } - _battery9 = fluentIcon(name = "Filled.Battery9") { - fluentPath { - moveTo(6.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineToRelative(-4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineTo(6.0f) - close() - moveTo(2.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.5f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(0.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-0.5f) - verticalLineToRelative(1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - horizontalLineTo(5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - verticalLineTo(9.0f) - close() - } - } - return _battery9!! - } - -private var _battery9: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BatteryCharge.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BatteryCharge.kt deleted file mode 100644 index c39d0ed5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BatteryCharge.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BatteryCharge: ImageVector - get() { - if (_batteryCharge != null) { - return _batteryCharge!! - } - _batteryCharge = fluentIcon(name = "Filled.BatteryCharge") { - fluentPath { - moveTo(10.75f, 6.0f) - lineTo(17.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) - lineTo(20.0f, 10.0f) - lineToRelative(1.0f, 0.02f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - verticalLineToRelative(2.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.87f, 0.99f) - lineTo(21.0f, 14.01f) - lineTo(20.0f, 14.0f) - verticalLineToRelative(1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.82f, 3.0f) - lineTo(8.0f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.65f) - verticalLineToRelative(-4.6f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.64f, -0.74f) - lineTo(8.0f, 12.0f) - horizontalLineToRelative(0.63f) - curveToRelative(0.72f, 0.0f, 1.3f, -0.55f, 1.37f, -1.24f) - lineToRelative(0.01f, -0.14f) - lineTo(10.01f, 6.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - lineTo(17.0f, 6.0f) - horizontalLineToRelative(-6.25f) - close() - moveTo(6.65f, 4.0f) - horizontalLineToRelative(0.1f) - curveToRelative(0.38f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) - lineTo(7.49f, 6.0f) - horizontalLineToRelative(0.76f) - curveToRelative(0.42f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - curveTo(9.0f, 10.22f, 8.22f, 11.0f, 7.25f, 11.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(6.24f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.75f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) - lineTo(4.76f, 11.0f) - lineTo(3.74f, 11.0f) - curveTo(2.78f, 11.0f, 2.0f, 10.22f, 2.0f, 9.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(0.75f) - lineTo(3.5f, 4.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - lineTo(5.0f, 6.0f) - horizontalLineToRelative(1.0f) - lineTo(6.0f, 4.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(-0.1f) - close() - } - } - return _batteryCharge!! - } - -private var _batteryCharge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BatteryCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BatteryCheckmark.kt deleted file mode 100644 index 0aa824c8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BatteryCheckmark.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BatteryCheckmark: ImageVector - get() { - if (_batteryCheckmark != null) { - return _batteryCheckmark!! - } - _batteryCheckmark = fluentIcon(name = "Filled.BatteryCheckmark") { - fluentPath { - moveTo(2.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - horizontalLineToRelative(-4.17f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -6.33f, -8.0f) - curveToRelative(-1.75f, 0.0f, -3.33f, 0.69f, -4.5f, 1.81f) - lineTo(2.0f, 9.0f) - close() - moveTo(12.0f, 16.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(9.85f, 14.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineTo(5.5f, 17.79f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _batteryCheckmark!! - } - -private var _batteryCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BatterySaver.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BatterySaver.kt deleted file mode 100644 index 3f2857c8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BatterySaver.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BatterySaver: ImageVector - get() { - if (_batterySaver != null) { - return _batterySaver!! - } - _batterySaver = fluentIcon(name = "Filled.BatterySaver") { - fluentPath { - moveTo(8.65f, 4.36f) - curveTo(10.2f, 7.21f, 11.0f, 9.51f, 11.0f, 11.08f) - curveToRelative(0.0f, 1.58f, -0.74f, 2.9f, -1.46f, 3.52f) - lineToRelative(-0.2f, 0.14f) - lineToRelative(-0.11f, 0.06f) - arcToRelative(0.45f, 0.45f, 0.0f, false, true, -0.64f, -0.5f) - lineToRelative(0.03f, -0.09f) - curveToRelative(0.61f, -1.51f, 0.9f, -3.0f, 0.88f, -4.46f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 8.0f, 9.73f) - verticalLineToRelative(0.02f) - curveToRelative(0.01f, 0.37f, 0.0f, 0.74f, -0.05f, 1.12f) - lineToRelative(-0.06f, 0.48f) - lineToRelative(-0.04f, 0.23f) - lineToRelative(-0.07f, 0.33f) - lineToRelative(-0.1f, 0.42f) - lineToRelative(-0.05f, 0.15f) - curveToRelative(-0.17f, 0.6f, -0.4f, 1.21f, -0.68f, 1.83f) - arcToRelative(7.1f, 7.1f, 0.0f, false, true, -3.91f, 3.64f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.58f, -1.39f) - curveToRelative(0.97f, -0.4f, 1.74f, -0.94f, 2.33f, -1.62f) - curveToRelative(-1.67f, -0.53f, -2.63f, -1.67f, -2.77f, -3.27f) - curveToRelative(-0.15f, -1.81f, 0.54f, -3.04f, 2.26f, -4.41f) - lineToRelative(0.5f, -0.38f) - lineToRelative(0.35f, -0.27f) - lineToRelative(0.37f, -0.29f) - arcToRelative(8.81f, 8.81f, 0.0f, false, false, 1.87f, -1.98f) - curveToRelative(0.3f, -0.46f, 1.0f, -0.47f, 1.28f, 0.02f) - close() - moveTo(17.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) - verticalLineTo(10.0f) - lineToRelative(1.0f, 0.02f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - verticalLineToRelative(2.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.87f, 0.99f) - horizontalLineTo(20.0f) - verticalLineToRelative(1.0f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 17.18f, 18.0f) - horizontalLineTo(8.24f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.11f, -2.0f) - horizontalLineToRelative(0.82f) - lineToRelative(0.1f, -0.02f) - curveToRelative(0.75f, -0.17f, 2.95f, -1.2f, 2.95f, -4.96f) - curveToRelative(0.0f, -1.22f, -0.3f, -2.57f, -0.9f, -4.06f) - arcToRelative(0.7f, 0.7f, 0.0f, false, true, 0.55f, -0.95f) - horizontalLineTo(17.0f) - close() - } - } - return _batterySaver!! - } - -private var _batterySaver: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BatteryWarning.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BatteryWarning.kt deleted file mode 100644 index bdd40308..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BatteryWarning.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BatteryWarning: ImageVector - get() { - if (_batteryWarning != null) { - return _batteryWarning!! - } - _batteryWarning = fluentIcon(name = "Filled.BatteryWarning") { - fluentPath { - moveTo(8.24f, 11.2f) - curveToRelative(0.24f, 0.13f, 0.43f, 0.32f, 0.56f, 0.56f) - lineToRelative(4.0f, 7.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 11.5f, 21.0f) - lineTo(3.5f, 21.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.3f, -2.25f) - lineToRelative(4.0f, -7.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.05f, -0.55f) - close() - moveTo(7.5f, 18.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - close() - moveTo(17.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - horizontalLineToRelative(-3.47f) - lineToRelative(-3.86f, -6.74f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.34f, 0.0f) - lineToRelative(-2.97f, 5.17f) - arcTo(2.99f, 2.99f, 0.0f, false, true, 2.0f, 15.0f) - lineTo(2.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(7.5f, 13.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(3.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, -0.09f) - verticalLineToRelative(-3.0f) - lineToRelative(-0.01f, -0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.41f) - close() - } - } - return _batteryWarning!! - } - -private var _batteryWarning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Beach.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Beach.kt deleted file mode 100644 index e027a11f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Beach.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Beach: ImageVector - get() { - if (_beach != null) { - return _beach!! - } - _beach = fluentIcon(name = "Filled.Beach") { - fluentPath { - moveTo(18.57f, 2.85f) - arcToRelative(6.75f, 6.75f, 0.0f, false, false, -9.22f, 2.47f) - lineToRelative(-0.25f, 0.43f) - curveToRelative(-0.2f, 0.36f, -0.08f, 0.82f, 0.28f, 1.03f) - lineTo(13.9f, 9.4f) - lineToRelative(-2.8f, 4.9f) - arcToRelative(7.76f, 7.76f, 0.0f, false, false, -4.79f, 2.61f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.58f, 1.37f) - curveToRelative(0.24f, 0.73f, 0.73f, 0.95f, 1.12f, 0.96f) - curveToRelative(0.4f, 0.0f, 0.86f, -0.22f, 1.08f, -0.87f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 3.8f, 0.0f) - curveToRelative(0.22f, 0.65f, 0.68f, 0.87f, 1.08f, 0.87f) - reflectiveCurveToRelative(0.88f, -0.23f, 1.12f, -0.96f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.58f, -1.37f) - arcToRelative(7.75f, 7.75f, 0.0f, false, false, -4.84f, -2.61f) - lineToRelative(2.37f, -4.15f) - lineToRelative(4.56f, 2.63f) - curveToRelative(0.36f, 0.2f, 0.81f, 0.08f, 1.02f, -0.28f) - lineToRelative(0.25f, -0.43f) - arcToRelative(6.75f, 6.75f, 0.0f, false, false, -2.47f, -9.22f) - close() - moveTo(6.71f, 18.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.44f, 0.07f) - curveToRelative(-0.21f, 0.89f, -0.6f, 1.36f, -1.04f, 1.63f) - curveToRelative(-0.46f, 0.29f, -1.05f, 0.4f, -1.73f, 0.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - curveToRelative(0.82f, 0.0f, 1.73f, -0.13f, 2.52f, -0.63f) - curveToRelative(0.41f, -0.25f, 0.77f, -0.6f, 1.06f, -1.03f) - arcToRelative(3.81f, 3.81f, 0.0f, false, false, 5.92f, -0.02f) - arcToRelative(3.82f, 3.82f, 0.0f, false, false, 6.0f, -0.08f) - arcToRelative(4.46f, 4.46f, 0.0f, false, false, 3.5f, 1.76f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - curveToRelative(-1.18f, 0.0f, -2.38f, -0.8f, -2.78f, -2.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.43f, -0.01f) - curveToRelative(-0.79f, 2.44f, -3.81f, 2.4f, -4.58f, 0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.42f, 0.0f) - curveToRelative(-0.77f, 2.3f, -3.8f, 2.34f, -4.58f, -0.1f) - close() - } - } - return _beach!! - } - -private var _beach: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Beaker.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Beaker.kt deleted file mode 100644 index c62a71ec..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Beaker.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Beaker: ImageVector - get() { - if (_beaker != null) { - return _beaker!! - } - _beaker = fluentIcon(name = "Filled.Beaker") { - fluentPath { - moveTo(9.0f, 4.5f) - verticalLineToRelative(6.24f) - curveToRelative(0.0f, 0.37f, -0.1f, 0.74f, -0.27f, 1.07f) - lineTo(7.53f, 14.0f) - horizontalLineToRelative(8.93f) - lineToRelative(-1.19f, -2.19f) - curveToRelative(-0.18f, -0.33f, -0.27f, -0.7f, -0.27f, -1.07f) - lineTo(15.0f, 4.5f) - horizontalLineToRelative(1.0f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 16.0f, 3.0f) - lineTo(8.0f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.0f) - close() - moveTo(17.27f, 15.5f) - lineTo(6.73f, 15.5f) - lineToRelative(-1.59f, 2.91f) - arcTo(1.75f, 1.75f, 0.0f, false, false, 6.68f, 21.0f) - horizontalLineToRelative(10.64f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 1.54f, -2.59f) - lineToRelative(-1.59f, -2.91f) - close() - } - } - return _beaker!! - } - -private var _beaker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BeakerEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BeakerEdit.kt deleted file mode 100644 index 66fb9b0e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BeakerEdit.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BeakerEdit: ImageVector - get() { - if (_beakerEdit != null) { - return _beakerEdit!! - } - _beakerEdit = fluentIcon(name = "Filled.BeakerEdit") { - fluentPath { - moveTo(7.0f, 3.5f) - verticalLineToRelative(6.24f) - curveToRelative(0.0f, 0.37f, -0.1f, 0.74f, -0.27f, 1.07f) - lineTo(5.53f, 13.0f) - horizontalLineToRelative(8.93f) - lineToRelative(-1.19f, -2.19f) - curveToRelative(-0.18f, -0.33f, -0.27f, -0.7f, -0.27f, -1.07f) - lineTo(13.0f, 3.5f) - horizontalLineToRelative(1.0f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 14.0f, 2.0f) - lineTo(6.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.0f) - close() - moveTo(15.27f, 14.5f) - lineTo(4.73f, 14.5f) - lineToRelative(-1.59f, 2.91f) - arcTo(1.75f, 1.75f, 0.0f, false, false, 4.68f, 20.0f) - horizontalLineToRelative(6.74f) - lineToRelative(0.1f, -0.42f) - curveToRelative(0.16f, -0.65f, 0.5f, -1.24f, 0.97f, -1.72f) - lineToRelative(2.99f, -2.98f) - lineToRelative(-0.2f, -0.38f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _beakerEdit!! - } - -private var _beakerEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Bed.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Bed.kt deleted file mode 100644 index fc936b32..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Bed.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Bed: ImageVector - get() { - if (_bed != null) { - return _bed!! - } - _bed = fluentIcon(name = "Filled.Bed") { - fluentPath { - moveTo(19.25f, 11.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 13.58f) - verticalLineToRelative(6.67f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineTo(18.0f) - horizontalLineToRelative(-17.0f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-6.5f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.58f, -2.74f) - lineToRelative(0.17f, -0.01f) - horizontalLineToRelative(14.5f) - close() - moveTo(6.75f, 4.0f) - horizontalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 20.0f, 6.58f) - verticalLineTo(10.0f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(-0.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.88f, -0.87f) - lineTo(16.0f, 9.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 0.88f) - verticalLineTo(10.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-0.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.88f, -0.87f) - lineTo(10.0f, 9.0f) - horizontalLineTo(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 0.88f) - verticalLineTo(10.0f) - horizontalLineTo(4.0f) - verticalLineTo(6.75f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.58f, -2.74f) - lineTo(6.75f, 4.0f) - close() - } - } - return _bed!! - } - -private var _bed: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BinFull.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BinFull.kt deleted file mode 100644 index 372b5f0a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BinFull.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BinFull: ImageVector - get() { - if (_binFull != null) { - return _binFull!! - } - _binFull = fluentIcon(name = "Filled.BinFull") { - fluentPath { - moveTo(17.16f, 3.38f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.82f, -1.26f) - lineToRelative(-14.0f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.34f, 0.63f) - verticalLineToRelative(7.0f) - curveTo(2.0f, 20.55f, 3.46f, 22.0f, 5.25f, 22.0f) - horizontalLineToRelative(13.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.45f, 3.25f, -3.25f) - verticalLineToRelative(-7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(21.0f, 11.0f) - lineTo(21.0f, 7.75f) - curveTo(21.0f, 6.78f, 20.22f, 6.0f, 19.25f, 6.0f) - horizontalLineToRelative(-3.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(-3.25f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(9.5f, 11.0f) - lineTo(5.3f, 11.0f) - lineToRelative(11.86f, -7.62f) - close() - moveTo(14.5f, 10.0f) - verticalLineToRelative(1.0f) - lineTo(11.0f, 11.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(3.25f) - close() - moveTo(19.5f, 11.0f) - lineTo(16.0f, 11.0f) - lineTo(16.0f, 7.75f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(3.0f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - lineTo(19.5f, 11.0f) - close() - } - } - return _binFull!! - } - -private var _binFull: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Bluetooth.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Bluetooth.kt deleted file mode 100644 index 0ecc6718..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Bluetooth.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Bluetooth: ImageVector - get() { - if (_bluetooth != null) { - return _bluetooth!! - } - _bluetooth = fluentIcon(name = "Filled.Bluetooth") { - fluentPath { - moveTo(11.62f, 2.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.09f, 0.21f) - lineToRelative(5.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.09f, 1.5f) - lineTo(13.6f, 12.0f) - lineToRelative(4.02f, 3.22f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.09f, 1.49f) - lineToRelative(-5.0f, 5.0f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 11.0f, 21.0f) - verticalLineToRelative(-6.92f) - lineToRelative(-3.38f, 2.7f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.24f, -1.56f) - lineTo(10.4f, 12.0f) - lineTo(6.38f, 8.78f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.24f, -1.56f) - lineTo(11.0f, 9.92f) - lineTo(11.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.62f, -0.92f) - close() - moveTo(13.0f, 14.08f) - verticalLineToRelative(4.5f) - lineToRelative(2.5f, -2.5f) - lineToRelative(-2.5f, -2.0f) - close() - moveTo(13.0f, 9.92f) - lineTo(15.5f, 7.92f) - lineTo(13.0f, 5.42f) - verticalLineToRelative(4.5f) - close() - } - } - return _bluetooth!! - } - -private var _bluetooth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BluetoothConnected.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BluetoothConnected.kt deleted file mode 100644 index 76d37885..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BluetoothConnected.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BluetoothConnected: ImageVector - get() { - if (_bluetoothConnected != null) { - return _bluetoothConnected!! - } - _bluetoothConnected = fluentIcon(name = "Filled.BluetoothConnected") { - fluentPath { - moveTo(11.62f, 2.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.09f, 0.21f) - lineToRelative(5.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.09f, 1.5f) - lineTo(13.6f, 12.0f) - lineToRelative(4.02f, 3.22f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.09f, 1.49f) - lineToRelative(-5.0f, 5.0f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 11.0f, 21.0f) - verticalLineToRelative(-6.92f) - lineToRelative(-3.38f, 2.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.24f, -1.56f) - lineTo(10.4f, 12.0f) - lineTo(6.38f, 8.78f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.24f, -1.56f) - lineTo(11.0f, 9.92f) - lineTo(11.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.62f, -0.92f) - close() - moveTo(13.0f, 14.08f) - verticalLineToRelative(4.5f) - lineToRelative(2.5f, -2.5f) - lineToRelative(-2.5f, -2.0f) - close() - moveTo(13.0f, 9.92f) - lineTo(15.5f, 7.92f) - lineTo(13.0f, 5.42f) - verticalLineToRelative(4.5f) - close() - moveTo(20.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(5.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - } - } - return _bluetoothConnected!! - } - -private var _bluetoothConnected: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BluetoothDisabled.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BluetoothDisabled.kt deleted file mode 100644 index fa6e9178..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BluetoothDisabled.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BluetoothDisabled: ImageVector - get() { - if (_bluetoothDisabled != null) { - return _bluetoothDisabled!! - } - _bluetoothDisabled = fluentIcon(name = "Filled.BluetoothDisabled") { - fluentPath { - moveToRelative(16.68f, 17.74f) - lineToRelative(4.04f, 4.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(8.48f, 8.48f) - lineToRelative(-4.32f, 3.46f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.24f, 1.56f) - lineToRelative(3.38f, -2.7f) - lineTo(11.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.7f, 0.7f) - lineToRelative(3.98f, -3.96f) - close() - moveTo(13.1f, 14.16f) - lineTo(15.26f, 16.32f) - lineTo(13.0f, 18.6f) - verticalLineToRelative(-4.5f) - lineToRelative(0.1f, 0.07f) - close() - moveTo(17.62f, 8.78f) - lineTo(14.48f, 11.3f) - lineTo(13.06f, 9.87f) - lineTo(15.5f, 7.92f) - lineTo(13.0f, 5.42f) - verticalLineToRelative(4.4f) - lineToRelative(-2.0f, -2.0f) - lineTo(11.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.7f, -0.7f) - lineToRelative(5.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, 1.48f) - close() - } - } - return _bluetoothDisabled!! - } - -private var _bluetoothDisabled: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BluetoothSearching.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BluetoothSearching.kt deleted file mode 100644 index 0a3ea764..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BluetoothSearching.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BluetoothSearching: ImageVector - get() { - if (_bluetoothSearching != null) { - return _bluetoothSearching!! - } - _bluetoothSearching = fluentIcon(name = "Filled.BluetoothSearching") { - fluentPath { - moveTo(11.62f, 2.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.09f, 0.21f) - lineToRelative(5.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.09f, 1.5f) - lineTo(13.6f, 12.0f) - lineToRelative(4.02f, 3.22f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.09f, 1.49f) - lineToRelative(-5.0f, 5.0f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 11.0f, 21.0f) - verticalLineToRelative(-6.92f) - lineToRelative(-3.38f, 2.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.24f, -1.56f) - lineTo(10.4f, 12.0f) - lineTo(6.38f, 8.78f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.24f, -1.56f) - lineTo(11.0f, 9.92f) - lineTo(11.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.62f, -0.92f) - close() - moveTo(13.0f, 14.08f) - verticalLineToRelative(4.5f) - lineToRelative(2.5f, -2.5f) - lineToRelative(-2.5f, -2.0f) - close() - moveTo(13.0f, 9.92f) - lineTo(15.5f, 7.92f) - lineTo(13.0f, 5.42f) - verticalLineToRelative(4.5f) - close() - moveTo(18.5f, 9.13f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.37f, 0.37f) - curveToRelative(0.44f, 0.76f, 0.63f, 1.63f, 0.63f, 2.5f) - curveToRelative(0.0f, 0.87f, -0.2f, 1.74f, -0.63f, 2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.74f, -1.0f) - curveToRelative(0.24f, -0.41f, 0.37f, -0.92f, 0.37f, -1.5f) - reflectiveCurveToRelative(-0.13f, -1.09f, -0.37f, -1.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.37f, -1.37f) - close() - moveTo(21.79f, 7.05f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.58f, 1.24f) - arcToRelative(5.97f, 5.97f, 0.0f, false, true, 0.0f, 7.42f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.58f, 1.24f) - arcToRelative(7.97f, 7.97f, 0.0f, false, false, 0.0f, -9.9f) - close() - } - } - return _bluetoothSearching!! - } - -private var _bluetoothSearching: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Blur.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Blur.kt deleted file mode 100644 index b8cccba3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Blur.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Blur: ImageVector - get() { - if (_blur != null) { - return _blur!! - } - _blur = fluentIcon(name = "Filled.Blur") { - fluentPath { - moveTo(3.0f, 12.0f) - arcToRelative(9.0f, 9.0f, 0.0f, false, true, 13.98f, -7.5f) - horizontalLineTo(12.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(6.23f) - curveToRelative(0.47f, 0.45f, 0.89f, 0.95f, 1.25f, 1.5f) - horizontalLineTo(12.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(8.06f) - curveToRelative(0.24f, 0.48f, 0.44f, 0.98f, 0.59f, 1.5f) - horizontalLineTo(12.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(8.88f) - curveToRelative(0.08f, 0.49f, 0.12f, 0.99f, 0.12f, 1.5f) - horizontalLineToRelative(-9.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(8.95f) - arcToRelative(8.96f, 8.96f, 0.0f, false, true, -0.3f, 1.5f) - horizontalLineTo(12.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(8.3f) - curveToRelative(-0.23f, 0.53f, -0.5f, 1.03f, -0.82f, 1.5f) - horizontalLineTo(12.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(6.7f) - arcTo(9.0f, 9.0f, 0.0f, false, true, 3.0f, 12.0f) - close() - } - } - return _blur!! - } - -private var _blur: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Board.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Board.kt deleted file mode 100644 index 6a7669fa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Board.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Board: ImageVector - get() { - if (_board != null) { - return _board!! - } - _board = fluentIcon(name = "Filled.Board") { - fluentPath { - moveTo(11.5f, 9.5f) - lineTo(11.5f, 21.0f) - lineTo(6.25f, 21.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.06f) - lineTo(3.0f, 17.75f) - lineTo(3.0f, 9.5f) - horizontalLineToRelative(8.5f) - close() - moveTo(13.0f, 15.5f) - horizontalLineToRelative(8.5f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 1.8f, -1.45f, 3.25f, -3.25f, 3.25f) - lineTo(13.0f, 21.0f) - verticalLineToRelative(-5.5f) - close() - moveTo(18.25f, 2.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.25f, 3.06f) - lineTo(21.5f, 14.0f) - lineTo(13.0f, 14.0f) - lineTo(13.0f, 2.5f) - horizontalLineToRelative(5.25f) - close() - moveTo(11.5f, 2.5f) - lineTo(11.5f, 8.0f) - lineTo(3.0f, 8.0f) - lineTo(3.0f, 5.75f) - curveTo(3.0f, 3.95f, 4.46f, 2.5f, 6.25f, 2.5f) - horizontalLineToRelative(5.25f) - close() - } - } - return _board!! - } - -private var _board: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoardHeart.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoardHeart.kt deleted file mode 100644 index 9831dc2e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoardHeart.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BoardHeart: ImageVector - get() { - if (_boardHeart != null) { - return _boardHeart!! - } - _boardHeart = fluentIcon(name = "Filled.BoardHeart") { - fluentPath { - moveTo(11.5f, 21.0f) - verticalLineToRelative(-1.93f) - lineToRelative(-0.2f, -0.2f) - arcToRelative(4.7f, 4.7f, 0.0f, false, true, 0.2f, -6.7f) - lineTo(11.5f, 9.5f) - lineTo(3.0f, 9.5f) - verticalLineToRelative(8.44f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 6.26f, 21.0f) - horizontalLineToRelative(5.25f) - close() - moveTo(21.5f, 5.75f) - verticalLineToRelative(5.73f) - arcToRelative(4.4f, 4.4f, 0.0f, false, false, -4.5f, 0.3f) - arcToRelative(4.4f, 4.4f, 0.0f, false, false, -4.0f, -0.52f) - lineTo(13.0f, 2.5f) - horizontalLineToRelative(5.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.25f, 3.06f) - verticalLineToRelative(0.19f) - close() - moveTo(11.5f, 17.48f) - arcToRelative(3.73f, 3.73f, 0.0f, false, true, 0.52f, -4.42f) - arcToRelative(3.4f, 3.4f, 0.0f, false, true, 4.94f, 0.0f) - lineToRelative(0.04f, 0.04f) - lineToRelative(0.04f, -0.04f) - lineToRelative(0.2f, -0.2f) - arcToRelative(3.4f, 3.4f, 0.0f, false, true, 4.74f, 0.2f) - arcToRelative(3.7f, 3.7f, 0.0f, false, true, 0.0f, 5.11f) - lineToRelative(-4.45f, 4.6f) - arcToRelative(0.74f, 0.74f, 0.0f, false, true, -1.06f, 0.0f) - lineToRelative(-4.45f, -4.6f) - curveToRelative(-0.2f, -0.21f, -0.38f, -0.44f, -0.52f, -0.69f) - close() - moveTo(11.5f, 8.0f) - lineTo(11.5f, 2.5f) - lineTo(6.25f, 2.5f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 5.75f) - lineTo(3.0f, 8.0f) - horizontalLineToRelative(8.5f) - close() - } - } - return _boardHeart!! - } - -private var _boardHeart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoardSplit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoardSplit.kt deleted file mode 100644 index 6d69cc70..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoardSplit.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BoardSplit: ImageVector - get() { - if (_boardSplit != null) { - return _boardSplit!! - } - _boardSplit = fluentIcon(name = "Filled.BoardSplit") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - lineTo(3.0f, 11.0f) - horizontalLineToRelative(11.0f) - lineTo(14.0f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(3.0f, 17.75f) - lineTo(3.0f, 12.5f) - horizontalLineToRelative(11.0f) - lineTo(14.0f, 21.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - close() - moveTo(15.5f, 16.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(2.25f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 16.0f) - horizontalLineToRelative(-5.5f) - close() - moveTo(21.0f, 14.5f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(-5.5f) - verticalLineToRelative(5.0f) - lineTo(21.0f, 14.5f) - close() - moveTo(21.0f, 8.0f) - horizontalLineToRelative(-5.5f) - lineTo(15.5f, 3.0f) - horizontalLineToRelative(2.25f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - lineTo(21.0f, 8.0f) - close() - } - } - return _boardSplit!! - } - -private var _boardSplit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Book.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Book.kt deleted file mode 100644 index 4a2361ff..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Book.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Book: ImageVector - get() { - if (_book != null) { - return _book!! - } - _book = fluentIcon(name = "Filled.Book") { - fluentPath { - moveTo(6.5f, 2.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) - verticalLineToRelative(15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - horizontalLineToRelative(14.25f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineTo(4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) - horizontalLineTo(6.5f) - close() - moveTo(8.0f, 5.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineTo(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineTo(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - } - } - return _book!! - } - -private var _book: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookAdd.kt deleted file mode 100644 index 565a9c55..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookAdd.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BookAdd: ImageVector - get() { - if (_bookAdd != null) { - return _bookAdd!! - } - _bookAdd = fluentIcon(name = "Filled.BookAdd") { - fluentPath { - moveTo(5.5f, 2.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 3.0f, 4.5f) - verticalLineToRelative(15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 5.5f, 22.0f) - horizontalLineToRelative(7.31f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, -1.5f) - lineTo(5.5f, 20.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - horizontalLineToRelative(6.81f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, 8.19f, -8.19f) - lineTo(19.5f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 17.0f, 2.0f) - lineTo(5.5f, 2.0f) - close() - moveTo(7.0f, 5.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - lineTo(7.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(6.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _bookAdd!! - } - -private var _bookAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookArrowClockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookArrowClockwise.kt deleted file mode 100644 index 84ee2186..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookArrowClockwise.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BookArrowClockwise: ImageVector - get() { - if (_bookArrowClockwise != null) { - return _bookArrowClockwise!! - } - _bookArrowClockwise = fluentIcon(name = "Filled.BookArrowClockwise") { - fluentPath { - moveTo(22.0f, 4.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineTo(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.33f) - lineToRelative(-0.02f, -0.01f) - arcTo(4.5f, 4.5f, 0.0f, true, false, 21.5f, 7.0f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 23.0f, 7.0f) - arcToRelative(6.0f, 6.0f, 0.0f, true, true, -2.5f, -4.87f) - verticalLineTo(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.75f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.75f) - close() - moveTo(12.1f, 2.0f) - horizontalLineTo(6.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) - verticalLineToRelative(15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - horizontalLineToRelative(14.25f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-5.69f) - arcTo(7.0f, 7.0f, 0.0f, false, true, 12.1f, 2.0f) - close() - } - } - return _bookArrowClockwise!! - } - -private var _bookArrowClockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookClock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookClock.kt deleted file mode 100644 index 9f2ec945..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookClock.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BookClock: ImageVector - get() { - if (_bookClock != null) { - return _bookClock!! - } - _bookClock = fluentIcon(name = "Filled.BookClock") { - fluentPath { - moveTo(11.75f, 11.38f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.69f, 0.62f) - horizontalLineToRelative(1.31f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) - horizontalLineTo(13.0f) - verticalLineTo(9.12f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, -1.25f, 0.0f) - verticalLineToRelative(2.26f) - close() - moveTo(4.0f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) - horizontalLineTo(18.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) - verticalLineToRelative(14.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineTo(5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineTo(6.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) - verticalLineToRelative(-15.0f) - close() - moveTo(12.38f, 6.0f) - arcToRelative(4.75f, 4.75f, 0.0f, true, false, 0.0f, 9.5f) - arcToRelative(4.75f, 4.75f, 0.0f, false, false, 0.0f, -9.5f) - close() - } - } - return _bookClock!! - } - -private var _bookClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookCoins.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookCoins.kt deleted file mode 100644 index eddde33b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookCoins.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BookCoins: ImageVector - get() { - if (_bookCoins != null) { - return _bookCoins!! - } - _bookCoins = fluentIcon(name = "Filled.BookCoins") { - fluentPath { - moveTo(4.0f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) - lineTo(18.0f, 2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) - verticalLineToRelative(14.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(5.5f, 19.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(6.5f, 22.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) - verticalLineToRelative(-15.0f) - close() - moveTo(10.2f, 7.46f) - curveTo(9.62f, 7.74f, 9.0f, 8.24f, 9.0f, 9.0f) - reflectiveCurveToRelative(0.62f, 1.26f, 1.2f, 1.54f) - curveToRelative(0.62f, 0.3f, 1.43f, 0.46f, 2.3f, 0.46f) - curveToRelative(0.87f, 0.0f, 1.68f, -0.17f, 2.3f, -0.46f) - curveToRelative(0.58f, -0.28f, 1.2f, -0.78f, 1.2f, -1.54f) - reflectiveCurveToRelative(-0.62f, -1.26f, -1.2f, -1.54f) - arcTo(5.46f, 5.46f, 0.0f, false, false, 12.5f, 7.0f) - curveToRelative(-0.87f, 0.0f, -1.68f, 0.17f, -2.3f, 0.46f) - close() - moveTo(16.0f, 10.9f) - arcTo(5.58f, 5.58f, 0.0f, false, true, 12.5f, 12.0f) - arcTo(5.58f, 5.58f, 0.0f, false, true, 9.0f, 10.89f) - lineTo(9.0f, 11.0f) - curveToRelative(0.0f, 1.1f, 1.57f, 2.0f, 3.5f, 2.0f) - reflectiveCurveToRelative(3.5f, -0.9f, 3.5f, -2.0f) - verticalLineToRelative(-0.11f) - close() - moveTo(12.5f, 14.0f) - arcTo(5.58f, 5.58f, 0.0f, false, true, 9.0f, 12.89f) - lineTo(9.0f, 13.0f) - curveToRelative(0.0f, 1.1f, 1.57f, 2.0f, 3.5f, 2.0f) - reflectiveCurveToRelative(3.5f, -0.9f, 3.5f, -2.0f) - verticalLineToRelative(-0.11f) - arcTo(5.58f, 5.58f, 0.0f, false, true, 12.5f, 14.0f) - close() - } - } - return _bookCoins!! - } - -private var _bookCoins: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookCompass.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookCompass.kt deleted file mode 100644 index de9d19c0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookCompass.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BookCompass: ImageVector - get() { - if (_bookCompass != null) { - return _bookCompass!! - } - _bookCompass = fluentIcon(name = "Filled.BookCompass") { - fluentPath { - moveTo(11.0f, 10.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) - close() - moveTo(4.0f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) - lineTo(18.0f, 2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) - verticalLineToRelative(14.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(5.5f, 19.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(6.5f, 22.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) - verticalLineToRelative(-15.0f) - close() - moveTo(13.0f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.6f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 10.35f, 12.0f) - lineToRelative(-1.3f, 3.23f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.4f, 0.56f) - lineToRelative(1.23f, -3.09f) - arcToRelative(2.76f, 2.76f, 0.0f, false, false, 1.14f, 0.0f) - lineToRelative(1.23f, 3.09f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.4f, -0.56f) - lineTo(14.15f, 12.0f) - arcTo(2.74f, 2.74f, 0.0f, false, false, 13.0f, 7.35f) - verticalLineToRelative(-1.6f) - close() - } - } - return _bookCompass!! - } - -private var _bookCompass: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookContacts.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookContacts.kt deleted file mode 100644 index b5d25f68..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookContacts.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BookContacts: ImageVector - get() { - if (_bookContacts != null) { - return _bookContacts!! - } - _bookContacts = fluentIcon(name = "Filled.BookContacts") { - fluentPath { - moveTo(6.5f, 2.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) - verticalLineToRelative(15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(6.5f, 20.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - horizontalLineToRelative(14.25f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(20.5f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) - lineTo(6.5f, 2.0f) - close() - moveTo(15.5f, 12.25f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 1.0f, -1.38f, 1.75f, -3.25f, 1.75f) - reflectiveCurveTo(9.0f, 13.75f, 9.0f, 12.75f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(14.0f, 8.75f) - arcToRelative(1.75f, 1.75f, 0.0f, true, true, -3.5f, 0.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 3.5f, 0.0f) - close() - } - } - return _bookContacts!! - } - -private var _bookContacts: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookDatabase.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookDatabase.kt deleted file mode 100644 index c7800f9f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookDatabase.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BookDatabase: ImageVector - get() { - if (_bookDatabase != null) { - return _bookDatabase!! - } - _bookDatabase = fluentIcon(name = "Filled.BookDatabase") { - fluentPath { - moveTo(10.56f, 8.42f) - curveToRelative(-0.5f, 0.27f, -0.56f, 0.5f, -0.56f, 0.58f) - curveToRelative(0.0f, 0.08f, 0.07f, 0.31f, 0.56f, 0.58f) - curveToRelative(0.46f, 0.24f, 1.14f, 0.42f, 1.94f, 0.42f) - reflectiveCurveToRelative(1.48f, -0.18f, 1.94f, -0.42f) - curveToRelative(0.5f, -0.27f, 0.56f, -0.5f, 0.56f, -0.58f) - curveToRelative(0.0f, -0.08f, -0.07f, -0.31f, -0.56f, -0.58f) - arcTo(4.21f, 4.21f, 0.0f, false, false, 12.5f, 8.0f) - curveToRelative(-0.8f, 0.0f, -1.48f, 0.18f, -1.94f, 0.42f) - close() - moveTo(15.0f, 13.0f) - verticalLineToRelative(-2.02f) - curveToRelative(-0.7f, 0.33f, -1.57f, 0.52f, -2.5f, 0.52f) - curveToRelative(-0.93f, 0.0f, -1.8f, -0.19f, -2.5f, -0.52f) - lineTo(10.0f, 13.0f) - curveToRelative(0.0f, 0.08f, 0.07f, 0.31f, 0.56f, 0.58f) - curveToRelative(0.46f, 0.24f, 1.14f, 0.42f, 1.94f, 0.42f) - reflectiveCurveToRelative(1.48f, -0.18f, 1.94f, -0.42f) - curveToRelative(0.5f, -0.27f, 0.56f, -0.5f, 0.56f, -0.58f) - close() - moveTo(4.0f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) - lineTo(18.0f, 2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) - verticalLineToRelative(14.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(5.5f, 19.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(6.5f, 22.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) - verticalLineToRelative(-15.0f) - close() - moveTo(9.85f, 7.1f) - curveToRelative(-0.7f, 0.37f, -1.35f, 1.0f, -1.35f, 1.9f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.9f, 0.66f, 1.53f, 1.35f, 1.9f) - curveToRelative(0.71f, 0.38f, 1.65f, 0.6f, 2.65f, 0.6f) - reflectiveCurveToRelative(1.94f, -0.22f, 2.65f, -0.6f) - curveToRelative(0.7f, -0.37f, 1.35f, -1.0f, 1.35f, -1.9f) - lineTo(16.5f, 9.0f) - curveToRelative(0.0f, -0.9f, -0.66f, -1.53f, -1.35f, -1.9f) - arcToRelative(5.7f, 5.7f, 0.0f, false, false, -2.65f, -0.6f) - curveToRelative(-1.0f, 0.0f, -1.94f, 0.22f, -2.65f, 0.6f) - close() - } - } - return _bookDatabase!! - } - -private var _bookDatabase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookExclamationMark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookExclamationMark.kt deleted file mode 100644 index 66c32ac6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookExclamationMark.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BookExclamationMark: ImageVector - get() { - if (_bookExclamationMark != null) { - return _bookExclamationMark!! - } - _bookExclamationMark = fluentIcon(name = "Filled.BookExclamationMark") { - fluentPath { - moveTo(4.0f, 4.5f) - verticalLineToRelative(15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(6.5f, 20.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - horizontalLineToRelative(14.25f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(20.5f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) - lineTo(6.5f, 2.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) - close() - moveTo(11.5f, 11.75f) - verticalLineToRelative(-5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(13.25f, 14.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - } - } - return _bookExclamationMark!! - } - -private var _bookExclamationMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookGlobe.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookGlobe.kt deleted file mode 100644 index a7eddbe4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookGlobe.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BookGlobe: ImageVector - get() { - if (_bookGlobe != null) { - return _bookGlobe!! - } - _bookGlobe = fluentIcon(name = "Filled.BookGlobe") { - fluentPath { - moveTo(4.0f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) - lineTo(18.0f, 2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) - verticalLineToRelative(14.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(5.5f, 19.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(6.5f, 22.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) - verticalLineToRelative(-15.0f) - close() - moveTo(10.55f, 6.37f) - arcToRelative(4.75f, 4.75f, 0.0f, false, false, -2.9f, 3.88f) - horizontalLineToRelative(2.1f) - curveToRelative(0.05f, -1.25f, 0.24f, -2.4f, 0.55f, -3.28f) - lineToRelative(0.25f, -0.6f) - close() - moveTo(13.89f, 6.25f) - curveToRelative(0.12f, 0.22f, 0.22f, 0.46f, 0.3f, 0.72f) - curveToRelative(0.32f, 0.88f, 0.51f, 2.03f, 0.55f, 3.28f) - horizontalLineToRelative(2.36f) - arcToRelative(4.75f, 4.75f, 0.0f, false, false, -3.2f, -4.0f) - close() - moveTo(13.24f, 10.25f) - arcToRelative(9.84f, 9.84f, 0.0f, false, false, -0.46f, -2.79f) - curveToRelative(-0.14f, -0.4f, -0.3f, -0.68f, -0.43f, -0.84f) - arcToRelative(0.68f, 0.68f, 0.0f, false, false, -0.1f, -0.1f) - arcToRelative(0.68f, 0.68f, 0.0f, false, false, -0.1f, 0.1f) - curveToRelative(-0.14f, 0.16f, -0.29f, 0.44f, -0.43f, 0.84f) - curveToRelative(-0.25f, 0.7f, -0.42f, 1.68f, -0.46f, 2.79f) - horizontalLineToRelative(1.98f) - close() - moveTo(11.29f, 11.75f) - curveToRelative(0.07f, 0.9f, 0.22f, 1.7f, 0.43f, 2.29f) - curveToRelative(0.14f, 0.4f, 0.3f, 0.68f, 0.43f, 0.84f) - lineToRelative(0.1f, 0.1f) - arcToRelative(0.68f, 0.68f, 0.0f, false, false, 0.1f, -0.1f) - curveToRelative(0.14f, -0.16f, 0.29f, -0.44f, 0.43f, -0.84f) - curveToRelative(0.2f, -0.6f, 0.37f, -1.39f, 0.43f, -2.29f) - lineTo(11.3f, 11.75f) - close() - moveTo(9.79f, 11.75f) - lineTo(7.72f, 11.75f) - arcToRelative(4.76f, 4.76f, 0.0f, false, false, 2.83f, 3.4f) - curveToRelative(-0.1f, -0.2f, -0.18f, -0.4f, -0.26f, -0.62f) - curveToRelative(-0.26f, -0.76f, -0.45f, -1.73f, -0.52f, -2.78f) - close() - moveTo(13.89f, 15.26f) - arcToRelative(4.76f, 4.76f, 0.0f, false, false, 3.13f, -3.51f) - horizontalLineToRelative(-2.3f) - arcToRelative(10.82f, 10.82f, 0.0f, false, true, -0.52f, 2.78f) - curveToRelative(-0.1f, 0.26f, -0.2f, 0.5f, -0.32f, 0.73f) - close() - moveTo(12.29f, 15.0f) - close() - } - } - return _bookGlobe!! - } - -private var _bookGlobe: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookInformation.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookInformation.kt deleted file mode 100644 index a3c0c590..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookInformation.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BookInformation: ImageVector - get() { - if (_bookInformation != null) { - return _bookInformation!! - } - _bookInformation = fluentIcon(name = "Filled.BookInformation") { - fluentPath { - moveTo(4.0f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) - lineTo(18.0f, 2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) - verticalLineToRelative(14.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(5.5f, 19.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(6.5f, 22.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) - verticalLineToRelative(-15.0f) - close() - moveTo(12.25f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(11.5f, 9.75f) - verticalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - close() - } - } - return _bookInformation!! - } - -private var _bookInformation: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookLetter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookLetter.kt deleted file mode 100644 index 27565137..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookLetter.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BookLetter: ImageVector - get() { - if (_bookLetter != null) { - return _bookLetter!! - } - _bookLetter = fluentIcon(name = "Filled.BookLetter") { - fluentPath { - moveToRelative(12.5f, 8.74f) - lineToRelative(1.12f, 2.76f) - horizontalLineToRelative(-2.24f) - lineToRelative(1.12f, -2.76f) - close() - moveTo(4.0f, 4.5f) - verticalLineToRelative(15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - horizontalLineToRelative(14.25f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineTo(4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) - horizontalLineTo(6.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) - close() - moveTo(12.5f, 6.0f) - curveToRelative(0.3f, 0.0f, 0.58f, 0.18f, 0.7f, 0.47f) - lineToRelative(3.24f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.38f, 0.56f) - lineTo(14.23f, 13.0f) - horizontalLineToRelative(-3.46f) - lineToRelative(-0.83f, 2.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.38f, -0.56f) - lineToRelative(3.25f, -8.0f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 12.5f, 6.0f) - close() - } - } - return _bookLetter!! - } - -private var _bookLetter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookNumber.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookNumber.kt deleted file mode 100644 index dd126dad..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookNumber.kt +++ /dev/null @@ -1,91 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BookNumber: ImageVector - get() { - if (_bookNumber != null) { - return _bookNumber!! - } - _bookNumber = fluentIcon(name = "Filled.BookNumber") { - fluentPath { - moveTo(11.98f, 9.98f) - horizontalLineToRelative(1.49f) - lineToRelative(-0.36f, 1.59f) - horizontalLineToRelative(-1.52f) - lineToRelative(0.39f, -1.59f) - close() - moveTo(4.0f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) - lineTo(18.0f, 2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) - verticalLineToRelative(14.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(5.5f, 19.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(6.5f, 22.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) - verticalLineToRelative(-15.0f) - close() - moveTo(11.02f, 7.57f) - lineTo(10.8f, 8.48f) - lineTo(9.63f, 8.48f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - verticalLineToRelative(0.1f) - curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) - horizontalLineToRelative(0.7f) - lineToRelative(-0.38f, 1.59f) - horizontalLineToRelative(-0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - verticalLineToRelative(0.1f) - curveToRelative(0.06f, 0.36f, 0.37f, 0.65f, 0.75f, 0.65f) - horizontalLineToRelative(0.43f) - lineToRelative(-0.12f, 0.5f) - lineToRelative(-0.02f, 0.1f) - curveToRelative(-0.04f, 0.37f, 0.2f, 0.72f, 0.57f, 0.81f) - lineToRelative(0.1f, 0.02f) - curveToRelative(0.36f, 0.04f, 0.71f, -0.2f, 0.8f, -0.57f) - lineToRelative(0.21f, -0.86f) - horizontalLineToRelative(1.54f) - lineToRelative(-0.12f, 0.51f) - lineToRelative(-0.01f, 0.1f) - curveToRelative(-0.04f, 0.37f, 0.2f, 0.72f, 0.58f, 0.8f) - lineToRelative(0.1f, 0.02f) - curveToRelative(0.37f, 0.03f, 0.71f, -0.21f, 0.8f, -0.58f) - lineToRelative(0.2f, -0.85f) - horizontalLineToRelative(0.93f) - lineToRelative(0.1f, -0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.74f) - verticalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) - horizontalLineToRelative(-0.6f) - lineToRelative(0.37f, -1.59f) - horizontalLineToRelative(0.82f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - verticalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) - horizontalLineToRelative(-0.38f) - lineToRelative(0.13f, -0.56f) - lineToRelative(0.02f, -0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.58f, -0.8f) - lineToRelative(-0.1f, -0.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.8f, 0.58f) - lineToRelative(-0.2f, 0.9f) - horizontalLineToRelative(-1.48f) - lineToRelative(0.14f, -0.55f) - lineToRelative(0.02f, -0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.48f, -0.26f) - close() - } - } - return _bookNumber!! - } - -private var _bookNumber: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookOpen.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookOpen.kt deleted file mode 100644 index 09156681..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookOpen.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BookOpen: ImageVector - get() { - if (_bookOpen != null) { - return _bookOpen!! - } - _bookOpen = fluentIcon(name = "Filled.BookOpen") { - fluentPath { - moveTo(4.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(12.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - curveToRelative(0.77f, 0.0f, 1.47f, -0.29f, 2.0f, -0.76f) - curveToRelative(0.53f, 0.47f, 1.23f, 0.76f, 2.0f, 0.76f) - horizontalLineToRelative(6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(22.0f, 6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - horizontalLineToRelative(-6.0f) - curveToRelative(-0.77f, 0.0f, -1.47f, 0.29f, -2.0f, 0.76f) - arcTo(2.99f, 2.99f, 0.0f, false, false, 10.0f, 4.0f) - lineTo(4.0f, 4.0f) - close() - moveTo(11.0f, 7.0f) - verticalLineToRelative(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - lineTo(4.0f, 18.0f) - lineTo(4.0f, 6.0f) - horizontalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - close() - moveTo(13.0f, 17.0f) - lineTo(13.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(12.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - } - } - return _bookOpen!! - } - -private var _bookOpen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookOpenGlobe.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookOpenGlobe.kt deleted file mode 100644 index 59ea5819..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookOpenGlobe.kt +++ /dev/null @@ -1,103 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BookOpenGlobe: ImageVector - get() { - if (_bookOpenGlobe != null) { - return _bookOpenGlobe!! - } - _bookOpenGlobe = fluentIcon(name = "Filled.BookOpenGlobe") { - fluentPath { - moveTo(4.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(12.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - curveToRelative(0.5f, 0.0f, 0.96f, -0.12f, 1.37f, -0.33f) - arcTo(6.49f, 6.49f, 0.0f, false, true, 13.0f, 12.8f) - lineTo(13.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(5.5f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, 2.0f, 1.31f) - lineTo(22.0f, 6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - horizontalLineToRelative(-6.0f) - curveToRelative(-0.77f, 0.0f, -1.47f, 0.29f, -2.0f, 0.76f) - arcTo(2.99f, 2.99f, 0.0f, false, false, 10.0f, 4.0f) - lineTo(4.0f, 4.0f) - close() - moveTo(11.0f, 7.0f) - verticalLineToRelative(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - lineTo(4.0f, 18.0f) - lineTo(4.0f, 6.0f) - horizontalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - close() - } - fluentPath { - moveTo(16.0f, 17.0f) - curveToRelative(0.05f, -1.41f, 0.25f, -2.67f, 0.56f, -3.58f) - curveToRelative(0.17f, -0.52f, 0.36f, -0.9f, 0.55f, -1.14f) - curveToRelative(0.2f, -0.25f, 0.33f, -0.28f, 0.39f, -0.28f) - reflectiveCurveToRelative(0.2f, 0.03f, 0.39f, 0.28f) - curveToRelative(0.19f, 0.24f, 0.38f, 0.62f, 0.55f, 1.14f) - curveToRelative(0.3f, 0.91f, 0.51f, 2.17f, 0.55f, 3.58f) - horizontalLineToRelative(-2.98f) - close() - } - fluentPath { - moveTo(15.61f, 13.1f) - curveToRelative(0.1f, -0.32f, 0.23f, -0.62f, 0.37f, -0.89f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 12.02f, 17.0f) - horizontalLineToRelative(2.99f) - curveToRelative(0.04f, -1.5f, 0.26f, -2.87f, 0.6f, -3.9f) - close() - } - fluentPath { - moveTo(19.39f, 13.1f) - curveToRelative(-0.1f, -0.32f, -0.23f, -0.62f, -0.37f, -0.89f) - arcTo(5.5f, 5.5f, 0.0f, false, true, 22.98f, 17.0f) - horizontalLineToRelative(-2.99f) - curveToRelative(-0.04f, -1.5f, -0.26f, -2.87f, -0.6f, -3.9f) - close() - } - fluentPath { - moveTo(20.0f, 18.0f) - horizontalLineToRelative(2.98f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, -3.96f, 4.79f) - curveToRelative(0.14f, -0.27f, 0.26f, -0.57f, 0.37f, -0.89f) - curveToRelative(0.34f, -1.03f, 0.56f, -2.4f, 0.6f, -3.9f) - close() - } - fluentPath { - moveTo(17.89f, 22.72f) - curveToRelative(-0.2f, 0.25f, -0.33f, 0.28f, -0.39f, 0.28f) - reflectiveCurveToRelative(-0.2f, -0.03f, -0.39f, -0.28f) - arcToRelative(3.84f, 3.84f, 0.0f, false, true, -0.55f, -1.14f) - curveToRelative(-0.3f, -0.91f, -0.51f, -2.17f, -0.55f, -3.58f) - horizontalLineToRelative(2.98f) - arcToRelative(12.91f, 12.91f, 0.0f, false, true, -0.55f, 3.58f) - curveToRelative(-0.17f, 0.52f, -0.36f, 0.9f, -0.55f, 1.14f) - close() - } - fluentPath { - moveTo(12.02f, 18.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 3.96f, 4.79f) - arcToRelative(6.13f, 6.13f, 0.0f, false, true, -0.37f, -0.89f) - curveToRelative(-0.34f, -1.03f, -0.56f, -2.4f, -0.6f, -3.9f) - horizontalLineToRelative(-2.99f) - close() - } - } - return _bookOpenGlobe!! - } - -private var _bookOpenGlobe: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookOpenMicrophone.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookOpenMicrophone.kt deleted file mode 100644 index e549b705..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookOpenMicrophone.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BookOpenMicrophone: ImageVector - get() { - if (_bookOpenMicrophone != null) { - return _bookOpenMicrophone!! - } - _bookOpenMicrophone = fluentIcon(name = "Filled.BookOpenMicrophone") { - fluentPath { - moveTo(4.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(12.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - curveToRelative(0.77f, 0.0f, 1.47f, -0.29f, 2.0f, -0.76f) - curveToRelative(0.47f, 0.42f, 1.08f, 0.7f, 1.75f, 0.75f) - arcTo(4.73f, 4.73f, 0.0f, false, true, 13.0f, 17.5f) - curveToRelative(0.0f, -0.1f, 0.0f, -0.19f, 0.03f, -0.28f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 13.0f, 17.0f) - lineTo(13.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(5.33f) - arcToRelative(3.53f, 3.53f, 0.0f, false, true, 2.0f, 3.17f) - lineTo(22.0f, 6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - horizontalLineToRelative(-6.0f) - curveToRelative(-0.77f, 0.0f, -1.47f, 0.29f, -2.0f, 0.76f) - arcTo(2.99f, 2.99f, 0.0f, false, false, 10.0f, 4.0f) - lineTo(4.0f, 4.0f) - close() - moveTo(11.0f, 7.0f) - verticalLineToRelative(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - lineTo(4.0f, 18.0f) - lineTo(4.0f, 6.0f) - horizontalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - close() - moveTo(22.0f, 17.5f) - curveToRelative(0.0f, 1.01f, -0.52f, 1.85f, -1.34f, 2.39f) - curveToRelative(-0.6f, 0.39f, -1.34f, 0.61f, -2.16f, 0.61f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -1.98f, -0.5f) - curveToRelative(-0.3f, -0.17f, -0.58f, -0.4f, -0.8f, -0.64f) - arcTo(2.8f, 2.8f, 0.0f, false, true, 15.0f, 17.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - arcToRelative(3.43f, 3.43f, 0.0f, false, false, 0.28f, 1.35f) - curveToRelative(0.17f, 0.42f, 0.42f, 0.8f, 0.74f, 1.15f) - arcTo(4.77f, 4.77f, 0.0f, false, false, 18.0f, 21.47f) - verticalLineToRelative(1.03f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-1.03f) - curveToRelative(2.25f, -0.25f, 4.0f, -1.97f, 4.0f, -3.97f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - close() - moveTo(16.5f, 18.5f) - arcTo(2.58f, 2.58f, 0.0f, false, true, 16.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - lineTo(21.0f, 17.0f) - curveToRelative(0.0f, 1.25f, -1.0f, 2.5f, -2.5f, 2.5f) - curveToRelative(-0.86f, 0.0f, -1.56f, -0.41f, -2.0f, -1.0f) - close() - } - } - return _bookOpenMicrophone!! - } - -private var _bookOpenMicrophone: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookPulse.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookPulse.kt deleted file mode 100644 index d4754bb0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookPulse.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BookPulse: ImageVector - get() { - if (_bookPulse != null) { - return _bookPulse!! - } - _bookPulse = fluentIcon(name = "Filled.BookPulse") { - fluentPath { - moveTo(4.0f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) - lineTo(18.0f, 2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) - verticalLineToRelative(14.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(5.5f, 19.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(6.5f, 22.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) - verticalLineToRelative(-15.0f) - close() - moveTo(11.7f, 7.46f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.37f, -0.05f) - lineTo(8.79f, 10.5f) - lineTo(7.75f, 10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.5f) - curveToRelative(0.28f, 0.0f, 0.54f, -0.16f, 0.67f, -0.41f) - lineToRelative(1.02f, -2.05f) - lineToRelative(2.12f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.34f, 0.09f) - lineTo(15.93f, 12.0f) - horizontalLineToRelative(0.82f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(15.5f, 10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.37f) - lineToRelative(-1.0f, 1.7f) - lineToRelative(-2.16f, -5.11f) - close() - } - } - return _bookPulse!! - } - -private var _bookPulse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookQuestionMark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookQuestionMark.kt deleted file mode 100644 index 84c52e13..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookQuestionMark.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BookQuestionMark: ImageVector - get() { - if (_bookQuestionMark != null) { - return _bookQuestionMark!! - } - _bookQuestionMark = fluentIcon(name = "Filled.BookQuestionMark") { - fluentPath { - moveTo(4.0f, 4.5f) - verticalLineToRelative(15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(6.5f, 20.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - horizontalLineToRelative(14.25f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(20.5f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) - lineTo(6.5f, 2.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) - close() - moveTo(11.0f, 8.02f) - curveToRelative(0.0f, 0.4f, -0.34f, 0.73f, -0.75f, 0.73f) - curveTo(9.5f, 8.75f, 9.5f, 8.0f, 9.5f, 8.0f) - verticalLineToRelative(-0.01f) - arcToRelative(1.4f, 1.4f, 0.0f, false, true, 0.0f, -0.13f) - lineToRelative(0.06f, -0.28f) - curveToRelative(0.05f, -0.22f, 0.16f, -0.5f, 0.37f, -0.8f) - curveToRelative(0.45f, -0.6f, 1.27f, -1.05f, 2.58f, -1.03f) - curveToRelative(0.95f, 0.02f, 1.8f, 0.41f, 2.32f, 1.07f) - curveToRelative(0.54f, 0.67f, 0.72f, 1.57f, 0.37f, 2.46f) - curveToRelative(-0.37f, 0.9f, -1.19f, 1.26f, -1.66f, 1.47f) - lineToRelative(-0.05f, 0.02f) - curveToRelative(-0.28f, 0.13f, -0.4f, 0.19f, -0.49f, 0.25f) - verticalLineToRelative(0.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(11.5f, 11.0f) - curveToRelative(0.0f, -0.52f, 0.25f, -0.9f, 0.56f, -1.15f) - curveToRelative(0.25f, -0.2f, 0.57f, -0.34f, 0.79f, -0.43f) - lineToRelative(0.04f, -0.02f) - curveToRelative(0.54f, -0.24f, 0.8f, -0.39f, 0.91f, -0.68f) - arcToRelative(0.92f, 0.92f, 0.0f, false, false, -0.13f, -0.96f) - curveToRelative(-0.23f, -0.27f, -0.63f, -0.5f, -1.18f, -0.51f) - curveToRelative(-0.94f, -0.02f, -1.25f, 0.29f, -1.36f, 0.43f) - arcToRelative(0.72f, 0.72f, 0.0f, false, false, -0.13f, 0.33f) - close() - moveTo(13.25f, 14.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - } - } - return _bookQuestionMark!! - } - -private var _bookQuestionMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookQuestionMarkRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookQuestionMarkRtl.kt deleted file mode 100644 index cebe8fa9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookQuestionMarkRtl.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BookQuestionMarkRtl: ImageVector - get() { - if (_bookQuestionMarkRtl != null) { - return _bookQuestionMarkRtl!! - } - _bookQuestionMarkRtl = fluentIcon(name = "Filled.BookQuestionMarkRtl") { - fluentPath { - moveTo(4.0f, 4.5f) - verticalLineToRelative(15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(6.5f, 20.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - horizontalLineToRelative(14.25f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(20.5f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) - lineTo(6.5f, 2.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) - close() - moveTo(14.5f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.73f) - lineToRelative(-0.01f, -0.08f) - arcToRelative(0.72f, 0.72f, 0.0f, false, false, -0.12f, -0.26f) - curveToRelative(-0.11f, -0.15f, -0.42f, -0.45f, -1.36f, -0.43f) - curveToRelative(-0.55f, 0.0f, -0.95f, 0.24f, -1.18f, 0.51f) - arcToRelative(0.92f, 0.92f, 0.0f, false, false, -0.13f, 0.96f) - curveToRelative(0.11f, 0.3f, 0.37f, 0.44f, 0.91f, 0.68f) - lineToRelative(0.04f, 0.02f) - curveToRelative(0.22f, 0.1f, 0.54f, 0.23f, 0.79f, 0.43f) - curveToRelative(0.3f, 0.25f, 0.56f, 0.63f, 0.56f, 1.15f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - verticalLineToRelative(-0.73f) - arcToRelative(2.49f, 2.49f, 0.0f, false, false, -0.5f, -0.25f) - lineToRelative(-0.04f, -0.02f) - curveToRelative(-0.47f, -0.2f, -1.3f, -0.57f, -1.66f, -1.47f) - curveToRelative(-0.35f, -0.89f, -0.17f, -1.8f, 0.37f, -2.46f) - arcToRelative(3.02f, 3.02f, 0.0f, false, true, 2.32f, -1.07f) - curveToRelative(1.31f, -0.02f, 2.13f, 0.43f, 2.58f, 1.04f) - arcToRelative(2.22f, 2.22f, 0.0f, false, true, 0.43f, 1.2f) - reflectiveCurveToRelative(0.0f, 0.76f, -0.75f, 0.76f) - close() - moveTo(11.5f, 14.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - close() - } - } - return _bookQuestionMarkRtl!! - } - -private var _bookQuestionMarkRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookSearch.kt deleted file mode 100644 index a6a981d5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookSearch.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BookSearch: ImageVector - get() { - if (_bookSearch != null) { - return _bookSearch!! - } - _bookSearch = fluentIcon(name = "Filled.BookSearch") { - fluentPath { - moveTo(11.72f, 7.45f) - arcToRelative(2.28f, 2.28f, 0.0f, true, false, 0.0f, 4.55f) - arcToRelative(2.28f, 2.28f, 0.0f, false, false, 0.0f, -4.55f) - close() - moveTo(4.0f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) - lineTo(18.0f, 2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) - verticalLineToRelative(14.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(5.5f, 19.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(6.5f, 22.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) - verticalLineToRelative(-15.0f) - close() - moveTo(14.82f, 11.8f) - arcToRelative(3.72f, 3.72f, 0.0f, true, false, -1.02f, 1.02f) - lineToRelative(2.47f, 2.47f) - lineToRelative(0.07f, 0.06f) - arcToRelative(0.72f, 0.72f, 0.0f, false, false, 0.95f, -1.09f) - lineToRelative(-2.47f, -2.46f) - close() - } - } - return _bookSearch!! - } - -private var _bookSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookStar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookStar.kt deleted file mode 100644 index 68c06b2d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookStar.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BookStar: ImageVector - get() { - if (_bookStar != null) { - return _bookStar!! - } - _bookStar = fluentIcon(name = "Filled.BookStar") { - fluentPath { - moveTo(11.6f, 9.53f) - curveToRelative(-0.1f, 0.2f, -0.29f, 0.34f, -0.51f, 0.37f) - lineToRelative(-1.45f, 0.21f) - lineToRelative(1.05f, 1.02f) - curveToRelative(0.16f, 0.16f, 0.23f, 0.39f, 0.2f, 0.6f) - lineToRelative(-0.26f, 1.45f) - lineToRelative(1.3f, -0.68f) - curveToRelative(0.2f, -0.1f, 0.44f, -0.1f, 0.64f, 0.0f) - lineToRelative(1.3f, 0.68f) - lineToRelative(-0.25f, -1.44f) - arcToRelative(0.68f, 0.68f, 0.0f, false, true, 0.2f, -0.6f) - lineToRelative(1.04f, -1.03f) - lineToRelative(-1.45f, -0.21f) - arcToRelative(0.68f, 0.68f, 0.0f, false, true, -0.51f, -0.37f) - lineToRelative(-0.65f, -1.32f) - lineToRelative(-0.65f, 1.32f) - close() - moveTo(4.0f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) - lineTo(18.0f, 2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) - verticalLineToRelative(14.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(5.5f, 19.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(6.5f, 22.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) - verticalLineToRelative(-15.0f) - close() - moveTo(10.54f, 8.6f) - lineTo(8.08f, 8.97f) - arcToRelative(0.68f, 0.68f, 0.0f, false, false, -0.37f, 1.15f) - lineToRelative(1.78f, 1.74f) - lineToRelative(-0.42f, 2.45f) - curveToRelative(-0.1f, 0.55f, 0.48f, 0.97f, 0.98f, 0.71f) - lineToRelative(2.2f, -1.15f) - lineToRelative(2.2f, 1.15f) - arcToRelative(0.68f, 0.68f, 0.0f, false, false, 0.98f, -0.71f) - lineToRelative(-0.42f, -2.45f) - lineToRelative(1.78f, -1.74f) - arcToRelative(0.68f, 0.68f, 0.0f, false, false, -0.37f, -1.15f) - lineToRelative(-2.46f, -0.36f) - lineToRelative(-1.1f, -2.23f) - arcToRelative(0.68f, 0.68f, 0.0f, false, false, -1.22f, 0.0f) - lineToRelative(-1.1f, 2.23f) - close() - } - } - return _bookStar!! - } - -private var _bookStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookTheta.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookTheta.kt deleted file mode 100644 index 0608923b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookTheta.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BookTheta: ImageVector - get() { - if (_bookTheta != null) { - return _bookTheta!! - } - _bookTheta = fluentIcon(name = "Filled.BookTheta") { - fluentPath { - moveTo(14.12f, 14.0f) - curveToRelative(0.37f, -0.5f, 0.66f, -1.2f, 0.8f, -2.0f) - horizontalLineToRelative(-4.84f) - curveToRelative(0.14f, 0.8f, 0.43f, 1.5f, 0.8f, 2.0f) - curveToRelative(0.52f, 0.72f, 1.11f, 1.0f, 1.62f, 1.0f) - curveToRelative(0.5f, 0.0f, 1.1f, -0.28f, 1.62f, -1.0f) - close() - moveTo(14.12f, 8.0f) - curveToRelative(0.44f, 0.6f, 0.78f, 1.48f, 0.86f, 2.5f) - horizontalLineToRelative(-4.96f) - curveToRelative(0.08f, -1.02f, 0.42f, -1.9f, 0.86f, -2.5f) - curveToRelative(0.52f, -0.72f, 1.11f, -1.0f, 1.62f, -1.0f) - curveToRelative(0.5f, 0.0f, 1.1f, 0.28f, 1.62f, 1.0f) - close() - moveTo(4.0f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) - lineTo(18.0f, 2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) - verticalLineToRelative(14.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(5.5f, 19.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(6.5f, 22.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) - verticalLineToRelative(-15.0f) - close() - moveTo(12.5f, 16.5f) - curveToRelative(2.2f, 0.0f, 4.0f, -2.46f, 4.0f, -5.5f) - reflectiveCurveToRelative(-1.8f, -5.5f, -4.0f, -5.5f) - reflectiveCurveToRelative(-4.0f, 2.46f, -4.0f, 5.5f) - reflectiveCurveToRelative(1.8f, 5.5f, 4.0f, 5.5f) - close() - } - } - return _bookTheta!! - } - -private var _bookTheta: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookToolbox.kt deleted file mode 100644 index 6649a474..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookToolbox.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BookToolbox: ImageVector - get() { - if (_bookToolbox != null) { - return _bookToolbox!! - } - _bookToolbox = fluentIcon(name = "Filled.BookToolbox") { - fluentPath { - moveTo(14.0f, 4.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - lineTo(12.0f, 7.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(16.0f, 7.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(20.5f, 7.0f) - lineTo(23.0f, 7.0f) - lineTo(23.0f, 5.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(21.0f, 4.0f) - lineTo(21.0f, 3.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.5f) - curveTo(14.78f, 1.25f, 14.0f, 2.03f, 14.0f, 3.0f) - verticalLineToRelative(1.0f) - close() - moveTo(15.5f, 3.0f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-4.0f) - lineTo(15.5f, 3.0f) - close() - moveTo(12.0f, 10.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(16.0f, 8.5f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(20.5f, 8.5f) - lineTo(23.0f, 8.5f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - close() - moveTo(13.0f, 3.05f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.0f, 2.45f) - verticalLineToRelative(5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, 2.5f) - horizontalLineToRelative(7.0f) - verticalLineToRelative(5.75f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(5.5f, 19.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(6.5f, 22.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) - verticalLineToRelative(-15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) - horizontalLineToRelative(6.69f) - curveToRelative(-0.12f, 0.31f, -0.19f, 0.65f, -0.19f, 1.0f) - verticalLineToRelative(0.05f) - close() - } - } - return _bookToolbox!! - } - -private var _bookToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Bookmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Bookmark.kt deleted file mode 100644 index a13dbafc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Bookmark.kt +++ /dev/null @@ -1,33 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Bookmark: ImageVector - get() { - if (_bookmark != null) { - return _bookmark!! - } - _bookmark = fluentIcon(name = "Filled.Bookmark") { - fluentPath { - moveTo(6.2f, 21.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.2f, -0.6f) - verticalLineToRelative(-15.0f) - curveTo(5.0f, 4.45f, 6.46f, 3.0f, 8.25f, 3.0f) - horizontalLineToRelative(7.5f) - curveTo(17.55f, 3.0f, 19.0f, 4.46f, 19.0f, 6.25f) - verticalLineToRelative(15.0f) - curveToRelative(0.0f, 0.6f, -0.7f, 0.96f, -1.19f, 0.6f) - lineToRelative(-5.8f, -4.18f) - lineToRelative(-5.82f, 4.18f) - close() - } - } - return _bookmark!! - } - -private var _bookmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookmarkAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookmarkAdd.kt deleted file mode 100644 index dad8f7c1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookmarkAdd.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BookmarkAdd: ImageVector - get() { - if (_bookmarkAdd != null) { - return _bookmarkAdd!! - } - _bookmarkAdd = fluentIcon(name = "Filled.BookmarkAdd") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 7.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 7.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 6.0f) - lineTo(17.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - lineTo(18.0f, 6.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 7.0f) - close() - moveTo(17.5f, 13.0f) - curveToRelative(0.52f, 0.0f, 1.02f, -0.06f, 1.5f, -0.17f) - verticalLineToRelative(8.42f) - curveToRelative(0.0f, 0.6f, -0.7f, 0.96f, -1.19f, 0.6f) - lineToRelative(-5.8f, -4.18f) - lineToRelative(-5.82f, 4.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.19f, -0.6f) - verticalLineToRelative(-15.0f) - curveTo(5.0f, 4.45f, 6.46f, 3.0f, 8.25f, 3.0f) - horizontalLineToRelative(3.77f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, 5.48f, 10.0f) - close() - } - } - return _bookmarkAdd!! - } - -private var _bookmarkAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookmarkMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookmarkMultiple.kt deleted file mode 100644 index c08eb211..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookmarkMultiple.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BookmarkMultiple: ImageVector - get() { - if (_bookmarkMultiple != null) { - return _bookmarkMultiple!! - } - _bookmarkMultiple = fluentIcon(name = "Filled.BookmarkMultiple") { - fluentPath { - moveTo(4.0f, 6.75f) - curveTo(4.0f, 5.5f, 5.0f, 4.5f, 6.25f, 4.5f) - horizontalLineToRelative(9.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, 0.65f) - lineToRelative(-5.62f, -3.28f) - lineToRelative(-5.62f, 3.28f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 4.0f, 21.25f) - verticalLineTo(6.75f) - close() - moveTo(15.25f, 2.0f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 20.0f, 6.75f) - verticalLineToRelative(11.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineTo(6.75f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineTo(6.64f) - reflectiveCurveToRelative(0.11f, -0.56f, 0.8f, -1.08f) - curveTo(8.0f, 2.0f, 8.6f, 2.0f, 8.6f, 2.0f) - horizontalLineToRelative(6.65f) - close() - } - } - return _bookmarkMultiple!! - } - -private var _bookmarkMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookmarkOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookmarkOff.kt deleted file mode 100644 index e4fedbdf..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookmarkOff.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BookmarkOff: ImageVector - get() { - if (_bookmarkOff != null) { - return _bookmarkOff!! - } - _bookmarkOff = fluentIcon(name = "Filled.BookmarkOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(2.79f, 2.79f) - verticalLineToRelative(15.18f) - curveToRelative(0.0f, 0.6f, 0.68f, 0.96f, 1.18f, 0.6f) - lineTo(12.0f, 17.67f) - lineToRelative(5.81f, 4.18f) - curveToRelative(0.5f, 0.36f, 1.2f, 0.0f, 1.2f, -0.6f) - verticalLineToRelative(-1.19f) - lineToRelative(1.7f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.07f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(19.0f, 6.25f) - verticalLineToRelative(9.57f) - lineTo(6.62f, 3.44f) - arcTo(3.24f, 3.24f, 0.0f, false, true, 8.25f, 3.0f) - horizontalLineToRelative(7.5f) - curveTo(17.55f, 3.0f, 19.0f, 4.45f, 19.0f, 6.25f) - close() - } - } - return _bookmarkOff!! - } - -private var _bookmarkOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookmarkSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookmarkSearch.kt deleted file mode 100644 index 7318eb85..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BookmarkSearch.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BookmarkSearch: ImageVector - get() { - if (_bookmarkSearch != null) { - return _bookmarkSearch!! - } - _bookmarkSearch = fluentIcon(name = "Filled.BookmarkSearch") { - fluentPath { - moveTo(19.1f, 9.17f) - arcToRelative(4.5f, 4.5f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(2.62f, 2.61f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(19.1f, 9.17f) - close() - moveTo(19.5f, 5.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, -6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 6.0f, 0.0f) - close() - moveTo(19.0f, 10.48f) - verticalLineToRelative(10.76f) - curveToRelative(0.0f, 0.62f, -0.7f, 0.97f, -1.19f, 0.61f) - lineToRelative(-5.8f, -4.18f) - lineToRelative(-5.82f, 4.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.19f, -0.6f) - verticalLineToRelative(-15.0f) - curveTo(5.0f, 4.45f, 6.46f, 3.0f, 8.25f, 3.0f) - horizontalLineToRelative(3.35f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 7.35f, 7.43f) - lineToRelative(0.05f, 0.05f) - close() - } - } - return _bookmarkSearch!! - } - -private var _bookmarkSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderAll.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderAll.kt deleted file mode 100644 index 7ac28739..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderAll.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BorderAll: ImageVector - get() { - if (_borderAll != null) { - return _borderAll!! - } - _borderAll = fluentIcon(name = "Filled.BorderAll") { - fluentPath { - moveTo(3.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - lineTo(6.0f, 21.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(3.0f, 6.0f) - close() - moveTo(13.0f, 19.0f) - horizontalLineToRelative(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(-6.0f) - verticalLineToRelative(6.0f) - close() - moveTo(11.0f, 13.0f) - lineTo(5.0f, 13.0f) - verticalLineToRelative(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-6.0f) - close() - moveTo(13.0f, 11.0f) - horizontalLineToRelative(6.0f) - lineTo(19.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(6.0f) - close() - moveTo(11.0f, 5.0f) - lineTo(6.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(6.0f) - lineTo(11.0f, 5.0f) - close() - } - } - return _borderAll!! - } - -private var _borderAll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderBottom.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderBottom.kt deleted file mode 100644 index 2e07e76c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderBottom.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BorderBottom: ImageVector - get() { - if (_borderBottom != null) { - return _borderBottom!! - } - _borderBottom = fluentIcon(name = "Filled.BorderBottom") { - fluentPath { - moveTo(13.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(2.0f) - close() - moveTo(5.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(3.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - lineTo(6.0f, 21.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - close() - moveTo(20.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - moveTo(7.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - close() - moveTo(18.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - close() - } - } - return _borderBottom!! - } - -private var _borderBottom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderBottomDouble.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderBottomDouble.kt deleted file mode 100644 index 4d14de50..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderBottomDouble.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BorderBottomDouble: ImageVector - get() { - if (_borderBottomDouble != null) { - return _borderBottomDouble!! - } - _borderBottomDouble = fluentIcon(name = "Filled.BorderBottomDouble") { - fluentPath { - moveTo(13.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(2.0f) - close() - moveTo(5.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(4.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(4.0f, 18.0f) - close() - moveTo(4.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(4.0f, 21.0f) - close() - moveTo(20.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - moveTo(7.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - close() - moveTo(18.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - close() - } - } - return _borderBottomDouble!! - } - -private var _borderBottomDouble: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderBottomThick.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderBottomThick.kt deleted file mode 100644 index eacd4e13..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderBottomThick.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BorderBottomThick: ImageVector - get() { - if (_borderBottomThick != null) { - return _borderBottomThick!! - } - _borderBottomThick = fluentIcon(name = "Filled.BorderBottomThick") { - fluentPath { - moveTo(14.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - close() - moveTo(5.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(19.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(6.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - close() - moveTo(17.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(5.5f, 17.25f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-0.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - lineTo(21.0f, 18.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.25f, 3.0f) - lineTo(6.25f, 21.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.0f) - lineTo(3.0f, 18.0f) - verticalLineToRelative(-0.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - close() - } - } - return _borderBottomThick!! - } - -private var _borderBottomThick: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderLeft.kt deleted file mode 100644 index 7cb58cfb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderLeft.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BorderLeft: ImageVector - get() { - if (_borderLeft != null) { - return _borderLeft!! - } - _borderLeft = fluentIcon(name = "Filled.BorderLeft") { - fluentPath { - moveTo(6.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(5.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) - close() - moveTo(13.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(2.0f) - close() - moveTo(19.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(14.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - close() - moveTo(18.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - close() - moveTo(17.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - close() - } - } - return _borderLeft!! - } - -private var _borderLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderLeftRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderLeftRight.kt deleted file mode 100644 index bcf3b94c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderLeftRight.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BorderLeftRight: ImageVector - get() { - if (_borderLeftRight != null) { - return _borderLeftRight!! - } - _borderLeftRight = fluentIcon(name = "Filled.BorderLeftRight") { - fluentPath { - moveTo(17.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - lineTo(19.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(13.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(2.0f) - close() - moveTo(13.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(2.0f) - close() - moveTo(6.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(3.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - close() - } - } - return _borderLeftRight!! - } - -private var _borderLeftRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderNone.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderNone.kt deleted file mode 100644 index b96be294..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderNone.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BorderNone: ImageVector - get() { - if (_borderNone != null) { - return _borderNone!! - } - _borderNone = fluentIcon(name = "Filled.BorderNone") { - fluentPath { - moveTo(14.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - close() - moveTo(5.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(19.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(13.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(2.0f) - close() - moveTo(7.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - close() - moveTo(18.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - close() - moveTo(7.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - close() - moveTo(18.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - close() - } - } - return _borderNone!! - } - -private var _borderNone: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderOutside.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderOutside.kt deleted file mode 100644 index b05ac30f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderOutside.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BorderOutside: ImageVector - get() { - if (_borderOutside != null) { - return _borderOutside!! - } - _borderOutside = fluentIcon(name = "Filled.BorderOutside") { - fluentPath { - moveTo(3.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - lineTo(6.0f, 21.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(3.0f, 6.0f) - close() - moveTo(6.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - lineTo(19.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(6.0f, 5.0f) - close() - } - } - return _borderOutside!! - } - -private var _borderOutside: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderOutsideThick.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderOutsideThick.kt deleted file mode 100644 index 96bbfd90..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderOutsideThick.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BorderOutsideThick: ImageVector - get() { - if (_borderOutsideThick != null) { - return _borderOutsideThick!! - } - _borderOutsideThick = fluentIcon(name = "Filled.BorderOutsideThick") { - fluentPath { - moveTo(2.5f, 5.75f) - curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) - horizontalLineToRelative(12.5f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineTo(5.75f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.25f, -3.25f) - verticalLineTo(5.75f) - close() - moveTo(5.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(12.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineTo(5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineTo(5.75f) - close() - } - } - return _borderOutsideThick!! - } - -private var _borderOutsideThick: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderRight.kt deleted file mode 100644 index 921e2633..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderRight.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BorderRight: ImageVector - get() { - if (_borderRight != null) { - return _borderRight!! - } - _borderRight = fluentIcon(name = "Filled.BorderRight") { - fluentPath { - moveTo(13.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(2.0f) - close() - moveTo(5.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(14.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - close() - moveTo(6.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - close() - moveTo(7.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - close() - moveTo(18.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - lineTo(19.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - close() - } - } - return _borderRight!! - } - -private var _borderRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderTop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderTop.kt deleted file mode 100644 index e0d41c7e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderTop.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BorderTop: ImageVector - get() { - if (_borderTop != null) { - return _borderTop!! - } - _borderTop = fluentIcon(name = "Filled.BorderTop") { - fluentPath { - moveTo(3.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - lineTo(6.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - close() - moveTo(5.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(19.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(14.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - close() - moveTo(6.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) - close() - moveTo(17.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - close() - } - } - return _borderTop!! - } - -private var _borderTop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderTopBottom.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderTopBottom.kt deleted file mode 100644 index 0b1f2dc8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderTopBottom.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BorderTopBottom: ImageVector - get() { - if (_borderTopBottom != null) { - return _borderTopBottom!! - } - _borderTopBottom = fluentIcon(name = "Filled.BorderTopBottom") { - fluentPath { - moveTo(4.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(6.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - close() - moveTo(5.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(19.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(3.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - lineTo(6.0f, 21.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - close() - } - } - return _borderTopBottom!! - } - -private var _borderTopBottom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderTopBottomDouble.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderTopBottomDouble.kt deleted file mode 100644 index b0c4bc5b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderTopBottomDouble.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BorderTopBottomDouble: ImageVector - get() { - if (_borderTopBottomDouble != null) { - return _borderTopBottomDouble!! - } - _borderTopBottomDouble = fluentIcon(name = "Filled.BorderTopBottomDouble") { - fluentPath { - moveTo(3.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - lineTo(6.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - close() - moveTo(5.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(4.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(4.0f, 18.0f) - close() - moveTo(4.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(4.0f, 21.0f) - close() - moveTo(20.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - } - } - return _borderTopBottomDouble!! - } - -private var _borderTopBottomDouble: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderTopBottomThick.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderTopBottomThick.kt deleted file mode 100644 index 3eab69d5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BorderTopBottomThick.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BorderTopBottomThick: ImageVector - get() { - if (_borderTopBottomThick != null) { - return _borderTopBottomThick!! - } - _borderTopBottomThick = fluentIcon(name = "Filled.BorderTopBottomThick") { - fluentPath { - moveTo(3.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - lineTo(6.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - close() - moveTo(5.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(5.5f, 17.25f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-0.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - lineTo(21.0f, 18.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.25f, 3.0f) - lineTo(6.25f, 21.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.0f) - lineTo(3.0f, 18.0f) - verticalLineToRelative(-0.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - close() - moveTo(20.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - } - } - return _borderTopBottomThick!! - } - -private var _borderTopBottomThick: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Bot.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Bot.kt deleted file mode 100644 index 2f673bb5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Bot.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Bot: ImageVector - get() { - if (_bot != null) { - return _bot!! - } - _bot = fluentIcon(name = "Filled.Bot") { - fluentPath { - moveTo(17.75f, 14.0f) - curveTo(19.0f, 14.0f, 20.0f, 15.0f, 20.0f, 16.25f) - verticalLineToRelative(0.9f) - curveToRelative(0.0f, 1.1f, -0.47f, 2.14f, -1.3f, 2.85f) - curveToRelative(-1.57f, 1.34f, -3.81f, 2.0f, -6.7f, 2.0f) - reflectiveCurveToRelative(-5.13f, -0.66f, -6.7f, -2.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 4.0f, 17.16f) - verticalLineToRelative(-0.91f) - curveTo(4.0f, 15.0f, 5.01f, 14.0f, 6.25f, 14.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(11.9f, 2.0f) - horizontalLineToRelative(0.1f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(3.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 1.25f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-8.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineTo(12.0f, 2.0f) - horizontalLineToRelative(-0.1f) - close() - moveTo(9.75f, 6.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(14.25f, 6.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - } - } - return _bot!! - } - -private var _bot: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BotAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BotAdd.kt deleted file mode 100644 index 1e67131e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BotAdd.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BotAdd: ImageVector - get() { - if (_botAdd != null) { - return _botAdd!! - } - _botAdd = fluentIcon(name = "Filled.BotAdd") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(12.02f, 14.0f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, 0.6f, 7.79f) - curveToRelative(-0.8f, 0.14f, -1.68f, 0.21f, -2.62f, 0.21f) - curveToRelative(-2.89f, 0.0f, -5.13f, -0.66f, -6.7f, -2.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 2.0f, 17.16f) - verticalLineToRelative(-0.91f) - curveTo(2.0f, 15.0f, 3.01f, 14.0f, 4.25f, 14.0f) - horizontalLineToRelative(7.77f) - close() - moveTo(17.5f, 14.0f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) - lineToRelative(-0.01f, 0.1f) - lineTo(17.0f, 17.0f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(0.18f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) - lineToRelative(0.1f, 0.01f) - lineTo(17.0f, 18.0f) - verticalLineToRelative(2.6f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - horizontalLineToRelative(0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) - lineToRelative(0.01f, -0.1f) - lineTo(18.0f, 18.0f) - horizontalLineToRelative(2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - verticalLineToRelative(-0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) - lineToRelative(-0.1f, -0.01f) - lineTo(18.0f, 17.0f) - verticalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) - horizontalLineToRelative(-0.09f) - close() - moveTo(10.0f, 2.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(3.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.3f, -0.06f, 0.6f, -0.17f, 0.86f) - curveToRelative(-1.12f, 0.2f, -2.15f, 0.7f, -2.99f, 1.4f) - lineTo(5.75f, 12.51f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.01f, -2.25f, -2.26f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.35f, 0.23f, -0.64f, 0.55f, -0.72f) - lineTo(9.9f, 2.0f) - lineTo(10.0f, 2.0f) - close() - moveTo(7.75f, 6.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(12.25f, 6.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - } - } - return _botAdd!! - } - -private var _botAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BotSparkle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BotSparkle.kt deleted file mode 100644 index 39c71cb8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BotSparkle.kt +++ /dev/null @@ -1,108 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BotSparkle: ImageVector - get() { - if (_botSparkle != null) { - return _botSparkle!! - } - _botSparkle = fluentIcon(name = "Filled.BotSparkle") { - fluentPath { - moveToRelative(18.36f, 10.28f) - lineToRelative(0.14f, 0.1f) - lineTo(18.5f, 5.76f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-3.5f) - verticalLineToRelative(-0.85f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 12.0f, 2.0f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(-3.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 1.25f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(7.78f) - lineToRelative(0.02f, -0.05f) - lineToRelative(0.01f, -0.02f) - lineToRelative(0.45f, -1.39f) - verticalLineToRelative(-0.01f) - arcToRelative(1.54f, 1.54f, 0.0f, false, true, 2.35f, -0.75f) - close() - moveTo(9.75f, 6.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(14.25f, 6.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(13.05f, 14.04f) - lineTo(13.15f, 14.0f) - horizontalLineToRelative(-6.9f) - curveTo(5.01f, 14.0f, 4.0f, 15.0f, 4.0f, 16.25f) - verticalLineToRelative(0.9f) - curveToRelative(0.0f, 1.1f, 0.48f, 2.14f, 1.3f, 2.85f) - curveToRelative(1.57f, 1.34f, 3.81f, 2.0f, 6.7f, 2.0f) - curveToRelative(2.08f, 0.0f, 3.82f, -0.34f, 5.21f, -1.03f) - arcToRelative(1.55f, 1.55f, 0.0f, false, true, -1.17f, -1.0f) - verticalLineToRelative(-0.01f) - lineToRelative(-0.45f, -1.39f) - arcToRelative(1.84f, 1.84f, 0.0f, false, false, -0.44f, -0.72f) - lineToRelative(-0.36f, -0.26f) - lineToRelative(-0.36f, -0.18f) - lineToRelative(-1.39f, -0.45f) - arcToRelative(1.55f, 1.55f, 0.0f, false, true, 0.0f, -2.92f) - close() - moveTo(15.85f, 17.14f) - arcToRelative(2.83f, 2.83f, 0.0f, false, true, 0.69f, 1.12f) - lineToRelative(0.45f, 1.38f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 1.02f, 0.0f) - lineToRelative(0.45f, -1.38f) - arcToRelative(2.83f, 2.83f, 0.0f, false, true, 1.8f, -1.8f) - lineToRelative(1.38f, -0.44f) - arcToRelative(0.55f, 0.55f, 0.0f, false, false, 0.0f, -1.03f) - horizontalLineToRelative(-0.03f) - lineToRelative(-1.38f, -0.45f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.8f, -1.8f) - lineTo(18.0f, 11.36f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, -1.03f, 0.0f) - lineToRelative(-0.45f, 1.38f) - lineToRelative(-0.01f, 0.03f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.76f, 1.77f) - lineToRelative(-1.38f, 0.44f) - arcToRelative(0.55f, 0.55f, 0.0f, false, false, 0.0f, 1.03f) - lineToRelative(1.38f, 0.45f) - curveToRelative(0.42f, 0.14f, 0.8f, 0.37f, 1.11f, 0.69f) - close() - moveTo(23.02f, 20.96f) - lineTo(23.78f, 21.21f) - horizontalLineToRelative(0.02f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.0f, 0.58f) - lineToRelative(-0.77f, 0.25f) - arcToRelative(1.58f, 1.58f, 0.0f, false, false, -1.0f, 1.0f) - lineToRelative(-0.24f, 0.76f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.57f, 0.0f) - lineToRelative(-0.25f, -0.77f) - arcToRelative(1.57f, 1.57f, 0.0f, false, false, -1.0f, -1.0f) - lineToRelative(-0.77f, -0.25f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.0f, -0.57f) - lineToRelative(0.77f, -0.25f) - arcToRelative(1.58f, 1.58f, 0.0f, false, false, 0.98f, -1.0f) - lineToRelative(0.25f, -0.76f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.57f, 0.0f) - lineToRelative(0.25f, 0.77f) - arcToRelative(1.58f, 1.58f, 0.0f, false, false, 1.0f, 1.0f) - close() - } - } - return _botSparkle!! - } - -private var _botSparkle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BowlChopsticks.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BowlChopsticks.kt deleted file mode 100644 index 21a17153..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BowlChopsticks.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BowlChopsticks: ImageVector - get() { - if (_bowlChopsticks != null) { - return _bowlChopsticks!! - } - _bowlChopsticks = fluentIcon(name = "Filled.BowlChopsticks") { - fluentPath { - moveTo(5.38f, 2.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.02f, 0.28f) - lineTo(11.37f, 11.0f) - horizontalLineToRelative(2.26f) - lineTo(9.1f, 3.12f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.3f, -0.74f) - lineTo(15.37f, 11.0f) - horizontalLineToRelative(5.93f) - curveToRelative(0.39f, 0.0f, 0.7f, 0.31f, 0.7f, 0.7f) - verticalLineToRelative(0.3f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -0.46f, 3.0f) - horizontalLineTo(2.46f) - arcTo(10.0f, 10.0f, 0.0f, false, true, 2.0f, 12.0f) - verticalLineToRelative(-0.3f) - curveToRelative(0.0f, -0.39f, 0.31f, -0.7f, 0.7f, -0.7f) - horizontalLineToRelative(6.93f) - lineTo(5.1f, 3.12f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.28f, -1.02f) - close() - moveTo(3.07f, 16.5f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 17.86f, 0.0f) - horizontalLineTo(3.07f) - close() - } - } - return _bowlChopsticks!! - } - -private var _bowlChopsticks: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BowlSalad.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BowlSalad.kt deleted file mode 100644 index 36008be8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BowlSalad.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BowlSalad: ImageVector - get() { - if (_bowlSalad != null) { - return _bowlSalad!! - } - _bowlSalad = fluentIcon(name = "Filled.BowlSalad") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -5.14f, 3.53f) - arcTo(12.95f, 12.95f, 0.0f, false, false, 3.56f, 5.0f) - arcToRelative(12.05f, 12.05f, 0.0f, false, false, -0.78f, 0.0f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.71f, 0.7f) - verticalLineToRelative(0.07f) - arcToRelative(7.84f, 7.84f, 0.0f, false, false, 0.0f, 0.79f) - curveToRelative(0.02f, 0.51f, 0.08f, 1.23f, 0.22f, 2.03f) - curveToRelative(0.14f, 0.74f, 0.35f, 1.57f, 0.7f, 2.4f) - horizontalLineToRelative(-0.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(2.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.46f, 3.0f) - horizontalLineToRelative(19.08f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.46f, -3.0f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(21.0f, 11.0f) - verticalLineToRelative(-0.13f) - arcToRelative(4.88f, 4.88f, 0.0f, false, false, -3.67f, -4.72f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 12.0f, 2.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 3.72f, 2.52f) - arcToRelative(4.88f, 4.88f, 0.0f, false, false, -4.03f, 2.82f) - arcToRelative(7.61f, 7.61f, 0.0f, false, false, -3.42f, -2.8f) - arcTo(4.0f, 4.0f, 0.0f, false, true, 12.0f, 3.5f) - close() - moveTo(19.5f, 10.88f) - lineTo(19.5f, 11.0f) - horizontalLineToRelative(-6.73f) - lineToRelative(-0.02f, -0.05f) - verticalLineToRelative(-0.07f) - arcToRelative(3.37f, 3.37f, 0.0f, true, true, 6.75f, 0.0f) - close() - moveTo(9.72f, 8.78f) - curveToRelative(0.64f, 0.65f, 1.1f, 1.42f, 1.44f, 2.22f) - horizontalLineToRelative(-2.1f) - lineTo(7.28f, 9.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(0.72f, 0.72f) - lineTo(4.57f, 11.0f) - curveToRelative(-0.44f, -0.88f, -0.7f, -1.81f, -0.86f, -2.67f) - curveToRelative(-0.13f, -0.72f, -0.18f, -1.36f, -0.2f, -1.82f) - curveToRelative(0.46f, 0.02f, 1.1f, 0.07f, 1.82f, 0.2f) - curveToRelative(1.46f, 0.27f, 3.16f, 0.85f, 4.39f, 2.07f) - close() - moveTo(3.07f, 16.5f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 17.86f, 0.0f) - lineTo(3.07f, 16.5f) - close() - moveTo(12.75f, 10.95f) - lineTo(12.77f, 11.0f) - close() - } - } - return _bowlSalad!! - } - -private var _bowlSalad: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Box.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Box.kt deleted file mode 100644 index 7fec4890..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Box.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Box: ImageVector - get() { - if (_box != null) { - return _box!! - } - _box = fluentIcon(name = "Filled.Box") { - fluentPath { - moveTo(13.4f, 2.51f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.8f, 0.0f) - lineToRelative(-2.2f, 0.9f) - lineTo(18.0f, 7.12f) - lineToRelative(3.37f, -1.3f) - curveToRelative(-0.14f, -0.12f, -0.3f, -0.2f, -0.46f, -0.28f) - lineToRelative(-7.5f, -3.04f) - close() - moveTo(22.0f, 7.2f) - lineToRelative(-9.25f, 3.58f) - verticalLineToRelative(10.92f) - curveToRelative(0.22f, -0.05f, 0.44f, -0.11f, 0.66f, -0.2f) - lineToRelative(7.5f, -3.04f) - curveToRelative(0.66f, -0.27f, 1.09f, -0.91f, 1.09f, -1.62f) - verticalLineTo(7.19f) - close() - moveTo(11.25f, 21.7f) - verticalLineTo(10.77f) - lineTo(2.0f, 7.19f) - verticalLineToRelative(9.64f) - curveToRelative(0.0f, 0.71f, 0.43f, 1.35f, 1.1f, 1.62f) - lineToRelative(7.5f, 3.04f) - curveToRelative(0.2f, 0.09f, 0.43f, 0.15f, 0.65f, 0.2f) - close() - moveTo(2.63f, 5.83f) - lineTo(12.0f, 9.45f) - lineToRelative(3.92f, -1.52f) - lineToRelative(-9.55f, -3.7f) - lineTo(3.1f, 5.54f) - curveToRelative(-0.17f, 0.07f, -0.32f, 0.16f, -0.46f, 0.28f) - close() - } - } - return _box!! - } - -private var _box: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxArrowLeft.kt deleted file mode 100644 index 8dffe96e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxArrowLeft.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BoxArrowLeft: ImageVector - get() { - if (_boxArrowLeft != null) { - return _boxArrowLeft!! - } - _boxArrowLeft = fluentIcon(name = "Filled.BoxArrowLeft") { - fluentPath { - moveTo(13.4f, 2.51f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.8f, 0.0f) - lineToRelative(-2.2f, 0.9f) - lineTo(18.0f, 7.12f) - lineToRelative(3.37f, -1.3f) - curveToRelative(-0.14f, -0.12f, -0.3f, -0.2f, -0.46f, -0.28f) - lineToRelative(-7.5f, -3.04f) - close() - moveTo(22.0f, 7.2f) - lineToRelative(-9.25f, 3.58f) - verticalLineToRelative(2.3f) - arcTo(6.48f, 6.48f, 0.0f, false, true, 22.0f, 12.8f) - lineTo(22.0f, 7.19f) - close() - moveTo(11.25f, 15.72f) - verticalLineToRelative(-4.94f) - lineTo(2.0f, 7.19f) - verticalLineToRelative(9.64f) - curveToRelative(0.0f, 0.71f, 0.43f, 1.35f, 1.1f, 1.62f) - lineToRelative(7.5f, 3.04f) - curveToRelative(0.2f, 0.09f, 0.43f, 0.15f, 0.65f, 0.2f) - verticalLineToRelative(-2.4f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, 0.0f, -3.58f) - close() - moveTo(2.63f, 5.83f) - lineTo(12.0f, 9.45f) - lineToRelative(3.92f, -1.52f) - lineToRelative(-9.55f, -3.7f) - lineTo(3.1f, 5.54f) - curveToRelative(-0.17f, 0.07f, -0.32f, 0.16f, -0.46f, 0.28f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, -11.0f) - close() - moveTo(14.0f, 17.46f) - lineToRelative(0.02f, -0.09f) - lineToRelative(0.02f, -0.06f) - lineToRelative(0.03f, -0.07f) - lineToRelative(0.03f, -0.04f) - lineToRelative(2.55f, -2.55f) - lineToRelative(0.07f, -0.06f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, 0.7f) - lineToRelative(-0.07f, 0.06f) - lineTo(15.71f, 17.0f) - horizontalLineToRelative(5.38f) - curveToRelative(0.2f, 0.05f, 0.36f, 0.2f, 0.4f, 0.41f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(0.08f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.41f, 0.4f) - lineTo(21.0f, 18.0f) - horizontalLineToRelative(-5.3f) - lineToRelative(1.65f, 1.65f) - lineToRelative(0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 0.57f) - lineToRelative(-0.06f, 0.06f) - lineToRelative(-0.07f, 0.06f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.56f, 0.0f) - lineToRelative(-0.07f, -0.06f) - lineToRelative(-2.52f, -2.5f) - lineToRelative(-0.04f, -0.06f) - lineToRelative(-0.04f, -0.08f) - lineToRelative(-0.03f, -0.08f) - lineToRelative(-0.01f, -0.06f) - lineToRelative(-0.01f, -0.06f) - verticalLineToRelative(-0.05f) - close() - } - } - return _boxArrowLeft!! - } - -private var _boxArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxArrowUp.kt deleted file mode 100644 index a8f8238c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxArrowUp.kt +++ /dev/null @@ -1,88 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BoxArrowUp: ImageVector - get() { - if (_boxArrowUp != null) { - return _boxArrowUp!! - } - _boxArrowUp = fluentIcon(name = "Filled.BoxArrowUp") { - fluentPath { - moveTo(13.4f, 2.51f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.8f, 0.0f) - lineToRelative(-2.2f, 0.9f) - lineTo(18.0f, 7.12f) - lineToRelative(3.37f, -1.3f) - curveToRelative(-0.14f, -0.12f, -0.3f, -0.2f, -0.46f, -0.28f) - lineToRelative(-7.5f, -3.04f) - close() - moveTo(22.0f, 7.2f) - lineToRelative(-9.25f, 3.58f) - verticalLineToRelative(2.3f) - arcTo(6.48f, 6.48f, 0.0f, false, true, 22.0f, 12.8f) - lineTo(22.0f, 7.19f) - close() - moveTo(11.25f, 10.78f) - verticalLineToRelative(4.94f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, 0.0f, 3.58f) - verticalLineToRelative(2.4f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.66f, -0.2f) - lineToRelative(-7.5f, -3.04f) - curveTo(2.43f, 18.18f, 2.0f, 17.54f, 2.0f, 16.83f) - lineTo(2.0f, 7.19f) - lineToRelative(9.25f, 3.58f) - close() - moveTo(2.63f, 5.83f) - lineTo(12.0f, 9.45f) - lineToRelative(3.92f, -1.52f) - lineToRelative(-9.55f, -3.7f) - lineTo(3.1f, 5.54f) - curveToRelative(-0.17f, 0.07f, -0.32f, 0.16f, -0.46f, 0.28f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(17.54f, 14.0f) - lineToRelative(0.09f, 0.02f) - lineToRelative(0.06f, 0.02f) - lineToRelative(0.07f, 0.03f) - lineToRelative(0.05f, 0.04f) - lineToRelative(2.54f, 2.54f) - lineToRelative(0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.7f) - lineToRelative(-0.06f, -0.07f) - lineTo(18.0f, 15.71f) - verticalLineToRelative(5.38f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.41f, 0.4f) - lineToRelative(-0.09f, 0.01f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, -0.4f) - lineTo(17.0f, 21.0f) - verticalLineToRelative(-5.3f) - lineToRelative(-1.65f, 1.65f) - lineToRelative(-0.07f, 0.06f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.56f, 0.0f) - lineToRelative(-0.07f, -0.06f) - lineToRelative(-0.06f, -0.06f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -0.57f) - lineToRelative(0.06f, -0.07f) - lineToRelative(2.5f, -2.51f) - lineToRelative(0.07f, -0.05f) - lineToRelative(0.07f, -0.04f) - lineToRelative(0.08f, -0.03f) - lineToRelative(0.06f, -0.01f) - horizontalLineToRelative(0.11f) - close() - } - } - return _boxArrowUp!! - } - -private var _boxArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxCheckmark.kt deleted file mode 100644 index 06b4b7be..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxCheckmark.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BoxCheckmark: ImageVector - get() { - if (_boxCheckmark != null) { - return _boxCheckmark!! - } - _boxCheckmark = fluentIcon(name = "Filled.BoxCheckmark") { - fluentPath { - moveTo(13.4f, 2.51f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.8f, 0.0f) - lineToRelative(-2.2f, 0.9f) - lineTo(18.0f, 7.12f) - lineToRelative(3.37f, -1.3f) - curveToRelative(-0.14f, -0.12f, -0.3f, -0.2f, -0.46f, -0.28f) - lineToRelative(-7.5f, -3.04f) - close() - moveTo(22.0f, 7.2f) - lineToRelative(-9.25f, 3.58f) - verticalLineToRelative(2.3f) - arcTo(6.48f, 6.48f, 0.0f, false, true, 22.0f, 12.8f) - lineTo(22.0f, 7.19f) - close() - moveTo(11.25f, 10.78f) - verticalLineToRelative(4.94f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, 0.0f, 3.58f) - verticalLineToRelative(2.4f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.66f, -0.2f) - lineToRelative(-7.5f, -3.04f) - curveTo(2.43f, 18.18f, 2.0f, 17.54f, 2.0f, 16.83f) - lineTo(2.0f, 7.19f) - lineToRelative(9.25f, 3.58f) - close() - moveTo(2.63f, 5.83f) - lineTo(12.0f, 9.45f) - lineToRelative(3.92f, -1.52f) - lineToRelative(-9.55f, -3.7f) - lineTo(3.1f, 5.54f) - curveToRelative(-0.17f, 0.07f, -0.32f, 0.16f, -0.46f, 0.28f) - close() - moveTo(17.5f, 23.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) - close() - moveTo(20.15f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, 0.7f) - lineToRelative(-4.0f, 4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.0f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, -0.7f) - lineToRelative(1.65f, 1.64f) - lineToRelative(3.65f, -3.64f) - close() - } - } - return _boxCheckmark!! - } - -private var _boxCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxDismiss.kt deleted file mode 100644 index 23650fb2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxDismiss.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BoxDismiss: ImageVector - get() { - if (_boxDismiss != null) { - return _boxDismiss!! - } - _boxDismiss = fluentIcon(name = "Filled.BoxDismiss") { - fluentPath { - moveTo(13.4f, 2.51f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.8f, 0.0f) - lineToRelative(-2.2f, 0.9f) - lineTo(18.0f, 7.12f) - lineToRelative(3.37f, -1.3f) - curveToRelative(-0.14f, -0.12f, -0.3f, -0.2f, -0.46f, -0.28f) - lineToRelative(-7.5f, -3.04f) - close() - moveTo(22.0f, 7.2f) - lineToRelative(-9.25f, 3.58f) - verticalLineToRelative(2.3f) - arcTo(6.48f, 6.48f, 0.0f, false, true, 22.0f, 12.8f) - lineTo(22.0f, 7.19f) - close() - moveTo(11.25f, 10.78f) - verticalLineToRelative(4.94f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, 0.0f, 3.58f) - verticalLineToRelative(2.4f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.66f, -0.2f) - lineToRelative(-7.5f, -3.04f) - curveTo(2.43f, 18.18f, 2.0f, 17.54f, 2.0f, 16.83f) - lineTo(2.0f, 7.19f) - lineToRelative(9.25f, 3.58f) - close() - moveTo(2.63f, 5.83f) - lineTo(12.0f, 9.45f) - lineToRelative(3.92f, -1.52f) - lineToRelative(-9.55f, -3.7f) - lineTo(3.1f, 5.54f) - curveToRelative(-0.17f, 0.07f, -0.32f, 0.16f, -0.46f, 0.28f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-1.64f, -1.65f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.65f, 1.64f) - lineToRelative(-1.65f, -1.64f) - close() - } - } - return _boxDismiss!! - } - -private var _boxDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxEdit.kt deleted file mode 100644 index bfe92c7a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxEdit.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BoxEdit: ImageVector - get() { - if (_boxEdit != null) { - return _boxEdit!! - } - _boxEdit = fluentIcon(name = "Filled.BoxEdit") { - fluentPath { - moveTo(13.4f, 2.51f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.8f, 0.0f) - lineToRelative(-2.2f, 0.9f) - lineTo(18.0f, 7.12f) - lineToRelative(3.37f, -1.3f) - curveToRelative(-0.14f, -0.12f, -0.3f, -0.2f, -0.46f, -0.28f) - lineToRelative(-7.5f, -3.04f) - close() - moveTo(22.0f, 7.2f) - lineToRelative(-9.25f, 3.58f) - verticalLineToRelative(6.84f) - lineToRelative(5.64f, -5.65f) - arcToRelative(3.29f, 3.29f, 0.0f, false, true, 3.61f, -0.7f) - lineTo(22.0f, 7.2f) - close() - moveTo(11.25f, 10.78f) - verticalLineToRelative(9.9f) - lineToRelative(-0.19f, 0.74f) - lineToRelative(-0.04f, 0.22f) - arcToRelative(3.73f, 3.73f, 0.0f, false, true, -0.43f, -0.14f) - lineToRelative(-7.5f, -3.04f) - curveTo(2.43f, 18.18f, 2.0f, 17.54f, 2.0f, 16.83f) - lineTo(2.0f, 7.19f) - lineToRelative(9.25f, 3.58f) - close() - moveTo(2.63f, 5.83f) - lineTo(12.0f, 9.45f) - lineToRelative(3.92f, -1.52f) - lineToRelative(-9.55f, -3.7f) - lineTo(3.1f, 5.54f) - curveToRelative(-0.17f, 0.07f, -0.32f, 0.16f, -0.46f, 0.28f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _boxEdit!! - } - -private var _boxEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxMultiple.kt deleted file mode 100644 index 9bf1baff..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxMultiple.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BoxMultiple: ImageVector - get() { - if (_boxMultiple != null) { - return _boxMultiple!! - } - _boxMultiple = fluentIcon(name = "Filled.BoxMultiple") { - fluentPath { - moveTo(16.3f, 2.33f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.6f, 0.0f) - lineToRelative(-4.3f, 1.6f) - curveToRelative(-0.7f, 0.25f, -1.15f, 0.9f, -1.15f, 1.63f) - verticalLineToRelative(2.8f) - curveToRelative(0.8f, -0.13f, 1.63f, -0.05f, 2.4f, 0.23f) - lineToRelative(4.3f, 1.6f) - curveToRelative(1.08f, 0.4f, 1.8f, 1.42f, 1.8f, 2.57f) - verticalLineToRelative(5.67f) - curveToRelative(0.0f, 0.32f, -0.06f, 0.64f, -0.16f, 0.93f) - lineToRelative(4.02f, -1.49f) - curveToRelative(0.68f, -0.25f, 1.14f, -0.9f, 1.14f, -1.64f) - lineTo(21.75f, 5.56f) - curveToRelative(0.0f, -0.73f, -0.46f, -1.38f, -1.14f, -1.64f) - lineTo(16.3f, 2.33f) - close() - moveTo(11.77f, 7.21f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.49f, -1.42f) - lineToRelative(2.66f, 0.92f) - curveToRelative(0.05f, 0.02f, 0.1f, 0.02f, 0.16f, 0.0f) - lineToRelative(2.65f, -0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.5f, 1.42f) - lineToRelative(-2.66f, 0.92f) - curveToRelative(-0.37f, 0.13f, -0.77f, 0.13f, -1.14f, 0.0f) - lineToRelative(-2.66f, -0.92f) - close() - moveTo(7.7f, 9.53f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.6f, 0.0f) - lineToRelative(4.3f, 1.6f) - curveToRelative(0.7f, 0.24f, 1.15f, 0.9f, 1.15f, 1.63f) - verticalLineToRelative(5.67f) - curveToRelative(0.0f, 0.73f, -0.46f, 1.39f, -1.14f, 1.64f) - lineToRelative(-4.31f, 1.6f) - curveToRelative(-0.84f, 0.3f, -1.76f, 0.3f, -2.6f, 0.0f) - lineToRelative(-4.3f, -1.6f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.15f, -1.64f) - verticalLineToRelative(-5.67f) - curveToRelative(0.0f, -0.73f, 0.46f, -1.39f, 1.14f, -1.64f) - lineToRelative(4.31f, -1.6f) - close() - moveTo(5.3f, 13.7f) - curveToRelative(-0.13f, 0.4f, 0.08f, 0.82f, 0.47f, 0.96f) - lineToRelative(2.48f, 0.85f) - verticalLineToRelative(2.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.7f) - lineToRelative(2.47f, -0.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.49f, -1.42f) - lineTo(9.0f, 14.2f) - lineToRelative(-2.74f, -0.95f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.95f, 0.46f) - close() - } - } - return _boxMultiple!! - } - -private var _boxMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxMultipleArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxMultipleArrowLeft.kt deleted file mode 100644 index db872615..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxMultipleArrowLeft.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BoxMultipleArrowLeft: ImageVector - get() { - if (_boxMultipleArrowLeft != null) { - return _boxMultipleArrowLeft!! - } - _boxMultipleArrowLeft = fluentIcon(name = "Filled.BoxMultipleArrowLeft") { - fluentPath { - moveTo(16.3f, 2.33f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.6f, 0.0f) - lineToRelative(-4.3f, 1.6f) - curveToRelative(-0.7f, 0.25f, -1.15f, 0.9f, -1.15f, 1.63f) - verticalLineToRelative(2.8f) - curveToRelative(0.8f, -0.13f, 1.63f, -0.05f, 2.4f, 0.23f) - lineToRelative(4.3f, 1.6f) - curveToRelative(0.52f, 0.18f, 0.95f, 0.52f, 1.26f, 0.94f) - arcToRelative(6.53f, 6.53f, 0.0f, false, true, 5.54f, 1.45f) - lineTo(21.75f, 5.56f) - curveToRelative(0.0f, -0.73f, -0.46f, -1.38f, -1.14f, -1.64f) - lineTo(16.3f, 2.33f) - close() - moveTo(11.77f, 7.21f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.49f, -1.42f) - lineToRelative(2.66f, 0.92f) - curveToRelative(0.05f, 0.02f, 0.1f, 0.02f, 0.16f, 0.0f) - lineToRelative(2.65f, -0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.5f, 1.42f) - lineToRelative(-2.66f, 0.92f) - curveToRelative(-0.37f, 0.13f, -0.77f, 0.13f, -1.14f, 0.0f) - lineToRelative(-2.66f, -0.92f) - close() - moveTo(14.61f, 11.12f) - curveToRelative(0.2f, 0.08f, 0.38f, 0.18f, 0.53f, 0.32f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -2.68f, 1.95f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.73f, -0.14f) - lineTo(9.0f, 14.2f) - lineToRelative(-2.74f, -0.95f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.5f, 1.42f) - lineToRelative(2.49f, 0.85f) - verticalLineToRelative(2.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.7f) - lineToRelative(1.79f, -0.62f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, 0.5f, 6.12f) - lineToRelative(-1.74f, 0.65f) - curveToRelative(-0.84f, 0.3f, -1.76f, 0.3f, -2.6f, 0.0f) - lineToRelative(-4.3f, -1.6f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.15f, -1.64f) - verticalLineToRelative(-5.67f) - curveToRelative(0.0f, -0.73f, 0.46f, -1.39f, 1.14f, -1.64f) - lineToRelative(4.31f, -1.6f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.6f, 0.0f) - lineToRelative(4.3f, 1.6f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.5f, 18.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) - horizontalLineToRelative(-4.8f) - lineToRelative(1.65f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineTo(15.71f, 18.0f) - horizontalLineToRelative(4.79f) - close() - } - } - return _boxMultipleArrowLeft!! - } - -private var _boxMultipleArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxMultipleArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxMultipleArrowRight.kt deleted file mode 100644 index 626ce118..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxMultipleArrowRight.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BoxMultipleArrowRight: ImageVector - get() { - if (_boxMultipleArrowRight != null) { - return _boxMultipleArrowRight!! - } - _boxMultipleArrowRight = fluentIcon(name = "Filled.BoxMultipleArrowRight") { - fluentPath { - moveTo(16.3f, 2.33f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.6f, 0.0f) - lineToRelative(-4.3f, 1.6f) - curveToRelative(-0.7f, 0.25f, -1.15f, 0.9f, -1.15f, 1.63f) - verticalLineToRelative(2.8f) - curveToRelative(0.8f, -0.13f, 1.63f, -0.05f, 2.4f, 0.23f) - lineToRelative(4.3f, 1.6f) - curveToRelative(0.52f, 0.18f, 0.95f, 0.52f, 1.26f, 0.94f) - arcToRelative(6.53f, 6.53f, 0.0f, false, true, 5.54f, 1.45f) - lineTo(21.75f, 5.56f) - curveToRelative(0.0f, -0.73f, -0.46f, -1.38f, -1.14f, -1.64f) - lineTo(16.3f, 2.33f) - close() - moveTo(11.77f, 7.21f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.49f, -1.42f) - lineToRelative(2.66f, 0.92f) - curveToRelative(0.05f, 0.02f, 0.1f, 0.02f, 0.16f, 0.0f) - lineToRelative(2.65f, -0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.5f, 1.42f) - lineToRelative(-2.66f, 0.92f) - curveToRelative(-0.37f, 0.13f, -0.77f, 0.13f, -1.14f, 0.0f) - lineToRelative(-2.66f, -0.92f) - close() - moveTo(14.61f, 11.12f) - curveToRelative(0.2f, 0.08f, 0.38f, 0.18f, 0.53f, 0.32f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -2.68f, 1.95f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.73f, -0.14f) - lineTo(9.0f, 14.2f) - lineToRelative(-2.74f, -0.95f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.5f, 1.42f) - lineToRelative(2.49f, 0.85f) - verticalLineToRelative(2.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.7f) - lineToRelative(1.79f, -0.62f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, 0.5f, 6.12f) - lineToRelative(-1.74f, 0.65f) - curveToRelative(-0.84f, 0.3f, -1.76f, 0.3f, -2.6f, 0.0f) - lineToRelative(-4.3f, -1.6f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.15f, -1.64f) - verticalLineToRelative(-5.67f) - curveToRelative(0.0f, -0.73f, 0.46f, -1.39f, 1.14f, -1.64f) - lineToRelative(4.31f, -1.6f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.6f, 0.0f) - lineToRelative(4.3f, 1.6f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(19.29f, 17.0f) - lineTo(14.5f, 17.0f) - close() - } - } - return _boxMultipleArrowRight!! - } - -private var _boxMultipleArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxMultipleCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxMultipleCheckmark.kt deleted file mode 100644 index a2d6cf7b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxMultipleCheckmark.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BoxMultipleCheckmark: ImageVector - get() { - if (_boxMultipleCheckmark != null) { - return _boxMultipleCheckmark!! - } - _boxMultipleCheckmark = fluentIcon(name = "Filled.BoxMultipleCheckmark") { - fluentPath { - moveTo(16.3f, 2.33f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.6f, 0.0f) - lineToRelative(-4.3f, 1.6f) - curveToRelative(-0.7f, 0.25f, -1.15f, 0.9f, -1.15f, 1.63f) - verticalLineToRelative(2.8f) - curveToRelative(0.8f, -0.13f, 1.63f, -0.05f, 2.4f, 0.23f) - lineToRelative(4.3f, 1.6f) - curveToRelative(0.52f, 0.18f, 0.95f, 0.52f, 1.26f, 0.94f) - arcToRelative(6.53f, 6.53f, 0.0f, false, true, 5.54f, 1.45f) - lineTo(21.75f, 5.56f) - curveToRelative(0.0f, -0.73f, -0.46f, -1.38f, -1.14f, -1.64f) - lineTo(16.3f, 2.33f) - close() - moveTo(11.77f, 7.21f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.49f, -1.42f) - lineToRelative(2.66f, 0.92f) - curveToRelative(0.05f, 0.02f, 0.1f, 0.02f, 0.16f, 0.0f) - lineToRelative(2.65f, -0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.5f, 1.42f) - lineToRelative(-2.66f, 0.92f) - curveToRelative(-0.37f, 0.13f, -0.77f, 0.13f, -1.14f, 0.0f) - lineToRelative(-2.66f, -0.92f) - close() - moveTo(14.61f, 11.12f) - curveToRelative(0.2f, 0.08f, 0.38f, 0.18f, 0.53f, 0.32f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -2.68f, 1.95f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.73f, -0.14f) - lineTo(9.0f, 14.2f) - lineToRelative(-2.74f, -0.95f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.5f, 1.42f) - lineToRelative(2.49f, 0.85f) - verticalLineToRelative(2.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.7f) - lineToRelative(1.79f, -0.62f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, 0.5f, 6.12f) - lineToRelative(-1.74f, 0.65f) - curveToRelative(-0.84f, 0.3f, -1.76f, 0.3f, -2.6f, 0.0f) - lineToRelative(-4.3f, -1.6f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.15f, -1.64f) - verticalLineToRelative(-5.67f) - curveToRelative(0.0f, -0.73f, 0.46f, -1.39f, 1.14f, -1.64f) - lineToRelative(4.31f, -1.6f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.6f, 0.0f) - lineToRelative(4.3f, 1.6f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-3.65f, 3.64f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _boxMultipleCheckmark!! - } - -private var _boxMultipleCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxMultipleSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxMultipleSearch.kt deleted file mode 100644 index bb03bcba..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxMultipleSearch.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BoxMultipleSearch: ImageVector - get() { - if (_boxMultipleSearch != null) { - return _boxMultipleSearch!! - } - _boxMultipleSearch = fluentIcon(name = "Filled.BoxMultipleSearch") { - fluentPath { - moveTo(13.7f, 2.33f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.6f, 0.0f) - lineToRelative(4.3f, 1.6f) - curveToRelative(0.7f, 0.25f, 1.15f, 0.9f, 1.15f, 1.63f) - verticalLineToRelative(9.3f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 16.12f, 11.0f) - curveToRelative(-0.3f, -0.36f, -0.7f, -0.65f, -1.17f, -0.83f) - lineToRelative(-4.3f, -1.59f) - arcToRelative(4.75f, 4.75f, 0.0f, false, false, -2.4f, -0.23f) - verticalLineToRelative(-2.8f) - curveToRelative(0.0f, -0.73f, 0.46f, -1.38f, 1.14f, -1.64f) - lineToRelative(4.31f, -1.59f) - close() - moveTo(11.3f, 6.25f) - curveToRelative(-0.13f, 0.4f, 0.08f, 0.82f, 0.47f, 0.96f) - lineToRelative(2.66f, 0.92f) - curveToRelative(0.37f, 0.13f, 0.77f, 0.13f, 1.14f, 0.0f) - lineToRelative(2.65f, -0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.49f, -1.42f) - lineToRelative(-2.65f, 0.92f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.16f, 0.0f) - lineToRelative(-2.66f, -0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.95f, 0.46f) - close() - moveTo(14.87f, 11.25f) - arcToRelative(1.74f, 1.74f, 0.0f, false, false, -0.26f, -0.13f) - lineToRelative(-4.31f, -1.6f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.6f, 0.0f) - lineToRelative(-4.3f, 1.6f) - curveToRelative(-0.7f, 0.25f, -1.15f, 0.91f, -1.15f, 1.64f) - verticalLineToRelative(5.67f) - curveToRelative(0.0f, 0.73f, 0.46f, 1.39f, 1.14f, 1.64f) - lineToRelative(4.31f, 1.6f) - curveToRelative(0.84f, 0.3f, 1.76f, 0.3f, 2.6f, 0.0f) - lineToRelative(2.64f, -0.98f) - arcToRelative(5.49f, 5.49f, 0.0f, false, true, -1.74f, -5.67f) - lineToRelative(-1.45f, 0.5f) - verticalLineToRelative(2.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.7f) - lineToRelative(-2.48f, -0.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.49f, -1.42f) - lineTo(9.0f, 14.2f) - lineToRelative(2.73f, -0.95f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.36f, -0.03f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 2.78f, -1.98f) - close() - moveTo(20.17f, 19.11f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(2.61f, 2.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.05f) - lineToRelative(-2.61f, -2.61f) - close() - moveTo(19.5f, 16.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) - close() - } - } - return _boxMultipleSearch!! - } - -private var _boxMultipleSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxSearch.kt deleted file mode 100644 index 47532b11..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxSearch.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BoxSearch: ImageVector - get() { - if (_boxSearch != null) { - return _boxSearch!! - } - _boxSearch = fluentIcon(name = "Filled.BoxSearch") { - fluentPath { - moveTo(13.4f, 2.51f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.8f, 0.0f) - lineToRelative(-2.2f, 0.89f) - lineTo(18.0f, 7.13f) - lineToRelative(3.37f, -1.3f) - curveToRelative(-0.14f, -0.12f, -0.3f, -0.2f, -0.46f, -0.28f) - lineToRelative(-7.5f, -3.04f) - close() - moveTo(22.0f, 7.2f) - lineToRelative(-9.25f, 3.57f) - lineTo(12.75f, 21.7f) - curveToRelative(0.22f, -0.05f, 0.44f, -0.11f, 0.66f, -0.2f) - lineToRelative(7.5f, -3.04f) - curveToRelative(0.66f, -0.27f, 1.09f, -0.91f, 1.09f, -1.62f) - lineTo(22.0f, 7.19f) - close() - moveTo(11.25f, 10.77f) - verticalLineToRelative(10.01f) - lineToRelative(-1.82f, -1.82f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 2.0f, 11.6f) - lineTo(2.0f, 7.19f) - lineToRelative(9.25f, 3.57f) - close() - moveTo(2.63f, 5.83f) - lineTo(12.0f, 9.45f) - lineToRelative(3.92f, -1.52f) - lineToRelative(-9.55f, -3.7f) - lineTo(3.1f, 5.54f) - curveToRelative(-0.17f, 0.07f, -0.32f, 0.16f, -0.46f, 0.28f) - close() - moveTo(4.5f, 21.0f) - curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) - lineToRelative(2.62f, 2.61f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.61f, -2.61f) - arcTo(4.5f, 4.5f, 0.0f, true, false, 4.5f, 21.0f) - close() - moveTo(4.5f, 19.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) - close() - } - } - return _boxSearch!! - } - -private var _boxSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxToolbox.kt deleted file mode 100644 index 5a64b9e7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BoxToolbox.kt +++ /dev/null @@ -1,103 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BoxToolbox: ImageVector - get() { - if (_boxToolbox != null) { - return _boxToolbox!! - } - _boxToolbox = fluentIcon(name = "Filled.BoxToolbox") { - fluentPath { - moveTo(13.4f, 2.51f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.8f, 0.0f) - lineToRelative(-2.2f, 0.9f) - lineTo(18.0f, 7.12f) - lineToRelative(3.37f, -1.3f) - curveToRelative(-0.14f, -0.12f, -0.3f, -0.2f, -0.46f, -0.28f) - lineToRelative(-7.5f, -3.04f) - close() - moveTo(22.0f, 7.2f) - lineToRelative(-9.25f, 3.58f) - verticalLineToRelative(3.35f) - lineToRelative(0.25f, -0.07f) - lineTo(13.0f, 14.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, -2.75f) - horizontalLineToRelative(3.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 14.0f) - verticalLineToRelative(-6.8f) - close() - moveTo(11.25f, 10.78f) - verticalLineToRelative(4.64f) - curveToRelative(-0.16f, 0.33f, -0.25f, 0.7f, -0.25f, 1.1f) - verticalLineToRelative(5.12f) - arcToRelative(3.73f, 3.73f, 0.0f, false, true, -0.4f, -0.14f) - lineToRelative(-7.5f, -3.04f) - curveToRelative(-0.67f, -0.27f, -1.1f, -0.91f, -1.1f, -1.62f) - lineTo(2.0f, 7.19f) - lineToRelative(9.25f, 3.58f) - close() - moveTo(2.63f, 5.83f) - lineTo(12.0f, 9.45f) - lineToRelative(3.92f, -1.52f) - lineToRelative(-9.55f, -3.7f) - lineTo(3.1f, 5.54f) - curveToRelative(-0.17f, 0.07f, -0.32f, 0.16f, -0.46f, 0.28f) - close() - moveTo(14.0f, 15.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - lineTo(12.0f, 18.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(16.0f, 18.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(20.5f, 18.0f) - lineTo(23.0f, 18.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(21.0f, 15.0f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(1.0f) - close() - moveTo(15.5f, 14.0f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(12.0f, 21.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - lineTo(23.0f, 19.5f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - close() - } - } - return _boxToolbox!! - } - -private var _boxToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Braces.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Braces.kt deleted file mode 100644 index 40945fb8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Braces.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Braces: ImageVector - get() { - if (_braces != null) { - return _braces!! - } - _braces = fluentIcon(name = "Filled.Braces") { - fluentPath { - moveTo(4.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(3.94f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 5.18f, 12.0f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 6.0f, 14.06f) - lineTo(6.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - verticalLineToRelative(-3.94f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.76f, -0.97f) - lineToRelative(-0.48f, -0.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.94f) - lineToRelative(0.48f, -0.12f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 4.0f, 9.94f) - lineTo(4.0f, 6.0f) - close() - moveTo(20.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(3.94f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.82f, 2.06f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -0.82f, 2.06f) - lineTo(18.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) - verticalLineToRelative(-3.94f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.76f, -0.97f) - lineToRelative(0.48f, -0.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.94f) - lineToRelative(-0.48f, -0.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.76f, -0.97f) - lineTo(20.0f, 6.0f) - close() - } - } - return _braces!! - } - -private var _braces: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BracesVariable.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BracesVariable.kt deleted file mode 100644 index 5c0bfc90..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BracesVariable.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BracesVariable: ImageVector - get() { - if (_bracesVariable != null) { - return _bracesVariable!! - } - _bracesVariable = fluentIcon(name = "Filled.BracesVariable") { - fluentPath { - moveTo(3.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(3.94f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 4.18f, 12.0f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 5.0f, 14.06f) - lineTo(5.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - verticalLineToRelative(-3.94f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.76f, -0.97f) - lineToRelative(-0.48f, -0.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.94f) - lineToRelative(0.48f, -0.12f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 9.94f) - lineTo(3.0f, 6.0f) - close() - moveTo(21.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(3.94f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.82f, 2.06f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -0.82f, 2.06f) - lineTo(19.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) - verticalLineToRelative(-3.94f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.76f, -0.97f) - lineToRelative(0.48f, -0.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.94f) - lineToRelative(-0.48f, -0.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.76f, -0.97f) - lineTo(21.0f, 6.0f) - close() - moveTo(9.29f, 6.89f) - arcTo(1.0f, 1.0f, 0.0f, true, false, 7.7f, 8.1f) - lineTo(10.73f, 12.0f) - lineToRelative(-3.02f, 3.89f) - arcTo(1.0f, 1.0f, 0.0f, true, false, 9.3f, 17.1f) - lineTo(12.0f, 13.63f) - lineToRelative(2.71f, 3.48f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.58f, -1.22f) - lineTo(13.27f, 12.0f) - lineToRelative(3.02f, -3.89f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 14.7f, 6.9f) - lineTo(12.0f, 10.37f) - lineTo(9.29f, 6.9f) - close() - } - } - return _bracesVariable!! - } - -private var _bracesVariable: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BrainCircuit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BrainCircuit.kt deleted file mode 100644 index c898d817..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BrainCircuit.kt +++ /dev/null @@ -1,88 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BrainCircuit: ImageVector - get() { - if (_brainCircuit != null) { - return _brainCircuit!! - } - _brainCircuit = fluentIcon(name = "Filled.BrainCircuit") { - fluentPath { - moveTo(10.14f, 2.0f) - curveToRelative(0.7f, 0.0f, 1.11f, 0.71f, 1.11f, 1.42f) - verticalLineToRelative(4.33f) - horizontalLineToRelative(-0.9f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(0.9f) - verticalLineToRelative(10.9f) - curveToRelative(0.0f, 0.6f, -0.25f, 1.19f, -0.78f, 1.46f) - arcTo(3.4f, 3.4f, 0.0f, false, true, 8.9f, 22.0f) - arcToRelative(4.24f, 4.24f, 0.0f, false, true, -3.36f, -1.67f) - arcToRelative(5.17f, 5.17f, 0.0f, false, true, -1.02f, -2.14f) - curveToRelative(-0.4f, -0.12f, -0.86f, -0.34f, -1.27f, -0.69f) - arcTo(3.83f, 3.83f, 0.0f, false, true, 2.0f, 14.47f) - curveToRelative(0.0f, -0.76f, 0.05f, -1.42f, 0.19f, -1.97f) - lineTo(6.4f, 12.5f) - curveToRelative(0.68f, 0.0f, 1.24f, 0.5f, 1.34f, 1.15f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 1.5f, 0.0f) - arcTo(2.85f, 2.85f, 0.0f, false, false, 6.4f, 11.0f) - lineTo(3.04f, 11.0f) - arcToRelative(2.04f, 2.04f, 0.0f, false, true, 0.5f, -0.3f) - arcToRelative(4.9f, 4.9f, 0.0f, false, true, -0.18f, -1.13f) - curveToRelative(-0.04f, -0.73f, 0.07f, -1.5f, 0.3f, -2.18f) - arcToRelative(4.2f, 4.2f, 0.0f, false, true, 1.03f, -1.77f) - curveToRelative(0.3f, -0.29f, 0.68f, -0.5f, 1.1f, -0.57f) - curveToRelative(0.2f, -0.84f, 0.7f, -1.53f, 1.35f, -2.04f) - curveToRelative(0.83f, -0.65f, 1.92f, -1.0f, 3.0f, -1.0f) - close() - moveTo(12.75f, 17.0f) - horizontalLineToRelative(1.65f) - arcToRelative(2.85f, 2.85f, 0.0f, false, false, 2.85f, -2.85f) - verticalLineToRelative(-1.8f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, -1.5f, 0.0f) - verticalLineToRelative(1.8f) - curveToRelative(0.0f, 0.75f, -0.6f, 1.35f, -1.35f, 1.35f) - horizontalLineToRelative(-1.65f) - lineTo(12.75f, 3.42f) - curveToRelative(0.0f, -0.71f, 0.4f, -1.41f, 1.11f, -1.41f) - curveToRelative(1.08f, 0.0f, 2.17f, 0.35f, 3.0f, 1.0f) - curveToRelative(0.65f, 0.5f, 1.16f, 1.2f, 1.35f, 2.04f) - curveToRelative(0.42f, 0.07f, 0.8f, 0.28f, 1.1f, 0.57f) - curveToRelative(0.48f, 0.45f, 0.82f, 1.1f, 1.04f, 1.77f) - curveToRelative(0.22f, 0.68f, 0.33f, 1.45f, 0.3f, 2.18f) - arcToRelative(4.9f, 4.9f, 0.0f, false, true, -0.18f, 1.13f) - lineToRelative(0.06f, 0.03f) - curveToRelative(0.37f, 0.17f, 0.67f, 0.45f, 0.9f, 0.8f) - curveToRelative(0.42f, 0.7f, 0.57f, 1.68f, 0.57f, 2.94f) - curveToRelative(0.0f, 1.44f, -0.55f, 2.42f, -1.26f, 3.03f) - curveToRelative(-0.41f, 0.35f, -0.87f, 0.57f, -1.27f, 0.7f) - curveToRelative(-0.14f, 0.68f, -0.49f, 1.46f, -1.02f, 2.13f) - arcTo(4.24f, 4.24f, 0.0f, false, true, 15.09f, 22.0f) - arcToRelative(3.4f, 3.4f, 0.0f, false, true, -1.56f, -0.4f) - curveToRelative(-0.53f, -0.26f, -0.78f, -0.86f, -0.78f, -1.45f) - lineTo(12.75f, 17.0f) - close() - moveTo(8.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - close() - moveTo(8.5f, 15.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - close() - moveTo(16.0f, 10.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - close() - } - } - return _brainCircuit!! - } - -private var _brainCircuit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Branch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Branch.kt deleted file mode 100644 index e35cd24e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Branch.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Branch: ImageVector - get() { - if (_branch != null) { - return _branch!! - } - _branch = fluentIcon(name = "Filled.Branch") { - fluentPath { - moveTo(4.0f, 5.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 4.49f, 3.36f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 5.26f, 3.89f) - horizontalLineToRelative(0.33f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.33f) - arcToRelative(6.99f, 6.99f, 0.0f, false, true, -5.5f, -2.67f) - verticalLineToRelative(3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, -1.5f, 0.0f) - verticalLineTo(8.92f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 4.0f, 5.5f) - close() - } - } - return _branch!! - } - -private var _branch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BranchCompare.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BranchCompare.kt deleted file mode 100644 index 53e13bac..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BranchCompare.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BranchCompare: ImageVector - get() { - if (_branchCompare != null) { - return _branchCompare!! - } - _branchCompare = fluentIcon(name = "Filled.BranchCompare") { - fluentPath { - moveTo(9.0f, 5.5f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.0f, 3.46f) - lineTo(6.0f, 15.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) - horizontalLineToRelative(2.69f) - lineToRelative(-0.97f, -0.97f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(2.25f, 2.25f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-2.25f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(0.97f, -0.97f) - lineTo(9.0f, 19.5f) - arcTo(4.5f, 4.5f, 0.0f, false, true, 4.5f, 15.0f) - lineTo(4.5f, 8.86f) - arcTo(3.5f, 3.5f, 0.0f, true, true, 9.0f, 5.5f) - close() - moveTo(22.0f, 18.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, -4.0f, -3.46f) - lineTo(18.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - horizontalLineToRelative(-1.94f) - lineToRelative(0.97f, 0.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineToRelative(-2.25f, -2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(2.25f, -2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-0.97f, 0.97f) - lineTo(15.0f, 4.5f) - arcTo(4.5f, 4.5f, 0.0f, false, true, 19.5f, 9.0f) - verticalLineToRelative(6.14f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 22.0f, 18.5f) - close() - } - } - return _branchCompare!! - } - -private var _branchCompare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BranchFork.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BranchFork.kt deleted file mode 100644 index e29aff4c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BranchFork.kt +++ /dev/null @@ -1,37 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BranchFork: ImageVector - get() { - if (_branchFork != null) { - return _branchFork!! - } - _branchFork = fluentIcon(name = "Filled.BranchFork") { - fluentPath { - moveTo(11.0f, 5.5f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.0f, 3.46f) - verticalLineToRelative(2.54f) - horizontalLineToRelative(6.25f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-0.4f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 1.5f, 0.11f) - verticalLineToRelative(0.29f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 14.25f, 13.0f) - horizontalLineTo(8.0f) - verticalLineToRelative(2.04f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, -1.5f, 0.1f) - verticalLineTo(8.86f) - arcTo(3.5f, 3.5f, 0.0f, true, true, 11.0f, 5.5f) - close() - } - } - return _branchFork!! - } - -private var _branchFork: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BranchForkHint.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BranchForkHint.kt deleted file mode 100644 index 7744155d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BranchForkHint.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BranchForkHint: ImageVector - get() { - if (_branchForkHint != null) { - return _branchForkHint!! - } - _branchForkHint = fluentIcon(name = "Filled.BranchForkHint") { - fluentPath { - moveTo(6.5f, 2.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -1.0f, 6.86f) - verticalLineToRelative(5.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(7.0f, 13.0f) - horizontalLineToRelative(6.25f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 17.0f, 9.25f) - verticalLineToRelative(-0.29f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, -1.5f, -0.1f) - verticalLineToRelative(0.39f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(7.0f, 11.5f) - lineTo(7.0f, 8.96f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 6.5f, 2.0f) - close() - moveTo(5.34f, 16.88f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.87f, -1.22f) - arcToRelative(3.52f, 3.52f, 0.0f, false, false, -1.23f, 1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.4f, 0.53f) - arcToRelative(1.99f, 1.99f, 0.0f, false, true, 0.7f, -0.9f) - close() - moveTo(8.54f, 15.66f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.88f, 1.22f) - arcToRelative(2.01f, 2.01f, 0.0f, false, true, 0.7f, 0.91f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.4f, -0.54f) - arcToRelative(3.49f, 3.49f, 0.0f, false, false, -1.23f, -1.59f) - close() - moveTo(4.78f, 19.52f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.3f, 0.76f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 1.48f, 1.37f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.66f, -1.35f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.84f, -0.78f) - close() - moveTo(9.52f, 20.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.3f, -0.76f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.84f, 0.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.66f, 1.35f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 1.48f, -1.37f) - close() - } - } - return _branchForkHint!! - } - -private var _branchForkHint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BranchForkLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BranchForkLink.kt deleted file mode 100644 index 327b2906..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BranchForkLink.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BranchForkLink: ImageVector - get() { - if (_branchForkLink != null) { - return _branchForkLink!! - } - _branchForkLink = fluentIcon(name = "Filled.BranchForkLink") { - fluentPath { - moveTo(6.0f, 8.96f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, -1.5f, -0.1f) - verticalLineToRelative(6.28f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 1.5f, -0.1f) - lineTo(6.0f, 13.0f) - horizontalLineToRelative(6.25f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 16.0f, 9.25f) - verticalLineToRelative(-0.29f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, -1.5f, -0.1f) - verticalLineToRelative(0.39f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(6.0f, 11.5f) - lineTo(6.0f, 8.96f) - close() - moveTo(23.0f, 18.75f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 19.25f, 15.0f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - verticalLineToRelative(-0.01f) - horizontalLineToRelative(0.2f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 18.74f) - close() - moveTo(16.5f, 15.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-0.2f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(20.0f, 18.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - } - } - return _branchForkLink!! - } - -private var _branchForkLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BreakoutRoom.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BreakoutRoom.kt deleted file mode 100644 index 3d2d82d3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BreakoutRoom.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BreakoutRoom: ImageVector - get() { - if (_breakoutRoom != null) { - return _breakoutRoom!! - } - _breakoutRoom = fluentIcon(name = "Filled.BreakoutRoom") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-5.04f) - curveToRelative(0.8f, -0.85f, 1.29f, -2.0f, 1.29f, -3.25f) - verticalLineToRelative(-3.0f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 9.25f, 10.0f) - horizontalLineToRelative(-3.0f) - curveToRelative(-1.26f, 0.0f, -2.4f, 0.49f, -3.25f, 1.29f) - lineTo(3.0f, 6.25f) - close() - moveTo(3.0f, 14.75f) - verticalLineToRelative(3.0f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(3.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 14.75f) - close() - } - } - return _breakoutRoom!! - } - -private var _breakoutRoom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Briefcase.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Briefcase.kt deleted file mode 100644 index b805446b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Briefcase.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Briefcase: ImageVector - get() { - if (_briefcase != null) { - return _briefcase!! - } - _briefcase = fluentIcon(name = "Filled.Briefcase") { - fluentPath { - moveTo(15.25f, 3.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(16.0f, 7.0f) - horizontalLineToRelative(1.75f) - curveTo(19.55f, 7.0f, 21.0f, 8.46f, 21.0f, 10.25f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 16.75f) - verticalLineToRelative(-6.5f) - curveTo(3.0f, 8.45f, 4.46f, 7.0f, 6.25f, 7.0f) - lineTo(8.0f, 7.0f) - lineTo(8.0f, 3.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(6.5f) - close() - moveTo(14.5f, 4.5f) - horizontalLineToRelative(-5.0f) - lineTo(9.5f, 7.0f) - horizontalLineToRelative(5.0f) - lineTo(14.5f, 4.5f) - close() - } - } - return _briefcase!! - } - -private var _briefcase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BriefcaseMedical.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BriefcaseMedical.kt deleted file mode 100644 index 61f55ab4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BriefcaseMedical.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BriefcaseMedical: ImageVector - get() { - if (_briefcaseMedical != null) { - return _briefcaseMedical!! - } - _briefcaseMedical = fluentIcon(name = "Filled.BriefcaseMedical") { - fluentPath { - moveTo(16.0f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-6.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - lineTo(8.0f, 7.0f) - lineTo(6.25f, 7.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 10.25f) - verticalLineToRelative(6.5f) - curveTo(3.0f, 18.55f, 4.46f, 20.0f, 6.25f, 20.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-6.5f) - curveTo(21.0f, 8.45f, 19.54f, 7.0f, 17.75f, 7.0f) - lineTo(16.0f, 7.0f) - lineTo(16.0f, 3.75f) - close() - moveTo(9.5f, 4.5f) - horizontalLineToRelative(5.0f) - lineTo(14.5f, 7.0f) - horizontalLineToRelative(-5.0f) - lineTo(9.5f, 4.5f) - close() - moveTo(11.5f, 15.75f) - lineTo(11.5f, 14.0f) - lineTo(9.75f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.75f) - verticalLineToRelative(-1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(1.75f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(13.0f, 14.0f) - verticalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - } - } - return _briefcaseMedical!! - } - -private var _briefcaseMedical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BriefcaseOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BriefcaseOff.kt deleted file mode 100644 index 8fe24859..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BriefcaseOff.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BriefcaseOff: ImageVector - get() { - if (_briefcaseOff != null) { - return _briefcaseOff!! - } - _briefcaseOff = fluentIcon(name = "Filled.BriefcaseOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(3.73f, 3.73f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 10.25f) - verticalLineToRelative(6.5f) - curveTo(3.0f, 18.55f, 4.46f, 20.0f, 6.25f, 20.0f) - horizontalLineToRelative(11.5f) - curveToRelative(0.36f, 0.0f, 0.7f, -0.06f, 1.02f, -0.16f) - lineToRelative(1.95f, 1.94f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(21.0f, 16.75f) - curveToRelative(0.0f, 0.32f, -0.05f, 0.64f, -0.14f, 0.93f) - lineTo(10.18f, 7.0f) - horizontalLineToRelative(4.32f) - verticalLineTo(4.5f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(1.82f) - lineTo(8.0f, 4.82f) - verticalLineTo(3.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(6.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineTo(7.0f) - horizontalLineToRelative(1.75f) - curveTo(19.55f, 7.0f, 21.0f, 8.46f, 21.0f, 10.25f) - verticalLineToRelative(6.5f) - close() - } - } - return _briefcaseOff!! - } - -private var _briefcaseOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BrightnessHigh.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BrightnessHigh.kt deleted file mode 100644 index 4e2b5054..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BrightnessHigh.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BrightnessHigh: ImageVector - get() { - if (_brightnessHigh != null) { - return _brightnessHigh!! - } - _brightnessHigh = fluentIcon(name = "Filled.BrightnessHigh") { - fluentPath { - moveTo(12.75f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.5f) - close() - moveTo(17.0f, 12.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, -10.0f, 0.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 10.0f, 0.0f) - close() - moveTo(15.5f, 12.0f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 12.0f, 8.5f) - verticalLineToRelative(7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 3.5f, -3.5f) - close() - moveTo(22.0f, 12.0f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(12.75f, 19.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.5f) - close() - moveTo(5.0f, 12.0f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(5.28f, 4.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.5f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineToRelative(-1.5f, -1.5f) - close() - moveTo(4.22f, 19.78f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(1.5f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineToRelative(-1.5f, 1.5f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - close() - moveTo(18.72f, 4.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(1.5f, -1.5f) - close() - moveTo(19.78f, 19.78f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-1.5f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineToRelative(1.5f, 1.5f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - close() - } - } - return _brightnessHigh!! - } - -private var _brightnessHigh: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BrightnessLow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BrightnessLow.kt deleted file mode 100644 index f7683903..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BrightnessLow.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BrightnessLow: ImageVector - get() { - if (_brightnessLow != null) { - return _brightnessLow!! - } - _brightnessLow = fluentIcon(name = "Filled.BrightnessLow") { - fluentPath { - moveTo(12.75f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(17.0f, 12.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, -10.0f, 0.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 10.0f, 0.0f) - close() - moveTo(15.5f, 12.0f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 12.0f, 8.5f) - verticalLineToRelative(7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 3.5f, -3.5f) - close() - moveTo(20.5f, 12.0f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(12.75f, 18.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(6.0f, 12.0f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(7.28f, 6.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(0.5f, 0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineToRelative(-0.5f, -0.5f) - close() - moveTo(6.22f, 17.78f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(0.5f, -0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-0.5f, 0.5f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - close() - moveTo(16.72f, 6.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-0.5f, 0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(0.5f, -0.5f) - close() - moveTo(17.78f, 17.78f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-0.5f, -0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(0.5f, 0.5f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - close() - } - } - return _brightnessLow!! - } - -private var _brightnessLow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BroadActivityFeed.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BroadActivityFeed.kt deleted file mode 100644 index ba67d191..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BroadActivityFeed.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BroadActivityFeed: ImageVector - get() { - if (_broadActivityFeed != null) { - return _broadActivityFeed!! - } - _broadActivityFeed = fluentIcon(name = "Filled.BroadActivityFeed") { - fluentPath { - moveTo(9.25f, 14.0f) - curveToRelative(0.96f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-5.5f) - curveTo(2.78f, 21.0f, 2.0f, 20.22f, 2.0f, 19.25f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(5.5f) - close() - moveTo(20.25f, 14.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-5.5f) - curveToRelative(-0.96f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.97f, 0.79f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(5.5f) - close() - moveTo(20.25f, 3.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(5.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(3.75f, 12.0f) - curveTo(2.78f, 12.0f, 2.0f, 11.22f, 2.0f, 10.25f) - verticalLineToRelative(-5.5f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.68f, 1.6f, -1.75f) - horizontalLineToRelative(16.65f) - close() - } - } - return _broadActivityFeed!! - } - -private var _broadActivityFeed: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Broom.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Broom.kt deleted file mode 100644 index 3867050e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Broom.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Broom: ImageVector - get() { - if (_broom != null) { - return _broom!! - } - _broom = fluentIcon(name = "Filled.Broom") { - fluentPath { - moveTo(22.45f, 1.92f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineTo(16.14f, 9.3f) - arcToRelative(6.81f, 6.81f, 0.0f, false, false, -1.07f, -1.06f) - lineToRelative(6.32f, -6.32f) - curveToRelative(0.3f, -0.29f, 0.77f, -0.29f, 1.06f, 0.0f) - close() - moveTo(15.03f, 9.35f) - arcToRelative(5.75f, 5.75f, 0.0f, false, false, -8.13f, 0.0f) - lineToRelative(-0.25f, 0.24f) - lineToRelative(8.13f, 8.13f) - lineToRelative(0.25f, -0.24f) - arcToRelative(5.75f, 5.75f, 0.0f, false, false, 0.0f, -8.13f) - close() - moveTo(1.88f, 12.97f) - lineToRelative(3.62f, -2.41f) - lineToRelative(8.32f, 8.32f) - lineToRelative(-2.41f, 3.61f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.15f, 0.12f) - lineToRelative(-8.49f, -8.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.11f, -1.15f) - close() - } - } - return _broom!! - } - -private var _broom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Bug.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Bug.kt deleted file mode 100644 index b6d0f50b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Bug.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Bug: ImageVector - get() { - if (_bug != null) { - return _bug!! - } - _bug = fluentIcon(name = "Filled.Bug") { - fluentPath { - moveTo(14.25f, 2.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.64f, -0.2f, 1.22f, -0.53f, 1.7f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.52f, 3.3f) - horizontalLineToRelative(0.26f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.24f, -2.26f) - verticalLineTo(4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(1.48f) - curveToRelative(0.0f, 2.0f, -1.56f, 3.65f, -3.54f, 3.76f) - horizontalLineTo(17.0f) - verticalLineToRelative(1.51f) - horizontalLineToRelative(4.25f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.75f, 0.65f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineTo(17.0f) - verticalLineToRelative(2.0f) - horizontalLineTo(17.45f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 3.53f, 3.57f) - verticalLineToRelative(1.68f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-1.59f) - curveToRelative(0.01f, -1.2f, -0.9f, -2.17f, -2.08f, -2.25f) - horizontalLineToRelative(-0.15f) - lineToRelative(-0.48f, -0.01f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, -9.54f, 0.0f) - horizontalLineToRelative(-0.49f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, 2.26f) - verticalLineToRelative(1.49f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - verticalLineToRelative(-1.48f) - curveToRelative(0.0f, -2.0f, 1.56f, -3.65f, 3.54f, -3.76f) - horizontalLineToRelative(0.21f) - lineTo(7.0f, 15.0f) - verticalLineToRelative(-2.0f) - horizontalLineTo(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - horizontalLineToRelative(0.1f) - lineTo(7.0f, 11.5f) - verticalLineTo(10.0f) - horizontalLineTo(6.54f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 3.0f, 6.42f) - verticalLineTo(4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(1.59f) - curveToRelative(0.0f, 1.19f, 0.92f, 2.17f, 2.09f, 2.25f) - horizontalLineTo(7.0f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.52f, -3.28f) - curveToRelative(-0.3f, -0.43f, -0.48f, -0.94f, -0.52f, -1.5f) - lineTo(9.0f, 3.51f) - verticalLineToRelative(-0.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.85f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.15f) - verticalLineToRelative(-0.9f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _bug!! - } - -private var _bug: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Building.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Building.kt deleted file mode 100644 index fa6d29cf..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Building.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Building: ImageVector - get() { - if (_building != null) { - return _building!! - } - _building = fluentIcon(name = "Filled.Building") { - fluentPath { - moveTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(8.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - lineTo(16.5f, 9.5f) - horizontalLineToRelative(1.25f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(16.5f, 22.0f) - verticalLineToRelative(-3.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-6.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - lineTo(7.5f, 22.0f) - lineTo(4.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-17.0f) - close() - moveTo(15.0f, 18.5f) - lineTo(15.0f, 22.0f) - horizontalLineToRelative(-2.25f) - verticalLineToRelative(-3.5f) - lineTo(15.0f, 18.5f) - close() - moveTo(11.25f, 18.5f) - lineTo(11.25f, 22.0f) - lineTo(9.0f, 22.0f) - verticalLineToRelative(-3.5f) - horizontalLineToRelative(2.25f) - close() - moveTo(7.5f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) - close() - moveTo(8.5f, 12.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(8.5f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(12.0f, 5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(12.0f, 12.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(15.5f, 12.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(12.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - } - } - return _building!! - } - -private var _building: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingBank.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingBank.kt deleted file mode 100644 index 970207e6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingBank.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BuildingBank: ImageVector - get() { - if (_buildingBank != null) { - return _buildingBank!! - } - _buildingBank = fluentIcon(name = "Filled.BuildingBank") { - fluentPath { - moveTo(10.97f, 2.32f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 2.06f, 0.0f) - lineToRelative(7.42f, 5.42f) - curveToRelative(0.98f, 0.71f, 0.48f, 2.26f, -0.73f, 2.26f) - lineTo(4.28f, 10.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.73f, -2.26f) - lineToRelative(7.42f, -5.42f) - close() - moveTo(13.0f, 6.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(11.25f, 16.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(5.0f) - close() - moveTo(14.75f, 16.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(5.0f) - close() - moveTo(18.5f, 16.0f) - horizontalLineToRelative(-2.25f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(2.25f) - verticalLineToRelative(5.0f) - close() - moveTo(18.75f, 17.0f) - lineTo(5.25f, 17.0f) - curveTo(4.01f, 17.0f, 3.0f, 18.0f, 3.0f, 19.25f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(16.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - close() - moveTo(7.75f, 16.0f) - lineTo(5.5f, 16.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(2.25f) - verticalLineToRelative(5.0f) - close() - } - } - return _buildingBank!! - } - -private var _buildingBank: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingBankLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingBankLink.kt deleted file mode 100644 index c79b67e9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingBankLink.kt +++ /dev/null @@ -1,97 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BuildingBankLink: ImageVector - get() { - if (_buildingBankLink != null) { - return _buildingBankLink!! - } - _buildingBankLink = fluentIcon(name = "Filled.BuildingBankLink") { - fluentPath { - moveTo(10.97f, 2.32f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 2.06f, 0.0f) - lineToRelative(7.42f, 5.42f) - curveToRelative(0.98f, 0.71f, 0.48f, 2.26f, -0.73f, 2.26f) - lineTo(4.28f, 10.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.73f, -2.26f) - lineToRelative(7.42f, -5.42f) - close() - moveTo(13.0f, 6.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(11.25f, 16.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(5.0f) - close() - moveTo(12.75f, 15.57f) - curveToRelative(0.57f, -0.47f, 1.25f, -0.8f, 2.0f, -0.96f) - lineTo(14.75f, 11.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(4.57f) - close() - moveTo(16.25f, 14.5f) - horizontalLineToRelative(2.25f) - lineTo(18.5f, 11.0f) - horizontalLineToRelative(-2.25f) - verticalLineToRelative(3.5f) - close() - moveTo(11.0f, 19.25f) - curveToRelative(0.0f, -0.81f, 0.2f, -1.58f, 0.57f, -2.25f) - lineTo(5.25f, 17.0f) - curveTo(4.01f, 17.0f, 3.0f, 18.0f, 3.0f, 19.25f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(7.42f) - curveToRelative(-0.11f, -0.4f, -0.17f, -0.82f, -0.17f, -1.25f) - close() - moveTo(7.75f, 16.0f) - lineTo(5.5f, 16.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(2.25f) - verticalLineToRelative(5.0f) - close() - moveTo(23.0f, 19.25f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.75f, -3.75f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - lineTo(19.25f, 23.0f) - horizontalLineToRelative(0.2f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 19.25f) - close() - moveTo(16.5f, 16.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-0.2f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(20.0f, 19.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - } - } - return _buildingBankLink!! - } - -private var _buildingBankLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingBankToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingBankToolbox.kt deleted file mode 100644 index cd1230f2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingBankToolbox.kt +++ /dev/null @@ -1,111 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BuildingBankToolbox: ImageVector - get() { - if (_buildingBankToolbox != null) { - return _buildingBankToolbox!! - } - _buildingBankToolbox = fluentIcon(name = "Filled.BuildingBankToolbox") { - fluentPath { - moveTo(13.03f, 2.34f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.06f, 0.0f) - lineToRelative(-7.42f, 5.4f) - curveToRelative(-0.98f, 0.72f, -0.48f, 2.26f, 0.73f, 2.27f) - lineTo(16.0f, 10.01f) - lineTo(16.0f, 10.0f) - lineTo(19.72f, 10.0f) - curveToRelative(1.2f, 0.0f, 1.71f, -1.54f, 0.73f, -2.25f) - lineToRelative(-7.42f, -5.41f) - close() - moveTo(12.0f, 5.26f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(11.25f, 15.41f) - curveToRelative(-0.1f, 0.19f, -0.16f, 0.38f, -0.2f, 0.6f) - horizontalLineToRelative(-1.8f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(4.4f) - close() - moveTo(14.75f, 11.44f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 13.0f, 14.0f) - verticalLineToRelative(0.05f) - lineToRelative(-0.25f, 0.06f) - verticalLineToRelative(-3.1f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(0.43f) - close() - moveTo(11.0f, 17.0f) - verticalLineToRelative(3.5f) - lineTo(3.75f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-0.5f) - curveTo(3.0f, 18.01f, 4.0f, 17.0f, 5.25f, 17.0f) - lineTo(11.0f, 17.0f) - close() - moveTo(5.5f, 16.0f) - horizontalLineToRelative(2.25f) - verticalLineToRelative(-5.0f) - lineTo(5.5f, 11.0f) - verticalLineToRelative(5.0f) - close() - moveTo(14.0f, 15.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - lineTo(12.0f, 18.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(16.0f, 18.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(20.5f, 18.0f) - lineTo(23.0f, 18.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(21.0f, 15.0f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(1.0f) - close() - moveTo(15.5f, 14.0f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(13.5f, 23.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - lineTo(23.0f, 19.5f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-8.0f) - close() - } - } - return _buildingBankToolbox!! - } - -private var _buildingBankToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingDesktop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingDesktop.kt deleted file mode 100644 index 1c076505..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingDesktop.kt +++ /dev/null @@ -1,102 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BuildingDesktop: ImageVector - get() { - if (_buildingDesktop != null) { - return _buildingDesktop!! - } - _buildingDesktop = fluentIcon(name = "Filled.BuildingDesktop") { - fluentPath { - moveTo(8.5f, 12.75f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.43f, 0.08f, 0.85f, 0.22f, 1.25f) - lineTo(3.5f, 18.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 2.0f, 16.5f) - verticalLineToRelative(-13.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 3.5f, 2.0f) - horizontalLineToRelative(6.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 11.0f, 3.5f) - lineTo(11.0f, 7.0f) - horizontalLineToRelative(1.5f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 14.0f, 8.5f) - lineTo(14.0f, 9.0f) - horizontalLineToRelative(-1.75f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.75f, 3.75f) - close() - moveTo(8.17f, 5.13f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 7.75f, 5.0f) - arcToRelative(0.76f, 0.76f, 0.0f, false, false, -0.75f, 0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.17f, -0.62f) - close() - moveTo(8.17f, 8.13f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 7.75f, 8.0f) - arcToRelative(0.76f, 0.76f, 0.0f, false, false, -0.75f, 0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.17f, -0.62f) - close() - moveTo(4.83f, 12.37f) - curveToRelative(0.13f, 0.09f, 0.27f, 0.13f, 0.42f, 0.13f) - arcToRelative(0.76f, 0.76f, 0.0f, false, false, 0.75f, -0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.17f, 0.62f) - close() - moveTo(4.83f, 9.37f) - curveToRelative(0.13f, 0.09f, 0.27f, 0.13f, 0.42f, 0.13f) - arcTo(0.76f, 0.76f, 0.0f, false, false, 6.0f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.17f, 0.62f) - close() - moveTo(4.83f, 6.37f) - curveToRelative(0.13f, 0.09f, 0.27f, 0.13f, 0.42f, 0.13f) - arcTo(0.76f, 0.76f, 0.0f, false, false, 6.0f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.17f, 0.62f) - close() - moveTo(7.33f, 12.37f) - curveToRelative(0.13f, 0.09f, 0.27f, 0.13f, 0.42f, 0.13f) - arcToRelative(0.76f, 0.76f, 0.0f, false, false, 0.75f, -0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.17f, 0.62f) - close() - moveTo(9.5f, 12.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 12.25f, 10.0f) - horizontalLineToRelative(7.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 12.75f) - verticalLineToRelative(4.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) - lineTo(18.0f, 19.5f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.25f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(-1.25f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, -2.75f) - verticalLineToRelative(-4.0f) - close() - moveTo(15.0f, 19.5f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.5f) - verticalLineToRelative(-1.0f) - lineTo(15.0f, 19.5f) - close() - moveTo(12.25f, 11.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(7.0f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-7.0f) - close() - } - } - return _buildingDesktop!! - } - -private var _buildingDesktop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingFactory.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingFactory.kt deleted file mode 100644 index b2ddf4cd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingFactory.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BuildingFactory: ImageVector - get() { - if (_buildingFactory != null) { - return _buildingFactory!! - } - _buildingFactory = fluentIcon(name = "Filled.BuildingFactory") { - fluentPath { - moveTo(2.92f, 4.13f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 5.17f, 2.0f) - horizontalLineToRelative(1.16f) - curveToRelative(1.2f, 0.0f, 2.18f, 0.93f, 2.24f, 2.13f) - lineToRelative(0.84f, 15.5f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 7.17f, 22.0f) - horizontalLineTo(4.33f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.24f, -2.37f) - lineToRelative(0.83f, -15.5f) - close() - moveTo(9.52f, 22.0f) - horizontalLineToRelative(10.23f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineTo(6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.26f, -0.55f) - lineToRelative(-5.24f, 4.84f) - verticalLineTo(6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.26f, -0.55f) - lineTo(9.87f, 9.49f) - lineToRelative(0.54f, 10.08f) - curveToRelative(0.05f, 0.94f, -0.3f, 1.8f, -0.9f, 2.43f) - close() - moveTo(13.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(4.5f) - horizontalLineToRelative(-6.0f) - verticalLineTo(16.0f) - close() - } - } - return _buildingFactory!! - } - -private var _buildingFactory: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingGovernment.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingGovernment.kt deleted file mode 100644 index 3feb9f29..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingGovernment.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BuildingGovernment: ImageVector - get() { - if (_buildingGovernment != null) { - return _buildingGovernment!! - } - _buildingGovernment = fluentIcon(name = "Filled.BuildingGovernment") { - fluentPath { - moveTo(15.5f, 2.0f) - horizontalLineToRelative(-3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.32f) - arcTo(7.0f, 7.0f, 0.0f, false, false, 5.0f, 13.0f) - horizontalLineToRelative(-0.75f) - curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(10.0f, 22.0f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(2.5f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(7.25f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-6.0f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - lineTo(19.0f, 13.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, false, -6.5f, -6.98f) - lineTo(12.5f, 5.0f) - horizontalLineToRelative(3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(15.5f, 11.75f) - verticalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(11.75f, 11.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(9.5f, 11.75f) - verticalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(5.75f, 15.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(19.0f, 16.25f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - } - } - return _buildingGovernment!! - } - -private var _buildingGovernment: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingHome.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingHome.kt deleted file mode 100644 index c21c82aa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingHome.kt +++ /dev/null @@ -1,98 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BuildingHome: ImageVector - get() { - if (_buildingHome != null) { - return _buildingHome!! - } - _buildingHome = fluentIcon(name = "Filled.BuildingHome") { - fluentPath { - moveTo(3.5f, 2.0f) - curveTo(2.67f, 2.0f, 2.0f, 2.67f, 2.0f, 3.5f) - verticalLineToRelative(13.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - lineTo(9.0f, 18.0f) - verticalLineToRelative(-3.32f) - curveToRelative(0.0f, -0.76f, 0.32f, -1.49f, 0.87f, -2.0f) - lineTo(14.0f, 8.81f) - lineTo(14.0f, 8.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(11.0f, 7.0f) - lineTo(11.0f, 3.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - horizontalLineToRelative(-6.0f) - close() - moveTo(6.0f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(5.25f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(6.0f, 11.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(7.75f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(8.5f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(7.75f, 12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(17.19f, 9.44f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.38f, 0.0f) - lineToRelative(-4.25f, 3.97f) - curveToRelative(-0.36f, 0.33f, -0.56f, 0.79f, -0.56f, 1.27f) - verticalLineToRelative(5.82f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(2.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - lineTo(15.0f, 18.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(2.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-5.82f) - curveToRelative(0.0f, -0.48f, -0.2f, -0.94f, -0.56f, -1.27f) - lineTo(17.2f, 9.44f) - close() - moveTo(15.83f, 10.54f) - curveToRelative(0.1f, -0.1f, 0.24f, -0.1f, 0.34f, 0.0f) - lineToRelative(4.25f, 3.96f) - curveToRelative(0.05f, 0.05f, 0.08f, 0.12f, 0.08f, 0.18f) - verticalLineToRelative(5.82f) - horizontalLineToRelative(-2.0f) - lineTo(18.5f, 18.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - horizontalLineToRelative(-2.0f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-5.82f) - curveToRelative(0.0f, -0.06f, 0.03f, -0.13f, 0.08f, -0.18f) - lineToRelative(4.25f, -3.96f) - close() - moveTo(9.25f, 2.0f) - horizontalLineToRelative(-5.5f) - close() - } - } - return _buildingHome!! - } - -private var _buildingHome: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingMultiple.kt deleted file mode 100644 index 4f150add..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingMultiple.kt +++ /dev/null @@ -1,96 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BuildingMultiple: ImageVector - get() { - if (_buildingMultiple != null) { - return _buildingMultiple!! - } - _buildingMultiple = fluentIcon(name = "Filled.BuildingMultiple") { - fluentPath { - moveTo(7.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(8.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(7.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(8.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(7.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(14.0f, 4.25f) - lineTo(14.0f, 5.0f) - horizontalLineToRelative(4.75f) - curveTo(19.99f, 5.0f, 21.0f, 6.0f, 21.0f, 7.25f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(-2.75f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(2.75f) - horizontalLineToRelative(-10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(3.0f, 4.25f) - curveTo(3.0f, 3.01f, 4.0f, 2.0f, 5.25f, 2.0f) - horizontalLineToRelative(6.5f) - curveTo(12.99f, 2.0f, 14.0f, 3.0f, 14.0f, 4.25f) - close() - moveTo(5.25f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(4.5f, 20.0f) - lineTo(10.0f, 20.0f) - lineTo(10.0f, 7.25f) - curveTo(10.0f, 6.01f, 11.0f, 5.0f, 12.25f, 5.0f) - horizontalLineToRelative(0.25f) - verticalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-6.5f) - close() - moveTo(18.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(14.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(18.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(14.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(18.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(14.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - } - } - return _buildingMultiple!! - } - -private var _buildingMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingPeople.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingPeople.kt deleted file mode 100644 index 9e743f9d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingPeople.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BuildingPeople: ImageVector - get() { - if (_buildingPeople != null) { - return _buildingPeople!! - } - _buildingPeople = fluentIcon(name = "Filled.BuildingPeople") { - fluentPath { - moveTo(8.5f, 12.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(7.5f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) - close() - moveTo(12.0f, 5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(8.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - lineTo(16.5f, 9.5f) - horizontalLineToRelative(1.25f) - curveToRelative(1.25f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(1.35f) - curveToRelative(-0.44f, 0.13f, -0.83f, 0.36f, -1.15f, 0.66f) - arcToRelative(3.25f, 3.25f, 0.0f, true, false, -5.44f, 3.25f) - curveToRelative(-1.47f, 0.11f, -2.41f, 1.49f, -2.41f, 2.86f) - curveToRelative(0.0f, 0.55f, 0.1f, 1.1f, 0.32f, 1.63f) - lineTo(4.75f, 21.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(4.0f, 4.25f) - close() - moveTo(8.5f, 5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(11.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) - close() - moveTo(18.0f, 14.75f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.5f, 0.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.5f, 0.0f) - close() - moveTo(19.5f, 19.88f) - curveToRelative(0.0f, 1.55f, -1.07f, 3.12f, -3.75f, 3.12f) - curveToRelative(-2.68f, 0.0f, -3.75f, -1.56f, -3.75f, -3.13f) - curveToRelative(0.0f, -1.03f, 0.72f, -1.87f, 1.6f, -1.87f) - horizontalLineToRelative(4.3f) - curveToRelative(0.88f, 0.0f, 1.6f, 0.84f, 1.6f, 1.88f) - close() - moveTo(20.75f, 17.5f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, -3.5f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, 3.5f) - close() - moveTo(20.5f, 19.88f) - curveToRelative(0.0f, 0.71f, -0.18f, 1.46f, -0.58f, 2.12f) - lineTo(20.0f, 22.0f) - curveToRelative(2.15f, 0.0f, 3.0f, -1.1f, 3.0f, -2.19f) - arcToRelative(1.3f, 1.3f, 0.0f, false, false, -1.28f, -1.31f) - horizontalLineToRelative(-1.54f) - curveToRelative(0.2f, 0.42f, 0.32f, 0.9f, 0.32f, 1.38f) - close() - } - } - return _buildingPeople!! - } - -private var _buildingPeople: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingRetail.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingRetail.kt deleted file mode 100644 index 7f427802..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingRetail.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BuildingRetail: ImageVector - get() { - if (_buildingRetail != null) { - return _buildingRetail!! - } - _buildingRetail = fluentIcon(name = "Filled.BuildingRetail") { - fluentPath { - moveTo(7.5f, 11.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(9.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-9.0f) - close() - moveTo(4.0f, 3.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.0f, 3.73f) - verticalLineToRelative(13.52f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(6.0f, 21.0f) - verticalLineToRelative(-5.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(11.5f, 21.0f) - horizontalLineToRelative(8.75f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(21.0f, 6.73f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 20.0f, 3.0f) - lineTo(4.0f, 3.0f) - close() - moveTo(3.5f, 5.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(16.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(4.0f, 5.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - moveTo(6.75f, 8.0f) - horizontalLineToRelative(10.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(6.75f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(14.75f, 15.0f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(10.0f, 16.5f) - lineTo(10.0f, 21.0f) - lineTo(7.5f, 21.0f) - verticalLineToRelative(-4.5f) - lineTo(10.0f, 16.5f) - close() - } - } - return _buildingRetail!! - } - -private var _buildingRetail: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingRetailMoney.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingRetailMoney.kt deleted file mode 100644 index 4ba6a2e6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingRetailMoney.kt +++ /dev/null @@ -1,105 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BuildingRetailMoney: ImageVector - get() { - if (_buildingRetailMoney != null) { - return _buildingRetailMoney!! - } - _buildingRetailMoney = fluentIcon(name = "Filled.BuildingRetailMoney") { - fluentPath { - moveTo(7.5f, 11.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(9.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-9.0f) - close() - moveTo(4.0f, 3.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.0f, 3.73f) - verticalLineToRelative(13.52f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(6.0f, 21.0f) - verticalLineToRelative(-5.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(11.5f, 16.0f) - curveToRelative(0.46f, -0.6f, 1.18f, -1.0f, 2.0f, -1.0f) - lineTo(21.0f, 15.0f) - lineTo(21.0f, 6.73f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 20.0f, 3.0f) - lineTo(4.0f, 3.0f) - close() - moveTo(3.5f, 5.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(16.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(4.0f, 5.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - moveTo(6.75f, 8.0f) - horizontalLineToRelative(10.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(6.75f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(10.0f, 16.5f) - lineTo(10.0f, 21.0f) - lineTo(7.5f, 21.0f) - verticalLineToRelative(-4.5f) - lineTo(10.0f, 16.5f) - close() - moveTo(12.0f, 17.5f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(8.0f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - verticalLineToRelative(-4.0f) - close() - moveTo(22.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - horizontalLineToRelative(-1.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(22.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(14.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - verticalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - horizontalLineToRelative(-1.0f) - close() - moveTo(15.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - verticalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - horizontalLineToRelative(1.0f) - close() - moveTo(19.25f, 19.5f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, -3.5f, 0.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 3.5f, 0.0f) - close() - } - } - return _buildingRetailMoney!! - } - -private var _buildingRetailMoney: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingRetailMore.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingRetailMore.kt deleted file mode 100644 index 5ca63823..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingRetailMore.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BuildingRetailMore: ImageVector - get() { - if (_buildingRetailMore != null) { - return _buildingRetailMore!! - } - _buildingRetailMore = fluentIcon(name = "Filled.BuildingRetailMore") { - fluentPath { - moveTo(6.22f, 3.0f) - curveToRelative(-0.52f, 0.0f, -1.01f, 0.23f, -1.35f, 0.63f) - lineTo(1.3f, 7.95f) - curveToRelative(-0.67f, 0.82f, -0.1f, 2.05f, 0.96f, 2.05f) - horizontalLineToRelative(19.5f) - curveToRelative(1.05f, 0.0f, 1.63f, -1.23f, 0.96f, -2.05f) - lineToRelative(-3.58f, -4.32f) - curveToRelative(-0.33f, -0.4f, -0.83f, -0.63f, -1.35f, -0.63f) - lineTo(6.22f, 3.0f) - close() - moveTo(3.0f, 11.5f) - verticalLineToRelative(7.25f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, 2.5f) - horizontalLineToRelative(13.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) - lineTo(21.0f, 11.5f) - lineTo(3.0f, 11.5f) - close() - moveTo(9.0f, 15.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(12.0f, 16.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, 2.5f) - close() - moveTo(17.5f, 15.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - } - } - return _buildingRetailMore!! - } - -private var _buildingRetailMore: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingRetailShield.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingRetailShield.kt deleted file mode 100644 index 9567f601..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingRetailShield.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BuildingRetailShield: ImageVector - get() { - if (_buildingRetailShield != null) { - return _buildingRetailShield!! - } - _buildingRetailShield = fluentIcon(name = "Filled.BuildingRetailShield") { - fluentPath { - moveTo(7.5f, 11.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(9.0f) - verticalLineToRelative(1.21f) - curveToRelative(-0.36f, 0.27f, -0.81f, 0.55f, -1.33f, 0.79f) - lineTo(7.5f, 11.5f) - close() - moveTo(18.0f, 8.75f) - verticalLineToRelative(1.22f) - curveToRelative(0.37f, 0.0f, 0.74f, 0.12f, 1.04f, 0.38f) - curveToRelative(0.4f, 0.34f, 1.1f, 0.86f, 1.96f, 1.22f) - lineTo(21.0f, 6.73f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 20.0f, 3.0f) - lineTo(4.0f, 3.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.0f, 3.73f) - verticalLineToRelative(13.52f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(6.0f, 21.0f) - verticalLineToRelative(-5.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(11.5f, 21.0f) - horizontalLineToRelative(1.82f) - arcTo(6.5f, 6.5f, 0.0f, false, true, 12.0f, 17.0f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.18f, 0.03f, -0.35f, 0.08f, -0.5f) - lineTo(6.75f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(10.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(3.5f, 5.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(16.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(4.0f, 5.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - moveTo(10.0f, 16.5f) - lineTo(10.0f, 21.0f) - lineTo(7.5f, 21.0f) - verticalLineToRelative(-4.5f) - lineTo(10.0f, 16.5f) - close() - moveTo(22.5f, 12.98f) - arcToRelative(7.7f, 7.7f, 0.0f, false, true, -4.11f, -1.87f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.77f, 0.0f) - curveToRelative(-0.69f, 0.58f, -2.21f, 1.7f, -4.12f, 1.87f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, -0.5f, 0.52f) - lineTo(13.0f, 17.0f) - curveToRelative(0.0f, 4.22f, 4.1f, 5.72f, 4.87f, 5.96f) - curveToRelative(0.09f, 0.03f, 0.17f, 0.03f, 0.26f, 0.0f) - curveTo(18.9f, 22.72f, 23.0f, 21.22f, 23.0f, 17.0f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.28f, -0.22f, -0.5f, -0.5f, -0.52f) - close() - } - } - return _buildingRetailShield!! - } - -private var _buildingRetailShield: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingRetailToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingRetailToolbox.kt deleted file mode 100644 index 5a8b1bde..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingRetailToolbox.kt +++ /dev/null @@ -1,114 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BuildingRetailToolbox: ImageVector - get() { - if (_buildingRetailToolbox != null) { - return _buildingRetailToolbox!! - } - _buildingRetailToolbox = fluentIcon(name = "Filled.BuildingRetailToolbox") { - fluentPath { - moveTo(7.5f, 11.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(9.0f) - verticalLineToRelative(1.75f) - horizontalLineToRelative(-0.75f) - curveToRelative(-0.4f, 0.0f, -0.8f, 0.09f, -1.15f, 0.25f) - lineTo(7.5f, 11.5f) - close() - moveTo(18.0f, 8.75f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(1.25f) - curveToRelative(0.66f, 0.0f, 1.27f, 0.24f, 1.75f, 0.63f) - lineTo(21.0f, 6.73f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 20.0f, 3.0f) - lineTo(4.0f, 3.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.0f, 3.73f) - verticalLineToRelative(13.52f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(6.0f, 21.0f) - verticalLineToRelative(-5.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.0f) - curveToRelative(0.23f, 0.0f, 0.44f, 0.1f, 0.57f, 0.27f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 13.0f, 14.05f) - lineTo(13.0f, 14.0f) - curveToRelative(0.0f, -0.35f, 0.07f, -0.69f, 0.19f, -1.0f) - lineTo(6.75f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(10.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(3.5f, 5.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(16.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(4.0f, 5.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - moveTo(10.0f, 16.5f) - lineTo(10.0f, 21.0f) - lineTo(7.5f, 21.0f) - verticalLineToRelative(-4.5f) - lineTo(10.0f, 16.5f) - close() - moveTo(14.0f, 15.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - lineTo(12.0f, 18.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(16.0f, 18.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(20.5f, 18.0f) - lineTo(23.0f, 18.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(21.0f, 15.0f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(1.0f) - close() - moveTo(15.5f, 14.0f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(12.0f, 21.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - lineTo(23.0f, 19.5f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - close() - } - } - return _buildingRetailToolbox!! - } - -private var _buildingRetailToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingShop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingShop.kt deleted file mode 100644 index b1fd2f56..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingShop.kt +++ /dev/null @@ -1,119 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BuildingShop: ImageVector - get() { - if (_buildingShop != null) { - return _buildingShop!! - } - _buildingShop = fluentIcon(name = "Filled.BuildingShop") { - fluentPath { - moveTo(10.5f, 14.5f) - lineTo(10.5f, 22.0f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(-7.5f) - horizontalLineToRelative(3.0f) - close() - moveTo(17.26f, 13.0f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.76f, 0.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.5f) - curveToRelative(0.42f, 0.0f, 0.76f, -0.33f, 0.76f, -0.75f) - verticalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(16.5f, 14.5f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(2.0f) - close() - moveTo(8.17f, 7.0f) - lineTo(3.5f, 7.0f) - verticalLineToRelative(1.17f) - curveToRelative(0.0f, 1.18f, 0.88f, 2.15f, 2.02f, 2.3f) - lineToRelative(0.15f, 0.02f) - horizontalLineToRelative(0.16f) - curveToRelative(1.24f, 0.0f, 2.25f, -0.95f, 2.33f, -2.16f) - lineTo(8.16f, 7.0f) - close() - moveTo(14.33f, 7.0f) - lineTo(9.67f, 7.0f) - verticalLineToRelative(1.17f) - curveToRelative(0.0f, 1.18f, 0.87f, 2.15f, 2.01f, 2.3f) - lineToRelative(0.16f, 0.02f) - lineTo(12.0f, 10.49f) - curveToRelative(1.23f, 0.0f, 2.24f, -0.95f, 2.33f, -2.16f) - lineTo(14.33f, 7.0f) - close() - moveTo(20.5f, 7.0f) - horizontalLineToRelative(-4.67f) - verticalLineToRelative(1.17f) - curveToRelative(0.0f, 1.18f, 0.88f, 2.15f, 2.02f, 2.3f) - lineToRelative(0.16f, 0.02f) - horizontalLineToRelative(0.16f) - curveToRelative(1.23f, 0.0f, 2.24f, -0.95f, 2.32f, -2.16f) - lineTo(20.49f, 7.0f) - close() - moveTo(9.06f, 3.5f) - lineTo(6.33f, 3.5f) - lineToRelative(-1.86f, 2.0f) - horizontalLineToRelative(3.98f) - lineToRelative(0.61f, -2.0f) - close() - moveTo(13.36f, 3.5f) - horizontalLineToRelative(-2.73f) - lineToRelative(-0.62f, 2.0f) - horizontalLineToRelative(3.97f) - lineToRelative(-0.61f, -2.0f) - close() - moveTo(17.67f, 3.5f) - horizontalLineToRelative(-2.73f) - lineToRelative(0.61f, 2.0f) - horizontalLineToRelative(3.98f) - lineToRelative(-1.86f, -2.0f) - close() - moveTo(2.2f, 5.74f) - lineToRelative(3.25f, -3.5f) - curveToRelative(0.12f, -0.13f, 0.28f, -0.2f, 0.45f, -0.23f) - lineTo(6.0f, 2.0f) - horizontalLineToRelative(12.0f) - curveToRelative(0.17f, 0.0f, 0.34f, 0.06f, 0.47f, 0.17f) - lineToRelative(0.08f, 0.07f) - lineToRelative(3.27f, 3.53f) - lineToRelative(0.03f, 0.04f) - curveToRelative(0.1f, 0.13f, 0.15f, 0.29f, 0.15f, 0.44f) - verticalLineToRelative(1.92f) - curveToRelative(0.0f, 1.0f, -0.38f, 1.9f, -1.0f, 2.58f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(12.0f, 22.0f) - verticalLineToRelative(-8.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(6.0f, 22.0f) - lineTo(3.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - verticalLineToRelative(-10.6f) - arcToRelative(3.82f, 3.82f, 0.0f, false, true, -1.0f, -2.39f) - lineTo(2.01f, 6.3f) - curveToRelative(-0.02f, -0.14f, 0.01f, -0.28f, 0.09f, -0.4f) - lineToRelative(0.05f, -0.08f) - lineToRelative(0.05f, -0.07f) - close() - } - } - return _buildingShop!! - } - -private var _buildingShop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingSkyscraper.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingSkyscraper.kt deleted file mode 100644 index 759a9c81..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingSkyscraper.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BuildingSkyscraper: ImageVector - get() { - if (_buildingSkyscraper != null) { - return _buildingSkyscraper!! - } - _buildingSkyscraper = fluentIcon(name = "Filled.BuildingSkyscraper") { - fluentPath { - moveTo(8.75f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(8.0f, 4.0f) - horizontalLineToRelative(3.0f) - lineTo(11.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-1.5f) - close() - moveTo(11.0f, 5.0f) - lineTo(6.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(6.0f, 7.0f) - horizontalLineToRelative(7.0f) - lineTo(13.0f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(11.0f, 5.0f) - close() - moveTo(17.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(18.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(4.0f, 10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.96f, -2.0f) - horizontalLineToRelative(7.08f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 15.0f, 10.0f) - arcToRelative(5.75f, 5.75f, 0.0f, false, true, 5.5f, 5.75f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-8.5f) - verticalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(4.0f, 10.0f) - close() - moveTo(19.0f, 15.75f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, -4.0f, -4.24f) - lineTo(15.0f, 20.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.25f) - close() - moveTo(12.25f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(11.25f, 15.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(8.75f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(7.75f, 15.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - } - } - return _buildingSkyscraper!! - } - -private var _buildingSkyscraper: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingTownhouse.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingTownhouse.kt deleted file mode 100644 index bdad5b0b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/BuildingTownhouse.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.BuildingTownhouse: ImageVector - get() { - if (_buildingTownhouse != null) { - return _buildingTownhouse!! - } - _buildingTownhouse = fluentIcon(name = "Filled.BuildingTownhouse") { - fluentPath { - moveTo(8.48f, 3.53f) - curveToRelative(-0.69f, -0.7f, -1.82f, -0.7f, -2.5f, 0.0f) - lineToRelative(-2.34f, 2.4f) - curveTo(3.23f, 6.35f, 3.0f, 6.91f, 3.0f, 7.5f) - verticalLineToRelative(11.75f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(8.0f, 21.0f) - verticalLineToRelative(-4.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - lineTo(11.25f, 7.29f) - curveToRelative(0.0f, -0.59f, -0.23f, -1.15f, -0.64f, -1.57f) - lineTo(8.48f, 3.53f) - close() - moveTo(12.75f, 7.29f) - lineTo(12.75f, 16.0f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(16.0f, 21.0f) - horizontalLineToRelative(3.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(21.0f, 7.5f) - curveToRelative(0.0f, -0.59f, -0.23f, -1.15f, -0.64f, -1.57f) - lineToRelative(-2.33f, -2.4f) - curveToRelative(-0.69f, -0.7f, -1.82f, -0.7f, -2.51f, 0.0f) - lineToRelative(-2.13f, 2.19f) - curveToRelative(-0.41f, 0.42f, -0.64f, 0.98f, -0.64f, 1.57f) - close() - moveTo(12.75f, 17.5f) - lineTo(12.75f, 21.0f) - horizontalLineToRelative(1.75f) - verticalLineToRelative(-3.5f) - horizontalLineToRelative(-1.75f) - close() - moveTo(11.25f, 21.0f) - verticalLineToRelative(-3.5f) - lineTo(9.5f, 17.5f) - lineTo(9.5f, 21.0f) - horizontalLineToRelative(1.75f) - close() - moveTo(8.12f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(16.88f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - close() - moveTo(8.13f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(16.87f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - close() - } - } - return _buildingTownhouse!! - } - -private var _buildingTownhouse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Calculator.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Calculator.kt deleted file mode 100644 index 543bcb60..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Calculator.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Calculator: ImageVector - get() { - if (_calculator != null) { - return _calculator!! - } - _calculator = fluentIcon(name = "Filled.Calculator") { - fluentPath { - moveTo(4.0f, 5.25f) - curveTo(4.0f, 3.45f, 5.46f, 2.0f, 7.25f, 2.0f) - horizontalLineToRelative(9.5f) - curveTo(18.55f, 2.0f, 20.0f, 3.46f, 20.0f, 5.25f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-9.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 4.0f, 18.75f) - lineTo(4.0f, 5.25f) - close() - moveTo(9.0f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(17.0f, 7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - lineTo(9.0f, 5.0f) - close() - moveTo(9.5f, 13.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) - close() - moveTo(8.25f, 18.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - moveTo(17.0f, 13.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) - close() - moveTo(15.75f, 18.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - moveTo(13.25f, 13.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) - close() - moveTo(12.0f, 18.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - } - } - return _calculator!! - } - -private var _calculator: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalculatorArrowClockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalculatorArrowClockwise.kt deleted file mode 100644 index db464126..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalculatorArrowClockwise.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalculatorArrowClockwise: ImageVector - get() { - if (_calculatorArrowClockwise != null) { - return _calculatorArrowClockwise!! - } - _calculatorArrowClockwise = fluentIcon(name = "Filled.CalculatorArrowClockwise") { - fluentPath { - moveTo(4.0f, 5.25f) - curveTo(4.0f, 3.45f, 5.46f, 2.0f, 7.25f, 2.0f) - horizontalLineToRelative(9.5f) - curveTo(18.55f, 2.0f, 20.0f, 3.46f, 20.0f, 5.25f) - verticalLineToRelative(5.03f) - arcToRelative(1.76f, 1.76f, 0.0f, false, false, -0.23f, 0.29f) - arcTo(7.0f, 7.0f, 0.0f, false, false, 12.1f, 22.0f) - lineTo(7.25f, 22.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 4.0f, 18.75f) - lineTo(4.0f, 5.25f) - close() - moveTo(9.0f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(17.0f, 7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - lineTo(9.0f, 5.0f) - close() - moveTo(9.5f, 13.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) - close() - moveTo(8.25f, 18.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - moveTo(21.25f, 15.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(22.0f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(0.63f) - arcTo(6.0f, 6.0f, 0.0f, true, false, 23.0f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, true, true, -1.69f, -3.51f) - horizontalLineToRelative(0.01f) - verticalLineToRelative(0.01f) - lineTo(18.5f, 13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.75f) - close() - } - } - return _calculatorArrowClockwise!! - } - -private var _calculatorArrowClockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalculatorMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalculatorMultiple.kt deleted file mode 100644 index 325f9994..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalculatorMultiple.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalculatorMultiple: ImageVector - get() { - if (_calculatorMultiple != null) { - return _calculatorMultiple!! - } - _calculatorMultiple = fluentIcon(name = "Filled.CalculatorMultiple") { - fluentPath { - moveTo(6.14f, 2.0f) - arcTo(3.14f, 3.14f, 0.0f, false, false, 3.0f, 5.14f) - verticalLineToRelative(11.22f) - curveToRelative(0.0f, 1.74f, 1.4f, 3.14f, 3.14f, 3.14f) - horizontalLineToRelative(8.72f) - curveToRelative(1.74f, 0.0f, 3.14f, -1.4f, 3.14f, -3.14f) - lineTo(18.0f, 5.14f) - curveTo(18.0f, 3.4f, 16.6f, 2.0f, 14.86f, 2.0f) - lineTo(6.14f, 2.0f) - close() - moveTo(7.75f, 5.0f) - horizontalLineToRelative(5.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-5.5f) - curveTo(6.78f, 9.5f, 6.0f, 8.72f, 6.0f, 7.75f) - verticalLineToRelative(-1.0f) - curveTo(6.0f, 5.78f, 6.78f, 5.0f, 7.75f, 5.0f) - close() - moveTo(5.75f, 12.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) - close() - moveTo(10.5f, 10.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(10.5f, 14.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(7.0f, 14.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(12.75f, 12.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) - close() - moveTo(14.0f, 14.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(5.8f, 20.49f) - curveToRelative(0.45f, 0.9f, 1.38f, 1.51f, 2.46f, 1.51f) - horizontalLineToRelative(6.99f) - curveToRelative(2.9f, 0.0f, 5.25f, -2.35f, 5.25f, -5.25f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -1.07f, -0.62f, -2.0f, -1.51f, -2.46f) - lineToRelative(0.01f, 0.35f) - lineTo(19.0f, 16.75f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.75f, 3.75f) - lineTo(6.14f, 20.5f) - lineToRelative(-0.34f, -0.01f) - close() - } - } - return _calculatorMultiple!! - } - -private var _calculatorMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Calendar3Day.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Calendar3Day.kt deleted file mode 100644 index 3bf61d02..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Calendar3Day.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Calendar3Day: ImageVector - get() { - if (_calendar3Day != null) { - return _calendar3Day!! - } - _calendar3Day = fluentIcon(name = "Filled.Calendar3Day") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(7.75f, 7.0f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(8.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-8.7f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 7.74f, 7.0f) - close() - moveTo(16.25f, 7.0f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(8.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-8.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) - close() - moveTo(12.0f, 7.0f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(8.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-8.7f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 12.0f, 7.0f) - close() - } - } - return _calendar3Day!! - } - -private var _calendar3Day: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarAdd.kt deleted file mode 100644 index 5fb2aab3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarAdd.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarAdd: ImageVector - get() { - if (_calendarAdd != null) { - return _calendarAdd!! - } - _calendarAdd = fluentIcon(name = "Filled.CalendarAdd") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(21.0f, 8.5f) - verticalLineToRelative(3.52f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 8.5f) - horizontalLineToRelative(18.0f) - close() - moveTo(17.5f, 14.0f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - lineToRelative(-0.01f, 0.09f) - lineTo(17.0f, 17.0f) - horizontalLineToRelative(-2.59f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - lineToRelative(-0.01f, 0.09f) - verticalLineToRelative(0.09f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - lineToRelative(0.09f, 0.01f) - lineTo(17.0f, 18.0f) - verticalLineToRelative(2.59f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - lineToRelative(0.09f, 0.01f) - horizontalLineToRelative(0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - lineToRelative(0.01f, -0.09f) - lineTo(18.0f, 18.0f) - horizontalLineToRelative(2.59f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - lineToRelative(0.01f, -0.09f) - verticalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) - lineTo(20.5f, 17.0f) - lineTo(18.0f, 17.0f) - verticalLineToRelative(-2.59f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) - lineTo(17.5f, 14.0f) - close() - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - lineTo(21.0f, 7.0f) - lineTo(3.0f, 7.0f) - verticalLineToRelative(-0.75f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - } - } - return _calendarAdd!! - } - -private var _calendarAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarAgenda.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarAgenda.kt deleted file mode 100644 index d8d8b27d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarAgenda.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarAgenda: ImageVector - get() { - if (_calendarAgenda != null) { - return _calendarAgenda!! - } - _calendarAgenda = fluentIcon(name = "Filled.CalendarAgenda") { - fluentPath { - moveTo(21.0f, 17.75f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - close() - moveTo(17.0f, 7.75f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-8.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(17.0f, 16.25f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-8.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(17.0f, 12.0f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-8.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.7f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 17.0f, 12.0f) - close() - } - } - return _calendarAgenda!! - } - -private var _calendarAgenda: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarArrowCounterclockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarArrowCounterclockwise.kt deleted file mode 100644 index 9d43a82c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarArrowCounterclockwise.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarArrowCounterclockwise: ImageVector - get() { - if (_calendarArrowCounterclockwise != null) { - return _calendarArrowCounterclockwise!! - } - _calendarArrowCounterclockwise = fluentIcon(name = "Filled.CalendarArrowCounterclockwise") { - fluentPath { - moveTo(21.0f, 17.75f) - lineTo(21.0f, 8.5f) - lineTo(7.48f, 8.5f) - curveToRelative(0.08f, 0.53f, -0.09f, 1.08f, -0.5f, 1.49f) - lineToRelative(-2.0f, 2.0f) - curveToRelative(-0.53f, 0.54f, -1.33f, 0.65f, -1.98f, 0.34f) - verticalLineToRelative(5.42f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - close() - moveTo(6.0f, 16.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) - close() - moveTo(10.75f, 16.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) - close() - moveTo(6.0f, 11.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) - close() - moveTo(10.75f, 11.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) - close() - moveTo(15.5f, 11.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) - close() - moveTo(21.0f, 7.0f) - verticalLineToRelative(-0.75f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(2.69f) - lineToRelative(-0.72f, -0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineToRelative(-0.72f, 0.72f) - lineTo(4.5f, 7.0f) - lineTo(21.0f, 7.0f) - close() - } - } - return _calendarArrowCounterclockwise!! - } - -private var _calendarArrowCounterclockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarArrowDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarArrowDown.kt deleted file mode 100644 index 19275e84..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarArrowDown.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarArrowDown: ImageVector - get() { - if (_calendarArrowDown != null) { - return _calendarArrowDown!! - } - _calendarArrowDown = fluentIcon(name = "Filled.CalendarArrowDown") { - fluentPath { - moveTo(21.0f, 8.5f) - verticalLineToRelative(3.52f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 8.5f) - horizontalLineToRelative(18.0f) - close() - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - lineTo(21.0f, 7.0f) - lineTo(3.0f, 7.0f) - verticalLineToRelative(-0.75f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(18.0f, 14.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(4.8f) - lineToRelative(-1.65f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.5f, 2.5f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineTo(18.0f, 19.29f) - lineTo(18.0f, 14.5f) - close() - } - } - return _calendarArrowDown!! - } - -private var _calendarArrowDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarArrowRight.kt deleted file mode 100644 index d1f72028..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarArrowRight.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarArrowRight: ImageVector - get() { - if (_calendarArrowRight != null) { - return _calendarArrowRight!! - } - _calendarArrowRight = fluentIcon(name = "Filled.CalendarArrowRight") { - fluentPath { - moveTo(21.0f, 8.5f) - verticalLineToRelative(3.52f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 8.5f) - horizontalLineToRelative(18.0f) - close() - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - lineTo(21.0f, 7.0f) - lineTo(3.0f, 7.0f) - verticalLineToRelative(-0.75f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(19.29f, 17.0f) - lineTo(14.5f, 17.0f) - close() - } - } - return _calendarArrowRight!! - } - -private var _calendarArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarAssistant.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarAssistant.kt deleted file mode 100644 index 4c50367b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarAssistant.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarAssistant: ImageVector - get() { - if (_calendarAssistant != null) { - return _calendarAssistant!! - } - _calendarAssistant = fluentIcon(name = "Filled.CalendarAssistant") { - fluentPath { - moveTo(21.0f, 8.5f) - verticalLineToRelative(3.52f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) - horizontalLineTo(6.25f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - verticalLineTo(8.5f) - horizontalLineToRelative(18.0f) - close() - } - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineTo(7.0f) - horizontalLineTo(3.0f) - verticalLineToRelative(-0.75f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - } - fluentPath { - moveTo(17.5f, 23.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) - close() - moveTo(17.1f, 14.0f) - horizontalLineToRelative(1.43f) - curveToRelative(0.35f, 0.0f, 0.59f, 0.35f, 0.47f, 0.68f) - lineTo(18.5f, 16.0f) - horizontalLineToRelative(0.63f) - curveToRelative(0.38f, 0.0f, 0.6f, 0.41f, 0.4f, 0.73f) - lineToRelative(-2.63f, 4.03f) - arcToRelative(0.52f, 0.52f, 0.0f, false, true, -0.92f, -0.44f) - lineToRelative(0.77f, -2.32f) - horizontalLineToRelative(-0.78f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.47f, -0.68f) - lineToRelative(1.13f, -3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.47f, -0.32f) - close() - } - } - return _calendarAssistant!! - } - -private var _calendarAssistant: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarCancel.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarCancel.kt deleted file mode 100644 index ca4727a2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarCancel.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarCancel: ImageVector - get() { - if (_calendarCancel != null) { - return _calendarCancel!! - } - _calendarCancel = fluentIcon(name = "Filled.CalendarCancel") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(15.02f, 15.02f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.71f) - lineToRelative(1.77f, 1.77f) - lineToRelative(-1.76f, 1.77f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, 0.7f) - lineToRelative(1.77f, -1.76f) - lineToRelative(1.77f, 1.77f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, -0.71f) - lineToRelative(-1.76f, -1.77f) - lineToRelative(1.77f, -1.77f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.78f, 1.76f) - lineToRelative(-1.77f, -1.77f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - close() - moveTo(21.0f, 8.5f) - verticalLineToRelative(3.52f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 8.5f) - horizontalLineToRelative(18.0f) - close() - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - lineTo(21.0f, 7.0f) - lineTo(3.0f, 7.0f) - verticalLineToRelative(-0.75f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - } - } - return _calendarCancel!! - } - -private var _calendarCancel: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarChat.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarChat.kt deleted file mode 100644 index ecf43e5b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarChat.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarChat: ImageVector - get() { - if (_calendarChat != null) { - return _calendarChat!! - } - _calendarChat = fluentIcon(name = "Filled.CalendarChat") { - fluentPath { - moveTo(21.0f, 8.5f) - verticalLineToRelative(3.52f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, -10.0f, 5.48f) - curveToRelative(0.0f, 0.99f, 0.22f, 1.92f, 0.61f, 2.76f) - lineToRelative(-0.22f, 0.74f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 8.5f) - horizontalLineToRelative(18.0f) - close() - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - lineTo(21.0f, 7.0f) - lineTo(3.0f, 7.0f) - verticalLineToRelative(-0.75f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(21.0f, 13.26f) - arcTo(5.48f, 5.48f, 0.0f, false, false, 17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -4.81f, 8.17f) - lineToRelative(-0.67f, 2.19f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.63f, 0.62f) - lineToRelative(2.18f, -0.67f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 21.0f, 13.25f) - close() - moveTo(15.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - horizontalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(17.5f, 19.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - close() - } - } - return _calendarChat!! - } - -private var _calendarChat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarCheckmark.kt deleted file mode 100644 index 22a8d047..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarCheckmark.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarCheckmark: ImageVector - get() { - if (_calendarCheckmark != null) { - return _calendarCheckmark!! - } - _calendarCheckmark = fluentIcon(name = "Filled.CalendarCheckmark") { - fluentPath { - moveTo(21.0f, 8.5f) - verticalLineToRelative(3.52f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 8.5f) - horizontalLineToRelative(18.0f) - close() - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - lineTo(21.0f, 7.0f) - lineTo(3.0f, 7.0f) - verticalLineToRelative(-0.75f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-3.65f, 3.64f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _calendarCheckmark!! - } - -private var _calendarCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarClock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarClock.kt deleted file mode 100644 index 51a1f55a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarClock.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarClock: ImageVector - get() { - if (_calendarClock != null) { - return _calendarClock!! - } - _calendarClock = fluentIcon(name = "Filled.CalendarClock") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - lineTo(21.0f, 7.0f) - lineTo(3.0f, 7.0f) - verticalLineToRelative(-0.75f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(21.0f, 8.5f) - verticalLineToRelative(3.52f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 8.5f) - horizontalLineToRelative(18.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(17.5f, 17.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - lineTo(17.0f, 18.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - verticalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - verticalLineToRelative(2.5f) - close() - } - } - return _calendarClock!! - } - -private var _calendarClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarDataBar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarDataBar.kt deleted file mode 100644 index c37d0004..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarDataBar.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarDataBar: ImageVector - get() { - if (_calendarDataBar != null) { - return _calendarDataBar!! - } - _calendarDataBar = fluentIcon(name = "Filled.CalendarDataBar") { - fluentPath { - moveTo(21.0f, 8.5f) - verticalLineToRelative(4.55f) - curveToRelative(-0.37f, 0.07f, -0.7f, 0.23f, -1.0f, 0.45f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) - verticalLineToRelative(2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.0f, 2.0f) - lineTo(11.0f, 21.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 8.5f) - horizontalLineToRelative(18.0f) - close() - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - lineTo(21.0f, 7.0f) - lineTo(3.0f, 7.0f) - verticalLineToRelative(-0.75f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.5f, 12.0f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) - verticalLineToRelative(-8.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - close() - moveTo(13.5f, 16.0f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(4.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - close() - moveTo(20.0f, 15.5f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - verticalLineToRelative(6.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - verticalLineToRelative(-6.0f) - close() - } - } - return _calendarDataBar!! - } - -private var _calendarDataBar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarDay.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarDay.kt deleted file mode 100644 index d61310ec..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarDay.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarDay: ImageVector - get() { - if (_calendarDay != null) { - return _calendarDay!! - } - _calendarDay = fluentIcon(name = "Filled.CalendarDay") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(16.25f, 11.0f) - horizontalLineToRelative(-8.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(8.5f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - close() - moveTo(15.5f, 12.5f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(-7.0f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(7.0f) - close() - moveTo(16.25f, 7.25f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - } - } - return _calendarDay!! - } - -private var _calendarDay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarEdit.kt deleted file mode 100644 index 6adbfaf7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarEdit.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarEdit: ImageVector - get() { - if (_calendarEdit != null) { - return _calendarEdit!! - } - _calendarEdit = fluentIcon(name = "Filled.CalendarEdit") { - fluentPath { - moveTo(11.52f, 19.58f) - lineTo(11.16f, 21.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 8.5f) - horizontalLineToRelative(18.0f) - verticalLineToRelative(2.51f) - curveToRelative(-0.93f, -0.08f, -1.9f, 0.24f, -2.6f, 0.95f) - lineToRelative(-5.91f, 5.9f) - curveToRelative(-0.47f, 0.48f, -0.8f, 1.07f, -0.97f, 1.72f) - close() - moveTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - lineTo(3.0f, 7.0f) - horizontalLineToRelative(18.0f) - verticalLineToRelative(-0.75f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.34f, -0.6f, 0.78f, -0.71f, 1.25f) - lineToRelative(-0.46f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _calendarEdit!! - } - -private var _calendarEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarEmpty.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarEmpty.kt deleted file mode 100644 index b673bbc8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarEmpty.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarEmpty: ImageVector - get() { - if (_calendarEmpty != null) { - return _calendarEmpty!! - } - _calendarEmpty = fluentIcon(name = "Filled.CalendarEmpty") { - fluentPath { - moveTo(21.0f, 8.5f) - verticalLineToRelative(9.25f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineTo(6.25f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - verticalLineTo(8.5f) - horizontalLineToRelative(18.0f) - close() - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineTo(7.0f) - horizontalLineTo(3.0f) - verticalLineToRelative(-0.75f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - } - } - return _calendarEmpty!! - } - -private var _calendarEmpty: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarError.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarError.kt deleted file mode 100644 index c4572759..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarError.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarError: ImageVector - get() { - if (_calendarError != null) { - return _calendarError!! - } - _calendarError = fluentIcon(name = "Filled.CalendarError") { - fluentPath { - moveTo(21.0f, 12.02f) - lineTo(21.0f, 8.5f) - lineTo(3.0f, 8.5f) - verticalLineToRelative(9.25f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(5.77f) - arcTo(6.5f, 6.5f, 0.0f, false, true, 21.0f, 12.02f) - close() - moveTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - lineTo(3.0f, 7.0f) - horizontalLineToRelative(18.0f) - verticalLineToRelative(-0.75f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(17.0f, 14.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - verticalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(18.13f, 20.5f) - arcToRelative(0.62f, 0.62f, 0.0f, true, true, -1.25f, 0.0f) - arcToRelative(0.62f, 0.62f, 0.0f, false, true, 1.25f, 0.0f) - close() - } - } - return _calendarError!! - } - -private var _calendarError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarLock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarLock.kt deleted file mode 100644 index 3a3b3d1a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarLock.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarLock: ImageVector - get() { - if (_calendarLock != null) { - return _calendarLock!! - } - _calendarLock = fluentIcon(name = "Filled.CalendarLock") { - fluentPath { - moveTo(21.0f, 8.5f) - verticalLineToRelative(3.05f) - arcTo(3.49f, 3.49f, 0.0f, false, false, 15.0f, 14.0f) - verticalLineToRelative(0.05f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.0f, 2.45f) - lineTo(13.0f, 21.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 8.5f) - horizontalLineToRelative(18.0f) - close() - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - lineTo(21.0f, 7.0f) - lineTo(3.0f, 7.0f) - verticalLineToRelative(-0.75f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(16.0f, 15.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(6.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(21.0f, 15.0f) - verticalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) - verticalLineToRelative(1.0f) - close() - moveTo(17.5f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(19.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - } - } - return _calendarLock!! - } - -private var _calendarLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarMonth.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarMonth.kt deleted file mode 100644 index 60918368..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarMonth.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarMonth: ImageVector - get() { - if (_calendarMonth != null) { - return _calendarMonth!! - } - _calendarMonth = fluentIcon(name = "Filled.CalendarMonth") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(7.75f, 13.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(12.0f, 13.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(7.75f, 8.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(12.0f, 8.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(16.25f, 8.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - } - } - return _calendarMonth!! - } - -private var _calendarMonth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarMultiple.kt deleted file mode 100644 index d5c4fbf7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarMultiple.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarMultiple: ImageVector - get() { - if (_calendarMultiple != null) { - return _calendarMultiple!! - } - _calendarMultiple = fluentIcon(name = "Filled.CalendarMultiple") { - fluentPath { - moveTo(20.0f, 5.0f) - verticalLineToRelative(11.35f) - arcTo(3.65f, 3.65f, 0.0f, false, true, 16.35f, 20.0f) - horizontalLineTo(5.01f) - curveToRelative(0.57f, 0.9f, 1.59f, 1.5f, 2.74f, 1.5f) - horizontalLineToRelative(8.6f) - curveToRelative(2.84f, 0.0f, 5.15f, -2.3f, 5.15f, -5.15f) - verticalLineToRelative(-8.6f) - curveToRelative(0.0f, -1.15f, -0.6f, -2.17f, -1.5f, -2.74f) - close() - moveTo(2.0f, 7.5f) - verticalLineToRelative(8.25f) - curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) - horizontalLineToRelative(10.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineTo(7.5f) - horizontalLineTo(2.0f) - close() - moveTo(5.25f, 2.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) - verticalLineTo(6.0f) - horizontalLineToRelative(17.0f) - verticalLineToRelative(-0.75f) - curveTo(19.0f, 3.45f, 17.54f, 2.0f, 15.75f, 2.0f) - horizontalLineTo(5.25f) - close() - } - } - return _calendarMultiple!! - } - -private var _calendarMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarPerson.kt deleted file mode 100644 index 4264d579..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarPerson.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarPerson: ImageVector - get() { - if (_calendarPerson != null) { - return _calendarPerson!! - } - _calendarPerson = fluentIcon(name = "Filled.CalendarPerson") { - fluentPath { - moveTo(21.0f, 12.05f) - lineTo(21.0f, 8.5f) - lineTo(3.0f, 8.5f) - verticalLineToRelative(9.25f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(6.92f) - arcToRelative(3.74f, 3.74f, 0.0f, false, true, -0.17f, -1.13f) - verticalLineToRelative(-0.1f) - arcTo(2.77f, 2.77f, 0.0f, false, true, 15.77f, 17.0f) - horizontalLineToRelative(0.28f) - arcToRelative(3.49f, 3.49f, 0.0f, false, true, 2.45f, -6.0f) - curveToRelative(0.98f, 0.0f, 1.86f, 0.4f, 2.5f, 1.05f) - close() - moveTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - lineTo(3.0f, 7.0f) - horizontalLineToRelative(18.0f) - verticalLineToRelative(-0.75f) - close() - moveTo(21.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(23.0f, 19.88f) - curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) - reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _calendarPerson!! - } - -private var _calendarPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarPlay.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarPlay.kt deleted file mode 100644 index 1227ee33..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarPlay.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarPlay: ImageVector - get() { - if (_calendarPlay != null) { - return _calendarPlay!! - } - _calendarPlay = fluentIcon(name = "Filled.CalendarPlay") { - fluentPath { - moveTo(21.0f, 8.5f) - verticalLineToRelative(3.52f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 8.5f) - horizontalLineToRelative(18.0f) - close() - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - lineTo(21.0f, 7.0f) - lineTo(3.0f, 7.0f) - verticalLineToRelative(-0.75f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.5f, 23.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) - close() - moveTo(16.6f, 15.0f) - curveToRelative(0.11f, 0.0f, 0.22f, 0.03f, 0.31f, 0.1f) - lineToRelative(2.81f, 1.84f) - arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.28f, 0.52f) - arcToRelative(0.65f, 0.65f, 0.0f, false, true, -0.11f, 0.36f) - arcToRelative(0.56f, 0.56f, 0.0f, false, true, -0.16f, 0.16f) - lineToRelative(-2.8f, 1.92f) - arcToRelative(0.66f, 0.66f, 0.0f, false, true, -0.17f, 0.07f) - arcToRelative(0.55f, 0.55f, 0.0f, false, true, -0.4f, -0.02f) - arcToRelative(0.7f, 0.7f, 0.0f, false, true, -0.18f, -0.13f) - arcToRelative(0.61f, 0.61f, 0.0f, false, true, -0.18f, -0.44f) - verticalLineToRelative(-3.76f) - arcToRelative(0.62f, 0.62f, 0.0f, false, true, 0.37f, -0.57f) - arcToRelative(0.53f, 0.53f, 0.0f, false, true, 0.23f, -0.05f) - close() - } - } - return _calendarPlay!! - } - -private var _calendarPlay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarQuestionMark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarQuestionMark.kt deleted file mode 100644 index 23816729..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarQuestionMark.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarQuestionMark: ImageVector - get() { - if (_calendarQuestionMark != null) { - return _calendarQuestionMark!! - } - _calendarQuestionMark = fluentIcon(name = "Filled.CalendarQuestionMark") { - fluentPath { - moveTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - lineTo(3.0f, 7.0f) - horizontalLineToRelative(18.0f) - verticalLineToRelative(-0.75f) - close() - moveTo(21.0f, 12.02f) - lineTo(21.0f, 8.5f) - lineTo(3.0f, 8.5f) - verticalLineToRelative(9.25f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(5.77f) - arcTo(6.5f, 6.5f, 0.0f, false, true, 21.0f, 12.02f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(16.88f, 20.38f) - arcToRelative(0.62f, 0.62f, 0.0f, true, true, 1.24f, 0.0f) - arcToRelative(0.62f, 0.62f, 0.0f, false, true, -1.24f, 0.0f) - close() - moveTo(15.65f, 15.83f) - curveToRelative(-0.01f, -1.14f, 0.8f, -1.96f, 1.85f, -1.96f) - curveToRelative(1.03f, 0.0f, 1.85f, 0.85f, 1.85f, 1.95f) - curveToRelative(0.0f, 0.51f, -0.15f, 0.85f, -0.52f, 1.3f) - lineToRelative(-0.14f, 0.15f) - lineToRelative(-0.27f, 0.3f) - lineToRelative(-0.1f, 0.1f) - lineToRelative(-0.08f, 0.11f) - curveToRelative(-0.18f, 0.23f, -0.24f, 0.39f, -0.24f, 0.6f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - curveToRelative(0.0f, -0.53f, 0.15f, -0.86f, 0.53f, -1.32f) - lineToRelative(0.14f, -0.16f) - lineToRelative(0.27f, -0.29f) - lineToRelative(0.1f, -0.1f) - lineToRelative(0.09f, -0.12f) - curveToRelative(0.17f, -0.22f, 0.22f, -0.37f, 0.22f, -0.57f) - curveToRelative(0.0f, -0.55f, -0.38f, -0.95f, -0.85f, -0.95f) - curveToRelative(-0.5f, 0.0f, -0.86f, 0.37f, -0.85f, 0.95f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - close() - } - } - return _calendarQuestionMark!! - } - -private var _calendarQuestionMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarReply.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarReply.kt deleted file mode 100644 index 83d37ce5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarReply.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarReply: ImageVector - get() { - if (_calendarReply != null) { - return _calendarReply!! - } - _calendarReply = fluentIcon(name = "Filled.CalendarReply") { - fluentPath { - moveTo(21.0f, 8.5f) - verticalLineToRelative(3.52f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 8.5f) - horizontalLineToRelative(18.0f) - close() - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - lineTo(21.0f, 7.0f) - lineTo(3.0f, 7.0f) - verticalLineToRelative(-0.75f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(16.35f, 15.35f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(1.5f, 1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-0.64f, -0.65f) - horizontalLineToRelative(2.04f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(0.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-0.25f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-2.04f) - lineToRelative(0.64f, -0.65f) - close() - } - } - return _calendarReply!! - } - -private var _calendarReply: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarRtl.kt deleted file mode 100644 index db05d7d4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarRtl.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarRtl: ImageVector - get() { - if (_calendarRtl != null) { - return _calendarRtl!! - } - _calendarRtl = fluentIcon(name = "Filled.CalendarRtl") { - fluentPath { - moveTo(3.0f, 8.5f) - verticalLineToRelative(9.25f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 8.5f) - lineTo(3.0f, 8.5f) - close() - moveTo(16.75f, 15.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(12.0f, 15.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(16.75f, 10.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(12.0f, 10.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(7.25f, 10.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - lineTo(3.0f, 7.0f) - horizontalLineToRelative(18.0f) - verticalLineToRelative(-0.75f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - } - } - return _calendarRtl!! - } - -private var _calendarRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarSettings.kt deleted file mode 100644 index 2bd3fd7b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarSettings.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarSettings: ImageVector - get() { - if (_calendarSettings != null) { - return _calendarSettings!! - } - _calendarSettings = fluentIcon(name = "Filled.CalendarSettings") { - fluentPath { - moveTo(21.0f, 8.5f) - verticalLineToRelative(3.52f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 8.5f) - horizontalLineToRelative(18.0f) - close() - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - lineTo(21.0f, 7.0f) - lineTo(3.0f, 7.0f) - verticalLineToRelative(-0.75f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(14.28f, 13.98f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.58f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) - lineToRelative(0.54f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) - lineToRelative(-0.18f, 0.64f) - curveToRelative(0.43f, 0.38f, 0.93f, 0.7f, 1.48f, 0.92f) - lineToRelative(0.5f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.47f, -0.9f) - lineToRelative(-0.2f, -0.7f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, -2.5f) - lineToRelative(0.58f, -0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, -1.8f) - lineToRelative(-0.55f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.2f, -0.63f) - curveToRelative(-0.45f, -0.39f, -0.95f, -0.7f, -1.5f, -0.93f) - lineToRelative(-0.49f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.91f) - lineToRelative(0.2f, 0.69f) - close() - moveTo(17.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) - close() - } - } - return _calendarSettings!! - } - -private var _calendarSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarShield.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarShield.kt deleted file mode 100644 index cc68c472..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarShield.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarShield: ImageVector - get() { - if (_calendarShield != null) { - return _calendarShield!! - } - _calendarShield = fluentIcon(name = "Filled.CalendarShield") { - fluentPath { - moveTo(21.0f, 8.5f) - verticalLineToRelative(4.11f) - arcToRelative(3.16f, 3.16f, 0.0f, false, true, -1.0f, -0.38f) - curveToRelative(-0.33f, -0.19f, -0.66f, -0.45f, -1.0f, -0.8f) - arcToRelative(1.39f, 1.39f, 0.0f, false, false, -2.0f, 0.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -2.6f, 1.24f) - curveToRelative(-0.81f, 0.0f, -1.4f, 0.67f, -1.4f, 1.41f) - verticalLineToRelative(2.8f) - curveToRelative(0.04f, 1.15f, 0.3f, 2.2f, 0.82f, 3.1f) - curveToRelative(0.2f, 0.37f, 0.44f, 0.71f, 0.72f, 1.02f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 8.5f) - horizontalLineToRelative(18.0f) - close() - moveTo(18.0f, 12.0f) - arcToRelative(0.4f, 0.4f, 0.0f, false, false, -0.28f, 0.12f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -3.32f, 1.55f) - arcToRelative(0.4f, 0.4f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(2.77f) - curveToRelative(0.04f, 1.01f, 0.27f, 1.9f, 0.69f, 2.65f) - curveToRelative(0.32f, 0.58f, 0.76f, 1.08f, 1.31f, 1.5f) - curveToRelative(0.52f, 0.4f, 1.15f, 0.73f, 1.87f, 0.98f) - curveToRelative(0.09f, 0.03f, 0.18f, 0.03f, 0.26f, 0.0f) - curveToRelative(2.56f, -0.89f, 3.87f, -2.71f, 3.87f, -5.4f) - lineTo(22.0f, 14.0f) - arcToRelative(0.4f, 0.4f, 0.0f, false, false, -0.4f, -0.33f) - arcToRelative(4.21f, 4.21f, 0.0f, false, true, -2.1f, -0.57f) - arcToRelative(5.55f, 5.55f, 0.0f, false, true, -1.22f, -0.98f) - arcTo(0.4f, 0.4f, 0.0f, false, false, 18.0f, 12.0f) - close() - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - lineTo(21.0f, 7.0f) - lineTo(3.0f, 7.0f) - verticalLineToRelative(-0.75f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - } - } - return _calendarShield!! - } - -private var _calendarShield: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarStar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarStar.kt deleted file mode 100644 index fea8ed15..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarStar.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarStar: ImageVector - get() { - if (_calendarStar != null) { - return _calendarStar!! - } - _calendarStar = fluentIcon(name = "Filled.CalendarStar") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(21.0f, 8.5f) - verticalLineToRelative(3.52f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 8.5f) - horizontalLineToRelative(18.0f) - close() - moveTo(16.98f, 14.05f) - lineTo(16.94f, 14.15f) - lineTo(16.39f, 15.93f) - horizontalLineToRelative(-1.8f) - curveToRelative(-0.54f, 0.0f, -0.78f, 0.67f, -0.42f, 1.04f) - lineToRelative(0.07f, 0.06f) - lineToRelative(1.46f, 1.1f) - lineToRelative(-0.56f, 1.8f) - curveToRelative(-0.16f, 0.52f, 0.38f, 0.97f, 0.82f, 0.72f) - lineToRelative(0.08f, -0.05f) - lineToRelative(1.46f, -1.1f) - lineToRelative(1.46f, 1.1f) - curveToRelative(0.43f, 0.33f, 1.0f, -0.07f, 0.92f, -0.58f) - lineToRelative(-0.02f, -0.1f) - lineToRelative(-0.56f, -1.78f) - lineToRelative(1.46f, -1.1f) - curveToRelative(0.43f, -0.33f, 0.25f, -1.02f, -0.25f, -1.1f) - lineTo(18.61f, 15.94f) - lineToRelative(-0.55f, -1.8f) - arcToRelative(0.58f, 0.58f, 0.0f, false, false, -1.08f, -0.1f) - close() - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - lineTo(21.0f, 7.0f) - lineTo(3.0f, 7.0f) - verticalLineToRelative(-0.75f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - } - } - return _calendarStar!! - } - -private var _calendarStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarSync.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarSync.kt deleted file mode 100644 index 8db166ec..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarSync.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarSync: ImageVector - get() { - if (_calendarSync != null) { - return _calendarSync!! - } - _calendarSync = fluentIcon(name = "Filled.CalendarSync") { - fluentPath { - moveTo(21.0f, 8.5f) - verticalLineToRelative(3.52f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 8.5f) - horizontalLineToRelative(18.0f) - close() - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - lineTo(21.0f, 7.0f) - lineTo(3.0f, 7.0f) - verticalLineToRelative(-0.75f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) - close() - moveTo(20.5f, 14.0f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - verticalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.8f, -0.59f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) - verticalLineToRelative(-0.55f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - close() - moveTo(15.0f, 19.95f) - verticalLineToRelative(0.55f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.77f, 0.65f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) - close() - } - } - return _calendarSync!! - } - -private var _calendarSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarToday.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarToday.kt deleted file mode 100644 index 74ba35d7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarToday.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarToday: ImageVector - get() { - if (_calendarToday != null) { - return _calendarToday!! - } - _calendarToday = fluentIcon(name = "Filled.CalendarToday") { - fluentPath { - moveTo(13.25f, 11.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(21.0f, 8.5f) - verticalLineToRelative(9.25f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-4.0f) - lineTo(13.75f, 19.43f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 1.66f, -2.99f) - lineToRelative(-2.25f, -2.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.32f, 0.0f) - lineToRelative(-2.25f, 2.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 1.66f, 2.99f) - lineTo(10.25f, 21.0f) - horizontalLineToRelative(-4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 8.5f) - horizontalLineToRelative(18.0f) - close() - moveTo(12.0f, 14.0f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, -4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) - close() - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - lineTo(21.0f, 7.0f) - lineTo(3.0f, 7.0f) - verticalLineToRelative(-0.75f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(14.81f, 18.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 0.06f) - lineToRelative(-1.0f, -0.89f) - verticalLineToRelative(3.83f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-3.83f) - lineToRelative(-1.0f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.0f, -1.13f) - lineToRelative(2.25f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.0f, 0.0f) - lineToRelative(2.25f, 2.0f) - curveToRelative(0.3f, 0.27f, 0.34f, 0.75f, 0.06f, 1.06f) - close() - } - } - return _calendarToday!! - } - -private var _calendarToday: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarToolbox.kt deleted file mode 100644 index 9a85fc3a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarToolbox.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarToolbox: ImageVector - get() { - if (_calendarToolbox != null) { - return _calendarToolbox!! - } - _calendarToolbox = fluentIcon(name = "Filled.CalendarToolbox") { - fluentPath { - moveTo(11.0f, 16.5f) - lineTo(11.0f, 21.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 8.5f) - horizontalLineToRelative(18.0f) - verticalLineToRelative(3.38f) - arcToRelative(2.74f, 2.74f, 0.0f, false, false, -1.75f, -0.63f) - lineTo(15.6f, 11.25f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 13.0f, 14.0f) - verticalLineToRelative(0.05f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.0f, 2.45f) - close() - moveTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - lineTo(3.0f, 7.0f) - horizontalLineToRelative(18.0f) - verticalLineToRelative(-0.75f) - close() - moveTo(14.0f, 15.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - lineTo(12.0f, 18.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(16.0f, 18.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(20.5f, 18.0f) - lineTo(23.0f, 18.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(21.0f, 15.0f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(1.0f) - close() - moveTo(15.5f, 14.0f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(12.0f, 21.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - lineTo(23.0f, 19.5f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - close() - } - } - return _calendarToolbox!! - } - -private var _calendarToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarWeekNumbers.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarWeekNumbers.kt deleted file mode 100644 index 94313eb3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarWeekNumbers.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarWeekNumbers: ImageVector - get() { - if (_calendarWeekNumbers != null) { - return _calendarWeekNumbers!! - } - _calendarWeekNumbers = fluentIcon(name = "Filled.CalendarWeekNumbers") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(8.49f, 7.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.49f, 0.1f) - verticalLineToRelative(1.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - verticalLineToRelative(-1.1f) - close() - moveTo(8.49f, 15.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.49f, 0.1f) - verticalLineToRelative(1.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - verticalLineToRelative(-1.1f) - close() - moveTo(7.76f, 10.67f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(7.0f, 12.57f) - verticalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - verticalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.74f, -0.65f) - close() - } - } - return _calendarWeekNumbers!! - } - -private var _calendarWeekNumbers: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarWeekStart.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarWeekStart.kt deleted file mode 100644 index 0fedfe1b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarWeekStart.kt +++ /dev/null @@ -1,39 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarWeekStart: ImageVector - get() { - if (_calendarWeekStart != null) { - return _calendarWeekStart!! - } - _calendarWeekStart = fluentIcon(name = "Filled.CalendarWeekStart") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(7.75f, 7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-8.5f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 7.75f, 7.0f) - close() - } - } - return _calendarWeekStart!! - } - -private var _calendarWeekStart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarWorkWeek.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarWorkWeek.kt deleted file mode 100644 index 0976eed9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalendarWorkWeek.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalendarWorkWeek: ImageVector - get() { - if (_calendarWorkWeek != null) { - return _calendarWorkWeek!! - } - _calendarWorkWeek = fluentIcon(name = "Filled.CalendarWorkWeek") { - fluentPath { - moveTo(8.5f, 11.0f) - lineTo(8.5f, 8.5f) - horizontalLineToRelative(7.0f) - lineTo(15.5f, 11.0f) - horizontalLineToRelative(-7.0f) - close() - moveTo(17.75f, 21.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(7.75f, 7.0f) - horizontalLineToRelative(8.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _calendarWorkWeek!! - } - -private var _calendarWorkWeek: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Call.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Call.kt deleted file mode 100644 index 3ec7900b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Call.kt +++ /dev/null @@ -1,39 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Call: ImageVector - get() { - if (_call != null) { - return _call!! - } - _call = fluentIcon(name = "Filled.Call") { - fluentPath { - moveToRelative(7.77f, 2.44f) - lineToRelative(1.08f, -0.35f) - curveToRelative(1.0f, -0.32f, 2.09f, 0.2f, 2.52f, 1.22f) - lineToRelative(0.86f, 2.03f) - curveToRelative(0.37f, 0.88f, 0.16f, 1.92f, -0.52f, 2.57f) - lineToRelative(-1.9f, 1.8f) - arcToRelative(8.68f, 8.68f, 0.0f, false, false, 3.36f, 5.77f) - lineToRelative(2.28f, -0.76f) - curveToRelative(0.86f, -0.29f, 1.8f, 0.04f, 2.33f, 0.82f) - lineToRelative(1.23f, 1.8f) - curveToRelative(0.62f, 0.91f, 0.5f, 2.16f, -0.26f, 2.93f) - lineToRelative(-0.81f, 0.82f) - arcToRelative(3.02f, 3.02f, 0.0f, false, true, -3.06f, 0.77f) - curveToRelative(-2.53f, -0.79f, -4.87f, -3.14f, -7.0f, -7.05f) - curveTo(5.75f, 10.9f, 5.0f, 7.57f, 5.62f, 4.84f) - arcToRelative(3.26f, 3.26f, 0.0f, false, true, 2.15f, -2.4f) - close() - } - } - return _call!! - } - -private var _call: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallAdd.kt deleted file mode 100644 index a8f6eadf..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallAdd.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CallAdd: ImageVector - get() { - if (_callAdd != null) { - return _callAdd!! - } - _callAdd = fluentIcon(name = "Filled.CallAdd") { - fluentPath { - moveToRelative(9.37f, 3.31f) - lineToRelative(0.86f, 2.03f) - curveToRelative(0.37f, 0.88f, 0.16f, 1.92f, -0.52f, 2.57f) - lineToRelative(-1.9f, 1.8f) - arcToRelative(8.01f, 8.01f, 0.0f, false, false, 1.1f, 3.17f) - arcToRelative(8.68f, 8.68f, 0.0f, false, false, 2.26f, 2.6f) - lineToRelative(2.28f, -0.76f) - curveToRelative(0.86f, -0.29f, 1.8f, 0.04f, 2.33f, 0.82f) - lineToRelative(1.23f, 1.8f) - curveToRelative(0.62f, 0.91f, 0.5f, 2.16f, -0.26f, 2.92f) - lineToRelative(-0.81f, 0.83f) - arcToRelative(3.02f, 3.02f, 0.0f, false, true, -3.06f, 0.77f) - curveToRelative(-2.53f, -0.79f, -4.87f, -3.14f, -7.0f, -7.05f) - curveTo(3.75f, 10.89f, 3.0f, 7.57f, 3.62f, 4.84f) - arcToRelative(3.26f, 3.26f, 0.0f, false, true, 2.15f, -2.4f) - lineToRelative(1.08f, -0.35f) - curveToRelative(1.0f, -0.32f, 2.09f, 0.2f, 2.52f, 1.22f) - close() - moveTo(17.15f, 2.01f) - lineTo(17.25f, 2.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.64f) - lineToRelative(0.01f, 0.1f) - lineTo(18.0f, 6.0f) - horizontalLineToRelative(3.25f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.75f, 0.65f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(18.0f, 7.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) - verticalLineToRelative(-0.1f) - lineTo(16.5f, 7.5f) - horizontalLineToRelative(-3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - horizontalLineToRelative(0.1f) - lineTo(16.5f, 6.0f) - lineTo(16.5f, 2.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.75f) - horizontalLineToRelative(0.1f) - horizontalLineToRelative(-0.1f) - close() - } - } - return _callAdd!! - } - -private var _callAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallCheckmark.kt deleted file mode 100644 index acb6002c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallCheckmark.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CallCheckmark: ImageVector - get() { - if (_callCheckmark != null) { - return _callCheckmark!! - } - _callCheckmark = fluentIcon(name = "Filled.CallCheckmark") { - fluentPath { - moveTo(21.78f, 3.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineTo(15.0f, 7.94f) - lineToRelative(-1.87f, -1.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(2.4f, 2.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 0.0f) - lineToRelative(6.25f, -6.25f) - close() - moveTo(6.85f, 2.1f) - lineToRelative(-1.08f, 0.34f) - arcToRelative(3.26f, 3.26f, 0.0f, false, false, -2.15f, 2.4f) - curveToRelative(-0.62f, 2.73f, 0.13f, 6.05f, 2.26f, 9.97f) - curveToRelative(2.13f, 3.91f, 4.47f, 6.26f, 7.0f, 7.05f) - curveToRelative(1.08f, 0.34f, 2.24f, 0.04f, 3.06f, -0.77f) - lineToRelative(0.81f, -0.82f) - curveToRelative(0.77f, -0.77f, 0.88f, -2.02f, 0.26f, -2.92f) - lineToRelative(-1.23f, -1.81f) - arcToRelative(2.03f, 2.03f, 0.0f, false, false, -2.33f, -0.82f) - lineToRelative(-2.28f, 0.76f) - arcToRelative(8.68f, 8.68f, 0.0f, false, true, -2.27f, -2.6f) - arcToRelative(8.01f, 8.01f, 0.0f, false, true, -1.08f, -3.17f) - lineToRelative(1.9f, -1.8f) - curveToRelative(0.67f, -0.65f, 0.88f, -1.69f, 0.5f, -2.57f) - lineToRelative(-0.85f, -2.03f) - arcTo(2.06f, 2.06f, 0.0f, false, false, 6.85f, 2.1f) - close() - } - } - return _callCheckmark!! - } - -private var _callCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallDismiss.kt deleted file mode 100644 index 7bf707c8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallDismiss.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CallDismiss: ImageVector - get() { - if (_callDismiss != null) { - return _callDismiss!! - } - _callDismiss = fluentIcon(name = "Filled.CallDismiss") { - fluentPath { - moveTo(21.78f, 2.22f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineTo(18.56f, 6.5f) - lineToRelative(3.22f, 3.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(17.5f, 7.56f) - lineToRelative(-3.22f, 3.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(3.22f, -3.22f) - lineToRelative(-3.22f, -3.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(3.22f, 3.22f) - lineToRelative(3.22f, -3.22f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(9.37f, 3.32f) - lineToRelative(0.86f, 2.02f) - curveToRelative(0.37f, 0.88f, 0.16f, 1.92f, -0.52f, 2.57f) - lineToRelative(-1.9f, 1.8f) - arcToRelative(8.01f, 8.01f, 0.0f, false, false, 1.1f, 3.17f) - arcToRelative(8.68f, 8.68f, 0.0f, false, false, 2.26f, 2.6f) - lineToRelative(2.28f, -0.76f) - curveToRelative(0.86f, -0.29f, 1.8f, 0.04f, 2.33f, 0.82f) - lineToRelative(1.23f, 1.8f) - curveToRelative(0.62f, 0.91f, 0.5f, 2.16f, -0.26f, 2.93f) - lineToRelative(-0.81f, 0.82f) - arcToRelative(3.02f, 3.02f, 0.0f, false, true, -3.06f, 0.77f) - curveToRelative(-2.53f, -0.79f, -4.87f, -3.14f, -7.0f, -7.05f) - curveTo(3.75f, 10.9f, 3.0f, 7.57f, 3.62f, 4.84f) - arcToRelative(3.26f, 3.26f, 0.0f, false, true, 2.15f, -2.4f) - lineToRelative(1.08f, -0.35f) - curveToRelative(1.0f, -0.32f, 2.09f, 0.2f, 2.52f, 1.22f) - close() - } - } - return _callDismiss!! - } - -private var _callDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallEnd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallEnd.kt deleted file mode 100644 index ffbc8d12..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallEnd.kt +++ /dev/null @@ -1,39 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CallEnd: ImageVector - get() { - if (_callEnd != null) { - return _callEnd!! - } - _callEnd = fluentIcon(name = "Filled.CallEnd") { - fluentPath { - moveToRelative(21.95f, 13.0f) - lineToRelative(-0.2f, 1.03f) - arcToRelative(1.92f, 1.92f, 0.0f, false, true, -2.12f, 1.52f) - lineToRelative(-2.05f, -0.2f) - arcToRelative(2.16f, 2.16f, 0.0f, false, true, -1.87f, -1.56f) - lineToRelative(-0.64f, -2.36f) - arcToRelative(8.1f, 8.1f, 0.0f, false, false, -6.23f, 0.18f) - lineToRelative(-0.39f, 2.21f) - arcToRelative(1.9f, 1.9f, 0.0f, false, true, -1.7f, 1.55f) - lineToRelative(-2.04f, 0.2f) - arcToRelative(2.17f, 2.17f, 0.0f, false, true, -2.28f, -1.5f) - lineToRelative(-0.3f, -1.05f) - arcToRelative(2.82f, 2.82f, 0.0f, false, true, 0.71f, -2.85f) - curveToRelative(1.78f, -1.73f, 4.75f, -2.6f, 8.9f, -2.6f) - curveToRelative(4.17f, 0.0f, 7.23f, 0.86f, 9.2f, 2.59f) - curveToRelative(0.82f, 0.73f, 1.2f, 1.8f, 1.0f, 2.83f) - close() - } - } - return _callEnd!! - } - -private var _callEnd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallForward.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallForward.kt deleted file mode 100644 index d70ddbe9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallForward.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CallForward: ImageVector - get() { - if (_callForward != null) { - return _callForward!! - } - _callForward = fluentIcon(name = "Filled.CallForward") { - fluentPath { - moveToRelative(9.93f, 2.05f) - lineToRelative(1.03f, 0.2f) - curveToRelative(0.97f, 0.18f, 1.63f, 1.1f, 1.53f, 2.12f) - lineToRelative(-0.2f, 2.05f) - curveToRelative(-0.09f, 0.89f, -0.72f, 1.65f, -1.57f, 1.88f) - lineToRelative(-2.35f, 0.63f) - arcToRelative(8.1f, 8.1f, 0.0f, false, false, 0.18f, 6.23f) - lineToRelative(2.2f, 0.4f) - arcToRelative(1.9f, 1.9f, 0.0f, false, true, 1.55f, 1.7f) - lineToRelative(0.2f, 2.04f) - arcToRelative(2.17f, 2.17f, 0.0f, false, true, -1.5f, 2.28f) - lineToRelative(-1.04f, 0.3f) - curveToRelative(-1.04f, 0.32f, -2.12f, 0.04f, -2.85f, -0.71f) - curveToRelative(-1.74f, -1.78f, -2.6f, -4.75f, -2.61f, -8.91f) - curveToRelative(0.0f, -4.17f, 0.86f, -7.23f, 2.59f, -9.2f) - arcToRelative(3.05f, 3.05f, 0.0f, false, true, 2.84f, -1.01f) - close() - moveTo(16.7f, 7.15f) - lineTo(16.78f, 7.22f) - lineTo(20.78f, 11.22f) - curveToRelative(0.26f, 0.26f, 0.29f, 0.68f, 0.07f, 0.97f) - lineToRelative(-0.07f, 0.09f) - lineToRelative(-4.0f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.97f) - lineToRelative(0.07f, -0.09f) - lineToRelative(2.71f, -2.72f) - lineTo(12.0f, 12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.39f, 0.27f, -0.7f, 0.64f, -0.75f) - horizontalLineToRelative(6.54f) - lineToRelative(-2.72f, -2.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - curveToRelative(0.24f, -0.24f, 0.6f, -0.28f, 0.87f, -0.14f) - lineToRelative(0.1f, 0.07f) - close() - } - } - return _callForward!! - } - -private var _callForward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallInbound.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallInbound.kt deleted file mode 100644 index 164ba0af..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallInbound.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CallInbound: ImageVector - get() { - if (_callInbound != null) { - return _callInbound!! - } - _callInbound = fluentIcon(name = "Filled.CallInbound") { - fluentPath { - moveToRelative(9.37f, 3.31f) - lineToRelative(0.86f, 2.03f) - curveToRelative(0.37f, 0.88f, 0.16f, 1.92f, -0.52f, 2.57f) - lineToRelative(-1.9f, 1.8f) - arcToRelative(8.01f, 8.01f, 0.0f, false, false, 1.1f, 3.17f) - arcToRelative(8.68f, 8.68f, 0.0f, false, false, 2.26f, 2.6f) - lineToRelative(2.28f, -0.76f) - curveToRelative(0.86f, -0.29f, 1.8f, 0.04f, 2.33f, 0.82f) - lineToRelative(1.23f, 1.81f) - curveToRelative(0.62f, 0.9f, 0.5f, 2.15f, -0.26f, 2.92f) - lineToRelative(-0.81f, 0.82f) - arcToRelative(3.02f, 3.02f, 0.0f, false, true, -3.06f, 0.77f) - curveToRelative(-2.53f, -0.79f, -4.87f, -3.14f, -7.0f, -7.05f) - curveTo(3.75f, 10.9f, 3.0f, 7.57f, 3.62f, 4.84f) - arcToRelative(3.26f, 3.26f, 0.0f, false, true, 2.15f, -2.4f) - lineToRelative(1.08f, -0.34f) - curveToRelative(1.0f, -0.33f, 2.09f, 0.2f, 2.52f, 1.21f) - close() - moveTo(14.5f, 8.44f) - lineTo(20.72f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.97f) - lineToRelative(-0.07f, 0.09f) - lineToRelative(-6.22f, 6.22f) - horizontalLineToRelative(4.69f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineTo(13.6f, 10.99f) - lineToRelative(-0.1f, -0.03f) - lineToRelative(-0.07f, -0.03f) - arcToRelative(0.72f, 0.72f, 0.0f, false, true, -0.21f, -0.15f) - lineToRelative(-0.04f, -0.04f) - lineToRelative(-0.03f, -0.04f) - lineToRelative(-0.04f, -0.06f) - lineToRelative(-0.05f, -0.1f) - lineToRelative(-0.03f, -0.09f) - lineToRelative(-0.02f, -0.07f) - verticalLineToRelative(-0.08f) - lineToRelative(-0.01f, -0.05f) - verticalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(4.79f) - lineToRelative(6.22f, -6.22f) - lineToRelative(-6.22f, 6.22f) - close() - } - } - return _callInbound!! - } - -private var _callInbound: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallMissed.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallMissed.kt deleted file mode 100644 index db872857..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallMissed.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CallMissed: ImageVector - get() { - if (_callMissed != null) { - return _callMissed!! - } - _callMissed = fluentIcon(name = "Filled.CallMissed") { - fluentPath { - moveTo(20.93f, 5.66f) - curveToRelative(-1.96f, -1.73f, -5.02f, -2.6f, -9.18f, -2.59f) - curveToRelative(-4.16f, 0.0f, -7.13f, 0.88f, -8.9f, 2.6f) - arcToRelative(2.82f, 2.82f, 0.0f, false, false, -0.73f, 2.86f) - lineToRelative(0.31f, 1.03f) - arcToRelative(2.17f, 2.17f, 0.0f, false, false, 2.28f, 1.51f) - lineToRelative(2.03f, -0.2f) - arcToRelative(1.9f, 1.9f, 0.0f, false, false, 1.71f, -1.55f) - lineToRelative(0.4f, -2.2f) - arcToRelative(8.1f, 8.1f, 0.0f, false, true, 6.22f, -0.18f) - lineToRelative(0.64f, 2.35f) - curveToRelative(0.22f, 0.85f, 0.98f, 1.48f, 1.87f, 1.57f) - lineToRelative(2.05f, 0.2f) - curveToRelative(1.03f, 0.1f, 1.94f, -0.56f, 2.12f, -1.53f) - lineToRelative(0.2f, -1.04f) - curveToRelative(0.2f, -1.02f, -0.2f, -2.1f, -1.02f, -2.83f) - close() - moveTo(11.75f, 14.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.75f) - horizontalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(12.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, -11.0f) - close() - moveTo(8.0f, 16.5f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, 8.0f, 0.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -8.0f, 0.0f) - close() - } - } - return _callMissed!! - } - -private var _callMissed: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallOutbound.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallOutbound.kt deleted file mode 100644 index 0594dd4d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallOutbound.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CallOutbound: ImageVector - get() { - if (_callOutbound != null) { - return _callOutbound!! - } - _callOutbound = fluentIcon(name = "Filled.CallOutbound") { - fluentPath { - moveToRelative(9.37f, 3.31f) - lineToRelative(0.86f, 2.03f) - curveToRelative(0.37f, 0.88f, 0.16f, 1.92f, -0.52f, 2.57f) - lineToRelative(-1.9f, 1.8f) - arcToRelative(8.01f, 8.01f, 0.0f, false, false, 1.1f, 3.17f) - arcToRelative(8.68f, 8.68f, 0.0f, false, false, 2.26f, 2.6f) - lineToRelative(2.28f, -0.76f) - curveToRelative(0.86f, -0.29f, 1.8f, 0.04f, 2.33f, 0.82f) - lineToRelative(1.23f, 1.8f) - curveToRelative(0.62f, 0.91f, 0.5f, 2.16f, -0.26f, 2.93f) - lineToRelative(-0.81f, 0.82f) - arcToRelative(3.02f, 3.02f, 0.0f, false, true, -3.06f, 0.77f) - curveToRelative(-2.53f, -0.79f, -4.87f, -3.14f, -7.0f, -7.05f) - curveTo(3.75f, 10.9f, 3.0f, 7.57f, 3.62f, 4.84f) - arcToRelative(3.26f, 3.26f, 0.0f, false, true, 2.15f, -2.4f) - lineToRelative(1.08f, -0.35f) - curveToRelative(1.0f, -0.32f, 2.09f, 0.2f, 2.52f, 1.22f) - close() - moveTo(14.75f, 2.01f) - lineTo(21.4f, 2.01f) - lineToRelative(0.1f, 0.03f) - lineToRelative(0.06f, 0.03f) - curveToRelative(0.08f, 0.03f, 0.16f, 0.09f, 0.22f, 0.15f) - lineToRelative(0.04f, 0.04f) - lineToRelative(0.04f, 0.06f) - lineToRelative(0.06f, 0.09f) - lineToRelative(0.04f, 0.09f) - lineToRelative(0.02f, 0.1f) - lineToRelative(0.02f, 0.09f) - lineTo(22.0f, 9.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(20.5f, 4.57f) - lineToRelative(-6.22f, 6.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.08f) - lineToRelative(-0.08f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.97f) - lineToRelative(0.07f, -0.09f) - lineToRelative(6.22f, -6.22f) - horizontalLineToRelative(-4.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.73f, -0.65f) - lineToRelative(-0.01f, -0.1f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - horizontalLineToRelative(0.1f) - close() - } - } - return _callOutbound!! - } - -private var _callOutbound: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallPark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallPark.kt deleted file mode 100644 index 2832d806..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallPark.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CallPark: ImageVector - get() { - if (_callPark != null) { - return _callPark!! - } - _callPark = fluentIcon(name = "Filled.CallPark") { - fluentPath { - moveToRelative(9.37f, 3.31f) - lineToRelative(0.86f, 2.03f) - curveToRelative(0.37f, 0.88f, 0.16f, 1.92f, -0.52f, 2.57f) - lineToRelative(-1.9f, 1.8f) - arcToRelative(8.01f, 8.01f, 0.0f, false, false, 1.1f, 3.17f) - arcToRelative(8.68f, 8.68f, 0.0f, false, false, 2.26f, 2.6f) - lineToRelative(2.28f, -0.76f) - curveToRelative(0.86f, -0.29f, 1.8f, 0.04f, 2.33f, 0.82f) - lineToRelative(1.23f, 1.81f) - curveToRelative(0.62f, 0.9f, 0.5f, 2.15f, -0.26f, 2.92f) - lineToRelative(-0.81f, 0.82f) - arcToRelative(3.02f, 3.02f, 0.0f, false, true, -3.06f, 0.77f) - curveToRelative(-2.53f, -0.79f, -4.87f, -3.14f, -7.0f, -7.05f) - curveTo(3.75f, 10.9f, 3.0f, 7.57f, 3.62f, 4.84f) - arcToRelative(3.26f, 3.26f, 0.0f, false, true, 2.15f, -2.4f) - lineToRelative(1.08f, -0.34f) - curveToRelative(1.0f, -0.33f, 2.09f, 0.2f, 2.52f, 1.21f) - close() - moveTo(14.75f, 2.0f) - horizontalLineToRelative(2.5f) - curveTo(19.64f, 2.0f, 21.0f, 3.14f, 21.0f, 5.25f) - curveToRelative(0.0f, 2.04f, -1.28f, 3.17f, -3.52f, 3.24f) - lineTo(15.5f, 8.49f) - verticalLineToRelative(2.77f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(14.0f, 2.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(2.5f) - horizontalLineToRelative(-2.5f) - close() - moveTo(17.25f, 3.5f) - lineTo(15.5f, 3.5f) - lineTo(15.5f, 7.0f) - horizontalLineToRelative(1.75f) - curveToRelative(1.61f, 0.0f, 2.25f, -0.53f, 2.25f, -1.75f) - curveToRelative(0.0f, -1.17f, -0.59f, -1.7f, -2.06f, -1.75f) - horizontalLineToRelative(-0.2f) - close() - } - } - return _callPark!! - } - -private var _callPark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallPause.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallPause.kt deleted file mode 100644 index 012bd293..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallPause.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CallPause: ImageVector - get() { - if (_callPause != null) { - return _callPause!! - } - _callPause = fluentIcon(name = "Filled.CallPause") { - fluentPath { - moveTo(15.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-7.5f) - close() - moveTo(19.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-7.5f) - close() - moveTo(10.23f, 5.34f) - lineTo(9.37f, 3.31f) - arcTo(2.06f, 2.06f, 0.0f, false, false, 6.85f, 2.1f) - lineToRelative(-1.08f, 0.34f) - arcToRelative(3.26f, 3.26f, 0.0f, false, false, -2.15f, 2.4f) - curveToRelative(-0.63f, 2.73f, 0.13f, 6.05f, 2.26f, 9.97f) - curveToRelative(2.13f, 3.91f, 4.46f, 6.26f, 7.0f, 7.05f) - curveToRelative(1.08f, 0.34f, 2.24f, 0.04f, 3.06f, -0.77f) - lineToRelative(0.81f, -0.82f) - curveToRelative(0.77f, -0.77f, 0.88f, -2.02f, 0.26f, -2.92f) - lineToRelative(-1.23f, -1.81f) - arcToRelative(2.03f, 2.03f, 0.0f, false, false, -2.33f, -0.82f) - lineToRelative(-2.28f, 0.76f) - arcToRelative(8.68f, 8.68f, 0.0f, false, true, -2.27f, -2.6f) - arcToRelative(8.01f, 8.01f, 0.0f, false, true, -1.08f, -3.17f) - lineToRelative(1.9f, -1.8f) - curveToRelative(0.67f, -0.65f, 0.88f, -1.69f, 0.5f, -2.57f) - close() - } - } - return _callPause!! - } - -private var _callPause: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallProhibited.kt deleted file mode 100644 index c9e6c3e3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallProhibited.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CallProhibited: ImageVector - get() { - if (_callProhibited != null) { - return _callProhibited!! - } - _callProhibited = fluentIcon(name = "Filled.CallProhibited") { - fluentPath { - moveTo(20.93f, 5.66f) - curveToRelative(-1.96f, -1.73f, -5.02f, -2.6f, -9.18f, -2.59f) - curveToRelative(-4.16f, 0.0f, -7.13f, 0.88f, -8.9f, 2.6f) - arcToRelative(2.82f, 2.82f, 0.0f, false, false, -0.73f, 2.86f) - lineToRelative(0.31f, 1.03f) - arcToRelative(2.17f, 2.17f, 0.0f, false, false, 2.28f, 1.51f) - lineToRelative(2.03f, -0.2f) - arcToRelative(1.9f, 1.9f, 0.0f, false, false, 1.71f, -1.55f) - lineToRelative(0.4f, -2.2f) - arcToRelative(8.1f, 8.1f, 0.0f, false, true, 6.22f, -0.18f) - lineToRelative(0.64f, 2.35f) - curveToRelative(0.22f, 0.85f, 0.98f, 1.48f, 1.87f, 1.57f) - lineToRelative(2.05f, 0.2f) - curveToRelative(1.03f, 0.1f, 1.94f, -0.56f, 2.12f, -1.53f) - lineToRelative(0.2f, -1.04f) - curveToRelative(0.2f, -1.02f, -0.2f, -2.1f, -1.02f, -2.83f) - close() - moveTo(12.0f, 22.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, 11.0f) - close() - moveTo(12.0f, 20.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) - lineToRelative(-5.55f, 5.56f) - curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) - close() - moveTo(8.7f, 18.75f) - lineTo(14.25f, 13.19f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -5.56f, 5.56f) - close() - } - } - return _callProhibited!! - } - -private var _callProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallTransfer.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallTransfer.kt deleted file mode 100644 index 6e17e633..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CallTransfer.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CallTransfer: ImageVector - get() { - if (_callTransfer != null) { - return _callTransfer!! - } - _callTransfer = fluentIcon(name = "Filled.CallTransfer") { - fluentPath { - moveTo(14.0f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(20.5f, 4.56f) - lineToRelative(-3.97f, 3.97f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(3.97f, -3.97f) - horizontalLineToRelative(-4.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(14.0f, 10.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(12.75f, 12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(10.22f, 5.34f) - lineTo(9.36f, 3.31f) - arcTo(2.06f, 2.06f, 0.0f, false, false, 6.85f, 2.1f) - lineToRelative(-1.08f, 0.35f) - arcToRelative(3.26f, 3.26f, 0.0f, false, false, -2.15f, 2.4f) - curveToRelative(-0.63f, 2.73f, 0.13f, 6.05f, 2.26f, 9.97f) - curveToRelative(2.13f, 3.91f, 4.46f, 6.26f, 7.0f, 7.05f) - curveToRelative(1.08f, 0.34f, 2.24f, 0.04f, 3.05f, -0.77f) - lineToRelative(0.82f, -0.82f) - curveToRelative(0.76f, -0.77f, 0.87f, -2.02f, 0.26f, -2.92f) - lineToRelative(-1.23f, -1.81f) - arcToRelative(2.03f, 2.03f, 0.0f, false, false, -2.33f, -0.82f) - lineToRelative(-2.28f, 0.76f) - arcTo(8.68f, 8.68f, 0.0f, false, true, 7.82f, 9.7f) - lineTo(9.7f, 7.9f) - curveToRelative(0.68f, -0.65f, 0.89f, -1.69f, 0.51f, -2.57f) - close() - } - } - return _callTransfer!! - } - -private var _callTransfer: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalligraphyPen.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalligraphyPen.kt deleted file mode 100644 index 65c4246b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CalligraphyPen.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CalligraphyPen: ImageVector - get() { - if (_calligraphyPen != null) { - return _calligraphyPen!! - } - _calligraphyPen = fluentIcon(name = "Filled.CalligraphyPen") { - fluentPath { - moveTo(7.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.9f, 0.67f, 1.64f, 1.54f, 1.74f) - lineToRelative(-1.01f, 2.5f) - curveToRelative(-0.41f, 1.0f, -0.37f, 2.19f, 0.12f, 3.15f) - lineToRelative(3.99f, 7.95f) - curveToRelative(0.14f, 0.3f, 0.36f, 0.53f, 0.61f, 0.69f) - verticalLineTo(12.3f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 1.5f, 0.0f) - verticalLineToRelative(9.48f) - curveToRelative(0.25f, -0.16f, 0.47f, -0.4f, 0.61f, -0.7f) - lineToRelative(4.0f, -7.94f) - curveToRelative(0.48f, -0.96f, 0.52f, -2.14f, 0.11f, -3.15f) - lineToRelative(-1.01f, -2.5f) - curveToRelative(0.87f, -0.1f, 1.54f, -0.84f, 1.54f, -1.74f) - verticalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-3.0f) - close() - } - } - return _calligraphyPen!! - } - -private var _calligraphyPen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Camera.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Camera.kt deleted file mode 100644 index 6ba8fb1e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Camera.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Camera: ImageVector - get() { - if (_camera != null) { - return _camera!! - } - _camera = fluentIcon(name = "Filled.Camera") { - fluentPath { - moveTo(13.92f, 2.5f) - curveToRelative(0.8f, 0.0f, 1.54f, 0.43f, 1.94f, 1.11f) - lineToRelative(0.82f, 1.4f) - horizontalLineToRelative(2.07f) - curveTo(20.55f, 5.0f, 22.0f, 6.45f, 22.0f, 8.24f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(5.25f, 20.99f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 17.75f) - verticalLineToRelative(-9.5f) - curveTo(2.0f, 6.45f, 3.46f, 5.0f, 5.25f, 5.0f) - horizontalLineToRelative(2.08f) - lineToRelative(0.88f, -1.42f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 1.91f, -1.08f) - horizontalLineToRelative(3.8f) - close() - moveTo(12.0f, 8.0f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, 0.0f, 9.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 0.0f, -9.0f) - close() - moveTo(12.0f, 9.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) - close() - } - } - return _camera!! - } - -private var _camera: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CameraAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CameraAdd.kt deleted file mode 100644 index 76f95fc2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CameraAdd.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CameraAdd: ImageVector - get() { - if (_cameraAdd != null) { - return _cameraAdd!! - } - _cameraAdd = fluentIcon(name = "Filled.CameraAdd") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(17.5f, 14.0f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - lineToRelative(-0.01f, 0.09f) - lineTo(17.0f, 17.0f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(0.18f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.37f, 0.4f, 0.4f) - lineToRelative(0.1f, 0.01f) - lineTo(17.0f, 18.0f) - verticalLineToRelative(2.6f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - horizontalLineToRelative(0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) - lineToRelative(0.01f, -0.1f) - lineTo(18.0f, 18.0f) - horizontalLineToRelative(2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) - verticalLineToRelative(-0.19f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) - horizontalLineToRelative(-0.1f) - lineTo(18.0f, 17.0f) - verticalLineToRelative(-2.59f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) - lineTo(17.5f, 14.0f) - close() - moveTo(13.92f, 2.5f) - curveToRelative(0.8f, 0.0f, 1.54f, 0.43f, 1.94f, 1.11f) - lineToRelative(0.82f, 1.4f) - horizontalLineToRelative(2.07f) - curveTo(20.55f, 5.0f, 22.0f, 6.45f, 22.0f, 8.24f) - verticalLineToRelative(4.56f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, -5.72f, -1.7f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, -5.25f, 5.79f) - arcToRelative(6.51f, 6.51f, 0.0f, false, false, 1.0f, 4.1f) - lineTo(5.24f, 20.99f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 17.75f) - verticalLineToRelative(-9.5f) - curveTo(2.0f, 6.45f, 3.46f, 5.0f, 5.25f, 5.0f) - horizontalLineToRelative(2.08f) - lineToRelative(0.88f, -1.42f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 1.91f, -1.08f) - horizontalLineToRelative(3.8f) - close() - moveTo(12.0f, 9.5f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.85f, 2.06f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -3.51f, 3.87f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 12.0f, 9.5f) - close() - } - } - return _cameraAdd!! - } - -private var _cameraAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CameraDome.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CameraDome.kt deleted file mode 100644 index 2ab7cb45..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CameraDome.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CameraDome: ImageVector - get() { - if (_cameraDome != null) { - return _cameraDome!! - } - _cameraDome = fluentIcon(name = "Filled.CameraDome") { - fluentPath { - moveTo(2.0f, 3.75f) - curveTo(2.0f, 2.78f, 2.78f, 2.0f, 3.75f, 2.0f) - horizontalLineToRelative(16.5f) - arcToRelative(1.75f, 1.75f, 0.0f, true, true, 0.0f, 3.5f) - lineTo(3.75f, 5.5f) - curveTo(2.78f, 5.5f, 2.0f, 4.72f, 2.0f, 3.75f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, -8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 8.0f) - close() - moveTo(14.5f, 13.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(3.0f, 7.0f) - horizontalLineToRelative(18.0f) - verticalLineToRelative(6.0f) - arcToRelative(9.0f, 9.0f, 0.0f, true, true, -18.0f, 0.0f) - lineTo(3.0f, 7.0f) - close() - moveTo(12.0f, 19.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) - close() - } - } - return _cameraDome!! - } - -private var _cameraDome: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CameraOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CameraOff.kt deleted file mode 100644 index 038dd452..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CameraOff.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CameraOff: ImageVector - get() { - if (_cameraOff != null) { - return _cameraOff!! - } - _cameraOff = fluentIcon(name = "Filled.CameraOff") { - fluentPath { - moveTo(2.22f, 2.22f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(18.5f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineToRelative(-0.95f, -0.94f) - curveToRelative(-0.32f, 0.1f, -0.66f, 0.16f, -1.02f, 0.16f) - lineTo(5.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 17.75f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -1.4f, 0.89f, -2.6f, 2.14f, -3.05f) - lineTo(2.22f, 3.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - moveTo(13.82f, 14.88f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -4.2f, -4.2f) - lineTo(8.55f, 9.6f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 6.34f, 6.34f) - lineToRelative(-1.07f, -1.07f) - close() - moveTo(16.44f, 13.26f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, -5.2f, -5.2f) - lineTo(7.65f, 4.47f) - lineToRelative(0.55f, -0.9f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 1.92f, -1.07f) - horizontalLineToRelative(3.8f) - curveToRelative(0.8f, 0.0f, 1.54f, 0.43f, 1.94f, 1.11f) - lineTo(16.68f, 5.0f) - horizontalLineToRelative(2.07f) - curveTo(20.55f, 5.0f, 22.0f, 6.46f, 22.0f, 8.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.32f, -0.05f, 0.64f, -0.14f, 0.93f) - lineToRelative(-5.42f, -5.42f) - close() - } - } - return _cameraOff!! - } - -private var _cameraOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CameraSparkles.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CameraSparkles.kt deleted file mode 100644 index aaf65188..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CameraSparkles.kt +++ /dev/null @@ -1,111 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CameraSparkles: ImageVector - get() { - if (_cameraSparkles != null) { - return _cameraSparkles!! - } - _cameraSparkles = fluentIcon(name = "Filled.CameraSparkles") { - fluentPath { - moveTo(15.85f, 6.15f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, 0.69f, 1.11f) - lineToRelative(0.45f, 1.38f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 1.02f, 0.0f) - lineToRelative(0.45f, -1.38f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, 1.8f, -1.8f) - lineToRelative(1.38f, -0.44f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, -1.03f) - horizontalLineToRelative(-0.03f) - lineToRelative(-1.38f, -0.45f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.8f, -1.8f) - lineTo(18.0f, 0.36f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, -1.03f, 0.0f) - lineToRelative(-0.45f, 1.38f) - lineToRelative(-0.01f, 0.03f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.0f, 1.37f) - arcToRelative(2.91f, 2.91f, 0.0f, false, true, -0.76f, 0.4f) - lineToRelative(-0.6f, 0.2f) - lineToRelative(-0.78f, 0.24f) - curveToRelative(-0.1f, 0.04f, -0.2f, 0.1f, -0.26f, 0.2f) - arcToRelative(0.51f, 0.51f, 0.0f, false, false, -0.1f, 0.34f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.1f, 0.3f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.26f, 0.19f) - lineToRelative(1.38f, 0.45f) - arcToRelative(2.83f, 2.83f, 0.0f, false, true, 1.11f, 0.69f) - close() - moveTo(23.02f, 9.96f) - lineTo(23.78f, 10.21f) - horizontalLineToRelative(0.02f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, 0.47f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, 0.1f) - lineToRelative(-0.77f, 0.26f) - arcToRelative(1.58f, 1.58f, 0.0f, false, false, -1.0f, 1.0f) - lineToRelative(-0.24f, 0.76f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.39f, 0.18f) - arcToRelative(0.27f, 0.27f, 0.0f, false, true, -0.1f, -0.05f) - arcToRelative(0.28f, 0.28f, 0.0f, false, true, -0.13f, -0.14f) - lineToRelative(-0.1f, -0.41f) - lineToRelative(-0.1f, -0.35f) - arcToRelative(1.57f, 1.57f, 0.0f, false, false, -1.0f, -1.0f) - lineToRelative(-0.77f, -0.25f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, -0.46f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, -0.1f) - lineToRelative(0.77f, -0.26f) - arcToRelative(1.58f, 1.58f, 0.0f, false, false, 0.98f, -1.0f) - lineToRelative(0.25f, -0.76f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.57f, 0.0f) - lineToRelative(0.25f, 0.77f) - arcToRelative(1.57f, 1.57f, 0.0f, false, false, 1.0f, 1.0f) - close() - moveTo(15.0f, 12.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, -6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 6.0f, 0.0f) - close() - moveTo(22.0f, 17.75f) - verticalLineToRelative(-3.86f) - arcToRelative(1.29f, 1.29f, 0.0f, false, true, -1.29f, -0.12f) - curveToRelative(-0.23f, -0.16f, -0.4f, -0.39f, -0.49f, -0.65f) - lineToRelative(-0.24f, -0.76f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.14f, -0.23f) - arcToRelative(0.74f, 0.74f, 0.0f, false, false, -0.22f, -0.14f) - lineToRelative(-0.79f, -0.25f) - arcToRelative(1.31f, 1.31f, 0.0f, false, true, -0.69f, -1.89f) - arcToRelative(1.57f, 1.57f, 0.0f, false, true, -1.57f, -0.12f) - curveToRelative(-0.26f, -0.2f, -0.46f, -0.46f, -0.57f, -0.77f) - lineToRelative(-0.44f, -1.38f) - curveToRelative(-0.07f, -0.2f, -0.16f, -0.38f, -0.29f, -0.55f) - lineToRelative(-0.15f, -0.17f) - arcToRelative(1.8f, 1.8f, 0.0f, false, false, -0.72f, -0.44f) - lineTo(13.0f, 5.96f) - arcToRelative(1.57f, 1.57f, 0.0f, false, true, -0.74f, -2.36f) - curveToRelative(0.2f, -0.26f, 0.46f, -0.46f, 0.77f, -0.57f) - lineToRelative(1.36f, -0.44f) - lineToRelative(0.07f, -0.02f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.54f, -0.07f) - horizontalLineToRelative(-3.8f) - curveToRelative(-0.78f, 0.0f, -1.5f, 0.4f, -1.91f, 1.08f) - lineTo(7.33f, 5.0f) - lineTo(5.25f, 5.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 8.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 19.55f, 3.46f, 21.0f, 5.25f, 21.0f) - horizontalLineToRelative(13.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - close() - moveTo(7.5f, 12.5f) - arcToRelative(4.5f, 4.5f, 0.0f, true, true, 9.0f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -9.0f, 0.0f) - close() - } - } - return _cameraSparkles!! - } - -private var _cameraSparkles: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CameraSwitch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CameraSwitch.kt deleted file mode 100644 index 7a23787e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CameraSwitch.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CameraSwitch: ImageVector - get() { - if (_cameraSwitch != null) { - return _cameraSwitch!! - } - _cameraSwitch = fluentIcon(name = "Filled.CameraSwitch") { - fluentPath { - moveTo(21.25f, 7.5f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(8.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - horizontalLineTo(6.06f) - lineToRelative(0.72f, 0.72f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-2.0f, -2.0f) - lineToRelative(-0.06f, -0.07f) - lineToRelative(-0.01f, -0.01f) - lineToRelative(0.07f, 0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-0.72f, 0.72f) - horizontalLineToRelative(12.69f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(18.2f, 2.15f) - lineToRelative(0.08f, 0.07f) - lineToRelative(2.0f, 2.0f) - lineToRelative(0.07f, 0.08f) - lineToRelative(-0.07f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.06f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(0.72f, -0.72f) - horizontalLineTo(5.25f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - lineToRelative(-0.01f, 0.15f) - verticalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-8.6f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(5.25f, 4.0f) - horizontalLineToRelative(12.69f) - lineToRelative(-0.72f, -0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - close() - moveTo(12.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, 0.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, -8.0f) - close() - } - } - return _cameraSwitch!! - } - -private var _cameraSwitch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cart.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cart.kt deleted file mode 100644 index f4738563..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cart.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Cart: ImageVector - get() { - if (_cart != null) { - return _cart!! - } - _cart = fluentIcon(name = "Filled.Cart") { - fluentPath { - moveTo(2.5f, 4.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(0.56f) - curveToRelative(0.95f, 0.0f, 1.52f, 0.64f, 1.84f, 1.23f) - curveToRelative(0.22f, 0.4f, 0.38f, 0.86f, 0.5f, 1.27f) - horizontalLineToRelative(12.6f) - curveToRelative(0.83f, 0.0f, 1.43f, 0.8f, 1.2f, 1.6f) - lineTo(18.12f, 14.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.64f, 2.0f) - lineTo(9.53f, 16.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.65f, -2.02f) - lineToRelative(-0.76f, -2.78f) - lineToRelative(-1.26f, -4.24f) - verticalLineToRelative(-0.01f) - curveToRelative(-0.16f, -0.57f, -0.3f, -1.1f, -0.52f, -1.5f) - curveTo(4.13f, 5.07f, 3.96f, 5.0f, 3.8f, 5.0f) - horizontalLineToRelative(-0.56f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(9.0f, 21.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) - close() - moveTo(16.0f, 21.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) - close() - } - } - return _cart!! - } - -private var _cart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cast.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cast.kt deleted file mode 100644 index 3e3fbf4e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cast.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Cast: ImageVector - get() { - if (_cast != null) { - return _cast!! - } - _cast = fluentIcon(name = "Filled.Cast") { - fluentPath { - moveTo(4.25f, 4.0f) - curveTo(3.01f, 4.0f, 2.0f, 5.0f, 2.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(2.0f, 18.99f, 3.0f, 20.0f, 4.25f, 20.0f) - horizontalLineToRelative(15.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(22.0f, 6.25f) - curveTo(22.0f, 5.01f, 21.0f, 4.0f, 19.75f, 4.0f) - lineTo(4.25f, 4.0f) - close() - moveTo(5.75f, 9.0f) - curveToRelative(4.0f, 0.0f, 7.25f, 3.24f, 7.25f, 7.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(5.75f, 5.75f, 0.0f, false, false, -5.75f, -5.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(5.0f, 12.74f) - curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.75f, -0.75f) - curveToRelative(2.34f, 0.0f, 4.24f, 1.9f, 4.24f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.74f, -2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(7.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - } - } - return _cast!! - } - -private var _cast: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CatchUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CatchUp.kt deleted file mode 100644 index 4bc11fe8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CatchUp.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CatchUp: ImageVector - get() { - if (_catchUp != null) { - return _catchUp!! - } - _catchUp = fluentIcon(name = "Filled.CatchUp") { - fluentPath { - moveTo(11.37f, 7.27f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -3.73f, 0.01f) - lineToRelative(-1.2f, 3.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.47f, 0.32f) - horizontalLineToRelative(-1.4f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.28f, 2.0f) - horizontalLineToRelative(1.12f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.33f, -1.6f) - lineTo(9.51f, 8.0f) - lineToRelative(3.22f, 8.23f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 3.67f, 0.13f) - lineToRelative(1.6f, -3.32f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.44f, -0.29f) - horizontalLineToRelative(0.7f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.3f, -2.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.25f, 1.42f) - lineToRelative(-1.6f, 3.33f) - lineToRelative(-3.22f, -8.23f) - close() - } - } - return _catchUp!! - } - -private var _catchUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cellular3G.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cellular3G.kt deleted file mode 100644 index 2b3036d4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cellular3G.kt +++ /dev/null @@ -1,124 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Cellular3G: ImageVector - get() { - if (_cellular3G != null) { - return _cellular3G!! - } - _cellular3G = fluentIcon(name = "Filled.Cellular3G") { - fluentPath { - moveToRelative(12.9f, 3.62f) - lineToRelative(-0.01f, -0.02f) - arcToRelative(1.03f, 1.03f, 0.0f, false, false, -0.06f, -0.08f) - lineToRelative(-0.13f, -0.16f) - arcToRelative(2.13f, 2.13f, 0.0f, false, false, -0.52f, -0.4f) - arcToRelative(3.03f, 3.03f, 0.0f, false, false, -2.07f, -0.25f) - curveToRelative(-1.09f, 0.2f, -1.63f, 0.97f, -1.87f, 1.6f) - arcTo(3.6f, 3.6f, 0.0f, false, false, 8.0f, 5.45f) - verticalLineToRelative(1.29f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, 2.5f) - horizontalLineToRelative(0.25f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) - verticalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.47f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.97f, 0.75f) - horizontalLineToRelative(-0.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineTo(5.5f) - arcToRelative(1.09f, 1.09f, 0.0f, false, true, 0.02f, -0.18f) - curveToRelative(0.01f, -0.13f, 0.05f, -0.3f, 0.12f, -0.47f) - curveToRelative(0.13f, -0.34f, 0.34f, -0.6f, 0.75f, -0.67f) - curveToRelative(0.6f, -0.1f, 0.91f, 0.01f, 1.06f, 0.1f) - arcToRelative(0.64f, 0.64f, 0.0f, false, true, 0.17f, 0.13f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.28f, -0.79f) - close() - } - fluentPath { - moveTo(4.44f, 4.61f) - arcToRelative(0.8f, 0.8f, 0.0f, false, false, 0.05f, -0.04f) - lineToRelative(0.02f, -0.02f) - lineToRelative(0.02f, -0.01f) - arcToRelative(1.1f, 1.1f, 0.0f, false, true, 0.2f, -0.15f) - curveToRelative(0.13f, -0.07f, 0.3f, -0.14f, 0.52f, -0.14f) - curveToRelative(0.16f, 0.0f, 0.26f, 0.05f, 0.32f, 0.1f) - curveToRelative(0.08f, 0.06f, 0.14f, 0.16f, 0.17f, 0.28f) - curveToRelative(0.04f, 0.18f, 0.0f, 0.34f, -0.06f, 0.44f) - curveToRelative(-0.05f, 0.08f, -0.15f, 0.18f, -0.43f, 0.18f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - curveToRelative(0.25f, 0.0f, 0.36f, 0.08f, 0.4f, 0.14f) - curveToRelative(0.07f, 0.08f, 0.12f, 0.2f, 0.1f, 0.36f) - arcToRelative(0.59f, 0.59f, 0.0f, false, true, -0.14f, 0.36f) - curveToRelative(-0.07f, 0.08f, -0.18f, 0.14f, -0.36f, 0.14f) - curveToRelative(-0.4f, 0.0f, -0.67f, -0.24f, -0.75f, -0.3f) - lineToRelative(-0.01f, -0.02f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.98f, 1.14f) - curveToRelative(-0.01f, -0.01f, 0.18f, 0.17f, 0.47f, 0.34f) - curveToRelative(0.3f, 0.17f, 0.73f, 0.34f, 1.27f, 0.34f) - curveToRelative(1.26f, 0.0f, 1.94f, -0.99f, 2.0f, -1.9f) - curveToRelative(0.03f, -0.46f, -0.08f, -0.95f, -0.39f, -1.35f) - lineToRelative(0.07f, -0.1f) - curveToRelative(0.33f, -0.5f, 0.4f, -1.1f, 0.26f, -1.64f) - curveToRelative(-0.2f, -0.79f, -0.88f, -1.51f, -1.94f, -1.51f) - curveToRelative(-1.05f, 0.0f, -1.76f, 0.7f, -1.69f, 0.64f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.88f, 1.22f) - close() - } - fluentPath { - moveTo(21.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) - verticalLineToRelative(13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - verticalLineTo(7.0f) - close() - } - fluentPath { - moveTo(17.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) - verticalLineToRelative(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - verticalLineTo(10.0f) - close() - } - fluentPath { - moveTo(13.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-7.0f) - close() - } - fluentPath { - moveTo(9.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineToRelative(-4.0f) - close() - } - fluentPath { - moveTo(5.0f, 18.98f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 4.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 0.98f) - verticalLineToRelative(1.04f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 4.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -0.98f) - verticalLineToRelative(-1.04f) - close() - } - } - return _cellular3G!! - } - -private var _cellular3G: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cellular4G.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cellular4G.kt deleted file mode 100644 index d8cd2957..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cellular4G.kt +++ /dev/null @@ -1,116 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Cellular4G: ImageVector - get() { - if (_cellular4G != null) { - return _cellular4G!! - } - _cellular4G = fluentIcon(name = "Filled.Cellular4G") { - fluentPath { - moveTo(12.9f, 3.62f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.28f, 0.79f) - lineToRelative(-0.02f, -0.02f) - arcToRelative(0.64f, 0.64f, 0.0f, false, false, -0.15f, -0.12f) - curveToRelative(-0.15f, -0.08f, -0.47f, -0.2f, -1.06f, -0.09f) - curveToRelative(-0.41f, 0.08f, -0.62f, 0.33f, -0.75f, 0.67f) - arcToRelative(2.1f, 2.1f, 0.0f, false, false, -0.14f, 0.65f) - verticalLineToRelative(1.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(0.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.97f, -0.75f) - horizontalLineToRelative(-0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(1.25f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.5f, 2.5f) - horizontalLineToRelative(-0.25f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 8.0f, 6.75f) - verticalLineTo(5.46f) - arcToRelative(2.6f, 2.6f, 0.0f, false, true, 0.03f, -0.34f) - curveToRelative(0.03f, -0.22f, 0.09f, -0.5f, 0.2f, -0.82f) - curveToRelative(0.25f, -0.62f, 0.8f, -1.4f, 1.88f, -1.6f) - curveToRelative(0.92f, -0.16f, 1.6f, 0.0f, 2.07f, 0.26f) - arcToRelative(2.13f, 2.13f, 0.0f, false, true, 0.7f, 0.64f) - lineToRelative(0.01f, 0.01f) - close() - } - fluentPath { - moveTo(4.73f, 3.06f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.77f, 0.64f) - verticalLineToRelative(2.8f) - horizontalLineToRelative(0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineTo(6.5f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - verticalLineTo(8.0f) - horizontalLineTo(3.2f) - arcToRelative(1.2f, 1.2f, 0.0f, false, true, -0.92f, -1.96f) - lineToRelative(2.45f, -2.98f) - close() - moveTo(5.0f, 6.5f) - verticalLineTo(5.09f) - lineTo(3.84f, 6.5f) - horizontalLineTo(5.0f) - close() - } - fluentPath { - moveTo(20.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - verticalLineTo(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - } - fluentPath { - moveTo(16.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - verticalLineTo(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - } - fluentPath { - moveTo(12.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - } - fluentPath { - moveTo(8.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineToRelative(-4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - } - fluentPath { - moveTo(4.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.98f) - verticalLineToRelative(1.04f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.98f) - verticalLineToRelative(-1.04f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 18.0f) - close() - } - } - return _cellular4G!! - } - -private var _cellular4G: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cellular5G.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cellular5G.kt deleted file mode 100644 index 3f3e2974..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cellular5G.kt +++ /dev/null @@ -1,116 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Cellular5G: ImageVector - get() { - if (_cellular5G != null) { - return _cellular5G!! - } - _cellular5G = fluentIcon(name = "Filled.Cellular5G") { - fluentPath { - moveToRelative(12.9f, 3.62f) - lineToRelative(-0.01f, -0.02f) - arcToRelative(1.03f, 1.03f, 0.0f, false, false, -0.06f, -0.08f) - lineToRelative(-0.13f, -0.16f) - arcToRelative(2.13f, 2.13f, 0.0f, false, false, -0.52f, -0.4f) - arcToRelative(3.03f, 3.03f, 0.0f, false, false, -2.07f, -0.25f) - curveToRelative(-1.09f, 0.2f, -1.63f, 0.97f, -1.87f, 1.6f) - arcTo(3.6f, 3.6f, 0.0f, false, false, 8.0f, 5.45f) - verticalLineToRelative(1.29f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, 2.5f) - horizontalLineToRelative(0.25f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) - verticalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.47f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.97f, 0.75f) - horizontalLineToRelative(-0.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineTo(5.5f) - arcToRelative(1.09f, 1.09f, 0.0f, false, true, 0.02f, -0.18f) - curveToRelative(0.01f, -0.13f, 0.05f, -0.3f, 0.12f, -0.47f) - curveToRelative(0.13f, -0.34f, 0.34f, -0.6f, 0.75f, -0.67f) - curveToRelative(0.6f, -0.1f, 0.91f, 0.01f, 1.06f, 0.1f) - arcToRelative(0.64f, 0.64f, 0.0f, false, true, 0.17f, 0.13f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.28f, -0.79f) - close() - } - fluentPath { - moveTo(4.0f, 2.75f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.29f, -0.75f, 0.67f) - lineTo(3.0f, 5.67f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.88f, 0.82f) - lineTo(4.9f, 6.3f) - arcToRelative(0.73f, 0.73f, 0.0f, true, true, 0.13f, 1.45f) - horizontalLineTo(4.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.62f, -0.33f) - lineToRelative(-0.06f, -0.09f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.24f, 0.84f) - lineToRelative(0.05f, 0.08f) - curveToRelative(0.42f, 0.62f, 1.12f, 1.0f, 1.87f, 1.0f) - horizontalLineToRelative(0.22f) - arcToRelative(2.23f, 2.23f, 0.0f, true, false, -0.4f, -4.42f) - horizontalLineToRelative(-0.01f) - lineToRelative(0.06f, -0.58f) - horizontalLineTo(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(4.0f) - close() - } - fluentPath { - moveTo(21.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) - verticalLineToRelative(13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - verticalLineTo(7.0f) - close() - } - fluentPath { - moveTo(17.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) - verticalLineToRelative(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - verticalLineTo(10.0f) - close() - } - fluentPath { - moveTo(13.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-7.0f) - close() - } - fluentPath { - moveTo(9.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineToRelative(-4.0f) - close() - } - fluentPath { - moveTo(5.0f, 18.98f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 4.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 0.98f) - verticalLineToRelative(1.04f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 4.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -0.98f) - verticalLineToRelative(-1.04f) - close() - } - } - return _cellular5G!! - } - -private var _cellular5G: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CellularData1.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CellularData1.kt deleted file mode 100644 index 8ac0dd7e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CellularData1.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CellularData1: ImageVector - get() { - if (_cellularData1 != null) { - return _cellularData1!! - } - _cellularData1 = fluentIcon(name = "Filled.CellularData1") { - fluentPath { - moveTo(20.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - lineTo(19.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(16.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - lineTo(15.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(12.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(8.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineToRelative(-4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(4.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.98f) - verticalLineToRelative(1.04f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.98f) - verticalLineToRelative(-1.04f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 17.0f) - close() - } - } - return _cellularData1!! - } - -private var _cellularData1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CellularData2.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CellularData2.kt deleted file mode 100644 index 7f8d8f53..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CellularData2.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CellularData2: ImageVector - get() { - if (_cellularData2 != null) { - return _cellularData2!! - } - _cellularData2 = fluentIcon(name = "Filled.CellularData2") { - fluentPath { - moveTo(16.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - lineTo(15.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(12.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(8.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineToRelative(-4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(4.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.98f) - verticalLineToRelative(1.04f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.98f) - verticalLineToRelative(-1.04f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 17.0f) - close() - } - } - return _cellularData2!! - } - -private var _cellularData2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CellularData3.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CellularData3.kt deleted file mode 100644 index c735af02..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CellularData3.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CellularData3: ImageVector - get() { - if (_cellularData3 != null) { - return _cellularData3!! - } - _cellularData3 = fluentIcon(name = "Filled.CellularData3") { - fluentPath { - moveTo(12.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(8.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineToRelative(-4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(4.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.98f) - verticalLineToRelative(1.04f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.98f) - verticalLineToRelative(-1.04f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 17.0f) - close() - } - } - return _cellularData3!! - } - -private var _cellularData3: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CellularData4.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CellularData4.kt deleted file mode 100644 index beab07e7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CellularData4.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CellularData4: ImageVector - get() { - if (_cellularData4 != null) { - return _cellularData4!! - } - _cellularData4 = fluentIcon(name = "Filled.CellularData4") { - fluentPath { - moveTo(8.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineToRelative(-4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(4.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.98f) - verticalLineToRelative(1.04f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.98f) - verticalLineToRelative(-1.04f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 17.0f) - close() - } - } - return _cellularData4!! - } - -private var _cellularData4: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CellularData5.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CellularData5.kt deleted file mode 100644 index 120e32b8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CellularData5.kt +++ /dev/null @@ -1,30 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CellularData5: ImageVector - get() { - if (_cellularData5 != null) { - return _cellularData5!! - } - _cellularData5 = fluentIcon(name = "Filled.CellularData5") { - fluentPath { - moveTo(4.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.98f) - verticalLineToRelative(1.04f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.98f) - verticalLineToRelative(-1.04f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 17.0f) - close() - } - } - return _cellularData5!! - } - -private var _cellularData5: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CellularOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CellularOff.kt deleted file mode 100644 index 38e21a3c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CellularOff.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CellularOff: ImageVector - get() { - if (_cellularOff != null) { - return _cellularOff!! - } - _cellularOff = fluentIcon(name = "Filled.CellularOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(11.0f, 12.06f) - lineTo(11.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-4.94f) - lineToRelative(2.0f, 2.0f) - lineTo(15.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - verticalLineToRelative(-0.94f) - lineToRelative(3.72f, 3.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(19.0f, 15.82f) - lineToRelative(2.0f, 2.0f) - lineTo(21.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) - verticalLineToRelative(9.82f) - close() - moveTo(15.0f, 11.82f) - lineTo(17.0f, 13.82f) - lineTo(17.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) - verticalLineToRelative(2.82f) - close() - moveTo(8.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineToRelative(-4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(4.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.98f) - verticalLineToRelative(1.04f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.98f) - verticalLineToRelative(-1.04f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 17.0f) - close() - } - } - return _cellularOff!! - } - -private var _cellularOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CellularWarning.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CellularWarning.kt deleted file mode 100644 index 97c5d14d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CellularWarning.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CellularWarning: ImageVector - get() { - if (_cellularWarning != null) { - return _cellularWarning!! - } - _cellularWarning = fluentIcon(name = "Filled.CellularWarning") { - fluentPath { - moveTo(16.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(1.05f) - curveToRelative(-0.7f, 0.14f, -1.36f, 0.59f, -1.74f, 1.33f) - lineToRelative(-0.26f, 0.53f) - lineTo(15.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(19.0f, 7.0f) - verticalLineToRelative(4.5f) - curveToRelative(0.3f, 0.21f, 0.55f, 0.51f, 0.74f, 0.88f) - lineTo(21.0f, 14.91f) - lineTo(21.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) - close() - moveTo(11.27f, 20.38f) - lineTo(13.0f, 16.91f) - lineTo(13.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.18f, 0.57f) - lineToRelative(0.09f, -0.19f) - close() - moveTo(8.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineToRelative(-4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(4.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.98f) - verticalLineToRelative(1.04f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.98f) - verticalLineToRelative(-1.04f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 18.0f) - close() - moveTo(16.16f, 12.83f) - lineTo(12.16f, 20.83f) - arcTo(1.5f, 1.5f, 0.0f, false, false, 13.5f, 23.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.34f, -2.17f) - lineToRelative(-4.0f, -8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.68f, 0.0f) - close() - moveTo(18.0f, 15.5f) - verticalLineToRelative(3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - close() - moveTo(17.5f, 21.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - close() - } - } - return _cellularWarning!! - } - -private var _cellularWarning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CenterHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CenterHorizontal.kt deleted file mode 100644 index e13eb20f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CenterHorizontal.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CenterHorizontal: ImageVector - get() { - if (_centerHorizontal != null) { - return _centerHorizontal!! - } - _centerHorizontal = fluentIcon(name = "Filled.CenterHorizontal") { - fluentPath { - moveTo(3.75f, 3.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(3.0f, 3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(20.25f, 3.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(19.5f, 3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(10.25f, 5.0f) - curveTo(9.01f, 5.0f, 8.0f, 6.0f, 8.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(8.0f, 17.99f, 9.0f, 19.0f, 10.25f, 19.0f) - horizontalLineToRelative(3.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-9.5f) - curveTo(16.0f, 6.01f, 15.0f, 5.0f, 13.75f, 5.0f) - horizontalLineToRelative(-3.5f) - close() - } - } - return _centerHorizontal!! - } - -private var _centerHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CenterVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CenterVertical.kt deleted file mode 100644 index f5c10196..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CenterVertical.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CenterVertical: ImageVector - get() { - if (_centerVertical != null) { - return _centerVertical!! - } - _centerVertical = fluentIcon(name = "Filled.CenterVertical") { - fluentPath { - moveTo(21.0f, 3.75f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(3.75f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(16.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(21.0f, 20.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(3.75f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(16.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(7.25f, 8.0f) - curveTo(6.01f, 8.0f, 5.0f, 9.0f, 5.0f, 10.25f) - verticalLineToRelative(3.5f) - curveTo(5.0f, 14.99f, 6.0f, 16.0f, 7.25f, 16.0f) - horizontalLineToRelative(9.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-3.5f) - curveTo(19.0f, 9.01f, 18.0f, 8.0f, 16.75f, 8.0f) - horizontalLineToRelative(-9.5f) - close() - } - } - return _centerVertical!! - } - -private var _centerVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Certificate.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Certificate.kt deleted file mode 100644 index 9dbce289..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Certificate.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Certificate: ImageVector - get() { - if (_certificate != null) { - return _certificate!! - } - _certificate = fluentIcon(name = "Filled.Certificate") { - fluentPath { - moveTo(4.75f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 5.75f) - lineTo(2.0f, 11.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 8.0f, 6.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(9.25f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 15.25f) - verticalLineToRelative(-9.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 3.0f) - lineTo(4.75f, 3.0f) - close() - moveTo(6.75f, 7.0f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(6.75f, 8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(12.0f, 12.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(6.0f, 10.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) - close() - moveTo(9.0f, 18.0f) - arcToRelative(4.98f, 4.98f, 0.0f, false, true, -6.0f, 0.0f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 0.57f, 0.6f, 0.92f, 1.09f, 0.67f) - lineToRelative(0.09f, -0.06f) - lineTo(6.0f, 20.6f) - lineToRelative(1.82f, 1.27f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.17f, -0.5f) - verticalLineToRelative(-0.11f) - lineTo(9.0f, 18.0f) - close() - } - } - return _certificate!! - } - -private var _certificate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Channel.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Channel.kt deleted file mode 100644 index ec178962..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Channel.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Channel: ImageVector - get() { - if (_channel != null) { - return _channel!! - } - _channel = fluentIcon(name = "Filled.Channel") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.45f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 9.37f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.22f, -4.3f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(13.25f, 13.0f) - horizontalLineToRelative(-4.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) - lineTo(13.35f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(15.25f, 9.5f) - horizontalLineToRelative(-6.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) - lineTo(15.35f, 10.99f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(3.75f, 6.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - } - } - return _channel!! - } - -private var _channel: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChannelAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChannelAdd.kt deleted file mode 100644 index 2a848387..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChannelAdd.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChannelAdd: ImageVector - get() { - if (_channelAdd != null) { - return _channelAdd!! - } - _channelAdd = fluentIcon(name = "Filled.ChannelAdd") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(5.77f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, -8.2f, 0.98f) - lineTo(8.76f, 13.0f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) - horizontalLineToRelative(3.08f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, 0.3f, 6.5f) - lineTo(6.24f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 9.37f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.22f, -4.3f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(15.25f, 9.5f) - horizontalLineToRelative(-6.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) - lineTo(15.35f, 10.99f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(3.75f, 6.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _channelAdd!! - } - -private var _channelAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChannelAlert.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChannelAlert.kt deleted file mode 100644 index de268aa5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChannelAlert.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChannelAlert: ImageVector - get() { - if (_channelAlert != null) { - return _channelAlert!! - } - _channelAlert = fluentIcon(name = "Filled.ChannelAlert") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(17.75f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 21.0f, 6.07f) - lineTo(21.0f, 12.02f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, -8.2f, 0.98f) - lineTo(8.76f, 13.0f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) - horizontalLineToRelative(3.08f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, 0.3f, 6.5f) - lineTo(6.24f, 21.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(3.0f, 17.75f) - lineTo(3.0f, 9.37f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.22f, -4.3f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 6.05f, 3.0f) - lineToRelative(0.2f, -0.01f) - horizontalLineToRelative(11.5f) - close() - moveTo(18.5f, 20.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(0.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) - close() - moveTo(17.5f, 14.0f) - horizontalLineToRelative(-0.16f) - curveToRelative(-0.94f, 0.1f, -1.67f, 0.77f, -1.81f, 1.64f) - lineToRelative(-0.02f, 0.16f) - verticalLineToRelative(1.5f) - lineToRelative(-0.86f, 0.85f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.26f, 0.84f) - lineTo(15.0f, 19.0f) - horizontalLineToRelative(5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.41f, -0.79f) - lineToRelative(-0.06f, -0.06f) - lineToRelative(-0.85f, -0.85f) - verticalLineToRelative(-1.5f) - arcToRelative(1.98f, 1.98f, 0.0f, false, false, -2.0f, -1.8f) - close() - moveTo(15.25f, 9.5f) - horizontalLineToRelative(-6.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) - lineTo(15.35f, 10.99f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(3.75f, 6.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - } - } - return _channelAlert!! - } - -private var _channelAlert: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChannelArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChannelArrowLeft.kt deleted file mode 100644 index 0f3ca870..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChannelArrowLeft.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChannelArrowLeft: ImageVector - get() { - if (_channelArrowLeft != null) { - return _channelArrowLeft!! - } - _channelArrowLeft = fluentIcon(name = "Filled.ChannelArrowLeft") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(17.75f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 21.0f, 6.07f) - lineTo(21.0f, 12.02f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, -8.2f, 0.98f) - lineTo(8.76f, 13.0f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) - horizontalLineToRelative(3.08f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, 0.3f, 6.5f) - lineTo(6.24f, 21.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(3.0f, 17.75f) - lineTo(3.0f, 9.37f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.22f, -4.3f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 6.05f, 3.0f) - lineToRelative(0.2f, -0.01f) - horizontalLineToRelative(11.5f) - close() - moveTo(16.72f, 14.59f) - lineTo(16.65f, 14.65f) - lineTo(14.13f, 17.16f) - lineTo(14.09f, 17.21f) - lineTo(14.05f, 17.29f) - lineTo(14.03f, 17.35f) - lineTo(14.01f, 17.43f) - verticalLineToRelative(0.11f) - lineToRelative(0.01f, 0.09f) - lineToRelative(0.03f, 0.08f) - lineToRelative(0.03f, 0.06f) - lineToRelative(0.05f, 0.07f) - lineToRelative(2.52f, 2.51f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.77f, -0.63f) - lineToRelative(-0.06f, -0.07f) - lineTo(15.7f, 18.0f) - horizontalLineToRelative(4.79f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.41f) - verticalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.5f) - horizontalLineToRelative(-4.88f) - lineToRelative(1.65f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.05f, -0.63f) - lineToRelative(-0.05f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.64f, -0.06f) - close() - moveTo(15.25f, 9.49f) - horizontalLineToRelative(-6.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) - lineTo(15.35f, 10.99f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(3.75f, 6.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - } - } - return _channelArrowLeft!! - } - -private var _channelArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChannelDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChannelDismiss.kt deleted file mode 100644 index 77011f87..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChannelDismiss.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChannelDismiss: ImageVector - get() { - if (_channelDismiss != null) { - return _channelDismiss!! - } - _channelDismiss = fluentIcon(name = "Filled.ChannelDismiss") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(17.75f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 21.0f, 6.07f) - lineTo(21.0f, 12.02f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, -8.2f, 0.98f) - lineTo(8.76f, 13.0f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) - horizontalLineToRelative(3.08f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, 0.3f, 6.5f) - lineTo(6.24f, 21.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(3.0f, 17.75f) - lineTo(3.0f, 9.37f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.22f, -4.3f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 6.05f, 3.0f) - lineToRelative(0.2f, -0.01f) - horizontalLineToRelative(11.5f) - close() - moveTo(15.09f, 14.97f) - lineTo(15.02f, 15.02f) - lineTo(14.97f, 15.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.05f, 0.07f) - lineToRelative(1.77f, 1.77f) - lineToRelative(-1.76f, 1.77f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.06f, 0.06f) - lineToRelative(0.07f, 0.06f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) - lineToRelative(0.07f, -0.06f) - lineToRelative(1.77f, -1.76f) - lineToRelative(1.77f, 1.77f) - lineToRelative(0.07f, 0.05f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.57f, 0.0f) - lineToRelative(0.07f, -0.05f) - lineToRelative(0.05f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) - lineToRelative(-0.05f, -0.07f) - lineToRelative(-1.77f, -1.77f) - lineToRelative(1.77f, -1.77f) - lineToRelative(0.06f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) - lineToRelative(-0.06f, -0.07f) - lineToRelative(-0.07f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) - lineToRelative(-0.07f, 0.05f) - lineToRelative(-1.77f, 1.77f) - lineToRelative(-1.77f, -1.77f) - lineToRelative(-0.07f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.05f) - lineToRelative(-0.07f, 0.05f) - close() - moveTo(15.25f, 9.5f) - horizontalLineToRelative(-6.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) - lineTo(15.35f, 10.99f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(3.75f, 6.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - } - } - return _channelDismiss!! - } - -private var _channelDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChannelShare.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChannelShare.kt deleted file mode 100644 index 44467097..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChannelShare.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChannelShare: ImageVector - get() { - if (_channelShare != null) { - return _channelShare!! - } - _channelShare = fluentIcon(name = "Filled.ChannelShare") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(6.0f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-6.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(5.85f) - arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, 1.5f) - horizontalLineTo(6.25f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 12.25f) - verticalLineToRelative(-6.0f) - close() - moveTo(17.75f, 10.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-6.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(6.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-6.0f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineTo(11.9f) - arcToRelative(2.75f, 2.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(5.85f) - close() - } - } - return _channelShare!! - } - -private var _channelShare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChannelSubtract.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChannelSubtract.kt deleted file mode 100644 index 0dabd625..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChannelSubtract.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChannelSubtract: ImageVector - get() { - if (_channelSubtract != null) { - return _channelSubtract!! - } - _channelSubtract = fluentIcon(name = "Filled.ChannelSubtract") { - fluentPath { - moveTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.55f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - curveToRelative(-1.38f, 0.0f, -2.55f, 0.85f, -3.03f, 2.06f) - arcTo(2.26f, 2.26f, 0.0f, true, true, 3.0f, 9.37f) - verticalLineToRelative(8.38f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(5.77f) - arcToRelative(6.47f, 6.47f, 0.0f, false, true, -0.29f, -6.5f) - lineTo(8.65f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.49f) - lineTo(12.8f, 13.01f) - arcToRelative(6.48f, 6.48f, 0.0f, false, true, 8.19f, -0.99f) - lineTo(20.99f, 6.25f) - close() - moveTo(8.75f, 9.5f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.49f) - lineTo(8.65f, 10.99f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.49f) - horizontalLineToRelative(0.1f) - close() - moveTo(5.0f, 7.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(20.5f, 18.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(6.0f) - close() - } - } - return _channelSubtract!! - } - -private var _channelSubtract: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChartMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChartMultiple.kt deleted file mode 100644 index 5af00714..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChartMultiple.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChartMultiple: ImageVector - get() { - if (_chartMultiple != null) { - return _chartMultiple!! - } - _chartMultiple = fluentIcon(name = "Filled.ChartMultiple") { - fluentPath { - moveTo(19.0f, 13.5f) - curveToRelative(0.0f, -0.68f, 0.27f, -1.3f, 0.71f, -1.75f) - lineTo(13.0f, 11.75f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(11.25f, 2.0f) - arcTo(9.5f, 9.5f, 0.0f, false, false, 11.0f, 21.0f) - lineTo(11.0f, 19.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 4.0f, -2.0f) - verticalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 4.0f, -2.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(12.75f, 2.08f) - lineTo(12.75f, 10.0f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(7.92f) - arcToRelative(9.5f, 9.5f, 0.0f, false, false, -8.17f, -8.17f) - close() - moveTo(21.5f, 12.0f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) - verticalLineToRelative(-8.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - close() - moveTo(13.5f, 18.0f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(2.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - close() - moveTo(16.0f, 16.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - verticalLineToRelative(5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - verticalLineToRelative(-5.0f) - close() - } - } - return _chartMultiple!! - } - -private var _chartMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChartPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChartPerson.kt deleted file mode 100644 index 140f947a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChartPerson.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChartPerson: ImageVector - get() { - if (_chartPerson != null) { - return _chartPerson!! - } - _chartPerson = fluentIcon(name = "Filled.ChartPerson") { - fluentPath { - moveTo(12.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - lineTo(11.0f, 3.0f) - lineTo(5.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 6.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) - horizontalLineToRelative(2.4f) - lineToRelative(-1.48f, 1.77f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.16f, 0.96f) - lineTo(9.6f, 19.0f) - horizontalLineToRelative(3.5f) - curveToRelative(0.34f, -1.16f, 1.41f, -2.0f, 2.67f, -2.0f) - horizontalLineToRelative(0.28f) - arcToRelative(3.49f, 3.49f, 0.0f, false, true, 2.45f, -6.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 3.5f, 3.5f) - lineTo(22.0f, 6.25f) - curveTo(22.0f, 4.45f, 20.54f, 3.0f, 18.75f, 3.0f) - lineTo(12.5f, 3.0f) - verticalLineToRelative(-0.25f) - close() - moveTo(6.0f, 7.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.0f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 6.0f, 7.75f) - close() - moveTo(6.75f, 10.0f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(6.75f, 13.0f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(21.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(23.0f, 19.88f) - curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) - reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _chartPerson!! - } - -private var _chartPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Chat.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Chat.kt deleted file mode 100644 index 7c8fec6f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Chat.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Chat: ImageVector - get() { - if (_chat != null) { - return _chat!! - } - _chat = fluentIcon(name = "Filled.Chat") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, -4.64f, 18.86f) - lineToRelative(-4.3f, 1.12f) - arcToRelative(0.85f, 0.85f, 0.0f, false, true, -1.03f, -1.04f) - lineToRelative(1.11f, -4.29f) - arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 2.0f) - close() - moveTo(13.25f, 13.0f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(13.35f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(15.25f, 9.5f) - horizontalLineToRelative(-6.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(15.35f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - } - } - return _chat!! - } - -private var _chat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatAdd.kt deleted file mode 100644 index 8dee389b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatAdd.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChatAdd: ImageVector - get() { - if (_chatAdd != null) { - return _chatAdd!! - } - _chatAdd = fluentIcon(name = "Filled.ChatAdd") { - fluentPath { - moveTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -18.86f, 4.65f) - lineToRelative(-1.11f, 4.29f) - arcToRelative(0.85f, 0.85f, 0.0f, false, false, 1.04f, 1.04f) - lineToRelative(4.29f, -1.12f) - arcToRelative(9.96f, 9.96f, 0.0f, false, false, 5.42f, 1.11f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, 9.19f, -9.19f) - lineTo(22.0f, 12.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _chatAdd!! - } - -private var _chatAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatBubblesQuestion.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatBubblesQuestion.kt deleted file mode 100644 index 59f3a8e2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatBubblesQuestion.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChatBubblesQuestion: ImageVector - get() { - if (_chatBubblesQuestion != null) { - return _chatBubblesQuestion!! - } - _chatBubblesQuestion = fluentIcon(name = "Filled.ChatBubblesQuestion") { - fluentPath { - moveTo(9.5f, 3.0f) - arcToRelative(7.5f, 7.5f, 0.0f, false, false, -6.8f, 10.67f) - arcToRelative(68.1f, 68.1f, 0.0f, false, false, -0.68f, 3.15f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.15f, 1.17f) - curveToRelative(0.63f, -0.11f, 1.98f, -0.36f, 3.24f, -0.65f) - arcTo(7.5f, 7.5f, 0.0f, true, false, 9.5f, 3.0f) - close() - moveTo(7.1f, 7.4f) - curveToRelative(0.25f, -0.49f, 0.6f, -0.86f, 1.04f, -1.1f) - arcToRelative(2.83f, 2.83f, 0.0f, false, true, 3.0f, 0.28f) - curveToRelative(0.5f, 0.42f, 0.86f, 1.07f, 0.86f, 1.92f) - curveToRelative(0.0f, 0.97f, -0.69f, 1.5f, -1.08f, 1.8f) - arcToRelative(8.4f, 8.4f, 0.0f, false, false, -0.08f, 0.07f) - curveToRelative(-0.43f, 0.33f, -0.59f, 0.51f, -0.59f, 0.88f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - curveToRelative(0.0f, -1.13f, 0.71f, -1.7f, 1.16f, -2.06f) - curveToRelative(0.51f, -0.4f, 0.59f, -0.5f, 0.59f, -0.69f) - curveToRelative(0.0f, -0.4f, -0.15f, -0.62f, -0.32f, -0.76f) - curveToRelative(-0.2f, -0.16f, -0.46f, -0.24f, -0.68f, -0.24f) - curveToRelative(-0.3f, 0.0f, -0.5f, 0.05f, -0.65f, 0.13f) - curveToRelative(-0.14f, 0.08f, -0.3f, 0.21f, -0.44f, 0.48f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.32f, -0.71f) - close() - moveTo(9.5f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(9.4f, 19.0f) - arcToRelative(7.47f, 7.47f, 0.0f, false, false, 8.19f, 1.34f) - curveToRelative(1.04f, 0.24f, 2.18f, 0.48f, 2.91f, 0.64f) - curveToRelative(0.9f, 0.18f, 1.67f, -0.62f, 1.47f, -1.5f) - curveToRelative(-0.16f, -0.7f, -0.42f, -1.8f, -0.67f, -2.8f) - arcToRelative(7.5f, 7.5f, 0.0f, false, false, -4.34f, -10.26f) - curveToRelative(0.34f, 0.63f, 0.61f, 1.31f, 0.8f, 2.04f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 2.08f, 7.79f) - lineToRelative(-0.13f, 0.25f) - lineToRelative(0.07f, 0.28f) - lineToRelative(0.64f, 2.65f) - lineToRelative(-2.74f, -0.61f) - lineToRelative(-0.27f, -0.07f) - lineToRelative(-0.24f, 0.12f) - arcToRelative(5.97f, 5.97f, 0.0f, false, true, -5.59f, -0.13f) - arcTo(8.52f, 8.52f, 0.0f, false, true, 9.4f, 19.0f) - close() - } - } - return _chatBubblesQuestion!! - } - -private var _chatBubblesQuestion: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatCursor.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatCursor.kt deleted file mode 100644 index c42bac39..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatCursor.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChatCursor: ImageVector - get() { - if (_chatCursor != null) { - return _chatCursor!! - } - _chatCursor = fluentIcon(name = "Filled.ChatCursor") { - fluentPath { - moveTo(10.0f, 1.0f) - arcToRelative(8.0f, 8.0f, 0.0f, false, true, 7.48f, 10.86f) - lineTo(14.2f, 9.4f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 11.0f, 11.0f) - verticalLineToRelative(5.94f) - arcToRelative(8.07f, 8.07f, 0.0f, false, true, -4.61f, -0.8f) - lineToRelative(-0.12f, -0.07f) - lineToRelative(-3.65f, 0.92f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.62f, -0.45f) - verticalLineToRelative(-0.08f) - lineToRelative(0.01f, -0.08f) - lineToRelative(0.92f, -3.64f) - lineToRelative(-0.07f, -0.12f) - arcToRelative(7.95f, 7.95f, 0.0f, false, true, -0.83f, -2.9f) - lineToRelative(-0.02f, -0.37f) - lineTo(2.0f, 9.0f) - arcToRelative(8.0f, 8.0f, 0.0f, false, true, 8.0f, -8.0f) - close() - moveTo(13.6f, 10.2f) - lineTo(21.6f, 16.2f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 21.0f, 18.0f) - horizontalLineToRelative(-4.4f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.88f, 0.53f) - lineToRelative(-1.84f, 3.44f) - curveToRelative(-0.49f, 0.92f, -1.88f, 0.57f, -1.88f, -0.47f) - lineTo(12.0f, 11.0f) - arcToRelative(1.05f, 1.05f, 0.0f, false, true, 0.12f, -0.47f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.48f, -0.33f) - close() - } - } - return _chatCursor!! - } - -private var _chatCursor: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatDismiss.kt deleted file mode 100644 index 56785363..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatDismiss.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChatDismiss: ImageVector - get() { - if (_chatDismiss != null) { - return _chatDismiss!! - } - _chatDismiss = fluentIcon(name = "Filled.ChatDismiss") { - fluentPath { - moveTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -18.89f, 4.6f) - lineToRelative(-1.06f, 3.82f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 1.54f, 1.54f) - lineToRelative(3.82f, -1.07f) - arcTo(10.0f, 10.0f, 0.0f, false, false, 22.0f, 12.0f) - close() - moveTo(9.28f, 8.22f) - lineTo(12.0f, 10.94f) - lineToRelative(2.72f, -2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineTo(13.06f, 12.0f) - lineToRelative(2.72f, 2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(12.0f, 13.06f) - lineToRelative(-2.72f, 2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineTo(10.94f, 12.0f) - lineTo(8.22f, 9.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - close() - } - } - return _chatDismiss!! - } - -private var _chatDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatEmpty.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatEmpty.kt deleted file mode 100644 index 23c1c9e0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatEmpty.kt +++ /dev/null @@ -1,29 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChatEmpty: ImageVector - get() { - if (_chatEmpty != null) { - return _chatEmpty!! - } - _chatEmpty = fluentIcon(name = "Filled.ChatEmpty") { - fluentPath { - moveTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -18.86f, 4.65f) - lineToRelative(-1.11f, 4.29f) - arcToRelative(0.85f, 0.85f, 0.0f, false, false, 1.04f, 1.04f) - lineToRelative(4.29f, -1.12f) - arcTo(10.0f, 10.0f, 0.0f, false, false, 22.0f, 12.0f) - close() - } - } - return _chatEmpty!! - } - -private var _chatEmpty: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatHelp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatHelp.kt deleted file mode 100644 index 5617c9a3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatHelp.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChatHelp: ImageVector - get() { - if (_chatHelp != null) { - return _chatHelp!! - } - _chatHelp = fluentIcon(name = "Filled.ChatHelp") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, -4.64f, 18.86f) - lineToRelative(-4.3f, 1.12f) - arcToRelative(0.85f, 0.85f, 0.0f, false, true, -1.03f, -1.04f) - lineToRelative(1.11f, -4.29f) - arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 2.0f) - close() - moveTo(12.0f, 15.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(12.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 9.25f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.1f) - verticalLineToRelative(-0.23f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.13f) - curveToRelative(0.0f, 0.54f, -0.13f, 0.8f, -0.64f, 1.33f) - lineToRelative(-0.3f, 0.31f) - curveToRelative(-0.76f, 0.79f, -1.06f, 1.35f, -1.06f, 2.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - curveToRelative(0.0f, -0.54f, 0.13f, -0.8f, 0.64f, -1.33f) - lineToRelative(0.3f, -0.31f) - curveToRelative(0.76f, -0.79f, 1.06f, -1.35f, 1.06f, -2.36f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 12.0f, 6.75f) - close() - } - } - return _chatHelp!! - } - -private var _chatHelp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatMultiple.kt deleted file mode 100644 index 05117370..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatMultiple.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChatMultiple: ImageVector - get() { - if (_chatMultiple != null) { - return _chatMultiple!! - } - _chatMultiple = fluentIcon(name = "Filled.ChatMultiple") { - fluentPath { - moveTo(9.5f, 3.0f) - arcToRelative(7.5f, 7.5f, 0.0f, false, false, -6.8f, 10.67f) - arcToRelative(68.1f, 68.1f, 0.0f, false, false, -0.68f, 3.15f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.15f, 1.17f) - curveToRelative(0.63f, -0.11f, 1.98f, -0.36f, 3.24f, -0.65f) - arcTo(7.5f, 7.5f, 0.0f, true, false, 9.5f, 3.0f) - close() - moveTo(9.46f, 19.0f) - arcToRelative(7.47f, 7.47f, 0.0f, false, false, 8.19f, 1.34f) - curveToRelative(1.04f, 0.24f, 2.19f, 0.48f, 2.91f, 0.64f) - curveToRelative(0.9f, 0.18f, 1.67f, -0.62f, 1.47f, -1.5f) - curveToRelative(-0.16f, -0.7f, -0.42f, -1.8f, -0.67f, -2.8f) - arcToRelative(7.5f, 7.5f, 0.0f, false, false, -4.34f, -10.26f) - curveToRelative(0.35f, 0.63f, 0.62f, 1.31f, 0.8f, 2.04f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 2.08f, 7.79f) - lineToRelative(-0.13f, 0.25f) - lineToRelative(0.07f, 0.28f) - curveToRelative(0.23f, 0.9f, 0.46f, 1.9f, 0.64f, 2.65f) - lineToRelative(-2.74f, -0.61f) - lineToRelative(-0.26f, -0.07f) - lineToRelative(-0.25f, 0.13f) - arcToRelative(5.97f, 5.97f, 0.0f, false, true, -5.59f, -0.14f) - arcToRelative(8.52f, 8.52f, 0.0f, false, true, -2.18f, 0.26f) - close() - } - } - return _chatMultiple!! - } - -private var _chatMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatMultipleHeart.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatMultipleHeart.kt deleted file mode 100644 index ed1a6f1d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatMultipleHeart.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChatMultipleHeart: ImageVector - get() { - if (_chatMultipleHeart != null) { - return _chatMultipleHeart!! - } - _chatMultipleHeart = fluentIcon(name = "Filled.ChatMultipleHeart") { - fluentPath { - moveTo(2.0f, 10.5f) - arcToRelative(7.5f, 7.5f, 0.0f, true, true, 4.41f, 6.84f) - curveToRelative(-1.26f, 0.29f, -2.61f, 0.54f, -3.24f, 0.65f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.15f, -1.17f) - curveToRelative(0.12f, -0.61f, 0.38f, -1.92f, 0.68f, -3.15f) - arcTo(7.47f, 7.47f, 0.0f, false, true, 2.0f, 10.5f) - close() - moveTo(6.34f, 8.34f) - curveToRelative(-0.79f, 0.8f, -0.79f, 2.08f, 0.0f, 2.87f) - lineToRelative(2.95f, 2.95f) - curveToRelative(0.12f, 0.12f, 0.32f, 0.12f, 0.44f, 0.0f) - lineToRelative(2.93f, -2.93f) - arcToRelative(2.03f, 2.03f, 0.0f, false, false, -2.88f, -2.88f) - lineToRelative(-0.28f, 0.28f) - lineToRelative(-0.29f, -0.28f) - curveToRelative(-0.8f, -0.8f, -2.08f, -0.8f, -2.87f, 0.0f) - close() - moveTo(14.56f, 21.0f) - arcToRelative(7.47f, 7.47f, 0.0f, false, true, -5.1f, -2.0f) - arcToRelative(8.28f, 8.28f, 0.0f, false, false, 2.18f, -0.26f) - arcToRelative(5.97f, 5.97f, 0.0f, false, false, 5.6f, 0.14f) - lineToRelative(0.24f, -0.13f) - lineToRelative(0.26f, 0.07f) - curveToRelative(0.92f, 0.22f, 1.96f, 0.44f, 2.74f, 0.6f) - curveToRelative(-0.18f, -0.74f, -0.41f, -1.75f, -0.64f, -2.64f) - lineToRelative(-0.07f, -0.28f) - lineToRelative(0.13f, -0.25f) - arcToRelative(5.97f, 5.97f, 0.0f, false, false, -2.09f, -7.8f) - arcToRelative(8.44f, 8.44f, 0.0f, false, false, -0.8f, -2.04f) - arcToRelative(7.5f, 7.5f, 0.0f, false, true, 4.35f, 10.26f) - lineToRelative(0.67f, 2.8f) - curveToRelative(0.2f, 0.9f, -0.57f, 1.7f, -1.47f, 1.5f) - curveToRelative(-0.72f, -0.15f, -1.87f, -0.39f, -2.91f, -0.63f) - curveToRelative(-0.94f, 0.42f, -1.99f, 0.66f, -3.09f, 0.66f) - close() - } - } - return _chatMultipleHeart!! - } - -private var _chatMultipleHeart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatOff.kt deleted file mode 100644 index f8892fa4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatOff.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChatOff: ImageVector - get() { - if (_chatOff != null) { - return _chatOff!! - } - _chatOff = fluentIcon(name = "Filled.ChatOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(2.2f, 2.2f) - arcToRelative(9.96f, 9.96f, 0.0f, false, false, -1.28f, 11.17f) - lineToRelative(-1.11f, 4.29f) - arcToRelative(0.85f, 0.85f, 0.0f, false, false, 1.04f, 1.04f) - lineToRelative(4.29f, -1.12f) - arcToRelative(9.96f, 9.96f, 0.0f, false, false, 11.16f, -1.28f) - lineToRelative(2.2f, 2.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(13.42f, 14.48f) - lineTo(13.35f, 14.49f) - lineTo(13.25f, 14.5f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.29f) - lineToRelative(1.48f, 1.48f) - close() - moveTo(9.94f, 11.0f) - lineTo(8.65f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.16f, -1.45f) - lineTo(9.94f, 11.0f) - close() - } - fluentPath { - moveTo(15.25f, 11.0f) - horizontalLineToRelative(-1.07f) - lineToRelative(6.3f, 6.3f) - arcTo(10.0f, 10.0f, 0.0f, false, false, 6.7f, 3.52f) - lineToRelative(5.98f, 5.98f) - horizontalLineToRelative(2.67f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.1f) - close() - } - } - return _chatOff!! - } - -private var _chatOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatSettings.kt deleted file mode 100644 index 3b64a809..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatSettings.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChatSettings: ImageVector - get() { - if (_chatSettings != null) { - return _chatSettings!! - } - _chatSettings = fluentIcon(name = "Filled.ChatSettings") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 9.97f, 10.78f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -9.19f, 9.19f) - arcToRelative(10.14f, 10.14f, 0.0f, false, true, -5.42f, -1.11f) - lineToRelative(-4.3f, 1.12f) - arcToRelative(0.85f, 0.85f, 0.0f, false, true, -1.03f, -1.04f) - lineToRelative(1.11f, -4.29f) - arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 2.0f) - close() - moveTo(14.28f, 13.98f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.59f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) - lineToRelative(0.55f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) - lineToRelative(-0.19f, 0.64f) - curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) - lineToRelative(0.49f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) - lineToRelative(-0.2f, -0.69f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) - lineToRelative(0.59f, -0.14f) - arcToRelative(5.72f, 5.72f, 0.0f, false, false, 0.0f, -1.8f) - lineToRelative(-0.55f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.19f, -0.63f) - curveToRelative(-0.44f, -0.4f, -0.94f, -0.7f, -1.49f, -0.93f) - lineToRelative(-0.49f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) - lineToRelative(0.2f, 0.7f) - close() - moveTo(17.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) - close() - } - } - return _chatSettings!! - } - -private var _chatSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatSparkle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatSparkle.kt deleted file mode 100644 index 59e1204e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatSparkle.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChatSparkle: ImageVector - get() { - if (_chatSparkle != null) { - return _chatSparkle!! - } - _chatSparkle = fluentIcon(name = "Filled.ChatSparkle") { - fluentPath { - moveTo(16.09f, 6.41f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.35f, -0.95f) - lineTo(13.36f, 5.0f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, -1.03f) - lineToRelative(1.38f, -0.44f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.76f, -1.77f) - lineToRelative(0.01f, -0.03f) - lineToRelative(0.45f, -1.38f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, 1.03f, 0.0f) - lineToRelative(0.44f, 1.38f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.8f, 1.8f) - lineToRelative(1.38f, 0.44f) - lineToRelative(0.03f, 0.01f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, 1.03f) - lineToRelative(-1.38f, 0.44f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.8f, 1.8f) - lineToRelative(-0.45f, 1.38f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, -1.03f, 0.0f) - lineToRelative(-0.44f, -1.38f) - curveToRelative(-0.1f, -0.3f, -0.25f, -0.6f, -0.45f, -0.85f) - close() - moveTo(23.79f, 10.21f) - lineTo(23.02f, 9.96f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, -1.0f, -1.0f) - lineToRelative(-0.25f, -0.76f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, -0.57f, 0.0f) - lineToRelative(-0.25f, 0.77f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, -0.98f, 1.0f) - lineToRelative(-0.77f, 0.24f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.77f, 0.25f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, 1.0f) - lineToRelative(0.24f, 0.77f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.58f, 0.0f) - lineToRelative(0.24f, -0.77f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, -1.0f) - lineToRelative(0.77f, -0.24f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, -0.57f) - horizontalLineToRelative(-0.02f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 2.76f, 0.39f) - curveToRelative(-0.12f, 0.07f, -0.24f, 0.13f, -0.37f, 0.17f) - lineTo(13.05f, 3.0f) - curveToRelative(-0.3f, 0.1f, -0.58f, 0.3f, -0.77f, 0.57f) - arcToRelative(1.57f, 1.57f, 0.0f, false, false, 0.0f, 1.79f) - curveToRelative(0.17f, 0.28f, 0.42f, 0.5f, 0.72f, 0.64f) - lineToRelative(1.4f, 0.46f) - curveToRelative(0.27f, 0.09f, 0.52f, 0.24f, 0.72f, 0.44f) - lineToRelative(0.18f, 0.1f) - curveToRelative(0.13f, 0.17f, 0.22f, 0.35f, 0.29f, 0.55f) - lineTo(16.0f, 9.0f) - curveToRelative(0.1f, 0.3f, 0.3f, 0.58f, 0.57f, 0.77f) - arcToRelative(1.57f, 1.57f, 0.0f, false, false, 1.57f, 0.12f) - arcToRelative(1.28f, 1.28f, 0.0f, false, false, 0.06f, 1.4f) - curveToRelative(0.16f, 0.23f, 0.38f, 0.4f, 0.63f, 0.49f) - lineToRelative(0.79f, 0.25f) - arcToRelative(0.59f, 0.59f, 0.0f, false, true, 0.36f, 0.37f) - lineToRelative(0.24f, 0.76f) - curveToRelative(0.1f, 0.26f, 0.26f, 0.49f, 0.49f, 0.65f) - arcToRelative(1.29f, 1.29f, 0.0f, false, false, 1.09f, 0.2f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -14.44f, 6.85f) - lineToRelative(-4.3f, 1.12f) - arcToRelative(0.85f, 0.85f, 0.0f, false, true, -1.03f, -1.04f) - lineToRelative(1.11f, -4.29f) - arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 2.0f) - close() - } - } - return _chatSparkle!! - } - -private var _chatSparkle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatVideo.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatVideo.kt deleted file mode 100644 index 46ab78ac..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatVideo.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChatVideo: ImageVector - get() { - if (_chatVideo != null) { - return _chatVideo!! - } - _chatVideo = fluentIcon(name = "Filled.ChatVideo") { - fluentPath { - moveTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -18.86f, 4.65f) - lineToRelative(-1.11f, 4.29f) - arcToRelative(0.85f, 0.85f, 0.0f, false, false, 1.04f, 1.04f) - lineToRelative(4.29f, -1.12f) - arcTo(10.0f, 10.0f, 0.0f, false, false, 22.0f, 12.0f) - close() - moveTo(12.0f, 8.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - verticalLineToRelative(4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - lineTo(9.0f, 16.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(3.0f) - close() - moveTo(15.0f, 13.16f) - verticalLineToRelative(-2.32f) - lineToRelative(1.73f, -1.64f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.27f, 0.54f) - verticalLineToRelative(4.52f) - curveToRelative(0.0f, 0.66f, -0.79f, 1.0f, -1.27f, 0.54f) - lineTo(15.0f, 13.16f) - close() - } - } - return _chatVideo!! - } - -private var _chatVideo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatWarning.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatWarning.kt deleted file mode 100644 index 11f04654..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChatWarning.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChatWarning: ImageVector - get() { - if (_chatWarning != null) { - return _chatWarning!! - } - _chatWarning = fluentIcon(name = "Filled.ChatWarning") { - fluentPath { - moveTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -18.86f, 4.65f) - lineToRelative(-1.11f, 4.29f) - arcToRelative(0.85f, 0.85f, 0.0f, false, false, 1.04f, 1.03f) - lineToRelative(4.29f, -1.11f) - arcTo(10.0f, 10.0f, 0.0f, false, false, 22.0f, 12.0f) - close() - moveTo(12.0f, 6.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(11.25f, 7.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(13.0f, 16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - } - } - return _chatWarning!! - } - -private var _chatWarning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Check.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Check.kt deleted file mode 100644 index 27f0c1a4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Check.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Check: ImageVector - get() { - if (_check != null) { - return _check!! - } - _check = fluentIcon(name = "Filled.Check") { - fluentPath { - moveTo(21.77f, 5.79f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.04f, -1.08f) - lineToRelative(-6.75f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.04f, 1.08f) - lineToRelative(6.75f, -6.5f) - close() - moveTo(18.99f, 5.0f) - lineTo(4.55f, 5.0f) - arcTo(2.55f, 2.55f, 0.0f, false, false, 2.0f, 7.55f) - verticalLineToRelative(6.9f) - curveTo(2.0f, 15.85f, 3.14f, 17.0f, 4.55f, 17.0f) - horizontalLineToRelative(14.9f) - curveToRelative(1.4f, 0.0f, 2.55f, -1.14f, 2.55f, -2.55f) - verticalLineToRelative(-6.9f) - curveToRelative(0.0f, -0.18f, -0.02f, -0.36f, -0.06f, -0.54f) - lineToRelative(-6.23f, 6.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -2.42f, -2.52f) - lineTo(18.99f, 5.0f) - close() - moveTo(4.5f, 9.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(4.5f, 12.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _check!! - } - -private var _check: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Checkbox1.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Checkbox1.kt deleted file mode 100644 index 38d4558b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Checkbox1.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Checkbox1: ImageVector - get() { - if (_checkbox1 != null) { - return _checkbox1!! - } - _checkbox1 = fluentIcon(name = "Filled.Checkbox1") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(0.64f, 0.0f, 1.24f, -0.19f, 1.75f, -0.51f) - verticalLineToRelative(-1.66f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.84f, -2.95f) - lineToRelative(2.5f, -2.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.84f, -0.36f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(17.28f, 9.28f) - lineTo(10.53f, 16.03f) - curveToRelative(-0.3f, 0.29f, -0.77f, 0.29f, -1.06f, 0.0f) - lineToRelative(-2.75f, -2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineTo(10.0f, 14.44f) - lineToRelative(6.22f, -6.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - close() - moveTo(21.0f, 14.54f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.22f, 0.12f) - lineToRelative(-2.5f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.94f, 1.18f) - lineToRelative(1.28f, -1.03f) - verticalLineToRelative(4.44f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, -0.7f) - close() - } - } - return _checkbox1!! - } - -private var _checkbox1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Checkbox2.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Checkbox2.kt deleted file mode 100644 index 27af64c3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Checkbox2.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Checkbox2: ImageVector - get() { - if (_checkbox2 != null) { - return _checkbox2!! - } - _checkbox2 = fluentIcon(name = "Filled.Checkbox2") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(10.0f) - curveToRelative(0.11f, -1.86f, 1.38f, -2.85f, 2.1f, -3.38f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.65f, -2.88f) - arcToRelative(3.8f, 3.8f, 0.0f, false, true, 3.47f, -1.18f) - curveToRelative(0.28f, 0.06f, 0.56f, 0.15f, 0.83f, 0.29f) - verticalLineToRelative(-7.6f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(19.06f, 18.35f) - curveToRelative(-0.7f, 0.5f, -1.7f, 1.23f, -1.8f, 2.65f) - lineToRelative(-0.01f, 0.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.06f) - arcToRelative(3.45f, 3.45f, 0.0f, false, true, 1.09f, -1.0f) - lineToRelative(0.04f, -0.03f) - curveToRelative(0.22f, -0.16f, 0.47f, -0.34f, 0.72f, -0.56f) - curveToRelative(0.5f, -0.46f, 0.96f, -1.08f, 0.96f, -2.0f) - curveToRelative(0.0f, -0.63f, -0.17f, -1.18f, -0.5f, -1.6f) - arcToRelative(2.05f, 2.05f, 0.0f, false, false, -1.27f, -0.76f) - arcToRelative(2.8f, 2.8f, 0.0f, false, false, -2.54f, 0.86f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.12f, 1.0f) - curveToRelative(0.27f, -0.3f, 0.76f, -0.47f, 1.13f, -0.4f) - curveToRelative(0.17f, 0.04f, 0.3f, 0.12f, 0.38f, 0.22f) - curveToRelative(0.09f, 0.11f, 0.18f, 0.31f, 0.18f, 0.68f) - curveToRelative(0.0f, 0.55f, -0.35f, 0.83f, -1.19f, 1.44f) - close() - moveTo(17.28f, 9.28f) - lineTo(10.53f, 16.03f) - curveToRelative(-0.3f, 0.29f, -0.77f, 0.29f, -1.06f, 0.0f) - lineToRelative(-2.75f, -2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineTo(10.0f, 14.44f) - lineToRelative(6.22f, -6.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - close() - } - } - return _checkbox2!! - } - -private var _checkbox2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckboxArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckboxArrowRight.kt deleted file mode 100644 index 941e9e18..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckboxArrowRight.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CheckboxArrowRight: ImageVector - get() { - if (_checkboxArrowRight != null) { - return _checkboxArrowRight!! - } - _checkboxArrowRight = fluentIcon(name = "Filled.CheckboxArrowRight") { - fluentPath { - moveTo(5.25f, 2.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) - verticalLineToRelative(11.5f) - curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) - horizontalLineToRelative(6.25f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, 8.5f, -8.5f) - lineTo(20.0f, 5.25f) - curveTo(20.0f, 3.45f, 18.54f, 2.0f, 16.75f, 2.0f) - lineTo(5.25f, 2.0f) - close() - moveTo(16.28f, 8.28f) - lineTo(9.53f, 15.03f) - curveToRelative(-0.3f, 0.29f, -0.77f, 0.29f, -1.06f, 0.0f) - lineToRelative(-2.75f, -2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineTo(9.0f, 13.44f) - lineToRelative(6.22f, -6.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(14.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(19.29f, 17.0f) - lineTo(14.5f, 17.0f) - close() - } - } - return _checkboxArrowRight!! - } - -private var _checkboxArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckboxChecked.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckboxChecked.kt deleted file mode 100644 index 8a43ca35..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckboxChecked.kt +++ /dev/null @@ -1,41 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CheckboxChecked: ImageVector - get() { - if (_checkboxChecked != null) { - return _checkboxChecked!! - } - _checkboxChecked = fluentIcon(name = "Filled.CheckboxChecked") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(17.28f, 9.28f) - lineTo(10.53f, 16.03f) - curveToRelative(-0.3f, 0.29f, -0.77f, 0.29f, -1.06f, 0.0f) - lineToRelative(-2.75f, -2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineTo(10.0f, 14.44f) - lineToRelative(6.22f, -6.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - close() - } - } - return _checkboxChecked!! - } - -private var _checkboxChecked: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckboxIndeterminate.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckboxIndeterminate.kt deleted file mode 100644 index 326808a9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckboxIndeterminate.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CheckboxIndeterminate: ImageVector - get() { - if (_checkboxIndeterminate != null) { - return _checkboxIndeterminate!! - } - _checkboxIndeterminate = fluentIcon(name = "Filled.CheckboxIndeterminate") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(5.0f, 6.25f) - curveTo(5.0f, 5.56f, 5.56f, 5.0f, 6.25f, 5.0f) - horizontalLineToRelative(11.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - lineTo(6.25f, 19.0f) - curveTo(5.56f, 19.0f, 5.0f, 18.44f, 5.0f, 17.75f) - lineTo(5.0f, 6.25f) - close() - moveTo(7.5f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineToRelative(-9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineToRelative(-9.0f) - close() - } - } - return _checkboxIndeterminate!! - } - -private var _checkboxIndeterminate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckboxPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckboxPerson.kt deleted file mode 100644 index bd2515d5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckboxPerson.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CheckboxPerson: ImageVector - get() { - if (_checkboxPerson != null) { - return _checkboxPerson!! - } - _checkboxPerson = fluentIcon(name = "Filled.CheckboxPerson") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(6.92f) - arcToRelative(3.74f, 3.74f, 0.0f, false, true, -0.17f, -1.13f) - verticalLineToRelative(-0.1f) - arcTo(2.77f, 2.77f, 0.0f, false, true, 15.77f, 17.0f) - horizontalLineToRelative(0.28f) - arcToRelative(3.49f, 3.49f, 0.0f, false, true, 2.45f, -6.0f) - curveToRelative(0.98f, 0.0f, 1.86f, 0.4f, 2.5f, 1.05f) - verticalLineToRelative(-5.8f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(17.28f, 9.28f) - lineTo(10.53f, 16.03f) - curveToRelative(-0.3f, 0.29f, -0.77f, 0.29f, -1.06f, 0.0f) - lineToRelative(-2.75f, -2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineTo(10.0f, 14.44f) - lineToRelative(6.22f, -6.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - close() - moveTo(21.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(23.0f, 19.88f) - curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) - reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _checkboxPerson!! - } - -private var _checkboxPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckboxUnchecked.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckboxUnchecked.kt deleted file mode 100644 index 3ba4141c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckboxUnchecked.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CheckboxUnchecked: ImageVector - get() { - if (_checkboxUnchecked != null) { - return _checkboxUnchecked!! - } - _checkboxUnchecked = fluentIcon(name = "Filled.CheckboxUnchecked") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineTo(6.25f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - verticalLineTo(6.25f) - close() - moveTo(6.25f, 5.0f) - curveTo(5.56f, 5.0f, 5.0f, 5.56f, 5.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(11.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineTo(6.25f) - curveTo(19.0f, 5.56f, 18.44f, 5.0f, 17.75f, 5.0f) - horizontalLineTo(6.25f) - close() - } - } - return _checkboxUnchecked!! - } - -private var _checkboxUnchecked: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckboxWarning.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckboxWarning.kt deleted file mode 100644 index e7089db4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckboxWarning.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CheckboxWarning: ImageVector - get() { - if (_checkboxWarning != null) { - return _checkboxWarning!! - } - _checkboxWarning = fluentIcon(name = "Filled.CheckboxWarning") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(4.8f) - curveToRelative(0.05f, -0.2f, 0.12f, -0.42f, 0.22f, -0.62f) - lineToRelative(4.0f, -8.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 4.47f, 0.0f) - lineTo(21.0f, 14.9f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(17.28f, 9.28f) - lineTo(10.53f, 16.03f) - curveToRelative(-0.3f, 0.29f, -0.77f, 0.29f, -1.06f, 0.0f) - lineToRelative(-2.75f, -2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineTo(10.0f, 14.44f) - lineToRelative(6.22f, -6.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - close() - moveTo(16.16f, 12.83f) - lineTo(12.16f, 20.83f) - arcTo(1.5f, 1.5f, 0.0f, false, false, 13.51f, 23.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.33f, -2.17f) - lineToRelative(-4.0f, -8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.68f, 0.0f) - close() - moveTo(18.0f, 15.5f) - verticalLineToRelative(3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - close() - moveTo(17.5f, 21.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - close() - } - } - return _checkboxWarning!! - } - -private var _checkboxWarning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckmarkCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckmarkCircle.kt deleted file mode 100644 index d7157679..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckmarkCircle.kt +++ /dev/null @@ -1,35 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CheckmarkCircle: ImageVector - get() { - if (_checkmarkCircle != null) { - return _checkmarkCircle!! - } - _checkmarkCircle = fluentIcon(name = "Filled.CheckmarkCircle") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(15.22f, 8.97f) - lineTo(10.75f, 13.44f) - lineTo(8.78f, 11.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(2.5f, 2.5f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(5.0f, -5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - close() - } - } - return _checkmarkCircle!! - } - -private var _checkmarkCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckmarkLock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckmarkLock.kt deleted file mode 100644 index ab5540fb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckmarkLock.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CheckmarkLock: ImageVector - get() { - if (_checkmarkLock != null) { - return _checkmarkLock!! - } - _checkmarkLock = fluentIcon(name = "Filled.CheckmarkLock") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 9.92f, 11.26f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 15.0f, 14.0f) - verticalLineToRelative(0.05f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.0f, 2.45f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.15f, 0.01f, 0.3f, 0.04f, 0.45f) - arcTo(10.0f, 10.0f, 0.0f, true, true, 12.0f, 2.0f) - close() - moveTo(15.22f, 8.97f) - lineTo(10.75f, 13.44f) - lineTo(8.78f, 11.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(2.5f, 2.5f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(5.0f, -5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - close() - moveTo(18.5f, 11.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 21.0f, 14.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(0.54f) - curveToRelative(0.81f, 0.02f, 1.46f, 0.69f, 1.46f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-6.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(0.5f) - verticalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, -2.5f) - close() - moveTo(18.1f, 19.92f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.35f, -1.24f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.34f, 1.24f) - close() - moveTo(17.5f, 14.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - close() - } - } - return _checkmarkLock!! - } - -private var _checkmarkLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckmarkSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckmarkSquare.kt deleted file mode 100644 index 92a1c293..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckmarkSquare.kt +++ /dev/null @@ -1,41 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CheckmarkSquare: ImageVector - get() { - if (_checkmarkSquare != null) { - return _checkmarkSquare!! - } - _checkmarkSquare = fluentIcon(name = "Filled.CheckmarkSquare") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(16.28f, 9.78f) - lineTo(11.28f, 14.78f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(1.47f, 1.47f) - lineToRelative(4.47f, -4.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - close() - } - } - return _checkmarkSquare!! - } - -private var _checkmarkSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckmarkStarburst.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckmarkStarburst.kt deleted file mode 100644 index 199cc1d2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CheckmarkStarburst.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CheckmarkStarburst: ImageVector - get() { - if (_checkmarkStarburst != null) { - return _checkmarkStarburst!! - } - _checkmarkStarburst = fluentIcon(name = "Filled.CheckmarkStarburst") { - fluentPath { - moveToRelative(9.84f, 2.03f) - lineToRelative(0.32f, 0.14f) - lineToRelative(1.29f, 0.63f) - curveToRelative(0.35f, 0.17f, 0.75f, 0.17f, 1.1f, 0.0f) - lineToRelative(1.28f, -0.63f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 3.69f, 1.25f) - lineToRelative(0.07f, 0.17f) - lineToRelative(0.06f, 0.16f) - lineToRelative(0.46f, 1.36f) - curveToRelative(0.13f, 0.36f, 0.42f, 0.65f, 0.78f, 0.78f) - lineToRelative(1.36f, 0.46f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 1.58f, 3.81f) - lineToRelative(-0.63f, 1.29f) - curveToRelative(-0.17f, 0.35f, -0.17f, 0.75f, 0.0f, 1.1f) - lineToRelative(0.63f, 1.28f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -1.58f, 3.82f) - lineToRelative(-1.36f, 0.46f) - curveToRelative(-0.36f, 0.13f, -0.65f, 0.42f, -0.78f, 0.78f) - lineToRelative(-0.46f, 1.36f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -3.82f, 1.58f) - lineToRelative(-1.28f, -0.63f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.1f, 0.0f) - lineToRelative(-1.29f, 0.63f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -3.81f, -1.58f) - lineToRelative(-0.46f, -1.36f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -0.78f, -0.78f) - lineToRelative(-1.36f, -0.46f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -1.58f, -3.82f) - lineToRelative(0.63f, -1.28f) - curveToRelative(0.17f, -0.35f, 0.17f, -0.75f, 0.0f, -1.1f) - lineToRelative(-0.63f, -1.29f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 1.58f, -3.81f) - lineToRelative(1.36f, -0.46f) - curveToRelative(0.36f, -0.13f, 0.65f, -0.42f, 0.78f, -0.78f) - lineToRelative(0.46f, -1.36f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 3.49f, -1.72f) - close() - moveTo(15.47f, 8.97f) - lineTo(10.05f, 14.39f) - lineTo(8.08f, 12.02f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.16f, 0.96f) - lineToRelative(2.5f, 3.0f) - curveToRelative(0.29f, 0.34f, 0.8f, 0.36f, 1.11f, 0.05f) - lineToRelative(6.0f, -6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - close() - } - } - return _checkmarkStarburst!! - } - -private var _checkmarkStarburst: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChevronCircleDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChevronCircleDown.kt deleted file mode 100644 index a9d5e201..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChevronCircleDown.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChevronCircleDown: ImageVector - get() { - if (_chevronCircleDown != null) { - return _chevronCircleDown!! - } - _chevronCircleDown = fluentIcon(name = "Filled.ChevronCircleDown") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(7.47f, 9.97f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(4.0f, 4.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineTo(12.0f, 13.44f) - lineTo(8.53f, 9.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - close() - } - } - return _chevronCircleDown!! - } - -private var _chevronCircleDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChevronCircleLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChevronCircleLeft.kt deleted file mode 100644 index 97235782..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChevronCircleLeft.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChevronCircleLeft: ImageVector - get() { - if (_chevronCircleLeft != null) { - return _chevronCircleLeft!! - } - _chevronCircleLeft = fluentIcon(name = "Filled.ChevronCircleLeft") { - fluentPath { - moveTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, -20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 20.0f, 0.0f) - close() - moveTo(14.03f, 7.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-4.0f, 4.0f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(4.0f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineTo(10.56f, 12.0f) - lineToRelative(3.47f, -3.47f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - close() - } - } - return _chevronCircleLeft!! - } - -private var _chevronCircleLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChevronCircleRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChevronCircleRight.kt deleted file mode 100644 index 940dae7c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChevronCircleRight.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChevronCircleRight: ImageVector - get() { - if (_chevronCircleRight != null) { - return _chevronCircleRight!! - } - _chevronCircleRight = fluentIcon(name = "Filled.ChevronCircleRight") { - fluentPath { - moveTo(2.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) - close() - moveTo(9.97f, 16.53f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(4.0f, -4.0f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-4.0f, -4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(13.44f, 12.0f) - lineToRelative(-3.47f, 3.47f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - close() - } - } - return _chevronCircleRight!! - } - -private var _chevronCircleRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChevronCircleUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChevronCircleUp.kt deleted file mode 100644 index 4be53d7c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChevronCircleUp.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChevronCircleUp: ImageVector - get() { - if (_chevronCircleUp != null) { - return _chevronCircleUp!! - } - _chevronCircleUp = fluentIcon(name = "Filled.ChevronCircleUp") { - fluentPath { - moveTo(12.0f, 22.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) - close() - moveTo(7.47f, 14.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(4.0f, -4.0f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(4.0f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(12.0f, 10.56f) - lineToRelative(-3.47f, 3.47f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - close() - } - } - return _chevronCircleUp!! - } - -private var _chevronCircleUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChevronUpDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChevronUpDown.kt deleted file mode 100644 index b0c600d9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ChevronUpDown.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ChevronUpDown: ImageVector - get() { - if (_chevronUpDown != null) { - return _chevronUpDown!! - } - _chevronUpDown = fluentIcon(name = "Filled.ChevronUpDown") { - fluentPath { - moveTo(18.79f, 8.39f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.5f, 1.32f) - lineTo(12.0f, 4.4f) - lineToRelative(-5.3f, 5.3f) - lineToRelative(-0.09f, 0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, -1.5f) - lineToRelative(6.0f, -6.0f) - lineToRelative(0.1f, -0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, 0.08f) - lineToRelative(6.0f, 6.0f) - lineToRelative(0.08f, 0.1f) - close() - moveTo(5.21f, 15.6f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.5f, -1.32f) - lineTo(12.0f, 19.6f) - lineToRelative(5.3f, -5.3f) - lineToRelative(0.09f, -0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, 1.5f) - lineToRelative(-6.0f, 6.0f) - lineToRelative(-0.1f, 0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, -0.08f) - lineToRelative(-6.0f, -6.0f) - lineToRelative(-0.08f, -0.1f) - close() - } - } - return _chevronUpDown!! - } - -private var _chevronUpDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Circle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Circle.kt deleted file mode 100644 index 8cd2c98b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Circle.kt +++ /dev/null @@ -1,26 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Circle: ImageVector - get() { - if (_circle != null) { - return _circle!! - } - _circle = fluentIcon(name = "Filled.Circle") { - fluentPath { - moveTo(2.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) - close() - } - } - return _circle!! - } - -private var _circle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CircleEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CircleEdit.kt deleted file mode 100644 index 61ea3603..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CircleEdit.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CircleEdit: ImageVector - get() { - if (_circleEdit != null) { - return _circleEdit!! - } - _circleEdit = fluentIcon(name = "Filled.CircleEdit") { - fluentPath { - moveTo(20.72f, 11.0f) - curveToRelative(0.42f, 0.0f, 0.85f, 0.08f, 1.25f, 0.25f) - arcTo(10.0f, 10.0f, 0.0f, true, false, 11.0f, 21.95f) - curveToRelative(0.0f, -0.18f, 0.02f, -0.36f, 0.06f, -0.54f) - lineToRelative(0.46f, -1.83f) - curveToRelative(0.16f, -0.65f, 0.5f, -1.24f, 0.97f, -1.72f) - lineToRelative(5.9f, -5.9f) - arcToRelative(3.28f, 3.28f, 0.0f, false, true, 2.32f, -0.96f) - close() - } - fluentPath { - moveTo(20.72f, 12.0f) - curveToRelative(-0.6f, 0.0f, -1.18f, 0.22f, -1.62f, 0.67f) - lineToRelative(-5.9f, 5.9f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.71f, 1.25f) - lineToRelative(-0.46f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcTo(2.29f, 2.29f, 0.0f, false, false, 20.72f, 12.0f) - close() - } - } - return _circleEdit!! - } - -private var _circleEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CircleHalfFill.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CircleHalfFill.kt deleted file mode 100644 index 96b74509..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CircleHalfFill.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CircleHalfFill: ImageVector - get() { - if (_circleHalfFill != null) { - return _circleHalfFill!! - } - _circleHalfFill = fluentIcon(name = "Filled.CircleHalfFill") { - fluentPath { - moveTo(2.03f, 11.25f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 19.94f, 0.0f) - lineTo(22.0f, 11.25f) - lineTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(0.03f) - close() - moveTo(4.03f, 11.25f) - horizontalLineToRelative(15.94f) - arcToRelative(8.0f, 8.0f, 0.0f, false, false, -15.94f, 0.0f) - close() - } - } - return _circleHalfFill!! - } - -private var _circleHalfFill: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CircleImage.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CircleImage.kt deleted file mode 100644 index 637f7d3e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CircleImage.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CircleImage: ImageVector - get() { - if (_circleImage != null) { - return _circleImage!! - } - _circleImage = fluentIcon(name = "Filled.CircleImage") { - fluentPath { - moveTo(12.25f, 8.0f) - horizontalLineToRelative(3.68f) - arcTo(7.0f, 7.0f, 0.0f, true, false, 8.0f, 15.93f) - verticalLineToRelative(-3.68f) - curveTo(8.0f, 9.9f, 9.9f, 8.0f, 12.25f, 8.0f) - close() - moveTo(12.25f, 9.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 9.0f, 12.25f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 0.63f, 0.18f, 1.21f, 0.48f, 1.7f) - lineToRelative(4.25f, -4.24f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 3.54f, 0.0f) - lineToRelative(4.25f, 4.25f) - curveToRelative(0.3f, -0.5f, 0.48f, -1.08f, 0.48f, -1.71f) - verticalLineToRelative(-6.5f) - curveTo(22.0f, 10.45f, 20.54f, 9.0f, 18.75f, 9.0f) - horizontalLineToRelative(-6.5f) - close() - moveTo(20.45f, 21.52f) - lineTo(16.21f, 17.27f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, 0.0f) - lineToRelative(-4.25f, 4.25f) - curveToRelative(0.5f, 0.3f, 1.08f, 0.48f, 1.71f, 0.48f) - horizontalLineToRelative(6.5f) - curveToRelative(0.63f, 0.0f, 1.21f, -0.18f, 1.7f, -0.48f) - close() - moveTo(19.26f, 13.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - } - } - return _circleImage!! - } - -private var _circleImage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CircleLine.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CircleLine.kt deleted file mode 100644 index a247450e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CircleLine.kt +++ /dev/null @@ -1,30 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CircleLine: ImageVector - get() { - if (_circleLine != null) { - return _circleLine!! - } - _circleLine = fluentIcon(name = "Filled.CircleLine") { - fluentPath { - moveTo(21.97f, 12.75f) - lineTo(2.03f, 12.75f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 19.94f, 0.0f) - close() - moveTo(21.97f, 11.25f) - lineTo(2.03f, 11.25f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 19.94f, 0.0f) - close() - } - } - return _circleLine!! - } - -private var _circleLine: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CircleSmall.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CircleSmall.kt deleted file mode 100644 index 1a137db5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CircleSmall.kt +++ /dev/null @@ -1,26 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CircleSmall: ImageVector - get() { - if (_circleSmall != null) { - return _circleSmall!! - } - _circleSmall = fluentIcon(name = "Filled.CircleSmall") { - fluentPath { - moveTo(8.0f, 12.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, 8.0f, 0.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -8.0f, 0.0f) - close() - } - } - return _circleSmall!! - } - -private var _circleSmall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/City.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/City.kt deleted file mode 100644 index 9f5f6666..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/City.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.City: ImageVector - get() { - if (_city != null) { - return _city!! - } - _city = fluentIcon(name = "Filled.City") { - fluentPath { - moveTo(12.75f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - lineTo(11.25f, 4.0f) - horizontalLineToRelative(-2.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(7.5f, 7.9f) - curveToRelative(1.52f, -0.13f, 3.0f, 1.04f, 3.0f, 2.75f) - lineTo(10.5f, 22.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-8.75f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, -2.75f) - horizontalLineToRelative(0.25f) - lineTo(16.5f, 5.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-2.0f) - lineTo(12.75f, 2.75f) - close() - moveTo(14.5f, 22.0f) - horizontalLineToRelative(4.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-7.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-2.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(14.5f, 22.0f) - close() - moveTo(9.5f, 20.75f) - lineTo(9.5f, 22.0f) - lineTo(5.25f, 22.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-7.96f) - curveToRelative(0.0f, -0.59f, 0.3f, -1.14f, 0.79f, -1.46f) - lineToRelative(2.5f, -1.65f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 2.71f, 1.47f) - verticalLineToRelative(10.1f) - close() - } - } - return _city!! - } - -private var _city: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Class.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Class.kt deleted file mode 100644 index f471ee49..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Class.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Class: ImageVector - get() { - if (_class != null) { - return _class!! - } - _class = fluentIcon(name = "Filled.Class") { - fluentPath { - moveTo(17.25f, 2.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 20.0f, 4.75f) - verticalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 17.25f, 22.0f) - lineTo(6.75f, 22.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.0f, 19.25f) - lineTo(4.0f, 4.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 6.75f, 2.0f) - horizontalLineToRelative(0.3f) - verticalLineToRelative(8.17f) - curveToRelative(0.0f, 0.75f, 0.78f, 1.01f, 1.31f, 0.74f) - lineToRelative(0.09f, -0.06f) - lineToRelative(2.1f, -1.2f) - lineToRelative(2.13f, 1.23f) - curveToRelative(0.45f, 0.31f, 1.26f, 0.1f, 1.35f, -0.59f) - lineToRelative(0.01f, -0.12f) - lineTo(14.04f, 2.0f) - horizontalLineToRelative(3.21f) - close() - moveTo(12.55f, 2.0f) - verticalLineToRelative(7.08f) - lineToRelative(-1.63f, -0.94f) - arcToRelative(0.93f, 0.93f, 0.0f, false, false, -0.8f, 0.03f) - lineToRelative(-0.1f, 0.06f) - lineToRelative(-1.48f, 0.85f) - lineTo(8.54f, 2.0f) - horizontalLineToRelative(4.0f) - close() - } - } - return _class!! - } - -private var _class: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Classification.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Classification.kt deleted file mode 100644 index 13aa1aff..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Classification.kt +++ /dev/null @@ -1,100 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Classification: ImageVector - get() { - if (_classification != null) { - return _classification!! - } - _classification = fluentIcon(name = "Filled.Classification") { - fluentPath { - moveToRelative(9.02f, 6.0f) - lineToRelative(-1.5f, 1.5f) - lineTo(4.26f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.76f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.4f, 0.34f, 0.74f, 0.75f, 0.74f) - horizontalLineToRelative(11.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-3.28f) - lineToRelative(1.5f, -1.49f) - verticalLineToRelative(4.77f) - curveTo(18.0f, 21.0f, 17.0f, 22.0f, 15.75f, 22.0f) - lineTo(4.25f, 22.0f) - curveTo(3.01f, 22.0f, 2.0f, 21.0f, 2.0f, 19.75f) - lineTo(2.0f, 8.25f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.24f, 2.25f, -2.24f) - horizontalLineToRelative(4.77f) - close() - moveTo(5.22f, 12.22f) - lineTo(7.22f, 10.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - lineToRelative(5.5f, 5.5f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-5.5f, -5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(2.0f, -2.0f) - lineToRelative(-2.0f, 2.0f) - close() - moveTo(21.28f, 2.72f) - arcToRelative(2.58f, 2.58f, 0.0f, false, true, -0.47f, 4.02f) - lineToRelative(-0.14f, 0.08f) - lineToRelative(-1.17f, 0.62f) - lineToRelative(0.51f, 0.51f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.14f, 4.45f) - lineToRelative(-0.14f, 0.15f) - lineToRelative(-1.23f, 1.23f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-0.47f, -0.47f) - lineToRelative(-1.47f, 1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-5.5f, -5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(1.47f, -1.47f) - lineToRelative(-0.47f, -0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(1.23f, -1.23f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 4.45f, -0.14f) - lineToRelative(0.15f, 0.14f) - lineToRelative(0.51f, 0.51f) - lineToRelative(0.62f, -1.16f) - curveToRelative(0.09f, -0.17f, 0.2f, -0.33f, 0.32f, -0.48f) - lineToRelative(0.13f, -0.14f) - curveToRelative(1.01f, -1.0f, 2.64f, -1.0f, 3.65f, 0.0f) - close() - moveTo(11.75f, 7.82f) - lineTo(10.81f, 8.75f) - lineTo(15.25f, 13.19f) - lineTo(16.19f, 12.25f) - lineTo(11.75f, 7.81f) - close() - moveTo(18.69f, 3.78f) - curveToRelative(-0.05f, 0.05f, -0.1f, 0.1f, -0.13f, 0.17f) - lineToRelative(-0.06f, 0.09f) - lineToRelative(-0.83f, 1.57f) - lineToRelative(0.72f, 0.72f) - lineToRelative(1.57f, -0.84f) - arcToRelative(1.08f, 1.08f, 0.0f, true, false, -1.27f, -1.7f) - close() - } - } - return _classification!! - } - -private var _classification: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClearFormatting.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClearFormatting.kt deleted file mode 100644 index ecf785f5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClearFormatting.kt +++ /dev/null @@ -1,94 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClearFormatting: ImageVector - get() { - if (_clearFormatting != null) { - return _clearFormatting!! - } - _clearFormatting = fluentIcon(name = "Filled.ClearFormatting") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(3.0f, 19.0f) - horizontalLineToRelative(8.17f) - curveToRelative(0.17f, 0.72f, 0.46f, 1.4f, 0.85f, 2.0f) - lineTo(3.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(3.0f, 19.0f) - close() - moveTo(15.1f, 14.97f) - lineTo(15.02f, 15.02f) - lineTo(14.97f, 15.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.05f, 0.07f) - lineToRelative(1.77f, 1.77f) - lineToRelative(-1.76f, 1.77f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.06f, 0.06f) - lineToRelative(0.07f, 0.06f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) - lineToRelative(0.07f, -0.06f) - lineToRelative(1.77f, -1.76f) - lineToRelative(1.77f, 1.77f) - lineToRelative(0.07f, 0.05f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.57f, 0.0f) - lineToRelative(0.07f, -0.05f) - lineToRelative(0.05f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) - lineToRelative(-0.05f, -0.07f) - lineToRelative(-1.77f, -1.77f) - lineToRelative(1.77f, -1.77f) - lineToRelative(0.06f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) - lineToRelative(-0.06f, -0.07f) - lineToRelative(-0.07f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) - lineToRelative(-0.07f, 0.05f) - lineToRelative(-1.77f, 1.77f) - lineToRelative(-1.77f, -1.77f) - lineToRelative(-0.07f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.05f) - lineToRelative(-0.07f, 0.05f) - close() - moveTo(16.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.05f) - lineToRelative(-0.01f, 0.11f) - lineToRelative(-0.25f, 1.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.98f, -0.2f) - verticalLineToRelative(-0.12f) - lineToRelative(0.06f, -0.34f) - horizontalLineToRelative(-3.39f) - lineTo(9.67f, 16.0f) - lineTo(10.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(11.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - lineTo(7.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - horizontalLineToRelative(0.77f) - lineTo(9.4f, 5.0f) - lineTo(5.85f, 5.0f) - lineToRelative(-0.11f, 0.66f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.99f, -0.2f) - lineToRelative(0.01f, -0.12f) - lineToRelative(0.25f, -1.5f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 4.88f, 3.0f) - lineTo(5.0f, 3.0f) - horizontalLineToRelative(11.0f) - close() - } - } - return _clearFormatting!! - } - -private var _clearFormatting: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Clipboard.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Clipboard.kt deleted file mode 100644 index 5aa64648..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Clipboard.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Clipboard: ImageVector - get() { - if (_clipboard != null) { - return _clipboard!! - } - _clipboard = fluentIcon(name = "Filled.Clipboard") { - fluentPath { - moveTo(13.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(10.25f, 2.0f) - horizontalLineToRelative(3.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 2.24f, 2.0f) - horizontalLineToRelative(1.76f) - curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineTo(6.25f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - verticalLineTo(6.25f) - curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(1.76f) - lineTo(8.0f, 4.25f) - curveTo(8.0f, 3.01f, 9.0f, 2.0f, 10.25f, 2.0f) - close() - } - } - return _clipboard!! - } - -private var _clipboard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Clipboard3Day.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Clipboard3Day.kt deleted file mode 100644 index 83957572..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Clipboard3Day.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Clipboard3Day: ImageVector - get() { - if (_clipboard3Day != null) { - return _clipboard3Day!! - } - _clipboard3Day = fluentIcon(name = "Filled.Clipboard3Day") { - fluentPath { - moveTo(13.75f, 2.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) - lineTo(6.25f, 4.0f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 6.25f) - curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) - horizontalLineToRelative(-1.76f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) - close() - moveTo(10.25f, 3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(8.0f, 17.25f) - verticalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(15.25f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - close() - moveTo(11.25f, 17.25f) - verticalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - } - } - return _clipboard3Day!! - } - -private var _clipboard3Day: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardArrowRight.kt deleted file mode 100644 index c8500aff..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardArrowRight.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClipboardArrowRight: ImageVector - get() { - if (_clipboardArrowRight != null) { - return _clipboardArrowRight!! - } - _clipboardArrowRight = fluentIcon(name = "Filled.ClipboardArrowRight") { - fluentPath { - moveTo(10.25f, 2.0f) - horizontalLineToRelative(3.5f) - curveToRelative(1.16f, 0.0f, 2.11f, 0.87f, 2.24f, 2.0f) - horizontalLineToRelative(1.76f) - curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) - verticalLineToRelative(5.25f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.81f, 22.0f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 6.25f) - curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(1.76f) - curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) - close() - moveTo(13.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(19.29f, 17.0f) - lineTo(14.5f, 17.0f) - close() - } - } - return _clipboardArrowRight!! - } - -private var _clipboardArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardCheckmark.kt deleted file mode 100644 index d2f5a1ad..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardCheckmark.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClipboardCheckmark: ImageVector - get() { - if (_clipboardCheckmark != null) { - return _clipboardCheckmark!! - } - _clipboardCheckmark = fluentIcon(name = "Filled.ClipboardCheckmark") { - fluentPath { - moveTo(10.25f, 2.0f) - horizontalLineToRelative(3.5f) - curveToRelative(1.16f, 0.0f, 2.11f, 0.87f, 2.24f, 2.0f) - horizontalLineToRelative(1.76f) - curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) - verticalLineToRelative(5.25f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.81f, 22.0f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 6.25f) - curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(1.76f) - curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) - close() - moveTo(13.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-3.65f, 3.64f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _clipboardCheckmark!! - } - -private var _clipboardCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardClock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardClock.kt deleted file mode 100644 index bc9263c6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardClock.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClipboardClock: ImageVector - get() { - if (_clipboardClock != null) { - return _clipboardClock!! - } - _clipboardClock = fluentIcon(name = "Filled.ClipboardClock") { - fluentPath { - moveTo(11.38f, 13.62f) - curveToRelative(0.0f, 0.34f, 0.27f, 0.63f, 0.62f, 0.63f) - horizontalLineToRelative(1.38f) - arcToRelative(0.63f, 0.63f, 0.0f, false, false, 0.0f, -1.25f) - horizontalLineToRelative(-0.76f) - verticalLineToRelative(-1.63f) - arcToRelative(0.63f, 0.63f, 0.0f, false, false, -1.24f, 0.0f) - verticalLineToRelative(2.25f) - close() - moveTo(13.75f, 2.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) - lineTo(6.25f, 4.0f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 6.25f) - curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) - horizontalLineToRelative(-1.76f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) - close() - moveTo(10.25f, 3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(12.0f, 8.25f) - arcToRelative(4.75f, 4.75f, 0.0f, true, true, 0.0f, 9.5f) - arcToRelative(4.75f, 4.75f, 0.0f, false, true, 0.0f, -9.5f) - close() - } - } - return _clipboardClock!! - } - -private var _clipboardClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardCode.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardCode.kt deleted file mode 100644 index 7351cfef..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardCode.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClipboardCode: ImageVector - get() { - if (_clipboardCode != null) { - return _clipboardCode!! - } - _clipboardCode = fluentIcon(name = "Filled.ClipboardCode") { - fluentPath { - moveTo(10.25f, 2.0f) - horizontalLineToRelative(3.5f) - curveToRelative(1.16f, 0.0f, 2.11f, 0.87f, 2.24f, 2.0f) - horizontalLineToRelative(1.76f) - curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) - verticalLineToRelative(7.46f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -3.43f, -0.45f) - lineTo(16.06f, 15.0f) - horizontalLineToRelative(-0.73f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.89f, -0.41f) - lineToRelative(-2.0f, 2.25f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, 2.32f) - lineToRelative(2.0f, 2.25f) - curveToRelative(0.35f, 0.39f, 0.82f, 0.59f, 1.3f, 0.59f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 6.25f) - curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(1.76f) - curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) - close() - moveTo(13.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(11.19f, 18.5f) - lineTo(13.19f, 20.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.12f, -1.0f) - lineTo(12.75f, 18.0f) - lineToRelative(1.56f, -1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.12f, -1.0f) - lineToRelative(-2.0f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.0f) - close() - moveTo(17.53f, 13.54f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.44f, 0.42f) - lineToRelative(-2.5f, 8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.44f, -0.42f) - lineToRelative(2.5f, -8.5f) - close() - moveTo(19.75f, 20.81f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.06f, -1.06f) - lineTo(21.25f, 18.0f) - lineToRelative(-1.56f, -1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.12f, -1.0f) - lineToRelative(2.0f, 2.25f) - curveToRelative(0.25f, 0.29f, 0.25f, 0.71f, 0.0f, 1.0f) - lineToRelative(-2.0f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 0.06f) - close() - } - } - return _clipboardCode!! - } - -private var _clipboardCode: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardDataBar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardDataBar.kt deleted file mode 100644 index a8c9ac7e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardDataBar.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClipboardDataBar: ImageVector - get() { - if (_clipboardDataBar != null) { - return _clipboardDataBar!! - } - _clipboardDataBar = fluentIcon(name = "Filled.ClipboardDataBar") { - fluentPath { - moveTo(10.25f, 3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(13.75f, 2.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) - lineTo(6.25f, 4.0f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 6.25f) - curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) - horizontalLineToRelative(-1.76f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) - close() - moveTo(16.5f, 13.75f) - verticalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(12.0f, 11.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-5.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(9.0f, 9.75f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - } - } - return _clipboardDataBar!! - } - -private var _clipboardDataBar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardDay.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardDay.kt deleted file mode 100644 index 6b2abed4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardDay.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClipboardDay: ImageVector - get() { - if (_clipboardDay != null) { - return _clipboardDay!! - } - _clipboardDay = fluentIcon(name = "Filled.ClipboardDay") { - fluentPath { - moveTo(9.5f, 13.75f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(4.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-2.5f) - close() - moveTo(10.25f, 2.0f) - horizontalLineToRelative(3.5f) - curveToRelative(1.16f, 0.0f, 2.11f, 0.87f, 2.24f, 2.0f) - horizontalLineToRelative(1.76f) - curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 6.25f) - curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(1.76f) - curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) - close() - moveTo(13.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(8.0f, 9.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(9.75f, 12.0f) - curveTo(8.78f, 12.0f, 8.0f, 12.78f, 8.0f, 13.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(4.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-4.5f) - close() - } - } - return _clipboardDay!! - } - -private var _clipboardDay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardError.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardError.kt deleted file mode 100644 index 46bcf0a5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardError.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClipboardError: ImageVector - get() { - if (_clipboardError != null) { - return _clipboardError!! - } - _clipboardError = fluentIcon(name = "Filled.ClipboardError") { - fluentPath { - moveTo(10.25f, 2.0f) - horizontalLineToRelative(3.5f) - curveToRelative(1.16f, 0.0f, 2.11f, 0.87f, 2.24f, 2.0f) - horizontalLineToRelative(1.76f) - curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) - verticalLineToRelative(5.25f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.81f, 22.0f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 6.25f) - curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(1.76f) - curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) - close() - moveTo(13.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(17.5f, 14.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(17.5f, 21.13f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.25f) - close() - } - } - return _clipboardError!! - } - -private var _clipboardError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardHeart.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardHeart.kt deleted file mode 100644 index 8f150118..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardHeart.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClipboardHeart: ImageVector - get() { - if (_clipboardHeart != null) { - return _clipboardHeart!! - } - _clipboardHeart = fluentIcon(name = "Filled.ClipboardHeart") { - fluentPath { - moveTo(10.25f, 2.0f) - horizontalLineToRelative(3.5f) - curveToRelative(1.16f, 0.0f, 2.11f, 0.87f, 2.24f, 2.0f) - horizontalLineToRelative(1.76f) - curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) - verticalLineToRelative(4.98f) - arcToRelative(4.46f, 4.46f, 0.0f, false, false, -2.99f, 0.73f) - arcToRelative(4.47f, 4.47f, 0.0f, false, false, -5.64f, 6.87f) - lineTo(14.54f, 22.0f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 6.25f) - curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(1.76f) - curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) - close() - moveTo(13.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(17.01f, 22.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.53f, -0.22f) - lineToRelative(-4.4f, -4.4f) - arcToRelative(3.47f, 3.47f, 0.0f, true, true, 4.9f, -4.91f) - lineToRelative(0.03f, 0.04f) - lineToRelative(0.04f, -0.04f) - arcToRelative(3.47f, 3.47f, 0.0f, true, true, 4.9f, 4.9f) - lineToRelative(-4.4f, 4.41f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.22f) - close() - } - } - return _clipboardHeart!! - } - -private var _clipboardHeart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardImage.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardImage.kt deleted file mode 100644 index f256e12d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardImage.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClipboardImage: ImageVector - get() { - if (_clipboardImage != null) { - return _clipboardImage!! - } - _clipboardImage = fluentIcon(name = "Filled.ClipboardImage") { - fluentPath { - moveTo(13.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(10.25f, 2.0f) - horizontalLineToRelative(3.5f) - curveToRelative(1.16f, 0.0f, 2.11f, 0.87f, 2.24f, 2.0f) - horizontalLineToRelative(1.76f) - curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) - lineTo(20.0f, 11.0f) - horizontalLineToRelative(-5.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, 4.0f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.73f, 0.2f, 1.41f, 0.54f, 2.0f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 6.25f) - curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(1.76f) - curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) - close() - moveTo(15.0f, 12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.56f, 0.15f, 1.08f, 0.42f, 1.52f) - lineToRelative(3.49f, -3.49f) - curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.0f) - lineToRelative(3.5f, 3.5f) - curveToRelative(0.26f, -0.45f, 0.41f, -0.97f, 0.41f, -1.53f) - verticalLineToRelative(-5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - horizontalLineToRelative(-5.0f) - close() - moveTo(15.0f, 23.0f) - curveToRelative(-0.56f, 0.0f, -1.08f, -0.15f, -1.52f, -0.42f) - lineToRelative(3.49f, -3.49f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(3.5f, 3.5f) - curveToRelative(-0.45f, 0.26f, -0.97f, 0.41f, -1.53f, 0.41f) - horizontalLineToRelative(-5.0f) - close() - moveTo(20.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - close() - } - } - return _clipboardImage!! - } - -private var _clipboardImage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardLetter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardLetter.kt deleted file mode 100644 index fdde4844..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardLetter.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClipboardLetter: ImageVector - get() { - if (_clipboardLetter != null) { - return _clipboardLetter!! - } - _clipboardLetter = fluentIcon(name = "Filled.ClipboardLetter") { - fluentPath { - moveTo(13.75f, 2.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) - lineTo(6.25f, 4.0f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(4.83f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.05f, -1.12f) - lineToRelative(1.79f, -3.98f) - lineToRelative(0.01f, -0.03f) - lineToRelative(0.84f, -1.86f) - lineTo(13.77f, 15.0f) - lineToRelative(1.85f, -4.12f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.74f, 0.0f) - lineTo(20.0f, 14.52f) - lineTo(20.0f, 6.25f) - curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) - horizontalLineToRelative(-1.76f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) - close() - moveTo(10.25f, 3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(12.51f, 22.0f) - arcToRelative(0.51f, 0.51f, 0.0f, false, true, -0.22f, -0.04f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.25f, -0.66f) - lineToRelative(1.8f, -4.0f) - verticalLineToRelative(-0.01f) - lineToRelative(2.7f, -6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.9f, 0.0f) - lineToRelative(2.7f, 6.0f) - lineToRelative(0.02f, 0.02f) - lineToRelative(1.8f, 3.98f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -0.92f, 0.42f) - lineTo(19.37f, 18.0f) - horizontalLineToRelative(-4.75f) - lineToRelative(-1.67f, 3.7f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.44f, 0.3f) - close() - moveTo(16.99f, 12.72f) - lineTo(15.07f, 17.0f) - horizontalLineToRelative(3.85f) - lineTo(17.0f, 12.72f) - close() - } - } - return _clipboardLetter!! - } - -private var _clipboardLetter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardLink.kt deleted file mode 100644 index fb5d7ccc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardLink.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClipboardLink: ImageVector - get() { - if (_clipboardLink != null) { - return _clipboardLink!! - } - _clipboardLink = fluentIcon(name = "Filled.ClipboardLink") { - fluentPath { - moveTo(10.25f, 2.0f) - horizontalLineToRelative(3.5f) - curveToRelative(1.16f, 0.0f, 2.11f, 0.87f, 2.24f, 2.0f) - horizontalLineToRelative(1.76f) - curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) - lineTo(20.0f, 14.0f) - horizontalLineToRelative(-5.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, -4.0f, 8.0f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 6.25f) - curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(1.76f) - curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) - close() - moveTo(13.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(23.0f, 19.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, -4.0f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(0.16f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -0.16f, 5.0f) - horizontalLineToRelative(-0.1f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 19.0f, 23.0f) - horizontalLineToRelative(0.2f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.8f, -4.0f) - close() - moveTo(15.75f, 15.75f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 15.0f, 15.0f) - horizontalLineToRelative(-0.2f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.2f, 8.0f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-0.16f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.16f, -5.0f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(18.75f, 18.25f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - } - } - return _clipboardLink!! - } - -private var _clipboardLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardMonth.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardMonth.kt deleted file mode 100644 index 9367bd0c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardMonth.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClipboardMonth: ImageVector - get() { - if (_clipboardMonth != null) { - return _clipboardMonth!! - } - _clipboardMonth = fluentIcon(name = "Filled.ClipboardMonth") { - fluentPath { - moveTo(13.75f, 2.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) - lineTo(6.25f, 4.0f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 6.25f) - curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) - horizontalLineToRelative(-1.76f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) - close() - moveTo(10.25f, 3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(8.25f, 12.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, 2.5f) - close() - moveTo(8.25f, 16.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, 2.5f) - close() - moveTo(17.5f, 11.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(12.25f, 12.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, 2.5f) - close() - moveTo(13.5f, 15.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - } - } - return _clipboardMonth!! - } - -private var _clipboardMonth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardMore.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardMore.kt deleted file mode 100644 index 61790dde..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardMore.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClipboardMore: ImageVector - get() { - if (_clipboardMore != null) { - return _clipboardMore!! - } - _clipboardMore = fluentIcon(name = "Filled.ClipboardMore") { - fluentPath { - moveTo(10.25f, 3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(13.75f, 2.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) - lineTo(6.25f, 4.0f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - lineTo(8.5f, 22.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 4.5f, -1.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - curveToRelative(0.0f, -1.2f, 0.86f, -2.22f, 2.0f, -2.45f) - lineTo(20.0f, 6.25f) - curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) - horizontalLineToRelative(-1.76f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) - close() - moveTo(12.0f, 20.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - moveTo(15.5f, 22.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - close() - moveTo(20.5f, 22.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - close() - } - } - return _clipboardMore!! - } - -private var _clipboardMore: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardPulse.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardPulse.kt deleted file mode 100644 index 2043eb11..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardPulse.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClipboardPulse: ImageVector - get() { - if (_clipboardPulse != null) { - return _clipboardPulse!! - } - _clipboardPulse = fluentIcon(name = "Filled.ClipboardPulse") { - fluentPath { - moveTo(10.25f, 2.0f) - horizontalLineToRelative(3.5f) - curveToRelative(1.16f, 0.0f, 2.11f, 0.87f, 2.24f, 2.0f) - horizontalLineToRelative(1.76f) - curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) - lineTo(20.0f, 13.0f) - horizontalLineToRelative(-2.26f) - lineToRelative(-0.99f, -1.65f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -3.07f, 0.12f) - lineToRelative(-0.5f, 1.02f) - lineToRelative(-1.25f, -4.23f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -3.25f, -0.3f) - lineTo(6.17f, 13.0f) - lineTo(4.0f, 13.0f) - lineTo(4.0f, 6.25f) - curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(1.76f) - curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) - close() - moveTo(13.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(16.75f, 16.5f) - lineTo(20.0f, 16.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 16.5f) - horizontalLineToRelative(3.25f) - curveToRelative(0.66f, 0.0f, 1.27f, -0.37f, 1.57f, -0.97f) - lineToRelative(1.0f, -2.02f) - lineToRelative(1.25f, 4.23f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 3.25f, 0.3f) - lineToRelative(1.08f, -2.18f) - curveToRelative(0.33f, 0.4f, 0.82f, 0.64f, 1.35f, 0.64f) - close() - moveTo(10.97f, 8.54f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.4f, -0.13f) - lineTo(6.8f, 14.0f) - lineTo(2.75f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.5f) - curveToRelative(0.28f, 0.0f, 0.54f, -0.16f, 0.67f, -0.41f) - lineToRelative(2.15f, -4.3f) - lineToRelative(1.96f, 6.67f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.4f, 0.13f) - lineToRelative(1.88f, -3.78f) - lineToRelative(0.8f, 1.33f) - curveToRelative(0.13f, 0.22f, 0.38f, 0.36f, 0.64f, 0.36f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.08f) - lineToRelative(-1.28f, -2.14f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.31f, 0.05f) - lineToRelative(-1.65f, 3.3f) - lineToRelative(-1.96f, -6.67f) - close() - } - } - return _clipboardPulse!! - } - -private var _clipboardPulse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardSearch.kt deleted file mode 100644 index da6df4ef..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardSearch.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClipboardSearch: ImageVector - get() { - if (_clipboardSearch != null) { - return _clipboardSearch!! - } - _clipboardSearch = fluentIcon(name = "Filled.ClipboardSearch") { - fluentPath { - moveTo(13.75f, 2.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) - lineTo(6.25f, 4.0f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) - verticalLineToRelative(3.85f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 7.25f, 7.67f) - lineToRelative(2.24f, 2.24f) - curveToRelative(0.53f, 0.54f, 0.65f, 1.34f, 0.34f, 1.99f) - horizontalLineToRelative(3.92f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 6.25f) - curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) - horizontalLineToRelative(-1.76f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) - close() - moveTo(10.25f, 3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(9.95f, 17.89f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, -1.15f, 0.98f) - lineToRelative(2.92f, 2.91f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.83f, -2.83f) - close() - moveTo(6.5f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) - close() - } - } - return _clipboardSearch!! - } - -private var _clipboardSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardSettings.kt deleted file mode 100644 index 6c62db07..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardSettings.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClipboardSettings: ImageVector - get() { - if (_clipboardSettings != null) { - return _clipboardSettings!! - } - _clipboardSettings = fluentIcon(name = "Filled.ClipboardSettings") { - fluentPath { - moveTo(10.25f, 2.0f) - horizontalLineToRelative(3.5f) - curveToRelative(1.16f, 0.0f, 2.11f, 0.87f, 2.24f, 2.0f) - horizontalLineToRelative(1.76f) - curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) - verticalLineToRelative(5.25f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.81f, 22.0f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 6.25f) - curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(1.76f) - curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) - close() - moveTo(13.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(14.28f, 13.98f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.59f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) - lineToRelative(0.55f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) - lineToRelative(-0.19f, 0.64f) - curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) - lineToRelative(0.49f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) - lineToRelative(-0.2f, -0.69f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) - lineToRelative(0.59f, -0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, -1.8f) - lineToRelative(-0.55f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.19f, -0.63f) - curveToRelative(-0.44f, -0.4f, -0.94f, -0.7f, -1.49f, -0.93f) - lineToRelative(-0.49f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) - lineToRelative(0.2f, 0.7f) - close() - moveTo(17.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) - close() - } - } - return _clipboardSettings!! - } - -private var _clipboardSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardTask.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardTask.kt deleted file mode 100644 index ff380ae7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardTask.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClipboardTask: ImageVector - get() { - if (_clipboardTask != null) { - return _clipboardTask!! - } - _clipboardTask = fluentIcon(name = "Filled.ClipboardTask") { - fluentPath { - moveTo(13.75f, 2.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) - lineTo(6.25f, 4.0f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 6.25f) - curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) - horizontalLineToRelative(-1.76f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) - close() - moveTo(10.25f, 3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(17.03f, 11.03f) - lineTo(11.53f, 16.53f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineTo(11.0f, 14.94f) - lineToRelative(4.97f, -4.97f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - close() - } - } - return _clipboardTask!! - } - -private var _clipboardTask: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardTaskAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardTaskAdd.kt deleted file mode 100644 index 8e0740e3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardTaskAdd.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClipboardTaskAdd: ImageVector - get() { - if (_clipboardTaskAdd != null) { - return _clipboardTaskAdd!! - } - _clipboardTaskAdd = fluentIcon(name = "Filled.ClipboardTaskAdd") { - fluentPath { - moveTo(11.75f, 2.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) - lineTo(4.25f, 4.0f) - curveTo(3.01f, 4.0f, 2.0f, 5.0f, 2.0f, 6.25f) - verticalLineToRelative(13.5f) - curveTo(2.0f, 20.99f, 3.0f, 22.0f, 4.25f, 22.0f) - horizontalLineToRelative(8.56f) - arcToRelative(6.48f, 6.48f, 0.0f, false, true, -0.85f, -7.9f) - lineToRelative(-2.43f, 2.43f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineTo(9.0f, 14.94f) - lineToRelative(4.97f, -4.97f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-0.93f, 0.93f) - arcToRelative(6.47f, 6.47f, 0.0f, false, true, 3.9f, -0.94f) - lineTo(18.0f, 6.25f) - curveTo(18.0f, 5.01f, 17.0f, 4.0f, 15.75f, 4.0f) - horizontalLineToRelative(-1.76f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) - close() - moveTo(8.25f, 3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _clipboardTaskAdd!! - } - -private var _clipboardTaskAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardTaskListLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardTaskListLtr.kt deleted file mode 100644 index 8e23744b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardTaskListLtr.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClipboardTaskListLtr: ImageVector - get() { - if (_clipboardTaskListLtr != null) { - return _clipboardTaskListLtr!! - } - _clipboardTaskListLtr = fluentIcon(name = "Filled.ClipboardTaskListLtr") { - fluentPath { - moveTo(13.75f, 2.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) - lineTo(6.25f, 4.0f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 6.25f) - curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) - horizontalLineToRelative(-1.76f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) - close() - moveTo(10.25f, 3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(12.5f, 10.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(13.25f, 15.0f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - close() - moveTo(10.78f, 9.78f) - lineTo(8.78f, 11.78f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-1.0f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(0.47f, 0.47f) - lineToRelative(1.47f, -1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - close() - moveTo(10.78f, 14.22f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-2.0f, 2.0f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-1.0f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(0.47f, 0.47f) - lineToRelative(1.47f, -1.47f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - } - } - return _clipboardTaskListLtr!! - } - -private var _clipboardTaskListLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardTaskListRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardTaskListRtl.kt deleted file mode 100644 index c9246e86..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardTaskListRtl.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClipboardTaskListRtl: ImageVector - get() { - if (_clipboardTaskListRtl != null) { - return _clipboardTaskListRtl!! - } - _clipboardTaskListRtl = fluentIcon(name = "Filled.ClipboardTaskListRtl") { - fluentPath { - moveTo(13.75f, 2.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) - lineTo(6.25f, 4.0f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 6.25f) - curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) - horizontalLineToRelative(-1.76f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) - close() - moveTo(10.25f, 3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(17.28f, 8.72f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-2.0f, 2.0f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-1.0f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(0.47f, 0.47f) - lineToRelative(1.47f, -1.47f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(17.28f, 15.28f) - lineTo(15.28f, 17.28f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-1.0f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(0.47f, 0.47f) - lineToRelative(1.47f, -1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - close() - moveTo(7.0f, 10.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(7.75f, 15.0f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - } - } - return _clipboardTaskListRtl!! - } - -private var _clipboardTaskListRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardTextEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardTextEdit.kt deleted file mode 100644 index a153c491..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardTextEdit.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClipboardTextEdit: ImageVector - get() { - if (_clipboardTextEdit != null) { - return _clipboardTextEdit!! - } - _clipboardTextEdit = fluentIcon(name = "Filled.ClipboardTextEdit") { - fluentPath { - moveTo(15.98f, 3.94f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 13.75f, 2.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-1.14f, 0.0f, -2.08f, 0.85f, -2.23f, 1.94f) - lineToRelative(-0.01f, 0.14f) - lineTo(8.01f, 4.0f) - lineTo(6.25f, 4.0f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - lineTo(11.0f, 22.0f) - curveToRelative(0.0f, -0.2f, 0.01f, -0.4f, 0.06f, -0.6f) - lineToRelative(0.46f, -1.82f) - curveToRelative(0.1f, -0.39f, 0.25f, -0.75f, 0.46f, -1.08f) - lineTo(8.0f, 18.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 17.0f) - horizontalLineToRelative(5.36f) - lineToRelative(5.03f, -5.04f) - arcToRelative(3.27f, 3.27f, 0.0f, false, true, 1.61f, -0.88f) - lineTo(20.0f, 6.25f) - curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) - horizontalLineToRelative(-1.76f) - verticalLineToRelative(0.08f) - lineToRelative(-0.01f, -0.14f) - close() - moveTo(10.25f, 3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(8.0f, 13.0f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(8.0f, 14.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 13.0f) - close() - moveTo(8.0f, 9.0f) - horizontalLineToRelative(8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(8.0f, 10.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 9.0f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _clipboardTextEdit!! - } - -private var _clipboardTextEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardTextLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardTextLtr.kt deleted file mode 100644 index cbf67144..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardTextLtr.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClipboardTextLtr: ImageVector - get() { - if (_clipboardTextLtr != null) { - return _clipboardTextLtr!! - } - _clipboardTextLtr = fluentIcon(name = "Filled.ClipboardTextLtr") { - fluentPath { - moveTo(13.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(13.75f, 2.0f) - curveToRelative(1.14f, 0.0f, 2.08f, 0.85f, 2.23f, 1.94f) - lineToRelative(0.01f, 0.14f) - lineTo(15.99f, 4.0f) - horizontalLineToRelative(1.76f) - curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 6.25f) - curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(1.76f) - verticalLineToRelative(0.08f) - lineToRelative(0.01f, -0.14f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 10.25f, 2.0f) - horizontalLineToRelative(3.5f) - close() - moveTo(14.0f, 17.0f) - lineTo(8.0f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(12.0f, 13.0f) - lineTo(8.0f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(16.0f, 9.0f) - lineTo(8.0f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.0f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 16.0f, 9.0f) - close() - } - } - return _clipboardTextLtr!! - } - -private var _clipboardTextLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardTextRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardTextRtl.kt deleted file mode 100644 index cec295a8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClipboardTextRtl.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClipboardTextRtl: ImageVector - get() { - if (_clipboardTextRtl != null) { - return _clipboardTextRtl!! - } - _clipboardTextRtl = fluentIcon(name = "Filled.ClipboardTextRtl") { - fluentPath { - moveTo(15.98f, 3.94f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 13.75f, 2.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-1.14f, 0.0f, -2.08f, 0.85f, -2.23f, 1.94f) - lineToRelative(-0.01f, 0.14f) - lineTo(8.01f, 4.0f) - lineTo(6.25f, 4.0f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 6.25f) - curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) - horizontalLineToRelative(-1.76f) - verticalLineToRelative(0.08f) - lineToRelative(-0.01f, -0.14f) - close() - moveTo(10.25f, 3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(8.0f, 9.0f) - horizontalLineToRelative(8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(8.0f, 10.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 9.0f) - close() - moveTo(11.25f, 13.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(10.0f, 17.0f) - horizontalLineToRelative(6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - } - } - return _clipboardTextRtl!! - } - -private var _clipboardTextRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClockAlarm.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClockAlarm.kt deleted file mode 100644 index 3b90ab1f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClockAlarm.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClockAlarm: ImageVector - get() { - if (_clockAlarm != null) { - return _clockAlarm!! - } - _clockAlarm = fluentIcon(name = "Filled.ClockAlarm") { - fluentPath { - moveTo(9.1f, 3.48f) - arcTo(4.0f, 4.0f, 0.0f, true, false, 3.48f, 9.1f) - arcToRelative(8.99f, 8.99f, 0.0f, false, false, 1.65f, 8.71f) - lineToRelative(-1.91f, 1.91f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(1.9f, -1.9f) - arcToRelative(8.96f, 8.96f, 0.0f, false, false, 11.63f, 0.0f) - lineToRelative(1.91f, 1.9f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-1.9f, -1.9f) - arcToRelative(8.96f, 8.96f, 0.0f, false, false, 1.64f, -8.72f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, -5.62f, -5.62f) - arcToRelative(8.99f, 8.99f, 0.0f, false, false, -5.8f, 0.0f) - close() - moveTo(6.0f, 3.5f) - curveToRelative(0.63f, 0.0f, 1.2f, 0.23f, 1.65f, 0.62f) - arcToRelative(9.04f, 9.04f, 0.0f, false, false, -3.53f, 3.53f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 6.0f, 3.5f) - close() - moveTo(16.35f, 4.12f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 3.53f, 3.53f) - arcToRelative(9.04f, 9.04f, 0.0f, false, false, -3.53f, -3.53f) - close() - moveTo(11.25f, 7.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(12.0f, 12.0f) - horizontalLineToRelative(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _clockAlarm!! - } - -private var _clockAlarm: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClockArrowDownload.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClockArrowDownload.kt deleted file mode 100644 index 17502259..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClockArrowDownload.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClockArrowDownload: ImageVector - get() { - if (_clockArrowDownload != null) { - return _clockArrowDownload!! - } - _clockArrowDownload = fluentIcon(name = "Filled.ClockArrowDownload") { - fluentPath { - moveTo(16.25f, 12.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(13.0f, 11.0f) - horizontalLineToRelative(3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(13.0f, 1.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, -9.95f, 11.0f) - arcTo(6.5f, 6.5f, 0.0f, false, true, 12.0f, 20.95f) - arcTo(10.0f, 10.0f, 0.0f, true, false, 13.0f, 1.0f) - close() - moveTo(1.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 5.0f, -5.48f) - verticalLineToRelative(5.77f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.5f, 2.5f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineTo(7.0f, 17.79f) - verticalLineToRelative(-5.77f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -6.0f, 5.48f) - close() - moveTo(3.5f, 20.5f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - lineTo(4.0f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - close() - } - } - return _clockArrowDownload!! - } - -private var _clockArrowDownload: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClockDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClockDismiss.kt deleted file mode 100644 index 127291a0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClockDismiss.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClockDismiss: ImageVector - get() { - if (_clockDismiss != null) { - return _clockDismiss!! - } - _clockDismiss = fluentIcon(name = "Filled.ClockDismiss") { - fluentPath { - moveTo(16.25f, 12.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(13.0f, 11.0f) - horizontalLineToRelative(3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(13.0f, 1.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, -9.95f, 11.0f) - arcTo(6.5f, 6.5f, 0.0f, false, true, 12.0f, 20.95f) - arcTo(10.0f, 10.0f, 0.0f, true, false, 13.0f, 1.0f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(4.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineTo(7.21f, 17.5f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineTo(6.5f, 16.79f) - lineToRelative(-1.65f, -1.64f) - close() - } - } - return _clockDismiss!! - } - -private var _clockDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClockLock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClockLock.kt deleted file mode 100644 index fad30f91..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClockLock.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClockLock: ImageVector - get() { - if (_clockLock != null) { - return _clockLock!! - } - _clockLock = fluentIcon(name = "Filled.ClockLock") { - fluentPath { - moveTo(15.25f, 13.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(12.0f, 12.0f) - horizontalLineToRelative(3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, -9.92f, 11.26f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 9.0f, 14.0f) - verticalLineToRelative(0.05f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.0f, 2.45f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.15f, -0.01f, 0.3f, -0.04f, 0.45f) - arcTo(10.0f, 10.0f, 0.0f, true, false, 12.0f, 2.0f) - close() - moveTo(3.0f, 15.0f) - verticalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(0.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-6.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 1.0f, 21.5f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - lineTo(3.0f, 15.0f) - close() - moveTo(4.5f, 14.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - close() - moveTo(6.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - } - } - return _clockLock!! - } - -private var _clockLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClockPause.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClockPause.kt deleted file mode 100644 index ea3cc378..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClockPause.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClockPause: ImageVector - get() { - if (_clockPause != null) { - return _clockPause!! - } - _clockPause = fluentIcon(name = "Filled.ClockPause") { - fluentPath { - moveTo(16.25f, 12.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(13.0f, 11.0f) - horizontalLineToRelative(3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(13.0f, 1.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, -9.95f, 11.0f) - arcTo(6.5f, 6.5f, 0.0f, false, true, 12.0f, 20.95f) - arcTo(10.0f, 10.0f, 0.0f, true, false, 13.0f, 1.0f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(4.5f, 20.5f) - arcTo(0.5f, 0.5f, 0.0f, false, false, 5.0f, 20.0f) - verticalLineToRelative(-5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - close() - moveTo(8.5f, 20.5f) - arcTo(0.5f, 0.5f, 0.0f, false, false, 9.0f, 20.0f) - verticalLineToRelative(-5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - close() - } - } - return _clockPause!! - } - -private var _clockPause: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClockToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClockToolbox.kt deleted file mode 100644 index 9b71e06c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClockToolbox.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClockToolbox: ImageVector - get() { - if (_clockToolbox != null) { - return _clockToolbox!! - } - _clockToolbox = fluentIcon(name = "Filled.ClockToolbox") { - fluentPath { - moveTo(16.25f, 12.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(13.0f, 11.0f) - horizontalLineToRelative(3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(13.0f, 1.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, -9.98f, 10.61f) - arcTo(2.74f, 2.74f, 0.0f, false, true, 4.75f, 11.0f) - horizontalLineToRelative(3.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 11.0f, 13.75f) - verticalLineToRelative(0.3f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.0f, 2.45f) - lineTo(13.0f, 21.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) - close() - moveTo(8.25f, 13.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - lineTo(4.5f, 15.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-1.25f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(3.0f, 15.0f) - verticalLineToRelative(-1.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(3.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(10.0f, 15.0f) - horizontalLineToRelative(0.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - lineTo(12.0f, 18.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(0.5f) - lineTo(4.0f, 18.0f) - verticalLineToRelative(-0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(0.5f) - lineTo(1.0f, 18.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - lineTo(3.0f, 15.0f) - close() - moveTo(9.0f, 19.5f) - lineTo(9.0f, 19.0f) - lineTo(4.0f, 19.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - lineTo(3.0f, 19.0f) - lineTo(1.0f, 19.0f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(8.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - lineTo(12.0f, 19.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - close() - } - } - return _clockToolbox!! - } - -private var _clockToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClosedCaption.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClosedCaption.kt deleted file mode 100644 index 8233879c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClosedCaption.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClosedCaption: ImageVector - get() { - if (_closedCaption != null) { - return _closedCaption!! - } - _closedCaption = fluentIcon(name = "Filled.ClosedCaption") { - fluentPath { - moveTo(18.75f, 4.0f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(5.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(5.25f, 4.0f) - horizontalLineToRelative(13.5f) - close() - moveTo(10.62f, 8.6f) - curveTo(8.22f, 7.22f, 5.5f, 8.85f, 5.5f, 12.0f) - curveToRelative(0.0f, 3.14f, 2.72f, 4.77f, 5.12f, 3.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.74f, -1.3f) - curveTo(8.48f, 14.9f, 7.0f, 14.0f, 7.0f, 12.0f) - reflectiveCurveToRelative(1.48f, -2.9f, 2.88f, -2.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.74f, -1.3f) - close() - moveTo(18.12f, 8.6f) - curveTo(15.72f, 7.22f, 13.0f, 8.85f, 13.0f, 12.0f) - curveToRelative(0.0f, 3.14f, 2.72f, 4.77f, 5.12f, 3.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.74f, -1.3f) - curveToRelative(-1.4f, 0.8f, -2.88f, -0.1f, -2.88f, -2.1f) - reflectiveCurveToRelative(1.48f, -2.9f, 2.88f, -2.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.74f, -1.3f) - close() - } - } - return _closedCaption!! - } - -private var _closedCaption: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClosedCaptionOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClosedCaptionOff.kt deleted file mode 100644 index a12f8065..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ClosedCaptionOff.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ClosedCaptionOff: ImageVector - get() { - if (_closedCaptionOff != null) { - return _closedCaptionOff!! - } - _closedCaptionOff = fluentIcon(name = "Filled.ClosedCaptionOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(1.25f, 1.25f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) - horizontalLineToRelative(13.69f) - lineToRelative(1.78f, 1.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(8.58f, 9.63f) - curveTo(7.68f, 9.78f, 7.0f, 10.63f, 7.0f, 12.0f) - curveToRelative(0.0f, 2.0f, 1.48f, 2.9f, 2.88f, 2.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.74f, 1.3f) - curveToRelative(-2.4f, 1.37f, -5.12f, -0.26f, -5.12f, -3.4f) - curveToRelative(0.0f, -1.7f, 0.8f, -2.96f, 1.9f, -3.54f) - lineToRelative(1.17f, 1.17f) - close() - moveTo(17.38f, 9.9f) - curveToRelative(-1.24f, -0.7f, -2.55f, -0.08f, -2.83f, 1.47f) - lineToRelative(7.01f, 7.01f) - curveToRelative(0.28f, -0.48f, 0.44f, -1.03f, 0.44f, -1.63f) - verticalLineToRelative(-9.5f) - curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) - lineTo(7.18f, 4.0f) - lineToRelative(6.18f, 6.17f) - arcToRelative(3.26f, 3.26f, 0.0f, false, true, 4.76f, -1.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 1.3f) - close() - } - } - return _closedCaptionOff!! - } - -private var _closedCaptionOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudAdd.kt deleted file mode 100644 index fc1bb810..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudAdd.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CloudAdd: ImageVector - get() { - if (_cloudAdd != null) { - return _cloudAdd!! - } - _cloudAdd = fluentIcon(name = "Filled.CloudAdd") { - fluentPath { - moveTo(6.08f, 8.02f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.05f, 4.97f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 10.02f, 17.0f) - lineTo(6.5f, 17.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) - close() - moveTo(22.0f, 16.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(17.0f, 17.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(16.0f, 17.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(16.0f, 16.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(17.0f, 16.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(17.0f, 17.0f) - close() - } - } - return _cloudAdd!! - } - -private var _cloudAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudArchive.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudArchive.kt deleted file mode 100644 index e0fca561..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudArchive.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CloudArchive: ImageVector - get() { - if (_cloudArchive != null) { - return _cloudArchive!! - } - _cloudArchive = fluentIcon(name = "Filled.CloudArchive") { - fluentPath { - moveTo(6.08f, 9.02f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) - arcTo(4.5f, 4.5f, 0.0f, false, true, 21.74f, 12.0f) - lineTo(13.0f, 12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.0f, 1.73f) - lineTo(12.0f, 18.0f) - lineTo(6.5f, 18.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) - close() - moveTo(13.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineToRelative(-9.0f) - close() - moveTo(22.0f, 17.0f) - horizontalLineToRelative(-9.0f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(15.5f, 18.5f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - } - } - return _cloudArchive!! - } - -private var _cloudArchive: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudArrowDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudArrowDown.kt deleted file mode 100644 index ecf632df..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudArrowDown.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CloudArrowDown: ImageVector - get() { - if (_cloudArrowDown != null) { - return _cloudArrowDown!! - } - _cloudArrowDown = fluentIcon(name = "Filled.CloudArrowDown") { - fluentPath { - moveTo(6.08f, 8.02f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.05f, 4.97f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 10.02f, 17.0f) - lineTo(6.5f, 17.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) - close() - moveTo(22.0f, 16.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(17.0f, 13.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(4.8f) - lineToRelative(-1.65f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.5f, 2.5f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineTo(17.0f, 18.29f) - lineTo(17.0f, 13.5f) - close() - } - } - return _cloudArrowDown!! - } - -private var _cloudArrowDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudArrowUp.kt deleted file mode 100644 index 4f6312d0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudArrowUp.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CloudArrowUp: ImageVector - get() { - if (_cloudArrowUp != null) { - return _cloudArrowUp!! - } - _cloudArrowUp = fluentIcon(name = "Filled.CloudArrowUp") { - fluentPath { - moveTo(6.08f, 8.02f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.05f, 4.97f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 10.02f, 17.0f) - lineTo(6.5f, 17.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) - close() - moveTo(22.0f, 16.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(16.0f, 19.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-4.8f) - lineToRelative(1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineTo(16.0f, 14.71f) - verticalLineToRelative(4.79f) - close() - } - } - return _cloudArrowUp!! - } - -private var _cloudArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudCheckmark.kt deleted file mode 100644 index 5af8b13f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudCheckmark.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CloudCheckmark: ImageVector - get() { - if (_cloudCheckmark != null) { - return _cloudCheckmark!! - } - _cloudCheckmark = fluentIcon(name = "Filled.CloudCheckmark") { - fluentPath { - moveTo(6.08f, 8.02f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.05f, 4.97f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 10.02f, 17.0f) - lineTo(6.5f, 17.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) - close() - moveTo(22.0f, 16.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(19.85f, 14.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-3.65f, 3.64f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _cloudCheckmark!! - } - -private var _cloudCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudDismiss.kt deleted file mode 100644 index 05ffc31f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudDismiss.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CloudDismiss: ImageVector - get() { - if (_cloudDismiss != null) { - return _cloudDismiss!! - } - _cloudDismiss = fluentIcon(name = "Filled.CloudDismiss") { - fluentPath { - moveTo(6.08f, 8.02f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.05f, 4.97f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 10.02f, 17.0f) - lineTo(6.5f, 17.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) - close() - moveTo(22.0f, 16.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.85f, 14.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-1.64f, -1.65f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.65f, 1.64f) - lineToRelative(-1.65f, -1.64f) - close() - } - } - return _cloudDismiss!! - } - -private var _cloudDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudEdit.kt deleted file mode 100644 index 529d9e19..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudEdit.kt +++ /dev/null @@ -1,41 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CloudEdit: ImageVector - get() { - if (_cloudEdit != null) { - return _cloudEdit!! - } - _cloudEdit = fluentIcon(name = "Filled.CloudEdit") { - fluentPath { - moveTo(6.08f, 9.02f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) - curveToRelative(0.92f, 0.08f, 1.76f, 0.45f, 2.43f, 1.0f) - curveToRelative(-0.71f, 0.08f, -1.4f, 0.4f, -1.96f, 0.94f) - lineToRelative(-5.9f, 5.9f) - curveToRelative(-0.33f, 0.33f, -0.59f, 0.72f, -0.77f, 1.14f) - lineTo(6.5f, 18.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) - close() - moveTo(19.1f, 11.67f) - lineTo(13.2f, 17.57f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _cloudEdit!! - } - -private var _cloudEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudError.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudError.kt deleted file mode 100644 index 00799a80..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudError.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CloudError: ImageVector - get() { - if (_cloudError != null) { - return _cloudError!! - } - _cloudError = fluentIcon(name = "Filled.CloudError") { - fluentPath { - moveTo(6.08f, 8.02f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.05f, 4.97f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 10.02f, 17.0f) - lineTo(6.5f, 17.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) - close() - moveTo(22.0f, 16.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(16.5f, 13.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(16.5f, 20.13f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.25f) - close() - } - } - return _cloudError!! - } - -private var _cloudError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudFlow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudFlow.kt deleted file mode 100644 index 349ade57..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudFlow.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CloudFlow: ImageVector - get() { - if (_cloudFlow != null) { - return _cloudFlow!! - } - _cloudFlow = fluentIcon(name = "Filled.CloudFlow") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, -5.92f, 5.02f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 6.5f, 16.0f) - horizontalLineToRelative(6.68f) - lineToRelative(0.13f, -0.5f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.49f, -2.22f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 6.15f, -1.13f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.03f, -5.13f) - arcTo(6.0f, 6.0f, 0.0f, false, false, 12.0f, 2.0f) - close() - moveTo(19.25f, 13.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(16.22f, 15.75f) - horizontalLineToRelative(0.47f) - arcToRelative(2.75f, 2.75f, 0.0f, true, false, -0.14f, -1.5f) - horizontalLineToRelative(-0.33f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.94f, 1.5f) - lineToRelative(-1.01f, 3.88f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.49f, 0.37f) - horizontalLineToRelative(-0.8f) - arcToRelative(2.75f, 2.75f, 0.0f, true, false, -0.28f, 1.5f) - horizontalLineToRelative(1.08f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.94f, -1.5f) - lineToRelative(1.01f, -3.88f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.49f, -0.37f) - close() - moveTo(8.0f, 20.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) - close() - } - } - return _cloudFlow!! - } - -private var _cloudFlow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudLink.kt deleted file mode 100644 index 3ad2c382..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudLink.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CloudLink: ImageVector - get() { - if (_cloudLink != null) { - return _cloudLink!! - } - _cloudLink = fluentIcon(name = "Filled.CloudLink") { - fluentPath { - moveTo(6.08f, 9.02f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) - curveToRelative(2.23f, 0.2f, 4.0f, 2.04f, 4.08f, 4.31f) - arcToRelative(4.74f, 4.74f, 0.0f, false, false, -3.75f, -1.83f) - horizontalLineToRelative(-3.5f) - arcToRelative(4.75f, 4.75f, 0.0f, false, false, -4.42f, 6.5f) - lineTo(6.5f, 18.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) - close() - moveTo(22.0f, 16.25f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.75f, -3.75f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - lineTo(18.25f, 20.0f) - horizontalLineToRelative(0.2f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 22.0f, 16.24f) - close() - moveTo(15.5f, 13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-0.2f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(19.0f, 16.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - } - } - return _cloudLink!! - } - -private var _cloudLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudOff.kt deleted file mode 100644 index be2cda76..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudOff.kt +++ /dev/null @@ -1,39 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CloudOff: ImageVector - get() { - if (_cloudOff != null) { - return _cloudOff!! - } - _cloudOff = fluentIcon(name = "Filled.CloudOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(4.63f, 4.63f) - arcToRelative(5.96f, 5.96f, 0.0f, false, false, -0.77f, 2.1f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 6.5f, 19.0f) - horizontalLineToRelative(11.0f) - curveToRelative(0.14f, 0.0f, 0.28f, 0.0f, 0.42f, -0.02f) - lineToRelative(2.8f, 2.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(22.0f, 14.5f) - curveToRelative(0.0f, 1.2f, -0.47f, 2.28f, -1.23f, 3.09f) - lineTo(9.0f, 5.81f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 8.93f, 4.21f) - arcTo(4.5f, 4.5f, 0.0f, false, true, 22.0f, 14.5f) - close() - } - } - return _cloudOff!! - } - -private var _cloudOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudSwap.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudSwap.kt deleted file mode 100644 index 8288f575..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudSwap.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CloudSwap: ImageVector - get() { - if (_cloudSwap != null) { - return _cloudSwap!! - } - _cloudSwap = fluentIcon(name = "Filled.CloudSwap") { - fluentPath { - moveTo(6.08f, 9.02f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 3.75f, 6.18f) - lineToRelative(-1.68f, -1.69f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.82f, 1.99f) - horizontalLineToRelative(-2.34f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.82f, -1.99f) - lineToRelative(-2.5f, 2.5f) - arcTo(1.75f, 1.75f, 0.0f, false, false, 9.17f, 18.0f) - lineTo(6.5f, 18.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) - close() - moveTo(13.78f, 15.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-2.5f, 2.5f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineTo(12.56f, 18.0f) - horizontalLineToRelative(6.88f) - lineToRelative(-1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(2.5f, -2.5f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.22f, 1.22f) - horizontalLineToRelative(-6.88f) - lineToRelative(1.22f, -1.22f) - close() - } - } - return _cloudSwap!! - } - -private var _cloudSwap: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudSync.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudSync.kt deleted file mode 100644 index 0fba5200..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudSync.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CloudSync: ImageVector - get() { - if (_cloudSync != null) { - return _cloudSync!! - } - _cloudSync = fluentIcon(name = "Filled.CloudSync") { - fluentPath { - moveTo(6.08f, 8.02f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.05f, 4.97f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 10.02f, 17.0f) - lineTo(6.5f, 17.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) - close() - moveTo(16.5f, 22.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) - close() - moveTo(18.5f, 15.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -3.86f, -0.17f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.75f, -0.66f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.11f, -0.12f) - verticalLineToRelative(-0.55f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - verticalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineToRelative(1.0f) - close() - moveTo(13.0f, 17.5f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.86f, 0.17f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.75f, 0.66f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.11f, 0.12f) - verticalLineToRelative(0.55f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-2.0f) - close() - } - } - return _cloudSync!! - } - -private var _cloudSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudWords.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudWords.kt deleted file mode 100644 index ded07f54..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CloudWords.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CloudWords: ImageVector - get() { - if (_cloudWords != null) { - return _cloudWords!! - } - _cloudWords = fluentIcon(name = "Filled.CloudWords") { - fluentPath { - moveTo(12.0f, 5.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, -5.92f, 5.02f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 6.5f, 19.0f) - horizontalLineToRelative(11.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 0.42f, -8.98f) - arcTo(6.0f, 6.0f, 0.0f, false, false, 12.0f, 5.0f) - close() - moveTo(10.0f, 9.5f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(5.5f, 14.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(13.75f, 13.5f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - } - } - return _cloudWords!! - } - -private var _cloudWords: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Clover.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Clover.kt deleted file mode 100644 index 935b4f52..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Clover.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Clover: ImageVector - get() { - if (_clover != null) { - return _clover!! - } - _clover = fluentIcon(name = "Filled.Clover") { - fluentPath { - moveTo(6.75f, 2.0f) - arcToRelative(4.75f, 4.75f, 0.0f, false, false, 0.0f, 9.5f) - horizontalLineToRelative(4.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-4.0f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 6.75f, 2.0f) - close() - moveTo(6.75f, 22.0f) - arcToRelative(4.75f, 4.75f, 0.0f, true, true, 0.0f, -9.5f) - horizontalLineToRelative(4.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(4.0f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 6.75f, 22.0f) - close() - moveTo(17.25f, 2.0f) - arcToRelative(4.75f, 4.75f, 0.0f, true, true, 0.0f, 9.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-4.0f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 17.25f, 2.0f) - close() - moveTo(17.25f, 22.0f) - arcToRelative(4.75f, 4.75f, 0.0f, true, false, 0.0f, -9.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.0f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 17.25f, 22.0f) - close() - } - } - return _clover!! - } - -private var _clover: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Code.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Code.kt deleted file mode 100644 index d71a2fdd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Code.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Code: ImageVector - get() { - if (_code != null) { - return _code!! - } - _code = fluentIcon(name = "Filled.Code") { - fluentPath { - moveToRelative(8.09f, 18.61f) - lineToRelative(6.0f, -14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.87f, 0.67f) - lineToRelative(-0.04f, 0.11f) - lineToRelative(-6.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.87f, -0.67f) - lineToRelative(0.04f, -0.1f) - lineToRelative(6.0f, -14.01f) - lineToRelative(-6.0f, 14.0f) - close() - moveTo(2.29f, 11.29f) - lineTo(6.29f, 7.29f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.5f, 1.32f) - lineToRelative(-0.08f, 0.1f) - lineTo(4.4f, 12.0f) - lineToRelative(3.3f, 3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 1.5f) - lineToRelative(-0.1f, -0.1f) - lineToRelative(-4.0f, -4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.31f) - lineToRelative(0.08f, -0.1f) - lineToRelative(4.0f, -4.0f) - lineToRelative(-4.0f, 4.0f) - close() - moveTo(16.29f, 7.29f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) - lineToRelative(0.1f, 0.08f) - lineToRelative(4.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.32f) - lineToRelative(-0.08f, 0.1f) - lineToRelative(-4.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.5f, -1.33f) - lineToRelative(0.08f, -0.1f) - lineTo(19.6f, 12.0f) - lineToRelative(-3.3f, -3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) - close() - } - } - return _code!! - } - -private var _code: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CodeBlock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CodeBlock.kt deleted file mode 100644 index b154dbc1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CodeBlock.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CodeBlock: ImageVector - get() { - if (_codeBlock != null) { - return _codeBlock!! - } - _codeBlock = fluentIcon(name = "Filled.CodeBlock") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(10.53f, 9.28f) - lineTo(7.81f, 12.0f) - lineToRelative(2.72f, 2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-3.25f, -3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(3.25f, -3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - close() - moveTo(14.53f, 8.22f) - lineTo(17.78f, 11.47f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-3.25f, 3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineTo(16.19f, 12.0f) - lineToRelative(-2.72f, -2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - close() - } - } - return _codeBlock!! - } - -private var _codeBlock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Collections.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Collections.kt deleted file mode 100644 index 5fdda11a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Collections.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Collections: ImageVector - get() { - if (_collections != null) { - return _collections!! - } - _collections = fluentIcon(name = "Filled.Collections") { - fluentPath { - moveTo(9.11f, 8.8f) - curveToRelative(0.34f, -0.3f, 0.75f, -0.53f, 1.2f, -0.66f) - lineToRelative(0.24f, -0.07f) - lineToRelative(0.16f, -0.03f) - lineToRelative(0.18f, -0.02f) - lineToRelative(0.18f, -0.02f) - horizontalLineToRelative(7.68f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.24f, 3.06f) - lineToRelative(0.01f, 0.19f) - verticalLineToRelative(7.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - horizontalLineToRelative(-7.68f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.06f) - lineTo(8.0f, 18.75f) - lineTo(8.0f, 11.1f) - lineToRelative(0.02f, -0.19f) - lineToRelative(0.02f, -0.2f) - lineToRelative(0.04f, -0.18f) - lineToRelative(0.06f, -0.22f) - lineToRelative(0.08f, -0.24f) - lineToRelative(0.08f, -0.2f) - lineToRelative(0.09f, -0.16f) - lineToRelative(0.1f, -0.16f) - lineToRelative(0.14f, -0.22f) - lineToRelative(0.1f, -0.12f) - lineToRelative(0.13f, -0.16f) - lineToRelative(0.1f, -0.11f) - lineToRelative(0.15f, -0.14f) - close() - moveTo(15.0f, 11.0f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(-2.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineTo(11.0f, 15.0f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - horizontalLineToRelative(2.6f) - verticalLineToRelative(2.51f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - verticalLineToRelative(-2.5f) - horizontalLineToRelative(2.5f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineTo(19.0f, 15.0f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-2.5f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineTo(15.0f, 11.0f) - close() - moveTo(15.58f, 4.23f) - lineTo(15.63f, 4.41f) - lineTo(16.33f, 7.0f) - horizontalLineToRelative(-5.08f) - arcTo(4.25f, 4.25f, 0.0f, false, false, 7.0f, 11.25f) - verticalLineToRelative(6.43f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -2.9f, -2.23f) - lineToRelative(-0.05f, -0.17f) - lineToRelative(-1.94f, -7.25f) - curveToRelative(-0.45f, -1.67f, 0.5f, -3.39f, 2.12f, -3.92f) - lineToRelative(0.18f, -0.06f) - lineToRelative(7.24f, -1.94f) - curveToRelative(1.68f, -0.45f, 3.4f, 0.5f, 3.93f, 2.12f) - close() - } - } - return _collections!! - } - -private var _collections: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CollectionsAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CollectionsAdd.kt deleted file mode 100644 index 207cdbee..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CollectionsAdd.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CollectionsAdd: ImageVector - get() { - if (_collectionsAdd != null) { - return _collectionsAdd!! - } - _collectionsAdd = fluentIcon(name = "Filled.CollectionsAdd") { - fluentPath { - moveTo(14.78f, 2.45f) - curveToRelative(0.82f, 0.44f, 1.47f, 1.2f, 1.78f, 2.14f) - lineToRelative(0.52f, 1.91f) - horizontalLineToRelative(-6.04f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.54f, 3.75f) - verticalLineToRelative(7.71f) - curveToRelative(0.02f, 0.25f, 0.06f, 0.5f, 0.12f, 0.73f) - arcToRelative(3.74f, 3.74f, 0.0f, false, true, -3.5f, -2.6f) - lineToRelative(-2.0f, -7.43f) - arcTo(3.74f, 3.74f, 0.0f, false, true, 4.6f, 4.13f) - lineToRelative(7.43f, -2.0f) - arcToRelative(3.74f, 3.74f, 0.0f, false, true, 2.76f, 0.32f) - close() - moveTo(11.26f, 7.5f) - horizontalLineToRelative(-0.17f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.59f, 2.75f) - verticalLineToRelative(7.66f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, 2.59f) - horizontalLineToRelative(0.48f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, 9.77f, -8.12f) - verticalLineToRelative(-2.29f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.75f, -2.59f) - horizontalLineToRelative(-7.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(17.41f, 14.0f) - horizontalLineToRelative(0.18f) - curveToRelative(0.2f, 0.04f, 0.36f, 0.2f, 0.4f, 0.4f) - lineToRelative(0.01f, 0.1f) - verticalLineTo(17.0f) - horizontalLineToRelative(2.6f) - curveToRelative(0.2f, 0.05f, 0.36f, 0.2f, 0.4f, 0.41f) - verticalLineToRelative(0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, 0.4f) - lineToRelative(-0.1f, 0.01f) - horizontalLineTo(18.0f) - verticalLineToRelative(2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, 0.4f) - horizontalLineToRelative(-0.19f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, -0.4f) - verticalLineTo(18.0f) - horizontalLineTo(14.4f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, -0.41f) - verticalLineToRelative(-0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.4f, -0.4f) - lineToRelative(0.1f, -0.01f) - horizontalLineTo(17.0f) - verticalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.41f, -0.4f) - close() - } - } - return _collectionsAdd!! - } - -private var _collectionsAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Color.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Color.kt deleted file mode 100644 index a22eaeb8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Color.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Color: ImageVector - get() { - if (_color != null) { - return _color!! - } - _color = fluentIcon(name = "Filled.Color") { - fluentPath { - moveTo(3.84f, 5.86f) - curveTo(6.78f, 1.94f, 12.87f, 0.8f, 17.2f, 3.5f) - curveToRelative(4.28f, 2.66f, 5.86f, 7.77f, 4.1f, 12.57f) - curveToRelative(-1.65f, 4.54f, -6.01f, 6.33f, -9.16f, 4.05f) - curveToRelative(-1.17f, -0.85f, -1.63f, -1.92f, -1.85f, -3.66f) - lineToRelative(-0.1f, -0.99f) - lineToRelative(-0.05f, -0.4f) - curveToRelative(-0.12f, -0.93f, -0.31f, -1.35f, -0.7f, -1.57f) - curveToRelative(-0.54f, -0.3f, -0.9f, -0.3f, -1.6f, -0.03f) - lineToRelative(-0.35f, 0.14f) - lineToRelative(-0.18f, 0.08f) - curveToRelative(-1.01f, 0.44f, -1.69f, 0.6f, -2.54f, 0.42f) - lineToRelative(-0.2f, -0.05f) - lineToRelative(-0.17f, -0.04f) - curveToRelative(-2.78f, -0.87f, -3.2f, -4.65f, -0.56f, -8.16f) - close() - moveTo(16.77f, 10.58f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 2.41f, -0.65f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.41f, 0.65f) - close() - moveTo(17.27f, 14.07f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 2.4f, -0.65f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.4f, 0.65f) - close() - moveTo(14.79f, 7.57f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 2.41f, -0.64f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.41f, 0.65f) - close() - moveTo(14.76f, 16.57f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 2.41f, -0.64f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.41f, 0.65f) - close() - moveTo(11.26f, 6.61f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 2.42f, -0.65f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.42f, 0.65f) - close() - } - } - return _color!! - } - -private var _color: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ColorBackground.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ColorBackground.kt deleted file mode 100644 index ef91cf13..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ColorBackground.kt +++ /dev/null @@ -1,96 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ColorBackground: ImageVector - get() { - if (_colorBackground != null) { - return _colorBackground!! - } - _colorBackground = fluentIcon(name = "Filled.ColorBackground") { - fluentPath { - moveTo(2.0f, 12.41f) - verticalLineToRelative(5.09f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.5f, 20.0f) - horizontalLineToRelative(15.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) - verticalLineToRelative(-11.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 19.5f, 4.0f) - horizontalLineToRelative(-8.94f) - lineToRelative(2.42f, 2.42f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.72f, 3.1f) - curveToRelative(0.38f, 0.03f, 0.75f, 0.2f, 1.04f, 0.5f) - horizontalLineToRelative(0.01f) - lineToRelative(0.02f, 0.03f) - arcToRelative(7.46f, 7.46f, 0.0f, false, true, 0.31f, 0.34f) - arcToRelative(7.98f, 7.98f, 0.0f, false, true, 1.48f, 2.2f) - curveToRelative(0.23f, 0.46f, 0.44f, 1.1f, 0.44f, 1.78f) - curveToRelative(0.0f, 1.86f, -1.4f, 3.63f, -3.5f, 3.63f) - reflectiveCurveTo(10.0f, 16.23f, 10.0f, 14.37f) - curveToRelative(0.0f, -0.29f, 0.04f, -0.56f, 0.1f, -0.82f) - lineTo(8.74f, 14.9f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -4.25f, 0.0f) - lineTo(2.0f, 12.4f) - close() - moveTo(11.34f, 12.99f) - curveToRelative(-0.19f, 0.41f, -0.34f, 0.9f, -0.34f, 1.38f) - curveToRelative(0.0f, 1.4f, 1.03f, 2.63f, 2.5f, 2.63f) - reflectiveCurveToRelative(2.5f, -1.23f, 2.5f, -2.63f) - curveToRelative(0.0f, -0.49f, -0.15f, -0.97f, -0.34f, -1.38f) - curveToRelative(-0.2f, -0.41f, -0.44f, -0.8f, -0.68f, -1.13f) - curveToRelative(-0.23f, -0.33f, -0.47f, -0.61f, -0.64f, -0.81f) - lineToRelative(-0.31f, -0.33f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-0.3f, 0.33f) - arcTo(6.98f, 6.98f, 0.0f, false, false, 11.34f, 13.0f) - close() - moveTo(13.5f, 12.39f) - arcToRelative(8.42f, 8.42f, 0.0f, false, true, 0.8f, 1.23f) - curveToRelative(0.14f, 0.3f, 0.2f, 0.56f, 0.2f, 0.76f) - curveToRelative(0.0f, 0.69f, -0.48f, 1.12f, -1.0f, 1.12f) - reflectiveCurveToRelative(-1.0f, -0.43f, -1.0f, -1.13f) - curveToRelative(0.0f, -0.19f, 0.06f, -0.44f, 0.2f, -0.75f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.8f, -1.24f) - close() - moveTo(6.75f, 1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(1.76f) - lineToRelative(-0.1f, 0.08f) - lineToRelative(-4.24f, 4.25f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 2.82f) - lineTo(5.2f, 14.2f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.83f, 0.0f) - lineToRelative(4.24f, -4.24f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, -2.83f) - lineTo(8.73f, 3.59f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.23f, -0.57f) - lineTo(7.5f, 1.75f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 6.75f, 1.0f) - close() - moveTo(6.0f, 5.62f) - verticalLineToRelative(0.63f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) - lineTo(7.5f, 4.54f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.17f, 0.11f) - lineToRelative(3.54f, 3.54f) - curveToRelative(0.09f, 0.09f, 0.14f, 0.2f, 0.15f, 0.32f) - lineTo(3.1f, 8.51f) - lineTo(6.0f, 5.62f) - close() - moveTo(6.26f, 13.14f) - lineTo(3.13f, 10.0f) - horizontalLineToRelative(6.97f) - lineToRelative(-3.13f, 3.13f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.71f, 0.0f) - close() - } - } - return _colorBackground!! - } - -private var _colorBackground: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ColorFill.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ColorFill.kt deleted file mode 100644 index 2a899439..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ColorFill.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ColorFill: ImageVector - get() { - if (_colorFill != null) { - return _colorFill!! - } - _colorFill = fluentIcon(name = "Filled.ColorFill") { - fluentPath { - moveToRelative(13.02f, 14.0f) - lineToRelative(-0.02f, 0.37f) - curveToRelative(0.0f, 1.86f, 1.4f, 3.63f, 3.5f, 3.63f) - arcToRelative(3.54f, 3.54f, 0.0f, false, false, 3.48f, -3.95f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 22.0f, 16.5f) - verticalLineToRelative(3.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.5f, 2.5f) - horizontalLineToRelative(-15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 2.0f, 19.5f) - verticalLineToRelative(-3.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.5f, 14.0f) - horizontalLineToRelative(2.09f) - lineToRelative(0.9f, 0.9f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 4.25f, 0.0f) - lineToRelative(0.9f, -0.9f) - horizontalLineToRelative(0.38f) - close() - moveTo(14.34f, 13.0f) - curveToRelative(-0.19f, 0.4f, -0.34f, 0.88f, -0.34f, 1.38f) - curveToRelative(0.0f, 1.39f, 1.03f, 2.62f, 2.5f, 2.62f) - reflectiveCurveToRelative(2.5f, -1.23f, 2.5f, -2.63f) - curveToRelative(0.0f, -0.49f, -0.15f, -0.97f, -0.34f, -1.38f) - curveToRelative(-0.2f, -0.41f, -0.44f, -0.8f, -0.68f, -1.13f) - curveToRelative(-0.23f, -0.33f, -0.47f, -0.61f, -0.64f, -0.81f) - lineToRelative(-0.31f, -0.33f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-0.3f, 0.33f) - arcTo(6.98f, 6.98f, 0.0f, false, false, 14.34f, 13.0f) - close() - moveTo(16.5f, 12.38f) - arcToRelative(8.42f, 8.42f, 0.0f, false, true, 0.8f, 1.24f) - curveToRelative(0.14f, 0.3f, 0.2f, 0.56f, 0.2f, 0.76f) - curveToRelative(0.0f, 0.69f, -0.48f, 1.12f, -1.0f, 1.12f) - reflectiveCurveToRelative(-1.0f, -0.43f, -1.0f, -1.13f) - curveToRelative(0.0f, -0.19f, 0.06f, -0.44f, 0.2f, -0.75f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.8f, -1.24f) - close() - moveTo(9.75f, 1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(1.76f) - lineToRelative(-0.1f, 0.08f) - lineToRelative(-4.24f, 4.25f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 2.82f) - lineTo(8.2f, 14.2f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.83f, 0.0f) - lineToRelative(4.24f, -4.24f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, -2.83f) - lineToRelative(-3.53f, -3.54f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.24f, -0.57f) - lineTo(10.5f, 1.75f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 9.75f, 1.0f) - close() - moveTo(9.0f, 5.62f) - verticalLineToRelative(0.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(10.5f, 4.54f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.17f, 0.11f) - lineToRelative(3.54f, 3.54f) - curveToRelative(0.09f, 0.09f, 0.14f, 0.2f, 0.15f, 0.32f) - lineTo(6.1f, 8.51f) - lineTo(9.0f, 5.62f) - close() - moveTo(9.26f, 13.14f) - lineTo(6.13f, 10.0f) - horizontalLineToRelative(6.97f) - lineToRelative(-3.13f, 3.13f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.71f, 0.0f) - close() - } - } - return _colorFill!! - } - -private var _colorFill: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ColorLine.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ColorLine.kt deleted file mode 100644 index 616ee631..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ColorLine.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ColorLine: ImageVector - get() { - if (_colorLine != null) { - return _colorLine!! - } - _colorLine = fluentIcon(name = "Filled.ColorLine") { - fluentPath { - moveTo(4.38f, 14.0f) - horizontalLineTo(4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(16.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - verticalLineToRelative(-4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - horizontalLineToRelative(-6.45f) - lineToRelative(-1.32f, 1.31f) - curveToRelative(-0.38f, 0.38f, -0.85f, 0.66f, -1.36f, 0.82f) - lineToRelative(-4.3f, 1.29f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.47f, -2.53f) - lineToRelative(0.28f, -0.89f) - close() - moveTo(18.65f, 2.94f) - arcToRelative(3.22f, 3.22f, 0.0f, false, true, 0.0f, 4.56f) - lineToRelative(-7.13f, 7.1f) - curveToRelative(-0.26f, 0.27f, -0.58f, 0.46f, -0.94f, 0.57f) - lineToRelative(-4.3f, 1.29f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.23f, -1.27f) - lineToRelative(1.36f, -4.22f) - curveToRelative(0.1f, -0.35f, 0.3f, -0.65f, 0.55f, -0.9f) - lineToRelative(7.13f, -7.13f) - arcToRelative(3.22f, 3.22f, 0.0f, false, true, 4.56f, 0.0f) - close() - } - } - return _colorLine!! - } - -private var _colorLine: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ColumnEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ColumnEdit.kt deleted file mode 100644 index 23bad3f2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ColumnEdit.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ColumnEdit: ImageVector - get() { - if (_columnEdit != null) { - return _columnEdit!! - } - _columnEdit = fluentIcon(name = "Filled.ColumnEdit") { - fluentPath { - moveTo(5.25f, 5.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(4.0f, 3.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.0f, 21.0f) - horizontalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(4.0f, 19.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - lineTo(5.25f, 5.75f) - close() - moveTo(10.75f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 8.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 10.75f, 21.0f) - horizontalLineToRelative(0.42f) - lineToRelative(0.35f, -1.42f) - curveToRelative(0.16f, -0.65f, 0.5f, -1.24f, 0.97f, -1.72f) - lineToRelative(3.51f, -3.5f) - lineTo(16.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 13.25f, 3.0f) - horizontalLineToRelative(-2.5f) - close() - moveTo(19.0f, 5.75f) - verticalLineToRelative(5.73f) - curveToRelative(-0.22f, 0.14f, -0.42f, 0.3f, -0.6f, 0.48f) - lineToRelative(-0.9f, 0.9f) - lineTo(17.5f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 20.25f, 3.0f) - lineTo(21.0f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.75f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _columnEdit!! - } - -private var _columnEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ColumnTriple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ColumnTriple.kt deleted file mode 100644 index c1a81966..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ColumnTriple.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ColumnTriple: ImageVector - get() { - if (_columnTriple != null) { - return _columnTriple!! - } - _columnTriple = fluentIcon(name = "Filled.ColumnTriple") { - fluentPath { - moveTo(6.24f, 3.0f) - curveToRelative(0.96f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(14.5f) - curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(1.99f, 4.75f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) - horizontalLineToRelative(2.65f) - close() - moveTo(20.26f, 3.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(14.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.5f) - curveToRelative(-0.96f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(16.01f, 4.75f) - curveToRelative(0.0f, -0.97f, 0.79f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.5f) - close() - moveTo(13.24f, 3.0f) - curveToRelative(0.96f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(14.5f) - curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(8.99f, 4.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.5f) - close() - } - } - return _columnTriple!! - } - -private var _columnTriple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ColumnTripleEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ColumnTripleEdit.kt deleted file mode 100644 index 6206dcc2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ColumnTripleEdit.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ColumnTripleEdit: ImageVector - get() { - if (_columnTripleEdit != null) { - return _columnTripleEdit!! - } - _columnTripleEdit = fluentIcon(name = "Filled.ColumnTripleEdit") { - fluentPath { - moveTo(6.24f, 3.0f) - curveToRelative(0.96f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(14.5f) - curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(1.99f, 4.75f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) - horizontalLineToRelative(2.65f) - close() - moveTo(20.26f, 3.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(6.52f) - arcToRelative(3.29f, 3.29f, 0.0f, false, false, -3.62f, 0.7f) - lineToRelative(-2.38f, 2.37f) - lineTo(16.01f, 4.75f) - curveToRelative(0.0f, -0.97f, 0.79f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.5f) - close() - moveTo(18.65f, 21.0f) - lineTo(22.0f, 17.64f) - verticalLineToRelative(1.61f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-1.61f) - close() - moveTo(12.49f, 17.86f) - lineTo(14.99f, 15.36f) - lineTo(14.99f, 4.76f) - curveToRelative(0.0f, -0.97f, -0.79f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-2.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(14.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(0.43f) - lineToRelative(0.35f, -1.42f) - curveToRelative(0.16f, -0.65f, 0.5f, -1.24f, 0.97f, -1.72f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.35f, -0.59f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.48f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _columnTripleEdit!! - } - -private var _columnTripleEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Comma.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Comma.kt deleted file mode 100644 index 16a99493..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Comma.kt +++ /dev/null @@ -1,30 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Comma: ImageVector - get() { - if (_comma != null) { - return _comma!! - } - _comma = fluentIcon(name = "Filled.Comma") { - fluentPath { - moveTo(14.2f, 12.34f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, 1.77f, -3.87f) - curveToRelative(0.36f, 1.8f, 0.5f, 3.95f, -0.21f, 5.9f) - curveToRelative(-0.77f, 2.09f, -2.47f, 3.8f, -5.5f, 4.6f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.51f, -1.94f) - curveToRelative(2.46f, -0.64f, 3.6f, -1.93f, 4.13f, -3.35f) - curveToRelative(0.16f, -0.43f, 0.26f, -0.88f, 0.32f, -1.34f) - close() - } - } - return _comma!! - } - -private var _comma: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Comment.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Comment.kt deleted file mode 100644 index 8c0ceead..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Comment.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Comment: ImageVector - get() { - if (_comment != null) { - return _comment!! - } - _comment = fluentIcon(name = "Filled.Comment") { - fluentPath { - moveTo(5.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 6.25f) - verticalLineToRelative(8.5f) - curveTo(2.0f, 16.55f, 3.46f, 18.0f, 5.25f, 18.0f) - horizontalLineTo(6.0f) - verticalLineToRelative(2.75f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.0f, 1.0f) - lineTo(13.0f, 18.0f) - horizontalLineToRelative(5.75f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-8.5f) - curveTo(22.0f, 4.45f, 20.54f, 3.0f, 18.75f, 3.0f) - horizontalLineTo(5.25f) - close() - } - } - return _comment!! - } - -private var _comment: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentAdd.kt deleted file mode 100644 index 728dd089..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentAdd.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CommentAdd: ImageVector - get() { - if (_commentAdd != null) { - return _commentAdd!! - } - _commentAdd = fluentIcon(name = "Filled.CommentAdd") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 7.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 7.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 6.0f) - lineTo(17.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - lineTo(18.0f, 6.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 7.0f) - close() - moveTo(17.5f, 13.0f) - curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.81f) - verticalLineToRelative(3.56f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(13.0f, 18.0f) - lineToRelative(-5.0f, 3.75f) - curveToRelative(-0.82f, 0.62f, -2.0f, 0.03f, -2.0f, -1.0f) - lineTo(6.0f, 18.0f) - horizontalLineToRelative(-0.75f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) - verticalLineToRelative(-8.5f) - curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(6.77f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, 5.48f, 10.0f) - close() - } - } - return _commentAdd!! - } - -private var _commentAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentArrowLeft.kt deleted file mode 100644 index f6e0fca9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentArrowLeft.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CommentArrowLeft: ImageVector - get() { - if (_commentArrowLeft != null) { - return _commentArrowLeft!! - } - _commentArrowLeft = fluentIcon(name = "Filled.CommentArrowLeft") { - fluentPath { - moveTo(12.02f, 3.0f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 22.0f, 11.2f) - verticalLineToRelative(3.55f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-5.79f) - lineToRelative(-5.38f, 3.82f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 6.0f, 21.0f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(-0.75f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) - verticalLineToRelative(-8.5f) - curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(6.77f) - close() - moveTo(17.5f, 1.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(17.72f, 3.59f) - lineTo(17.65f, 3.65f) - lineTo(17.59f, 3.72f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) - lineToRelative(0.06f, 0.07f) - lineTo(19.29f, 6.0f) - horizontalLineToRelative(-5.38f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - lineToRelative(-0.01f, 0.09f) - verticalLineToRelative(0.09f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - lineTo(14.0f, 7.0f) - horizontalLineToRelative(5.3f) - lineToRelative(-1.65f, 1.65f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(0.06f, -0.07f) - lineToRelative(2.54f, -2.54f) - lineToRelative(0.04f, -0.05f) - lineToRelative(0.03f, -0.07f) - lineToRelative(0.02f, -0.06f) - lineToRelative(0.02f, -0.08f) - verticalLineToRelative(-0.1f) - lineToRelative(-0.02f, -0.08f) - lineToRelative(-0.03f, -0.08f) - lineToRelative(-0.04f, -0.07f) - lineToRelative(-0.04f, -0.06f) - lineToRelative(-2.52f, -2.51f) - lineToRelative(-0.07f, -0.06f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.56f, 0.0f) - close() - } - } - return _commentArrowLeft!! - } - -private var _commentArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentArrowRight.kt deleted file mode 100644 index 5f63235c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentArrowRight.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CommentArrowRight: ImageVector - get() { - if (_commentArrowRight != null) { - return _commentArrowRight!! - } - _commentArrowRight = fluentIcon(name = "Filled.CommentArrowRight") { - fluentPath { - moveTo(12.02f, 3.0f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 22.0f, 11.2f) - verticalLineToRelative(3.55f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-5.79f) - lineToRelative(-5.38f, 3.82f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 6.0f, 21.0f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(-0.75f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) - verticalLineToRelative(-8.5f) - curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(6.77f) - close() - moveTo(17.5f, 1.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(16.22f, 3.59f) - lineTo(16.15f, 3.65f) - lineTo(13.62f, 6.18f) - lineTo(13.59f, 6.22f) - lineTo(13.55f, 6.29f) - lineTo(13.52f, 6.37f) - lineTo(13.5f, 6.45f) - verticalLineToRelative(0.14f) - lineToRelative(0.02f, 0.06f) - lineToRelative(0.03f, 0.06f) - lineToRelative(0.03f, 0.06f) - lineToRelative(0.04f, 0.05f) - lineToRelative(2.53f, 2.53f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.76f, -0.63f) - lineToRelative(-0.06f, -0.07f) - lineTo(15.21f, 7.0f) - horizontalLineToRelative(5.29f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.41f) - lineTo(21.0f, 6.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.5f) - lineTo(15.2f, 6.0f) - lineToRelative(1.65f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.06f, -0.63f) - lineToRelative(-0.06f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.63f, -0.06f) - close() - } - } - return _commentArrowRight!! - } - -private var _commentArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentCheckmark.kt deleted file mode 100644 index 567bd430..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentCheckmark.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CommentCheckmark: ImageVector - get() { - if (_commentCheckmark != null) { - return _commentCheckmark!! - } - _commentCheckmark = fluentIcon(name = "Filled.CommentCheckmark") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.85f, 4.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineTo(16.5f, 7.79f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - moveTo(17.5f, 13.0f) - curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.81f) - verticalLineToRelative(3.56f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(13.0f, 18.0f) - lineToRelative(-5.0f, 3.75f) - curveToRelative(-0.82f, 0.62f, -2.0f, 0.03f, -2.0f, -1.0f) - lineTo(6.0f, 18.0f) - horizontalLineToRelative(-0.75f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) - verticalLineToRelative(-8.5f) - curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(6.77f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, 5.48f, 10.0f) - close() - } - } - return _commentCheckmark!! - } - -private var _commentCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentDismiss.kt deleted file mode 100644 index 5b260ff1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentDismiss.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CommentDismiss: ImageVector - get() { - if (_commentDismiss != null) { - return _commentDismiss!! - } - _commentDismiss = fluentIcon(name = "Filled.CommentDismiss") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 4.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineTo(18.21f, 6.5f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineTo(17.5f, 5.79f) - lineToRelative(-1.65f, -1.64f) - close() - moveTo(17.5f, 13.0f) - curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.81f) - verticalLineToRelative(3.56f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(13.0f, 18.0f) - lineToRelative(-5.0f, 3.75f) - curveToRelative(-0.82f, 0.62f, -2.0f, 0.03f, -2.0f, -1.0f) - lineTo(6.0f, 18.0f) - horizontalLineToRelative(-0.75f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) - verticalLineToRelative(-8.5f) - curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(6.77f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, 5.48f, 10.0f) - close() - } - } - return _commentDismiss!! - } - -private var _commentDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentEdit.kt deleted file mode 100644 index 8affd087..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentEdit.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CommentEdit: ImageVector - get() { - if (_commentEdit != null) { - return _commentEdit!! - } - _commentEdit = fluentIcon(name = "Filled.CommentEdit") { - fluentPath { - moveTo(2.0f, 6.25f) - curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(13.5f) - curveTo(20.55f, 3.0f, 22.0f, 4.46f, 22.0f, 6.25f) - verticalLineToRelative(4.67f) - arcToRelative(3.29f, 3.29f, 0.0f, false, false, -4.6f, 0.04f) - lineToRelative(-5.91f, 5.9f) - curveToRelative(-0.47f, 0.48f, -0.8f, 1.07f, -0.97f, 1.72f) - lineToRelative(-0.4f, 1.58f) - lineTo(8.0f, 21.75f) - curveToRelative(-0.82f, 0.62f, -2.0f, 0.03f, -2.0f, -1.0f) - lineTo(6.0f, 18.0f) - horizontalLineToRelative(-0.75f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) - verticalLineToRelative(-8.5f) - close() - moveTo(18.1f, 11.67f) - lineTo(12.2f, 17.57f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _commentEdit!! - } - -private var _commentEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentError.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentError.kt deleted file mode 100644 index bbf18632..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentError.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CommentError: ImageVector - get() { - if (_commentError != null) { - return _commentError!! - } - _commentError = fluentIcon(name = "Filled.CommentError") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(17.5f, 3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(17.5f, 10.13f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.24f) - close() - moveTo(17.5f, 13.0f) - curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.81f) - verticalLineToRelative(3.56f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(13.0f, 18.0f) - lineToRelative(-5.0f, 3.75f) - curveToRelative(-0.82f, 0.62f, -2.0f, 0.03f, -2.0f, -1.0f) - lineTo(6.0f, 18.0f) - horizontalLineToRelative(-0.75f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) - verticalLineToRelative(-8.5f) - curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(6.77f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, 5.48f, 10.0f) - close() - } - } - return _commentError!! - } - -private var _commentError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentLightning.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentLightning.kt deleted file mode 100644 index 0135d8b4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentLightning.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CommentLightning: ImageVector - get() { - if (_commentLightning != null) { - return _commentLightning!! - } - _commentLightning = fluentIcon(name = "Filled.CommentLightning") { - fluentPath { - moveTo(16.32f, 1.0f) - horizontalLineToRelative(4.83f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.43f, 0.75f) - lineTo(19.75f, 5.0f) - horizontalLineToRelative(1.5f) - curveToRelative(0.64f, 0.0f, 0.99f, 0.76f, 0.56f, 1.24f) - lineTo(17.0f, 11.75f) - curveToRelative(-0.5f, 0.58f, -1.45f, 0.09f, -1.26f, -0.66f) - lineTo(16.5f, 8.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.45f, -0.71f) - lineToRelative(2.82f, -6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.45f, -0.29f) - close() - moveTo(5.25f, 3.0f) - horizontalLineToRelative(8.7f) - lineToRelative(-1.81f, 3.86f) - arcTo(1.5f, 1.5f, 0.0f, false, false, 13.5f, 9.0f) - horizontalLineToRelative(1.72f) - lineToRelative(-0.46f, 1.85f) - curveToRelative(-0.44f, 1.76f, 1.78f, 2.93f, 2.98f, 1.56f) - lineTo(22.0f, 7.55f) - verticalLineToRelative(7.2f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineTo(13.0f) - lineToRelative(-5.0f, 3.75f) - curveToRelative(-0.82f, 0.62f, -2.0f, 0.03f, -2.0f, -1.0f) - verticalLineTo(18.0f) - horizontalLineToRelative(-0.75f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) - verticalLineToRelative(-8.5f) - curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) - close() - } - } - return _commentLightning!! - } - -private var _commentLightning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentLink.kt deleted file mode 100644 index 52416543..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentLink.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CommentLink: ImageVector - get() { - if (_commentLink != null) { - return _commentLink!! - } - _commentLink = fluentIcon(name = "Filled.CommentLink") { - fluentPath { - moveTo(23.0f, 5.75f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 19.25f, 2.0f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - lineTo(19.25f, 9.5f) - horizontalLineToRelative(0.2f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 5.74f) - close() - moveTo(16.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-0.2f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(20.0f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(11.0f, 5.75f) - curveToRelative(0.0f, -1.02f, 0.32f, -1.97f, 0.88f, -2.75f) - lineTo(5.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 6.25f) - verticalLineToRelative(8.5f) - curveTo(2.0f, 16.55f, 3.46f, 18.0f, 5.25f, 18.0f) - lineTo(6.0f, 18.0f) - verticalLineToRelative(2.75f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.0f, 1.0f) - lineTo(13.0f, 18.0f) - horizontalLineToRelative(5.75f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(22.0f, 9.62f) - curveToRelative(-0.78f, 0.56f, -1.73f, 0.88f, -2.75f, 0.88f) - horizontalLineToRelative(-3.5f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 11.0f, 5.75f) - close() - } - } - return _commentLink!! - } - -private var _commentLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentMention.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentMention.kt deleted file mode 100644 index 4dc2455a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentMention.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CommentMention: ImageVector - get() { - if (_commentMention != null) { - return _commentMention!! - } - _commentMention = fluentIcon(name = "Filled.CommentMention") { - fluentPath { - moveTo(14.0f, 6.0f) - arcTo(4.0f, 4.0f, 0.0f, false, true, 22.0f, 6.0f) - verticalLineToRelative(0.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(20.5f, 4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.3f, 3.73f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 3.2f, -0.98f) - verticalLineToRelative(-0.74f) - arcToRelative(5.0f, 5.0f, 0.0f, true, false, -2.22f, 4.16f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.56f, -0.83f) - arcTo(4.0f, 4.0f, 0.0f, false, true, 14.0f, 6.0f) - close() - moveTo(18.0f, 7.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) - close() - moveTo(5.25f, 3.0f) - horizontalLineToRelative(7.55f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, 9.2f, 7.47f) - verticalLineToRelative(4.28f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(13.0f, 18.0f) - lineToRelative(-5.0f, 3.75f) - curveToRelative(-0.82f, 0.62f, -2.0f, 0.03f, -2.0f, -1.0f) - lineTo(6.0f, 18.0f) - horizontalLineToRelative(-0.75f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) - verticalLineToRelative(-8.5f) - curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) - close() - } - } - return _commentMention!! - } - -private var _commentMention: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentMultiple.kt deleted file mode 100644 index a0086724..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentMultiple.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CommentMultiple: ImageVector - get() { - if (_commentMultiple != null) { - return _commentMultiple!! - } - _commentMultiple = fluentIcon(name = "Filled.CommentMultiple") { - fluentPath { - moveTo(8.25f, 2.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.24f, 3.0f) - horizontalLineToRelative(9.74f) - curveTo(17.1f, 5.0f, 19.0f, 6.9f, 19.0f, 9.25f) - verticalLineToRelative(6.74f) - curveToRelative(1.67f, -0.12f, 3.0f, -1.53f, 3.0f, -3.24f) - verticalLineToRelative(-6.0f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 17.25f, 2.0f) - horizontalLineToRelative(-9.0f) - close() - moveTo(17.99f, 16.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, 3.0f) - horizontalLineToRelative(-4.08f) - lineTo(7.0f, 21.75f) - curveToRelative(-0.82f, 0.62f, -2.0f, 0.03f, -2.0f, -1.0f) - verticalLineToRelative(-1.76f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.0f, -3.24f) - verticalLineToRelative(-6.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 5.25f, 6.0f) - horizontalLineToRelative(9.5f) - curveTo(16.55f, 6.0f, 18.0f, 7.46f, 18.0f, 9.25f) - lineTo(18.0f, 16.0f) - close() - } - } - return _commentMultiple!! - } - -private var _commentMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentMultipleCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentMultipleCheckmark.kt deleted file mode 100644 index 1552e0b1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentMultipleCheckmark.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CommentMultipleCheckmark: ImageVector - get() { - if (_commentMultipleCheckmark != null) { - return _commentMultipleCheckmark!! - } - _commentMultipleCheckmark = fluentIcon(name = "Filled.CommentMultipleCheckmark") { - fluentPath { - moveTo(8.25f, 2.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.24f, 3.0f) - horizontalLineToRelative(9.74f) - curveTo(17.1f, 5.0f, 19.0f, 6.9f, 19.0f, 9.25f) - verticalLineToRelative(1.92f) - curveToRelative(1.15f, 0.27f, 2.18f, 0.85f, 3.0f, 1.64f) - lineTo(22.0f, 6.75f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 17.25f, 2.0f) - horizontalLineToRelative(-9.0f) - close() - moveTo(18.0f, 9.25f) - verticalLineToRelative(1.77f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 11.17f, 19.0f) - horizontalLineToRelative(-0.5f) - lineTo(7.0f, 21.75f) - curveToRelative(-0.82f, 0.62f, -2.0f, 0.03f, -2.0f, -1.0f) - verticalLineToRelative(-1.76f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.0f, -3.24f) - verticalLineToRelative(-6.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 5.25f, 6.0f) - horizontalLineToRelative(9.5f) - curveTo(16.55f, 6.0f, 18.0f, 7.46f, 18.0f, 9.25f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(20.85f, 15.15f) - curveToRelative(0.2f, 0.2f, 0.2f, 0.5f, 0.0f, 0.7f) - lineToRelative(-4.0f, 4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.0f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, -0.7f) - lineToRelative(1.65f, 1.64f) - lineToRelative(3.65f, -3.64f) - curveToRelative(0.2f, -0.2f, 0.5f, -0.2f, 0.7f, 0.0f) - close() - } - } - return _commentMultipleCheckmark!! - } - -private var _commentMultipleCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentMultipleLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentMultipleLink.kt deleted file mode 100644 index cfc22ef6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentMultipleLink.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CommentMultipleLink: ImageVector - get() { - if (_commentMultipleLink != null) { - return _commentMultipleLink!! - } - _commentMultipleLink = fluentIcon(name = "Filled.CommentMultipleLink") { - fluentPath { - moveTo(8.25f, 2.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.24f, 3.0f) - horizontalLineToRelative(9.74f) - curveTo(17.1f, 5.0f, 19.0f, 6.9f, 19.0f, 9.25f) - lineTo(19.0f, 13.0f) - horizontalLineToRelative(0.25f) - curveToRelative(0.95f, 0.0f, 1.84f, 0.28f, 2.59f, 0.77f) - curveToRelative(0.1f, -0.32f, 0.16f, -0.67f, 0.16f, -1.02f) - verticalLineToRelative(-6.0f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 17.25f, 2.0f) - horizontalLineToRelative(-9.0f) - close() - moveTo(18.0f, 9.25f) - lineTo(18.0f, 13.0f) - horizontalLineToRelative(-2.25f) - arcToRelative(4.75f, 4.75f, 0.0f, false, false, -4.58f, 6.0f) - horizontalLineToRelative(-0.5f) - lineTo(7.0f, 21.75f) - curveToRelative(-0.82f, 0.62f, -2.0f, 0.03f, -2.0f, -1.0f) - verticalLineToRelative(-1.76f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.0f, -3.24f) - verticalLineToRelative(-6.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 5.25f, 6.0f) - horizontalLineToRelative(9.5f) - curveTo(16.55f, 6.0f, 18.0f, 7.46f, 18.0f, 9.25f) - close() - moveTo(23.0f, 17.75f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 19.25f, 14.0f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - verticalLineToRelative(-0.01f) - horizontalLineToRelative(0.2f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 17.74f) - close() - moveTo(16.5f, 14.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-0.2f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(20.0f, 17.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - } - } - return _commentMultipleLink!! - } - -private var _commentMultipleLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentNote.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentNote.kt deleted file mode 100644 index 19d5243a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentNote.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CommentNote: ImageVector - get() { - if (_commentNote != null) { - return _commentNote!! - } - _commentNote = fluentIcon(name = "Filled.CommentNote") { - fluentPath { - moveTo(14.0f, 1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(23.0f, 3.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - horizontalLineToRelative(-7.0f) - close() - moveTo(14.0f, 4.5f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - moveTo(14.0f, 7.5f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - moveTo(5.25f, 3.0f) - lineTo(11.0f, 3.0f) - verticalLineToRelative(6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) - horizontalLineToRelative(7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 1.0f, -0.17f) - verticalLineToRelative(2.92f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(13.0f, 18.0f) - lineToRelative(-5.0f, 3.75f) - curveToRelative(-0.82f, 0.62f, -2.0f, 0.03f, -2.0f, -1.0f) - lineTo(6.0f, 18.0f) - horizontalLineToRelative(-0.75f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) - verticalLineToRelative(-8.5f) - curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) - close() - } - } - return _commentNote!! - } - -private var _commentNote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentOff.kt deleted file mode 100644 index 2627327e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommentOff.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CommentOff: ImageVector - get() { - if (_commentOff != null) { - return _commentOff!! - } - _commentOff = fluentIcon(name = "Filled.CommentOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(0.7f, 0.7f) - arcTo(3.24f, 3.24f, 0.0f, false, false, 2.0f, 6.25f) - verticalLineToRelative(8.5f) - curveTo(2.0f, 16.55f, 3.46f, 18.0f, 5.25f, 18.0f) - horizontalLineTo(6.0f) - verticalLineToRelative(2.75f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.0f, 1.0f) - lineTo(13.0f, 18.0f) - horizontalLineToRelative(3.94f) - lineToRelative(3.78f, 3.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(22.0f, 14.75f) - curveToRelative(0.0f, 1.1f, -0.55f, 2.08f, -1.4f, 2.67f) - lineTo(6.18f, 3.0f) - horizontalLineToRelative(12.57f) - curveTo(20.55f, 3.0f, 22.0f, 4.46f, 22.0f, 6.25f) - verticalLineToRelative(8.5f) - close() - } - } - return _commentOff!! - } - -private var _commentOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Communication.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Communication.kt deleted file mode 100644 index d3bd2191..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Communication.kt +++ /dev/null @@ -1,41 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Communication: ImageVector - get() { - if (_communication != null) { - return _communication!! - } - _communication = fluentIcon(name = "Filled.Communication") { - fluentPath { - moveTo(12.0f, 5.0f) - arcToRelative(8.0f, 8.0f, 0.0f, false, false, -5.66f, 13.65f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.42f, 1.41f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 14.16f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, -1.4f) - arcTo(8.0f, 8.0f, 0.0f, false, false, 12.0f, 5.0f) - close() - moveTo(12.0f, 11.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, -4.0f) - close() - moveTo(8.0f, 13.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, 6.83f, 2.83f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.41f, 1.41f) - arcTo(5.98f, 5.98f, 0.0f, false, false, 12.0f, 7.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, -4.24f, 10.24f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.41f, -1.41f) - arcTo(3.98f, 3.98f, 0.0f, false, true, 8.0f, 13.0f) - close() - } - } - return _communication!! - } - -private var _communication: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommunicationPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommunicationPerson.kt deleted file mode 100644 index 97ce26e8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CommunicationPerson.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CommunicationPerson: ImageVector - get() { - if (_communicationPerson != null) { - return _communicationPerson!! - } - _communicationPerson = fluentIcon(name = "Filled.CommunicationPerson") { - fluentPath { - moveTo(4.0f, 13.0f) - arcToRelative(8.0f, 8.0f, 0.0f, false, true, 15.8f, -1.75f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 2.16f, 2.7f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -17.03f, 6.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, -1.42f) - arcTo(7.97f, 7.97f, 0.0f, false, true, 4.0f, 13.0f) - close() - moveTo(17.7f, 11.1f) - arcToRelative(6.0f, 6.0f, 0.0f, true, false, -9.94f, 6.14f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.41f, -1.41f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, 6.74f, -3.68f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 1.78f, -1.06f) - close() - moveTo(10.0f, 13.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -4.0f, 0.0f) - close() - moveTo(21.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(23.0f, 19.88f) - curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) - reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _communicationPerson!! - } - -private var _communicationPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CompassNorthwest.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CompassNorthwest.kt deleted file mode 100644 index 6f1cad1d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CompassNorthwest.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CompassNorthwest: ImageVector - get() { - if (_compassNorthwest != null) { - return _compassNorthwest!! - } - _compassNorthwest = fluentIcon(name = "Filled.CompassNorthwest") { - fluentPath { - moveTo(12.0f, 22.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) - close() - moveTo(12.46f, 9.39f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 2.2f, 2.14f) - lineToRelative(1.85f, 4.32f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.66f, 0.66f) - lineToRelative(-4.32f, -1.86f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -2.14f, -2.2f) - lineTo(7.78f, 8.44f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.65f, -0.65f) - lineToRelative(4.03f, 1.6f) - close() - } - } - return _compassNorthwest!! - } - -private var _compassNorthwest: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Component2DoubleTapSwipeDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Component2DoubleTapSwipeDown.kt deleted file mode 100644 index 2af09c79..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Component2DoubleTapSwipeDown.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Component2DoubleTapSwipeDown: ImageVector - get() { - if (_component2DoubleTapSwipeDown != null) { - return _component2DoubleTapSwipeDown!! - } - _component2DoubleTapSwipeDown = fluentIcon(name = "Filled.Component2DoubleTapSwipeDown") { - fluentPath { - moveTo(10.0f, 15.71f) - verticalLineToRelative(-1.58f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 4.21f, -0.1f) - lineToRelative(-0.2f, 0.1f) - verticalLineToRelative(1.58f) - arcToRelative(7.0f, 7.0f, 0.0f, true, false, -4.26f, -0.08f) - lineToRelative(0.25f, 0.08f) - close() - moveTo(10.0f, 13.03f) - verticalLineToRelative(-1.8f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 12.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.14f, 5.1f) - lineToRelative(-0.14f, 0.14f) - verticalLineToRelative(1.8f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, -4.2f, -0.1f) - lineToRelative(0.2f, 0.1f) - close() - moveTo(11.39f, 21.79f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.22f, 0.0f) - lineToRelative(0.1f, -0.08f) - lineToRelative(3.0f, -3.0f) - lineToRelative(0.08f, -0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.22f) - lineToRelative(-0.08f, -0.1f) - lineToRelative(-0.1f, -0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.22f, 0.0f) - lineToRelative(-0.1f, 0.08f) - lineTo(13.0f, 18.6f) - lineTo(13.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, -0.12f) - lineTo(11.0f, 18.6f) - lineToRelative(-1.3f, -1.3f) - lineToRelative(-0.09f, -0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.4f) - lineToRelative(0.08f, 0.1f) - lineToRelative(3.0f, 3.0f) - lineToRelative(0.1f, 0.08f) - close() - } - } - return _component2DoubleTapSwipeDown!! - } - -private var _component2DoubleTapSwipeDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Component2DoubleTapSwipeUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Component2DoubleTapSwipeUp.kt deleted file mode 100644 index aa8b6e33..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Component2DoubleTapSwipeUp.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Component2DoubleTapSwipeUp: ImageVector - get() { - if (_component2DoubleTapSwipeUp != null) { - return _component2DoubleTapSwipeUp!! - } - _component2DoubleTapSwipeUp = fluentIcon(name = "Filled.Component2DoubleTapSwipeUp") { - fluentPath { - moveTo(10.0f, 8.29f) - verticalLineToRelative(1.58f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 4.21f, 0.1f) - lineToRelative(-0.2f, -0.1f) - lineTo(14.01f, 8.3f) - arcToRelative(7.0f, 7.0f, 0.0f, true, true, -4.26f, 0.08f) - lineToRelative(0.25f, -0.08f) - close() - moveTo(10.0f, 10.97f) - verticalLineToRelative(1.8f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 12.0f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 2.14f, -5.1f) - lineToRelative(-0.14f, -0.14f) - verticalLineToRelative(-1.8f) - arcToRelative(4.5f, 4.5f, 0.0f, true, true, -4.2f, 0.1f) - lineToRelative(0.2f, -0.1f) - close() - moveTo(11.39f, 2.21f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.22f, 0.0f) - lineToRelative(0.1f, 0.08f) - lineToRelative(3.0f, 3.0f) - lineToRelative(0.08f, 0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.22f) - lineToRelative(-0.08f, 0.1f) - lineToRelative(-0.1f, 0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.22f, 0.0f) - lineToRelative(-0.1f, -0.08f) - lineTo(13.0f, 5.4f) - lineTo(13.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(11.0f, 5.4f) - lineToRelative(-1.3f, 1.3f) - lineToRelative(-0.09f, 0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.4f) - lineToRelative(0.08f, -0.1f) - lineToRelative(3.0f, -3.0f) - lineToRelative(0.1f, -0.08f) - close() - } - } - return _component2DoubleTapSwipeUp!! - } - -private var _component2DoubleTapSwipeUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Compose.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Compose.kt deleted file mode 100644 index 6149152e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Compose.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Compose: ImageVector - get() { - if (_compose != null) { - return _compose!! - } - _compose = fluentIcon(name = "Filled.Compose") { - fluentPath { - moveTo(11.96f, 13.46f) - lineTo(21.7f, 3.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, -1.42f) - lineToRelative(-9.75f, 9.75f) - lineToRelative(-0.29f, 1.71f) - lineToRelative(1.7f, -0.3f) - close() - moveTo(6.5f, 3.0f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 3.0f, 6.5f) - verticalLineToRelative(11.0f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 6.5f, 21.0f) - horizontalLineToRelative(11.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 3.5f, -3.5f) - verticalLineTo(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-11.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 5.0f, 17.5f) - verticalLineToRelative(-11.0f) - curveTo(5.0f, 5.67f, 5.67f, 5.0f, 6.5f, 5.0f) - horizontalLineTo(14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineTo(6.5f) - close() - } - } - return _compose!! - } - -private var _compose: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ConferenceRoom.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ConferenceRoom.kt deleted file mode 100644 index f59c9a17..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ConferenceRoom.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ConferenceRoom: ImageVector - get() { - if (_conferenceRoom != null) { - return _conferenceRoom!! - } - _conferenceRoom = fluentIcon(name = "Filled.ConferenceRoom") { - fluentPath { - moveToRelative(10.6f, 2.01f) - lineToRelative(9.0f, 2.0f) - curveToRelative(0.23f, 0.05f, 0.4f, 0.25f, 0.4f, 0.49f) - verticalLineToRelative(15.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, 0.5f) - lineToRelative(-9.0f, 2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.6f, -0.5f) - verticalLineToRelative(-19.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.6f, -0.49f) - close() - moveTo(9.0f, 4.0f) - verticalLineToRelative(16.0f) - lineTo(4.75f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - lineTo(4.0f, 4.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - lineTo(9.0f, 4.0f) - close() - moveTo(13.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - } - } - return _conferenceRoom!! - } - -private var _conferenceRoom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Connector.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Connector.kt deleted file mode 100644 index 55fbe254..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Connector.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Connector: ImageVector - get() { - if (_connector != null) { - return _connector!! - } - _connector = fluentIcon(name = "Filled.Connector") { - fluentPath { - moveTo(8.25f, 4.0f) - curveToRelative(0.42f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.77f) - lineToRelative(1.88f, 2.82f) - curveToRelative(0.08f, 0.12f, 0.12f, 0.27f, 0.12f, 0.41f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.41f, -0.33f, 0.75f, -0.75f, 0.75f) - lineTo(9.0f, 16.0f) - verticalLineToRelative(3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(7.5f, 16.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(3.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, 0.1f) - lineTo(4.01f, 16.0f) - lineTo(2.74f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.14f, 0.05f, -0.29f, 0.13f, -0.41f) - lineTo(4.0f, 7.52f) - lineTo(4.0f, 4.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - close() - moveTo(15.25f, 4.0f) - horizontalLineToRelative(4.5f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - lineTo(20.5f, 8.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.42f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.14f, -0.04f, 0.29f, -0.12f, 0.41f) - lineTo(20.0f, 16.48f) - verticalLineToRelative(2.77f) - curveToRelative(0.0f, 0.41f, -0.33f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-2.77f) - lineToRelative(-1.87f, -2.82f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.13f, -0.41f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(0.76f) - lineTo(14.51f, 4.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.64f, -0.74f) - horizontalLineToRelative(4.6f) - horizontalLineToRelative(-4.5f) - close() - moveTo(19.0f, 5.5f) - horizontalLineToRelative(-3.0f) - lineTo(16.0f, 8.0f) - horizontalLineToRelative(3.0f) - lineTo(19.0f, 5.5f) - close() - } - } - return _connector!! - } - -private var _connector: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ContactCard.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ContactCard.kt deleted file mode 100644 index 8c27a74a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ContactCard.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ContactCard: ImageVector - get() { - if (_contactCard != null) { - return _contactCard!! - } - _contactCard = fluentIcon(name = "Filled.ContactCard") { - fluentPath { - moveTo(19.75f, 4.0f) - curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(22.0f, 19.0f, 21.0f, 20.0f, 19.75f, 20.0f) - lineTo(4.25f, 20.0f) - curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) - lineTo(2.0f, 6.25f) - curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) - horizontalLineToRelative(15.5f) - close() - moveTo(9.75f, 12.5f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(0.6f) - curveToRelative(0.17f, 1.11f, 1.1f, 1.65f, 2.5f, 1.65f) - curveToRelative(1.33f, 0.0f, 2.24f, -0.49f, 2.46f, -1.5f) - lineToRelative(0.03f, -0.15f) - lineToRelative(0.01f, -0.1f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - close() - moveTo(17.75f, 13.0f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) - lineTo(17.85f, 14.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.49f) - horizontalLineToRelative(-0.1f) - close() - moveTo(8.0f, 8.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(17.75f, 9.5f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(17.85f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - } - } - return _contactCard!! - } - -private var _contactCard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ContactCardGroup.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ContactCardGroup.kt deleted file mode 100644 index 90b78c7c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ContactCardGroup.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ContactCardGroup: ImageVector - get() { - if (_contactCardGroup != null) { - return _contactCardGroup!! - } - _contactCardGroup = fluentIcon(name = "Filled.ContactCardGroup") { - fluentPath { - moveTo(18.75f, 4.0f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(5.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(5.25f, 4.0f) - horizontalLineToRelative(13.5f) - close() - moveTo(9.25f, 12.5f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(0.58f) - curveToRelative(0.0f, 1.27f, 0.97f, 1.92f, 2.5f, 1.92f) - curveToRelative(1.47f, 0.0f, 2.42f, -0.6f, 2.5f, -1.76f) - verticalLineToRelative(-0.74f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - close() - moveTo(12.25f, 12.5f) - horizontalLineToRelative(-1.42f) - curveToRelative(0.09f, 0.18f, 0.15f, 0.38f, 0.17f, 0.59f) - verticalLineToRelative(1.0f) - curveToRelative(-0.03f, 0.33f, -0.1f, 0.63f, -0.21f, 0.9f) - lineToRelative(0.34f, 0.01f) - curveToRelative(1.05f, 0.0f, 1.79f, -0.4f, 1.86f, -1.27f) - lineToRelative(0.01f, -0.15f) - verticalLineToRelative(-0.33f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-1.42f) - horizontalLineToRelative(1.42f) - close() - moveTo(18.25f, 12.5f) - horizontalLineToRelative(-3.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(7.5f, 8.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(11.37f, 9.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(18.25f, 9.5f) - horizontalLineToRelative(-3.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - } - } - return _contactCardGroup!! - } - -private var _contactCardGroup: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ContactCardRibbon.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ContactCardRibbon.kt deleted file mode 100644 index dceec2e4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ContactCardRibbon.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ContactCardRibbon: ImageVector - get() { - if (_contactCardRibbon != null) { - return _contactCardRibbon!! - } - _contactCardRibbon = fluentIcon(name = "Filled.ContactCardRibbon") { - fluentPath { - moveTo(19.75f, 4.0f) - curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) - verticalLineToRelative(5.5f) - arcTo(4.48f, 4.48f, 0.0f, false, false, 15.76f, 13.0f) - horizontalLineToRelative(-2.61f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) - lineTo(15.11f, 14.49f) - arcToRelative(4.51f, 4.51f, 0.0f, false, false, 0.89f, 3.84f) - lineTo(16.0f, 20.0f) - lineTo(4.25f, 20.0f) - curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) - lineTo(2.0f, 6.25f) - curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) - horizontalLineToRelative(15.5f) - close() - moveTo(6.25f, 12.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(0.6f) - curveToRelative(0.17f, 1.11f, 1.1f, 1.65f, 2.5f, 1.65f) - curveToRelative(1.33f, 0.0f, 2.24f, -0.49f, 2.46f, -1.5f) - lineToRelative(0.03f, -0.15f) - lineToRelative(0.01f, -0.1f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-3.5f) - close() - moveTo(8.0f, 8.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(17.75f, 9.5f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(17.85f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(23.0f, 15.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, -7.0f, 0.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 7.0f, 0.0f) - close() - moveTo(17.0f, 19.24f) - verticalLineToRelative(3.05f) - curveToRelative(0.0f, 0.63f, 0.76f, 0.95f, 1.21f, 0.5f) - lineToRelative(1.29f, -1.29f) - lineToRelative(1.29f, 1.29f) - arcToRelative(0.71f, 0.71f, 0.0f, false, false, 1.21f, -0.5f) - verticalLineToRelative(-3.05f) - arcToRelative(4.48f, 4.48f, 0.0f, false, true, -5.0f, 0.0f) - close() - } - } - return _contactCardRibbon!! - } - -private var _contactCardRibbon: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ContentSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ContentSettings.kt deleted file mode 100644 index a66715ec..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ContentSettings.kt +++ /dev/null @@ -1,93 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ContentSettings: ImageVector - get() { - if (_contentSettings != null) { - return _contentSettings!! - } - _contentSettings = fluentIcon(name = "Filled.ContentSettings") { - fluentPath { - moveTo(17.93f, 3.0f) - lineTo(6.07f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.26f) - verticalLineToRelative(11.68f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 6.26f, 21.0f) - horizontalLineToRelative(5.77f) - arcToRelative(6.46f, 6.46f, 0.0f, false, true, -0.85f, -2.0f) - lineTo(6.12f, 19.0f) - arcTo(1.25f, 1.25f, 0.0f, false, true, 5.0f, 17.74f) - lineTo(5.0f, 8.0f) - horizontalLineToRelative(14.0f) - verticalLineToRelative(3.17f) - curveToRelative(0.72f, 0.17f, 1.4f, 0.46f, 2.0f, 0.85f) - lineTo(21.0f, 6.07f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 17.93f, 3.0f) - close() - moveTo(11.0f, 10.16f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.74f, -0.65f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - verticalLineToRelative(7.1f) - curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - verticalLineToRelative(-7.1f) - close() - moveTo(7.5f, 11.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(5.5f) - horizontalLineToRelative(-2.0f) - lineTo(7.5f, 11.0f) - close() - moveTo(18.0f, 10.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(14.28f, 13.98f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.59f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.01f, 1.8f) - lineToRelative(0.54f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) - lineToRelative(-0.19f, 0.63f) - curveToRelative(0.44f, 0.39f, 0.94f, 0.7f, 1.49f, 0.93f) - lineToRelative(0.49f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) - lineToRelative(-0.2f, -0.69f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) - lineToRelative(0.59f, -0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, -1.8f) - lineToRelative(-0.55f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.19f, -0.63f) - curveToRelative(-0.44f, -0.4f, -0.94f, -0.7f, -1.49f, -0.93f) - lineToRelative(-0.49f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) - lineToRelative(0.2f, 0.7f) - close() - moveTo(17.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) - close() - } - } - return _contentSettings!! - } - -private var _contentSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ContentView.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ContentView.kt deleted file mode 100644 index 548e4efe..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ContentView.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ContentView: ImageVector - get() { - if (_contentView != null) { - return _contentView!! - } - _contentView = fluentIcon(name = "Filled.ContentView") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(6.0f, 8.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(8.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-8.5f) - curveTo(6.78f, 11.5f, 6.0f, 10.72f, 6.0f, 9.75f) - verticalLineToRelative(-1.5f) - close() - moveTo(7.75f, 8.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(8.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-1.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-8.5f) - close() - moveTo(6.75f, 13.0f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(6.0f, 16.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(15.25f, 13.0f) - horizontalLineToRelative(1.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-1.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - close() - moveTo(15.0f, 14.75f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(1.0f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-1.0f) - close() - } - } - return _contentView!! - } - -private var _contentView: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ContentViewGallery.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ContentViewGallery.kt deleted file mode 100644 index 15f5a236..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ContentViewGallery.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ContentViewGallery: ImageVector - get() { - if (_contentViewGallery != null) { - return _contentViewGallery!! - } - _contentViewGallery = fluentIcon(name = "Filled.ContentViewGallery") { - fluentPath { - moveTo(6.25f, 3.0f) - horizontalLineToRelative(8.25f) - verticalLineToRelative(18.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - close() - moveTo(17.75f, 21.0f) - lineTo(16.0f, 21.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(1.75f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - close() - moveTo(21.0f, 14.5f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(5.0f) - close() - moveTo(16.0f, 8.0f) - lineTo(16.0f, 3.0f) - horizontalLineToRelative(1.75f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - lineTo(21.0f, 8.0f) - horizontalLineToRelative(-5.0f) - close() - moveTo(6.0f, 13.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(7.25f, 6.5f) - curveTo(6.56f, 6.5f, 6.0f, 7.06f, 6.0f, 7.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-3.5f) - close() - moveTo(7.5f, 10.0f) - lineTo(7.5f, 8.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-3.0f) - close() - moveTo(6.0f, 16.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - } - } - return _contentViewGallery!! - } - -private var _contentViewGallery: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ContractDownLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ContractDownLeft.kt deleted file mode 100644 index 896ac563..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ContractDownLeft.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ContractDownLeft: ImageVector - get() { - if (_contractDownLeft != null) { - return _contractDownLeft!! - } - _contractDownLeft = fluentIcon(name = "Filled.ContractDownLeft") { - fluentPath { - moveTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 12.0f) - horizontalLineToRelative(4.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 12.0f, 14.75f) - verticalLineToRelative(4.75f) - horizontalLineToRelative(5.75f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.0f) - close() - moveTo(15.56f, 9.5f) - horizontalLineToRelative(4.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(4.69f) - lineToRelative(5.22f, -5.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineTo(15.56f, 9.5f) - close() - } - } - return _contractDownLeft!! - } - -private var _contractDownLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ControlButton.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ControlButton.kt deleted file mode 100644 index 1443260a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ControlButton.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ControlButton: ImageVector - get() { - if (_controlButton != null) { - return _controlButton!! - } - _controlButton = fluentIcon(name = "Filled.ControlButton") { - fluentPath { - moveTo(2.0f, 7.25f) - curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) - horizontalLineToRelative(13.5f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(5.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - close() - moveTo(7.75f, 8.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 5.0f, 10.75f) - verticalLineToRelative(2.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 7.75f, 16.0f) - horizontalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.5f) - close() - moveTo(11.5f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - lineTo(10.0f, 11.0f) - horizontalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(10.0f, 12.5f) - lineTo(10.0f, 14.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(12.0f, 14.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.75f) - lineTo(11.5f, 8.75f) - close() - moveTo(19.5f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-6.5f) - close() - moveTo(15.5f, 13.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(16.0f, 11.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(15.5f, 13.0f) - close() - } - } - return _controlButton!! - } - -private var _controlButton: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ConvertRange.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ConvertRange.kt deleted file mode 100644 index d78f816a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ConvertRange.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ConvertRange: ImageVector - get() { - if (_convertRange != null) { - return _convertRange!! - } - _convertRange = fluentIcon(name = "Filled.ConvertRange") { - fluentPath { - moveTo(6.25f, 3.0f) - curveTo(5.01f, 3.0f, 4.0f, 4.0f, 4.0f, 5.25f) - verticalLineToRelative(2.5f) - curveTo(4.0f, 8.99f, 5.0f, 10.0f, 6.25f, 10.0f) - horizontalLineToRelative(9.5f) - curveTo(16.99f, 10.0f, 18.0f, 9.0f, 18.0f, 7.75f) - verticalLineToRelative(-2.5f) - curveTo(18.0f, 4.01f, 17.0f, 3.0f, 15.75f, 3.0f) - horizontalLineToRelative(-9.5f) - close() - moveTo(17.35f, 16.45f) - lineTo(17.28f, 16.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-0.72f, 0.72f) - horizontalLineToRelative(1.5f) - curveToRelative(0.65f, 0.0f, 1.18f, -0.5f, 1.24f, -1.12f) - lineToRelative(0.01f, -0.13f) - lineTo(19.31f, 9.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - lineTo(20.81f, 12.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.58f, 2.74f) - lineToRelative(-0.17f, 0.01f) - horizontalLineToRelative(-1.5f) - lineToRelative(0.72f, 0.72f) - curveToRelative(0.27f, 0.26f, 0.3f, 0.68f, 0.07f, 0.98f) - close() - moveTo(14.27f, 12.0f) - lineToRelative(-0.78f, 0.79f) - lineToRelative(-0.12f, 0.14f) - lineToRelative(-0.03f, 0.03f) - curveToRelative(-0.5f, 0.68f, -0.45f, 1.65f, 0.17f, 2.28f) - lineToRelative(2.03f, 2.02f) - lineToRelative(0.14f, 0.12f) - lineToRelative(0.03f, 0.03f) - curveToRelative(0.68f, 0.5f, 1.66f, 0.45f, 2.28f, -0.17f) - lineToRelative(0.01f, -0.02f) - verticalLineToRelative(2.03f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-9.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-5.0f) - curveTo(4.0f, 13.01f, 5.0f, 12.0f, 6.25f, 12.0f) - horizontalLineToRelative(8.02f) - close() - moveTo(8.0f, 16.75f) - curveToRelative(0.0f, 0.41f, 0.31f, 0.75f, 0.7f, 0.75f) - horizontalLineToRelative(4.6f) - curveToRelative(0.39f, 0.0f, 0.7f, -0.34f, 0.7f, -0.75f) - reflectiveCurveToRelative(-0.31f, -0.75f, -0.7f, -0.75f) - lineTo(8.7f, 16.0f) - curveToRelative(-0.39f, 0.0f, -0.7f, 0.34f, -0.7f, 0.75f) - close() - } - } - return _convertRange!! - } - -private var _convertRange: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cookies.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cookies.kt deleted file mode 100644 index 37ff22b2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cookies.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Cookies: ImageVector - get() { - if (_cookies != null) { - return _cookies!! - } - _cookies = fluentIcon(name = "Filled.Cookies") { - fluentPath { - moveTo(12.0f, 2.0f) - curveToRelative(0.71f, 0.0f, 1.42f, 0.07f, 2.1f, 0.22f) - curveToRelative(0.59f, 0.13f, 0.8f, 0.84f, 0.38f, 1.27f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 1.2f, 4.2f) - curveToRelative(0.38f, 0.08f, 0.62f, 0.43f, 0.58f, 0.8f) - lineToRelative(-0.01f, 0.26f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 4.37f, 1.66f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.31f, 0.4f) - arcTo(10.0f, 10.0f, 0.0f, true, true, 12.0f, 2.0f) - close() - moveTo(15.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(8.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(12.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(7.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - } - } - return _cookies!! - } - -private var _cookies: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CopyAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CopyAdd.kt deleted file mode 100644 index 19baa654..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CopyAdd.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CopyAdd: ImageVector - get() { - if (_copyAdd != null) { - return _copyAdd!! - } - _copyAdd = fluentIcon(name = "Filled.CopyAdd") { - fluentPath { - moveTo(5.5f, 4.63f) - lineTo(5.5f, 17.25f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(1.98f) - curveToRelative(0.3f, 0.56f, 0.66f, 1.06f, 1.08f, 1.5f) - lineTo(8.75f, 22.0f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 4.0f, 17.25f) - lineTo(4.0f, 6.75f) - curveToRelative(0.0f, -0.98f, 0.63f, -1.81f, 1.5f, -2.12f) - close() - moveTo(16.5f, 11.0f) - curveToRelative(1.29f, 0.0f, 2.49f, 0.38f, 3.5f, 1.02f) - lineTo(20.0f, 4.25f) - curveTo(20.0f, 3.01f, 19.0f, 2.0f, 17.75f, 2.0f) - horizontalLineToRelative(-9.0f) - curveTo(7.51f, 2.0f, 6.5f, 3.0f, 6.5f, 4.25f) - verticalLineToRelative(13.0f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(1.56f) - arcTo(6.5f, 6.5f, 0.0f, false, true, 16.5f, 11.0f) - close() - moveTo(22.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(17.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(16.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(16.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(17.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(17.0f, 18.0f) - close() - } - } - return _copyAdd!! - } - -private var _copyAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CopyArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CopyArrowRight.kt deleted file mode 100644 index 1b344b84..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CopyArrowRight.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CopyArrowRight: ImageVector - get() { - if (_copyArrowRight != null) { - return _copyArrowRight!! - } - _copyArrowRight = fluentIcon(name = "Filled.CopyArrowRight") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(5.5f, 4.63f) - lineTo(5.5f, 17.25f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(2.98f) - curveToRelative(0.3f, 0.56f, 0.66f, 1.06f, 1.08f, 1.5f) - lineTo(8.75f, 22.0f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 4.0f, 17.25f) - lineTo(4.0f, 6.75f) - curveToRelative(0.0f, -0.98f, 0.63f, -1.81f, 1.5f, -2.12f) - close() - moveTo(18.28f, 14.59f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.56f, 0.0f) - lineToRelative(-0.07f, 0.06f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) - lineToRelative(0.06f, 0.07f) - lineTo(19.29f, 17.0f) - lineTo(14.4f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(0.18f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(0.06f, -0.07f) - lineToRelative(2.53f, -2.53f) - lineToRelative(0.04f, -0.05f) - lineToRelative(0.04f, -0.08f) - lineToRelative(0.03f, -0.08f) - lineTo(20.99f, 17.39f) - lineToRelative(-0.01f, -0.04f) - lineToRelative(-0.04f, -0.08f) - lineToRelative(-0.02f, -0.04f) - lineToRelative(-0.04f, -0.05f) - lineToRelative(-2.53f, -2.53f) - lineToRelative(-0.07f, -0.06f) - close() - moveTo(17.75f, 2.0f) - curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) - verticalLineToRelative(7.25f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -8.69f, 8.0f) - lineTo(8.75f, 19.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-13.0f) - curveTo(6.5f, 3.01f, 7.5f, 2.0f, 8.75f, 2.0f) - horizontalLineToRelative(9.0f) - close() - } - } - return _copyArrowRight!! - } - -private var _copyArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CopySelect.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CopySelect.kt deleted file mode 100644 index 56f3d0a9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CopySelect.kt +++ /dev/null @@ -1,98 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CopySelect: ImageVector - get() { - if (_copySelect != null) { - return _copySelect!! - } - _copySelect = fluentIcon(name = "Filled.CopySelect") { - fluentPath { - moveTo(9.25f, 3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.0f) - curveTo(6.0f, 3.45f, 7.46f, 2.0f, 9.25f, 2.0f) - horizontalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.0f) - close() - moveTo(12.0f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(12.75f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.5f) - close() - moveTo(6.75f, 8.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(22.0f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.5f) - close() - moveTo(18.75f, 16.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.0f) - close() - moveTo(20.5f, 5.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.0f) - curveTo(20.55f, 2.0f, 22.0f, 3.46f, 22.0f, 5.25f) - verticalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(9.25f, 16.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.0f) - curveTo(6.0f, 16.55f, 7.46f, 18.0f, 9.25f, 18.0f) - horizontalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.0f) - close() - moveTo(2.0f, 9.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.0f, -3.24f) - lineTo(5.0f, 15.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, 4.0f) - horizontalLineToRelative(9.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.25f, 3.0f) - horizontalLineToRelative(-7.0f) - arcTo(5.75f, 5.75f, 0.0f, false, true, 2.0f, 16.25f) - verticalLineToRelative(-7.0f) - close() - } - } - return _copySelect!! - } - -private var _copySelect: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Couch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Couch.kt deleted file mode 100644 index b8f8f7c2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Couch.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Couch: ImageVector - get() { - if (_couch != null) { - return _couch!! - } - _couch = fluentIcon(name = "Filled.Couch") { - fluentPath { - moveTo(16.75f, 4.0f) - horizontalLineToRelative(-9.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.5f, 6.75f) - lineTo(4.5f, 8.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 3.46f, 3.0f) - horizontalLineToRelative(8.08f) - curveToRelative(0.24f, -1.7f, 1.7f, -3.0f, 3.46f, -3.0f) - lineTo(19.5f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 16.75f, 4.0f) - close() - moveTo(17.0f, 11.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - verticalLineToRelative(2.75f) - curveToRelative(0.0f, 1.43f, -1.1f, 2.61f, -2.5f, 2.74f) - verticalLineToRelative(1.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(18.0f, 17.0f) - lineTo(6.0f, 17.0f) - verticalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.26f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 14.25f) - lineTo(2.0f, 11.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(9.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - close() - } - } - return _couch!! - } - -private var _couch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CreditCardClock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CreditCardClock.kt deleted file mode 100644 index dffbe076..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CreditCardClock.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CreditCardClock: ImageVector - get() { - if (_creditCardClock != null) { - return _creditCardClock!! - } - _creditCardClock = fluentIcon(name = "Filled.CreditCardClock") { - fluentPath { - moveTo(2.0f, 8.25f) - curveTo(2.0f, 6.45f, 3.46f, 5.0f, 5.25f, 5.0f) - horizontalLineToRelative(13.5f) - curveTo(20.55f, 5.0f, 22.0f, 6.46f, 22.0f, 8.25f) - lineTo(22.0f, 9.5f) - lineTo(2.0f, 9.5f) - lineTo(2.0f, 8.25f) - close() - moveTo(11.17f, 19.0f) - lineTo(5.25f, 19.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 15.75f) - lineTo(2.0f, 11.0f) - horizontalLineToRelative(15.5f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -6.33f, 8.0f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(19.5f, 17.5f) - horizontalLineToRelative(-2.0f) - lineTo(17.5f, 15.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - close() - } - } - return _creditCardClock!! - } - -private var _creditCardClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CreditCardPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CreditCardPerson.kt deleted file mode 100644 index 1cf3957a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CreditCardPerson.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CreditCardPerson: ImageVector - get() { - if (_creditCardPerson != null) { - return _creditCardPerson!! - } - _creditCardPerson = fluentIcon(name = "Filled.CreditCardPerson") { - fluentPath { - moveTo(5.25f, 5.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 8.25f) - lineTo(2.0f, 9.5f) - horizontalLineToRelative(20.0f) - lineTo(22.0f, 8.25f) - curveTo(22.0f, 6.45f, 20.54f, 5.0f, 18.75f, 5.0f) - lineTo(5.25f, 5.0f) - close() - moveTo(2.0f, 15.75f) - lineTo(2.0f, 11.0f) - horizontalLineToRelative(16.5f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -2.45f, 6.0f) - horizontalLineToRelative(-0.28f) - curveToRelative(-1.26f, 0.0f, -2.33f, 0.84f, -2.66f, 2.0f) - lineTo(5.25f, 19.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 15.75f) - close() - moveTo(21.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(23.0f, 19.88f) - curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) - reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _creditCardPerson!! - } - -private var _creditCardPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CreditCardToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CreditCardToolbox.kt deleted file mode 100644 index 04a28066..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CreditCardToolbox.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CreditCardToolbox: ImageVector - get() { - if (_creditCardToolbox != null) { - return _creditCardToolbox!! - } - _creditCardToolbox = fluentIcon(name = "Filled.CreditCardToolbox") { - fluentPath { - moveTo(2.0f, 8.25f) - curveTo(2.0f, 6.45f, 3.46f, 5.0f, 5.25f, 5.0f) - horizontalLineToRelative(13.5f) - curveTo(20.55f, 5.0f, 22.0f, 6.46f, 22.0f, 8.25f) - lineTo(22.0f, 9.5f) - lineTo(2.0f, 9.5f) - lineTo(2.0f, 8.25f) - close() - moveTo(15.75f, 11.0f) - lineTo(2.0f, 11.0f) - verticalLineToRelative(4.75f) - curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) - lineTo(11.0f, 19.0f) - verticalLineToRelative(-2.75f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.0f, -2.45f) - verticalLineToRelative(-0.05f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 15.75f, 11.0f) - close() - moveTo(13.5f, 14.75f) - horizontalLineToRelative(0.5f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(3.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(0.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - lineTo(23.0f, 18.0f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(-0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(0.5f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(-0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(0.5f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(-1.75f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - close() - moveTo(15.75f, 13.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-1.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-3.5f) - close() - moveTo(19.0f, 19.5f) - lineTo(19.0f, 19.0f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - lineTo(15.0f, 19.0f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(8.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - lineTo(23.0f, 19.0f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - close() - } - } - return _creditCardToolbox!! - } - -private var _creditCardToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Crop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Crop.kt deleted file mode 100644 index e214580d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Crop.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Crop: ImageVector - get() { - if (_crop != null) { - return _crop!! - } - _crop = fluentIcon(name = "Filled.Crop") { - fluentPath { - moveTo(7.0f, 15.5f) - curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.36f, 1.5f) - horizontalLineTo(21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - horizontalLineTo(19.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - verticalLineTo(19.0f) - horizontalLineTo(8.5f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 5.0f, 15.7f) - verticalLineTo(7.0f) - horizontalLineTo(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - horizontalLineTo(5.0f) - verticalLineTo(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - verticalLineTo(15.5f) - close() - moveTo(8.0f, 5.0f) - horizontalLineToRelative(7.5f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 19.0f, 8.3f) - verticalLineTo(16.0f) - horizontalLineToRelative(-2.0f) - verticalLineTo(8.5f) - curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) - horizontalLineTo(8.0f) - verticalLineTo(5.0f) - close() - } - } - return _crop!! - } - -private var _crop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CropInterim.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CropInterim.kt deleted file mode 100644 index 13b5d670..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CropInterim.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CropInterim: ImageVector - get() { - if (_cropInterim != null) { - return _cropInterim!! - } - _cropInterim = fluentIcon(name = "Filled.CropInterim") { - fluentPath { - moveTo(16.67f, 9.1f) - arcToRelative(6.5f, 6.5f, 0.0f, true, true, -5.17f, 11.52f) - verticalLineToRelative(0.63f) - curveToRelative(0.0f, 0.38f, -0.29f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.65f) - verticalLineToRelative(-2.6f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.64f, -0.74f) - horizontalLineToRelative(2.61f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.48f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-0.74f) - arcToRelative(4.98f, 4.98f, 0.0f, false, false, 8.0f, -4.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, -3.6f, -4.8f) - lineToRelative(-0.24f, -1.6f) - close() - moveTo(14.5f, 3.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.97f, 4.8f) - lineToRelative(0.82f, 5.32f) - arcTo(2.5f, 2.5f, 0.0f, true, true, 13.5f, 17.0f) - lineTo(6.5f, 17.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -2.78f, -3.88f) - lineToRelative(0.82f, -5.3f) - arcTo(2.5f, 2.5f, 0.0f, true, true, 7.5f, 4.0f) - horizontalLineToRelative(4.99f) - curveToRelative(0.46f, -0.6f, 1.18f, -1.0f, 2.0f, -1.0f) - close() - moveTo(12.0f, 5.5f) - lineTo(8.0f, 5.5f) - curveToRelative(0.0f, 1.2f, -0.84f, 2.2f, -1.96f, 2.45f) - lineToRelative(-0.8f, 5.16f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 7.0f, 15.31f) - lineToRelative(0.01f, 0.19f) - horizontalLineToRelative(6.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 1.76f, -2.39f) - lineToRelative(-0.8f, -5.16f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 12.0f, 5.67f) - lineTo(12.0f, 5.5f) - close() - } - } - return _cropInterim!! - } - -private var _cropInterim: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CropInterimOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CropInterimOff.kt deleted file mode 100644 index 768381af..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CropInterimOff.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CropInterimOff: ImageVector - get() { - if (_cropInterimOff != null) { - return _cropInterimOff!! - } - _cropInterimOff = fluentIcon(name = "Filled.CropInterimOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.06f, 1.06f) - arcToRelative(2.49f, 2.49f, 0.0f, false, false, 1.26f, 3.47f) - lineToRelative(-0.82f, 5.31f) - arcTo(2.5f, 2.5f, 0.0f, true, false, 6.5f, 17.0f) - horizontalLineToRelative(7.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.16f, 0.72f) - lineToRelative(1.8f, 1.8f) - arcToRelative(4.98f, 4.98f, 0.0f, false, true, -5.95f, -0.02f) - horizontalLineToRelative(0.84f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - verticalLineToRelative(2.6f) - curveToRelative(0.05f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - verticalLineToRelative(-0.63f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, 8.04f, -0.02f) - lineToRelative(1.18f, 1.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(13.28f, 14.35f) - curveToRelative(-0.17f, 0.34f, -0.28f, 0.73f, -0.28f, 1.15f) - lineTo(7.0f, 15.5f) - verticalLineToRelative(-0.19f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -1.76f, -2.2f) - lineToRelative(0.8f, -5.16f) - curveToRelative(0.22f, -0.05f, 0.42f, -0.13f, 0.62f, -0.23f) - lineToRelative(6.63f, 6.63f) - close() - moveTo(7.19f, 4.0f) - lineToRelative(1.5f, 1.5f) - horizontalLineToRelative(3.3f) - lineToRelative(0.01f, 0.17f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 1.97f, 2.28f) - lineToRelative(0.52f, 3.35f) - lineToRelative(1.8f, 1.8f) - lineToRelative(-0.82f, -5.3f) - arcTo(2.5f, 2.5f, 0.0f, true, false, 12.49f, 4.0f) - horizontalLineToRelative(-5.3f) - close() - moveTo(20.26f, 17.07f) - lineTo(21.42f, 18.23f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -4.74f, -9.12f) - lineToRelative(0.25f, 1.6f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 3.33f, 6.36f) - close() - } - } - return _cropInterimOff!! - } - -private var _cropInterimOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cube.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cube.kt deleted file mode 100644 index 9e6f1bb2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cube.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Cube: ImageVector - get() { - if (_cube != null) { - return _cube!! - } - _cube = fluentIcon(name = "Filled.Cube") { - fluentPath { - moveTo(13.4f, 2.51f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.8f, 0.0f) - lineTo(3.1f, 5.55f) - curveToRelative(-0.67f, 0.27f, -1.1f, 0.91f, -1.1f, 1.62f) - verticalLineToRelative(9.66f) - curveToRelative(0.0f, 0.7f, 0.43f, 1.35f, 1.1f, 1.62f) - lineToRelative(7.5f, 3.04f) - curveToRelative(0.9f, 0.36f, 1.9f, 0.36f, 2.8f, 0.0f) - lineToRelative(7.5f, -3.04f) - curveToRelative(0.67f, -0.27f, 1.1f, -0.91f, 1.1f, -1.62f) - verticalLineTo(7.17f) - curveToRelative(0.0f, -0.71f, -0.43f, -1.35f, -1.1f, -1.62f) - lineToRelative(-7.5f, -3.04f) - close() - moveTo(6.06f, 7.98f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -0.43f) - lineTo(12.0f, 9.44f) - lineToRelative(4.98f, -1.9f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.54f, 1.41f) - lineToRelative(-4.77f, 1.8f) - verticalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - verticalLineToRelative(-5.5f) - lineToRelative(-4.77f, -1.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.43f, -0.97f) - close() - } - } - return _cube!! - } - -private var _cube: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CubeMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CubeMultiple.kt deleted file mode 100644 index 4caed911..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CubeMultiple.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CubeMultiple: ImageVector - get() { - if (_cubeMultiple != null) { - return _cubeMultiple!! - } - _cubeMultiple = fluentIcon(name = "Filled.CubeMultiple") { - fluentPath { - moveTo(10.52f, 4.25f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 3.07f, 0.04f) - lineToRelative(5.91f, 2.1f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 1.0f, 0.59f) - verticalLineToRelative(-0.42f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.33f, -1.88f) - lineTo(14.0f, 2.85f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, -4.02f, 0.0f) - lineTo(4.83f, 4.68f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 3.5f, 6.56f) - verticalLineToRelative(0.42f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 1.0f, -0.6f) - lineToRelative(5.91f, -2.1f) - curveToRelative(0.04f, 0.0f, 0.07f, -0.02f, 0.1f, -0.03f) - close() - moveTo(13.25f, 5.23f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.5f, 0.0f) - lineToRelative(-5.92f, 2.1f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 3.5f, 9.2f) - verticalLineToRelative(8.24f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.33f, 1.88f) - lineToRelative(5.92f, 2.1f) - curveToRelative(0.8f, 0.29f, 1.7f, 0.29f, 2.5f, 0.0f) - lineToRelative(5.92f, -2.1f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.33f, -1.88f) - lineTo(20.5f, 9.2f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.33f, -1.88f) - lineToRelative(-5.92f, -2.1f) - close() - moveTo(6.45f, 10.11f) - curveToRelative(0.14f, -0.39f, 0.57f, -0.6f, 0.96f, -0.45f) - lineTo(12.0f, 11.29f) - lineToRelative(4.6f, -1.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.5f, 1.4f) - lineToRelative(-4.35f, 1.55f) - verticalLineToRelative(4.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-4.72f) - lineToRelative(-4.34f, -1.54f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.46f, -0.96f) - close() - } - } - return _cubeMultiple!! - } - -private var _cubeMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CubeQuick.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CubeQuick.kt deleted file mode 100644 index 0af0d235..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CubeQuick.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CubeQuick: ImageVector - get() { - if (_cubeQuick != null) { - return _cubeQuick!! - } - _cubeQuick = fluentIcon(name = "Filled.CubeQuick") { - fluentPath { - moveTo(15.6f, 6.22f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.8f, 0.0f) - lineToRelative(3.5f, 1.76f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 22.0f, 9.77f) - verticalLineToRelative(4.46f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.1f, 1.79f) - lineToRelative(-3.5f, 1.77f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.8f, 0.0f) - lineToRelative(-3.5f, -1.77f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.1f, -1.79f) - lineTo(11.0f, 9.77f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.1f, -1.79f) - lineToRelative(3.5f, -1.76f) - close() - moveTo(13.58f, 10.41f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.33f, 1.0f) - lineToRelative(1.84f, 0.94f) - verticalLineToRelative(1.9f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) - verticalLineToRelative(-1.9f) - lineToRelative(1.84f, -0.94f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.68f, -1.33f) - lineToRelative(-1.91f, 0.97f) - lineToRelative(-1.91f, -0.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, 0.33f) - close() - moveTo(4.75f, 7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - close() - moveTo(2.75f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - close() - moveTo(4.0f, 15.75f) - curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _cubeQuick!! - } - -private var _cubeQuick: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CubeSync.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CubeSync.kt deleted file mode 100644 index b1642f7d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CubeSync.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CubeSync: ImageVector - get() { - if (_cubeSync != null) { - return _cubeSync!! - } - _cubeSync = fluentIcon(name = "Filled.CubeSync") { - fluentPath { - moveTo(13.4f, 2.51f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.8f, 0.0f) - lineTo(3.1f, 5.55f) - curveToRelative(-0.67f, 0.27f, -1.1f, 0.91f, -1.1f, 1.62f) - verticalLineToRelative(9.66f) - curveToRelative(0.0f, 0.71f, 0.43f, 1.35f, 1.1f, 1.62f) - lineToRelative(7.5f, 3.04f) - curveToRelative(0.62f, 0.25f, 1.3f, 0.33f, 1.96f, 0.23f) - arcToRelative(6.47f, 6.47f, 0.0f, false, true, -1.31f, -6.01f) - verticalLineToRelative(-4.95f) - lineToRelative(-4.77f, -1.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.54f, -1.41f) - lineTo(12.0f, 9.45f) - lineToRelative(4.98f, -1.9f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.54f, 1.4f) - lineToRelative(-4.77f, 1.81f) - verticalLineToRelative(2.3f) - arcToRelative(6.48f, 6.48f, 0.0f, false, true, 9.25f, -0.25f) - lineTo(22.0f, 7.17f) - curveToRelative(0.0f, -0.7f, -0.43f, -1.35f, -1.1f, -1.62f) - lineToRelative(-7.5f, -3.04f) - close() - moveTo(12.0f, 17.51f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) - close() - moveTo(20.5f, 14.01f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.21f, 0.5f, 0.5f) - verticalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.03f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.8f, -0.59f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) - verticalLineToRelative(-0.55f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - close() - moveTo(15.0f, 19.94f) - verticalLineToRelative(0.55f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.77f, 0.65f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) - close() - } - } - return _cubeSync!! - } - -private var _cubeSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CubeTree.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CubeTree.kt deleted file mode 100644 index 330330cd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CubeTree.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CubeTree: ImageVector - get() { - if (_cubeTree != null) { - return _cubeTree!! - } - _cubeTree = fluentIcon(name = "Filled.CubeTree") { - fluentPath { - moveTo(11.76f, 2.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.48f, 0.0f) - lineToRelative(3.75f, 1.25f) - curveToRelative(0.3f, 0.1f, 0.51f, 0.39f, 0.51f, 0.71f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.32f, -0.2f, 0.6f, -0.51f, 0.71f) - lineToRelative(-3.24f, 1.08f) - verticalLineTo(13.0f) - horizontalLineToRelative(1.75f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(0.84f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, -1.5f, 0.0f) - verticalLineToRelative(-0.84f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.84f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, -1.5f, 0.0f) - verticalLineToRelative(-0.84f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(1.75f) - verticalLineToRelative(-2.2f) - lineTo(8.01f, 9.7f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 7.5f, 9.0f) - verticalLineTo(4.0f) - curveToRelative(0.0f, -0.32f, 0.2f, -0.6f, 0.51f, -0.71f) - lineToRelative(3.75f, -1.25f) - close() - moveTo(9.8f, 5.5f) - curveToRelative(-0.13f, 0.4f, 0.08f, 0.82f, 0.47f, 0.95f) - lineToRelative(0.99f, 0.33f) - verticalLineToRelative(0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.96f) - lineToRelative(0.99f, -0.33f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.48f, -1.42f) - lineTo(12.0f, 5.46f) - lineToRelative(-1.26f, -0.42f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.95f, 0.47f) - close() - } - } - return _cubeTree!! - } - -private var _cubeTree: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CurrencyDollarEuro.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CurrencyDollarEuro.kt deleted file mode 100644 index 261dddf8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CurrencyDollarEuro.kt +++ /dev/null @@ -1,95 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CurrencyDollarEuro: ImageVector - get() { - if (_currencyDollarEuro != null) { - return _currencyDollarEuro!! - } - _currencyDollarEuro = fluentIcon(name = "Filled.CurrencyDollarEuro") { - fluentPath { - moveTo(6.5f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(0.11f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 2.0f, 7.5f) - verticalLineToRelative(0.38f) - curveToRelative(0.0f, 1.9f, 1.09f, 3.61f, 2.8f, 4.42f) - lineToRelative(0.7f, 0.33f) - verticalLineToRelative(6.14f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -1.5f, -2.3f) - verticalLineToRelative(-0.84f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(0.85f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 3.5f, 4.39f) - verticalLineToRelative(0.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - verticalLineToRelative(-0.12f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 3.5f, -4.4f) - verticalLineToRelative(-0.36f) - curveToRelative(0.0f, -1.89f, -1.09f, -3.6f, -2.8f, -4.41f) - lineToRelative(-0.7f, -0.34f) - lineTo(7.5f, 5.21f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 9.0f, 7.5f) - verticalLineToRelative(0.86f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(11.0f, 7.5f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, -3.5f, -4.39f) - lineTo(7.5f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - moveTo(4.0f, 7.5f) - curveToRelative(0.0f, -1.03f, 0.62f, -1.9f, 1.5f, -2.3f) - verticalLineToRelative(5.21f) - arcTo(2.88f, 2.88f, 0.0f, false, true, 4.0f, 7.88f) - lineTo(4.0f, 7.5f) - close() - moveTo(7.5f, 18.77f) - verticalLineToRelative(-5.19f) - curveToRelative(0.92f, 0.5f, 1.5f, 1.47f, 1.5f, 2.53f) - verticalLineToRelative(0.37f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -1.5f, 2.3f) - close() - moveTo(15.0f, 12.0f) - curveToRelative(0.0f, -0.33f, 0.01f, -0.66f, 0.04f, -0.98f) - lineTo(16.0f, 11.02f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - horizontalLineToRelative(-0.58f) - curveToRelative(0.24f, -0.8f, 0.58f, -1.52f, 0.98f, -2.12f) - curveToRelative(0.85f, -1.27f, 1.92f, -1.9f, 2.96f, -1.9f) - curveToRelative(0.38f, 0.0f, 0.79f, 0.12f, 1.07f, 0.31f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.13f, -1.65f) - arcToRelative(3.97f, 3.97f, 0.0f, false, false, -2.2f, -0.66f) - curveToRelative(-1.91f, 0.0f, -3.53f, 1.16f, -4.62f, 2.79f) - curveToRelative(-0.62f, 0.92f, -1.1f, 2.02f, -1.39f, 3.23f) - lineTo(12.0f, 9.02f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(1.04f) - curveToRelative(-0.03f, 0.33f, -0.04f, 0.65f, -0.04f, 0.98f) - verticalLineToRelative(0.03f) - horizontalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(1.16f) - curveToRelative(0.25f, 1.59f, 0.8f, 3.03f, 1.58f, 4.18f) - curveToRelative(1.1f, 1.63f, 2.7f, 2.79f, 4.62f, 2.79f) - curveToRelative(0.7f, 0.0f, 1.54f, -0.17f, 2.23f, -0.67f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.18f, -1.62f) - curveToRelative(-0.25f, 0.18f, -0.64f, 0.29f, -1.05f, 0.29f) - curveToRelative(-1.04f, 0.0f, -2.1f, -0.63f, -2.96f, -1.9f) - arcToRelative(8.4f, 8.4f, 0.0f, false, true, -1.21f, -3.07f) - lineTo(16.0f, 14.03f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - horizontalLineToRelative(-1.0f) - lineTo(15.0f, 12.0f) - close() - } - } - return _currencyDollarEuro!! - } - -private var _currencyDollarEuro: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CurrencyDollarRupee.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CurrencyDollarRupee.kt deleted file mode 100644 index ad3c9553..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CurrencyDollarRupee.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CurrencyDollarRupee: ImageVector - get() { - if (_currencyDollarRupee != null) { - return _currencyDollarRupee!! - } - _currencyDollarRupee = fluentIcon(name = "Filled.CurrencyDollarRupee") { - fluentPath { - moveTo(7.5f, 3.0f) - verticalLineToRelative(0.11f) - arcTo(4.5f, 4.5f, 0.0f, false, true, 11.0f, 7.5f) - verticalLineToRelative(0.86f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(9.0f, 7.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -1.5f, -2.3f) - verticalLineToRelative(6.16f) - lineToRelative(0.7f, 0.34f) - curveToRelative(1.71f, 0.8f, 2.8f, 2.52f, 2.8f, 4.4f) - verticalLineToRelative(0.38f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -3.5f, 4.39f) - verticalLineToRelative(0.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - verticalLineToRelative(-0.12f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -3.5f, -4.4f) - verticalLineToRelative(-0.84f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(0.85f) - curveToRelative(0.0f, 1.02f, 0.62f, 1.9f, 1.5f, 2.3f) - verticalLineToRelative(-6.15f) - lineToRelative(-0.7f, -0.33f) - arcTo(4.88f, 4.88f, 0.0f, false, true, 2.0f, 7.88f) - lineTo(2.0f, 7.5f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 3.5f, -4.39f) - lineTo(5.5f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(5.5f, 5.2f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 7.5f) - verticalLineToRelative(0.38f) - curveToRelative(0.0f, 1.06f, 0.58f, 2.03f, 1.5f, 2.53f) - verticalLineToRelative(-5.2f) - close() - moveTo(7.5f, 13.58f) - verticalLineToRelative(5.2f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 1.5f, -2.3f) - verticalLineToRelative(-0.37f) - curveToRelative(0.0f, -1.06f, -0.58f, -2.03f, -1.5f, -2.53f) - close() - moveTo(13.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(2.5f) - curveToRelative(0.82f, 0.0f, 1.54f, 0.4f, 2.0f, 1.0f) - lineTo(13.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(4.95f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.45f, 2.0f) - lineTo(13.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.82f, 1.57f) - lineToRelative(7.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.64f, -1.14f) - lineTo(14.92f, 12.0f) - horizontalLineToRelative(0.58f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 4.47f, -4.0f) - lineTo(21.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-1.26f) - curveToRelative(-0.12f, -0.36f, -0.3f, -0.7f, -0.5f, -1.0f) - lineTo(21.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-8.0f) - close() - } - } - return _currencyDollarRupee!! - } - -private var _currencyDollarRupee: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cursor.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cursor.kt deleted file mode 100644 index 00e977e2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Cursor.kt +++ /dev/null @@ -1,32 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Cursor: ImageVector - get() { - if (_cursor != null) { - return _cursor!! - } - _cursor = fluentIcon(name = "Filled.Cursor") { - fluentPath { - moveTo(7.92f, 2.3f) - arcTo(1.5f, 1.5f, 0.0f, false, false, 5.5f, 3.48f) - verticalLineTo(20.5f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 2.68f, 0.93f) - lineToRelative(4.19f, -5.3f) - curveToRelative(0.31f, -0.4f, 0.79f, -0.62f, 1.3f, -0.62f) - horizontalLineToRelative(6.84f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.93f, -2.69f) - lineTo(7.92f, 2.3f) - close() - } - } - return _cursor!! - } - -private var _cursor: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CursorClick.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CursorClick.kt deleted file mode 100644 index d979d081..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CursorClick.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CursorClick: ImageVector - get() { - if (_cursorClick != null) { - return _cursorClick!! - } - _cursorClick = fluentIcon(name = "Filled.CursorClick") { - fluentPath { - moveTo(9.25f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(4.47f, 3.97f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(1.75f, 1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(4.47f, 5.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - moveTo(14.03f, 3.97f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-1.75f, 1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(1.75f, -1.75f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(2.5f, 8.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(8.5f, 9.49f) - arcToRelative(1.32f, 1.32f, 0.0f, false, true, 2.18f, -1.0f) - lineToRelative(8.46f, 7.25f) - curveToRelative(0.9f, 0.78f, 0.39f, 2.27f, -0.8f, 2.32f) - lineToRelative(-3.85f, 0.15f) - curveToRelative(-0.41f, 0.02f, -0.8f, 0.2f, -1.07f, 0.5f) - lineToRelative(-2.62f, 2.93f) - curveToRelative(-0.8f, 0.9f, -2.3f, 0.33f, -2.3f, -0.88f) - lineTo(8.5f, 9.5f) - close() - } - } - return _cursorClick!! - } - -private var _cursorClick: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CursorHover.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CursorHover.kt deleted file mode 100644 index dfe1e7fa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CursorHover.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CursorHover: ImageVector - get() { - if (_cursorHover != null) { - return _cursorHover!! - } - _cursorHover = fluentIcon(name = "Filled.CursorHover") { - fluentPath { - moveTo(4.5f, 4.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 2.0f, 6.5f) - verticalLineToRelative(9.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.5f, 18.0f) - lineTo(9.0f, 18.0f) - verticalLineToRelative(-7.25f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 2.78f, -1.41f) - lineToRelative(7.5f, 7.5f) - curveToRelative(0.38f, 0.27f, 0.62f, 0.68f, 0.7f, 1.11f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 22.0f, 15.5f) - verticalLineToRelative(-9.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 19.5f, 4.0f) - horizontalLineToRelative(-15.0f) - close() - moveTo(11.28f, 10.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.28f, 0.53f) - verticalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.37f, 0.42f) - lineToRelative(2.46f, -3.58f) - lineToRelative(4.27f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.68f, -1.27f) - lineToRelative(-7.5f, -7.5f) - close() - } - } - return _cursorHover!! - } - -private var _cursorHover: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CursorHoverOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CursorHoverOff.kt deleted file mode 100644 index 737f9205..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/CursorHoverOff.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.CursorHoverOff: ImageVector - get() { - if (_cursorHoverOff != null) { - return _cursorHoverOff!! - } - _cursorHoverOff = fluentIcon(name = "Filled.CursorHoverOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.05f, 1.05f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 2.0f, 6.5f) - verticalLineToRelative(9.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.5f, 18.0f) - horizontalLineTo(9.0f) - verticalLineToRelative(-7.25f) - curveToRelative(0.0f, -0.2f, 0.04f, -0.4f, 0.1f, -0.59f) - lineToRelative(0.9f, 0.9f) - verticalLineToRelative(10.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.37f, 0.42f) - lineToRelative(2.46f, -3.58f) - lineToRelative(4.05f, 0.85f) - lineToRelative(2.84f, 2.84f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(7.18f, 4.0f) - lineToRelative(13.63f, 13.63f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 22.0f, 15.5f) - verticalLineToRelative(-9.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 19.5f, 4.0f) - horizontalLineTo(7.18f) - close() - } - } - return _cursorHoverOff!! - } - -private var _cursorHoverOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DarkTheme.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DarkTheme.kt deleted file mode 100644 index 30279ff0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DarkTheme.kt +++ /dev/null @@ -1,30 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DarkTheme: ImageVector - get() { - if (_darkTheme != null) { - return _darkTheme!! - } - _darkTheme = fluentIcon(name = "Filled.DarkTheme") { - fluentPath { - moveTo(12.0f, 22.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) - close() - moveTo(12.0f, 20.0f) - lineTo(12.0f, 4.0f) - arcToRelative(8.0f, 8.0f, 0.0f, true, true, 0.0f, 16.0f) - close() - } - } - return _darkTheme!! - } - -private var _darkTheme: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataArea.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataArea.kt deleted file mode 100644 index 968d5b04..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataArea.kt +++ /dev/null @@ -1,41 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DataArea: ImageVector - get() { - if (_dataArea != null) { - return _dataArea!! - } - _dataArea = fluentIcon(name = "Filled.DataArea") { - fluentPath { - moveTo(3.0f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(4.5f, 19.5f) - horizontalLineToRelative(15.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(3.75f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(3.0f, 3.75f) - close() - moveTo(19.5f, 6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.2f, -0.6f) - lineToRelative(-5.6f, 4.2f) - lineTo(8.88f, 8.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.72f, -0.02f) - lineTo(5.5f, 9.4f) - verticalLineToRelative(9.09f) - horizontalLineToRelative(14.0f) - lineTo(19.5f, 6.75f) - close() - } - } - return _dataArea!! - } - -private var _dataArea: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataBarHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataBarHorizontal.kt deleted file mode 100644 index cd4e2993..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataBarHorizontal.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DataBarHorizontal: ImageVector - get() { - if (_dataBarHorizontal != null) { - return _dataBarHorizontal!! - } - _dataBarHorizontal = fluentIcon(name = "Filled.DataBarHorizontal") { - fluentPath { - moveTo(21.0f, 18.25f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - lineTo(5.25f, 16.0f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, 4.5f) - horizontalLineToRelative(13.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - close() - moveTo(17.0f, 11.75f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-9.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, 4.5f) - horizontalLineToRelative(9.5f) - curveTo(16.0f, 14.0f, 17.0f, 13.0f, 17.0f, 11.75f) - close() - moveTo(13.0f, 5.25f) - curveTo(13.0f, 4.01f, 12.0f, 3.0f, 10.75f, 3.0f) - horizontalLineToRelative(-5.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) - horizontalLineToRelative(5.5f) - curveTo(12.0f, 7.5f, 13.0f, 6.5f, 13.0f, 5.25f) - close() - } - } - return _dataBarHorizontal!! - } - -private var _dataBarHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataBarVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataBarVertical.kt deleted file mode 100644 index b74c42c6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataBarVertical.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DataBarVertical: ImageVector - get() { - if (_dataBarVertical != null) { - return _dataBarVertical!! - } - _dataBarVertical = fluentIcon(name = "Filled.DataBarVertical") { - fluentPath { - moveTo(5.75f, 3.0f) - curveTo(6.99f, 3.0f, 8.0f, 4.0f, 8.0f, 5.25f) - verticalLineToRelative(13.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.5f, 0.0f) - lineTo(3.5f, 5.25f) - curveTo(3.5f, 4.0f, 4.5f, 3.0f, 5.75f, 3.0f) - close() - moveTo(12.25f, 7.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(9.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.5f, 0.0f) - verticalLineToRelative(-9.5f) - curveTo(10.0f, 8.0f, 11.0f, 7.0f, 12.25f, 7.0f) - close() - moveTo(18.75f, 11.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(5.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.5f, 0.0f) - verticalLineToRelative(-5.5f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - close() - } - } - return _dataBarVertical!! - } - -private var _dataBarVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataBarVerticalAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataBarVerticalAdd.kt deleted file mode 100644 index 1f2054b7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataBarVerticalAdd.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DataBarVerticalAdd: ImageVector - get() { - if (_dataBarVerticalAdd != null) { - return _dataBarVerticalAdd!! - } - _dataBarVerticalAdd = fluentIcon(name = "Filled.DataBarVerticalAdd") { - fluentPath { - moveTo(18.25f, 3.0f) - curveTo(17.0f, 3.0f, 16.0f, 4.0f, 16.0f, 5.25f) - verticalLineToRelative(5.92f) - arcToRelative(6.47f, 6.47f, 0.0f, false, true, 4.5f, 0.56f) - lineTo(20.5f, 5.25f) - curveTo(20.5f, 4.0f, 19.5f, 3.0f, 18.25f, 3.0f) - close() - moveTo(14.0f, 9.25f) - verticalLineToRelative(2.77f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.0f, 20.98f) - lineToRelative(-0.26f, 0.02f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-9.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) - close() - moveTo(3.0f, 13.25f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) - verticalLineToRelative(5.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.5f, 0.0f) - verticalLineToRelative(-5.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _dataBarVerticalAdd!! - } - -private var _dataBarVerticalAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataBarVerticalStar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataBarVerticalStar.kt deleted file mode 100644 index 38fc1f14..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataBarVerticalStar.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DataBarVerticalStar: ImageVector - get() { - if (_dataBarVerticalStar != null) { - return _dataBarVerticalStar!! - } - _dataBarVerticalStar = fluentIcon(name = "Filled.DataBarVerticalStar") { - fluentPath { - moveTo(18.25f, 3.0f) - curveTo(17.01f, 3.0f, 16.0f, 4.0f, 16.0f, 5.25f) - verticalLineToRelative(5.92f) - arcToRelative(6.51f, 6.51f, 0.0f, false, true, 4.5f, 0.56f) - lineTo(20.5f, 5.25f) - curveTo(20.5f, 4.0f, 19.5f, 3.0f, 18.25f, 3.0f) - close() - moveTo(14.0f, 9.25f) - verticalLineToRelative(2.77f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.99f, 8.96f) - lineToRelative(-0.26f, 0.02f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-9.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) - close() - moveTo(3.0f, 13.25f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) - verticalLineToRelative(5.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.5f, 0.0f) - verticalLineToRelative(-5.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(18.06f, 14.42f) - arcToRelative(0.58f, 0.58f, 0.0f, false, false, -1.12f, 0.0f) - lineToRelative(-0.55f, 1.79f) - horizontalLineToRelative(-1.8f) - curveToRelative(-0.57f, 0.0f, -0.8f, 0.75f, -0.35f, 1.1f) - lineToRelative(1.46f, 1.1f) - lineToRelative(-0.56f, 1.79f) - curveToRelative(-0.17f, 0.56f, 0.44f, 1.03f, 0.9f, 0.68f) - lineToRelative(1.46f, -1.1f) - lineToRelative(1.46f, 1.1f) - curveToRelative(0.46f, 0.35f, 1.07f, -0.12f, 0.9f, -0.68f) - lineToRelative(-0.56f, -1.79f) - lineToRelative(1.46f, -1.1f) - curveToRelative(0.46f, -0.35f, 0.22f, -1.1f, -0.35f, -1.1f) - horizontalLineToRelative(-1.8f) - lineToRelative(-0.55f, -1.79f) - close() - } - } - return _dataBarVerticalStar!! - } - -private var _dataBarVerticalStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataFunnel.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataFunnel.kt deleted file mode 100644 index 48ce1b2b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataFunnel.kt +++ /dev/null @@ -1,41 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DataFunnel: ImageVector - get() { - if (_dataFunnel != null) { - return _dataFunnel!! - } - _dataFunnel = fluentIcon(name = "Filled.DataFunnel") { - fluentPath { - moveTo(19.25f, 7.5f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 0.0f, -5.5f) - lineTo(4.75f, 2.0f) - arcToRelative(2.75f, 2.75f, 0.0f, true, false, 0.0f, 5.5f) - horizontalLineToRelative(14.5f) - close() - moveTo(17.25f, 14.5f) - arcToRelative(2.75f, 2.75f, 0.0f, true, false, 0.0f, -5.5f) - lineTo(6.75f, 9.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 0.0f, 5.5f) - horizontalLineToRelative(10.5f) - close() - moveTo(17.0f, 18.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 14.25f, 16.0f) - horizontalLineToRelative(-4.5f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 0.0f, 5.5f) - horizontalLineToRelative(4.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 17.0f, 18.75f) - close() - } - } - return _dataFunnel!! - } - -private var _dataFunnel: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataHistogram.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataHistogram.kt deleted file mode 100644 index 9f838d96..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataHistogram.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DataHistogram: ImageVector - get() { - if (_dataHistogram != null) { - return _dataHistogram!! - } - _dataHistogram = fluentIcon(name = "Filled.DataHistogram") { - fluentPath { - moveTo(9.0f, 5.23f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(1.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - lineTo(15.0f, 21.0f) - lineTo(9.0f, 21.0f) - lineTo(9.0f, 5.23f) - close() - moveTo(7.5f, 10.0f) - lineTo(5.25f, 10.0f) - curveTo(4.01f, 10.0f, 3.0f, 11.0f, 3.0f, 12.25f) - verticalLineToRelative(8.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(7.5f, 21.0f) - lineTo(7.5f, 10.0f) - close() - moveTo(16.5f, 21.0f) - horizontalLineToRelative(3.75f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-11.0f) - curveTo(21.0f, 8.01f, 20.0f, 7.0f, 18.75f, 7.0f) - lineTo(16.5f, 7.0f) - verticalLineToRelative(14.0f) - close() - } - } - return _dataHistogram!! - } - -private var _dataHistogram: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataLine.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataLine.kt deleted file mode 100644 index ba958162..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataLine.kt +++ /dev/null @@ -1,35 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DataLine: ImageVector - get() { - if (_dataLine != null) { - return _dataLine!! - } - _dataLine = fluentIcon(name = "Filled.DataLine") { - fluentPath { - moveTo(16.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 2.52f, 2.96f) - lineToRelative(-2.03f, 3.36f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -4.75f, 3.65f) - lineTo(8.0f, 17.84f) - verticalLineTo(18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, -0.47f, -1.6f) - lineToRelative(3.54f, -1.77f) - arcTo(3.01f, 3.01f, 0.0f, false, true, 14.0f, 11.0f) - curveToRelative(0.48f, 0.0f, 0.94f, 0.11f, 1.34f, 0.32f) - lineToRelative(1.8f, -2.97f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 16.0f, 6.0f) - close() - } - } - return _dataLine!! - } - -private var _dataLine: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataPie.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataPie.kt deleted file mode 100644 index 17199a7b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataPie.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DataPie: ImageVector - get() { - if (_dataPie != null) { - return _dataPie!! - } - _dataPie = fluentIcon(name = "Filled.DataPie") { - fluentPath { - moveTo(10.25f, 4.25f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(8.0f) - horizontalLineToRelative(8.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - curveToRelative(0.0f, 4.97f, -4.03f, 8.5f, -9.0f, 8.5f) - arcToRelative(9.0f, 9.0f, 0.0f, false, true, -9.0f, -9.0f) - curveToRelative(0.0f, -4.97f, 3.53f, -9.0f, 8.5f, -9.0f) - close() - moveTo(13.25f, 1.75f) - arcToRelative(9.0f, 9.0f, 0.0f, false, true, 9.0f, 9.0f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-8.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(12.5f, 2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _dataPie!! - } - -private var _dataPie: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataScatter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataScatter.kt deleted file mode 100644 index 27d05873..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataScatter.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DataScatter: ImageVector - get() { - if (_dataScatter != null) { - return _dataScatter!! - } - _dataScatter = fluentIcon(name = "Filled.DataScatter") { - fluentPath { - moveTo(3.0f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(4.5f, 19.5f) - horizontalLineToRelative(15.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(3.75f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(3.0f, 3.75f) - close() - moveTo(14.0f, 7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.0f) - close() - moveTo(9.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - moveTo(15.0f, 12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - } - } - return _dataScatter!! - } - -private var _dataScatter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataSunburst.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataSunburst.kt deleted file mode 100644 index 7aa38cb9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataSunburst.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DataSunburst: ImageVector - get() { - if (_dataSunburst != null) { - return _dataSunburst!! - } - _dataSunburst = fluentIcon(name = "Filled.DataSunburst") { - fluentPath { - moveTo(15.0f, 3.51f) - curveToRelative(0.0f, 0.32f, 0.2f, 0.6f, 0.5f, 0.74f) - arcToRelative(8.53f, 8.53f, 0.0f, false, true, 4.25f, 4.26f) - curveToRelative(0.13f, 0.29f, 0.42f, 0.5f, 0.74f, 0.5f) - curveToRelative(0.52f, 0.0f, 0.9f, -0.52f, 0.68f, -1.0f) - curveToRelative(-1.0f, -2.31f, -2.87f, -4.17f, -5.18f, -5.18f) - curveToRelative(-0.48f, -0.21f, -0.99f, 0.16f, -0.99f, 0.68f) - close() - moveTo(8.01f, 2.83f) - curveToRelative(0.48f, -0.21f, 0.99f, 0.16f, 0.99f, 0.68f) - curveToRelative(0.0f, 0.32f, -0.2f, 0.6f, -0.5f, 0.74f) - arcTo(8.53f, 8.53f, 0.0f, false, false, 4.26f, 8.5f) - curveToRelative(-0.13f, 0.29f, -0.42f, 0.5f, -0.74f, 0.5f) - curveToRelative(-0.52f, 0.0f, -0.9f, -0.52f, -0.68f, -1.0f) - curveTo(3.83f, 5.7f, 5.7f, 3.84f, 8.0f, 2.83f) - close() - moveTo(15.0f, 20.49f) - curveToRelative(0.0f, -0.32f, 0.2f, -0.6f, 0.5f, -0.74f) - arcToRelative(8.53f, 8.53f, 0.0f, false, false, 4.25f, -4.26f) - curveToRelative(0.13f, -0.29f, 0.42f, -0.49f, 0.74f, -0.49f) - curveToRelative(0.52f, 0.0f, 0.9f, 0.5f, 0.68f, 0.99f) - curveToRelative(-1.0f, 2.31f, -2.87f, 4.18f, -5.18f, 5.18f) - curveToRelative(-0.48f, 0.21f, -0.99f, -0.16f, -0.99f, -0.68f) - close() - moveTo(4.25f, 15.49f) - arcTo(0.82f, 0.82f, 0.0f, false, false, 3.5f, 15.0f) - curveToRelative(-0.52f, 0.0f, -0.9f, 0.5f, -0.68f, 0.99f) - curveToRelative(1.0f, 2.31f, 2.87f, 4.18f, 5.18f, 5.18f) - curveToRelative(0.48f, 0.21f, 0.99f, -0.16f, 0.99f, -0.68f) - curveToRelative(0.0f, -0.32f, -0.2f, -0.6f, -0.5f, -0.74f) - arcToRelative(8.53f, 8.53f, 0.0f, false, true, -4.25f, -4.26f) - close() - moveTo(12.0f, 6.5f) - curveToRelative(-0.2f, 0.0f, -0.38f, 0.01f, -0.57f, 0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.16f, -1.5f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, 7.55f, 5.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.46f, 0.35f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 12.0f, 6.5f) - close() - moveTo(9.12f, 6.4f) - curveToRelative(0.23f, 0.34f, 0.14f, 0.81f, -0.2f, 1.04f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -1.48f, 7.64f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.24f, 0.84f) - arcTo(6.97f, 6.97f, 0.0f, false, true, 8.08f, 6.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.04f, 0.2f) - close() - moveTo(18.23f, 12.9f) - curveToRelative(0.4f, 0.11f, 0.64f, 0.52f, 0.53f, 0.92f) - arcTo(7.0f, 7.0f, 0.0f, false, true, 8.75f, 18.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.7f, -1.33f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 7.86f, -3.44f) - curveToRelative(0.1f, -0.4f, 0.52f, -0.63f, 0.92f, -0.52f) - close() - moveTo(12.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) - close() - } - } - return _dataSunburst!! - } - -private var _dataSunburst: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataTreemap.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataTreemap.kt deleted file mode 100644 index d5cd15a5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataTreemap.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DataTreemap: ImageVector - get() { - if (_dataTreemap != null) { - return _dataTreemap!! - } - _dataTreemap = fluentIcon(name = "Filled.DataTreemap") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineTo(9.0f) - verticalLineToRelative(18.0f) - horizontalLineTo(6.25f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - verticalLineTo(6.25f) - close() - moveTo(10.5f, 21.0f) - horizontalLineToRelative(7.25f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineTo(15.5f) - horizontalLineTo(10.5f) - verticalLineTo(21.0f) - close() - moveTo(21.0f, 14.0f) - verticalLineTo(6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - horizontalLineTo(10.5f) - verticalLineToRelative(11.0f) - horizontalLineTo(21.0f) - close() - } - } - return _dataTreemap!! - } - -private var _dataTreemap: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataTrending.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataTrending.kt deleted file mode 100644 index cc161b9b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataTrending.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DataTrending: ImageVector - get() { - if (_dataTrending != null) { - return _dataTrending!! - } - _dataTrending = fluentIcon(name = "Filled.DataTrending") { - fluentPath { - moveTo(5.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) - verticalLineToRelative(13.5f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 6.5f, 21.0f) - lineTo(20.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(6.5f, 19.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 5.0f, 17.5f) - lineTo(5.0f, 4.0f) - close() - moveTo(15.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(2.09f) - lineToRelative(-3.84f, 3.84f) - lineToRelative(-1.8f, -1.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) - lineTo(6.78f, 13.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.42f, 1.42f) - lineToRelative(2.54f, -2.55f) - lineToRelative(1.8f, 1.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) - lineTo(18.5f, 9.4f) - verticalLineToRelative(2.09f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(20.5f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(15.0f, 6.0f) - close() - } - } - return _dataTrending!! - } - -private var _dataTrending: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataUsage.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataUsage.kt deleted file mode 100644 index 91b41831..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataUsage.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DataUsage: ImageVector - get() { - if (_dataUsage != null) { - return _dataUsage!! - } - _dataUsage = fluentIcon(name = "Filled.DataUsage") { - fluentPath { - moveTo(18.25f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) - lineTo(5.75f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(12.5f) - close() - moveTo(7.75f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-6.5f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 7.75f, 9.0f) - close() - moveTo(16.25f, 7.0f) - arcToRelative(0.74f, 0.74f, 0.0f, false, false, -0.75f, 0.73f) - verticalLineToRelative(8.54f) - curveToRelative(0.0f, 0.4f, 0.34f, 0.73f, 0.75f, 0.73f) - reflectiveCurveToRelative(0.75f, -0.33f, 0.75f, -0.73f) - lineTo(17.0f, 7.73f) - curveToRelative(0.0f, -0.4f, -0.34f, -0.73f, -0.75f, -0.73f) - close() - moveTo(11.98f, 12.0f) - curveToRelative(-0.4f, 0.0f, -0.73f, 0.33f, -0.73f, 0.73f) - lineToRelative(0.04f, 3.55f) - curveToRelative(0.0f, 0.4f, 0.33f, 0.72f, 0.73f, 0.72f) - curveToRelative(0.4f, 0.0f, 0.73f, -0.34f, 0.73f, -0.74f) - lineToRelative(-0.04f, -3.54f) - curveToRelative(0.0f, -0.4f, -0.33f, -0.73f, -0.73f, -0.72f) - close() - } - } - return _dataUsage!! - } - -private var _dataUsage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataUsageEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataUsageEdit.kt deleted file mode 100644 index da16918c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataUsageEdit.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DataUsageEdit: ImageVector - get() { - if (_dataUsageEdit != null) { - return _dataUsageEdit!! - } - _dataUsageEdit = fluentIcon(name = "Filled.DataUsageEdit") { - fluentPath { - moveTo(20.0f, 4.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 17.25f, 2.0f) - lineTo(4.75f, 2.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 4.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 20.0f) - horizontalLineToRelative(6.67f) - lineToRelative(0.1f, -0.42f) - curveToRelative(0.16f, -0.65f, 0.5f, -1.24f, 0.97f, -1.72f) - lineToRelative(2.16f, -2.15f) - arcToRelative(0.71f, 0.71f, 0.0f, false, true, -0.15f, -0.44f) - lineTo(14.5f, 6.73f) - curveToRelative(0.0f, -0.4f, 0.34f, -0.73f, 0.75f, -0.73f) - reflectiveCurveToRelative(0.75f, 0.33f, 0.75f, 0.73f) - verticalLineToRelative(7.62f) - lineToRelative(2.4f, -2.39f) - arcToRelative(3.27f, 3.27f, 0.0f, false, true, 1.6f, -0.88f) - lineTo(20.0f, 4.75f) - close() - moveTo(6.0f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-6.5f) - close() - moveTo(10.25f, 11.73f) - curveToRelative(0.0f, -0.4f, 0.32f, -0.73f, 0.73f, -0.73f) - curveToRelative(0.4f, 0.0f, 0.73f, 0.31f, 0.73f, 0.72f) - lineToRelative(0.04f, 3.54f) - curveToRelative(0.0f, 0.4f, -0.32f, 0.73f, -0.73f, 0.74f) - arcToRelative(0.73f, 0.73f, 0.0f, false, true, -0.73f, -0.72f) - lineToRelative(-0.04f, -3.55f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _dataUsageEdit!! - } - -private var _dataUsageEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataUsageToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataUsageToolbox.kt deleted file mode 100644 index 3be5fd30..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataUsageToolbox.kt +++ /dev/null @@ -1,100 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DataUsageToolbox: ImageVector - get() { - if (_dataUsageToolbox != null) { - return _dataUsageToolbox!! - } - _dataUsageToolbox = fluentIcon(name = "Filled.DataUsageToolbox") { - fluentPath { - moveTo(17.25f, 2.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 20.0f, 4.75f) - verticalLineToRelative(6.6f) - curveToRelative(-0.24f, -0.06f, -0.49f, -0.1f, -0.75f, -0.1f) - lineTo(16.0f, 11.25f) - lineTo(16.0f, 6.73f) - curveToRelative(0.0f, -0.4f, -0.34f, -0.73f, -0.75f, -0.73f) - arcToRelative(0.74f, 0.74f, 0.0f, false, false, -0.75f, 0.73f) - verticalLineToRelative(4.82f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 13.0f, 14.0f) - verticalLineToRelative(0.05f) - curveToRelative(-0.48f, 0.1f, -0.92f, 0.34f, -1.26f, 0.67f) - lineToRelative(-0.03f, -3.0f) - arcToRelative(0.73f, 0.73f, 0.0f, false, false, -1.46f, 0.01f) - lineToRelative(0.04f, 3.55f) - curveToRelative(0.0f, 0.4f, 0.33f, 0.72f, 0.73f, 0.72f) - horizontalLineToRelative(0.03f) - curveToRelative(-0.03f, 0.16f, -0.05f, 0.33f, -0.05f, 0.5f) - lineTo(11.0f, 20.0f) - lineTo(4.75f, 20.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) - lineTo(2.0f, 4.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 2.0f) - horizontalLineToRelative(12.5f) - close() - moveTo(6.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-6.5f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 6.75f, 8.0f) - close() - moveTo(14.0f, 15.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - lineTo(12.0f, 18.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(16.0f, 18.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(20.5f, 18.0f) - lineTo(23.0f, 18.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(21.0f, 15.0f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(1.0f) - close() - moveTo(15.5f, 14.0f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(12.0f, 21.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - lineTo(23.0f, 19.5f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - close() - } - } - return _dataUsageToolbox!! - } - -private var _dataUsageToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataWaterfall.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataWaterfall.kt deleted file mode 100644 index a9372805..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataWaterfall.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DataWaterfall: ImageVector - get() { - if (_dataWaterfall != null) { - return _dataWaterfall!! - } - _dataWaterfall = fluentIcon(name = "Filled.DataWaterfall") { - fluentPath { - moveTo(2.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineTo(4.0f) - verticalLineToRelative(5.75f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(6.25f) - verticalLineToRelative(6.25f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(20.0f) - verticalLineToRelative(-6.25f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineTo(11.5f) - verticalLineTo(5.25f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-6.5f) - close() - } - } - return _dataWaterfall!! - } - -private var _dataWaterfall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataWhisker.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataWhisker.kt deleted file mode 100644 index 9477f42a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DataWhisker.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DataWhisker: ImageVector - get() { - if (_dataWhisker != null) { - return _dataWhisker!! - } - _dataWhisker = fluentIcon(name = "Filled.DataWhisker") { - fluentPath { - moveTo(5.75f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.0f) - lineTo(6.75f, 5.0f) - horizontalLineToRelative(-0.5f) - curveTo(5.01f, 5.0f, 4.0f, 6.0f, 4.0f, 7.25f) - lineTo(4.0f, 11.0f) - horizontalLineToRelative(7.0f) - lineTo(11.0f, 7.25f) - curveTo(11.0f, 6.01f, 10.0f, 5.0f, 8.75f, 5.0f) - horizontalLineToRelative(-0.5f) - lineTo(8.25f, 3.5f) - horizontalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - close() - moveTo(5.75f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(0.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(11.0f, 12.5f) - lineTo(4.0f, 12.5f) - verticalLineToRelative(1.75f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(0.5f) - lineTo(6.75f, 18.0f) - horizontalLineToRelative(-1.0f) - close() - moveTo(14.0f, 4.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.0f) - lineTo(17.25f, 7.0f) - horizontalLineToRelative(0.5f) - curveTo(18.99f, 7.0f, 20.0f, 8.0f, 20.0f, 9.25f) - lineTo(20.0f, 11.0f) - horizontalLineToRelative(-7.0f) - lineTo(13.0f, 9.25f) - curveTo(13.0f, 8.01f, 14.0f, 7.0f, 15.25f, 7.0f) - horizontalLineToRelative(0.5f) - lineTo(15.75f, 5.5f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(13.0f, 16.25f) - lineTo(13.0f, 12.5f) - horizontalLineToRelative(7.0f) - verticalLineToRelative(3.75f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-0.5f) - lineTo(17.25f, 20.0f) - horizontalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(-0.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - close() - } - } - return _dataWhisker!! - } - -private var _dataWhisker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Database.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Database.kt deleted file mode 100644 index b4be8a34..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Database.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Database: ImageVector - get() { - if (_database != null) { - return _database!! - } - _database = fluentIcon(name = "Filled.Database") { - fluentPath { - moveTo(12.0f, 10.0f) - curveToRelative(4.42f, 0.0f, 8.0f, -1.8f, 8.0f, -4.0f) - reflectiveCurveToRelative(-3.58f, -4.0f, -8.0f, -4.0f) - reflectiveCurveToRelative(-8.0f, 1.8f, -8.0f, 4.0f) - reflectiveCurveToRelative(3.58f, 4.0f, 8.0f, 4.0f) - close() - moveTo(18.33f, 10.17f) - curveToRelative(0.59f, -0.3f, 1.17f, -0.67f, 1.67f, -1.12f) - lineTo(20.0f, 18.0f) - curveToRelative(0.0f, 2.2f, -3.58f, 4.0f, -8.0f, 4.0f) - reflectiveCurveToRelative(-8.0f, -1.8f, -8.0f, -4.0f) - lineTo(4.0f, 9.05f) - curveToRelative(0.5f, 0.45f, 1.08f, 0.83f, 1.67f, 1.12f) - curveToRelative(1.7f, 0.85f, 3.94f, 1.33f, 6.33f, 1.33f) - curveToRelative(2.4f, 0.0f, 4.63f, -0.48f, 6.33f, -1.33f) - close() - } - } - return _database!! - } - -private var _database: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DatabaseArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DatabaseArrowRight.kt deleted file mode 100644 index 640dee25..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DatabaseArrowRight.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DatabaseArrowRight: ImageVector - get() { - if (_databaseArrowRight != null) { - return _databaseArrowRight!! - } - _databaseArrowRight = fluentIcon(name = "Filled.DatabaseArrowRight") { - fluentPath { - moveTo(12.0f, 10.0f) - curveToRelative(4.42f, 0.0f, 8.0f, -1.8f, 8.0f, -4.0f) - reflectiveCurveToRelative(-3.58f, -4.0f, -8.0f, -4.0f) - reflectiveCurveToRelative(-8.0f, 1.8f, -8.0f, 4.0f) - reflectiveCurveToRelative(3.58f, 4.0f, 8.0f, 4.0f) - close() - moveTo(18.33f, 10.17f) - curveToRelative(0.59f, -0.3f, 1.17f, -0.67f, 1.67f, -1.12f) - verticalLineToRelative(2.45f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -7.2f, 10.48f) - lineTo(12.0f, 22.0f) - curveToRelative(-4.42f, 0.0f, -8.0f, -1.8f, -8.0f, -4.0f) - lineTo(4.0f, 9.05f) - curveToRelative(0.5f, 0.45f, 1.08f, 0.83f, 1.67f, 1.12f) - curveToRelative(1.7f, 0.85f, 3.94f, 1.33f, 6.33f, 1.33f) - curveToRelative(2.4f, 0.0f, 4.63f, -0.48f, 6.33f, -1.33f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(14.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(19.29f, 17.0f) - lineTo(14.5f, 17.0f) - close() - } - } - return _databaseArrowRight!! - } - -private var _databaseArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DatabaseLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DatabaseLink.kt deleted file mode 100644 index ed9c8f31..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DatabaseLink.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DatabaseLink: ImageVector - get() { - if (_databaseLink != null) { - return _databaseLink!! - } - _databaseLink = fluentIcon(name = "Filled.DatabaseLink") { - fluentPath { - moveTo(12.0f, 10.0f) - curveToRelative(4.42f, 0.0f, 8.0f, -1.8f, 8.0f, -4.0f) - reflectiveCurveToRelative(-3.58f, -4.0f, -8.0f, -4.0f) - reflectiveCurveToRelative(-8.0f, 1.8f, -8.0f, 4.0f) - reflectiveCurveToRelative(3.58f, 4.0f, 8.0f, 4.0f) - close() - moveTo(18.33f, 10.17f) - curveToRelative(0.59f, -0.3f, 1.17f, -0.67f, 1.67f, -1.12f) - verticalLineToRelative(4.0f) - curveToRelative(-0.24f, -0.03f, -0.5f, -0.05f, -0.75f, -0.05f) - horizontalLineToRelative(-3.5f) - arcToRelative(4.75f, 4.75f, 0.0f, false, false, -2.26f, 8.93f) - curveToRelative(-0.48f, 0.05f, -0.98f, 0.07f, -1.49f, 0.07f) - curveToRelative(-4.42f, 0.0f, -8.0f, -1.8f, -8.0f, -4.0f) - lineTo(4.0f, 9.05f) - curveToRelative(0.5f, 0.45f, 1.08f, 0.83f, 1.67f, 1.12f) - curveToRelative(1.7f, 0.85f, 3.94f, 1.33f, 6.33f, 1.33f) - curveToRelative(2.4f, 0.0f, 4.63f, -0.48f, 6.33f, -1.33f) - close() - moveTo(23.0f, 17.75f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 19.25f, 14.0f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - verticalLineToRelative(-0.01f) - horizontalLineToRelative(0.2f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 17.74f) - close() - moveTo(16.5f, 14.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-0.2f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(20.0f, 17.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - } - } - return _databaseLink!! - } - -private var _databaseLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DatabasePerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DatabasePerson.kt deleted file mode 100644 index 34cb2ce8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DatabasePerson.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DatabasePerson: ImageVector - get() { - if (_databasePerson != null) { - return _databasePerson!! - } - _databasePerson = fluentIcon(name = "Filled.DatabasePerson") { - fluentPath { - moveTo(20.0f, 6.5f) - curveToRelative(0.0f, 2.2f, -3.58f, 4.0f, -8.0f, 4.0f) - reflectiveCurveToRelative(-8.0f, -1.8f, -8.0f, -4.0f) - reflectiveCurveToRelative(3.58f, -4.0f, 8.0f, -4.0f) - reflectiveCurveToRelative(8.0f, 1.8f, 8.0f, 4.0f) - close() - moveTo(17.77f, 10.93f) - arcTo(15.0f, 15.0f, 0.0f, false, true, 12.0f, 12.0f) - curveToRelative(-2.4f, 0.0f, -4.63f, -0.48f, -6.33f, -1.33f) - arcTo(7.61f, 7.61f, 0.0f, false, true, 4.0f, 9.55f) - verticalLineToRelative(8.95f) - curveToRelative(0.0f, 2.2f, 3.58f, 4.0f, 8.0f, 4.0f) - curveToRelative(0.55f, 0.0f, 1.09f, -0.03f, 1.61f, -0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, false, true, -0.61f, -2.05f) - verticalLineToRelative(-0.1f) - arcToRelative(2.77f, 2.77f, 0.0f, false, true, 2.77f, -2.77f) - horizontalLineToRelative(0.28f) - arcToRelative(3.49f, 3.49f, 0.0f, false, true, 0.88f, -5.63f) - curveToRelative(0.4f, -0.2f, 0.73f, -0.52f, 0.84f, -0.94f) - close() - moveTo(21.0f, 15.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(23.0f, 20.38f) - curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) - reflectiveCurveTo(14.0f, 21.94f, 14.0f, 20.37f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _databasePerson!! - } - -private var _databasePerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DatabaseSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DatabaseSearch.kt deleted file mode 100644 index 7b4b264a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DatabaseSearch.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DatabaseSearch: ImageVector - get() { - if (_databaseSearch != null) { - return _databaseSearch!! - } - _databaseSearch = fluentIcon(name = "Filled.DatabaseSearch") { - fluentPath { - moveTo(12.0f, 10.0f) - curveToRelative(4.42f, 0.0f, 8.0f, -1.8f, 8.0f, -4.0f) - reflectiveCurveToRelative(-3.58f, -4.0f, -8.0f, -4.0f) - reflectiveCurveToRelative(-8.0f, 1.8f, -8.0f, 4.0f) - reflectiveCurveToRelative(3.58f, 4.0f, 8.0f, 4.0f) - close() - moveTo(18.33f, 10.17f) - curveToRelative(0.59f, -0.3f, 1.17f, -0.67f, 1.67f, -1.12f) - verticalLineToRelative(3.2f) - arcToRelative(5.48f, 5.48f, 0.0f, false, false, -4.02f, -1.23f) - curveToRelative(0.86f, -0.21f, 1.65f, -0.5f, 2.35f, -0.85f) - close() - moveTo(11.0f, 16.5f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 3.83f, 5.24f) - curveToRelative(-0.88f, 0.17f, -1.83f, 0.26f, -2.83f, 0.26f) - curveToRelative(-4.42f, 0.0f, -8.0f, -1.8f, -8.0f, -4.0f) - lineTo(4.0f, 9.05f) - curveToRelative(0.5f, 0.45f, 1.08f, 0.83f, 1.67f, 1.12f) - curveToRelative(1.7f, 0.85f, 3.94f, 1.33f, 6.33f, 1.33f) - curveToRelative(0.96f, 0.0f, 1.9f, -0.08f, 2.78f, -0.22f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 11.0f, 16.5f) - close() - moveTo(16.5f, 21.0f) - curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) - lineToRelative(2.62f, 2.61f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.61f, -2.61f) - arcTo(4.5f, 4.5f, 0.0f, true, false, 16.5f, 21.0f) - close() - moveTo(16.5f, 19.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) - close() - } - } - return _databaseSearch!! - } - -private var _databaseSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DecimalArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DecimalArrowLeft.kt deleted file mode 100644 index 14890c7c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DecimalArrowLeft.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DecimalArrowLeft: ImageVector - get() { - if (_decimalArrowLeft != null) { - return _decimalArrowLeft!! - } - _decimalArrowLeft = fluentIcon(name = "Filled.DecimalArrowLeft") { - fluentPath { - moveTo(10.0f, 4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 6.0f, 0.0f) - lineTo(13.0f, 7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - close() - moveTo(11.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(9.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - verticalLineToRelative(4.0f) - close() - moveTo(5.0f, 12.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - moveTo(19.0f, 7.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.01f, 0.17f) - curveToRelative(0.66f, 0.16f, 1.3f, 0.42f, 1.86f, 0.76f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 21.0f, 11.0f) - lineTo(21.0f, 7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, -6.0f, 0.0f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.16f, 0.01f, 0.33f, 0.04f, 0.48f) - arcToRelative(6.47f, 6.47f, 0.0f, false, true, 1.96f, -0.46f) - lineTo(17.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.5f, 18.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - horizontalLineToRelative(-4.8f) - lineToRelative(1.65f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineTo(15.71f, 18.0f) - horizontalLineToRelative(4.79f) - close() - } - } - return _decimalArrowLeft!! - } - -private var _decimalArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DecimalArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DecimalArrowRight.kt deleted file mode 100644 index b974a87e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DecimalArrowRight.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DecimalArrowRight: ImageVector - get() { - if (_decimalArrowRight != null) { - return _decimalArrowRight!! - } - _decimalArrowRight = fluentIcon(name = "Filled.DecimalArrowRight") { - fluentPath { - moveTo(10.0f, 4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 6.0f, 0.0f) - lineTo(13.0f, 7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - close() - moveTo(11.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(9.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - verticalLineToRelative(4.0f) - close() - moveTo(5.0f, 12.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - moveTo(19.0f, 7.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.01f, 0.17f) - curveToRelative(0.66f, 0.16f, 1.3f, 0.42f, 1.86f, 0.76f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 21.0f, 11.0f) - lineTo(21.0f, 7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, -6.0f, 0.0f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.16f, 0.01f, 0.33f, 0.04f, 0.48f) - arcToRelative(6.47f, 6.47f, 0.0f, false, true, 1.96f, -0.46f) - lineTo(17.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(19.29f, 17.0f) - lineTo(14.5f, 17.0f) - close() - } - } - return _decimalArrowRight!! - } - -private var _decimalArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DeleteDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DeleteDismiss.kt deleted file mode 100644 index ebc18115..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DeleteDismiss.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DeleteDismiss: ImageVector - get() { - if (_deleteDismiss != null) { - return _deleteDismiss!! - } - _deleteDismiss = fluentIcon(name = "Filled.DeleteDismiss") { - fluentPath { - moveTo(14.0f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, -4.0f, 0.0f) - horizontalLineToRelative(4.0f) - close() - moveTo(8.5f, 5.0f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 7.0f, 0.0f) - horizontalLineToRelative(5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.32f) - lineToRelative(-0.5f, 5.2f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 11.8f, 22.0f) - lineTo(8.97f, 22.0f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.73f, -3.39f) - lineTo(4.07f, 6.5f) - lineTo(2.75f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(8.5f, 5.0f) - close() - moveTo(22.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-1.64f, -1.65f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.65f, 1.64f) - lineToRelative(-1.65f, -1.64f) - close() - } - } - return _deleteDismiss!! - } - -private var _deleteDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DeleteOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DeleteOff.kt deleted file mode 100644 index 4fa4de62..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DeleteOff.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DeleteOff: ImageVector - get() { - if (_deleteOff != null) { - return _deleteOff!! - } - _deleteOff = fluentIcon(name = "Filled.DeleteOff") { - fluentPath { - moveTo(3.94f, 5.0f) - lineTo(2.22f, 3.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(18.5f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineToRelative(-2.2f, -2.19f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.5f, 2.41f) - lineTo(8.98f, 22.0f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.73f, -3.39f) - lineTo(4.07f, 6.5f) - lineTo(2.75f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.19f) - close() - moveTo(15.0f, 16.06f) - lineToRelative(-1.5f, -1.5f) - verticalLineToRelative(2.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.19f) - close() - moveTo(10.5f, 11.56f) - lineTo(9.0f, 10.06f) - verticalLineToRelative(7.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-5.69f) - close() - moveTo(15.0f, 9.75f) - verticalLineToRelative(2.07f) - lineToRelative(4.03f, 4.03f) - lineToRelative(0.9f, -9.35f) - horizontalLineToRelative(1.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(15.5f, 5.0f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, -7.0f, 0.0f) - horizontalLineToRelative(-0.32f) - lineToRelative(5.32f, 5.32f) - verticalLineToRelative(-0.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(14.0f, 5.0f) - horizontalLineToRelative(-4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) - close() - } - } - return _deleteOff!! - } - -private var _deleteOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Dentist.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Dentist.kt deleted file mode 100644 index e35518bf..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Dentist.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Dentist: ImageVector - get() { - if (_dentist != null) { - return _dentist!! - } - _dentist = fluentIcon(name = "Filled.Dentist") { - fluentPath { - moveTo(4.35f, 4.39f) - curveToRelative(1.0f, -0.84f, 2.3f, -1.39f, 3.4f, -1.39f) - curveToRelative(0.87f, 0.0f, 1.55f, 0.14f, 2.1f, 0.37f) - curveToRelative(0.57f, 0.23f, 0.96f, 0.55f, 1.26f, 0.84f) - lineToRelative(0.35f, 0.37f) - lineToRelative(0.03f, 0.03f) - curveToRelative(0.1f, 0.12f, 0.19f, 0.2f, 0.26f, 0.27f) - curveToRelative(0.12f, 0.1f, 0.18f, 0.12f, 0.25f, 0.12f) - reflectiveCurveToRelative(0.13f, -0.01f, 0.25f, -0.12f) - lineToRelative(0.26f, -0.27f) - lineToRelative(0.03f, -0.03f) - lineToRelative(0.35f, -0.37f) - curveToRelative(0.3f, -0.3f, 0.7f, -0.6f, 1.25f, -0.84f) - arcTo(5.4f, 5.4f, 0.0f, false, true, 16.25f, 3.0f) - curveToRelative(1.1f, 0.0f, 2.4f, 0.55f, 3.4f, 1.39f) - curveToRelative(1.0f, 0.84f, 1.85f, 2.08f, 1.85f, 3.56f) - curveToRelative(0.0f, 0.78f, 0.0f, 2.3f, -1.37f, 3.94f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -0.63f, 1.86f) - arcToRelative(10.02f, 10.02f, 0.0f, false, true, -1.08f, 4.73f) - curveToRelative(-0.62f, 1.12f, -1.56f, 2.02f, -2.67f, 2.02f) - curveToRelative(-0.36f, 0.0f, -0.7f, -0.1f, -0.98f, -0.31f) - arcToRelative(1.9f, 1.9f, 0.0f, false, true, -0.58f, -0.74f) - arcToRelative(6.13f, 6.13f, 0.0f, false, true, -0.41f, -1.8f) - lineToRelative(-0.09f, -0.8f) - curveToRelative(-0.11f, -1.11f, -0.23f, -2.26f, -0.63f, -3.3f) - curveToRelative(-0.18f, -0.35f, -0.5f, -0.55f, -0.81f, -0.55f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.31f, 0.0f, -0.64f, 0.2f, -0.83f, 0.58f) - arcToRelative(9.08f, 9.08f, 0.0f, false, false, -0.67f, 3.56f) - lineToRelative(-0.03f, 0.47f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, -0.33f, 1.83f) - curveToRelative(-0.13f, 0.28f, -0.32f, 0.56f, -0.62f, 0.77f) - curveToRelative(-0.3f, 0.2f, -0.65f, 0.29f, -1.02f, 0.29f) - curveToRelative(-1.24f, 0.0f, -2.19f, -0.87f, -2.79f, -2.04f) - arcToRelative(10.6f, 10.6f, 0.0f, false, true, -0.96f, -4.7f) - arcToRelative(3.62f, 3.62f, 0.0f, false, false, -0.79f, -2.05f) - curveTo(2.5f, 10.27f, 2.5f, 8.68f, 2.5f, 7.97f) - verticalLineToRelative(-0.02f) - curveToRelative(0.0f, -1.48f, 0.85f, -2.72f, 1.85f, -3.56f) - close() - moveTo(15.75f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - curveToRelative(0.71f, 0.0f, 1.25f, 0.54f, 1.25f, 1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - curveTo(18.5f, 7.21f, 17.3f, 6.0f, 15.75f, 6.0f) - close() - } - } - return _dentist!! - } - -private var _dentist: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesignIdeas.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesignIdeas.kt deleted file mode 100644 index 7ae4d78d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesignIdeas.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DesignIdeas: ImageVector - get() { - if (_designIdeas != null) { - return _designIdeas!! - } - _designIdeas = fluentIcon(name = "Filled.DesignIdeas") { - fluentPath { - moveTo(5.57f, 2.07f) - curveToRelative(0.26f, 0.13f, 0.43f, 0.4f, 0.43f, 0.68f) - curveToRelative(0.0f, 0.83f, 0.31f, 1.3f, 0.7f, 1.89f) - lineToRelative(0.03f, 0.04f) - curveToRelative(0.33f, 0.5f, 0.77f, 1.14f, 0.77f, 2.07f) - curveToRelative(0.0f, 0.95f, -0.48f, 1.78f, -1.2f, 2.27f) - curveToRelative(0.19f, 0.16f, 0.36f, 0.36f, 0.5f, 0.6f) - curveToRelative(0.48f, 0.77f, 0.7f, 1.94f, 0.7f, 3.63f) - curveToRelative(0.0f, 1.72f, -0.23f, 3.77f, -0.6f, 5.41f) - curveToRelative(-0.2f, 0.82f, -0.42f, 1.57f, -0.7f, 2.14f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.5f, 0.77f) - curveToRelative(-0.21f, 0.21f, -0.53f, 0.43f, -0.95f, 0.43f) - curveToRelative(-0.42f, 0.0f, -0.74f, -0.22f, -0.94f, -0.43f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.51f, -0.77f) - curveToRelative(-0.28f, -0.57f, -0.5f, -1.32f, -0.7f, -2.14f) - curveToRelative(-0.37f, -1.64f, -0.6f, -3.7f, -0.6f, -5.4f) - curveToRelative(0.0f, -1.7f, 0.22f, -2.87f, 0.7f, -3.64f) - curveToRelative(0.14f, -0.24f, 0.31f, -0.44f, 0.5f, -0.6f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 6.75f) - curveToRelative(0.0f, -0.37f, 0.0f, -1.0f, 0.38f, -1.82f) - arcToRelative(8.1f, 8.1f, 0.0f, false, true, 2.4f, -2.77f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.8f, -0.09f) - close() - moveTo(10.0f, 14.92f) - arcToRelative(5.96f, 5.96f, 0.0f, false, true, -1.53f, -0.48f) - arcToRelative(23.1f, 23.1f, 0.0f, false, false, 0.0f, -2.35f) - curveToRelative(0.43f, 0.37f, 0.96f, 0.64f, 1.53f, 0.78f) - lineTo(10.0f, 10.5f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - lineTo(15.0f, 9.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.58f, -3.05f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, -0.84f, -1.8f) - lineToRelative(-0.04f, -0.05f) - arcTo(6.0f, 6.0f, 0.0f, false, true, 17.0f, 9.0f) - horizontalLineToRelative(3.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-9.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - verticalLineToRelative(-4.58f) - close() - moveTo(12.0f, 14.92f) - lineTo(12.0f, 19.0f) - horizontalLineToRelative(8.0f) - verticalLineToRelative(-8.0f) - horizontalLineToRelative(-3.34f) - arcTo(6.0f, 6.0f, 0.0f, false, true, 12.0f, 14.92f) - close() - moveTo(14.46f, 11.0f) - lineTo(12.0f, 11.0f) - verticalLineToRelative(1.87f) - arcTo(4.0f, 4.0f, 0.0f, false, false, 14.46f, 11.0f) - close() - } - } - return _designIdeas!! - } - -private var _designIdeas: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Desktop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Desktop.kt deleted file mode 100644 index 68f59f49..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Desktop.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Desktop: ImageVector - get() { - if (_desktop != null) { - return _desktop!! - } - _desktop = fluentIcon(name = "Filled.Desktop") { - fluentPath { - moveTo(6.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineTo(8.5f) - verticalLineTo(18.0f) - horizontalLineTo(4.25f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) - lineTo(2.0f, 15.76f) - verticalLineTo(5.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 3.0f) - horizontalLineToRelative(15.5f) - curveToRelative(1.19f, 0.0f, 2.16f, 0.93f, 2.24f, 2.1f) - verticalLineToRelative(10.65f) - curveToRelative(0.0f, 1.2f, -0.92f, 2.17f, -2.09f, 2.25f) - horizontalLineToRelative(-4.4f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineTo(6.75f) - close() - moveTo(14.0f, 18.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(4.0f) - verticalLineTo(18.0f) - close() - } - } - return _desktop!! - } - -private var _desktop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopArrowRight.kt deleted file mode 100644 index 72ae0ff3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopArrowRight.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DesktopArrowRight: ImageVector - get() { - if (_desktopArrowRight != null) { - return _desktopArrowRight!! - } - _desktopArrowRight = fluentIcon(name = "Filled.DesktopArrowRight") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.5f, 6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(19.29f, 6.0f) - lineTo(14.5f, 6.0f) - close() - moveTo(17.5f, 13.0f) - curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.8f) - verticalLineToRelative(4.55f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.25f) - horizontalLineToRelative(-4.4f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(8.5f, 20.5f) - lineTo(8.5f, 18.0f) - lineTo(4.25f, 18.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) - lineTo(2.0f, 15.76f) - lineTo(2.0f, 5.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.25f) - horizontalLineToRelative(7.92f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, 5.48f, 10.0f) - close() - moveTo(14.0f, 18.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(4.0f) - lineTo(14.0f, 18.0f) - close() - } - } - return _desktopArrowRight!! - } - -private var _desktopArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopCheckmark.kt deleted file mode 100644 index 3b586e49..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopCheckmark.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DesktopCheckmark: ImageVector - get() { - if (_desktopCheckmark != null) { - return _desktopCheckmark!! - } - _desktopCheckmark = fluentIcon(name = "Filled.DesktopCheckmark") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.85f, 4.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineTo(16.5f, 7.79f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - moveTo(17.5f, 13.0f) - curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.8f) - verticalLineToRelative(4.55f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.25f) - horizontalLineToRelative(-4.4f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(8.5f, 20.5f) - lineTo(8.5f, 18.0f) - lineTo(4.25f, 18.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) - lineTo(2.0f, 15.76f) - lineTo(2.0f, 5.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.25f) - horizontalLineToRelative(7.92f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, 5.48f, 10.0f) - close() - moveTo(14.0f, 18.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(4.0f) - lineTo(14.0f, 18.0f) - close() - } - } - return _desktopCheckmark!! - } - -private var _desktopCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopCursor.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopCursor.kt deleted file mode 100644 index 91190d7d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopCursor.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DesktopCursor: ImageVector - get() { - if (_desktopCursor != null) { - return _desktopCursor!! - } - _desktopCursor = fluentIcon(name = "Filled.DesktopCursor") { - fluentPath { - moveTo(6.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(8.5f, 20.5f) - lineTo(8.5f, 18.0f) - lineTo(4.25f, 18.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) - lineTo(2.0f, 15.76f) - lineTo(2.0f, 5.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 3.0f) - horizontalLineToRelative(15.5f) - curveToRelative(1.19f, 0.0f, 2.16f, 0.93f, 2.24f, 2.1f) - verticalLineToRelative(10.65f) - curveToRelative(0.0f, 0.37f, -0.08f, 0.72f, -0.24f, 1.03f) - lineToRelative(-4.7f, -5.2f) - arcTo(1.75f, 1.75f, 0.0f, false, false, 14.0f, 12.75f) - lineTo(14.0f, 18.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(4.0f) - lineTo(14.0f, 22.0f) - lineTo(6.75f, 22.0f) - close() - moveTo(15.49f, 12.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.82f, 0.2f) - lineToRelative(6.37f, 7.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 1.23f) - lineToRelative(-3.54f, -0.88f) - lineToRelative(-2.03f, 3.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.37f, -0.42f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.31f, 0.2f, -0.59f, 0.49f, -0.7f) - close() - } - } - return _desktopCursor!! - } - -private var _desktopCursor: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopEdit.kt deleted file mode 100644 index ec736bb0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopEdit.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DesktopEdit: ImageVector - get() { - if (_desktopEdit != null) { - return _desktopEdit!! - } - _desktopEdit = fluentIcon(name = "Filled.DesktopEdit") { - fluentPath { - moveToRelative(19.1f, 1.67f) - lineToRelative(-5.9f, 5.9f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - moveTo(12.49f, 6.87f) - lineTo(16.36f, 3.0f) - lineTo(4.1f, 3.0f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 5.25f) - verticalLineToRelative(10.66f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 18.0f) - lineTo(8.5f, 18.0f) - verticalLineToRelative(2.49f) - lineTo(6.65f, 20.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(10.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - lineTo(15.5f, 20.49f) - lineTo(15.5f, 18.0f) - horizontalLineToRelative(4.4f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.1f, -2.25f) - verticalLineToRelative(-9.1f) - lineToRelative(-4.86f, 4.86f) - curveToRelative(-0.48f, 0.47f, -1.07f, 0.8f, -1.72f, 0.97f) - lineToRelative(-1.83f, 0.46f) - curveToRelative(-1.52f, 0.38f, -2.9f, -1.0f, -2.53f, -2.53f) - lineToRelative(0.46f, -1.83f) - curveToRelative(0.16f, -0.65f, 0.5f, -1.24f, 0.97f, -1.72f) - close() - moveTo(13.99f, 18.0f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(-4.0f) - lineTo(9.99f, 18.0f) - horizontalLineToRelative(4.0f) - close() - } - } - return _desktopEdit!! - } - -private var _desktopEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopFlow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopFlow.kt deleted file mode 100644 index ba36fe2a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopFlow.kt +++ /dev/null @@ -1,91 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DesktopFlow: ImageVector - get() { - if (_desktopFlow != null) { - return _desktopFlow!! - } - _desktopFlow = fluentIcon(name = "Filled.DesktopFlow") { - fluentPath { - moveTo(16.5f, 3.75f) - curveToRelative(0.0f, -0.27f, 0.06f, -0.52f, 0.17f, -0.75f) - lineTo(4.1f, 3.0f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 5.26f) - verticalLineToRelative(10.66f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 18.0f) - lineTo(8.5f, 18.0f) - verticalLineToRelative(2.49f) - lineTo(6.65f, 20.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(10.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - lineTo(15.5f, 20.49f) - lineTo(15.5f, 18.0f) - horizontalLineToRelative(4.4f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.1f, -2.25f) - lineTo(22.0f, 9.5f) - horizontalLineToRelative(-3.75f) - curveToRelative(-0.42f, 0.0f, -0.8f, -0.15f, -1.1f, -0.4f) - lineToRelative(-0.45f, 1.32f) - curveToRelative(-0.4f, 1.19f, -1.47f, 2.0f, -2.7f, 2.08f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-4.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(4.0f) - curveToRelative(0.62f, 0.0f, 1.16f, 0.32f, 1.47f, 0.8f) - lineToRelative(0.58f, -1.72f) - arcToRelative(3.04f, 3.04f, 0.0f, false, true, 2.2f, -2.0f) - verticalLineToRelative(-0.83f) - close() - moveTo(14.0f, 18.0f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(-4.0f) - lineTo(10.0f, 18.0f) - horizontalLineToRelative(4.0f) - close() - moveTo(18.25f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(17.5f, 5.5f) - horizontalLineToRelative(-0.32f) - curveToRelative(-0.88f, 0.0f, -1.66f, 0.56f, -1.93f, 1.4f) - lineToRelative(-0.92f, 2.73f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, -0.5f, 0.37f) - lineTo(13.0f, 10.0f) - verticalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(13.0f, 11.5f) - horizontalLineToRelative(0.82f) - curveToRelative(0.88f, 0.0f, 1.66f, -0.56f, 1.93f, -1.4f) - lineToRelative(0.92f, -2.73f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.5f, -0.37f) - horizontalLineToRelative(0.33f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-4.0f) - close() - } - } - return _desktopFlow!! - } - -private var _desktopFlow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopKeyboard.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopKeyboard.kt deleted file mode 100644 index a74108ac..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopKeyboard.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DesktopKeyboard: ImageVector - get() { - if (_desktopKeyboard != null) { - return _desktopKeyboard!! - } - _desktopKeyboard = fluentIcon(name = "Filled.DesktopKeyboard") { - fluentPath { - moveTo(6.72f, 22.0f) - horizontalLineToRelative(2.53f) - curveToRelative(-0.16f, -0.38f, -0.25f, -0.8f, -0.25f, -1.25f) - verticalLineToRelative(-5.5f) - curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) - horizontalLineToRelative(8.5f) - curveToRelative(0.44f, 0.0f, 0.86f, 0.09f, 1.25f, 0.25f) - lineTo(22.0f, 5.1f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 19.74f, 3.0f) - lineTo(4.1f, 3.0f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 5.26f) - verticalLineToRelative(10.66f) - curveToRelative(0.08f, 1.13f, 1.0f, 2.04f, 2.15f, 2.09f) - lineTo(4.0f, 18.01f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(2.5f) - lineTo(5.65f, 20.51f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.07f, 1.5f) - horizontalLineToRelative(1.0f) - close() - moveTo(10.0f, 15.25f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(8.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(5.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-8.5f) - curveTo(11.01f, 23.0f, 10.0f, 22.0f, 10.0f, 20.75f) - verticalLineToRelative(-5.5f) - close() - moveTo(14.0f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - close() - moveTo(17.5f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - close() - moveTo(20.0f, 16.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(19.25f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - close() - moveTo(15.0f, 18.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(13.0f, 20.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - } - } - return _desktopKeyboard!! - } - -private var _desktopKeyboard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopMac.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopMac.kt deleted file mode 100644 index 37b81f22..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopMac.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DesktopMac: ImageVector - get() { - if (_desktopMac != null) { - return _desktopMac!! - } - _desktopMac = fluentIcon(name = "Filled.DesktopMac") { - fluentPath { - moveTo(4.25f, 3.0f) - curveTo(3.01f, 3.0f, 2.0f, 4.0f, 2.0f, 5.25f) - verticalLineToRelative(10.5f) - curveTo(2.0f, 16.99f, 3.0f, 18.0f, 4.25f, 18.0f) - lineTo(9.5f, 18.0f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - lineTo(14.5f, 18.0f) - horizontalLineToRelative(5.25f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(22.0f, 5.25f) - curveTo(22.0f, 4.01f, 21.0f, 3.0f, 19.75f, 3.0f) - lineTo(4.25f, 3.0f) - close() - moveTo(13.0f, 18.0f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.45f, 0.1f, 0.88f, 0.3f, 1.25f) - horizontalLineToRelative(-2.6f) - curveToRelative(0.2f, -0.38f, 0.3f, -0.8f, 0.3f, -1.25f) - lineTo(11.0f, 18.0f) - horizontalLineToRelative(2.0f) - close() - moveTo(3.5f, 14.5f) - horizontalLineToRelative(17.0f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(4.25f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(3.5f, 14.5f) - close() - } - } - return _desktopMac!! - } - -private var _desktopMac: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopPulse.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopPulse.kt deleted file mode 100644 index 482b2bb7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopPulse.kt +++ /dev/null @@ -1,91 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DesktopPulse: ImageVector - get() { - if (_desktopPulse != null) { - return _desktopPulse!! - } - _desktopPulse = fluentIcon(name = "Filled.DesktopPulse") { - fluentPath { - moveTo(6.0f, 21.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(10.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineTo(15.5f) - verticalLineTo(18.0f) - horizontalLineToRelative(4.4f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.1f, -2.25f) - verticalLineTo(13.0f) - horizontalLineToRelative(-5.0f) - curveToRelative(-0.57f, 0.0f, -1.1f, -0.28f, -1.43f, -0.75f) - lineToRelative(-0.2f, -0.27f) - lineToRelative(-1.86f, 3.16f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -3.13f, -0.24f) - lineTo(8.9f, 11.23f) - lineToRelative(-0.33f, 0.74f) - curveToRelative(-0.29f, 0.63f, -0.91f, 1.03f, -1.6f, 1.03f) - horizontalLineTo(2.0f) - verticalLineToRelative(2.91f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 18.0f) - horizontalLineTo(8.5f) - verticalLineToRelative(2.49f) - horizontalLineTo(6.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - close() - moveTo(10.0f, 18.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(-4.0f) - verticalLineTo(18.0f) - close() - moveTo(22.0f, 5.25f) - verticalLineTo(9.5f) - horizontalLineTo(17.9f) - lineToRelative(-1.23f, -1.75f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.94f, 0.11f) - lineTo(12.3f, 10.3f) - lineToRelative(-1.68f, -4.2f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -3.22f, -0.07f) - lineTo(5.85f, 9.5f) - horizontalLineTo(2.0f) - verticalLineTo(5.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 3.0f) - horizontalLineToRelative(15.5f) - curveToRelative(1.19f, 0.0f, 2.16f, 0.93f, 2.24f, 2.1f) - verticalLineToRelative(0.15f) - close() - moveTo(9.7f, 6.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.38f, -0.03f) - lineTo(6.49f, 10.5f) - horizontalLineTo(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.23f) - curveToRelative(0.3f, 0.0f, 0.56f, -0.17f, 0.68f, -0.44f) - lineToRelative(1.3f, -2.89f) - lineToRelative(2.34f, 5.86f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.35f, 0.1f) - lineToRelative(2.65f, -4.5f) - lineToRelative(1.09f, 1.55f) - curveToRelative(0.14f, 0.2f, 0.37f, 0.32f, 0.61f, 0.32f) - horizontalLineToRelative(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.86f) - lineToRelative(-1.53f, -2.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.26f, 0.05f) - lineToRelative(-2.47f, 4.19f) - lineTo(9.7f, 6.47f) - close() - } - } - return _desktopPulse!! - } - -private var _desktopPulse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopSignal.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopSignal.kt deleted file mode 100644 index 85072a11..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopSignal.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DesktopSignal: ImageVector - get() { - if (_desktopSignal != null) { - return _desktopSignal!! - } - _desktopSignal = fluentIcon(name = "Filled.DesktopSignal") { - fluentPath { - moveTo(15.0f, 1.5f) - curveToRelative(-0.18f, 0.0f, -0.37f, 0.0f, -0.55f, 0.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - curveTo(14.7f, 3.0f, 14.85f, 3.0f, 15.0f, 3.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, 6.99f, 7.45f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.1f) - lineToRelative(0.01f, -0.55f) - curveToRelative(0.0f, -4.7f, -3.8f, -8.5f, -8.5f, -8.5f) - close() - moveTo(15.0f, 4.0f) - curveToRelative(-0.2f, 0.0f, -0.38f, 0.0f, -0.57f, 0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.14f, 1.49f) - lineTo(15.0f, 5.5f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.48f, 4.93f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.14f) - lineTo(21.0f, 10.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, -6.0f, -6.0f) - close() - moveTo(15.0f, 6.5f) - curveToRelative(-0.22f, 0.0f, -0.43f, 0.02f, -0.64f, 0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.28f, 1.47f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.33f, 2.33f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.47f, 0.28f) - arcTo(3.51f, 3.51f, 0.0f, false, false, 15.0f, 6.5f) - close() - moveTo(12.91f, 3.0f) - lineTo(4.1f, 3.0f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 5.26f) - verticalLineToRelative(10.66f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 18.0f) - lineTo(8.5f, 18.0f) - verticalLineToRelative(2.49f) - lineTo(6.65f, 20.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(10.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - lineTo(15.5f, 20.49f) - lineTo(15.5f, 18.0f) - horizontalLineToRelative(4.4f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.1f, -2.25f) - lineTo(22.0f, 12.1f) - curveToRelative(-0.2f, -0.1f, -0.37f, -0.22f, -0.52f, -0.37f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -2.51f, 0.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -2.68f, -0.19f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.82f, -2.82f) - arcToRelative(1.74f, 1.74f, 0.0f, false, true, -0.18f, -2.68f) - arcToRelative(1.74f, 1.74f, 0.0f, false, true, -0.01f, -2.51f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 12.9f, 3.0f) - close() - moveTo(10.0f, 18.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(-4.0f) - lineTo(10.0f, 18.0f) - close() - moveTo(16.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - } - } - return _desktopSignal!! - } - -private var _desktopSignal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopSpeaker.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopSpeaker.kt deleted file mode 100644 index 8271452d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopSpeaker.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DesktopSpeaker: ImageVector - get() { - if (_desktopSpeaker != null) { - return _desktopSpeaker!! - } - _desktopSpeaker = fluentIcon(name = "Filled.DesktopSpeaker") { - fluentPath { - moveTo(6.0f, 21.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(8.93f) - curveToRelative(-0.25f, -0.09f, -0.5f, -0.24f, -0.7f, -0.46f) - lineTo(14.0f, 20.5f) - horizontalLineToRelative(-4.0f) - lineTo(10.0f, 18.0f) - horizontalLineToRelative(1.0f) - verticalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(1.53f) - lineToRelative(1.44f, -1.54f) - arcToRelative(1.76f, 1.76f, 0.0f, false, true, 2.8f, 0.33f) - curveToRelative(0.37f, -0.24f, 0.82f, -0.33f, 1.25f, -0.27f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 2.98f, -1.0f) - lineTo(22.0f, 5.1f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 19.74f, 3.0f) - lineTo(4.1f, 3.0f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 5.26f) - verticalLineToRelative(10.66f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 18.0f) - lineTo(8.5f, 18.0f) - verticalLineToRelative(2.49f) - lineTo(6.65f, 20.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - close() - moveTo(22.14f, 14.3f) - arcToRelative(4.53f, 4.53f, 0.0f, false, false, -0.91f, -1.13f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.96f, 1.16f) - curveToRelative(0.13f, 0.1f, 0.35f, 0.35f, 0.59f, 0.74f) - curveToRelative(0.4f, 0.67f, 0.64f, 1.48f, 0.64f, 2.43f) - curveToRelative(0.0f, 0.95f, -0.24f, 1.76f, -0.64f, 2.43f) - curveToRelative(-0.24f, 0.39f, -0.46f, 0.64f, -0.59f, 0.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.96f, 1.16f) - curveToRelative(0.25f, -0.21f, 0.59f, -0.58f, 0.91f, -1.13f) - curveToRelative(0.54f, -0.9f, 0.86f, -1.96f, 0.86f, -3.2f) - curveToRelative(0.0f, -1.24f, -0.32f, -2.3f, -0.86f, -3.2f) - close() - moveTo(19.87f, 15.4f) - curveToRelative(-0.23f, -0.36f, -0.48f, -0.6f, -0.67f, -0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 1.2f) - arcToRelative(2.24f, 2.24f, 0.0f, false, true, 0.7f, 1.65f) - arcToRelative(2.24f, 2.24f, 0.0f, false, true, -0.7f, 1.65f) - lineToRelative(-0.08f, 0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) - arcToRelative(3.73f, 3.73f, 0.0f, false, false, 1.3f, -2.85f) - curveToRelative(0.0f, -0.81f, -0.23f, -1.52f, -0.63f, -2.1f) - close() - moveTo(17.0f, 14.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.31f, -0.5f) - lineTo(14.16f, 16.0f) - horizontalLineToRelative(-1.41f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(1.41f) - lineToRelative(1.53f, 1.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.31f, -0.49f) - verticalLineToRelative(-5.5f) - close() - moveTo(16.8f, 22.0f) - horizontalLineToRelative(0.45f) - close() - } - } - return _desktopSpeaker!! - } - -private var _desktopSpeaker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopSpeakerOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopSpeakerOff.kt deleted file mode 100644 index 8e32679b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopSpeakerOff.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DesktopSpeakerOff: ImageVector - get() { - if (_desktopSpeakerOff != null) { - return _desktopSpeakerOff!! - } - _desktopSpeakerOff = fluentIcon(name = "Filled.DesktopSpeakerOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(0.4f, 0.4f) - curveTo(2.25f, 4.1f, 2.0f, 4.65f, 2.0f, 5.26f) - verticalLineToRelative(10.66f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 18.0f) - lineTo(8.5f, 18.0f) - verticalLineToRelative(2.49f) - lineTo(6.65f, 20.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(8.93f) - curveToRelative(-0.25f, -0.09f, -0.5f, -0.24f, -0.7f, -0.46f) - lineTo(14.0f, 20.5f) - horizontalLineToRelative(-4.0f) - lineTo(10.0f, 18.0f) - horizontalLineToRelative(1.0f) - verticalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(1.53f) - lineToRelative(0.2f, -0.21f) - lineToRelative(0.8f, 0.8f) - lineToRelative(-0.37f, 0.41f) - horizontalLineToRelative(-1.41f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(1.41f) - lineToRelative(1.53f, 1.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.31f, -0.49f) - verticalLineToRelative(-2.19f) - lineToRelative(3.72f, 3.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(20.5f, 17.32f) - lineTo(18.08f, 14.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.12f, -0.25f) - arcToRelative(3.71f, 3.71f, 0.0f, false, true, 1.3f, 2.66f) - close() - moveTo(22.69f, 19.51f) - lineTo(21.45f, 18.26f) - curveToRelative(0.03f, -0.24f, 0.05f, -0.5f, 0.05f, -0.76f) - curveToRelative(0.0f, -0.95f, -0.24f, -1.76f, -0.64f, -2.43f) - curveToRelative(-0.24f, -0.39f, -0.46f, -0.64f, -0.59f, -0.74f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.96f, -1.16f) - curveToRelative(0.25f, 0.21f, 0.59f, 0.58f, 0.91f, 1.13f) - arcToRelative(6.39f, 6.39f, 0.0f, false, true, 0.55f, 5.2f) - close() - moveTo(16.09f, 12.91f) - lineTo(6.2f, 3.0f) - horizontalLineToRelative(13.56f) - curveToRelative(1.19f, 0.0f, 2.16f, 0.92f, 2.24f, 2.1f) - verticalLineToRelative(7.42f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.98f, 1.0f) - curveToRelative(-0.42f, -0.07f, -0.87f, 0.03f, -1.23f, 0.27f) - arcToRelative(1.78f, 1.78f, 0.0f, false, false, -1.69f, -0.88f) - close() - moveTo(16.8f, 22.0f) - horizontalLineToRelative(0.45f) - close() - } - } - return _desktopSpeakerOff!! - } - -private var _desktopSpeakerOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopSync.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopSync.kt deleted file mode 100644 index 174cd3af..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopSync.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DesktopSync: ImageVector - get() { - if (_desktopSync != null) { - return _desktopSync!! - } - _desktopSync = fluentIcon(name = "Filled.DesktopSync") { - fluentPath { - moveTo(12.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) - close() - moveTo(20.5f, 3.0f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - verticalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.8f, -0.59f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) - verticalLineTo(3.5f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - close() - moveTo(15.0f, 8.95f) - verticalLineToRelative(0.55f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.77f, 0.65f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) - close() - moveTo(17.5f, 13.0f) - curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.8f) - verticalLineToRelative(4.55f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.25f) - horizontalLineToRelative(-4.4f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineTo(6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineTo(8.5f) - verticalLineTo(18.0f) - horizontalLineTo(4.25f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) - lineTo(2.0f, 15.76f) - verticalLineTo(5.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.25f) - horizontalLineToRelative(7.92f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, 5.48f, 10.0f) - close() - moveTo(14.0f, 18.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(4.0f) - verticalLineTo(18.0f) - close() - } - } - return _desktopSync!! - } - -private var _desktopSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopToolbox.kt deleted file mode 100644 index 7f35c8b9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DesktopToolbox.kt +++ /dev/null @@ -1,94 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DesktopToolbox: ImageVector - get() { - if (_desktopToolbox != null) { - return _desktopToolbox!! - } - _desktopToolbox = fluentIcon(name = "Filled.DesktopToolbox") { - fluentPath { - moveTo(6.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(8.5f, 20.5f) - lineTo(8.5f, 18.0f) - lineTo(4.25f, 18.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) - lineTo(2.0f, 15.76f) - lineTo(2.0f, 5.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 3.0f) - horizontalLineToRelative(15.5f) - curveToRelative(1.19f, 0.0f, 2.16f, 0.93f, 2.24f, 2.1f) - verticalLineToRelative(8.82f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.74f, -2.67f) - horizontalLineToRelative(-3.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 13.0f, 14.0f) - verticalLineToRelative(0.05f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.0f, 2.45f) - lineTo(11.0f, 18.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(1.0f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 0.17f, 0.02f, 0.34f, 0.05f, 0.5f) - horizontalLineToRelative(-4.3f) - close() - moveTo(14.0f, 15.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - lineTo(12.0f, 18.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(16.0f, 18.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(20.5f, 18.0f) - lineTo(23.0f, 18.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(21.0f, 15.0f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(1.0f) - close() - moveTo(15.5f, 14.0f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(12.0f, 21.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - lineTo(23.0f, 19.5f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - close() - } - } - return _desktopToolbox!! - } - -private var _desktopToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DeveloperBoard.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DeveloperBoard.kt deleted file mode 100644 index 4a2d7695..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DeveloperBoard.kt +++ /dev/null @@ -1,103 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DeveloperBoard: ImageVector - get() { - if (_developerBoard != null) { - return _developerBoard!! - } - _developerBoard = fluentIcon(name = "Filled.DeveloperBoard") { - fluentPath { - moveTo(15.25f, 2.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(2.33f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 18.93f, 8.0f) - horizontalLineToRelative(2.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(19.0f, 9.5f) - verticalLineToRelative(1.75f) - horizontalLineToRelative(2.25f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.29f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.75f) - lineTo(19.0f, 12.75f) - verticalLineToRelative(1.75f) - horizontalLineToRelative(2.25f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.29f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.75f) - horizontalLineToRelative(-2.43f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 16.0f, 18.92f) - verticalLineToRelative(2.33f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(14.5f, 19.0f) - horizontalLineToRelative(-1.75f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineTo(12.0f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - lineTo(11.25f, 19.0f) - lineTo(9.5f, 19.0f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-2.32f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 5.08f, 16.0f) - lineTo(2.75f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(5.0f, 14.5f) - verticalLineToRelative(-1.75f) - lineTo(2.75f, 12.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineTo(2.0f, 12.0f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - lineTo(5.0f, 11.25f) - lineTo(5.0f, 9.5f) - lineTo(2.75f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineTo(2.0f, 8.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(2.33f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 8.0f, 5.07f) - lineTo(8.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - lineTo(9.5f, 5.0f) - horizontalLineToRelative(1.75f) - lineTo(11.25f, 2.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineTo(12.0f, 2.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - lineTo(12.75f, 5.0f) - horizontalLineToRelative(1.75f) - lineTo(14.5f, 2.75f) - curveToRelative(0.0f, -0.35f, 0.23f, -0.64f, 0.55f, -0.72f) - lineToRelative(0.1f, -0.02f) - lineToRelative(0.1f, -0.01f) - close() - moveTo(12.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - moveTo(12.0f, 10.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - } - } - return _developerBoard!! - } - -private var _developerBoard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DeveloperBoardSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DeveloperBoardSearch.kt deleted file mode 100644 index 0e656293..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DeveloperBoardSearch.kt +++ /dev/null @@ -1,98 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DeveloperBoardSearch: ImageVector - get() { - if (_developerBoardSearch != null) { - return _developerBoardSearch!! - } - _developerBoardSearch = fluentIcon(name = "Filled.DeveloperBoardSearch") { - fluentPath { - moveTo(17.0f, 1.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) - horizontalLineToRelative(-0.1f) - lineToRelative(-0.1f, 0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.55f, 0.72f) - lineTo(15.5f, 4.0f) - horizontalLineToRelative(-1.75f) - lineTo(13.75f, 1.65f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 13.0f, 1.0f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - lineTo(12.25f, 4.0f) - lineTo(10.5f, 4.0f) - lineTo(10.5f, 1.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - verticalLineToRelative(2.32f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 6.08f, 7.0f) - lineTo(3.65f, 7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - verticalLineToRelative(0.1f) - curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) - lineTo(6.0f, 8.5f) - verticalLineToRelative(1.75f) - lineTo(3.65f, 10.25f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 3.0f, 11.0f) - verticalLineToRelative(0.1f) - curveToRelative(0.03f, 0.16f, 0.1f, 0.3f, 0.2f, 0.4f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 7.6f, 6.5f) - horizontalLineToRelative(1.45f) - verticalLineToRelative(2.35f) - curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - lineTo(13.75f, 18.0f) - horizontalLineToRelative(1.75f) - verticalLineToRelative(2.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - verticalLineToRelative(-2.33f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 19.92f, 15.0f) - horizontalLineToRelative(2.43f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - verticalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) - lineTo(20.0f, 13.5f) - verticalLineToRelative(-1.75f) - horizontalLineToRelative(2.35f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 23.0f, 11.0f) - verticalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) - lineTo(20.0f, 10.25f) - lineTo(20.0f, 8.5f) - horizontalLineToRelative(2.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-2.32f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 17.0f, 4.08f) - lineTo(17.0f, 1.65f) - close() - moveTo(10.0f, 11.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.0f) - close() - moveTo(14.5f, 11.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) - close() - moveTo(5.5f, 21.0f) - curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) - lineToRelative(2.62f, 2.61f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.61f, -2.61f) - arcTo(4.5f, 4.5f, 0.0f, true, false, 5.5f, 21.0f) - close() - moveTo(5.5f, 19.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) - close() - } - } - return _developerBoardSearch!! - } - -private var _developerBoardSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DeviceEq.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DeviceEq.kt deleted file mode 100644 index 76782683..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DeviceEq.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DeviceEq: ImageVector - get() { - if (_deviceEq != null) { - return _deviceEq!! - } - _deviceEq = fluentIcon(name = "Filled.DeviceEq") { - fluentPath { - moveTo(12.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(13.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(11.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(8.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(9.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(7.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(16.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(17.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(15.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(4.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(5.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(3.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(20.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(21.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(19.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - } - } - return _deviceEq!! - } - -private var _deviceEq: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DeviceMeetingRoom.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DeviceMeetingRoom.kt deleted file mode 100644 index 1a135e1f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DeviceMeetingRoom.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DeviceMeetingRoom: ImageVector - get() { - if (_deviceMeetingRoom != null) { - return _deviceMeetingRoom!! - } - _deviceMeetingRoom = fluentIcon(name = "Filled.DeviceMeetingRoom") { - fluentPath { - moveTo(4.1f, 5.35f) - arcTo(3.06f, 3.06f, 0.0f, false, true, 7.06f, 3.0f) - horizontalLineToRelative(9.86f) - curveToRelative(1.41f, 0.0f, 2.65f, 0.97f, 2.98f, 2.35f) - lineToRelative(1.99f, 8.27f) - arcTo(3.55f, 3.55f, 0.0f, false, true, 18.45f, 18.0f) - horizontalLineTo(5.55f) - arcToRelative(3.55f, 3.55f, 0.0f, false, true, -3.45f, -4.38f) - lineToRelative(2.0f, -8.27f) - close() - moveTo(6.74f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineTo(6.75f) - close() - } - } - return _deviceMeetingRoom!! - } - -private var _deviceMeetingRoom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DeviceMeetingRoomRemote.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DeviceMeetingRoomRemote.kt deleted file mode 100644 index 6a22a047..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DeviceMeetingRoomRemote.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DeviceMeetingRoomRemote: ImageVector - get() { - if (_deviceMeetingRoomRemote != null) { - return _deviceMeetingRoomRemote!! - } - _deviceMeetingRoomRemote = fluentIcon(name = "Filled.DeviceMeetingRoomRemote") { - fluentPath { - moveTo(7.07f, 3.0f) - curveToRelative(-1.41f, 0.0f, -2.64f, 0.97f, -2.97f, 2.35f) - lineToRelative(-0.77f, 3.18f) - lineToRelative(0.42f, -0.03f) - horizontalLineToRelative(4.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.75f) - lineTo(10.5f, 18.0f) - horizontalLineToRelative(7.95f) - curveToRelative(2.3f, 0.0f, 3.99f, -2.15f, 3.45f, -4.38f) - lineToRelative(-2.0f, -8.27f) - arcTo(3.06f, 3.06f, 0.0f, false, false, 16.94f, 3.0f) - lineTo(7.07f, 3.0f) - close() - moveTo(10.49f, 20.5f) - lineTo(10.5f, 20.25f) - lineTo(10.5f, 19.0f) - horizontalLineToRelative(6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(10.5f, 20.5f) - close() - moveTo(5.75f, 14.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - moveTo(2.0f, 11.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(4.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-4.0f) - curveTo(2.78f, 22.0f, 2.0f, 21.22f, 2.0f, 20.25f) - verticalLineToRelative(-9.0f) - close() - moveTo(3.75f, 11.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(4.0f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-9.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-4.0f) - close() - } - } - return _deviceMeetingRoomRemote!! - } - -private var _deviceMeetingRoomRemote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Diagram.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Diagram.kt deleted file mode 100644 index 7cfb0773..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Diagram.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Diagram: ImageVector - get() { - if (_diagram != null) { - return _diagram!! - } - _diagram = fluentIcon(name = "Filled.Diagram") { - fluentPath { - moveTo(2.0f, 5.25f) - curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) - horizontalLineToRelative(10.5f) - curveTo(17.55f, 2.0f, 19.0f, 3.46f, 19.0f, 5.25f) - verticalLineToRelative(6.03f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -1.22f, -0.28f) - horizontalLineToRelative(-0.28f) - lineTo(17.5f, 5.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(5.25f, 3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(3.37f) - lineTo(7.36f, 20.0f) - lineTo(5.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - lineTo(2.0f, 5.25f) - close() - moveTo(6.75f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-7.5f) - close() - moveTo(7.07f, 12.43f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.68f, -0.43f) - horizontalLineToRelative(10.03f) - curveToRelative(0.52f, 0.0f, 1.01f, 0.23f, 1.34f, 0.62f) - lineToRelative(3.7f, 4.4f) - curveToRelative(0.24f, 0.28f, 0.24f, 0.68f, 0.0f, 0.96f) - lineToRelative(-3.7f, 4.4f) - curveToRelative(-0.33f, 0.4f, -0.82f, 0.62f, -1.34f, 0.62f) - lineTo(7.75f, 23.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.57f, -1.23f) - lineToRelative(3.59f, -4.27f) - lineToRelative(-3.6f, -4.27f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -0.8f) - close() - moveTo(6.75f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - close() - } - } - return _diagram!! - } - -private var _diagram: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Dialpad.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Dialpad.kt deleted file mode 100644 index b83be33a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Dialpad.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Dialpad: ImageVector - get() { - if (_dialpad != null) { - return _dialpad!! - } - _dialpad = fluentIcon(name = "Filled.Dialpad") { - fluentPath { - moveTo(12.0f, 17.75f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(12.0f, 12.75f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(17.0f, 12.75f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(7.0f, 12.75f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(12.0f, 7.75f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(17.0f, 7.75f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(7.0f, 7.75f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(12.0f, 2.75f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(17.0f, 2.75f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(7.0f, 2.75f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - } - } - return _dialpad!! - } - -private var _dialpad: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DialpadOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DialpadOff.kt deleted file mode 100644 index b257faad..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DialpadOff.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DialpadOff: ImageVector - get() { - if (_dialpadOff != null) { - return _dialpadOff!! - } - _dialpadOff = fluentIcon(name = "Filled.DialpadOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(4.5f, 4.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 1.76f, 1.76f) - lineToRelative(3.24f, 3.24f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 1.75f, 1.75f) - lineToRelative(7.25f, 7.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(18.5f, 14.25f) - curveToRelative(0.0f, 0.3f, -0.1f, 0.58f, -0.25f, 0.82f) - lineToRelative(-2.07f, -2.08f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.32f, 1.26f) - close() - moveTo(13.5f, 9.25f) - curveToRelative(0.0f, 0.3f, -0.09f, 0.59f, -0.25f, 0.82f) - lineTo(11.18f, 8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.32f, 1.25f) - close() - moveTo(8.5f, 4.25f) - curveToRelative(0.0f, 0.3f, -0.09f, 0.59f, -0.24f, 0.83f) - lineTo(6.18f, 3.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 8.5f, 4.25f) - close() - moveTo(12.0f, 17.75f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(7.0f, 12.75f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(17.0f, 7.75f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(12.0f, 2.75f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(17.0f, 2.75f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - } - } - return _dialpadOff!! - } - -private var _dialpadOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Diamond.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Diamond.kt deleted file mode 100644 index 77d2c6da..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Diamond.kt +++ /dev/null @@ -1,32 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Diamond: ImageVector - get() { - if (_diamond != null) { - return _diamond!! - } - _diamond = fluentIcon(name = "Filled.Diamond") { - fluentPath { - moveTo(2.66f, 13.6f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -3.19f) - lineToRelative(7.75f, -7.75f) - curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.0f) - lineToRelative(7.75f, 7.75f) - curveToRelative(0.88f, 0.88f, 0.88f, 2.3f, 0.0f, 3.18f) - lineToRelative(-7.75f, 7.75f) - curveToRelative(-0.88f, 0.88f, -2.3f, 0.88f, -3.18f, 0.0f) - lineTo(2.66f, 13.6f) - close() - } - } - return _diamond!! - } - -private var _diamond: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Directions.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Directions.kt deleted file mode 100644 index 2a56a2bc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Directions.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Directions: ImageVector - get() { - if (_directions != null) { - return _directions!! - } - _directions = fluentIcon(name = "Filled.Directions") { - fluentPath { - moveToRelative(14.3f, 2.99f) - lineToRelative(6.72f, 6.71f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, 4.6f) - lineToRelative(-6.72f, 6.72f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -4.6f, 0.0f) - lineTo(2.98f, 14.3f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.6f) - lineTo(9.7f, 3.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 4.6f, 0.0f) - close() - moveTo(13.6f, 7.22f) - lineTo(13.5f, 7.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.88f, 0.0f) - lineToRelative(-0.09f, 0.07f) - lineToRelative(-0.07f, 0.09f) - curveToRelative(-0.2f, 0.26f, -0.2f, 0.61f, -0.01f, 0.88f) - lineToRelative(0.08f, 0.1f) - lineToRelative(0.72f, 0.71f) - horizontalLineToRelative(-1.67f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.57f, 2.58f) - lineToRelative(-0.01f, 0.17f) - verticalLineToRelative(3.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-3.48f) - curveToRelative(0.07f, -0.59f, 0.53f, -1.05f, 1.12f, -1.11f) - horizontalLineToRelative(0.13f) - lineToRelative(1.5f, -0.01f) - lineToRelative(-0.72f, 0.72f) - lineToRelative(-0.07f, 0.09f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.05f, 1.04f) - lineToRelative(0.08f, -0.07f) - lineToRelative(2.0f, -2.0f) - lineToRelative(0.07f, -0.08f) - curveToRelative(0.2f, -0.26f, 0.2f, -0.62f, 0.01f, -0.88f) - lineToRelative(-0.08f, -0.1f) - lineToRelative(-2.0f, -2.0f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(0.08f, 0.07f) - close() - } - } - return _directions!! - } - -private var _directions: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Dishwasher.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Dishwasher.kt deleted file mode 100644 index a74c511a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Dishwasher.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Dishwasher: ImageVector - get() { - if (_dishwasher != null) { - return _dishwasher!! - } - _dishwasher = fluentIcon(name = "Filled.Dishwasher") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - lineTo(21.0f, 9.0f) - lineTo(3.0f, 9.0f) - lineTo(3.0f, 6.25f) - close() - moveTo(8.99f, 10.51f) - lineTo(8.97f, 10.5f) - lineTo(21.0f, 10.5f) - verticalLineToRelative(7.25f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(8.48f, 21.0f) - arcTo(1.75f, 1.75f, 0.0f, false, false, 7.0f, 19.52f) - verticalLineToRelative(-1.9f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, 2.5f, -3.87f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.46f, -0.18f, -0.9f, -0.51f, -1.24f) - close() - moveTo(9.0f, 6.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(12.75f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - close() - moveTo(2.75f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(2.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 2.5f, 3.16f) - verticalLineToRelative(3.59f) - horizontalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(6.0f, 20.5f) - verticalLineToRelative(-3.59f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 2.5f, -3.16f) - verticalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-5.0f) - close() - } - } - return _dishwasher!! - } - -private var _dishwasher: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DismissCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DismissCircle.kt deleted file mode 100644 index 5a972976..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DismissCircle.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DismissCircle: ImageVector - get() { - if (_dismissCircle != null) { - return _dismissCircle!! - } - _dismissCircle = fluentIcon(name = "Filled.DismissCircle") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(15.53f, 8.47f) - lineTo(15.45f, 8.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.89f, -0.01f) - lineToRelative(-0.09f, 0.08f) - lineTo(12.0f, 10.94f) - lineTo(9.53f, 8.47f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.89f, -0.01f) - lineToRelative(-0.09f, 0.08f) - lineToRelative(-0.07f, 0.08f) - curveToRelative(-0.2f, 0.26f, -0.2f, 0.62f, -0.01f, 0.89f) - lineToRelative(0.08f, 0.09f) - lineTo(10.94f, 12.0f) - lineToRelative(-2.47f, 2.47f) - lineToRelative(-0.07f, 0.08f) - curveToRelative(-0.2f, 0.26f, -0.2f, 0.62f, -0.01f, 0.89f) - lineToRelative(0.08f, 0.09f) - lineToRelative(0.08f, 0.07f) - curveToRelative(0.26f, 0.2f, 0.62f, 0.2f, 0.89f, 0.01f) - lineToRelative(0.09f, -0.08f) - lineTo(12.0f, 13.06f) - lineToRelative(2.47f, 2.47f) - lineToRelative(0.08f, 0.07f) - curveToRelative(0.26f, 0.2f, 0.62f, 0.2f, 0.89f, 0.01f) - lineToRelative(0.09f, -0.08f) - lineToRelative(0.07f, -0.08f) - curveToRelative(0.2f, -0.26f, 0.2f, -0.62f, 0.01f, -0.89f) - lineToRelative(-0.08f, -0.09f) - lineTo(13.06f, 12.0f) - lineToRelative(2.47f, -2.47f) - lineToRelative(0.07f, -0.08f) - curveToRelative(0.2f, -0.26f, 0.2f, -0.62f, 0.01f, -0.89f) - lineToRelative(-0.08f, -0.09f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(0.08f, 0.07f) - close() - } - } - return _dismissCircle!! - } - -private var _dismissCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DismissSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DismissSquare.kt deleted file mode 100644 index 30160440..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DismissSquare.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DismissSquare: ImageVector - get() { - if (_dismissSquare != null) { - return _dismissSquare!! - } - _dismissSquare = fluentIcon(name = "Filled.DismissSquare") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(8.22f, 8.22f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineTo(12.0f, 10.94f) - lineToRelative(2.72f, -2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineTo(13.06f, 12.0f) - lineToRelative(2.72f, 2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(12.0f, 13.06f) - lineToRelative(-2.72f, 2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineTo(10.94f, 12.0f) - lineTo(8.22f, 9.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - } - } - return _dismissSquare!! - } - -private var _dismissSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Diversity.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Diversity.kt deleted file mode 100644 index 7f3e3bb3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Diversity.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Diversity: ImageVector - get() { - if (_diversity != null) { - return _diversity!! - } - _diversity = fluentIcon(name = "Filled.Diversity") { - fluentPath { - moveTo(16.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(2.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) - horizontalLineToRelative(2.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) - lineTo(21.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - horizontalLineToRelative(-2.0f) - close() - moveTo(5.55f, 3.9f) - curveToRelative(0.6f, -1.2f, 2.3f, -1.2f, 2.9f, 0.0f) - lineToRelative(2.37f, 4.71f) - arcTo(1.64f, 1.64f, 0.0f, false, true, 9.37f, 11.0f) - lineTo(4.63f, 11.0f) - curveToRelative(-1.22f, 0.0f, -2.0f, -1.3f, -1.45f, -2.39f) - lineTo(5.55f, 3.9f) - close() - moveTo(10.93f, 17.76f) - curveToRelative(-0.1f, 0.54f, -0.32f, 1.05f, -0.62f, 1.49f) - lineToRelative(-5.56f, -5.56f) - arcTo(3.98f, 3.98f, 0.0f, false, true, 7.0f, 13.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 3.93f, 4.75f) - verticalLineToRelative(0.01f) - close() - moveTo(7.69f, 20.94f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.62f, -4.69f) - verticalLineToRelative(-0.01f) - curveToRelative(0.1f, -0.54f, 0.32f, -1.05f, 0.62f, -1.49f) - lineToRelative(5.56f, 5.56f) - arcToRelative(3.98f, 3.98f, 0.0f, false, true, -1.56f, 0.63f) - close() - moveTo(16.52f, 13.12f) - curveToRelative(0.3f, -0.16f, 0.66f, -0.16f, 0.96f, 0.0f) - lineToRelative(2.97f, 1.53f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.55f, 0.89f) - verticalLineToRelative(2.92f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.55f, 0.89f) - lineToRelative(-2.97f, 1.53f) - curveToRelative(-0.3f, 0.16f, -0.66f, 0.16f, -0.96f, 0.0f) - lineToRelative(-2.97f, -1.53f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.55f, -0.89f) - verticalLineToRelative(-2.92f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.55f, -0.89f) - lineToRelative(2.97f, -1.53f) - close() - } - } - return _diversity!! - } - -private var _diversity: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DividerShort.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DividerShort.kt deleted file mode 100644 index ce326e07..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DividerShort.kt +++ /dev/null @@ -1,28 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DividerShort: ImageVector - get() { - if (_dividerShort != null) { - return _dividerShort!! - } - _dividerShort = fluentIcon(name = "Filled.DividerShort") { - fluentPath { - moveTo(11.0f, 5.0f) - verticalLineToRelative(14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineTo(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - close() - } - } - return _dividerShort!! - } - -private var _dividerShort: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DividerTall.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DividerTall.kt deleted file mode 100644 index 923a0cf5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DividerTall.kt +++ /dev/null @@ -1,28 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DividerTall: ImageVector - get() { - if (_dividerTall != null) { - return _dividerTall!! - } - _dividerTall = fluentIcon(name = "Filled.DividerTall") { - fluentPath { - moveTo(11.0f, 3.0f) - verticalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineTo(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - close() - } - } - return _dividerTall!! - } - -private var _dividerTall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Dock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Dock.kt deleted file mode 100644 index 56973676..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Dock.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Dock: ImageVector - get() { - if (_dock != null) { - return _dock!! - } - _dock = fluentIcon(name = "Filled.Dock") { - fluentPath { - moveTo(12.7f, 3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) - lineTo(7.8f, 6.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 1.4f) - lineTo(11.0f, 6.42f) - verticalLineTo(15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineTo(6.41f) - lineToRelative(1.8f, 1.8f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, -1.42f) - lineToRelative(-3.5f, -3.5f) - close() - moveTo(4.0f, 12.74f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineTo(9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineTo(4.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 12.75f) - verticalLineToRelative(4.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 20.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 17.25f) - verticalLineToRelative(-4.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 10.0f) - horizontalLineTo(15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(4.25f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineTo(4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-4.5f) - close() - } - } - return _dock!! - } - -private var _dock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DockRow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DockRow.kt deleted file mode 100644 index 5b908ee6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DockRow.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DockRow: ImageVector - get() { - if (_dockRow != null) { - return _dockRow!! - } - _dockRow = fluentIcon(name = "Filled.DockRow") { - fluentPath { - moveTo(20.25f, 12.03f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.5f) - close() - moveTo(6.25f, 12.03f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.5f) - close() - moveTo(13.25f, 12.03f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.5f) - close() - moveTo(13.25f, 5.03f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.5f) - close() - moveTo(20.25f, 5.03f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.5f) - close() - moveTo(6.25f, 5.03f) - curveTo(7.22f, 5.03f, 8.0f, 5.8f, 8.0f, 6.78f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) - lineToRelative(0.15f, -0.01f) - horizontalLineToRelative(2.5f) - close() - } - } - return _dockRow!! - } - -private var _dockRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Doctor.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Doctor.kt deleted file mode 100644 index 5f799ca7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Doctor.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Doctor: ImageVector - get() { - if (_doctor != null) { - return _doctor!! - } - _doctor = fluentIcon(name = "Filled.Doctor") { - fluentPath { - moveTo(10.0f, 3.25f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(3.25f) - horizontalLineTo(5.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(3.25f) - verticalLineTo(19.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(4.0f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-3.25f) - horizontalLineTo(19.0f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.25f) - verticalLineTo(5.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-4.0f) - close() - } - } - return _doctor!! - } - -private var _doctor: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Document100.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Document100.kt deleted file mode 100644 index bea6f230..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Document100.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Document100: ImageVector - get() { - if (_document100 != null) { - return _document100!! - } - _document100 = fluentIcon(name = "Filled.Document100") { - fluentPath { - moveTo(12.0f, 8.0f) - lineTo(12.0f, 2.0f) - lineTo(6.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(10.23f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.86f, 0.97f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.64f, 0.5f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 6.5f, 1.8f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.98f, -0.4f, 1.86f, -1.05f, 2.5f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 10.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - close() - moveTo(13.5f, 8.0f) - lineTo(13.5f, 2.5f) - lineToRelative(6.0f, 6.0f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - moveTo(7.5f, 15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 5.0f, 17.5f) - verticalLineToRelative(2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 5.0f, 0.0f) - verticalLineToRelative(-2.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 7.5f, 15.0f) - close() - moveTo(6.5f, 17.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(11.0f, 17.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - verticalLineToRelative(2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(13.5f, 16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - moveTo(4.0f, 15.94f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.74f, -0.95f) - curveToRelative(-0.31f, -0.09f, -0.8f, -0.06f, -1.11f, 0.37f) - curveToRelative(-0.32f, 0.44f, -0.76f, 0.94f, -1.28f, 1.24f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.76f, 1.3f) - curveToRelative(0.32f, -0.2f, 0.61f, -0.43f, 0.87f, -0.67f) - verticalLineToRelative(4.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-5.31f) - close() - } - } - return _document100!! - } - -private var _document100: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentAdd.kt deleted file mode 100644 index 991af538..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentAdd.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentAdd: ImageVector - get() { - if (_documentAdd != null) { - return _documentAdd!! - } - _documentAdd = fluentIcon(name = "Filled.DocumentAdd") { - fluentPath { - moveTo(12.0f, 2.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-6.81f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.0f) - close() - moveTo(13.5f, 2.5f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.5f) - lineToRelative(-6.0f, -6.0f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(7.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(6.0f, 18.0f) - lineTo(3.5f, 18.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(6.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(7.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(7.0f, 18.0f) - close() - } - } - return _documentAdd!! - } - -private var _documentAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentArrowLeft.kt deleted file mode 100644 index 41aca9b9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentArrowLeft.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentArrowLeft: ImageVector - get() { - if (_documentArrowLeft != null) { - return _documentArrowLeft!! - } - _documentArrowLeft = fluentIcon(name = "Filled.DocumentArrowLeft") { - fluentPath { - moveTo(12.0f, 2.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-6.81f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.0f) - close() - moveTo(13.5f, 2.5f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.5f) - lineToRelative(-6.0f, -6.0f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(9.5f, 18.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - lineTo(4.7f, 17.0f) - lineToRelative(1.65f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineTo(4.71f, 18.0f) - lineTo(9.5f, 18.0f) - close() - } - } - return _documentArrowLeft!! - } - -private var _documentArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentArrowRight.kt deleted file mode 100644 index 9f4dcf25..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentArrowRight.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentArrowRight: ImageVector - get() { - if (_documentArrowRight != null) { - return _documentArrowRight!! - } - _documentArrowRight = fluentIcon(name = "Filled.DocumentArrowRight") { - fluentPath { - moveTo(12.0f, 2.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-6.81f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) - verticalLineTo(4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.0f) - close() - } - fluentPath { - moveTo(13.5f, 2.5f) - verticalLineTo(8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.5f) - lineToRelative(-6.0f, -6.0f) - close() - } - fluentPath { - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(3.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(8.29f, 17.0f) - horizontalLineTo(3.5f) - close() - } - } - return _documentArrowRight!! - } - -private var _documentArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentBorder.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentBorder.kt deleted file mode 100644 index 69bb29df..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentBorder.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentBorder: ImageVector - get() { - if (_documentBorder != null) { - return _documentBorder!! - } - _documentBorder = fluentIcon(name = "Filled.DocumentBorder") { - fluentPath { - moveTo(7.25f, 2.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 4.0f, 5.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.55f, 5.46f, 22.0f, 7.25f, 22.0f) - horizontalLineToRelative(9.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineTo(5.25f) - curveTo(20.0f, 3.45f, 18.54f, 2.0f, 16.75f, 2.0f) - horizontalLineToRelative(-9.5f) - close() - moveTo(5.5f, 5.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(9.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-9.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineTo(5.25f) - close() - moveTo(8.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineTo(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineTo(8.0f) - close() - } - } - return _documentBorder!! - } - -private var _documentBorder: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentBorderPrint.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentBorderPrint.kt deleted file mode 100644 index 79006447..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentBorderPrint.kt +++ /dev/null @@ -1,96 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentBorderPrint: ImageVector - get() { - if (_documentBorderPrint != null) { - return _documentBorderPrint!! - } - _documentBorderPrint = fluentIcon(name = "Filled.DocumentBorderPrint") { - fluentPath { - moveTo(7.25f, 2.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 4.0f, 5.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.55f, 5.46f, 22.0f, 7.25f, 22.0f) - horizontalLineToRelative(5.85f) - arcToRelative(2.74f, 2.74f, 0.0f, false, true, -0.09f, -0.5f) - lineTo(13.0f, 21.5f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.73f, -1.0f) - lineTo(7.25f, 20.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(5.5f, 5.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(9.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(18.5f, 11.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.26f, 0.0f, 0.51f, 0.04f, 0.75f, 0.1f) - lineTo(20.0f, 5.25f) - curveTo(20.0f, 3.45f, 18.54f, 2.0f, 16.75f, 2.0f) - horizontalLineToRelative(-9.5f) - close() - moveTo(15.75f, 11.0f) - lineTo(17.0f, 11.0f) - lineTo(17.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(8.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-3.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.0f, -2.45f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 15.76f, 11.0f) - close() - moveTo(14.0f, 13.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(3.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(0.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(12.0f, 16.0f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(0.5f) - verticalLineToRelative(-0.75f) - close() - moveTo(19.5f, 13.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-0.75f) - close() - moveTo(15.5f, 19.25f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-2.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - close() - } - } - return _documentBorderPrint!! - } - -private var _documentBorderPrint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentBriefcase.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentBriefcase.kt deleted file mode 100644 index a0b84a3c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentBriefcase.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentBriefcase: ImageVector - get() { - if (_documentBriefcase != null) { - return _documentBriefcase!! - } - _documentBriefcase = fluentIcon(name = "Filled.DocumentBriefcase") { - fluentPath { - moveTo(12.0f, 2.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-5.05f) - curveToRelative(0.03f, -0.16f, 0.05f, -0.33f, 0.05f, -0.5f) - verticalLineToRelative(-5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.0f, -2.45f) - verticalLineToRelative(-0.3f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 8.25f, 11.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.26f, 0.0f, -0.51f, 0.04f, -0.75f, 0.1f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.0f) - close() - moveTo(13.5f, 2.5f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.5f) - lineToRelative(-6.0f, -6.0f) - close() - moveTo(3.0f, 15.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(8.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(10.0f, 15.0f) - verticalLineToRelative(-1.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.5f) - curveTo(3.78f, 12.0f, 3.0f, 12.78f, 3.0f, 13.75f) - lineTo(3.0f, 15.0f) - close() - moveTo(4.5f, 13.75f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - lineTo(8.5f, 15.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-1.25f) - close() - } - } - return _documentBriefcase!! - } - -private var _documentBriefcase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentBulletList.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentBulletList.kt deleted file mode 100644 index b165bbe9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentBulletList.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentBulletList: ImageVector - get() { - if (_documentBulletList != null) { - return _documentBulletList!! - } - _documentBulletList = fluentIcon(name = "Filled.DocumentBulletList") { - fluentPath { - moveTo(12.0f, 8.0f) - lineTo(12.0f, 2.0f) - lineTo(6.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(16.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 10.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - close() - moveTo(7.0f, 12.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(7.0f, 15.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(7.0f, 18.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(10.0f, 12.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(10.0f, 15.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(10.0f, 18.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(13.5f, 8.0f) - lineTo(13.5f, 2.5f) - lineToRelative(6.0f, 6.0f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - } - } - return _documentBulletList!! - } - -private var _documentBulletList: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentBulletListArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentBulletListArrowLeft.kt deleted file mode 100644 index baf81b98..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentBulletListArrowLeft.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentBulletListArrowLeft: ImageVector - get() { - if (_documentBulletListArrowLeft != null) { - return _documentBulletListArrowLeft!! - } - _documentBulletListArrowLeft = fluentIcon(name = "Filled.DocumentBulletListArrowLeft") { - fluentPath { - moveTo(12.0f, 8.0f) - lineTo(12.0f, 2.0f) - lineTo(6.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.5f) - arcToRelative(6.48f, 6.48f, 0.0f, false, true, 6.03f, 0.54f) - curveToRelative(0.09f, -0.31f, 0.38f, -0.54f, 0.72f, -0.54f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.06f) - curveToRelative(0.43f, 0.44f, 0.8f, 0.95f, 1.08f, 1.5f) - horizontalLineToRelative(3.98f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.42f) - curveToRelative(0.11f, 0.48f, 0.17f, 0.98f, 0.17f, 1.5f) - horizontalLineToRelative(3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.42f) - arcToRelative(6.49f, 6.49f, 0.0f, false, true, -1.64f, 3.0f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 10.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - close() - moveTo(13.5f, 8.0f) - lineTo(13.5f, 2.5f) - lineToRelative(6.0f, 6.0f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - moveTo(6.5f, 23.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, 11.0f) - close() - moveTo(9.5f, 18.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - lineTo(4.7f, 17.0f) - lineToRelative(1.65f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineTo(4.71f, 18.0f) - lineTo(9.5f, 18.0f) - close() - } - } - return _documentBulletListArrowLeft!! - } - -private var _documentBulletListArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentBulletListClock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentBulletListClock.kt deleted file mode 100644 index 9f39db23..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentBulletListClock.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentBulletListClock: ImageVector - get() { - if (_documentBulletListClock != null) { - return _documentBulletListClock!! - } - _documentBulletListClock = fluentIcon(name = "Filled.DocumentBulletListClock") { - fluentPath { - moveTo(12.0f, 8.0f) - lineTo(12.0f, 2.0f) - lineTo(6.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(16.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.81f) - arcToRelative(6.49f, 6.49f, 0.0f, false, true, -1.64f, -3.0f) - horizontalLineToRelative(-0.42f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(11.0f, 17.5f) - curveToRelative(0.0f, -0.52f, 0.06f, -1.02f, 0.17f, -1.5f) - horizontalLineToRelative(-0.42f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.98f) - curveToRelative(0.29f, -0.55f, 0.65f, -1.06f, 1.08f, -1.5f) - horizontalLineToRelative(-2.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(15.0f, 11.5f) - arcToRelative(6.48f, 6.48f, 0.0f, false, true, 5.0f, 0.0f) - lineTo(20.0f, 10.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - close() - moveTo(7.0f, 12.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(7.0f, 15.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(7.0f, 18.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(13.5f, 8.0f) - lineTo(13.5f, 2.5f) - lineToRelative(6.0f, 6.0f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(17.22f, 17.92f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.22f, -0.5f) - lineTo(17.0f, 13.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-2.94f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.34f, -0.08f) - close() - } - } - return _documentBulletListClock!! - } - -private var _documentBulletListClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentBulletListCube.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentBulletListCube.kt deleted file mode 100644 index f63896ad..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentBulletListCube.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentBulletListCube: ImageVector - get() { - if (_documentBulletListCube != null) { - return _documentBulletListCube!! - } - _documentBulletListCube = fluentIcon(name = "Filled.DocumentBulletListCube") { - fluentPath { - moveTo(12.0f, 2.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-7.4f) - lineToRelative(0.02f, -0.01f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 12.0f, 19.75f) - lineTo(12.0f, 19.0f) - horizontalLineToRelative(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(12.0f, 17.5f) - lineTo(12.0f, 16.0f) - horizontalLineToRelative(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.37f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -1.26f, -1.49f) - lineToRelative(-0.1f, -0.05f) - curveToRelative(0.07f, 0.03f, 0.15f, 0.04f, 0.23f, 0.04f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.43f, 1.37f) - lineToRelative(-3.2f, -1.6f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.24f, 0.0f) - lineTo(4.0f, 11.7f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.0f) - close() - moveTo(13.5f, 2.5f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.5f) - lineToRelative(-6.0f, -6.0f) - close() - moveTo(10.17f, 13.9f) - lineTo(6.67f, 12.16f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -1.34f, 0.0f) - lineToRelative(-3.5f, 1.75f) - curveToRelative(-0.5f, 0.25f, -0.83f, 0.77f, -0.83f, 1.34f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.57f, 0.32f, 1.09f, 0.83f, 1.34f) - lineToRelative(3.5f, 1.75f) - curveToRelative(0.42f, 0.22f, 0.92f, 0.22f, 1.34f, 0.0f) - lineToRelative(3.5f, -1.75f) - curveToRelative(0.5f, -0.25f, 0.83f, -0.77f, 0.83f, -1.34f) - verticalLineToRelative(-4.5f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -0.83f, -1.34f) - close() - moveTo(2.55f, 15.28f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.67f, -0.23f) - lineTo(6.0f, 16.45f) - lineToRelative(2.78f, -1.4f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.44f, 0.9f) - lineTo(6.5f, 17.3f) - verticalLineToRelative(3.19f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - verticalLineToRelative(-3.2f) - lineToRelative(-2.72f, -1.35f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.23f, -0.67f) - close() - } - } - return _documentBulletListCube!! - } - -private var _documentBulletListCube: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentBulletListMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentBulletListMultiple.kt deleted file mode 100644 index b3ebde0d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentBulletListMultiple.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentBulletListMultiple: ImageVector - get() { - if (_documentBulletListMultiple != null) { - return _documentBulletListMultiple!! - } - _documentBulletListMultiple = fluentIcon(name = "Filled.DocumentBulletListMultiple") { - fluentPath { - moveTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(4.25f) - verticalLineToRelative(4.75f) - curveTo(10.5f, 7.99f, 11.51f, 9.0f, 12.75f, 9.0f) - horizontalLineToRelative(4.75f) - verticalLineToRelative(8.25f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-9.0f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-13.0f) - close() - moveTo(7.75f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(7.0f, 15.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - close() - moveTo(10.0f, 12.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(10.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.05f) - close() - moveTo(12.0f, 6.75f) - lineTo(12.0f, 2.47f) - lineToRelative(0.22f, 0.19f) - lineToRelative(4.62f, 4.62f) - lineToRelative(0.2f, 0.22f) - horizontalLineToRelative(-4.29f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(6.63f, 20.5f) - curveToRelative(0.3f, 0.87f, 1.14f, 1.5f, 2.12f, 1.5f) - horizontalLineToRelative(6.5f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 20.0f, 17.25f) - verticalLineToRelative(-5.88f) - curveToRelative(0.0f, -0.6f, -0.24f, -1.17f, -0.66f, -1.6f) - lineToRelative(-0.84f, -0.83f) - verticalLineToRelative(8.31f) - curveToRelative(0.0f, 1.8f, -1.45f, 3.25f, -3.25f, 3.25f) - lineTo(6.63f, 20.5f) - close() - } - } - return _documentBulletListMultiple!! - } - -private var _documentBulletListMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentBulletListOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentBulletListOff.kt deleted file mode 100644 index cb26368c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentBulletListOff.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentBulletListOff: ImageVector - get() { - if (_documentBulletListOff != null) { - return _documentBulletListOff!! - } - _documentBulletListOff = fluentIcon(name = "Filled.DocumentBulletListOff") { - fluentPath { - moveTo(4.0f, 5.06f) - lineTo(4.0f, 20.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.8f, -1.14f) - lineToRelative(0.92f, 0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(4.0f, 5.06f) - close() - moveTo(16.47f, 17.53f) - lineTo(16.97f, 18.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.72f, 0.97f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(5.5f) - curveToRelative(0.08f, 0.0f, 0.15f, 0.01f, 0.22f, 0.03f) - close() - moveTo(14.94f, 16.0f) - horizontalLineToRelative(-4.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.69f) - lineToRelative(1.5f, 1.5f) - close() - moveTo(11.94f, 13.0f) - horizontalLineToRelative(-1.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.26f, -1.45f) - lineTo(11.94f, 13.0f) - close() - moveTo(7.0f, 12.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(7.0f, 15.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(7.0f, 18.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(16.25f, 13.0f) - horizontalLineToRelative(-0.07f) - lineTo(20.0f, 16.82f) - lineTo(20.0f, 10.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.29f, -0.47f) - lineToRelative(1.97f, 1.97f) - horizontalLineToRelative(1.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(12.0f, 8.0f) - curveToRelative(0.0f, 0.5f, 0.18f, 0.94f, 0.47f, 1.29f) - lineTo(5.31f, 2.12f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 6.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(6.0f) - close() - moveTo(13.5f, 8.0f) - lineTo(13.5f, 2.5f) - lineToRelative(6.0f, 6.0f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - } - } - return _documentBulletListOff!! - } - -private var _documentBulletListOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentCatchUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentCatchUp.kt deleted file mode 100644 index 2e93084e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentCatchUp.kt +++ /dev/null @@ -1,93 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentCatchUp: ImageVector - get() { - if (_documentCatchUp != null) { - return _documentCatchUp!! - } - _documentCatchUp = fluentIcon(name = "Filled.DocumentCatchUp") { - fluentPath { - moveTo(12.0f, 2.0f) - lineTo(6.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(8.0f) - horizontalLineToRelative(0.6f) - lineToRelative(1.3f, -2.95f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 3.1f, -0.2f) - lineToRelative(0.02f, 0.04f) - lineToRelative(0.09f, 0.18f) - lineToRelative(1.73f, 4.31f) - lineToRelative(0.34f, -0.5f) - curveToRelative(0.27f, -0.47f, 0.73f, -0.78f, 1.24f, -0.86f) - horizontalLineToRelative(0.06f) - lineToRelative(0.18f, -0.02f) - horizontalLineToRelative(2.04f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.26f, 3.48f) - horizontalLineToRelative(-0.05f) - lineToRelative(-0.18f, 0.02f) - lineTo(13.7f, 15.5f) - lineToRelative(-1.66f, 2.6f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -3.03f, 0.05f) - lineToRelative(-0.03f, -0.05f) - lineToRelative(-0.08f, -0.17f) - lineToRelative(-1.46f, -3.65f) - lineToRelative(-0.08f, 0.17f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.32f, 1.03f) - horizontalLineToRelative(-0.06f) - lineToRelative(-0.19f, 0.02f) - lineTo(4.0f, 15.5f) - lineTo(4.0f, 20.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 10.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(12.0f, 2.0f) - close() - moveTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 2.5f) - lineToRelative(6.0f, 6.0f) - lineTo(14.0f, 8.5f) - close() - moveTo(5.26f, 13.0f) - lineTo(2.64f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.11f, 1.5f) - horizontalLineToRelative(3.1f) - lineToRelative(0.02f, -0.01f) - horizontalLineToRelative(0.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.52f, -0.44f) - lineToRelative(1.04f, -2.36f) - lineToRelative(2.33f, 5.83f) - lineToRelative(0.05f, 0.1f) - verticalLineToRelative(0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.31f, -0.04f) - lineToRelative(1.98f, -3.09f) - lineTo(14.81f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.11f, -1.5f) - horizontalLineToRelative(-2.12f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.55f, 0.4f) - lineToRelative(-1.42f, 2.1f) - lineToRelative(-2.42f, -6.03f) - lineToRelative(-0.05f, -0.1f) - verticalLineToRelative(-0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.33f, 0.09f) - lineTo(5.26f, 13.0f) - close() - moveTo(5.75f, 14.5f) - lineTo(4.0f, 14.5f) - close() - } - } - return _documentCatchUp!! - } - -private var _documentCatchUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentCheckmark.kt deleted file mode 100644 index 0d883f5b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentCheckmark.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentCheckmark: ImageVector - get() { - if (_documentCheckmark != null) { - return _documentCheckmark!! - } - _documentCheckmark = fluentIcon(name = "Filled.DocumentCheckmark") { - fluentPath { - moveTo(12.0f, 2.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-6.81f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) - verticalLineTo(4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.0f) - close() - } - fluentPath { - moveTo(13.5f, 2.5f) - verticalLineTo(8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.5f) - lineToRelative(-6.0f, -6.0f) - close() - } - fluentPath { - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(9.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineTo(5.5f, 18.79f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _documentCheckmark!! - } - -private var _documentCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentChevronDouble.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentChevronDouble.kt deleted file mode 100644 index 04360e30..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentChevronDouble.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentChevronDouble: ImageVector - get() { - if (_documentChevronDouble != null) { - return _documentChevronDouble!! - } - _documentChevronDouble = fluentIcon(name = "Filled.DocumentChevronDouble") { - fluentPath { - moveTo(12.0f, 2.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-6.81f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.0f) - close() - moveTo(13.5f, 2.5f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.5f) - lineToRelative(-6.0f, -6.0f) - close() - moveTo(6.5f, 23.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, 11.0f) - close() - moveTo(5.35f, 15.35f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineTo(3.21f, 17.5f) - lineToRelative(2.14f, -2.15f) - close() - moveTo(7.65f, 14.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(2.14f, 2.15f) - lineToRelative(-2.14f, 2.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - close() - } - } - return _documentChevronDouble!! - } - -private var _documentChevronDouble: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentCopy.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentCopy.kt deleted file mode 100644 index 334f775d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentCopy.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentCopy: ImageVector - get() { - if (_documentCopy != null) { - return _documentCopy!! - } - _documentCopy = fluentIcon(name = "Filled.DocumentCopy") { - fluentPath { - moveTo(13.0f, 6.75f) - lineTo(13.0f, 2.0f) - lineTo(8.75f, 2.0f) - curveTo(7.51f, 2.0f, 6.5f, 3.0f, 6.5f, 4.25f) - verticalLineToRelative(13.0f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(9.0f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 9.0f) - horizontalLineToRelative(-4.75f) - curveTo(14.01f, 9.0f, 13.0f, 8.0f, 13.0f, 6.75f) - close() - moveTo(14.5f, 6.75f) - lineTo(14.5f, 2.5f) - lineToRelative(5.0f, 5.0f) - horizontalLineToRelative(-4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(5.5f, 4.63f) - curveTo(4.63f, 4.93f, 4.0f, 5.77f, 4.0f, 6.75f) - verticalLineToRelative(10.5f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 8.75f, 22.0f) - horizontalLineToRelative(6.5f) - curveToRelative(0.97f, 0.0f, 1.8f, -0.62f, 2.12f, -1.5f) - lineTo(8.75f, 20.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.25f, -3.25f) - lineTo(5.5f, 4.63f) - close() - } - } - return _documentCopy!! - } - -private var _documentCopy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentCss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentCss.kt deleted file mode 100644 index e4d28ddc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentCss.kt +++ /dev/null @@ -1,135 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentCss: ImageVector - get() { - if (_documentCss != null) { - return _documentCss!! - } - _documentCss = fluentIcon(name = "Filled.DocumentCss") { - fluentPath { - moveTo(12.0f, 8.0f) - lineTo(12.0f, 2.0f) - lineTo(6.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(10.04f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 2.38f, 1.47f) - curveToRelative(0.5f, -0.9f, 1.47f, -1.51f, 2.57f, -1.51f) - horizontalLineToRelative(0.1f) - curveToRelative(1.02f, 0.0f, 1.92f, 0.52f, 2.45f, 1.3f) - arcToRelative(2.95f, 2.95f, 0.0f, false, true, 2.45f, -1.3f) - horizontalLineToRelative(0.1f) - arcTo(2.95f, 2.95f, 0.0f, false, true, 17.0f, 16.95f) - lineTo(17.0f, 17.0f) - curveToRelative(0.0f, 0.45f, -0.17f, 0.86f, -0.45f, 1.17f) - curveToRelative(0.29f, 0.44f, 0.45f, 0.96f, 0.45f, 1.5f) - verticalLineToRelative(0.38f) - curveToRelative(0.0f, 0.75f, -0.28f, 1.43f, -0.74f, 1.95f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 10.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - close() - moveTo(14.05f, 22.0f) - curveToRelative(1.08f, 0.0f, 1.95f, -0.87f, 1.95f, -1.95f) - verticalLineToRelative(-0.37f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.1f, -1.63f) - lineToRelative(-0.57f, -0.22f) - lineToRelative(-0.7f, -0.43f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.13f, -0.22f) - verticalLineToRelative(-0.23f) - curveToRelative(0.0f, -0.25f, 0.2f, -0.45f, 0.45f, -0.45f) - horizontalLineToRelative(0.1f) - arcToRelative(0.45f, 0.45f, 0.0f, false, true, 0.45f, 0.45f) - lineTo(14.5f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.05f) - curveToRelative(0.0f, -1.08f, -0.87f, -1.95f, -1.95f, -1.95f) - horizontalLineToRelative(-0.1f) - curveToRelative(-1.08f, 0.0f, -1.95f, 0.87f, -1.95f, 1.95f) - verticalLineToRelative(0.37f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 1.1f, 1.63f) - lineToRelative(0.57f, 0.22f) - lineToRelative(0.7f, 0.43f) - curveToRelative(0.08f, 0.05f, 0.13f, 0.13f, 0.13f, 0.22f) - verticalLineToRelative(0.23f) - curveToRelative(0.0f, 0.25f, -0.2f, 0.45f, -0.45f, 0.45f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.45f, 0.45f, 0.0f, false, true, -0.45f, -0.45f) - lineTo(13.5f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(0.05f) - curveToRelative(0.0f, 1.08f, 0.87f, 1.95f, 1.95f, 1.95f) - horizontalLineToRelative(0.1f) - close() - moveTo(11.0f, 20.05f) - arcTo(1.94f, 1.94f, 0.0f, false, true, 9.05f, 22.0f) - horizontalLineToRelative(-0.1f) - arcTo(1.95f, 1.95f, 0.0f, false, true, 7.0f, 20.05f) - lineTo(7.0f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -0.72f) - curveToRelative(0.3f, 0.1f, 0.53f, 0.38f, 0.53f, 0.72f) - verticalLineToRelative(0.05f) - arcToRelative(0.45f, 0.45f, 0.0f, false, false, 0.45f, 0.45f) - horizontalLineToRelative(0.1f) - curveToRelative(0.25f, 0.0f, 0.45f, -0.2f, 0.45f, -0.45f) - verticalLineToRelative(-0.23f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.12f, -0.22f) - lineToRelative(-0.71f, -0.43f) - lineToRelative(-0.57f, -0.22f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 7.0f, 17.32f) - verticalLineToRelative(-0.37f) - curveTo(7.0f, 15.87f, 7.87f, 15.0f, 8.95f, 15.0f) - horizontalLineToRelative(0.1f) - curveToRelative(1.08f, 0.0f, 1.95f, 0.87f, 1.95f, 1.95f) - lineTo(11.0f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.53f, -0.72f) - verticalLineToRelative(-0.05f) - arcToRelative(0.45f, 0.45f, 0.0f, false, false, -0.45f, -0.45f) - horizontalLineToRelative(-0.1f) - curveToRelative(-0.25f, 0.0f, -0.45f, 0.2f, -0.45f, 0.45f) - verticalLineToRelative(0.23f) - curveToRelative(0.0f, 0.1f, 0.05f, 0.17f, 0.12f, 0.22f) - lineToRelative(0.71f, 0.43f) - lineToRelative(0.57f, 0.22f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 1.1f, 1.63f) - verticalLineToRelative(0.37f) - close() - moveTo(5.95f, 22.0f) - lineToRelative(0.05f, -0.05f) - lineTo(6.0f, 22.0f) - horizontalLineToRelative(-0.05f) - close() - moveTo(4.83f, 21.62f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 6.0f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, 0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, -0.75f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) - verticalLineToRelative(2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.83f, 2.12f) - close() - moveTo(13.5f, 8.0f) - lineTo(13.5f, 2.5f) - lineToRelative(6.0f, 6.0f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - } - } - return _documentCss!! - } - -private var _documentCss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentData.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentData.kt deleted file mode 100644 index ebb1998b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentData.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentData: ImageVector - get() { - if (_documentData != null) { - return _documentData!! - } - _documentData = fluentIcon(name = "Filled.DocumentData") { - fluentPath { - moveTo(12.0f, 8.0f) - lineTo(12.0f, 2.0f) - lineTo(6.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(16.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 10.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - close() - moveTo(12.0f, 12.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-5.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(8.75f, 16.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(15.25f, 14.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(13.5f, 8.0f) - lineTo(13.5f, 2.5f) - lineToRelative(6.0f, 6.0f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - } - } - return _documentData!! - } - -private var _documentData: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentDataLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentDataLink.kt deleted file mode 100644 index 6b3bfbff..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentDataLink.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentDataLink: ImageVector - get() { - if (_documentDataLink != null) { - return _documentDataLink!! - } - _documentDataLink = fluentIcon(name = "Filled.DocumentDataLink") { - fluentPath { - moveTo(12.0f, 8.0f) - lineTo(12.0f, 2.0f) - lineTo(6.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(10.56f) - curveToRelative(0.24f, -0.04f, 0.5f, -0.06f, 0.75f, -0.06f) - horizontalLineToRelative(3.5f) - curveToRelative(1.14f, 0.0f, 2.18f, 0.4f, 3.0f, 1.07f) - verticalLineToRelative(-2.82f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(4.98f) - arcToRelative(4.74f, 4.74f, 0.0f, false, true, -0.63f, 4.27f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 10.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - close() - moveTo(15.25f, 14.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(13.5f, 8.0f) - lineTo(13.5f, 2.5f) - lineToRelative(6.0f, 6.0f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - moveTo(12.0f, 19.25f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.75f, -3.75f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - lineTo(8.25f, 23.0f) - horizontalLineToRelative(0.2f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 12.0f, 19.24f) - close() - moveTo(5.5f, 16.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-0.2f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - lineTo(4.6f, 21.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(9.0f, 19.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - } - } - return _documentDataLink!! - } - -private var _documentDataLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentDatabase.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentDatabase.kt deleted file mode 100644 index 47a36c95..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentDatabase.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentDatabase: ImageVector - get() { - if (_documentDatabase != null) { - return _documentDatabase!! - } - _documentDatabase = fluentIcon(name = "Filled.DocumentDatabase") { - fluentPath { - moveTo(12.0f, 2.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-6.53f) - curveToRelative(0.32f, -0.42f, 0.53f, -0.92f, 0.53f, -1.5f) - verticalLineToRelative(-6.2f) - arcToRelative(2.65f, 2.65f, 0.0f, false, false, -0.85f, -1.65f) - arcToRelative(5.17f, 5.17f, 0.0f, false, false, -1.8f, -1.09f) - arcToRelative(8.66f, 8.66f, 0.0f, false, false, -1.7f, -0.43f) - arcToRelative(10.68f, 10.68f, 0.0f, false, false, -3.65f, 0.06f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.0f) - close() - moveTo(11.0f, 20.5f) - curveToRelative(0.0f, 0.56f, -0.37f, 1.08f, -1.0f, 1.5f) - curveToRelative(-0.91f, 0.6f, -2.36f, 1.0f, -4.0f, 1.0f) - curveToRelative(-2.05f, 0.0f, -3.81f, -0.62f, -4.58f, -1.5f) - curveToRelative(-0.27f, -0.3f, -0.42f, -0.64f, -0.42f, -1.0f) - verticalLineToRelative(-4.0f) - curveToRelative(0.31f, 0.26f, 0.66f, 0.49f, 1.02f, 0.66f) - curveToRelative(0.57f, 0.29f, 1.25f, 0.51f, 1.98f, 0.65f) - arcToRelative(10.53f, 10.53f, 0.0f, false, false, 5.0f, -0.25f) - curveToRelative(0.35f, -0.11f, 0.68f, -0.25f, 0.98f, -0.4f) - lineTo(10.0f, 17.16f) - lineToRelative(0.02f, -0.02f) - curveToRelative(0.34f, -0.17f, 0.68f, -0.39f, 0.98f, -0.65f) - verticalLineToRelative(4.01f) - close() - moveTo(6.0f, 17.0f) - curveToRelative(-0.71f, 0.0f, -1.39f, -0.07f, -2.0f, -0.2f) - curveToRelative(-1.77f, -0.4f, -3.0f, -1.27f, -3.0f, -2.3f) - curveToRelative(0.0f, -1.03f, 1.23f, -1.9f, 3.0f, -2.3f) - arcToRelative(9.42f, 9.42f, 0.0f, false, true, 5.0f, 0.3f) - curveToRelative(1.21f, 0.46f, 2.0f, 1.18f, 2.0f, 2.0f) - curveToRelative(0.0f, 0.43f, -0.21f, 0.83f, -0.6f, 1.18f) - arcToRelative(0.82f, 0.82f, 0.0f, false, true, -0.06f, 0.06f) - arcToRelative(3.83f, 3.83f, 0.0f, false, true, -1.15f, 0.69f) - arcToRelative(5.95f, 5.95f, 0.0f, false, true, -1.26f, 0.38f) - arcToRelative(8.58f, 8.58f, 0.0f, false, true, -0.55f, 0.1f) - horizontalLineToRelative(-0.02f) - arcTo(9.7f, 9.7f, 0.0f, false, true, 6.0f, 17.0f) - close() - moveTo(13.5f, 2.5f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.5f) - lineToRelative(-6.0f, -6.0f) - close() - } - } - return _documentDatabase!! - } - -private var _documentDatabase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentDismiss.kt deleted file mode 100644 index 789d1032..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentDismiss.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentDismiss: ImageVector - get() { - if (_documentDismiss != null) { - return _documentDismiss!! - } - _documentDismiss = fluentIcon(name = "Filled.DocumentDismiss") { - fluentPath { - moveTo(12.0f, 2.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-6.81f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.0f) - close() - moveTo(13.5f, 2.5f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.5f) - lineToRelative(-6.0f, -6.0f) - close() - moveTo(6.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, -11.0f) - close() - moveTo(8.98f, 15.73f) - lineTo(7.2f, 17.5f) - lineToRelative(1.77f, 1.77f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -0.7f, 0.7f) - lineTo(6.5f, 18.22f) - lineToRelative(-1.77f, 1.76f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -0.7f, -0.7f) - lineToRelative(1.76f, -1.77f) - lineToRelative(-1.76f, -1.77f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.7f, -0.7f) - lineToRelative(1.77f, 1.76f) - lineToRelative(1.77f, -1.77f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, 0.71f) - close() - } - } - return _documentDismiss!! - } - -private var _documentDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentEdit.kt deleted file mode 100644 index b9ab7c52..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentEdit.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentEdit: ImageVector - get() { - if (_documentEdit != null) { - return _documentEdit!! - } - _documentEdit = fluentIcon(name = "Filled.DocumentEdit") { - fluentPath { - moveTo(12.0f, 2.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.92f) - arcToRelative(4.3f, 4.3f, 0.0f, false, false, -1.56f, 0.97f) - lineToRelative(-6.05f, 6.1f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.79f, -0.73f, 1.27f) - lineToRelative(-0.52f, 2.03f) - curveToRelative(-0.16f, 0.6f, -0.04f, 1.17f, 0.24f, 1.63f) - lineTo(5.5f, 22.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 4.0f, 20.5f) - verticalLineToRelative(-17.0f) - curveTo(4.0f, 2.67f, 4.67f, 2.0f, 5.5f, 2.0f) - lineTo(12.0f, 2.0f) - close() - moveTo(13.5f, 2.5f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.5f) - lineToRelative(-6.0f, -6.0f) - close() - moveTo(12.2f, 17.57f) - lineTo(18.1f, 11.67f) - arcToRelative(2.29f, 2.29f, 0.0f, true, true, 3.23f, 3.23f) - lineToRelative(-5.9f, 5.9f) - curveToRelative(-0.35f, 0.35f, -0.78f, 0.6f, -1.25f, 0.71f) - lineToRelative(-1.83f, 0.46f) - curveToRelative(-0.8f, 0.2f, -1.52f, -0.52f, -1.32f, -1.32f) - lineToRelative(0.46f, -1.83f) - curveToRelative(0.12f, -0.47f, 0.36f, -0.9f, 0.7f, -1.25f) - close() - } - } - return _documentEdit!! - } - -private var _documentEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentEndnote.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentEndnote.kt deleted file mode 100644 index 5038aa04..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentEndnote.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentEndnote: ImageVector - get() { - if (_documentEndnote != null) { - return _documentEndnote!! - } - _documentEndnote = fluentIcon(name = "Filled.DocumentEndnote") { - fluentPath { - moveTo(12.0f, 2.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - lineTo(13.0f, 22.0f) - verticalLineToRelative(-8.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - lineTo(4.0f, 12.0f) - lineTo(4.0f, 3.5f) - curveTo(4.0f, 2.67f, 4.67f, 2.0f, 5.5f, 2.0f) - lineTo(12.0f, 2.0f) - close() - moveTo(13.5f, 2.5f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.5f) - lineToRelative(-6.0f, -6.0f) - close() - moveTo(7.25f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - lineTo(5.75f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-3.5f) - close() - moveTo(7.25f, 15.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(4.5f, 13.75f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(2.5f, 14.5f) - verticalLineToRelative(7.0f) - horizontalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(2.5f, 23.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 1.0f, 21.5f) - verticalLineToRelative(-7.0f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(1.25f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(9.25f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.25f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(7.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - lineTo(9.25f, 23.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.25f) - verticalLineToRelative(-7.0f) - lineTo(9.25f, 14.5f) - close() - } - } - return _documentEndnote!! - } - -private var _documentEndnote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentError.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentError.kt deleted file mode 100644 index 667d5498..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentError.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentError: ImageVector - get() { - if (_documentError != null) { - return _documentError!! - } - _documentError = fluentIcon(name = "Filled.DocumentError") { - fluentPath { - moveTo(12.0f, 2.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-6.81f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.0f) - close() - moveTo(13.5f, 2.5f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.5f) - lineToRelative(-6.0f, -6.0f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(6.5f, 14.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(6.5f, 21.13f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.25f) - close() - } - } - return _documentError!! - } - -private var _documentError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentFit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentFit.kt deleted file mode 100644 index 940ff725..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentFit.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentFit: ImageVector - get() { - if (_documentFit != null) { - return _documentFit!! - } - _documentFit = fluentIcon(name = "Filled.DocumentFit") { - fluentPath { - moveTo(6.25f, 2.0f) - curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) - verticalLineToRelative(15.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 4.25f) - curveTo(20.0f, 3.01f, 19.0f, 2.0f, 17.75f, 2.0f) - lineTo(6.25f, 2.0f) - close() - moveTo(9.0f, 6.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(7.0f, 7.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(9.0f, 6.5f) - close() - moveTo(9.0f, 17.5f) - horizontalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(9.0f, 19.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - verticalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(8.5f, 17.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - close() - moveTo(15.5f, 7.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - horizontalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(15.0f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - verticalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(15.5f, 7.0f) - close() - moveTo(15.0f, 17.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(17.0f, 17.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(15.0f, 17.5f) - close() - } - } - return _documentFit!! - } - -private var _documentFit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentFlowchart.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentFlowchart.kt deleted file mode 100644 index c48235de..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentFlowchart.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentFlowchart: ImageVector - get() { - if (_documentFlowchart != null) { - return _documentFlowchart!! - } - _documentFlowchart = fluentIcon(name = "Filled.DocumentFlowchart") { - fluentPath { - moveTo(12.0f, 8.0f) - lineTo(12.0f, 2.0f) - lineTo(6.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(16.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 10.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - close() - moveTo(6.5f, 8.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-0.5f) - verticalLineToRelative(2.69f) - lineToRelative(1.56f, 1.56f) - horizontalLineToRelative(2.69f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-0.5f) - horizontalLineToRelative(-2.69f) - lineToRelative(-1.78f, 1.78f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(1.78f, -1.78f) - lineTo(7.75f, 11.5f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-2.5f) - close() - moveTo(13.5f, 8.0f) - lineTo(13.5f, 2.5f) - lineToRelative(6.0f, 6.0f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - } - } - return _documentFlowchart!! - } - -private var _documentFlowchart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentFolder.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentFolder.kt deleted file mode 100644 index 2dabf2b9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentFolder.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentFolder: ImageVector - get() { - if (_documentFolder != null) { - return _documentFolder!! - } - _documentFolder = fluentIcon(name = "Filled.DocumentFolder") { - fluentPath { - moveTo(18.5f, 6.75f) - verticalLineTo(4.63f) - curveToRelative(0.87f, 0.3f, 1.5f, 1.14f, 1.5f, 2.12f) - verticalLineToRelative(7.5f) - curveToRelative(-0.38f, -0.16f, -0.8f, -0.25f, -1.25f, -0.25f) - horizontalLineToRelative(-0.25f) - verticalLineTo(6.75f) - close() - moveTo(4.0f, 4.25f) - verticalLineToRelative(3.0f) - curveToRelative(0.38f, -0.16f, 0.8f, -0.25f, 1.25f, -0.25f) - horizontalLineTo(8.1f) - curveToRelative(0.9f, 0.0f, 1.76f, 0.38f, 2.38f, 1.04f) - lineTo(16.0f, 14.0f) - horizontalLineToRelative(1.49f) - verticalLineTo(4.25f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-9.0f) - curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) - close() - moveTo(5.25f, 8.0f) - curveTo(4.01f, 8.0f, 3.0f, 9.0f, 3.0f, 10.25f) - verticalLineToRelative(8.5f) - curveTo(3.0f, 20.55f, 4.46f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineTo(15.9f) - curveToRelative(-0.2f, 0.0f, -0.4f, -0.09f, -0.55f, -0.24f) - lineToRelative(-5.6f, -6.04f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 8.1f, 8.0f) - horizontalLineTo(5.25f) - close() - } - } - return _documentFolder!! - } - -private var _documentFolder: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentFooter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentFooter.kt deleted file mode 100644 index eaeaaa2e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentFooter.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentFooter: ImageVector - get() { - if (_documentFooter != null) { - return _documentFooter!! - } - _documentFooter = fluentIcon(name = "Filled.DocumentFooter") { - fluentPath { - moveTo(17.75f, 2.0f) - curveToRelative(1.19f, 0.0f, 2.16f, 0.92f, 2.24f, 2.1f) - verticalLineToRelative(15.65f) - curveToRelative(0.0f, 1.18f, -0.92f, 2.16f, -2.09f, 2.24f) - horizontalLineTo(6.25f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.25f, -2.1f) - verticalLineTo(4.25f) - curveTo(4.0f, 3.07f, 4.92f, 2.09f, 6.1f, 2.0f) - horizontalLineToRelative(11.65f) - close() - moveTo(8.5f, 16.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - horizontalLineToRelative(7.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - horizontalLineToRelative(-7.0f) - close() - } - } - return _documentFooter!! - } - -private var _documentFooter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentFooterDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentFooterDismiss.kt deleted file mode 100644 index 6b9bdccb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentFooterDismiss.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentFooterDismiss: ImageVector - get() { - if (_documentFooterDismiss != null) { - return _documentFooterDismiss!! - } - _documentFooterDismiss = fluentIcon(name = "Filled.DocumentFooterDismiss") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.86f, 4.15f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.71f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, -0.71f) - lineTo(18.21f, 6.5f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineTo(17.5f, 5.79f) - lineToRelative(-1.64f, -1.64f) - close() - moveTo(17.5f, 13.0f) - curveToRelative(0.89f, 0.0f, 1.73f, -0.17f, 2.5f, -0.5f) - verticalLineToRelative(7.25f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - lineTo(6.25f, 22.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveToRelative(0.0f, -1.2f, 0.92f, -2.17f, 2.1f, -2.25f) - lineTo(12.82f, 2.0f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, 4.69f, 11.0f) - close() - moveTo(8.5f, 16.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - horizontalLineToRelative(7.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - horizontalLineToRelative(-7.0f) - close() - } - } - return _documentFooterDismiss!! - } - -private var _documentFooterDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentHeader.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentHeader.kt deleted file mode 100644 index 704c2b79..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentHeader.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentHeader: ImageVector - get() { - if (_documentHeader != null) { - return _documentHeader!! - } - _documentHeader = fluentIcon(name = "Filled.DocumentHeader") { - fluentPath { - moveTo(17.75f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - horizontalLineTo(6.25f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(4.0f, 19.75f) - verticalLineTo(4.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(6.25f, 2.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(8.51f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - horizontalLineToRelative(7.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - horizontalLineToRelative(-7.0f) - close() - } - } - return _documentHeader!! - } - -private var _documentHeader: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentHeaderArrowDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentHeaderArrowDown.kt deleted file mode 100644 index e20313bf..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentHeaderArrowDown.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentHeaderArrowDown: ImageVector - get() { - if (_documentHeaderArrowDown != null) { - return _documentHeaderArrowDown!! - } - _documentHeaderArrowDown = fluentIcon(name = "Filled.DocumentHeaderArrowDown") { - fluentPath { - moveTo(17.75f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(7.25f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.81f, 22.0f) - lineTo(6.25f, 22.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(6.25f, 2.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(8.51f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - horizontalLineToRelative(7.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - horizontalLineToRelative(-7.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(18.0f, 14.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(4.8f) - lineToRelative(-1.65f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.5f, 2.5f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineTo(18.0f, 19.29f) - lineTo(18.0f, 14.5f) - close() - } - } - return _documentHeaderArrowDown!! - } - -private var _documentHeaderArrowDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentHeaderDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentHeaderDismiss.kt deleted file mode 100644 index 0b622827..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentHeaderDismiss.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentHeaderDismiss: ImageVector - get() { - if (_documentHeaderDismiss != null) { - return _documentHeaderDismiss!! - } - _documentHeaderDismiss = fluentIcon(name = "Filled.DocumentHeaderDismiss") { - fluentPath { - moveTo(17.75f, 2.0f) - curveToRelative(1.19f, 0.0f, 2.16f, 0.92f, 2.24f, 2.1f) - verticalLineToRelative(7.4f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.8f, 22.0f) - lineTo(6.26f, 22.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(4.0f, 19.74f) - lineTo(4.0f, 4.25f) - curveToRelative(0.0f, -1.2f, 0.92f, -2.17f, 2.1f, -2.24f) - lineTo(6.25f, 2.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(8.5f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - horizontalLineToRelative(7.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - horizontalLineToRelative(-7.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.86f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.71f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-1.64f, -1.65f) - lineToRelative(1.64f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.71f) - lineToRelative(-1.65f, 1.64f) - lineToRelative(-1.64f, -1.64f) - close() - } - } - return _documentHeaderDismiss!! - } - -private var _documentHeaderDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentHeaderFooter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentHeaderFooter.kt deleted file mode 100644 index 60b35630..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentHeaderFooter.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentHeaderFooter: ImageVector - get() { - if (_documentHeaderFooter != null) { - return _documentHeaderFooter!! - } - _documentHeaderFooter = fluentIcon(name = "Filled.DocumentHeaderFooter") { - fluentPath { - moveTo(17.75f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - lineTo(6.25f, 22.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(6.25f, 2.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(7.01f, 6.5f) - curveTo(7.0f, 7.33f, 7.68f, 8.0f, 8.5f, 8.0f) - horizontalLineToRelative(7.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - horizontalLineToRelative(-7.0f) - curveTo(7.68f, 5.0f, 7.0f, 5.68f, 7.0f, 6.5f) - close() - moveTo(7.01f, 17.5f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(7.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - horizontalLineToRelative(-7.0f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.68f, -1.5f, 1.5f) - close() - } - } - return _documentHeaderFooter!! - } - -private var _documentHeaderFooter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentHeart.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentHeart.kt deleted file mode 100644 index 2c569cfc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentHeart.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentHeart: ImageVector - get() { - if (_documentHeart != null) { - return _documentHeart!! - } - _documentHeart = fluentIcon(name = "Filled.DocumentHeart") { - fluentPath { - moveTo(12.0f, 2.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - lineTo(9.49f, 22.0f) - lineToRelative(3.17f, -3.17f) - arcToRelative(4.47f, 4.47f, 0.0f, false, false, -5.65f, -6.87f) - curveToRelative(-0.9f, -0.6f, -1.97f, -0.85f, -3.01f, -0.73f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.0f) - close() - moveTo(13.5f, 2.5f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.5f) - lineToRelative(-6.0f, -6.0f) - close() - moveTo(7.01f, 22.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.53f, -0.22f) - lineToRelative(-4.4f, -4.4f) - arcToRelative(3.47f, 3.47f, 0.0f, true, true, 4.9f, -4.91f) - lineToRelative(0.03f, 0.04f) - lineToRelative(0.04f, -0.04f) - arcToRelative(3.47f, 3.47f, 0.0f, true, true, 4.9f, 4.9f) - lineToRelative(-4.4f, 4.41f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.22f) - close() - } - } - return _documentHeart!! - } - -private var _documentHeart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentHeartPulse.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentHeartPulse.kt deleted file mode 100644 index 4e08962b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentHeartPulse.kt +++ /dev/null @@ -1,88 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentHeartPulse: ImageVector - get() { - if (_documentHeartPulse != null) { - return _documentHeartPulse!! - } - _documentHeartPulse = fluentIcon(name = "Filled.DocumentHeartPulse") { - fluentPath { - moveTo(12.0f, 2.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - lineTo(9.73f, 22.0f) - lineToRelative(2.58f, -2.58f) - lineToRelative(0.02f, -0.02f) - lineToRelative(0.34f, -0.34f) - arcToRelative(4.6f, 4.6f, 0.0f, false, false, -5.63f, -7.2f) - curveToRelative(-0.92f, -0.58f, -2.0f, -0.8f, -3.04f, -0.66f) - lineTo(4.0f, 3.5f) - curveTo(4.0f, 2.67f, 4.67f, 2.0f, 5.5f, 2.0f) - lineTo(12.0f, 2.0f) - close() - moveTo(13.5f, 2.5f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.5f) - lineToRelative(-6.0f, -6.0f) - close() - moveTo(2.06f, 13.22f) - arcToRelative(3.6f, 3.6f, 0.0f, false, true, 4.97f, -0.12f) - arcToRelative(3.6f, 3.6f, 0.0f, false, true, 5.99f, 2.9f) - horizontalLineToRelative(-2.05f) - lineToRelative(-0.73f, -0.74f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.55f, 0.08f) - lineToRelative(-0.5f, 0.55f) - lineToRelative(-0.73f, -1.11f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -3.03f, 0.19f) - lineTo(2.92f, 16.0f) - horizontalLineToRelative(-1.9f) - arcToRelative(3.6f, 3.6f, 0.0f, false, true, 1.04f, -2.78f) - close() - moveTo(3.25f, 19.5f) - lineTo(6.5f, 22.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 0.0f) - lineToRelative(3.26f, -3.25f) - lineTo(8.67f, 19.5f) - lineToRelative(-0.36f, 0.41f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -2.77f, -0.19f) - lineToRelative(-0.14f, -0.22f) - lineTo(3.25f, 19.5f) - close() - moveTo(5.62f, 15.33f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.3f, 0.08f) - lineTo(3.55f, 17.0f) - lineTo(1.75f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(4.0f, 18.5f) - curveToRelative(0.28f, 0.0f, 0.54f, -0.16f, 0.67f, -0.41f) - lineToRelative(0.42f, -0.85f) - lineToRelative(1.29f, 1.93f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.18f, 0.08f) - lineToRelative(1.47f, -1.66f) - lineToRelative(0.69f, 0.69f) - curveToRelative(0.14f, 0.14f, 0.33f, 0.22f, 0.53f, 0.22f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.69f) - lineToRelative(-1.03f, -1.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.1f, 0.03f) - lineTo(7.1f, 17.53f) - lineToRelative(-1.47f, -2.2f) - close() - } - } - return _documentHeartPulse!! - } - -private var _documentHeartPulse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentJavascript.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentJavascript.kt deleted file mode 100644 index 12fbf3c9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentJavascript.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentJavascript: ImageVector - get() { - if (_documentJavascript != null) { - return _documentJavascript!! - } - _documentJavascript = fluentIcon(name = "Filled.DocumentJavascript") { - fluentPath { - moveTo(12.0f, 8.0f) - lineTo(12.0f, 2.0f) - lineTo(6.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(10.02f) - arcToRelative(1.76f, 1.76f, 0.0f, false, true, 1.8f, 0.91f) - curveToRelative(0.54f, -0.57f, 1.3f, -0.93f, 2.15f, -0.93f) - horizontalLineToRelative(0.1f) - arcTo(2.95f, 2.95f, 0.0f, false, true, 11.0f, 16.95f) - lineTo(11.0f, 17.0f) - curveToRelative(0.0f, 0.45f, -0.17f, 0.86f, -0.45f, 1.17f) - curveToRelative(0.29f, 0.44f, 0.45f, 0.96f, 0.45f, 1.5f) - verticalLineToRelative(0.38f) - curveToRelative(0.0f, 0.75f, -0.28f, 1.43f, -0.74f, 1.95f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 10.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - close() - moveTo(13.5f, 8.0f) - lineTo(13.5f, 2.5f) - lineToRelative(6.0f, 6.0f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - moveTo(4.25f, 15.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(5.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(2.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-4.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(7.95f, 15.0f) - curveTo(6.87f, 15.0f, 6.0f, 15.87f, 6.0f, 16.95f) - verticalLineToRelative(0.23f) - curveToRelative(0.0f, 0.62f, 0.32f, 1.19f, 0.85f, 1.5f) - lineToRelative(1.53f, 0.92f) - curveToRelative(0.07f, 0.05f, 0.12f, 0.13f, 0.12f, 0.22f) - verticalLineToRelative(0.23f) - curveToRelative(0.0f, 0.25f, -0.2f, 0.45f, -0.45f, 0.45f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.45f, 0.45f, 0.0f, false, true, -0.45f, -0.45f) - lineTo(7.5f, 20.0f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 6.0f, 20.0f) - verticalLineToRelative(0.05f) - curveTo(6.0f, 21.13f, 6.87f, 22.0f, 7.95f, 22.0f) - horizontalLineToRelative(0.1f) - curveToRelative(1.08f, 0.0f, 1.95f, -0.87f, 1.95f, -1.95f) - verticalLineToRelative(-0.23f) - curveToRelative(0.0f, -0.62f, -0.32f, -1.19f, -0.85f, -1.5f) - lineToRelative(-1.53f, -0.92f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.12f, -0.22f) - verticalLineToRelative(-0.23f) - curveToRelative(0.0f, -0.25f, 0.2f, -0.45f, 0.45f, -0.45f) - horizontalLineToRelative(0.1f) - curveToRelative(0.25f, 0.0f, 0.45f, 0.2f, 0.45f, 0.45f) - lineTo(8.5f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.05f) - curveTo(10.0f, 15.87f, 9.13f, 15.0f, 8.05f, 15.0f) - horizontalLineToRelative(-0.1f) - close() - } - } - return _documentJavascript!! - } - -private var _documentJavascript: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentLandscape.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentLandscape.kt deleted file mode 100644 index ac803f8a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentLandscape.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentLandscape: ImageVector - get() { - if (_documentLandscape != null) { - return _documentLandscape!! - } - _documentLandscape = fluentIcon(name = "Filled.DocumentLandscape") { - fluentPath { - moveTo(22.0f, 12.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(14.0f, 4.0f) - lineTo(4.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(12.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(16.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - verticalLineToRelative(-6.0f) - close() - moveTo(21.5f, 10.5f) - lineTo(16.0f, 10.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(15.5f, 4.5f) - lineToRelative(6.0f, 6.0f) - close() - } - } - return _documentLandscape!! - } - -private var _documentLandscape: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentLandscapeData.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentLandscapeData.kt deleted file mode 100644 index b62a64ee..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentLandscapeData.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentLandscapeData: ImageVector - get() { - if (_documentLandscapeData != null) { - return _documentLandscapeData!! - } - _documentLandscapeData = fluentIcon(name = "Filled.DocumentLandscapeData") { - fluentPath { - moveTo(2.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) - verticalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) - lineTo(4.75f, 20.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) - lineTo(2.0f, 6.75f) - close() - moveTo(12.0f, 7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 4.0f, 0.0f) - lineTo(14.0f, 9.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - close() - moveTo(7.0f, 12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 4.0f, 0.0f) - verticalLineToRelative(-1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - close() - moveTo(15.0f, 12.0f) - verticalLineToRelative(3.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 4.0f, 0.0f) - verticalLineToRelative(-3.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, -4.0f, 0.0f) - close() - } - } - return _documentLandscapeData!! - } - -private var _documentLandscapeData: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentLandscapeSplit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentLandscapeSplit.kt deleted file mode 100644 index db8c9b64..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentLandscapeSplit.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentLandscapeSplit: ImageVector - get() { - if (_documentLandscapeSplit != null) { - return _documentLandscapeSplit!! - } - _documentLandscapeSplit = fluentIcon(name = "Filled.DocumentLandscapeSplit") { - fluentPath { - moveTo(10.5f, 4.0f) - lineTo(4.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(12.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.5f) - lineTo(10.5f, 4.0f) - close() - moveTo(12.0f, 20.0f) - horizontalLineToRelative(8.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - verticalLineToRelative(-6.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(14.0f, 4.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(16.0f) - close() - moveTo(16.0f, 10.5f) - horizontalLineToRelative(5.5f) - lineToRelative(-6.0f, -6.0f) - lineTo(15.5f, 10.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - close() - } - } - return _documentLandscapeSplit!! - } - -private var _documentLandscapeSplit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentLandscapeSplitHint.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentLandscapeSplitHint.kt deleted file mode 100644 index 77712215..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentLandscapeSplitHint.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentLandscapeSplitHint: ImageVector - get() { - if (_documentLandscapeSplitHint != null) { - return _documentLandscapeSplitHint!! - } - _documentLandscapeSplitHint = fluentIcon(name = "Filled.DocumentLandscapeSplitHint") { - fluentPath { - moveTo(12.75f, 4.0f) - lineTo(14.0f, 4.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-7.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(12.0f, 4.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(21.49f, 10.43f) - lineTo(21.56f, 10.5f) - lineTo(16.0f, 10.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(15.5f, 4.44f) - lineToRelative(0.07f, 0.07f) - lineToRelative(5.92f, 5.92f) - close() - moveTo(3.5f, 10.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-3.5f) - close() - moveTo(7.0f, 4.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.0f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 4.75f) - close() - moveTo(7.75f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.0f) - close() - moveTo(2.0f, 6.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(4.0f, 5.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(2.0f, 6.0f) - close() - moveTo(4.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - verticalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(3.5f, 18.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(4.0f, 20.0f) - close() - } - } - return _documentLandscapeSplitHint!! - } - -private var _documentLandscapeSplitHint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentLink.kt deleted file mode 100644 index bcae3483..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentLink.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentLink: ImageVector - get() { - if (_documentLink != null) { - return _documentLink!! - } - _documentLink = fluentIcon(name = "Filled.DocumentLink") { - fluentPath { - moveTo(12.0f, 2.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-5.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, -4.0f, -8.0f) - lineTo(4.0f, 14.0f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.0f) - close() - moveTo(13.5f, 2.5f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.5f) - lineToRelative(-6.0f, -6.0f) - close() - moveTo(5.75f, 15.75f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 5.0f, 15.0f) - horizontalLineToRelative(-0.2f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.2f, 8.0f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-0.16f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.16f, -5.0f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(13.0f, 19.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, -4.0f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(0.16f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -0.16f, 5.0f) - horizontalLineToRelative(-0.1f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 9.0f, 23.0f) - horizontalLineToRelative(0.2f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.8f, -4.0f) - close() - moveTo(8.75f, 18.25f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - } - } - return _documentLink!! - } - -private var _documentLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentLock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentLock.kt deleted file mode 100644 index cf0df489..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentLock.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentLock: ImageVector - get() { - if (_documentLock != null) { - return _documentLock!! - } - _documentLock = fluentIcon(name = "Filled.DocumentLock") { - fluentPath { - moveTo(12.0f, 2.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-6.05f) - curveToRelative(0.03f, -0.16f, 0.05f, -0.33f, 0.05f, -0.5f) - verticalLineToRelative(-5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.0f, -2.45f) - lineTo(10.0f, 14.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -6.0f, -2.45f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.0f) - close() - moveTo(13.5f, 2.5f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.5f) - lineToRelative(-6.0f, -6.0f) - close() - moveTo(4.0f, 15.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(6.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(9.0f, 15.0f) - verticalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) - verticalLineToRelative(1.0f) - close() - moveTo(5.5f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(7.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - } - } - return _documentLock!! - } - -private var _documentLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentMargins.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentMargins.kt deleted file mode 100644 index f5ce654f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentMargins.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentMargins: ImageVector - get() { - if (_documentMargins != null) { - return _documentMargins!! - } - _documentMargins = fluentIcon(name = "Filled.DocumentMargins") { - fluentPath { - moveTo(15.5f, 2.0f) - horizontalLineToRelative(-7.0f) - verticalLineToRelative(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(7.0f, 2.0f) - horizontalLineToRelative(-0.75f) - curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) - verticalLineToRelative(15.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - lineTo(7.0f, 22.0f) - verticalLineToRelative(-4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(8.5f, 22.0f) - horizontalLineToRelative(7.0f) - verticalLineToRelative(-4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(17.0f, 22.0f) - horizontalLineToRelative(0.75f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 4.25f) - curveTo(20.0f, 3.01f, 19.0f, 2.0f, 17.75f, 2.0f) - lineTo(17.0f, 2.0f) - verticalLineToRelative(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(15.5f, 2.0f) - close() - moveTo(7.75f, 8.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-5.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(17.0f, 9.25f) - verticalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - } - } - return _documentMargins!! - } - -private var _documentMargins: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentMention.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentMention.kt deleted file mode 100644 index cf4e18b1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentMention.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentMention: ImageVector - get() { - if (_documentMention != null) { - return _documentMention!! - } - _documentMention = fluentIcon(name = "Filled.DocumentMention") { - fluentPath { - moveTo(12.0f, 2.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-7.98f) - curveToRelative(0.0f, -0.15f, -0.02f, -0.3f, -0.07f, -0.46f) - curveToRelative(1.97f, -0.21f, 3.25f, -2.1f, 3.25f, -4.04f) - arcTo(6.7f, 6.7f, 0.0f, false, false, 4.0f, 11.28f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.0f) - close() - moveTo(13.5f, 2.5f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.5f) - lineToRelative(-6.0f, -6.0f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -3.84f, 5.24f) - lineToRelative(0.23f, -0.07f) - lineToRelative(0.08f, -0.04f) - arcToRelative(0.66f, 0.66f, 0.0f, false, false, -0.53f, -1.2f) - lineToRelative(-0.17f, 0.06f) - lineToRelative(-0.25f, 0.06f) - arcToRelative(4.2f, 4.2f, 0.0f, false, true, -5.2f, -4.05f) - arcToRelative(4.18f, 4.18f, 0.0f, false, true, 8.36f, 0.0f) - curveToRelative(0.0f, 0.9f, -0.55f, 1.54f, -1.1f, 1.54f) - curveToRelative(-0.41f, 0.0f, -0.66f, -0.45f, -0.66f, -1.54f) - verticalLineToRelative(-2.29f) - arcToRelative(0.66f, 0.66f, 0.0f, false, false, -1.23f, -0.24f) - arcToRelative(2.2f, 2.2f, 0.0f, false, false, -1.19f, -0.33f) - curveToRelative(-1.49f, 0.0f, -2.42f, 1.33f, -2.42f, 2.86f) - curveToRelative(0.0f, 1.53f, 0.93f, 2.86f, 2.42f, 2.86f) - curveToRelative(0.67f, 0.0f, 1.23f, -0.27f, 1.64f, -0.7f) - curveToRelative(0.32f, 0.44f, 0.8f, 0.7f, 1.44f, 0.7f) - curveToRelative(1.33f, 0.0f, 2.42f, -1.27f, 2.42f, -2.86f) - close() - moveTo(5.4f, 17.5f) - curveToRelative(0.0f, -0.88f, 0.46f, -1.54f, 1.1f, -1.54f) - curveToRelative(0.64f, 0.0f, 1.1f, 0.66f, 1.1f, 1.54f) - reflectiveCurveToRelative(-0.46f, 1.54f, -1.1f, 1.54f) - curveToRelative(-0.64f, 0.0f, -1.1f, -0.66f, -1.1f, -1.54f) - close() - } - } - return _documentMention!! - } - -private var _documentMention: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentMultiple.kt deleted file mode 100644 index 286c51d5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentMultiple.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentMultiple: ImageVector - get() { - if (_documentMultiple != null) { - return _documentMultiple!! - } - _documentMultiple = fluentIcon(name = "Filled.DocumentMultiple") { - fluentPath { - moveTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(4.25f) - verticalLineToRelative(4.75f) - curveTo(10.5f, 7.99f, 11.51f, 9.0f, 12.75f, 9.0f) - horizontalLineToRelative(4.75f) - verticalLineToRelative(8.25f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-9.0f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-13.0f) - close() - } - fluentPath { - moveTo(12.0f, 6.75f) - verticalLineTo(2.47f) - lineToRelative(0.22f, 0.19f) - lineToRelative(4.62f, 4.62f) - lineToRelative(0.2f, 0.22f) - horizontalLineToRelative(-4.29f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - fluentPath { - moveTo(8.75f, 22.0f) - curveToRelative(-0.98f, 0.0f, -1.81f, -0.63f, -2.12f, -1.5f) - horizontalLineToRelative(8.62f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineTo(8.94f) - lineToRelative(0.84f, 0.84f) - curveToRelative(0.42f, 0.42f, 0.66f, 1.0f, 0.66f, 1.59f) - verticalLineToRelative(5.88f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 15.25f, 22.0f) - horizontalLineToRelative(-6.5f) - close() - } - } - return _documentMultiple!! - } - -private var _documentMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentMultiplePercent.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentMultiplePercent.kt deleted file mode 100644 index 96b9a03e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentMultiplePercent.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentMultiplePercent: ImageVector - get() { - if (_documentMultiplePercent != null) { - return _documentMultiplePercent!! - } - _documentMultiplePercent = fluentIcon(name = "Filled.DocumentMultiplePercent") { - fluentPath { - moveTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(4.25f) - verticalLineToRelative(4.75f) - curveTo(10.5f, 7.99f, 11.51f, 9.0f, 12.75f, 9.0f) - horizontalLineToRelative(4.75f) - verticalLineToRelative(8.25f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-2.4f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 9.5f, 17.0f) - horizontalLineToRelative(-0.03f) - lineToRelative(2.02f, -2.01f) - arcTo(1.75f, 1.75f, 0.0f, true, false, 9.0f, 12.5f) - lineTo(7.0f, 14.53f) - verticalLineToRelative(-0.03f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -3.0f, -3.46f) - lineTo(4.0f, 4.25f) - close() - moveTo(13.0f, 20.5f) - curveToRelative(0.0f, 0.54f, -0.12f, 1.05f, -0.34f, 1.5f) - horizontalLineToRelative(2.6f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 20.0f, 17.25f) - verticalLineToRelative(-5.88f) - curveToRelative(0.0f, -0.6f, -0.24f, -1.17f, -0.66f, -1.6f) - lineToRelative(-0.84f, -0.83f) - verticalLineToRelative(8.31f) - curveToRelative(0.0f, 1.8f, -1.45f, 3.25f, -3.25f, 3.25f) - lineTo(13.0f, 20.5f) - close() - moveTo(12.0f, 6.75f) - lineTo(12.0f, 2.47f) - lineToRelative(0.22f, 0.19f) - lineToRelative(4.62f, 4.62f) - lineToRelative(0.2f, 0.22f) - horizontalLineToRelative(-4.29f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(3.5f, 17.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) - close() - moveTo(3.5f, 13.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(9.5f, 23.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) - close() - moveTo(9.5f, 19.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(10.78f, 14.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-7.5f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(7.5f, -7.5f) - close() - } - } - return _documentMultiplePercent!! - } - -private var _documentMultiplePercent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentMultipleProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentMultipleProhibited.kt deleted file mode 100644 index f9f36577..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentMultipleProhibited.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentMultipleProhibited: ImageVector - get() { - if (_documentMultipleProhibited != null) { - return _documentMultipleProhibited!! - } - _documentMultipleProhibited = fluentIcon(name = "Filled.DocumentMultipleProhibited") { - fluentPath { - moveTo(13.0f, 6.75f) - lineTo(13.0f, 2.0f) - lineTo(8.75f, 2.0f) - curveTo(7.51f, 2.0f, 6.5f, 3.0f, 6.5f, 4.25f) - lineTo(6.5f, 11.0f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, 6.19f, 8.5f) - horizontalLineToRelative(5.06f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 9.0f) - horizontalLineToRelative(-4.75f) - curveTo(14.01f, 9.0f, 13.0f, 8.0f, 13.0f, 6.75f) - close() - moveTo(5.5f, 4.63f) - verticalLineToRelative(6.45f) - curveToRelative(-0.52f, 0.08f, -1.03f, 0.22f, -1.5f, 0.42f) - lineTo(4.0f, 6.75f) - curveToRelative(0.0f, -0.98f, 0.63f, -1.81f, 1.5f, -2.12f) - close() - moveTo(15.24f, 22.0f) - lineTo(11.2f, 22.0f) - curveToRelative(0.42f, -0.44f, 0.79f, -0.94f, 1.08f, -1.5f) - horizontalLineToRelative(5.1f) - curveToRelative(-0.31f, 0.88f, -1.15f, 1.5f, -2.13f, 1.5f) - close() - moveTo(14.5f, 6.75f) - lineTo(14.5f, 2.5f) - lineToRelative(5.0f, 5.0f) - horizontalLineToRelative(-4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(2.5f, 17.5f) - curveToRelative(0.0f, 0.83f, 0.25f, 1.6f, 0.7f, 2.25f) - lineToRelative(5.55f, -5.56f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) - close() - moveTo(6.5f, 21.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) - lineToRelative(-5.55f, 5.56f) - curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) - close() - } - } - return _documentMultipleProhibited!! - } - -private var _documentMultipleProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentOnePage.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentOnePage.kt deleted file mode 100644 index a18d04e9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentOnePage.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentOnePage: ImageVector - get() { - if (_documentOnePage != null) { - return _documentOnePage!! - } - _documentOnePage = fluentIcon(name = "Filled.DocumentOnePage") { - fluentPath { - moveTo(6.25f, 2.0f) - curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) - verticalLineToRelative(15.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 4.25f) - curveTo(20.0f, 3.01f, 19.0f, 2.0f, 17.75f, 2.0f) - lineTo(6.25f, 2.0f) - close() - moveTo(7.75f, 6.0f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(7.0f, 16.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(7.75f, 11.0f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - } - } - return _documentOnePage!! - } - -private var _documentOnePage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentOnePageAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentOnePageAdd.kt deleted file mode 100644 index 33ea2f1e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentOnePageAdd.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentOnePageAdd: ImageVector - get() { - if (_documentOnePageAdd != null) { - return _documentOnePageAdd!! - } - _documentOnePageAdd = fluentIcon(name = "Filled.DocumentOnePageAdd") { - fluentPath { - moveTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(11.5f) - curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) - verticalLineToRelative(7.25f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, -3.44f, -0.43f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.31f, -0.07f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.6f) - arcToRelative(6.49f, 6.49f, 0.0f, false, false, -0.54f, 9.5f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 4.25f) - close() - moveTo(16.25f, 6.0f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _documentOnePageAdd!! - } - -private var _documentOnePageAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentOnePageColumns.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentOnePageColumns.kt deleted file mode 100644 index 5c587369..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentOnePageColumns.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentOnePageColumns: ImageVector - get() { - if (_documentOnePageColumns != null) { - return _documentOnePageColumns!! - } - _documentOnePageColumns = fluentIcon(name = "Filled.DocumentOnePageColumns") { - fluentPath { - moveTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(11.5f) - curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 4.25f) - close() - moveTo(8.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(9.5f, 5.75f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 8.75f, 5.0f) - close() - moveTo(16.0f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(16.0f, 5.75f) - close() - } - } - return _documentOnePageColumns!! - } - -private var _documentOnePageColumns: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentOnePageLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentOnePageLink.kt deleted file mode 100644 index caa0841c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentOnePageLink.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentOnePageLink: ImageVector - get() { - if (_documentOnePageLink != null) { - return _documentOnePageLink!! - } - _documentOnePageLink = fluentIcon(name = "Filled.DocumentOnePageLink") { - fluentPath { - moveTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(11.5f) - curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) - verticalLineToRelative(9.58f) - arcToRelative(4.74f, 4.74f, 0.0f, false, false, -1.75f, -0.33f) - horizontalLineToRelative(-3.5f) - arcToRelative(4.75f, 4.75f, 0.0f, false, false, -2.92f, 8.5f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 4.25f) - close() - moveTo(16.25f, 6.0f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(16.25f, 11.0f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(22.0f, 18.25f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.75f, -3.75f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - lineTo(18.25f, 22.0f) - horizontalLineToRelative(0.2f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 22.0f, 18.24f) - close() - moveTo(15.5f, 15.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-0.2f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(19.0f, 18.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - } - } - return _documentOnePageLink!! - } - -private var _documentOnePageLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPageBottomCenter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPageBottomCenter.kt deleted file mode 100644 index 7c90ff9c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPageBottomCenter.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentPageBottomCenter: ImageVector - get() { - if (_documentPageBottomCenter != null) { - return _documentPageBottomCenter!! - } - _documentPageBottomCenter = fluentIcon(name = "Filled.DocumentPageBottomCenter") { - fluentPath { - moveToRelative(11.26f, 16.88f) - lineToRelative(0.23f, -1.5f) - horizontalLineToRelative(1.48f) - lineToRelative(-0.23f, 1.5f) - horizontalLineToRelative(-1.48f) - close() - moveTo(17.75f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.19f, -0.93f, 2.16f, -2.1f, 2.24f) - horizontalLineTo(6.25f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.09f) - lineTo(4.0f, 19.75f) - verticalLineTo(4.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(6.25f, 2.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(12.4f, 19.04f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.48f, 0.24f) - lineToRelative(0.14f, -0.9f) - horizontalLineToRelative(0.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.5f) - lineToRelative(0.24f, -1.5f) - horizontalLineToRelative(0.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.52f) - lineToRelative(0.16f, -1.02f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.48f, -0.24f) - lineToRelative(-0.2f, 1.26f) - horizontalLineToRelative(-1.48f) - lineToRelative(0.16f, -1.02f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.48f, -0.24f) - lineToRelative(-0.2f, 1.26f) - horizontalLineToRelative(-0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.73f) - lineToRelative(-0.24f, 1.5f) - horizontalLineToRelative(-0.99f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.75f) - lineToRelative(-0.1f, 0.66f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.48f, 0.24f) - lineToRelative(0.14f, -0.9f) - horizontalLineToRelative(1.48f) - lineToRelative(-0.1f, 0.66f) - close() - } - } - return _documentPageBottomCenter!! - } - -private var _documentPageBottomCenter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPageBottomLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPageBottomLeft.kt deleted file mode 100644 index 5b8cf872..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPageBottomLeft.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentPageBottomLeft: ImageVector - get() { - if (_documentPageBottomLeft != null) { - return _documentPageBottomLeft!! - } - _documentPageBottomLeft = fluentIcon(name = "Filled.DocumentPageBottomLeft") { - fluentPath { - moveToRelative(9.26f, 16.88f) - lineToRelative(0.23f, -1.5f) - horizontalLineToRelative(1.48f) - lineToRelative(-0.23f, 1.5f) - horizontalLineTo(9.26f) - close() - moveTo(17.75f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.19f, -0.93f, 2.16f, -2.1f, 2.24f) - horizontalLineTo(6.25f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.09f) - lineTo(4.0f, 19.75f) - verticalLineTo(4.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(6.25f, 2.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(10.4f, 19.04f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.48f, 0.24f) - lineToRelative(0.14f, -0.9f) - horizontalLineToRelative(0.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.5f) - lineToRelative(0.24f, -1.5f) - horizontalLineToRelative(0.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.52f) - lineToRelative(0.16f, -1.02f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.48f, -0.24f) - lineToRelative(-0.2f, 1.26f) - horizontalLineTo(9.73f) - lineToRelative(0.16f, -1.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.48f, -0.24f) - lineToRelative(-0.2f, 1.26f) - horizontalLineToRelative(-0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.73f) - lineToRelative(-0.24f, 1.5f) - horizontalLineToRelative(-0.99f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.75f) - lineToRelative(-0.1f, 0.66f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.48f, 0.24f) - lineToRelative(0.14f, -0.9f) - horizontalLineToRelative(1.48f) - lineToRelative(-0.1f, 0.66f) - close() - } - } - return _documentPageBottomLeft!! - } - -private var _documentPageBottomLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPageBottomRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPageBottomRight.kt deleted file mode 100644 index 9c9a527d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPageBottomRight.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentPageBottomRight: ImageVector - get() { - if (_documentPageBottomRight != null) { - return _documentPageBottomRight!! - } - _documentPageBottomRight = fluentIcon(name = "Filled.DocumentPageBottomRight") { - fluentPath { - moveToRelative(13.26f, 16.88f) - lineToRelative(0.23f, -1.5f) - horizontalLineToRelative(1.48f) - lineToRelative(-0.23f, 1.5f) - horizontalLineToRelative(-1.48f) - close() - moveTo(17.75f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.19f, -0.93f, 2.16f, -2.1f, 2.24f) - horizontalLineTo(6.25f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.09f) - lineTo(4.0f, 19.75f) - verticalLineTo(4.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(6.25f, 2.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(14.4f, 19.04f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.48f, 0.24f) - lineToRelative(0.14f, -0.9f) - horizontalLineToRelative(0.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.5f) - lineToRelative(0.24f, -1.5f) - horizontalLineToRelative(0.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.52f) - lineToRelative(0.16f, -1.02f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.48f, -0.24f) - lineToRelative(-0.2f, 1.26f) - horizontalLineToRelative(-1.48f) - lineToRelative(0.16f, -1.02f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.48f, -0.24f) - lineToRelative(-0.2f, 1.26f) - horizontalLineToRelative(-0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.72f) - lineToRelative(-0.23f, 1.5f) - horizontalLineToRelative(-0.99f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.75f) - lineToRelative(-0.1f, 0.66f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.48f, 0.24f) - lineToRelative(0.14f, -0.9f) - horizontalLineToRelative(1.48f) - lineToRelative(-0.1f, 0.66f) - close() - } - } - return _documentPageBottomRight!! - } - -private var _documentPageBottomRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPageBreak.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPageBreak.kt deleted file mode 100644 index 756bac23..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPageBreak.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentPageBreak: ImageVector - get() { - if (_documentPageBreak != null) { - return _documentPageBreak!! - } - _documentPageBreak = fluentIcon(name = "Filled.DocumentPageBreak") { - fluentPath { - moveTo(2.5f, 12.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 2.5f, 12.0f) - close() - moveTo(6.5f, 12.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 6.5f, 12.0f) - close() - moveTo(10.5f, 12.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(14.5f, 12.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(18.5f, 12.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(5.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(5.0f, 2.0f) - close() - moveTo(19.0f, 22.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineToRelative(-4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - lineTo(6.0f, 15.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(14.0f) - close() - } - } - return _documentPageBreak!! - } - -private var _documentPageBreak: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPageNumber.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPageNumber.kt deleted file mode 100644 index bfe899a1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPageNumber.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentPageNumber: ImageVector - get() { - if (_documentPageNumber != null) { - return _documentPageNumber!! - } - _documentPageNumber = fluentIcon(name = "Filled.DocumentPageNumber") { - fluentPath { - moveToRelative(11.26f, 13.0f) - lineToRelative(0.23f, -1.5f) - horizontalLineToRelative(1.48f) - lineToRelative(-0.23f, 1.5f) - horizontalLineToRelative(-1.48f) - close() - moveTo(17.75f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.19f, -0.93f, 2.16f, -2.1f, 2.24f) - lineTo(6.25f, 21.99f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.09f) - lineTo(4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(6.25f, 2.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(12.4f, 15.16f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.48f, 0.23f) - lineToRelative(0.14f, -0.9f) - horizontalLineToRelative(0.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.5f) - lineToRelative(0.24f, -1.5f) - horizontalLineToRelative(0.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.52f) - lineToRelative(0.16f, -1.02f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.48f, -0.23f) - lineToRelative(-0.2f, 1.26f) - horizontalLineToRelative(-1.48f) - lineToRelative(0.16f, -1.03f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.48f, -0.23f) - lineToRelative(-0.2f, 1.26f) - horizontalLineToRelative(-0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.73f) - lineTo(9.74f, 13.0f) - horizontalLineToRelative(-0.99f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.75f) - lineToRelative(-0.1f, 0.66f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.48f, 0.23f) - lineToRelative(0.14f, -0.9f) - horizontalLineToRelative(1.48f) - lineToRelative(-0.1f, 0.67f) - close() - } - } - return _documentPageNumber!! - } - -private var _documentPageNumber: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPageTopCenter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPageTopCenter.kt deleted file mode 100644 index 2c4248f3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPageTopCenter.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentPageTopCenter: ImageVector - get() { - if (_documentPageTopCenter != null) { - return _documentPageTopCenter!! - } - _documentPageTopCenter = fluentIcon(name = "Filled.DocumentPageTopCenter") { - fluentPath { - moveToRelative(11.26f, 9.0f) - lineToRelative(0.23f, -1.5f) - horizontalLineToRelative(1.48f) - lineTo(12.74f, 9.0f) - horizontalLineToRelative(-1.48f) - close() - moveTo(17.75f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.19f, -0.93f, 2.16f, -2.1f, 2.24f) - lineTo(6.25f, 21.99f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.09f) - lineTo(4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(6.25f, 2.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(12.4f, 11.16f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.48f, 0.23f) - lineToRelative(0.14f, -0.9f) - horizontalLineToRelative(0.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.5f) - lineToRelative(0.24f, -1.5f) - horizontalLineToRelative(0.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.52f) - lineToRelative(0.16f, -1.02f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.48f, -0.23f) - lineTo(13.21f, 6.0f) - horizontalLineToRelative(-1.48f) - lineToRelative(0.16f, -1.03f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.48f, -0.23f) - lineTo(10.21f, 6.0f) - horizontalLineToRelative(-0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(0.73f) - lineTo(9.74f, 9.0f) - horizontalLineToRelative(-0.99f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(0.75f) - lineToRelative(-0.1f, 0.66f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.48f, 0.23f) - lineToRelative(0.14f, -0.9f) - horizontalLineToRelative(1.48f) - lineToRelative(-0.1f, 0.67f) - close() - } - } - return _documentPageTopCenter!! - } - -private var _documentPageTopCenter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPageTopLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPageTopLeft.kt deleted file mode 100644 index e2eec6d4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPageTopLeft.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentPageTopLeft: ImageVector - get() { - if (_documentPageTopLeft != null) { - return _documentPageTopLeft!! - } - _documentPageTopLeft = fluentIcon(name = "Filled.DocumentPageTopLeft") { - fluentPath { - moveToRelative(9.26f, 9.0f) - lineToRelative(0.23f, -1.5f) - horizontalLineToRelative(1.48f) - lineTo(10.74f, 9.0f) - lineTo(9.26f, 9.0f) - close() - moveTo(17.75f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.19f, -0.93f, 2.16f, -2.1f, 2.24f) - lineTo(6.25f, 21.99f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.09f) - lineTo(4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(6.25f, 2.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(10.4f, 11.16f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.48f, 0.23f) - lineToRelative(0.14f, -0.9f) - horizontalLineToRelative(0.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.5f) - lineToRelative(0.24f, -1.5f) - horizontalLineToRelative(0.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.52f) - lineToRelative(0.16f, -1.02f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.48f, -0.23f) - lineTo(11.21f, 6.0f) - lineTo(9.73f, 6.0f) - lineToRelative(0.16f, -1.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.48f, -0.23f) - lineTo(8.21f, 6.0f) - horizontalLineToRelative(-0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(0.73f) - lineTo(7.74f, 9.0f) - horizontalLineToRelative(-0.99f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(0.75f) - lineToRelative(-0.1f, 0.66f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.48f, 0.23f) - lineToRelative(0.14f, -0.9f) - horizontalLineToRelative(1.48f) - lineToRelative(-0.1f, 0.67f) - close() - } - } - return _documentPageTopLeft!! - } - -private var _documentPageTopLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPageTopRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPageTopRight.kt deleted file mode 100644 index 4e526666..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPageTopRight.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentPageTopRight: ImageVector - get() { - if (_documentPageTopRight != null) { - return _documentPageTopRight!! - } - _documentPageTopRight = fluentIcon(name = "Filled.DocumentPageTopRight") { - fluentPath { - moveToRelative(13.26f, 9.0f) - lineToRelative(0.23f, -1.5f) - horizontalLineToRelative(1.48f) - lineTo(14.74f, 9.0f) - horizontalLineToRelative(-1.48f) - close() - moveTo(17.75f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.19f, -0.93f, 2.16f, -2.1f, 2.24f) - lineTo(6.25f, 21.99f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.09f) - lineTo(4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(6.25f, 2.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(14.4f, 11.16f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.48f, 0.23f) - lineToRelative(0.14f, -0.9f) - horizontalLineToRelative(0.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.5f) - lineToRelative(0.24f, -1.5f) - horizontalLineToRelative(0.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.52f) - lineToRelative(0.16f, -1.02f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.48f, -0.23f) - lineTo(15.21f, 6.0f) - horizontalLineToRelative(-1.48f) - lineToRelative(0.16f, -1.03f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.48f, -0.23f) - lineTo(12.21f, 6.0f) - horizontalLineToRelative(-0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.72f) - lineTo(11.74f, 9.0f) - horizontalLineToRelative(-0.99f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.75f) - lineToRelative(-0.1f, 0.66f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.48f, 0.23f) - lineToRelative(0.14f, -0.9f) - horizontalLineToRelative(1.48f) - lineToRelative(-0.1f, 0.67f) - close() - } - } - return _documentPageTopRight!! - } - -private var _documentPageTopRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPdf.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPdf.kt deleted file mode 100644 index 0c436190..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPdf.kt +++ /dev/null @@ -1,98 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentPdf: ImageVector - get() { - if (_documentPdf != null) { - return _documentPdf!! - } - _documentPdf = fluentIcon(name = "Filled.DocumentPdf") { - fluentPath { - moveTo(7.5f, 13.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - lineTo(8.0f, 16.0f) - horizontalLineToRelative(0.5f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - horizontalLineToRelative(-1.0f) - close() - moveTo(8.5f, 15.0f) - lineTo(8.0f, 15.0f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - close() - moveTo(15.0f, 13.5f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - lineTo(17.0f, 13.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-3.0f) - close() - moveTo(11.5f, 13.0f) - horizontalLineToRelative(0.5f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, 4.0f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - close() - moveTo(12.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - verticalLineToRelative(2.0f) - close() - moveTo(12.0f, 8.0f) - lineTo(12.0f, 2.0f) - lineTo(6.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(6.67f) - curveToRelative(-0.6f, 0.28f, -1.0f, 0.88f, -1.0f, 1.58f) - verticalLineToRelative(5.5f) - curveToRelative(0.0f, 0.7f, 0.4f, 1.3f, 1.0f, 1.58f) - lineTo(4.0f, 20.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - verticalLineToRelative(-0.67f) - curveToRelative(0.6f, -0.28f, 1.0f, -0.88f, 1.0f, -1.58f) - verticalLineToRelative(-5.5f) - curveToRelative(0.0f, -0.7f, -0.4f, -1.3f, -1.0f, -1.58f) - lineTo(20.0f, 10.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - close() - moveTo(4.75f, 12.0f) - horizontalLineToRelative(14.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(5.5f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - lineTo(4.75f, 18.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-5.5f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - close() - moveTo(13.5f, 8.0f) - lineTo(13.5f, 2.5f) - lineToRelative(6.0f, 6.0f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - } - } - return _documentPdf!! - } - -private var _documentPdf: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPercent.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPercent.kt deleted file mode 100644 index 97e12e6c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPercent.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentPercent: ImageVector - get() { - if (_documentPercent != null) { - return _documentPercent!! - } - _documentPercent = fluentIcon(name = "Filled.DocumentPercent") { - fluentPath { - moveTo(12.0f, 8.0f) - lineTo(12.0f, 2.0f) - lineTo(6.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.04f) - curveToRelative(1.7f, 0.24f, 3.0f, 1.7f, 3.0f, 3.46f) - verticalLineToRelative(0.03f) - lineToRelative(2.01f, -2.02f) - arcTo(1.75f, 1.75f, 0.0f, true, true, 11.5f, 15.0f) - lineTo(9.47f, 17.0f) - horizontalLineToRelative(0.03f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 3.16f, 5.0f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 10.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - close() - moveTo(5.13f, 16.4f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 1.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 4.13f, 1.9f) - close() - moveTo(4.0f, 13.63f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.0f, 1.73f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.73f) - close() - moveTo(10.78f, 14.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-7.5f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(7.5f, -7.5f) - close() - moveTo(7.0f, 20.5f) - arcTo(2.49f, 2.49f, 0.0f, false, false, 9.5f, 23.0f) - arcTo(2.5f, 2.5f, 0.0f, true, false, 7.0f, 20.5f) - close() - moveTo(10.5f, 20.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(13.5f, 8.0f) - lineTo(13.5f, 2.5f) - lineToRelative(6.0f, 6.0f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - } - } - return _documentPercent!! - } - -private var _documentPercent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPill.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPill.kt deleted file mode 100644 index a23a3801..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPill.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentPill: ImageVector - get() { - if (_documentPill != null) { - return _documentPill!! - } - _documentPill = fluentIcon(name = "Filled.DocumentPill") { - fluentPath { - moveTo(12.0f, 8.0f) - lineTo(12.0f, 2.0f) - lineTo(5.5f, 2.0f) - curveTo(4.67f, 2.0f, 4.0f, 2.67f, 4.0f, 3.5f) - verticalLineToRelative(17.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(5.97f) - lineToRelative(0.2f, -0.01f) - arcToRelative(3.87f, 3.87f, 0.0f, false, true, 0.6f, -4.73f) - lineToRelative(5.0f, -5.0f) - arcTo(3.86f, 3.86f, 0.0f, false, true, 20.0f, 11.13f) - lineTo(20.0f, 10.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - close() - moveTo(13.5f, 8.0f) - lineTo(13.5f, 2.5f) - lineToRelative(6.0f, 6.0f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - moveTo(22.03f, 12.97f) - arcToRelative(2.87f, 2.87f, 0.0f, false, false, -4.06f, 0.0f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(2.87f, 2.87f, 0.0f, true, false, 4.06f, 4.06f) - lineToRelative(5.0f, -5.0f) - arcToRelative(2.87f, 2.87f, 0.0f, false, false, 0.0f, -4.06f) - close() - moveTo(19.03f, 14.03f) - arcToRelative(1.37f, 1.37f, 0.0f, true, true, 1.94f, 1.94f) - lineTo(19.0f, 17.94f) - lineTo(17.06f, 16.0f) - lineToRelative(1.97f, -1.97f) - close() - moveTo(17.03f, 18.97f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-1.0f, 1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(1.0f, -1.0f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - } - } - return _documentPill!! - } - -private var _documentPill: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPrint.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPrint.kt deleted file mode 100644 index 0d616cfc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentPrint.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentPrint: ImageVector - get() { - if (_documentPrint != null) { - return _documentPrint!! - } - _documentPrint = fluentIcon(name = "Filled.DocumentPrint") { - fluentPath { - moveTo(12.0f, 2.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-7.1f) - curveToRelative(0.04f, -0.16f, 0.07f, -0.33f, 0.09f, -0.5f) - lineTo(11.0f, 21.5f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(13.0f, 16.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.0f, -2.45f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 8.24f, 11.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.26f, 0.0f, -0.51f, 0.04f, -0.75f, 0.1f) - lineTo(3.99f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.0f) - close() - moveTo(13.5f, 2.5f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.5f) - lineToRelative(-6.0f, -6.0f) - close() - moveTo(3.0f, 13.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(3.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(0.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-3.5f) - curveTo(3.78f, 23.0f, 3.0f, 22.22f, 3.0f, 21.25f) - verticalLineToRelative(-0.75f) - lineTo(2.0f, 20.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(1.0f, 16.0f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - lineTo(3.0f, 14.5f) - verticalLineToRelative(-0.75f) - close() - moveTo(8.5f, 13.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-0.75f) - close() - moveTo(4.5f, 19.25f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-2.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - close() - } - } - return _documentPrint!! - } - -private var _documentPrint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentProhibited.kt deleted file mode 100644 index 092a61ee..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentProhibited.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentProhibited: ImageVector - get() { - if (_documentProhibited != null) { - return _documentProhibited!! - } - _documentProhibited = fluentIcon(name = "Filled.DocumentProhibited") { - fluentPath { - moveTo(12.0f, 2.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-6.81f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.0f) - close() - moveTo(13.5f, 2.5f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.5f) - lineToRelative(-6.0f, -6.0f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(2.5f, 17.5f) - curveToRelative(0.0f, 0.83f, 0.25f, 1.6f, 0.7f, 2.25f) - lineToRelative(5.55f, -5.56f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) - close() - moveTo(6.5f, 21.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) - lineToRelative(-5.55f, 5.56f) - curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) - close() - } - } - return _documentProhibited!! - } - -private var _documentProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentQuestionMark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentQuestionMark.kt deleted file mode 100644 index 4b81c601..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentQuestionMark.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentQuestionMark: ImageVector - get() { - if (_documentQuestionMark != null) { - return _documentQuestionMark!! - } - _documentQuestionMark = fluentIcon(name = "Filled.DocumentQuestionMark") { - fluentPath { - moveTo(12.0f, 2.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-6.81f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.0f) - close() - moveTo(13.5f, 2.5f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.5f) - lineToRelative(-6.0f, -6.0f) - close() - moveTo(1.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) - close() - moveTo(5.75f, 20.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(4.5f, 16.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) - curveToRelative(0.0f, 0.73f, -0.21f, 1.14f, -0.75f, 1.7f) - lineToRelative(-0.27f, 0.28f) - lineToRelative(-0.11f, 0.12f) - curveToRelative(-0.29f, 0.32f, -0.37f, 0.53f, -0.37f, 0.9f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - curveToRelative(0.0f, -0.73f, 0.21f, -1.14f, 0.75f, -1.7f) - lineToRelative(0.27f, -0.28f) - lineToRelative(0.11f, -0.12f) - curveToRelative(0.29f, -0.32f, 0.37f, -0.53f, 0.37f, -0.9f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - close() - } - } - return _documentQuestionMark!! - } - -private var _documentQuestionMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentQueue.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentQueue.kt deleted file mode 100644 index b4cc7fe5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentQueue.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentQueue: ImageVector - get() { - if (_documentQueue != null) { - return _documentQueue!! - } - _documentQueue = fluentIcon(name = "Filled.DocumentQueue") { - fluentPath { - moveTo(7.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(13.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(19.0f, 8.5f) - horizontalLineToRelative(-4.75f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(12.5f, 2.0f) - lineTo(7.0f, 2.0f) - close() - moveTo(8.75f, 5.0f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(8.0f, 8.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 8.75f) - close() - moveTo(8.75f, 11.0f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(14.0f, 2.0f) - lineToRelative(5.0f, 5.0f) - horizontalLineToRelative(-4.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - lineTo(14.0f, 2.0f) - close() - moveTo(2.75f, 15.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.75f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) - horizontalLineToRelative(11.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) - verticalLineToRelative(-1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(1.75f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -4.5f, 4.5f) - horizontalLineToRelative(-11.0f) - arcTo(4.5f, 4.5f, 0.0f, false, true, 2.0f, 17.5f) - verticalLineToRelative(-1.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(12.5f, 2.0f) - lineTo(14.0f, 2.0f) - close() - } - } - return _documentQueue!! - } - -private var _documentQueue: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentQueueAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentQueueAdd.kt deleted file mode 100644 index 5197f9c7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentQueueAdd.kt +++ /dev/null @@ -1,91 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentQueueAdd: ImageVector - get() { - if (_documentQueueAdd != null) { - return _documentQueueAdd!! - } - _documentQueueAdd = fluentIcon(name = "Filled.DocumentQueueAdd") { - fluentPath { - moveTo(5.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(5.5f) - verticalLineToRelative(4.75f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(19.0f, 8.5f) - verticalLineToRelative(2.67f) - arcTo(6.52f, 6.52f, 0.0f, false, false, 11.17f, 19.0f) - lineTo(7.0f, 19.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(5.0f, 4.0f) - close() - moveTo(8.0f, 5.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(8.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.5f) - close() - moveTo(8.0f, 11.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(12.81f, 22.0f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, -1.5f) - lineTo(6.5f, 20.5f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - verticalLineToRelative(-1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.75f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 6.5f, 22.0f) - horizontalLineToRelative(6.31f) - close() - moveTo(19.0f, 7.0f) - lineToRelative(-5.0f, -5.0f) - verticalLineToRelative(4.75f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - lineTo(19.0f, 7.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - moveTo(12.5f, 2.0f) - lineTo(14.0f, 2.0f) - close() - } - } - return _documentQueueAdd!! - } - -private var _documentQueueAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentQueueMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentQueueMultiple.kt deleted file mode 100644 index 9ef3ae48..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentQueueMultiple.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentQueueMultiple: ImageVector - get() { - if (_documentQueueMultiple != null) { - return _documentQueueMultiple!! - } - _documentQueueMultiple = fluentIcon(name = "Filled.DocumentQueueMultiple") { - fluentPath { - moveTo(17.35f, 6.16f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.07f, 0.08f) - lineTo(19.0f, 7.82f) - verticalLineTo(6.5f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(16.7f, 3.4f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 13.35f, 2.0f) - horizontalLineTo(7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(0.13f) - curveToRelative(0.57f, -0.4f, 1.26f, -0.63f, 2.0f, -0.63f) - horizontalLineToRelative(6.35f) - curveToRelative(0.86f, 0.0f, 1.68f, 0.34f, 2.29f, 0.95f) - lineToRelative(1.71f, 1.7f) - close() - moveTo(2.75f, 15.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.75f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) - horizontalLineToRelative(11.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) - verticalLineToRelative(-1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(1.75f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -4.5f, 4.5f) - horizontalLineToRelative(-11.0f) - arcTo(4.5f, 4.5f, 0.0f, false, true, 2.0f, 17.5f) - verticalLineToRelative(-1.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(12.5f, 5.0f) - verticalLineToRelative(4.75f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineTo(19.0f) - verticalLineTo(17.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineTo(7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - verticalLineTo(7.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(5.5f) - close() - moveTo(8.0f, 8.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(8.75f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.5f) - close() - moveTo(8.0f, 14.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(14.0f, 5.0f) - verticalLineToRelative(4.75f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineTo(19.0f) - lineToRelative(-5.0f, -5.0f) - close() - } - } - return _documentQueueMultiple!! - } - -private var _documentQueueMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentRibbon.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentRibbon.kt deleted file mode 100644 index ff0fc399..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentRibbon.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentRibbon: ImageVector - get() { - if (_documentRibbon != null) { - return _documentRibbon!! - } - _documentRibbon = fluentIcon(name = "Filled.DocumentRibbon") { - fluentPath { - moveTo(12.0f, 2.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - lineTo(9.0f, 22.0f) - verticalLineToRelative(-3.67f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, -5.0f, -7.07f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.0f) - close() - moveTo(13.5f, 2.5f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.5f) - lineToRelative(-6.0f, -6.0f) - close() - moveTo(9.0f, 15.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, -7.0f, 0.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 7.0f, 0.0f) - close() - moveTo(3.0f, 19.24f) - verticalLineToRelative(3.05f) - curveToRelative(0.0f, 0.63f, 0.76f, 0.95f, 1.21f, 0.5f) - lineTo(5.5f, 21.5f) - lineToRelative(1.29f, 1.3f) - arcTo(0.71f, 0.71f, 0.0f, false, false, 8.0f, 22.28f) - verticalLineToRelative(-3.05f) - arcToRelative(4.48f, 4.48f, 0.0f, false, true, -5.0f, 0.0f) - close() - } - } - return _documentRibbon!! - } - -private var _documentRibbon: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentSave.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentSave.kt deleted file mode 100644 index 260ee032..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentSave.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentSave: ImageVector - get() { - if (_documentSave != null) { - return _documentSave!! - } - _documentSave = fluentIcon(name = "Filled.DocumentSave") { - fluentPath { - moveTo(12.0f, 2.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-5.05f) - curveToRelative(0.03f, -0.16f, 0.05f, -0.33f, 0.05f, -0.5f) - verticalLineToRelative(-6.88f) - curveToRelative(0.0f, -0.66f, -0.26f, -1.3f, -0.73f, -1.77f) - lineToRelative(-1.12f, -1.12f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 9.38f, 11.0f) - lineTo(4.0f, 11.0f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.0f) - close() - moveTo(13.5f, 2.5f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.5f) - lineToRelative(-6.0f, -6.0f) - close() - moveTo(5.0f, 12.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(2.0f) - lineTo(5.0f, 14.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(2.5f, 12.0f) - lineTo(4.0f, 12.0f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(9.0f, 12.0f) - horizontalLineToRelative(0.38f) - curveToRelative(0.4f, 0.0f, 0.78f, 0.16f, 1.06f, 0.44f) - lineToRelative(1.12f, 1.12f) - curveToRelative(0.28f, 0.28f, 0.44f, 0.66f, 0.44f, 1.06f) - verticalLineToRelative(6.88f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - lineTo(10.0f, 23.0f) - verticalLineToRelative(-5.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - horizontalLineToRelative(-6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - lineTo(3.0f, 23.0f) - horizontalLineToRelative(-0.5f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 1.0f, 21.5f) - verticalLineToRelative(-8.0f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - close() - moveTo(9.0f, 18.0f) - verticalLineToRelative(5.0f) - lineTo(4.0f, 23.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(5.0f) - close() - } - } - return _documentSave!! - } - -private var _documentSave: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentSearch.kt deleted file mode 100644 index 4b04b056..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentSearch.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentSearch: ImageVector - get() { - if (_documentSearch != null) { - return _documentSearch!! - } - _documentSearch = fluentIcon(name = "Filled.DocumentSearch") { - fluentPath { - moveTo(13.0f, 8.0f) - lineTo(13.0f, 2.0f) - lineTo(7.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(5.3f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 8.2f, 8.18f) - lineToRelative(3.54f, 3.53f) - curveToRelative(0.28f, 0.28f, 0.44f, 0.63f, 0.5f, 0.99f) - lineTo(19.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(21.0f, 10.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - close() - moveTo(14.97f, 22.78f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-4.11f, -4.11f) - arcToRelative(4.98f, 4.98f, 0.0f, false, false, -0.35f, -6.61f) - arcTo(4.98f, 4.98f, 0.0f, false, false, 3.0f, 14.5f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 7.82f, 4.13f) - lineToRelative(4.15f, 4.15f) - close() - moveTo(8.0f, 11.0f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 0.0f, -7.0f) - close() - moveTo(14.5f, 8.0f) - lineTo(14.5f, 2.5f) - lineToRelative(6.0f, 6.0f) - lineTo(15.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - } - } - return _documentSearch!! - } - -private var _documentSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentSplitHint.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentSplitHint.kt deleted file mode 100644 index 2e3211e9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentSplitHint.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentSplitHint: ImageVector - get() { - if (_documentSplitHint != null) { - return _documentSplitHint!! - } - _documentSplitHint = fluentIcon(name = "Filled.DocumentSplitHint") { - fluentPath { - moveTo(12.0f, 8.0f) - lineTo(12.0f, 2.0f) - lineTo(6.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(15.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(20.0f, 10.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - close() - moveTo(13.5f, 8.0f) - lineTo(13.5f, 2.5f) - lineToRelative(6.0f, 6.0f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - moveTo(5.5f, 13.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.5f) - close() - moveTo(19.25f, 13.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(10.25f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - close() - moveTo(4.75f, 18.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(5.5f, 20.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(6.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(18.5f, 19.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(20.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(18.0f, 20.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-0.75f) - close() - } - } - return _documentSplitHint!! - } - -private var _documentSplitHint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentSplitHintOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentSplitHintOff.kt deleted file mode 100644 index d27b4b85..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentSplitHintOff.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentSplitHintOff: ImageVector - get() { - if (_documentSplitHintOff != null) { - return _documentSplitHintOff!! - } - _documentSplitHintOff = fluentIcon(name = "Filled.DocumentSplitHintOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineTo(4.0f, 5.06f) - verticalLineToRelative(6.44f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(6.44f) - lineToRelative(7.56f, 7.56f) - lineTo(18.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.8f, -1.14f) - lineToRelative(0.92f, 0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(18.5f, 15.32f) - lineTo(19.86f, 16.68f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.14f, -0.44f) - verticalLineToRelative(-2.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.57f) - close() - moveTo(12.71f, 9.53f) - lineTo(15.18f, 12.0f) - horizontalLineToRelative(4.32f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(20.0f, 10.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.29f, -0.47f) - close() - moveTo(12.0f, 8.0f) - curveToRelative(0.0f, 0.5f, 0.18f, 0.94f, 0.47f, 1.29f) - lineTo(5.31f, 2.12f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 6.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(6.0f) - close() - moveTo(13.5f, 8.0f) - lineTo(13.5f, 2.5f) - lineToRelative(6.0f, 6.0f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - moveTo(5.5f, 13.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.5f) - close() - moveTo(10.25f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - close() - moveTo(4.75f, 18.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(5.5f, 20.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(6.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _documentSplitHintOff!! - } - -private var _documentSplitHintOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentSync.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentSync.kt deleted file mode 100644 index 344a0049..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentSync.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentSync: ImageVector - get() { - if (_documentSync != null) { - return _documentSync!! - } - _documentSync = fluentIcon(name = "Filled.DocumentSync") { - fluentPath { - moveTo(12.0f, 2.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-6.81f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.0f) - close() - moveTo(13.5f, 2.5f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.5f) - lineToRelative(-6.0f, -6.0f) - close() - moveTo(1.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) - close() - moveTo(9.5f, 14.0f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - verticalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -0.8f, -0.59f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) - verticalLineToRelative(-0.55f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - close() - moveTo(4.0f, 19.95f) - verticalLineToRelative(0.55f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.77f, 0.65f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) - close() - } - } - return _documentSync!! - } - -private var _documentSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTable.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTable.kt deleted file mode 100644 index d7504159..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTable.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentTable: ImageVector - get() { - if (_documentTable != null) { - return _documentTable!! - } - _documentTable = fluentIcon(name = "Filled.DocumentTable") { - fluentPath { - moveTo(8.5f, 13.25f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - lineTo(10.0f, 13.0f) - verticalLineToRelative(1.5f) - lineTo(8.5f, 14.5f) - verticalLineToRelative(-1.25f) - close() - moveTo(8.5f, 16.0f) - lineTo(10.0f, 16.0f) - verticalLineToRelative(1.5f) - lineTo(8.75f, 17.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - lineTo(8.5f, 16.0f) - close() - moveTo(15.5f, 17.25f) - lineTo(15.5f, 16.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(3.75f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - close() - moveTo(11.5f, 13.0f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-1.25f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - lineTo(11.5f, 13.0f) - close() - moveTo(12.0f, 8.0f) - lineTo(12.0f, 2.0f) - lineTo(6.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(16.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 10.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - close() - moveTo(8.75f, 11.5f) - horizontalLineToRelative(6.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-6.5f) - curveTo(7.78f, 19.0f, 7.0f, 18.22f, 7.0f, 17.25f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - close() - moveTo(13.5f, 8.0f) - lineTo(13.5f, 2.5f) - lineToRelative(6.0f, 6.0f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - } - } - return _documentTable!! - } - -private var _documentTable: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTableArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTableArrowRight.kt deleted file mode 100644 index eff9aba0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTableArrowRight.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentTableArrowRight: ImageVector - get() { - if (_documentTableArrowRight != null) { - return _documentTableArrowRight!! - } - _documentTableArrowRight = fluentIcon(name = "Filled.DocumentTableArrowRight") { - fluentPath { - moveTo(15.5f, 17.25f) - lineTo(15.5f, 16.0f) - horizontalLineToRelative(-2.67f) - curveToRelative(0.11f, 0.48f, 0.17f, 0.98f, 0.17f, 1.5f) - horizontalLineToRelative(2.25f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - close() - moveTo(15.5f, 14.5f) - horizontalLineToRelative(-3.23f) - curveToRelative(-0.22f, -0.41f, -0.48f, -0.8f, -0.77f, -1.15f) - lineTo(11.5f, 13.0f) - horizontalLineToRelative(3.75f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.25f) - close() - moveTo(6.5f, 11.0f) - curveToRelative(0.89f, 0.0f, 1.73f, 0.18f, 2.5f, 0.5f) - horizontalLineToRelative(6.25f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.42f) - arcToRelative(6.49f, 6.49f, 0.0f, false, true, -1.64f, 3.0f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 10.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(12.0f, 2.0f) - lineTo(6.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.5f) - curveToRelative(0.77f, -0.32f, 1.61f, -0.5f, 2.5f, -0.5f) - close() - moveTo(13.5f, 8.0f) - lineTo(13.5f, 2.5f) - lineToRelative(6.0f, 6.0f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(3.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(8.29f, 17.0f) - lineTo(3.5f, 17.0f) - close() - } - } - return _documentTableArrowRight!! - } - -private var _documentTableArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTableCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTableCheckmark.kt deleted file mode 100644 index 05c05b0e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTableCheckmark.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentTableCheckmark: ImageVector - get() { - if (_documentTableCheckmark != null) { - return _documentTableCheckmark!! - } - _documentTableCheckmark = fluentIcon(name = "Filled.DocumentTableCheckmark") { - fluentPath { - moveTo(15.5f, 17.25f) - lineTo(15.5f, 16.0f) - horizontalLineToRelative(-2.67f) - curveToRelative(0.11f, 0.48f, 0.17f, 0.98f, 0.17f, 1.5f) - horizontalLineToRelative(2.25f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - close() - moveTo(15.5f, 14.5f) - horizontalLineToRelative(-3.23f) - curveToRelative(-0.22f, -0.41f, -0.48f, -0.8f, -0.77f, -1.15f) - lineTo(11.5f, 13.0f) - horizontalLineToRelative(3.75f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.25f) - close() - moveTo(6.5f, 11.0f) - curveToRelative(0.89f, 0.0f, 1.73f, 0.18f, 2.5f, 0.5f) - horizontalLineToRelative(6.25f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.42f) - arcToRelative(6.49f, 6.49f, 0.0f, false, true, -1.64f, 3.0f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 10.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(12.0f, 2.0f) - lineTo(6.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.5f) - curveToRelative(0.77f, -0.32f, 1.61f, -0.5f, 2.5f, -0.5f) - close() - moveTo(13.5f, 8.0f) - lineTo(13.5f, 2.5f) - lineToRelative(6.0f, 6.0f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(9.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineTo(5.5f, 18.79f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _documentTableCheckmark!! - } - -private var _documentTableCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTableCube.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTableCube.kt deleted file mode 100644 index 17d7c24f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTableCube.kt +++ /dev/null @@ -1,91 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentTableCube: ImageVector - get() { - if (_documentTableCube != null) { - return _documentTableCube!! - } - _documentTableCube = fluentIcon(name = "Filled.DocumentTableCube") { - fluentPath { - moveTo(11.72f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -0.22f, -0.37f) - lineTo(11.5f, 13.0f) - horizontalLineToRelative(3.75f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.25f) - horizontalLineToRelative(-3.78f) - close() - moveTo(11.98f, 17.5f) - lineTo(11.98f, 16.0f) - horizontalLineToRelative(3.52f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-3.27f) - close() - moveTo(11.98f, 19.0f) - horizontalLineToRelative(3.27f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-6.5f) - curveToRelative(-0.42f, 0.0f, -0.8f, 0.15f, -1.1f, 0.4f) - lineToRelative(-0.55f, -0.28f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.24f, 0.0f) - lineToRelative(-0.86f, 0.43f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-7.43f) - lineToRelative(0.03f, -0.02f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 1.38f, -2.23f) - lineTo(11.98f, 19.0f) - close() - moveTo(13.5f, 2.5f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.5f) - lineToRelative(-6.0f, -6.0f) - close() - moveTo(0.98f, 15.6f) - verticalLineToRelative(4.15f) - curveToRelative(0.0f, 0.57f, 0.32f, 1.09f, 0.83f, 1.34f) - lineToRelative(3.5f, 1.75f) - curveToRelative(0.42f, 0.21f, 0.92f, 0.21f, 1.34f, 0.0f) - lineToRelative(3.5f, -1.75f) - curveToRelative(0.5f, -0.25f, 0.83f, -0.77f, 0.83f, -1.34f) - lineTo(10.98f, 15.6f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -0.83f, -1.34f) - lineToRelative(-3.5f, -1.75f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -1.34f, 0.0f) - lineToRelative(-3.5f, 1.75f) - curveToRelative(-0.5f, 0.26f, -0.83f, 0.77f, -0.83f, 1.34f) - close() - moveTo(2.76f, 16.37f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.44f, -0.9f) - lineToRelative(2.78f, 1.4f) - lineToRelative(2.78f, -1.4f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.44f, 0.9f) - lineToRelative(-2.72f, 1.36f) - verticalLineToRelative(2.95f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-2.95f) - lineToRelative(-2.72f, -1.36f) - close() - } - } - return _documentTableCube!! - } - -private var _documentTableCube: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTableSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTableSearch.kt deleted file mode 100644 index 1746c6ec..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTableSearch.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentTableSearch: ImageVector - get() { - if (_documentTableSearch != null) { - return _documentTableSearch!! - } - _documentTableSearch = fluentIcon(name = "Filled.DocumentTableSearch") { - fluentPath { - moveTo(10.47f, 19.5f) - horizontalLineToRelative(4.78f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-6.5f) - curveToRelative(-0.24f, 0.0f, -0.47f, 0.05f, -0.68f, 0.14f) - arcTo(5.48f, 5.48f, 0.0f, false, false, 4.0f, 11.7f) - lineTo(4.0f, 4.5f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-5.02f) - curveToRelative(-0.05f, -0.36f, -0.21f, -0.7f, -0.5f, -0.99f) - lineToRelative(-2.0f, -2.01f) - close() - moveTo(15.5f, 16.5f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - lineTo(11.5f, 18.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(4.0f) - close() - moveTo(11.5f, 15.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(3.75f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - lineTo(15.5f, 15.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(13.5f, 3.0f) - verticalLineToRelative(5.5f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.5f) - lineToRelative(-6.0f, -6.0f) - close() - moveTo(9.17f, 19.6f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(2.61f, 2.62f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.61f, -2.61f) - close() - moveTo(8.5f, 17.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) - close() - } - } - return _documentTableSearch!! - } - -private var _documentTableSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTableTruck.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTableTruck.kt deleted file mode 100644 index db372088..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTableTruck.kt +++ /dev/null @@ -1,99 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentTableTruck: ImageVector - get() { - if (_documentTableTruck != null) { - return _documentTableTruck!! - } - _documentTableTruck = fluentIcon(name = "Filled.DocumentTableTruck") { - fluentPath { - moveTo(15.11f, 17.25f) - lineTo(15.11f, 16.0f) - horizontalLineToRelative(-2.46f) - lineToRelative(0.1f, 0.2f) - curveToRelative(0.16f, 0.33f, 0.25f, 0.69f, 0.25f, 1.06f) - verticalLineToRelative(0.24f) - horizontalLineToRelative(1.86f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - close() - moveTo(15.11f, 14.5f) - horizontalLineToRelative(-3.2f) - lineToRelative(-0.19f, -0.35f) - curveToRelative(-0.15f, -0.3f, -0.36f, -0.57f, -0.6f, -0.77f) - lineTo(11.12f, 13.0f) - horizontalLineToRelative(3.74f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.25f) - close() - moveTo(13.0f, 20.25f) - lineTo(13.0f, 19.0f) - horizontalLineToRelative(1.86f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(9.18f, 11.5f) - arcToRelative(2.6f, 2.6f, 0.0f, false, false, -1.53f, -0.5f) - lineTo(3.6f, 11.0f) - lineTo(3.6f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-5.38f) - curveToRelative(0.47f, -0.43f, 0.77f, -1.06f, 0.77f, -1.75f) - close() - moveTo(13.11f, 8.0f) - lineTo(13.11f, 2.5f) - lineToRelative(6.0f, 6.0f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - moveTo(1.0f, 13.6f) - curveToRelative(0.0f, -0.88f, 0.72f, -1.6f, 1.6f, -1.6f) - horizontalLineToRelative(5.05f) - curveToRelative(0.88f, 0.0f, 1.6f, 0.72f, 1.6f, 1.6f) - verticalLineToRelative(0.23f) - horizontalLineToRelative(0.35f) - curveToRelative(0.52f, 0.0f, 1.0f, 0.3f, 1.23f, 0.76f) - lineToRelative(1.02f, 2.05f) - curveToRelative(0.1f, 0.2f, 0.15f, 0.4f, 0.15f, 0.62f) - verticalLineToRelative(2.99f) - curveToRelative(0.0f, 0.76f, -0.62f, 1.38f, -1.38f, 1.38f) - horizontalLineToRelative(-0.51f) - arcToRelative(1.83f, 1.83f, 0.0f, false, true, -3.55f, 0.0f) - lineTo(5.53f, 21.63f) - arcToRelative(1.83f, 1.83f, 0.0f, false, true, -3.59f, -0.15f) - arcTo(1.6f, 1.6f, 0.0f, false, true, 1.0f, 20.02f) - lineTo(1.0f, 13.6f) - close() - moveTo(9.25f, 14.75f) - verticalLineToRelative(1.83f) - horizontalLineToRelative(1.55f) - lineTo(10.01f, 15.0f) - arcToRelative(0.46f, 0.46f, 0.0f, false, false, -0.41f, -0.25f) - horizontalLineToRelative(-0.35f) - close() - moveTo(3.75f, 20.25f) - arcToRelative(0.92f, 0.92f, 0.0f, true, false, 0.0f, 1.83f) - arcToRelative(0.92f, 0.92f, 0.0f, false, false, 0.0f, -1.83f) - close() - moveTo(7.42f, 21.17f) - arcToRelative(0.92f, 0.92f, 0.0f, true, false, 1.83f, 0.0f) - arcToRelative(0.92f, 0.92f, 0.0f, false, false, -1.83f, 0.0f) - close() - } - } - return _documentTableTruck!! - } - -private var _documentTableTruck: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentText.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentText.kt deleted file mode 100644 index 03967e31..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentText.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentText: ImageVector - get() { - if (_documentText != null) { - return _documentText!! - } - _documentText = fluentIcon(name = "Filled.DocumentText") { - fluentPath { - moveTo(12.0f, 8.0f) - lineTo(12.0f, 2.0f) - lineTo(6.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(16.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 10.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - close() - moveTo(8.25f, 11.5f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(8.25f, 14.25f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(8.25f, 17.0f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(13.5f, 8.0f) - lineTo(13.5f, 2.5f) - lineToRelative(6.0f, 6.0f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - } - } - return _documentText!! - } - -private var _documentText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTextClock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTextClock.kt deleted file mode 100644 index e06cac73..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTextClock.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentTextClock: ImageVector - get() { - if (_documentTextClock != null) { - return _documentTextClock!! - } - _documentTextClock = fluentIcon(name = "Filled.DocumentTextClock") { - fluentPath { - moveTo(12.0f, 8.0f) - lineTo(12.0f, 2.0f) - lineTo(6.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.5f) - arcToRelative(6.48f, 6.48f, 0.0f, false, true, 5.0f, 0.0f) - horizontalLineToRelative(6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.56f) - curveToRelative(0.36f, 0.38f, 0.68f, 0.8f, 0.94f, 1.25f) - horizontalLineToRelative(3.62f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.99f) - curveToRelative(0.11f, 0.4f, 0.19f, 0.82f, 0.22f, 1.25f) - horizontalLineToRelative(2.77f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.83f) - arcTo(6.48f, 6.48f, 0.0f, false, true, 11.2f, 22.0f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 10.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - close() - moveTo(13.5f, 8.0f) - lineTo(13.5f, 2.5f) - lineToRelative(6.0f, 6.0f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(6.5f, 17.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - lineTo(6.0f, 18.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - verticalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - verticalLineToRelative(2.5f) - close() - } - } - return _documentTextClock!! - } - -private var _documentTextClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTextExtract.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTextExtract.kt deleted file mode 100644 index 50c021c6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTextExtract.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentTextExtract: ImageVector - get() { - if (_documentTextExtract != null) { - return _documentTextExtract!! - } - _documentTextExtract = fluentIcon(name = "Filled.DocumentTextExtract") { - fluentPath { - moveTo(12.0f, 8.0f) - lineTo(12.0f, 2.0f) - lineTo(6.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(9.5f) - horizontalLineToRelative(6.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) - lineTo(4.0f, 17.5f) - lineTo(4.0f, 20.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 10.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - close() - moveTo(7.5f, 11.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(7.5f, 19.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(13.5f, 8.0f) - lineTo(13.5f, 2.5f) - lineToRelative(6.0f, 6.0f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - moveTo(2.75f, 14.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-7.5f) - close() - } - } - return _documentTextExtract!! - } - -private var _documentTextExtract: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTextLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTextLink.kt deleted file mode 100644 index 384f2ead..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTextLink.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentTextLink: ImageVector - get() { - if (_documentTextLink != null) { - return _documentTextLink!! - } - _documentTextLink = fluentIcon(name = "Filled.DocumentTextLink") { - fluentPath { - moveTo(12.0f, 8.0f) - lineTo(12.0f, 2.0f) - lineTo(6.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(10.06f) - curveToRelative(0.24f, -0.04f, 0.5f, -0.06f, 0.75f, -0.06f) - horizontalLineToRelative(3.5f) - curveToRelative(0.53f, 0.0f, 1.05f, 0.09f, 1.52f, 0.25f) - horizontalLineToRelative(5.98f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.82f) - curveToRelative(0.3f, 0.37f, 0.56f, 0.8f, 0.74f, 1.25f) - horizontalLineToRelative(3.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.76f) - arcToRelative(4.82f, 4.82f, 0.0f, false, true, -1.28f, 3.5f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 10.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - close() - moveTo(8.25f, 11.5f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(13.5f, 8.0f) - lineTo(13.5f, 2.5f) - lineToRelative(6.0f, 6.0f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - moveTo(12.0f, 18.75f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 8.25f, 15.0f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - verticalLineToRelative(-0.01f) - horizontalLineToRelative(0.2f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 12.0f, 18.74f) - close() - moveTo(5.5f, 15.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-0.2f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - lineTo(4.6f, 21.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(9.0f, 18.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - } - } - return _documentTextLink!! - } - -private var _documentTextLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTextToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTextToolbox.kt deleted file mode 100644 index 34a95ab3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentTextToolbox.kt +++ /dev/null @@ -1,104 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentTextToolbox: ImageVector - get() { - if (_documentTextToolbox != null) { - return _documentTextToolbox!! - } - _documentTextToolbox = fluentIcon(name = "Filled.DocumentTextToolbox") { - fluentPath { - moveTo(12.0f, 8.0f) - lineTo(12.0f, 2.0f) - lineTo(6.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.35f) - curveToRelative(0.24f, -0.06f, 0.49f, -0.1f, 0.75f, -0.1f) - horizontalLineToRelative(3.5f) - curveToRelative(0.41f, 0.0f, 0.8f, 0.09f, 1.15f, 0.25f) - horizontalLineToRelative(6.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.94f) - curveToRelative(0.12f, 0.31f, 0.19f, 0.65f, 0.19f, 1.0f) - verticalLineToRelative(0.05f) - curveToRelative(0.2f, 0.04f, 0.4f, 0.11f, 0.6f, 0.2f) - horizontalLineToRelative(4.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.86f) - curveToRelative(0.07f, 0.24f, 0.11f, 0.49f, 0.11f, 0.75f) - verticalLineToRelative(0.5f) - horizontalLineToRelative(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(13.0f, 18.5f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.17f, -0.02f, 0.34f, -0.05f, 0.5f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 10.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - close() - moveTo(13.5f, 8.0f) - lineTo(13.5f, 2.5f) - lineToRelative(6.0f, 6.0f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - moveTo(3.0f, 15.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - lineTo(1.0f, 18.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(5.0f, 18.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(9.5f, 18.0f) - lineTo(12.0f, 18.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(10.0f, 15.0f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.5f) - curveTo(3.78f, 12.25f, 3.0f, 13.03f, 3.0f, 14.0f) - verticalLineToRelative(1.0f) - close() - moveTo(4.5f, 14.0f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(1.0f, 21.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - lineTo(12.0f, 19.5f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-8.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 1.0f, 21.5f) - close() - } - } - return _documentTextToolbox!! - } - -private var _documentTextToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentToolbox.kt deleted file mode 100644 index b0066041..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentToolbox.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentToolbox: ImageVector - get() { - if (_documentToolbox != null) { - return _documentToolbox!! - } - _documentToolbox = fluentIcon(name = "Filled.DocumentToolbox") { - fluentPath { - moveTo(12.0f, 2.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - lineTo(13.0f, 22.0f) - verticalLineToRelative(-5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(-1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - lineTo(5.0f, 12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.0f, 0.27f) - lineTo(4.0f, 3.5f) - curveTo(4.0f, 2.67f, 4.67f, 2.0f, 5.5f, 2.0f) - lineTo(12.0f, 2.0f) - close() - moveTo(13.5f, 2.5f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.5f) - lineToRelative(-6.0f, -6.0f) - close() - moveTo(4.0f, 16.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(2.0f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - lineTo(9.0f, 16.0f) - horizontalLineToRelative(1.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - lineTo(12.0f, 19.0f) - lineTo(9.0f, 19.0f) - verticalLineToRelative(-0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(0.5f) - lineTo(5.0f, 19.0f) - verticalLineToRelative(-0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(0.5f) - lineTo(1.0f, 19.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - lineTo(4.0f, 16.0f) - close() - moveTo(5.0f, 14.5f) - lineTo(5.0f, 16.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - close() - moveTo(9.0f, 20.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-8.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 1.0f, 21.5f) - lineTo(1.0f, 20.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - lineTo(5.0f, 20.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - lineTo(9.0f, 20.0f) - close() - } - } - return _documentToolbox!! - } - -private var _documentToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentWidth.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentWidth.kt deleted file mode 100644 index 84917ab1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DocumentWidth.kt +++ /dev/null @@ -1,111 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DocumentWidth: ImageVector - get() { - if (_documentWidth != null) { - return _documentWidth!! - } - _documentWidth = fluentIcon(name = "Filled.DocumentWidth") { - fluentPath { - moveTo(17.75f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(3.52f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.49f, 0.5f) - arcTo(1.73f, 1.73f, 0.0f, false, false, 18.1f, 10.0f) - lineToRelative(0.05f, 0.16f) - lineToRelative(0.04f, 0.09f) - horizontalLineToRelative(-1.52f) - curveToRelative(-0.85f, 0.0f, -1.5f, 0.65f, -1.64f, 1.46f) - lineToRelative(-0.01f, 0.14f) - lineTo(15.0f, 12.0f) - curveToRelative(0.0f, 0.8f, 0.51f, 1.51f, 1.33f, 1.7f) - lineToRelative(0.16f, 0.04f) - horizontalLineToRelative(1.68f) - lineToRelative(-0.02f, 0.04f) - curveToRelative(-0.2f, 0.47f, -0.2f, 1.02f, 0.05f, 1.51f) - lineToRelative(0.1f, 0.17f) - lineToRelative(0.09f, 0.14f) - lineToRelative(0.12f, 0.14f) - curveToRelative(0.4f, 0.4f, 0.95f, 0.57f, 1.49f, 0.48f) - verticalLineToRelative(3.53f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - lineTo(6.25f, 22.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(4.0f, 19.75f) - verticalLineToRelative(-3.53f) - curveToRelative(0.54f, 0.09f, 1.09f, -0.08f, 1.49f, -0.48f) - lineToRelative(0.12f, -0.14f) - lineToRelative(0.1f, -0.14f) - curveToRelative(0.33f, -0.54f, 0.37f, -1.16f, 0.14f, -1.68f) - lineToRelative(-0.02f, -0.03f) - horizontalLineToRelative(1.51f) - lineToRelative(0.17f, -0.01f) - curveTo(8.42f, 13.6f, 9.0f, 12.84f, 9.0f, 12.0f) - verticalLineToRelative(-0.15f) - arcToRelative(1.7f, 1.7f, 0.0f, false, false, -1.66f, -1.6f) - lineTo(5.82f, 10.25f) - lineToRelative(0.04f, -0.1f) - arcTo(1.74f, 1.74f, 0.0f, false, false, 4.0f, 7.78f) - lineTo(4.0f, 4.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(6.25f, 2.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(4.78f, 8.97f) - curveToRelative(0.27f, 0.26f, 0.3f, 0.68f, 0.07f, 0.97f) - lineToRelative(-0.07f, 0.09f) - lineToRelative(-1.22f, 1.22f) - horizontalLineToRelative(3.78f) - curveToRelative(0.37f, 0.0f, 0.66f, 0.33f, 0.66f, 0.75f) - curveToRelative(0.0f, 0.38f, -0.25f, 0.7f, -0.57f, 0.74f) - lineTo(3.56f, 12.74f) - lineToRelative(1.22f, 1.23f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-2.37f, -2.37f) - arcTo(0.77f, 0.77f, 0.0f, false, true, 1.0f, 12.0f) - curveToRelative(0.0f, -0.29f, 0.14f, -0.54f, 0.35f, -0.66f) - lineToRelative(2.37f, -2.37f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(19.22f, 8.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.08f) - lineToRelative(0.08f, 0.08f) - lineToRelative(2.37f, 2.36f) - curveToRelative(0.2f, 0.13f, 0.35f, 0.38f, 0.35f, 0.67f) - curveToRelative(0.0f, 0.25f, -0.1f, 0.47f, -0.28f, 0.6f) - lineToRelative(-0.07f, 0.06f) - lineToRelative(-2.37f, 2.37f) - lineToRelative(-0.08f, 0.07f) - curveToRelative(-0.27f, 0.2f, -0.62f, 0.2f, -0.89f, 0.0f) - lineToRelative(-0.1f, -0.07f) - lineToRelative(-0.06f, -0.09f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.01f, -0.88f) - lineToRelative(0.08f, -0.1f) - lineToRelative(1.22f, -1.21f) - horizontalLineToRelative(-3.78f) - lineToRelative(-0.1f, -0.01f) - curveToRelative(-0.31f, -0.05f, -0.56f, -0.37f, -0.56f, -0.74f) - curveToRelative(0.0f, -0.38f, 0.25f, -0.7f, 0.57f, -0.75f) - lineTo(20.44f, 11.25f) - lineToRelative(-1.22f, -1.22f) - lineToRelative(-0.07f, -0.09f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.07f, -0.97f) - close() - } - } - return _documentWidth!! - } - -private var _documentWidth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DoorArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DoorArrowLeft.kt deleted file mode 100644 index f272619a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DoorArrowLeft.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DoorArrowLeft: ImageVector - get() { - if (_doorArrowLeft != null) { - return _doorArrowLeft!! - } - _doorArrowLeft = fluentIcon(name = "Filled.DoorArrowLeft") { - fluentPath { - moveTo(6.25f, 2.75f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(5.94f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, 7.06f, -10.01f) - lineTo(19.25f, 4.25f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(6.25f, 2.75f) - close() - moveTo(8.5f, 13.25f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) - close() - moveTo(17.5f, 23.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) - close() - moveTo(21.0f, 17.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-4.8f) - lineToRelative(1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, 0.7f) - lineTo(15.71f, 17.0f) - horizontalLineToRelative(4.79f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - close() - } - } - return _doorArrowLeft!! - } - -private var _doorArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DoorTag.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DoorTag.kt deleted file mode 100644 index da137c67..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DoorTag.kt +++ /dev/null @@ -1,41 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DoorTag: ImageVector - get() { - if (_doorTag != null) { - return _doorTag!! - } - _doorTag = fluentIcon(name = "Filled.DoorTag") { - fluentPath { - moveTo(12.0f, 6.5f) - curveToRelative(-0.49f, 0.0f, -0.92f, 0.23f, -1.2f, 0.6f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -3.6f, -2.7f) - arcTo(6.0f, 6.0f, 0.0f, false, true, 18.0f, 8.0f) - verticalLineToRelative(12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - lineTo(8.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(4.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(9.75f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - close() - } - } - return _doorTag!! - } - -private var _doorTag: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DoubleSwipeDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DoubleSwipeDown.kt deleted file mode 100644 index d43aa901..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DoubleSwipeDown.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DoubleSwipeDown: ImageVector - get() { - if (_doubleSwipeDown != null) { - return _doubleSwipeDown!! - } - _doubleSwipeDown = fluentIcon(name = "Filled.DoubleSwipeDown") { - fluentPath { - moveTo(18.2f, 21.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) - lineToRelative(-3.0f, -3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, -1.4f) - lineToRelative(1.3f, 1.29f) - lineTo(16.5f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(11.59f) - lineToRelative(1.3f, -1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, 1.42f) - lineToRelative(-3.0f, 3.0f) - close() - moveTo(12.5f, 7.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 3.0f, 4.58f) - lineTo(15.5f, 9.24f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.0f, -5.24f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.0f, 5.24f) - verticalLineToRelative(2.34f) - arcToRelative(5.0f, 5.0f, 0.0f, true, false, -7.0f, -4.58f) - close() - moveTo(4.5f, 11.58f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 4.0f, 0.0f) - lineTo(8.5f, 9.24f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 6.5f, 4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -2.0f, 5.24f) - verticalLineToRelative(2.34f) - close() - moveTo(7.2f, 21.71f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) - lineToRelative(-3.0f, -3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, -1.42f) - lineToRelative(1.3f, 1.3f) - lineTo(5.5f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - verticalLineToRelative(11.59f) - lineToRelative(1.3f, -1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, 1.42f) - lineToRelative(-3.0f, 3.0f) - close() - } - } - return _doubleSwipeDown!! - } - -private var _doubleSwipeDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DoubleSwipeUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DoubleSwipeUp.kt deleted file mode 100644 index 087ff518..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DoubleSwipeUp.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DoubleSwipeUp: ImageVector - get() { - if (_doubleSwipeUp != null) { - return _doubleSwipeUp!! - } - _doubleSwipeUp = fluentIcon(name = "Filled.DoubleSwipeUp") { - fluentPath { - moveTo(18.2f, 2.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) - lineToRelative(-3.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 1.4f) - lineToRelative(1.3f, -1.29f) - lineTo(16.5f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(18.5f, 5.41f) - lineToRelative(1.3f, 1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, -1.42f) - lineToRelative(-3.0f, -3.0f) - close() - moveTo(12.5f, 17.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 3.0f, -4.58f) - verticalLineToRelative(2.34f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 2.0f, 5.24f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 2.0f, -5.24f) - verticalLineToRelative(-2.34f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, -7.0f, 4.58f) - close() - moveTo(4.5f, 12.42f) - arcToRelative(5.0f, 5.0f, 0.0f, true, false, 4.0f, 0.0f) - verticalLineToRelative(2.34f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.0f, 5.24f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.0f, -5.24f) - verticalLineToRelative(-2.34f) - close() - moveTo(7.2f, 2.29f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) - lineToRelative(-3.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 1.42f) - lineToRelative(1.3f, -1.3f) - lineTo(5.5f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(7.5f, 5.41f) - lineToRelative(1.3f, 1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, -1.42f) - lineToRelative(-3.0f, -3.0f) - close() - } - } - return _doubleSwipeUp!! - } - -private var _doubleSwipeUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DoubleTapSwipeDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DoubleTapSwipeDown.kt deleted file mode 100644 index e434d1fa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DoubleTapSwipeDown.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DoubleTapSwipeDown: ImageVector - get() { - if (_doubleTapSwipeDown != null) { - return _doubleTapSwipeDown!! - } - _doubleTapSwipeDown = fluentIcon(name = "Filled.DoubleTapSwipeDown") { - fluentPath { - moveTo(12.7f, 21.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) - lineToRelative(-3.0f, -3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, -1.4f) - lineToRelative(1.3f, 1.29f) - lineTo(11.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(9.59f) - lineToRelative(1.3f, -1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.42f) - lineToRelative(-3.0f, 3.0f) - close() - moveTo(4.5f, 9.0f) - arcToRelative(7.5f, 7.5f, 0.0f, false, false, 5.5f, 7.23f) - verticalLineToRelative(-2.1f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 4.0f, 0.0f) - verticalLineToRelative(2.1f) - arcTo(7.5f, 7.5f, 0.0f, true, false, 4.5f, 9.0f) - close() - moveTo(7.5f, 9.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 2.5f, 4.03f) - lineTo(10.0f, 10.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 4.0f, 0.0f) - verticalLineToRelative(2.53f) - arcTo(4.5f, 4.5f, 0.0f, true, false, 7.5f, 9.0f) - close() - } - } - return _doubleTapSwipeDown!! - } - -private var _doubleTapSwipeDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DoubleTapSwipeUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DoubleTapSwipeUp.kt deleted file mode 100644 index eea9b6da..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DoubleTapSwipeUp.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DoubleTapSwipeUp: ImageVector - get() { - if (_doubleTapSwipeUp != null) { - return _doubleTapSwipeUp!! - } - _doubleTapSwipeUp = fluentIcon(name = "Filled.DoubleTapSwipeUp") { - fluentPath { - moveTo(12.7f, 2.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) - lineToRelative(-3.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 1.4f) - lineTo(11.0f, 5.42f) - lineTo(11.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(13.0f, 5.41f) - lineToRelative(1.3f, 1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, -1.42f) - lineToRelative(-3.0f, -3.0f) - close() - moveTo(4.5f, 15.0f) - arcTo(7.5f, 7.5f, 0.0f, false, true, 10.0f, 7.77f) - verticalLineToRelative(2.1f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 4.0f, 0.0f) - verticalLineToRelative(-2.1f) - arcTo(7.5f, 7.5f, 0.0f, true, true, 4.5f, 15.0f) - close() - moveTo(7.5f, 15.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 2.5f, -4.03f) - verticalLineToRelative(2.53f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 4.0f, 0.0f) - verticalLineToRelative(-2.53f) - arcTo(4.5f, 4.5f, 0.0f, true, true, 7.5f, 15.0f) - close() - } - } - return _doubleTapSwipeUp!! - } - -private var _doubleTapSwipeUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Drafts.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Drafts.kt deleted file mode 100644 index 9d259f57..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Drafts.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Drafts: ImageVector - get() { - if (_drafts != null) { - return _drafts!! - } - _drafts = fluentIcon(name = "Filled.Drafts") { - fluentPath { - moveTo(13.94f, 5.0f) - lineTo(19.0f, 10.06f) - lineTo(9.06f, 20.0f) - curveToRelative(-0.27f, 0.28f, -0.62f, 0.48f, -1.0f, 0.58f) - lineToRelative(-5.11f, 1.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.92f, -0.93f) - lineToRelative(1.4f, -5.11f) - curveToRelative(0.1f, -0.38f, 0.3f, -0.72f, 0.57f, -1.0f) - lineTo(13.94f, 5.0f) - close() - moveTo(6.53f, 11.0f) - lineTo(5.03f, 12.5f) - lineTo(2.75f, 12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.78f) - close() - moveTo(20.88f, 2.83f) - lineTo(21.03f, 2.97f) - lineTo(21.18f, 3.12f) - arcToRelative(3.58f, 3.58f, 0.0f, false, true, -0.15f, 4.91f) - lineToRelative(-0.97f, 0.97f) - lineTo(15.0f, 3.94f) - lineToRelative(0.97f, -0.97f) - arcToRelative(3.58f, 3.58f, 0.0f, false, true, 4.9f, -0.14f) - close() - moveTo(10.53f, 7.0f) - lineToRelative(-1.5f, 1.5f) - lineTo(2.75f, 8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(7.78f) - close() - moveTo(14.53f, 3.0f) - lineTo(13.03f, 4.5f) - lineTo(2.75f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(11.78f) - close() - } - } - return _drafts!! - } - -private var _drafts: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Drag.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Drag.kt deleted file mode 100644 index 34008161..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Drag.kt +++ /dev/null @@ -1,145 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Drag: ImageVector - get() { - if (_drag != null) { - return _drag!! - } - _drag = fluentIcon(name = "Filled.Drag") { - fluentPath { - moveTo(12.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(13.0f, 18.58f) - lineToRelative(0.3f, -0.29f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.31f, -0.08f) - lineToRelative(0.1f, 0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.32f) - lineToRelative(-0.08f, 0.1f) - lineToRelative(-2.0f, 2.0f) - lineToRelative(-0.05f, 0.04f) - lineToRelative(-0.06f, 0.05f) - lineToRelative(-0.12f, 0.08f) - lineToRelative(-0.1f, 0.05f) - lineToRelative(-0.11f, 0.03f) - lineToRelative(-0.12f, 0.03f) - horizontalLineToRelative(-0.27f) - lineToRelative(-0.11f, -0.02f) - lineToRelative(-0.11f, -0.03f) - lineToRelative(-0.08f, -0.03f) - lineToRelative(-0.1f, -0.06f) - lineToRelative(-0.1f, -0.06f) - arcToRelative(1.01f, 1.01f, 0.0f, false, true, -0.09f, -0.08f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -1.5f) - lineToRelative(0.1f, 0.08f) - lineToRelative(0.29f, 0.3f) - lineTo(11.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) - lineTo(12.0f, 16.0f) - close() - moveTo(18.3f, 9.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.31f, -0.09f) - lineToRelative(0.1f, 0.08f) - lineToRelative(2.0f, 2.0f) - lineToRelative(0.04f, 0.05f) - lineToRelative(0.05f, 0.07f) - lineToRelative(0.08f, 0.1f) - lineToRelative(0.05f, 0.12f) - lineToRelative(0.03f, 0.1f) - lineToRelative(0.03f, 0.12f) - verticalLineToRelative(0.27f) - lineToRelative(-0.02f, 0.11f) - lineToRelative(-0.03f, 0.11f) - lineToRelative(-0.03f, 0.08f) - lineToRelative(-0.06f, 0.1f) - lineToRelative(-0.07f, 0.1f) - lineToRelative(-0.07f, 0.09f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.5f, -1.32f) - lineToRelative(0.08f, -0.1f) - lineToRelative(0.3f, -0.29f) - lineTo(17.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - lineTo(16.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) - lineTo(18.58f, 11.0f) - lineToRelative(-0.29f, -0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.31f) - lineToRelative(0.08f, -0.1f) - close() - moveTo(4.3f, 9.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.49f, 1.31f) - lineToRelative(-0.08f, 0.1f) - lineToRelative(-0.3f, 0.29f) - lineTo(7.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(8.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - lineTo(5.4f, 13.0f) - lineToRelative(0.3f, 0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.31f) - lineToRelative(-0.08f, 0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.08f) - lineToRelative(-0.1f, -0.08f) - lineToRelative(-2.0f, -2.0f) - lineToRelative(-0.1f, -0.11f) - lineToRelative(-0.07f, -0.12f) - lineToRelative(-0.05f, -0.1f) - lineToRelative(-0.03f, -0.11f) - lineToRelative(-0.03f, -0.12f) - verticalLineToRelative(-0.06f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-0.08f) - lineToRelative(0.02f, -0.11f) - lineToRelative(0.03f, -0.11f) - lineToRelative(0.04f, -0.11f) - lineToRelative(0.06f, -0.1f) - lineToRelative(0.06f, -0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, -0.09f) - lineToRelative(2.0f, -2.0f) - close() - moveTo(12.0f, 9.25f) - arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, 5.5f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.0f, -5.5f) - close() - moveTo(11.85f, 2.01f) - horizontalLineToRelative(0.32f) - lineToRelative(0.14f, 0.04f) - lineToRelative(0.11f, 0.04f) - lineToRelative(0.1f, 0.06f) - lineToRelative(0.1f, 0.07f) - lineToRelative(0.09f, 0.07f) - lineToRelative(2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 1.5f) - lineToRelative(-0.1f, -0.08f) - lineToRelative(-0.29f, -0.3f) - lineTo(13.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - lineTo(12.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - lineTo(11.0f, 5.4f) - lineToRelative(-0.3f, 0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.31f, 0.08f) - lineToRelative(-0.1f, -0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.32f) - lineToRelative(0.08f, -0.1f) - lineToRelative(2.0f, -2.0f) - lineToRelative(0.11f, -0.1f) - lineToRelative(0.12f, -0.06f) - lineToRelative(0.1f, -0.06f) - lineToRelative(0.11f, -0.03f) - lineToRelative(0.12f, -0.03f) - close() - } - } - return _drag!! - } - -private var _drag: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrawImage.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrawImage.kt deleted file mode 100644 index 4d9d5bbc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrawImage.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DrawImage: ImageVector - get() { - if (_drawImage != null) { - return _drawImage!! - } - _drawImage = fluentIcon(name = "Filled.DrawImage") { - fluentPath { - moveToRelative(15.66f, 14.7f) - lineToRelative(-2.08f, -2.05f) - lineToRelative(-0.13f, -0.12f) - curveToRelative(-0.84f, -0.7f, -2.06f, -0.7f, -2.9f, 0.0f) - lineToRelative(-0.13f, 0.12f) - lineToRelative(-6.23f, 6.12f) - arcToRelative(0.7f, 0.7f, 0.0f, false, true, -1.2f, -0.5f) - lineTo(2.99f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.26f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(4.76f) - curveToRelative(-0.93f, -0.08f, -1.9f, 0.24f, -2.6f, 0.95f) - lineToRelative(-2.74f, 2.73f) - close() - moveTo(13.5f, 8.24f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 4.5f, 0.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -4.5f, 0.0f) - close() - moveTo(15.75f, 7.49f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(11.47f, 13.71f) - lineTo(11.56f, 13.64f) - curveToRelative(0.26f, -0.2f, 0.61f, -0.2f, 0.87f, -0.01f) - lineToRelative(0.1f, 0.08f) - lineToRelative(2.07f, 2.03f) - lineToRelative(-2.11f, 2.11f) - curveToRelative(-0.44f, 0.44f, -0.76f, 0.98f, -0.93f, 1.57f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -1.41f, -1.13f) - arcToRelative(2.7f, 2.7f, 0.0f, false, false, -1.94f, 0.04f) - lineToRelative(-0.11f, 0.04f) - curveToRelative(-0.48f, 0.17f, -0.87f, -0.41f, -0.53f, -0.8f) - lineToRelative(0.2f, -0.24f) - lineToRelative(3.7f, -3.62f) - close() - moveTo(19.1f, 12.66f) - lineTo(13.2f, 18.56f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.44f, 1.71f) - curveToRelative(-0.35f, 0.17f, -0.7f, 0.2f, -1.13f, 0.1f) - curveToRelative(-0.13f, -0.02f, -0.18f, -0.17f, -0.13f, -0.29f) - curveToRelative(0.43f, -0.96f, -0.19f, -1.77f, -1.03f, -2.11f) - curveToRelative(-0.95f, -0.38f, -2.22f, 0.51f, -3.29f, 1.27f) - curveToRelative(-0.6f, 0.42f, -1.12f, 0.8f, -1.5f, 0.87f) - curveToRelative(-0.52f, 0.12f, -1.16f, -0.12f, -1.63f, -0.38f) - curveToRelative(-0.2f, -0.1f, -0.48f, 0.08f, -0.38f, 0.3f) - curveToRelative(0.24f, 0.52f, 0.73f, 1.12f, 1.7f, 1.25f) - curveToRelative(0.99f, 0.12f, 1.77f, -0.35f, 2.56f, -0.82f) - curveToRelative(0.58f, -0.35f, 1.16f, -0.7f, 1.82f, -0.8f) - curveToRelative(0.09f, -0.01f, 0.15f, 0.1f, 0.1f, 0.17f) - curveToRelative(-0.24f, 0.48f, -0.35f, 1.37f, 0.22f, 1.82f) - curveToRelative(0.85f, 0.66f, 3.24f, 0.29f, 3.83f, 0.09f) - lineToRelative(0.15f, -0.03f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _drawImage!! - } - -private var _drawImage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrawShape.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrawShape.kt deleted file mode 100644 index 2d6552fe..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrawShape.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DrawShape: ImageVector - get() { - if (_drawShape != null) { - return _drawShape!! - } - _drawShape = fluentIcon(name = "Filled.DrawShape") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.45f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(4.76f) - curveToRelative(-0.93f, -0.08f, -1.9f, 0.24f, -2.61f, 0.95f) - lineToRelative(-5.9f, 5.9f) - curveToRelative(-0.44f, 0.44f, -0.76f, 0.98f, -0.93f, 1.57f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -1.42f, -1.13f) - arcToRelative(2.7f, 2.7f, 0.0f, false, false, -1.93f, 0.04f) - arcToRelative(5.46f, 5.46f, 0.0f, false, false, -0.82f, 0.4f) - lineToRelative(-1.7f, 1.03f) - curveToRelative(-0.46f, 0.28f, -0.9f, 0.37f, -1.3f, 0.34f) - arcToRelative(1.9f, 1.9f, 0.0f, false, true, -0.9f, -0.32f) - curveToRelative(-0.38f, -0.25f, -0.5f, -0.68f, -0.5f, -1.0f) - lineTo(2.99f, 6.25f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.44f, 1.71f) - curveToRelative(-0.35f, 0.17f, -0.7f, 0.2f, -1.13f, 0.1f) - curveToRelative(-0.13f, -0.02f, -0.18f, -0.17f, -0.13f, -0.29f) - curveToRelative(0.43f, -0.96f, -0.19f, -1.77f, -1.03f, -2.11f) - curveToRelative(-0.95f, -0.38f, -2.22f, 0.51f, -3.29f, 1.27f) - curveToRelative(-0.6f, 0.42f, -1.12f, 0.8f, -1.5f, 0.87f) - curveToRelative(-0.52f, 0.12f, -1.16f, -0.12f, -1.63f, -0.38f) - curveToRelative(-0.2f, -0.1f, -0.48f, 0.08f, -0.38f, 0.3f) - curveToRelative(0.24f, 0.52f, 0.73f, 1.12f, 1.7f, 1.25f) - curveToRelative(0.99f, 0.12f, 1.77f, -0.35f, 2.56f, -0.82f) - curveToRelative(0.58f, -0.35f, 1.16f, -0.7f, 1.82f, -0.8f) - curveToRelative(0.09f, -0.01f, 0.15f, 0.1f, 0.1f, 0.17f) - curveToRelative(-0.24f, 0.48f, -0.35f, 1.37f, 0.22f, 1.82f) - curveToRelative(0.85f, 0.66f, 3.24f, 0.29f, 3.83f, 0.09f) - lineToRelative(0.15f, -0.03f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _drawShape!! - } - -private var _drawShape: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrawText.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrawText.kt deleted file mode 100644 index 23f4ae59..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrawText.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DrawText: ImageVector - get() { - if (_drawText != null) { - return _drawText!! - } - _drawText = fluentIcon(name = "Filled.DrawText") { - fluentPath { - moveTo(12.24f, 13.15f) - lineTo(7.76f, 13.15f) - lineTo(10.0f, 6.75f) - lineToRelative(2.24f, 6.4f) - close() - moveTo(12.94f, 15.15f) - lineTo(13.27f, 16.08f) - lineTo(14.84f, 14.51f) - lineTo(11.08f, 3.76f) - arcToRelative(1.14f, 1.14f, 0.0f, false, false, -2.15f, 0.0f) - lineTo(4.06f, 17.67f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.88f, 0.66f) - lineToRelative(1.12f, -3.18f) - horizontalLineToRelative(5.88f) - close() - moveTo(13.2f, 17.57f) - lineTo(19.1f, 11.67f) - arcToRelative(2.29f, 2.29f, 0.0f, true, true, 3.23f, 3.23f) - lineToRelative(-5.9f, 5.9f) - curveToRelative(-0.34f, 0.35f, -0.78f, 0.6f, -1.25f, 0.71f) - lineToRelative(-1.83f, 0.46f) - lineToRelative(-0.15f, 0.03f) - curveToRelative(-0.59f, 0.2f, -2.98f, 0.57f, -3.82f, -0.1f) - curveToRelative(-0.58f, -0.44f, -0.47f, -1.33f, -0.22f, -1.81f) - curveToRelative(0.04f, -0.08f, -0.02f, -0.18f, -0.1f, -0.17f) - curveToRelative(-0.67f, 0.1f, -1.25f, 0.45f, -1.83f, 0.8f) - curveToRelative(-0.79f, 0.47f, -1.57f, 0.94f, -2.55f, 0.82f) - arcToRelative(2.08f, 2.08f, 0.0f, false, true, -1.71f, -1.26f) - curveToRelative(-0.1f, -0.21f, 0.18f, -0.4f, 0.38f, -0.29f) - curveToRelative(0.47f, 0.26f, 1.11f, 0.5f, 1.64f, 0.38f) - curveToRelative(0.37f, -0.08f, 0.9f, -0.45f, 1.5f, -0.87f) - curveToRelative(1.06f, -0.76f, 2.33f, -1.65f, 3.28f, -1.27f) - curveToRelative(0.84f, 0.34f, 1.46f, 1.15f, 1.03f, 2.11f) - curveToRelative(-0.05f, 0.12f, 0.0f, 0.27f, 0.13f, 0.3f) - curveToRelative(0.42f, 0.1f, 0.78f, 0.06f, 1.13f, -0.1f) - lineToRelative(0.43f, -1.72f) - curveToRelative(0.12f, -0.47f, 0.36f, -0.9f, 0.7f, -1.25f) - close() - } - } - return _drawText!! - } - -private var _drawText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrawerAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrawerAdd.kt deleted file mode 100644 index 672716f9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrawerAdd.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DrawerAdd: ImageVector - get() { - if (_drawerAdd != null) { - return _drawerAdd!! - } - _drawerAdd = fluentIcon(name = "Filled.DrawerAdd") { - fluentPath { - moveTo(22.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(17.0f, 7.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - verticalLineTo(7.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineTo(16.0f) - verticalLineTo(3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - verticalLineTo(6.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineTo(17.0f) - close() - moveTo(6.25f, 4.0f) - horizontalLineToRelative(4.25f) - curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) - horizontalLineTo(6.25f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineTo(8.0f) - horizontalLineToRelative(5.67f) - curveToRelative(0.13f, 0.53f, 0.32f, 1.03f, 0.56f, 1.5f) - horizontalLineTo(4.5f) - verticalLineTo(14.0f) - horizontalLineToRelative(4.56f) - curveToRelative(0.38f, 0.0f, 0.69f, 0.31f, 0.69f, 0.7f) - verticalLineToRelative(0.05f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) - verticalLineToRelative(-0.06f) - curveToRelative(0.0f, -0.38f, 0.31f, -0.69f, 0.7f, -0.69f) - horizontalLineToRelative(4.55f) - verticalLineToRelative(-1.73f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(7.56f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineTo(6.25f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 18.75f) - verticalLineTo(7.25f) - curveTo(3.0f, 5.45f, 4.46f, 4.0f, 6.25f, 4.0f) - close() - } - } - return _drawerAdd!! - } - -private var _drawerAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrawerArrowDownload.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrawerArrowDownload.kt deleted file mode 100644 index 9c688017..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrawerArrowDownload.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DrawerArrowDownload: ImageVector - get() { - if (_drawerArrowDownload != null) { - return _drawerArrowDownload!! - } - _drawerArrowDownload = fluentIcon(name = "Filled.DrawerArrowDownload") { - fluentPath { - moveTo(11.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 5.0f, -5.48f) - lineTo(16.0f, 6.8f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.5f, 2.5f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineTo(17.0f, 6.79f) - lineTo(17.0f, 1.02f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -6.0f, 5.48f) - close() - moveTo(19.5f, 9.5f) - arcTo(0.5f, 0.5f, 0.0f, false, false, 19.0f, 9.0f) - horizontalLineToRelative(-5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - close() - moveTo(6.25f, 4.0f) - horizontalLineToRelative(4.25f) - curveToRelative(-0.2f, 0.48f, -0.34f, 0.98f, -0.42f, 1.5f) - lineTo(6.25f, 5.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 8.0f) - horizontalLineToRelative(5.67f) - curveToRelative(0.13f, 0.53f, 0.32f, 1.03f, 0.56f, 1.5f) - lineTo(4.5f, 9.5f) - lineTo(4.5f, 14.0f) - horizontalLineToRelative(4.56f) - curveToRelative(0.38f, 0.0f, 0.69f, 0.31f, 0.69f, 0.7f) - verticalLineToRelative(0.05f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) - verticalLineToRelative(-0.06f) - curveToRelative(0.0f, -0.38f, 0.31f, -0.69f, 0.7f, -0.69f) - horizontalLineToRelative(4.55f) - verticalLineToRelative(-1.73f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(7.56f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 22.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 18.75f) - lineTo(3.0f, 7.25f) - curveTo(3.0f, 5.45f, 4.46f, 4.0f, 6.25f, 4.0f) - close() - } - } - return _drawerArrowDownload!! - } - -private var _drawerArrowDownload: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrawerDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrawerDismiss.kt deleted file mode 100644 index e32d1858..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrawerDismiss.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DrawerDismiss: ImageVector - get() { - if (_drawerDismiss != null) { - return _drawerDismiss!! - } - _drawerDismiss = fluentIcon(name = "Filled.DrawerDismiss") { - fluentPath { - moveTo(22.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.85f, 4.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineTo(17.21f, 6.5f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineTo(16.5f, 5.79f) - lineToRelative(-1.65f, -1.64f) - close() - moveTo(6.25f, 4.0f) - horizontalLineToRelative(4.25f) - curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) - lineTo(6.25f, 5.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 8.0f) - horizontalLineToRelative(5.67f) - curveToRelative(0.13f, 0.53f, 0.32f, 1.03f, 0.56f, 1.5f) - lineTo(4.5f, 9.5f) - lineTo(4.5f, 14.0f) - horizontalLineToRelative(4.56f) - curveToRelative(0.38f, 0.0f, 0.69f, 0.31f, 0.69f, 0.7f) - verticalLineToRelative(0.05f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) - verticalLineToRelative(-0.06f) - curveToRelative(0.0f, -0.38f, 0.31f, -0.69f, 0.7f, -0.69f) - horizontalLineToRelative(4.55f) - verticalLineToRelative(-1.73f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(7.56f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 22.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 18.75f) - lineTo(3.0f, 7.25f) - curveTo(3.0f, 5.45f, 4.46f, 4.0f, 6.25f, 4.0f) - close() - } - } - return _drawerDismiss!! - } - -private var _drawerDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrawerPlay.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrawerPlay.kt deleted file mode 100644 index 61029363..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrawerPlay.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DrawerPlay: ImageVector - get() { - if (_drawerPlay != null) { - return _drawerPlay!! - } - _drawerPlay = fluentIcon(name = "Filled.DrawerPlay") { - fluentPath { - moveTo(22.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.0f, 8.61f) - curveToRelative(0.0f, 0.4f, 0.42f, 0.63f, 0.76f, 0.43f) - lineToRelative(3.53f, -2.11f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.86f) - lineToRelative(-3.53f, -2.12f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.76f, 0.43f) - verticalLineToRelative(4.23f) - close() - moveTo(6.25f, 4.0f) - horizontalLineToRelative(4.25f) - curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) - lineTo(6.25f, 5.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 8.0f) - horizontalLineToRelative(5.67f) - curveToRelative(0.13f, 0.53f, 0.32f, 1.03f, 0.56f, 1.5f) - lineTo(4.5f, 9.5f) - lineTo(4.5f, 14.0f) - horizontalLineToRelative(4.56f) - curveToRelative(0.38f, 0.0f, 0.69f, 0.31f, 0.69f, 0.7f) - verticalLineToRelative(0.05f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) - verticalLineToRelative(-0.06f) - curveToRelative(0.0f, -0.38f, 0.31f, -0.69f, 0.7f, -0.69f) - horizontalLineToRelative(4.55f) - verticalLineToRelative(-1.73f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(7.56f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 22.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 18.75f) - lineTo(3.0f, 7.25f) - curveTo(3.0f, 5.45f, 4.46f, 4.0f, 6.25f, 4.0f) - close() - } - } - return _drawerPlay!! - } - -private var _drawerPlay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrawerSubtract.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrawerSubtract.kt deleted file mode 100644 index 9e68b46d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrawerSubtract.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DrawerSubtract: ImageVector - get() { - if (_drawerSubtract != null) { - return _drawerSubtract!! - } - _drawerSubtract = fluentIcon(name = "Filled.DrawerSubtract") { - fluentPath { - moveTo(22.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(13.5f, 7.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineToRelative(6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-6.0f) - close() - moveTo(6.25f, 4.0f) - horizontalLineToRelative(4.25f) - curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) - lineTo(6.25f, 5.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 8.0f) - horizontalLineToRelative(5.67f) - curveToRelative(0.13f, 0.53f, 0.32f, 1.03f, 0.56f, 1.5f) - lineTo(4.5f, 9.5f) - lineTo(4.5f, 14.0f) - horizontalLineToRelative(4.56f) - curveToRelative(0.38f, 0.0f, 0.69f, 0.31f, 0.69f, 0.7f) - verticalLineToRelative(0.05f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) - verticalLineToRelative(-0.06f) - curveToRelative(0.0f, -0.38f, 0.31f, -0.69f, 0.7f, -0.69f) - horizontalLineToRelative(4.55f) - verticalLineToRelative(-1.73f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(7.56f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 22.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 18.75f) - lineTo(3.0f, 7.25f) - curveTo(3.0f, 5.45f, 4.46f, 4.0f, 6.25f, 4.0f) - close() - } - } - return _drawerSubtract!! - } - -private var _drawerSubtract: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrinkBeer.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrinkBeer.kt deleted file mode 100644 index 86f05248..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrinkBeer.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DrinkBeer: ImageVector - get() { - if (_drinkBeer != null) { - return _drinkBeer!! - } - _drinkBeer = fluentIcon(name = "Filled.DrinkBeer") { - fluentPath { - moveTo(7.25f, 2.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 4.0f, 5.25f) - verticalLineToRelative(14.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(9.0f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(17.5f, 18.0f) - horizontalLineToRelative(1.25f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-5.5f) - curveTo(22.0f, 7.45f, 20.54f, 6.0f, 18.75f, 6.0f) - lineTo(17.5f, 6.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-7.0f) - close() - moveTo(18.75f, 16.5f) - lineTo(17.5f, 16.5f) - verticalLineToRelative(-9.0f) - horizontalLineToRelative(1.25f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(5.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - close() - moveTo(16.0f, 6.0f) - lineTo(5.5f, 6.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(7.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(16.0f, 6.0f) - close() - moveTo(8.5f, 10.0f) - verticalLineToRelative(7.0f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 17.0f) - verticalLineToRelative(-7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(11.5f, 10.0f) - verticalLineToRelative(7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(14.5f, 10.0f) - verticalLineToRelative(7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - } - } - return _drinkBeer!! - } - -private var _drinkBeer: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrinkCoffee.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrinkCoffee.kt deleted file mode 100644 index 4a33502e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrinkCoffee.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DrinkCoffee: ImageVector - get() { - if (_drinkCoffee != null) { - return _drinkCoffee!! - } - _drinkCoffee = fluentIcon(name = "Filled.DrinkCoffee") { - fluentPath { - moveTo(5.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - curveToRelative(0.0f, 1.27f, 0.93f, 1.92f, 1.5f, 2.32f) - lineToRelative(0.07f, 0.04f) - curveToRelative(0.68f, 0.48f, 0.93f, 0.7f, 0.93f, 1.14f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - curveToRelative(0.0f, -1.27f, -0.93f, -1.92f, -1.5f, -2.32f) - lineToRelative(-0.07f, -0.04f) - curveToRelative(-0.68f, -0.48f, -0.93f, -0.7f, -0.93f, -1.14f) - close() - moveTo(4.82f, 8.0f) - curveTo(3.82f, 8.0f, 3.0f, 8.82f, 3.0f, 9.82f) - lineTo(3.0f, 14.0f) - arcToRelative(8.0f, 8.0f, 0.0f, false, false, 15.42f, 3.0f) - horizontalLineToRelative(1.33f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 0.0f, -6.5f) - lineTo(19.0f, 10.5f) - verticalLineToRelative(-0.68f) - curveToRelative(0.0f, -1.0f, -0.82f, -1.82f, -1.82f, -1.82f) - lineTo(4.82f, 8.0f) - close() - moveTo(19.75f, 15.5f) - horizontalLineToRelative(-0.89f) - curveToRelative(0.1f, -0.49f, 0.14f, -0.99f, 0.14f, -1.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(0.75f) - arcToRelative(1.75f, 1.75f, 0.0f, true, true, 0.0f, 3.5f) - close() - moveTo(8.75f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - curveToRelative(0.0f, 0.43f, 0.25f, 0.66f, 0.93f, 1.14f) - lineToRelative(0.06f, 0.04f) - curveToRelative(0.58f, 0.4f, 1.51f, 1.05f, 1.51f, 2.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - curveToRelative(0.0f, -0.43f, -0.25f, -0.66f, -0.93f, -1.14f) - lineToRelative(-0.06f, -0.04f) - curveTo(8.93f, 4.67f, 8.0f, 4.02f, 8.0f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(13.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - curveToRelative(0.0f, 1.27f, 0.93f, 1.92f, 1.5f, 2.32f) - lineToRelative(0.07f, 0.04f) - curveToRelative(0.68f, 0.48f, 0.93f, 0.7f, 0.93f, 1.14f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - curveToRelative(0.0f, -1.27f, -0.93f, -1.92f, -1.5f, -2.32f) - lineToRelative(-0.07f, -0.04f) - curveToRelative(-0.68f, -0.48f, -0.93f, -0.7f, -0.93f, -1.14f) - close() - } - } - return _drinkCoffee!! - } - -private var _drinkCoffee: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrinkMargarita.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrinkMargarita.kt deleted file mode 100644 index c51cbf27..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrinkMargarita.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DrinkMargarita: ImageVector - get() { - if (_drinkMargarita != null) { - return _drinkMargarita!! - } - _drinkMargarita = fluentIcon(name = "Filled.DrinkMargarita") { - fluentPath { - moveTo(20.49f, 2.63f) - curveToRelative(0.07f, 0.4f, -0.2f, 0.8f, -0.62f, 0.86f) - lineToRelative(-5.49f, 0.91f) - lineToRelative(-0.12f, 0.6f) - horizontalLineToRelative(3.99f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(4.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.0f, 3.24f) - verticalLineToRelative(0.51f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -3.25f, 3.93f) - verticalLineToRelative(3.07f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(-3.07f) - arcTo(4.0f, 4.0f, 0.0f, false, true, 8.0f, 13.5f) - lineTo(8.0f, 13.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.0f, -3.25f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.98f) - lineToRelative(0.28f, -1.4f) - curveToRelative(0.07f, -0.3f, 0.3f, -0.54f, 0.62f, -0.59f) - lineToRelative(6.0f, -1.0f) - curveToRelative(0.4f, -0.07f, 0.8f, 0.2f, 0.86f, 0.62f) - close() - moveTo(11.99f, 8.75f) - lineTo(12.44f, 6.5f) - lineTo(6.5f, 6.5f) - verticalLineToRelative(2.25f) - horizontalLineToRelative(5.48f) - close() - moveTo(17.5f, 8.75f) - lineTo(17.5f, 6.5f) - horizontalLineToRelative(-3.54f) - lineToRelative(-0.45f, 2.25f) - horizontalLineToRelative(3.99f) - close() - } - } - return _drinkMargarita!! - } - -private var _drinkMargarita: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrinkToGo.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrinkToGo.kt deleted file mode 100644 index 39a40143..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrinkToGo.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DrinkToGo: ImageVector - get() { - if (_drinkToGo != null) { - return _drinkToGo!! - } - _drinkToGo = fluentIcon(name = "Filled.DrinkToGo") { - fluentPath { - moveTo(15.72f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) - lineTo(15.56f, 4.5f) - horizontalLineToRelative(2.2f) - curveToRelative(0.3f, 0.0f, 0.59f, 0.2f, 0.7f, 0.5f) - lineToRelative(1.25f, 3.5f) - curveToRelative(0.17f, 0.49f, -0.2f, 1.0f, -0.7f, 1.0f) - horizontalLineToRelative(-1.05f) - lineToRelative(-1.6f, 10.05f) - arcTo(2.89f, 2.89f, 0.0f, false, true, 13.4f, 22.0f) - horizontalLineToRelative(-2.8f) - curveToRelative(-1.5f, 0.0f, -2.76f, -0.99f, -2.97f, -2.44f) - lineTo(6.05f, 9.5f) - horizontalLineTo(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, -1.0f) - lineTo(5.53f, 5.0f) - curveToRelative(0.11f, -0.3f, 0.4f, -0.5f, 0.71f, -0.5f) - horizontalLineToRelative(7.19f) - lineToRelative(2.28f, -2.28f) - close() - moveTo(17.22f, 6.0f) - horizontalLineTo(6.78f) - lineToRelative(-0.72f, 2.0f) - horizontalLineToRelative(11.88f) - lineToRelative(-0.72f, -2.0f) - close() - } - } - return _drinkToGo!! - } - -private var _drinkToGo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrinkWine.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrinkWine.kt deleted file mode 100644 index 9de0106c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DrinkWine.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DrinkWine: ImageVector - get() { - if (_drinkWine != null) { - return _drinkWine!! - } - _drinkWine = fluentIcon(name = "Filled.DrinkWine") { - fluentPath { - moveTo(6.75f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(7.0f) - arcToRelative(5.75f, 5.75f, 0.0f, false, false, 5.0f, 5.7f) - verticalLineToRelative(5.06f) - lineToRelative(-2.25f, -0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineToRelative(3.0f, 0.01f) - lineToRelative(3.5f, -0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(12.5f, 20.5f) - verticalLineToRelative(-5.04f) - curveToRelative(3.1f, -0.38f, 5.5f, -3.01f, 5.5f, -6.21f) - verticalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(6.75f, 2.0f) - close() - moveTo(7.5f, 7.0f) - lineTo(7.5f, 3.5f) - horizontalLineToRelative(9.0f) - lineTo(16.5f, 7.0f) - horizontalLineToRelative(-9.0f) - close() - moveTo(15.68f, 9.7f) - arcToRelative(3.73f, 3.73f, 0.0f, false, true, -2.91f, 2.97f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.2f, -0.98f) - arcToRelative(2.74f, 2.74f, 0.0f, false, false, 2.13f, -2.17f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.98f, 0.19f) - close() - } - } - return _drinkWine!! - } - -private var _drinkWine: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DriveTrain.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DriveTrain.kt deleted file mode 100644 index 04eb132b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DriveTrain.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DriveTrain: ImageVector - get() { - if (_driveTrain != null) { - return _driveTrain!! - } - _driveTrain = fluentIcon(name = "Filled.DriveTrain") { - fluentPath { - moveTo(3.0f, 5.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(2.06f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 3.88f, 0.0f) - horizontalLineTo(16.0f) - verticalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - verticalLineToRelative(3.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) - verticalLineTo(8.0f) - horizontalLineToRelative(-2.27f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.98f, 0.85f) - verticalLineToRelative(6.3f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.98f, 0.85f) - horizontalLineTo(16.0f) - verticalLineToRelative(-0.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - verticalLineToRelative(3.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(-2.06f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -3.88f, 0.0f) - horizontalLineTo(8.0f) - verticalLineToRelative(1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) - verticalLineToRelative(-3.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - verticalLineToRelative(0.5f) - horizontalLineToRelative(2.27f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.98f, -0.85f) - verticalLineToRelative(-6.3f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.98f, -0.85f) - horizontalLineTo(8.0f) - verticalLineToRelative(0.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) - verticalLineToRelative(-3.0f) - close() - } - } - return _driveTrain!! - } - -private var _driveTrain: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Drop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Drop.kt deleted file mode 100644 index 8057180b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Drop.kt +++ /dev/null @@ -1,33 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Drop: ImageVector - get() { - if (_drop != null) { - return _drop!! - } - _drop = fluentIcon(name = "Filled.Drop") { - fluentPath { - moveTo(11.47f, 2.22f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - curveToRelative(0.4f, 0.4f, 2.0f, 2.13f, 3.5f, 4.36f) - curveTo(17.5f, 8.78f, 19.0f, 11.63f, 19.0f, 14.25f) - curveToRelative(0.0f, 2.52f, -0.75f, 4.48f, -2.04f, 5.8f) - arcTo(6.78f, 6.78f, 0.0f, false, true, 12.0f, 22.0f) - arcToRelative(6.78f, 6.78f, 0.0f, false, true, -4.96f, -1.94f) - curveTo(5.74f, 18.73f, 5.0f, 16.77f, 5.0f, 14.25f) - curveToRelative(0.0f, -2.62f, 1.5f, -5.46f, 2.97f, -7.67f) - curveToRelative(1.5f, -2.23f, 3.1f, -3.96f, 3.5f, -4.36f) - close() - } - } - return _drop!! - } - -private var _drop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreen.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreen.kt deleted file mode 100644 index 544dab66..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreen.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DualScreen: ImageVector - get() { - if (_dualScreen != null) { - return _dualScreen!! - } - _dualScreen = fluentIcon(name = "Filled.DualScreen") { - fluentPath { - moveTo(20.25f, 4.0f) - curveTo(21.2f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.96f, -0.79f, 1.75f, -1.75f, 1.75f) - lineTo(13.0f, 20.0f) - curveToRelative(-0.09f, 0.0f, -0.17f, 0.0f, -0.26f, -0.02f) - lineTo(12.74f, 4.02f) - lineTo(13.0f, 4.0f) - horizontalLineToRelative(7.25f) - close() - moveTo(11.0f, 4.0f) - curveToRelative(0.08f, 0.0f, 0.16f, 0.0f, 0.24f, 0.02f) - verticalLineToRelative(15.96f) - lineTo(11.0f, 20.0f) - lineTo(3.75f, 20.0f) - curveTo(2.78f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) - lineTo(2.0f, 5.75f) - curveTo(2.0f, 4.78f, 2.78f, 4.0f, 3.75f, 4.0f) - lineTo(11.0f, 4.0f) - close() - moveTo(9.24f, 15.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(9.34f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(16.24f, 15.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(16.34f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - } - } - return _dualScreen!! - } - -private var _dualScreen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenAdd.kt deleted file mode 100644 index c7f3540f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenAdd.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DualScreenAdd: ImageVector - get() { - if (_dualScreenAdd != null) { - return _dualScreenAdd!! - } - _dualScreenAdd = fluentIcon(name = "Filled.DualScreenAdd") { - fluentPath { - moveTo(22.0f, 9.97f) - verticalLineToRelative(10.28f) - curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) - lineTo(13.0f, 22.0f) - curveToRelative(-0.09f, 0.0f, -0.17f, 0.0f, -0.26f, -0.02f) - lineTo(12.74f, 11.8f) - arcTo(6.47f, 6.47f, 0.0f, false, false, 22.0f, 9.97f) - close() - moveTo(10.02f, 6.0f) - arcToRelative(6.63f, 6.63f, 0.0f, false, false, 1.22f, 4.32f) - verticalLineToRelative(11.66f) - lineTo(11.0f, 22.0f) - lineTo(3.75f, 22.0f) - curveTo(2.78f, 22.0f, 2.0f, 21.2f, 2.0f, 20.25f) - lineTo(2.0f, 7.75f) - curveTo(2.0f, 6.78f, 2.78f, 6.0f, 3.75f, 6.0f) - horizontalLineToRelative(6.27f) - close() - moveTo(9.24f, 17.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(9.34f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(16.24f, 17.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(16.34f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(16.5f, 1.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(16.5f, 3.0f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) - lineToRelative(-0.01f, 0.1f) - lineTo(16.0f, 6.0f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(0.18f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) - lineToRelative(0.1f, 0.01f) - lineTo(16.0f, 7.0f) - verticalLineToRelative(2.6f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - horizontalLineToRelative(0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) - lineToRelative(0.01f, -0.1f) - lineTo(17.0f, 7.0f) - horizontalLineToRelative(2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - verticalLineToRelative(-0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) - lineTo(19.5f, 6.0f) - lineTo(17.0f, 6.0f) - lineTo(17.0f, 3.4f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.4f) - close() - } - } - return _dualScreenAdd!! - } - -private var _dualScreenAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenArrowRight.kt deleted file mode 100644 index 8faa3eed..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenArrowRight.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DualScreenArrowRight: ImageVector - get() { - if (_dualScreenArrowRight != null) { - return _dualScreenArrowRight!! - } - _dualScreenArrowRight = fluentIcon(name = "Filled.DualScreenArrowRight") { - fluentPath { - moveTo(22.0f, 9.97f) - verticalLineToRelative(10.28f) - curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) - lineTo(13.0f, 22.0f) - curveToRelative(-0.09f, 0.0f, -0.17f, 0.0f, -0.26f, -0.02f) - lineTo(12.74f, 11.8f) - arcTo(6.47f, 6.47f, 0.0f, false, false, 22.0f, 9.97f) - close() - moveTo(10.02f, 6.0f) - arcToRelative(6.63f, 6.63f, 0.0f, false, false, 1.22f, 4.32f) - verticalLineToRelative(11.66f) - lineTo(11.0f, 22.0f) - lineTo(3.75f, 22.0f) - curveTo(2.78f, 22.0f, 2.0f, 21.2f, 2.0f, 20.25f) - lineTo(2.0f, 7.75f) - curveTo(2.0f, 6.78f, 2.78f, 6.0f, 3.75f, 6.0f) - horizontalLineToRelative(6.27f) - close() - moveTo(9.24f, 17.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(9.34f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(16.24f, 17.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(16.34f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(16.5f, 1.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(16.8f, 3.55f) - lineTo(16.72f, 3.59f) - lineTo(16.65f, 3.65f) - lineTo(16.59f, 3.72f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) - lineToRelative(0.06f, 0.07f) - lineTo(18.29f, 6.0f) - lineTo(13.4f, 6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(0.18f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(0.06f, -0.07f) - lineToRelative(2.53f, -2.53f) - lineToRelative(0.04f, -0.05f) - lineToRelative(0.04f, -0.08f) - lineToRelative(0.03f, -0.08f) - lineTo(19.99f, 6.39f) - lineToRelative(-0.03f, -0.08f) - lineToRelative(-0.04f, -0.08f) - lineToRelative(-0.04f, -0.05f) - lineToRelative(-2.53f, -2.53f) - lineToRelative(-0.07f, -0.06f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.49f, -0.04f) - close() - } - } - return _dualScreenArrowRight!! - } - -private var _dualScreenArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenArrowUp.kt deleted file mode 100644 index 5cc60239..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenArrowUp.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DualScreenArrowUp: ImageVector - get() { - if (_dualScreenArrowUp != null) { - return _dualScreenArrowUp!! - } - _dualScreenArrowUp = fluentIcon(name = "Filled.DualScreenArrowUp") { - fluentPath { - moveTo(22.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(16.0f, 4.7f) - verticalLineToRelative(4.8f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - lineTo(17.0f, 4.7f) - lineToRelative(1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineTo(16.0f, 4.71f) - close() - moveTo(22.0f, 20.25f) - lineTo(22.0f, 9.97f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, -9.26f, 1.83f) - verticalLineToRelative(10.18f) - lineTo(13.0f, 22.0f) - horizontalLineToRelative(7.25f) - curveToRelative(0.96f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - close() - moveTo(14.74f, 17.5f) - horizontalLineToRelative(1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(14.64f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(10.0f, 6.5f) - curveToRelative(0.0f, -0.17f, 0.0f, -0.33f, 0.02f, -0.5f) - lineTo(3.75f, 6.0f) - curveTo(2.78f, 6.0f, 2.0f, 6.78f, 2.0f, 7.75f) - verticalLineToRelative(12.5f) - curveTo(2.0f, 21.2f, 2.78f, 22.0f, 3.75f, 22.0f) - lineTo(11.0f, 22.0f) - curveToRelative(0.08f, 0.0f, 0.16f, 0.0f, 0.24f, -0.02f) - lineTo(11.24f, 10.32f) - arcTo(6.47f, 6.47f, 0.0f, false, true, 10.0f, 6.5f) - close() - moveTo(7.74f, 17.5f) - horizontalLineToRelative(1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(7.64f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.1f) - close() - } - } - return _dualScreenArrowUp!! - } - -private var _dualScreenArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenClock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenClock.kt deleted file mode 100644 index ec3631de..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenClock.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DualScreenClock: ImageVector - get() { - if (_dualScreenClock != null) { - return _dualScreenClock!! - } - _dualScreenClock = fluentIcon(name = "Filled.DualScreenClock") { - fluentPath { - moveTo(22.0f, 9.97f) - verticalLineToRelative(10.28f) - curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) - lineTo(13.0f, 22.0f) - curveToRelative(-0.09f, 0.0f, -0.17f, 0.0f, -0.26f, -0.02f) - lineTo(12.74f, 11.8f) - arcTo(6.47f, 6.47f, 0.0f, false, false, 22.0f, 9.97f) - close() - moveTo(10.02f, 6.0f) - arcToRelative(6.63f, 6.63f, 0.0f, false, false, 1.22f, 4.32f) - verticalLineToRelative(11.66f) - lineTo(11.0f, 22.0f) - lineTo(3.75f, 22.0f) - curveTo(2.78f, 22.0f, 2.0f, 21.2f, 2.0f, 20.25f) - lineTo(2.0f, 7.75f) - curveTo(2.0f, 6.78f, 2.78f, 6.0f, 3.75f, 6.0f) - horizontalLineToRelative(6.27f) - close() - moveTo(9.24f, 17.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(9.34f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(16.24f, 17.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(16.34f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(16.5f, 1.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(15.5f, 3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - lineTo(16.0f, 7.0f) - lineTo(16.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - } - } - return _dualScreenClock!! - } - -private var _dualScreenClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenClosedAlert.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenClosedAlert.kt deleted file mode 100644 index fe883c58..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenClosedAlert.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DualScreenClosedAlert: ImageVector - get() { - if (_dualScreenClosedAlert != null) { - return _dualScreenClosedAlert!! - } - _dualScreenClosedAlert = fluentIcon(name = "Filled.DualScreenClosedAlert") { - fluentPath { - moveTo(16.5f, 2.0f) - arcToRelative(4.01f, 4.01f, 0.0f, false, true, 4.0f, 4.0f) - verticalLineToRelative(2.52f) - lineToRelative(1.38f, 1.66f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.38f, 0.82f) - horizontalLineToRelative(-10.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.38f, -0.82f) - lineToRelative(1.38f, -1.66f) - lineTo(12.5f, 6.0f) - arcToRelative(4.01f, 4.01f, 0.0f, false, true, 4.0f, -4.0f) - close() - moveTo(5.75f, 5.0f) - horizontalLineToRelative(5.85f) - curveToRelative(-0.06f, 0.33f, -0.1f, 0.66f, -0.1f, 1.0f) - verticalLineToRelative(2.16f) - lineToRelative(-1.15f, 1.38f) - arcTo(1.5f, 1.5f, 0.0f, false, false, 11.5f, 12.0f) - horizontalLineToRelative(2.17f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 17.0f, 13.96f) - verticalLineToRelative(4.79f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(5.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(15.5f, 12.73f) - curveToRelative(-0.3f, -0.17f, -0.55f, -0.43f, -0.72f, -0.73f) - horizontalLineToRelative(3.44f) - arcToRelative(1.98f, 1.98f, 0.0f, false, true, -2.72f, 0.73f) - close() - } - } - return _dualScreenClosedAlert!! - } - -private var _dualScreenClosedAlert: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenDesktop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenDesktop.kt deleted file mode 100644 index 0a91dd24..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenDesktop.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DualScreenDesktop: ImageVector - get() { - if (_dualScreenDesktop != null) { - return _dualScreenDesktop!! - } - _dualScreenDesktop = fluentIcon(name = "Filled.DualScreenDesktop") { - fluentPath { - moveTo(7.5f, 10.0f) - verticalLineToRelative(12.0f) - lineTo(3.75f, 22.0f) - curveToRelative(-0.92f, 0.0f, -1.67f, -0.7f, -1.74f, -1.6f) - lineTo(2.0f, 20.24f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) - lineToRelative(0.15f, -0.01f) - lineTo(7.5f, 9.99f) - close() - moveTo(12.25f, 10.0f) - curveToRelative(0.92f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.92f, -0.7f, 1.67f, -1.6f, 1.74f) - lineToRelative(-0.15f, 0.01f) - lineTo(8.5f, 22.0f) - lineTo(8.5f, 10.0f) - horizontalLineToRelative(3.75f) - close() - moveTo(10.65f, 18.5f) - horizontalLineToRelative(-0.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(5.89f, 18.5f) - horizontalLineToRelative(-0.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(6.0f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(19.75f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - lineTo(17.0f, 15.5f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(15.0f, 19.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(0.5f) - verticalLineToRelative(-2.0f) - lineTo(15.0f, 15.5f) - verticalLineToRelative(-4.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 12.66f, 9.0f) - lineTo(4.0f, 9.0f) - lineTo(4.0f, 4.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(6.25f, 2.0f) - horizontalLineToRelative(13.5f) - close() - } - } - return _dualScreenDesktop!! - } - -private var _dualScreenDesktop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenDismiss.kt deleted file mode 100644 index 1bae7e45..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenDismiss.kt +++ /dev/null @@ -1,93 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DualScreenDismiss: ImageVector - get() { - if (_dualScreenDismiss != null) { - return _dualScreenDismiss!! - } - _dualScreenDismiss = fluentIcon(name = "Filled.DualScreenDismiss") { - fluentPath { - moveTo(22.0f, 9.97f) - verticalLineToRelative(10.28f) - curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) - lineTo(13.0f, 22.0f) - curveToRelative(-0.09f, 0.0f, -0.17f, 0.0f, -0.26f, -0.02f) - lineTo(12.74f, 11.8f) - arcTo(6.47f, 6.47f, 0.0f, false, false, 22.0f, 9.97f) - close() - moveTo(10.02f, 6.0f) - arcToRelative(6.63f, 6.63f, 0.0f, false, false, 1.22f, 4.32f) - verticalLineToRelative(11.66f) - lineTo(11.0f, 22.0f) - lineTo(3.75f, 22.0f) - curveTo(2.78f, 22.0f, 2.0f, 21.2f, 2.0f, 20.25f) - lineTo(2.0f, 7.75f) - curveTo(2.0f, 6.78f, 2.78f, 6.0f, 3.75f, 6.0f) - horizontalLineToRelative(6.27f) - close() - moveTo(9.24f, 17.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(9.34f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(16.24f, 17.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(16.34f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(16.5f, 1.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(14.1f, 3.97f) - lineTo(14.02f, 4.02f) - lineTo(13.97f, 4.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.05f, 0.07f) - lineTo(15.8f, 6.5f) - lineToRelative(-1.76f, 1.77f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.06f, 0.06f) - lineToRelative(0.07f, 0.06f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) - lineToRelative(0.07f, -0.06f) - lineToRelative(1.77f, -1.76f) - lineToRelative(1.77f, 1.77f) - lineToRelative(0.07f, 0.05f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.57f, 0.0f) - lineToRelative(0.07f, -0.05f) - lineToRelative(0.05f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) - lineToRelative(-0.05f, -0.07f) - lineTo(17.2f, 6.5f) - lineToRelative(1.77f, -1.77f) - lineToRelative(0.06f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) - lineToRelative(-0.06f, -0.07f) - lineToRelative(-0.07f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) - lineToRelative(-0.07f, 0.05f) - lineTo(16.5f, 5.8f) - lineToRelative(-1.77f, -1.77f) - lineToRelative(-0.07f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.05f) - lineToRelative(-0.07f, 0.05f) - close() - } - } - return _dualScreenDismiss!! - } - -private var _dualScreenDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenGroup.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenGroup.kt deleted file mode 100644 index 2c39426e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenGroup.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DualScreenGroup: ImageVector - get() { - if (_dualScreenGroup != null) { - return _dualScreenGroup!! - } - _dualScreenGroup = fluentIcon(name = "Filled.DualScreenGroup") { - fluentPath { - moveTo(20.25f, 4.0f) - curveTo(21.22f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-7.24f) - curveToRelative(-0.1f, 0.0f, -0.18f, 0.0f, -0.26f, -0.02f) - lineTo(12.75f, 4.02f) - lineToRelative(0.26f, -0.02f) - horizontalLineToRelative(7.24f) - close() - moveTo(11.01f, 4.0f) - curveToRelative(0.08f, 0.0f, 0.16f, 0.0f, 0.24f, 0.02f) - verticalLineToRelative(15.96f) - lineToRelative(-0.24f, 0.02f) - lineTo(3.76f, 20.0f) - curveTo(2.79f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) - lineTo(2.0f, 5.75f) - curveTo(2.0f, 4.8f, 2.79f, 4.0f, 3.76f, 4.0f) - lineTo(11.0f, 4.0f) - close() - } - } - return _dualScreenGroup!! - } - -private var _dualScreenGroup: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenHeader.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenHeader.kt deleted file mode 100644 index b14a622c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenHeader.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DualScreenHeader: ImageVector - get() { - if (_dualScreenHeader != null) { - return _dualScreenHeader!! - } - _dualScreenHeader = fluentIcon(name = "Filled.DualScreenHeader") { - fluentPath { - moveTo(22.0f, 8.0f) - verticalLineToRelative(10.25f) - curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) - lineTo(13.0f, 20.0f) - curveToRelative(-0.09f, 0.0f, -0.17f, 0.0f, -0.26f, -0.02f) - lineTo(12.74f, 8.0f) - lineTo(22.0f, 8.0f) - close() - moveTo(11.24f, 8.0f) - verticalLineToRelative(11.98f) - lineTo(11.0f, 20.0f) - lineTo(3.75f, 20.0f) - curveTo(2.78f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) - lineTo(2.0f, 8.0f) - horizontalLineToRelative(9.24f) - close() - moveTo(11.0f, 4.0f) - curveToRelative(0.08f, 0.0f, 0.16f, 0.0f, 0.24f, 0.02f) - lineTo(11.24f, 7.0f) - lineTo(2.0f, 7.0f) - lineTo(2.0f, 5.75f) - curveTo(2.0f, 4.8f, 2.78f, 4.0f, 3.75f, 4.0f) - lineTo(11.0f, 4.0f) - close() - moveTo(20.25f, 4.0f) - curveTo(21.2f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) - lineTo(22.0f, 7.0f) - horizontalLineToRelative(-9.26f) - lineTo(12.74f, 4.02f) - lineTo(13.0f, 4.0f) - horizontalLineToRelative(7.25f) - close() - } - } - return _dualScreenHeader!! - } - -private var _dualScreenHeader: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenLock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenLock.kt deleted file mode 100644 index 59706bb7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenLock.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DualScreenLock: ImageVector - get() { - if (_dualScreenLock != null) { - return _dualScreenLock!! - } - _dualScreenLock = fluentIcon(name = "Filled.DualScreenLock") { - fluentPath { - moveTo(17.0f, 5.0f) - horizontalLineToRelative(-0.5f) - arcTo(1.5f, 1.5f, 0.0f, false, false, 15.0f, 6.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(6.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(22.0f, 5.0f) - lineTo(22.0f, 4.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) - verticalLineToRelative(1.0f) - close() - moveTo(18.5f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-2.0f) - lineTo(18.5f, 4.0f) - close() - moveTo(20.5f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(13.0f, 6.0f) - horizontalLineToRelative(1.05f) - curveToRelative(-0.03f, 0.16f, -0.05f, 0.33f, -0.05f, 0.5f) - verticalLineToRelative(5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, 2.5f) - lineTo(22.0f, 14.0f) - verticalLineToRelative(6.25f) - curveToRelative(0.0f, 0.96f, -0.79f, 1.75f, -1.75f, 1.75f) - lineTo(13.0f, 22.0f) - curveToRelative(-0.09f, 0.0f, -0.17f, 0.0f, -0.26f, -0.02f) - lineTo(12.74f, 6.02f) - lineTo(13.0f, 6.0f) - close() - moveTo(16.24f, 17.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(16.34f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(11.0f, 6.0f) - curveToRelative(0.08f, 0.0f, 0.16f, 0.0f, 0.24f, 0.02f) - verticalLineToRelative(15.96f) - lineTo(11.0f, 22.0f) - lineTo(3.75f, 22.0f) - curveTo(2.78f, 22.0f, 2.0f, 21.2f, 2.0f, 20.25f) - lineTo(2.0f, 7.75f) - curveTo(2.0f, 6.78f, 2.78f, 6.0f, 3.75f, 6.0f) - lineTo(11.0f, 6.0f) - close() - moveTo(9.24f, 17.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(9.34f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - } - } - return _dualScreenLock!! - } - -private var _dualScreenLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenMirror.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenMirror.kt deleted file mode 100644 index 153b0e25..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenMirror.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DualScreenMirror: ImageVector - get() { - if (_dualScreenMirror != null) { - return _dualScreenMirror!! - } - _dualScreenMirror = fluentIcon(name = "Filled.DualScreenMirror") { - fluentPath { - moveTo(20.25f, 4.0f) - curveTo(21.22f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-7.24f) - curveToRelative(-0.1f, 0.0f, -0.18f, 0.0f, -0.26f, -0.02f) - lineTo(12.75f, 4.02f) - lineToRelative(0.26f, -0.02f) - horizontalLineToRelative(7.24f) - close() - moveTo(18.17f, 9.42f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.34f, 0.0f) - lineToRelative(-2.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.67f, 1.08f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.67f, -1.08f) - lineToRelative(-2.25f, -4.5f) - close() - moveTo(11.01f, 4.0f) - curveToRelative(0.08f, 0.0f, 0.16f, 0.0f, 0.24f, 0.02f) - verticalLineToRelative(15.96f) - lineToRelative(-0.24f, 0.02f) - lineTo(3.76f, 20.0f) - curveTo(2.79f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) - lineTo(2.0f, 5.75f) - curveTo(2.0f, 4.8f, 2.79f, 4.0f, 3.76f, 4.0f) - lineTo(11.0f, 4.0f) - close() - moveTo(7.17f, 9.42f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.34f, 0.0f) - lineToRelative(-2.25f, 4.5f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 4.25f, 15.0f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.67f, -1.08f) - lineToRelative(-2.25f, -4.5f) - close() - } - } - return _dualScreenMirror!! - } - -private var _dualScreenMirror: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenPagination.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenPagination.kt deleted file mode 100644 index c44e3f92..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenPagination.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DualScreenPagination: ImageVector - get() { - if (_dualScreenPagination != null) { - return _dualScreenPagination!! - } - _dualScreenPagination = fluentIcon(name = "Filled.DualScreenPagination") { - fluentPath { - moveTo(20.25f, 4.0f) - curveTo(21.2f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) - lineTo(13.0f, 20.0f) - curveToRelative(-0.09f, 0.0f, -0.17f, 0.0f, -0.26f, -0.02f) - lineTo(12.74f, 4.02f) - lineTo(13.0f, 4.0f) - horizontalLineToRelative(7.25f) - close() - moveTo(11.0f, 4.0f) - curveToRelative(0.08f, 0.0f, 0.16f, 0.0f, 0.24f, 0.02f) - verticalLineToRelative(15.96f) - lineTo(11.0f, 20.0f) - lineTo(3.75f, 20.0f) - curveTo(2.78f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) - lineTo(2.0f, 5.75f) - curveTo(2.0f, 4.8f, 2.78f, 4.0f, 3.75f, 4.0f) - lineTo(11.0f, 4.0f) - close() - moveTo(17.63f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(20.13f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(15.13f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - } - } - return _dualScreenPagination!! - } - -private var _dualScreenPagination: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenSettings.kt deleted file mode 100644 index d3d08b86..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenSettings.kt +++ /dev/null @@ -1,88 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DualScreenSettings: ImageVector - get() { - if (_dualScreenSettings != null) { - return _dualScreenSettings!! - } - _dualScreenSettings = fluentIcon(name = "Filled.DualScreenSettings") { - fluentPath { - moveTo(13.27f, 2.98f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.58f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) - lineToRelative(0.54f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) - lineToRelative(-0.18f, 0.64f) - curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.48f, 0.92f) - lineToRelative(0.5f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.9f) - lineToRelative(-0.2f, -0.7f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) - lineToRelative(0.59f, -0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, -0.01f, -1.8f) - lineToRelative(-0.54f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.19f, -0.63f) - curveToRelative(-0.44f, -0.39f, -0.94f, -0.7f, -1.49f, -0.93f) - lineToRelative(-0.5f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.53f, 0.22f, -1.03f, 0.53f, -1.47f, 0.91f) - lineToRelative(0.2f, 0.69f) - close() - moveTo(16.5f, 8.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(15.7f, 5.0f, 16.5f, 5.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(17.3f, 8.0f, 16.5f, 8.0f) - close() - moveTo(16.5f, 13.0f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 22.0f, 9.96f) - verticalLineToRelative(10.29f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(13.0f, 22.0f) - curveToRelative(-0.09f, 0.0f, -0.17f, 0.0f, -0.26f, -0.02f) - lineTo(12.74f, 11.81f) - arcTo(6.47f, 6.47f, 0.0f, false, false, 16.5f, 13.0f) - close() - moveTo(16.24f, 17.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(16.34f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(10.0f, 6.5f) - lineTo(10.0f, 6.0f) - lineTo(3.75f, 6.0f) - curveTo(2.78f, 6.0f, 2.0f, 6.78f, 2.0f, 7.75f) - verticalLineToRelative(12.5f) - curveTo(2.0f, 21.2f, 2.78f, 22.0f, 3.75f, 22.0f) - lineTo(11.0f, 22.0f) - curveToRelative(0.08f, 0.0f, 0.16f, 0.0f, 0.25f, -0.02f) - lineTo(11.25f, 10.33f) - arcTo(6.47f, 6.47f, 0.0f, false, true, 10.0f, 6.5f) - close() - moveTo(9.24f, 17.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(7.65f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.6f) - close() - } - } - return _dualScreenSettings!! - } - -private var _dualScreenSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenSpan.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenSpan.kt deleted file mode 100644 index b72fdaa2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenSpan.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DualScreenSpan: ImageVector - get() { - if (_dualScreenSpan != null) { - return _dualScreenSpan!! - } - _dualScreenSpan = fluentIcon(name = "Filled.DualScreenSpan") { - fluentPath { - moveTo(22.0f, 5.75f) - curveTo(22.0f, 4.8f, 21.22f, 4.0f, 20.25f, 4.0f) - horizontalLineToRelative(-7.24f) - lineToRelative(-0.26f, 0.02f) - verticalLineToRelative(7.23f) - horizontalLineToRelative(4.83f) - lineToRelative(-0.89f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.12f, -1.0f) - lineToRelative(2.0f, 2.25f) - curveToRelative(0.25f, 0.29f, 0.25f, 0.71f, 0.0f, 1.0f) - lineToRelative(-2.0f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.12f, -1.0f) - lineToRelative(0.9f, -1.0f) - horizontalLineToRelative(-4.84f) - verticalLineToRelative(7.23f) - lineToRelative(0.26f, 0.02f) - horizontalLineToRelative(7.24f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(22.0f, 5.75f) - close() - moveTo(11.25f, 11.25f) - lineTo(6.42f, 11.25f) - lineToRelative(0.9f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.13f, -1.0f) - lineToRelative(-2.0f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.0f) - lineToRelative(2.0f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.12f, -1.0f) - lineToRelative(-0.89f, -1.0f) - horizontalLineToRelative(4.83f) - verticalLineToRelative(7.23f) - lineToRelative(-0.24f, 0.02f) - lineTo(3.76f, 20.0f) - curveTo(2.79f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) - lineTo(2.0f, 5.75f) - curveTo(2.0f, 4.8f, 2.79f, 4.0f, 3.76f, 4.0f) - lineTo(11.0f, 4.0f) - curveToRelative(0.08f, 0.0f, 0.16f, 0.0f, 0.24f, 0.02f) - verticalLineToRelative(7.23f) - close() - } - } - return _dualScreenSpan!! - } - -private var _dualScreenSpan: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenSpeaker.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenSpeaker.kt deleted file mode 100644 index 910c6e80..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenSpeaker.kt +++ /dev/null @@ -1,104 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DualScreenSpeaker: ImageVector - get() { - if (_dualScreenSpeaker != null) { - return _dualScreenSpeaker!! - } - _dualScreenSpeaker = fluentIcon(name = "Filled.DualScreenSpeaker") { - fluentPath { - moveTo(22.14f, 3.3f) - arcToRelative(4.53f, 4.53f, 0.0f, false, false, -0.9f, -1.13f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, 1.16f) - curveToRelative(0.13f, 0.1f, 0.35f, 0.35f, 0.59f, 0.74f) - curveToRelative(0.4f, 0.67f, 0.64f, 1.48f, 0.64f, 2.43f) - curveToRelative(0.0f, 0.95f, -0.24f, 1.76f, -0.64f, 2.43f) - curveToRelative(-0.24f, 0.39f, -0.46f, 0.64f, -0.59f, 0.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.96f, 1.16f) - curveToRelative(0.25f, -0.21f, 0.59f, -0.58f, 0.91f, -1.13f) - curveToRelative(0.54f, -0.9f, 0.86f, -1.96f, 0.86f, -3.2f) - curveToRelative(0.0f, -1.24f, -0.32f, -2.3f, -0.86f, -3.2f) - close() - } - fluentPath { - moveTo(19.87f, 4.4f) - curveToRelative(-0.23f, -0.36f, -0.48f, -0.6f, -0.67f, -0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 1.2f) - arcTo(2.24f, 2.24f, 0.0f, false, true, 19.0f, 6.5f) - arcToRelative(2.24f, 2.24f, 0.0f, false, true, -0.7f, 1.65f) - lineToRelative(-0.08f, 0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) - arcToRelative(3.73f, 3.73f, 0.0f, false, false, 1.3f, -2.85f) - curveToRelative(0.0f, -0.81f, -0.23f, -1.52f, -0.63f, -2.1f) - close() - } - fluentPath { - moveTo(17.0f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.31f, -0.5f) - lineTo(14.16f, 5.0f) - horizontalLineToRelative(-1.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.76f, 0.75f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(1.41f) - lineToRelative(1.53f, 1.74f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 17.0f, 9.25f) - verticalLineToRelative(-5.5f) - close() - } - fluentPath { - moveTo(11.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.25f, -0.66f) - verticalLineToRelative(-0.32f) - arcToRelative(1.76f, 1.76f, 0.0f, false, false, -0.24f, -0.02f) - horizontalLineTo(3.76f) - curveTo(2.79f, 4.0f, 2.0f, 4.78f, 2.0f, 5.75f) - verticalLineToRelative(12.5f) - curveTo(2.0f, 19.2f, 2.79f, 20.0f, 3.76f, 20.0f) - horizontalLineTo(11.0f) - lineToRelative(0.24f, -0.02f) - verticalLineTo(8.66f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 11.0f, 8.0f) - verticalLineTo(5.0f) - close() - moveTo(9.25f, 15.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineTo(7.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.6f) - close() - } - fluentPath { - moveTo(13.53f, 9.0f) - horizontalLineToRelative(-0.78f) - verticalLineToRelative(10.98f) - lineToRelative(0.26f, 0.02f) - horizontalLineToRelative(7.24f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.79f, 1.75f, -1.75f) - verticalLineToRelative(-6.77f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -2.99f, -1.0f) - curveToRelative(-0.42f, 0.07f, -0.87f, -0.03f, -1.23f, -0.27f) - arcToRelative(1.76f, 1.76f, 0.0f, false, true, -2.8f, 0.33f) - lineTo(13.52f, 9.0f) - close() - moveTo(16.25f, 15.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(14.65f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.6f) - close() - } - } - return _dualScreenSpeaker!! - } - -private var _dualScreenSpeaker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenStatusBar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenStatusBar.kt deleted file mode 100644 index e44a6560..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenStatusBar.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DualScreenStatusBar: ImageVector - get() { - if (_dualScreenStatusBar != null) { - return _dualScreenStatusBar!! - } - _dualScreenStatusBar = fluentIcon(name = "Filled.DualScreenStatusBar") { - fluentPath { - moveTo(20.25f, 4.0f) - curveTo(21.2f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) - lineTo(13.0f, 20.0f) - curveToRelative(-0.09f, 0.0f, -0.17f, 0.0f, -0.26f, -0.02f) - lineTo(12.74f, 4.02f) - lineTo(13.0f, 4.0f) - horizontalLineToRelative(7.25f) - close() - moveTo(11.0f, 4.0f) - curveToRelative(0.08f, 0.0f, 0.16f, 0.0f, 0.24f, 0.02f) - verticalLineToRelative(15.96f) - lineTo(11.0f, 20.0f) - lineTo(3.75f, 20.0f) - curveTo(2.78f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) - lineTo(2.0f, 5.75f) - curveTo(2.0f, 4.8f, 2.78f, 4.0f, 3.75f, 4.0f) - lineTo(11.0f, 4.0f) - close() - moveTo(19.75f, 6.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - horizontalLineToRelative(4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - } - } - return _dualScreenStatusBar!! - } - -private var _dualScreenStatusBar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenTablet.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenTablet.kt deleted file mode 100644 index 304f0aed..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenTablet.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DualScreenTablet: ImageVector - get() { - if (_dualScreenTablet != null) { - return _dualScreenTablet!! - } - _dualScreenTablet = fluentIcon(name = "Filled.DualScreenTablet") { - fluentPath { - moveTo(7.5f, 9.0f) - verticalLineToRelative(12.0f) - lineTo(3.75f, 21.0f) - curveToRelative(-0.92f, 0.0f, -1.67f, -0.7f, -1.74f, -1.6f) - lineTo(2.0f, 19.24f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) - lineTo(3.76f, 9.0f) - lineTo(7.5f, 9.0f) - close() - moveTo(12.25f, 9.0f) - curveToRelative(0.92f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.92f, -0.7f, 1.67f, -1.6f, 1.74f) - lineToRelative(-0.15f, 0.01f) - lineTo(8.5f, 21.0f) - lineTo(8.5f, 9.0f) - horizontalLineToRelative(3.75f) - close() - moveTo(10.65f, 17.5f) - horizontalLineToRelative(-0.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(5.89f, 17.5f) - horizontalLineToRelative(-0.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(6.0f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(19.75f, 3.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - lineTo(15.0f, 16.0f) - verticalLineToRelative(-2.5f) - horizontalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(15.0f, 12.0f) - verticalLineToRelative(-1.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 12.66f, 8.0f) - lineTo(6.0f, 8.0f) - lineTo(6.0f, 5.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(8.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - } - } - return _dualScreenTablet!! - } - -private var _dualScreenTablet: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenUpdate.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenUpdate.kt deleted file mode 100644 index afce1b25..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenUpdate.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DualScreenUpdate: ImageVector - get() { - if (_dualScreenUpdate != null) { - return _dualScreenUpdate!! - } - _dualScreenUpdate = fluentIcon(name = "Filled.DualScreenUpdate") { - fluentPath { - moveTo(20.25f, 4.0f) - curveTo(21.2f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) - lineTo(13.0f, 20.0f) - curveToRelative(-0.09f, 0.0f, -0.17f, 0.0f, -0.26f, -0.02f) - lineTo(12.74f, 4.02f) - lineTo(13.0f, 4.0f) - horizontalLineToRelative(7.25f) - close() - moveTo(11.0f, 4.0f) - curveToRelative(0.08f, 0.0f, 0.16f, 0.0f, 0.24f, 0.02f) - verticalLineToRelative(15.96f) - lineTo(11.0f, 20.0f) - lineTo(3.75f, 20.0f) - curveTo(2.78f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) - lineTo(2.0f, 5.75f) - curveTo(2.0f, 4.8f, 2.78f, 4.0f, 3.75f, 4.0f) - lineTo(11.0f, 4.0f) - close() - moveTo(17.5f, 7.0f) - horizontalLineToRelative(-0.1f) - lineToRelative(-0.1f, 0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.54f, 0.6f) - lineToRelative(-0.01f, 0.12f) - verticalLineToRelative(6.7f) - lineToRelative(-0.97f, -0.96f) - lineToRelative(-0.08f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.97f) - lineToRelative(0.07f, 0.09f) - lineToRelative(2.25f, 2.23f) - lineToRelative(0.1f, 0.1f) - lineToRelative(0.08f, 0.04f) - lineToRelative(0.11f, 0.04f) - lineToRelative(0.1f, 0.03f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(0.09f) - lineToRelative(0.09f, -0.01f) - lineToRelative(0.06f, -0.02f) - lineToRelative(0.1f, -0.03f) - lineToRelative(0.06f, -0.03f) - lineToRelative(0.07f, -0.04f) - lineToRelative(0.06f, -0.05f) - lineToRelative(0.04f, -0.04f) - lineToRelative(2.25f, -2.23f) - lineToRelative(0.07f, -0.09f) - curveToRelative(0.2f, -0.26f, 0.2f, -0.62f, 0.01f, -0.88f) - lineToRelative(-0.08f, -0.1f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.76f, 0.76f, 0.0f, false, false, -0.89f, 0.0f) - lineToRelative(-0.1f, 0.08f) - lineToRelative(-0.96f, 0.96f) - verticalLineToRelative(-6.8f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 17.6f, 7.0f) - horizontalLineToRelative(-0.1f) - close() - } - } - return _dualScreenUpdate!! - } - -private var _dualScreenUpdate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenVerticalScroll.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenVerticalScroll.kt deleted file mode 100644 index cf8a28c8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenVerticalScroll.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DualScreenVerticalScroll: ImageVector - get() { - if (_dualScreenVerticalScroll != null) { - return _dualScreenVerticalScroll!! - } - _dualScreenVerticalScroll = fluentIcon(name = "Filled.DualScreenVerticalScroll") { - fluentPath { - moveTo(20.25f, 4.0f) - curveTo(21.2f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) - lineTo(13.0f, 20.0f) - curveToRelative(-0.09f, 0.0f, -0.17f, 0.0f, -0.26f, -0.02f) - lineTo(12.74f, 4.02f) - lineTo(13.0f, 4.0f) - horizontalLineToRelative(7.25f) - close() - moveTo(11.0f, 4.0f) - curveToRelative(0.08f, 0.0f, 0.16f, 0.0f, 0.24f, 0.02f) - verticalLineToRelative(15.96f) - lineTo(11.0f, 20.0f) - lineTo(3.75f, 20.0f) - curveTo(2.78f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) - lineTo(2.0f, 5.75f) - curveTo(2.0f, 4.8f, 2.78f, 4.0f, 3.75f, 4.0f) - lineTo(11.0f, 4.0f) - close() - moveTo(15.7f, 13.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.04f) - lineToRelative(0.07f, 0.09f) - lineToRelative(2.26f, 2.3f) - lineToRelative(0.08f, 0.07f) - curveToRelative(0.27f, 0.2f, 0.64f, 0.2f, 0.9f, 0.0f) - lineToRelative(0.09f, -0.08f) - lineToRelative(2.25f, -2.3f) - lineToRelative(0.07f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.04f) - lineToRelative(-0.08f, 0.08f) - lineToRelative(-1.72f, 1.75f) - lineToRelative(-1.71f, -1.75f) - lineToRelative(-0.09f, -0.08f) - close() - moveTo(18.04f, 7.23f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.99f, -0.08f) - lineToRelative(-0.08f, 0.08f) - lineToRelative(-2.26f, 2.3f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.0f, 1.12f) - lineToRelative(0.08f, -0.08f) - lineToRelative(1.71f, -1.75f) - lineToRelative(1.72f, 1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.14f, -0.96f) - lineToRelative(-0.07f, -0.09f) - lineToRelative(-2.25f, -2.3f) - close() - } - } - return _dualScreenVerticalScroll!! - } - -private var _dualScreenVerticalScroll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenVibrate.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenVibrate.kt deleted file mode 100644 index 02e2fabe..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/DualScreenVibrate.kt +++ /dev/null @@ -1,93 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.DualScreenVibrate: ImageVector - get() { - if (_dualScreenVibrate != null) { - return _dualScreenVibrate!! - } - _dualScreenVibrate = fluentIcon(name = "Filled.DualScreenVibrate") { - fluentPath { - moveTo(11.5f, 6.0f) - verticalLineToRelative(13.0f) - lineTo(7.25f, 19.0f) - curveToRelative(-0.92f, 0.0f, -1.67f, -0.7f, -1.74f, -1.6f) - lineToRelative(-0.01f, -0.15f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.75f) - horizontalLineToRelative(4.4f) - close() - moveTo(16.75f, 6.0f) - curveToRelative(0.92f, 0.0f, 1.67f, 0.7f, 1.75f, 1.6f) - verticalLineToRelative(9.65f) - curveToRelative(0.0f, 0.92f, -0.7f, 1.67f, -1.6f, 1.74f) - horizontalLineToRelative(-4.4f) - lineTo(12.5f, 6.0f) - horizontalLineToRelative(4.25f) - close() - moveTo(15.25f, 15.5f) - horizontalLineToRelative(-1.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(15.35f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(9.75f, 15.5f) - horizontalLineToRelative(-1.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(9.85f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(21.12f, 8.04f) - lineTo(21.18f, 8.13f) - lineTo(21.22f, 8.23f) - lineTo(21.8f, 9.68f) - curveToRelative(0.34f, 0.83f, 0.24f, 1.77f, -0.24f, 2.51f) - lineToRelative(-0.11f, 0.16f) - lineToRelative(-0.15f, 0.2f) - curveToRelative(-0.23f, 0.31f, -0.3f, 0.7f, -0.2f, 1.08f) - lineToRelative(0.04f, 0.13f) - lineToRelative(0.58f, 1.46f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.65f) - lineToRelative(-0.04f, -0.1f) - lineToRelative(-0.58f, -1.45f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.24f, -2.51f) - lineToRelative(0.1f, -0.16f) - lineToRelative(0.16f, -0.2f) - curveToRelative(0.23f, -0.31f, 0.3f, -0.71f, 0.2f, -1.08f) - lineToRelative(-0.04f, -0.14f) - lineToRelative(-0.58f, -1.45f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.29f, -0.74f) - close() - moveTo(3.57f, 8.04f) - lineTo(3.63f, 8.13f) - lineTo(3.67f, 8.23f) - lineTo(4.25f, 9.68f) - curveToRelative(0.34f, 0.83f, 0.24f, 1.77f, -0.24f, 2.51f) - lineToRelative(-0.1f, 0.16f) - lineToRelative(-0.16f, 0.2f) - curveToRelative(-0.23f, 0.31f, -0.3f, 0.7f, -0.2f, 1.08f) - lineToRelative(0.04f, 0.13f) - lineToRelative(0.58f, 1.46f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.65f) - lineToRelative(-0.04f, -0.1f) - lineToRelative(-0.58f, -1.45f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.24f, -2.51f) - lineToRelative(0.11f, -0.16f) - lineToRelative(0.15f, -0.2f) - curveToRelative(0.23f, -0.31f, 0.3f, -0.71f, 0.2f, -1.08f) - lineToRelative(-0.04f, -0.14f) - lineToRelative(-0.58f, -1.45f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.29f, -0.74f) - close() - } - } - return _dualScreenVibrate!! - } - -private var _dualScreenVibrate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Dumbbell.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Dumbbell.kt deleted file mode 100644 index 32546843..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Dumbbell.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Dumbbell: ImageVector - get() { - if (_dumbbell != null) { - return _dumbbell!! - } - _dumbbell = fluentIcon(name = "Filled.Dumbbell") { - fluentPath { - moveTo(17.34f, 3.52f) - arcToRelative(2.45f, 2.45f, 0.0f, false, false, -3.7f, 0.28f) - arcTo(2.97f, 2.97f, 0.0f, false, false, 11.0f, 8.83f) - lineToRelative(1.25f, 1.24f) - lineToRelative(-1.13f, 1.13f) - lineToRelative(1.69f, 1.69f) - lineToRelative(1.13f, -1.13f) - lineToRelative(1.24f, 1.25f) - arcToRelative(2.97f, 2.97f, 0.0f, false, false, 5.03f, -2.63f) - arcToRelative(2.46f, 2.46f, 0.0f, false, false, 0.28f, -3.7f) - lineToRelative(-0.74f, -0.73f) - lineToRelative(0.65f, -0.65f) - arcToRelative(1.2f, 1.2f, 0.0f, true, false, -1.69f, -1.68f) - lineToRelative(-0.64f, 0.64f) - lineToRelative(-0.74f, -0.74f) - close() - moveTo(17.77f, 8.86f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineTo(15.14f, 7.3f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(1.57f, 1.57f) - curveToRelative(0.29f, 0.3f, 0.29f, 0.77f, 0.0f, 1.06f) - close() - moveTo(4.62f, 11.02f) - arcToRelative(2.97f, 2.97f, 0.0f, false, true, 4.2f, 0.0f) - lineToRelative(4.19f, 4.18f) - arcToRelative(2.97f, 2.97f, 0.0f, false, true, -2.63f, 5.02f) - arcToRelative(2.45f, 2.45f, 0.0f, false, true, -3.7f, 0.28f) - lineToRelative(-0.74f, -0.74f) - lineToRelative(-0.66f, 0.67f) - arcToRelative(1.2f, 1.2f, 0.0f, false, true, -1.69f, -1.68f) - lineToRelative(0.67f, -0.67f) - lineToRelative(-0.74f, -0.74f) - arcToRelative(2.45f, 2.45f, 0.0f, false, true, 0.28f, -3.7f) - curveToRelative(-0.16f, -0.92f, 0.11f, -1.9f, 0.82f, -2.62f) - close() - moveTo(8.35f, 18.28f) - curveToRelative(0.3f, -0.29f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-1.57f, -1.57f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.57f, 1.57f) - curveToRelative(0.29f, 0.3f, 0.76f, 0.3f, 1.06f, 0.0f) - close() - } - } - return _dumbbell!! - } - -private var _dumbbell: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Earth.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Earth.kt deleted file mode 100644 index 7686caf3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Earth.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Earth: ImageVector - get() { - if (_earth != null) { - return _earth!! - } - _earth = fluentIcon(name = "Filled.Earth") { - fluentPath { - moveTo(10.95f, 2.05f) - arcTo(10.0f, 10.0f, 0.0f, true, true, 4.1f, 18.13f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 6.83f, -16.08f) - horizontalLineToRelative(0.02f) - close() - moveTo(12.0f, 3.5f) - horizontalLineToRelative(-0.16f) - curveToRelative(0.12f, 0.25f, 0.26f, 0.53f, 0.37f, 0.85f) - curveToRelative(0.35f, 0.92f, 0.67f, 2.28f, 0.1f, 3.49f) - curveToRelative(-0.52f, 1.11f, -1.42f, 1.4f, -2.09f, 1.57f) - lineToRelative(-0.08f, 0.02f) - curveToRelative(-0.66f, 0.17f, -0.9f, 0.24f, -1.1f, 0.52f) - curveToRelative(-0.16f, 0.25f, -0.14f, 0.58f, 0.07f, 1.25f) - lineToRelative(0.04f, 0.14f) - curveToRelative(0.09f, 0.26f, 0.18f, 0.57f, 0.23f, 0.87f) - curveToRelative(0.07f, 0.36f, 0.09f, 0.82f, -0.15f, 1.27f) - curveToRelative(-0.23f, 0.45f, -0.54f, 0.75f, -0.9f, 0.95f) - curveToRelative(-0.34f, 0.18f, -0.7f, 0.25f, -0.96f, 0.3f) - lineToRelative(-0.09f, 0.02f) - curveToRelative(-0.51f, 0.09f, -0.76f, 0.13f, -1.0f, 0.39f) - curveToRelative(-0.19f, 0.2f, -0.3f, 0.55f, -0.38f, 1.07f) - lineToRelative(-0.06f, 0.65f) - verticalLineToRelative(0.12f) - curveToRelative(-0.03f, 0.24f, -0.05f, 0.52f, -0.1f, 0.76f) - arcToRelative(8.48f, 8.48f, 0.0f, false, false, 10.58f, 1.58f) - lineToRelative(-0.31f, -0.35f) - curveToRelative(-0.34f, -0.43f, -0.79f, -1.16f, -0.63f, -2.03f) - curveToRelative(0.07f, -0.42f, 0.3f, -0.77f, 0.51f, -1.04f) - curveToRelative(0.22f, -0.27f, 0.49f, -0.52f, 0.72f, -0.74f) - lineToRelative(0.16f, -0.14f) - curveToRelative(0.18f, -0.17f, 0.33f, -0.3f, 0.46f, -0.44f) - curveToRelative(0.17f, -0.18f, 0.21f, -0.26f, 0.21f, -0.27f) - curveToRelative(0.07f, -0.22f, -0.01f, -0.38f, -0.1f, -0.45f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, -0.2f, -0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.4f, 0.14f) - arcToRelative(0.91f, 0.91f, 0.0f, false, true, -0.83f, 0.08f) - curveToRelative(-0.27f, -0.1f, -0.41f, -0.31f, -0.49f, -0.43f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.27f, -0.77f) - lineToRelative(-0.12f, -0.55f) - lineToRelative(-0.04f, -0.21f) - lineToRelative(-0.13f, -0.54f) - lineToRelative(-0.02f, -0.04f) - arcToRelative(6.23f, 6.23f, 0.0f, false, false, -0.3f, -0.42f) - lineToRelative(-0.1f, -0.14f) - curveToRelative(-0.16f, -0.21f, -0.36f, -0.47f, -0.52f, -0.71f) - curveToRelative(-0.2f, -0.3f, -0.42f, -0.7f, -0.49f, -1.1f) - arcToRelative(1.39f, 1.39f, 0.0f, false, true, 0.54f, -1.38f) - arcToRelative(13.0f, 13.0f, 0.0f, false, false, 1.83f, -1.97f) - curveToRelative(0.29f, -0.36f, 0.54f, -0.7f, 0.73f, -0.95f) - arcTo(8.46f, 8.46f, 0.0f, false, false, 12.0f, 3.5f) - close() - } - } - return _earth!! - } - -private var _earth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EarthLeaf.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EarthLeaf.kt deleted file mode 100644 index d068b783..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EarthLeaf.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.EarthLeaf: ImageVector - get() { - if (_earthLeaf != null) { - return _earthLeaf!! - } - _earthLeaf = fluentIcon(name = "Filled.EarthLeaf") { - fluentPath { - moveTo(10.95f, 2.05f) - arcTo(10.0f, 10.0f, 0.0f, false, true, 22.0f, 11.75f) - curveToRelative(-1.17f, -0.24f, -2.85f, -0.4f, -5.23f, -0.08f) - curveToRelative(-0.64f, 0.09f, -1.22f, 0.26f, -1.76f, 0.5f) - arcToRelative(25.3f, 25.3f, 0.0f, false, false, -0.15f, -0.65f) - lineToRelative(-0.02f, -0.04f) - arcToRelative(6.23f, 6.23f, 0.0f, false, false, -0.3f, -0.42f) - lineToRelative(-0.1f, -0.14f) - curveToRelative(-0.16f, -0.21f, -0.36f, -0.47f, -0.52f, -0.71f) - curveToRelative(-0.2f, -0.3f, -0.42f, -0.7f, -0.49f, -1.1f) - arcToRelative(1.39f, 1.39f, 0.0f, false, true, 0.54f, -1.38f) - arcToRelative(13.0f, 13.0f, 0.0f, false, false, 1.83f, -1.97f) - curveToRelative(0.29f, -0.36f, 0.54f, -0.7f, 0.73f, -0.95f) - arcToRelative(8.46f, 8.46f, 0.0f, false, false, -4.69f, -1.3f) - curveToRelative(0.12f, 0.24f, 0.25f, 0.52f, 0.37f, 0.84f) - curveToRelative(0.35f, 0.92f, 0.67f, 2.28f, 0.1f, 3.49f) - curveToRelative(-0.52f, 1.11f, -1.42f, 1.4f, -2.09f, 1.57f) - lineToRelative(-0.08f, 0.02f) - curveToRelative(-0.66f, 0.17f, -0.9f, 0.24f, -1.1f, 0.52f) - curveToRelative(-0.16f, 0.25f, -0.14f, 0.58f, 0.07f, 1.25f) - lineToRelative(0.04f, 0.14f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, 0.23f, 0.87f) - curveToRelative(0.07f, 0.36f, 0.09f, 0.82f, -0.15f, 1.27f) - curveToRelative(-0.23f, 0.45f, -0.54f, 0.75f, -0.9f, 0.95f) - curveToRelative(-0.34f, 0.18f, -0.7f, 0.25f, -0.96f, 0.3f) - lineToRelative(-0.09f, 0.02f) - curveToRelative(-0.51f, 0.09f, -0.76f, 0.13f, -1.0f, 0.39f) - curveToRelative(-0.19f, 0.2f, -0.3f, 0.55f, -0.38f, 1.07f) - lineToRelative(-0.06f, 0.65f) - lineToRelative(-0.01f, 0.12f) - curveToRelative(-0.02f, 0.24f, -0.04f, 0.52f, -0.1f, 0.76f) - arcToRelative(8.48f, 8.48f, 0.0f, false, false, 5.63f, 2.74f) - curveToRelative(-0.17f, 0.5f, -0.29f, 1.0f, -0.34f, 1.47f) - arcTo(9.96f, 9.96f, 0.0f, false, true, 2.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 8.93f, -9.94f) - lineToRelative(0.02f, -0.01f) - close() - moveTo(12.0f, 22.2f) - curveToRelative(0.05f, -0.97f, 0.49f, -2.15f, 1.23f, -3.26f) - arcToRelative(8.9f, 8.9f, 0.0f, false, true, 5.38f, -3.97f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.24f, -0.96f) - arcToRelative(9.9f, 9.9f, 0.0f, false, false, -5.73f, 4.0f) - curveToRelative(-0.1f, -0.3f, -0.15f, -0.64f, -0.15f, -1.02f) - curveToRelative(0.0f, -0.92f, 0.46f, -1.91f, 1.2f, -2.7f) - arcToRelative(5.33f, 5.33f, 0.0f, false, true, 3.2f, -1.64f) - arcToRelative(13.5f, 13.5f, 0.0f, false, true, 5.56f, 0.23f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.21f, 1.35f) - arcToRelative(0.92f, 0.92f, 0.0f, false, false, -0.26f, 0.34f) - curveToRelative(-0.1f, 0.2f, -0.2f, 0.48f, -0.32f, 0.82f) - lineToRelative(-0.26f, 0.93f) - lineToRelative(-0.05f, 0.21f) - curveToRelative(-0.12f, 0.41f, -0.24f, 0.85f, -0.39f, 1.29f) - curveToRelative(-0.29f, 0.86f, -0.7f, 1.78f, -1.4f, 2.48f) - arcToRelative(4.02f, 4.02f, 0.0f, false, true, -3.0f, 1.2f) - arcToRelative(3.82f, 3.82f, 0.0f, false, true, -2.84f, -1.16f) - curveToRelative(-0.4f, 0.74f, -0.62f, 1.43f, -0.65f, 1.95f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, -0.1f) - close() - } - } - return _earthLeaf!! - } - -private var _earthLeaf: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EditOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EditOff.kt deleted file mode 100644 index e32e271b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EditOff.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.EditOff: ImageVector - get() { - if (_editOff != null) { - return _editOff!! - } - _editOff = fluentIcon(name = "Filled.EditOff") { - fluentPath { - moveToRelative(14.0f, 15.06f) - lineToRelative(6.72f, 6.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineTo(8.94f, 10.0f) - lineToRelative(-5.0f, 5.0f) - curveToRelative(-0.4f, 0.4f, -0.7f, 0.92f, -0.82f, 1.48f) - lineToRelative(-1.1f, 4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.9f, 0.9f) - lineToRelative(4.6f, -1.1f) - arcTo(3.1f, 3.1f, 0.0f, false, false, 9.0f, 20.07f) - lineToRelative(5.0f, -5.0f) - close() - moveTo(19.0f, 10.06f) - lineTo(16.12f, 12.94f) - lineTo(11.06f, 7.88f) - lineTo(13.94f, 5.0f) - lineTo(19.0f, 10.06f) - close() - moveTo(15.9f, 3.05f) - arcToRelative(3.58f, 3.58f, 0.0f, true, true, 5.05f, 5.06f) - lineToRelative(-0.89f, 0.9f) - lineTo(15.0f, 3.93f) - lineToRelative(0.9f, -0.9f) - close() - } - } - return _editOff!! - } - -private var _editOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EditProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EditProhibited.kt deleted file mode 100644 index 4b55a7b6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EditProhibited.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.EditProhibited: ImageVector - get() { - if (_editProhibited != null) { - return _editProhibited!! - } - _editProhibited = fluentIcon(name = "Filled.EditProhibited") { - fluentPath { - moveTo(15.9f, 3.05f) - arcToRelative(3.58f, 3.58f, 0.0f, true, true, 5.05f, 5.06f) - lineToRelative(-0.89f, 0.9f) - lineTo(15.0f, 3.93f) - lineToRelative(0.9f, -0.9f) - close() - moveTo(13.93f, 5.0f) - lineToRelative(-10.0f, 10.0f) - curveToRelative(-0.4f, 0.4f, -0.7f, 0.92f, -0.82f, 1.48f) - lineToRelative(-1.1f, 4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.9f, 0.9f) - lineToRelative(4.6f, -1.1f) - arcTo(3.1f, 3.1f, 0.0f, false, false, 9.0f, 20.07f) - lineToRelative(1.15f, -1.15f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, 7.76f, -7.76f) - lineTo(19.0f, 10.06f) - lineTo(13.94f, 5.0f) - close() - moveTo(22.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(12.5f, 17.5f) - curveToRelative(0.0f, 0.83f, 0.26f, 1.6f, 0.7f, 2.25f) - lineToRelative(5.55f, -5.56f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) - close() - moveTo(16.5f, 21.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) - lineToRelative(-5.55f, 5.56f) - curveToRelative(0.64f, 0.44f, 1.42f, 0.7f, 2.25f, 0.7f) - close() - moveTo(9.0f, 20.06f) - lineToRelative(-0.53f, -0.53f) - close() - } - } - return _editProhibited!! - } - -private var _editProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EditSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EditSettings.kt deleted file mode 100644 index e5715ba1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EditSettings.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.EditSettings: ImageVector - get() { - if (_editSettings != null) { - return _editSettings!! - } - _editSettings = fluentIcon(name = "Filled.EditSettings") { - fluentPath { - moveTo(15.9f, 3.05f) - arcToRelative(3.58f, 3.58f, 0.0f, true, true, 5.05f, 5.06f) - lineToRelative(-0.89f, 0.9f) - lineTo(15.0f, 3.93f) - lineToRelative(0.9f, -0.9f) - close() - moveTo(13.93f, 5.0f) - lineToRelative(-10.0f, 10.0f) - curveToRelative(-0.4f, 0.4f, -0.7f, 0.92f, -0.82f, 1.48f) - lineToRelative(-1.1f, 4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.9f, 0.9f) - lineToRelative(4.6f, -1.1f) - arcTo(3.1f, 3.1f, 0.0f, false, false, 9.0f, 20.07f) - lineToRelative(1.15f, -1.15f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, 7.76f, -7.76f) - lineTo(19.0f, 10.06f) - lineTo(13.94f, 5.0f) - close() - moveTo(13.27f, 13.98f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.59f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) - lineToRelative(0.55f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) - lineToRelative(-0.19f, 0.64f) - curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) - lineToRelative(0.49f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.9f) - lineToRelative(-0.2f, -0.7f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) - lineToRelative(0.59f, -0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, -0.01f, -1.8f) - lineToRelative(-0.54f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.19f, -0.63f) - curveToRelative(-0.44f, -0.39f, -0.94f, -0.7f, -1.49f, -0.93f) - lineToRelative(-0.49f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.91f) - lineToRelative(0.2f, 0.69f) - close() - moveTo(16.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(15.7f, 16.0f, 16.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(17.3f, 19.0f, 16.5f, 19.0f) - close() - } - } - return _editSettings!! - } - -private var _editSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Elevator.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Elevator.kt deleted file mode 100644 index e1f92014..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Elevator.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Elevator: ImageVector - get() { - if (_elevator != null) { - return _elevator!! - } - _elevator = fluentIcon(name = "Filled.Elevator") { - fluentPath { - moveTo(12.75f, 20.0f) - horizontalLineToRelative(6.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-9.5f) - curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) - horizontalLineToRelative(-6.0f) - verticalLineToRelative(16.0f) - close() - moveTo(16.72f, 14.78f) - lineTo(14.97f, 13.03f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(0.47f, 0.47f) - lineTo(16.5f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(2.94f) - lineToRelative(0.47f, -0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-1.75f, 1.75f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - close() - moveTo(11.25f, 4.0f) - horizontalLineToRelative(-6.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) - horizontalLineToRelative(6.0f) - lineTo(11.25f, 4.0f) - close() - moveTo(7.28f, 8.97f) - lineToRelative(1.75f, 1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-0.47f, -0.47f) - verticalLineToRelative(2.94f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.94f) - lineToRelative(-0.47f, 0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(1.75f, -1.75f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - } - } - return _elevator!! - } - -private var _elevator: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Emoji.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Emoji.kt deleted file mode 100644 index cb8e6221..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Emoji.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Emoji: ImageVector - get() { - if (_emoji != null) { - return _emoji!! - } - _emoji = fluentIcon(name = "Filled.Emoji") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(8.46f, 14.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.18f, 0.93f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, 9.43f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.18f, -0.92f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -7.07f, 0.0f) - close() - moveTo(9.0f, 8.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(15.0f, 8.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - } - } - return _emoji!! - } - -private var _emoji: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiAdd.kt deleted file mode 100644 index 2c8ed0b1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiAdd.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.EmojiAdd: ImageVector - get() { - if (_emojiAdd != null) { - return _emojiAdd!! - } - _emojiAdd = fluentIcon(name = "Filled.EmojiAdd") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 9.97f, 10.78f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -10.88f, 3.63f) - arcToRelative(4.49f, 4.49f, 0.0f, false, true, -2.63f, -1.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.18f, 0.93f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, 3.73f, 2.21f) - curveToRelative(0.1f, 1.56f, 0.76f, 2.98f, 1.77f, 4.05f) - lineTo(12.0f, 22.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, -20.0f) - close() - moveTo(17.5f, 14.0f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) - lineToRelative(-0.01f, 0.1f) - lineTo(17.0f, 17.0f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) - verticalLineToRelative(0.19f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) - lineTo(17.0f, 17.99f) - verticalLineToRelative(2.61f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - horizontalLineToRelative(0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) - lineToRelative(0.01f, -0.1f) - lineTo(18.0f, 18.0f) - horizontalLineToRelative(2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - verticalLineToRelative(-0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) - lineToRelative(-0.1f, -0.01f) - lineTo(18.0f, 17.0f) - verticalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) - horizontalLineToRelative(-0.09f) - close() - moveTo(9.0f, 8.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(15.0f, 8.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - } - } - return _emojiAdd!! - } - -private var _emojiAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiAngry.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiAngry.kt deleted file mode 100644 index 94359f9f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiAngry.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.EmojiAngry: ImageVector - get() { - if (_emojiAngry != null) { - return _emojiAngry!! - } - _emojiAngry = fluentIcon(name = "Filled.EmojiAngry") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(12.0f, 13.5f) - curveToRelative(-1.63f, 0.0f, -3.17f, 0.66f, -4.29f, 1.8f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.07f, 1.05f) - arcToRelative(4.48f, 4.48f, 0.0f, false, true, 6.43f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.07f, -1.06f) - arcTo(5.98f, 5.98f, 0.0f, false, false, 12.0f, 13.5f) - close() - moveTo(8.22f, 6.66f) - lineToRelative(-0.1f, -0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.92f, 1.16f) - lineToRelative(0.08f, 0.07f) - lineToRelative(1.26f, 1.0f) - arcTo(1.25f, 1.25f, 0.0f, true, false, 10.25f, 10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.55f, -1.26f) - lineToRelative(-0.08f, -0.08f) - lineToRelative(-2.5f, -2.0f) - lineToRelative(-0.1f, -0.06f) - lineToRelative(0.1f, 0.06f) - close() - moveTo(16.84f, 6.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, -0.18f) - lineToRelative(-0.09f, 0.06f) - lineToRelative(-2.5f, 2.0f) - lineToRelative(-0.08f, 0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.44f, 1.25f) - horizontalLineToRelative(0.11f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 1.83f, -1.1f) - lineToRelative(-0.12f, -0.05f) - lineToRelative(1.26f, -1.0f) - lineToRelative(0.08f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.04f, -0.98f) - close() - } - } - return _emojiAngry!! - } - -private var _emojiAngry: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiEdit.kt deleted file mode 100644 index 770f1c88..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiEdit.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.EmojiEdit: ImageVector - get() { - if (_emojiEdit != null) { - return _emojiEdit!! - } - _emojiEdit = fluentIcon(name = "Filled.EmojiEdit") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 9.97f, 9.25f) - arcToRelative(3.29f, 3.29f, 0.0f, false, false, -3.58f, 0.71f) - lineToRelative(-2.63f, 2.64f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.23f, 0.19f) - lineToRelative(-0.16f, 0.2f) - lineToRelative(-0.39f, 0.38f) - arcToRelative(4.49f, 4.49f, 0.0f, false, true, -6.52f, -0.59f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.18f, 0.93f) - arcTo(6.0f, 6.0f, 0.0f, false, false, 12.37f, 18.0f) - curveToRelative(-0.4f, 0.45f, -0.7f, 1.0f, -0.85f, 1.59f) - lineToRelative(-0.46f, 1.83f) - curveToRelative(-0.04f, 0.18f, -0.06f, 0.36f, -0.06f, 0.54f) - arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 2.0f) - close() - moveTo(9.0f, 8.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(15.0f, 8.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _emojiEdit!! - } - -private var _emojiEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiHand.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiHand.kt deleted file mode 100644 index 97f82036..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiHand.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.EmojiHand: ImageVector - get() { - if (_emojiHand != null) { - return _emojiHand!! - } - _emojiHand = fluentIcon(name = "Filled.EmojiHand") { - fluentPath { - moveTo(7.5f, 7.5f) - lineTo(7.5f, 1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(9.0f, 7.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) - verticalLineToRelative(-5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(5.81f) - arcTo(4.4f, 4.4f, 0.0f, false, true, 13.0f, 8.0f) - curveToRelative(0.5f, 0.0f, 0.93f, 0.12f, 1.24f, 0.28f) - curveToRelative(0.16f, 0.08f, 0.3f, 0.17f, 0.42f, 0.28f) - lineToRelative(0.19f, 0.21f) - curveToRelative(0.05f, 0.07f, 0.15f, 0.24f, 0.15f, 0.48f) - curveToRelative(0.0f, 0.26f, -0.13f, 0.5f, -0.35f, 0.64f) - lineToRelative(-1.9f, 1.19f) - lineToRelative(-1.67f, 1.89f) - lineToRelative(-1.37f, 1.9f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 7.48f, 16.0f) - lineTo(6.34f, 16.0f) - curveToRelative(-0.93f, 0.0f, -1.82f, -0.47f, -2.3f, -1.31f) - arcToRelative(20.7f, 20.7f, 0.0f, false, true, -0.98f, -1.9f) - arcToRelative(5.58f, 5.58f, 0.0f, false, true, -0.56f, -2.04f) - verticalLineToRelative(-7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(4.0f, 8.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - lineTo(5.0f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) - close() - moveTo(15.0f, 22.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, -6.73f, -5.08f) - curveToRelative(0.9f, -0.2f, 1.7f, -0.71f, 2.25f, -1.47f) - lineToRelative(1.35f, -1.86f) - lineToRelative(1.53f, -1.74f) - lineToRelative(1.78f, -1.12f) - curveToRelative(0.5f, -0.32f, 0.82f, -0.88f, 0.82f, -1.48f) - arcToRelative(1.86f, 1.86f, 0.0f, false, false, -0.47f, -1.23f) - arcTo(7.0f, 7.0f, 0.0f, false, true, 15.0f, 22.0f) - close() - moveTo(18.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(12.14f, 16.71f) - curveToRelative(-0.3f, 0.29f, -0.31f, 0.76f, -0.02f, 1.06f) - arcToRelative(3.99f, 3.99f, 0.0f, false, false, 5.76f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.08f, -1.04f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -3.6f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -0.02f) - close() - moveTo(14.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - } - } - return _emojiHand!! - } - -private var _emojiHand: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiLaugh.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiLaugh.kt deleted file mode 100644 index 8d8c01ba..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiLaugh.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.EmojiLaugh: ImageVector - get() { - if (_emojiLaugh != null) { - return _emojiLaugh!! - } - _emojiLaugh = fluentIcon(name = "Filled.EmojiLaugh") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) - close() - moveTo(14.5f, 9.36f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, -0.22f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 2.25f, -1.89f) - curveToRelative(1.12f, 0.0f, 2.08f, 0.8f, 2.24f, 1.89f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.48f, 0.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.76f, -0.61f) - curveToRelative(-0.4f, 0.0f, -0.71f, 0.29f, -0.76f, 0.61f) - close() - moveTo(12.0f, 18.0f) - curveToRelative(-3.14f, 0.0f, -5.24f, -2.36f, -5.5f, -5.25f) - horizontalLineToRelative(11.0f) - curveTo(17.24f, 15.64f, 15.14f, 18.0f, 12.0f, 18.0f) - close() - moveTo(8.75f, 8.75f) - curveToRelative(-0.4f, 0.0f, -0.71f, 0.29f, -0.76f, 0.61f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.48f, -0.22f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 2.24f, -1.89f) - curveToRelative(1.12f, 0.0f, 2.08f, 0.8f, 2.24f, 1.89f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.48f, 0.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.76f, -0.61f) - close() - } - } - return _emojiLaugh!! - } - -private var _emojiLaugh: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiMeh.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiMeh.kt deleted file mode 100644 index ed800f9c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiMeh.kt +++ /dev/null @@ -1,41 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.EmojiMeh: ImageVector - get() { - if (_emojiMeh != null) { - return _emojiMeh!! - } - _emojiMeh = fluentIcon(name = "Filled.EmojiMeh") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) - close() - moveTo(10.25f, 10.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(16.25f, 10.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(7.5f, 15.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _emojiMeh!! - } - -private var _emojiMeh: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiMultiple.kt deleted file mode 100644 index 5b7315d2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiMultiple.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.EmojiMultiple: ImageVector - get() { - if (_emojiMultiple != null) { - return _emojiMultiple!! - } - _emojiMultiple = fluentIcon(name = "Filled.EmojiMultiple") { - fluentPath { - moveTo(2.0f, 8.5f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, 4.94f, 6.31f) - arcToRelative(8.0f, 8.0f, 0.0f, false, true, 1.72f, -4.8f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.68f, 0.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.14f, -0.97f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 4.02f, -0.95f) - arcToRelative(8.0f, 8.0f, 0.0f, false, true, 4.95f, -1.84f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 2.0f, 8.5f) - close() - moveTo(7.5f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(11.5f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(22.0f, 15.0f) - arcToRelative(7.0f, 7.0f, 0.0f, true, true, -14.0f, 0.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, 14.0f, 0.0f) - close() - moveTo(13.5f, 13.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(17.97f, 16.72f) - arcToRelative(0.63f, 0.63f, 0.0f, false, false, -0.88f, 0.07f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -4.18f, 0.0f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, -0.95f, 0.82f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 6.08f, -0.01f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, -0.07f, -0.88f) - close() - moveTo(17.5f, 14.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - } - } - return _emojiMultiple!! - } - -private var _emojiMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiSad.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiSad.kt deleted file mode 100644 index 63c408a3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiSad.kt +++ /dev/null @@ -1,41 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.EmojiSad: ImageVector - get() { - if (_emojiSad != null) { - return _emojiSad!! - } - _emojiSad = fluentIcon(name = "Filled.EmojiSad") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(12.0f, 13.5f) - curveToRelative(-1.63f, 0.0f, -3.17f, 0.65f, -4.29f, 1.8f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.07f, 1.05f) - arcToRelative(4.48f, 4.48f, 0.0f, false, true, 6.43f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.07f, -1.06f) - arcTo(5.98f, 5.98f, 0.0f, false, false, 12.0f, 13.5f) - close() - moveTo(9.0f, 8.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(15.0f, 8.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - } - } - return _emojiSad!! - } - -private var _emojiSad: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiSadSlight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiSadSlight.kt deleted file mode 100644 index 016c993c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiSadSlight.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.EmojiSadSlight: ImageVector - get() { - if (_emojiSadSlight != null) { - return _emojiSadSlight!! - } - _emojiSadSlight = fluentIcon(name = "Filled.EmojiSadSlight") { - fluentPath { - moveTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 20.0f, 0.0f) - close() - moveTo(7.75f, 10.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) - close() - moveTo(13.75f, 10.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) - close() - moveTo(15.75f, 14.0f) - horizontalLineToRelative(0.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.6f) - arcToRelative(5.75f, 5.75f, 0.0f, false, false, -3.47f, 1.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - arcTo(7.24f, 7.24f, 0.0f, false, true, 15.75f, 14.0f) - close() - } - } - return _emojiSadSlight!! - } - -private var _emojiSadSlight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiSmileSlight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiSmileSlight.kt deleted file mode 100644 index e01fab0b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiSmileSlight.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.EmojiSmileSlight: ImageVector - get() { - if (_emojiSmileSlight != null) { - return _emojiSmileSlight!! - } - _emojiSmileSlight = fluentIcon(name = "Filled.EmojiSmileSlight") { - fluentPath { - moveTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 20.0f, 0.0f) - close() - moveTo(7.75f, 10.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) - close() - moveTo(13.75f, 10.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) - close() - moveTo(10.14f, 15.1f) - curveToRelative(0.48f, 0.3f, 1.15f, 0.46f, 1.86f, 0.46f) - curveToRelative(0.7f, 0.0f, 1.38f, -0.16f, 1.86f, -0.45f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.78f, 1.28f) - arcToRelative(5.2f, 5.2f, 0.0f, false, true, -2.64f, 0.67f) - arcToRelative(5.2f, 5.2f, 0.0f, false, true, -2.64f, -0.67f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.78f, -1.28f) - close() - } - } - return _emojiSmileSlight!! - } - -private var _emojiSmileSlight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiSparkle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiSparkle.kt deleted file mode 100644 index 5f399cce..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiSparkle.kt +++ /dev/null @@ -1,98 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.EmojiSparkle: ImageVector - get() { - if (_emojiSparkle != null) { - return _emojiSparkle!! - } - _emojiSparkle = fluentIcon(name = "Filled.EmojiSparkle") { - fluentPath { - moveTo(14.74f, 5.46f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, 1.8f, 1.8f) - lineToRelative(0.45f, 1.38f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 1.01f, 0.03f) - lineToRelative(0.01f, -0.02f) - lineToRelative(0.05f, -0.15f) - lineToRelative(0.4f, -1.24f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, 1.3f, -1.57f) - curveToRelative(0.16f, -0.1f, 0.32f, -0.17f, 0.5f, -0.23f) - lineToRelative(1.38f, -0.44f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, -1.03f) - horizontalLineToRelative(-0.03f) - lineToRelative(-1.38f, -0.45f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.8f, -1.8f) - lineTo(18.0f, 0.36f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, -1.03f, 0.0f) - lineToRelative(-0.45f, 1.38f) - lineToRelative(-0.01f, 0.03f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.76f, 1.76f) - lineToRelative(-1.38f, 0.45f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, 1.03f) - lineToRelative(1.38f, 0.45f) - close() - moveTo(23.78f, 10.21f) - lineTo(23.02f, 9.96f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, -1.0f, -1.0f) - lineToRelative(-0.25f, -0.76f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, -0.57f, 0.0f) - lineToRelative(-0.25f, 0.77f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, -0.98f, 1.0f) - lineToRelative(-0.1f, 0.03f) - lineToRelative(-0.67f, 0.21f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, -0.2f, 0.29f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.2f, 0.28f) - lineToRelative(0.76f, 0.25f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, 1.0f) - lineToRelative(0.25f, 0.77f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.12f, 0.14f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.46f, -0.14f) - lineToRelative(0.24f, -0.77f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, -1.0f) - lineToRelative(0.77f, -0.24f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, -0.57f) - horizontalLineToRelative(-0.02f) - close() - moveTo(12.0f, 22.01f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 9.8f, -8.04f) - arcToRelative(1.3f, 1.3f, 0.0f, false, true, -1.54f, -0.86f) - lineToRelative(-0.25f, -0.76f) - arcToRelative(0.57f, 0.57f, 0.0f, false, false, -0.36f, -0.36f) - lineToRelative(-0.78f, -0.26f) - arcToRelative(1.3f, 1.3f, 0.0f, false, true, -0.7f, -1.88f) - arcToRelative(1.55f, 1.55f, 0.0f, false, true, -2.14f, -0.9f) - lineToRelative(-0.44f, -1.38f) - arcToRelative(1.81f, 1.81f, 0.0f, false, false, -1.16f, -1.16f) - lineToRelative(-1.4f, -0.46f) - arcToRelative(1.54f, 1.54f, 0.0f, false, true, 0.02f, -2.92f) - lineToRelative(1.36f, -0.44f) - curveToRelative(0.14f, -0.05f, 0.28f, -0.11f, 0.4f, -0.2f) - arcTo(10.0f, 10.0f, 0.0f, true, false, 12.0f, 22.0f) - close() - moveTo(7.4f, 14.66f) - curveToRelative(0.33f, -0.26f, 0.8f, -0.2f, 1.06f, 0.12f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 7.07f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.18f, 0.94f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, -9.43f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.13f, -1.06f) - close() - moveTo(7.76f, 10.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) - close() - moveTo(13.76f, 10.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) - close() - } - } - return _emojiSparkle!! - } - -private var _emojiSparkle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiSurprise.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiSurprise.kt deleted file mode 100644 index c8765814..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EmojiSurprise.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.EmojiSurprise: ImageVector - get() { - if (_emojiSurprise != null) { - return _emojiSurprise!! - } - _emojiSurprise = fluentIcon(name = "Filled.EmojiSurprise") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(12.0f, 13.0f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, 4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, -4.5f) - close() - moveTo(9.0f, 8.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(15.0f, 8.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - } - } - return _emojiSurprise!! - } - -private var _emojiSurprise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Engine.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Engine.kt deleted file mode 100644 index 0fb64e5d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Engine.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Engine: ImageVector - get() { - if (_engine != null) { - return _engine!! - } - _engine = fluentIcon(name = "Filled.Engine") { - fluentPath { - moveTo(9.75f, 3.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(10.5f, 5.0f) - horizontalLineToRelative(2.0f) - lineTo(12.5f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(14.0f, 5.0f) - horizontalLineToRelative(2.75f) - curveToRelative(0.3f, 0.0f, 0.58f, 0.19f, 0.7f, 0.47f) - lineToRelative(0.8f, 2.03f) - horizontalLineToRelative(1.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 10.25f) - verticalLineToRelative(5.5f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) - horizontalLineToRelative(-1.0f) - lineToRelative(-0.8f, 2.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, 0.47f) - horizontalLineToRelative(-7.5f) - curveToRelative(-0.2f, 0.0f, -0.4f, -0.09f, -0.55f, -0.24f) - lineTo(5.74f, 17.6f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.0f, 15.7f) - lineTo(5.0f, 12.5f) - lineTo(3.5f, 12.5f) - verticalLineToRelative(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(3.5f, 11.0f) - lineTo(5.0f, 11.0f) - lineTo(5.0f, 7.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 7.75f, 5.0f) - lineTo(9.0f, 5.0f) - lineTo(9.0f, 3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(10.5f, 9.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 11.75f, 15.0f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(14.0f, 13.5f) - lineTo(14.0f, 9.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.75f) - horizontalLineToRelative(-0.75f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - verticalLineToRelative(-2.5f) - close() - } - } - return _engine!! - } - -private var _engine: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EqualCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EqualCircle.kt deleted file mode 100644 index ed2e563f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EqualCircle.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.EqualCircle: ImageVector - get() { - if (_equalCircle != null) { - return _equalCircle!! - } - _equalCircle = fluentIcon(name = "Filled.EqualCircle") { - fluentPath { - moveTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 20.0f, 0.0f) - close() - moveTo(16.25f, 10.5f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(16.25f, 15.0f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - } - } - return _equalCircle!! - } - -private var _equalCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EqualOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EqualOff.kt deleted file mode 100644 index f8a0312c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EqualOff.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.EqualOff: ImageVector - get() { - if (_equalOff != null) { - return _equalOff!! - } - _equalOff = fluentIcon(name = "Filled.EqualOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(6.94f, 8.0f) - lineTo(4.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(4.94f) - lineToRelative(4.0f, 4.0f) - lineTo(4.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(10.94f) - lineToRelative(5.78f, 5.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(20.0f, 14.0f) - horizontalLineToRelative(-2.82f) - lineToRelative(2.0f, 2.0f) - lineTo(20.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - close() - moveTo(11.18f, 8.0f) - lineTo(13.18f, 10.0f) - lineTo(20.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-8.82f) - close() - } - } - return _equalOff!! - } - -private var _equalOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Eraser.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Eraser.kt deleted file mode 100644 index 59fe0733..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Eraser.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Eraser: ImageVector - get() { - if (_eraser != null) { - return _eraser!! - } - _eraser = fluentIcon(name = "Filled.Eraser") { - fluentPath { - moveToRelative(15.87f, 2.67f) - lineToRelative(4.97f, 4.97f) - curveToRelative(0.88f, 0.88f, 0.88f, 2.3f, 0.0f, 3.18f) - lineToRelative(-8.68f, 8.68f) - horizontalLineToRelative(6.1f) - curveToRelative(0.37f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.64f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineTo(9.83f) - arcToRelative(2.24f, 2.24f, 0.0f, false, true, -1.71f, -0.65f) - lineToRelative(-4.97f, -4.97f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -3.18f) - lineToRelative(9.53f, -9.53f) - curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.0f) - close() - moveTo(11.7f, 17.76f) - lineTo(5.74f, 11.8f) - lineToRelative(-1.5f, 1.47f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(4.94f, 4.95f) - curveToRelative(0.3f, 0.28f, 0.77f, 0.28f, 1.06f, -0.02f) - lineToRelative(1.46f, -1.5f) - close() - } - } - return _eraser!! - } - -private var _eraser: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EraserMedium.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EraserMedium.kt deleted file mode 100644 index b935511f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EraserMedium.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.EraserMedium: ImageVector - get() { - if (_eraserMedium != null) { - return _eraserMedium!! - } - _eraserMedium = fluentIcon(name = "Filled.EraserMedium") { - fluentPath { - moveTo(12.65f, 2.64f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.2f, 0.02f) - lineToRelative(4.9f, 5.0f) - curveToRelative(0.86f, 0.89f, 0.86f, 2.3f, 0.0f, 3.17f) - lineToRelative(-0.7f, 0.7f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -9.04f, 5.55f) - lineTo(5.64f, 11.7f) - lineTo(4.1f, 13.2f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.78f, 0.0f, 1.07f) - lineToRelative(5.1f, 5.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(0.8f, -0.81f) - curveToRelative(0.09f, 0.58f, 0.25f, 1.13f, 0.48f, 1.65f) - lineToRelative(-0.22f, 0.22f) - curveToRelative(-0.87f, 0.88f, -2.29f, 0.89f, -3.17f, 0.02f) - lineToRelative(-5.1f, -5.01f) - curveToRelative(-0.9f, -0.88f, -0.9f, -2.32f, 0.0f, -3.2f) - lineToRelative(9.6f, -9.51f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.01f, 10.99f) - arcTo(5.5f, 5.5f, 0.0f, false, true, 17.5f, 12.0f) - close() - } - } - return _eraserMedium!! - } - -private var _eraserMedium: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EraserSegment.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EraserSegment.kt deleted file mode 100644 index c7d88852..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EraserSegment.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.EraserSegment: ImageVector - get() { - if (_eraserSegment != null) { - return _eraserSegment!! - } - _eraserSegment = fluentIcon(name = "Filled.EraserSegment") { - fluentPath { - moveTo(12.65f, 2.64f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.2f, 0.02f) - lineToRelative(4.9f, 5.0f) - curveToRelative(0.86f, 0.89f, 0.86f, 2.3f, 0.0f, 3.17f) - lineToRelative(-8.59f, 8.67f) - horizontalLineToRelative(3.95f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 1.5f) - horizontalLineTo(9.85f) - curveToRelative(-0.6f, 0.03f, -1.22f, -0.18f, -1.7f, -0.64f) - lineToRelative(-5.09f, -5.01f) - curveToRelative(-0.9f, -0.88f, -0.9f, -2.32f, 0.0f, -3.2f) - lineToRelative(9.6f, -9.51f) - close() - moveTo(9.8f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.47f, -0.22f) - lineToRelative(1.47f, -1.48f) - lineToRelative(-6.1f, -6.1f) - lineTo(4.1f, 13.2f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.78f, 0.0f, 1.07f) - lineToRelative(5.1f, 5.0f) - curveToRelative(0.15f, 0.15f, 0.35f, 0.23f, 0.54f, 0.22f) - horizontalLineToRelative(0.05f) - close() - } - } - return _eraserSegment!! - } - -private var _eraserSegment: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EraserSmall.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EraserSmall.kt deleted file mode 100644 index d45853dd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EraserSmall.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.EraserSmall: ImageVector - get() { - if (_eraserSmall != null) { - return _eraserSmall!! - } - _eraserSmall = fluentIcon(name = "Filled.EraserSmall") { - fluentPath { - moveTo(12.65f, 2.64f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.2f, 0.02f) - lineToRelative(4.9f, 5.0f) - curveToRelative(0.86f, 0.89f, 0.86f, 2.3f, 0.0f, 3.17f) - lineToRelative(-2.26f, 2.28f) - arcToRelative(4.51f, 4.51f, 0.0f, false, false, -5.37f, 5.42f) - lineToRelative(-1.79f, 1.8f) - curveToRelative(-0.87f, 0.89f, -2.29f, 0.9f, -3.17f, 0.03f) - lineToRelative(-5.1f, -5.01f) - curveToRelative(-0.9f, -0.88f, -0.9f, -2.32f, 0.0f, -3.2f) - lineToRelative(9.6f, -9.51f) - close() - moveTo(4.11f, 13.2f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.78f, 0.0f, 1.07f) - lineToRelative(5.1f, 5.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(1.47f, -1.48f) - lineToRelative(-6.1f, -6.1f) - lineTo(4.1f, 13.2f) - close() - moveTo(17.5f, 21.0f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, -7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, 7.0f) - close() - } - } - return _eraserSmall!! - } - -private var _eraserSmall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EraserTool.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EraserTool.kt deleted file mode 100644 index bc23c3de..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EraserTool.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.EraserTool: ImageVector - get() { - if (_eraserTool != null) { - return _eraserTool!! - } - _eraserTool = fluentIcon(name = "Filled.EraserTool") { - fluentPath { - moveTo(4.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(14.5f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 7.75f, 22.0f) - horizontalLineToRelative(8.5f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 21.0f, 17.25f) - lineTo(21.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - lineTo(19.5f, 7.0f) - horizontalLineToRelative(-15.0f) - lineTo(4.5f, 2.75f) - close() - moveTo(4.5f, 8.5f) - horizontalLineToRelative(15.0f) - lineTo(19.5f, 12.0f) - horizontalLineToRelative(-15.0f) - lineTo(4.5f, 8.5f) - close() - } - } - return _eraserTool!! - } - -private var _eraserTool: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ExpandUpLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ExpandUpLeft.kt deleted file mode 100644 index 869639fa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ExpandUpLeft.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ExpandUpLeft: ImageVector - get() { - if (_expandUpLeft != null) { - return _expandUpLeft!! - } - _expandUpLeft = fluentIcon(name = "Filled.ExpandUpLeft") { - fluentPath { - moveTo(11.0f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(4.5f, 5.56f) - lineToRelative(5.22f, 5.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(5.56f, 4.5f) - horizontalLineToRelative(4.69f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - close() - moveTo(17.75f, 4.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(19.5f, 12.0f) - horizontalLineToRelative(-4.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 12.0f, 14.75f) - verticalLineToRelative(4.75f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(4.0f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(4.0f) - close() - } - } - return _expandUpLeft!! - } - -private var _expandUpLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ExpandUpRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ExpandUpRight.kt deleted file mode 100644 index ddeaf199..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ExpandUpRight.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ExpandUpRight: ImageVector - get() { - if (_expandUpRight != null) { - return _expandUpRight!! - } - _expandUpRight = fluentIcon(name = "Filled.ExpandUpRight") { - fluentPath { - moveTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineTo(12.0f) - horizontalLineToRelative(4.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 12.0f, 14.75f) - verticalLineToRelative(4.75f) - horizontalLineToRelative(5.75f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineTo(6.25f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - verticalLineTo(6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.0f) - close() - moveTo(13.0f, 3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineTo(5.56f) - lineToRelative(-5.22f, 5.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(5.22f, -5.22f) - horizontalLineToRelative(-4.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _expandUpRight!! - } - -private var _expandUpRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ExtendedDock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ExtendedDock.kt deleted file mode 100644 index c3d2cdc5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ExtendedDock.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ExtendedDock: ImageVector - get() { - if (_extendedDock != null) { - return _extendedDock!! - } - _extendedDock = fluentIcon(name = "Filled.ExtendedDock") { - fluentPath { - moveTo(6.25f, 11.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(2.5f) - curveTo(8.0f, 16.2f, 7.22f, 17.0f, 6.25f, 17.0f) - horizontalLineToRelative(-2.5f) - curveTo(2.78f, 17.0f, 2.0f, 16.2f, 2.0f, 15.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.5f) - close() - moveTo(13.25f, 11.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.96f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.5f) - curveTo(9.78f, 17.0f, 9.0f, 16.2f, 9.0f, 15.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.5f) - close() - moveTo(20.25f, 11.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.96f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.79f, -1.75f, -1.75f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.5f) - close() - moveTo(7.97f, 7.72f) - lineToRelative(3.5f, -3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -0.08f) - lineToRelative(0.08f, 0.07f) - lineToRelative(3.6f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.95f, 1.15f) - lineToRelative(-0.09f, -0.07f) - lineToRelative(-3.07f, -2.99f) - lineToRelative(-2.98f, 2.98f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 7.9f, 7.8f) - lineToRelative(0.07f, -0.08f) - lineToRelative(3.5f, -3.5f) - lineToRelative(-3.5f, 3.5f) - close() - } - } - return _extendedDock!! - } - -private var _extendedDock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EyeLines.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EyeLines.kt deleted file mode 100644 index 3097f427..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EyeLines.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.EyeLines: ImageVector - get() { - if (_eyeLines != null) { - return _eyeLines!! - } - _eyeLines = fluentIcon(name = "Filled.EyeLines") { - fluentPath { - moveTo(4.39f, 7.06f) - curveToRelative(0.3f, -0.37f, 0.63f, -0.72f, 1.0f, -1.06f) - horizontalLineToRelative(6.6f) - lineTo(11.99f, 5.0f) - lineTo(6.69f, 5.0f) - arcTo(9.65f, 9.65f, 0.0f, false, true, 12.0f, 3.5f) - curveToRelative(3.64f, 0.0f, 6.1f, 1.7f, 7.61f, 3.56f) - curveToRelative(0.76f, 0.92f, 1.28f, 1.88f, 1.63f, 2.7f) - curveToRelative(0.33f, 0.8f, 0.51f, 1.53f, 0.51f, 1.99f) - curveToRelative(0.0f, 0.46f, -0.18f, 1.2f, -0.51f, 1.99f) - curveToRelative(-0.35f, 0.82f, -0.87f, 1.78f, -1.63f, 2.7f) - arcTo(9.51f, 9.51f, 0.0f, false, true, 12.0f, 20.0f) - arcToRelative(9.65f, 9.65f, 0.0f, false, true, -5.32f, -1.5f) - lineTo(12.0f, 18.5f) - verticalLineToRelative(-1.0f) - lineTo(5.38f, 17.5f) - arcTo(10.2f, 10.2f, 0.0f, false, true, 4.04f, 16.0f) - lineTo(12.0f, 16.0f) - verticalLineToRelative(-0.75f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - lineTo(12.0f, 7.5f) - lineTo(4.04f, 7.5f) - lineToRelative(0.35f, -0.44f) - close() - moveTo(10.69f, 8.5f) - lineTo(3.4f, 8.5f) - arcToRelative(10.8f, 10.8f, 0.0f, false, false, -0.72f, 1.5f) - horizontalLineToRelative(6.3f) - curveToRelative(0.39f, -0.67f, 1.0f, -1.2f, 1.73f, -1.5f) - close() - moveTo(8.6f, 11.0f) - lineTo(2.34f, 11.0f) - curveToRelative(-0.06f, 0.3f, -0.1f, 0.55f, -0.1f, 0.75f) - curveToRelative(0.0f, 0.2f, 0.04f, 0.46f, 0.1f, 0.75f) - horizontalLineToRelative(6.23f) - arcToRelative(3.51f, 3.51f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(8.98f, 13.5f) - horizontalLineToRelative(-6.3f) - arcToRelative(9.7f, 9.7f, 0.0f, false, false, 0.72f, 1.5f) - horizontalLineToRelative(7.3f) - arcToRelative(3.51f, 3.51f, 0.0f, false, true, -1.72f, -1.5f) - close() - } - } - return _eyeLines!! - } - -private var _eyeLines: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EyeOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EyeOff.kt deleted file mode 100644 index dc5eddd3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EyeOff.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.EyeOff: ImageVector - get() { - if (_eyeOff != null) { - return _eyeOff!! - } - _eyeOff = fluentIcon(name = "Filled.EyeOff") { - fluentPath { - moveTo(2.22f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.98f) - lineToRelative(0.07f, 0.08f) - lineToRelative(4.03f, 4.03f) - arcToRelative(9.99f, 9.99f, 0.0f, false, false, -3.95f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.45f, 0.37f) - arcToRelative(8.49f, 8.49f, 0.0f, false, true, 3.58f, -5.04f) - lineToRelative(1.81f, 1.81f) - arcTo(3.99f, 3.99f, 0.0f, false, false, 12.0f, 17.0f) - curveToRelative(1.09f, 0.0f, 2.08f, -0.43f, 2.8f, -1.14f) - lineToRelative(5.92f, 5.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, -0.98f) - lineToRelative(-0.07f, -0.08f) - lineToRelative(-6.11f, -6.11f) - lineToRelative(-6.95f, -6.95f) - lineToRelative(-1.13f, -1.13f) - lineToRelative(-4.31f, -4.31f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - close() - moveTo(12.0f, 5.5f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, -2.89f, 0.42f) - lineToRelative(1.24f, 1.24f) - arcToRelative(8.52f, 8.52f, 0.0f, false, true, 9.9f, 6.27f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.45f, -0.36f) - arcTo(10.0f, 10.0f, 0.0f, false, false, 12.0f, 5.5f) - close() - moveTo(12.2f, 9.0f) - lineTo(16.0f, 12.81f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -3.8f, -3.8f) - close() - } - } - return _eyeOff!! - } - -private var _eyeOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EyeTracking.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EyeTracking.kt deleted file mode 100644 index d5487233..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EyeTracking.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.EyeTracking: ImageVector - get() { - if (_eyeTracking != null) { - return _eyeTracking!! - } - _eyeTracking = fluentIcon(name = "Filled.EyeTracking") { - fluentPath { - moveTo(3.49f, 15.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.49f, 0.0f) - lineTo(2.0f, 19.43f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.58f, 22.0f) - horizontalLineToRelative(3.77f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(4.62f, 20.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.12f, -1.12f) - verticalLineToRelative(-3.63f) - lineToRelative(-0.01f, -0.1f) - close() - moveTo(21.99f, 15.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - verticalLineToRelative(3.63f) - curveToRelative(-0.06f, 0.63f, -0.6f, 1.12f, -1.24f, 1.12f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.66f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 19.25f) - verticalLineToRelative(-3.5f) - lineToRelative(-0.01f, -0.1f) - close() - moveTo(8.99f, 2.75f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 8.26f, 2.0f) - lineTo(4.58f, 2.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 4.76f) - verticalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - lineTo(3.5f, 4.62f) - curveTo(3.57f, 4.0f, 4.1f, 3.5f, 4.75f, 3.5f) - horizontalLineToRelative(3.6f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 9.0f, 2.74f) - close() - moveTo(19.41f, 2.01f) - lineTo(19.25f, 2.0f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.72f) - curveToRelative(0.6f, 0.07f, 1.06f, 0.53f, 1.12f, 1.12f) - verticalLineToRelative(3.63f) - lineToRelative(0.01f, 0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.49f, 0.0f) - lineTo(21.99f, 4.58f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 19.41f, 2.0f) - close() - moveTo(8.5f, 13.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 7.0f, 0.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -7.0f, 0.0f) - close() - moveTo(6.21f, 11.74f) - verticalLineToRelative(0.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 0.44f) - curveToRelative(-0.6f, -0.22f, -0.44f, -0.97f, -0.44f, -0.97f) - verticalLineToRelative(-0.02f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.1f, -0.2f) - arcTo(7.57f, 7.57f, 0.0f, false, true, 12.0f, 6.75f) - arcToRelative(7.73f, 7.73f, 0.0f, false, true, 6.84f, 3.75f) - arcToRelative(6.3f, 6.3f, 0.0f, false, true, 0.35f, 0.71f) - verticalLineToRelative(0.02f) - horizontalLineToRelative(0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.4f, 0.53f) - lineToRelative(-0.01f, -0.02f) - lineToRelative(-0.04f, -0.1f) - lineToRelative(-0.21f, -0.39f) - arcToRelative(6.07f, 6.07f, 0.0f, false, false, -5.54f, -3.0f) - arcToRelative(6.24f, 6.24f, 0.0f, false, false, -5.54f, 3.0f) - arcToRelative(4.78f, 4.78f, 0.0f, false, false, -0.25f, 0.5f) - close() - } - } - return _eyeTracking!! - } - -private var _eyeTracking: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EyeTrackingOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EyeTrackingOff.kt deleted file mode 100644 index e3fbbc88..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EyeTrackingOff.kt +++ /dev/null @@ -1,101 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.EyeTrackingOff: ImageVector - get() { - if (_eyeTrackingOff != null) { - return _eyeTrackingOff!! - } - _eyeTrackingOff = fluentIcon(name = "Filled.EyeTrackingOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(0.13f, 0.13f) - curveToRelative(-0.23f, 0.4f, -0.35f, 0.85f, -0.35f, 1.34f) - verticalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - lineTo(3.5f, 4.62f) - lineToRelative(0.01f, -0.05f) - lineToRelative(3.68f, 3.68f) - arcTo(7.44f, 7.44f, 0.0f, false, false, 4.8f, 11.2f) - verticalLineToRelative(0.02f) - curveToRelative(-0.01f, 0.0f, -0.17f, 0.75f, 0.43f, 0.97f) - curveToRelative(0.38f, 0.15f, 0.81f, -0.05f, 0.96f, -0.43f) - lineToRelative(0.01f, -0.03f) - arcToRelative(2.85f, 2.85f, 0.0f, false, true, 0.25f, -0.49f) - arcToRelative(6.07f, 6.07f, 0.0f, false, true, 1.8f, -1.93f) - lineToRelative(1.5f, 1.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 4.92f, 4.93f) - lineToRelative(4.75f, 4.74f) - lineToRelative(-0.18f, 0.01f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.66f) - curveToRelative(0.43f, -0.03f, 0.83f, -0.15f, 1.18f, -0.35f) - lineToRelative(0.13f, 0.13f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(11.45f, 8.27f) - lineTo(10.12f, 6.94f) - curveToRelative(0.57f, -0.12f, 1.2f, -0.19f, 1.88f, -0.19f) - arcToRelative(7.73f, 7.73f, 0.0f, false, true, 6.84f, 3.75f) - arcToRelative(6.3f, 6.3f, 0.0f, false, true, 0.33f, 0.67f) - lineToRelative(0.02f, 0.04f) - verticalLineToRelative(0.02f) - horizontalLineToRelative(0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.4f, 0.53f) - lineToRelative(-0.01f, -0.02f) - lineToRelative(-0.04f, -0.1f) - lineToRelative(-0.21f, -0.39f) - arcToRelative(6.07f, 6.07f, 0.0f, false, false, -5.54f, -3.0f) - curveToRelative(-0.19f, 0.0f, -0.37f, 0.0f, -0.55f, 0.02f) - close() - moveTo(22.0f, 18.82f) - lineToRelative(-1.5f, -1.5f) - verticalLineToRelative(-1.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.49f, -0.1f) - verticalLineToRelative(3.17f) - close() - moveTo(6.68f, 3.5f) - lineTo(5.18f, 2.0f) - horizontalLineToRelative(3.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.68f, 3.5f) - close() - moveTo(2.75f, 15.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - verticalLineToRelative(3.6f) - lineToRelative(0.01f, 0.13f) - curveToRelative(0.06f, 0.59f, 0.53f, 1.06f, 1.12f, 1.12f) - horizontalLineToRelative(3.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(4.58f, 22.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 19.43f) - lineTo(2.0f, 15.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) - close() - moveTo(19.25f, 2.0f) - horizontalLineToRelative(0.16f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 4.59f) - verticalLineToRelative(3.77f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, 0.0f) - lineTo(20.51f, 4.62f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.13f, -1.11f) - lineToRelative(-0.12f, -0.01f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.6f) - close() - } - } - return _eyeTrackingOff!! - } - -private var _eyeTrackingOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Eyedropper.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Eyedropper.kt deleted file mode 100644 index da5aa8df..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Eyedropper.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Eyedropper: ImageVector - get() { - if (_eyedropper != null) { - return _eyedropper!! - } - _eyedropper = fluentIcon(name = "Filled.Eyedropper") { - fluentPath { - moveTo(21.03f, 2.97f) - arcToRelative(3.58f, 3.58f, 0.0f, false, false, -5.06f, 0.0f) - lineTo(14.0f, 4.94f) - lineToRelative(-0.01f, -0.01f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.48f, 0.0f) - lineToRelative(-0.58f, 0.58f) - curveToRelative(-0.69f, 0.69f, -0.69f, 1.8f, 0.0f, 2.48f) - verticalLineTo(8.0f) - lineToRelative(-6.77f, 6.78f) - curveToRelative(-0.42f, 0.42f, -0.66f, 1.0f, -0.66f, 1.6f) - verticalLineToRelative(0.68f) - lineTo(2.22f, 19.4f) - curveToRelative(-0.84f, 1.53f, 0.84f, 3.2f, 2.37f, 2.37f) - lineToRelative(2.35f, -1.28f) - horizontalLineToRelative(0.69f) - curveToRelative(0.6f, 0.0f, 1.17f, -0.24f, 1.59f, -0.66f) - lineTo(16.0f, 13.06f) - lineToRelative(0.01f, 0.01f) - curveToRelative(0.69f, 0.69f, 1.8f, 0.69f, 2.48f, 0.0f) - lineToRelative(0.58f, -0.58f) - curveToRelative(0.69f, -0.69f, 0.69f, -1.8f, 0.0f, -2.48f) - verticalLineTo(10.0f) - lineToRelative(1.96f, -1.97f) - arcToRelative(3.58f, 3.58f, 0.0f, false, false, 0.0f, -5.06f) - close() - moveTo(12.0f, 9.07f) - lineTo(14.94f, 12.0f) - lineToRelative(-6.78f, 6.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.53f, 0.22f) - horizontalLineToRelative(-0.88f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.36f, 0.1f) - lineToRelative(-2.51f, 1.36f) - arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.16f, 0.04f) - arcToRelative(0.26f, 0.26f, 0.0f, false, true, -0.14f, -0.08f) - arcToRelative(0.26f, 0.26f, 0.0f, false, true, -0.08f, -0.14f) - curveToRelative(0.0f, -0.03f, 0.0f, -0.09f, 0.04f, -0.16f) - lineToRelative(1.37f, -2.51f) - curveToRelative(0.06f, -0.11f, 0.09f, -0.23f, 0.09f, -0.36f) - verticalLineToRelative(-0.88f) - curveToRelative(0.0f, -0.2f, 0.08f, -0.39f, 0.22f, -0.53f) - lineTo(12.0f, 9.06f) - close() - } - } - return _eyedropper!! - } - -private var _eyedropper: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EyedropperOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EyedropperOff.kt deleted file mode 100644 index 5acb0069..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/EyedropperOff.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.EyedropperOff: ImageVector - get() { - if (_eyedropperOff != null) { - return _eyedropperOff!! - } - _eyedropperOff = fluentIcon(name = "Filled.EyedropperOff") { - fluentPath { - moveToRelative(8.94f, 10.0f) - lineToRelative(-4.78f, 4.78f) - curveToRelative(-0.42f, 0.42f, -0.66f, 1.0f, -0.66f, 1.6f) - verticalLineToRelative(0.68f) - lineTo(2.22f, 19.4f) - curveToRelative(-0.84f, 1.53f, 0.84f, 3.2f, 2.38f, 2.37f) - lineToRelative(2.34f, -1.28f) - horizontalLineToRelative(0.69f) - curveToRelative(0.6f, 0.0f, 1.17f, -0.24f, 1.6f, -0.66f) - lineTo(14.0f, 15.06f) - lineToRelative(6.72f, 6.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineTo(8.94f, 10.0f) - close() - moveTo(12.94f, 14.0f) - lineTo(8.16f, 18.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.53f, 0.22f) - horizontalLineToRelative(-0.88f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.36f, 0.1f) - lineToRelative(-2.51f, 1.36f) - arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.16f, 0.04f) - arcToRelative(0.26f, 0.26f, 0.0f, false, true, -0.14f, -0.08f) - arcToRelative(0.26f, 0.26f, 0.0f, false, true, -0.07f, -0.14f) - curveToRelative(-0.01f, -0.03f, -0.01f, -0.09f, 0.03f, -0.16f) - lineToRelative(1.37f, -2.51f) - curveToRelative(0.06f, -0.11f, 0.1f, -0.23f, 0.1f, -0.36f) - verticalLineToRelative(-0.88f) - curveToRelative(0.0f, -0.2f, 0.07f, -0.39f, 0.21f, -0.53f) - lineTo(10.0f, 11.06f) - lineTo(12.94f, 14.0f) - close() - moveTo(18.49f, 13.07f) - curveToRelative(-0.5f, 0.5f, -1.2f, 0.63f, -1.82f, 0.42f) - lineToRelative(-6.16f, -6.16f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.42f, -1.82f) - lineToRelative(0.58f, -0.58f) - curveToRelative(0.69f, -0.69f, 1.8f, -0.69f, 2.48f, 0.0f) - lineToRelative(0.01f, 0.01f) - lineToRelative(1.97f, -1.97f) - arcToRelative(3.58f, 3.58f, 0.0f, false, true, 5.06f, 5.06f) - lineTo(19.06f, 10.0f) - lineToRelative(0.01f, 0.01f) - curveToRelative(0.69f, 0.69f, 0.69f, 1.8f, 0.0f, 2.48f) - lineToRelative(-0.58f, 0.58f) - close() - } - } - return _eyedropperOff!! - } - -private var _eyedropperOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FStop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FStop.kt deleted file mode 100644 index c72ac8b8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FStop.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FStop: ImageVector - get() { - if (_fStop != null) { - return _fStop!! - } - _fStop = fluentIcon(name = "Filled.FStop") { - fluentPath { - moveTo(13.44f, 6.57f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.94f, -2.33f) - lineToRelative(0.6f, 0.2f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.65f, -1.88f) - lineToRelative(-0.6f, -0.21f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, -6.56f, 3.88f) - lineToRelative(-0.73f, 4.27f) - horizontalLineTo(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(3.4f) - lineToRelative(-0.69f, 4.04f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -4.4f, 2.13f) - lineToRelative(-0.08f, -0.05f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.96f, 1.76f) - lineToRelative(0.07f, 0.04f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 7.34f, -3.54f) - lineToRelative(0.75f, -4.38f) - horizontalLineTo(16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-3.23f) - lineToRelative(0.67f, -3.93f) - close() - } - } - return _fStop!! - } - -private var _fStop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FastAcceleration.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FastAcceleration.kt deleted file mode 100644 index 0aa823ea..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FastAcceleration.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FastAcceleration: ImageVector - get() { - if (_fastAcceleration != null) { - return _fastAcceleration!! - } - _fastAcceleration = fluentIcon(name = "Filled.FastAcceleration") { - fluentPath { - moveTo(13.5f, 4.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, -4.82f, 15.5f) - lineTo(1.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(7.02f, 18.0f) - curveToRelative(-0.4f, -0.46f, -0.73f, -0.96f, -1.02f, -1.5f) - lineTo(3.75f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(5.37f, 15.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, 1.65f, -8.0f) - lineTo(2.75f, 7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(8.68f, 5.5f) - arcTo(8.46f, 8.46f, 0.0f, false, true, 13.5f, 4.0f) - close() - moveTo(14.65f, 14.72f) - arcToRelative(2.49f, 2.49f, 0.0f, false, true, -2.3f, 0.0f) - lineToRelative(-1.09f, 1.1f) - arcToRelative(3.98f, 3.98f, 0.0f, false, false, 4.5f, 0.0f) - lineToRelative(-1.1f, -1.1f) - close() - moveTo(9.5f, 12.5f) - curveToRelative(0.0f, 0.84f, 0.26f, 1.62f, 0.7f, 2.26f) - lineToRelative(1.09f, -1.1f) - arcToRelative(2.49f, 2.49f, 0.0f, false, true, 0.0f, -2.32f) - lineToRelative(-1.1f, -1.09f) - curveToRelative(-0.43f, 0.65f, -0.69f, 1.42f, -0.69f, 2.25f) - close() - moveTo(16.82f, 10.26f) - lineTo(15.72f, 11.36f) - arcToRelative(2.49f, 2.49f, 0.0f, false, true, 0.0f, 2.3f) - lineToRelative(1.1f, 1.1f) - arcToRelative(3.98f, 3.98f, 0.0f, false, false, 0.0f, -4.5f) - close() - moveTo(13.5f, 11.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(13.5f, 8.5f) - curveToRelative(-0.83f, 0.0f, -1.6f, 0.26f, -2.25f, 0.7f) - lineToRelative(1.1f, 1.08f) - arcToRelative(2.49f, 2.49f, 0.0f, false, true, 2.32f, 0.0f) - lineToRelative(1.09f, -1.08f) - arcToRelative(3.98f, 3.98f, 0.0f, false, false, -2.26f, -0.7f) - close() - } - } - return _fastAcceleration!! - } - -private var _fastAcceleration: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FastForward.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FastForward.kt deleted file mode 100644 index a3281846..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FastForward.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FastForward: ImageVector - get() { - if (_fastForward != null) { - return _fastForward!! - } - _fastForward = fluentIcon(name = "Filled.FastForward") { - fluentPath { - moveTo(13.97f, 4.36f) - arcTo(1.5f, 1.5f, 0.0f, false, false, 11.5f, 5.5f) - verticalLineToRelative(4.0f) - lineTo(5.47f, 4.35f) - arcTo(1.5f, 1.5f, 0.0f, false, false, 3.0f, 5.51f) - verticalLineTo(18.5f) - curveToRelative(0.0f, 0.88f, 0.7f, 1.48f, 1.46f, 1.5f) - horizontalLineToRelative(0.09f) - curveToRelative(0.32f, 0.0f, 0.64f, -0.12f, 0.92f, -0.36f) - lineToRelative(6.03f, -5.13f) - verticalLineToRelative(3.99f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 2.47f, 1.14f) - lineToRelative(7.41f, -6.3f) - curveToRelative(0.82f, -0.7f, 0.82f, -1.97f, 0.0f, -2.67f) - lineToRelative(-7.4f, -6.3f) - close() - } - } - return _fastForward!! - } - -private var _fastForward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Feed.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Feed.kt deleted file mode 100644 index 18a780eb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Feed.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Feed: ImageVector - get() { - if (_feed != null) { - return _feed!! - } - _feed = fluentIcon(name = "Filled.Feed") { - fluentPath { - moveTo(15.0f, 21.0f) - curveToRelative(0.94f, 0.0f, 1.75f, -0.67f, 1.93f, -1.6f) - lineToRelative(0.48f, -2.4f) - horizontalLineToRelative(2.84f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(22.0f, 9.26f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.26f) - lineTo(14.5f, 7.0f) - lineTo(14.5f, 5.25f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-8.0f) - curveTo(3.01f, 3.0f, 2.0f, 4.0f, 2.0f, 5.25f) - verticalLineToRelative(12.5f) - curveTo(2.0f, 19.55f, 3.46f, 21.0f, 5.25f, 21.0f) - lineTo(15.0f, 21.0f) - close() - moveTo(17.52f, 8.82f) - lineTo(15.46f, 19.1f) - arcToRelative(0.49f, 0.49f, 0.0f, false, true, -0.96f, -0.1f) - lineTo(14.5f, 8.5f) - horizontalLineToRelative(3.11f) - curveToRelative(-0.04f, 0.1f, -0.07f, 0.2f, -0.09f, 0.32f) - close() - moveTo(5.78f, 8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(5.03f, 15.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(5.78f, 11.0f) - horizontalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - } - } - return _feed!! - } - -private var _feed: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Filmstrip.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Filmstrip.kt deleted file mode 100644 index c7d85948..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Filmstrip.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Filmstrip: ImageVector - get() { - if (_filmstrip != null) { - return _filmstrip!! - } - _filmstrip = fluentIcon(name = "Filled.Filmstrip") { - fluentPath { - moveTo(2.0f, 7.25f) - curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) - horizontalLineToRelative(13.5f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(5.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - close() - moveTo(18.5f, 7.75f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - close() - moveTo(19.25f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(18.5f, 11.75f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - close() - moveTo(4.75f, 7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 4.75f, 7.0f) - close() - moveTo(4.0f, 15.75f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - close() - moveTo(4.75f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - } - } - return _filmstrip!! - } - -private var _filmstrip: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FilmstripPlay.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FilmstripPlay.kt deleted file mode 100644 index 7fcd7916..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FilmstripPlay.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FilmstripPlay: ImageVector - get() { - if (_filmstripPlay != null) { - return _filmstripPlay!! - } - _filmstripPlay = fluentIcon(name = "Filled.FilmstripPlay") { - fluentPath { - moveTo(5.25f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) - horizontalLineToRelative(13.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-9.5f) - curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) - lineTo(5.25f, 4.0f) - close() - moveTo(19.25f, 7.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(18.5f, 15.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.5f) - close() - moveTo(19.25f, 11.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(4.0f, 7.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.5f) - close() - moveTo(4.75f, 15.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(4.0f, 11.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.5f) - close() - moveTo(10.0f, 9.75f) - curveToRelative(0.0f, -0.58f, 0.58f, -0.94f, 1.03f, -0.65f) - lineToRelative(3.68f, 2.35f) - curveToRelative(0.39f, 0.24f, 0.39f, 0.86f, 0.0f, 1.1f) - lineToRelative(-3.68f, 2.35f) - curveToRelative(-0.45f, 0.29f, -1.03f, -0.07f, -1.03f, -0.65f) - verticalLineToRelative(-4.5f) - close() - } - } - return _filmstripPlay!! - } - -private var _filmstripPlay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FilterDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FilterDismiss.kt deleted file mode 100644 index f466172d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FilterDismiss.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FilterDismiss: ImageVector - get() { - if (_filterDismiss != null) { - return _filterDismiss!! - } - _filterDismiss = fluentIcon(name = "Filled.FilterDismiss") { - fluentPath { - moveTo(23.0f, 7.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 5.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineTo(18.21f, 7.5f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineTo(17.5f, 6.79f) - lineToRelative(-1.65f, -1.64f) - close() - } - fluentPath { - moveTo(8.0f, 11.0f) - horizontalLineToRelative(4.02f) - curveToRelative(0.52f, 0.8f, 1.2f, 1.49f, 2.01f, 2.0f) - horizontalLineTo(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - horizontalLineTo(8.0f) - close() - } - fluentPath { - moveTo(5.0f, 6.0f) - horizontalLineToRelative(6.17f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -0.15f, 2.0f) - horizontalLineTo(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - horizontalLineTo(5.0f) - close() - } - fluentPath { - moveTo(9.88f, 16.0f) - horizontalLineTo(14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - horizontalLineTo(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - close() - } - } - return _filterDismiss!! - } - -private var _filterDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FilterSync.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FilterSync.kt deleted file mode 100644 index 809f9aa3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FilterSync.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FilterSync: ImageVector - get() { - if (_filterSync != null) { - return _filterSync!! - } - _filterSync = fluentIcon(name = "Filled.FilterSync") { - fluentPath { - moveTo(12.0f, 7.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) - close() - moveTo(20.5f, 4.0f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - verticalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.8f, -0.59f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) - lineTo(20.0f, 4.5f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - close() - moveTo(15.0f, 9.95f) - verticalLineToRelative(0.55f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.77f, 0.65f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) - close() - moveTo(8.0f, 13.0f) - horizontalLineToRelative(6.03f) - curveToRelative(-0.8f, -0.51f, -1.5f, -1.2f, -2.0f, -2.0f) - lineTo(7.87f, 11.0f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 8.0f, 13.0f) - close() - moveTo(5.0f, 6.0f) - horizontalLineToRelative(6.17f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -0.15f, 2.0f) - lineTo(5.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(5.0f, 6.0f) - close() - moveTo(9.88f, 16.0f) - lineTo(14.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(10.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - close() - } - } - return _filterSync!! - } - -private var _filterSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fingerprint.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fingerprint.kt deleted file mode 100644 index b489ebe6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fingerprint.kt +++ /dev/null @@ -1,107 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Fingerprint: ImageVector - get() { - if (_fingerprint != null) { - return _fingerprint!! - } - _fingerprint = fluentIcon(name = "Filled.Fingerprint") { - fluentPath { - moveTo(14.98f, 11.97f) - curveToRelative(0.6f, 0.61f, 0.93f, 1.34f, 1.16f, 2.33f) - lineToRelative(0.12f, 0.53f) - lineToRelative(0.1f, 0.5f) - curveToRelative(0.12f, 0.68f, 0.2f, 0.98f, 0.3f, 1.22f) - curveToRelative(0.29f, 0.64f, 0.8f, 1.3f, 1.54f, 1.97f) - curveToRelative(0.4f, 0.37f, 0.43f, 1.0f, 0.06f, 1.4f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.41f, 0.07f) - arcToRelative(8.13f, 8.13f, 0.0f, false, true, -2.01f, -2.63f) - arcToRelative(5.36f, 5.36f, 0.0f, false, true, -0.37f, -1.21f) - lineToRelative(-0.18f, -1.0f) - lineToRelative(-0.04f, -0.16f) - curveToRelative(-0.17f, -0.8f, -0.38f, -1.3f, -0.7f, -1.63f) - curveToRelative(-0.6f, -0.6f, -2.06f, -0.44f, -2.41f, 0.12f) - curveToRelative(-0.52f, 0.82f, -0.66f, 2.24f, -0.23f, 3.69f) - curveToRelative(0.34f, 1.15f, 0.79f, 2.28f, 1.35f, 3.4f) - arcToRelative(0.99f, 0.99f, 0.0f, false, true, -0.44f, 1.33f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.35f, -0.44f) - arcTo(22.26f, 22.26f, 0.0f, false, true, 9.0f, 17.72f) - curveToRelative(-0.58f, -1.96f, -0.39f, -3.97f, 0.46f, -5.3f) - curveToRelative(1.04f, -1.63f, 4.02f, -1.98f, 5.53f, -0.45f) - close() - moveTo(12.48f, 14.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.03f, 0.97f) - curveToRelative(0.05f, 1.5f, 0.53f, 2.94f, 1.4f, 4.17f) - lineToRelative(0.18f, 0.25f) - lineToRelative(0.3f, 0.4f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.5f, 1.3f) - lineToRelative(-0.08f, -0.09f) - lineToRelative(-0.3f, -0.39f) - arcToRelative(9.68f, 9.68f, 0.0f, false, true, -2.0f, -5.58f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.96f, -1.03f) - close() - moveTo(8.57f, 9.2f) - arcToRelative(6.27f, 6.27f, 0.0f, false, true, 7.01f, -0.3f) - curveToRelative(0.96f, 0.62f, 1.7f, 1.35f, 2.18f, 2.18f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.72f, 1.01f) - arcToRelative(4.62f, 4.62f, 0.0f, false, false, -1.54f, -1.5f) - arcToRelative(4.28f, 4.28f, 0.0f, false, false, -4.75f, 0.22f) - curveToRelative(-1.56f, 1.15f, -2.22f, 3.14f, -2.02f, 5.25f) - curveToRelative(0.11f, 1.2f, 0.47f, 2.41f, 1.09f, 3.64f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.79f, 0.9f) - arcToRelative(12.24f, 12.24f, 0.0f, false, true, -1.3f, -4.35f) - curveToRelative(-0.25f, -2.75f, 0.64f, -5.43f, 2.83f, -7.05f) - close() - moveTo(19.14f, 14.36f) - curveToRelative(0.03f, 0.56f, 0.16f, 1.0f, 0.4f, 1.37f) - curveToRelative(0.22f, 0.33f, 0.4f, 0.5f, 0.49f, 0.52f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -0.58f, 1.91f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -1.58f, -1.33f) - arcToRelative(4.66f, 4.66f, 0.0f, false, true, -0.73f, -2.37f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, -0.1f) - close() - moveTo(10.46f, 5.96f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.5f, 1.33f) - curveToRelative(-1.8f, 0.8f, -3.11f, 1.95f, -3.98f, 3.44f) - arcToRelative(9.58f, 9.58f, 0.0f, false, false, -1.13f, 5.92f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.98f, 0.26f) - curveToRelative(-0.3f, -2.25f, 0.05f, -4.88f, 1.38f, -7.18f) - arcToRelative(10.35f, 10.35f, 0.0f, false, true, 4.88f, -4.27f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.33f, 0.5f) - close() - moveTo(12.92f, 4.93f) - curveToRelative(1.9f, 0.04f, 3.77f, 0.9f, 5.62f, 2.55f) - curveToRelative(1.87f, 1.66f, 3.0f, 3.92f, 3.37f, 6.74f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.98f, 0.26f) - arcToRelative(8.6f, 8.6f, 0.0f, false, false, -2.72f, -5.5f) - curveToRelative(-1.52f, -1.35f, -2.96f, -2.02f, -4.33f, -2.05f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.04f, -2.0f) - close() - moveTo(5.6f, 5.16f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, 1.41f) - arcToRelative(7.22f, 7.22f, 0.0f, false, false, -1.64f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.73f, -0.99f) - arcToRelative(9.16f, 9.16f, 0.0f, false, true, 2.04f, -2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, 0.08f) - close() - moveTo(12.49f, 2.03f) - curveToRelative(2.24f, 0.1f, 4.32f, 0.6f, 5.86f, 1.78f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.22f, 1.59f) - curveToRelative(-1.2f, -0.93f, -2.89f, -1.29f, -4.74f, -1.37f) - arcToRelative(7.83f, 7.83f, 0.0f, false, false, -4.55f, 0.97f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.05f, -1.7f) - arcToRelative(9.79f, 9.79f, 0.0f, false, true, 5.7f, -1.27f) - close() - } - } - return _fingerprint!! - } - -private var _fingerprint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fire.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fire.kt deleted file mode 100644 index b5f38e1b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fire.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Fire: ImageVector - get() { - if (_fire != null) { - return _fire!! - } - _fire = fluentIcon(name = "Filled.Fire") { - fluentPath { - moveTo(6.16f, 9.32f) - horizontalLineToRelative(-0.01f) - lineToRelative(-0.01f, 0.02f) - arcToRelative(1.94f, 1.94f, 0.0f, false, false, -0.13f, 0.1f) - curveToRelative(-0.07f, 0.07f, -0.18f, 0.16f, -0.3f, 0.3f) - curveToRelative(-0.24f, 0.24f, -0.55f, 0.62f, -0.83f, 1.12f) - arcToRelative(7.06f, 7.06f, 0.0f, false, false, -0.8f, 4.55f) - curveToRelative(0.27f, 2.0f, 1.1f, 3.67f, 2.53f, 4.83f) - curveTo(8.02f, 21.4f, 9.94f, 22.0f, 12.25f, 22.0f) - curveToRelative(2.39f, 0.0f, 4.3f, -0.9f, 5.55f, -2.43f) - arcToRelative(8.35f, 8.35f, 0.0f, false, false, 1.68f, -5.86f) - curveToRelative(-0.13f, -2.18f, -1.31f, -3.83f, -2.36f, -5.29f) - lineToRelative(-0.3f, -0.42f) - curveTo(15.68f, 6.4f, 14.78f, 4.9f, 15.0f, 2.83f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.83f) - curveToRelative(-0.38f, 0.0f, -0.82f, 0.12f, -1.24f, 0.3f) - arcToRelative(6.82f, 6.82f, 0.0f, false, false, -3.72f, 3.96f) - curveToRelative(-0.49f, 1.4f, -0.24f, 2.73f, 0.12f, 3.7f) - curveToRelative(0.24f, 0.64f, -0.02f, 1.27f, -0.4f, 1.46f) - arcToRelative(0.7f, 0.7f, 0.0f, false, true, -0.93f, -0.31f) - lineToRelative(-0.81f, -1.54f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.11f, -0.25f) - close() - } - } - return _fire!! - } - -private var _fire: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fireplace.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fireplace.kt deleted file mode 100644 index b19c3ae5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fireplace.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Fireplace: ImageVector - get() { - if (_fireplace != null) { - return _fireplace!! - } - _fireplace = fluentIcon(name = "Filled.Fireplace") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(9.0f, 9.0f, 0.0f, false, false, -9.0f, 9.0f) - verticalLineToRelative(6.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(16.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(21.0f, 11.0f) - arcToRelative(9.0f, 9.0f, 0.0f, false, false, -9.0f, -9.0f) - close() - moveTo(4.5f, 11.0f) - arcToRelative(7.5f, 7.5f, 0.0f, true, true, 15.0f, 0.0f) - verticalLineToRelative(5.5f) - horizontalLineToRelative(-4.3f) - arcToRelative(4.16f, 4.16f, 0.0f, false, false, 1.3f, -3.01f) - curveToRelative(0.0f, -1.73f, -0.87f, -2.78f, -1.6f, -3.66f) - lineToRelative(-0.07f, -0.09f) - curveToRelative(-0.74f, -0.9f, -1.33f, -1.65f, -1.33f, -2.99f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.95f, -0.72f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -1.74f, 1.55f) - curveToRelative(-0.23f, 0.57f, -0.29f, 1.2f, -0.33f, 1.66f) - verticalLineToRelative(0.13f) - lineToRelative(-0.07f, 0.5f) - arcToRelative(3.2f, 3.2f, 0.0f, false, true, -0.53f, -0.27f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.89f, 0.1f) - lineToRelative(-0.01f, 0.01f) - lineToRelative(-0.02f, 0.02f) - arcToRelative(2.53f, 2.53f, 0.0f, false, false, -0.23f, 0.25f) - arcToRelative(5.57f, 5.57f, 0.0f, false, false, -1.23f, 3.5f) - curveToRelative(0.0f, 1.19f, 0.49f, 2.25f, 1.3f, 3.02f) - lineTo(4.5f, 16.5f) - lineTo(4.5f, 11.0f) - close() - moveTo(2.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(2.75f, 19.5f) - close() - } - } - return _fireplace!! - } - -private var _fireplace: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FixedWidth.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FixedWidth.kt deleted file mode 100644 index d7d38869..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FixedWidth.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FixedWidth: ImageVector - get() { - if (_fixedWidth != null) { - return _fixedWidth!! - } - _fixedWidth = fluentIcon(name = "Filled.FixedWidth") { - fluentPath { - moveTo(3.75f, 4.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.3f, 0.75f, 0.69f) - lineTo(4.5f, 6.0f) - horizontalLineToRelative(6.75f) - lineTo(11.25f, 4.69f) - curveToRelative(0.0f, -0.38f, 0.34f, -0.69f, 0.75f, -0.69f) - reflectiveCurveToRelative(0.75f, 0.3f, 0.75f, 0.69f) - lineTo(12.75f, 6.0f) - horizontalLineToRelative(6.75f) - lineTo(19.5f, 4.69f) - curveToRelative(0.0f, -0.38f, 0.34f, -0.69f, 0.75f, -0.69f) - reflectiveCurveToRelative(0.75f, 0.3f, 0.75f, 0.69f) - lineTo(21.0f, 8.8f) - curveToRelative(0.0f, 0.38f, -0.34f, 0.69f, -0.75f, 0.69f) - reflectiveCurveToRelative(-0.75f, -0.3f, -0.75f, -0.69f) - lineTo(19.5f, 7.5f) - horizontalLineToRelative(-6.75f) - verticalLineToRelative(1.31f) - curveToRelative(0.0f, 0.38f, -0.34f, 0.69f, -0.75f, 0.69f) - reflectiveCurveToRelative(-0.75f, -0.3f, -0.75f, -0.69f) - lineTo(11.25f, 7.5f) - lineTo(4.5f, 7.5f) - verticalLineToRelative(1.31f) - curveToRelative(0.0f, 0.38f, -0.34f, 0.69f, -0.75f, 0.69f) - reflectiveCurveTo(3.0f, 9.2f, 3.0f, 8.81f) - lineTo(3.0f, 4.7f) - curveToRelative(0.0f, -0.38f, 0.34f, -0.69f, 0.75f, -0.69f) - close() - moveTo(5.75f, 11.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 13.75f) - verticalLineToRelative(4.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, 2.75f) - horizontalLineToRelative(5.5f) - lineTo(11.25f, 11.0f) - horizontalLineToRelative(-5.5f) - close() - moveTo(18.25f, 20.5f) - horizontalLineToRelative(-5.5f) - lineTo(12.75f, 11.0f) - horizontalLineToRelative(5.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 13.75f) - verticalLineToRelative(4.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) - close() - } - } - return _fixedWidth!! - } - -private var _fixedWidth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlagClock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlagClock.kt deleted file mode 100644 index ee8d1b59..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlagClock.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FlagClock: ImageVector - get() { - if (_flagClock != null) { - return _flagClock!! - } - _flagClock = fluentIcon(name = "Filled.FlagClock") { - fluentPath { - moveTo(3.0f, 3.75f) - curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(16.5f) - curveToRelative(0.62f, 0.0f, 0.98f, 0.7f, 0.6f, 1.2f) - lineTo(16.7f, 9.75f) - lineToRelative(0.94f, 1.25f) - horizontalLineToRelative(-0.13f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -6.42f, 5.5f) - lineTo(4.5f, 16.5f) - verticalLineToRelative(4.75f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - lineTo(3.0f, 3.75f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(19.5f, 17.5f) - horizontalLineToRelative(-2.0f) - lineTo(17.5f, 15.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - close() - } - } - return _flagClock!! - } - -private var _flagClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlagOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlagOff.kt deleted file mode 100644 index 53079756..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlagOff.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FlagOff: ImageVector - get() { - if (_flagOff != null) { - return _flagOff!! - } - _flagOff = fluentIcon(name = "Filled.FlagOff") { - fluentPath { - moveToRelative(2.5f, 2.5f) - lineToRelative(18.0f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineToRelative(-5.06f, -5.06f) - lineTo(4.5f, 16.5f) - verticalLineToRelative(4.75f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - lineTo(3.0f, 5.12f) - lineTo(1.44f, 3.56f) - arcTo(0.75f, 0.75f, 0.0f, true, true, 2.5f, 2.5f) - close() - moveTo(5.12f, 3.0f) - horizontalLineToRelative(15.13f) - curveToRelative(0.62f, 0.0f, 0.98f, 0.7f, 0.6f, 1.2f) - lineTo(16.7f, 9.75f) - lineToRelative(4.16f, 5.55f) - curveToRelative(0.38f, 0.5f, 0.02f, 1.2f, -0.6f, 1.2f) - horizontalLineToRelative(-1.63f) - lineTo(5.12f, 3.0f) - close() - } - } - return _flagOff!! - } - -private var _flagOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlashAuto.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlashAuto.kt deleted file mode 100644 index 58aaa968..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlashAuto.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FlashAuto: ImageVector - get() { - if (_flashAuto != null) { - return _flashAuto!! - } - _flashAuto = fluentIcon(name = "Filled.FlashAuto") { - fluentPath { - moveTo(7.43f, 2.83f) - curveTo(7.6f, 2.33f, 8.07f, 2.0f, 8.6f, 2.0f) - horizontalLineToRelative(6.46f) - curveToRelative(0.85f, 0.0f, 1.45f, 0.84f, 1.18f, 1.65f) - lineTo(14.8f, 8.0f) - horizontalLineToRelative(3.96f) - curveToRelative(1.1f, 0.0f, 1.67f, 1.33f, 0.9f, 2.12f) - lineToRelative(-0.67f, 0.7f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -3.11f, 0.29f) - lineToRelative(-1.94f, 4.91f) - lineToRelative(-5.34f, 5.52f) - curveToRelative(-1.06f, 1.08f, -2.88f, 0.1f, -2.55f, -1.38f) - lineToRelative(1.27f, -5.66f) - lineToRelative(-1.56f, -0.01f) - curveToRelative(-1.21f, 0.0f, -2.05f, -1.2f, -1.65f, -2.34f) - lineToRelative(3.33f, -9.32f) - close() - moveTo(18.19f, 11.47f) - lineTo(21.94f, 20.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.64f) - lineToRelative(-0.04f, -0.09f) - lineToRelative(-1.0f, -2.52f) - horizontalLineToRelative(-4.11f) - lineToRelative(-1.0f, 2.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.87f, 0.45f) - lineToRelative(-0.1f, -0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.45f, -0.87f) - lineToRelative(0.03f, -0.1f) - lineToRelative(3.75f, -9.5f) - arcToRelative(0.73f, 0.73f, 0.0f, false, true, 0.45f, -0.43f) - arcToRelative(0.77f, 0.77f, 0.0f, false, true, 0.54f, 0.02f) - curveToRelative(0.14f, 0.06f, 0.27f, 0.16f, 0.35f, 0.3f) - lineToRelative(0.05f, 0.11f) - close() - moveTo(16.03f, 17.5f) - horizontalLineToRelative(2.93f) - lineToRelative(-1.46f, -3.7f) - lineToRelative(-1.47f, 3.7f) - close() - } - } - return _flashAuto!! - } - -private var _flashAuto: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlashCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlashCheckmark.kt deleted file mode 100644 index 8c76aa92..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlashCheckmark.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FlashCheckmark: ImageVector - get() { - if (_flashCheckmark != null) { - return _flashCheckmark!! - } - _flashCheckmark = fluentIcon(name = "Filled.FlashCheckmark") { - fluentPath { - moveTo(7.42f, 2.83f) - curveTo(7.6f, 2.33f, 8.07f, 2.0f, 8.6f, 2.0f) - horizontalLineToRelative(6.46f) - curveToRelative(0.85f, 0.0f, 1.45f, 0.84f, 1.18f, 1.65f) - lineTo(14.8f, 8.0f) - horizontalLineToRelative(3.96f) - curveToRelative(1.1f, 0.0f, 1.66f, 1.33f, 0.9f, 2.12f) - lineToRelative(-0.96f, 0.99f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -7.54f, 7.78f) - lineToRelative(-2.56f, 2.65f) - curveToRelative(-1.06f, 1.08f, -2.88f, 0.1f, -2.55f, -1.38f) - lineToRelative(1.27f, -5.66f) - lineToRelative(-1.57f, -0.01f) - curveToRelative(-1.2f, 0.0f, -2.04f, -1.2f, -1.64f, -2.34f) - lineToRelative(3.32f, -9.32f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(20.85f, 15.15f) - curveToRelative(0.2f, 0.2f, 0.2f, 0.5f, 0.0f, 0.7f) - lineToRelative(-4.0f, 4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.0f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, -0.7f) - lineToRelative(1.65f, 1.64f) - lineToRelative(3.65f, -3.64f) - curveToRelative(0.2f, -0.2f, 0.5f, -0.2f, 0.7f, 0.0f) - close() - } - } - return _flashCheckmark!! - } - -private var _flashCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlashFlow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlashFlow.kt deleted file mode 100644 index caf4ed7e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlashFlow.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FlashFlow: ImageVector - get() { - if (_flashFlow != null) { - return _flashFlow!! - } - _flashFlow = fluentIcon(name = "Filled.FlashFlow") { - fluentPath { - moveTo(7.43f, 2.83f) - lineTo(4.1f, 12.15f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 1.65f, 2.34f) - horizontalLineToRelative(1.57f) - lineToRelative(-1.27f, 5.67f) - curveToRelative(-0.33f, 1.48f, 1.48f, 2.46f, 2.54f, 1.38f) - lineToRelative(5.02f, -5.19f) - arcToRelative(85.15f, 85.15f, 0.0f, false, false, -0.55f, -2.12f) - arcToRelative(3.74f, 3.74f, 0.0f, false, true, -6.56f, -2.48f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 7.2f, -1.47f) - curveToRelative(0.42f, 0.06f, 0.87f, 0.22f, 1.29f, 0.51f) - curveToRelative(0.55f, 0.4f, 0.93f, 0.97f, 1.15f, 1.6f) - curveToRelative(0.1f, 0.27f, 0.21f, 0.63f, 0.32f, 1.01f) - lineToRelative(3.19f, -3.28f) - curveToRelative(0.77f, -0.8f, 0.2f, -2.12f, -0.9f, -2.12f) - horizontalLineToRelative(-3.96f) - lineToRelative(1.45f, -4.35f) - curveToRelative(0.27f, -0.81f, -0.33f, -1.65f, -1.18f, -1.65f) - lineTo(8.6f, 2.0f) - curveToRelative(-0.53f, 0.0f, -1.0f, 0.33f, -1.17f, 0.83f) - close() - moveTo(11.5f, 11.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) - close() - moveTo(12.81f, 12.75f) - arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.14f, -1.5f) - horizontalLineToRelative(0.3f) - curveToRelative(0.38f, 0.0f, 0.79f, 0.1f, 1.15f, 0.36f) - curveToRelative(0.37f, 0.26f, 0.64f, 0.64f, 0.8f, 1.13f) - curveToRelative(0.2f, 0.48f, 0.45f, 1.46f, 0.65f, 2.27f) - arcToRelative(89.58f, 89.58f, 0.0f, false, true, 0.35f, 1.44f) - lineToRelative(0.02f, 0.1f) - curveToRelative(0.08f, 0.22f, 0.18f, 0.32f, 0.25f, 0.37f) - curveToRelative(0.07f, 0.05f, 0.16f, 0.08f, 0.28f, 0.08f) - horizontalLineToRelative(0.76f) - arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.29f, 1.5f) - horizontalLineToRelative(-1.05f) - curveToRelative(-0.38f, 0.0f, -0.79f, -0.1f, -1.15f, -0.36f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.83f, -1.22f) - verticalLineToRelative(-0.03f) - lineToRelative(-0.03f, -0.1f) - arcToRelative(88.51f, 88.51f, 0.0f, false, false, -0.34f, -1.42f) - arcToRelative(22.53f, 22.53f, 0.0f, false, false, -0.61f, -2.13f) - curveToRelative(-0.09f, -0.26f, -0.19f, -0.36f, -0.26f, -0.41f) - arcToRelative(0.47f, 0.47f, 0.0f, false, false, -0.28f, -0.08f) - horizontalLineToRelative(-0.44f) - close() - moveTo(20.25f, 18.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - } - } - return _flashFlow!! - } - -private var _flashFlow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlashOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlashOff.kt deleted file mode 100644 index 08e134de..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlashOff.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FlashOff: ImageVector - get() { - if (_flashOff != null) { - return _flashOff!! - } - _flashOff = fluentIcon(name = "Filled.FlashOff") { - fluentPath { - moveToRelative(14.44f, 15.5f) - lineToRelative(6.28f, 6.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(5.94f, 7.0f) - lineTo(4.1f, 12.15f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 1.64f, 2.34f) - horizontalLineToRelative(1.57f) - lineToRelative(-1.27f, 5.67f) - curveToRelative(-0.33f, 1.48f, 1.5f, 2.46f, 2.55f, 1.38f) - lineToRelative(5.85f, -6.04f) - close() - moveTo(19.64f, 10.12f) - lineTo(16.52f, 13.34f) - lineTo(7.05f, 3.87f) - lineTo(7.42f, 2.83f) - curveTo(7.6f, 2.33f, 8.07f, 2.0f, 8.6f, 2.0f) - horizontalLineToRelative(6.46f) - curveToRelative(0.85f, 0.0f, 1.45f, 0.84f, 1.18f, 1.65f) - lineTo(14.8f, 8.0f) - horizontalLineToRelative(3.96f) - curveToRelative(1.1f, 0.0f, 1.66f, 1.33f, 0.9f, 2.12f) - close() - } - } - return _flashOff!! - } - -private var _flashOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlashSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlashSettings.kt deleted file mode 100644 index 744e9a7f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlashSettings.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FlashSettings: ImageVector - get() { - if (_flashSettings != null) { - return _flashSettings!! - } - _flashSettings = fluentIcon(name = "Filled.FlashSettings") { - fluentPath { - moveTo(7.42f, 2.83f) - curveTo(7.6f, 2.33f, 8.07f, 2.0f, 8.6f, 2.0f) - horizontalLineToRelative(6.46f) - curveToRelative(0.85f, 0.0f, 1.45f, 0.84f, 1.18f, 1.65f) - lineTo(14.8f, 8.0f) - horizontalLineToRelative(3.96f) - curveToRelative(1.1f, 0.0f, 1.66f, 1.33f, 0.9f, 2.12f) - lineToRelative(-0.96f, 0.99f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -7.54f, 7.78f) - lineToRelative(-2.56f, 2.65f) - curveToRelative(-1.06f, 1.08f, -2.88f, 0.1f, -2.55f, -1.38f) - lineToRelative(1.27f, -5.66f) - lineToRelative(-1.57f, -0.01f) - curveToRelative(-1.2f, 0.0f, -2.04f, -1.2f, -1.64f, -2.34f) - lineToRelative(3.32f, -9.32f) - close() - moveTo(14.28f, 13.98f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.59f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) - lineToRelative(0.55f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) - lineToRelative(-0.19f, 0.64f) - curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) - lineToRelative(0.49f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.9f) - lineToRelative(-0.2f, -0.7f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) - lineToRelative(0.59f, -0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, -0.01f, -1.8f) - lineToRelative(-0.54f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.19f, -0.63f) - curveToRelative(-0.44f, -0.39f, -0.94f, -0.7f, -1.49f, -0.93f) - lineToRelative(-0.49f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.91f) - lineToRelative(0.2f, 0.69f) - close() - moveTo(17.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) - close() - } - } - return _flashSettings!! - } - -private var _flashSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Flashlight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Flashlight.kt deleted file mode 100644 index 224d160c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Flashlight.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Flashlight: ImageVector - get() { - if (_flashlight != null) { - return _flashlight!! - } - _flashlight = fluentIcon(name = "Filled.Flashlight") { - fluentPath { - moveTo(16.75f, 1.25f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.0f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 16.0f, 3.0f) - lineTo(16.0f, 2.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(20.47f, 2.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(2.0f, -2.0f) - close() - moveTo(8.25f, 6.31f) - lineTo(8.25f, 9.2f) - lineToRelative(6.56f, 6.56f) - horizontalLineToRelative(2.88f) - lineTo(8.25f, 6.31f) - close() - moveTo(19.06f, 15.0f) - lineToRelative(1.4f, -1.4f) - curveToRelative(0.89f, -0.89f, 0.89f, -2.31f, 0.0f, -3.2f) - lineTo(13.6f, 3.54f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.18f, 0.0f) - lineTo(9.0f, 4.93f) - lineTo(19.06f, 15.0f) - close() - moveTo(13.0f, 16.06f) - lineTo(7.94f, 11.0f) - lineToRelative(-4.91f, 4.9f) - curveToRelative(-0.88f, 0.89f, -0.88f, 2.31f, 0.0f, 3.2f) - lineToRelative(1.88f, 1.87f) - curveToRelative(0.88f, 0.88f, 2.3f, 0.88f, 3.18f, 0.0f) - lineToRelative(4.91f, -4.9f) - close() - moveTo(9.53f, 14.47f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(1.5f, -1.5f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(22.0f, 8.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.0f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 22.0f, 8.0f) - close() - } - } - return _flashlight!! - } - -private var _flashlight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlashlightOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlashlightOff.kt deleted file mode 100644 index 5dbee928..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlashlightOff.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FlashlightOff: ImageVector - get() { - if (_flashlightOff != null) { - return _flashlightOff!! - } - _flashlightOff = fluentIcon(name = "Filled.FlashlightOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(18.5f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(19.06f, 15.0f) - lineToRelative(1.4f, -1.4f) - curveToRelative(0.89f, -0.89f, 0.89f, -2.31f, 0.0f, -3.2f) - lineTo(13.6f, 3.54f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.18f, 0.0f) - lineTo(9.0f, 4.93f) - lineTo(19.06f, 15.0f) - close() - moveTo(13.0f, 16.06f) - lineTo(7.94f, 11.0f) - lineToRelative(-4.91f, 4.9f) - curveToRelative(-0.88f, 0.89f, -0.88f, 2.31f, 0.0f, 3.2f) - lineToRelative(1.88f, 1.87f) - curveToRelative(0.88f, 0.88f, 2.3f, 0.88f, 3.18f, 0.0f) - lineToRelative(4.91f, -4.9f) - close() - moveTo(9.53f, 15.53f) - lineTo(8.03f, 17.03f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(1.5f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - close() - } - } - return _flashlightOff!! - } - -private var _flashlightOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlipHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlipHorizontal.kt deleted file mode 100644 index 32eac887..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlipHorizontal.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FlipHorizontal: ImageVector - get() { - if (_flipHorizontal != null) { - return _flipHorizontal!! - } - _flipHorizontal = fluentIcon(name = "Filled.FlipHorizontal") { - fluentPath { - moveTo(21.84f, 19.55f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 21.0f, 20.0f) - horizontalLineToRelative(-7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineTo(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.92f, -0.4f) - lineToRelative(7.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, 0.95f) - close() - moveTo(15.0f, 7.78f) - verticalLineTo(18.0f) - horizontalLineToRelative(4.47f) - lineTo(15.0f, 7.78f) - close() - moveTo(2.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.45f, -0.71f) - lineToRelative(8.0f, -17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.95f, 0.21f) - verticalLineToRelative(17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-8.0f) - close() - } - } - return _flipHorizontal!! - } - -private var _flipHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlipVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlipVertical.kt deleted file mode 100644 index 93d80c4f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlipVertical.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FlipVertical: ImageVector - get() { - if (_flipVertical != null) { - return _flipVertical!! - } - _flipVertical = fluentIcon(name = "Filled.FlipVertical") { - fluentPath { - moveTo(19.55f, 2.16f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 20.0f, 3.0f) - verticalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineTo(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.4f, -1.92f) - lineToRelative(16.0f, -7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.95f, 0.08f) - close() - moveTo(7.78f, 9.0f) - horizontalLineTo(18.0f) - verticalLineTo(4.53f) - lineTo(7.78f, 9.0f) - close() - moveTo(20.0f, 21.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.71f, 0.45f) - lineToRelative(-17.0f, -8.0f) - arcTo(0.5f, 0.5f, 0.0f, false, true, 2.5f, 13.0f) - horizontalLineToRelative(17.0f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - verticalLineToRelative(8.0f) - close() - } - } - return _flipVertical!! - } - -private var _flipVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Flowchart.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Flowchart.kt deleted file mode 100644 index 073b2db8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Flowchart.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Flowchart: ImageVector - get() { - if (_flowchart != null) { - return _flowchart!! - } - _flowchart = fluentIcon(name = "Filled.Flowchart") { - fluentPath { - moveTo(3.0f, 5.25f) - curveTo(3.0f, 4.0f, 4.0f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(2.5f) - curveTo(9.0f, 3.0f, 10.0f, 4.0f, 10.0f, 5.25f) - verticalLineToRelative(2.5f) - curveTo(10.0f, 9.0f, 9.0f, 10.0f, 7.75f, 10.0f) - horizontalLineToRelative(-0.5f) - verticalLineToRelative(3.71f) - curveToRelative(0.05f, 0.03f, 0.1f, 0.07f, 0.13f, 0.12f) - lineToRelative(2.8f, 2.79f) - lineToRelative(0.11f, 0.13f) - horizontalLineTo(14.0f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -1.24f, 1.01f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(2.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(2.5f) - curveTo(21.0f, 20.0f, 20.0f, 21.0f, 18.75f, 21.0f) - horizontalLineToRelative(-2.5f) - curveTo(15.01f, 21.0f, 14.0f, 20.0f, 14.0f, 18.75f) - verticalLineToRelative(-0.5f) - horizontalLineTo(10.3f) - curveToRelative(-0.03f, 0.05f, -0.07f, 0.1f, -0.12f, 0.13f) - lineToRelative(-2.79f, 2.8f) - curveToRelative(-0.48f, 0.48f, -1.28f, 0.48f, -1.76f, 0.0f) - lineToRelative(-2.8f, -2.8f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -1.76f) - lineToRelative(2.8f, -2.8f) - lineToRelative(0.13f, -0.11f) - verticalLineTo(10.0f) - horizontalLineToRelative(-0.5f) - curveTo(4.0f, 10.0f, 3.0f, 9.0f, 3.0f, 7.74f) - verticalLineToRelative(-2.5f) - close() - } - } - return _flowchart!! - } - -private var _flowchart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlowchartCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlowchartCircle.kt deleted file mode 100644 index 003e4b73..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlowchartCircle.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FlowchartCircle: ImageVector - get() { - if (_flowchartCircle != null) { - return _flowchartCircle!! - } - _flowchartCircle = fluentIcon(name = "Filled.FlowchartCircle") { - fluentPath { - moveTo(2.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) - close() - moveTo(6.5f, 7.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(0.5f) - verticalLineToRelative(2.69f) - lineToRelative(-1.78f, 1.78f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(1.78f, -1.78f) - horizontalLineToRelative(2.69f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.5f) - horizontalLineToRelative(-2.69f) - lineToRelative(-1.56f, -1.56f) - lineTo(9.25f, 10.5f) - horizontalLineToRelative(0.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - } - } - return _flowchartCircle!! - } - -private var _flowchartCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fluent.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fluent.kt deleted file mode 100644 index 347ab786..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fluent.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Fluent: ImageVector - get() { - if (_fluent != null) { - return _fluent!! - } - _fluent = fluentIcon(name = "Filled.Fluent") { - fluentPath { - moveTo(12.41f, 2.5f) - horizontalLineToRelative(0.13f) - lineToRelative(0.11f, 0.02f) - lineToRelative(0.07f, 0.03f) - lineToRelative(6.0f, 3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 0.9f) - lineTo(13.62f, 9.0f) - lineToRelative(5.1f, 2.55f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 0.9f) - lineToRelative(-5.76f, 2.84f) - lineToRelative(0.04f, 5.7f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.75f, 0.44f) - lineToRelative(-6.0f, -3.5f) - arcTo(0.5f, 0.5f, 0.0f, false, true, 6.0f, 17.5f) - verticalLineTo(5.96f) - lineToRelative(0.02f, -0.1f) - lineToRelative(0.02f, -0.06f) - lineToRelative(0.01f, -0.03f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.06f, -0.09f) - lineToRelative(0.07f, -0.06f) - lineToRelative(0.07f, -0.05f) - lineToRelative(6.08f, -3.04f) - lineToRelative(0.08f, -0.02f) - close() - } - } - return _fluent!! - } - -private var _fluent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fluid.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fluid.kt deleted file mode 100644 index 1f6434d9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fluid.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Fluid: ImageVector - get() { - if (_fluid != null) { - return _fluid!! - } - _fluid = fluentIcon(name = "Filled.Fluid") { - fluentPath { - moveTo(11.0f, 5.0f) - horizontalLineToRelative(5.75f) - curveTo(17.98f, 5.0f, 19.0f, 6.0f, 19.0f, 7.25f) - lineTo(19.0f, 11.0f) - horizontalLineToRelative(-1.5f) - lineTo(17.5f, 7.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(11.0f, 6.5f) - lineTo(11.0f, 5.0f) - close() - moveTo(6.5f, 11.0f) - verticalLineToRelative(5.75f) - curveToRelative(0.0f, 0.4f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(11.0f, 17.5f) - lineTo(11.0f, 19.0f) - lineTo(7.25f, 19.0f) - curveTo(6.01f, 19.0f, 5.0f, 17.98f, 5.0f, 16.75f) - lineTo(5.0f, 11.0f) - horizontalLineToRelative(1.5f) - close() - moveTo(2.0f, 4.25f) - curveTo(2.0f, 3.01f, 3.0f, 2.0f, 4.25f, 2.0f) - horizontalLineToRelative(3.5f) - curveTo(8.99f, 2.0f, 10.0f, 3.0f, 10.0f, 4.25f) - verticalLineToRelative(3.5f) - curveTo(10.0f, 8.99f, 9.0f, 10.0f, 7.75f, 10.0f) - horizontalLineToRelative(-3.5f) - curveTo(3.01f, 10.0f, 2.0f, 9.0f, 2.0f, 7.75f) - verticalLineToRelative(-3.5f) - close() - moveTo(12.0f, 14.25f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(5.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(5.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-5.5f) - curveTo(13.01f, 22.0f, 12.0f, 21.0f, 12.0f, 19.75f) - verticalLineToRelative(-5.5f) - close() - } - } - return _fluid!! - } - -private var _fluid: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderAdd.kt deleted file mode 100644 index 49105277..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderAdd.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FolderAdd: ImageVector - get() { - if (_folderAdd != null) { - return _folderAdd!! - } - _folderAdd = fluentIcon(name = "Filled.FolderAdd") { - fluentPath { - moveTo(17.5f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(17.5f, 13.0f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) - lineToRelative(-0.01f, 0.1f) - lineTo(17.0f, 16.0f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(0.18f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) - lineToRelative(0.1f, 0.01f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(2.6f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - horizontalLineToRelative(0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) - lineToRelative(0.01f, -0.1f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - verticalLineToRelative(-0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) - lineToRelative(-0.1f, -0.01f) - lineTo(18.0f, 16.0f) - verticalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) - horizontalLineToRelative(-0.09f) - close() - moveTo(19.75f, 6.5f) - curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) - lineToRelative(0.01f, 0.16f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(3.06f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -9.98f, 8.2f) - lineTo(4.25f, 20.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(2.0f, 17.75f) - lineTo(2.0f, 10.5f) - horizontalLineToRelative(6.4f) - curveToRelative(0.4f, -0.04f, 0.77f, -0.18f, 1.1f, -0.4f) - lineToRelative(0.15f, -0.12f) - lineToRelative(4.17f, -3.48f) - horizontalLineToRelative(5.93f) - close() - moveTo(8.21f, 4.0f) - curveToRelative(0.46f, 0.0f, 0.9f, 0.14f, 1.28f, 0.4f) - lineToRelative(0.16f, 0.12f) - lineToRelative(2.1f, 1.75f) - lineToRelative(-3.06f, 2.56f) - lineToRelative(-0.09f, 0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.29f, 0.1f) - lineToRelative(-0.1f, 0.01f) - lineTo(2.0f, 9.0f) - lineTo(2.0f, 6.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 4.0f) - horizontalLineToRelative(3.96f) - close() - } - } - return _folderAdd!! - } - -private var _folderAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderArrowLeft.kt deleted file mode 100644 index 8d677407..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderArrowLeft.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FolderArrowLeft: ImageVector - get() { - if (_folderArrowLeft != null) { - return _folderArrowLeft!! - } - _folderArrowLeft = fluentIcon(name = "Filled.FolderArrowLeft") { - fluentPath { - moveTo(21.98f, 8.44f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.23f, -1.94f) - horizontalLineToRelative(-5.93f) - lineTo(9.65f, 9.98f) - lineToRelative(-0.16f, 0.12f) - curveToRelative(-0.32f, 0.22f, -0.7f, 0.36f, -1.09f, 0.4f) - lineTo(2.0f, 10.5f) - verticalLineToRelative(7.4f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 20.0f) - horizontalLineToRelative(7.77f) - arcTo(6.5f, 6.5f, 0.0f, false, true, 22.0f, 11.8f) - lineTo(22.0f, 8.61f) - lineToRelative(-0.02f, -0.16f) - close() - moveTo(9.49f, 4.4f) - curveToRelative(-0.37f, -0.26f, -0.82f, -0.4f, -1.28f, -0.4f) - lineTo(4.1f, 4.0f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 6.26f) - lineTo(2.0f, 9.0f) - lineTo(8.31f, 9.0f) - curveToRelative(0.1f, -0.02f, 0.2f, -0.06f, 0.3f, -0.11f) - lineToRelative(0.08f, -0.06f) - lineToRelative(3.06f, -2.56f) - lineToRelative(-2.1f, -1.75f) - lineToRelative(-0.16f, -0.12f) - close() - moveTo(17.5f, 22.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, 11.0f) - close() - moveTo(20.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - horizontalLineToRelative(-4.8f) - lineToRelative(1.65f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineTo(15.71f, 17.0f) - horizontalLineToRelative(4.79f) - close() - } - } - return _folderArrowLeft!! - } - -private var _folderArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderArrowRight.kt deleted file mode 100644 index 5c1c2ab9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderArrowRight.kt +++ /dev/null @@ -1,88 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FolderArrowRight: ImageVector - get() { - if (_folderArrowRight != null) { - return _folderArrowRight!! - } - _folderArrowRight = fluentIcon(name = "Filled.FolderArrowRight") { - fluentPath { - moveTo(17.5f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(19.75f, 6.5f) - curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) - lineToRelative(0.01f, 0.16f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(3.06f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -9.98f, 8.2f) - lineTo(4.25f, 20.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(2.0f, 17.75f) - lineTo(2.0f, 10.5f) - horizontalLineToRelative(6.4f) - curveToRelative(0.4f, -0.04f, 0.77f, -0.18f, 1.1f, -0.4f) - lineToRelative(0.15f, -0.12f) - lineToRelative(4.17f, -3.48f) - horizontalLineToRelative(5.93f) - close() - moveTo(17.79f, 13.55f) - lineTo(17.72f, 13.59f) - lineTo(17.65f, 13.65f) - lineTo(17.59f, 13.72f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) - lineToRelative(0.06f, 0.07f) - lineTo(19.29f, 16.0f) - horizontalLineToRelative(-5.38f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - lineToRelative(-0.01f, 0.09f) - verticalLineToRelative(0.09f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - lineTo(14.0f, 17.0f) - horizontalLineToRelative(5.3f) - lineToRelative(-1.65f, 1.65f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(0.06f, -0.07f) - lineToRelative(2.53f, -2.53f) - lineToRelative(0.05f, -0.06f) - lineToRelative(0.03f, -0.07f) - lineToRelative(0.02f, -0.06f) - lineToRelative(0.02f, -0.08f) - verticalLineToRelative(-0.1f) - lineToRelative(-0.02f, -0.08f) - lineToRelative(-0.03f, -0.08f) - lineToRelative(-0.04f, -0.07f) - lineToRelative(-0.04f, -0.06f) - lineToRelative(-2.52f, -2.51f) - lineToRelative(-0.07f, -0.06f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.49f, -0.04f) - close() - moveTo(8.21f, 4.0f) - curveToRelative(0.46f, 0.0f, 0.9f, 0.14f, 1.28f, 0.4f) - lineToRelative(0.16f, 0.12f) - lineToRelative(2.1f, 1.75f) - lineToRelative(-3.06f, 2.56f) - lineToRelative(-0.09f, 0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.29f, 0.1f) - lineToRelative(-0.1f, 0.01f) - lineTo(2.0f, 9.0f) - lineTo(2.0f, 6.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 4.0f) - horizontalLineToRelative(3.96f) - close() - } - } - return _folderArrowRight!! - } - -private var _folderArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderArrowUp.kt deleted file mode 100644 index c5030b0d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderArrowUp.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FolderArrowUp: ImageVector - get() { - if (_folderArrowUp != null) { - return _folderArrowUp!! - } - _folderArrowUp = fluentIcon(name = "Filled.FolderArrowUp") { - fluentPath { - moveTo(19.75f, 6.5f) - curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) - lineToRelative(0.01f, 0.16f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(3.06f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -9.98f, 8.2f) - lineTo(4.25f, 20.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(2.0f, 17.75f) - lineTo(2.0f, 10.5f) - horizontalLineToRelative(6.4f) - curveToRelative(0.4f, -0.04f, 0.77f, -0.18f, 1.1f, -0.4f) - lineToRelative(0.15f, -0.12f) - lineToRelative(4.17f, -3.48f) - horizontalLineToRelative(5.93f) - close() - moveTo(8.21f, 4.0f) - curveToRelative(0.46f, 0.0f, 0.9f, 0.14f, 1.28f, 0.4f) - lineToRelative(0.16f, 0.12f) - lineToRelative(2.1f, 1.75f) - lineToRelative(-3.06f, 2.56f) - lineToRelative(-0.09f, 0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.29f, 0.1f) - lineToRelative(-0.1f, 0.01f) - lineTo(2.0f, 9.0f) - lineTo(2.0f, 6.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 4.0f) - horizontalLineToRelative(3.96f) - close() - moveTo(23.0f, 16.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(17.0f, 14.7f) - verticalLineToRelative(4.8f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-4.8f) - lineToRelative(1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineTo(17.0f, 14.71f) - close() - } - } - return _folderArrowUp!! - } - -private var _folderArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderLink.kt deleted file mode 100644 index 29670636..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderLink.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FolderLink: ImageVector - get() { - if (_folderLink != null) { - return _folderLink!! - } - _folderLink = fluentIcon(name = "Filled.FolderLink") { - fluentPath { - moveTo(18.25f, 14.5f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 0.2f, 7.5f) - horizontalLineToRelative(-1.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - horizontalLineToRelative(0.1f) - lineToRelative(1.0f, -0.01f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.15f, -4.5f) - horizontalLineToRelative(-1.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(1.1f) - close() - moveTo(13.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-1.1f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.15f, 4.5f) - horizontalLineToRelative(1.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-1.1f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.2f, -7.5f) - horizontalLineToRelative(1.2f) - close() - moveTo(19.75f, 6.5f) - curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) - lineToRelative(0.01f, 0.16f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(6.59f) - arcToRelative(4.74f, 4.74f, 0.0f, false, false, -3.75f, -1.84f) - horizontalLineToRelative(-5.5f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 8.33f, 20.0f) - lineTo(4.25f, 20.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(2.0f, 17.75f) - lineTo(2.0f, 10.5f) - horizontalLineToRelative(6.4f) - curveToRelative(0.4f, -0.04f, 0.77f, -0.18f, 1.1f, -0.4f) - lineToRelative(0.15f, -0.12f) - lineToRelative(4.17f, -3.48f) - horizontalLineToRelative(5.93f) - close() - moveTo(18.25f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-5.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(5.6f) - close() - moveTo(8.21f, 4.0f) - curveToRelative(0.46f, 0.0f, 0.9f, 0.14f, 1.28f, 0.4f) - lineToRelative(0.16f, 0.12f) - lineToRelative(2.1f, 1.75f) - lineToRelative(-3.06f, 2.56f) - lineToRelative(-0.09f, 0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.29f, 0.1f) - lineToRelative(-0.1f, 0.01f) - lineTo(2.0f, 9.0f) - lineTo(2.0f, 6.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 4.0f) - horizontalLineToRelative(3.96f) - close() - } - } - return _folderLink!! - } - -private var _folderLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderMail.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderMail.kt deleted file mode 100644 index 93d65f8a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderMail.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FolderMail: ImageVector - get() { - if (_folderMail != null) { - return _folderMail!! - } - _folderMail = fluentIcon(name = "Filled.FolderMail") { - fluentPath { - moveTo(19.75f, 6.5f) - horizontalLineToRelative(-5.93f) - lineTo(9.65f, 9.98f) - lineToRelative(-0.16f, 0.12f) - curveToRelative(-0.32f, 0.22f, -0.7f, 0.36f, -1.09f, 0.4f) - lineTo(2.0f, 10.5f) - verticalLineToRelative(7.4f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 20.0f) - lineTo(11.0f, 20.0f) - verticalLineToRelative(-4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 1.0f, 0.17f) - lineTo(22.0f, 8.6f) - lineToRelative(-0.02f, -0.16f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.23f, -1.94f) - close() - moveTo(9.49f, 4.4f) - curveToRelative(-0.37f, -0.26f, -0.82f, -0.4f, -1.28f, -0.4f) - lineTo(4.1f, 4.0f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 6.26f) - lineTo(2.0f, 9.0f) - lineTo(8.31f, 9.0f) - curveToRelative(0.1f, -0.02f, 0.2f, -0.06f, 0.3f, -0.11f) - lineToRelative(0.08f, -0.06f) - lineToRelative(3.06f, -2.56f) - lineToRelative(-2.1f, -1.75f) - lineToRelative(-0.16f, -0.12f) - close() - moveTo(17.51f, 18.93f) - lineTo(12.01f, 15.73f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 14.0f, 14.0f) - horizontalLineToRelative(7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 1.97f) - lineToRelative(-5.49f, 2.96f) - close() - moveTo(17.74f, 19.94f) - lineTo(23.0f, 17.11f) - lineTo(23.0f, 21.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - verticalLineToRelative(-4.13f) - lineToRelative(5.25f, 3.06f) - curveToRelative(0.15f, 0.09f, 0.33f, 0.1f, 0.49f, 0.01f) - close() - } - } - return _folderMail!! - } - -private var _folderMail: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderOpen.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderOpen.kt deleted file mode 100644 index ba7be4be..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderOpen.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FolderOpen: ImageVector - get() { - if (_folderOpen != null) { - return _folderOpen!! - } - _folderOpen = fluentIcon(name = "Filled.FolderOpen") { - fluentPath { - moveTo(2.0f, 6.25f) - curveTo(2.0f, 5.0f, 3.0f, 4.0f, 4.25f, 4.0f) - horizontalLineToRelative(3.96f) - curveToRelative(0.52f, 0.0f, 1.03f, 0.18f, 1.43f, 0.52f) - lineToRelative(2.39f, 1.98f) - horizontalLineToRelative(5.72f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(0.75f) - lineTo(6.42f, 9.5f) - curveToRelative(-1.03f, 0.0f, -1.93f, 0.7f, -2.18f, 1.7f) - lineToRelative(-1.92f, 7.7f) - curveToRelative(0.04f, -0.16f, 0.0f, 0.01f, 0.0f, 0.0f) - curveToRelative(-0.2f, -0.33f, -0.32f, -0.73f, -0.32f, -1.15f) - lineTo(2.0f, 6.25f) - close() - moveTo(3.74f, 19.38f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.49f, 0.62f) - horizontalLineToRelative(14.24f) - curveToRelative(0.8f, 0.0f, 1.5f, -0.55f, 1.7f, -1.33f) - lineToRelative(1.76f, -7.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.48f, -0.62f) - lineTo(6.42f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.73f, 0.57f) - lineToRelative(-1.95f, 7.8f) - close() - } - } - return _folderOpen!! - } - -private var _folderOpen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderPeople.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderPeople.kt deleted file mode 100644 index d7be40d0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderPeople.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FolderPeople: ImageVector - get() { - if (_folderPeople != null) { - return _folderPeople!! - } - _folderPeople = fluentIcon(name = "Filled.FolderPeople") { - fluentPath { - moveTo(13.82f, 6.5f) - horizontalLineToRelative(5.93f) - curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) - lineToRelative(0.01f, 0.16f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(4.55f) - arcToRelative(2.74f, 2.74f, 0.0f, false, false, -3.15f, 0.46f) - arcToRelative(3.25f, 3.25f, 0.0f, true, false, -5.43f, 3.26f) - curveToRelative(-1.43f, 0.15f, -2.42f, 1.45f, -2.42f, 2.86f) - lineTo(11.0f, 20.0f) - lineTo(4.25f, 20.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(2.0f, 17.75f) - lineTo(2.0f, 10.5f) - horizontalLineToRelative(6.4f) - curveToRelative(0.4f, -0.04f, 0.77f, -0.18f, 1.1f, -0.4f) - lineToRelative(0.15f, -0.12f) - lineToRelative(4.17f, -3.48f) - close() - moveTo(8.21f, 4.0f) - curveToRelative(0.46f, 0.0f, 0.9f, 0.14f, 1.28f, 0.4f) - lineToRelative(0.16f, 0.12f) - lineToRelative(2.1f, 1.75f) - lineToRelative(-3.06f, 2.56f) - lineToRelative(-0.09f, 0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.29f, 0.1f) - lineToRelative(-0.1f, 0.01f) - lineTo(2.0f, 9.0f) - lineTo(2.0f, 6.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 4.0f) - horizontalLineToRelative(3.96f) - close() - moveTo(15.75f, 17.0f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, -4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) - close() - moveTo(15.75f, 23.0f) - curveToRelative(2.68f, 0.0f, 3.75f, -1.57f, 3.75f, -3.13f) - curveToRelative(0.0f, -1.03f, -0.72f, -1.87f, -1.6f, -1.87f) - horizontalLineToRelative(-4.3f) - curveToRelative(-0.88f, 0.0f, -1.6f, 0.84f, -1.6f, 1.88f) - curveToRelative(0.0f, 1.56f, 1.07f, 3.12f, 3.75f, 3.12f) - close() - moveTo(22.5f, 15.75f) - arcToRelative(1.75f, 1.75f, 0.0f, true, true, -3.5f, 0.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 3.5f, 0.0f) - close() - moveTo(19.92f, 22.0f) - curveToRelative(0.4f, -0.66f, 0.58f, -1.4f, 0.58f, -2.13f) - curveToRelative(0.0f, -0.47f, -0.11f, -0.95f, -0.32f, -1.37f) - horizontalLineToRelative(1.54f) - curveToRelative(0.7f, 0.0f, 1.28f, 0.59f, 1.28f, 1.31f) - curveToRelative(0.0f, 1.1f, -0.85f, 2.19f, -3.0f, 2.19f) - horizontalLineToRelative(-0.08f) - close() - } - } - return _folderPeople!! - } - -private var _folderPeople: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderProhibited.kt deleted file mode 100644 index 075b7f26..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderProhibited.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FolderProhibited: ImageVector - get() { - if (_folderProhibited != null) { - return _folderProhibited!! - } - _folderProhibited = fluentIcon(name = "Filled.FolderProhibited") { - fluentPath { - moveTo(17.5f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(20.8f, 14.25f) - lineTo(15.25f, 19.81f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 5.56f, -5.56f) - close() - moveTo(19.76f, 6.5f) - curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) - lineToRelative(0.01f, 0.16f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(3.06f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -9.98f, 8.2f) - lineTo(4.25f, 20.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(2.0f, 17.75f) - lineTo(2.0f, 10.5f) - horizontalLineToRelative(6.4f) - curveToRelative(0.4f, -0.04f, 0.77f, -0.18f, 1.1f, -0.4f) - lineToRelative(0.15f, -0.12f) - lineToRelative(4.17f, -3.48f) - horizontalLineToRelative(5.93f) - close() - moveTo(17.51f, 12.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -3.3f, 6.25f) - lineToRelative(5.55f, -5.56f) - arcToRelative(3.98f, 3.98f, 0.0f, false, false, -2.25f, -0.69f) - close() - moveTo(8.2f, 4.0f) - curveToRelative(0.47f, 0.0f, 0.92f, 0.14f, 1.3f, 0.4f) - lineToRelative(0.15f, 0.12f) - lineToRelative(2.1f, 1.75f) - lineToRelative(-3.06f, 2.56f) - lineToRelative(-0.09f, 0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.29f, 0.1f) - lineToRelative(-0.1f, 0.01f) - lineTo(2.0f, 9.0f) - lineTo(2.0f, 6.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 4.0f) - horizontalLineToRelative(3.96f) - close() - } - } - return _folderProhibited!! - } - -private var _folderProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderSwap.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderSwap.kt deleted file mode 100644 index e5ea5322..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderSwap.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FolderSwap: ImageVector - get() { - if (_folderSwap != null) { - return _folderSwap!! - } - _folderSwap = fluentIcon(name = "Filled.FolderSwap") { - fluentPath { - moveTo(13.82f, 6.5f) - horizontalLineToRelative(5.93f) - curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) - lineToRelative(0.01f, 0.16f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(8.28f) - lineToRelative(-2.01f, -2.01f) - arcTo(1.75f, 1.75f, 0.0f, false, false, 17.17f, 17.0f) - horizontalLineToRelative(-2.33f) - arcTo(1.75f, 1.75f, 0.0f, false, false, 12.0f, 15.02f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, 2.48f) - lineTo(4.26f, 20.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(2.0f, 17.75f) - lineTo(2.0f, 10.5f) - horizontalLineToRelative(6.4f) - curveToRelative(0.4f, -0.04f, 0.77f, -0.18f, 1.1f, -0.4f) - lineToRelative(0.15f, -0.12f) - lineToRelative(4.17f, -3.48f) - close() - moveTo(8.21f, 4.0f) - curveToRelative(0.46f, 0.0f, 0.9f, 0.14f, 1.28f, 0.4f) - lineToRelative(0.16f, 0.12f) - lineToRelative(2.1f, 1.75f) - lineToRelative(-3.06f, 2.56f) - lineToRelative(-0.09f, 0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.29f, 0.1f) - lineToRelative(-0.1f, 0.01f) - lineTo(2.0f, 9.0f) - lineTo(2.0f, 6.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 4.0f) - horizontalLineToRelative(3.96f) - close() - moveTo(13.78f, 16.79f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.06f) - lineToRelative(2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.07f) - lineToRelative(-1.22f, -1.22f) - horizontalLineToRelative(6.88f) - lineToRelative(-1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.06f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineTo(19.44f, 18.0f) - horizontalLineToRelative(-6.87f) - lineToRelative(1.21f, -1.21f) - close() - } - } - return _folderSwap!! - } - -private var _folderSwap: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderSync.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderSync.kt deleted file mode 100644 index 639ab85d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderSync.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FolderSync: ImageVector - get() { - if (_folderSync != null) { - return _folderSync!! - } - _folderSync = fluentIcon(name = "Filled.FolderSync") { - fluentPath { - moveTo(13.82f, 6.5f) - horizontalLineToRelative(5.93f) - curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) - lineToRelative(0.01f, 0.16f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(3.06f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 20.0f) - lineTo(4.25f, 20.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(2.0f, 17.75f) - lineTo(2.0f, 10.5f) - horizontalLineToRelative(6.4f) - curveToRelative(0.4f, -0.04f, 0.77f, -0.18f, 1.1f, -0.4f) - lineToRelative(0.15f, -0.12f) - lineToRelative(4.17f, -3.48f) - close() - moveTo(8.21f, 4.0f) - curveToRelative(0.46f, 0.0f, 0.9f, 0.14f, 1.28f, 0.4f) - lineToRelative(0.16f, 0.12f) - lineToRelative(2.1f, 1.75f) - lineToRelative(-3.06f, 2.56f) - lineToRelative(-0.09f, 0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.29f, 0.1f) - lineToRelative(-0.1f, 0.01f) - lineTo(2.0f, 9.0f) - lineTo(2.0f, 6.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 4.0f) - horizontalLineToRelative(3.96f) - close() - moveTo(12.0f, 16.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) - close() - moveTo(20.5f, 13.0f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - verticalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.8f, -0.59f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) - verticalLineToRelative(-0.55f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - close() - moveTo(15.0f, 18.95f) - verticalLineToRelative(0.55f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.77f, 0.65f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) - close() - } - } - return _folderSync!! - } - -private var _folderSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderZip.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderZip.kt deleted file mode 100644 index d38ad622..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FolderZip.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FolderZip: ImageVector - get() { - if (_folderZip != null) { - return _folderZip!! - } - _folderZip = fluentIcon(name = "Filled.FolderZip") { - fluentPath { - moveTo(14.0f, 6.5f) - horizontalLineToRelative(-0.18f) - lineTo(9.65f, 9.98f) - lineToRelative(-0.16f, 0.12f) - curveToRelative(-0.32f, 0.22f, -0.7f, 0.36f, -1.09f, 0.4f) - lineTo(2.0f, 10.5f) - verticalLineToRelative(7.4f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 20.0f) - lineTo(15.5f, 20.0f) - verticalLineToRelative(-3.5f) - horizontalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.25f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.25f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(14.0f, 6.5f) - close() - moveTo(15.5f, 6.5f) - lineTo(17.0f, 6.5f) - verticalLineToRelative(2.75f) - horizontalLineToRelative(-1.5f) - lineTo(15.5f, 6.5f) - close() - moveTo(18.5f, 6.5f) - horizontalLineToRelative(1.25f) - curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) - lineToRelative(0.01f, 0.16f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - lineTo(17.0f, 20.0f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(17.0f, 16.5f) - lineTo(17.0f, 15.0f) - horizontalLineToRelative(0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(17.0f, 13.5f) - lineTo(17.0f, 11.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(18.5f, 6.5f) - close() - moveTo(9.5f, 4.4f) - curveToRelative(-0.38f, -0.26f, -0.83f, -0.4f, -1.3f, -0.4f) - lineTo(4.1f, 4.0f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 6.26f) - lineTo(2.0f, 9.0f) - lineTo(8.31f, 9.0f) - curveToRelative(0.1f, -0.02f, 0.2f, -0.06f, 0.3f, -0.11f) - lineToRelative(0.08f, -0.06f) - lineToRelative(3.06f, -2.56f) - lineToRelative(-2.1f, -1.75f) - lineToRelative(-0.16f, -0.12f) - close() - } - } - return _folderZip!! - } - -private var _folderZip: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FontDecrease.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FontDecrease.kt deleted file mode 100644 index f331f3f8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FontDecrease.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FontDecrease: ImageVector - get() { - if (_fontDecrease != null) { - return _fontDecrease!! - } - _fontDecrease = fluentIcon(name = "Filled.FontDecrease") { - fluentPath { - moveTo(16.62f, 2.22f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.24f, 1.56f) - lineToRelative(2.5f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.24f, 0.0f) - lineToRelative(2.5f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.24f, -1.56f) - lineToRelative(-1.88f, 1.5f) - lineToRelative(-1.88f, -1.5f) - close() - moveTo(12.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.92f, 0.6f) - lineToRelative(6.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.84f, 0.8f) - lineTo(15.2f, 15.0f) - lineTo(8.8f, 15.0f) - lineToRelative(-1.88f, 4.4f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.84f, -0.8f) - lineToRelative(6.0f, -14.0f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 12.0f, 4.0f) - close() - moveTo(12.0f, 7.54f) - lineTo(9.66f, 13.0f) - horizontalLineToRelative(4.68f) - lineTo(12.0f, 7.54f) - close() - } - } - return _fontDecrease!! - } - -private var _fontDecrease: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FontIncrease.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FontIncrease.kt deleted file mode 100644 index 49743eeb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FontIncrease.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FontIncrease: ImageVector - get() { - if (_fontIncrease != null) { - return _fontIncrease!! - } - _fontIncrease = fluentIcon(name = "Filled.FontIncrease") { - fluentPath { - moveTo(16.62f, 5.78f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.24f, -1.56f) - lineToRelative(2.5f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.24f, 0.0f) - lineToRelative(2.5f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.24f, 1.56f) - lineToRelative(-1.88f, -1.5f) - lineToRelative(-1.88f, 1.5f) - close() - moveTo(12.92f, 4.61f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.84f, 0.0f) - lineToRelative(-6.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.84f, 0.78f) - lineTo(8.8f, 15.0f) - horizontalLineToRelative(6.4f) - lineToRelative(1.88f, 4.4f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.84f, -0.8f) - lineToRelative(-6.0f, -14.0f) - close() - moveTo(12.0f, 7.54f) - lineTo(14.34f, 13.0f) - lineTo(9.66f, 13.0f) - lineTo(12.0f, 7.54f) - close() - } - } - return _fontIncrease!! - } - -private var _fontIncrease: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FontSpaceTrackingIn.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FontSpaceTrackingIn.kt deleted file mode 100644 index 7880a4fc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FontSpaceTrackingIn.kt +++ /dev/null @@ -1,99 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FontSpaceTrackingIn: ImageVector - get() { - if (_fontSpaceTrackingIn != null) { - return _fontSpaceTrackingIn!! - } - _fontSpaceTrackingIn = fluentIcon(name = "Filled.FontSpaceTrackingIn") { - fluentPath { - moveToRelative(8.61f, 16.21f) - lineToRelative(0.1f, 0.08f) - lineToRelative(2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.32f) - lineToRelative(-0.08f, 0.1f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.5f, -1.32f) - lineToRelative(0.08f, -0.1f) - lineToRelative(0.3f, -0.3f) - lineTo(4.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - horizontalLineToRelative(3.7f) - lineToRelative(-0.29f, -0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.31f) - lineToRelative(0.08f, -0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) - close() - moveTo(15.39f, 16.21f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.22f, 0.0f) - lineToRelative(0.1f, 0.08f) - lineToRelative(0.08f, 0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.22f) - lineToRelative(-0.08f, 0.1f) - lineToRelative(-0.3f, 0.29f) - lineTo(20.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(16.4f, 20.0f) - lineToRelative(0.3f, 0.3f) - lineToRelative(0.08f, 0.09f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 1.4f) - lineToRelative(-0.1f, -0.08f) - lineToRelative(-2.0f, -2.0f) - lineToRelative(-0.08f, -0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.22f) - lineToRelative(0.08f, -0.1f) - lineToRelative(2.0f, -2.0f) - lineToRelative(0.1f, -0.08f) - close() - moveTo(9.12f, 2.45f) - lineToRelative(0.06f, 0.1f) - lineToRelative(0.06f, 0.12f) - lineToRelative(4.3f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.81f, 0.83f) - lineToRelative(-0.05f, -0.1f) - lineToRelative(-1.11f, -2.85f) - lineTo(6.04f, 11.55f) - lineToRelative(-1.1f, 2.84f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.2f, 0.6f) - lineToRelative(-0.1f, -0.03f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.6f, -1.18f) - lineToRelative(0.03f, -0.11f) - lineToRelative(4.3f, -11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.75f, -0.22f) - close() - moveTo(19.14f, 2.53f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.85f, 0.72f) - lineToRelative(-0.04f, 0.11f) - lineToRelative(-4.3f, 11.0f) - lineToRelative(-0.05f, 0.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.76f, 0.0f) - lineToRelative(-0.05f, -0.12f) - lineToRelative(-4.3f, -11.0f) - lineToRelative(-0.04f, -0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.5f, -1.14f) - lineToRelative(0.1f, -0.05f) - lineToRelative(0.11f, -0.04f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.14f, 0.5f) - lineToRelative(0.05f, 0.1f) - lineToRelative(3.37f, 8.63f) - lineToRelative(3.37f, -8.62f) - lineToRelative(0.05f, -0.11f) - close() - moveTo(8.3f, 5.77f) - lineTo(6.83f, 9.55f) - horizontalLineToRelative(2.95f) - lineTo(8.3f, 5.77f) - close() - } - } - return _fontSpaceTrackingIn!! - } - -private var _fontSpaceTrackingIn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FontSpaceTrackingOut.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FontSpaceTrackingOut.kt deleted file mode 100644 index bf3a69c9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FontSpaceTrackingOut.kt +++ /dev/null @@ -1,93 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FontSpaceTrackingOut: ImageVector - get() { - if (_fontSpaceTrackingOut != null) { - return _fontSpaceTrackingOut!! - } - _fontSpaceTrackingOut = fluentIcon(name = "Filled.FontSpaceTrackingOut") { - fluentPath { - moveTo(4.39f, 16.21f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.22f, 0.0f) - lineToRelative(0.1f, 0.08f) - lineToRelative(0.08f, 0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.22f) - lineToRelative(-0.08f, 0.1f) - lineToRelative(-0.3f, 0.29f) - lineTo(18.6f, 18.0f) - lineToRelative(-0.3f, -0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.31f) - lineToRelative(0.08f, -0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) - lineToRelative(0.1f, 0.08f) - lineToRelative(2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.32f) - lineToRelative(-0.08f, 0.1f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.5f, -1.32f) - lineToRelative(0.08f, -0.1f) - lineToRelative(0.3f, -0.29f) - lineTo(5.4f, 20.0f) - lineToRelative(0.3f, 0.3f) - lineToRelative(0.08f, 0.09f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 1.4f) - lineToRelative(-0.1f, -0.08f) - lineToRelative(-2.0f, -2.0f) - lineToRelative(-0.08f, -0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.22f) - lineToRelative(0.08f, -0.1f) - lineToRelative(2.0f, -2.0f) - lineToRelative(0.1f, -0.08f) - close() - moveTo(8.12f, 2.41f) - lineTo(8.18f, 2.52f) - lineTo(8.24f, 2.64f) - lineTo(12.54f, 13.64f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.81f, 0.83f) - lineToRelative(-0.05f, -0.1f) - lineToRelative(-1.11f, -2.84f) - lineTo(5.04f, 11.53f) - lineToRelative(-1.1f, 2.83f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.2f, 0.6f) - lineToRelative(-0.1f, -0.03f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.6f, -1.18f) - lineToRelative(0.03f, -0.11f) - lineToRelative(4.3f, -11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.75f, -0.22f) - close() - moveTo(20.09f, 2.53f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.85f, 0.72f) - lineToRelative(-0.03f, 0.11f) - lineToRelative(-4.3f, 11.0f) - lineToRelative(-0.06f, 0.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.76f, 0.0f) - lineToRelative(-0.05f, -0.12f) - lineToRelative(-4.3f, -11.0f) - lineToRelative(-0.04f, -0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.5f, -1.14f) - lineToRelative(0.1f, -0.05f) - lineToRelative(0.11f, -0.04f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.14f, 0.5f) - lineToRelative(0.05f, 0.1f) - lineToRelative(3.37f, 8.63f) - lineToRelative(3.37f, -8.62f) - lineToRelative(0.05f, -0.11f) - close() - moveTo(7.3f, 5.74f) - lineTo(5.82f, 9.53f) - horizontalLineToRelative(2.96f) - lineTo(7.3f, 5.74f) - close() - } - } - return _fontSpaceTrackingOut!! - } - -private var _fontSpaceTrackingOut: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Food.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Food.kt deleted file mode 100644 index 416e6a71..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Food.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Food: ImageVector - get() { - if (_food != null) { - return _food!! - } - _food = fluentIcon(name = "Filled.Food") { - fluentPath { - moveTo(18.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(19.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(17.0f, 15.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - lineTo(15.0f, 8.0f) - curveToRelative(0.0f, -2.2f, 1.5f, -5.0f, 3.0f, -5.0f) - close() - moveTo(12.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(13.0f, 9.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -3.0f, 3.87f) - lineTo(10.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - verticalLineToRelative(-7.25f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -3.0f, -3.66f) - lineTo(5.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(7.0f, 9.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.0f, 1.73f) - lineTo(8.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(10.0f, 10.73f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.0f, -1.56f) - lineTo(11.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - } - } - return _food!! - } - -private var _food: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FoodApple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FoodApple.kt deleted file mode 100644 index a3d8c58c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FoodApple.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FoodApple: ImageVector - get() { - if (_foodApple != null) { - return _foodApple!! - } - _foodApple = fluentIcon(name = "Filled.FoodApple") { - fluentPath { - moveTo(5.47f, 3.42f) - arcTo(5.18f, 5.18f, 0.0f, false, false, 6.9f, 7.3f) - arcToRelative(5.12f, 5.12f, 0.0f, false, false, -3.66f, 4.22f) - curveToRelative(-0.33f, 2.35f, 0.15f, 4.75f, 1.37f, 6.8f) - lineToRelative(0.35f, 0.58f) - lineToRelative(0.04f, 0.07f) - lineToRelative(1.42f, 1.9f) - arcToRelative(3.46f, 3.46f, 0.0f, false, false, 5.28f, 0.34f) - arcToRelative(0.44f, 0.44f, 0.0f, false, true, 0.62f, 0.0f) - arcToRelative(3.46f, 3.46f, 0.0f, false, false, 5.28f, -0.34f) - lineToRelative(1.42f, -1.9f) - arcToRelative(0.74f, 0.74f, 0.0f, false, false, 0.04f, -0.07f) - lineToRelative(0.35f, -0.59f) - arcToRelative(10.46f, 10.46f, 0.0f, false, false, 1.37f, -6.8f) - arcToRelative(5.12f, 5.12f, 0.0f, false, false, -6.1f, -4.3f) - lineToRelative(-1.9f, 0.4f) - horizontalLineToRelative(-0.01f) - arcToRelative(8.7f, 8.7f, 0.0f, false, true, 0.39f, -2.34f) - curveToRelative(0.29f, -0.87f, 0.7f, -1.4f, 1.14f, -1.58f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.58f, -1.38f) - curveToRelative(-1.05f, 0.44f, -1.65f, 1.48f, -1.98f, 2.48f) - lineToRelative(-0.05f, 0.15f) - arcToRelative(5.19f, 5.19f, 0.0f, false, false, -4.92f, -2.8f) - curveToRelative(-0.7f, 0.04f, -1.25f, 0.59f, -1.29f, 1.28f) - close() - moveTo(8.4f, 11.23f) - curveToRelative(-0.35f, 0.07f, -0.67f, 0.32f, -0.87f, 0.78f) - curveToRelative(-0.2f, 0.48f, -0.27f, 1.18f, -0.05f, 2.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.46f, 0.36f) - arcToRelative(4.74f, 4.74f, 0.0f, false, true, 0.13f, -3.0f) - arcTo(2.7f, 2.7f, 0.0f, false, true, 8.1f, 9.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.3f, 1.47f) - close() - } - } - return _foodApple!! - } - -private var _foodApple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FoodCake.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FoodCake.kt deleted file mode 100644 index 2c887d0f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FoodCake.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FoodCake: ImageVector - get() { - if (_foodCake != null) { - return _foodCake!! - } - _foodCake = fluentIcon(name = "Filled.FoodCake") { - fluentPath { - moveTo(12.0f, 7.0f) - curveToRelative(1.71f, 0.0f, 2.0f, -1.34f, 2.0f, -2.44f) - curveToRelative(0.0f, -1.1f, -0.74f, -3.06f, -2.0f, -3.06f) - reflectiveCurveToRelative(-2.0f, 1.95f, -2.0f, 3.06f) - curveToRelative(0.0f, 1.1f, 0.29f, 2.44f, 2.0f, 2.44f) - close() - moveTo(3.5f, 10.25f) - curveTo(3.5f, 9.01f, 4.5f, 8.0f, 5.75f, 8.0f) - horizontalLineToRelative(12.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(0.88f) - lineToRelative(-3.63f, 2.72f) - curveToRelative(-0.4f, 0.3f, -0.95f, 0.33f, -1.39f, 0.08f) - lineToRelative(-2.04f, -1.2f) - curveToRelative(-0.9f, -0.53f, -2.0f, -0.5f, -2.88f, 0.06f) - lineTo(8.8f, 13.92f) - curveToRelative(-0.41f, 0.27f, -0.94f, 0.27f, -1.35f, 0.0f) - lineTo(3.5f, 11.42f) - verticalLineToRelative(-1.16f) - close() - moveTo(3.5f, 13.19f) - verticalLineToRelative(5.31f) - horizontalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.75f) - lineTo(20.5f, 13.0f) - lineToRelative(-2.73f, 2.05f) - curveToRelative(-0.9f, 0.67f, -2.1f, 0.73f, -3.05f, 0.17f) - lineToRelative(-2.04f, -1.2f) - curveToRelative(-0.4f, -0.24f, -0.91f, -0.23f, -1.3f, 0.03f) - lineTo(9.6f, 15.18f) - curveToRelative(-0.9f, 0.59f, -2.06f, 0.59f, -2.97f, 0.01f) - lineToRelative(-3.14f, -2.0f) - close() - } - } - return _foodCake!! - } - -private var _foodCake: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FoodCarrot.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FoodCarrot.kt deleted file mode 100644 index a14bc9bb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FoodCarrot.kt +++ /dev/null @@ -1,39 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FoodCarrot: ImageVector - get() { - if (_foodCarrot != null) { - return _foodCarrot!! - } - _foodCarrot = fluentIcon(name = "Filled.FoodCarrot") { - fluentPath { - moveTo(17.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(4.01f) - arcToRelative(4.56f, 4.56f, 0.0f, false, false, -6.3f, 1.22f) - lineToRelative(-7.35f, 10.8f) - curveToRelative(-0.55f, 0.82f, -0.45f, 1.92f, 0.26f, 2.61f) - curveToRelative(0.71f, 0.71f, 1.84f, 0.8f, 2.67f, 0.23f) - lineToRelative(10.78f, -7.46f) - arcTo(4.45f, 4.45f, 0.0f, false, false, 17.24f, 8.0f) - horizontalLineToRelative(4.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.69f) - lineToRelative(3.22f, -3.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineTo(17.5f, 5.44f) - verticalLineTo(2.75f) - close() - } - } - return _foodCarrot!! - } - -private var _foodCarrot: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FoodChickenLeg.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FoodChickenLeg.kt deleted file mode 100644 index e144e9f4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FoodChickenLeg.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FoodChickenLeg: ImageVector - get() { - if (_foodChickenLeg != null) { - return _foodChickenLeg!! - } - _foodChickenLeg = fluentIcon(name = "Filled.FoodChickenLeg") { - fluentPath { - moveTo(22.0f, 8.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, -11.9f, -1.1f) - arcToRelative(15.12f, 15.12f, 0.0f, false, true, -1.36f, 3.3f) - lineToRelative(-2.52f, 2.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.28f, 1.24f) - lineTo(4.46f, 16.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -1.42f, 4.53f) - curveToRelative(0.17f, 0.12f, 0.31f, 0.26f, 0.43f, 0.43f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 8.0f, 19.53f) - lineToRelative(2.04f, -2.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.24f, 0.29f) - lineToRelative(2.52f, -2.52f) - curveToRelative(0.48f, -0.29f, 1.48f, -0.8f, 3.32f, -1.36f) - arcTo(6.0f, 6.0f, 0.0f, false, false, 22.0f, 8.0f) - close() - moveTo(8.58f, 14.0f) - horizontalLineTo(10.0f) - verticalLineToRelative(1.41f) - lineToRelative(-3.12f, 3.12f) - curveToRelative(-0.29f, 0.3f, -0.38f, 0.67f, -0.38f, 0.97f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.81f, 0.58f) - curveToRelative(-0.21f, -0.3f, -0.48f, -0.55f, -0.77f, -0.77f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.58f, -1.81f) - curveToRelative(0.3f, 0.0f, 0.67f, -0.09f, 0.96f, -0.38f) - lineTo(8.58f, 14.0f) - close() - } - } - return _foodChickenLeg!! - } - -private var _foodChickenLeg: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FoodEgg.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FoodEgg.kt deleted file mode 100644 index 4cf82f36..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FoodEgg.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FoodEgg: ImageVector - get() { - if (_foodEgg != null) { - return _foodEgg!! - } - _foodEgg = fluentIcon(name = "Filled.FoodEgg") { - fluentPath { - moveTo(11.5f, 12.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - curveTo(11.01f, 10.0f, 10.0f, 11.0f, 10.0f, 12.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - close() - moveTo(13.5f, 2.0f) - arcToRelative(8.38f, 8.38f, 0.0f, false, false, -7.29f, 4.5f) - curveToRelative(-0.24f, 0.43f, -0.6f, 0.8f, -1.05f, 1.1f) - arcTo(7.38f, 7.38f, 0.0f, false, false, 2.0f, 13.76f) - curveTo(2.0f, 17.7f, 4.97f, 21.0f, 8.75f, 21.0f) - curveToRelative(0.32f, 0.0f, 0.64f, -0.02f, 0.95f, -0.07f) - curveToRelative(0.87f, -0.13f, 1.8f, 0.0f, 2.57f, 0.38f) - arcTo(6.75f, 6.75f, 0.0f, false, false, 21.9f, 14.0f) - arcToRelative(3.14f, 3.14f, 0.0f, false, true, -0.03f, -1.07f) - curveToRelative(0.1f, -0.54f, 0.14f, -1.1f, 0.14f, -1.66f) - curveTo(22.0f, 6.22f, 18.26f, 2.0f, 13.5f, 2.0f) - close() - moveTo(17.25f, 12.5f) - arcToRelative(4.75f, 4.75f, 0.0f, true, true, -9.5f, 0.0f) - arcToRelative(4.75f, 4.75f, 0.0f, false, true, 9.5f, 0.0f) - close() - } - } - return _foodEgg!! - } - -private var _foodEgg: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FoodFish.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FoodFish.kt deleted file mode 100644 index da50749a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FoodFish.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FoodFish: ImageVector - get() { - if (_foodFish != null) { - return _foodFish!! - } - _foodFish = fluentIcon(name = "Filled.FoodFish") { - fluentPath { - moveTo(10.36f, 4.1f) - curveToRelative(-1.0f, 1.0f, -1.58f, 2.34f, -1.91f, 3.68f) - arcTo(16.66f, 16.66f, 0.0f, false, false, 8.0f, 11.73f) - curveToRelative(0.0f, 0.17f, -0.14f, 0.32f, -0.32f, 0.32f) - curveToRelative(-1.77f, 0.0f, -4.01f, 0.22f, -5.83f, 1.09f) - curveToRelative(-0.68f, 0.32f, -0.97f, 1.0f, -0.82f, 1.63f) - curveToRelative(0.13f, 0.6f, 0.61f, 1.09f, 1.26f, 1.25f) - curveToRelative(0.8f, 0.19f, 1.72f, 0.44f, 2.52f, 0.72f) - curveToRelative(0.4f, 0.15f, 0.76f, 0.3f, 1.05f, 0.44f) - curveToRelative(0.3f, 0.15f, 0.49f, 0.28f, 0.58f, 0.37f) - curveToRelative(0.1f, 0.1f, 0.22f, 0.28f, 0.37f, 0.58f) - curveToRelative(0.15f, 0.29f, 0.3f, 0.65f, 0.44f, 1.05f) - curveToRelative(0.28f, 0.8f, 0.53f, 1.72f, 0.72f, 2.52f) - curveToRelative(0.16f, 0.65f, 0.65f, 1.13f, 1.25f, 1.26f) - curveToRelative(0.64f, 0.14f, 1.3f, -0.14f, 1.63f, -0.82f) - curveToRelative(0.87f, -1.82f, 1.08f, -4.06f, 1.1f, -5.82f) - curveToRelative(0.0f, -0.18f, 0.14f, -0.33f, 0.32f, -0.33f) - curveToRelative(1.2f, 0.0f, 2.6f, -0.1f, 3.95f, -0.43f) - arcToRelative(7.78f, 7.78f, 0.0f, false, false, 3.67f, -1.91f) - arcToRelative(7.4f, 7.4f, 0.0f, false, false, 1.92f, -4.06f) - curveToRelative(0.25f, -1.45f, 0.2f, -2.92f, 0.1f, -4.09f) - arcToRelative(3.77f, 3.77f, 0.0f, false, false, -3.41f, -3.4f) - arcToRelative(15.68f, 15.68f, 0.0f, false, false, -4.1f, 0.09f) - arcToRelative(7.4f, 7.4f, 0.0f, false, false, -4.05f, 1.91f) - close() - moveTo(16.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - } - } - return _foodFish!! - } - -private var _foodFish: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FoodGrains.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FoodGrains.kt deleted file mode 100644 index f9c15560..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FoodGrains.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FoodGrains: ImageVector - get() { - if (_foodGrains != null) { - return _foodGrains!! - } - _foodGrains = fluentIcon(name = "Filled.FoodGrains") { - fluentPath { - moveTo(12.61f, 2.29f) - arcToRelative(0.93f, 0.93f, 0.0f, false, false, -1.22f, 0.0f) - arcTo(7.2f, 7.2f, 0.0f, false, false, 8.9f, 7.57f) - curveToRelative(0.0f, 0.19f, 0.11f, 0.36f, 0.28f, 0.45f) - arcToRelative(9.06f, 9.06f, 0.0f, false, true, 2.4f, 1.83f) - curveToRelative(0.23f, 0.24f, 0.62f, 0.24f, 0.84f, 0.0f) - arcToRelative(9.04f, 9.04f, 0.0f, false, true, 2.4f, -1.83f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.28f, -0.45f) - arcToRelative(7.2f, 7.2f, 0.0f, false, false, -2.49f, -5.28f) - close() - moveTo(12.01f, 18.04f) - arcToRelative(8.16f, 8.16f, 0.0f, false, true, 8.16f, -4.06f) - curveToRelative(0.49f, 0.07f, 0.85f, 0.5f, 0.81f, 1.0f) - arcTo(7.6f, 7.6f, 0.0f, false, true, 13.41f, 22.0f) - lineTo(10.6f, 22.0f) - arcToRelative(7.6f, 7.6f, 0.0f, false, true, -7.57f, -7.01f) - arcToRelative(0.94f, 0.94f, 0.0f, false, true, 0.81f, -1.0f) - arcTo(8.16f, 8.16f, 0.0f, false, true, 12.0f, 18.03f) - close() - moveTo(19.65f, 12.93f) - arcToRelative(9.9f, 9.9f, 0.0f, false, false, -5.13f, 1.16f) - arcToRelative(8.61f, 8.61f, 0.0f, false, false, -2.32f, 1.78f) - curveToRelative(-0.1f, 0.11f, -0.3f, 0.11f, -0.4f, 0.0f) - arcToRelative(8.6f, 8.6f, 0.0f, false, false, -2.32f, -1.78f) - arcToRelative(9.9f, 9.9f, 0.0f, false, false, -5.11f, -1.16f) - arcToRelative(8.66f, 8.66f, 0.0f, false, true, -1.35f, -3.8f) - arcToRelative(0.96f, 0.96f, 0.0f, false, true, 0.87f, -1.04f) - curveToRelative(2.46f, -0.2f, 4.5f, 0.28f, 6.35f, 1.84f) - curveToRelative(0.82f, 0.7f, 1.38f, 1.54f, 1.76f, 2.26f) - curveToRelative(0.38f, -0.72f, 0.94f, -1.56f, 1.77f, -2.26f) - curveToRelative(1.84f, -1.56f, 3.9f, -2.04f, 6.35f, -1.84f) - curveToRelative(0.53f, 0.04f, 0.93f, 0.5f, 0.88f, 1.04f) - arcToRelative(8.66f, 8.66f, 0.0f, false, true, -1.35f, 3.8f) - close() - } - } - return _foodGrains!! - } - -private var _foodGrains: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FoodPizza.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FoodPizza.kt deleted file mode 100644 index 790b2c06..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FoodPizza.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FoodPizza: ImageVector - get() { - if (_foodPizza != null) { - return _foodPizza!! - } - _foodPizza = fluentIcon(name = "Filled.FoodPizza") { - fluentPath { - moveTo(5.0f, 4.66f) - arcToRelative(2.6f, 2.6f, 0.0f, false, true, 2.82f, -2.65f) - arcToRelative(20.78f, 20.78f, 0.0f, false, true, 13.45f, 6.83f) - arcToRelative(2.6f, 2.6f, 0.0f, false, true, -0.48f, 3.85f) - lineToRelative(-0.43f, 0.3f) - lineToRelative(-0.36f, -0.54f) - arcTo(17.55f, 17.55f, 0.0f, false, false, 5.74f, 5.16f) - lineTo(5.0f, 5.16f) - verticalLineToRelative(-0.5f) - close() - moveTo(18.77f, 13.31f) - lineTo(19.15f, 13.87f) - lineTo(15.2f, 16.74f) - lineTo(15.0f, 16.89f) - verticalLineToRelative(2.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - verticalLineToRelative(-0.06f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.06f) - verticalLineToRelative(1.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.1f) - lineToRelative(-1.43f, 1.04f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 5.0f, 19.81f) - lineTo(5.0f, 6.67f) - horizontalLineToRelative(0.75f) - curveToRelative(5.36f, 0.0f, 10.1f, 2.61f, 13.02f, 6.64f) - close() - moveTo(9.0f, 10.99f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(13.0f, 13.99f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(9.0f, 16.99f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - } - } - return _foodPizza!! - } - -private var _foodPizza: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FoodToast.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FoodToast.kt deleted file mode 100644 index 8e8a33fc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FoodToast.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FoodToast: ImageVector - get() { - if (_foodToast != null) { - return _foodToast!! - } - _foodToast = fluentIcon(name = "Filled.FoodToast") { - fluentPath { - moveTo(8.25f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-4.5f) - close() - moveTo(9.0f, 13.5f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(3.0f) - horizontalLineTo(9.0f) - close() - moveTo(2.0f, 7.75f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 6.75f, 3.0f) - horizontalLineToRelative(10.5f) - arcToRelative(4.75f, 4.75f, 0.0f, false, true, 3.5f, 7.96f) - verticalLineToRelative(7.79f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-13.0f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-7.79f) - arcTo(4.74f, 4.74f, 0.0f, false, true, 2.0f, 7.75f) - close() - moveTo(6.75f, 4.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -2.23f, 5.61f) - curveToRelative(0.15f, 0.14f, 0.23f, 0.34f, 0.23f, 0.54f) - verticalLineToRelative(8.1f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(10.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-7.7f) - curveToRelative(0.0f, -0.24f, 0.12f, -0.47f, 0.33f, -0.61f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -1.83f, -5.94f) - horizontalLineToRelative(-8.0f) - close() - } - } - return _foodToast!! - } - -private var _foodToast: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Form.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Form.kt deleted file mode 100644 index b97c493c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Form.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Form: ImageVector - get() { - if (_form != null) { - return _form!! - } - _form = fluentIcon(name = "Filled.Form") { - fluentPath { - moveTo(8.25f, 10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(7.5f, 16.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(6.0f, 10.75f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 4.5f, 0.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -4.5f, 0.0f) - close() - moveTo(8.25f, 14.0f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, 4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, -4.5f) - close() - moveTo(12.0f, 10.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(12.75f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - close() - moveTo(6.0f, 6.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(6.75f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - } - } - return _form!! - } - -private var _form: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FormMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FormMultiple.kt deleted file mode 100644 index 9faaec67..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FormMultiple.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FormMultiple: ImageVector - get() { - if (_formMultiple != null) { - return _formMultiple!! - } - _formMultiple = fluentIcon(name = "Filled.FormMultiple") { - fluentPath { - moveTo(7.25f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - } - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(9.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-9.0f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-9.0f) - close() - moveTo(5.0f, 12.25f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) - close() - moveTo(10.5f, 12.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(5.0f, 7.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-10.0f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 5.0f, 7.75f) - close() - } - fluentPath { - moveTo(8.75f, 21.0f) - curveToRelative(-1.15f, 0.0f, -2.16f, -0.6f, -2.74f, -1.5f) - horizontalLineToRelative(9.74f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 3.75f, -3.75f) - verticalLineTo(6.01f) - curveToRelative(0.9f, 0.58f, 1.5f, 1.59f, 1.5f, 2.74f) - verticalLineToRelative(7.0f) - curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) - horizontalLineToRelative(-7.0f) - close() - } - } - return _formMultiple!! - } - -private var _formMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FormNew.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FormNew.kt deleted file mode 100644 index c84cd1e9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FormNew.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FormNew: ImageVector - get() { - if (_formNew != null) { - return _formNew!! - } - _formNew = fluentIcon(name = "Filled.FormNew") { - fluentPath { - moveTo(7.5f, 10.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(8.25f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(5.77f) - arcToRelative(6.46f, 6.46f, 0.0f, false, false, -3.05f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.7f, -1.02f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(15.0f, 11.5f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -2.98f, 9.5f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(6.0f, 10.75f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 4.5f, 0.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -4.5f, 0.0f) - close() - moveTo(8.25f, 14.0f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, 4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, -4.5f) - close() - moveTo(6.0f, 6.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(6.75f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _formNew!! - } - -private var _formNew: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fps1.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fps1.kt deleted file mode 100644 index f24309a2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fps1.kt +++ /dev/null @@ -1,120 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Fps1: ImageVector - get() { - if (_fps1 != null) { - return _fps1!! - } - _fps1 = fluentIcon(name = "Filled.Fps1") { - fluentPath { - moveTo(5.26f, 3.03f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.76f, 0.97f) - verticalLineToRelative(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - lineTo(4.02f, 6.5f) - lineToRelative(-0.47f, 0.33f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.1f, -1.66f) - arcToRelative(6.55f, 6.55f, 0.0f, false, false, 1.69f, -1.63f) - verticalLineToRelative(-0.01f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.12f, -0.5f) - close() - moveTo(18.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 6.0f, 0.0f) - lineTo(21.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - close() - moveTo(17.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - lineTo(17.0f, 6.0f) - close() - moveTo(4.0f, 15.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(5.5f, 16.5f) - lineTo(5.5f, 18.0f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(5.5f, 19.5f) - verticalLineToRelative(1.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-5.48f) - close() - moveTo(10.25f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(11.0f, 19.5f) - horizontalLineToRelative(0.75f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, -4.5f) - horizontalLineToRelative(-1.5f) - close() - moveTo(11.75f, 18.0f) - lineTo(11.0f, 18.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(15.25f, 17.12f) - curveToRelative(0.0f, -1.17f, 0.95f, -2.12f, 2.13f, -2.12f) - lineTo(18.0f, 15.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - horizontalLineToRelative(-0.63f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, 1.25f) - horizontalLineToRelative(0.5f) - arcToRelative(2.13f, 2.13f, 0.0f, false, true, 0.0f, 4.25f) - horizontalLineToRelative(-0.62f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(0.63f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) - horizontalLineToRelative(-0.5f) - arcToRelative(2.13f, 2.13f, 0.0f, false, true, -2.13f, -2.13f) - close() - moveTo(8.13f, 6.19f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.29f, -0.54f) - lineToRelative(0.03f, -0.05f) - curveToRelative(0.04f, -0.06f, 0.1f, -0.14f, 0.2f, -0.22f) - curveToRelative(0.16f, -0.16f, 0.49f, -0.37f, 1.1f, -0.37f) - curveToRelative(0.42f, 0.0f, 0.75f, 0.13f, 0.94f, 0.3f) - curveToRelative(0.19f, 0.15f, 0.31f, 0.37f, 0.31f, 0.7f) - curveToRelative(0.0f, 0.55f, -0.17f, 0.86f, -0.42f, 1.12f) - curveToRelative(-0.3f, 0.32f, -0.73f, 0.56f, -1.33f, 0.9f) - arcToRelative(6.9f, 6.9f, 0.0f, false, false, -1.8f, 1.33f) - arcTo(3.82f, 3.82f, 0.0f, false, false, 7.5f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - lineTo(13.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(9.72f, 11.0f) - curveToRelative(0.07f, -0.12f, 0.15f, -0.22f, 0.23f, -0.32f) - curveToRelative(0.3f, -0.33f, 0.72f, -0.6f, 1.3f, -0.92f) - lineToRelative(0.1f, -0.06f) - curveToRelative(0.51f, -0.3f, 1.16f, -0.66f, 1.67f, -1.19f) - curveTo(13.6f, 7.9f, 14.0f, 7.1f, 14.0f, 6.0f) - curveToRelative(0.0f, -0.91f, -0.38f, -1.7f, -1.01f, -2.23f) - arcTo(3.44f, 3.44f, 0.0f, false, false, 10.75f, 3.0f) - curveToRelative(-1.14f, 0.0f, -1.94f, 0.42f, -2.45f, 0.89f) - arcToRelative(3.11f, 3.11f, 0.0f, false, false, -0.73f, 0.99f) - reflectiveCurveToRelative(-0.2f, 0.52f, 0.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.56f, 1.3f) - close() - } - } - return _fps1!! - } - -private var _fps1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fps120.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fps120.kt deleted file mode 100644 index 64f60a30..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fps120.kt +++ /dev/null @@ -1,120 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Fps120: ImageVector - get() { - if (_fps120 != null) { - return _fps120!! - } - _fps120 = fluentIcon(name = "Filled.Fps120") { - fluentPath { - moveTo(5.26f, 3.03f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.76f, 0.97f) - verticalLineToRelative(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - lineTo(4.02f, 6.5f) - lineToRelative(-0.47f, 0.33f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.1f, -1.66f) - arcToRelative(6.55f, 6.55f, 0.0f, false, false, 1.69f, -1.63f) - verticalLineToRelative(-0.01f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.12f, -0.5f) - close() - moveTo(18.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 6.0f, 0.0f) - lineTo(21.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - close() - moveTo(17.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - lineTo(17.0f, 6.0f) - close() - moveTo(4.0f, 15.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(5.5f, 16.5f) - lineTo(5.5f, 18.0f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(5.5f, 19.5f) - verticalLineToRelative(1.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-5.48f) - close() - moveTo(10.25f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(11.0f, 19.5f) - horizontalLineToRelative(0.75f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, -4.5f) - horizontalLineToRelative(-1.5f) - close() - moveTo(11.75f, 18.0f) - lineTo(11.0f, 18.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(15.25f, 17.12f) - curveToRelative(0.0f, -1.17f, 0.95f, -2.12f, 2.13f, -2.12f) - lineTo(18.0f, 15.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - horizontalLineToRelative(-0.63f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, 1.25f) - horizontalLineToRelative(0.5f) - arcToRelative(2.13f, 2.13f, 0.0f, false, true, 0.0f, 4.25f) - horizontalLineToRelative(-0.62f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(0.63f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) - horizontalLineToRelative(-0.5f) - arcToRelative(2.13f, 2.13f, 0.0f, false, true, -2.13f, -2.13f) - close() - moveTo(8.13f, 6.19f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.29f, -0.54f) - lineToRelative(0.03f, -0.05f) - curveToRelative(0.04f, -0.06f, 0.1f, -0.14f, 0.2f, -0.22f) - curveToRelative(0.16f, -0.16f, 0.49f, -0.37f, 1.1f, -0.37f) - curveToRelative(0.42f, 0.0f, 0.75f, 0.13f, 0.94f, 0.3f) - curveToRelative(0.19f, 0.15f, 0.31f, 0.37f, 0.31f, 0.7f) - curveToRelative(0.0f, 0.55f, -0.17f, 0.86f, -0.42f, 1.12f) - curveToRelative(-0.3f, 0.32f, -0.73f, 0.56f, -1.33f, 0.9f) - arcToRelative(6.9f, 6.9f, 0.0f, false, false, -1.8f, 1.33f) - arcTo(3.82f, 3.82f, 0.0f, false, false, 7.5f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - lineTo(13.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(9.72f, 11.0f) - curveToRelative(0.07f, -0.12f, 0.15f, -0.22f, 0.23f, -0.32f) - curveToRelative(0.3f, -0.33f, 0.72f, -0.6f, 1.3f, -0.92f) - lineToRelative(0.1f, -0.06f) - curveToRelative(0.51f, -0.3f, 1.16f, -0.66f, 1.67f, -1.19f) - curveTo(13.6f, 7.9f, 14.0f, 7.1f, 14.0f, 6.0f) - curveToRelative(0.0f, -0.91f, -0.38f, -1.7f, -1.01f, -2.23f) - arcTo(3.44f, 3.44f, 0.0f, false, false, 10.75f, 3.0f) - curveToRelative(-1.14f, 0.0f, -1.94f, 0.42f, -2.45f, 0.89f) - arcToRelative(3.11f, 3.11f, 0.0f, false, false, -0.73f, 0.99f) - reflectiveCurveToRelative(-0.2f, 0.52f, 0.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.56f, 1.3f) - close() - } - } - return _fps120!! - } - -private var _fps120: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fps2.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fps2.kt deleted file mode 100644 index 8a78dbd1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fps2.kt +++ /dev/null @@ -1,131 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Fps2: ImageVector - get() { - if (_fps2 != null) { - return _fps2!! - } - _fps2 = fluentIcon(name = "Filled.Fps2") { - fluentPath { - moveTo(2.99f, 4.38f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.48f, -0.25f) - verticalLineToRelative(-0.05f) - arcToRelative(1.92f, 1.92f, 0.0f, false, true, 0.1f, -0.32f) - arcTo(2.7f, 2.7f, 0.0f, false, true, 4.25f, 2.0f) - curveToRelative(0.96f, 0.0f, 1.73f, 0.38f, 2.22f, 1.0f) - curveToRelative(0.48f, 0.61f, 0.65f, 1.4f, 0.52f, 2.13f) - curveToRelative(-0.14f, 0.81f, -0.6f, 1.3f, -1.15f, 1.63f) - arcToRelative(6.71f, 6.71f, 0.0f, false, true, -1.48f, 0.59f) - curveToRelative(-0.45f, 0.16f, -0.76f, 0.33f, -0.98f, 0.57f) - curveToRelative(-0.11f, 0.13f, -0.22f, 0.3f, -0.3f, 0.58f) - horizontalLineToRelative(3.17f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - curveToRelative(0.0f, -1.01f, 0.27f, -1.77f, 0.76f, -2.33f) - curveToRelative(0.48f, -0.53f, 1.09f, -0.8f, 1.59f, -0.98f) - lineToRelative(0.45f, -0.16f) - curveToRelative(0.32f, -0.1f, 0.56f, -0.2f, 0.79f, -0.32f) - curveToRelative(0.24f, -0.14f, 0.37f, -0.3f, 0.42f, -0.59f) - arcToRelative(1.2f, 1.2f, 0.0f, false, false, -0.22f, -0.94f) - curveToRelative(-0.18f, -0.23f, -0.5f, -0.43f, -1.04f, -0.43f) - curveToRelative(-0.62f, 0.0f, -0.9f, 0.25f, -1.06f, 0.45f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -0.2f, 0.43f) - close() - moveTo(2.99f, 4.38f) - close() - moveTo(2.99f, 4.38f) - close() - moveTo(16.5f, 2.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 14.0f, 4.5f) - verticalLineToRelative(3.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 5.0f, 0.0f) - verticalLineToRelative(-3.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 16.5f, 2.0f) - close() - moveTo(17.5f, 7.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(3.0f) - close() - moveTo(3.5f, 12.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - lineTo(4.0f, 16.0f) - horizontalLineToRelative(1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - lineTo(4.0f, 15.0f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - horizontalLineToRelative(-3.0f) - close() - moveTo(8.5f, 12.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - lineTo(9.0f, 16.0f) - horizontalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) - lineTo(8.5f, 12.0f) - close() - moveTo(9.0f, 15.0f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(9.0f, 15.0f) - close() - moveTo(13.0f, 13.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(0.76f) - curveToRelative(0.82f, 0.0f, 1.49f, 0.67f, 1.49f, 1.49f) - verticalLineToRelative(0.01f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-0.01f) - arcToRelative(0.49f, 0.49f, 0.0f, false, false, -0.49f, -0.49f) - horizontalLineToRelative(-0.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.5f) - arcToRelative(1.75f, 1.75f, 0.0f, true, true, 0.0f, 3.5f) - horizontalLineToRelative(-0.76f) - curveToRelative(-0.82f, 0.0f, -1.49f, -0.67f, -1.49f, -1.49f) - verticalLineToRelative(-0.01f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - verticalLineToRelative(0.01f) - curveToRelative(0.0f, 0.27f, 0.22f, 0.49f, 0.49f, 0.49f) - horizontalLineToRelative(0.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - close() - moveTo(8.75f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(9.5f, 5.5f) - lineTo(11.0f, 5.5f) - lineTo(11.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(12.5f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(11.0f, 7.0f) - lineTo(8.75f, 7.0f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 6.25f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(2.99f, 4.38f) - close() - } - } - return _fps2!! - } - -private var _fps2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fps240.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fps240.kt deleted file mode 100644 index e7865d1f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fps240.kt +++ /dev/null @@ -1,124 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Fps240: ImageVector - get() { - if (_fps240 != null) { - return _fps240!! - } - _fps240 = fluentIcon(name = "Filled.Fps240") { - fluentPath { - moveTo(2.15f, 6.18f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.29f, -0.54f) - lineToRelative(0.03f, -0.05f) - curveToRelative(0.03f, -0.06f, 0.1f, -0.14f, 0.19f, -0.23f) - curveToRelative(0.17f, -0.15f, 0.5f, -0.36f, 1.1f, -0.36f) - curveToRelative(0.43f, 0.0f, 0.75f, 0.13f, 0.95f, 0.3f) - curveToRelative(0.18f, 0.15f, 0.3f, 0.37f, 0.3f, 0.7f) - curveToRelative(0.0f, 0.55f, -0.17f, 0.86f, -0.42f, 1.12f) - curveToRelative(-0.3f, 0.32f, -0.72f, 0.56f, -1.32f, 0.9f) - arcToRelative(6.9f, 6.9f, 0.0f, false, false, -1.8f, 1.33f) - arcTo(3.83f, 3.83f, 0.0f, false, false, 1.53f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - lineTo(3.74f, 11.0f) - curveToRelative(0.07f, -0.12f, 0.14f, -0.22f, 0.23f, -0.32f) - curveToRelative(0.3f, -0.33f, 0.71f, -0.6f, 1.3f, -0.92f) - lineToRelative(0.1f, -0.06f) - curveToRelative(0.5f, -0.3f, 1.15f, -0.66f, 1.66f, -1.19f) - curveToRelative(0.6f, -0.61f, 0.98f, -1.42f, 0.98f, -2.51f) - curveToRelative(0.0f, -0.91f, -0.38f, -1.7f, -1.0f, -2.23f) - arcTo(3.44f, 3.44f, 0.0f, false, false, 4.76f, 3.0f) - curveToRelative(-1.14f, 0.0f, -1.94f, 0.42f, -2.45f, 0.89f) - arcToRelative(3.11f, 3.11f, 0.0f, false, false, -0.72f, 0.97f) - verticalLineToRelative(0.01f) - reflectiveCurveToRelative(-0.22f, 0.53f, 0.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.55f, 1.3f) - close() - moveTo(16.0f, 6.0f) - arcTo(3.0f, 3.0f, 0.0f, true, true, 22.0f, 6.0f) - verticalLineToRelative(4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) - lineTo(16.0f, 6.0f) - close() - moveTo(19.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(20.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - moveTo(4.76f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(5.48f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) - lineTo(5.51f, 19.5f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(5.52f, 18.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(2.24f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.0f) - close() - moveTo(9.5f, 15.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, 4.5f) - horizontalLineToRelative(-0.75f) - verticalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - verticalLineToRelative(-5.5f) - close() - moveTo(11.0f, 18.0f) - horizontalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.75f) - lineTo(11.0f, 18.0f) - close() - moveTo(17.37f, 15.0f) - arcToRelative(2.12f, 2.12f, 0.0f, false, false, 0.0f, 4.25f) - horizontalLineToRelative(0.5f) - arcToRelative(0.62f, 0.62f, 0.0f, false, true, 0.0f, 1.25f) - horizontalLineToRelative(-0.63f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(0.63f) - arcToRelative(2.12f, 2.12f, 0.0f, false, false, 0.0f, -4.25f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.62f, 0.62f, 0.0f, false, true, 0.0f, -1.25f) - lineTo(18.0f, 16.5f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - horizontalLineToRelative(-0.62f) - close() - moveTo(15.01f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - lineToRelative(0.02f, 3.0f) - lineTo(11.0f, 7.0f) - lineTo(11.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(3.02f) - verticalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(15.02f, 7.4f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -0.09f) - lineTo(15.0f, 4.0f) - close() - } - } - return _fps240!! - } - -private var _fps240: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fps30.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fps30.kt deleted file mode 100644 index 3f8bdca9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fps30.kt +++ /dev/null @@ -1,109 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Fps30: ImageVector - get() { - if (_fps30 != null) { - return _fps30!! - } - _fps30 = fluentIcon(name = "Filled.Fps30") { - fluentPath { - moveTo(11.75f, 15.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, 4.5f) - lineTo(11.0f, 19.5f) - verticalLineToRelative(1.75f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-5.5f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(1.5f) - close() - moveTo(11.75f, 16.5f) - lineTo(11.0f, 16.5f) - lineTo(11.0f, 18.0f) - horizontalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(18.0f, 15.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(18.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.5f) - horizontalLineToRelative(-0.72f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, -0.09f, 1.24f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(0.5f) - arcToRelative(2.13f, 2.13f, 0.0f, false, true, 0.15f, 4.24f) - lineToRelative(-0.16f, 0.01f) - horizontalLineToRelative(-0.62f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 0.25f, 0.18f, 0.45f, 0.41f, 0.5f) - horizontalLineToRelative(0.72f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.09f, -1.24f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-0.5f) - arcToRelative(2.13f, 2.13f, 0.0f, false, true, -0.15f, -4.24f) - lineToRelative(0.16f, -0.01f) - lineTo(18.0f, 15.0f) - close() - moveTo(7.75f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(5.5f, 16.5f) - lineTo(5.5f, 18.0f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(5.5f, 19.5f) - verticalLineToRelative(1.73f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-5.48f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(3.0f) - close() - moveTo(15.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) - lineTo(18.0f, 10.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.18f) - lineTo(12.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - close() - moveTo(15.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 0.88f) - lineTo(14.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.12f) - lineTo(16.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - moveTo(8.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -0.5f, -1.86f) - lineToRelative(-0.12f, 0.06f) - curveToRelative(-0.24f, 0.15f, -0.48f, 0.3f, -0.76f, 0.3f) - curveToRelative(-0.83f, 0.0f, -1.46f, -0.78f, -0.93f, -1.42f) - arcTo(3.0f, 3.0f, 0.0f, true, true, 10.24f, 8.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, -4.54f, 3.92f) - curveToRelative(-0.54f, -0.64f, 0.1f, -1.42f, 0.92f, -1.42f) - curveToRelative(0.28f, 0.0f, 0.52f, 0.15f, 0.76f, 0.3f) - lineToRelative(0.11f, 0.06f) - arcTo(1.0f, 1.0f, 0.0f, true, true, 8.0f, 7.0f) - close() - } - } - return _fps30!! - } - -private var _fps30: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fps60.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fps60.kt deleted file mode 100644 index 857d2960..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fps60.kt +++ /dev/null @@ -1,115 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Fps60: ImageVector - get() { - if (_fps60 != null) { - return _fps60!! - } - _fps60 = fluentIcon(name = "Filled.Fps60") { - fluentPath { - moveTo(11.75f, 15.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, 4.5f) - lineTo(11.0f, 19.5f) - verticalLineToRelative(1.75f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-5.5f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(1.5f) - close() - moveTo(18.0f, 15.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(18.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.5f) - horizontalLineToRelative(-0.72f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, -0.09f, 1.24f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(0.5f) - arcToRelative(2.13f, 2.13f, 0.0f, false, true, 0.15f, 4.24f) - lineToRelative(-0.16f, 0.01f) - horizontalLineToRelative(-0.62f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 0.25f, 0.18f, 0.45f, 0.41f, 0.5f) - horizontalLineToRelative(0.72f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.09f, -1.24f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-0.5f) - arcToRelative(2.13f, 2.13f, 0.0f, false, true, -0.15f, -4.24f) - lineToRelative(0.16f, -0.01f) - lineTo(18.0f, 15.0f) - close() - moveTo(7.75f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(5.5f, 16.5f) - lineTo(5.5f, 18.0f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(5.5f, 19.5f) - verticalLineToRelative(1.73f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-5.48f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(3.0f) - close() - moveTo(11.75f, 16.5f) - lineTo(11.0f, 16.5f) - lineTo(11.0f, 18.0f) - horizontalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(8.25f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 11.0f, 5.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - verticalLineToRelative(-0.12f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineTo(8.25f, 5.0f) - lineTo(8.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 0.88f) - verticalLineToRelative(1.29f) - arcTo(3.0f, 3.0f, 0.0f, true, true, 5.0f, 10.0f) - lineTo(5.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.83f, -3.0f) - lineTo(8.25f, 3.0f) - close() - moveTo(15.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) - lineTo(18.0f, 10.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.18f) - lineTo(12.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - close() - moveTo(8.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(15.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 0.88f) - lineTo(14.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.12f) - lineTo(16.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - } - } - return _fps60!! - } - -private var _fps60: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fps960.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fps960.kt deleted file mode 100644 index 1a589784..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Fps960.kt +++ /dev/null @@ -1,134 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Fps960: ImageVector - get() { - if (_fps960 != null) { - return _fps960!! - } - _fps960 = fluentIcon(name = "Filled.Fps960") { - fluentPath { - moveTo(11.75f, 15.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, 4.5f) - lineTo(11.0f, 19.5f) - verticalLineToRelative(1.75f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-5.5f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(1.5f) - close() - moveTo(18.0f, 15.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(18.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.5f) - horizontalLineToRelative(-0.72f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, -0.09f, 1.24f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(0.5f) - arcToRelative(2.13f, 2.13f, 0.0f, false, true, 0.15f, 4.24f) - lineToRelative(-0.16f, 0.01f) - horizontalLineToRelative(-0.62f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 0.25f, 0.18f, 0.45f, 0.41f, 0.5f) - horizontalLineToRelative(0.72f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.09f, -1.24f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-0.5f) - arcToRelative(2.13f, 2.13f, 0.0f, false, true, -0.15f, -4.24f) - lineToRelative(0.16f, -0.01f) - lineTo(18.0f, 15.0f) - close() - moveTo(7.75f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(5.5f, 16.5f) - lineTo(5.5f, 18.0f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(5.5f, 19.5f) - verticalLineToRelative(1.73f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-5.48f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(3.0f) - close() - moveTo(11.75f, 16.5f) - lineTo(11.0f, 16.5f) - lineTo(11.0f, 18.0f) - horizontalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(5.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.82f, 3.0f) - horizontalLineToRelative(-0.43f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 10.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - verticalLineToRelative(0.12f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - lineTo(5.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -0.88f) - lineTo(6.0f, 8.83f) - arcTo(3.0f, 3.0f, 0.0f, true, true, 5.0f, 3.0f) - close() - moveTo(12.25f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 15.0f, 5.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - verticalLineToRelative(-0.12f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - lineTo(12.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 0.88f) - verticalLineToRelative(1.29f) - arcTo(3.0f, 3.0f, 0.0f, true, true, 9.0f, 10.0f) - lineTo(9.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.83f, -3.0f) - lineTo(12.25f, 3.0f) - close() - moveTo(19.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) - lineTo(22.0f, 10.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.18f) - lineTo(16.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - close() - moveTo(12.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(19.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 0.88f) - lineTo(18.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.12f) - lineTo(20.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - moveTo(5.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - } - } - return _fps960!! - } - -private var _fps960: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FullScreenMaximize.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FullScreenMaximize.kt deleted file mode 100644 index 135b06a5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FullScreenMaximize.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FullScreenMaximize: ImageVector - get() { - if (_fullScreenMaximize != null) { - return _fullScreenMaximize!! - } - _fullScreenMaximize = fluentIcon(name = "Filled.FullScreenMaximize") { - fluentPath { - moveTo(5.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - lineTo(6.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - lineTo(5.0f, 6.0f) - close() - moveTo(5.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(6.0f, 21.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - verticalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(2.0f) - close() - moveTo(18.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(21.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(2.0f) - close() - moveTo(19.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(2.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) - verticalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(2.0f) - close() - } - } - return _fullScreenMaximize!! - } - -private var _fullScreenMaximize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FullScreenMinimize.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FullScreenMinimize.kt deleted file mode 100644 index 1d29154b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FullScreenMinimize.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.FullScreenMinimize: ImageVector - get() { - if (_fullScreenMinimize != null) { - return _fullScreenMinimize!! - } - _fullScreenMinimize = fluentIcon(name = "Filled.FullScreenMinimize") { - fluentPath { - moveTo(9.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - lineTo(4.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(2.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 9.0f, 6.5f) - lineTo(9.0f, 4.0f) - close() - moveTo(9.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - lineTo(4.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(2.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 9.0f, 17.5f) - lineTo(9.0f, 20.0f) - close() - moveTo(16.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(2.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 17.5f, 9.0f) - lineTo(20.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(17.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - moveTo(15.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - lineTo(20.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.5f, 2.5f) - lineTo(15.0f, 20.0f) - close() - } - } - return _fullScreenMinimize!! - } - -private var _fullScreenMinimize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Games.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Games.kt deleted file mode 100644 index fecc7d8b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Games.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Games: ImageVector - get() { - if (_games != null) { - return _games!! - } - _games = fluentIcon(name = "Filled.Games") { - fluentPath { - moveTo(15.0f, 5.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, 0.24f, 14.0f) - lineTo(9.0f, 19.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, -0.24f, -14.0f) - lineTo(15.0f, 5.0f) - close() - moveTo(14.75f, 12.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(8.0f, 9.0f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - horizontalLineToRelative(1.6f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.1f) - verticalLineToRelative(-1.6f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - horizontalLineToRelative(-1.6f) - verticalLineToRelative(-1.5f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 8.0f, 9.0f) - close() - moveTo(16.75f, 9.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - } - } - return _games!! - } - -private var _games: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GanttChart.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GanttChart.kt deleted file mode 100644 index 7bc02e7a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GanttChart.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.GanttChart: ImageVector - get() { - if (_ganttChart != null) { - return _ganttChart!! - } - _ganttChart = fluentIcon(name = "Filled.GanttChart") { - fluentPath { - moveTo(2.0f, 7.25f) - curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(3.0f) - lineTo(6.0f, 7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, 4.0f) - horizontalLineToRelative(2.25f) - verticalLineToRelative(9.0f) - horizontalLineToRelative(-3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - close() - moveTo(9.25f, 20.0f) - verticalLineToRelative(-9.0f) - lineTo(10.0f, 11.0f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(1.0f) - verticalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.75f, 1.98f) - lineTo(14.75f, 20.0f) - horizontalLineToRelative(-5.5f) - close() - moveTo(12.0f, 10.0f) - horizontalLineToRelative(2.75f) - lineTo(14.75f, 4.0f) - horizontalLineToRelative(-5.5f) - verticalLineToRelative(3.0f) - lineTo(10.0f, 7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - verticalLineToRelative(1.0f) - close() - moveTo(18.0f, 17.0f) - horizontalLineToRelative(-2.25f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(3.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-9.5f) - curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(6.0f) - lineTo(16.0f, 10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - verticalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) - close() - moveTo(6.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(6.0f, 8.0f) - close() - moveTo(11.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(15.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-3.0f) - close() - } - } - return _ganttChart!! - } - -private var _ganttChart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Gas.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Gas.kt deleted file mode 100644 index d9a204af..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Gas.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Gas: ImageVector - get() { - if (_gas != null) { - return _gas!! - } - _gas = fluentIcon(name = "Filled.Gas") { - fluentPath { - moveTo(13.15f, 2.3f) - curveToRelative(0.14f, -0.19f, 0.36f, -0.3f, 0.6f, -0.3f) - horizontalLineToRelative(4.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(19.0f, 6.5f) - lineToRelative(-0.01f, 0.12f) - curveToRelative(0.62f, 0.5f, 1.01f, 1.27f, 1.01f, 2.13f) - verticalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 17.25f, 22.0f) - lineTo(6.75f, 22.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.0f, 19.25f) - lineTo(4.0f, 8.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 6.75f, 6.0f) - horizontalLineToRelative(0.75f) - verticalLineToRelative(-0.25f) - curveTo(7.5f, 4.78f, 6.72f, 4.0f, 5.75f, 4.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.0f) - curveTo(7.55f, 2.5f, 9.0f, 3.96f, 9.0f, 5.75f) - lineTo(9.0f, 6.0f) - horizontalLineToRelative(1.44f) - lineToRelative(2.7f, -3.7f) - close() - moveTo(17.5f, 3.5f) - horizontalLineToRelative(-3.37f) - lineTo(12.3f, 6.0f) - horizontalLineToRelative(4.95f) - lineToRelative(0.25f, 0.01f) - lineTo(17.5f, 3.5f) - close() - moveTo(8.22f, 10.22f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineTo(10.94f, 14.0f) - lineToRelative(-2.72f, 2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineTo(12.0f, 15.06f) - lineToRelative(2.72f, 2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineTo(13.06f, 14.0f) - lineToRelative(2.72f, -2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineTo(12.0f, 12.94f) - lineToRelative(-2.72f, -2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - close() - } - } - return _gas!! - } - -private var _gas: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GasPump.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GasPump.kt deleted file mode 100644 index 8bbc099d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GasPump.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.GasPump: ImageVector - get() { - if (_gasPump != null) { - return _gasPump!! - } - _gasPump = fluentIcon(name = "Filled.GasPump") { - fluentPath { - moveTo(6.75f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.0f, 5.75f) - verticalLineTo(20.5f) - horizontalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(17.0f) - verticalLineToRelative(-1.8f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 4.0f, -2.44f) - verticalLineToRelative(-5.84f) - curveToRelative(0.0f, -0.6f, -0.2f, -1.18f, -0.55f, -1.65f) - lineToRelative(-1.1f, -1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.2f, 0.9f) - lineToRelative(1.1f, 1.47f) - curveToRelative(0.16f, 0.21f, 0.25f, 0.48f, 0.25f, 0.75f) - verticalLineToRelative(5.83f) - arcToRelative(1.24f, 1.24f, 0.0f, true, true, -2.49f, 0.0f) - verticalLineTo(14.5f) - lineToRelative(-0.01f, -0.12f) - verticalLineTo(5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 14.25f, 3.0f) - horizontalLineToRelative(-7.5f) - close() - moveTo(7.0f, 6.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-3.5f) - close() - } - } - return _gasPump!! - } - -private var _gasPump: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Gauge.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Gauge.kt deleted file mode 100644 index f188caf3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Gauge.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Gauge: ImageVector - get() { - if (_gauge != null) { - return _gauge!! - } - _gauge = fluentIcon(name = "Filled.Gauge") { - fluentPath { - moveTo(12.0f, 22.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) - close() - moveTo(15.88f, 6.67f) - arcToRelative(0.63f, 0.63f, 0.0f, false, true, 0.96f, 0.76f) - lineToRelative(-0.13f, 0.25f) - arcToRelative(354.7f, 354.7f, 0.0f, false, true, -3.02f, 5.67f) - curveToRelative(-0.12f, 0.2f, -0.24f, 0.4f, -0.32f, 0.5f) - arcToRelative(1.88f, 1.88f, 0.0f, false, true, -2.94f, -2.33f) - arcToRelative(37.2f, 37.2f, 0.0f, false, true, 1.1f, -1.05f) - arcToRelative(154.39f, 154.39f, 0.0f, false, true, 4.14f, -3.62f) - lineToRelative(0.2f, -0.18f) - close() - moveTo(7.93f, 17.13f) - curveToRelative(-0.29f, 0.29f, -0.76f, 0.29f, -1.06f, 0.0f) - arcToRelative(7.25f, 7.25f, 0.0f, false, true, 6.8f, -12.19f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.34f, 1.46f) - arcToRelative(5.75f, 5.75f, 0.0f, false, false, -5.4f, 9.67f) - curveToRelative(0.3f, 0.29f, 0.3f, 0.76f, 0.0f, 1.06f) - close() - moveTo(17.89f, 9.14f) - curveToRelative(0.39f, -0.14f, 0.82f, 0.07f, 0.95f, 0.46f) - arcToRelative(7.25f, 7.25f, 0.0f, false, true, -1.71f, 7.53f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - arcToRelative(5.75f, 5.75f, 0.0f, false, false, 1.36f, -5.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.46f, -0.96f) - close() - } - } - return _gauge!! - } - -private var _gauge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Gavel.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Gavel.kt deleted file mode 100644 index 825857e6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Gavel.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Gavel: ImageVector - get() { - if (_gavel != null) { - return _gavel!! - } - _gavel = fluentIcon(name = "Filled.Gavel") { - fluentPath { - moveTo(10.73f, 2.71f) - curveToRelative(0.98f, -0.98f, 2.6f, -0.85f, 3.4f, 0.27f) - lineToRelative(0.33f, 0.44f) - lineToRelative(-6.47f, 6.47f) - lineToRelative(-0.38f, -0.25f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.35f, -3.46f) - lineToRelative(3.47f, -3.47f) - close() - moveTo(9.26f, 10.74f) - lineTo(11.82f, 12.44f) - curveToRelative(0.09f, 0.07f, 0.16f, 0.14f, 0.22f, 0.23f) - lineToRelative(1.23f, 1.94f) - lineToRelative(6.01f, -6.01f) - lineToRelative(-2.15f, -1.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.16f, -0.16f) - lineToRelative(-1.62f, -2.22f) - lineToRelative(-6.1f, 6.1f) - close() - moveTo(14.36f, 16.33f) - lineTo(14.1f, 15.91f) - lineTo(20.51f, 9.49f) - lineTo(21.02f, 9.86f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.27f, 3.41f) - lineToRelative(-3.44f, 3.44f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -3.49f, -0.38f) - close() - moveTo(9.34f, 12.3f) - lineToRelative(-6.07f, 5.96f) - arcToRelative(1.76f, 1.76f, 0.0f, true, false, 2.47f, 2.5f) - lineToRelative(6.09f, -6.09f) - lineToRelative(-0.8f, -1.24f) - lineToRelative(-1.69f, -1.13f) - close() - moveTo(14.75f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - close() - } - } - return _gavel!! - } - -private var _gavel: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Gesture.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Gesture.kt deleted file mode 100644 index 9a38a76c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Gesture.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Gesture: ImageVector - get() { - if (_gesture != null) { - return _gesture!! - } - _gesture = fluentIcon(name = "Filled.Gesture") { - fluentPath { - moveTo(3.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(7.0f, 4.0f) - horizontalLineToRelative(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(12.35f, 6.0f) - lineToRelative(8.01f, 3.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.2f, 1.77f) - lineToRelative(-0.11f, 0.06f) - lineToRelative(-14.0f, 6.97f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.74f) - lineToRelative(0.1f, -0.06f) - lineToRelative(11.98f, -5.95f) - lineToRelative(-10.9f, -4.22f) - curveToRelative(-0.99f, -0.38f, -0.76f, -1.82f, 0.25f, -1.92f) - lineTo(7.0f, 4.0f) - horizontalLineToRelative(10.0f) - lineTo(7.0f, 4.0f) - close() - moveTo(20.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - } - } - return _gesture!! - } - -private var _gesture: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Gif.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Gif.kt deleted file mode 100644 index c0ec1397..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Gif.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Gif: ImageVector - get() { - if (_gif != null) { - return _gif!! - } - _gif = fluentIcon(name = "Filled.Gif") { - fluentPath { - moveTo(18.75f, 3.5f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(5.25f, 20.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 17.25f) - lineTo(2.0f, 6.75f) - curveTo(2.0f, 4.95f, 3.46f, 3.5f, 5.25f, 3.5f) - horizontalLineToRelative(13.5f) - close() - moveTo(8.01f, 8.87f) - curveToRelative(-1.62f, 0.0f, -2.75f, 1.41f, -2.75f, 3.12f) - curveToRelative(0.0f, 1.72f, 1.13f, 3.13f, 2.75f, 3.13f) - curveToRelative(0.9f, 0.0f, 1.7f, -0.43f, 2.12f, -1.21f) - lineToRelative(0.07f, -0.17f) - lineToRelative(0.03f, -0.07f) - lineToRelative(0.01f, -0.07f) - lineToRelative(0.01f, -0.08f) - lineTo(10.25f, 11.9f) - arcToRelative(0.63f, 0.63f, 0.0f, false, false, -0.52f, -0.52f) - lineTo(8.53f, 11.38f) - arcToRelative(0.63f, 0.63f, 0.0f, false, false, -0.52f, 0.51f) - lineTo(8.0f, 12.0f) - verticalLineToRelative(0.1f) - curveToRelative(0.05f, 0.27f, 0.26f, 0.48f, 0.52f, 0.52f) - lineToRelative(0.1f, 0.01f) - lineTo(9.0f, 12.63f) - verticalLineToRelative(0.75f) - curveToRelative(-0.2f, 0.32f, -0.56f, 0.5f, -0.99f, 0.5f) - curveToRelative(-0.86f, 0.0f, -1.5f, -0.8f, -1.5f, -1.88f) - curveToRelative(0.0f, -1.07f, 0.64f, -1.87f, 1.5f, -1.87f) - curveToRelative(0.43f, 0.0f, 0.67f, 0.05f, 0.97f, 0.2f) - arcToRelative(0.63f, 0.63f, 0.0f, false, false, 0.54f, -1.14f) - curveToRelative(-0.49f, -0.23f, -0.9f, -0.3f, -1.5f, -0.3f) - close() - moveTo(12.63f, 8.99f) - arcToRelative(0.63f, 0.63f, 0.0f, false, false, -0.62f, 0.54f) - lineTo(12.01f, 14.48f) - arcToRelative(0.63f, 0.63f, 0.0f, false, false, 1.24f, 0.0f) - lineTo(13.25f, 9.51f) - arcToRelative(0.63f, 0.63f, 0.0f, false, false, -0.62f, -0.53f) - close() - moveTo(17.63f, 9.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.63f, 0.63f, 0.0f, false, false, -0.63f, 0.52f) - lineTo(15.0f, 14.46f) - curveToRelative(0.04f, 0.26f, 0.25f, 0.48f, 0.52f, 0.52f) - horizontalLineToRelative(0.2f) - arcToRelative(0.63f, 0.63f, 0.0f, false, false, 0.52f, -0.51f) - lineTo(16.24f, 13.25f) - horizontalLineToRelative(1.23f) - arcToRelative(0.63f, 0.63f, 0.0f, false, false, 0.52f, -0.52f) - verticalLineToRelative(-0.2f) - arcToRelative(0.63f, 0.63f, 0.0f, false, false, -0.52f, -0.52f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-1.12f) - verticalLineToRelative(-1.76f) - lineToRelative(1.37f, 0.01f) - horizontalLineToRelative(0.09f) - arcToRelative(0.63f, 0.63f, 0.0f, false, false, 0.0f, -1.24f) - lineTo(17.62f, 9.0f) - horizontalLineToRelative(-2.0f) - horizontalLineToRelative(2.0f) - close() - } - } - return _gif!! - } - -private var _gif: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Gift.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Gift.kt deleted file mode 100644 index 2e7cc2ad..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Gift.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Gift: ImageVector - get() { - if (_gift != null) { - return _gift!! - } - _gift = fluentIcon(name = "Filled.Gift") { - fluentPath { - moveTo(11.25f, 13.0f) - verticalLineToRelative(9.0f) - horizontalLineToRelative(-4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 4.0f, 18.75f) - lineTo(4.0f, 13.0f) - horizontalLineToRelative(7.25f) - close() - moveTo(20.0f, 13.0f) - verticalLineToRelative(5.75f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-9.0f) - lineTo(20.0f, 13.0f) - close() - moveTo(14.5f, 2.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.74f, 5.0f) - horizontalLineToRelative(2.51f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.47f, 1.25f, 1.04f) - verticalLineToRelative(2.92f) - curveToRelative(0.0f, 0.57f, -0.56f, 1.04f, -1.25f, 1.04f) - horizontalLineToRelative(-7.0f) - lineTo(12.75f, 7.0f) - horizontalLineToRelative(-1.5f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(-7.0f) - curveTo(3.56f, 12.0f, 3.0f, 11.53f, 3.0f, 10.96f) - lineTo(3.0f, 8.04f) - curveTo(3.0f, 7.47f, 3.56f, 7.0f, 4.25f, 7.0f) - horizontalLineToRelative(2.51f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 12.0f, 3.17f) - curveTo(12.6f, 2.46f, 13.5f, 2.0f, 14.5f, 2.0f) - close() - moveTo(9.5f, 3.5f) - arcTo(1.75f, 1.75f, 0.0f, false, false, 9.36f, 7.0f) - lineTo(11.25f, 7.0f) - lineTo(11.25f, 5.11f) - curveToRelative(-0.08f, -0.9f, -0.83f, -1.61f, -1.75f, -1.61f) - close() - moveTo(14.5f, 3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(12.75f, 7.0f) - horizontalLineToRelative(1.75f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, -3.5f) - close() - } - } - return _gift!! - } - -private var _gift: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GiftCard.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GiftCard.kt deleted file mode 100644 index c5ea33c7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GiftCard.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.GiftCard: ImageVector - get() { - if (_giftCard != null) { - return _giftCard!! - } - _giftCard = fluentIcon(name = "Filled.GiftCard") { - fluentPath { - moveTo(9.5f, 19.0f) - lineTo(19.0f, 19.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) - verticalLineToRelative(-4.5f) - lineTo(10.56f, 11.5f) - lineToRelative(1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(9.5f, 12.56f) - lineTo(9.5f, 19.0f) - close() - moveTo(8.0f, 10.0f) - lineTo(8.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.0f, 1.0f) - horizontalLineToRelative(1.0f) - close() - moveTo(9.5f, 9.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.0f, -1.0f) - close() - moveTo(9.5f, 6.7f) - lineTo(9.5f, 4.0f) - lineTo(19.0f, 4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(-9.2f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.3f, -3.5f) - curveToRelative(-0.36f, 0.0f, -0.7f, 0.07f, -1.0f, 0.2f) - close() - moveTo(8.0f, 4.0f) - verticalLineToRelative(2.7f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.5f, 9.0f) - curveToRelative(0.0f, 0.36f, 0.07f, 0.7f, 0.2f, 1.0f) - lineTo(2.0f, 10.0f) - lineTo(2.0f, 7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(3.0f) - close() - moveTo(8.0f, 12.56f) - lineTo(8.0f, 19.0f) - lineTo(5.0f, 19.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - verticalLineToRelative(-4.5f) - horizontalLineToRelative(4.94f) - lineToRelative(-1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineTo(8.0f, 12.56f) - close() - } - } - return _giftCard!! - } - -private var _giftCard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GiftCardAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GiftCardAdd.kt deleted file mode 100644 index 0de3a422..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GiftCardAdd.kt +++ /dev/null @@ -1,88 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.GiftCardAdd: ImageVector - get() { - if (_giftCardAdd != null) { - return _giftCardAdd!! - } - _giftCardAdd = fluentIcon(name = "Filled.GiftCardAdd") { - fluentPath { - moveTo(8.0f, 2.0f) - lineTo(5.0f, 2.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(2.7f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 7.0f, 4.5f) - curveToRelative(0.36f, 0.0f, 0.7f, 0.07f, 1.0f, 0.2f) - lineTo(8.0f, 2.0f) - close() - moveTo(2.0f, 9.5f) - lineTo(2.0f, 14.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-6.44f) - lineToRelative(-1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineTo(6.94f, 9.5f) - lineTo(2.0f, 9.5f) - close() - moveTo(9.5f, 17.0f) - horizontalLineToRelative(1.52f) - arcTo(6.5f, 6.5f, 0.0f, false, true, 22.0f, 12.81f) - lineTo(22.0f, 9.5f) - lineTo(10.56f, 9.5f) - lineToRelative(1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(9.5f, 10.56f) - lineTo(9.5f, 17.0f) - close() - moveTo(22.0f, 8.0f) - horizontalLineToRelative(-9.2f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.3f, -3.5f) - curveToRelative(-0.36f, 0.0f, -0.7f, 0.07f, -1.0f, 0.2f) - lineTo(9.5f, 2.0f) - lineTo(19.0f, 2.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(3.0f) - close() - moveTo(10.5f, 8.0f) - horizontalLineToRelative(-1.0f) - lineTo(9.5f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.0f, 1.0f) - close() - moveTo(8.0f, 8.0f) - lineTo(7.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.0f, -1.0f) - verticalLineToRelative(1.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _giftCardAdd!! - } - -private var _giftCardAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GiftCardArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GiftCardArrowRight.kt deleted file mode 100644 index 5b3e1667..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GiftCardArrowRight.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.GiftCardArrowRight: ImageVector - get() { - if (_giftCardArrowRight != null) { - return _giftCardArrowRight!! - } - _giftCardArrowRight = fluentIcon(name = "Filled.GiftCardArrowRight") { - fluentPath { - moveTo(8.0f, 2.0f) - lineTo(5.0f, 2.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(2.7f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 7.0f, 4.5f) - curveToRelative(0.36f, 0.0f, 0.7f, 0.07f, 1.0f, 0.2f) - lineTo(8.0f, 2.0f) - close() - moveTo(2.0f, 9.5f) - lineTo(2.0f, 14.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-6.44f) - lineToRelative(-1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineTo(6.94f, 9.5f) - lineTo(2.0f, 9.5f) - close() - moveTo(9.5f, 17.0f) - horizontalLineToRelative(1.52f) - arcTo(6.5f, 6.5f, 0.0f, false, true, 22.0f, 12.81f) - lineTo(22.0f, 9.5f) - lineTo(10.56f, 9.5f) - lineToRelative(1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(9.5f, 10.56f) - lineTo(9.5f, 17.0f) - close() - moveTo(22.0f, 8.0f) - horizontalLineToRelative(-9.2f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.3f, -3.5f) - curveToRelative(-0.36f, 0.0f, -0.7f, 0.07f, -1.0f, 0.2f) - lineTo(9.5f, 2.0f) - lineTo(19.0f, 2.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(3.0f) - close() - moveTo(10.5f, 8.0f) - horizontalLineToRelative(-1.0f) - lineTo(9.5f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.0f, 1.0f) - close() - moveTo(8.0f, 8.0f) - lineTo(7.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.0f, -1.0f) - verticalLineToRelative(1.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(19.29f, 17.0f) - lineTo(14.5f, 17.0f) - close() - } - } - return _giftCardArrowRight!! - } - -private var _giftCardArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GiftCardMoney.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GiftCardMoney.kt deleted file mode 100644 index fd05ed47..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GiftCardMoney.kt +++ /dev/null @@ -1,111 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.GiftCardMoney: ImageVector - get() { - if (_giftCardMoney != null) { - return _giftCardMoney!! - } - _giftCardMoney = fluentIcon(name = "Filled.GiftCardMoney") { - fluentPath { - moveTo(8.0f, 2.0f) - lineTo(5.0f, 2.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(2.7f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 7.0f, 4.5f) - curveToRelative(0.36f, 0.0f, 0.7f, 0.07f, 1.0f, 0.2f) - lineTo(8.0f, 2.0f) - close() - moveTo(2.0f, 9.5f) - lineTo(2.0f, 14.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-6.44f) - lineToRelative(-1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineTo(6.94f, 9.5f) - lineTo(2.0f, 9.5f) - close() - moveTo(9.5f, 17.0f) - lineTo(11.0f, 17.0f) - verticalLineToRelative(-0.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, -2.5f) - horizontalLineToRelative(8.0f) - curveToRelative(0.17f, 0.0f, 0.34f, 0.02f, 0.5f, 0.05f) - lineTo(22.0f, 9.5f) - lineTo(10.56f, 9.5f) - lineToRelative(1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(9.5f, 10.56f) - lineTo(9.5f, 17.0f) - close() - moveTo(22.0f, 8.0f) - horizontalLineToRelative(-9.2f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.3f, -3.5f) - curveToRelative(-0.36f, 0.0f, -0.7f, 0.07f, -1.0f, 0.2f) - lineTo(9.5f, 2.0f) - lineTo(19.0f, 2.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(3.0f) - close() - moveTo(10.5f, 8.0f) - horizontalLineToRelative(-1.0f) - lineTo(9.5f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.0f, 1.0f) - close() - moveTo(8.0f, 8.0f) - lineTo(7.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.0f, -1.0f) - verticalLineToRelative(1.0f) - close() - moveTo(12.0f, 16.5f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(8.0f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - verticalLineToRelative(-4.0f) - close() - moveTo(22.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - horizontalLineToRelative(-1.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(22.0f, 19.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(14.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - verticalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - horizontalLineToRelative(-1.0f) - close() - moveTo(15.0f, 21.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - verticalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - horizontalLineToRelative(1.0f) - close() - moveTo(19.25f, 18.5f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, -3.5f, 0.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 3.5f, 0.0f) - close() - } - } - return _giftCardMoney!! - } - -private var _giftCardMoney: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GiftCardMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GiftCardMultiple.kt deleted file mode 100644 index a540b354..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GiftCardMultiple.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.GiftCardMultiple: ImageVector - get() { - if (_giftCardMultiple != null) { - return _giftCardMultiple!! - } - _giftCardMultiple = fluentIcon(name = "Filled.GiftCardMultiple") { - fluentPath { - moveTo(5.0f, 4.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(2.7f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.5f, 9.0f) - curveToRelative(0.0f, 0.36f, 0.07f, 0.7f, 0.2f, 1.0f) - lineTo(2.0f, 10.0f) - lineTo(2.0f, 7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - close() - moveTo(2.0f, 14.5f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(4.94f) - lineToRelative(-1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineTo(8.0f, 12.56f) - verticalLineToRelative(4.94f) - lineTo(5.0f, 17.5f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - close() - moveTo(9.5f, 17.5f) - horizontalLineToRelative(7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(-8.94f) - lineToRelative(1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(9.5f, 12.56f) - verticalLineToRelative(4.94f) - close() - moveTo(12.8f, 10.0f) - horizontalLineToRelative(6.7f) - lineTo(19.5f, 7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - horizontalLineToRelative(-7.0f) - verticalLineToRelative(2.7f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 13.0f, 9.0f) - curveToRelative(0.0f, 0.36f, -0.07f, 0.7f, -0.2f, 1.0f) - close() - moveTo(10.5f, 10.0f) - horizontalLineToRelative(-1.0f) - lineTo(9.5f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.0f, 1.0f) - close() - moveTo(7.0f, 10.0f) - horizontalLineToRelative(1.0f) - lineTo(8.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.0f, 1.0f) - close() - moveTo(7.5f, 20.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.6f, -1.5f) - horizontalLineToRelative(11.6f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, -4.0f) - lineTo(20.5f, 6.9f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 22.0f, 9.5f) - verticalLineToRelative(5.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, -5.5f, 5.5f) - horizontalLineToRelative(-9.0f) - close() - } - } - return _giftCardMultiple!! - } - -private var _giftCardMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Glance.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Glance.kt deleted file mode 100644 index 56402d30..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Glance.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Glance: ImageVector - get() { - if (_glance != null) { - return _glance!! - } - _glance = fluentIcon(name = "Filled.Glance") { - fluentPath { - moveTo(19.25f, 11.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.79f, 1.75f, 1.75f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-6.5f) - curveToRelative(0.0f, -0.96f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(4.5f) - close() - moveTo(9.27f, 15.01f) - curveToRelative(0.96f, 0.0f, 1.75f, 0.79f, 1.75f, 1.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.96f, -0.79f, 1.74f, -1.75f, 1.74f) - lineTo(4.75f, 21.0f) - curveTo(3.8f, 21.0f, 3.0f, 20.22f, 3.0f, 19.25f) - verticalLineToRelative(-2.49f) - curveToRelative(0.0f, -0.96f, 0.79f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(4.52f) - close() - moveTo(9.25f, 3.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 0.92f, -0.7f, 1.67f, -1.6f, 1.74f) - lineToRelative(-0.15f, 0.01f) - horizontalLineToRelative(-4.5f) - curveTo(3.8f, 13.0f, 3.0f, 12.22f, 3.0f, 11.25f) - verticalLineToRelative(-6.5f) - curveTo(3.0f, 3.78f, 3.8f, 3.0f, 4.75f, 3.0f) - horizontalLineToRelative(4.5f) - close() - moveTo(19.25f, 3.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(2.5f) - curveTo(21.0f, 8.22f, 20.22f, 9.0f, 19.25f, 9.0f) - horizontalLineToRelative(-4.5f) - curveTo(13.78f, 9.0f, 13.0f, 8.22f, 13.0f, 7.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(4.5f) - close() - } - } - return _glance!! - } - -private var _glance: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlanceHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlanceHorizontal.kt deleted file mode 100644 index 486db476..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlanceHorizontal.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.GlanceHorizontal: ImageVector - get() { - if (_glanceHorizontal != null) { - return _glanceHorizontal!! - } - _glanceHorizontal = fluentIcon(name = "Filled.GlanceHorizontal") { - fluentPath { - moveTo(13.0f, 4.75f) - curveTo(13.0f, 3.8f, 12.22f, 3.0f, 11.25f, 3.0f) - horizontalLineToRelative(-6.5f) - curveTo(3.78f, 3.0f, 3.0f, 3.8f, 3.0f, 4.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(6.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-4.5f) - close() - moveTo(9.0f, 14.73f) - curveToRelative(0.0f, -0.96f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(4.75f, 12.98f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.79f, -1.75f, 1.75f) - verticalLineToRelative(4.52f) - curveTo(3.0f, 20.2f, 3.78f, 21.0f, 4.75f, 21.0f) - horizontalLineToRelative(2.49f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.79f, 1.75f, -1.75f) - verticalLineToRelative(-4.52f) - close() - moveTo(21.01f, 14.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-6.5f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - verticalLineToRelative(4.65f) - curveToRelative(0.0f, 0.96f, 0.78f, 1.75f, 1.74f, 1.75f) - horizontalLineToRelative(6.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.79f, 1.75f, -1.75f) - verticalLineToRelative(-4.5f) - close() - moveTo(21.01f, 4.75f) - curveTo(21.0f, 3.8f, 20.22f, 3.0f, 19.25f, 3.0f) - horizontalLineToRelative(-2.5f) - curveTo(15.8f, 3.0f, 15.0f, 3.8f, 15.0f, 4.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.97f, 0.79f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-4.5f) - close() - } - } - return _glanceHorizontal!! - } - -private var _glanceHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlanceHorizontalSparkles.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlanceHorizontalSparkles.kt deleted file mode 100644 index b112800d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlanceHorizontalSparkles.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.GlanceHorizontalSparkles: ImageVector - get() { - if (_glanceHorizontalSparkles != null) { - return _glanceHorizontalSparkles!! - } - _glanceHorizontalSparkles = fluentIcon(name = "Filled.GlanceHorizontalSparkles") { - fluentPath { - moveTo(16.09f, 6.41f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.35f, -0.95f) - lineTo(13.36f, 5.0f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, -1.03f) - lineToRelative(1.38f, -0.44f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.76f, -1.77f) - lineToRelative(0.01f, -0.03f) - lineToRelative(0.45f, -1.38f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, 1.03f, 0.0f) - lineToRelative(0.44f, 1.38f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.8f, 1.8f) - lineToRelative(1.38f, 0.44f) - lineToRelative(0.03f, 0.01f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, 1.03f) - lineToRelative(-1.38f, 0.44f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.8f, 1.8f) - lineToRelative(-0.45f, 1.38f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, -1.03f, 0.0f) - lineToRelative(-0.44f, -1.38f) - curveToRelative(-0.1f, -0.3f, -0.25f, -0.6f, -0.45f, -0.85f) - close() - moveTo(23.79f, 10.21f) - lineTo(23.02f, 9.96f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, -1.0f, -1.0f) - lineToRelative(-0.25f, -0.76f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, -0.57f, 0.0f) - lineToRelative(-0.25f, 0.77f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, -0.98f, 1.0f) - lineToRelative(-0.77f, 0.24f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.77f, 0.25f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, 1.0f) - lineToRelative(0.24f, 0.77f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.58f, 0.0f) - lineToRelative(0.24f, -0.77f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, -1.0f) - lineToRelative(0.77f, -0.24f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, -0.57f) - horizontalLineToRelative(-0.02f) - close() - moveTo(10.25f, 3.01f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.74f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-5.5f) - curveTo(3.78f, 11.0f, 3.0f, 10.22f, 3.0f, 9.25f) - verticalLineToRelative(-4.5f) - curveTo(3.0f, 3.8f, 3.78f, 3.0f, 4.75f, 3.0f) - horizontalLineToRelative(5.5f) - close() - moveTo(7.24f, 12.98f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.79f, 1.75f, 1.75f) - verticalLineToRelative(4.52f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(4.75f, 21.0f) - curveTo(3.78f, 21.0f, 3.0f, 20.22f, 3.0f, 19.25f) - verticalLineToRelative(-4.52f) - curveToRelative(0.0f, -0.96f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.49f) - close() - moveTo(19.25f, 13.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-6.5f) - curveToRelative(-0.96f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(11.0f, 14.6f) - curveToRelative(0.08f, -0.9f, 0.83f, -1.61f, 1.75f, -1.61f) - horizontalLineToRelative(6.5f) - close() - } - } - return _glanceHorizontalSparkles!! - } - -private var _glanceHorizontalSparkles: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Glasses.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Glasses.kt deleted file mode 100644 index 185736f2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Glasses.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Glasses: ImageVector - get() { - if (_glasses != null) { - return _glasses!! - } - _glasses = fluentIcon(name = "Filled.Glasses") { - fluentPath { - moveTo(7.9f, 5.0f) - horizontalLineToRelative(0.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-0.94f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.48f, 0.17f) - lineToRelative(-0.07f, 0.07f) - lineTo(5.28f, 9.0f) - horizontalLineToRelative(3.47f) - curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) - horizontalLineTo(13.0f) - curveToRelative(0.13f, -1.12f, 1.08f, -2.0f, 2.24f, -2.0f) - horizontalLineToRelative(3.48f) - lineToRelative(-2.09f, -2.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.44f, -0.23f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-0.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.94f) - curveToRelative(0.57f, 0.0f, 1.11f, 0.21f, 1.52f, 0.6f) - lineToRelative(0.14f, 0.12f) - lineToRelative(3.64f, 3.95f) - lineToRelative(0.12f, 0.18f) - curveToRelative(0.3f, 0.38f, 0.49f, 0.87f, 0.49f, 1.4f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-2.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 13.0f, 14.75f) - verticalLineTo(12.5f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(2.25f) - curveTo(11.0f, 16.55f, 9.54f, 18.0f, 7.75f, 18.0f) - horizontalLineToRelative(-2.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.56f, 0.2f, -1.08f, 0.55f, -1.47f) - lineToRelative(0.03f, -0.06f) - lineToRelative(0.05f, -0.05f) - lineToRelative(3.62f, -3.94f) - curveToRelative(0.39f, -0.42f, 0.91f, -0.68f, 1.47f, -0.72f) - lineTo(7.91f, 5.0f) - horizontalLineToRelative(0.84f) - horizontalLineToRelative(-0.84f) - close() - } - } - return _glasses!! - } - -private var _glasses: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlassesOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlassesOff.kt deleted file mode 100644 index 3f59e213..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlassesOff.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.GlassesOff: ImageVector - get() { - if (_glassesOff != null) { - return _glassesOff!! - } - _glassesOff = fluentIcon(name = "Filled.GlassesOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(3.27f, 3.27f) - lineToRelative(-2.86f, 3.12f) - lineToRelative(-0.05f, 0.05f) - lineToRelative(-0.03f, 0.06f) - curveToRelative(-0.34f, 0.4f, -0.55f, 0.9f, -0.55f, 1.47f) - verticalLineToRelative(3.5f) - curveTo(2.0f, 16.55f, 3.46f, 18.0f, 5.25f, 18.0f) - horizontalLineToRelative(2.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(11.0f, 12.5f) - horizontalLineToRelative(0.44f) - lineTo(13.0f, 14.06f) - verticalLineToRelative(0.69f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(0.69f) - lineToRelative(3.78f, 3.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(7.94f, 9.0f) - lineTo(5.28f, 9.0f) - lineToRelative(1.27f, -1.38f) - lineTo(7.94f, 9.0f) - close() - moveTo(13.3f, 10.12f) - lineTo(20.6f, 17.42f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 1.4f, -2.67f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.53f, -0.18f, -1.02f, -0.49f, -1.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.12f, -0.18f) - lineToRelative(-3.64f, -3.95f) - lineToRelative(-0.14f, -0.13f) - curveTo(17.2f, 5.21f, 16.66f, 5.0f, 16.1f, 5.0f) - horizontalLineToRelative(-0.94f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(0.94f) - curveToRelative(0.18f, 0.03f, 0.34f, 0.11f, 0.45f, 0.24f) - lineTo(18.73f, 9.0f) - horizontalLineToRelative(-3.48f) - curveToRelative(-0.83f, 0.0f, -1.56f, 0.45f, -1.95f, 1.12f) - close() - } - } - return _glassesOff!! - } - -private var _glassesOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Globe.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Globe.kt deleted file mode 100644 index 14db1470..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Globe.kt +++ /dev/null @@ -1,93 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Globe: ImageVector - get() { - if (_globe != null) { - return _globe!! - } - _globe = fluentIcon(name = "Filled.Globe") { - fluentPath { - moveTo(8.9f, 16.5f) - horizontalLineToRelative(6.2f) - curveToRelative(-0.62f, 3.27f, -1.87f, 5.5f, -3.1f, 5.5f) - curveToRelative(-1.2f, 0.0f, -2.4f, -2.1f, -3.04f, -5.2f) - lineToRelative(-0.06f, -0.3f) - horizontalLineToRelative(6.2f) - horizontalLineToRelative(-6.2f) - close() - moveTo(3.07f, 16.5f) - horizontalLineToRelative(4.3f) - curveToRelative(0.37f, 2.08f, 0.98f, 3.85f, 1.8f, 5.1f) - arcToRelative(10.03f, 10.03f, 0.0f, false, true, -5.96f, -4.82f) - lineToRelative(-0.14f, -0.28f) - close() - moveTo(16.63f, 16.5f) - horizontalLineToRelative(4.3f) - arcToRelative(10.03f, 10.03f, 0.0f, false, true, -6.1f, 5.1f) - arcToRelative(13.47f, 13.47f, 0.0f, false, false, 1.72f, -4.69f) - lineToRelative(0.08f, -0.4f) - horizontalLineToRelative(4.3f) - horizontalLineToRelative(-4.3f) - close() - moveTo(16.93f, 10.0f) - horizontalLineToRelative(4.87f) - arcToRelative(10.05f, 10.05f, 0.0f, false, true, -0.26f, 5.0f) - horizontalLineToRelative(-4.7f) - arcToRelative(27.53f, 27.53f, 0.0f, false, false, 0.13f, -4.34f) - lineToRelative(-0.04f, -0.66f) - horizontalLineToRelative(4.87f) - horizontalLineToRelative(-4.87f) - close() - moveTo(2.2f, 10.0f) - horizontalLineToRelative(4.87f) - arcToRelative(28.21f, 28.21f, 0.0f, false, false, 0.03f, 4.42f) - lineToRelative(0.06f, 0.58f) - horizontalLineToRelative(-4.7f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -0.26f, -5.0f) - close() - moveTo(8.58f, 10.0f) - horizontalLineToRelative(6.84f) - arcToRelative(25.84f, 25.84f, 0.0f, false, true, -0.03f, 4.43f) - lineToRelative(-0.06f, 0.57f) - lineTo(8.67f, 15.0f) - arcToRelative(25.36f, 25.36f, 0.0f, false, true, -0.13f, -4.51f) - lineToRelative(0.04f, -0.49f) - horizontalLineToRelative(6.84f) - horizontalLineToRelative(-6.84f) - close() - moveTo(14.94f, 2.58f) - lineTo(14.84f, 2.41f) - curveToRelative(3.01f, 0.89f, 5.44f, 3.16f, 6.53f, 6.09f) - horizontalLineToRelative(-4.59f) - curveToRelative(-0.31f, -2.42f, -0.96f, -4.5f, -1.84f, -5.92f) - lineToRelative(-0.1f, -0.17f) - lineToRelative(0.1f, 0.17f) - close() - moveTo(9.04f, 2.44f) - lineTo(9.16f, 2.41f) - arcToRelative(14.57f, 14.57f, 0.0f, false, false, -1.88f, 5.65f) - lineToRelative(-0.06f, 0.44f) - horizontalLineToRelative(-4.6f) - arcToRelative(10.03f, 10.03f, 0.0f, false, true, 6.42f, -6.06f) - lineToRelative(0.12f, -0.03f) - lineToRelative(-0.12f, 0.03f) - close() - moveTo(12.0f, 2.0f) - curveToRelative(1.32f, 0.0f, 2.65f, 2.54f, 3.21f, 6.19f) - lineToRelative(0.05f, 0.31f) - lineTo(8.74f, 8.5f) - curveTo(9.28f, 4.7f, 10.64f, 2.0f, 12.0f, 2.0f) - close() - } - } - return _globe!! - } - -private var _globe: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlobeAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlobeAdd.kt deleted file mode 100644 index 544c5ad3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlobeAdd.kt +++ /dev/null @@ -1,108 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.GlobeAdd: ImageVector - get() { - if (_globeAdd != null) { - return _globeAdd!! - } - _globeAdd = fluentIcon(name = "Filled.GlobeAdd") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(11.08f, 16.5f) - arcToRelative(6.55f, 6.55f, 0.0f, false, false, 1.55f, 5.3f) - curveToRelative(-0.2f, 0.13f, -0.42f, 0.2f, -0.63f, 0.2f) - curveToRelative(-1.2f, 0.0f, -2.4f, -2.1f, -3.04f, -5.2f) - lineToRelative(-0.05f, -0.3f) - horizontalLineToRelative(2.17f) - close() - moveTo(7.38f, 16.5f) - curveToRelative(0.36f, 2.08f, 0.98f, 3.85f, 1.79f, 5.1f) - arcToRelative(10.03f, 10.03f, 0.0f, false, true, -6.1f, -5.1f) - horizontalLineToRelative(4.3f) - close() - moveTo(17.5f, 14.0f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) - lineToRelative(-0.01f, 0.1f) - lineTo(17.0f, 17.0f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(0.18f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) - lineToRelative(0.1f, 0.01f) - lineTo(17.0f, 18.0f) - verticalLineToRelative(2.6f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - horizontalLineToRelative(0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) - lineToRelative(0.01f, -0.1f) - lineTo(18.0f, 18.0f) - horizontalLineToRelative(2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - verticalLineToRelative(-0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) - lineToRelative(-0.1f, -0.01f) - lineTo(18.0f, 17.0f) - verticalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) - horizontalLineToRelative(-0.09f) - close() - moveTo(7.07f, 10.0f) - arcToRelative(28.2f, 28.2f, 0.0f, false, false, 0.03f, 4.42f) - lineToRelative(0.06f, 0.58f) - horizontalLineToRelative(-4.7f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -0.26f, -5.0f) - horizontalLineToRelative(4.87f) - close() - moveTo(15.43f, 10.0f) - curveToRelative(0.03f, 0.43f, 0.05f, 0.87f, 0.06f, 1.31f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -4.0f, 3.69f) - lineTo(8.69f, 15.0f) - arcToRelative(25.36f, 25.36f, 0.0f, false, true, -0.14f, -4.51f) - lineToRelative(0.04f, -0.5f) - horizontalLineToRelative(6.85f) - close() - moveTo(21.8f, 10.0f) - arcToRelative(10.05f, 10.05f, 0.0f, false, true, 0.17f, 2.78f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, -4.99f, -1.76f) - verticalLineToRelative(-0.37f) - lineToRelative(-0.05f, -0.65f) - horizontalLineToRelative(4.87f) - close() - moveTo(14.84f, 2.4f) - curveToRelative(3.02f, 0.9f, 5.44f, 3.17f, 6.53f, 6.1f) - horizontalLineToRelative(-4.59f) - curveToRelative(-0.3f, -2.27f, -0.88f, -4.23f, -1.67f, -5.65f) - lineToRelative(-0.16f, -0.27f) - lineToRelative(-0.11f, -0.18f) - close() - moveTo(9.17f, 2.4f) - arcToRelative(14.57f, 14.57f, 0.0f, false, false, -1.89f, 5.66f) - lineToRelative(-0.06f, 0.44f) - lineTo(2.63f, 8.5f) - arcToRelative(10.03f, 10.03f, 0.0f, false, true, 6.1f, -5.96f) - lineToRelative(0.31f, -0.1f) - lineToRelative(0.13f, -0.04f) - close() - moveTo(12.0f, 2.0f) - curveToRelative(1.32f, 0.0f, 2.65f, 2.54f, 3.22f, 6.18f) - lineToRelative(0.04f, 0.32f) - lineTo(8.74f, 8.5f) - curveTo(9.28f, 4.69f, 10.64f, 2.0f, 12.0f, 2.0f) - close() - } - } - return _globeAdd!! - } - -private var _globeAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlobeClock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlobeClock.kt deleted file mode 100644 index abc93c82..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlobeClock.kt +++ /dev/null @@ -1,94 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.GlobeClock: ImageVector - get() { - if (_globeClock != null) { - return _globeClock!! - } - _globeClock = fluentIcon(name = "Filled.GlobeClock") { - fluentPath { - moveTo(11.0f, 17.5f) - curveToRelative(0.0f, -0.34f, 0.03f, -0.68f, 0.08f, -1.0f) - lineTo(8.9f, 16.5f) - lineToRelative(0.05f, 0.3f) - curveTo(9.6f, 19.9f, 10.8f, 22.0f, 12.0f, 22.0f) - curveToRelative(0.21f, 0.0f, 0.42f, -0.07f, 0.63f, -0.2f) - arcTo(6.48f, 6.48f, 0.0f, false, true, 11.0f, 17.5f) - close() - moveTo(9.17f, 21.6f) - arcToRelative(13.93f, 13.93f, 0.0f, false, true, -1.8f, -5.1f) - horizontalLineToRelative(-4.3f) - arcToRelative(10.03f, 10.03f, 0.0f, false, false, 6.1f, 5.1f) - close() - moveTo(7.0f, 12.0f) - curveToRelative(0.0f, -0.68f, 0.02f, -1.35f, 0.07f, -2.0f) - lineTo(2.2f, 10.0f) - arcToRelative(10.05f, 10.05f, 0.0f, false, false, 0.26f, 5.0f) - horizontalLineToRelative(4.7f) - lineToRelative(-0.06f, -0.58f) - curveToRelative(-0.06f, -0.78f, -0.1f, -1.6f, -0.1f, -2.42f) - close() - moveTo(15.5f, 11.31f) - lineTo(15.42f, 10.0f) - lineTo(8.58f, 10.0f) - lineToRelative(-0.04f, 0.49f) - arcToRelative(25.97f, 25.97f, 0.0f, false, false, 0.14f, 4.5f) - horizontalLineToRelative(2.82f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, 4.0f, -3.68f) - close() - moveTo(22.0f, 12.0f) - curveToRelative(0.0f, -0.69f, -0.07f, -1.36f, -0.2f, -2.0f) - horizontalLineToRelative(-4.87f) - lineToRelative(0.04f, 0.65f) - lineToRelative(0.01f, 0.37f) - lineToRelative(0.52f, -0.02f) - curveToRelative(1.73f, 0.0f, 3.3f, 0.68f, 4.47f, 1.78f) - lineTo(22.0f, 12.0f) - close() - moveTo(21.37f, 8.5f) - arcToRelative(10.03f, 10.03f, 0.0f, false, false, -6.53f, -6.1f) - lineToRelative(0.1f, 0.18f) - lineToRelative(0.17f, 0.27f) - curveToRelative(0.8f, 1.42f, 1.38f, 3.38f, 1.67f, 5.65f) - horizontalLineToRelative(4.6f) - close() - moveTo(7.28f, 8.06f) - curveToRelative(0.35f, -2.33f, 1.0f, -4.3f, 1.89f, -5.66f) - lineToRelative(-0.13f, 0.04f) - lineToRelative(-0.3f, 0.1f) - arcTo(10.03f, 10.03f, 0.0f, false, false, 2.63f, 8.5f) - horizontalLineToRelative(4.6f) - lineToRelative(0.05f, -0.44f) - close() - moveTo(15.22f, 8.18f) - curveTo(14.65f, 4.54f, 13.32f, 2.0f, 12.0f, 2.0f) - curveToRelative(-1.35f, 0.0f, -2.72f, 2.69f, -3.26f, 6.5f) - horizontalLineToRelative(6.52f) - lineToRelative(-0.04f, -0.32f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(17.5f, 17.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(17.0f, 18.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - verticalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - verticalLineToRelative(2.5f) - close() - } - } - return _globeClock!! - } - -private var _globeClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlobeDesktop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlobeDesktop.kt deleted file mode 100644 index e36699f5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlobeDesktop.kt +++ /dev/null @@ -1,98 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.GlobeDesktop: ImageVector - get() { - if (_globeDesktop != null) { - return _globeDesktop!! - } - _globeDesktop = fluentIcon(name = "Filled.GlobeDesktop") { - fluentPath { - moveTo(11.0f, 16.5f) - lineTo(8.9f, 16.5f) - lineToRelative(0.06f, 0.3f) - curveTo(9.6f, 19.9f, 10.8f, 22.0f, 12.0f, 22.0f) - curveToRelative(0.5f, 0.0f, 1.0f, -0.36f, 1.45f, -1.0f) - lineTo(13.0f, 21.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - verticalLineToRelative(-2.5f) - close() - moveTo(11.0f, 15.0f) - lineTo(8.67f, 15.0f) - arcToRelative(25.36f, 25.36f, 0.0f, false, true, -0.13f, -4.51f) - lineToRelative(0.04f, -0.49f) - horizontalLineToRelative(6.84f) - curveToRelative(0.05f, 0.65f, 0.08f, 1.31f, 0.08f, 2.0f) - lineTo(13.0f, 12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(1.0f) - close() - moveTo(22.0f, 12.0f) - horizontalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.45f, 0.0f, -0.9f, -0.03f, -1.34f) - lineToRelative(-0.04f, -0.66f) - horizontalLineToRelative(4.87f) - curveToRelative(0.13f, 0.65f, 0.2f, 1.32f, 0.2f, 2.0f) - close() - moveTo(7.37f, 16.5f) - horizontalLineToRelative(-4.3f) - lineToRelative(0.14f, 0.28f) - arcToRelative(10.03f, 10.03f, 0.0f, false, false, 5.95f, 4.81f) - arcToRelative(13.93f, 13.93f, 0.0f, false, true, -1.79f, -5.09f) - close() - moveTo(7.07f, 10.0f) - lineTo(2.2f, 10.0f) - arcToRelative(10.05f, 10.05f, 0.0f, false, false, 0.26f, 5.0f) - horizontalLineToRelative(4.7f) - lineToRelative(-0.06f, -0.58f) - arcTo(27.94f, 27.94f, 0.0f, false, true, 7.07f, 10.0f) - close() - moveTo(14.84f, 2.4f) - lineTo(14.94f, 2.58f) - curveToRelative(0.88f, 1.43f, 1.53f, 3.5f, 1.84f, 5.92f) - horizontalLineToRelative(4.6f) - arcToRelative(10.03f, 10.03f, 0.0f, false, false, -6.54f, -6.1f) - close() - moveTo(9.16f, 2.4f) - lineTo(9.04f, 2.44f) - arcTo(10.03f, 10.03f, 0.0f, false, false, 2.63f, 8.5f) - horizontalLineToRelative(4.59f) - lineToRelative(0.06f, -0.44f) - curveToRelative(0.35f, -2.32f, 1.0f, -4.3f, 1.88f, -5.65f) - close() - moveTo(15.21f, 8.19f) - curveTo(14.65f, 4.54f, 13.31f, 2.0f, 12.0f, 2.0f) - curveToRelative(-1.36f, 0.0f, -2.72f, 2.7f, -3.26f, 6.5f) - horizontalLineToRelative(6.52f) - lineToRelative(-0.05f, -0.31f) - close() - moveTo(12.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineToRelative(0.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineToRelative(-5.0f) - close() - } - } - return _globeDesktop!! - } - -private var _globeDesktop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlobeLocation.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlobeLocation.kt deleted file mode 100644 index 0c2b4989..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlobeLocation.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.GlobeLocation: ImageVector - get() { - if (_globeLocation != null) { - return _globeLocation!! - } - _globeLocation = fluentIcon(name = "Filled.GlobeLocation") { - fluentPath { - moveTo(8.9f, 16.5f) - horizontalLineToRelative(3.62f) - lineToRelative(-0.02f, 0.5f) - curveToRelative(0.0f, 1.2f, 0.46f, 2.36f, 1.27f, 3.49f) - curveToRelative(-0.54f, 0.96f, -1.15f, 1.5f, -1.77f, 1.5f) - curveToRelative(-1.2f, 0.0f, -2.4f, -2.08f, -3.04f, -5.2f) - lineToRelative(-0.06f, -0.29f) - close() - moveTo(8.67f, 15.0f) - horizontalLineToRelative(4.2f) - arcToRelative(5.52f, 5.52f, 0.0f, false, true, 2.63f, -2.9f) - lineTo(15.5f, 12.0f) - curveToRelative(0.0f, -0.69f, -0.03f, -1.35f, -0.08f, -2.0f) - lineTo(8.58f, 10.0f) - lineToRelative(-0.04f, 0.49f) - arcTo(25.99f, 25.99f, 0.0f, false, false, 8.67f, 15.0f) - close() - moveTo(18.0f, 11.5f) - curveToRelative(1.54f, 0.0f, 2.94f, 0.63f, 3.94f, 1.66f) - arcTo(10.1f, 10.1f, 0.0f, false, false, 21.8f, 10.0f) - horizontalLineToRelative(-4.87f) - lineToRelative(0.04f, 0.66f) - lineToRelative(0.03f, 0.93f) - curveToRelative(0.32f, -0.06f, 0.66f, -0.09f, 1.0f, -0.09f) - close() - moveTo(3.07f, 16.5f) - horizontalLineToRelative(4.3f) - curveToRelative(0.37f, 2.08f, 0.98f, 3.85f, 1.8f, 5.1f) - arcToRelative(10.03f, 10.03f, 0.0f, false, true, -5.96f, -4.82f) - lineToRelative(-0.14f, -0.28f) - close() - moveTo(2.2f, 10.0f) - horizontalLineToRelative(4.87f) - arcToRelative(28.21f, 28.21f, 0.0f, false, false, 0.03f, 4.42f) - lineToRelative(0.06f, 0.58f) - horizontalLineToRelative(-4.7f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -0.26f, -5.0f) - close() - moveTo(14.94f, 2.58f) - lineTo(14.84f, 2.41f) - curveToRelative(3.01f, 0.89f, 5.44f, 3.16f, 6.53f, 6.09f) - horizontalLineToRelative(-4.59f) - curveToRelative(-0.31f, -2.42f, -0.96f, -4.5f, -1.84f, -5.92f) - close() - moveTo(9.04f, 2.44f) - lineTo(9.16f, 2.41f) - arcToRelative(14.57f, 14.57f, 0.0f, false, false, -1.88f, 5.65f) - lineToRelative(-0.06f, 0.44f) - horizontalLineToRelative(-4.6f) - arcToRelative(10.03f, 10.03f, 0.0f, false, true, 6.42f, -6.06f) - close() - moveTo(12.0f, 2.0f) - curveToRelative(1.32f, 0.0f, 2.65f, 2.54f, 3.21f, 6.19f) - lineToRelative(0.05f, 0.31f) - lineTo(8.74f, 8.5f) - curveTo(9.28f, 4.7f, 10.64f, 2.0f, 12.0f, 2.0f) - close() - moveTo(22.5f, 17.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, -9.0f, 0.0f) - curveToRelative(0.0f, 1.86f, 1.42f, 3.81f, 4.2f, 5.9f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.6f, 0.0f) - curveToRelative(2.78f, -2.09f, 4.2f, -4.04f, 4.2f, -5.9f) - close() - moveTo(16.5f, 17.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - } - } - return _globeLocation!! - } - -private var _globeLocation: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlobePerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlobePerson.kt deleted file mode 100644 index 7782e83f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlobePerson.kt +++ /dev/null @@ -1,94 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.GlobePerson: ImageVector - get() { - if (_globePerson != null) { - return _globePerson!! - } - _globePerson = fluentIcon(name = "Filled.GlobePerson") { - fluentPath { - moveToRelative(15.1f, 16.5f) - lineToRelative(-0.13f, 0.62f) - arcTo(2.77f, 2.77f, 0.0f, false, false, 13.0f, 19.77f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 0.47f, 0.08f, 0.93f, 0.26f, 1.38f) - curveToRelative(-0.4f, 0.48f, -0.83f, 0.75f, -1.26f, 0.75f) - curveToRelative(-1.2f, 0.0f, -2.4f, -2.1f, -3.04f, -5.2f) - lineToRelative(-0.06f, -0.3f) - horizontalLineToRelative(6.2f) - close() - moveTo(15.0f, 14.5f) - curveToRelative(0.0f, -0.65f, 0.18f, -1.27f, 0.5f, -1.79f) - arcToRelative(26.01f, 26.01f, 0.0f, false, false, -0.08f, -2.71f) - lineTo(8.58f, 10.0f) - lineToRelative(-0.04f, 0.49f) - arcTo(25.99f, 25.99f, 0.0f, false, false, 8.67f, 15.0f) - horizontalLineToRelative(6.37f) - arcToRelative(3.52f, 3.52f, 0.0f, false, true, -0.04f, -0.5f) - close() - moveTo(18.5f, 11.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 3.38f, 2.58f) - arcTo(10.08f, 10.08f, 0.0f, false, false, 21.8f, 10.0f) - horizontalLineToRelative(-4.87f) - lineToRelative(0.04f, 0.66f) - lineToRelative(0.02f, 0.68f) - curveToRelative(0.46f, -0.22f, 0.97f, -0.34f, 1.51f, -0.34f) - close() - moveTo(3.07f, 16.5f) - horizontalLineToRelative(4.3f) - curveToRelative(0.37f, 2.08f, 0.98f, 3.85f, 1.8f, 5.1f) - arcToRelative(10.03f, 10.03f, 0.0f, false, true, -5.96f, -4.82f) - lineToRelative(-0.14f, -0.28f) - close() - moveTo(2.2f, 10.0f) - horizontalLineToRelative(4.87f) - arcToRelative(28.2f, 28.2f, 0.0f, false, false, 0.03f, 4.42f) - lineToRelative(0.06f, 0.58f) - horizontalLineToRelative(-4.7f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -0.26f, -5.0f) - close() - moveTo(14.94f, 2.58f) - lineTo(14.84f, 2.41f) - curveToRelative(3.01f, 0.89f, 5.44f, 3.16f, 6.53f, 6.09f) - horizontalLineToRelative(-4.59f) - curveToRelative(-0.31f, -2.42f, -0.96f, -4.5f, -1.84f, -5.92f) - close() - moveTo(9.04f, 2.44f) - lineTo(9.16f, 2.41f) - arcToRelative(14.57f, 14.57f, 0.0f, false, false, -1.88f, 5.65f) - lineToRelative(-0.06f, 0.44f) - horizontalLineToRelative(-4.6f) - arcToRelative(10.03f, 10.03f, 0.0f, false, true, 6.42f, -6.06f) - close() - moveTo(12.0f, 2.0f) - curveToRelative(1.32f, 0.0f, 2.65f, 2.54f, 3.21f, 6.19f) - lineToRelative(0.05f, 0.31f) - lineTo(8.74f, 8.5f) - curveTo(9.28f, 4.7f, 10.64f, 2.0f, 12.0f, 2.0f) - close() - moveTo(21.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(23.0f, 19.88f) - curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) - reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _globePerson!! - } - -private var _globePerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlobeSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlobeSearch.kt deleted file mode 100644 index 0565b66a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlobeSearch.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.GlobeSearch: ImageVector - get() { - if (_globeSearch != null) { - return _globeSearch!! - } - _globeSearch = fluentIcon(name = "Filled.GlobeSearch") { - fluentPath { - moveTo(3.44f, 9.96f) - arcToRelative(4.93f, 4.93f, 0.0f, false, false, 6.23f, 7.57f) - lineToRelative(4.26f, 4.25f) - arcToRelative(0.77f, 0.77f, 0.0f, false, false, 1.17f, -1.0f) - lineToRelative(-0.08f, -0.09f) - lineToRelative(-4.21f, -4.22f) - arcToRelative(4.93f, 4.93f, 0.0f, false, false, -7.37f, -6.51f) - close() - moveTo(16.65f, 16.5f) - arcToRelative(17.14f, 17.14f, 0.0f, false, true, -0.95f, 3.45f) - lineToRelative(0.03f, 0.03f) - lineToRelative(0.13f, 0.14f) - curveToRelative(0.22f, 0.3f, 0.34f, 0.63f, 0.37f, 0.96f) - arcToRelative(10.03f, 10.03f, 0.0f, false, false, 4.73f, -4.58f) - horizontalLineToRelative(-4.3f) - close() - moveTo(12.25f, 16.5f) - lineTo(14.53f, 18.79f) - curveToRelative(0.2f, -0.6f, 0.39f, -1.27f, 0.53f, -2.0f) - lineToRelative(0.06f, -0.29f) - horizontalLineToRelative(-2.87f) - close() - moveTo(9.31f, 11.05f) - arcToRelative(3.38f, 3.38f, 0.0f, true, true, -4.78f, 4.78f) - arcToRelative(3.38f, 3.38f, 0.0f, false, true, 4.78f, -4.78f) - close() - moveTo(15.45f, 10.0f) - horizontalLineToRelative(-3.7f) - arcToRelative(5.94f, 5.94f, 0.0f, false, true, 0.9f, 5.0f) - horizontalLineToRelative(2.7f) - arcToRelative(25.35f, 25.35f, 0.0f, false, false, 0.13f, -4.51f) - lineToRelative(-0.03f, -0.49f) - close() - moveTo(16.95f, 10.0f) - arcToRelative(28.18f, 28.18f, 0.0f, false, true, -0.03f, 4.42f) - lineToRelative(-0.05f, 0.58f) - horizontalLineToRelative(4.7f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.26f, -5.0f) - horizontalLineToRelative(-4.87f) - close() - moveTo(14.86f, 2.4f) - arcToRelative(14.56f, 14.56f, 0.0f, false, true, 1.89f, 5.66f) - lineToRelative(0.06f, 0.44f) - horizontalLineToRelative(4.59f) - arcToRelative(10.03f, 10.03f, 0.0f, false, false, -6.11f, -5.96f) - lineToRelative(-0.3f, -0.1f) - lineToRelative(-0.13f, -0.03f) - close() - moveTo(12.03f, 2.0f) - curveToRelative(-1.28f, 0.0f, -2.57f, 2.38f, -3.16f, 5.84f) - curveToRelative(0.46f, 0.16f, 0.91f, 0.38f, 1.33f, 0.66f) - horizontalLineToRelative(5.09f) - curveToRelative(-0.54f, -3.8f, -1.9f, -6.5f, -3.26f, -6.5f) - close() - moveTo(9.19f, 2.4f) - curveToRelative(-3.02f, 0.9f, -5.44f, 3.17f, -6.54f, 6.1f) - horizontalLineToRelative(1.0f) - arcToRelative(5.92f, 5.92f, 0.0f, false, true, 3.74f, -0.97f) - curveToRelative(0.32f, -1.86f, 0.85f, -3.47f, 1.53f, -4.68f) - lineToRelative(0.16f, -0.27f) - lineToRelative(0.1f, -0.17f) - close() - } - } - return _globeSearch!! - } - -private var _globeSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlobeShield.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlobeShield.kt deleted file mode 100644 index 77d7110d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlobeShield.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.GlobeShield: ImageVector - get() { - if (_globeShield != null) { - return _globeShield!! - } - _globeShield = fluentIcon(name = "Filled.GlobeShield") { - fluentPath { - moveTo(8.9f, 16.5f) - lineTo(12.0f, 16.5f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 1.73f, 0.6f, 3.07f, 1.38f, 4.09f) - curveToRelative(-0.44f, 0.58f, -0.9f, 0.9f, -1.38f, 0.9f) - curveToRelative(-1.2f, 0.0f, -2.4f, -2.08f, -3.04f, -5.2f) - lineToRelative(-0.06f, -0.29f) - close() - moveTo(8.67f, 15.0f) - lineTo(12.0f, 15.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.85f, 0.68f, -1.45f, 1.4f, -1.52f) - arcToRelative(5.69f, 5.69f, 0.0f, false, false, 2.1f, -0.64f) - curveToRelative(-0.02f, -0.46f, -0.04f, -0.9f, -0.08f, -1.34f) - lineTo(8.58f, 10.0f) - lineToRelative(-0.04f, 0.49f) - arcTo(25.99f, 25.99f, 0.0f, false, false, 8.67f, 15.0f) - close() - moveTo(21.8f, 10.0f) - curveToRelative(0.13f, 0.61f, 0.2f, 1.24f, 0.2f, 1.9f) - arcToRelative(7.08f, 7.08f, 0.0f, false, true, -2.96f, -1.55f) - curveToRelative(-0.21f, -0.18f, -0.46f, -0.3f, -0.71f, -0.35f) - horizontalLineToRelative(3.47f) - close() - moveTo(3.07f, 16.5f) - horizontalLineToRelative(4.3f) - curveToRelative(0.37f, 2.08f, 0.98f, 3.85f, 1.8f, 5.1f) - arcToRelative(10.03f, 10.03f, 0.0f, false, true, -5.96f, -4.82f) - lineToRelative(-0.14f, -0.28f) - close() - moveTo(2.2f, 10.0f) - horizontalLineToRelative(4.87f) - arcToRelative(28.21f, 28.21f, 0.0f, false, false, 0.03f, 4.42f) - lineToRelative(0.06f, 0.58f) - horizontalLineToRelative(-4.7f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -0.26f, -5.0f) - close() - moveTo(14.94f, 2.58f) - lineTo(14.84f, 2.41f) - curveToRelative(3.01f, 0.89f, 5.44f, 3.16f, 6.53f, 6.09f) - horizontalLineToRelative(-4.59f) - curveToRelative(-0.31f, -2.42f, -0.96f, -4.5f, -1.84f, -5.92f) - close() - moveTo(9.04f, 2.44f) - lineTo(9.16f, 2.41f) - arcToRelative(14.57f, 14.57f, 0.0f, false, false, -1.88f, 5.65f) - lineToRelative(-0.06f, 0.44f) - horizontalLineToRelative(-4.6f) - arcToRelative(10.03f, 10.03f, 0.0f, false, true, 6.42f, -6.06f) - close() - moveTo(12.0f, 2.0f) - curveToRelative(1.32f, 0.0f, 2.65f, 2.54f, 3.21f, 6.19f) - lineToRelative(0.05f, 0.31f) - lineTo(8.74f, 8.5f) - curveTo(9.28f, 4.7f, 10.64f, 2.0f, 12.0f, 2.0f) - close() - moveTo(22.5f, 12.98f) - arcToRelative(7.7f, 7.7f, 0.0f, false, true, -4.11f, -1.87f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.77f, 0.0f) - curveToRelative(-0.69f, 0.58f, -2.21f, 1.7f, -4.12f, 1.87f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, -0.5f, 0.52f) - lineTo(13.0f, 17.0f) - curveToRelative(0.0f, 4.22f, 4.1f, 5.72f, 4.87f, 5.96f) - curveToRelative(0.09f, 0.03f, 0.17f, 0.03f, 0.26f, 0.0f) - curveTo(18.9f, 22.72f, 23.0f, 21.22f, 23.0f, 17.0f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.28f, -0.22f, -0.5f, -0.5f, -0.52f) - close() - } - } - return _globeShield!! - } - -private var _globeShield: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlobeSurface.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlobeSurface.kt deleted file mode 100644 index cb292640..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlobeSurface.kt +++ /dev/null @@ -1,105 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.GlobeSurface: ImageVector - get() { - if (_globeSurface != null) { - return _globeSurface!! - } - _globeSurface = fluentIcon(name = "Filled.GlobeSurface") { - fluentPath { - moveTo(9.68f, 7.5f) - curveToRelative(0.16f, -1.26f, 0.41f, -2.39f, 0.73f, -3.3f) - curveToRelative(0.28f, -0.78f, 0.6f, -1.37f, 0.9f, -1.74f) - curveToRelative(0.32f, -0.38f, 0.55f, -0.46f, 0.69f, -0.46f) - curveToRelative(0.14f, 0.0f, 0.37f, 0.08f, 0.69f, 0.46f) - curveToRelative(0.3f, 0.37f, 0.62f, 0.96f, 0.9f, 1.75f) - curveToRelative(0.32f, 0.9f, 0.57f, 2.03f, 0.73f, 3.29f) - lineTo(9.68f, 7.5f) - close() - moveTo(8.99f, 3.71f) - curveToRelative(0.18f, -0.5f, 0.38f, -0.96f, 0.6f, -1.36f) - arcTo(8.52f, 8.52f, 0.0f, false, false, 4.04f, 7.5f) - horizontalLineToRelative(4.13f) - curveToRelative(0.17f, -1.43f, 0.45f, -2.72f, 0.82f, -3.79f) - close() - moveTo(15.01f, 3.71f) - curveToRelative(-0.18f, -0.5f, -0.38f, -0.96f, -0.6f, -1.36f) - arcToRelative(8.52f, 8.52f, 0.0f, false, true, 5.55f, 5.15f) - horizontalLineToRelative(-4.13f) - arcToRelative(17.85f, 17.85f, 0.0f, false, false, -0.82f, -3.79f) - close() - moveTo(15.96f, 9.0f) - horizontalLineToRelative(4.4f) - arcToRelative(8.55f, 8.55f, 0.0f, false, true, 0.0f, 3.0f) - horizontalLineToRelative(-4.4f) - arcToRelative(27.08f, 27.08f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(15.83f, 13.5f) - horizontalLineToRelative(4.13f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, -1.48f, 2.5f) - lineToRelative(-0.02f, 0.02f) - arcToRelative(8.55f, 8.55f, 0.0f, false, true, -4.05f, 2.63f) - curveToRelative(0.22f, -0.4f, 0.42f, -0.86f, 0.6f, -1.36f) - curveToRelative(0.37f, -1.07f, 0.65f, -2.36f, 0.82f, -3.79f) - close() - moveTo(12.69f, 18.54f) - curveToRelative(-0.32f, 0.38f, -0.55f, 0.46f, -0.69f, 0.46f) - curveToRelative(-0.14f, 0.0f, -0.37f, -0.08f, -0.69f, -0.46f) - arcToRelative(5.82f, 5.82f, 0.0f, false, true, -0.9f, -1.75f) - curveToRelative(-0.32f, -0.9f, -0.57f, -2.03f, -0.73f, -3.29f) - horizontalLineToRelative(4.64f) - arcToRelative(16.13f, 16.13f, 0.0f, false, true, -0.73f, 3.3f) - curveToRelative(-0.28f, 0.78f, -0.6f, 1.37f, -0.9f, 1.74f) - close() - moveTo(7.15f, 17.48f) - curveToRelative(0.74f, 0.52f, 1.56f, 0.91f, 2.44f, 1.17f) - arcTo(9.2f, 9.2f, 0.0f, false, true, 9.0f, 17.3f) - arcToRelative(17.85f, 17.85f, 0.0f, false, true, -0.82f, -3.79f) - lineTo(4.04f, 13.51f) - arcTo(8.5f, 8.5f, 0.0f, false, false, 5.52f, 16.0f) - lineToRelative(0.02f, 0.02f) - arcToRelative(8.55f, 8.55f, 0.0f, false, false, 1.61f, 1.46f) - close() - moveTo(8.05f, 12.0f) - lineTo(3.62f, 12.0f) - arcToRelative(8.55f, 8.55f, 0.0f, false, true, 0.0f, -3.0f) - horizontalLineToRelative(4.41f) - arcToRelative(27.02f, 27.02f, 0.0f, false, false, 0.0f, 3.0f) - close() - moveTo(9.55f, 9.0f) - arcToRelative(25.47f, 25.47f, 0.0f, false, false, 0.0f, 3.0f) - horizontalLineToRelative(4.9f) - arcToRelative(25.5f, 25.5f, 0.0f, false, false, 0.0f, -3.0f) - horizontalLineToRelative(-4.9f) - close() - moveTo(4.0f, 16.0f) - horizontalLineToRelative(0.25f) - curveToRelative(0.4f, 0.55f, 0.84f, 1.05f, 1.33f, 1.5f) - lineTo(4.57f, 17.5f) - lineToRelative(-0.83f, 3.0f) - horizontalLineToRelative(16.52f) - lineToRelative(-0.83f, -3.0f) - horizontalLineToRelative(-1.0f) - curveToRelative(0.48f, -0.45f, 0.93f, -0.95f, 1.32f, -1.5f) - lineTo(20.0f, 16.0f) - curveToRelative(0.34f, 0.0f, 0.63f, 0.22f, 0.72f, 0.55f) - lineToRelative(1.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.72f, 0.95f) - lineTo(2.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.72f, -0.95f) - lineToRelative(1.25f, -4.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 4.0f, 16.0f) - close() - } - } - return _globeSurface!! - } - -private var _globeSurface: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlobeVideo.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlobeVideo.kt deleted file mode 100644 index f8167843..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GlobeVideo.kt +++ /dev/null @@ -1,95 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.GlobeVideo: ImageVector - get() { - if (_globeVideo != null) { - return _globeVideo!! - } - _globeVideo = fluentIcon(name = "Filled.GlobeVideo") { - fluentPath { - moveTo(8.9f, 16.5f) - lineTo(11.0f, 16.5f) - verticalLineToRelative(5.02f) - curveToRelative(-0.83f, -0.78f, -1.58f, -2.5f, -2.04f, -4.73f) - lineToRelative(-0.05f, -0.29f) - close() - moveTo(8.68f, 15.0f) - horizontalLineToRelative(2.38f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.45f, -2.0f) - horizontalLineToRelative(1.98f) - arcToRelative(26.1f, 26.1f, 0.0f, false, false, -0.06f, -3.0f) - lineTo(8.58f, 10.0f) - lineToRelative(-0.04f, 0.49f) - arcTo(25.99f, 25.99f, 0.0f, false, false, 8.67f, 15.0f) - close() - moveTo(21.68f, 13.69f) - lineTo(21.88f, 13.57f) - arcTo(10.08f, 10.08f, 0.0f, false, false, 21.8f, 10.0f) - horizontalLineToRelative(-4.87f) - lineToRelative(0.04f, 0.66f) - arcToRelative(28.55f, 28.55f, 0.0f, false, true, 0.01f, 2.34f) - horizontalLineToRelative(1.52f) - curveToRelative(0.96f, 0.0f, 1.79f, 0.54f, 2.2f, 1.33f) - lineToRelative(0.97f, -0.64f) - close() - moveTo(3.07f, 16.5f) - horizontalLineToRelative(4.3f) - curveToRelative(0.37f, 2.08f, 0.99f, 3.85f, 1.8f, 5.1f) - arcToRelative(10.03f, 10.03f, 0.0f, false, true, -5.96f, -4.82f) - lineToRelative(-0.14f, -0.28f) - close() - moveTo(2.2f, 10.0f) - horizontalLineToRelative(4.87f) - arcToRelative(28.21f, 28.21f, 0.0f, false, false, 0.03f, 4.42f) - lineToRelative(0.06f, 0.58f) - horizontalLineToRelative(-4.7f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -0.26f, -5.0f) - close() - moveTo(14.94f, 2.58f) - lineTo(14.84f, 2.4f) - curveToRelative(3.01f, 0.9f, 5.44f, 3.17f, 6.53f, 6.1f) - horizontalLineToRelative(-4.59f) - curveToRelative(-0.31f, -2.42f, -0.96f, -4.5f, -1.84f, -5.92f) - close() - moveTo(9.04f, 2.44f) - lineTo(9.16f, 2.4f) - arcToRelative(14.57f, 14.57f, 0.0f, false, false, -1.88f, 5.66f) - lineToRelative(-0.06f, 0.44f) - lineTo(2.63f, 8.5f) - arcToRelative(10.03f, 10.03f, 0.0f, false, true, 6.41f, -6.06f) - close() - moveTo(12.0f, 2.0f) - curveToRelative(1.32f, 0.0f, 2.65f, 2.54f, 3.21f, 6.18f) - lineToRelative(0.05f, 0.32f) - lineTo(8.74f, 8.5f) - curveTo(9.28f, 4.69f, 10.64f, 2.0f, 12.0f, 2.0f) - close() - moveTo(12.0f, 15.5f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(5.0f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(0.5f) - lineToRelative(2.22f, -1.48f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.78f, 0.41f) - verticalLineToRelative(7.14f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.78f, 0.41f) - lineTo(20.0f, 21.0f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - verticalLineToRelative(-6.0f) - close() - } - } - return _globeVideo!! - } - -private var _globeVideo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Grid.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Grid.kt deleted file mode 100644 index 9b2cb824..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Grid.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Grid: ImageVector - get() { - if (_grid != null) { - return _grid!! - } - _grid = fluentIcon(name = "Filled.Grid") { - fluentPath { - moveTo(8.75f, 13.0f) - curveTo(9.99f, 13.0f, 11.0f, 14.0f, 11.0f, 15.25f) - verticalLineToRelative(3.5f) - curveTo(11.0f, 19.99f, 10.0f, 21.0f, 8.75f, 21.0f) - horizontalLineToRelative(-3.5f) - curveTo(4.01f, 21.0f, 3.0f, 20.0f, 3.0f, 18.75f) - verticalLineToRelative(-3.5f) - curveTo(3.0f, 14.01f, 4.0f, 13.0f, 5.25f, 13.0f) - horizontalLineToRelative(3.5f) - close() - moveTo(18.75f, 13.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-3.5f) - curveTo(14.01f, 21.0f, 13.0f, 20.0f, 13.0f, 18.75f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(3.5f) - close() - moveTo(8.75f, 3.0f) - curveTo(9.99f, 3.0f, 11.0f, 4.0f, 11.0f, 5.25f) - verticalLineToRelative(3.5f) - curveTo(11.0f, 9.99f, 10.0f, 11.0f, 8.75f, 11.0f) - horizontalLineToRelative(-3.5f) - curveTo(4.01f, 11.0f, 3.0f, 10.0f, 3.0f, 8.75f) - verticalLineToRelative(-3.5f) - curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(3.5f) - close() - moveTo(18.75f, 3.0f) - curveTo(19.99f, 3.0f, 21.0f, 4.0f, 21.0f, 5.25f) - verticalLineToRelative(3.5f) - curveTo(21.0f, 9.99f, 20.0f, 11.0f, 18.75f, 11.0f) - horizontalLineToRelative(-3.5f) - curveTo(14.01f, 11.0f, 13.0f, 10.0f, 13.0f, 8.75f) - verticalLineToRelative(-3.5f) - curveTo(13.0f, 4.01f, 14.0f, 3.0f, 15.25f, 3.0f) - horizontalLineToRelative(3.5f) - close() - } - } - return _grid!! - } - -private var _grid: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GridCircles.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GridCircles.kt deleted file mode 100644 index 997cacc0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GridCircles.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.GridCircles: ImageVector - get() { - if (_gridCircles != null) { - return _gridCircles!! - } - _gridCircles = fluentIcon(name = "Filled.GridCircles") { - fluentPath { - moveTo(7.0f, 11.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, -8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 8.0f) - close() - moveTo(17.0f, 11.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, -8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 8.0f) - close() - moveTo(11.0f, 17.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, -8.0f, 0.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 8.0f, 0.0f) - close() - moveTo(17.0f, 21.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, -8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 8.0f) - close() - } - } - return _gridCircles!! - } - -private var _gridCircles: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GridDots.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GridDots.kt deleted file mode 100644 index 165da72d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GridDots.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.GridDots: ImageVector - get() { - if (_gridDots != null) { - return _gridDots!! - } - _gridDots = fluentIcon(name = "Filled.GridDots") { - fluentPath { - moveTo(12.0f, 17.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) - close() - moveTo(19.0f, 17.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) - close() - moveTo(5.0f, 17.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) - close() - moveTo(12.0f, 10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) - close() - moveTo(19.0f, 10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) - close() - moveTo(5.0f, 10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) - close() - moveTo(12.0f, 3.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) - close() - moveTo(19.0f, 3.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) - close() - moveTo(5.0f, 3.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) - close() - } - } - return _gridDots!! - } - -private var _gridDots: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Group.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Group.kt deleted file mode 100644 index 91abba50..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Group.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Group: ImageVector - get() { - if (_group != null) { - return _group!! - } - _group = fluentIcon(name = "Filled.Group") { - fluentPath { - moveTo(5.0f, 7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) - close() - moveTo(19.0f, 7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) - close() - moveTo(21.0f, 19.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(5.0f, 21.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) - close() - moveTo(7.83f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -2.0f) - horizontalLineToRelative(4.67f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 15.0f, 6.5f) - lineTo(15.0f, 9.0f) - horizontalLineToRelative(2.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) - verticalLineToRelative(4.67f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -2.0f, 0.0f) - lineTo(18.0f, 11.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - lineTo(15.0f, 11.0f) - verticalLineToRelative(1.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.5f, 2.5f) - lineTo(11.0f, 15.0f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(4.67f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 2.0f) - lineTo(11.5f, 20.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 9.0f, 17.5f) - lineTo(9.0f, 15.0f) - lineTo(6.5f, 15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 12.5f) - lineTo(4.0f, 7.83f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 2.0f, 0.0f) - verticalLineToRelative(4.67f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - lineTo(9.0f, 13.0f) - verticalLineToRelative(-1.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 11.5f, 9.0f) - lineTo(13.0f, 9.0f) - lineTo(13.0f, 6.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - lineTo(7.83f, 6.0f) - close() - moveTo(13.0f, 12.5f) - lineTo(13.0f, 11.0f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - lineTo(11.0f, 13.0f) - horizontalLineToRelative(1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - close() - } - } - return _group!! - } - -private var _group: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GroupDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GroupDismiss.kt deleted file mode 100644 index e6e9a7da..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GroupDismiss.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.GroupDismiss: ImageVector - get() { - if (_groupDismiss != null) { - return _groupDismiss!! - } - _groupDismiss = fluentIcon(name = "Filled.GroupDismiss") { - fluentPath { - moveTo(7.0f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(21.0f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(7.0f, 19.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(8.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.17f, 1.0f) - horizontalLineToRelative(4.67f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - lineTo(13.0f, 9.0f) - horizontalLineToRelative(-1.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 9.0f, 11.5f) - lineTo(9.0f, 13.0f) - lineTo(6.5f, 13.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(6.0f, 7.83f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.0f, 0.0f) - verticalLineToRelative(4.67f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 15.0f) - lineTo(9.0f, 15.0f) - verticalLineToRelative(2.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, 2.5f) - arcToRelative(6.48f, 6.48f, 0.0f, false, true, -0.5f, -2.5f) - verticalLineToRelative(-6.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - curveToRelative(0.89f, 0.0f, 1.73f, 0.18f, 2.5f, 0.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 17.5f, 9.0f) - lineTo(15.0f, 9.0f) - lineTo(15.0f, 6.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 12.5f, 4.0f) - lineTo(7.83f, 4.0f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 8.0f, 5.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-1.64f, -1.65f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.65f, 1.64f) - lineToRelative(-1.65f, -1.64f) - close() - } - } - return _groupDismiss!! - } - -private var _groupDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GroupList.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GroupList.kt deleted file mode 100644 index 9645a282..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GroupList.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.GroupList: ImageVector - get() { - if (_groupList != null) { - return _groupList!! - } - _groupList = fluentIcon(name = "Filled.GroupList") { - fluentPath { - moveTo(3.0f, 12.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(4.0f, 14.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(7.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - lineTo(3.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - lineTo(2.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) - lineTo(3.0f, 12.0f) - close() - moveTo(21.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(9.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(21.0f, 17.0f) - close() - moveTo(21.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(9.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(21.0f, 14.0f) - close() - moveTo(6.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(4.0f, 4.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(7.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 0.99f) - lineTo(3.0f, 10.99f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - lineTo(2.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) - lineTo(6.0f, 2.0f) - close() - moveTo(21.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(9.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(21.0f, 7.0f) - close() - moveTo(21.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(9.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(21.0f, 4.0f) - close() - } - } - return _groupList!! - } - -private var _groupList: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GroupReturn.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GroupReturn.kt deleted file mode 100644 index 6ebeeab1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GroupReturn.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.GroupReturn: ImageVector - get() { - if (_groupReturn != null) { - return _groupReturn!! - } - _groupReturn = fluentIcon(name = "Filled.GroupReturn") { - fluentPath { - moveTo(7.0f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(21.0f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(7.0f, 19.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(8.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.17f, 1.0f) - horizontalLineToRelative(4.67f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - lineTo(13.0f, 9.0f) - horizontalLineToRelative(-1.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 9.0f, 11.5f) - lineTo(9.0f, 13.0f) - lineTo(6.5f, 13.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(6.0f, 7.83f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.0f, 0.0f) - verticalLineToRelative(4.67f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 15.0f) - lineTo(9.0f, 15.0f) - verticalLineToRelative(2.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, 2.5f) - arcToRelative(6.48f, 6.48f, 0.0f, false, true, -0.5f, -2.5f) - verticalLineToRelative(-6.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - curveToRelative(0.89f, 0.0f, 1.73f, 0.18f, 2.5f, 0.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 17.5f, 9.0f) - lineTo(15.0f, 9.0f) - lineTo(15.0f, 6.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 12.5f, 4.0f) - lineTo(7.83f, 4.0f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 8.0f, 5.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.7f, 16.0f) - lineToRelative(0.65f, -0.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(1.5f, 1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-0.64f, -0.65f) - horizontalLineToRelative(2.04f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(0.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-0.25f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-2.04f) - close() - } - } - return _groupReturn!! - } - -private var _groupReturn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Guardian.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Guardian.kt deleted file mode 100644 index 4d4a79f6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Guardian.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Guardian: ImageVector - get() { - if (_guardian != null) { - return _guardian!! - } - _guardian = fluentIcon(name = "Filled.Guardian") { - fluentPath { - moveTo(10.5f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) - close() - moveTo(16.5f, 10.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) - close() - moveTo(13.4f, 10.75f) - curveToRelative(0.06f, 0.24f, 0.1f, 0.49f, 0.1f, 0.75f) - verticalLineToRelative(3.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.5f, 1.94f) - lineTo(11.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -3.25f, 1.56f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 4.5f, 20.0f) - verticalLineToRelative(-3.56f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 2.0f, 14.5f) - verticalLineToRelative(-3.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, -2.75f) - horizontalLineToRelative(6.0f) - curveToRelative(1.26f, 0.0f, 2.32f, 0.85f, 2.65f, 2.0f) - close() - moveTo(14.43f, 10.75f) - horizontalLineToRelative(5.32f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.75f) - verticalLineToRelative(1.75f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.5f, 1.94f) - lineTo(20.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -3.25f, 1.56f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 13.5f, 20.0f) - verticalLineToRelative(-3.26f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 1.0f, -2.24f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -0.26f, -0.03f, -0.5f, -0.07f, -0.75f) - close() - } - } - return _guardian!! - } - -private var _guardian: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Guest.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Guest.kt deleted file mode 100644 index 28b66b8d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Guest.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Guest: ImageVector - get() { - if (_guest != null) { - return _guest!! - } - _guest = fluentIcon(name = "Filled.Guest") { - fluentPath { - moveTo(13.75f, 2.0f) - curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) - horizontalLineToRelative(1.76f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.25f) - lineTo(6.25f, 22.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) - lineTo(4.0f, 19.76f) - lineTo(4.0f, 6.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(6.25f, 4.0f) - horizontalLineToRelative(1.76f) - curveToRelative(0.13f, -1.12f, 1.08f, -2.0f, 2.24f, -2.0f) - horizontalLineToRelative(3.5f) - close() - moveTo(13.75f, 6.5f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.78f, 0.0f, -1.46f, -0.4f, -1.87f, -1.0f) - lineTo(6.25f, 5.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.75f) - horizontalLineToRelative(11.6f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.64f) - lineToRelative(0.01f, -0.1f) - lineTo(18.5f, 6.24f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-2.13f) - curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) - close() - moveTo(14.75f, 14.0f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 1.84f, -1.47f, 2.75f, -4.0f, 2.75f) - curveToRelative(-2.53f, 0.0f, -4.0f, -0.91f, -4.0f, -2.76f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -0.68f, 0.56f, -1.24f, 1.25f, -1.24f) - horizontalLineToRelative(5.5f) - close() - moveTo(12.0f, 8.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - moveTo(13.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - close() - } - } - return _guest!! - } - -private var _guest: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GuestAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GuestAdd.kt deleted file mode 100644 index 860f6311..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/GuestAdd.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.GuestAdd: ImageVector - get() { - if (_guestAdd != null) { - return _guestAdd!! - } - _guestAdd = fluentIcon(name = "Filled.GuestAdd") { - fluentPath { - moveTo(12.75f, 2.0f) - curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) - horizontalLineToRelative(1.76f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(4.92f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -0.17f) - lineTo(17.5f, 6.25f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-2.13f) - curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.78f, 0.0f, -1.46f, -0.4f, -1.87f, -1.0f) - lineTo(5.25f, 5.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.75f) - horizontalLineToRelative(6.58f) - curveToRelative(0.3f, 0.56f, 0.66f, 1.06f, 1.08f, 1.5f) - lineTo(5.25f, 22.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) - lineTo(3.0f, 19.76f) - lineTo(3.0f, 6.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(5.25f, 4.0f) - horizontalLineToRelative(1.76f) - curveToRelative(0.13f, -1.12f, 1.08f, -2.0f, 2.24f, -2.0f) - horizontalLineToRelative(3.5f) - close() - moveTo(12.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - close() - moveTo(8.25f, 14.0f) - horizontalLineToRelative(3.77f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, -0.94f, 4.5f) - lineTo(11.0f, 18.5f) - curveToRelative(-2.53f, 0.0f, -4.0f, -0.91f, -4.0f, -2.76f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -0.68f, 0.56f, -1.24f, 1.25f, -1.24f) - close() - moveTo(11.0f, 8.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _guestAdd!! - } - -private var _guestAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Guitar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Guitar.kt deleted file mode 100644 index 655a8720..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Guitar.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Guitar: ImageVector - get() { - if (_guitar != null) { - return _guitar!! - } - _guitar = fluentIcon(name = "Filled.Guitar") { - fluentPath { - moveToRelative(18.5f, 3.43f) - lineToRelative(1.18f, -1.18f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, 0.0f) - lineToRelative(0.7f, 0.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.42f) - lineToRelative(-1.18f, 1.18f) - lineToRelative(-2.12f, -2.12f) - close() - moveTo(17.42f, 4.5f) - lineToRelative(-3.82f, 3.82f) - lineToRelative(-0.16f, -0.16f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -4.4f, 0.72f) - lineToRelative(-0.42f, 0.83f) - arcToRelative(0.6f, 0.6f, 0.0f, false, true, -0.66f, 0.32f) - lineToRelative(-0.07f, -0.01f) - arcToRelative(4.7f, 4.7f, 0.0f, false, false, -4.7f, 1.8f) - arcToRelative(6.03f, 6.03f, 0.0f, false, false, 0.57f, 7.87f) - lineToRelative(0.6f, 0.6f) - arcToRelative(6.03f, 6.03f, 0.0f, false, false, 7.87f, 0.56f) - arcToRelative(4.7f, 4.7f, 0.0f, false, false, 1.8f, -4.7f) - lineToRelative(-0.02f, -0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.32f, -0.67f) - lineToRelative(0.84f, -0.41f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 0.71f, -4.4f) - lineToRelative(-0.16f, -0.17f) - lineToRelative(3.82f, -3.82f) - lineToRelative(-2.12f, -2.12f) - close() - moveTo(9.42f, 14.57f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 2.13f, -2.12f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.12f, 2.12f) - close() - } - } - return _guitar!! - } - -private var _guitar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HandDraw.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HandDraw.kt deleted file mode 100644 index 77cee127..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HandDraw.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.HandDraw: ImageVector - get() { - if (_handDraw != null) { - return _handDraw!! - } - _handDraw = fluentIcon(name = "Filled.HandDraw") { - fluentPath { - moveTo(19.4f, 2.6f) - curveToRelative(0.32f, 0.25f, 0.6f, 0.63f, 0.6f, 1.15f) - curveToRelative(0.0f, 0.78f, -0.5f, 1.3f, -1.07f, 1.6f) - arcToRelative(6.1f, 6.1f, 0.0f, false, true, -2.0f, 0.53f) - curveToRelative(-1.46f, 0.18f, -3.35f, 0.17f, -5.2f, 0.15f) - horizontalLineToRelative(-0.24f) - arcToRelative(37.54f, 37.54f, 0.0f, false, false, -5.2f, 0.19f) - curveToRelative(-0.7f, 0.1f, -1.2f, 0.24f, -1.5f, 0.42f) - curveToRelative(-0.27f, 0.15f, -0.29f, 0.27f, -0.29f, 0.36f) - curveToRelative(0.0f, 0.01f, 0.02f, 0.04f, 0.08f, 0.08f) - curveToRelative(0.1f, 0.1f, 0.31f, 0.22f, 0.63f, 0.33f) - arcToRelative(11.18f, 11.18f, 0.0f, false, false, 2.79f, 0.5f) - verticalLineToRelative(1.5f) - lineToRelative(-0.45f, -0.04f) - curveToRelative(-0.98f, -0.1f, -2.02f, -0.26f, -2.84f, -0.55f) - curveToRelative(-0.4f, -0.14f, -0.8f, -0.33f, -1.12f, -0.6f) - arcTo(1.6f, 1.6f, 0.0f, false, true, 3.0f, 7.0f) - curveToRelative(0.0f, -0.78f, 0.46f, -1.32f, 1.04f, -1.66f) - curveToRelative(0.55f, -0.32f, 1.27f, -0.5f, 2.02f, -0.6f) - curveToRelative(1.52f, -0.23f, 3.53f, -0.22f, 5.45f, -0.2f) - horizontalLineToRelative(0.18f) - curveToRelative(1.9f, 0.0f, 3.7f, 0.02f, 5.04f, -0.15f) - curveToRelative(0.7f, -0.09f, 1.2f, -0.22f, 1.5f, -0.37f) - curveToRelative(0.2f, -0.1f, 0.25f, -0.18f, 0.27f, -0.23f) - lineToRelative(-0.03f, -0.02f) - curveToRelative(-0.1f, -0.08f, -0.29f, -0.18f, -0.6f, -0.28f) - curveToRelative(-0.61f, -0.2f, -1.5f, -0.32f, -2.46f, -0.4f) - curveToRelative(-1.6f, -0.12f, -3.29f, -0.1f, -4.2f, -0.1f) - lineToRelative(-0.46f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.42f) - curveToRelative(0.9f, -0.01f, 2.68f, -0.04f, 4.36f, 0.1f) - curveToRelative(1.0f, 0.08f, 2.01f, 0.21f, 2.8f, 0.46f) - curveToRelative(0.38f, 0.13f, 0.77f, 0.3f, 1.07f, 0.54f) - close() - moveTo(14.0f, 9.33f) - curveTo(13.92f, 7.97f, 13.1f, 7.0f, 11.74f, 7.0f) - curveTo(10.35f, 7.0f, 9.5f, 8.06f, 9.5f, 9.5f) - verticalLineToRelative(4.18f) - lineToRelative(-0.26f, -0.08f) - curveToRelative(-1.2f, -0.35f, -2.12f, -0.37f, -2.83f, -0.02f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 5.0f, 16.02f) - curveToRelative(0.0f, 0.28f, 0.16f, 0.53f, 0.41f, 0.66f) - lineToRelative(2.36f, 1.17f) - lineToRelative(0.1f, 0.05f) - lineToRelative(0.1f, 0.06f) - lineToRelative(1.88f, 1.26f) - lineToRelative(0.2f, 0.14f) - curveToRelative(0.43f, 0.34f, 0.78f, 0.78f, 1.02f, 1.28f) - lineToRelative(0.03f, 0.06f) - lineToRelative(0.08f, 0.16f) - curveToRelative(0.45f, 0.8f, 1.35f, 1.25f, 2.28f, 1.12f) - lineToRelative(2.42f, -0.35f) - lineToRelative(0.16f, -0.03f) - curveToRelative(0.82f, -0.18f, 1.47f, -0.8f, 1.69f, -1.61f) - lineToRelative(1.05f, -3.93f) - lineToRelative(0.04f, -0.18f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -2.6f, -3.85f) - lineToRelative(-2.22f, -0.4f) - verticalLineTo(9.32f) - close() - } - } - return _handDraw!! - } - -private var _handDraw: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HandLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HandLeft.kt deleted file mode 100644 index a8543588..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HandLeft.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.HandLeft: ImageVector - get() { - if (_handLeft != null) { - return _handLeft!! - } - _handLeft = fluentIcon(name = "Filled.HandLeft") { - fluentPath { - moveTo(14.0f, 4.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - verticalLineTo(11.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineTo(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - verticalLineToRelative(8.75f) - curveToRelative(0.0f, 2.18f, -1.17f, 4.51f, -1.91f, 5.8f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 14.46f, 22.0f) - horizontalLineTo(12.3f) - curveToRelative(-1.24f, 0.0f, -2.36f, -0.7f, -2.91f, -1.8f) - lineToRelative(-0.14f, -0.26f) - curveToRelative(-0.42f, -0.85f, -0.94f, -1.63f, -1.56f, -2.34f) - lineToRelative(-2.2f, -2.55f) - lineToRelative(-2.2f, -1.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.29f, -0.6f) - curveToRelative(0.0f, -0.48f, 0.26f, -0.84f, 0.6f, -1.06f) - curveToRelative(0.29f, -0.19f, 0.64f, -0.27f, 0.95f, -0.3f) - arcToRelative(7.2f, 7.2f, 0.0f, false, true, 2.1f, 0.12f) - curveToRelative(0.5f, 0.1f, 0.97f, 0.3f, 1.35f, 0.5f) - verticalLineTo(4.26f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - verticalLineToRelative(6.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineTo(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - verticalLineToRelative(7.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineTo(4.25f) - close() - } - } - return _handLeft!! - } - -private var _handLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HandLeftChat.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HandLeftChat.kt deleted file mode 100644 index 9432fda4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HandLeftChat.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.HandLeftChat: ImageVector - get() { - if (_handLeftChat != null) { - return _handLeftChat!! - } - _handLeftChat = fluentIcon(name = "Filled.HandLeftChat") { - fluentPath { - moveTo(14.0f, 4.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - lineTo(16.0f, 11.0f) - curveToRelative(0.0f, 0.06f, 0.01f, 0.11f, 0.03f, 0.17f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -4.42f, 9.1f) - lineToRelative(-0.46f, 1.52f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -1.76f, -1.59f) - lineToRelative(-0.14f, -0.26f) - curveToRelative(-0.42f, -0.85f, -0.94f, -1.63f, -1.56f, -2.34f) - lineToRelative(-2.2f, -2.55f) - lineToRelative(-2.2f, -1.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.29f, -0.6f) - curveToRelative(0.0f, -0.48f, 0.26f, -0.84f, 0.6f, -1.06f) - curveToRelative(0.29f, -0.19f, 0.64f, -0.27f, 0.95f, -0.3f) - arcToRelative(7.2f, 7.2f, 0.0f, false, true, 2.1f, 0.12f) - curveToRelative(0.5f, 0.1f, 0.97f, 0.3f, 1.35f, 0.5f) - lineTo(8.0f, 4.26f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - verticalLineToRelative(6.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - lineTo(11.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - verticalLineToRelative(7.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - lineTo(14.0f, 4.25f) - close() - moveTo(17.5f, 11.0f) - arcToRelative(6.6f, 6.6f, 0.0f, false, false, -0.5f, 0.0f) - lineTo(17.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - verticalLineToRelative(5.17f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.5f, -0.17f) - close() - moveTo(17.97f, 12.02f) - arcTo(5.48f, 5.48f, 0.0f, false, true, 23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, -8.17f, 4.81f) - lineToRelative(-2.18f, 0.67f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.63f, -0.62f) - lineToRelative(0.67f, -2.2f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 5.28f, -8.15f) - close() - moveTo(15.0f, 16.5f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - close() - moveTo(15.5f, 19.0f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) - close() - } - } - return _handLeftChat!! - } - -private var _handLeftChat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HandRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HandRight.kt deleted file mode 100644 index 6225f06a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HandRight.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.HandRight: ImageVector - get() { - if (_handRight != null) { - return _handRight!! - } - _handRight = fluentIcon(name = "Filled.HandRight") { - fluentPath { - moveTo(10.0f, 4.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineTo(11.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - verticalLineTo(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) - verticalLineToRelative(8.75f) - curveToRelative(0.0f, 2.18f, 1.17f, 4.51f, 1.91f, 5.8f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 9.54f, 22.0f) - horizontalLineToRelative(2.16f) - curveToRelative(1.24f, 0.0f, 2.36f, -0.7f, 2.91f, -1.8f) - lineToRelative(0.14f, -0.26f) - curveToRelative(0.42f, -0.85f, 0.94f, -1.63f, 1.56f, -2.34f) - lineToRelative(2.2f, -2.55f) - lineToRelative(2.2f, -1.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.29f, -0.6f) - curveToRelative(0.0f, -0.49f, -0.26f, -0.85f, -0.6f, -1.06f) - curveToRelative(-0.29f, -0.2f, -0.64f, -0.27f, -0.95f, -0.31f) - curveToRelative(-0.64f, -0.08f, -1.41f, 0.0f, -2.1f, 0.13f) - curveToRelative(-0.5f, 0.1f, -0.97f, 0.3f, -1.35f, 0.5f) - verticalLineTo(4.26f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(6.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineTo(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(7.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineTo(4.25f) - close() - } - } - return _handRight!! - } - -private var _handRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HandWave.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HandWave.kt deleted file mode 100644 index bf35a7cb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HandWave.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.HandWave: ImageVector - get() { - if (_handWave != null) { - return _handWave!! - } - _handWave = fluentIcon(name = "Filled.HandWave") { - fluentPath { - moveTo(7.94f, 2.66f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.88f, 0.68f) - lineToRelative(2.25f, 6.23f) - arcToRelative(0.68f, 0.68f, 0.0f, false, true, -1.27f, 0.48f) - lineToRelative(-2.1f, -5.41f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.87f, 0.72f) - lineToRelative(3.16f, 8.12f) - arcToRelative(5.96f, 5.96f, 0.0f, false, false, -3.65f, 0.67f) - curveToRelative(-0.43f, 0.25f, -0.63f, 0.7f, -0.57f, 1.14f) - curveToRelative(0.06f, 0.42f, 0.34f, 0.77f, 0.73f, 0.94f) - curveToRelative(1.33f, 0.58f, 4.39f, 2.08f, 7.0f, 4.58f) - arcToRelative(4.08f, 4.08f, 0.0f, false, false, 3.96f, 1.04f) - lineToRelative(2.8f, -0.84f) - arcToRelative(2.6f, 2.6f, 0.0f, false, false, 1.77f, -1.76f) - curveToRelative(0.3f, -1.05f, 0.73f, -2.82f, 0.73f, -4.5f) - curveToRelative(0.0f, -1.15f, -0.4f, -2.59f, -0.77f, -3.67f) - curveToRelative(-0.73f, -2.15f, -1.54f, -4.27f, -2.28f, -6.4f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.9f, 0.65f) - lineToRelative(1.0f, 2.86f) - arcToRelative(0.7f, 0.7f, 0.0f, false, true, -1.32f, 0.47f) - lineToRelative(-1.79f, -5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.88f, 0.68f) - lineToRelative(1.62f, 4.53f) - arcToRelative(0.7f, 0.7f, 0.0f, false, true, -1.33f, 0.47f) - lineToRelative(-2.4f, -6.68f) - close() - moveTo(18.64f, 2.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.04f, -0.19f) - arcToRelative(6.9f, 6.9f, 0.0f, false, true, 2.31f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.48f, -0.26f) - arcToRelative(5.4f, 5.4f, 0.0f, false, false, -0.33f, -2.82f) - curveToRelative(-0.35f, -0.9f, -0.87f, -1.6f, -1.36f, -1.93f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.19f, -1.05f) - close() - moveTo(18.3f, 4.24f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.1f, 1.02f) - curveToRelative(0.42f, 0.45f, 0.8f, 1.0f, 0.8f, 1.99f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - curveToRelative(0.0f, -1.5f, -0.62f, -2.39f, -1.2f, -3.01f) - close() - } - } - return _handWave!! - } - -private var _handWave: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Handshake.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Handshake.kt deleted file mode 100644 index 93f06782..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Handshake.kt +++ /dev/null @@ -1,114 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Handshake: ImageVector - get() { - if (_handshake != null) { - return _handshake!! - } - _handshake = fluentIcon(name = "Filled.Handshake") { - fluentPath { - moveTo(12.83f, 3.16f) - curveToRelative(0.06f, -0.04f, 0.11f, -0.1f, 0.15f, -0.15f) - horizontalLineToRelative(2.6f) - arcToRelative(5.38f, 5.38f, 0.0f, false, true, 0.54f, 0.0f) - horizontalLineToRelative(0.04f) - arcToRelative(3.82f, 3.82f, 0.0f, false, true, 1.65f, 0.37f) - arcToRelative(5.22f, 5.22f, 0.0f, false, true, 3.14f, 6.17f) - lineToRelative(-3.28f, -3.24f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.53f, -0.21f) - lineTo(12.4f, 6.1f) - arcToRelative(0.76f, 0.76f, 0.0f, false, false, -0.45f, 0.15f) - lineToRelative(-1.89f, 1.43f) - arcToRelative(0.97f, 0.97f, 0.0f, false, true, -1.46f, -0.35f) - curveToRelative(-0.2f, -0.4f, -0.08f, -0.9f, 0.29f, -1.18f) - lineToRelative(3.94f, -2.99f) - close() - moveTo(7.9f, 14.23f) - lineToRelative(-0.01f, 0.02f) - lineToRelative(-0.98f, 0.97f) - lineTo(6.9f, 15.22f) - arcToRelative(0.9f, 0.9f, 0.0f, false, true, -1.26f, 0.0f) - arcToRelative(0.9f, 0.9f, 0.0f, false, true, 0.0f, -1.27f) - lineToRelative(0.97f, -0.97f) - arcToRelative(0.9f, 0.9f, 0.0f, false, true, 1.28f, 0.0f) - curveToRelative(0.34f, 0.35f, 0.35f, 0.9f, 0.0f, 1.25f) - close() - moveTo(7.6f, 15.93f) - arcToRelative(0.9f, 0.9f, 0.0f, false, false, 0.02f, 1.26f) - arcToRelative(0.9f, 0.9f, 0.0f, false, false, 1.28f, 0.0f) - lineToRelative(0.97f, -0.97f) - arcToRelative(0.9f, 0.9f, 0.0f, false, false, -0.14f, -1.38f) - arcToRelative(0.9f, 0.9f, 0.0f, false, false, -1.12f, 0.1f) - lineToRelative(-0.01f, 0.01f) - lineToRelative(-0.98f, 0.97f) - lineToRelative(-0.01f, 0.01f) - close() - moveTo(5.5f, 11.41f) - arcToRelative(0.9f, 0.9f, 0.0f, false, true, 0.0f, 1.26f) - lineToRelative(-0.97f, 0.97f) - arcToRelative(0.9f, 0.9f, 0.0f, false, true, -1.28f, 0.0f) - arcToRelative(0.9f, 0.9f, 0.0f, false, true, 0.0f, -1.27f) - lineToRelative(0.98f, -0.96f) - arcToRelative(0.9f, 0.9f, 0.0f, false, true, 1.27f, 0.0f) - close() - moveTo(11.85f, 16.92f) - arcToRelative(0.9f, 0.9f, 0.0f, false, true, 0.0f, 1.27f) - lineToRelative(-0.97f, 0.97f) - arcToRelative(0.9f, 0.9f, 0.0f, false, true, -1.28f, 0.0f) - arcToRelative(0.9f, 0.9f, 0.0f, false, true, -0.17f, -1.03f) - arcToRelative(0.9f, 0.9f, 0.0f, false, true, 0.18f, -0.24f) - lineToRelative(0.97f, -0.97f) - arcToRelative(0.9f, 0.9f, 0.0f, false, true, 1.27f, 0.0f) - close() - moveTo(5.35f, 4.83f) - arcToRelative(6.18f, 6.18f, 0.0f, false, true, 5.1f, -1.75f) - lineTo(7.99f, 4.96f) - arcTo(2.45f, 2.45f, 0.0f, false, false, 7.5f, 8.4f) - arcToRelative(2.47f, 2.47f, 0.0f, false, false, 3.46f, 0.46f) - lineToRelative(1.68f, -1.27f) - horizontalLineToRelative(4.19f) - lineToRelative(3.5f, 3.46f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.04f, 0.04f) - lineToRelative(1.15f, 1.15f) - arcToRelative(1.44f, 1.44f, 0.0f, false, true, -1.94f, 2.12f) - lineToRelative(-0.1f, -0.1f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.05f) - lineToRelative(-1.1f, -1.09f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.7f, 0.7f) - lineTo(18.79f, 15.0f) - lineToRelative(0.13f, 0.12f) - lineToRelative(0.04f, 0.04f) - arcToRelative(1.02f, 1.02f, 0.0f, true, true, -1.44f, 1.44f) - lineToRelative(-0.17f, -0.17f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.85f, 0.37f) - curveToRelative(0.0f, 0.13f, 0.04f, 0.26f, 0.14f, 0.36f) - lineToRelative(0.22f, 0.23f) - arcToRelative(0.94f, 0.94f, 0.0f, true, true, -1.33f, 1.33f) - lineToRelative(-0.01f, -0.01f) - lineToRelative(-0.21f, -0.21f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(0.21f, 0.22f) - arcToRelative(0.96f, 0.96f, 0.0f, false, true, -1.35f, 1.37f) - lineToRelative(-1.43f, -1.36f) - lineToRelative(0.52f, -0.52f) - curveToRelative(0.75f, -0.74f, 0.75f, -1.94f, 0.0f, -2.68f) - arcToRelative(1.9f, 1.9f, 0.0f, false, false, -1.42f, -0.55f) - arcToRelative(1.9f, 1.9f, 0.0f, false, false, -1.98f, -1.97f) - arcToRelative(1.91f, 1.91f, 0.0f, false, false, -2.4f, -1.9f) - arcToRelative(1.91f, 1.91f, 0.0f, false, false, -3.05f, -1.24f) - arcToRelative(6.1f, 6.1f, 0.0f, false, true, 1.63f, -5.73f) - close() - } - } - return _handshake!! - } - -private var _handshake: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HatGraduation.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HatGraduation.kt deleted file mode 100644 index 30a5347d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HatGraduation.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.HatGraduation: ImageVector - get() { - if (_hatGraduation != null) { - return _hatGraduation!! - } - _hatGraduation = fluentIcon(name = "Filled.HatGraduation") { - fluentPath { - moveTo(5.0f, 17.75f) - verticalLineToRelative(-3.77f) - lineToRelative(4.06f, 2.66f) - arcToRelative(5.38f, 5.38f, 0.0f, false, false, 5.88f, 0.0f) - lineTo(19.0f, 13.98f) - verticalLineToRelative(3.77f) - curveToRelative(0.0f, 0.16f, -0.05f, 0.32f, -0.15f, 0.45f) - lineToRelative(-0.01f, 0.02f) - lineToRelative(-0.02f, 0.01f) - verticalLineToRelative(0.02f) - arcToRelative(3.4f, 3.4f, 0.0f, false, true, -0.41f, 0.43f) - curveToRelative(-0.28f, 0.27f, -0.7f, 0.61f, -1.25f, 0.96f) - arcTo(9.7f, 9.7f, 0.0f, false, true, 12.0f, 21.0f) - arcToRelative(9.7f, 9.7f, 0.0f, false, true, -5.16f, -1.36f) - arcToRelative(7.43f, 7.43f, 0.0f, false, true, -1.68f, -1.42f) - verticalLineToRelative(-0.01f) - arcToRelative(0.76f, 0.76f, 0.0f, false, true, -0.16f, -0.46f) - close() - moveTo(22.16f, 10.13f) - lineTo(14.12f, 15.38f) - arcToRelative(3.87f, 3.87f, 0.0f, false, true, -4.24f, 0.0f) - lineTo(3.0f, 10.88f) - verticalLineToRelative(5.37f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(1.5f, 10.0f) - curveToRelative(0.0f, -0.09f, 0.02f, -0.17f, 0.04f, -0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.3f, -0.88f) - lineTo(9.92f, 3.7f) - arcToRelative(3.87f, 3.87f, 0.0f, false, true, 4.18f, 0.0f) - lineToRelative(8.06f, 5.17f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.01f, 1.26f) - close() - } - } - return _hatGraduation!! - } - -private var _hatGraduation: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Hd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Hd.kt deleted file mode 100644 index 68a72d3d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Hd.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Hd: ImageVector - get() { - if (_hd != null) { - return _hd!! - } - _hd = fluentIcon(name = "Filled.Hd") { - fluentPath { - moveTo(14.5f, 14.5f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(0.25f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-0.25f) - close() - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(7.25f, 8.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.75f) - horizontalLineToRelative(2.0f) - lineTo(10.0f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(10.0f, 13.0f) - lineTo(8.0f, 13.0f) - verticalLineToRelative(2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-6.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(13.75f, 8.0f) - horizontalLineToRelative(1.0f) - curveTo(16.55f, 8.0f, 18.0f, 9.46f, 18.0f, 11.25f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-6.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _hd!! - } - -private var _hd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Hdr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Hdr.kt deleted file mode 100644 index 57aea64c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Hdr.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Hdr: ImageVector - get() { - if (_hdr != null) { - return _hdr!! - } - _hdr = fluentIcon(name = "Filled.Hdr") { - fluentPath { - moveTo(18.75f, 3.5f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(5.25f, 20.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 17.25f) - lineTo(2.0f, 6.75f) - curveTo(2.0f, 4.95f, 3.46f, 3.5f, 5.25f, 3.5f) - horizontalLineToRelative(13.5f) - close() - moveTo(8.38f, 9.0f) - arcToRelative(0.63f, 0.63f, 0.0f, false, false, -0.62f, 0.53f) - verticalLineToRelative(1.86f) - lineTo(6.26f, 11.39f) - lineTo(6.26f, 9.54f) - arcToRelative(0.63f, 0.63f, 0.0f, false, false, -1.24f, 0.0f) - lineTo(5.02f, 14.48f) - arcToRelative(0.63f, 0.63f, 0.0f, false, false, 1.24f, 0.0f) - verticalLineToRelative(-1.84f) - horizontalLineToRelative(1.48f) - verticalLineToRelative(1.73f) - lineToRelative(0.01f, 0.1f) - arcToRelative(0.63f, 0.63f, 0.0f, false, false, 1.24f, 0.0f) - lineTo(8.99f, 9.51f) - arcTo(0.63f, 0.63f, 0.0f, false, false, 8.38f, 9.0f) - close() - moveTo(17.2f, 9.02f) - lineTo(15.53f, 9.02f) - arcToRelative(0.63f, 0.63f, 0.0f, false, false, -0.52f, 0.52f) - lineTo(15.01f, 14.48f) - lineToRelative(0.03f, 0.1f) - curveToRelative(0.18f, 0.59f, 1.11f, 0.56f, 1.21f, -0.1f) - verticalLineToRelative(-1.86f) - lineTo(17.0f, 12.62f) - lineToRelative(0.8f, 1.99f) - lineToRelative(0.05f, 0.09f) - arcToRelative(0.63f, 0.63f, 0.0f, false, false, 1.14f, -0.46f) - lineToRelative(-0.03f, -0.1f) - lineToRelative(-0.74f, -1.83f) - arcToRelative(1.8f, 1.8f, 0.0f, false, false, -0.87f, -3.29f) - horizontalLineToRelative(-0.15f) - close() - moveTo(11.38f, 9.0f) - horizontalLineToRelative(-0.85f) - arcToRelative(0.63f, 0.63f, 0.0f, false, false, -0.52f, 0.52f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(4.84f) - curveToRelative(0.05f, 0.26f, 0.26f, 0.47f, 0.52f, 0.52f) - horizontalLineToRelative(1.02f) - arcTo(2.63f, 2.63f, 0.0f, false, false, 14.0f, 12.54f) - verticalLineToRelative(-1.08f) - arcToRelative(2.63f, 2.63f, 0.0f, false, false, -2.46f, -2.45f) - horizontalLineToRelative(-0.16f) - close() - moveTo(11.38f, 10.25f) - curveToRelative(0.71f, 0.0f, 1.3f, 0.54f, 1.36f, 1.24f) - lineToRelative(0.01f, 0.13f) - verticalLineToRelative(0.87f) - arcToRelative(1.38f, 1.38f, 0.0f, false, true, -1.24f, 1.24f) - horizontalLineToRelative(-0.26f) - verticalLineToRelative(-3.48f) - horizontalLineToRelative(0.13f) - close() - moveTo(16.25f, 10.25f) - horizontalLineToRelative(0.95f) - lineToRelative(0.1f, 0.01f) - arcToRelative(0.55f, 0.55f, 0.0f, false, true, 0.0f, 1.1f) - horizontalLineToRelative(-1.04f) - verticalLineToRelative(-1.1f) - close() - } - } - return _hdr!! - } - -private var _hdr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HdrOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HdrOff.kt deleted file mode 100644 index e8f39dea..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HdrOff.kt +++ /dev/null @@ -1,91 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.HdrOff: ImageVector - get() { - if (_hdrOff != null) { - return _hdrOff!! - } - _hdrOff = fluentIcon(name = "Filled.HdrOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(0.96f, 0.96f) - curveTo(2.46f, 4.84f, 2.0f, 5.74f, 2.0f, 6.75f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(13.5f) - curveToRelative(0.22f, 0.0f, 0.43f, -0.02f, 0.63f, -0.06f) - lineToRelative(1.34f, 1.34f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(13.2f, 14.26f) - curveToRelative(-0.44f, 0.42f, -1.02f, 0.7f, -1.66f, 0.73f) - horizontalLineToRelative(-1.02f) - arcToRelative(0.63f, 0.63f, 0.0f, false, true, -0.51f, -0.53f) - lineToRelative(-0.01f, -0.09f) - verticalLineToRelative(-3.31f) - lineToRelative(1.25f, 1.25f) - verticalLineToRelative(1.44f) - horizontalLineToRelative(0.26f) - curveToRelative(0.3f, -0.04f, 0.59f, -0.17f, 0.8f, -0.37f) - lineToRelative(0.89f, 0.88f) - close() - moveTo(8.04f, 9.1f) - lineToRelative(0.96f, 0.96f) - lineTo(9.0f, 14.47f) - arcToRelative(0.63f, 0.63f, 0.0f, false, true, -1.24f, 0.0f) - verticalLineToRelative(-1.83f) - lineTo(6.26f, 12.64f) - verticalLineToRelative(1.84f) - arcToRelative(0.63f, 0.63f, 0.0f, false, true, -1.24f, 0.0f) - lineTo(5.02f, 9.54f) - arcToRelative(0.63f, 0.63f, 0.0f, false, true, 1.24f, 0.0f) - verticalLineToRelative(1.85f) - horizontalLineToRelative(1.48f) - lineTo(7.74f, 9.62f) - lineToRelative(0.01f, -0.1f) - arcToRelative(0.63f, 0.63f, 0.0f, false, true, 0.28f, -0.42f) - close() - moveTo(22.0f, 17.25f) - curveToRelative(0.0f, 0.46f, -0.1f, 0.9f, -0.27f, 1.3f) - lineToRelative(-3.6f, -3.6f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.86f, -0.71f) - lineToRelative(-0.03f, -0.1f) - lineToRelative(-0.74f, -1.83f) - arcToRelative(1.8f, 1.8f, 0.0f, false, false, -0.87f, -3.29f) - horizontalLineToRelative(-1.82f) - arcToRelative(0.63f, 0.63f, 0.0f, false, false, -0.52f, 0.52f) - lineTo(15.01f, 11.82f) - lineTo(6.68f, 3.5f) - horizontalLineToRelative(12.07f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(10.5f) - close() - moveTo(17.8f, 14.61f) - lineTo(17.81f, 14.63f) - lineTo(16.26f, 13.08f) - verticalLineToRelative(-0.46f) - lineTo(17.0f, 12.62f) - lineToRelative(0.8f, 1.99f) - close() - moveTo(17.2f, 10.27f) - horizontalLineToRelative(-0.95f) - verticalLineToRelative(1.1f) - horizontalLineToRelative(1.05f) - arcToRelative(0.55f, 0.55f, 0.0f, false, false, 0.0f, -1.1f) - horizontalLineToRelative(-0.1f) - close() - } - } - return _hdrOff!! - } - -private var _hdrOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Headphones.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Headphones.kt deleted file mode 100644 index dc8a75bc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Headphones.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Headphones: ImageVector - get() { - if (_headphones != null) { - return _headphones!! - } - _headphones = fluentIcon(name = "Filled.Headphones") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 10.0f, 10.0f) - verticalLineToRelative(7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineToRelative(-6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(-2.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, -17.0f, 0.0f) - verticalLineToRelative(2.0f) - horizontalLineTo(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineTo(5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - verticalLineToRelative(-7.0f) - arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 2.0f) - close() - } - } - return _headphones!! - } - -private var _headphones: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HeadphonesSoundWave.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HeadphonesSoundWave.kt deleted file mode 100644 index 346ff789..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HeadphonesSoundWave.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.HeadphonesSoundWave: ImageVector - get() { - if (_headphonesSoundWave != null) { - return _headphonesSoundWave!! - } - _headphonesSoundWave = fluentIcon(name = "Filled.HeadphonesSoundWave") { - fluentPath { - moveTo(3.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, 17.0f, 0.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(19.0f, 22.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) - verticalLineToRelative(-7.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, -20.0f, 0.0f) - verticalLineToRelative(7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(3.5f, 14.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(12.75f, 11.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-10.5f) - close() - moveTo(8.75f, 14.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(16.0f, 14.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-4.5f) - close() - } - } - return _headphonesSoundWave!! - } - -private var _headphonesSoundWave: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Headset.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Headset.kt deleted file mode 100644 index 819ffb19..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Headset.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Headset: ImageVector - get() { - if (_headset != null) { - return _headset!! - } - _headset = fluentIcon(name = "Filled.Headset") { - fluentPath { - moveTo(5.0f, 9.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, 14.0f, 0.0f) - verticalLineToRelative(5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineToRelative(-4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(2.5f) - verticalLineTo(9.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineTo(9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineTo(7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.5f, -0.06f) - verticalLineToRelative(0.31f) - curveToRelative(0.0f, 1.2f, 0.93f, 2.17f, 2.1f, 2.24f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(1.13f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 1.5f) - horizontalLineTo(8.75f) - curveToRelative(-2.0f, 0.0f, -3.64f, -1.57f, -3.74f, -3.55f) - lineToRelative(-0.01f, -0.2f) - verticalLineTo(9.0f) - close() - } - } - return _headset!! - } - -private var _headset: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HeadsetAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HeadsetAdd.kt deleted file mode 100644 index 77f98ec7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HeadsetAdd.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.HeadsetAdd: ImageVector - get() { - if (_headsetAdd != null) { - return _headsetAdd!! - } - _headsetAdd = fluentIcon(name = "Filled.HeadsetAdd") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 7.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 7.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 6.0f) - lineTo(17.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - lineTo(18.0f, 6.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 7.0f) - close() - moveTo(17.5f, 13.0f) - curveToRelative(0.52f, 0.0f, 1.02f, -0.06f, 1.5f, -0.17f) - lineTo(19.0f, 15.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineToRelative(-4.02f) - arcTo(6.47f, 6.47f, 0.0f, false, false, 17.5f, 13.0f) - close() - moveTo(12.02f, 3.0f) - curveToRelative(-0.3f, 0.48f, -0.55f, 1.0f, -0.72f, 1.54f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 6.5f, 10.0f) - verticalLineToRelative(1.0f) - lineTo(9.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - lineTo(7.0f, 17.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.5f, -0.06f) - verticalLineToRelative(0.31f) - curveToRelative(0.0f, 1.2f, 0.93f, 2.17f, 2.1f, 2.24f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(1.13f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 1.5f) - lineTo(8.75f, 21.0f) - curveToRelative(-2.0f, 0.0f, -3.64f, -1.57f, -3.74f, -3.55f) - lineToRelative(-0.01f, -0.2f) - lineTo(5.0f, 10.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, 7.0f, -7.0f) - horizontalLineToRelative(0.02f) - close() - } - } - return _headsetAdd!! - } - -private var _headsetAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HeadsetVr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HeadsetVr.kt deleted file mode 100644 index 51f45c7b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HeadsetVr.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.HeadsetVr: ImageVector - get() { - if (_headsetVr != null) { - return _headsetVr!! - } - _headsetVr = fluentIcon(name = "Filled.HeadsetVr") { - fluentPath { - moveTo(9.0f, 3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(15.0f, 5.0f) - horizontalLineToRelative(3.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, 4.0f) - horizontalLineToRelative(0.25f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(22.0f, 14.0f) - verticalLineToRelative(2.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, 4.0f) - horizontalLineToRelative(-1.55f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -2.16f, -0.64f) - lineToRelative(-2.15f, -1.38f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.28f, 0.0f) - lineToRelative(-2.15f, 1.38f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -2.16f, 0.64f) - lineTo(6.0f, 20.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f) - lineTo(2.0f, 14.0f) - horizontalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - lineTo(2.0f, 9.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, -4.0f) - horizontalLineToRelative(3.0f) - lineTo(9.0f, 3.75f) - close() - moveTo(12.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(6.0f, 12.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(14.75f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.5f) - close() - } - } - return _headsetVr!! - } - -private var _headsetVr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HeartBroken.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HeartBroken.kt deleted file mode 100644 index 46a0315c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HeartBroken.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.HeartBroken: ImageVector - get() { - if (_heartBroken != null) { - return _heartBroken!! - } - _heartBroken = fluentIcon(name = "Filled.HeartBroken") { - fluentPath { - moveToRelative(11.28f, 5.03f) - lineToRelative(-0.1f, -0.1f) - arcToRelative(5.37f, 5.37f, 0.0f, true, false, -7.6f, 7.6f) - lineToRelative(7.89f, 7.9f) - curveToRelative(0.3f, 0.29f, 0.77f, 0.29f, 1.06f, 0.0f) - lineToRelative(7.9f, -7.9f) - arcToRelative(5.38f, 5.38f, 0.0f, true, false, -7.61f, -7.6f) - lineToRelative(-0.79f, 0.8f) - lineToRelative(-1.88f, 3.02f) - lineToRelative(3.68f, 3.22f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.02f, 0.73f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, -0.7f) - lineToRelative(2.12f, -2.12f) - lineToRelative(-3.6f, -3.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.1f, -0.64f) - lineToRelative(2.21f, -3.56f) - close() - } - } - return _heartBroken!! - } - -private var _heartBroken: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HeartCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HeartCircle.kt deleted file mode 100644 index e7899d6c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HeartCircle.kt +++ /dev/null @@ -1,35 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.HeartCircle: ImageVector - get() { - if (_heartCircle != null) { - return _heartCircle!! - } - _heartCircle = fluentIcon(name = "Filled.HeartCircle") { - fluentPath { - moveTo(12.0f, 22.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) - close() - moveTo(11.7f, 16.86f) - lineTo(7.59f, 12.06f) - arcToRelative(2.46f, 2.46f, 0.0f, false, true, 3.58f, -3.36f) - lineToRelative(0.83f, 0.8f) - lineToRelative(0.83f, -0.8f) - arcToRelative(2.46f, 2.46f, 0.0f, false, true, 3.58f, 3.36f) - lineToRelative(-4.1f, 4.8f) - arcToRelative(0.4f, 0.4f, 0.0f, false, true, -0.61f, 0.0f) - close() - } - } - return _heartCircle!! - } - -private var _heartCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HeartCircleHint.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HeartCircleHint.kt deleted file mode 100644 index 585719c8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HeartCircleHint.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.HeartCircleHint: ImageVector - get() { - if (_heartCircleHint != null) { - return _heartCircleHint!! - } - _heartCircleHint = fluentIcon(name = "Filled.HeartCircleHint") { - fluentPath { - moveTo(10.68f, 2.09f) - arcToRelative(10.09f, 10.09f, 0.0f, false, true, 2.64f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.2f, 1.48f) - arcToRelative(8.59f, 8.59f, 0.0f, false, false, -2.25f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.2f, -1.48f) - close() - moveTo(21.08f, 10.03f) - curveToRelative(0.4f, -0.05f, 0.78f, 0.24f, 0.83f, 0.65f) - arcToRelative(10.09f, 10.09f, 0.0f, false, true, 0.0f, 2.64f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.48f, -0.2f) - arcToRelative(8.57f, 8.57f, 0.0f, false, false, 0.0f, -2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.64f, -0.84f) - close() - moveTo(2.93f, 10.03f) - curveToRelative(0.4f, 0.06f, 0.7f, 0.43f, 0.64f, 0.84f) - arcToRelative(8.59f, 8.59f, 0.0f, false, false, 0.0f, 2.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.48f, 0.2f) - arcToRelative(10.09f, 10.09f, 0.0f, false, true, 0.0f, -2.65f) - curveToRelative(0.05f, -0.41f, 0.43f, -0.7f, 0.84f, -0.65f) - close() - moveTo(10.03f, 21.07f) - curveToRelative(0.06f, -0.4f, 0.43f, -0.7f, 0.84f, -0.64f) - arcToRelative(8.57f, 8.57f, 0.0f, false, false, 2.26f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.2f, 1.48f) - arcToRelative(10.09f, 10.09f, 0.0f, false, true, -2.65f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.84f) - close() - moveTo(18.07f, 4.06f) - arcToRelative(10.1f, 10.1f, 0.0f, false, true, 1.87f, 1.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.19f, 0.9f) - arcToRelative(8.58f, 8.58f, 0.0f, false, false, -1.59f, -1.58f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.91f, -1.2f) - close() - moveTo(19.81f, 17.02f) - curveToRelative(0.32f, 0.26f, 0.39f, 0.73f, 0.13f, 1.06f) - arcToRelative(10.1f, 10.1f, 0.0f, false, true, -1.87f, 1.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.9f, -1.2f) - arcToRelative(8.57f, 8.57f, 0.0f, false, false, 1.58f, -1.59f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -0.14f) - close() - moveTo(6.98f, 4.2f) - curveToRelative(0.25f, 0.33f, 0.19f, 0.8f, -0.14f, 1.06f) - arcToRelative(8.59f, 8.59f, 0.0f, false, false, -1.6f, 1.59f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.18f, -0.91f) - arcToRelative(10.09f, 10.09f, 0.0f, false, true, 1.87f, -1.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, 0.13f) - close() - moveTo(4.19f, 17.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 0.14f) - arcToRelative(8.58f, 8.58f, 0.0f, false, false, 1.59f, 1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.91f, 1.18f) - arcToRelative(10.1f, 10.1f, 0.0f, false, true, -1.87f, -1.86f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.13f, -1.06f) - close() - moveTo(16.34f, 8.92f) - arcToRelative(2.65f, 2.65f, 0.0f, false, false, -3.89f, -0.13f) - lineToRelative(-0.45f, 0.46f) - lineToRelative(-0.46f, -0.46f) - arcToRelative(2.65f, 2.65f, 0.0f, false, false, -3.89f, 3.6f) - lineToRelative(3.78f, 4.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, 0.0f) - lineToRelative(3.78f, -4.35f) - curveToRelative(0.87f, -1.0f, 0.87f, -2.48f, 0.0f, -3.48f) - close() - } - } - return _heartCircleHint!! - } - -private var _heartCircleHint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HeartPulse.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HeartPulse.kt deleted file mode 100644 index ff90db3e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HeartPulse.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.HeartPulse: ImageVector - get() { - if (_heartPulse != null) { - return _heartPulse!! - } - _heartPulse = fluentIcon(name = "Filled.HeartPulse") { - fluentPath { - moveTo(12.82f, 5.58f) - lineTo(12.0f, 6.4f) - lineToRelative(-0.82f, -0.82f) - arcTo(5.37f, 5.37f, 0.0f, false, false, 2.25f, 11.0f) - horizontalLineToRelative(3.5f) - lineToRelative(1.42f, -3.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 3.13f, -0.06f) - lineToRelative(1.98f, 3.8f) - lineToRelative(1.58f, -2.05f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 2.7f, -0.1f) - lineTo(17.8f, 11.0f) - horizontalLineToRelative(3.96f) - arcToRelative(5.37f, 5.37f, 0.0f, false, false, -8.93f, -5.41f) - close() - moveTo(11.47f, 21.08f) - lineTo(4.89f, 14.5f) - horizontalLineToRelative(1.97f) - curveToRelative(0.67f, 0.0f, 1.29f, -0.39f, 1.58f, -1.0f) - lineToRelative(0.38f, -0.82f) - lineToRelative(1.63f, 3.13f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 2.94f, 0.25f) - lineToRelative(1.95f, -2.55f) - lineToRelative(0.34f, 0.4f) - curveToRelative(0.34f, 0.37f, 0.82f, 0.59f, 1.32f, 0.59f) - horizontalLineToRelative(2.11f) - lineToRelative(-6.58f, 6.58f) - curveToRelative(-0.3f, 0.29f, -0.77f, 0.29f, -1.06f, 0.0f) - close() - moveTo(9.42f, 8.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.35f, 0.02f) - lineTo(6.38f, 12.0f) - lineTo(2.75f, 12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.1f) - curveToRelative(0.3f, 0.0f, 0.56f, -0.17f, 0.69f, -0.43f) - lineToRelative(1.23f, -2.6f) - lineToRelative(2.56f, 5.11f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.28f, 0.1f) - lineToRelative(2.7f, -3.73f) - lineToRelative(1.13f, 1.3f) - curveToRelative(0.14f, 0.16f, 0.34f, 0.25f, 0.56f, 0.25f) - horizontalLineToRelative(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.91f) - lineToRelative(-1.53f, -1.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.17f, 0.05f) - lineToRelative(-2.52f, 3.5f) - lineToRelative(-2.7f, -5.4f) - close() - } - } - return _heartPulse!! - } - -private var _heartPulse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Highlight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Highlight.kt deleted file mode 100644 index 0b83a25d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Highlight.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Highlight: ImageVector - get() { - if (_highlight != null) { - return _highlight!! - } - _highlight = fluentIcon(name = "Filled.Highlight") { - fluentPath { - moveTo(5.25f, 2.0f) - curveTo(4.01f, 2.0f, 3.0f, 3.0f, 3.0f, 4.25f) - verticalLineToRelative(3.0f) - curveTo(3.0f, 8.49f, 4.0f, 9.5f, 5.25f, 9.5f) - horizontalLineToRelative(13.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-3.0f) - curveTo(21.0f, 3.01f, 20.0f, 2.0f, 18.75f, 2.0f) - lineTo(5.25f, 2.0f) - close() - moveTo(5.0f, 11.75f) - lineTo(5.0f, 11.0f) - horizontalLineToRelative(14.0f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-9.5f) - curveTo(6.01f, 14.0f, 5.0f, 13.0f, 5.0f, 11.75f) - close() - moveTo(7.5f, 15.5f) - horizontalLineToRelative(9.0f) - verticalLineToRelative(1.29f) - curveToRelative(0.0f, 0.81f, -0.44f, 1.56f, -1.14f, 1.96f) - lineToRelative(-0.15f, 0.08f) - lineToRelative(-6.64f, 3.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -0.58f) - lineTo(7.51f, 15.5f) - close() - } - } - return _highlight!! - } - -private var _highlight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HistoryDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HistoryDismiss.kt deleted file mode 100644 index 3a257531..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HistoryDismiss.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.HistoryDismiss: ImageVector - get() { - if (_historyDismiss != null) { - return _historyDismiss!! - } - _historyDismiss = fluentIcon(name = "Filled.HistoryDismiss") { - fluentPath { - moveTo(4.75f, 12.0f) - arcToRelative(7.25f, 7.25f, 0.0f, false, false, 6.48f, 7.2f) - curveToRelative(0.2f, 0.75f, 0.53f, 1.44f, 0.96f, 2.05f) - lineTo(12.0f, 21.25f) - arcToRelative(9.25f, 9.25f, 0.0f, false, true, -9.18f, -10.38f) - curveToRelative(0.06f, -0.51f, 0.51f, -0.87f, 1.03f, -0.87f) - curveToRelative(0.6f, 0.0f, 1.02f, 0.57f, 0.95f, 1.16f) - curveToRelative(-0.03f, 0.27f, -0.05f, 0.55f, -0.05f, 0.84f) - close() - moveTo(12.81f, 13.0f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, 2.86f, -1.74f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 15.0f, 11.0f) - horizontalLineToRelative(-2.0f) - lineTo(13.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(0.81f) - close() - moveTo(21.25f, 12.19f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, -2.04f, -0.96f) - arcTo(7.25f, 7.25f, 0.0f, false, false, 7.58f, 6.25f) - horizontalLineToRelative(0.67f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(4.25f, 7.0f) - horizontalLineToRelative(-0.03f) - lineToRelative(0.03f, -0.05f) - verticalLineToRelative(-2.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - verticalLineToRelative(0.5f) - arcToRelative(9.25f, 9.25f, 0.0f, false, true, 15.0f, 7.43f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-1.64f, -1.65f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.65f, 1.64f) - lineToRelative(-1.65f, -1.64f) - close() - } - } - return _historyDismiss!! - } - -private var _historyDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HomeAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HomeAdd.kt deleted file mode 100644 index 1fe101b1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HomeAdd.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.HomeAdd: ImageVector - get() { - if (_homeAdd != null) { - return _homeAdd!! - } - _homeAdd = fluentIcon(name = "Filled.HomeAdd") { - fluentPath { - moveTo(10.55f, 2.53f) - curveToRelative(0.84f, -0.7f, 2.06f, -0.7f, 2.9f, 0.0f) - lineToRelative(6.75f, 5.7f) - curveToRelative(0.5f, 0.43f, 0.8f, 1.05f, 0.8f, 1.72f) - verticalLineToRelative(2.07f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) - lineTo(4.75f, 21.0f) - curveTo(3.78f, 21.0f, 3.0f, 20.22f, 3.0f, 19.25f) - verticalLineToRelative(-9.3f) - curveToRelative(0.0f, -0.67f, 0.3f, -1.3f, 0.8f, -1.72f) - lineToRelative(6.75f, -5.7f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _homeAdd!! - } - -private var _homeAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HomeCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HomeCheckmark.kt deleted file mode 100644 index 05b169c1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HomeCheckmark.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.HomeCheckmark: ImageVector - get() { - if (_homeCheckmark != null) { - return _homeCheckmark!! - } - _homeCheckmark = fluentIcon(name = "Filled.HomeCheckmark") { - fluentPath { - moveTo(13.45f, 2.53f) - curveToRelative(-0.84f, -0.7f, -2.06f, -0.7f, -2.9f, 0.0f) - lineTo(3.8f, 8.23f) - curveToRelative(-0.5f, 0.43f, -0.8f, 1.05f, -0.8f, 1.72f) - verticalLineToRelative(9.3f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(14.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-9.3f) - curveToRelative(0.0f, -0.67f, -0.3f, -1.3f, -0.8f, -1.72f) - lineToRelative(-6.75f, -5.7f) - close() - moveTo(15.78f, 11.28f) - lineTo(11.28f, 15.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 0.0f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineToRelative(1.47f, 1.47f) - lineToRelative(3.97f, -3.97f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - close() - } - } - return _homeCheckmark!! - } - -private var _homeCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HomeDatabase.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HomeDatabase.kt deleted file mode 100644 index 25b9257e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HomeDatabase.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.HomeDatabase: ImageVector - get() { - if (_homeDatabase != null) { - return _homeDatabase!! - } - _homeDatabase = fluentIcon(name = "Filled.HomeDatabase") { - fluentPath { - moveTo(10.55f, 2.53f) - curveToRelative(0.84f, -0.7f, 2.06f, -0.7f, 2.9f, 0.0f) - lineToRelative(6.75f, 5.7f) - curveToRelative(0.5f, 0.43f, 0.8f, 1.05f, 0.8f, 1.72f) - verticalLineToRelative(1.5f) - arcToRelative(10.68f, 10.68f, 0.0f, false, false, -3.0f, -0.44f) - curveToRelative(-1.5f, -0.01f, -2.91f, 0.3f, -3.98f, 0.83f) - curveToRelative(-0.96f, 0.48f, -1.91f, 1.3f, -2.01f, 2.46f) - lineTo(12.0f, 14.3f) - verticalLineToRelative(6.2f) - curveToRelative(0.0f, 0.17f, 0.02f, 0.34f, 0.06f, 0.5f) - lineTo(4.75f, 21.0f) - curveTo(3.78f, 21.0f, 3.0f, 20.22f, 3.0f, 19.25f) - verticalLineToRelative(-9.3f) - curveToRelative(0.0f, -0.67f, 0.3f, -1.3f, 0.8f, -1.72f) - lineToRelative(6.75f, -5.7f) - close() - moveTo(21.0f, 12.5f) - curveToRelative(-0.45f, -0.17f, -0.95f, -0.3f, -1.5f, -0.39f) - arcTo(9.7f, 9.7f, 0.0f, false, false, 18.0f, 12.0f) - curveToRelative(-2.76f, 0.0f, -5.0f, 1.12f, -5.0f, 2.5f) - reflectiveCurveToRelative(2.24f, 2.5f, 5.0f, 2.5f) - arcToRelative(9.7f, 9.7f, 0.0f, false, false, 1.5f, -0.11f) - arcToRelative(7.68f, 7.68f, 0.0f, false, false, 1.5f, -0.39f) - curveToRelative(1.21f, -0.46f, 2.0f, -1.18f, 2.0f, -2.0f) - curveToRelative(0.0f, -0.82f, -0.79f, -1.54f, -2.0f, -2.0f) - close() - moveTo(21.0f, 17.56f) - arcToRelative(9.08f, 9.08f, 0.0f, false, true, -3.0f, 0.44f) - arcToRelative(9.1f, 9.1f, 0.0f, false, true, -3.98f, -0.84f) - curveToRelative(-0.36f, -0.17f, -0.71f, -0.4f, -1.02f, -0.67f) - verticalLineToRelative(4.01f) - curveToRelative(0.0f, 0.36f, 0.15f, 0.7f, 0.42f, 1.0f) - curveToRelative(0.77f, 0.88f, 2.53f, 1.5f, 4.58f, 1.5f) - curveToRelative(2.76f, 0.0f, 5.0f, -1.12f, 5.0f, -2.5f) - verticalLineToRelative(-4.0f) - curveToRelative(-0.31f, 0.26f, -0.66f, 0.49f, -1.02f, 0.66f) - curveToRelative(-0.3f, 0.15f, -0.63f, 0.29f, -0.98f, 0.4f) - close() - } - } - return _homeDatabase!! - } - -private var _homeDatabase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HomeMore.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HomeMore.kt deleted file mode 100644 index 2006cb1a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HomeMore.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.HomeMore: ImageVector - get() { - if (_homeMore != null) { - return _homeMore!! - } - _homeMore = fluentIcon(name = "Filled.HomeMore") { - fluentPath { - moveTo(13.44f, 2.53f) - curveToRelative(-0.84f, -0.7f, -2.07f, -0.7f, -2.9f, 0.0f) - lineTo(3.8f, 8.23f) - curveTo(3.3f, 8.66f, 3.0f, 9.3f, 3.0f, 9.95f) - verticalLineToRelative(9.3f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(14.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-9.3f) - curveToRelative(0.0f, -0.66f, -0.3f, -1.3f, -0.8f, -1.72f) - lineToRelative(-6.76f, -5.7f) - close() - moveTo(9.0f, 11.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(13.25f, 11.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(17.5f, 11.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(9.0f, 15.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(12.0f, 17.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, 2.5f) - close() - moveTo(16.25f, 17.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, 2.5f) - close() - } - } - return _homeMore!! - } - -private var _homeMore: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HomePerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HomePerson.kt deleted file mode 100644 index a6d21d84..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HomePerson.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.HomePerson: ImageVector - get() { - if (_homePerson != null) { - return _homePerson!! - } - _homePerson = fluentIcon(name = "Filled.HomePerson") { - fluentPath { - moveTo(10.55f, 2.53f) - curveToRelative(0.84f, -0.7f, 2.06f, -0.7f, 2.9f, 0.0f) - lineToRelative(6.75f, 5.7f) - curveToRelative(0.5f, 0.43f, 0.8f, 1.05f, 0.8f, 1.72f) - verticalLineToRelative(2.1f) - arcToRelative(3.49f, 3.49f, 0.0f, false, false, -6.0f, 2.45f) - verticalLineToRelative(0.5f) - arcToRelative(1.28f, 1.28f, 0.0f, false, false, -1.22f, -1.0f) - horizontalLineToRelative(-3.56f) - curveToRelative(-0.68f, 0.02f, -1.22f, 0.57f, -1.22f, 1.25f) - verticalLineToRelative(4.0f) - curveTo(9.0f, 20.22f, 8.22f, 21.0f, 7.25f, 21.0f) - horizontalLineToRelative(-2.5f) - curveTo(3.78f, 21.0f, 3.0f, 20.22f, 3.0f, 19.25f) - verticalLineToRelative(-9.3f) - curveToRelative(0.0f, -0.67f, 0.3f, -1.3f, 0.8f, -1.72f) - lineToRelative(6.75f, -5.7f) - close() - moveTo(21.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(23.0f, 19.88f) - curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) - reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _homePerson!! - } - -private var _homePerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HomeSplit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HomeSplit.kt deleted file mode 100644 index 9b58955f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HomeSplit.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.HomeSplit: ImageVector - get() { - if (_homeSplit != null) { - return _homeSplit!! - } - _homeSplit = fluentIcon(name = "Filled.HomeSplit") { - fluentPath { - moveTo(13.45f, 2.53f) - curveToRelative(-0.84f, -0.7f, -2.06f, -0.7f, -2.9f, 0.0f) - lineTo(3.8f, 8.23f) - curveToRelative(-0.5f, 0.43f, -0.8f, 1.05f, -0.8f, 1.72f) - verticalLineToRelative(9.3f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(14.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-9.3f) - curveToRelative(0.0f, -0.67f, -0.3f, -1.3f, -0.8f, -1.72f) - lineToRelative(-6.75f, -5.7f) - close() - moveTo(12.75f, 6.25f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(12.0f, 10.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(12.75f, 16.25f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - } - } - return _homeSplit!! - } - -private var _homeSplit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Hourglass.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Hourglass.kt deleted file mode 100644 index 5e44f5ca..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Hourglass.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Hourglass: ImageVector - get() { - if (_hourglass != null) { - return _hourglass!! - } - _hourglass = fluentIcon(name = "Filled.Hourglass") { - fluentPath { - moveTo(17.25f, 4.5f) - horizontalLineTo(6.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(0.6f) - arcTo(3.24f, 3.24f, 0.0f, false, false, 7.92f, 8.0f) - lineTo(10.0f, 9.48f) - curveToRelative(0.42f, 0.28f, 0.77f, 0.65f, 1.02f, 1.09f) - arcToRelative(2.8f, 2.8f, 0.0f, false, true, 0.0f, 2.86f) - curveToRelative(-0.25f, 0.44f, -0.6f, 0.81f, -1.02f, 1.09f) - lineTo(7.92f, 16.0f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, -1.42f, 2.65f) - verticalLineToRelative(0.6f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.25f, 0.25f) - horizontalLineToRelative(10.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.25f, -0.25f) - verticalLineToRelative(-0.6f) - arcTo(3.24f, 3.24f, 0.0f, false, false, 16.08f, 16.0f) - lineTo(14.0f, 14.52f) - arcToRelative(3.22f, 3.22f, 0.0f, false, true, -1.02f, -1.09f) - arcToRelative(2.8f, 2.8f, 0.0f, false, true, 0.0f, -2.86f) - curveToRelative(0.25f, -0.44f, 0.6f, -0.81f, 1.02f, -1.09f) - lineTo(16.08f, 8.0f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, 1.42f, -2.65f) - verticalLineToRelative(-0.6f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - } - } - return _hourglass!! - } - -private var _hourglass: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HourglassHalf.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HourglassHalf.kt deleted file mode 100644 index 43e629de..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HourglassHalf.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.HourglassHalf: ImageVector - get() { - if (_hourglassHalf != null) { - return _hourglassHalf!! - } - _hourglassHalf = fluentIcon(name = "Filled.HourglassHalf") { - fluentPath { - moveTo(6.75f, 19.5f) - horizontalLineToRelative(10.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.25f, -0.25f) - verticalLineToRelative(-0.6f) - arcTo(3.24f, 3.24f, 0.0f, false, false, 16.08f, 16.0f) - lineTo(14.0f, 14.52f) - arcTo(3.22f, 3.22f, 0.0f, false, true, 12.56f, 12.0f) - horizontalLineToRelative(-1.12f) - arcTo(3.22f, 3.22f, 0.0f, false, true, 10.0f, 14.52f) - lineTo(7.92f, 16.0f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, -1.42f, 2.65f) - verticalLineToRelative(0.6f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.25f, 0.25f) - close() - } - } - return _hourglassHalf!! - } - -private var _hourglassHalf: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HourglassOneQuarter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HourglassOneQuarter.kt deleted file mode 100644 index 4636b1dd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HourglassOneQuarter.kt +++ /dev/null @@ -1,32 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.HourglassOneQuarter: ImageVector - get() { - if (_hourglassOneQuarter != null) { - return _hourglassOneQuarter!! - } - _hourglassOneQuarter = fluentIcon(name = "Filled.HourglassOneQuarter") { - fluentPath { - moveTo(7.92f, 16.0f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, -1.42f, 2.65f) - verticalLineToRelative(0.6f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.25f, 0.25f) - horizontalLineToRelative(10.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.25f, -0.25f) - verticalLineToRelative(-0.6f) - arcTo(3.24f, 3.24f, 0.0f, false, false, 16.08f, 16.0f) - horizontalLineTo(7.92f) - close() - } - } - return _hourglassOneQuarter!! - } - -private var _hourglassOneQuarter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HourglassThreeQuarter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HourglassThreeQuarter.kt deleted file mode 100644 index 30927bb1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HourglassThreeQuarter.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.HourglassThreeQuarter: ImageVector - get() { - if (_hourglassThreeQuarter != null) { - return _hourglassThreeQuarter!! - } - _hourglassThreeQuarter = fluentIcon(name = "Filled.HourglassThreeQuarter") { - fluentPath { - moveTo(6.97f, 7.0f) - curveToRelative(0.24f, 0.4f, 0.56f, 0.74f, 0.95f, 1.0f) - lineTo(10.0f, 9.48f) - curveToRelative(0.42f, 0.28f, 0.77f, 0.65f, 1.02f, 1.09f) - arcToRelative(2.8f, 2.8f, 0.0f, false, true, 0.0f, 2.86f) - curveToRelative(-0.25f, 0.44f, -0.6f, 0.81f, -1.02f, 1.09f) - lineTo(7.92f, 16.0f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, -1.42f, 2.65f) - verticalLineToRelative(0.6f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.25f, 0.25f) - horizontalLineToRelative(10.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.25f, -0.25f) - verticalLineToRelative(-0.6f) - arcTo(3.24f, 3.24f, 0.0f, false, false, 16.08f, 16.0f) - lineTo(14.0f, 14.52f) - arcToRelative(3.22f, 3.22f, 0.0f, false, true, -1.02f, -1.09f) - arcToRelative(2.8f, 2.8f, 0.0f, false, true, 0.0f, -2.86f) - curveToRelative(0.25f, -0.44f, 0.6f, -0.81f, 1.02f, -1.09f) - lineTo(16.08f, 8.0f) - curveToRelative(0.39f, -0.26f, 0.7f, -0.6f, 0.95f, -1.0f) - horizontalLineTo(6.97f) - close() - } - } - return _hourglassThreeQuarter!! - } - -private var _hourglassThreeQuarter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Icons.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Icons.kt deleted file mode 100644 index a21b13fc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Icons.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Icons: ImageVector - get() { - if (_icons != null) { - return _icons!! - } - _icons = fluentIcon(name = "Filled.Icons") { - fluentPath { - moveTo(17.1f, 9.6f) - curveToRelative(0.23f, -0.26f, 0.42f, -0.55f, 0.58f, -0.85f) - lineTo(20.0f, 8.75f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineToRelative(-2.8f) - arcTo(4.75f, 4.75f, 0.0f, true, false, 9.45f, 9.0f) - lineTo(4.5f, 9.0f) - curveTo(3.67f, 9.0f, 3.0f, 9.67f, 3.0f, 10.5f) - verticalLineToRelative(0.75f) - arcToRelative(7.0f, 7.0f, 0.0f, false, false, 7.0f, 7.0f) - horizontalLineToRelative(0.97f) - lineToRelative(0.05f, -0.12f) - arcTo(4.55f, 4.55f, 0.0f, false, true, 10.5f, 16.0f) - curveToRelative(0.0f, -1.24f, 0.61f, -2.46f, 1.48f, -3.39f) - curveToRelative(0.9f, -0.95f, 2.2f, -1.73f, 3.79f, -1.94f) - curveToRelative(0.87f, -0.11f, 1.65f, -0.17f, 2.35f, -0.18f) - arcToRelative(4.02f, 4.02f, 0.0f, false, false, -1.02f, -0.9f) - close() - moveTo(12.24f, 17.95f) - arcToRelative(6.97f, 6.97f, 0.0f, false, false, -1.23f, 3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.1f) - curveToRelative(0.03f, -0.52f, 0.24f, -1.21f, 0.64f, -1.95f) - curveToRelative(0.6f, 0.62f, 1.52f, 1.15f, 2.85f, 1.15f) - curveToRelative(1.3f, 0.0f, 2.28f, -0.45f, 3.0f, -1.19f) - curveToRelative(0.7f, -0.7f, 1.1f, -1.62f, 1.4f, -2.48f) - curveToRelative(0.14f, -0.44f, 0.27f, -0.88f, 0.38f, -1.29f) - lineToRelative(0.05f, -0.21f) - lineToRelative(0.27f, -0.93f) - curveToRelative(0.1f, -0.34f, 0.2f, -0.61f, 0.32f, -0.82f) - curveToRelative(0.1f, -0.21f, 0.2f, -0.3f, 0.26f, -0.34f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.22f, -1.35f) - arcToRelative(13.5f, 13.5f, 0.0f, false, false, -5.56f, -0.23f) - arcToRelative(5.33f, 5.33f, 0.0f, false, false, -3.2f, 1.64f) - arcToRelative(4.14f, 4.14f, 0.0f, false, false, -1.2f, 2.7f) - curveToRelative(0.0f, 0.38f, 0.06f, 0.72f, 0.15f, 1.02f) - arcToRelative(9.9f, 9.9f, 0.0f, false, true, 5.73f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.24f, 0.97f) - arcToRelative(8.9f, 8.9f, 0.0f, false, false, -5.38f, 3.96f) - close() - } - } - return _icons!! - } - -private var _icons: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageAdd.kt deleted file mode 100644 index 69dec2f1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageAdd.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ImageAdd: ImageVector - get() { - if (_imageAdd != null) { - return _imageAdd!! - } - _imageAdd = fluentIcon(name = "Filled.ImageAdd") { - fluentPath { - moveToRelative(13.43f, 14.64f) - lineToRelative(0.1f, 0.08f) - lineToRelative(6.92f, 6.8f) - curveToRelative(-0.5f, 0.3f, -1.08f, 0.48f, -1.7f, 0.48f) - lineTo(7.25f, 22.0f) - curveToRelative(-0.62f, 0.0f, -1.2f, -0.18f, -1.7f, -0.48f) - lineToRelative(6.92f, -6.8f) - lineToRelative(0.09f, -0.07f) - curveToRelative(0.26f, -0.2f, 0.61f, -0.2f, 0.87f, -0.01f) - close() - moveTo(18.75f, 4.0f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.63f, -0.18f, 1.21f, -0.49f, 1.7f) - lineToRelative(-6.93f, -6.8f) - lineToRelative(-0.13f, -0.12f) - curveToRelative(-0.83f, -0.7f, -2.06f, -0.7f, -2.9f, 0.0f) - lineToRelative(-0.13f, 0.12f) - lineToRelative(-6.93f, 6.8f) - curveToRelative(-0.31f, -0.49f, -0.49f, -1.07f, -0.49f, -1.7f) - lineTo(4.0f, 12.5f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.5f, 4.0f) - horizontalLineToRelative(6.25f) - close() - moveTo(6.5f, 1.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(16.75f, 7.0f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, 4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, -4.5f) - close() - moveTo(16.75f, 8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(6.5f, 3.0f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) - lineTo(6.0f, 3.5f) - lineTo(6.0f, 6.0f) - lineTo(3.4f, 6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(0.18f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) - lineToRelative(0.1f, 0.01f) - lineTo(6.0f, 7.0f) - verticalLineToRelative(2.6f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - horizontalLineToRelative(0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) - lineTo(7.0f, 9.5f) - lineTo(7.0f, 7.0f) - horizontalLineToRelative(2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - verticalLineToRelative(-0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) - lineTo(9.5f, 6.0f) - lineTo(7.0f, 6.0f) - lineTo(7.0f, 3.4f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) - lineTo(6.5f, 3.0f) - close() - } - } - return _imageAdd!! - } - -private var _imageAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageAltText.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageAltText.kt deleted file mode 100644 index f9057e49..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageAltText.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ImageAltText: ImageVector - get() { - if (_imageAltText != null) { - return _imageAltText!! - } - _imageAltText = fluentIcon(name = "Filled.ImageAltText") { - fluentPath { - moveTo(1.0f, 3.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - verticalLineToRelative(6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - lineTo(3.0f, 11.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(1.0f, 3.0f) - close() - moveTo(3.5f, 4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - horizontalLineToRelative(-6.0f) - close() - moveTo(3.5f, 7.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - horizontalLineToRelative(-6.0f) - close() - moveTo(16.75f, 8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(13.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - lineTo(4.0f, 12.0f) - verticalLineToRelative(6.75f) - curveToRelative(0.0f, 0.63f, 0.18f, 1.21f, 0.49f, 1.7f) - lineToRelative(6.93f, -6.8f) - lineToRelative(0.14f, -0.13f) - curveToRelative(0.83f, -0.7f, 2.05f, -0.7f, 2.89f, 0.01f) - lineToRelative(0.13f, 0.12f) - lineToRelative(6.93f, 6.8f) - curveToRelative(0.31f, -0.49f, 0.49f, -1.07f, 0.49f, -1.7f) - lineTo(22.0f, 7.25f) - curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) - lineTo(13.0f, 4.0f) - verticalLineToRelative(5.0f) - close() - moveTo(16.75f, 7.0f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -4.5f) - close() - moveTo(12.47f, 14.72f) - lineTo(12.56f, 14.65f) - curveToRelative(0.26f, -0.2f, 0.61f, -0.2f, 0.87f, -0.01f) - lineToRelative(0.1f, 0.08f) - lineToRelative(6.92f, 6.8f) - curveToRelative(-0.5f, 0.3f, -1.08f, 0.48f, -1.7f, 0.48f) - lineTo(7.25f, 22.0f) - curveToRelative(-0.62f, 0.0f, -1.2f, -0.18f, -1.7f, -0.48f) - lineToRelative(6.92f, -6.8f) - close() - } - } - return _imageAltText!! - } - -private var _imageAltText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageArrowBack.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageArrowBack.kt deleted file mode 100644 index 78e2f05b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageArrowBack.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ImageArrowBack: ImageVector - get() { - if (_imageArrowBack != null) { - return _imageArrowBack!! - } - _imageArrowBack = fluentIcon(name = "Filled.ImageArrowBack") { - fluentPath { - moveTo(12.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(5.35f, 4.35f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.7f, -0.7f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(1.5f, 1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, -0.7f) - lineTo(4.71f, 6.0f) - horizontalLineToRelative(2.04f) - curveTo(7.99f, 6.0f, 9.0f, 7.0f, 9.0f, 8.25f) - verticalLineToRelative(0.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-0.25f) - curveTo(10.0f, 6.45f, 8.54f, 5.0f, 6.75f, 5.0f) - lineTo(4.71f, 5.0f) - lineToRelative(0.64f, -0.65f) - close() - moveTo(15.75f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(13.0f, 6.5f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, -10.0f, 5.48f) - verticalLineToRelative(5.77f) - curveToRelative(0.0f, 0.63f, 0.18f, 1.21f, 0.49f, 1.7f) - lineToRelative(6.93f, -6.8f) - lineToRelative(0.14f, -0.13f) - curveToRelative(0.83f, -0.7f, 2.05f, -0.7f, 2.89f, 0.01f) - lineToRelative(0.13f, 0.12f) - lineToRelative(6.93f, 6.8f) - curveToRelative(0.31f, -0.49f, 0.49f, -1.07f, 0.49f, -1.7f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - horizontalLineToRelative(-5.77f) - arcTo(6.47f, 6.47f, 0.0f, false, true, 13.0f, 6.5f) - close() - moveTo(15.75f, 6.0f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -4.5f) - close() - moveTo(11.47f, 13.72f) - lineTo(11.56f, 13.65f) - curveToRelative(0.26f, -0.2f, 0.61f, -0.2f, 0.87f, -0.01f) - lineToRelative(0.1f, 0.08f) - lineToRelative(6.92f, 6.8f) - curveToRelative(-0.5f, 0.3f, -1.08f, 0.48f, -1.7f, 0.48f) - lineTo(6.25f, 21.0f) - curveToRelative(-0.62f, 0.0f, -1.2f, -0.18f, -1.7f, -0.48f) - lineToRelative(6.92f, -6.8f) - close() - } - } - return _imageArrowBack!! - } - -private var _imageArrowBack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageArrowCounterclockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageArrowCounterclockwise.kt deleted file mode 100644 index a061e6b2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageArrowCounterclockwise.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ImageArrowCounterclockwise: ImageVector - get() { - if (_imageArrowCounterclockwise != null) { - return _imageArrowCounterclockwise!! - } - _imageArrowCounterclockwise = fluentIcon(name = "Filled.ImageArrowCounterclockwise") { - fluentPath { - moveTo(12.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(4.0f, 3.5f) - verticalLineToRelative(0.55f) - arcToRelative(3.49f, 3.49f, 0.0f, false, true, 6.0f, 2.45f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -6.19f, 2.24f) - curveToRelative(-0.26f, -0.31f, 0.0f, -0.74f, 0.41f, -0.74f) - curveToRelative(0.18f, 0.0f, 0.34f, 0.09f, 0.46f, 0.21f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 9.0f, 6.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.5f, 5.0f) - horizontalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - verticalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - close() - moveTo(17.5f, 9.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - close() - moveTo(13.0f, 6.5f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, -9.0f, 6.0f) - verticalLineToRelative(6.25f) - curveToRelative(0.0f, 0.63f, 0.18f, 1.21f, 0.49f, 1.7f) - lineToRelative(6.93f, -6.8f) - lineToRelative(0.14f, -0.13f) - curveToRelative(0.83f, -0.7f, 2.05f, -0.7f, 2.89f, 0.01f) - lineToRelative(0.13f, 0.12f) - lineToRelative(6.93f, 6.8f) - curveToRelative(0.31f, -0.49f, 0.49f, -1.07f, 0.49f, -1.7f) - lineTo(22.0f, 7.25f) - curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) - lineTo(12.5f, 4.0f) - curveToRelative(0.32f, 0.77f, 0.5f, 1.61f, 0.5f, 2.5f) - close() - moveTo(14.5f, 9.25f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) - close() - moveTo(12.47f, 14.72f) - lineTo(12.56f, 14.65f) - curveToRelative(0.26f, -0.2f, 0.61f, -0.2f, 0.87f, -0.01f) - lineToRelative(0.1f, 0.08f) - lineToRelative(6.92f, 6.8f) - curveToRelative(-0.5f, 0.3f, -1.08f, 0.48f, -1.7f, 0.48f) - lineTo(7.25f, 22.0f) - curveToRelative(-0.62f, 0.0f, -1.2f, -0.18f, -1.7f, -0.48f) - lineToRelative(6.92f, -6.8f) - close() - } - } - return _imageArrowCounterclockwise!! - } - -private var _imageArrowCounterclockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageArrowForward.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageArrowForward.kt deleted file mode 100644 index 84c0fb7b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageArrowForward.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ImageArrowForward: ImageVector - get() { - if (_imageArrowForward != null) { - return _imageArrowForward!! - } - _imageArrowForward = fluentIcon(name = "Filled.ImageArrowForward") { - fluentPath { - moveTo(1.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) - close() - moveTo(7.65f, 4.35f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.7f, -0.7f) - lineToRelative(1.5f, 1.5f) - curveToRelative(0.2f, 0.2f, 0.2f, 0.5f, 0.0f, 0.7f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -0.7f, -0.7f) - lineTo(8.29f, 6.0f) - lineTo(6.25f, 6.0f) - curveTo(5.01f, 6.0f, 4.0f, 7.0f, 4.0f, 8.25f) - verticalLineToRelative(0.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-0.25f) - curveTo(3.0f, 6.45f, 4.46f, 5.0f, 6.25f, 5.0f) - horizontalLineToRelative(2.04f) - lineToRelative(-0.64f, -0.65f) - close() - moveTo(15.75f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(13.0f, 6.5f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, -10.0f, 5.48f) - verticalLineToRelative(5.77f) - curveToRelative(0.0f, 0.63f, 0.18f, 1.21f, 0.49f, 1.7f) - lineToRelative(6.93f, -6.8f) - lineToRelative(0.14f, -0.13f) - curveToRelative(0.83f, -0.7f, 2.05f, -0.7f, 2.89f, 0.01f) - lineToRelative(0.13f, 0.12f) - lineToRelative(6.93f, 6.8f) - curveToRelative(0.31f, -0.49f, 0.49f, -1.07f, 0.49f, -1.7f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - horizontalLineToRelative(-5.77f) - arcTo(6.47f, 6.47f, 0.0f, false, true, 13.0f, 6.5f) - close() - moveTo(15.75f, 6.0f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -4.5f) - close() - moveTo(11.47f, 13.72f) - lineTo(11.56f, 13.65f) - curveToRelative(0.26f, -0.2f, 0.61f, -0.2f, 0.87f, -0.01f) - lineToRelative(0.1f, 0.08f) - lineToRelative(6.92f, 6.8f) - curveToRelative(-0.5f, 0.3f, -1.08f, 0.48f, -1.7f, 0.48f) - lineTo(6.25f, 21.0f) - curveToRelative(-0.62f, 0.0f, -1.2f, -0.18f, -1.7f, -0.48f) - lineToRelative(6.92f, -6.8f) - close() - } - } - return _imageArrowForward!! - } - -private var _imageArrowForward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageBorder.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageBorder.kt deleted file mode 100644 index 93d5f00d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageBorder.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ImageBorder: ImageVector - get() { - if (_imageBorder != null) { - return _imageBorder!! - } - _imageBorder = fluentIcon(name = "Filled.ImageBorder") { - fluentPath { - moveTo(10.4f, 12.66f) - lineTo(8.0f, 15.06f) - lineTo(8.0f, 8.0f) - horizontalLineToRelative(8.0f) - verticalLineToRelative(7.07f) - lineToRelative(-2.4f, -2.41f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.2f, 0.0f) - close() - moveTo(14.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(12.53f, 13.72f) - lineTo(14.81f, 16.0f) - lineTo(9.2f, 16.0f) - lineToRelative(2.28f, -2.28f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(7.25f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(9.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-9.5f) - close() - } - } - return _imageBorder!! - } - -private var _imageBorder: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageCircle.kt deleted file mode 100644 index 9b144912..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageCircle.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ImageCircle: ImageVector - get() { - if (_imageCircle != null) { - return _imageCircle!! - } - _imageCircle = fluentIcon(name = "Filled.ImageCircle") { - fluentPath { - moveTo(19.56f, 18.54f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -15.13f, 0.0f) - lineToRelative(5.99f, -5.9f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.16f, 0.0f) - lineToRelative(5.98f, 5.9f) - close() - moveTo(18.5f, 19.6f) - lineToRelative(-5.97f, -5.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineTo(5.5f, 19.6f) - arcToRelative(9.96f, 9.96f, 0.0f, false, false, 13.0f, 0.0f) - close() - moveTo(17.5f, 8.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - } - } - return _imageCircle!! - } - -private var _imageCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageCopy.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageCopy.kt deleted file mode 100644 index 3632794c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageCopy.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ImageCopy: ImageVector - get() { - if (_imageCopy != null) { - return _imageCopy!! - } - _imageCopy = fluentIcon(name = "Filled.ImageCopy") { - fluentPath { - moveTo(4.5f, 6.0f) - curveTo(3.6f, 6.59f, 3.0f, 7.6f, 3.0f, 8.76f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 2.9f, 2.35f, 5.25f, 5.25f, 5.25f) - horizontalLineToRelative(6.5f) - curveToRelative(1.15f, 0.0f, 2.17f, -0.6f, 2.74f, -1.5f) - lineTo(8.25f, 19.01f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.75f, -3.75f) - lineTo(4.5f, 6.01f) - close() - moveTo(12.57f, 12.15f) - lineTo(12.47f, 12.23f) - lineTo(7.08f, 17.54f) - curveToRelative(0.49f, 0.3f, 1.06f, 0.46f, 1.67f, 0.46f) - horizontalLineToRelative(8.5f) - curveToRelative(0.62f, 0.0f, 1.2f, -0.17f, 1.7f, -0.48f) - lineToRelative(-5.42f, -5.3f) - lineToRelative(-0.09f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.77f, -0.06f) - lineToRelative(-0.1f, 0.06f) - close() - moveTo(8.75f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 5.5f, 6.25f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.64f, 0.19f, 1.24f, 0.5f, 1.74f) - lineToRelative(5.42f, -5.33f) - lineToRelative(0.13f, -0.12f) - curveToRelative(0.83f, -0.7f, 2.06f, -0.7f, 2.9f, 0.0f) - lineToRelative(0.13f, 0.11f) - lineTo(20.0f, 16.47f) - curveToRelative(0.31f, -0.5f, 0.49f, -1.09f, 0.49f, -1.72f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-8.5f) - close() - moveTo(9.5f, 5.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - } - } - return _imageCopy!! - } - -private var _imageCopy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageEdit.kt deleted file mode 100644 index 1c34cb4e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageEdit.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ImageEdit: ImageVector - get() { - if (_imageEdit != null) { - return _imageEdit!! - } - _imageEdit = fluentIcon(name = "Filled.ImageEdit") { - fluentPath { - moveToRelative(11.56f, 13.65f) - lineToRelative(-0.09f, 0.07f) - lineToRelative(-6.92f, 6.8f) - curveToRelative(0.5f, 0.3f, 1.08f, 0.48f, 1.7f, 0.48f) - horizontalLineToRelative(4.91f) - lineToRelative(0.36f, -1.42f) - curveToRelative(0.16f, -0.65f, 0.5f, -1.24f, 0.97f, -1.72f) - lineToRelative(2.1f, -2.1f) - lineToRelative(-2.07f, -2.04f) - lineToRelative(-0.09f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.87f, 0.0f) - close() - moveTo(16.5f, 8.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - close() - moveTo(15.66f, 14.69f) - lineTo(13.58f, 12.65f) - lineTo(13.45f, 12.53f) - curveToRelative(-0.84f, -0.7f, -2.06f, -0.7f, -2.9f, 0.0f) - lineToRelative(-0.13f, 0.12f) - lineToRelative(-6.93f, 6.8f) - curveToRelative(-0.31f, -0.49f, -0.49f, -1.07f, -0.49f, -1.7f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.45f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.45f, 21.0f, 6.25f) - verticalLineToRelative(4.76f) - curveToRelative(-0.93f, -0.08f, -1.9f, 0.24f, -2.6f, 0.95f) - lineToRelative(-2.74f, 2.73f) - close() - moveTo(13.5f, 8.25f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 4.5f, 0.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -4.5f, 0.0f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.34f, -0.6f, 0.78f, -0.71f, 1.25f) - lineToRelative(-0.46f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _imageEdit!! - } - -private var _imageEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageGlobe.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageGlobe.kt deleted file mode 100644 index e2c6c4b7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageGlobe.kt +++ /dev/null @@ -1,113 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ImageGlobe: ImageVector - get() { - if (_imageGlobe != null) { - return _imageGlobe!! - } - _imageGlobe = fluentIcon(name = "Filled.ImageGlobe") { - fluentPath { - moveTo(5.0f, 6.0f) - curveToRelative(0.05f, -1.41f, 0.25f, -2.67f, 0.56f, -3.58f) - curveToRelative(0.17f, -0.52f, 0.36f, -0.9f, 0.55f, -1.14f) - curveToRelative(0.2f, -0.25f, 0.33f, -0.28f, 0.39f, -0.28f) - reflectiveCurveToRelative(0.2f, 0.03f, 0.39f, 0.28f) - curveToRelative(0.19f, 0.24f, 0.38f, 0.62f, 0.55f, 1.14f) - curveToRelative(0.3f, 0.91f, 0.51f, 2.17f, 0.55f, 3.58f) - horizontalLineTo(5.01f) - close() - } - fluentPath { - moveTo(4.61f, 2.1f) - curveToRelative(0.1f, -0.32f, 0.23f, -0.62f, 0.37f, -0.89f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 1.02f, 6.0f) - horizontalLineToRelative(2.99f) - curveToRelative(0.04f, -1.5f, 0.26f, -2.87f, 0.6f, -3.9f) - close() - } - fluentPath { - moveTo(8.39f, 2.1f) - curveToRelative(-0.1f, -0.32f, -0.23f, -0.62f, -0.37f, -0.89f) - arcTo(5.5f, 5.5f, 0.0f, false, true, 11.98f, 6.0f) - horizontalLineTo(8.99f) - curveToRelative(-0.04f, -1.5f, -0.26f, -2.87f, -0.6f, -3.9f) - close() - } - fluentPath { - moveTo(9.0f, 7.0f) - horizontalLineToRelative(2.98f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, -3.96f, 4.79f) - curveToRelative(0.14f, -0.27f, 0.26f, -0.57f, 0.37f, -0.89f) - curveToRelative(0.34f, -1.03f, 0.56f, -2.4f, 0.6f, -3.9f) - close() - } - fluentPath { - moveTo(6.89f, 11.72f) - curveToRelative(-0.2f, 0.25f, -0.33f, 0.28f, -0.39f, 0.28f) - reflectiveCurveToRelative(-0.2f, -0.03f, -0.39f, -0.28f) - arcToRelative(3.84f, 3.84f, 0.0f, false, true, -0.55f, -1.14f) - curveToRelative(-0.3f, -0.91f, -0.51f, -2.17f, -0.55f, -3.58f) - horizontalLineToRelative(2.98f) - arcToRelative(12.92f, 12.92f, 0.0f, false, true, -0.55f, 3.58f) - curveToRelative(-0.17f, 0.52f, -0.36f, 0.9f, -0.55f, 1.14f) - close() - } - fluentPath { - moveTo(1.02f, 7.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 3.96f, 4.79f) - arcToRelative(6.13f, 6.13f, 0.0f, false, true, -0.37f, -0.89f) - curveToRelative(-0.34f, -1.03f, -0.56f, -2.4f, -0.6f, -3.9f) - horizontalLineTo(1.02f) - close() - } - fluentPath { - moveTo(15.75f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - } - fluentPath { - moveTo(6.5f, 13.0f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, 5.48f, -10.0f) - horizontalLineToRelative(5.77f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.63f, -0.18f, 1.21f, -0.49f, 1.7f) - lineToRelative(-6.93f, -6.8f) - lineToRelative(-0.13f, -0.12f) - curveToRelative(-0.83f, -0.7f, -2.06f, -0.7f, -2.9f, 0.0f) - lineToRelative(-0.13f, 0.12f) - lineToRelative(-6.93f, 6.8f) - curveToRelative(-0.31f, -0.49f, -0.49f, -1.07f, -0.49f, -1.7f) - verticalLineToRelative(-5.77f) - arcTo(6.47f, 6.47f, 0.0f, false, false, 6.5f, 13.0f) - close() - moveTo(15.75f, 6.0f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, 4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, -4.5f) - close() - } - fluentPath { - moveToRelative(11.47f, 13.72f) - lineToRelative(0.09f, -0.07f) - curveToRelative(0.26f, -0.2f, 0.61f, -0.2f, 0.87f, -0.01f) - lineToRelative(0.1f, 0.08f) - lineToRelative(6.92f, 6.8f) - curveToRelative(-0.5f, 0.3f, -1.08f, 0.48f, -1.7f, 0.48f) - horizontalLineTo(6.25f) - curveToRelative(-0.62f, 0.0f, -1.2f, -0.18f, -1.7f, -0.48f) - lineToRelative(6.92f, -6.8f) - close() - } - } - return _imageGlobe!! - } - -private var _imageGlobe: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageMultiple.kt deleted file mode 100644 index 668591d6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageMultiple.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ImageMultiple: ImageVector - get() { - if (_imageMultiple != null) { - return _imageMultiple!! - } - _imageMultiple = fluentIcon(name = "Filled.ImageMultiple") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(9.0f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 0.65f, -0.19f, 1.25f, -0.51f, 1.75f) - lineToRelative(-5.7f, -5.37f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.09f, 0.0f) - lineTo(3.51f, 17.0f) - curveTo(3.2f, 16.5f, 3.0f, 15.9f, 3.0f, 15.25f) - verticalLineToRelative(-9.0f) - close() - moveTo(13.75f, 9.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - moveTo(11.26f, 12.72f) - lineTo(16.91f, 18.05f) - curveToRelative(-0.49f, 0.28f, -1.06f, 0.45f, -1.66f, 0.45f) - horizontalLineToRelative(-9.0f) - curveToRelative(-0.6f, 0.0f, -1.17f, -0.17f, -1.66f, -0.45f) - lineToRelative(5.64f, -5.33f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, 0.0f) - close() - moveTo(8.75f, 21.0f) - curveTo(7.6f, 21.0f, 6.59f, 20.4f, 6.0f, 19.5f) - horizontalLineToRelative(9.74f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 3.75f, -3.75f) - lineTo(19.49f, 6.01f) - curveToRelative(0.9f, 0.58f, 1.5f, 1.59f, 1.5f, 2.74f) - verticalLineToRelative(7.0f) - curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) - horizontalLineToRelative(-7.0f) - close() - } - } - return _imageMultiple!! - } - -private var _imageMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageOff.kt deleted file mode 100644 index c0171973..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageOff.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ImageOff: ImageVector - get() { - if (_imageOff != null) { - return _imageOff!! - } - _imageOff = fluentIcon(name = "Filled.ImageOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.26f, 1.26f) - curveToRelative(-0.3f, 0.5f, -0.48f, 1.08f, -0.48f, 1.71f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.63f, 0.18f, 1.21f, 0.49f, 1.7f) - lineToRelative(6.93f, -6.8f) - lineToRelative(0.14f, -0.13f) - curveToRelative(0.17f, -0.14f, 0.36f, -0.25f, 0.56f, -0.34f) - lineToRelative(0.95f, 0.95f) - lineToRelative(-0.6f, 0.59f) - lineToRelative(-6.92f, 6.8f) - curveToRelative(0.5f, 0.3f, 1.08f, 0.48f, 1.7f, 0.48f) - horizontalLineToRelative(11.5f) - curveToRelative(0.62f, 0.0f, 1.2f, -0.18f, 1.7f, -0.48f) - lineToRelative(-0.02f, -0.03f) - lineToRelative(1.29f, 1.3f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.07f) - lineTo(3.28f, 2.22f) - close() - moveTo(15.75f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(21.0f, 17.75f) - verticalLineToRelative(0.07f) - lineTo(6.18f, 3.0f) - horizontalLineToRelative(11.57f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - close() - moveTo(15.75f, 6.0f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, 4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, -4.5f) - close() - } - } - return _imageOff!! - } - -private var _imageOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageProhibited.kt deleted file mode 100644 index cfa72354..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageProhibited.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ImageProhibited: ImageVector - get() { - if (_imageProhibited != null) { - return _imageProhibited!! - } - _imageProhibited = fluentIcon(name = "Filled.ImageProhibited") { - fluentPath { - moveTo(6.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) - close() - moveTo(6.5f, 10.5f) - curveToRelative(-0.83f, 0.0f, -1.6f, -0.25f, -2.25f, -0.7f) - lineToRelative(5.56f, -5.55f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -3.3f, 6.25f) - close() - moveTo(3.2f, 8.75f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 5.56f, -5.56f) - lineTo(3.18f, 8.75f) - close() - moveTo(16.5f, 8.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - close() - moveTo(6.5f, 13.0f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, 5.48f, -10.0f) - horizontalLineToRelative(5.77f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.63f, -0.18f, 1.21f, -0.49f, 1.7f) - lineToRelative(-6.93f, -6.8f) - lineToRelative(-0.13f, -0.12f) - curveToRelative(-0.83f, -0.7f, -2.06f, -0.7f, -2.9f, 0.0f) - lineToRelative(-0.13f, 0.12f) - lineToRelative(-6.93f, 6.8f) - curveToRelative(-0.31f, -0.49f, -0.49f, -1.07f, -0.49f, -1.7f) - verticalLineToRelative(-5.77f) - arcTo(6.47f, 6.47f, 0.0f, false, false, 6.5f, 13.0f) - close() - moveTo(13.5f, 8.25f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 4.5f, 0.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -4.5f, 0.0f) - close() - moveTo(11.56f, 13.65f) - lineTo(11.47f, 13.72f) - lineTo(4.55f, 20.52f) - curveToRelative(0.5f, 0.3f, 1.08f, 0.48f, 1.7f, 0.48f) - horizontalLineToRelative(11.5f) - curveToRelative(0.62f, 0.0f, 1.2f, -0.18f, 1.7f, -0.48f) - lineToRelative(-6.92f, -6.8f) - lineToRelative(-0.1f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.87f, 0.0f) - close() - } - } - return _imageProhibited!! - } - -private var _imageProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageReflection.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageReflection.kt deleted file mode 100644 index 03b3921c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageReflection.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ImageReflection: ImageVector - get() { - if (_imageReflection != null) { - return _imageReflection!! - } - _imageReflection = fluentIcon(name = "Filled.ImageReflection") { - fluentPath { - moveTo(4.0f, 6.25f) - curveTo(4.0f, 4.45f, 5.46f, 3.0f, 7.25f, 3.0f) - horizontalLineToRelative(9.5f) - curveTo(18.55f, 3.0f, 20.0f, 4.46f, 20.0f, 6.25f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 1.0f, -0.46f, 1.9f, -1.17f, 2.5f) - curveToRelative(0.71f, 0.6f, 1.17f, 1.5f, 1.17f, 2.5f) - lineTo(20.0f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, -1.0f) - horizontalLineToRelative(-1.6f) - curveToRelative(0.04f, 0.08f, 0.05f, 0.16f, 0.05f, 0.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, -1.0f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, 1.0f) - horizontalLineToRelative(-1.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(5.5f, 21.0f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 4.0f, 21.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -1.0f, 0.46f, -1.9f, 1.17f, -2.5f) - arcTo(3.27f, 3.27f, 0.0f, false, true, 4.0f, 15.25f) - verticalLineToRelative(-9.0f) - close() - moveTo(5.78f, 16.2f) - curveToRelative(0.29f, 0.45f, 0.78f, 0.75f, 1.33f, 0.8f) - lineToRelative(4.37f, -4.29f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, 0.0f) - lineTo(16.92f, 17.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 1.31f, -0.81f) - lineToRelative(-4.66f, -4.54f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.14f, 0.0f) - lineTo(5.78f, 16.2f) - close() - moveTo(15.0f, 9.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcTo(1.25f, 1.25f, 0.0f, false, false, 15.0f, 9.0f) - close() - } - } - return _imageReflection!! - } - -private var _imageReflection: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageSearch.kt deleted file mode 100644 index e4df93b1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageSearch.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ImageSearch: ImageVector - get() { - if (_imageSearch != null) { - return _imageSearch!! - } - _imageSearch = fluentIcon(name = "Filled.ImageSearch") { - fluentPath { - moveTo(16.5f, 8.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - close() - moveTo(3.0f, 10.75f) - verticalLineToRelative(-4.5f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.63f, -0.18f, 1.21f, -0.49f, 1.7f) - lineToRelative(-6.93f, -6.8f) - lineToRelative(-0.13f, -0.12f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.25f, -0.38f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -8.2f, -1.4f) - close() - moveTo(13.5f, 8.25f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 4.5f, 0.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -4.5f, 0.0f) - close() - moveTo(13.98f, 21.0f) - curveToRelative(-0.05f, -0.36f, -0.21f, -0.7f, -0.5f, -0.99f) - lineToRelative(-2.23f, -2.24f) - arcToRelative(5.48f, 5.48f, 0.0f, false, false, 0.55f, -4.24f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.63f, 0.11f) - lineToRelative(0.1f, 0.08f) - lineToRelative(6.92f, 6.8f) - curveToRelative(-0.5f, 0.3f, -1.08f, 0.48f, -1.7f, 0.48f) - horizontalLineToRelative(-3.77f) - close() - moveTo(9.95f, 17.89f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, -1.15f, 0.98f) - lineToRelative(2.92f, 2.91f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.83f, -2.83f) - close() - moveTo(6.5f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) - close() - } - } - return _imageSearch!! - } - -private var _imageSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageShadow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageShadow.kt deleted file mode 100644 index a99af10e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageShadow.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ImageShadow: ImageVector - get() { - if (_imageShadow != null) { - return _imageShadow!! - } - _imageShadow = fluentIcon(name = "Filled.ImageShadow") { - fluentPath { - moveTo(5.25f, 2.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 0.64f, 0.19f, 1.24f, 0.5f, 1.74f) - lineToRelative(5.7f, -5.37f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.1f, 0.0f) - lineTo(17.0f, 16.0f) - curveToRelative(0.31f, -0.5f, 0.5f, -1.1f, 0.5f, -1.74f) - verticalLineToRelative(-9.0f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-9.0f) - close() - moveTo(12.75f, 8.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, 2.5f) - close() - moveTo(5.25f, 17.5f) - curveToRelative(-0.61f, 0.0f, -1.18f, -0.17f, -1.67f, -0.46f) - lineToRelative(5.66f, -5.33f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.02f, 0.0f) - lineToRelative(5.66f, 5.33f) - curveToRelative(-0.49f, 0.3f, -1.06f, 0.46f, -1.67f, 0.46f) - horizontalLineToRelative(-9.0f) - close() - moveTo(6.5f, 18.75f) - verticalLineToRelative(-0.25f) - horizontalLineToRelative(8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, -4.0f) - verticalLineToRelative(-8.0f) - horizontalLineToRelative(0.25f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(7.0f) - curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) - horizontalLineToRelative(-7.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.25f, -3.25f) - close() - } - } - return _imageShadow!! - } - -private var _imageShadow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageTable.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageTable.kt deleted file mode 100644 index 8439fc90..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImageTable.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ImageTable: ImageVector - get() { - if (_imageTable != null) { - return _imageTable!! - } - _imageTable = fluentIcon(name = "Filled.ImageTable") { - fluentPath { - moveTo(6.25f, 3.0f) - horizontalLineToRelative(0.25f) - verticalLineToRelative(3.5f) - lineTo(3.0f, 6.5f) - verticalLineToRelative(-0.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - close() - moveTo(3.0f, 16.0f) - lineTo(3.0f, 8.0f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(8.0f) - lineTo(3.0f, 16.0f) - close() - moveTo(16.0f, 6.5f) - lineTo(8.0f, 6.5f) - lineTo(8.0f, 3.0f) - horizontalLineToRelative(8.0f) - verticalLineToRelative(3.5f) - close() - moveTo(17.5f, 6.5f) - lineTo(17.5f, 3.0f) - horizontalLineToRelative(0.25f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(0.25f) - horizontalLineToRelative(-3.5f) - close() - moveTo(17.5f, 8.0f) - lineTo(21.0f, 8.0f) - verticalLineToRelative(8.0f) - horizontalLineToRelative(-3.5f) - lineTo(17.5f, 8.0f) - close() - moveTo(17.5f, 17.5f) - lineTo(21.0f, 17.5f) - verticalLineToRelative(0.25f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-0.25f) - verticalLineToRelative(-3.5f) - close() - moveTo(16.0f, 17.5f) - lineTo(16.0f, 21.0f) - lineTo(8.0f, 21.0f) - verticalLineToRelative(-3.5f) - horizontalLineToRelative(8.0f) - close() - moveTo(6.5f, 17.5f) - lineTo(6.5f, 21.0f) - horizontalLineToRelative(-0.25f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - verticalLineToRelative(-0.25f) - horizontalLineToRelative(3.5f) - close() - moveTo(8.0f, 15.07f) - lineToRelative(2.4f, -2.41f) - curveToRelative(0.89f, -0.88f, 2.31f, -0.88f, 3.2f, 0.0f) - lineToRelative(2.4f, 2.4f) - lineTo(16.0f, 8.0f) - lineTo(8.0f, 8.0f) - verticalLineToRelative(7.07f) - close() - moveTo(14.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(14.81f, 16.0f) - lineTo(12.53f, 13.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineTo(9.19f, 16.0f) - horizontalLineToRelative(5.62f) - close() - } - } - return _imageTable!! - } - -private var _imageTable: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImmersiveReader.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImmersiveReader.kt deleted file mode 100644 index aac58195..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ImmersiveReader.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ImmersiveReader: ImageVector - get() { - if (_immersiveReader != null) { - return _immersiveReader!! - } - _immersiveReader = fluentIcon(name = "Filled.ImmersiveReader") { - fluentPath { - moveTo(4.0f, 3.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - lineTo(11.14f, 19.5f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 11.0f, 19.0f) - verticalLineToRelative(-1.5f) - lineTo(4.0f, 17.5f) - lineTo(4.0f, 5.0f) - horizontalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(1.0f) - lineTo(13.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(7.17f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 2.0f, 0.35f) - lineTo(22.0f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - horizontalLineToRelative(-6.0f) - curveToRelative(-0.77f, 0.0f, -1.47f, 0.29f, -2.0f, 0.76f) - arcTo(2.99f, 2.99f, 0.0f, false, false, 10.0f, 3.0f) - lineTo(4.0f, 3.0f) - close() - moveTo(21.23f, 13.17f) - curveToRelative(0.25f, 0.21f, 0.59f, 0.58f, 0.91f, 1.13f) - curveToRelative(0.54f, 0.9f, 0.86f, 1.96f, 0.86f, 3.2f) - curveToRelative(0.0f, 1.24f, -0.32f, 2.3f, -0.86f, 3.2f) - curveToRelative(-0.32f, 0.55f, -0.66f, 0.92f, -0.91f, 1.13f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.96f, -1.16f) - curveToRelative(0.13f, -0.1f, 0.35f, -0.35f, 0.59f, -0.74f) - curveToRelative(0.4f, -0.67f, 0.64f, -1.48f, 0.64f, -2.43f) - curveToRelative(0.0f, -0.95f, -0.24f, -1.76f, -0.64f, -2.43f) - curveToRelative(-0.24f, -0.39f, -0.46f, -0.64f, -0.59f, -0.74f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.96f, -1.16f) - close() - moveTo(19.2f, 14.65f) - arcToRelative(3.73f, 3.73f, 0.0f, false, true, 1.3f, 2.85f) - arcToRelative(3.73f, 3.73f, 0.0f, false, true, -1.3f, 2.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, -1.13f) - lineToRelative(0.08f, -0.07f) - arcToRelative(2.24f, 2.24f, 0.0f, false, false, 0.7f, -1.65f) - arcToRelative(2.24f, 2.24f, 0.0f, false, false, -0.7f, -1.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.9f, -1.2f) - close() - moveTo(16.51f, 14.05f) - curveToRelative(0.3f, 0.1f, 0.49f, 0.39f, 0.49f, 0.7f) - verticalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.31f, 0.5f) - lineTo(14.16f, 19.0f) - horizontalLineToRelative(-1.41f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.41f) - lineToRelative(1.53f, -1.74f) - curveToRelative(0.2f, -0.24f, 0.53f, -0.32f, 0.82f, -0.21f) - close() - } - } - return _immersiveReader!! - } - -private var _immersiveReader: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Incognito.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Incognito.kt deleted file mode 100644 index 80185a9d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Incognito.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Incognito: ImageVector - get() { - if (_incognito != null) { - return _incognito!! - } - _incognito = fluentIcon(name = "Filled.Incognito") { - fluentPath { - moveToRelative(18.12f, 4.61f) - lineToRelative(2.11f, 4.64f) - curveToRelative(0.41f, 0.08f, 0.82f, 0.17f, 1.2f, 0.27f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.36f, 1.45f) - curveToRelative(-0.48f, -0.12f, -0.98f, -0.23f, -1.5f, -0.33f) - arcToRelative(44.74f, 44.74f, 0.0f, false, false, -15.14f, 0.0f) - curveToRelative(-0.52f, 0.1f, -1.02f, 0.21f, -1.5f, 0.33f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.36f, -1.45f) - curveToRelative(0.39f, -0.1f, 0.79f, -0.2f, 1.2f, -0.27f) - lineToRelative(2.1f, -4.64f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 8.39f, 3.0f) - horizontalLineToRelative(7.24f) - curveToRelative(1.08f, 0.0f, 2.06f, 0.63f, 2.5f, 1.61f) - close() - moveTo(3.5f, 16.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.0f) - close() - moveTo(6.5f, 12.0f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, 4.39f, 5.5f) - horizontalLineToRelative(2.22f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, -0.08f, -1.5f) - horizontalLineToRelative(-2.06f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.47f, -4.0f) - close() - moveTo(14.5f, 16.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.0f) - close() - } - } - return _incognito!! - } - -private var _incognito: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/InkStroke.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/InkStroke.kt deleted file mode 100644 index 93254169..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/InkStroke.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.InkStroke: ImageVector - get() { - if (_inkStroke != null) { - return _inkStroke!! - } - _inkStroke = fluentIcon(name = "Filled.InkStroke") { - fluentPath { - moveTo(3.0f, 2.9f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 4.1f, 2.0f) - lineToRelative(3.74f, 0.35f) - curveToRelative(2.66f, 0.27f, 5.2f, 0.59f, 7.3f, 0.95f) - curveToRelative(2.04f, 0.35f, 3.8f, 0.76f, 4.76f, 1.27f) - curveToRelative(0.25f, 0.13f, 0.52f, 0.3f, 0.73f, 0.55f) - curveToRelative(0.22f, 0.26f, 0.44f, 0.66f, 0.35f, 1.16f) - curveToRelative(-0.08f, 0.46f, -0.38f, 0.77f, -0.61f, 0.96f) - curveToRelative(-0.25f, 0.2f, -0.55f, 0.35f, -0.88f, 0.48f) - curveToRelative(-1.27f, 0.53f, -3.66f, 1.03f, -7.4f, 1.51f) - curveToRelative(-1.67f, 0.22f, -2.91f, 0.44f, -3.8f, 0.64f) - lineToRelative(0.69f, 0.14f) - curveToRelative(1.21f, 0.22f, 2.75f, 0.41f, 4.38f, 0.56f) - arcToRelative(37.0f, 37.0f, 0.0f, false, true, 3.72f, 0.51f) - curveToRelative(0.57f, 0.11f, 1.1f, 0.24f, 1.57f, 0.38f) - curveToRelative(0.43f, 0.14f, 0.88f, 0.31f, 1.22f, 0.55f) - curveToRelative(0.16f, 0.11f, 0.38f, 0.3f, 0.53f, 0.58f) - curveToRelative(0.17f, 0.32f, 0.2f, 0.72f, 0.04f, 1.1f) - curveToRelative(-0.15f, 0.31f, -0.4f, 0.52f, -0.58f, 0.65f) - curveToRelative(-0.2f, 0.13f, -0.44f, 0.25f, -0.69f, 0.34f) - curveToRelative(-0.95f, 0.37f, -2.66f, 0.7f, -5.3f, 1.02f) - curveToRelative(-2.6f, 0.31f, -4.17f, 0.7f, -5.03f, 1.1f) - curveToRelative(-0.34f, 0.15f, -0.51f, 0.28f, -0.59f, 0.36f) - lineToRelative(0.18f, 0.2f) - curveToRelative(0.18f, 0.18f, 0.44f, 0.37f, 0.79f, 0.57f) - curveToRelative(0.68f, 0.4f, 1.56f, 0.78f, 2.41f, 1.07f) - lineToRelative(3.25f, 1.05f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -0.61f, 1.9f) - lineTo(11.0f, 20.9f) - curveToRelative(-0.94f, -0.32f, -1.96f, -0.75f, -2.8f, -1.25f) - arcToRelative(6.33f, 6.33f, 0.0f, false, true, -1.15f, -0.84f) - curveToRelative(-0.32f, -0.3f, -0.64f, -0.71f, -0.77f, -1.22f) - arcToRelative(1.83f, 1.83f, 0.0f, false, true, 0.34f, -1.6f) - curveToRelative(0.33f, -0.43f, 0.82f, -0.75f, 1.4f, -1.01f) - curveToRelative(1.14f, -0.52f, 2.96f, -0.95f, 5.62f, -1.26f) - curveToRelative(1.59f, -0.2f, 2.76f, -0.38f, 3.59f, -0.56f) - lineToRelative(-0.54f, -0.12f) - curveToRelative(-1.05f, -0.2f, -2.31f, -0.37f, -3.5f, -0.48f) - arcToRelative(51.94f, 51.94f, 0.0f, false, true, -4.57f, -0.59f) - curveToRelative(-0.65f, -0.12f, -1.24f, -0.25f, -1.73f, -0.4f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -1.29f, -0.55f) - arcToRelative(1.55f, 1.55f, 0.0f, false, true, -0.54f, -0.65f) - curveToRelative(-0.16f, -0.39f, -0.12f, -0.8f, 0.07f, -1.13f) - curveToRelative(0.17f, -0.28f, 0.4f, -0.46f, 0.6f, -0.58f) - curveToRelative(0.2f, -0.13f, 0.45f, -0.24f, 0.7f, -0.34f) - curveToRelative(1.01f, -0.37f, 2.77f, -0.72f, 5.41f, -1.07f) - curveToRelative(3.23f, -0.42f, 5.27f, -0.83f, 6.4f, -1.2f) - curveToRelative(-0.77f, -0.26f, -1.94f, -0.52f, -3.44f, -0.78f) - curveToRelative(-2.03f, -0.35f, -4.53f, -0.66f, -7.16f, -0.93f) - lineTo(3.91f, 4.0f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 3.0f, 2.9f) - close() - } - } - return _inkStroke!! - } - -private var _inkStroke: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/InkStrokeArrowDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/InkStrokeArrowDown.kt deleted file mode 100644 index b5e4366e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/InkStrokeArrowDown.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.InkStrokeArrowDown: ImageVector - get() { - if (_inkStrokeArrowDown != null) { - return _inkStrokeArrowDown!! - } - _inkStrokeArrowDown = fluentIcon(name = "Filled.InkStrokeArrowDown") { - fluentPath { - moveTo(3.0f, 2.9f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 4.1f, 2.0f) - lineToRelative(3.74f, 0.35f) - curveToRelative(2.66f, 0.27f, 5.2f, 0.59f, 7.3f, 0.95f) - curveToRelative(2.04f, 0.35f, 3.8f, 0.76f, 4.76f, 1.27f) - curveToRelative(0.25f, 0.13f, 0.52f, 0.3f, 0.73f, 0.55f) - curveToRelative(0.22f, 0.26f, 0.44f, 0.66f, 0.35f, 1.16f) - curveToRelative(-0.08f, 0.46f, -0.38f, 0.77f, -0.61f, 0.96f) - curveToRelative(-0.25f, 0.2f, -0.55f, 0.35f, -0.88f, 0.48f) - curveToRelative(-1.27f, 0.53f, -3.66f, 1.03f, -7.4f, 1.51f) - curveToRelative(-1.67f, 0.22f, -2.91f, 0.44f, -3.8f, 0.64f) - lineToRelative(0.69f, 0.14f) - curveToRelative(1.21f, 0.22f, 2.75f, 0.41f, 4.38f, 0.56f) - arcToRelative(37.0f, 37.0f, 0.0f, false, true, 3.72f, 0.51f) - arcToRelative(15.54f, 15.54f, 0.0f, false, true, 1.89f, 0.5f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.47f, 1.92f) - verticalLineToRelative(1.64f) - curveToRelative(-0.93f, 0.2f, -2.13f, 0.38f, -3.62f, 0.56f) - curveToRelative(-2.61f, 0.31f, -4.18f, 0.7f, -5.04f, 1.1f) - curveToRelative(-0.34f, 0.15f, -0.51f, 0.28f, -0.59f, 0.36f) - lineToRelative(0.18f, 0.2f) - curveToRelative(0.18f, 0.18f, 0.44f, 0.37f, 0.79f, 0.57f) - curveToRelative(0.68f, 0.4f, 1.56f, 0.78f, 2.41f, 1.07f) - lineToRelative(3.25f, 1.05f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -0.61f, 1.9f) - lineTo(11.0f, 20.9f) - curveToRelative(-0.94f, -0.32f, -1.96f, -0.75f, -2.8f, -1.25f) - arcToRelative(6.33f, 6.33f, 0.0f, false, true, -1.15f, -0.84f) - curveToRelative(-0.32f, -0.3f, -0.64f, -0.71f, -0.77f, -1.22f) - arcToRelative(1.83f, 1.83f, 0.0f, false, true, 0.34f, -1.6f) - curveToRelative(0.33f, -0.43f, 0.82f, -0.75f, 1.4f, -1.01f) - curveToRelative(1.14f, -0.52f, 2.96f, -0.95f, 5.62f, -1.26f) - curveToRelative(1.59f, -0.2f, 2.76f, -0.38f, 3.59f, -0.56f) - lineToRelative(-0.54f, -0.12f) - curveToRelative(-1.05f, -0.2f, -2.31f, -0.37f, -3.5f, -0.48f) - arcToRelative(51.94f, 51.94f, 0.0f, false, true, -4.57f, -0.59f) - curveToRelative(-0.65f, -0.12f, -1.24f, -0.25f, -1.73f, -0.4f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -1.29f, -0.55f) - arcToRelative(1.55f, 1.55f, 0.0f, false, true, -0.54f, -0.65f) - curveToRelative(-0.16f, -0.39f, -0.12f, -0.8f, 0.07f, -1.13f) - curveToRelative(0.17f, -0.28f, 0.4f, -0.46f, 0.6f, -0.58f) - curveToRelative(0.2f, -0.13f, 0.45f, -0.24f, 0.7f, -0.34f) - curveToRelative(1.01f, -0.37f, 2.77f, -0.72f, 5.41f, -1.07f) - curveToRelative(3.23f, -0.42f, 5.27f, -0.83f, 6.4f, -1.2f) - curveToRelative(-0.77f, -0.26f, -1.94f, -0.52f, -3.44f, -0.78f) - curveToRelative(-2.03f, -0.35f, -4.53f, -0.66f, -7.16f, -0.93f) - lineTo(3.91f, 4.0f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 3.0f, 2.9f) - close() - moveTo(20.5f, 13.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(6.09f) - lineToRelative(-0.8f, -0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) - lineToRelative(2.5f, 2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) - lineToRelative(2.5f, -2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.42f) - lineToRelative(-0.8f, 0.8f) - lineTo(20.5f, 13.5f) - close() - } - } - return _inkStrokeArrowDown!! - } - -private var _inkStrokeArrowDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/InkStrokeArrowUpDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/InkStrokeArrowUpDown.kt deleted file mode 100644 index 9a568b11..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/InkStrokeArrowUpDown.kt +++ /dev/null @@ -1,91 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.InkStrokeArrowUpDown: ImageVector - get() { - if (_inkStrokeArrowUpDown != null) { - return _inkStrokeArrowUpDown!! - } - _inkStrokeArrowUpDown = fluentIcon(name = "Filled.InkStrokeArrowUpDown") { - fluentPath { - moveTo(3.0f, 2.9f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 4.1f, 2.0f) - lineToRelative(3.74f, 0.35f) - curveToRelative(2.66f, 0.27f, 5.2f, 0.59f, 7.3f, 0.95f) - curveToRelative(2.04f, 0.35f, 3.8f, 0.76f, 4.76f, 1.27f) - curveToRelative(0.25f, 0.13f, 0.52f, 0.3f, 0.73f, 0.55f) - curveToRelative(0.22f, 0.26f, 0.44f, 0.66f, 0.35f, 1.16f) - curveToRelative(-0.08f, 0.46f, -0.38f, 0.77f, -0.61f, 0.96f) - curveToRelative(-0.25f, 0.2f, -0.55f, 0.35f, -0.88f, 0.48f) - curveToRelative(-1.27f, 0.53f, -3.66f, 1.03f, -7.4f, 1.51f) - curveToRelative(-1.67f, 0.22f, -2.91f, 0.44f, -3.8f, 0.64f) - lineToRelative(0.69f, 0.14f) - curveToRelative(1.21f, 0.22f, 2.75f, 0.41f, 4.38f, 0.56f) - arcToRelative(37.0f, 37.0f, 0.0f, false, true, 3.72f, 0.51f) - lineToRelative(-1.5f, 1.5f) - lineToRelative(-0.2f, 0.24f) - curveToRelative(-0.71f, -0.1f, -1.47f, -0.2f, -2.2f, -0.26f) - arcToRelative(51.94f, 51.94f, 0.0f, false, true, -4.56f, -0.59f) - curveToRelative(-0.65f, -0.12f, -1.24f, -0.25f, -1.73f, -0.4f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -1.29f, -0.55f) - arcToRelative(1.55f, 1.55f, 0.0f, false, true, -0.54f, -0.65f) - curveToRelative(-0.16f, -0.39f, -0.12f, -0.8f, 0.07f, -1.13f) - curveToRelative(0.17f, -0.28f, 0.4f, -0.46f, 0.6f, -0.58f) - curveToRelative(0.2f, -0.13f, 0.45f, -0.24f, 0.7f, -0.34f) - curveToRelative(1.01f, -0.37f, 2.77f, -0.72f, 5.41f, -1.07f) - curveToRelative(3.23f, -0.42f, 5.27f, -0.83f, 6.4f, -1.2f) - curveToRelative(-0.77f, -0.26f, -1.94f, -0.52f, -3.44f, -0.78f) - curveToRelative(-2.03f, -0.35f, -4.53f, -0.66f, -7.16f, -0.93f) - lineTo(3.91f, 4.0f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 3.0f, 2.9f) - close() - moveTo(15.6f, 15.42f) - lineToRelative(0.05f, 0.06f) - curveToRelative(-0.53f, 0.08f, -1.12f, 0.15f, -1.76f, 0.23f) - curveToRelative(-2.61f, 0.31f, -4.18f, 0.7f, -5.04f, 1.1f) - curveToRelative(-0.34f, 0.15f, -0.51f, 0.28f, -0.59f, 0.36f) - lineToRelative(0.18f, 0.2f) - curveToRelative(0.18f, 0.18f, 0.44f, 0.37f, 0.79f, 0.57f) - curveToRelative(0.68f, 0.4f, 1.56f, 0.78f, 2.41f, 1.07f) - lineToRelative(3.25f, 1.05f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -0.61f, 1.9f) - lineTo(11.0f, 20.9f) - curveToRelative(-0.94f, -0.32f, -1.96f, -0.75f, -2.8f, -1.25f) - arcToRelative(6.33f, 6.33f, 0.0f, false, true, -1.15f, -0.84f) - curveToRelative(-0.32f, -0.3f, -0.64f, -0.71f, -0.77f, -1.22f) - arcToRelative(1.83f, 1.83f, 0.0f, false, true, 0.34f, -1.6f) - curveToRelative(0.33f, -0.43f, 0.82f, -0.75f, 1.4f, -1.01f) - curveToRelative(1.14f, -0.52f, 2.96f, -0.95f, 5.62f, -1.26f) - lineToRelative(1.42f, -0.19f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.53f, 1.88f) - close() - moveTo(20.22f, 10.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, 0.0f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.42f) - lineToRelative(0.79f, -0.8f) - verticalLineToRelative(5.68f) - lineToRelative(-0.8f, -0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) - lineToRelative(2.5f, 2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) - lineToRelative(2.5f, -2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.42f) - lineToRelative(-0.8f, 0.8f) - lineTo(20.51f, 13.9f) - lineToRelative(0.8f, 0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, -1.42f) - lineToRelative(-2.5f, -2.5f) - close() - } - } - return _inkStrokeArrowUpDown!! - } - -private var _inkStrokeArrowUpDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/InkingTool.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/InkingTool.kt deleted file mode 100644 index 9a1bbf41..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/InkingTool.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.InkingTool: ImageVector - get() { - if (_inkingTool != null) { - return _inkingTool!! - } - _inkingTool = fluentIcon(name = "Filled.InkingTool") { - fluentPath { - moveTo(13.82f, 20.04f) - curveToRelative(-0.12f, 0.46f, -0.31f, 0.88f, -0.56f, 1.27f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.47f, 0.08f) - lineToRelative(-0.08f, -0.12f) - lineToRelative(-0.13f, -0.22f) - arcToRelative(5.63f, 5.63f, 0.0f, false, true, -0.55f, -3.05f) - horizontalLineToRelative(3.94f) - curveToRelative(0.07f, 0.72f, 0.02f, 1.4f, -0.15f, 2.04f) - close() - moveTo(18.48f, 9.0f) - lineTo(15.0f, 16.09f) - curveToRelative(-0.22f, 0.45f, -0.62f, 0.78f, -1.1f, 0.91f) - horizontalLineToRelative(-3.73f) - lineToRelative(-0.1f, -0.03f) - curveToRelative(-0.38f, -0.13f, -0.7f, -0.38f, -0.92f, -0.72f) - lineToRelative(-0.08f, -0.15f) - lineTo(5.54f, 9.0f) - horizontalLineToRelative(12.94f) - close() - moveTo(20.25f, 2.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.92f, -0.7f, 1.67f, -1.6f, 1.74f) - lineTo(4.74f, 7.99f) - curveToRelative(-0.92f, 0.0f, -1.67f, -0.7f, -1.74f, -1.6f) - lineTo(3.0f, 2.75f) - curveToRelative(0.0f, -0.38f, 0.27f, -0.7f, 0.64f, -0.75f) - horizontalLineToRelative(16.6f) - close() - } - } - return _inkingTool!! - } - -private var _inkingTool: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/InprivateAccount.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/InprivateAccount.kt deleted file mode 100644 index 6c60677a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/InprivateAccount.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.InprivateAccount: ImageVector - get() { - if (_inprivateAccount != null) { - return _inprivateAccount!! - } - _inprivateAccount = fluentIcon(name = "Filled.InprivateAccount") { - fluentPath { - moveTo(17.75f, 14.0f) - curveToRelative(1.21f, 0.0f, 2.2f, 0.95f, 2.25f, 2.15f) - verticalLineToRelative(0.1f) - horizontalLineToRelative(-8.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(7.98f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.51f, 1.5f) - horizontalLineTo(12.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(6.64f) - curveTo(17.08f, 21.25f, 14.85f, 22.0f, 12.0f, 22.0f) - curveToRelative(-3.15f, 0.0f, -5.53f, -0.9f, -7.1f, -2.74f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.9f, -2.43f) - verticalLineToRelative(-0.58f) - curveTo(4.0f, 15.0f, 5.01f, 14.0f, 6.25f, 14.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 4.0f, 2.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(4.58f) - curveToRelative(0.2f, 0.47f, 0.34f, 0.97f, 0.4f, 1.5f) - horizontalLineTo(12.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(4.98f) - arcToRelative(4.97f, 4.97f, 0.0f, false, true, -0.4f, 1.5f) - horizontalLineTo(12.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(4.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, -4.0f, -8.0f) - close() - } - } - return _inprivateAccount!! - } - -private var _inprivateAccount: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/IosArrowLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/IosArrowLtr.kt deleted file mode 100644 index 03899126..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/IosArrowLtr.kt +++ /dev/null @@ -1,31 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.IosArrowLtr: ImageVector - get() { - if (_iosArrowLtr != null) { - return _iosArrowLtr!! - } - _iosArrowLtr = fluentIcon(name = "Filled.IosArrowLtr") { - fluentPath { - moveTo(12.73f, 3.69f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.46f, -1.38f) - lineToRelative(-8.5f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.38f) - lineToRelative(8.5f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.46f, -1.38f) - lineTo(4.87f, 12.0f) - lineToRelative(7.86f, -8.31f) - close() - } - } - return _iosArrowLtr!! - } - -private var _iosArrowLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/IosArrowRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/IosArrowRtl.kt deleted file mode 100644 index feaac2cd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/IosArrowRtl.kt +++ /dev/null @@ -1,31 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.IosArrowRtl: ImageVector - get() { - if (_iosArrowRtl != null) { - return _iosArrowRtl!! - } - _iosArrowRtl = fluentIcon(name = "Filled.IosArrowRtl") { - fluentPath { - moveTo(11.27f, 3.69f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.46f, -1.38f) - lineToRelative(8.5f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.38f) - lineToRelative(-8.5f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.46f, -1.38f) - lineTo(19.12f, 12.0f) - lineToRelative(-7.85f, -8.31f) - close() - } - } - return _iosArrowRtl!! - } - -private var _iosArrowRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Iot.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Iot.kt deleted file mode 100644 index 147c7569..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Iot.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Iot: ImageVector - get() { - if (_iot != null) { - return _iot!! - } - _iot = fluentIcon(name = "Filled.Iot") { - fluentPath { - moveTo(19.0f, 4.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -3.01f, 2.44f) - lineTo(14.7f, 9.06f) - curveTo(15.5f, 9.79f, 16.0f, 10.84f, 16.0f, 12.0f) - verticalLineToRelative(0.05f) - lineToRelative(1.3f, 0.27f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -0.28f, 1.47f) - lineToRelative(-1.32f, -0.26f) - arcToRelative(4.01f, 4.01f, 0.0f, false, true, -1.75f, 1.96f) - lineToRelative(0.5f, 1.51f) - horizontalLineToRelative(0.05f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -1.47f, 0.48f) - lineToRelative(-0.5f, -1.51f) - arcToRelative(4.04f, 4.04f, 0.0f, false, true, -3.75f, -1.6f) - lineToRelative(-1.8f, 0.85f) - lineToRelative(0.02f, 0.28f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -0.62f, -1.65f) - lineToRelative(1.75f, -0.83f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.79f, -3.57f) - lineToRelative(-1.0f, -1.13f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.5f, 6.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 4.59f, 1.38f) - lineToRelative(0.98f, 1.12f) - arcToRelative(3.98f, 3.98f, 0.0f, false, true, 3.36f, -0.23f) - lineToRelative(1.25f, -2.06f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 1.82f, -4.22f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 19.0f, 4.5f) - close() - } - } - return _iot!! - } - -private var _iot: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/IotAlert.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/IotAlert.kt deleted file mode 100644 index fb13f7c5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/IotAlert.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.IotAlert: ImageVector - get() { - if (_iotAlert != null) { - return _iotAlert!! - } - _iotAlert = fluentIcon(name = "Filled.IotAlert") { - fluentPath { - moveTo(19.0f, 4.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -3.01f, 2.44f) - lineTo(14.7f, 9.06f) - curveToRelative(0.32f, 0.3f, 0.6f, 0.65f, 0.8f, 1.04f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, -4.0f, 4.9f) - verticalLineToRelative(0.97f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -2.73f, -1.6f) - lineToRelative(-1.8f, 0.85f) - lineToRelative(0.02f, 0.28f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -0.62f, -1.65f) - lineToRelative(1.75f, -0.83f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.79f, -3.57f) - lineToRelative(-1.0f, -1.13f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.5f, 6.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 4.59f, 1.38f) - lineToRelative(0.98f, 1.12f) - arcToRelative(3.98f, 3.98f, 0.0f, false, true, 3.36f, -0.24f) - lineToRelative(1.25f, -2.06f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 16.5f, 2.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 19.0f, 4.5f) - close() - moveTo(16.5f, 11.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, 4.0f) - verticalLineToRelative(3.0f) - lineToRelative(-0.95f, 0.8f) - curveToRelative(-0.3f, 0.26f, -0.46f, 0.39f, -0.5f, 0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.24f, 0.65f) - curveToRelative(0.1f, 0.05f, 0.3f, 0.05f, 0.7f, 0.05f) - horizontalLineToRelative(9.02f) - curveToRelative(0.4f, 0.0f, 0.6f, 0.0f, 0.7f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.25f, -0.66f) - curveToRelative(-0.05f, -0.1f, -0.2f, -0.23f, -0.5f, -0.49f) - lineToRelative(-0.96f, -0.8f) - verticalLineToRelative(-3.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, -4.0f) - close() - moveTo(18.0f, 21.0f) - curveToRelative(-0.22f, 0.58f, -0.8f, 1.0f, -1.5f, 1.0f) - curveToRelative(-0.69f, 0.0f, -1.28f, -0.42f, -1.5f, -1.0f) - horizontalLineToRelative(3.0f) - close() - } - } - return _iotAlert!! - } - -private var _iotAlert: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Javascript.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Javascript.kt deleted file mode 100644 index f4ffd675..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Javascript.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Javascript: ImageVector - get() { - if (_javascript != null) { - return _javascript!! - } - _javascript = fluentIcon(name = "Filled.Javascript") { - fluentPath { - moveTo(3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - close() - moveTo(12.0f, 9.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(9.75f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(11.0f, 16.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-6.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(14.0f, 11.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(0.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-1.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-1.5f) - close() - } - } - return _javascript!! - } - -private var _javascript: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyCommand.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyCommand.kt deleted file mode 100644 index 08770a2c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyCommand.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.KeyCommand: ImageVector - get() { - if (_keyCommand != null) { - return _keyCommand!! - } - _keyCommand = fluentIcon(name = "Filled.KeyCommand") { - fluentPath { - moveTo(6.5f, 5.0f) - curveTo(7.33f, 5.0f, 8.0f, 5.67f, 8.0f, 6.5f) - lineTo(8.0f, 8.0f) - lineTo(6.5f, 8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, -3.0f) - close() - moveTo(10.0f, 8.0f) - lineTo(10.0f, 6.5f) - arcTo(3.5f, 3.5f, 0.0f, true, false, 6.5f, 10.0f) - lineTo(8.0f, 10.0f) - verticalLineToRelative(4.0f) - lineTo(6.5f, 14.0f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 3.5f, 3.5f) - lineTo(10.0f, 16.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(1.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 3.5f, -3.5f) - lineTo(16.0f, 14.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(1.5f) - arcTo(3.5f, 3.5f, 0.0f, true, false, 14.0f, 6.5f) - lineTo(14.0f, 8.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(10.0f, 10.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(16.0f, 8.0f) - lineTo(16.0f, 6.5f) - arcTo(1.5f, 1.5f, 0.0f, true, true, 17.5f, 8.0f) - lineTo(16.0f, 8.0f) - close() - moveTo(16.0f, 16.0f) - horizontalLineToRelative(1.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -1.5f, 1.5f) - lineTo(16.0f, 16.0f) - close() - moveTo(8.0f, 16.0f) - verticalLineToRelative(1.5f) - arcTo(1.5f, 1.5f, 0.0f, true, true, 6.5f, 16.0f) - lineTo(8.0f, 16.0f) - close() - } - } - return _keyCommand!! - } - -private var _keyCommand: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyReset.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyReset.kt deleted file mode 100644 index d50640db..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyReset.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.KeyReset: ImageVector - get() { - if (_keyReset != null) { - return _keyReset!! - } - _keyReset = fluentIcon(name = "Filled.KeyReset") { - fluentPath { - moveTo(15.5f, 2.05f) - arcTo(6.55f, 6.55f, 0.0f, false, false, 9.06f, 9.7f) - curveToRelative(0.02f, 0.1f, -0.02f, 0.2f, -0.07f, 0.25f) - lineToRelative(-6.24f, 6.23f) - curveToRelative(-0.51f, 0.52f, -0.8f, 1.22f, -0.8f, 1.95f) - verticalLineToRelative(2.17f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-1.25f) - lineTo(9.7f, 19.05f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-1.75f) - horizontalLineToRelative(0.33f) - curveToRelative(0.1f, -0.16f, 0.23f, -0.3f, 0.38f, -0.42f) - lineTo(10.0f, 14.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.0f, -2.48f) - lineToRelative(2.0f, -2.0f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 14.98f, 11.0f) - lineTo(17.0f, 11.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 3.8f, 1.35f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, -5.3f, -10.3f) - close() - moveTo(17.0f, 5.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(13.78f, 11.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-2.0f, 2.0f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-0.72f, -0.72f) - lineTo(17.0f, 13.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, -3.5f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, false, 5.0f, -5.0f) - horizontalLineToRelative(-3.94f) - lineToRelative(0.72f, -0.72f) - close() - } - } - return _keyReset!! - } - -private var _keyReset: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Keyboard.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Keyboard.kt deleted file mode 100644 index 8eaa4c1b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Keyboard.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Keyboard: ImageVector - get() { - if (_keyboard != null) { - return _keyboard!! - } - _keyboard = fluentIcon(name = "Filled.Keyboard") { - fluentPath { - moveTo(19.75f, 5.0f) - curveTo(20.99f, 5.0f, 22.0f, 6.0f, 22.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(22.0f, 18.0f, 20.99f, 19.0f, 19.75f, 19.0f) - lineTo(4.25f, 19.0f) - curveTo(3.01f, 19.0f, 2.0f, 18.0f, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - curveTo(2.0f, 6.01f, 3.0f, 5.0f, 4.25f, 5.0f) - horizontalLineToRelative(15.5f) - close() - moveTo(17.25f, 14.5f) - lineTo(6.65f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(10.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(16.5f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(13.5f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(10.5f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(7.5f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(6.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(9.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(12.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(15.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(18.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - } - } - return _keyboard!! - } - -private var _keyboard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Keyboard123.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Keyboard123.kt deleted file mode 100644 index 4c6f7985..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Keyboard123.kt +++ /dev/null @@ -1,141 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Keyboard123: ImageVector - get() { - if (_keyboard123 != null) { - return _keyboard123!! - } - _keyboard123 = fluentIcon(name = "Filled.Keyboard123") { - fluentPath { - moveTo(5.16f, 4.17f) - curveToRelative(0.37f, 0.18f, 0.81f, 0.04f, 1.0f, -0.32f) - lineToRelative(0.04f, -0.06f) - curveToRelative(0.04f, -0.05f, 0.1f, -0.12f, 0.2f, -0.2f) - curveToRelative(0.2f, -0.16f, 0.53f, -0.34f, 1.1f, -0.34f) - curveToRelative(0.5f, 0.0f, 0.78f, 0.24f, 0.9f, 0.46f) - curveToRelative(0.1f, 0.2f, 0.1f, 0.48f, -0.18f, 0.76f) - curveToRelative(-0.2f, 0.2f, -0.45f, 0.36f, -0.77f, 0.55f) - lineToRelative(-0.29f, 0.16f) - lineToRelative(-0.75f, 0.45f) - curveToRelative(-0.76f, 0.5f, -1.5f, 1.2f, -1.65f, 2.53f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 5.5f, 9.0f) - horizontalLineToRelative(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.7f) - curveToRelative(0.17f, -0.24f, 0.4f, -0.43f, 0.68f, -0.62f) - lineToRelative(0.6f, -0.36f) - lineToRelative(0.38f, -0.2f) - curveToRelative(0.35f, -0.2f, 0.73f, -0.45f, 1.07f, -0.79f) - curveToRelative(0.73f, -0.72f, 0.85f, -1.7f, 0.45f, -2.49f) - arcTo(2.44f, 2.44f, 0.0f, false, false, 7.5f, 1.75f) - curveToRelative(-0.93f, 0.0f, -1.6f, 0.32f, -2.03f, 0.66f) - arcToRelative(2.67f, 2.67f, 0.0f, false, false, -0.62f, 0.72f) - lineToRelative(-0.01f, 0.02f) - verticalLineToRelative(0.01f) - horizontalLineToRelative(-0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.33f, 1.01f) - close() - moveTo(14.37f, 4.48f) - curveToRelative(-0.13f, 0.13f, -0.4f, 0.27f, -0.87f, 0.27f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - curveToRelative(0.47f, 0.0f, 0.74f, 0.14f, 0.87f, 0.27f) - curveToRelative(0.14f, 0.12f, 0.2f, 0.28f, 0.19f, 0.44f) - curveToRelative(-0.02f, 0.26f, -0.29f, 0.79f, -1.31f, 0.79f) - curveToRelative(-0.46f, 0.0f, -0.76f, -0.14f, -0.93f, -0.25f) - arcToRelative(1.04f, 1.04f, 0.0f, false, true, -0.2f, -0.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.04f, -0.2f) - curveToRelative(-0.58f, 0.38f, -0.2f, 1.05f, -0.2f, 1.05f) - verticalLineToRelative(0.01f) - lineToRelative(0.02f, 0.02f) - arcToRelative(1.47f, 1.47f, 0.0f, false, false, 0.15f, 0.18f) - curveToRelative(0.1f, 0.1f, 0.25f, 0.24f, 0.44f, 0.37f) - curveToRelative(0.4f, 0.26f, 0.97f, 0.5f, 1.76f, 0.5f) - curveToRelative(1.62f, 0.0f, 2.73f, -0.97f, 2.8f, -2.2f) - arcToRelative(2.04f, 2.04f, 0.0f, false, false, -0.57f, -1.55f) - curveToRelative(0.41f, -0.43f, 0.6f, -0.99f, 0.57f, -1.54f) - curveToRelative(-0.07f, -1.24f, -1.18f, -2.21f, -2.8f, -2.21f) - curveToRelative(-0.79f, 0.0f, -1.37f, 0.24f, -1.76f, 0.5f) - arcToRelative(2.54f, 2.54f, 0.0f, false, false, -0.6f, 0.55f) - verticalLineToRelative(0.02f) - horizontalLineToRelative(-0.01f) - verticalLineToRelative(0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.23f, 0.85f) - lineToRelative(0.03f, -0.03f) - curveToRelative(0.04f, -0.04f, 0.1f, -0.1f, 0.18f, -0.15f) - curveToRelative(0.17f, -0.11f, 0.47f, -0.25f, 0.93f, -0.25f) - curveToRelative(1.02f, 0.0f, 1.29f, 0.53f, 1.3f, 0.8f) - curveToRelative(0.01f, 0.15f, -0.04f, 0.3f, -0.18f, 0.43f) - close() - moveTo(12.12f, 7.33f) - close() - moveTo(12.12f, 3.67f) - close() - moveTo(3.5f, 2.65f) - verticalLineToRelative(5.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(2.0f, 3.79f) - lineToRelative(-0.51f, 0.17f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.91f, -0.37f) - lineToRelative(-0.04f, -0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.38f, -0.9f) - lineToRelative(0.1f, -0.05f) - lineToRelative(1.5f, -0.5f) - curveToRelative(0.45f, -0.15f, 0.91f, 0.15f, 0.98f, 0.6f) - close() - moveTo(10.62f, 9.35f) - curveToRelative(-0.32f, 0.4f, -0.82f, 0.65f, -1.37f, 0.65f) - lineTo(5.5f, 10.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.4f, -0.7f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -2.1f, 0.55f) - verticalLineToRelative(6.9f) - curveTo(2.0f, 18.0f, 3.0f, 19.0f, 4.25f, 19.0f) - horizontalLineToRelative(15.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-9.5f) - curveTo(22.0f, 6.01f, 20.99f, 5.0f, 19.75f, 5.0f) - lineTo(16.9f, 5.0f) - curveToRelative(-0.05f, 0.17f, -0.12f, 0.34f, -0.2f, 0.5f) - curveToRelative(0.26f, 0.5f, 0.37f, 1.05f, 0.34f, 1.6f) - curveToRelative(-0.11f, 1.9f, -1.79f, 3.15f, -3.8f, 3.15f) - arcToRelative(4.12f, 4.12f, 0.0f, false, true, -2.63f, -0.9f) - close() - moveTo(6.75f, 14.5f) - horizontalLineToRelative(10.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(6.65f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(15.5f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - close() - moveTo(12.5f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - close() - moveTo(9.5f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - close() - moveTo(6.5f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - close() - moveTo(17.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - close() - } - } - return _keyboard123!! - } - -private var _keyboard123: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyboardDock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyboardDock.kt deleted file mode 100644 index 1e82829e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyboardDock.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.KeyboardDock: ImageVector - get() { - if (_keyboardDock != null) { - return _keyboardDock!! - } - _keyboardDock = fluentIcon(name = "Filled.KeyboardDock") { - fluentPath { - moveTo(22.0f, 4.75f) - curveToRelative(0.0f, -1.24f, -1.01f, -2.25f, -2.25f, -2.25f) - lineTo(4.25f, 2.5f) - curveTo(3.01f, 2.5f, 2.0f, 3.5f, 2.0f, 4.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.25f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(7.0f) - verticalLineToRelative(2.94f) - lineToRelative(-0.84f, -0.84f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(2.12f, 2.12f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.12f, -2.12f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-0.84f, 0.84f) - lineTo(12.75f, 16.5f) - horizontalLineToRelative(7.0f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-9.5f) - close() - moveTo(6.75f, 12.0f) - horizontalLineToRelative(10.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(6.65f, 13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(15.5f, 9.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - close() - moveTo(12.5f, 9.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - close() - moveTo(9.5f, 9.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - close() - moveTo(6.5f, 9.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - close() - moveTo(5.0f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - close() - moveTo(8.0f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - close() - moveTo(11.0f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - close() - moveTo(14.0f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - close() - moveTo(17.0f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - close() - } - } - return _keyboardDock!! - } - -private var _keyboardDock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyboardLayoutFloat.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyboardLayoutFloat.kt deleted file mode 100644 index a233cef7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyboardLayoutFloat.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.KeyboardLayoutFloat: ImageVector - get() { - if (_keyboardLayoutFloat != null) { - return _keyboardLayoutFloat!! - } - _keyboardLayoutFloat = fluentIcon(name = "Filled.KeyboardLayoutFloat") { - fluentPath { - moveTo(21.25f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(2.75f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(18.6f) - close() - moveTo(19.75f, 3.0f) - curveTo(20.99f, 3.0f, 22.0f, 4.0f, 22.0f, 5.25f) - verticalLineToRelative(9.5f) - curveTo(22.0f, 16.0f, 20.99f, 17.0f, 19.75f, 17.0f) - horizontalLineToRelative(-6.53f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.44f, 0.0f) - lineTo(4.25f, 17.0f) - curveTo(3.01f, 17.0f, 2.0f, 16.0f, 2.0f, 14.75f) - verticalLineToRelative(-9.5f) - curveTo(2.0f, 4.01f, 3.0f, 3.0f, 4.25f, 3.0f) - horizontalLineToRelative(15.5f) - close() - moveTo(17.25f, 12.5f) - lineTo(6.65f, 12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(10.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(16.5f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(10.5f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(7.5f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(13.5f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(6.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(9.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(12.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(15.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(18.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - } - } - return _keyboardLayoutFloat!! - } - -private var _keyboardLayoutFloat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyboardLayoutOneHandedLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyboardLayoutOneHandedLeft.kt deleted file mode 100644 index 02ca174b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyboardLayoutOneHandedLeft.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.KeyboardLayoutOneHandedLeft: ImageVector - get() { - if (_keyboardLayoutOneHandedLeft != null) { - return _keyboardLayoutOneHandedLeft!! - } - _keyboardLayoutOneHandedLeft = fluentIcon(name = "Filled.KeyboardLayoutOneHandedLeft") { - fluentPath { - moveTo(19.75f, 5.0f) - curveTo(20.99f, 5.0f, 22.0f, 6.0f, 22.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(22.0f, 18.0f, 20.99f, 19.0f, 19.75f, 19.0f) - lineTo(4.25f, 19.0f) - curveTo(3.01f, 19.0f, 2.0f, 18.0f, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - curveTo(2.0f, 6.01f, 3.0f, 5.0f, 4.25f, 5.0f) - horizontalLineToRelative(15.5f) - close() - moveTo(6.5f, 16.0f) - lineTo(10.0f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(6.5f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(9.5f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(6.5f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(6.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(9.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - } - } - return _keyboardLayoutOneHandedLeft!! - } - -private var _keyboardLayoutOneHandedLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyboardLayoutResize.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyboardLayoutResize.kt deleted file mode 100644 index 06c280ec..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyboardLayoutResize.kt +++ /dev/null @@ -1,113 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.KeyboardLayoutResize: ImageVector - get() { - if (_keyboardLayoutResize != null) { - return _keyboardLayoutResize!! - } - _keyboardLayoutResize = fluentIcon(name = "Filled.KeyboardLayoutResize") { - fluentPath { - moveTo(21.25f, 10.5f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(2.1f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(21.25f, 2.0f) - horizontalLineToRelative(0.07f) - lineToRelative(0.1f, 0.02f) - lineToRelative(0.07f, 0.02f) - lineToRelative(0.06f, 0.02f) - lineToRelative(0.07f, 0.04f) - lineToRelative(0.08f, 0.05f) - lineToRelative(0.08f, 0.07f) - lineToRelative(0.05f, 0.06f) - lineToRelative(0.05f, 0.06f) - lineToRelative(0.05f, 0.09f) - lineToRelative(0.01f, 0.04f) - lineToRelative(0.03f, 0.06f) - lineToRelative(0.02f, 0.12f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(20.5f, 4.56f) - lineToRelative(-4.47f, 4.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(4.47f, -4.47f) - horizontalLineToRelative(-3.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(5.0f) - close() - moveTo(13.25f, 10.5f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(7.0f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - horizontalLineToRelative(-9.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(2.0f, 19.75f) - verticalLineToRelative(-7.0f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineToRelative(0.15f, -0.01f) - horizontalLineToRelative(9.0f) - close() - moveTo(10.75f, 17.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.78f, 0.78f, 0.0f, false, false, -0.75f, 0.75f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(4.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.37f, 0.75f, -0.75f) - reflectiveCurveToRelative(-0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - close() - moveTo(6.0f, 13.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(11.5f, 13.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(8.75f, 13.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(12.75f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-8.6f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-4.1f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 2.0f) - horizontalLineToRelative(8.5f) - close() - } - } - return _keyboardLayoutResize!! - } - -private var _keyboardLayoutResize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyboardLayoutSplit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyboardLayoutSplit.kt deleted file mode 100644 index cc121538..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyboardLayoutSplit.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.KeyboardLayoutSplit: ImageVector - get() { - if (_keyboardLayoutSplit != null) { - return _keyboardLayoutSplit!! - } - _keyboardLayoutSplit = fluentIcon(name = "Filled.KeyboardLayoutSplit") { - fluentPath { - moveTo(19.75f, 5.0f) - curveTo(20.99f, 5.0f, 22.0f, 6.0f, 22.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(22.0f, 18.0f, 20.99f, 19.0f, 19.75f, 19.0f) - lineTo(4.25f, 19.0f) - curveTo(3.01f, 19.0f, 2.0f, 18.0f, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - curveTo(2.0f, 6.01f, 3.0f, 5.0f, 4.25f, 5.0f) - horizontalLineToRelative(15.5f) - close() - moveTo(6.5f, 16.0f) - lineTo(10.0f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(6.5f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(14.0f, 16.0f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(14.0f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(17.5f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(14.5f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(9.5f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(6.5f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(6.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(9.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(15.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(18.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - } - } - return _keyboardLayoutSplit!! - } - -private var _keyboardLayoutSplit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyboardShift.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyboardShift.kt deleted file mode 100644 index 0461d80e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyboardShift.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.KeyboardShift: ImageVector - get() { - if (_keyboardShift != null) { - return _keyboardShift!! - } - _keyboardShift = fluentIcon(name = "Filled.KeyboardShift") { - fluentPath { - moveTo(10.68f, 2.6f) - curveToRelative(0.7f, -0.8f, 1.94f, -0.8f, 2.64f, 0.0f) - lineToRelative(8.25f, 9.5f) - curveToRelative(0.98f, 1.14f, 0.17f, 2.9f, -1.33f, 2.9f) - horizontalLineTo(17.0f) - verticalLineToRelative(5.25f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-6.5f) - curveTo(7.78f, 22.0f, 7.0f, 21.22f, 7.0f, 20.25f) - verticalLineTo(15.0f) - horizontalLineTo(3.75f) - curveToRelative(-1.5f, 0.0f, -2.3f, -1.76f, -1.32f, -2.9f) - lineToRelative(8.25f, -9.5f) - close() - } - } - return _keyboardShift!! - } - -private var _keyboardShift: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyboardShiftUppercase.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyboardShiftUppercase.kt deleted file mode 100644 index fdeb3e46..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyboardShiftUppercase.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.KeyboardShiftUppercase: ImageVector - get() { - if (_keyboardShiftUppercase != null) { - return _keyboardShiftUppercase!! - } - _keyboardShiftUppercase = fluentIcon(name = "Filled.KeyboardShiftUppercase") { - fluentPath { - moveTo(13.32f, 2.6f) - curveToRelative(-0.7f, -0.8f, -1.95f, -0.8f, -2.64f, 0.0f) - lineToRelative(-8.25f, 9.5f) - arcTo(1.75f, 1.75f, 0.0f, false, false, 3.75f, 15.0f) - horizontalLineTo(7.0f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(6.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineTo(15.0f) - horizontalLineToRelative(3.24f) - curveToRelative(1.5f, 0.0f, 2.3f, -1.76f, 1.33f, -2.9f) - lineToRelative(-8.25f, -9.5f) - close() - moveTo(7.75f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-8.5f) - close() - } - } - return _keyboardShiftUppercase!! - } - -private var _keyboardShiftUppercase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyboardTab.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyboardTab.kt deleted file mode 100644 index 47586bff..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/KeyboardTab.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.KeyboardTab: ImageVector - get() { - if (_keyboardTab != null) { - return _keyboardTab!! - } - _keyboardTab = fluentIcon(name = "Filled.KeyboardTab") { - fluentPath { - moveToRelative(18.2f, 11.3f) - lineToRelative(-6.5f, -6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.49f, 1.31f) - lineToRelative(0.08f, 0.1f) - lineTo(15.1f, 11.0f) - lineTo(4.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 0.88f) - lineTo(3.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.88f, 1.0f) - lineTo(15.1f, 13.0f) - lineToRelative(-4.8f, 4.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.08f, 1.31f) - lineToRelative(0.08f, 0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.32f, 0.08f) - lineToRelative(0.1f, -0.08f) - lineToRelative(6.5f, -6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.08f, -1.32f) - lineToRelative(-0.08f, -0.1f) - lineToRelative(-6.5f, -6.5f) - lineToRelative(6.5f, 6.5f) - close() - moveTo(21.0f, 18.5f) - verticalLineToRelative(-13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - close() - } - } - return _keyboardTab!! - } - -private var _keyboardTab: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Laptop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Laptop.kt deleted file mode 100644 index 7571cf5f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Laptop.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Laptop: ImageVector - get() { - if (_laptop != null) { - return _laptop!! - } - _laptop = fluentIcon(name = "Filled.Laptop") { - fluentPath { - moveTo(2.75f, 16.5f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineTo(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(18.6f) - horizontalLineToRelative(-18.5f) - close() - moveTo(18.25f, 5.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineTo(5.75f) - curveTo(4.78f, 16.0f, 4.0f, 15.22f, 4.0f, 14.25f) - verticalLineToRelative(-7.5f) - curveTo(4.0f, 5.78f, 4.78f, 5.0f, 5.75f, 5.0f) - horizontalLineToRelative(12.5f) - close() - } - } - return _laptop!! - } - -private var _laptop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Lasso.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Lasso.kt deleted file mode 100644 index 7f76f224..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Lasso.kt +++ /dev/null @@ -1,93 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Lasso: ImageVector - get() { - if (_lasso != null) { - return _lasso!! - } - _lasso = fluentIcon(name = "Filled.Lasso") { - fluentPath { - moveTo(9.7f, 2.27f) - arcToRelative(10.03f, 10.03f, 0.0f, false, true, 4.6f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.46f, 1.94f) - arcToRelative(8.03f, 8.03f, 0.0f, false, false, -3.68f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -0.46f, -1.94f) - close() - moveTo(15.88f, 3.82f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.38f, -0.33f) - curveToRelative(1.32f, 0.82f, 2.43f, 1.93f, 3.25f, 3.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.7f, 1.05f) - arcToRelative(8.05f, 8.05f, 0.0f, false, false, -2.6f, -2.6f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.33f, -1.37f) - close() - moveTo(8.12f, 3.82f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.33f, 1.37f) - arcToRelative(8.05f, 8.05f, 0.0f, false, false, -2.6f, 2.6f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.7f, -1.05f) - arcTo(10.05f, 10.05f, 0.0f, false, true, 6.74f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.38f, 0.33f) - close() - moveTo(3.47f, 8.96f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.74f, 1.2f) - arcToRelative(8.03f, 8.03f, 0.0f, false, false, 0.0f, 3.68f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.94f, 0.46f) - arcToRelative(10.03f, 10.03f, 0.0f, false, true, 0.0f, -4.6f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.2f, -0.74f) - close() - moveTo(20.53f, 8.96f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.2f, 0.74f) - arcToRelative(10.02f, 10.02f, 0.0f, false, true, 0.0f, 4.6f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.94f, -0.46f) - arcToRelative(8.03f, 8.03f, 0.0f, false, false, 0.0f, -3.68f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.74f, -1.2f) - close() - moveTo(3.82f, 15.88f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.37f, 0.33f) - arcToRelative(8.05f, 8.05f, 0.0f, false, false, 2.6f, 2.6f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.05f, 1.7f) - arcToRelative(10.05f, 10.05f, 0.0f, false, true, -3.25f, -3.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.33f, -1.38f) - close() - moveTo(20.62f, 17.49f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.74f, -0.98f) - lineToRelative(-0.01f, 0.02f) - arcToRelative(3.82f, 3.82f, 0.0f, false, true, -0.34f, 0.5f) - curveToRelative(-0.18f, 0.24f, -0.43f, 0.54f, -0.74f, 0.85f) - arcTo(7.35f, 7.35f, 0.0f, false, false, 13.0f, 16.0f) - curveToRelative(-2.27f, 0.0f, -4.0f, 1.2f, -4.0f, 3.0f) - reflectiveCurveToRelative(1.73f, 3.0f, 4.0f, 3.0f) - curveToRelative(1.91f, 0.0f, 3.46f, -0.63f, 4.64f, -1.41f) - arcToRelative(10.98f, 10.98f, 0.0f, false, true, 1.19f, 1.8f) - lineToRelative(0.01f, 0.03f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.81f, -0.85f) - curveToRelative(-0.11f, -0.23f, 0.0f, 0.0f, 0.0f, 0.0f) - verticalLineToRelative(-0.02f) - lineToRelative(-0.02f, -0.03f) - lineToRelative(-0.01f, -0.02f) - arcToRelative(8.04f, 8.04f, 0.0f, false, false, -0.46f, -0.8f) - curveToRelative(-0.23f, -0.4f, -0.56f, -0.88f, -0.98f, -1.38f) - arcToRelative(10.41f, 10.41f, 0.0f, false, false, 1.4f, -1.76f) - lineToRelative(0.03f, -0.05f) - verticalLineToRelative(-0.01f) - horizontalLineToRelative(0.01f) - verticalLineToRelative(-0.01f) - close() - moveTo(13.0f, 18.0f) - curveToRelative(1.23f, 0.0f, 2.29f, 0.48f, 3.17f, 1.14f) - curveToRelative(-0.86f, 0.5f, -1.92f, 0.86f, -3.17f, 0.86f) - curveToRelative(-1.73f, 0.0f, -2.0f, -0.8f, -2.0f, -1.0f) - curveToRelative(0.0f, -0.2f, 0.27f, -1.0f, 2.0f, -1.0f) - close() - } - } - return _lasso!! - } - -private var _lasso: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LauncherSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LauncherSettings.kt deleted file mode 100644 index bab6c4c7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LauncherSettings.kt +++ /dev/null @@ -1,88 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.LauncherSettings: ImageVector - get() { - if (_launcherSettings != null) { - return _launcherSettings!! - } - _launcherSettings = fluentIcon(name = "Filled.LauncherSettings") { - fluentPath { - moveTo(12.01f, 2.25f) - curveToRelative(0.73f, 0.0f, 1.47f, 0.1f, 2.18f, 0.25f) - curveToRelative(0.31f, 0.07f, 0.55f, 0.33f, 0.58f, 0.65f) - lineToRelative(0.17f, 1.53f) - arcToRelative(1.38f, 1.38f, 0.0f, false, false, 1.93f, 1.11f) - lineToRelative(1.4f, -0.61f) - curveToRelative(0.3f, -0.13f, 0.63f, -0.06f, 0.85f, 0.17f) - arcToRelative(9.8f, 9.8f, 0.0f, false, true, 2.2f, 3.8f) - curveToRelative(0.1f, 0.3f, 0.0f, 0.63f, -0.27f, 0.82f) - lineToRelative(-1.24f, 0.92f) - arcToRelative(1.38f, 1.38f, 0.0f, false, false, 0.0f, 2.22f) - lineToRelative(1.25f, 0.92f) - curveToRelative(0.25f, 0.19f, 0.36f, 0.52f, 0.27f, 0.82f) - arcToRelative(9.8f, 9.8f, 0.0f, false, true, -2.2f, 3.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.85f, 0.17f) - lineToRelative(-1.41f, -0.62f) - arcToRelative(1.38f, 1.38f, 0.0f, false, false, -1.93f, 1.12f) - lineToRelative(-0.17f, 1.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.57f, 0.65f) - arcToRelative(9.52f, 9.52f, 0.0f, false, true, -4.4f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.58f, -0.65f) - lineToRelative(-0.16f, -1.52f) - arcToRelative(1.38f, 1.38f, 0.0f, false, false, -1.93f, -1.11f) - lineToRelative(-1.4f, 0.62f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.85f, -0.18f) - arcToRelative(9.8f, 9.8f, 0.0f, false, true, -2.2f, -3.8f) - curveToRelative(-0.1f, -0.3f, 0.0f, -0.63f, 0.26f, -0.82f) - lineToRelative(1.25f, -0.92f) - arcToRelative(1.38f, 1.38f, 0.0f, false, false, 0.0f, -2.22f) - lineToRelative(-1.25f, -0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.27f, -0.82f) - arcToRelative(9.8f, 9.8f, 0.0f, false, true, 2.2f, -3.8f) - curveToRelative(0.22f, -0.23f, 0.56f, -0.3f, 0.86f, -0.17f) - lineToRelative(1.4f, 0.62f) - arcToRelative(1.39f, 1.39f, 0.0f, false, false, 1.93f, -1.12f) - lineToRelative(0.17f, -1.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.58f, -0.65f) - curveToRelative(0.72f, -0.16f, 1.45f, -0.24f, 2.2f, -0.25f) - close() - moveTo(13.58f, 8.0f) - lineTo(10.3f, 8.0f) - lineToRelative(3.1f, 4.0f) - lineToRelative(-2.76f, 3.51f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.23f, 0.49f) - horizontalLineToRelative(2.7f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.24f, -0.12f) - lineToRelative(2.78f, -3.57f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.62f) - lineToRelative(-2.78f, -3.57f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, -0.23f, -0.12f) - close() - moveTo(9.68f, 8.8f) - lineTo(7.4f, 11.7f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, 0.53f) - lineToRelative(0.05f, 0.08f) - lineToRelative(2.0f, 2.55f) - lineToRelative(0.05f, 0.05f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.38f, 0.0f) - lineToRelative(0.05f, -0.04f) - lineToRelative(1.33f, -1.68f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.04f, -0.3f) - lineToRelative(-0.04f, -0.08f) - lineToRelative(-0.64f, -0.81f) - lineToRelative(0.79f, -1.0f) - lineToRelative(-1.7f, -2.2f) - close() - } - } - return _launcherSettings!! - } - -private var _launcherSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Layer.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Layer.kt deleted file mode 100644 index 75f6e7d3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Layer.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Layer: ImageVector - get() { - if (_layer != null) { - return _layer!! - } - _layer = fluentIcon(name = "Filled.Layer") { - fluentPath { - moveToRelative(13.39f, 3.42f) - lineToRelative(6.36f, 4.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.66f) - lineToRelative(-6.36f, 4.25f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.78f, 0.0f) - lineTo(4.25f, 9.33f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.66f) - lineToRelative(6.36f, -4.25f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.78f, 0.0f) - close() - moveTo(20.03f, 12.19f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.58f, 0.6f) - lineToRelative(-6.05f, 4.08f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.8f, 0.0f) - lineTo(4.55f, 12.8f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.78f, -2.29f) - lineToRelative(6.84f, 4.56f) - curveToRelative(0.79f, 0.52f, 1.8f, 0.56f, 2.62f, 0.1f) - lineToRelative(0.16f, -0.1f) - lineToRelative(6.84f, -4.56f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.2f, 1.7f) - close() - moveTo(20.03f, 15.44f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.58f, 0.6f) - lineToRelative(-6.05f, 4.08f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.8f, 0.0f) - lineToRelative(-6.05f, -4.08f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.78f, -2.29f) - lineToRelative(6.84f, 4.56f) - curveToRelative(0.79f, 0.52f, 1.8f, 0.56f, 2.62f, 0.1f) - lineToRelative(0.16f, -0.1f) - lineToRelative(6.84f, -4.56f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.2f, 1.7f) - close() - } - } - return _layer!! - } - -private var _layer: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LeafOne.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LeafOne.kt deleted file mode 100644 index 3b3fd809..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LeafOne.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.LeafOne: ImageVector - get() { - if (_leafOne != null) { - return _leafOne!! - } - _leafOne = fluentIcon(name = "Filled.LeafOne") { - fluentPath { - moveTo(11.04f, 3.05f) - curveToRelative(0.68f, -0.45f, 1.6f, -0.38f, 2.2f, 0.22f) - lineToRelative(3.7f, 3.71f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, -4.19f, 11.91f) - verticalLineToRelative(2.36f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - verticalLineToRelative(-2.36f) - arcTo(7.0f, 7.0f, 0.0f, false, true, 7.05f, 7.0f) - lineToRelative(3.71f, -3.72f) - curveToRelative(0.09f, -0.08f, 0.18f, -0.16f, 0.28f, -0.22f) - close() - moveTo(12.0f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(5.63f) - curveToRelative(0.5f, 0.07f, 1.0f, 0.07f, 1.5f, 0.0f) - verticalLineToRelative(-5.63f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 12.0f, 11.0f) - close() - } - } - return _leafOne!! - } - -private var _leafOne: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LeafThree.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LeafThree.kt deleted file mode 100644 index 0fe0127f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LeafThree.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.LeafThree: ImageVector - get() { - if (_leafThree != null) { - return _leafThree!! - } - _leafThree = fluentIcon(name = "Filled.LeafThree") { - fluentPath { - moveTo(13.5f, 2.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -4.9f, 3.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, 5.49f, 3.13f) - curveToRelative(0.45f, -0.08f, 0.93f, -0.13f, 1.41f, -0.13f) - horizontalLineToRelative(3.48f) - lineToRelative(0.02f, -0.5f) - lineTo(19.0f, 3.44f) - curveToRelative(0.0f, -0.8f, -0.65f, -1.44f, -1.44f, -1.44f) - lineTo(13.5f, 2.0f) - close() - moveTo(8.43f, 18.0f) - horizontalLineToRelative(-0.18f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, -6.0f, -6.0f) - lineTo(2.25f, 7.51f) - curveToRelative(0.0f, -0.83f, 0.68f, -1.51f, 1.51f, -1.51f) - horizontalLineToRelative(4.49f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 4.8f, 2.4f) - arcToRelative(7.52f, 7.52f, 0.0f, false, false, -3.93f, 3.16f) - lineTo(7.53f, 9.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(1.96f, 1.96f) - arcToRelative(7.49f, 7.49f, 0.0f, false, false, 0.0f, 5.0f) - close() - moveTo(9.0f, 15.5f) - arcTo(6.5f, 6.5f, 0.0f, false, true, 15.5f, 9.0f) - horizontalLineToRelative(4.91f) - curveToRelative(0.88f, 0.0f, 1.59f, 0.71f, 1.59f, 1.59f) - verticalLineToRelative(4.91f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, -10.54f, 5.1f) - lineToRelative(-1.18f, 1.18f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(1.18f, -1.18f) - arcTo(6.47f, 6.47f, 0.0f, false, true, 9.0f, 15.5f) - close() - moveTo(12.18f, 19.88f) - lineTo(16.78f, 15.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-4.6f, 4.6f) - curveToRelative(0.3f, 0.4f, 0.66f, 0.76f, 1.06f, 1.06f) - close() - } - } - return _leafThree!! - } - -private var _leafThree: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LeafTwo.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LeafTwo.kt deleted file mode 100644 index b0c7e5a6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LeafTwo.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.LeafTwo: ImageVector - get() { - if (_leafTwo != null) { - return _leafTwo!! - } - _leafTwo = fluentIcon(name = "Filled.LeafTwo") { - fluentPath { - moveTo(3.7f, 2.0f) - curveTo(2.78f, 2.0f, 2.0f, 2.76f, 2.0f, 3.7f) - lineTo(2.0f, 8.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, 5.0f, 5.92f) - arcToRelative(7.96f, 7.96f, 0.0f, false, true, 1.4f, -4.45f) - lineTo(6.23f, 7.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineToRelative(2.1f, 2.1f) - arcTo(7.98f, 7.98f, 0.0f, false, true, 13.7f, 6.1f) - arcTo(6.0f, 6.0f, 0.0f, false, false, 8.0f, 2.0f) - lineTo(3.7f, 2.0f) - close() - moveTo(9.55f, 18.39f) - lineTo(7.22f, 20.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(2.33f, -2.33f) - arcTo(7.0f, 7.0f, 0.0f, false, false, 22.0f, 14.0f) - lineTo(22.0f, 8.75f) - curveTo(22.0f, 7.78f, 21.22f, 7.0f, 20.25f, 7.0f) - lineTo(15.0f, 7.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, false, -5.45f, 11.39f) - close() - moveTo(15.78f, 14.29f) - lineTo(11.68f, 18.38f) - curveToRelative(-0.4f, -0.3f, -0.75f, -0.66f, -1.06f, -1.06f) - lineToRelative(4.1f, -4.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) - close() - } - } - return _leafTwo!! - } - -private var _leafTwo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LearningApp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LearningApp.kt deleted file mode 100644 index ae2197e2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LearningApp.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.LearningApp: ImageVector - get() { - if (_learningApp != null) { - return _learningApp!! - } - _learningApp = fluentIcon(name = "Filled.LearningApp") { - fluentPath { - moveTo(5.5f, 2.0f) - lineTo(17.0f, 2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) - verticalLineToRelative(6.81f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -8.19f, 8.19f) - lineTo(4.5f, 19.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(6.23f) - curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) - lineTo(5.5f, 22.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 3.0f, 19.5f) - verticalLineToRelative(-15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 5.5f, 2.0f) - close() - moveTo(7.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - lineTo(16.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(7.0f, 5.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(16.91f, 15.1f) - lineTo(19.72f, 16.94f) - arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.28f, 0.52f) - curveToRelative(0.0f, 0.1f, -0.02f, 0.2f, -0.07f, 0.3f) - arcToRelative(0.57f, 0.57f, 0.0f, false, true, -0.2f, 0.22f) - lineToRelative(-2.8f, 1.92f) - arcToRelative(0.64f, 0.64f, 0.0f, false, true, -0.17f, 0.07f) - arcToRelative(0.55f, 0.55f, 0.0f, false, true, -0.4f, -0.02f) - arcToRelative(0.69f, 0.69f, 0.0f, false, true, -0.18f, -0.13f) - arcToRelative(0.61f, 0.61f, 0.0f, false, true, -0.18f, -0.44f) - verticalLineToRelative(-3.76f) - arcToRelative(0.62f, 0.62f, 0.0f, false, true, 0.37f, -0.57f) - arcToRelative(0.55f, 0.55f, 0.0f, false, true, 0.55f, 0.05f) - close() - } - } - return _learningApp!! - } - -private var _learningApp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Library.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Library.kt deleted file mode 100644 index 9936f6de..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Library.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Library: ImageVector - get() { - if (_library != null) { - return _library!! - } - _library = fluentIcon(name = "Filled.Library") { - fluentPath { - moveTo(5.5f, 3.0f) - curveTo(6.33f, 3.0f, 7.0f, 3.67f, 7.0f, 4.5f) - verticalLineToRelative(15.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-2.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 2.0f, 19.5f) - verticalLineToRelative(-15.0f) - curveTo(2.0f, 3.67f, 2.67f, 3.0f, 3.5f, 3.0f) - horizontalLineToRelative(2.0f) - close() - moveTo(11.5f, 3.0f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(15.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-2.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 8.0f, 19.5f) - verticalLineToRelative(-15.0f) - curveTo(8.0f, 3.67f, 8.67f, 3.0f, 9.5f, 3.0f) - horizontalLineToRelative(2.0f) - close() - moveTo(18.78f, 6.12f) - lineTo(22.0f, 18.64f) - curveToRelative(0.21f, 0.8f, -0.27f, 1.62f, -1.07f, 1.83f) - lineToRelative(-1.88f, 0.48f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.83f, -1.08f) - lineTo(14.0f, 7.35f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 1.08f, -1.82f) - lineToRelative(1.87f, -0.49f) - curveToRelative(0.8f, -0.2f, 1.63f, 0.28f, 1.83f, 1.08f) - close() - } - } - return _library!! - } - -private var _library: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Lightbulb.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Lightbulb.kt deleted file mode 100644 index 9c883c06..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Lightbulb.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Lightbulb: ImageVector - get() { - if (_lightbulb != null) { - return _lightbulb!! - } - _lightbulb = fluentIcon(name = "Filled.Lightbulb") { - fluentPath { - moveToRelative(15.54f, 19.0f) - lineToRelative(-0.3f, 1.26f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.01f, 1.73f) - lineToRelative(-0.17f, 0.01f) - horizontalLineToRelative(-2.12f) - curveToRelative(-0.99f, 0.0f, -1.85f, -0.65f, -2.14f, -1.58f) - lineToRelative(-0.05f, -0.16f) - lineTo(8.46f, 19.0f) - horizontalLineToRelative(7.08f) - close() - moveTo(12.0f, 2.0f) - curveToRelative(4.0f, 0.0f, 7.25f, 3.25f, 7.25f, 7.25f) - curveToRelative(0.0f, 2.14f, -0.94f, 4.1f, -2.77f, 5.84f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.07f, 0.13f) - lineToRelative(-0.52f, 2.28f) - horizontalLineTo(8.1f) - lineToRelative(-0.52f, -2.28f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.07f, -0.13f) - curveToRelative(-1.83f, -1.75f, -2.77f, -3.7f, -2.77f, -5.84f) - curveTo(4.75f, 5.25f, 8.0f, 2.0f, 12.0f, 2.0f) - close() - } - } - return _lightbulb!! - } - -private var _lightbulb: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LightbulbCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LightbulbCircle.kt deleted file mode 100644 index 04c08cbf..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LightbulbCircle.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.LightbulbCircle: ImageVector - get() { - if (_lightbulbCircle != null) { - return _lightbulbCircle!! - } - _lightbulbCircle = fluentIcon(name = "Filled.LightbulbCircle") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(14.48f, 17.0f) - lineTo(9.52f, 17.0f) - lineToRelative(0.1f, 0.45f) - lineToRelative(0.05f, 0.16f) - lineToRelative(0.05f, 0.14f) - curveToRelative(0.29f, 0.64f, 0.9f, 1.05f, 1.59f, 1.05f) - horizontalLineToRelative(1.38f) - lineToRelative(0.16f, -0.01f) - lineToRelative(0.15f, -0.02f) - lineToRelative(0.14f, -0.04f) - arcToRelative(1.73f, 1.73f, 0.0f, false, false, 1.24f, -1.27f) - lineToRelative(0.1f, -0.46f) - close() - moveTo(12.0f, 5.2f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, -5.0f, 5.0f) - verticalLineToRelative(0.27f) - lineToRelative(0.03f, 0.26f) - lineToRelative(0.03f, 0.25f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 1.64f, 2.98f) - lineToRelative(0.16f, 0.13f) - lineToRelative(0.32f, 1.41f) - horizontalLineToRelative(5.64f) - lineToRelative(0.32f, -1.41f) - lineToRelative(0.16f, -0.14f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 1.7f, -3.5f) - verticalLineToRelative(-0.25f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, -5.0f, -5.0f) - close() - } - } - return _lightbulbCircle!! - } - -private var _lightbulbCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LightbulbFilament.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LightbulbFilament.kt deleted file mode 100644 index 36abce5e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LightbulbFilament.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.LightbulbFilament: ImageVector - get() { - if (_lightbulbFilament != null) { - return _lightbulbFilament!! - } - _lightbulbFilament = fluentIcon(name = "Filled.LightbulbFilament") { - fluentPath { - moveToRelative(15.54f, 19.0f) - lineToRelative(-0.3f, 1.26f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.01f, 1.73f) - lineToRelative(-0.17f, 0.01f) - horizontalLineToRelative(-2.12f) - curveToRelative(-0.99f, 0.0f, -1.85f, -0.65f, -2.14f, -1.58f) - lineToRelative(-0.05f, -0.16f) - lineTo(8.46f, 19.0f) - horizontalLineToRelative(7.08f) - close() - moveTo(12.0f, 2.0f) - curveToRelative(4.0f, 0.0f, 7.25f, 3.25f, 7.25f, 7.25f) - curveToRelative(0.0f, 2.14f, -0.94f, 4.1f, -2.77f, 5.84f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.07f, 0.13f) - lineToRelative(-0.52f, 2.28f) - horizontalLineToRelative(-3.14f) - verticalLineToRelative(-6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(6.75f) - lineTo(8.11f, 17.5f) - lineToRelative(-0.52f, -2.28f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.07f, -0.13f) - curveToRelative(-1.83f, -1.75f, -2.77f, -3.7f, -2.77f, -5.84f) - curveTo(4.75f, 5.25f, 8.0f, 2.0f, 12.0f, 2.0f) - close() - moveTo(11.25f, 6.75f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - close() - moveTo(16.28f, 8.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-1.06f, 1.06f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(1.06f, -1.06f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - close() - moveTo(8.78f, 8.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(1.06f, 1.06f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineTo(8.78f, 8.22f) - close() - } - } - return _lightbulbFilament!! - } - -private var _lightbulbFilament: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LightbulbPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LightbulbPerson.kt deleted file mode 100644 index 60d978e0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LightbulbPerson.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.LightbulbPerson: ImageVector - get() { - if (_lightbulbPerson != null) { - return _lightbulbPerson!! - } - _lightbulbPerson = fluentIcon(name = "Filled.LightbulbPerson") { - fluentPath { - moveToRelative(15.42f, 19.5f) - lineToRelative(-0.17f, 0.76f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.02f, 1.73f) - lineToRelative(-0.17f, 0.01f) - horizontalLineToRelative(-2.12f) - curveToRelative(-0.99f, 0.0f, -1.85f, -0.65f, -2.14f, -1.58f) - lineToRelative(-0.05f, -0.16f) - lineToRelative(-0.17f, -0.76f) - horizontalLineToRelative(6.84f) - close() - moveTo(15.77f, 18.0f) - lineTo(15.97f, 17.1f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, -7.95f, 0.0f) - lineToRelative(0.21f, 0.9f) - horizontalLineToRelative(7.54f) - close() - moveTo(12.0f, 14.0f) - curveToRelative(-1.64f, 0.0f, -3.14f, 0.54f, -4.36f, 1.45f) - lineToRelative(-0.05f, -0.23f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.07f, -0.13f) - curveToRelative(-1.83f, -1.75f, -2.77f, -3.7f, -2.77f, -5.84f) - arcToRelative(7.25f, 7.25f, 0.0f, true, true, 14.5f, 0.0f) - curveToRelative(0.0f, 2.14f, -0.94f, 4.1f, -2.77f, 5.84f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.07f, 0.13f) - lineToRelative(-0.05f, 0.24f) - arcTo(7.22f, 7.22f, 0.0f, false, false, 12.0f, 14.0f) - close() - moveTo(10.25f, 9.25f) - arcToRelative(1.75f, 1.75f, 0.0f, true, true, 3.5f, 0.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -3.5f, 0.0f) - close() - moveTo(12.0f, 6.0f) - arcToRelative(3.25f, 3.25f, 0.0f, true, false, 0.0f, 6.5f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 12.0f, 6.0f) - close() - } - } - return _lightbulbPerson!! - } - -private var _lightbulbPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Likert.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Likert.kt deleted file mode 100644 index ed68dd84..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Likert.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Likert: ImageVector - get() { - if (_likert != null) { - return _likert!! - } - _likert = fluentIcon(name = "Filled.Likert") { - fluentPath { - moveTo(6.0f, 4.0f) - lineTo(5.0f, 4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(4.25f) - horizontalLineToRelative(4.0f) - lineTo(6.0f, 4.0f) - close() - moveTo(2.0f, 12.75f) - lineTo(2.0f, 17.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) - horizontalLineToRelative(1.0f) - verticalLineToRelative(-7.25f) - lineTo(2.0f, 12.75f) - close() - moveTo(7.5f, 20.0f) - lineTo(19.0f, 20.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) - verticalLineToRelative(-4.25f) - lineTo(7.5f, 12.75f) - lineTo(7.5f, 20.0f) - close() - moveTo(11.25f, 16.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(14.0f, 16.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(17.0f, 16.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(20.0f, 16.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(22.0f, 11.25f) - lineTo(7.5f, 11.25f) - lineTo(7.5f, 4.0f) - lineTo(19.0f, 4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(4.25f) - close() - moveTo(10.25f, 8.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(14.0f, 7.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(17.0f, 7.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(20.0f, 7.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - } - } - return _likert!! - } - -private var _likert: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Line.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Line.kt deleted file mode 100644 index 85dac1a7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Line.kt +++ /dev/null @@ -1,29 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Line: ImageVector - get() { - if (_line != null) { - return _line!! - } - _line = fluentIcon(name = "Filled.Line") { - fluentPath { - moveTo(21.7f, 2.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.4f) - lineToRelative(-18.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.4f) - lineToRelative(18.0f, -18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) - close() - } - } - return _line!! - } - -private var _line: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LineDashes.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LineDashes.kt deleted file mode 100644 index b86437ad..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LineDashes.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.LineDashes: ImageVector - get() { - if (_lineDashes != null) { - return _lineDashes!! - } - _lineDashes = fluentIcon(name = "Filled.LineDashes") { - fluentPath { - moveTo(21.7f, 2.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.41f) - lineToRelative(-0.5f, 0.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.4f, -1.41f) - lineToRelative(0.5f, -0.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) - close() - moveTo(17.7f, 6.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.41f) - lineToRelative(-1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.4f, -1.42f) - lineToRelative(0.99f, -1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, 0.0f) - close() - moveTo(13.2f, 10.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.4f) - lineToRelative(-1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.4f) - lineToRelative(1.0f, -1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) - close() - moveTo(8.7f, 16.7f) - arcTo(1.0f, 1.0f, 0.0f, true, false, 7.3f, 15.3f) - lineToRelative(-1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.42f, 1.4f) - lineToRelative(1.0f, -0.99f) - close() - moveTo(4.21f, 21.2f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.41f, -1.42f) - lineToRelative(-0.5f, 0.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.41f, 1.42f) - lineToRelative(0.5f, -0.5f) - close() - } - } - return _lineDashes!! - } - -private var _lineDashes: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LineStyle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LineStyle.kt deleted file mode 100644 index 473dc3db..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LineStyle.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.LineStyle: ImageVector - get() { - if (_lineStyle != null) { - return _lineStyle!! - } - _lineStyle = fluentIcon(name = "Filled.LineStyle") { - fluentPath { - moveTo(2.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - horizontalLineTo(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - } - fluentPath { - moveTo(2.0f, 18.5f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(17.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) - horizontalLineToRelative(-17.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 2.0f, 18.5f) - close() - } - fluentPath { - moveTo(10.75f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-2.5f) - close() - } - fluentPath { - moveTo(17.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - } - fluentPath { - moveTo(3.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineTo(3.0f) - close() - } - } - return _lineStyle!! - } - -private var _lineStyle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LineThickness.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LineThickness.kt deleted file mode 100644 index 4ec025b8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LineThickness.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.LineThickness: ImageVector - get() { - if (_lineThickness != null) { - return _lineThickness!! - } - _lineThickness = fluentIcon(name = "Filled.LineThickness") { - fluentPath { - moveTo(3.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(3.0f, 3.0f) - close() - moveTo(2.0f, 10.5f) - curveTo(2.0f, 9.67f, 2.67f, 9.0f, 3.5f, 9.0f) - horizontalLineToRelative(17.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) - horizontalLineToRelative(-17.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 2.0f, 10.5f) - close() - moveTo(2.0f, 18.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(16.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) - lineTo(4.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - close() - } - } - return _lineThickness!! - } - -private var _lineThickness: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LinkDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LinkDismiss.kt deleted file mode 100644 index 08f43cfa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LinkDismiss.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.LinkDismiss: ImageVector - get() { - if (_linkDismiss != null) { - return _linkDismiss!! - } - _linkDismiss = fluentIcon(name = "Filled.LinkDismiss") { - fluentPath { - moveTo(9.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(7.0f, 7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -0.18f, 6.0f) - lineTo(9.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(7.0f, 15.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, -0.22f, -10.0f) - lineTo(9.0f, 5.0f) - close() - moveTo(17.0f, 5.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 4.43f, 7.32f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, -1.76f, -0.95f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 17.17f, 7.0f) - lineTo(15.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(17.0f, 5.0f) - close() - moveTo(7.0f, 9.0f) - horizontalLineToRelative(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(7.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(7.0f, 9.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-1.64f, -1.65f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.65f, 1.64f) - lineToRelative(-1.65f, -1.64f) - close() - } - } - return _linkDismiss!! - } - -private var _linkDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LinkEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LinkEdit.kt deleted file mode 100644 index 18f32bce..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LinkEdit.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.LinkEdit: ImageVector - get() { - if (_linkEdit != null) { - return _linkEdit!! - } - _linkEdit = fluentIcon(name = "Filled.LinkEdit") { - fluentPath { - moveTo(10.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(6.78f, 5.0f) - arcTo(5.0f, 5.0f, 0.0f, false, false, 7.0f, 15.0f) - horizontalLineToRelative(2.12f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 9.0f, 13.0f) - lineTo(6.82f, 13.0f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 7.0f, 7.0f) - horizontalLineToRelative(2.12f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 10.0f, 6.0f) - close() - moveTo(22.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, -5.0f, -5.0f) - horizontalLineToRelative(-2.12f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 15.0f, 7.0f) - horizontalLineToRelative(2.17f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 20.0f, 10.0f) - lineTo(20.0f, 10.0f) - curveToRelative(0.7f, 0.06f, 1.37f, 0.34f, 1.93f, 0.84f) - curveToRelative(0.04f, -0.27f, 0.07f, -0.56f, 0.07f, -0.85f) - close() - moveTo(17.77f, 10.64f) - curveToRelative(-0.1f, 0.07f, -0.2f, 0.15f, -0.29f, 0.24f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.36f, 0.11f) - lineTo(7.0f, 10.99f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -1.98f) - lineTo(7.0f, 9.0f) - horizontalLineToRelative(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.77f, 1.64f) - close() - moveTo(18.1f, 11.67f) - lineTo(12.2f, 17.57f) - curveToRelative(-0.35f, 0.34f, -0.6f, 0.78f, -0.71f, 1.25f) - lineToRelative(-0.46f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _linkEdit!! - } - -private var _linkEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LinkSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LinkSquare.kt deleted file mode 100644 index b4e63f78..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LinkSquare.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.LinkSquare: ImageVector - get() { - if (_linkSquare != null) { - return _linkSquare!! - } - _linkSquare = fluentIcon(name = "Filled.LinkSquare") { - fluentPath { - moveTo(6.5f, 3.0f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 3.0f, 6.5f) - verticalLineToRelative(6.0f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 6.5f, 16.0f) - lineTo(7.0f, 16.0f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(-0.5f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 5.0f, 12.5f) - verticalLineToRelative(-6.0f) - curveTo(5.0f, 5.67f, 5.67f, 5.0f, 6.5f, 5.0f) - horizontalLineToRelative(6.0f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - lineTo(11.0f, 14.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(1.5f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 3.5f, -3.5f) - verticalLineToRelative(-6.0f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 12.5f, 3.0f) - horizontalLineToRelative(-6.0f) - close() - moveTo(10.0f, 11.5f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - lineTo(13.0f, 10.0f) - lineTo(13.0f, 8.0f) - horizontalLineToRelative(-1.5f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 8.0f, 11.5f) - verticalLineToRelative(6.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 3.5f, 3.5f) - horizontalLineToRelative(6.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 3.5f, -3.5f) - verticalLineToRelative(-6.0f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 17.5f, 8.0f) - lineTo(17.0f, 8.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(0.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-6.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - verticalLineToRelative(-6.0f) - close() - } - } - return _linkSquare!! - } - -private var _linkSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/List.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/List.kt deleted file mode 100644 index defca2db..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/List.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.List: ImageVector - get() { - if (_list != null) { - return _list!! - } - _list = fluentIcon(name = "Filled.List") { - fluentPath { - moveTo(3.0f, 17.0f) - horizontalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(3.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(15.0f, 17.0f) - lineTo(3.0f, 17.0f) - close() - moveTo(3.0f, 11.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(3.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(21.0f, 11.0f) - lineTo(3.0f, 11.0f) - close() - moveTo(3.0f, 5.0f) - horizontalLineToRelative(15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(3.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(18.0f, 5.0f) - lineTo(3.0f, 5.0f) - close() - } - } - return _list!! - } - -private var _list: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Live.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Live.kt deleted file mode 100644 index e83bc1f4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Live.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Live: ImageVector - get() { - if (_live != null) { - return _live!! - } - _live = fluentIcon(name = "Filled.Live") { - fluentPath { - moveTo(6.34f, 4.94f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.41f) - arcToRelative(8.0f, 8.0f, 0.0f, false, false, 0.0f, 11.32f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.41f, 1.41f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -14.14f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, 0.0f) - close() - moveTo(19.07f, 4.94f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, 14.14f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.41f, -1.41f) - arcToRelative(8.0f, 8.0f, 0.0f, false, false, 0.0f, -11.32f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, -1.41f) - close() - moveTo(9.31f, 7.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.42f) - arcToRelative(3.92f, 3.92f, 0.0f, false, false, 0.0f, 5.54f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.41f, 1.41f) - arcToRelative(5.92f, 5.92f, 0.0f, false, true, 0.0f, -8.37f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, 0.0f) - close() - moveTo(16.27f, 7.8f) - arcToRelative(5.92f, 5.92f, 0.0f, false, true, 0.0f, 8.37f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, -1.41f) - arcToRelative(3.92f, 3.92f, 0.0f, false, false, 0.0f, -5.54f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, -1.42f) - close() - moveTo(12.08f, 10.57f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - } - } - return _live!! - } - -private var _live: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LiveOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LiveOff.kt deleted file mode 100644 index 19224149..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LiveOff.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.LiveOff: ImageVector - get() { - if (_liveOff != null) { - return _liveOff!! - } - _liveOff = fluentIcon(name = "Filled.LiveOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(2.2f, 2.2f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.5f, 13.6f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, -1.41f) - arcToRelative(8.0f, 8.0f, 0.0f, false, true, -0.5f, -10.77f) - lineToRelative(1.52f, 1.52f) - arcToRelative(5.92f, 5.92f, 0.0f, false, false, 0.54f, 7.76f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.41f, -1.41f) - arcToRelative(3.92f, 3.92f, 0.0f, false, true, -0.51f, -4.91f) - lineToRelative(1.83f, 1.83f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.84f, 1.84f) - lineToRelative(8.25f, 8.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(19.03f, 15.85f) - lineTo(20.49f, 17.31f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, -1.42f, -12.37f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.41f, 1.41f) - arcToRelative(8.0f, 8.0f, 0.0f, false, true, 1.37f, 9.5f) - close() - moveTo(15.93f, 12.75f) - lineTo(17.53f, 14.34f) - arcToRelative(5.92f, 5.92f, 0.0f, false, false, -1.26f, -6.53f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.42f, 1.42f) - arcToRelative(3.92f, 3.92f, 0.0f, false, true, 1.08f, 3.52f) - close() - } - } - return _liveOff!! - } - -private var _liveOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LocalLanguage.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LocalLanguage.kt deleted file mode 100644 index 8dfe779c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LocalLanguage.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.LocalLanguage: ImageVector - get() { - if (_localLanguage != null) { - return _localLanguage!! - } - _localLanguage = fluentIcon(name = "Filled.LocalLanguage") { - fluentPath { - moveToRelative(9.56f, 7.5f) - lineToRelative(0.06f, 0.12f) - lineToRelative(5.3f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.8f, 0.87f) - lineToRelative(-0.05f, -0.1f) - lineToRelative(-1.38f, -3.4f) - horizontalLineTo(5.41f) - lineToRelative(-1.5f, 3.42f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.2f, 0.55f) - lineToRelative(-0.11f, -0.04f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.56f, -1.2f) - lineToRelative(0.04f, -0.12f) - lineToRelative(5.7f, -13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.78f, -0.1f) - close() - moveTo(19.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - verticalLineTo(7.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - verticalLineTo(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - horizontalLineTo(20.0f) - verticalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - horizontalLineTo(19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - verticalLineTo(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(8.66f, 10.57f) - lineTo(6.28f, 16.0f) - horizontalLineToRelative(4.6f) - lineToRelative(-2.22f, -5.43f) - close() - moveTo(11.0f, 2.0f) - horizontalLineToRelative(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - verticalLineTo(5.97f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -1.85f) - verticalLineTo(4.0f) - horizontalLineToRelative(-4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - horizontalLineTo(16.0f) - horizontalLineToRelative(-5.0f) - close() - } - } - return _localLanguage!! - } - -private var _localLanguage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Location.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Location.kt deleted file mode 100644 index 6dfeae5a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Location.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Location: ImageVector - get() { - if (_location != null) { - return _location!! - } - _location = fluentIcon(name = "Filled.Location") { - fluentPath { - moveToRelative(18.16f, 16.88f) - lineToRelative(-1.19f, 1.18f) - lineToRelative(-3.4f, 3.3f) - curveToRelative(-0.88f, 0.85f, -2.26f, 0.85f, -3.13f, 0.0f) - lineToRelative(-3.5f, -3.39f) - lineToRelative(-1.1f, -1.09f) - arcToRelative(8.7f, 8.7f, 0.0f, true, true, 12.32f, 0.0f) - close() - moveTo(14.5f, 11.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 5.0f, 0.0f) - close() - } - } - return _location!! - } - -private var _location: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LocationAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LocationAdd.kt deleted file mode 100644 index 6e3ddbcb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LocationAdd.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.LocationAdd: ImageVector - get() { - if (_locationAdd != null) { - return _locationAdd!! - } - _locationAdd = fluentIcon(name = "Filled.LocationAdd") { - fluentPath { - moveToRelative(16.97f, 18.06f) - lineToRelative(1.19f, -1.18f) - arcToRelative(8.7f, 8.7f, 0.0f, true, false, -12.32f, 0.0f) - lineToRelative(1.1f, 1.1f) - lineToRelative(3.5f, 3.39f) - curveToRelative(0.87f, 0.84f, 2.25f, 0.84f, 3.12f, 0.0f) - lineToRelative(3.41f, -3.31f) - close() - moveTo(12.0f, 7.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineTo(10.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - verticalLineToRelative(2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineTo(11.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.5f) - verticalLineTo(7.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _locationAdd!! - } - -private var _locationAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LocationArrow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LocationArrow.kt deleted file mode 100644 index a8251547..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LocationArrow.kt +++ /dev/null @@ -1,32 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.LocationArrow: ImageVector - get() { - if (_locationArrow != null) { - return _locationArrow!! - } - _locationArrow = fluentIcon(name = "Filled.LocationArrow") { - fluentPath { - moveTo(21.9f, 4.04f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -1.94f, -1.94f) - lineToRelative(-17.0f, 6.54f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.16f, 2.85f) - lineToRelative(7.0f, 1.85f) - curveToRelative(0.27f, 0.07f, 0.47f, 0.27f, 0.54f, 0.53f) - lineToRelative(1.85f, 7.01f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 2.85f, 0.16f) - lineToRelative(6.54f, -17.0f) - close() - } - } - return _locationArrow!! - } - -private var _locationArrow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LocationDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LocationDismiss.kt deleted file mode 100644 index d8dd1312..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LocationDismiss.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.LocationDismiss: ImageVector - get() { - if (_locationDismiss != null) { - return _locationDismiss!! - } - _locationDismiss = fluentIcon(name = "Filled.LocationDismiss") { - fluentPath { - moveTo(5.84f, 4.56f) - arcToRelative(8.7f, 8.7f, 0.0f, false, true, 12.52f, 12.1f) - lineToRelative(-0.2f, 0.21f) - curveToRelative(-0.92f, 0.92f, -2.45f, 2.41f, -4.6f, 4.49f) - curveToRelative(-0.87f, 0.84f, -2.25f, 0.84f, -3.12f, 0.0f) - lineTo(6.59f, 17.6f) - arcToRelative(150.0f, 150.0f, 0.0f, false, true, -0.75f, -0.74f) - arcToRelative(8.7f, 8.7f, 0.0f, false, true, 0.0f, -12.31f) - close() - moveTo(15.03f, 7.69f) - lineTo(14.95f, 7.61f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.89f, 0.0f) - lineToRelative(-0.1f, 0.08f) - lineTo(12.0f, 9.66f) - lineToRelative(-1.97f, -1.97f) - lineToRelative(-0.08f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.89f, 0.0f) - lineToRelative(-0.1f, 0.08f) - lineToRelative(-0.06f, 0.08f) - curveToRelative(-0.2f, 0.26f, -0.2f, 0.62f, -0.01f, 0.88f) - lineToRelative(0.08f, 0.1f) - lineToRelative(1.97f, 1.97f) - lineToRelative(-1.97f, 1.97f) - lineToRelative(-0.07f, 0.08f) - curveToRelative(-0.2f, 0.26f, -0.2f, 0.62f, -0.01f, 0.88f) - lineToRelative(0.08f, 0.1f) - lineToRelative(0.08f, 0.07f) - curveToRelative(0.26f, 0.2f, 0.62f, 0.2f, 0.89f, 0.0f) - lineToRelative(0.09f, -0.07f) - lineTo(12.0f, 11.78f) - lineToRelative(1.97f, 1.97f) - lineToRelative(0.08f, 0.07f) - curveToRelative(0.26f, 0.2f, 0.62f, 0.2f, 0.89f, 0.0f) - lineToRelative(0.09f, -0.07f) - lineToRelative(0.07f, -0.09f) - curveToRelative(0.2f, -0.26f, 0.2f, -0.62f, 0.01f, -0.88f) - lineToRelative(-0.08f, -0.1f) - lineToRelative(-1.97f, -1.96f) - lineToRelative(1.97f, -1.97f) - lineToRelative(0.07f, -0.09f) - curveToRelative(0.2f, -0.26f, 0.2f, -0.62f, 0.01f, -0.88f) - lineToRelative(-0.08f, -0.1f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(0.08f, 0.08f) - close() - } - } - return _locationDismiss!! - } - -private var _locationDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LocationLive.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LocationLive.kt deleted file mode 100644 index 13dcc996..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LocationLive.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.LocationLive: ImageVector - get() { - if (_locationLive != null) { - return _locationLive!! - } - _locationLive = fluentIcon(name = "Filled.LocationLive") { - fluentPath { - moveTo(9.0f, 2.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.8f, -0.7f) - arcTo(12.0f, 12.0f, 0.0f, false, true, 20.97f, 13.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - arcTo(10.5f, 10.5f, 0.0f, false, false, 9.7f, 3.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, -0.8f) - close() - moveTo(7.6f, 21.39f) - lineToRelative(0.39f, 0.38f) - curveToRelative(0.29f, 0.3f, 0.76f, 0.3f, 1.05f, 0.0f) - lineToRelative(1.35f, -1.33f) - lineToRelative(2.01f, -2.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -7.77f, 0.0f) - arcToRelative(1162.27f, 1162.27f, 0.0f, false, false, 2.97f, 2.95f) - close() - moveTo(8.51f, 15.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, 2.5f) - close() - moveTo(9.82f, 5.5f) - arcTo(0.75f, 0.75f, 0.0f, true, false, 9.68f, 7.0f) - arcTo(6.99f, 6.99f, 0.0f, false, true, 16.0f, 13.3f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, -0.13f) - arcTo(8.49f, 8.49f, 0.0f, false, false, 9.82f, 5.5f) - close() - } - } - return _locationLive!! - } - -private var _locationLive: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LocationOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LocationOff.kt deleted file mode 100644 index 90d5e694..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LocationOff.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.LocationOff: ImageVector - get() { - if (_locationOff != null) { - return _locationOff!! - } - _locationOff = fluentIcon(name = "Filled.LocationOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(2.57f, 2.57f) - arcToRelative(8.71f, 8.71f, 0.0f, false, false, 1.05f, 11.03f) - lineToRelative(1.1f, 1.1f) - lineToRelative(3.5f, 3.39f) - curveToRelative(0.87f, 0.84f, 2.25f, 0.84f, 3.12f, 0.0f) - arcToRelative(656.5f, 656.5f, 0.0f, false, false, 3.41f, -3.31f) - lineToRelative(0.01f, -0.02f) - lineToRelative(3.74f, 3.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(12.41f, 13.47f) - arcToRelative(2.51f, 2.51f, 0.0f, false, true, -2.88f, -2.88f) - lineToRelative(2.88f, 2.88f) - close() - moveTo(14.5f, 11.0f) - curveToRelative(0.0f, 0.1f, 0.0f, 0.2f, -0.02f, 0.3f) - lineToRelative(4.56f, 4.56f) - arcTo(8.7f, 8.7f, 0.0f, false, false, 6.87f, 3.69f) - lineToRelative(4.83f, 4.83f) - lineToRelative(0.3f, -0.02f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) - close() - } - } - return _locationOff!! - } - -private var _locationOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LockClosed.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LockClosed.kt deleted file mode 100644 index 4af47bf3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LockClosed.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.LockClosed: ImageVector - get() { - if (_lockClosed != null) { - return _lockClosed!! - } - _lockClosed = fluentIcon(name = "Filled.LockClosed") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, 4.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(2.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(11.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-13.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 4.0f, 20.5f) - verticalLineToRelative(-11.0f) - curveTo(4.0f, 8.67f, 4.67f, 8.0f, 5.5f, 8.0f) - lineTo(8.0f, 8.0f) - lineTo(8.0f, 6.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, -4.0f) - close() - moveTo(12.0f, 13.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(12.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(4.0f) - lineTo(14.0f, 6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - close() - } - } - return _lockClosed!! - } - -private var _lockClosed: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LockMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LockMultiple.kt deleted file mode 100644 index 36a2249a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LockMultiple.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.LockMultiple: ImageVector - get() { - if (_lockMultiple != null) { - return _lockMultiple!! - } - _lockMultiple = fluentIcon(name = "Filled.LockMultiple") { - fluentPath { - moveTo(7.25f, 5.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 7.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-9.0f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-7.5f) - curveTo(4.0f, 7.51f, 5.0f, 6.5f, 6.25f, 6.5f) - horizontalLineToRelative(1.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(12.75f, 5.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, -4.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(10.75f, 13.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - moveTo(7.63f, 19.5f) - curveToRelative(0.3f, 0.87f, 1.14f, 1.5f, 2.12f, 1.5f) - horizontalLineToRelative(6.0f) - curveTo(18.1f, 21.0f, 20.0f, 19.1f, 20.0f, 16.75f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.98f, -0.63f, -1.81f, -1.5f, -2.12f) - verticalLineToRelative(6.62f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) - lineTo(7.63f, 19.5f) - close() - } - } - return _lockMultiple!! - } - -private var _lockMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LockOpen.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LockOpen.kt deleted file mode 100644 index 151a354b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LockOpen.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.LockOpen: ImageVector - get() { - if (_lockOpen != null) { - return _lockOpen!! - } - _lockOpen = fluentIcon(name = "Filled.LockOpen") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 3.77f, 2.67f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.84f, 0.77f) - lineToRelative(-0.04f, -0.1f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -3.88f, 0.51f) - lineTo(10.01f, 8.0f) - horizontalLineToRelative(7.74f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.19f, -0.93f, 2.16f, -2.1f, 2.24f) - lineTo(6.25f, 21.99f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.09f) - lineTo(4.0f, 19.75f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(6.25f, 8.0f) - lineTo(8.0f, 8.0f) - lineTo(8.0f, 6.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, -4.0f) - close() - moveTo(12.0f, 13.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - } - } - return _lockOpen!! - } - -private var _lockOpen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LockShield.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LockShield.kt deleted file mode 100644 index bfd9041a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/LockShield.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.LockShield: ImageVector - get() { - if (_lockShield != null) { - return _lockShield!! - } - _lockShield = fluentIcon(name = "Filled.LockShield") { - fluentPath { - moveTo(10.0f, 2.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, 4.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(2.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - lineTo(18.0f, 11.0f) - curveToRelative(-0.32f, 0.0f, -0.64f, 0.11f, -0.9f, 0.33f) - lineToRelative(-0.1f, 0.1f) - arcToRelative(3.51f, 3.51f, 0.0f, false, true, -2.6f, 1.24f) - curveToRelative(-0.78f, 0.0f, -1.4f, 0.64f, -1.4f, 1.41f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 2.38f, 0.92f, 4.22f, 2.68f, 5.42f) - lineTo(3.5f, 22.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 2.0f, 20.5f) - verticalLineToRelative(-11.0f) - curveTo(2.0f, 8.67f, 2.67f, 8.0f, 3.5f, 8.0f) - lineTo(6.0f, 8.0f) - lineTo(6.0f, 6.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, -4.0f) - close() - moveTo(18.28f, 12.12f) - curveToRelative(1.0f, 1.04f, 2.1f, 1.55f, 3.32f, 1.55f) - curveToRelative(0.2f, 0.0f, 0.35f, 0.14f, 0.4f, 0.33f) - verticalLineToRelative(2.58f) - curveToRelative(0.0f, 2.69f, -1.31f, 4.51f, -3.87f, 5.4f) - arcToRelative(0.39f, 0.39f, 0.0f, false, true, -0.26f, 0.0f) - curveToRelative(-2.47f, -0.86f, -3.78f, -2.6f, -3.87f, -5.13f) - verticalLineToRelative(-2.77f) - arcToRelative(0.4f, 0.4f, 0.0f, false, true, 0.4f, -0.41f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 3.32f, -1.55f) - arcToRelative(0.39f, 0.39f, 0.0f, false, true, 0.56f, 0.0f) - close() - moveTo(10.0f, 13.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(10.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(4.0f) - lineTo(12.0f, 6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - close() - } - } - return _lockShield!! - } - -private var _lockShield: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Lottery.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Lottery.kt deleted file mode 100644 index 5723cdb4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Lottery.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Lottery: ImageVector - get() { - if (_lottery != null) { - return _lottery!! - } - _lottery = fluentIcon(name = "Filled.Lottery") { - fluentPath { - moveTo(15.56f, 4.17f) - arcTo(6.0f, 6.0f, 0.0f, false, false, 12.0f, 6.68f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, -3.56f, -2.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 7.12f, 0.0f) - close() - moveTo(4.06f, 14.04f) - arcToRelative(8.0f, 8.0f, 0.0f, false, true, 6.98f, -6.98f) - arcToRelative(5.0f, 5.0f, 0.0f, true, false, -6.98f, 6.98f) - close() - moveTo(19.94f, 14.04f) - arcToRelative(5.0f, 5.0f, 0.0f, true, false, -6.98f, -6.98f) - arcToRelative(8.0f, 8.0f, 0.0f, false, true, 6.98f, 6.98f) - close() - moveTo(12.0f, 22.0f) - arcToRelative(7.0f, 7.0f, 0.0f, true, false, 0.0f, -14.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, false, 0.0f, 14.0f) - close() - moveTo(9.5f, 13.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.5f, 1.31f) - lineToRelative(-0.02f, 0.02f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, -0.26f, 0.26f) - arcToRelative(9.55f, 9.55f, 0.0f, false, false, -2.25f, 3.86f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.44f, -0.4f) - curveToRelative(0.4f, -1.5f, 1.15f, -2.7f, 1.78f, -3.54f) - lineToRelative(0.01f, -0.01f) - horizontalLineToRelative(-2.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _lottery!! - } - -private var _lottery: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Luggage.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Luggage.kt deleted file mode 100644 index a1abb84b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Luggage.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Luggage: ImageVector - get() { - if (_luggage != null) { - return _luggage!! - } - _luggage = fluentIcon(name = "Filled.Luggage") { - fluentPath { - moveTo(8.75f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(9.0f, 3.5f) - lineTo(9.0f, 5.0f) - horizontalLineToRelative(-0.75f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 5.0f, 8.25f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 1.35f, 0.83f, 2.51f, 2.0f, 3.0f) - verticalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(7.0f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.0f) - curveToRelative(1.17f, -0.49f, 2.0f, -1.65f, 2.0f, -3.0f) - verticalLineToRelative(-9.0f) - curveTo(19.0f, 6.45f, 17.54f, 5.0f, 15.75f, 5.0f) - lineTo(15.0f, 5.0f) - lineTo(15.0f, 3.5f) - horizontalLineToRelative(0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.5f) - close() - moveTo(13.5f, 3.5f) - lineTo(13.5f, 5.0f) - horizontalLineToRelative(-3.0f) - lineTo(10.5f, 3.5f) - horizontalLineToRelative(3.0f) - close() - moveTo(8.0f, 9.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 9.75f) - close() - } - } - return _luggage!! - } - -private var _luggage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailAdd.kt deleted file mode 100644 index 15cf5261..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailAdd.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailAdd: ImageVector - get() { - if (_mailAdd != null) { - return _mailAdd!! - } - _mailAdd = fluentIcon(name = "Filled.MailAdd") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 7.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 7.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 6.0f) - lineTo(17.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - lineTo(18.0f, 6.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 7.0f) - close() - moveTo(17.5f, 13.0f) - curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.81f) - verticalLineToRelative(5.56f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(5.25f, 20.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 16.75f) - lineTo(2.0f, 8.61f) - lineToRelative(9.65f, 5.05f) - curveToRelative(0.22f, 0.12f, 0.48f, 0.12f, 0.7f, 0.0f) - lineToRelative(2.41f, -1.26f) - curveToRelative(0.84f, 0.38f, 1.76f, 0.6f, 2.74f, 0.6f) - close() - moveTo(5.25f, 4.0f) - horizontalLineToRelative(6.25f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, 1.8f, 7.47f) - lineToRelative(-1.3f, 0.68f) - lineToRelative(-9.98f, -5.23f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.04f, -2.91f) - lineTo(5.25f, 4.0f) - close() - } - } - return _mailAdd!! - } - -private var _mailAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailAlert.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailAlert.kt deleted file mode 100644 index d88b0a43..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailAlert.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailAlert: ImageVector - get() { - if (_mailAlert != null) { - return _mailAlert!! - } - _mailAlert = fluentIcon(name = "Filled.MailAlert") { - fluentPath { - moveTo(17.5f, 1.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, 4.0f) - verticalLineToRelative(3.0f) - lineToRelative(-0.95f, 0.8f) - curveToRelative(-0.3f, 0.26f, -0.46f, 0.39f, -0.5f, 0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.24f, 0.65f) - curveToRelative(0.1f, 0.05f, 0.3f, 0.05f, 0.7f, 0.05f) - horizontalLineToRelative(9.02f) - curveToRelative(0.4f, 0.0f, 0.6f, 0.0f, 0.7f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.25f, -0.66f) - curveToRelative(-0.05f, -0.1f, -0.2f, -0.23f, -0.5f, -0.49f) - lineTo(21.5f, 8.0f) - lineTo(21.5f, 5.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, -4.0f) - close() - moveTo(19.0f, 11.0f) - curveToRelative(-0.22f, 0.58f, -0.8f, 1.0f, -1.5f, 1.0f) - curveToRelative(-0.69f, 0.0f, -1.28f, -0.42f, -1.5f, -1.0f) - horizontalLineToRelative(3.0f) - close() - moveTo(22.0f, 16.75f) - lineTo(22.0f, 11.0f) - horizontalLineToRelative(-1.93f) - lineToRelative(-0.13f, 0.35f) - arcTo(2.59f, 2.59f, 0.0f, false, true, 17.5f, 13.0f) - curveToRelative(-0.82f, 0.0f, -1.56f, -0.37f, -2.05f, -0.96f) - lineToRelative(-3.1f, 1.62f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, 0.0f) - lineTo(2.0f, 8.61f) - verticalLineToRelative(8.32f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 5.26f, 20.0f) - horizontalLineToRelative(13.68f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 22.0f, 16.74f) - close() - moveTo(12.0f, 12.15f) - lineTo(14.2f, 11.0f) - horizontalLineToRelative(-1.73f) - curveToRelative(-0.12f, -0.01f, -0.37f, -0.03f, -0.61f, -0.14f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -0.73f, -1.99f) - curveToRelative(0.12f, -0.24f, 0.3f, -0.41f, 0.38f, -0.5f) - lineToRelative(0.38f, -0.32f) - lineToRelative(0.6f, -0.51f) - lineTo(12.49f, 5.0f) - curveToRelative(0.0f, -0.34f, 0.04f, -0.68f, 0.1f, -1.0f) - lineTo(5.07f, 4.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.04f, 2.92f) - lineTo(12.0f, 12.15f) - close() - } - } - return _mailAlert!! - } - -private var _mailAlert: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailAllRead.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailAllRead.kt deleted file mode 100644 index 07939f78..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailAllRead.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailAllRead: ImageVector - get() { - if (_mailAllRead != null) { - return _mailAllRead!! - } - _mailAllRead = fluentIcon(name = "Filled.MailAllRead") { - fluentPath { - moveTo(11.36f, 1.84f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.72f, 0.0f) - lineTo(2.83f, 6.1f) - curveToRelative(-0.17f, 0.1f, -0.31f, 0.21f, -0.44f, 0.35f) - lineToRelative(8.61f, 4.7f) - lineToRelative(8.6f, -4.7f) - arcToRelative(1.6f, 1.6f, 0.0f, false, false, -0.43f, -0.35f) - lineToRelative(-7.81f, -4.26f) - close() - moveTo(2.0f, 15.75f) - verticalLineToRelative(-7.8f) - lineToRelative(8.64f, 4.7f) - curveToRelative(0.22f, 0.13f, 0.5f, 0.13f, 0.72f, 0.0f) - lineTo(20.0f, 7.96f) - verticalLineToRelative(7.8f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(5.25f, 19.01f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 15.75f) - close() - moveTo(21.0f, 7.51f) - curveToRelative(0.9f, 0.58f, 1.5f, 1.59f, 1.5f, 2.74f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) - horizontalLineToRelative(-9.0f) - curveToRelative(-1.15f, 0.0f, -2.16f, -0.6f, -2.74f, -1.5f) - horizontalLineToRelative(11.74f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 21.0f, 16.25f) - lineTo(21.0f, 7.51f) - close() - } - } - return _mailAllRead!! - } - -private var _mailAllRead: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailArrowDoubleBack.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailArrowDoubleBack.kt deleted file mode 100644 index ed6a2dea..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailArrowDoubleBack.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailArrowDoubleBack: ImageVector - get() { - if (_mailArrowDoubleBack != null) { - return _mailArrowDoubleBack!! - } - _mailArrowDoubleBack = fluentIcon(name = "Filled.MailArrowDoubleBack") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) - close() - moveTo(15.85f, 4.85f) - lineTo(14.21f, 6.5f) - lineToRelative(1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.7f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -0.7f) - lineToRelative(2.0f, -2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, 0.7f) - close() - moveTo(18.85f, 4.15f) - curveToRelative(0.2f, 0.2f, 0.2f, 0.5f, 0.0f, 0.7f) - lineTo(17.71f, 6.0f) - lineTo(20.0f, 6.0f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - lineTo(21.5f, 8.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-0.5f) - arcTo(0.5f, 0.5f, 0.0f, false, false, 20.0f, 7.0f) - horizontalLineToRelative(-2.3f) - lineToRelative(1.15f, 1.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.7f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -0.7f) - lineToRelative(2.0f, -2.0f) - curveToRelative(0.2f, -0.2f, 0.5f, -0.2f, 0.7f, 0.0f) - close() - moveTo(17.5f, 13.0f) - curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.81f) - verticalLineToRelative(5.56f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(5.25f, 20.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 16.75f) - lineTo(2.0f, 8.61f) - lineToRelative(9.65f, 5.05f) - curveToRelative(0.22f, 0.12f, 0.48f, 0.12f, 0.7f, 0.0f) - lineToRelative(2.41f, -1.26f) - curveToRelative(0.84f, 0.38f, 1.76f, 0.6f, 2.74f, 0.6f) - close() - moveTo(5.25f, 4.0f) - horizontalLineToRelative(6.25f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, 1.8f, 7.47f) - lineToRelative(-1.3f, 0.68f) - lineToRelative(-9.98f, -5.23f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.04f, -2.91f) - lineTo(5.25f, 4.0f) - close() - } - } - return _mailArrowDoubleBack!! - } - -private var _mailArrowDoubleBack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailArrowUp.kt deleted file mode 100644 index dd52ec95..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailArrowUp.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailArrowUp: ImageVector - get() { - if (_mailArrowUp != null) { - return _mailArrowUp!! - } - _mailArrowUp = fluentIcon(name = "Filled.MailArrowUp") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(17.0f, 4.7f) - verticalLineToRelative(4.8f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - lineTo(18.0f, 4.7f) - lineToRelative(1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineTo(17.0f, 4.71f) - close() - moveTo(17.5f, 13.0f) - curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.81f) - verticalLineToRelative(5.56f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(5.25f, 20.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 16.75f) - lineTo(2.0f, 8.61f) - lineToRelative(9.65f, 5.05f) - curveToRelative(0.22f, 0.12f, 0.48f, 0.12f, 0.7f, 0.0f) - lineToRelative(2.41f, -1.26f) - curveToRelative(0.84f, 0.38f, 1.76f, 0.6f, 2.74f, 0.6f) - close() - moveTo(5.25f, 4.0f) - horizontalLineToRelative(6.25f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, 1.8f, 7.47f) - lineToRelative(-1.3f, 0.68f) - lineToRelative(-9.98f, -5.23f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.04f, -2.91f) - lineTo(5.25f, 4.0f) - close() - } - } - return _mailArrowUp!! - } - -private var _mailArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailAttach.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailAttach.kt deleted file mode 100644 index d0be23e6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailAttach.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailAttach: ImageVector - get() { - if (_mailAttach != null) { - return _mailAttach!! - } - _mailAttach = fluentIcon(name = "Filled.MailAttach") { - fluentPath { - moveTo(17.95f, 4.1f) - arcToRelative(2.08f, 2.08f, 0.0f, false, true, 2.94f, 2.94f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.08f) - lineToRelative(-4.18f, 4.18f) - arcToRelative(0.67f, 0.67f, 0.0f, false, true, -0.95f, -0.95f) - lineToRelative(3.83f, -3.82f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-3.83f, 3.82f) - arcToRelative(2.17f, 2.17f, 0.0f, true, false, 3.07f, 3.07f) - lineToRelative(4.32f, -4.32f) - arcToRelative(3.58f, 3.58f, 0.0f, false, false, -5.13f, -5.0f) - lineToRelative(-3.67f, 3.68f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(3.67f, -3.68f) - close() - moveTo(12.51f, 8.48f) - curveToRelative(0.3f, 0.3f, 0.68f, 0.47f, 1.07f, 0.5f) - curveToRelative(-0.54f, 0.77f, -0.71f, 1.72f, -0.5f, 2.6f) - lineToRelative(-1.08f, 0.57f) - lineToRelative(-9.98f, -5.23f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 5.06f, 4.0f) - lineTo(14.52f, 4.0f) - lineTo(12.51f, 6.0f) - curveToRelative(-0.68f, 0.68f, -0.68f, 1.8f, 0.0f, 2.47f) - close() - moveTo(13.77f, 12.91f) - lineTo(13.92f, 13.07f) - arcToRelative(3.17f, 3.17f, 0.0f, false, false, 4.49f, 0.0f) - lineToRelative(3.58f, -3.59f) - verticalLineToRelative(7.26f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 18.93f, 20.0f) - lineTo(5.24f, 20.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.23f, -3.06f) - lineTo(2.0f, 16.74f) - lineTo(2.0f, 8.61f) - lineToRelative(9.65f, 5.05f) - curveToRelative(0.22f, 0.11f, 0.48f, 0.11f, 0.7f, 0.0f) - lineToRelative(1.42f, -0.75f) - close() - } - } - return _mailAttach!! - } - -private var _mailAttach: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailCheckmark.kt deleted file mode 100644 index af3729c5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailCheckmark.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailCheckmark: ImageVector - get() { - if (_mailCheckmark != null) { - return _mailCheckmark!! - } - _mailCheckmark = fluentIcon(name = "Filled.MailCheckmark") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.85f, 4.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineTo(16.5f, 7.79f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - moveTo(17.5f, 13.0f) - curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.81f) - verticalLineToRelative(5.56f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(5.25f, 20.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 16.75f) - lineTo(2.0f, 8.61f) - lineToRelative(9.65f, 5.05f) - curveToRelative(0.22f, 0.12f, 0.48f, 0.12f, 0.7f, 0.0f) - lineToRelative(2.41f, -1.26f) - curveToRelative(0.84f, 0.38f, 1.76f, 0.6f, 2.74f, 0.6f) - close() - moveTo(5.25f, 4.0f) - horizontalLineToRelative(6.25f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, 1.8f, 7.47f) - lineToRelative(-1.3f, 0.68f) - lineToRelative(-9.98f, -5.23f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.04f, -2.91f) - lineTo(5.25f, 4.0f) - close() - } - } - return _mailCheckmark!! - } - -private var _mailCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailClock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailClock.kt deleted file mode 100644 index 6dfc410b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailClock.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailClock: ImageVector - get() { - if (_mailClock != null) { - return _mailClock!! - } - _mailClock = fluentIcon(name = "Filled.MailClock") { - fluentPath { - moveTo(17.5f, 1.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(19.5f, 6.5f) - horizontalLineToRelative(-2.0f) - lineTo(17.5f, 4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - close() - moveTo(17.5f, 13.0f) - curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.81f) - verticalLineToRelative(5.56f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(5.25f, 20.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 16.75f) - lineTo(2.0f, 8.61f) - lineToRelative(9.65f, 5.05f) - curveToRelative(0.22f, 0.12f, 0.48f, 0.12f, 0.7f, 0.0f) - lineToRelative(2.41f, -1.26f) - curveToRelative(0.84f, 0.38f, 1.76f, 0.6f, 2.74f, 0.6f) - close() - moveTo(5.25f, 4.0f) - horizontalLineToRelative(6.25f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, 1.8f, 7.47f) - lineToRelative(-1.3f, 0.68f) - lineToRelative(-9.98f, -5.23f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.04f, -2.91f) - lineTo(5.25f, 4.0f) - close() - } - } - return _mailClock!! - } - -private var _mailClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailCopy.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailCopy.kt deleted file mode 100644 index 027bf21c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailCopy.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailCopy: ImageVector - get() { - if (_mailCopy != null) { - return _mailCopy!! - } - _mailCopy = fluentIcon(name = "Filled.MailCopy") { - fluentPath { - moveTo(3.0f, 7.51f) - curveToRelative(-0.9f, 0.58f, -1.5f, 1.59f, -1.5f, 2.74f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 2.9f, 2.35f, 5.25f, 5.25f, 5.25f) - horizontalLineToRelative(9.0f) - curveToRelative(1.15f, 0.0f, 2.16f, -0.6f, 2.74f, -1.5f) - lineTo(6.75f, 20.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 3.0f, 16.25f) - lineTo(3.0f, 7.51f) - close() - moveTo(4.0f, 8.11f) - verticalLineToRelative(7.64f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 3.07f, 3.24f) - lineToRelative(0.18f, 0.01f) - horizontalLineToRelative(11.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 3.24f, -3.07f) - lineToRelative(0.01f, -0.18f) - lineTo(22.0f, 8.11f) - lineToRelative(-8.65f, 4.55f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, 0.0f) - lineTo(4.0f, 8.11f) - close() - moveTo(18.75f, 4.0f) - lineTo(7.25f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 4.1f, 6.47f) - lineToRelative(8.9f, 4.68f) - lineToRelative(8.9f, -4.68f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 18.94f, 4.0f) - lineTo(18.75f, 4.0f) - close() - } - } - return _mailCopy!! - } - -private var _mailCopy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailDismiss.kt deleted file mode 100644 index c19fef59..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailDismiss.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailDismiss: ImageVector - get() { - if (_mailDismiss != null) { - return _mailDismiss!! - } - _mailDismiss = fluentIcon(name = "Filled.MailDismiss") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 4.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineTo(18.21f, 6.5f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineTo(17.5f, 5.79f) - lineToRelative(-1.65f, -1.64f) - close() - moveTo(17.5f, 13.0f) - curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.81f) - verticalLineToRelative(5.56f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(5.25f, 20.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 16.75f) - lineTo(2.0f, 8.61f) - lineToRelative(9.65f, 5.05f) - curveToRelative(0.22f, 0.12f, 0.48f, 0.12f, 0.7f, 0.0f) - lineToRelative(2.41f, -1.26f) - curveToRelative(0.84f, 0.38f, 1.76f, 0.6f, 2.74f, 0.6f) - close() - moveTo(5.25f, 4.0f) - horizontalLineToRelative(6.25f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, 1.8f, 7.47f) - lineToRelative(-1.3f, 0.68f) - lineToRelative(-9.98f, -5.23f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.04f, -2.91f) - lineTo(5.25f, 4.0f) - close() - } - } - return _mailDismiss!! - } - -private var _mailDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailEdit.kt deleted file mode 100644 index 28be24a2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailEdit.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailEdit: ImageVector - get() { - if (_mailEdit != null) { - return _mailEdit!! - } - _mailEdit = fluentIcon(name = "Filled.MailEdit") { - fluentPath { - moveTo(22.0f, 11.26f) - lineTo(22.0f, 7.61f) - lineToRelative(-9.65f, 5.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, 0.0f) - lineTo(2.0f, 7.61f) - verticalLineToRelative(8.32f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 5.26f, 19.0f) - horizontalLineToRelative(6.47f) - curveToRelative(0.18f, -0.42f, 0.44f, -0.8f, 0.77f, -1.14f) - lineToRelative(5.9f, -5.9f) - arcToRelative(3.29f, 3.29f, 0.0f, false, true, 3.61f, -0.7f) - close() - moveTo(18.75f, 3.0f) - lineTo(5.06f, 3.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.04f, 2.92f) - lineTo(12.0f, 11.15f) - lineToRelative(9.98f, -5.23f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 18.75f, 3.0f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _mailEdit!! - } - -private var _mailEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailError.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailError.kt deleted file mode 100644 index 607acbc1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailError.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailError: ImageVector - get() { - if (_mailError != null) { - return _mailError!! - } - _mailError = fluentIcon(name = "Filled.MailError") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(17.5f, 3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(17.5f, 10.13f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.24f) - close() - moveTo(17.5f, 13.0f) - curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.81f) - verticalLineToRelative(5.56f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(5.25f, 20.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 16.75f) - lineTo(2.0f, 8.61f) - lineToRelative(9.65f, 5.05f) - curveToRelative(0.22f, 0.12f, 0.48f, 0.12f, 0.7f, 0.0f) - lineToRelative(2.41f, -1.26f) - curveToRelative(0.84f, 0.38f, 1.76f, 0.6f, 2.74f, 0.6f) - close() - moveTo(5.25f, 4.0f) - horizontalLineToRelative(6.25f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, 1.8f, 7.47f) - lineToRelative(-1.3f, 0.68f) - lineToRelative(-9.98f, -5.23f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.04f, -2.91f) - lineTo(5.25f, 4.0f) - close() - } - } - return _mailError!! - } - -private var _mailError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailInbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailInbox.kt deleted file mode 100644 index 17fd6951..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailInbox.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailInbox: ImageVector - get() { - if (_mailInbox != null) { - return _mailInbox!! - } - _mailInbox = fluentIcon(name = "Filled.MailInbox") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 13.0f) - lineTo(9.0f, 13.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.5f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.92f, -0.7f, -1.67f, -1.6f, -1.74f) - lineToRelative(-0.15f, -0.01f) - close() - } - } - return _mailInbox!! - } - -private var _mailInbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailInboxAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailInboxAdd.kt deleted file mode 100644 index 23d1a882..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailInboxAdd.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailInboxAdd: ImageVector - get() { - if (_mailInboxAdd != null) { - return _mailInboxAdd!! - } - _mailInboxAdd = fluentIcon(name = "Filled.MailInboxAdd") { - fluentPath { - moveTo(22.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(17.0f, 7.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(16.0f, 7.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(16.0f, 6.0f) - lineTo(16.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - lineTo(17.0f, 6.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - lineTo(17.0f, 7.0f) - close() - moveTo(19.5f, 14.0f) - verticalLineToRelative(-1.73f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(7.56f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 22.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 18.75f) - lineTo(3.0f, 7.25f) - curveTo(3.0f, 5.45f, 4.46f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(4.25f) - curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) - lineTo(6.25f, 5.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 14.0f) - lineTo(9.0f, 14.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.5f) - close() - } - } - return _mailInboxAdd!! - } - -private var _mailInboxAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailInboxAll.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailInboxAll.kt deleted file mode 100644 index d4930d8c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailInboxAll.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailInboxAll: ImageVector - get() { - if (_mailInboxAll != null) { - return _mailInboxAll!! - } - _mailInboxAll = fluentIcon(name = "Filled.MailInboxAll") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 13.0f) - lineTo(9.0f, 13.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.15f) - verticalLineToRelative(-0.15f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.5f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.92f, -0.7f, -1.67f, -1.6f, -1.74f) - lineToRelative(-0.15f, -0.01f) - close() - moveTo(6.75f, 9.5f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(10.6f) - horizontalLineToRelative(-10.5f) - close() - moveTo(6.75f, 6.5f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(10.6f) - horizontalLineToRelative(-10.5f) - close() - } - } - return _mailInboxAll!! - } - -private var _mailInboxAll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailInboxArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailInboxArrowRight.kt deleted file mode 100644 index e7dc801e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailInboxArrowRight.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailInboxArrowRight: ImageVector - get() { - if (_mailInboxArrowRight != null) { - return _mailInboxArrowRight!! - } - _mailInboxArrowRight = fluentIcon(name = "Filled.MailInboxArrowRight") { - fluentPath { - moveTo(10.5f, 4.0f) - curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) - lineTo(6.25f, 5.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 14.0f) - lineTo(9.0f, 14.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(-1.73f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(7.56f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 22.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 18.75f) - lineTo(3.0f, 7.25f) - curveTo(3.0f, 5.45f, 4.46f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(4.25f) - close() - moveTo(16.5f, 1.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(16.72f, 3.59f) - lineTo(16.65f, 3.65f) - lineTo(16.59f, 3.72f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) - lineToRelative(0.06f, 0.07f) - lineTo(18.29f, 6.0f) - horizontalLineToRelative(-5.38f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - lineToRelative(-0.01f, 0.09f) - verticalLineToRelative(0.09f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - lineTo(13.0f, 7.0f) - horizontalLineToRelative(5.3f) - lineToRelative(-1.65f, 1.65f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(0.06f, -0.07f) - lineToRelative(2.54f, -2.54f) - lineToRelative(0.04f, -0.05f) - lineToRelative(0.03f, -0.07f) - lineToRelative(0.02f, -0.06f) - lineToRelative(0.02f, -0.08f) - verticalLineToRelative(-0.1f) - lineToRelative(-0.02f, -0.08f) - lineToRelative(-0.03f, -0.08f) - lineToRelative(-0.04f, -0.07f) - lineToRelative(-0.04f, -0.06f) - lineToRelative(-2.52f, -2.51f) - lineToRelative(-0.07f, -0.06f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.56f, 0.0f) - close() - } - } - return _mailInboxArrowRight!! - } - -private var _mailInboxArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailInboxArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailInboxArrowUp.kt deleted file mode 100644 index ec44b4b6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailInboxArrowUp.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailInboxArrowUp: ImageVector - get() { - if (_mailInboxArrowUp != null) { - return _mailInboxArrowUp!! - } - _mailInboxArrowUp = fluentIcon(name = "Filled.MailInboxArrowUp") { - fluentPath { - moveTo(10.5f, 4.0f) - curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) - lineTo(6.25f, 5.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 14.0f) - lineTo(9.0f, 14.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(-1.73f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(7.56f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 22.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 18.75f) - lineTo(3.0f, 7.25f) - curveTo(3.0f, 5.45f, 4.46f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(4.25f) - close() - moveTo(16.5f, 1.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(16.63f, 3.02f) - lineTo(16.54f, 3.0f) - horizontalLineToRelative(-0.11f) - lineToRelative(-0.06f, 0.02f) - lineToRelative(-0.08f, 0.03f) - lineToRelative(-0.07f, 0.04f) - lineToRelative(-0.06f, 0.04f) - lineToRelative(-2.51f, 2.52f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) - lineToRelative(0.06f, 0.07f) - lineToRelative(0.07f, 0.06f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) - lineToRelative(0.07f, -0.06f) - lineTo(16.0f, 4.71f) - verticalLineToRelative(5.38f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - lineToRelative(0.09f, 0.01f) - horizontalLineToRelative(0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - lineTo(17.0f, 10.0f) - lineTo(17.0f, 4.7f) - lineToRelative(1.65f, 1.65f) - lineToRelative(0.07f, 0.06f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-0.07f, -0.06f) - lineToRelative(-2.54f, -2.55f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.07f, -0.03f) - lineToRelative(-0.06f, -0.02f) - close() - } - } - return _mailInboxArrowUp!! - } - -private var _mailInboxArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailInboxCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailInboxCheckmark.kt deleted file mode 100644 index 0eb618fa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailInboxCheckmark.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailInboxCheckmark: ImageVector - get() { - if (_mailInboxCheckmark != null) { - return _mailInboxCheckmark!! - } - _mailInboxCheckmark = fluentIcon(name = "Filled.MailInboxCheckmark") { - fluentPath { - moveTo(22.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(19.85f, 4.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineTo(15.5f, 7.79f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - moveTo(19.5f, 12.27f) - lineTo(19.5f, 14.0f) - lineTo(15.0f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) - verticalLineToRelative(-0.1f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 9.0f, 14.0f) - lineTo(4.5f, 14.0f) - lineTo(4.5f, 7.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(3.83f) - curveToRelative(0.08f, -0.52f, 0.22f, -1.03f, 0.42f, -1.5f) - lineTo(6.25f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 7.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 20.55f, 4.46f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-7.56f) - curveToRelative(-0.44f, 0.43f, -0.95f, 0.8f, -1.5f, 1.08f) - close() - } - } - return _mailInboxCheckmark!! - } - -private var _mailInboxCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailInboxDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailInboxDismiss.kt deleted file mode 100644 index 3ee9eb28..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailInboxDismiss.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailInboxDismiss: ImageVector - get() { - if (_mailInboxDismiss != null) { - return _mailInboxDismiss!! - } - _mailInboxDismiss = fluentIcon(name = "Filled.MailInboxDismiss") { - fluentPath { - moveTo(22.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.85f, 4.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineTo(17.21f, 6.5f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineTo(16.5f, 5.79f) - lineToRelative(-1.65f, -1.64f) - close() - moveTo(19.5f, 14.0f) - verticalLineToRelative(-1.73f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(7.56f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 22.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 18.75f) - lineTo(3.0f, 7.25f) - curveTo(3.0f, 5.45f, 4.46f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(4.25f) - curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) - lineTo(6.25f, 5.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 14.0f) - lineTo(9.0f, 14.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.5f) - close() - } - } - return _mailInboxDismiss!! - } - -private var _mailInboxDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailLink.kt deleted file mode 100644 index 8624ce71..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailLink.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailLink: ImageVector - get() { - if (_mailLink != null) { - return _mailLink!! - } - _mailLink = fluentIcon(name = "Filled.MailLink") { - fluentPath { - moveTo(23.0f, 6.75f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 19.25f, 3.0f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - verticalLineToRelative(-0.01f) - horizontalLineToRelative(0.2f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 6.74f) - close() - moveTo(16.5f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-0.2f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(20.0f, 6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(19.25f, 11.5f) - horizontalLineToRelative(-2.77f) - lineToRelative(-4.13f, 2.16f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, 0.0f) - lineTo(2.0f, 8.61f) - verticalLineToRelative(8.32f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 5.26f, 20.0f) - horizontalLineToRelative(13.68f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 22.0f, 16.74f) - verticalLineToRelative(-6.13f) - curveToRelative(-0.78f, 0.56f, -1.73f, 0.88f, -2.75f, 0.88f) - close() - moveTo(5.25f, 4.0f) - horizontalLineToRelative(6.63f) - arcToRelative(4.73f, 4.73f, 0.0f, false, false, 2.05f, 7.14f) - lineTo(12.0f, 12.15f) - lineTo(2.02f, 6.92f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.04f, -2.91f) - lineTo(5.25f, 4.0f) - close() - } - } - return _mailLink!! - } - -private var _mailLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailList.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailList.kt deleted file mode 100644 index 7ccb2fe3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailList.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailList: ImageVector - get() { - if (_mailList != null) { - return _mailList!! - } - _mailList = fluentIcon(name = "Filled.MailList") { - fluentPath { - moveTo(20.3f, 9.5f) - horizontalLineToRelative(0.95f) - curveToRelative(0.27f, 0.0f, 0.52f, -0.06f, 0.75f, -0.17f) - verticalLineToRelative(7.42f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(5.25f, 20.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 16.75f) - lineTo(2.0f, 8.61f) - lineToRelative(9.65f, 5.05f) - curveToRelative(0.22f, 0.12f, 0.48f, 0.12f, 0.7f, 0.0f) - lineTo(20.3f, 9.5f) - close() - moveTo(12.53f, 4.0f) - lineTo(5.06f, 4.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.04f, 2.92f) - lineTo(12.0f, 12.15f) - lineToRelative(5.07f, -2.65f) - horizontalLineToRelative(-3.32f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.22f, -3.0f) - arcToRelative(1.74f, 1.74f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(21.25f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.75f) - horizontalLineToRelative(7.5f) - close() - moveTo(21.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - horizontalLineToRelative(-7.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, -1.5f) - horizontalLineToRelative(7.5f) - close() - moveTo(13.0f, 7.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _mailList!! - } - -private var _mailList: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailMultiple.kt deleted file mode 100644 index e9000634..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailMultiple.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailMultiple: ImageVector - get() { - if (_mailMultiple != null) { - return _mailMultiple!! - } - _mailMultiple = fluentIcon(name = "Filled.MailMultiple") { - fluentPath { - moveTo(21.0f, 7.51f) - curveToRelative(0.9f, 0.58f, 1.5f, 1.59f, 1.5f, 2.74f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) - horizontalLineToRelative(-9.0f) - curveToRelative(-1.15f, 0.0f, -2.16f, -0.6f, -2.74f, -1.5f) - horizontalLineToRelative(11.74f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 21.0f, 16.25f) - lineTo(21.0f, 7.51f) - close() - moveTo(20.0f, 8.11f) - verticalLineToRelative(7.64f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(5.25f, 19.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 15.75f) - lineTo(2.0f, 8.11f) - lineToRelative(8.65f, 4.55f) - curveToRelative(0.22f, 0.12f, 0.48f, 0.12f, 0.7f, 0.0f) - lineTo(20.0f, 8.11f) - close() - moveTo(5.25f, 4.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.52f, 0.0f, 2.8f, 1.05f, 3.15f, 2.47f) - lineTo(11.0f, 11.15f) - lineTo(2.1f, 6.47f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 5.06f, 4.0f) - lineTo(5.25f, 4.0f) - close() - } - } - return _mailMultiple!! - } - -private var _mailMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailOff.kt deleted file mode 100644 index 1b286030..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailOff.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailOff: ImageVector - get() { - if (_mailOff != null) { - return _mailOff!! - } - _mailOff = fluentIcon(name = "Filled.MailOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.25f, 1.25f) - curveToRelative(-0.8f, 0.52f, -1.35f, 1.4f, -1.45f, 2.4f) - lineToRelative(8.07f, 4.23f) - lineToRelative(2.43f, 2.42f) - lineToRelative(-0.17f, 0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, 0.0f) - lineTo(2.0f, 8.61f) - verticalLineToRelative(8.32f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 5.26f, 20.0f) - horizontalLineToRelative(13.68f) - lineToRelative(1.79f, 1.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(15.3f, 12.12f) - lineTo(21.56f, 18.38f) - curveToRelative(0.28f, -0.48f, 0.44f, -1.04f, 0.44f, -1.63f) - lineTo(22.0f, 8.61f) - lineToRelative(-6.7f, 3.5f) - close() - moveTo(7.18f, 4.0f) - lineToRelative(7.0f, 7.0f) - lineToRelative(7.8f, -4.08f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 18.75f, 4.0f) - lineTo(7.18f, 4.0f) - close() - } - } - return _mailOff!! - } - -private var _mailOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailOpenPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailOpenPerson.kt deleted file mode 100644 index a96d7a4b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailOpenPerson.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailOpenPerson: ImageVector - get() { - if (_mailOpenPerson != null) { - return _mailOpenPerson!! - } - _mailOpenPerson = fluentIcon(name = "Filled.MailOpenPerson") { - fluentPath { - moveTo(11.65f, 14.16f) - lineTo(2.0f, 9.13f) - verticalLineToRelative(7.8f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 5.26f, 20.0f) - lineTo(13.0f, 20.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, -0.13f) - verticalLineToRelative(-0.1f) - arcTo(2.77f, 2.77f, 0.0f, false, true, 15.77f, 17.0f) - horizontalLineToRelative(0.28f) - arcToRelative(3.49f, 3.49f, 0.0f, false, true, -0.37f, -4.57f) - lineToRelative(-3.33f, 1.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, 0.0f) - close() - moveTo(11.62f, 2.11f) - lineTo(3.1f, 7.17f) - lineToRelative(-0.17f, 0.11f) - curveToRelative(-0.16f, 0.12f, -0.31f, 0.26f, -0.43f, 0.41f) - lineToRelative(9.5f, 4.96f) - lineToRelative(9.5f, -4.96f) - curveToRelative(-0.16f, -0.2f, -0.36f, -0.38f, -0.6f, -0.52f) - lineTo(12.38f, 2.1f) - lineToRelative(-0.1f, -0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.66f, 0.06f) - close() - moveTo(21.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(23.0f, 19.88f) - curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) - reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _mailOpenPerson!! - } - -private var _mailOpenPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailProhibited.kt deleted file mode 100644 index 3216e231..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailProhibited.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailProhibited: ImageVector - get() { - if (_mailProhibited != null) { - return _mailProhibited!! - } - _mailProhibited = fluentIcon(name = "Filled.MailProhibited") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(13.5f, 6.5f) - curveToRelative(0.0f, 0.83f, 0.26f, 1.6f, 0.7f, 2.25f) - lineToRelative(5.55f, -5.56f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) - close() - moveTo(17.5f, 10.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) - lineToRelative(-5.55f, 5.56f) - curveToRelative(0.64f, 0.43f, 1.42f, 0.69f, 2.25f, 0.69f) - close() - moveTo(17.5f, 13.0f) - curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.81f) - verticalLineToRelative(5.56f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(5.25f, 20.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 16.75f) - lineTo(2.0f, 8.61f) - lineToRelative(9.65f, 5.05f) - curveToRelative(0.22f, 0.12f, 0.48f, 0.12f, 0.7f, 0.0f) - lineToRelative(2.41f, -1.26f) - curveToRelative(0.84f, 0.38f, 1.76f, 0.6f, 2.74f, 0.6f) - close() - moveTo(5.25f, 4.0f) - horizontalLineToRelative(6.25f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, 1.8f, 7.47f) - lineToRelative(-1.3f, 0.68f) - lineToRelative(-9.98f, -5.23f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.04f, -2.91f) - lineTo(5.25f, 4.0f) - close() - } - } - return _mailProhibited!! - } - -private var _mailProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailRead.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailRead.kt deleted file mode 100644 index 3758da7c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailRead.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailRead: ImageVector - get() { - if (_mailRead != null) { - return _mailRead!! - } - _mailRead = fluentIcon(name = "Filled.MailRead") { - fluentPath { - moveToRelative(2.0f, 10.13f) - lineToRelative(9.65f, 5.03f) - curveToRelative(0.22f, 0.12f, 0.48f, 0.12f, 0.7f, 0.0f) - lineTo(22.0f, 10.13f) - verticalLineToRelative(7.62f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(5.25f, 21.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 17.75f) - verticalLineToRelative(-7.62f) - close() - moveTo(3.1f, 8.17f) - lineTo(11.62f, 3.11f) - curveToRelative(0.2f, -0.13f, 0.44f, -0.14f, 0.66f, -0.06f) - lineToRelative(0.1f, 0.06f) - lineToRelative(8.52f, 5.06f) - curveToRelative(0.24f, 0.14f, 0.44f, 0.32f, 0.6f, 0.52f) - lineTo(12.0f, 13.65f) - lineTo(2.5f, 8.7f) - curveToRelative(0.12f, -0.15f, 0.27f, -0.29f, 0.43f, -0.4f) - lineToRelative(0.17f, -0.12f) - lineToRelative(8.52f, -5.06f) - lineTo(3.1f, 8.17f) - close() - } - } - return _mailRead!! - } - -private var _mailRead: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailReadMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailReadMultiple.kt deleted file mode 100644 index d8b0a8fd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailReadMultiple.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailReadMultiple: ImageVector - get() { - if (_mailReadMultiple != null) { - return _mailReadMultiple!! - } - _mailReadMultiple = fluentIcon(name = "Filled.MailReadMultiple") { - fluentPath { - moveTo(11.36f, 1.84f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.72f, 0.0f) - lineTo(2.83f, 6.1f) - curveToRelative(-0.17f, 0.1f, -0.31f, 0.21f, -0.44f, 0.35f) - lineToRelative(8.61f, 4.7f) - lineToRelative(8.6f, -4.7f) - arcToRelative(1.6f, 1.6f, 0.0f, false, false, -0.43f, -0.35f) - lineToRelative(-7.81f, -4.26f) - close() - moveTo(2.0f, 15.75f) - verticalLineToRelative(-7.8f) - lineToRelative(8.64f, 4.7f) - curveToRelative(0.22f, 0.13f, 0.5f, 0.13f, 0.72f, 0.0f) - lineTo(20.0f, 7.96f) - verticalLineToRelative(7.8f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(5.25f, 19.01f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 15.75f) - close() - moveTo(21.0f, 7.51f) - curveToRelative(0.9f, 0.58f, 1.5f, 1.59f, 1.5f, 2.74f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) - horizontalLineToRelative(-9.0f) - curveToRelative(-1.15f, 0.0f, -2.16f, -0.6f, -2.74f, -1.5f) - horizontalLineToRelative(11.74f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 21.0f, 16.25f) - lineTo(21.0f, 7.51f) - close() - } - } - return _mailReadMultiple!! - } - -private var _mailReadMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailTemplate.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailTemplate.kt deleted file mode 100644 index ab9df58f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailTemplate.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailTemplate: ImageVector - get() { - if (_mailTemplate != null) { - return _mailTemplate!! - } - _mailTemplate = fluentIcon(name = "Filled.MailTemplate") { - fluentPath { - moveTo(2.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(11.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(-9.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, 4.0f) - verticalLineToRelative(5.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.13f, 1.0f) - lineTo(5.0f, 20.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(2.0f, 5.0f) - close() - moveTo(5.75f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-9.5f) - close() - moveTo(7.75f, 7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-7.5f) - close() - moveTo(7.55f, 12.27f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 10.0f, 11.0f) - horizontalLineToRelative(9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.45f, 1.27f) - lineToRelative(-6.95f, 4.35f) - lineToRelative(-6.95f, -4.35f) - close() - moveTo(7.0f, 13.71f) - lineTo(7.0f, 14.0f) - verticalLineToRelative(5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) - horizontalLineToRelative(9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) - verticalLineToRelative(-5.0f) - lineToRelative(-0.01f, -0.3f) - lineToRelative(-7.1f, 4.44f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.79f, 0.0f) - lineTo(7.01f, 13.7f) - close() - } - } - return _mailTemplate!! - } - -private var _mailTemplate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailUnread.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailUnread.kt deleted file mode 100644 index db97e86e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailUnread.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailUnread: ImageVector - get() { - if (_mailUnread != null) { - return _mailUnread!! - } - _mailUnread = fluentIcon(name = "Filled.MailUnread") { - fluentPath { - moveTo(21.0f, 8.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) - close() - moveTo(5.25f, 4.0f) - horizontalLineToRelative(11.36f) - arcToRelative(4.51f, 4.51f, 0.0f, false, false, 1.9f, 4.75f) - lineTo(12.0f, 12.15f) - lineTo(2.02f, 6.92f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.04f, -2.91f) - lineTo(5.25f, 4.0f) - close() - moveTo(12.35f, 13.66f) - lineTo(20.38f, 9.46f) - arcTo(4.54f, 4.54f, 0.0f, false, false, 22.0f, 9.39f) - verticalLineToRelative(7.36f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(5.25f, 20.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 16.75f) - lineTo(2.0f, 8.61f) - lineToRelative(9.65f, 5.05f) - curveToRelative(0.22f, 0.12f, 0.48f, 0.12f, 0.7f, 0.0f) - close() - } - } - return _mailUnread!! - } - -private var _mailUnread: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailWarning.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailWarning.kt deleted file mode 100644 index 7185c9d8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MailWarning.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MailWarning: ImageVector - get() { - if (_mailWarning != null) { - return _mailWarning!! - } - _mailWarning = fluentIcon(name = "Filled.MailWarning") { - fluentPath { - moveToRelative(16.16f, 1.83f) - lineToRelative(-4.0f, 8.0f) - arcTo(1.5f, 1.5f, 0.0f, false, false, 13.51f, 12.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.33f, -2.17f) - lineToRelative(-4.0f, -8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.68f, 0.0f) - close() - moveTo(18.0f, 4.5f) - verticalLineToRelative(3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - close() - moveTo(17.5f, 10.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - close() - moveTo(21.5f, 13.0f) - horizontalLineToRelative(-7.88f) - lineToRelative(-1.27f, 0.66f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, 0.0f) - lineTo(2.0f, 8.61f) - verticalLineToRelative(8.32f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 5.26f, 20.0f) - horizontalLineToRelative(13.68f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 22.0f, 16.74f) - verticalLineToRelative(-3.8f) - curveToRelative(-0.16f, 0.03f, -0.33f, 0.05f, -0.5f, 0.05f) - close() - moveTo(5.25f, 4.0f) - horizontalLineToRelative(8.7f) - lineToRelative(-2.68f, 5.38f) - curveToRelative(-0.42f, 0.84f, -0.32f, 1.76f, 0.12f, 2.46f) - lineTo(2.02f, 6.92f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.04f, -2.91f) - lineTo(5.25f, 4.0f) - close() - } - } - return _mailWarning!! - } - -private var _mailWarning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Map.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Map.kt deleted file mode 100644 index 3eafe172..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Map.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Map: ImageVector - get() { - if (_map != null) { - return _map!! - } - _map = fluentIcon(name = "Filled.Map") { - fluentPath { - moveTo(8.5f, 4.36f) - verticalLineToRelative(12.46f) - lineToRelative(-4.32f, 3.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.17f, -0.5f) - lineTo(3.0f, 19.24f) - lineTo(3.0f, 8.62f) - curveToRelative(0.0f, -0.21f, 0.09f, -0.41f, 0.24f, -0.55f) - lineTo(3.32f, 8.0f) - lineTo(8.5f, 4.36f) - close() - moveTo(21.0f, 4.65f) - verticalLineToRelative(10.73f) - curveToRelative(0.0f, 0.21f, -0.09f, 0.41f, -0.24f, 0.55f) - lineToRelative(-0.08f, 0.07f) - lineToRelative(-5.18f, 3.64f) - lineTo(15.5f, 7.17f) - lineToRelative(4.32f, -3.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.17f, 0.5f) - close() - moveTo(10.0f, 4.35f) - lineTo(14.0f, 7.17f) - verticalLineToRelative(12.47f) - lineToRelative(-4.0f, -2.82f) - lineTo(10.0f, 4.36f) - close() - } - } - return _map!! - } - -private var _map: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MapDrive.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MapDrive.kt deleted file mode 100644 index 729ea2e9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MapDrive.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MapDrive: ImageVector - get() { - if (_mapDrive != null) { - return _mapDrive!! - } - _mapDrive = fluentIcon(name = "Filled.MapDrive") { - fluentPath { - moveTo(2.0f, 5.25f) - curveTo(2.0f, 4.01f, 3.0f, 3.0f, 4.25f, 3.0f) - horizontalLineToRelative(15.5f) - curveTo(20.99f, 3.0f, 22.0f, 4.0f, 22.0f, 5.25f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-8.5f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(1.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineTo(16.0f) - horizontalLineToRelative(1.75f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineTo(17.0f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.42f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineTo(19.0f) - horizontalLineTo(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineTo(7.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineTo(9.5f) - verticalLineToRelative(-2.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.0f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-5.0f) - close() - moveTo(18.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - } - } - return _mapDrive!! - } - -private var _mapDrive: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MatchAppLayout.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MatchAppLayout.kt deleted file mode 100644 index 45710921..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MatchAppLayout.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MatchAppLayout: ImageVector - get() { - if (_matchAppLayout != null) { - return _matchAppLayout!! - } - _matchAppLayout = fluentIcon(name = "Filled.MatchAppLayout") { - fluentPath { - moveTo(9.5f, 8.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(3.75f, 16.0f) - curveTo(2.78f, 16.0f, 2.0f, 15.22f, 2.0f, 14.25f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) - lineTo(3.76f, 8.0f) - lineTo(9.5f, 8.0f) - close() - moveTo(20.25f, 8.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(14.5f, 16.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(5.75f) - close() - } - } - return _matchAppLayout!! - } - -private var _matchAppLayout: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MathFormatLinear.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MathFormatLinear.kt deleted file mode 100644 index 6bab84c6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MathFormatLinear.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MathFormatLinear: ImageVector - get() { - if (_mathFormatLinear != null) { - return _mathFormatLinear!! - } - _mathFormatLinear = fluentIcon(name = "Filled.MathFormatLinear") { - fluentPath { - moveTo(11.7f, 3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 1.4f) - lineTo(11.0f, 5.42f) - lineToRelative(1.3f, 1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, -1.42f) - lineToRelative(-2.0f, -2.0f) - close() - moveTo(14.47f, 9.73f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.77f, 0.15f) - lineToRelative(1.11f, 2.1f) - lineToRelative(-3.56f, 3.56f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.42f) - lineToRelative(3.11f, -3.12f) - lineToRelative(1.17f, 2.21f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.84f, 0.74f) - lineToRelative(0.32f, -0.28f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.3f, -1.52f) - lineToRelative(-0.32f, 0.28f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.77f, -0.15f) - lineToRelative(-1.45f, -2.76f) - lineToRelative(2.9f, -2.9f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, -1.42f) - lineToRelative(-2.46f, 2.47f) - lineToRelative(-0.82f, -1.56f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -3.84f, -0.74f) - lineToRelative(-0.32f, 0.28f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.3f, 1.52f) - lineToRelative(0.32f, -0.28f) - close() - moveTo(3.04f, 13.72f) - curveToRelative(0.88f, -0.02f, 1.78f, -0.08f, 2.61f, -0.26f) - arcToRelative(4.4f, 4.4f, 0.0f, false, false, 2.87f, -1.74f) - curveToRelative(0.62f, -0.92f, 0.64f, -2.05f, 0.06f, -2.9f) - curveToRelative(-0.6f, -0.88f, -1.7f, -1.25f, -2.87f, -0.98f) - curveToRelative(-0.44f, 0.1f, -1.28f, 0.31f, -2.15f, 1.0f) - curveToRelative(-0.87f, 0.7f, -1.7f, 1.8f, -2.26f, 3.58f) - arcToRelative(4.8f, 4.8f, 0.0f, false, false, 0.0f, 3.38f) - arcToRelative(3.2f, 3.2f, 0.0f, false, false, 2.14f, 1.8f) - curveToRelative(1.76f, 0.5f, 3.93f, -0.29f, 5.31f, -2.03f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.56f, -1.24f) - curveToRelative(-0.97f, 1.22f, -2.36f, 1.59f, -3.22f, 1.35f) - arcToRelative(1.2f, 1.2f, 0.0f, false, true, -0.83f, -0.69f) - arcToRelative(2.29f, 2.29f, 0.0f, false, true, -0.1f, -1.27f) - close() - moveTo(6.93f, 9.95f) - curveToRelative(0.07f, 0.1f, 0.14f, 0.35f, -0.08f, 0.67f) - curveToRelative(-0.26f, 0.4f, -0.77f, 0.7f, -1.62f, 0.89f) - curveToRelative(-0.45f, 0.1f, -0.94f, 0.15f, -1.46f, 0.18f) - curveToRelative(0.34f, -0.63f, 0.7f, -1.02f, 1.03f, -1.28f) - arcToRelative(3.18f, 3.18f, 0.0f, false, true, 1.36f, -0.62f) - curveToRelative(0.5f, -0.12f, 0.7f, 0.06f, 0.77f, 0.16f) - close() - } - } - return _mathFormatLinear!! - } - -private var _mathFormatLinear: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MathFormatProfessional.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MathFormatProfessional.kt deleted file mode 100644 index 78e97bce..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MathFormatProfessional.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MathFormatProfessional: ImageVector - get() { - if (_mathFormatProfessional != null) { - return _mathFormatProfessional!! - } - _mathFormatProfessional = fluentIcon(name = "Filled.MathFormatProfessional") { - fluentPath { - moveTo(15.44f, 4.95f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.72f, -0.16f) - lineToRelative(-0.39f, 0.27f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.16f, -1.62f) - lineToRelative(0.38f, -0.28f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 3.64f, 0.82f) - lineToRelative(0.5f, 0.9f) - lineToRelative(1.6f, -1.59f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.42f, 1.42f) - lineToRelative(-2.0f, 2.0f) - lineToRelative(0.8f, 1.41f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.75f, 0.15f) - lineToRelative(0.36f, -0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.26f, 1.56f) - lineToRelative(-0.36f, 0.3f) - curveToRelative(-1.21f, 0.97f, -3.0f, 0.63f, -3.76f, -0.73f) - lineToRelative(-0.52f, -0.93f) - lineToRelative(-1.53f, 1.54f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.42f, -1.42f) - lineToRelative(1.94f, -1.93f) - lineToRelative(-0.79f, -1.4f) - close() - moveTo(8.4f, 14.14f) - curveToRelative(-1.42f, 0.27f, -3.0f, 0.34f, -4.53f, 0.36f) - curveToRelative(-0.28f, 1.1f, -0.16f, 1.9f, 0.1f, 2.43f) - curveToRelative(0.3f, 0.62f, 0.88f, 1.06f, 1.7f, 1.27f) - curveToRelative(1.7f, 0.42f, 4.18f, -0.25f, 5.83f, -2.14f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.5f, 1.32f) - curveToRelative(-2.1f, 2.4f, -5.32f, 3.38f, -7.81f, 2.76f) - arcToRelative(4.44f, 4.44f, 0.0f, false, true, -3.03f, -2.34f) - curveToRelative(-0.6f, -1.25f, -0.6f, -2.83f, 0.01f, -4.63f) - arcTo(9.83f, 9.83f, 0.0f, false, true, 5.58f, 8.3f) - arcTo(8.16f, 8.16f, 0.0f, false, true, 8.8f, 6.87f) - curveToRelative(1.62f, -0.33f, 3.08f, 0.13f, 3.9f, 1.2f) - curveToRelative(0.83f, 1.08f, 0.8f, 2.56f, -0.1f, 3.78f) - curveToRelative(-0.97f, 1.34f, -2.57f, 1.97f, -4.2f, 2.29f) - close() - moveTo(9.2f, 8.83f) - curveToRelative(-0.55f, 0.11f, -1.48f, 0.37f, -2.44f, 1.07f) - arcToRelative(7.17f, 7.17f, 0.0f, false, false, -2.13f, 2.58f) - curveToRelative(1.21f, -0.03f, 2.36f, -0.1f, 3.38f, -0.3f) - curveToRelative(1.46f, -0.29f, 2.45f, -0.78f, 2.98f, -1.5f) - curveToRelative(0.43f, -0.6f, 0.35f, -1.1f, 0.12f, -1.4f) - curveToRelative(-0.25f, -0.32f, -0.85f, -0.67f, -1.91f, -0.45f) - close() - } - } - return _mathFormatProfessional!! - } - -private var _mathFormatProfessional: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MathFormula.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MathFormula.kt deleted file mode 100644 index c4c7452a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MathFormula.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MathFormula: ImageVector - get() { - if (_mathFormula != null) { - return _mathFormula!! - } - _mathFormula = fluentIcon(name = "Filled.MathFormula") { - fluentPath { - moveTo(12.19f, 4.14f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.4f, 1.13f) - lineTo(9.7f, 7.0f) - lineTo(12.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(9.62f, 9.0f) - lineToRelative(-0.39f, 8.85f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.8f, 2.48f) - lineToRelative(-0.09f, -0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -1.5f) - lineToRelative(0.09f, 0.07f) - curveToRelative(0.94f, 0.83f, 2.43f, 0.2f, 2.48f, -1.06f) - lineTo(7.63f, 9.0f) - lineTo(6.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - horizontalLineToRelative(1.71f) - lineToRelative(0.08f, -1.82f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.6f, -2.64f) - lineToRelative(0.21f, 0.16f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.2f, 1.6f) - lineToRelative(-0.21f, -0.16f) - close() - moveTo(13.09f, 13.04f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.69f, 0.23f) - lineToRelative(0.8f, 1.73f) - lineToRelative(-3.29f, 3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.4f) - lineToRelative(2.78f, -2.78f) - lineToRelative(0.78f, 1.66f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.86f, 0.86f) - lineToRelative(0.5f, -0.42f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.27f, -1.54f) - lineToRelative(-0.5f, 0.42f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.78f, -0.17f) - lineTo(17.0f, 15.42f) - lineToRelative(2.7f, -2.71f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.4f, -1.42f) - lineToRelative(-2.2f, 2.2f) - lineToRelative(-0.52f, -1.07f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -3.46f, -1.13f) - lineToRelative(-0.6f, 0.33f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.96f, 1.76f) - lineToRelative(0.6f, -0.33f) - close() - } - } - return _mathFormula!! - } - -private var _mathFormula: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MathSymbols.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MathSymbols.kt deleted file mode 100644 index 79a48aab..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MathSymbols.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MathSymbols: ImageVector - get() { - if (_mathSymbols != null) { - return _mathSymbols!! - } - _mathSymbols = fluentIcon(name = "Filled.MathSymbols") { - fluentPath { - moveTo(6.5f, 1.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - lineTo(7.5f, 5.0f) - lineTo(10.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - lineTo(7.5f, 7.0f) - verticalLineToRelative(2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(5.5f, 7.0f) - lineTo(3.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - horizontalLineToRelative(2.5f) - lineTo(5.5f, 2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(14.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-7.0f) - close() - moveTo(13.0f, 17.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(17.5f, 15.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - moveTo(18.75f, 20.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(2.29f, 13.29f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 0.0f) - lineToRelative(2.79f, 2.8f) - lineToRelative(2.8f, -2.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.42f) - lineTo(7.92f, 17.5f) - lineToRelative(2.8f, 2.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 1.4f) - lineTo(6.5f, 18.92f) - lineToRelative(-2.8f, 2.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.42f) - lineToRelative(2.79f, -2.79f) - lineToRelative(-2.8f, -2.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) - close() - } - } - return _mathSymbols!! - } - -private var _mathSymbols: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MeetNow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MeetNow.kt deleted file mode 100644 index 063aa671..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MeetNow.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MeetNow: ImageVector - get() { - if (_meetNow != null) { - return _meetNow!! - } - _meetNow = fluentIcon(name = "Filled.MeetNow") { - fluentPath { - moveTo(7.96f, 2.52f) - arcTo(15.1f, 15.1f, 0.0f, false, true, 12.0f, 2.0f) - arcToRelative(15.32f, 15.32f, 0.0f, false, true, 5.16f, 0.9f) - arcToRelative(7.13f, 7.13f, 0.0f, false, true, 0.42f, 0.18f) - curveToRelative(0.04f, 0.02f, -0.55f, 1.12f, 0.0f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.66f, 1.34f) - horizontalLineToRelative(-0.01f) - arcToRelative(2.8f, 2.8f, 0.0f, false, false, -0.3f, -0.13f) - arcTo(13.82f, 13.82f, 0.0f, false, false, 12.0f, 3.5f) - arcToRelative(13.6f, 13.6f, 0.0f, false, false, -4.61f, 0.8f) - arcToRelative(5.6f, 5.6f, 0.0f, false, false, -0.3f, 0.13f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.68f, -1.34f) - horizontalLineToRelative(0.02f) - lineToRelative(0.02f, -0.02f) - arcToRelative(4.17f, 4.17f, 0.0f, false, true, 0.39f, -0.16f) - curveToRelative(0.26f, -0.1f, 0.63f, -0.24f, 1.12f, -0.38f) - close() - moveTo(6.75f, 20.25f) - lineToRelative(-0.33f, 0.67f) - lineToRelative(0.03f, 0.02f) - arcToRelative(4.16f, 4.16f, 0.0f, false, false, 0.39f, 0.16f) - arcTo(15.37f, 15.37f, 0.0f, false, false, 12.0f, 22.0f) - arcToRelative(15.15f, 15.15f, 0.0f, false, false, 5.16f, -0.9f) - arcToRelative(6.9f, 6.9f, 0.0f, false, false, 0.39f, -0.16f) - lineToRelative(0.02f, -0.01f) - horizontalLineToRelative(0.01f) - lineToRelative(-0.33f, -0.68f) - lineToRelative(0.34f, 0.67f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.68f, -1.34f) - arcToRelative(2.61f, 2.61f, 0.0f, false, true, -0.3f, 0.13f) - arcToRelative(13.66f, 13.66f, 0.0f, false, true, -4.61f, 0.8f) - arcToRelative(13.88f, 13.88f, 0.0f, false, true, -4.61f, -0.8f) - arcToRelative(5.75f, 5.75f, 0.0f, false, true, -0.3f, -0.13f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.67f, 1.34f) - lineToRelative(0.33f, -0.67f) - close() - moveTo(6.25f, 6.5f) - curveTo(5.01f, 6.5f, 4.0f, 7.5f, 4.0f, 8.75f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(6.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-6.5f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-6.5f) - close() - moveTo(19.27f, 16.33f) - lineTo(16.0f, 13.6f) - verticalLineToRelative(-3.2f) - lineToRelative(3.27f, -2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.23f, 0.57f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.23f, 0.58f) - close() - } - } - return _meetNow!! - } - -private var _meetNow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Megaphone.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Megaphone.kt deleted file mode 100644 index 2fb54c28..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Megaphone.kt +++ /dev/null @@ -1,41 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Megaphone: ImageVector - get() { - if (_megaphone != null) { - return _megaphone!! - } - _megaphone = fluentIcon(name = "Filled.Megaphone") { - fluentPath { - moveTo(21.9f, 5.62f) - curveToRelative(0.07f, 0.21f, 0.1f, 0.43f, 0.1f, 0.64f) - verticalLineToRelative(11.48f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.9f, 2.16f) - lineToRelative(-5.5f, -1.64f) - arcTo(4.0f, 4.0f, 0.0f, false, true, 6.0f, 16.7f) - verticalLineTo(16.0f) - lineToRelative(-2.4f, -0.71f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 2.0f, 13.13f) - verticalLineToRelative(-2.26f) - curveToRelative(0.0f, -1.0f, 0.65f, -1.87f, 1.6f, -2.16f) - lineToRelative(15.5f, -4.6f) - curveToRelative(1.2f, -0.36f, 2.45f, 0.32f, 2.8f, 1.51f) - close() - moveTo(7.5f, 16.44f) - verticalLineToRelative(0.06f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 4.62f, 1.32f) - lineTo(7.5f, 16.44f) - close() - } - } - return _megaphone!! - } - -private var _megaphone: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MegaphoneCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MegaphoneCircle.kt deleted file mode 100644 index fda28b08..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MegaphoneCircle.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MegaphoneCircle: ImageVector - get() { - if (_megaphoneCircle != null) { - return _megaphoneCircle!! - } - _megaphoneCircle = fluentIcon(name = "Filled.MegaphoneCircle") { - fluentPath { - moveTo(12.0f, 22.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) - close() - moveTo(8.0f, 14.43f) - lineTo(7.14f, 14.12f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 6.0f, 12.46f) - verticalLineToRelative(-0.95f) - curveToRelative(0.0f, -0.73f, 0.45f, -1.38f, 1.14f, -1.64f) - lineToRelative(7.5f, -2.77f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 17.0f, 8.75f) - verticalLineToRelative(6.5f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -2.36f, 1.64f) - lineToRelative(-1.43f, -0.53f) - arcTo(2.63f, 2.63f, 0.0f, false, true, 8.0f, 15.88f) - verticalLineToRelative(-1.45f) - close() - moveTo(11.75f, 15.83f) - verticalLineToRelative(0.04f) - arcToRelative(1.13f, 1.13f, 0.0f, false, true, -2.25f, 0.0f) - lineTo(9.5f, 15.0f) - lineToRelative(2.25f, 0.83f) - close() - } - } - return _megaphoneCircle!! - } - -private var _megaphoneCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MegaphoneLoud.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MegaphoneLoud.kt deleted file mode 100644 index 1c3b266e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MegaphoneLoud.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MegaphoneLoud: ImageVector - get() { - if (_megaphoneLoud != null) { - return _megaphoneLoud!! - } - _megaphoneLoud = fluentIcon(name = "Filled.MegaphoneLoud") { - fluentPath { - moveTo(17.21f, 2.24f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.42f, -0.48f) - lineToRelative(-0.75f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.42f, 0.48f) - lineToRelative(0.75f, -2.25f) - close() - moveTo(21.78f, 2.22f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(2.5f, -2.5f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(12.88f, 3.74f) - arcToRelative(2.33f, 2.33f, 0.0f, false, false, -3.8f, 0.58f) - lineToRelative(-5.9f, 12.24f) - arcToRelative(1.8f, 1.8f, 0.0f, false, false, 0.39f, 2.09f) - lineTo(5.0f, 20.01f) - curveToRelative(0.53f, 0.5f, 1.3f, 0.63f, 1.97f, 0.33f) - lineToRelative(1.42f, -0.63f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 7.3f, -3.24f) - lineToRelative(3.43f, -1.51f) - arcToRelative(2.33f, 2.33f, 0.0f, false, false, 0.76f, -3.71f) - lineToRelative(-7.0f, -7.5f) - close() - moveTo(14.33f, 17.08f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -4.57f, 2.03f) - lineToRelative(4.57f, -2.03f) - close() - moveTo(19.0f, 8.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _megaphoneLoud!! - } - -private var _megaphoneLoud: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MegaphoneOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MegaphoneOff.kt deleted file mode 100644 index 896292ed..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MegaphoneOff.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MegaphoneOff: ImageVector - get() { - if (_megaphoneOff != null) { - return _megaphoneOff!! - } - _megaphoneOff = fluentIcon(name = "Filled.MegaphoneOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(4.5f, 4.5f) - lineToRelative(-3.11f, 0.93f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 10.87f) - verticalLineToRelative(2.26f) - curveToRelative(0.0f, 1.0f, 0.65f, 1.87f, 1.6f, 2.16f) - lineToRelative(2.4f, 0.7f) - verticalLineToRelative(0.7f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 7.6f, 1.57f) - lineToRelative(5.12f, 1.52f) - lineToRelative(2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(7.5f, 16.44f) - lineToRelative(4.62f, 1.38f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 7.5f, 16.5f) - verticalLineToRelative(-0.06f) - close() - moveTo(22.0f, 17.74f) - curveToRelative(0.0f, 0.32f, -0.07f, 0.62f, -0.18f, 0.9f) - lineTo(10.0f, 6.8f) - lineToRelative(9.1f, -2.7f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 22.0f, 6.26f) - verticalLineToRelative(11.48f) - close() - } - } - return _megaphoneOff!! - } - -private var _megaphoneOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Mention.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Mention.kt deleted file mode 100644 index d6ceabd6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Mention.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Mention: ImageVector - get() { - if (_mention != null) { - return _mention!! - } - _mention = fluentIcon(name = "Filled.Mention") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 10.0f, 9.72f) - verticalLineToRelative(1.81f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -7.41f, 2.05f) - arcToRelative(4.26f, 4.26f, 0.0f, false, true, -3.09f, 1.35f) - curveToRelative(-2.52f, 0.0f, -4.5f, -2.25f, -4.5f, -4.96f) - curveTo(7.0f, 9.25f, 8.98f, 7.0f, 11.5f, 7.0f) - curveToRelative(0.94f, 0.0f, 1.8f, 0.31f, 2.51f, 0.84f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.98f, 0.04f) - lineTo(16.0f, 8.0f) - verticalLineToRelative(5.5f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 4.0f, 0.15f) - lineTo(20.0f, 12.0f) - arcToRelative(8.0f, 8.0f, 0.0f, true, false, -5.33f, 7.54f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.67f, 1.89f) - arcTo(10.0f, 10.0f, 0.0f, true, true, 12.0f, 2.0f) - close() - moveTo(11.65f, 9.0f) - horizontalLineToRelative(-0.15f) - curveTo(10.15f, 9.0f, 9.0f, 10.3f, 9.0f, 11.97f) - curveToRelative(0.0f, 1.66f, 1.15f, 2.96f, 2.5f, 2.96f) - curveToRelative(1.3f, 0.0f, 2.41f, -1.2f, 2.5f, -2.78f) - verticalLineToRelative(-0.22f) - curveToRelative(-0.02f, -1.59f, -1.08f, -2.83f, -2.35f, -2.92f) - lineTo(11.5f, 9.0f) - horizontalLineToRelative(0.15f) - close() - } - } - return _mention!! - } - -private var _mention: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Merge.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Merge.kt deleted file mode 100644 index d53f4c80..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Merge.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Merge: ImageVector - get() { - if (_merge != null) { - return _merge!! - } - _merge = fluentIcon(name = "Filled.Merge") { - fluentPath { - moveTo(3.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(2.76f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 2.83f, 1.17f) - lineToRelative(2.95f, 2.95f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 2.12f, 0.88f) - horizontalLineToRelative(3.92f) - lineTo(15.3f, 7.71f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, -1.41f) - lineToRelative(5.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.4f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, -1.4f) - lineToRelative(3.3f, -3.3f) - horizontalLineToRelative(-3.97f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -2.08f, 0.88f) - lineToRelative(-2.95f, 2.95f) - arcTo(4.0f, 4.0f, 0.0f, false, true, 6.76f, 18.0f) - horizontalLineTo(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(2.76f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.41f, -0.59f) - lineToRelative(2.95f, -2.95f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.54f, -0.46f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, -0.54f, -0.46f) - lineTo(8.17f, 8.59f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 6.76f, 8.0f) - horizontalLineTo(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - } - } - return _merge!! - } - -private var _merge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Mic.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Mic.kt deleted file mode 100644 index aeda5a90..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Mic.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Mic: ImageVector - get() { - if (_mic != null) { - return _mic!! - } - _mic = fluentIcon(name = "Filled.Mic") { - fluentPath { - moveTo(18.25f, 11.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(0.5f) - arcToRelative(6.75f, 6.75f, 0.0f, false, true, -6.25f, 6.73f) - verticalLineToRelative(2.27f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-2.37f) - arcTo(6.75f, 6.75f, 0.0f, false, true, 5.0f, 12.48f) - verticalLineToRelative(-0.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.6f) - arcToRelative(5.25f, 5.25f, 0.0f, false, false, 5.03f, 5.25f) - horizontalLineToRelative(0.72f) - arcToRelative(5.25f, 5.25f, 0.0f, false, false, 5.25f, -5.03f) - verticalLineToRelative(-0.72f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, 4.0f) - verticalLineToRelative(6.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -8.0f, 0.0f) - verticalLineTo(6.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, -4.0f) - close() - } - } - return _mic!! - } - -private var _mic: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MicOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MicOff.kt deleted file mode 100644 index 4f07e035..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MicOff.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MicOff: ImageVector - get() { - if (_micOff != null) { - return _micOff!! - } - _micOff = fluentIcon(name = "Filled.MicOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(8.0f, 9.06f) - lineTo(8.0f, 12.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 6.25f, 3.3f) - lineToRelative(1.14f, 1.15f) - arcToRelative(5.23f, 5.23f, 0.0f, false, true, -3.14f, 1.05f) - horizontalLineToRelative(-0.72f) - arcToRelative(5.25f, 5.25f, 0.0f, false, true, -5.03f, -5.25f) - verticalLineToRelative(-0.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - verticalLineToRelative(0.74f) - arcToRelative(6.75f, 6.75f, 0.0f, false, false, 6.25f, 6.5f) - verticalLineToRelative(2.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - verticalLineToRelative(-2.27f) - curveToRelative(1.4f, -0.1f, 2.68f, -0.63f, 3.71f, -1.46f) - lineToRelative(4.26f, 4.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(17.2f, 14.02f) - lineTo(18.34f, 15.16f) - curveToRelative(0.42f, -0.88f, 0.66f, -1.87f, 0.66f, -2.91f) - verticalLineToRelative(-0.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - verticalLineToRelative(0.72f) - arcToRelative(5.23f, 5.23f, 0.0f, false, true, -0.3f, 1.54f) - close() - moveTo(8.14f, 4.95f) - lineToRelative(7.79f, 7.79f) - curveToRelative(0.05f, -0.24f, 0.07f, -0.5f, 0.07f, -0.75f) - lineTo(16.0f, 6.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -7.86f, -1.04f) - close() - } - } - return _micOff!! - } - -private var _micOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MicProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MicProhibited.kt deleted file mode 100644 index 49451a4f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MicProhibited.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MicProhibited: ImageVector - get() { - if (_micProhibited != null) { - return _micProhibited!! - } - _micProhibited = fluentIcon(name = "Filled.MicProhibited") { - fluentPath { - moveTo(11.17f, 16.0f) - arcTo(6.51f, 6.51f, 0.0f, false, true, 15.0f, 11.5f) - lineTo(15.0f, 6.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -8.0f, 0.0f) - verticalLineToRelative(6.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.17f, 4.0f) - close() - moveTo(11.0f, 17.5f) - curveToRelative(0.0f, 1.1f, 0.27f, 2.13f, 0.75f, 3.03f) - verticalLineToRelative(0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-2.37f) - arcTo(6.75f, 6.75f, 0.0f, false, true, 4.0f, 12.48f) - verticalLineToRelative(-0.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.6f) - arcToRelative(5.25f, 5.25f, 0.0f, false, false, 5.03f, 5.25f) - lineTo(11.0f, 17.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(13.5f, 17.5f) - curveToRelative(0.0f, 0.83f, 0.26f, 1.6f, 0.7f, 2.25f) - lineToRelative(5.55f, -5.56f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) - close() - moveTo(17.5f, 21.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) - lineToRelative(-5.55f, 5.56f) - curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) - close() - } - } - return _micProhibited!! - } - -private var _micProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MicPulse.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MicPulse.kt deleted file mode 100644 index f7227e2e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MicPulse.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MicPulse: ImageVector - get() { - if (_micPulse != null) { - return _micPulse!! - } - _micPulse = fluentIcon(name = "Filled.MicPulse") { - fluentPath { - moveTo(11.0f, 17.5f) - curveToRelative(0.0f, 1.1f, 0.27f, 2.13f, 0.75f, 3.03f) - verticalLineToRelative(0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-2.37f) - arcTo(6.75f, 6.75f, 0.0f, false, true, 4.0f, 12.48f) - verticalLineToRelative(-0.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.6f) - arcToRelative(5.25f, 5.25f, 0.0f, false, false, 5.03f, 5.25f) - lineTo(11.0f, 17.5f) - close() - moveTo(11.17f, 16.0f) - arcTo(6.51f, 6.51f, 0.0f, false, true, 15.0f, 11.5f) - lineTo(15.0f, 6.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -8.0f, 0.0f) - verticalLineToRelative(6.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.17f, 4.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(16.01f, 14.5f) - curveToRelative(0.21f, 0.0f, 0.4f, 0.14f, 0.46f, 0.34f) - lineTo(17.53f, 18.0f) - lineToRelative(1.0f, -2.68f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.92f, -0.04f) - lineTo(20.3f, 17.0f) - lineTo(21.0f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.45f, -0.28f) - lineToRelative(-0.48f, -0.97f) - lineToRelative(-1.1f, 2.93f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.94f, -0.02f) - lineToRelative(-1.07f, -3.2f) - lineToRelative(-0.5f, 1.23f) - arcTo(0.5f, 0.5f, 0.0f, false, true, 15.0f, 18.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineToRelative(0.66f) - lineToRelative(0.88f, -2.19f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.47f, -0.31f) - close() - } - } - return _micPulse!! - } - -private var _micPulse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MicPulseOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MicPulseOff.kt deleted file mode 100644 index a7fbaa67..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MicPulseOff.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MicPulseOff: ImageVector - get() { - if (_micPulseOff != null) { - return _micPulseOff!! - } - _micPulseOff = fluentIcon(name = "Filled.MicPulseOff") { - fluentPath { - moveTo(7.0f, 8.06f) - lineTo(7.0f, 12.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.17f, 4.0f) - curveToRelative(0.23f, -0.94f, 0.65f, -1.8f, 1.23f, -2.54f) - lineToRelative(0.72f, 0.72f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 7.72f, 7.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.94f, -1.16f) - lineTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(7.0f, 8.06f) - close() - moveTo(18.14f, 19.21f) - lineTo(17.97f, 19.68f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.94f, -0.02f) - lineToRelative(-0.79f, -2.36f) - lineToRelative(1.9f, 1.9f) - close() - moveTo(15.8f, 16.86f) - lineTo(15.46f, 17.69f) - arcTo(0.5f, 0.5f, 0.0f, false, true, 15.0f, 18.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineToRelative(0.66f) - lineToRelative(0.37f, -0.91f) - lineToRelative(0.77f, 0.77f) - close() - moveTo(15.54f, 12.36f) - lineTo(22.64f, 19.46f) - arcTo(5.49f, 5.49f, 0.0f, false, false, 17.5f, 12.0f) - curveToRelative(-0.69f, 0.0f, -1.35f, 0.13f, -1.96f, 0.36f) - close() - moveTo(7.41f, 4.23f) - lineToRelative(7.37f, 7.37f) - lineToRelative(0.22f, -0.1f) - lineTo(15.0f, 6.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -7.59f, -1.77f) - close() - moveTo(11.0f, 17.5f) - curveToRelative(0.0f, 1.1f, 0.27f, 2.13f, 0.75f, 3.03f) - verticalLineToRelative(0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-2.37f) - arcTo(6.75f, 6.75f, 0.0f, false, true, 4.0f, 12.48f) - verticalLineToRelative(-0.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.6f) - arcToRelative(5.25f, 5.25f, 0.0f, false, false, 5.03f, 5.25f) - lineTo(11.0f, 17.5f) - close() - } - } - return _micPulseOff!! - } - -private var _micPulseOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MicSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MicSettings.kt deleted file mode 100644 index bbbf364a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MicSettings.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MicSettings: ImageVector - get() { - if (_micSettings != null) { - return _micSettings!! - } - _micSettings = fluentIcon(name = "Filled.MicSettings") { - fluentPath { - moveTo(11.0f, 17.5f) - curveToRelative(0.0f, 1.1f, 0.27f, 2.13f, 0.75f, 3.03f) - verticalLineToRelative(0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-2.37f) - arcTo(6.75f, 6.75f, 0.0f, false, true, 4.0f, 12.48f) - verticalLineToRelative(-0.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.6f) - arcToRelative(5.25f, 5.25f, 0.0f, false, false, 5.03f, 5.25f) - lineTo(11.0f, 17.5f) - close() - moveTo(11.17f, 16.0f) - arcTo(6.51f, 6.51f, 0.0f, false, true, 15.0f, 11.5f) - lineTo(15.0f, 6.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -8.0f, 0.0f) - verticalLineToRelative(6.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.17f, 4.0f) - close() - moveTo(14.27f, 13.98f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.43f, 2.5f) - lineToRelative(-0.59f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) - lineToRelative(0.55f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) - lineToRelative(-0.19f, 0.63f) - curveToRelative(0.44f, 0.39f, 0.94f, 0.7f, 1.49f, 0.93f) - lineToRelative(0.49f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) - lineToRelative(-0.2f, -0.69f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) - lineToRelative(0.59f, -0.14f) - arcToRelative(5.72f, 5.72f, 0.0f, false, false, 0.0f, -1.8f) - lineToRelative(-0.55f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.19f, -0.63f) - curveToRelative(-0.44f, -0.4f, -0.94f, -0.7f, -1.49f, -0.93f) - lineToRelative(-0.49f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) - lineToRelative(0.2f, 0.7f) - close() - moveTo(17.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) - close() - } - } - return _micSettings!! - } - -private var _micSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MicSparkle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MicSparkle.kt deleted file mode 100644 index e34899e3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MicSparkle.kt +++ /dev/null @@ -1,93 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MicSparkle: ImageVector - get() { - if (_micSparkle != null) { - return _micSparkle!! - } - _micSparkle = fluentIcon(name = "Filled.MicSparkle") { - fluentPath { - moveTo(13.85f, 15.15f) - arcToRelative(2.85f, 2.85f, 0.0f, false, true, 0.69f, 1.11f) - lineToRelative(0.45f, 1.38f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 1.02f, 0.0f) - lineToRelative(0.45f, -1.38f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, 1.8f, -1.8f) - lineToRelative(1.38f, -0.44f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, -1.03f) - horizontalLineToRelative(-0.03f) - lineToRelative(-1.38f, -0.45f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.8f, -1.8f) - lineTo(16.0f, 9.36f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, -1.03f, 0.0f) - lineToRelative(-0.45f, 1.38f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.77f, 1.8f) - lineToRelative(-1.38f, 0.44f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, 1.03f) - lineToRelative(1.38f, 0.45f) - curveToRelative(0.42f, 0.14f, 0.8f, 0.37f, 1.11f, 0.69f) - close() - moveTo(16.0f, 6.0f) - verticalLineToRelative(2.1f) - arcToRelative(1.54f, 1.54f, 0.0f, false, false, -1.98f, 0.93f) - verticalLineToRelative(0.01f) - lineToRelative(-0.46f, 1.39f) - arcToRelative(1.83f, 1.83f, 0.0f, false, true, -1.14f, 1.16f) - lineToRelative(-1.38f, 0.45f) - arcToRelative(1.54f, 1.54f, 0.0f, false, false, 0.0f, 2.91f) - lineToRelative(1.39f, 0.46f) - curveToRelative(0.26f, 0.09f, 0.5f, 0.23f, 0.7f, 0.43f) - arcTo(4.0f, 4.0f, 0.0f, false, true, 8.0f, 12.0f) - lineTo(8.0f, 6.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, 8.0f, 0.0f) - close() - moveTo(12.25f, 17.5f) - curveToRelative(0.54f, 0.0f, 1.07f, -0.08f, 1.56f, -0.24f) - lineToRelative(0.23f, 0.7f) - verticalLineToRelative(0.01f) - curveToRelative(0.1f, 0.25f, 0.25f, 0.48f, 0.45f, 0.65f) - curveToRelative(-0.55f, 0.2f, -1.13f, 0.32f, -1.74f, 0.36f) - verticalLineToRelative(2.27f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-2.37f) - arcTo(6.75f, 6.75f, 0.0f, false, true, 5.0f, 12.48f) - verticalLineToRelative(-0.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.6f) - arcToRelative(5.25f, 5.25f, 0.0f, false, false, 5.03f, 5.25f) - horizontalLineToRelative(0.72f) - close() - moveTo(22.02f, 18.96f) - lineTo(22.78f, 19.21f) - horizontalLineToRelative(0.02f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, 0.47f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, 0.1f) - lineToRelative(-0.77f, 0.26f) - arcToRelative(1.58f, 1.58f, 0.0f, false, false, -1.0f, 1.0f) - lineToRelative(-0.24f, 0.76f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.58f, 0.0f) - lineToRelative(-0.24f, -0.77f) - arcToRelative(1.57f, 1.57f, 0.0f, false, false, -1.0f, -1.0f) - lineToRelative(-0.77f, -0.25f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, -0.46f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, -0.1f) - lineToRelative(0.77f, -0.26f) - arcToRelative(1.58f, 1.58f, 0.0f, false, false, 0.98f, -1.0f) - lineToRelative(0.25f, -0.76f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.57f, 0.0f) - lineToRelative(0.25f, 0.77f) - arcToRelative(1.58f, 1.58f, 0.0f, false, false, 1.0f, 1.0f) - close() - } - } - return _micSparkle!! - } - -private var _micSparkle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Microscope.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Microscope.kt deleted file mode 100644 index 9c1f987c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Microscope.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Microscope: ImageVector - get() { - if (_microscope != null) { - return _microscope!! - } - _microscope = fluentIcon(name = "Filled.Microscope") { - fluentPath { - moveTo(8.0f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(11.0f, 3.0f) - horizontalLineToRelative(1.25f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.78f) - horizontalLineToRelative(0.03f) - arcToRelative(8.25f, 8.25f, 0.0f, false, true, 3.96f, 14.97f) - horizontalLineToRelative(3.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(3.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(8.53f) - arcTo(6.75f, 6.75f, 0.0f, false, false, 13.0f, 7.04f) - verticalLineToRelative(5.21f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-0.75f) - verticalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - lineTo(8.0f, 3.0f) - verticalLineToRelative(-0.25f) - close() - moveTo(9.0f, 13.0f) - verticalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-1.0f) - lineTo(9.0f, 13.0f) - close() - moveTo(5.75f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-7.5f) - close() - } - } - return _microscope!! - } - -private var _microscope: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Midi.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Midi.kt deleted file mode 100644 index 433323ed..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Midi.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Midi: ImageVector - get() { - if (_midi != null) { - return _midi!! - } - _midi = fluentIcon(name = "Filled.Midi") { - fluentPath { - moveTo(21.25f, 4.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.29f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(14.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(2.75f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - lineTo(2.0f, 4.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.69f, 0.65f, -0.74f) - horizontalLineToRelative(18.6f) - close() - moveTo(6.0f, 12.0f) - lineTo(3.5f, 12.0f) - verticalLineToRelative(6.5f) - horizontalLineToRelative(17.0f) - lineTo(20.5f, 12.0f) - lineTo(18.0f, 12.0f) - verticalLineToRelative(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(16.5f, 12.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(13.0f, 12.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(9.5f, 12.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(6.0f, 12.0f) - close() - moveTo(17.25f, 7.5f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(6.25f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(9.25f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - } - } - return _midi!! - } - -private var _midi: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MobileOptimized.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MobileOptimized.kt deleted file mode 100644 index 0c286794..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MobileOptimized.kt +++ /dev/null @@ -1,93 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MobileOptimized: ImageVector - get() { - if (_mobileOptimized != null) { - return _mobileOptimized!! - } - _mobileOptimized = fluentIcon(name = "Filled.MobileOptimized") { - fluentPath { - moveTo(19.25f, 18.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(20.0f, 20.0f) - verticalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-2.1f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(2.0f) - horizontalLineToRelative(-2.0f) - close() - moveTo(2.75f, 18.5f) - horizontalLineToRelative(2.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(4.0f, 20.0f) - lineTo(2.75f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(2.1f) - horizontalLineToRelative(-2.0f) - close() - moveTo(16.75f, 5.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(6.5f, 6.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(9.5f) - close() - moveTo(12.25f, 12.51f) - horizontalLineToRelative(-2.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) - horizontalLineToRelative(2.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(14.25f, 9.5f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(14.35f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(4.75f, 2.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(4.0f, 4.0f) - lineTo(4.0f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(19.25f, 2.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - lineTo(20.0f, 4.0f) - horizontalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-2.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _mobileOptimized!! - } - -private var _mobileOptimized: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Molecule.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Molecule.kt deleted file mode 100644 index 7dbb9d34..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Molecule.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Molecule: ImageVector - get() { - if (_molecule != null) { - return _molecule!! - } - _molecule = fluentIcon(name = "Filled.Molecule") { - fluentPath { - moveTo(16.0f, 12.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, false, -4.34f, -2.51f) - lineToRelative(-2.71f, 1.8f) - arcTo(3.99f, 3.99f, 0.0f, false, false, 2.0f, 14.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 7.18f, 2.43f) - lineToRelative(3.89f, 1.94f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.67f, -1.34f) - lineToRelative(-3.89f, -1.94f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -0.11f, -2.52f) - lineToRelative(2.86f, -1.9f) - curveToRelative(0.9f, 0.82f, 2.09f, 1.33f, 3.4f, 1.33f) - close() - } - } - return _molecule!! - } - -private var _molecule: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Money.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Money.kt deleted file mode 100644 index ccef348d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Money.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Money: ImageVector - get() { - if (_money != null) { - return _money!! - } - _money = fluentIcon(name = "Filled.Money") { - fluentPath { - moveTo(2.0f, 6.75f) - curveTo(2.0f, 5.78f, 2.78f, 5.0f, 3.75f, 5.0f) - horizontalLineToRelative(13.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(3.75f, 17.0f) - curveTo(2.78f, 17.0f, 2.0f, 16.22f, 2.0f, 15.25f) - verticalLineToRelative(-8.5f) - close() - moveTo(5.0f, 6.25f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(1.0f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-1.0f) - lineTo(5.0f, 6.25f) - close() - moveTo(10.5f, 13.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, -4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) - close() - moveTo(3.25f, 14.0f) - horizontalLineToRelative(1.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.5f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-1.0f) - lineTo(3.25f, 14.0f) - close() - moveTo(16.0f, 14.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(-1.0f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(1.0f) - lineTo(16.0f, 15.75f) - verticalLineToRelative(-1.0f) - close() - moveTo(16.0f, 7.25f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(-1.5f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(1.0f) - lineTo(17.75f, 8.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(4.4f, 18.5f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 7.0f, 20.0f) - horizontalLineToRelative(10.25f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 22.0f, 15.25f) - lineTo(22.0f, 10.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -1.5f, -2.6f) - verticalLineToRelative(7.85f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(4.4f, 18.5f) - close() - } - } - return _money!! - } - -private var _money: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MoneyCalculator.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MoneyCalculator.kt deleted file mode 100644 index a225452f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MoneyCalculator.kt +++ /dev/null @@ -1,136 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MoneyCalculator: ImageVector - get() { - if (_moneyCalculator != null) { - return _moneyCalculator!! - } - _moneyCalculator = fluentIcon(name = "Filled.MoneyCalculator") { - fluentPath { - moveTo(2.0f, 5.75f) - curveTo(2.0f, 4.78f, 2.78f, 4.0f, 3.75f, 4.0f) - horizontalLineToRelative(13.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(19.0f, 11.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(3.0f) - lineTo(3.75f, 16.0f) - curveTo(2.78f, 16.0f, 2.0f, 15.22f, 2.0f, 14.25f) - verticalLineToRelative(-8.5f) - close() - moveTo(5.0f, 6.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(1.0f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-1.0f) - lineTo(5.0f, 5.25f) - verticalLineToRelative(1.0f) - close() - moveTo(10.5f, 12.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, -4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) - close() - moveTo(4.25f, 13.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.5f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-1.0f) - lineTo(3.25f, 13.0f) - horizontalLineToRelative(1.0f) - close() - moveTo(16.75f, 7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(-1.5f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(1.0f) - lineTo(17.75f, 7.0f) - horizontalLineToRelative(-1.0f) - close() - moveTo(4.4f, 17.5f) - lineTo(14.0f, 17.5f) - lineTo(14.0f, 19.0f) - lineTo(7.0f, 19.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.6f, -1.5f) - close() - moveTo(22.0f, 9.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-1.5f) - lineTo(20.5f, 6.4f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 22.0f, 9.0f) - close() - moveTo(16.5f, 12.0f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(8.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(5.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-8.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - horizontalLineToRelative(-5.0f) - close() - moveTo(17.0f, 16.5f) - horizontalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - close() - moveTo(20.0f, 16.5f) - horizontalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - close() - moveTo(17.0f, 18.5f) - horizontalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - close() - moveTo(20.0f, 18.5f) - horizontalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - close() - moveTo(17.0f, 20.5f) - horizontalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - close() - moveTo(20.0f, 20.5f) - horizontalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - close() - moveTo(16.5f, 14.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(4.0f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - verticalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - verticalLineToRelative(-1.0f) - close() - } - } - return _moneyCalculator!! - } - -private var _moneyCalculator: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MoneyDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MoneyDismiss.kt deleted file mode 100644 index 4700eb79..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MoneyDismiss.kt +++ /dev/null @@ -1,96 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MoneyDismiss: ImageVector - get() { - if (_moneyDismiss != null) { - return _moneyDismiss!! - } - _moneyDismiss = fluentIcon(name = "Filled.MoneyDismiss") { - fluentPath { - moveTo(2.0f, 6.75f) - curveTo(2.0f, 5.78f, 2.78f, 5.0f, 3.75f, 5.0f) - horizontalLineToRelative(13.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.42f) - arcTo(6.52f, 6.52f, 0.0f, false, false, 11.02f, 17.0f) - lineTo(3.75f, 17.0f) - curveTo(2.78f, 17.0f, 2.0f, 16.22f, 2.0f, 15.25f) - verticalLineToRelative(-8.5f) - close() - moveTo(5.0f, 7.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(1.0f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-1.0f) - lineTo(5.0f, 6.25f) - verticalLineToRelative(1.0f) - close() - moveTo(10.5f, 13.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, -4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) - close() - moveTo(4.25f, 14.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.5f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-1.0f) - lineTo(3.25f, 14.0f) - horizontalLineToRelative(1.0f) - close() - moveTo(16.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(-1.5f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(1.0f) - lineTo(17.75f, 8.0f) - horizontalLineToRelative(-1.0f) - close() - moveTo(4.4f, 18.5f) - horizontalLineToRelative(6.68f) - curveToRelative(0.08f, 0.52f, 0.22f, 1.03f, 0.42f, 1.5f) - lineTo(7.0f, 20.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.6f, -1.5f) - close() - moveTo(20.5f, 11.73f) - curveToRelative(0.55f, 0.29f, 1.06f, 0.65f, 1.5f, 1.08f) - lineTo(22.0f, 10.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -1.5f, -2.6f) - verticalLineToRelative(4.33f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-1.64f, -1.65f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.65f, 1.64f) - lineToRelative(-1.65f, -1.64f) - close() - } - } - return _moneyDismiss!! - } - -private var _moneyDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MoneyHand.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MoneyHand.kt deleted file mode 100644 index 9d6d7e46..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MoneyHand.kt +++ /dev/null @@ -1,109 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MoneyHand: ImageVector - get() { - if (_moneyHand != null) { - return _moneyHand!! - } - _moneyHand = fluentIcon(name = "Filled.MoneyHand") { - fluentPath { - moveTo(6.25f, 2.0f) - curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) - verticalLineToRelative(15.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(7.5f) - curveToRelative(1.24f, 0.0f, 2.24f, -1.0f, 2.25f, -2.23f) - verticalLineToRelative(-1.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - curveToRelative(-0.45f, 0.0f, -0.74f, -0.12f, -0.94f, -0.28f) - curveToRelative(-0.2f, -0.17f, -0.38f, -0.43f, -0.5f, -0.79f) - arcToRelative(8.4f, 8.4f, 0.0f, false, true, -0.3f, -2.68f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.21f, -0.51f) - lineToRelative(-0.17f, -0.18f) - lineToRelative(-0.17f, -0.17f) - lineToRelative(-1.18f, -1.17f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.81f, -1.17f) - arcToRelative(0.62f, 0.62f, 0.0f, false, true, -0.02f, -0.32f) - curveToRelative(0.02f, -0.09f, 0.08f, -0.2f, 0.2f, -0.33f) - arcToRelative(0.7f, 0.7f, 0.0f, false, true, 0.33f, -0.2f) - arcToRelative(0.61f, 0.61f, 0.0f, false, true, 0.32f, 0.02f) - curveToRelative(0.3f, 0.08f, 0.7f, 0.34f, 1.17f, 0.81f) - lineToRelative(1.51f, 1.5f) - curveToRelative(0.76f, 0.75f, 1.38f, 1.36f, 1.72f, 1.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.1f, -1.02f) - lineTo(16.0f, 11.42f) - lineTo(16.0f, 8.06f) - lineToRelative(2.84f, 2.84f) - curveToRelative(0.42f, 0.42f, 0.66f, 1.0f, 0.66f, 1.6f) - verticalLineToRelative(8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-8.76f) - curveToRelative(0.0f, -1.0f, -0.4f, -1.95f, -1.1f, -2.65f) - lineTo(16.0f, 5.94f) - lineTo(16.0f, 4.25f) - curveTo(16.0f, 3.01f, 15.0f, 2.0f, 13.75f, 2.0f) - horizontalLineToRelative(-7.5f) - close() - moveTo(13.37f, 18.39f) - curveToRelative(0.33f, 0.26f, 0.7f, 0.44f, 1.13f, 0.53f) - lineTo(14.5f, 19.0f) - horizontalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(-1.5f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.9f, 0.52f, -1.67f, 1.28f, -2.03f) - curveToRelative(0.16f, 0.25f, 0.35f, 0.47f, 0.6f, 0.67f) - close() - moveTo(12.0f, 14.05f) - curveToRelative(0.0f, 0.25f, 0.0f, 0.52f, 0.02f, 0.8f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, -1.55f, -6.32f) - arcToRelative(2.48f, 2.48f, 0.0f, false, false, -0.97f, 1.32f) - curveToRelative(-0.1f, 0.38f, -0.07f, 0.76f, 0.02f, 1.1f) - curveToRelative(0.2f, 0.68f, 0.67f, 1.3f, 1.2f, 1.83f) - arcTo(66.72f, 66.72f, 0.0f, false, false, 11.96f, 14.0f) - lineToRelative(0.04f, 0.04f) - close() - moveTo(7.0f, 3.5f) - horizontalLineToRelative(1.5f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(5.5f, 6.5f) - lineTo(5.5f, 5.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(7.0f, 3.5f) - close() - moveTo(11.5f, 3.5f) - lineTo(13.0f, 3.5f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(0.75f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(-0.75f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - lineTo(11.5f, 3.5f) - close() - moveTo(8.5f, 20.5f) - lineTo(7.0f, 20.5f) - verticalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(5.5f, 19.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(0.75f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(0.75f) - close() - } - } - return _moneyHand!! - } - -private var _moneyHand: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MoneyOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MoneyOff.kt deleted file mode 100644 index 7bb2f516..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MoneyOff.kt +++ /dev/null @@ -1,93 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MoneyOff: ImageVector - get() { - if (_moneyOff != null) { - return _moneyOff!! - } - _moneyOff = fluentIcon(name = "Filled.MoneyOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineTo(3.94f, 5.0f) - horizontalLineToRelative(-0.19f) - curveTo(2.78f, 5.0f, 2.0f, 5.78f, 2.0f, 6.75f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(12.19f) - lineToRelative(1.5f, 1.5f) - lineTo(4.4f, 18.5f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 7.0f, 20.0f) - horizontalLineToRelative(10.25f) - curveToRelative(0.51f, 0.0f, 1.0f, -0.08f, 1.46f, -0.23f) - lineToRelative(2.01f, 2.01f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(11.93f, 12.99f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -3.17f, -3.17f) - lineTo(11.93f, 13.0f) - close() - moveTo(5.19f, 6.25f) - lineToRelative(1.3f, 1.3f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 4.24f, 9.5f) - horizontalLineToRelative(-1.0f) - lineTo(3.24f, 8.0f) - horizontalLineToRelative(1.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(0.19f) - close() - moveTo(4.25f, 14.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(1.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(1.0f) - lineTo(5.0f, 15.75f) - verticalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(17.75f, 14.0f) - horizontalLineToRelative(-0.57f) - lineToRelative(1.75f, 1.75f) - curveToRelative(0.04f, -0.16f, 0.07f, -0.33f, 0.07f, -0.5f) - verticalLineToRelative(-8.5f) - curveTo(19.0f, 5.78f, 18.22f, 5.0f, 17.25f, 5.0f) - lineTo(8.18f, 5.0f) - lineToRelative(7.68f, 7.68f) - curveToRelative(0.27f, -0.12f, 0.57f, -0.18f, 0.89f, -0.18f) - horizontalLineToRelative(1.0f) - lineTo(17.75f, 14.0f) - close() - moveTo(16.0f, 6.25f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(1.0f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(-1.0f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-1.0f) - lineTo(16.0f, 6.25f) - close() - moveTo(20.06f, 16.88f) - lineTo(21.15f, 17.97f) - curveToRelative(0.53f, -0.77f, 0.85f, -1.71f, 0.85f, -2.72f) - lineTo(22.0f, 10.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -1.5f, -2.6f) - verticalLineToRelative(7.85f) - curveToRelative(0.0f, 0.6f, -0.16f, 1.15f, -0.44f, 1.63f) - close() - } - } - return _moneyOff!! - } - -private var _moneyOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MoreCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MoreCircle.kt deleted file mode 100644 index d801bf99..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MoreCircle.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MoreCircle: ImageVector - get() { - if (_moreCircle != null) { - return _moreCircle!! - } - _moreCircle = fluentIcon(name = "Filled.MoreCircle") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) - close() - moveTo(8.25f, 12.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(13.25f, 12.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(18.25f, 12.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - } - } - return _moreCircle!! - } - -private var _moreCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MoviesAndTv.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MoviesAndTv.kt deleted file mode 100644 index 42fa0a43..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MoviesAndTv.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MoviesAndTv: ImageVector - get() { - if (_moviesAndTv != null) { - return _moviesAndTv!! - } - _moviesAndTv = fluentIcon(name = "Filled.MoviesAndTv") { - fluentPath { - moveToRelative(19.73f, 3.88f) - lineToRelative(0.05f, 0.15f) - lineToRelative(0.55f, 1.93f) - curveToRelative(0.1f, 0.36f, -0.08f, 0.74f, -0.42f, 0.89f) - lineToRelative(-0.1f, 0.03f) - lineTo(9.1f, 9.96f) - horizontalLineToRelative(11.16f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - verticalLineToRelative(8.6f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.57f, 2.74f) - lineTo(5.75f, 21.95f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.74f, -2.57f) - lineTo(3.0f, 19.2f) - verticalLineToRelative(-8.4f) - lineTo(2.48f, 9.0f) - curveToRelative(-0.4f, -1.41f, 0.36f, -2.87f, 1.72f, -3.35f) - lineToRelative(0.16f, -0.06f) - lineToRelative(12.02f, -3.44f) - curveToRelative(1.4f, -0.4f, 2.87f, 0.36f, 3.35f, 1.73f) - close() - moveTo(6.27f, 6.6f) - lineToRelative(-1.5f, 0.43f) - curveToRelative(-0.61f, 0.17f, -1.0f, 0.8f, -0.88f, 1.42f) - lineToRelative(0.03f, 0.12f) - lineToRelative(0.34f, 1.2f) - lineToRelative(0.3f, -0.08f) - lineToRelative(1.71f, -3.1f) - close() - moveTo(11.03f, 5.23f) - lineTo(8.31f, 6.01f) - lineTo(6.6f, 9.11f) - lineTo(9.32f, 8.32f) - lineTo(11.02f, 5.23f) - close() - moveTo(15.79f, 3.87f) - lineTo(13.07f, 4.65f) - lineTo(11.36f, 7.74f) - lineTo(14.07f, 6.96f) - lineTo(15.79f, 3.86f) - close() - moveTo(17.63f, 3.64f) - lineTo(16.11f, 6.38f) - lineTo(18.68f, 5.64f) - lineTo(18.34f, 4.44f) - curveToRelative(-0.1f, -0.38f, -0.38f, -0.66f, -0.7f, -0.8f) - close() - } - } - return _moviesAndTv!! - } - -private var _moviesAndTv: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Multiplier12X.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Multiplier12X.kt deleted file mode 100644 index bbcd1573..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Multiplier12X.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Multiplier12X: ImageVector - get() { - if (_multiplier12X != null) { - return _multiplier12X!! - } - _multiplier12X = fluentIcon(name = "Filled.Multiplier12X") { - fluentPath { - moveTo(10.34f, 10.49f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.14f, -0.82f) - verticalLineToRelative(-0.01f) - lineToRelative(0.04f, -0.1f) - curveToRelative(0.03f, -0.1f, 0.09f, -0.21f, 0.18f, -0.33f) - curveToRelative(0.15f, -0.2f, 0.45f, -0.48f, 1.15f, -0.48f) - curveToRelative(0.72f, 0.0f, 1.06f, 0.22f, 1.23f, 0.42f) - curveToRelative(0.17f, 0.23f, 0.31f, 0.65f, 0.18f, 1.41f) - arcToRelative(0.88f, 0.88f, 0.0f, false, true, -0.47f, 0.68f) - curveToRelative(-0.25f, 0.16f, -0.53f, 0.25f, -0.9f, 0.39f) - lineToRelative(-0.55f, 0.2f) - curveToRelative(-0.6f, 0.23f, -1.35f, 0.56f, -1.93f, 1.25f) - curveToRelative(-0.6f, 0.7f, -0.91f, 1.65f, -0.91f, 2.9f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(4.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-3.63f) - curveToRelative(0.09f, -0.28f, 0.2f, -0.47f, 0.32f, -0.6f) - curveToRelative(0.24f, -0.29f, 0.59f, -0.48f, 1.12f, -0.68f) - lineToRelative(0.33f, -0.13f) - curveToRelative(0.44f, -0.15f, 1.0f, -0.35f, 1.44f, -0.62f) - arcToRelative(2.87f, 2.87f, 0.0f, false, false, 1.4f, -2.05f) - arcToRelative(3.7f, 3.7f, 0.0f, false, false, -0.58f, -2.98f) - curveToRelative(-0.66f, -0.83f, -1.67f, -1.19f, -2.8f, -1.19f) - arcToRelative(3.29f, 3.29f, 0.0f, false, false, -3.22f, 2.14f) - arcToRelative(3.02f, 3.02f, 0.0f, false, false, -0.11f, 0.43f) - verticalLineToRelative(0.02f) - reflectiveCurveToRelative(-0.04f, 0.2f, 0.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.82f, 1.15f) - close() - moveTo(5.27f, 6.94f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 6.0f, 7.9f) - lineTo(6.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - verticalLineToRelative(-5.33f) - curveToRelative(-0.28f, 0.23f, -0.6f, 0.46f, -0.99f, 0.69f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 2.0f, 9.64f) - curveTo(3.23f, 8.9f, 3.67f, 8.17f, 4.07f, 7.5f) - lineToRelative(0.08f, -0.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.12f, -0.44f) - close() - moveTo(18.71f, 12.29f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, 1.42f) - lineToRelative(0.8f, 0.79f) - lineToRelative(-0.8f, 0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.4f) - lineToRelative(0.79f, -0.79f) - lineToRelative(0.8f, 0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, -1.42f) - lineToRelative(-0.79f, -0.79f) - lineToRelative(0.8f, -0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, -1.4f) - lineToRelative(-0.79f, 0.79f) - lineToRelative(-0.8f, -0.8f) - close() - moveTo(7.75f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - } - } - return _multiplier12X!! - } - -private var _multiplier12X: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Multiplier15X.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Multiplier15X.kt deleted file mode 100644 index bc1a8598..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Multiplier15X.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Multiplier15X: ImageVector - get() { - if (_multiplier15X != null) { - return _multiplier15X!! - } - _multiplier15X = fluentIcon(name = "Filled.Multiplier15X") { - fluentPath { - moveTo(6.0f, 7.9f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.85f, -0.52f) - lineToRelative(-0.08f, 0.12f) - curveToRelative(-0.4f, 0.67f, -0.84f, 1.4f, -2.08f, 2.14f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 11.36f) - curveToRelative(0.38f, -0.23f, 0.7f, -0.46f, 0.99f, -0.69f) - lineTo(3.99f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(5.99f, 7.9f) - close() - moveTo(11.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.99f, 0.86f) - lineToRelative(-0.5f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.15f, 1.13f) - lineToRelative(1.82f, -0.29f) - arcToRelative(1.53f, 1.53f, 0.0f, true, true, 0.24f, 3.05f) - horizontalLineToRelative(-0.28f) - arcToRelative(1.8f, 1.8f, 0.0f, false, true, -1.2f, -0.45f) - lineToRelative(-0.33f, -0.3f) - arcTo(1.0f, 1.0f, 0.0f, true, false, 9.6f, 16.0f) - lineToRelative(0.34f, 0.3f) - curveToRelative(0.7f, 0.61f, 1.59f, 0.95f, 2.51f, 0.95f) - horizontalLineToRelative(0.28f) - arcToRelative(3.53f, 3.53f, 0.0f, true, false, -0.56f, -7.03f) - lineToRelative(-0.48f, 0.08f) - lineToRelative(0.19f, -1.3f) - lineTo(15.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(18.7f, 12.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.4f, 1.4f) - lineToRelative(0.79f, 0.8f) - lineToRelative(-0.8f, 0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.4f) - lineToRelative(0.79f, -0.79f) - lineToRelative(0.8f, 0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, -1.42f) - lineToRelative(-0.79f, -0.79f) - lineToRelative(0.8f, -0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, -1.4f) - lineToRelative(-0.79f, 0.79f) - lineToRelative(-0.8f, -0.8f) - close() - moveTo(8.5f, 16.24f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - } - } - return _multiplier15X!! - } - -private var _multiplier15X: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Multiplier18X.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Multiplier18X.kt deleted file mode 100644 index dea6b23c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Multiplier18X.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Multiplier18X: ImageVector - get() { - if (_multiplier18X != null) { - return _multiplier18X!! - } - _multiplier18X = fluentIcon(name = "Filled.Multiplier18X") { - fluentPath { - moveTo(16.0f, 9.5f) - curveToRelative(0.0f, 0.66f, -0.24f, 1.23f, -0.62f, 1.68f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 13.0f, 17.25f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -2.38f, -6.07f) - arcTo(2.56f, 2.56f, 0.0f, false, true, 10.0f, 9.5f) - curveToRelative(0.0f, -1.64f, 1.47f, -2.75f, 3.0f, -2.75f) - reflectiveCurveToRelative(3.0f, 1.11f, 3.0f, 2.75f) - close() - moveTo(13.0f, 8.75f) - curveToRelative(-0.68f, 0.0f, -1.0f, 0.46f, -1.0f, 0.75f) - curveToRelative(0.0f, 0.3f, 0.32f, 0.75f, 1.0f, 0.75f) - curveToRelative(0.68f, 0.0f, 1.0f, -0.46f, 1.0f, -0.75f) - curveToRelative(0.0f, -0.3f, -0.32f, -0.75f, -1.0f, -0.75f) - close() - moveTo(11.5f, 13.75f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) - close() - moveTo(7.75f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(17.29f, 12.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 0.0f) - lineToRelative(0.79f, 0.79f) - lineToRelative(0.8f, -0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.42f) - lineToRelative(-0.79f, 0.79f) - lineToRelative(0.8f, 0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 1.4f) - lineToRelative(-0.79f, -0.79f) - lineToRelative(-0.8f, 0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.42f) - lineToRelative(0.79f, -0.79f) - lineToRelative(-0.8f, -0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) - close() - moveTo(6.0f, 7.9f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.85f, -0.52f) - lineToRelative(-0.08f, 0.12f) - curveToRelative(-0.4f, 0.67f, -0.84f, 1.4f, -2.08f, 2.14f) - arcTo(1.0f, 1.0f, 0.0f, true, false, 3.0f, 11.36f) - curveToRelative(0.38f, -0.23f, 0.7f, -0.46f, 0.99f, -0.69f) - lineTo(3.99f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - lineTo(5.99f, 7.9f) - close() - } - } - return _multiplier18X!! - } - -private var _multiplier18X: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Multiplier1X.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Multiplier1X.kt deleted file mode 100644 index 5380e216..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Multiplier1X.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Multiplier1X: ImageVector - get() { - if (_multiplier1X != null) { - return _multiplier1X!! - } - _multiplier1X = fluentIcon(name = "Filled.Multiplier1X") { - fluentPath { - moveTo(10.0f, 7.9f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.85f, -0.52f) - lineToRelative(-0.08f, 0.12f) - curveToRelative(-0.4f, 0.67f, -0.84f, 1.4f, -2.08f, 2.14f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 7.0f, 11.36f) - curveToRelative(0.38f, -0.23f, 0.7f, -0.46f, 0.99f, -0.69f) - lineTo(7.99f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(9.99f, 7.9f) - close() - moveTo(13.7f, 12.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.4f, 1.4f) - lineToRelative(0.79f, 0.8f) - lineToRelative(-0.8f, 0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.4f) - lineToRelative(0.79f, -0.78f) - lineToRelative(0.8f, 0.79f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, -1.42f) - lineToRelative(-0.79f, -0.79f) - lineToRelative(0.8f, -0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, -1.4f) - lineToRelative(-0.79f, 0.79f) - lineToRelative(-0.8f, -0.8f) - close() - } - } - return _multiplier1X!! - } - -private var _multiplier1X: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Multiplier2X.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Multiplier2X.kt deleted file mode 100644 index 80ce0aa4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Multiplier2X.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Multiplier2X: ImageVector - get() { - if (_multiplier2X != null) { - return _multiplier2X!! - } - _multiplier2X = fluentIcon(name = "Filled.Multiplier2X") { - fluentPath { - moveTo(7.49f, 9.67f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.98f, -0.33f) - curveToRelative(-0.03f, 0.2f, 0.0f, 0.0f, 0.0f, 0.0f) - verticalLineToRelative(-0.02f) - arcToRelative(1.83f, 1.83f, 0.0f, false, true, 0.04f, -0.13f) - arcToRelative(3.02f, 3.02f, 0.0f, false, true, 0.55f, -1.17f) - arcToRelative(3.29f, 3.29f, 0.0f, false, true, 2.75f, -1.27f) - curveToRelative(1.13f, 0.0f, 2.14f, 0.36f, 2.8f, 1.19f) - curveToRelative(0.64f, 0.81f, 0.77f, 1.89f, 0.59f, 2.98f) - arcToRelative(2.87f, 2.87f, 0.0f, false, true, -1.41f, 2.05f) - curveToRelative(-0.44f, 0.27f, -1.0f, 0.47f, -1.43f, 0.62f) - lineToRelative(-0.34f, 0.13f) - curveToRelative(-0.53f, 0.2f, -0.88f, 0.39f, -1.12f, 0.67f) - curveToRelative(-0.12f, 0.14f, -0.23f, 0.33f, -0.32f, 0.61f) - horizontalLineToRelative(3.63f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - lineTo(6.5f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - curveToRelative(0.0f, -1.25f, 0.32f, -2.2f, 0.91f, -2.9f) - arcToRelative(4.55f, 4.55f, 0.0f, false, true, 1.93f, -1.25f) - lineToRelative(0.55f, -0.2f) - curveToRelative(0.37f, -0.14f, 0.65f, -0.23f, 0.9f, -0.39f) - arcToRelative(0.88f, 0.88f, 0.0f, false, false, 0.48f, -0.68f) - curveToRelative(0.13f, -0.76f, -0.02f, -1.18f, -0.2f, -1.4f) - curveToRelative(-0.15f, -0.21f, -0.5f, -0.43f, -1.22f, -0.43f) - curveToRelative(-0.7f, 0.0f, -1.0f, 0.27f, -1.15f, 0.48f) - arcToRelative(1.29f, 1.29f, 0.0f, false, false, -0.21f, 0.43f) - verticalLineToRelative(0.01f) - close() - moveTo(7.49f, 9.67f) - verticalLineToRelative(-0.01f) - close() - moveTo(7.49f, 9.67f) - close() - moveTo(14.71f, 12.29f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.42f, 1.42f) - lineToRelative(0.8f, 0.79f) - lineToRelative(-0.8f, 0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.4f) - lineToRelative(0.79f, -0.79f) - lineToRelative(0.8f, 0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, -1.42f) - lineToRelative(-0.79f, -0.79f) - lineToRelative(0.8f, -0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, -1.4f) - lineToRelative(-0.79f, 0.79f) - lineToRelative(-0.8f, -0.8f) - close() - } - } - return _multiplier2X!! - } - -private var _multiplier2X: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Multiplier5X.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Multiplier5X.kt deleted file mode 100644 index 5a7a8e26..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Multiplier5X.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Multiplier5X: ImageVector - get() { - if (_multiplier5X != null) { - return _multiplier5X!! - } - _multiplier5X = fluentIcon(name = "Filled.Multiplier5X") { - fluentPath { - moveTo(7.01f, 7.86f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 8.0f, 7.0f) - horizontalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(8.87f, 9.0f) - lineToRelative(-0.19f, 1.3f) - lineToRelative(0.35f, -0.05f) - arcToRelative(3.65f, 3.65f, 0.0f, true, true, 0.55f, 7.25f) - arcToRelative(3.7f, 3.7f, 0.0f, false, true, -2.73f, -1.2f) - lineToRelative(-0.34f, -0.38f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.48f, -1.34f) - lineToRelative(0.34f, 0.37f) - curveToRelative(0.31f, 0.35f, 0.77f, 0.55f, 1.25f, 0.55f) - arcToRelative(1.65f, 1.65f, 0.0f, true, false, -0.24f, -3.28f) - lineToRelative(-1.68f, 0.27f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.15f, -1.13f) - lineToRelative(0.5f, -3.5f) - close() - moveTo(14.29f, 12.29f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 0.0f) - lineToRelative(0.79f, 0.8f) - lineToRelative(0.8f, -0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.42f) - lineToRelative(-0.79f, 0.79f) - lineToRelative(0.8f, 0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 1.4f) - lineToRelative(-0.79f, -0.79f) - lineToRelative(-0.8f, 0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.42f) - lineToRelative(0.79f, -0.79f) - lineToRelative(-0.8f, -0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) - close() - moveTo(4.75f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - } - } - return _multiplier5X!! - } - -private var _multiplier5X: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MultiselectLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MultiselectLtr.kt deleted file mode 100644 index 398ed977..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MultiselectLtr.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MultiselectLtr: ImageVector - get() { - if (_multiselectLtr != null) { - return _multiselectLtr!! - } - _multiselectLtr = fluentIcon(name = "Filled.MultiselectLtr") { - fluentPath { - moveTo(6.7f, 3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) - lineTo(4.0f, 4.58f) - lineToRelative(-0.3f, -0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) - lineToRelative(1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) - close() - moveTo(10.0f, 17.0f) - horizontalLineToRelative(11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 1.99f) - lineTo(10.0f, 18.99f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 9.88f, 17.0f) - lineTo(10.0f, 17.0f) - close() - moveTo(10.0f, 11.0f) - horizontalLineToRelative(11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(10.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(10.0f, 11.0f) - close() - moveTo(10.0f, 5.0f) - horizontalLineToRelative(11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(10.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(10.0f, 5.0f) - close() - moveTo(5.3f, 16.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.4f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) - lineToRelative(-1.0f, -1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, -1.4f) - lineToRelative(0.3f, 0.29f) - lineToRelative(1.3f, -1.3f) - close() - } - } - return _multiselectLtr!! - } - -private var _multiselectLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MultiselectRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MultiselectRtl.kt deleted file mode 100644 index 3a43d653..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MultiselectRtl.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MultiselectRtl: ImageVector - get() { - if (_multiselectRtl != null) { - return _multiselectRtl!! - } - _multiselectRtl = fluentIcon(name = "Filled.MultiselectRtl") { - fluentPath { - moveTo(21.7f, 3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) - lineTo(19.0f, 4.58f) - lineToRelative(-0.3f, -0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.4f, 1.42f) - lineToRelative(1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) - close() - moveTo(3.0f, 17.0f) - horizontalLineToRelative(11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 1.99f) - lineTo(3.0f, 18.99f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 2.88f, 17.0f) - lineTo(3.0f, 17.0f) - close() - moveTo(3.0f, 11.0f) - horizontalLineToRelative(11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(3.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(3.0f, 11.0f) - close() - moveTo(3.0f, 5.0f) - horizontalLineToRelative(11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(3.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(3.0f, 5.0f) - close() - moveTo(20.3f, 16.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.4f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) - lineToRelative(-1.0f, -1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, -1.4f) - lineToRelative(0.3f, 0.29f) - lineToRelative(1.3f, -1.3f) - close() - } - } - return _multiselectRtl!! - } - -private var _multiselectRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MusicNote1.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MusicNote1.kt deleted file mode 100644 index 510f851f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MusicNote1.kt +++ /dev/null @@ -1,33 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MusicNote1: ImageVector - get() { - if (_musicNote1 != null) { - return _musicNote1!! - } - _musicNote1 = fluentIcon(name = "Filled.MusicNote1") { - fluentPath { - moveTo(11.51f, 2.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.01f, 0.7f) - verticalLineToRelative(12.13f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 1.5f, 3.37f) - verticalLineTo(8.83f) - lineToRelative(6.99f, 2.62f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.01f, -0.7f) - verticalLineTo(7.48f) - curveToRelative(0.0f, -1.35f, -0.84f, -2.56f, -2.1f, -3.04f) - lineToRelative(-6.39f, -2.4f) - close() - } - } - return _musicNote1!! - } - -private var _musicNote1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MusicNote2.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MusicNote2.kt deleted file mode 100644 index cbf08bb5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MusicNote2.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MusicNote2: ImageVector - get() { - if (_musicNote2 != null) { - return _musicNote2!! - } - _musicNote2 = fluentIcon(name = "Filled.MusicNote2") { - fluentPath { - moveTo(20.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, -0.72f) - lineToRelative(-10.0f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.53f, 0.72f) - verticalLineToRelative(9.88f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 1.5f, 2.62f) - verticalLineToRelative(-7.94f) - lineToRelative(8.5f, -2.55f) - verticalLineToRelative(5.87f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 1.5f, 2.62f) - verticalLineTo(2.75f) - close() - } - } - return _musicNote2!! - } - -private var _musicNote2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MusicNoteOff1.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MusicNoteOff1.kt deleted file mode 100644 index 3012911d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MusicNoteOff1.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MusicNoteOff1: ImageVector - get() { - if (_musicNoteOff1 != null) { - return _musicNoteOff1!! - } - _musicNoteOff1 = fluentIcon(name = "Filled.MusicNoteOff1") { - fluentPath { - moveToRelative(12.0f, 13.06f) - lineToRelative(8.72f, 8.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(8.28f, 8.28f) - verticalLineToRelative(3.32f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 1.5f, 3.37f) - verticalLineToRelative(-5.19f) - close() - moveTo(18.99f, 11.46f) - lineTo(12.02f, 8.84f) - lineTo(10.5f, 7.32f) - lineTo(10.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.01f, -0.7f) - lineToRelative(6.38f, 2.39f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 20.0f, 7.48f) - verticalLineToRelative(3.27f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.01f, 0.7f) - close() - } - } - return _musicNoteOff1!! - } - -private var _musicNoteOff1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MusicNoteOff2.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MusicNoteOff2.kt deleted file mode 100644 index 3bed14e5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MusicNoteOff2.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MusicNoteOff2: ImageVector - get() { - if (_musicNoteOff2 != null) { - return _musicNoteOff2!! - } - _musicNoteOff2 = fluentIcon(name = "Filled.MusicNoteOff2") { - fluentPath { - moveTo(8.5f, 9.56f) - verticalLineToRelative(6.07f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 1.5f, 2.62f) - verticalLineToRelative(-7.19f) - lineToRelative(3.55f, 3.55f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 4.84f, 4.84f) - lineToRelative(2.33f, 2.33f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(8.5f, 9.56f) - close() - moveTo(16.5f, 13.0f) - lineTo(16.2f, 13.01f) - lineTo(19.99f, 16.81f) - arcToRelative(3.54f, 3.54f, 0.0f, false, false, 0.01f, -0.56f) - lineTo(20.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, -0.72f) - lineToRelative(-10.0f, 3.0f) - curveToRelative(-0.2f, 0.06f, -0.35f, 0.2f, -0.44f, 0.37f) - lineToRelative(4.1f, 4.1f) - lineToRelative(5.81f, -1.74f) - verticalLineToRelative(5.87f) - arcToRelative(3.48f, 3.48f, 0.0f, false, false, -2.0f, -0.63f) - close() - } - } - return _musicNoteOff2!! - } - -private var _musicNoteOff2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MyLocation.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MyLocation.kt deleted file mode 100644 index ae1ab739..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/MyLocation.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.MyLocation: ImageVector - get() { - if (_myLocation != null) { - return _myLocation!! - } - _myLocation = fluentIcon(name = "Filled.MyLocation") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(13.0f, 4.31f) - arcToRelative(7.75f, 7.75f, 0.0f, false, true, 6.69f, 6.7f) - lineTo(21.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(19.69f, 13.0f) - arcTo(7.75f, 7.75f, 0.0f, false, true, 13.0f, 19.69f) - lineTo(13.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(11.0f, 19.69f) - arcTo(7.75f, 7.75f, 0.0f, false, true, 4.31f, 13.0f) - lineTo(3.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(4.31f, 11.0f) - arcToRelative(7.75f, 7.75f, 0.0f, false, true, 6.7f, -6.69f) - lineTo(11.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(12.0f, 6.25f) - arcToRelative(5.75f, 5.75f, 0.0f, true, false, 0.0f, 11.5f) - arcToRelative(5.75f, 5.75f, 0.0f, false, false, 0.0f, -11.5f) - close() - moveTo(12.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, 0.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, -8.0f) - close() - } - } - return _myLocation!! - } - -private var _myLocation: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NavigationUnread.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NavigationUnread.kt deleted file mode 100644 index dbec13fd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NavigationUnread.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.NavigationUnread: ImageVector - get() { - if (_navigationUnread != null) { - return _navigationUnread!! - } - _navigationUnread = fluentIcon(name = "Filled.NavigationUnread") { - fluentPath { - moveTo(19.25f, 8.5f) - arcToRelative(2.75f, 2.75f, 0.0f, true, false, 0.0f, -5.5f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 0.0f, 5.5f) - close() - moveTo(15.71f, 7.0f) - arcToRelative(3.74f, 3.74f, 0.0f, false, true, -0.14f, -2.0f) - horizontalLineTo(2.88f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 7.0f) - horizontalLineToRelative(12.71f) - close() - moveTo(21.0f, 17.0f) - horizontalLineTo(2.88f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 19.0f) - horizontalLineToRelative(18.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, -2.0f) - close() - moveTo(3.0f, 11.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - horizontalLineTo(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - horizontalLineTo(3.0f) - close() - } - } - return _navigationUnread!! - } - -private var _navigationUnread: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NetworkCheck.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NetworkCheck.kt deleted file mode 100644 index d07d145e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NetworkCheck.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.NetworkCheck: ImageVector - get() { - if (_networkCheck != null) { - return _networkCheck!! - } - _networkCheck = fluentIcon(name = "Filled.NetworkCheck") { - fluentPath { - moveToRelative(10.05f, 15.42f) - lineToRelative(6.26f, -8.48f) - arcToRelative(0.7f, 0.7f, 0.0f, false, true, 1.23f, 0.57f) - lineToRelative(-0.03f, 0.1f) - lineToRelative(-3.87f, 9.8f) - arcToRelative(2.07f, 2.07f, 0.0f, true, true, -3.74f, -1.76f) - lineToRelative(0.07f, -0.12f) - lineToRelative(0.08f, -0.11f) - lineToRelative(6.26f, -8.48f) - lineToRelative(-6.26f, 8.48f) - close() - moveTo(12.1f, 10.87f) - lineTo(10.87f, 12.53f) - arcToRelative(3.33f, 3.33f, 0.0f, false, false, -2.29f, 3.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, -0.07f) - arcToRelative(4.82f, 4.82f, 0.0f, false, true, 5.02f, -4.62f) - close() - moveTo(16.27f, 13.62f) - curveToRelative(0.28f, 0.59f, 0.43f, 1.22f, 0.46f, 1.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.38f, 0.44f) - lineToRelative(0.92f, -2.3f) - close() - moveTo(14.03f, 8.25f) - lineTo(13.07f, 9.56f) - arcToRelative(6.22f, 6.22f, 0.0f, false, false, -7.16f, 4.41f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.44f, -0.4f) - arcToRelative(7.7f, 7.7f, 0.0f, false, true, 9.56f, -5.32f) - close() - moveTo(17.54f, 10.39f) - arcToRelative(7.66f, 7.66f, 0.0f, false, true, 1.8f, 3.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.44f, 0.42f) - arcToRelative(6.23f, 6.23f, 0.0f, false, false, -0.88f, -1.84f) - lineToRelative(-0.1f, -0.14f) - lineToRelative(0.62f, -1.59f) - close() - moveTo(15.98f, 5.85f) - lineTo(15.89f, 5.91f) - curveToRelative(-0.12f, 0.08f, -0.23f, 0.18f, -0.33f, 0.3f) - lineToRelative(-0.1f, 0.11f) - lineToRelative(-0.54f, 0.73f) - arcToRelative(9.14f, 9.14f, 0.0f, false, false, -11.54f, 5.32f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.4f, -0.54f) - arcToRelative(10.64f, 10.64f, 0.0f, false, true, 14.0f, -5.97f) - close() - moveTo(18.61f, 7.41f) - arcToRelative(10.65f, 10.65f, 0.0f, false, true, 3.22f, 4.41f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.4f, 0.55f) - arcToRelative(9.17f, 9.17f, 0.0f, false, false, -2.32f, -3.4f) - lineToRelative(0.38f, -0.97f) - curveToRelative(0.07f, -0.2f, 0.11f, -0.39f, 0.12f, -0.59f) - close() - } - } - return _networkCheck!! - } - -private var _networkCheck: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/New.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/New.kt deleted file mode 100644 index e2891c5c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/New.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.New: ImageVector - get() { - if (_new != null) { - return _new!! - } - _new = fluentIcon(name = "Filled.New") { - fluentPath { - moveTo(18.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineTo(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(4.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineTo(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(7.7f, 6.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.4f) - lineToRelative(7.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, -1.4f) - lineToRelative(-7.0f, -7.0f) - close() - } - } - return _new!! - } - -private var _new: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/News.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/News.kt deleted file mode 100644 index f9ea9377..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/News.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.News: ImageVector - get() { - if (_news != null) { - return _news!! - } - _news = fluentIcon(name = "Filled.News") { - fluentPath { - moveTo(16.75f, 4.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - lineTo(19.0f, 17.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.09f) - lineTo(20.0f, 7.01f) - curveToRelative(1.07f, 0.12f, 1.92f, 1.0f, 2.0f, 2.08f) - verticalLineToRelative(7.66f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(5.25f, 20.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 16.75f) - lineTo(2.0f, 6.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 4.0f) - horizontalLineToRelative(12.5f) - close() - moveTo(9.25f, 11.0f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.41f, 0.33f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(15.25f, 14.5f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(2.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(8.5f, 12.5f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(2.0f) - close() - moveTo(15.25f, 11.0f) - horizontalLineToRelative(-2.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - lineToRelative(2.5f, -0.01f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(15.25f, 7.5f) - horizontalLineToRelative(-9.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(9.5f) - lineToRelative(0.1f, -0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - } - } - return _news!! - } - -private var _news: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Next.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Next.kt deleted file mode 100644 index c20c3322..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Next.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Next: ImageVector - get() { - if (_next != null) { - return _next!! - } - _next = fluentIcon(name = "Filled.Next") { - fluentPath { - moveTo(3.0f, 4.75f) - curveToRelative(0.0f, -1.4f, 1.58f, -2.24f, 2.74f, -1.44f) - lineToRelative(10.5f, 7.2f) - curveToRelative(1.0f, 0.68f, 1.01f, 2.17f, 0.0f, 2.87f) - lineToRelative(-10.5f, 7.3f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 3.0f, 19.25f) - lineTo(3.0f, 4.75f) - close() - moveTo(21.0f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(21.0f, 3.75f) - close() - } - } - return _next!! - } - -private var _next: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Note.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Note.kt deleted file mode 100644 index 1795e2a1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Note.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Note: ImageVector - get() { - if (_note != null) { - return _note!! - } - _note = fluentIcon(name = "Filled.Note") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - lineTo(21.0f, 13.0f) - horizontalLineToRelative(-4.75f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 13.0f, 16.25f) - lineTo(13.0f, 21.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(20.56f, 14.5f) - lineTo(14.5f, 20.56f) - verticalLineToRelative(-4.31f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(4.31f) - close() - } - } - return _note!! - } - -private var _note: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NoteAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NoteAdd.kt deleted file mode 100644 index d66a47fd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NoteAdd.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.NoteAdd: ImageVector - get() { - if (_noteAdd != null) { - return _noteAdd!! - } - _noteAdd = fluentIcon(name = "Filled.NoteAdd") { - fluentPath { - moveTo(12.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(7.0f, 7.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - lineTo(6.0f, 7.0f) - lineTo(3.5f, 7.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(6.0f, 6.0f) - lineTo(6.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - lineTo(7.0f, 6.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(7.0f, 7.0f) - close() - moveTo(6.5f, 13.0f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, 5.48f, -10.0f) - horizontalLineToRelative(5.77f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - lineTo(21.0f, 13.0f) - horizontalLineToRelative(-4.75f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 13.0f, 16.25f) - lineTo(13.0f, 21.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - verticalLineToRelative(-5.77f) - arcTo(6.47f, 6.47f, 0.0f, false, false, 6.5f, 13.0f) - close() - moveTo(20.56f, 14.5f) - lineTo(14.5f, 20.56f) - verticalLineToRelative(-4.31f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(4.31f) - close() - } - } - return _noteAdd!! - } - -private var _noteAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NoteEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NoteEdit.kt deleted file mode 100644 index 556b3a20..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NoteEdit.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.NoteEdit: ImageVector - get() { - if (_noteEdit != null) { - return _noteEdit!! - } - _noteEdit = fluentIcon(name = "Filled.NoteEdit") { - fluentPath { - moveTo(3.0f, 17.75f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(4.92f) - lineToRelative(0.35f, -1.42f) - curveToRelative(0.16f, -0.65f, 0.5f, -1.24f, 0.97f, -1.72f) - lineToRelative(5.9f, -5.9f) - arcToRelative(3.28f, 3.28f, 0.0f, false, true, 2.61f, -0.95f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(11.0f, 3.0f) - verticalLineToRelative(4.75f) - curveTo(11.0f, 9.55f, 9.54f, 11.0f, 7.75f, 11.0f) - lineTo(3.0f, 11.0f) - verticalLineToRelative(6.75f) - close() - moveTo(9.5f, 3.44f) - lineTo(3.44f, 9.5f) - horizontalLineToRelative(4.31f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(9.5f, 3.44f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _noteEdit!! - } - -private var _noteEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Notebook.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Notebook.kt deleted file mode 100644 index bc1a9695..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Notebook.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Notebook: ImageVector - get() { - if (_notebook != null) { - return _notebook!! - } - _notebook = fluentIcon(name = "Filled.Notebook") { - fluentPath { - moveTo(16.75f, 2.0f) - curveTo(17.99f, 2.0f, 19.0f, 3.0f, 19.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(10.5f) - close() - moveTo(20.0f, 15.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 18.0f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(0.75f) - lineTo(20.0f, 15.0f) - close() - moveTo(20.0f, 11.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 14.0f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(0.75f) - lineTo(20.0f, 11.0f) - close() - moveTo(20.0f, 7.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 10.0f) - lineTo(20.0f, 7.0f) - horizontalLineToRelative(0.75f) - lineTo(20.0f, 7.0f) - close() - moveTo(14.75f, 5.5f) - horizontalLineToRelative(-6.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - verticalLineToRelative(1.6f) - curveToRelative(0.0f, 0.38f, 0.27f, 0.7f, 0.64f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(6.5f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.65f) - verticalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - } - } - return _notebook!! - } - -private var _notebook: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NotebookAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NotebookAdd.kt deleted file mode 100644 index 52724de3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NotebookAdd.kt +++ /dev/null @@ -1,99 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.NotebookAdd: ImageVector - get() { - if (_notebookAdd != null) { - return _notebookAdd!! - } - _notebookAdd = fluentIcon(name = "Filled.NotebookAdd") { - fluentPath { - moveTo(16.75f, 2.0f) - curveTo(17.99f, 2.0f, 19.0f, 3.0f, 19.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-5.56f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) - lineTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(10.5f) - close() - moveTo(14.75f, 5.5f) - horizontalLineToRelative(-6.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - verticalLineToRelative(1.6f) - curveToRelative(0.0f, 0.38f, 0.27f, 0.7f, 0.64f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(6.5f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.65f) - verticalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - } - fluentPath { - moveTo(20.0f, 15.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineTo(20.0f) - verticalLineToRelative(-3.0f) - close() - } - fluentPath { - moveTo(20.0f, 11.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineTo(20.0f) - verticalLineToRelative(-3.0f) - close() - } - fluentPath { - moveTo(20.0f, 7.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineTo(20.0f) - verticalLineTo(7.0f) - close() - } - fluentPath { - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(7.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - verticalLineTo(18.0f) - horizontalLineTo(3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineTo(6.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - verticalLineTo(17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineTo(7.0f) - close() - } - } - return _notebookAdd!! - } - -private var _notebookAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NotebookError.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NotebookError.kt deleted file mode 100644 index 0568cf0a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NotebookError.kt +++ /dev/null @@ -1,88 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.NotebookError: ImageVector - get() { - if (_notebookError != null) { - return _notebookError!! - } - _notebookError = fluentIcon(name = "Filled.NotebookError") { - fluentPath { - moveTo(6.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(16.75f, 2.0f) - curveTo(17.99f, 2.0f, 19.0f, 3.0f, 19.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-5.56f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) - lineTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(10.5f) - close() - moveTo(6.5f, 19.88f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, 1.25f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, -1.25f) - close() - moveTo(6.5f, 14.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.41f) - verticalLineToRelative(4.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-4.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.4f) - close() - moveTo(20.75f, 15.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 18.0f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(0.75f) - close() - moveTo(20.75f, 11.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 14.0f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(0.75f) - close() - moveTo(20.75f, 7.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 10.0f) - lineTo(20.0f, 7.0f) - horizontalLineToRelative(0.75f) - close() - moveTo(14.75f, 5.5f) - horizontalLineToRelative(-6.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.75f, 0.65f) - verticalLineToRelative(1.6f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(6.5f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - verticalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.74f, -0.75f) - close() - } - } - return _notebookError!! - } - -private var _notebookError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NotebookLightning.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NotebookLightning.kt deleted file mode 100644 index 4f1dab96..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NotebookLightning.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.NotebookLightning: ImageVector - get() { - if (_notebookLightning != null) { - return _notebookLightning!! - } - _notebookLightning = fluentIcon(name = "Filled.NotebookLightning") { - fluentPath { - moveTo(6.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(16.75f, 2.0f) - curveTo(17.99f, 2.0f, 19.0f, 3.0f, 19.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-5.56f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) - lineTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(10.5f) - close() - moveTo(7.5f, 14.0f) - lineTo(6.0f, 14.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.47f, 0.34f) - lineToRelative(-1.0f, 3.0f) - arcTo(0.5f, 0.5f, 0.0f, false, false, 5.0f, 18.0f) - horizontalLineToRelative(0.8f) - lineToRelative(-0.77f, 2.34f) - curveToRelative(-0.2f, 0.56f, 0.58f, 0.92f, 0.9f, 0.42f) - lineToRelative(2.5f, -4.0f) - arcTo(0.5f, 0.5f, 0.0f, false, false, 8.0f, 16.0f) - horizontalLineToRelative(-0.45f) - lineToRelative(0.43f, -1.35f) - arcTo(0.5f, 0.5f, 0.0f, false, false, 7.5f, 14.0f) - close() - moveTo(20.75f, 15.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 18.0f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(0.75f) - close() - moveTo(20.75f, 11.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 14.0f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(0.75f) - close() - moveTo(20.75f, 7.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 10.0f) - lineTo(20.0f, 7.0f) - horizontalLineToRelative(0.75f) - close() - moveTo(14.75f, 5.5f) - horizontalLineToRelative(-6.5f) - curveToRelative(-0.38f, 0.0f, -0.69f, 0.28f, -0.74f, 0.65f) - verticalLineToRelative(1.6f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.64f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(6.5f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - verticalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - } - } - return _notebookLightning!! - } - -private var _notebookLightning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NotebookQuestionMark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NotebookQuestionMark.kt deleted file mode 100644 index 198d9e92..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NotebookQuestionMark.kt +++ /dev/null @@ -1,97 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.NotebookQuestionMark: ImageVector - get() { - if (_notebookQuestionMark != null) { - return _notebookQuestionMark!! - } - _notebookQuestionMark = fluentIcon(name = "Filled.NotebookQuestionMark") { - fluentPath { - moveTo(6.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(16.75f, 2.0f) - curveTo(17.99f, 2.0f, 19.0f, 3.0f, 19.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-5.56f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) - lineTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(10.5f) - close() - moveTo(6.5f, 19.88f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, 1.25f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, -1.25f) - close() - moveTo(6.5f, 14.0f) - curveToRelative(-1.05f, 0.0f, -1.86f, 0.82f, -1.85f, 1.96f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, -0.01f) - curveToRelative(0.0f, -0.58f, 0.36f, -0.95f, 0.85f, -0.95f) - curveToRelative(0.47f, 0.0f, 0.85f, 0.4f, 0.85f, 0.95f) - curveToRelative(0.0f, 0.23f, -0.07f, 0.4f, -0.31f, 0.68f) - lineToRelative(-0.1f, 0.11f) - lineToRelative(-0.27f, 0.3f) - curveToRelative(-0.48f, 0.53f, -0.67f, 0.89f, -0.67f, 1.46f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - curveToRelative(0.0f, -0.23f, 0.08f, -0.4f, 0.32f, -0.7f) - lineToRelative(0.1f, -0.1f) - lineToRelative(0.27f, -0.3f) - curveToRelative(0.48f, -0.53f, 0.66f, -0.88f, 0.66f, -1.45f) - curveToRelative(0.0f, -1.1f, -0.82f, -1.95f, -1.85f, -1.95f) - close() - moveTo(20.75f, 15.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 18.0f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(0.75f) - close() - moveTo(20.75f, 11.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 14.0f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(0.75f) - close() - moveTo(20.75f, 7.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 10.0f) - lineTo(20.0f, 7.0f) - horizontalLineToRelative(0.75f) - close() - moveTo(14.75f, 5.5f) - horizontalLineToRelative(-6.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - verticalLineToRelative(1.6f) - curveToRelative(0.0f, 0.38f, 0.27f, 0.7f, 0.64f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(6.5f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - verticalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.74f, -0.75f) - close() - } - } - return _notebookQuestionMark!! - } - -private var _notebookQuestionMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NotebookSection.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NotebookSection.kt deleted file mode 100644 index 08728ef7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NotebookSection.kt +++ /dev/null @@ -1,39 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.NotebookSection: ImageVector - get() { - if (_notebookSection != null) { - return _notebookSection!! - } - _notebookSection = fluentIcon(name = "Filled.NotebookSection") { - fluentPath { - moveTo(15.65f, 2.0f) - horizontalLineToRelative(0.1f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineTo(20.0f) - horizontalLineTo(9.25f) - curveTo(8.01f, 20.0f, 7.0f, 18.99f, 7.0f, 17.75f) - verticalLineTo(6.25f) - curveTo(7.0f, 5.01f, 8.0f, 4.0f, 9.25f, 4.0f) - horizontalLineTo(15.0f) - verticalLineTo(2.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(-0.1f) - close() - } - } - return _notebookSection!! - } - -private var _notebookSection: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NotebookSectionArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NotebookSectionArrowRight.kt deleted file mode 100644 index ea83b74e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NotebookSectionArrowRight.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.NotebookSectionArrowRight: ImageVector - get() { - if (_notebookSectionArrowRight != null) { - return _notebookSectionArrowRight!! - } - _notebookSectionArrowRight = fluentIcon(name = "Filled.NotebookSectionArrowRight") { - fluentPath { - moveTo(15.65f, 2.0f) - horizontalLineToRelative(0.1f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(8.33f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -5.0f, 8.92f) - horizontalLineTo(9.25f) - curveTo(8.01f, 20.0f, 7.0f, 18.99f, 7.0f, 17.75f) - verticalLineTo(6.25f) - curveTo(7.0f, 5.01f, 8.0f, 4.0f, 9.25f, 4.0f) - horizontalLineTo(15.0f) - verticalLineTo(2.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - close() - } - fluentPath { - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(19.29f, 17.0f) - lineTo(14.5f, 17.0f) - close() - } - } - return _notebookSectionArrowRight!! - } - -private var _notebookSectionArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NotebookSubsection.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NotebookSubsection.kt deleted file mode 100644 index 9b0667a4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NotebookSubsection.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.NotebookSubsection: ImageVector - get() { - if (_notebookSubsection != null) { - return _notebookSubsection!! - } - _notebookSubsection = fluentIcon(name = "Filled.NotebookSubsection") { - fluentPath { - moveTo(9.0f, 2.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.5f, 4.5f) - verticalLineToRelative(9.4f) - curveToRelative(0.0f, 0.98f, 0.63f, 1.81f, 1.5f, 2.12f) - verticalLineTo(6.5f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(5.0f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 11.88f, 2.0f) - horizontalLineTo(9.0f) - close() - } - fluentPath { - moveTo(7.0f, 6.75f) - curveTo(7.0f, 5.51f, 8.0f, 4.5f, 9.25f, 4.5f) - horizontalLineTo(15.0f) - verticalLineTo(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineTo(20.0f) - horizontalLineTo(9.25f) - curveTo(8.01f, 20.0f, 7.0f, 19.0f, 7.0f, 17.75f) - verticalLineToRelative(-11.0f) - close() - } - } - return _notebookSubsection!! - } - -private var _notebookSubsection: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NotebookSync.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NotebookSync.kt deleted file mode 100644 index a6dae739..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NotebookSync.kt +++ /dev/null @@ -1,102 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.NotebookSync: ImageVector - get() { - if (_notebookSync != null) { - return _notebookSync!! - } - _notebookSync = fluentIcon(name = "Filled.NotebookSync") { - fluentPath { - moveTo(16.75f, 2.0f) - curveTo(17.99f, 2.0f, 19.0f, 3.0f, 19.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-5.56f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) - lineTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(10.5f) - close() - moveTo(14.75f, 5.5f) - horizontalLineToRelative(-6.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - verticalLineToRelative(1.6f) - curveToRelative(0.0f, 0.38f, 0.27f, 0.7f, 0.64f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(6.5f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.65f) - verticalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(20.0f, 15.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 18.0f) - verticalLineToRelative(-3.0f) - close() - moveTo(20.0f, 11.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 14.0f) - verticalLineToRelative(-3.0f) - close() - moveTo(20.0f, 7.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 10.0f) - lineTo(20.0f, 7.0f) - close() - moveTo(1.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) - close() - moveTo(9.5f, 14.0f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - verticalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -0.8f, -0.59f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) - verticalLineToRelative(-0.55f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - close() - moveTo(4.0f, 19.95f) - verticalLineToRelative(0.55f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.77f, 0.65f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) - close() - } - } - return _notebookSync!! - } - -private var _notebookSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Notepad.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Notepad.kt deleted file mode 100644 index bfcc4163..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Notepad.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Notepad: ImageVector - get() { - if (_notepad != null) { - return _notepad!! - } - _notepad = fluentIcon(name = "Filled.Notepad") { - fluentPath { - moveTo(16.25f, 2.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(0.75f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - lineTo(20.0f, 16.0f) - horizontalLineToRelative(-3.91f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 14.0f, 18.1f) - lineTo(14.0f, 22.0f) - lineTo(5.75f, 22.0f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-14.0f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(0.75f) - verticalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.85f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.85f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(19.55f, 17.5f) - lineTo(15.49f, 21.57f) - verticalLineToRelative(-3.32f) - lineToRelative(0.01f, -0.1f) - curveToRelative(0.05f, -0.33f, 0.31f, -0.6f, 0.64f, -0.64f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(3.32f) - close() - moveTo(11.25f, 16.0f) - horizontalLineToRelative(-4.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(11.35f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(16.25f, 12.0f) - horizontalLineToRelative(-9.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(9.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(16.25f, 8.0f) - horizontalLineToRelative(-9.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(9.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - } - } - return _notepad!! - } - -private var _notepad: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NotepadPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NotepadPerson.kt deleted file mode 100644 index 40688725..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NotepadPerson.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.NotepadPerson: ImageVector - get() { - if (_notepadPerson != null) { - return _notepadPerson!! - } - _notepadPerson = fluentIcon(name = "Filled.NotepadPerson") { - fluentPath { - moveTo(16.25f, 2.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(0.75f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(5.59f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 16.05f, 17.0f) - horizontalLineToRelative(-0.28f) - arcTo(2.77f, 2.77f, 0.0f, false, false, 13.0f, 19.77f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 0.75f, 0.21f, 1.49f, 0.67f, 2.13f) - lineTo(5.75f, 22.0f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-14.0f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(0.75f) - verticalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.85f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.85f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(11.25f, 16.0f) - horizontalLineToRelative(-4.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(11.35f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(16.25f, 8.0f) - horizontalLineToRelative(-9.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(9.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(6.5f, 12.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(21.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(23.0f, 19.88f) - curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) - reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _notepadPerson!! - } - -private var _notepadPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NumberCircle1.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NumberCircle1.kt deleted file mode 100644 index de3fcfeb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NumberCircle1.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.NumberCircle1: ImageVector - get() { - if (_numberCircle1 != null) { - return _numberCircle1!! - } - _numberCircle1 = fluentIcon(name = "Filled.NumberCircle1") { - fluentPath { - moveTo(12.0f, 22.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) - close() - moveTo(13.5f, 7.25f) - verticalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(12.0f, 10.1f) - arcToRelative(4.99f, 4.99f, 0.0f, false, true, -2.01f, 1.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.48f, -1.42f) - curveToRelative(0.57f, -0.2f, 1.15f, -0.64f, 1.63f, -1.23f) - curveToRelative(0.47f, -0.59f, 0.78f, -1.23f, 0.87f, -1.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.49f, 0.14f) - close() - } - } - return _numberCircle1!! - } - -private var _numberCircle1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NumberRow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NumberRow.kt deleted file mode 100644 index a7ffcd84..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NumberRow.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.NumberRow: ImageVector - get() { - if (_numberRow != null) { - return _numberRow!! - } - _numberRow = fluentIcon(name = "Filled.NumberRow") { - fluentPath { - moveTo(4.75f, 4.0f) - horizontalLineToRelative(4.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.75f) - verticalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 8.75f, 20.0f) - horizontalLineToRelative(-4.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) - lineTo(2.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) - close() - moveTo(6.0f, 9.0f) - verticalLineToRelative(6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(7.5f, 9.0f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 6.0f, 9.0f) - close() - moveTo(15.25f, 4.0f) - horizontalLineToRelative(4.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) - verticalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) - horizontalLineToRelative(-4.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, -2.75f) - lineTo(12.5f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 15.25f, 4.0f) - close() - moveTo(17.5f, 9.75f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(17.0f, 14.25f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(1.25f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(19.0f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.25f) - close() - } - } - return _numberRow!! - } - -private var _numberRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NumberSymbol.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NumberSymbol.kt deleted file mode 100644 index afc2fea9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NumberSymbol.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.NumberSymbol: ImageVector - get() { - if (_numberSymbol != null) { - return _numberSymbol!! - } - _numberSymbol = fluentIcon(name = "Filled.NumberSymbol") { - fluentPath { - moveTo(10.98f, 3.16f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.97f, -0.32f) - lineTo(8.15f, 8.0f) - horizontalLineTo(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(3.82f) - lineToRelative(-0.67f, 4.0f) - horizontalLineTo(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(3.82f) - lineTo(6.0f, 20.84f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.97f, 0.32f) - lineTo(8.84f, 16.0f) - horizontalLineToRelative(4.98f) - lineToRelative(-0.8f, 4.84f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.97f, 0.32f) - lineToRelative(0.86f, -5.17f) - horizontalLineTo(20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - horizontalLineToRelative(-3.82f) - lineToRelative(0.67f, -4.0f) - horizontalLineTo(21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - horizontalLineToRelative(-3.82f) - lineToRelative(0.8f, -4.83f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.97f, -0.32f) - lineToRelative(-0.86f, 5.15f) - horizontalLineToRelative(-4.97f) - lineToRelative(0.8f, -4.83f) - close() - moveTo(9.85f, 10.0f) - horizontalLineToRelative(4.97f) - lineToRelative(-0.67f, 4.0f) - horizontalLineTo(9.18f) - lineToRelative(0.67f, -4.0f) - close() - } - } - return _numberSymbol!! - } - -private var _numberSymbol: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NumberSymbolDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NumberSymbolDismiss.kt deleted file mode 100644 index 6b664318..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NumberSymbolDismiss.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.NumberSymbolDismiss: ImageVector - get() { - if (_numberSymbolDismiss != null) { - return _numberSymbolDismiss!! - } - _numberSymbolDismiss = fluentIcon(name = "Filled.NumberSymbolDismiss") { - fluentPath { - moveTo(10.98f, 3.16f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.97f, -0.32f) - lineTo(8.15f, 8.0f) - lineTo(4.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(3.82f) - lineToRelative(-0.67f, 4.0f) - lineTo(3.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(3.82f) - lineTo(6.0f, 20.84f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.97f, 0.32f) - lineTo(8.84f, 16.0f) - horizontalLineToRelative(2.33f) - curveToRelative(0.18f, -0.72f, 0.47f, -1.4f, 0.85f, -2.0f) - lineTo(9.18f, 14.0f) - lineToRelative(0.67f, -4.0f) - horizontalLineToRelative(4.97f) - lineToRelative(-0.29f, 1.71f) - arcToRelative(6.46f, 6.46f, 0.0f, false, true, 2.14f, -0.66f) - lineToRelative(0.18f, -1.06f) - lineTo(21.0f, 9.99f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - horizontalLineToRelative(-3.82f) - lineToRelative(0.8f, -4.83f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.97f, -0.32f) - lineToRelative(-0.86f, 5.15f) - horizontalLineToRelative(-4.97f) - lineToRelative(0.8f, -4.83f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-1.64f, -1.65f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.65f, 1.64f) - lineToRelative(-1.65f, -1.64f) - close() - } - } - return _numberSymbolDismiss!! - } - -private var _numberSymbolDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NumberSymbolSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NumberSymbolSquare.kt deleted file mode 100644 index 538d079f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/NumberSymbolSquare.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.NumberSymbolSquare: ImageVector - get() { - if (_numberSymbolSquare != null) { - return _numberSymbolSquare!! - } - _numberSymbolSquare = fluentIcon(name = "Filled.NumberSymbolSquare") { - fluentPath { - moveToRelative(13.44f, 11.0f) - lineToRelative(-0.4f, 2.0f) - horizontalLineToRelative(-2.47f) - lineToRelative(0.4f, -2.0f) - horizontalLineToRelative(2.47f) - close() - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(10.9f, 7.51f) - curveToRelative(0.4f, 0.09f, 0.67f, 0.48f, 0.59f, 0.89f) - lineToRelative(-0.22f, 1.1f) - horizontalLineToRelative(2.47f) - lineToRelative(0.28f, -1.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.47f, 0.3f) - lineToRelative(-0.22f, 1.1f) - horizontalLineToRelative(0.98f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.28f) - lineToRelative(-0.4f, 2.0f) - horizontalLineToRelative(1.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.48f) - lineToRelative(-0.28f, 1.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.48f, -0.3f) - lineToRelative(0.23f, -1.1f) - horizontalLineToRelative(-2.47f) - lineToRelative(-0.28f, 1.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.48f, -0.3f) - lineToRelative(0.23f, -1.1f) - horizontalLineToRelative(-0.99f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.29f) - lineToRelative(0.4f, -2.0f) - lineTo(8.25f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.49f) - lineToRelative(0.28f, -1.4f) - curveToRelative(0.08f, -0.4f, 0.47f, -0.67f, 0.88f, -0.59f) - close() - } - } - return _numberSymbolSquare!! - } - -private var _numberSymbolSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/OpenFolder.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/OpenFolder.kt deleted file mode 100644 index 30e25043..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/OpenFolder.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.OpenFolder: ImageVector - get() { - if (_openFolder != null) { - return _openFolder!! - } - _openFolder = fluentIcon(name = "Filled.OpenFolder") { - fluentPath { - moveTo(6.75f, 3.0f) - horizontalLineToRelative(10.5f) - curveToRelative(2.0f, 0.0f, 3.64f, 1.57f, 3.75f, 3.55f) - verticalLineToRelative(4.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, 0.1f) - verticalLineToRelative(-4.6f) - curveToRelative(0.0f, -1.19f, -0.93f, -2.16f, -2.1f, -2.24f) - horizontalLineToRelative(-0.16f) - lineTo(6.75f, 4.5f) - curveToRelative(-1.18f, 0.0f, -2.15f, 0.9f, -2.25f, 2.06f) - verticalLineToRelative(10.69f) - curveToRelative(0.0f, 1.2f, 0.93f, 2.17f, 2.1f, 2.25f) - horizontalLineToRelative(4.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-4.6f) - curveToRelative(-2.0f, 0.0f, -3.64f, -1.57f, -3.75f, -3.55f) - lineTo(3.0f, 6.55f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 6.55f, 3.0f) - lineToRelative(0.2f, -0.01f) - close() - moveTo(9.95f, 9.0f) - lineTo(16.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.11f, 2.0f) - horizontalLineToRelative(-3.69f) - lineToRelative(6.54f, 6.54f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.32f) - lineToRelative(-0.08f, 0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.08f) - lineToRelative(-0.1f, -0.08f) - lineTo(11.0f, 12.4f) - verticalLineToRelative(3.6f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 0.99f) - lineTo(10.0f, 16.99f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - verticalLineToRelative(-6.2f) - lineToRelative(0.02f, -0.1f) - verticalLineToRelative(-0.05f) - lineToRelative(0.03f, -0.07f) - lineToRelative(0.03f, -0.1f) - lineToRelative(0.07f, -0.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.14f, -0.19f) - lineToRelative(0.11f, -0.1f) - lineToRelative(0.12f, -0.07f) - lineToRelative(0.1f, -0.05f) - lineToRelative(0.1f, -0.03f) - lineToRelative(0.1f, -0.02f) - lineToRelative(0.12f, -0.02f) - lineTo(16.0f, 8.99f) - lineTo(9.94f, 8.99f) - close() - } - } - return _openFolder!! - } - -private var _openFolder: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/OpenOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/OpenOff.kt deleted file mode 100644 index c96ec305..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/OpenOff.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.OpenOff: ImageVector - get() { - if (_openOff != null) { - return _openOff!! - } - _openOff = fluentIcon(name = "Filled.OpenOff") { - fluentPath { - moveToRelative(3.28f, 2.22f) - lineToRelative(18.5f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineToRelative(-1.08f, -1.08f) - curveToRelative(-0.55f, 0.35f, -1.2f, 0.55f, -1.89f, 0.55f) - lineTo(6.25f, 21.25f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.5f, -3.5f) - lineTo(2.75f, 6.25f) - curveToRelative(0.0f, -0.7f, 0.2f, -1.34f, 0.55f, -1.89f) - lineTo(2.22f, 3.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - close() - moveTo(18.14f, 19.2f) - lineTo(4.8f, 5.86f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -0.05f, 0.39f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(11.5f) - curveToRelative(0.13f, 0.0f, 0.26f, -0.02f, 0.39f, -0.05f) - close() - moveTo(12.9f, 9.72f) - lineToRelative(1.38f, 1.38f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.18f, -0.14f) - lineToRelative(4.79f, -4.8f) - verticalLineToRelative(4.09f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - verticalLineToRelative(-6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineToRelative(-6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(4.09f) - lineToRelative(-4.8f, 4.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.14f, 0.17f) - close() - moveTo(21.24f, 18.05f) - lineTo(19.25f, 16.07f) - verticalLineToRelative(-2.32f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(4.0f) - lineToRelative(-0.01f, 0.3f) - close() - moveTo(5.94f, 2.76f) - lineToRelative(2.0f, 1.99f) - horizontalLineToRelative(2.31f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-4.0f) - lineToRelative(-0.3f, 0.01f) - close() - } - } - return _openOff!! - } - -private var _openOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Organization.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Organization.kt deleted file mode 100644 index 58e2a84e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Organization.kt +++ /dev/null @@ -1,41 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Organization: ImageVector - get() { - if (_organization != null) { - return _organization!! - } - _organization = fluentIcon(name = "Filled.Organization") { - fluentPath { - moveTo(8.0f, 5.75f) - arcToRelative(3.75f, 3.75f, 0.0f, true, true, 4.5f, 3.68f) - verticalLineToRelative(2.07f) - horizontalLineToRelative(3.25f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(0.82f) - arcToRelative(3.75f, 3.75f, 0.0f, true, true, -1.5f, 0.0f) - verticalLineToRelative(-0.82f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.82f) - arcToRelative(3.75f, 3.75f, 0.0f, true, true, -1.5f, 0.0f) - verticalLineToRelative(-0.82f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineTo(11.0f) - verticalLineTo(9.43f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.0f, -3.68f) - close() - } - } - return _organization!! - } - -private var _organization: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Orientation.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Orientation.kt deleted file mode 100644 index f6a61e8d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Orientation.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Orientation: ImageVector - get() { - if (_orientation != null) { - return _orientation!! - } - _orientation = fluentIcon(name = "Filled.Orientation") { - fluentPath { - moveTo(6.75f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.5f) - close() - moveTo(3.5f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.5f) - close() - moveTo(2.0f, 12.9f) - curveToRelative(0.0f, -1.05f, 0.85f, -1.9f, 1.9f, -1.9f) - horizontalLineToRelative(10.2f) - curveToRelative(1.05f, 0.0f, 1.9f, 0.85f, 1.9f, 1.9f) - verticalLineToRelative(5.2f) - arcToRelative(1.9f, 1.9f, 0.0f, false, true, -1.9f, 1.9f) - lineTo(3.9f, 20.0f) - arcTo(1.9f, 1.9f, 0.0f, false, true, 2.0f, 18.1f) - verticalLineToRelative(-5.2f) - close() - moveTo(12.25f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - close() - moveTo(3.75f, 5.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.5f) - curveTo(2.0f, 4.78f, 2.78f, 4.0f, 3.75f, 4.0f) - horizontalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.5f) - close() - moveTo(11.5f, 5.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.5f) - close() - moveTo(17.0f, 16.08f) - curveToRelative(0.0f, 0.48f, 0.42f, 0.87f, 0.89f, 0.74f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 17.5f, 6.1f) - lineToRelative(0.3f, -0.35f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.13f, -0.98f) - lineToRelative(-1.5f, 1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 0.98f) - lineToRelative(1.5f, 1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.14f, -0.98f) - lineToRelative(-0.6f, -0.7f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.37f, 7.79f) - curveToRelative(-0.33f, 0.1f, -0.59f, 0.38f, -0.59f, 0.73f) - close() - } - } - return _orientation!! - } - -private var _orientation: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Oval.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Oval.kt deleted file mode 100644 index 542b941c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Oval.kt +++ /dev/null @@ -1,29 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Oval: ImageVector - get() { - if (_oval != null) { - return _oval!! - } - _oval = fluentIcon(name = "Filled.Oval") { - fluentPath { - moveTo(2.0f, 12.0f) - arcToRelative(8.0f, 8.0f, 0.0f, false, true, 8.0f, -8.0f) - horizontalLineToRelative(4.0f) - arcToRelative(8.0f, 8.0f, 0.0f, true, true, 0.0f, 16.0f) - horizontalLineToRelative(-4.0f) - arcToRelative(8.0f, 8.0f, 0.0f, false, true, -8.0f, -8.0f) - close() - } - } - return _oval!! - } - -private var _oval: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Oven.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Oven.kt deleted file mode 100644 index 62116fa4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Oven.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Oven: ImageVector - get() { - if (_oven != null) { - return _oven!! - } - _oven = fluentIcon(name = "Filled.Oven") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - lineTo(21.0f, 8.5f) - lineTo(3.0f, 8.5f) - lineTo(3.0f, 6.25f) - close() - moveTo(8.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(13.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(17.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(3.0f, 17.75f) - lineTo(3.0f, 10.0f) - horizontalLineToRelative(18.0f) - verticalLineToRelative(7.75f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - close() - moveTo(7.25f, 12.0f) - curveTo(6.56f, 12.0f, 6.0f, 12.56f, 6.0f, 13.25f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(9.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-9.5f) - close() - } - } - return _oven!! - } - -private var _oven: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PaddingDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PaddingDown.kt deleted file mode 100644 index ebf6c57a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PaddingDown.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PaddingDown: ImageVector - get() { - if (_paddingDown != null) { - return _paddingDown!! - } - _paddingDown = fluentIcon(name = "Filled.PaddingDown") { - fluentPath { - moveTo(4.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(5.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - close() - moveTo(4.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(1.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(5.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - close() - moveTo(9.25f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - close() - moveTo(16.25f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - lineTo(19.0f, 22.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-1.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - close() - moveTo(17.71f, 13.7f) - lineTo(12.71f, 18.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 0.0f) - lineToRelative(-5.0f, -5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.42f, -1.4f) - lineTo(11.0f, 15.58f) - lineTo(11.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(9.59f) - lineToRelative(3.3f, -3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.42f) - close() - } - } - return _paddingDown!! - } - -private var _paddingDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PaddingLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PaddingLeft.kt deleted file mode 100644 index effb43a4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PaddingLeft.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PaddingLeft: ImageVector - get() { - if (_paddingLeft != null) { - return _paddingLeft!! - } - _paddingLeft = fluentIcon(name = "Filled.PaddingLeft") { - fluentPath { - moveTo(3.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(1.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - lineTo(4.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - moveTo(3.0f, 9.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - moveTo(3.0f, 16.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - lineTo(2.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-1.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - moveTo(21.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(22.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - moveTo(5.3f, 12.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) - lineToRelative(5.0f, -5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, 1.4f) - lineTo(8.42f, 11.0f) - lineTo(18.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(8.41f, 13.0f) - lineToRelative(3.3f, 3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 1.4f) - lineToRelative(-5.0f, -5.0f) - close() - } - } - return _paddingLeft!! - } - -private var _paddingLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PaddingRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PaddingRight.kt deleted file mode 100644 index c30a57f2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PaddingRight.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PaddingRight: ImageVector - get() { - if (_paddingRight != null) { - return _paddingRight!! - } - _paddingRight = fluentIcon(name = "Filled.PaddingRight") { - fluentPath { - moveTo(3.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(2.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(21.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(1.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(20.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(21.0f, 9.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(21.0f, 16.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - lineTo(22.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-1.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(18.7f, 12.71f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) - lineToRelative(-5.0f, -5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.4f, 1.42f) - lineTo(15.58f, 11.0f) - lineTo(6.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(9.59f) - lineToRelative(-3.3f, 3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.4f) - lineToRelative(5.0f, -5.0f) - close() - } - } - return _paddingRight!! - } - -private var _paddingRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PaddingTop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PaddingTop.kt deleted file mode 100644 index 1ea354c1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PaddingTop.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PaddingTop: ImageVector - get() { - if (_paddingTop != null) { - return _paddingTop!! - } - _paddingTop = fluentIcon(name = "Filled.PaddingTop") { - fluentPath { - moveTo(4.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(1.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - lineTo(5.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(9.25f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(16.25f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - lineTo(19.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-1.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(4.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(5.0f, 22.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(12.7f, 5.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, 1.4f) - lineTo(11.0f, 8.42f) - lineTo(11.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(13.0f, 8.41f) - lineToRelative(3.3f, 3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, -1.42f) - lineToRelative(-5.0f, -5.0f) - close() - } - } - return _paddingTop!! - } - -private var _paddingTop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PageFit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PageFit.kt deleted file mode 100644 index a0132d27..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PageFit.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PageFit: ImageVector - get() { - if (_pageFit != null) { - return _pageFit!! - } - _pageFit = fluentIcon(name = "Filled.PageFit") { - fluentPath { - moveTo(18.25f, 4.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 22.0f, 7.75f) - verticalLineToRelative(8.5f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 18.25f, 20.0f) - lineTo(5.75f, 20.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 2.0f, 16.25f) - verticalLineToRelative(-8.5f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 5.75f, 4.0f) - horizontalLineToRelative(12.5f) - close() - moveTo(18.25f, 13.0f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - lineTo(17.5f, 15.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.41f, 0.5f) - horizontalLineToRelative(-1.34f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - lineTo(17.0f, 17.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -1.85f) - verticalLineToRelative(-1.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(5.75f, 13.0f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - lineTo(5.0f, 15.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.85f, 2.0f) - horizontalLineToRelative(1.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - lineTo(7.0f, 15.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.41f) - verticalLineToRelative(-1.34f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(8.25f, 7.0f) - horizontalLineToRelative(-1.4f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.84f, 1.84f) - lineTo(5.0f, 9.0f) - verticalLineToRelative(1.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(6.5f, 8.91f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.41f, -0.4f) - lineTo(7.0f, 8.5f) - horizontalLineToRelative(1.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(17.0f, 7.0f) - horizontalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - lineTo(17.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.5f, 0.41f) - verticalLineToRelative(1.34f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.1f) - lineTo(19.0f, 9.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.85f, -2.0f) - lineTo(17.0f, 7.0f) - close() - } - } - return _pageFit!! - } - -private var _pageFit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PaintBrush.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PaintBrush.kt deleted file mode 100644 index fe5122ea..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PaintBrush.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PaintBrush: ImageVector - get() { - if (_paintBrush != null) { - return _paintBrush!! - } - _paintBrush = fluentIcon(name = "Filled.PaintBrush") { - fluentPath { - moveTo(12.5f, 2.0f) - verticalLineToRelative(3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineTo(2.0f) - horizontalLineToRelative(1.0f) - verticalLineToRelative(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineTo(2.0f) - horizontalLineToRelative(1.75f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineTo(11.0f) - horizontalLineTo(5.0f) - verticalLineTo(2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.75f) - close() - moveTo(5.0f, 12.5f) - verticalLineToRelative(1.75f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineTo(10.0f) - verticalLineTo(20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 4.0f, 0.0f) - verticalLineToRelative(-3.5f) - horizontalLineToRelative(2.75f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineTo(12.5f) - horizontalLineTo(5.0f) - close() - } - } - return _paintBrush!! - } - -private var _paintBrush: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PaintBrushArrowDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PaintBrushArrowDown.kt deleted file mode 100644 index 31554c3e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PaintBrushArrowDown.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PaintBrushArrowDown: ImageVector - get() { - if (_paintBrushArrowDown != null) { - return _paintBrushArrowDown!! - } - _paintBrushArrowDown = fluentIcon(name = "Filled.PaintBrushArrowDown") { - fluentPath { - moveTo(10.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) - verticalLineToRelative(3.5f) - horizontalLineToRelative(2.75f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(1.75f) - lineTo(5.09f, 11.5f) - curveToRelative(0.01f, -0.72f, 0.0f, -1.35f, -0.02f, -1.87f) - arcTo(2.06f, 2.06f, 0.0f, false, true, 7.11f, 7.5f) - lineTo(10.0f, 7.5f) - lineTo(10.0f, 4.0f) - close() - moveTo(5.04f, 13.0f) - lineTo(19.0f, 13.0f) - verticalLineToRelative(1.15f) - arcToRelative(1.74f, 1.74f, 0.0f, false, false, -2.45f, 1.6f) - verticalLineToRelative(2.44f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.04f, 2.8f) - lineTo(15.53f, 22.0f) - horizontalLineToRelative(-4.98f) - curveToRelative(0.17f, -0.38f, 0.36f, -0.87f, 0.54f, -1.39f) - arcToRelative(9.53f, 9.53f, 0.0f, false, false, 0.41f, -1.84f) - verticalLineToRelative(-0.02f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.03f) - lineToRelative(-0.04f, 0.23f) - curveToRelative(-0.04f, 0.23f, -0.12f, 0.6f, -0.3f, 1.13f) - arcTo(16.83f, 16.83f, 0.0f, false, true, 8.91f, 22.0f) - lineTo(7.57f, 22.0f) - lineToRelative(0.4f, -0.93f) - curveToRelative(0.4f, -0.97f, 0.88f, -2.23f, 1.02f, -3.21f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.48f, -0.22f) - curveToRelative(-0.11f, 0.77f, -0.51f, 1.88f, -0.92f, 2.85f) - arcTo(32.38f, 32.38f, 0.0f, false, true, 5.91f, 22.0f) - lineTo(3.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.63f, -1.16f) - curveToRelative(0.95f, -1.46f, 1.47f, -3.58f, 1.73f, -5.73f) - curveToRelative(0.1f, -0.72f, 0.15f, -1.43f, 0.19f, -2.11f) - close() - moveTo(15.22f, 19.22f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(1.27f, 1.27f) - verticalLineToRelative(-4.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(4.64f) - lineToRelative(1.17f, -1.17f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 0.0f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - } - } - return _paintBrushArrowDown!! - } - -private var _paintBrushArrowDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PaintBrushArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PaintBrushArrowUp.kt deleted file mode 100644 index 37215fd3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PaintBrushArrowUp.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PaintBrushArrowUp: ImageVector - get() { - if (_paintBrushArrowUp != null) { - return _paintBrushArrowUp!! - } - _paintBrushArrowUp = fluentIcon(name = "Filled.PaintBrushArrowUp") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(3.5f) - lineTo(7.11f, 7.5f) - curveToRelative(-1.17f, 0.0f, -2.08f, 1.0f, -2.04f, 2.13f) - curveToRelative(0.02f, 0.4f, 0.02f, 1.36f, 0.02f, 1.87f) - lineTo(19.0f, 11.5f) - lineTo(19.0f, 9.75f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - lineTo(14.0f, 7.5f) - lineTo(14.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - close() - moveTo(4.85f, 15.11f) - curveToRelative(0.1f, -0.72f, 0.19f, -2.11f, 0.19f, -2.11f) - lineTo(19.0f, 13.0f) - verticalLineToRelative(1.17f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.99f, 0.34f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 2.04f, 2.8f) - lineTo(16.55f, 22.0f) - horizontalLineToRelative(-6.0f) - curveToRelative(0.17f, -0.38f, 0.36f, -0.87f, 0.54f, -1.39f) - arcToRelative(9.53f, 9.53f, 0.0f, false, false, 0.41f, -1.84f) - verticalLineToRelative(-0.02f) - reflectiveCurveToRelative(0.0f, -0.75f, -0.75f, -0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.78f) - lineToRelative(-0.04f, 0.23f) - curveToRelative(-0.04f, 0.23f, -0.12f, 0.6f, -0.3f, 1.13f) - arcTo(16.83f, 16.83f, 0.0f, false, true, 8.91f, 22.0f) - lineTo(7.57f, 22.0f) - lineToRelative(0.4f, -0.93f) - curveToRelative(0.4f, -0.97f, 0.88f, -2.23f, 1.02f, -3.21f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.48f, -0.22f) - curveToRelative(-0.11f, 0.77f, -0.51f, 1.88f, -0.92f, 2.85f) - arcTo(32.38f, 32.38f, 0.0f, false, true, 5.91f, 22.0f) - lineTo(3.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.63f, -1.16f) - curveToRelative(0.95f, -1.46f, 1.47f, -3.58f, 1.73f, -5.73f) - close() - moveTo(16.28f, 18.78f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 0.0f) - lineToRelative(2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(19.0f, 17.56f) - verticalLineToRelative(4.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-4.69f) - lineToRelative(-1.22f, 1.22f) - close() - } - } - return _paintBrushArrowUp!! - } - -private var _paintBrushArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PaintBucket.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PaintBucket.kt deleted file mode 100644 index 097efd35..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PaintBucket.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PaintBucket: ImageVector - get() { - if (_paintBucket != null) { - return _paintBucket!! - } - _paintBucket = fluentIcon(name = "Filled.PaintBucket") { - fluentPath { - moveTo(12.0f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - lineTo(10.5f, 3.5f) - curveToRelative(-0.3f, 0.1f, -0.6f, 0.28f, -0.84f, 0.53f) - lineToRelative(-6.88f, 6.88f) - curveToRelative(-0.88f, 0.88f, -0.88f, 2.3f, 0.0f, 3.18f) - lineToRelative(4.88f, 4.88f) - curveToRelative(0.88f, 0.88f, 2.3f, 0.88f, 3.18f, 0.0f) - lineToRelative(6.88f, -6.88f) - curveToRelative(0.88f, -0.88f, 0.88f, -2.3f, 0.0f, -3.18f) - lineToRelative(-4.88f, -4.88f) - arcTo(2.24f, 2.24f, 0.0f, false, false, 12.0f, 3.5f) - lineTo(12.0f, 2.25f) - close() - moveTo(10.5f, 5.31f) - verticalLineToRelative(1.44f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(12.0f, 5.31f) - lineToRelative(4.66f, 4.66f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-0.97f, 0.97f) - lineTo(3.8f, 12.0f) - lineToRelative(0.03f, -0.03f) - lineToRelative(6.66f, -6.66f) - close() - moveTo(19.52f, 13.61f) - arcToRelative(0.87f, 0.87f, 0.0f, false, false, -1.54f, 0.0f) - lineToRelative(-2.0f, 3.76f) - arcToRelative(3.15f, 3.15f, 0.0f, true, false, 5.55f, 0.0f) - lineToRelative(-2.0f, -3.77f) - close() - } - } - return _paintBucket!! - } - -private var _paintBucket: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Pair.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Pair.kt deleted file mode 100644 index 2ebabd10..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Pair.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Pair: ImageVector - get() { - if (_pair != null) { - return _pair!! - } - _pair = fluentIcon(name = "Filled.Pair") { - fluentPath { - moveTo(18.27f, 21.0f) - horizontalLineToRelative(-6.54f) - arcTo(2.0f, 2.0f, 0.0f, true, true, 9.0f, 18.27f) - lineTo(9.0f, 15.0f) - lineTo(5.73f, 15.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.58f, 1.0f) - lineTo(4.0f, 16.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.0f, -3.73f) - lineTo(3.0f, 5.73f) - arcTo(2.0f, 2.0f, 0.0f, true, true, 5.73f, 3.0f) - horizontalLineToRelative(6.54f) - arcTo(2.0f, 2.0f, 0.0f, true, true, 15.0f, 5.73f) - lineTo(15.0f, 9.0f) - horizontalLineToRelative(3.27f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.58f, -1.0f) - lineTo(20.0f, 8.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.0f, 3.73f) - verticalLineToRelative(6.54f) - arcTo(2.0f, 2.0f, 0.0f, true, true, 18.27f, 21.0f) - horizontalLineToRelative(-6.54f) - horizontalLineToRelative(6.54f) - close() - moveTo(18.27f, 11.0f) - lineTo(15.0f, 11.0f) - verticalLineToRelative(1.27f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.0f, 1.58f) - lineTo(16.0f, 14.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -3.73f, 1.0f) - lineTo(11.0f, 15.0f) - verticalLineToRelative(3.27f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.73f, 0.73f) - horizontalLineToRelative(6.54f) - curveToRelative(0.17f, -0.3f, 0.43f, -0.56f, 0.73f, -0.73f) - verticalLineToRelative(-6.54f) - arcToRelative(2.01f, 2.01f, 0.0f, false, true, -0.64f, -0.58f) - lineToRelative(-0.1f, -0.15f) - close() - moveTo(13.0f, 11.0f) - horizontalLineToRelative(-1.27f) - curveToRelative(-0.17f, 0.3f, -0.43f, 0.56f, -0.73f, 0.73f) - lineTo(11.0f, 13.0f) - horizontalLineToRelative(1.27f) - curveToRelative(0.17f, -0.3f, 0.43f, -0.56f, 0.73f, -0.73f) - lineTo(13.0f, 11.0f) - close() - moveTo(12.27f, 5.0f) - lineTo(5.73f, 5.0f) - curveToRelative(-0.17f, 0.3f, -0.43f, 0.56f, -0.73f, 0.73f) - verticalLineToRelative(6.54f) - curveToRelative(0.3f, 0.17f, 0.56f, 0.43f, 0.73f, 0.73f) - lineTo(9.0f, 13.0f) - verticalLineToRelative(-1.27f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.0f, -1.58f) - lineTo(8.0f, 10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 3.73f, -1.0f) - lineTo(13.0f, 9.0f) - lineTo(13.0f, 5.73f) - arcToRelative(2.01f, 2.01f, 0.0f, false, true, -0.64f, -0.58f) - lineToRelative(-0.1f, -0.15f) - close() - } - } - return _pair!! - } - -private var _pair: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelLeft.kt deleted file mode 100644 index a4c87587..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelLeft.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PanelLeft: ImageVector - get() { - if (_panelLeft != null) { - return _panelLeft!! - } - _panelLeft = fluentIcon(name = "Filled.PanelLeft") { - fluentPath { - moveTo(5.25f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) - horizontalLineToRelative(13.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-9.5f) - curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) - lineTo(5.25f, 4.0f) - close() - moveTo(18.75f, 5.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(9.5f, 18.5f) - verticalLineToRelative(-13.0f) - horizontalLineToRelative(9.25f) - close() - } - } - return _panelLeft!! - } - -private var _panelLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelLeftAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelLeftAdd.kt deleted file mode 100644 index 147562e0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelLeftAdd.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PanelLeftAdd: ImageVector - get() { - if (_panelLeftAdd != null) { - return _panelLeftAdd!! - } - _panelLeftAdd = fluentIcon(name = "Filled.PanelLeftAdd") { - fluentPath { - moveTo(5.25f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) - horizontalLineToRelative(6.25f) - curveToRelative(-0.2f, -0.47f, -0.34f, -0.98f, -0.42f, -1.5f) - lineTo(9.5f, 18.5f) - verticalLineToRelative(-13.0f) - horizontalLineToRelative(9.25f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.48f) - curveToRelative(0.55f, 0.29f, 1.06f, 0.65f, 1.5f, 1.08f) - lineTo(22.0f, 7.25f) - curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) - lineTo(5.25f, 4.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _panelLeftAdd!! - } - -private var _panelLeftAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelLeftContract.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelLeftContract.kt deleted file mode 100644 index d67af29d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelLeftContract.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PanelLeftContract: ImageVector - get() { - if (_panelLeftContract != null) { - return _panelLeftContract!! - } - _panelLeftContract = fluentIcon(name = "Filled.PanelLeftContract") { - fluentPath { - moveTo(14.8f, 9.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.05f, -0.06f) - lineToRelative(-2.5f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.12f) - lineToRelative(2.5f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.0f, -1.12f) - lineToRelative(-1.05f, -0.94f) - horizontalLineToRelative(3.55f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(13.7f) - lineToRelative(1.05f, -0.94f) - curveToRelative(0.31f, -0.28f, 0.33f, -0.75f, 0.06f, -1.06f) - close() - moveTo(2.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) - verticalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) - horizontalLineTo(4.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) - verticalLineTo(6.75f) - close() - moveTo(9.0f, 5.5f) - verticalLineToRelative(13.0f) - horizontalLineToRelative(10.25f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineTo(6.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineTo(9.0f) - close() - } - } - return _panelLeftContract!! - } - -private var _panelLeftContract: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelLeftExpand.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelLeftExpand.kt deleted file mode 100644 index 662378cf..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelLeftExpand.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PanelLeftExpand: ImageVector - get() { - if (_panelLeftExpand != null) { - return _panelLeftExpand!! - } - _panelLeftExpand = fluentIcon(name = "Filled.PanelLeftExpand") { - fluentPath { - moveTo(14.2f, 14.75f) - curveToRelative(0.27f, 0.3f, 0.74f, 0.33f, 1.05f, 0.06f) - lineToRelative(2.5f, -2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.12f) - lineToRelative(-2.5f, -2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, 1.12f) - lineToRelative(1.05f, 0.94f) - horizontalLineToRelative(-3.55f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(3.55f) - lineToRelative(-1.05f, 0.94f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.06f, 1.06f) - close() - moveTo(2.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) - verticalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) - horizontalLineTo(4.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) - verticalLineTo(6.75f) - close() - moveTo(9.0f, 5.5f) - verticalLineToRelative(13.0f) - horizontalLineToRelative(10.25f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineTo(6.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineTo(9.0f) - close() - } - } - return _panelLeftExpand!! - } - -private var _panelLeftExpand: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelLeftHeader.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelLeftHeader.kt deleted file mode 100644 index 8a4f3842..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelLeftHeader.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PanelLeftHeader: ImageVector - get() { - if (_panelLeftHeader != null) { - return _panelLeftHeader!! - } - _panelLeftHeader = fluentIcon(name = "Filled.PanelLeftHeader") { - fluentPath { - moveTo(2.0f, 7.25f) - curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) - horizontalLineToRelative(13.5f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(5.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - close() - moveTo(20.5f, 7.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(9.5f, 5.5f) - lineTo(9.5f, 9.0f) - horizontalLineToRelative(11.0f) - lineTo(20.5f, 7.25f) - close() - moveTo(20.5f, 10.5f) - horizontalLineToRelative(-11.0f) - verticalLineToRelative(8.0f) - horizontalLineToRelative(9.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(20.5f, 10.5f) - close() - } - } - return _panelLeftHeader!! - } - -private var _panelLeftHeader: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelLeftHeaderAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelLeftHeaderAdd.kt deleted file mode 100644 index 91c6c46c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelLeftHeaderAdd.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PanelLeftHeaderAdd: ImageVector - get() { - if (_panelLeftHeaderAdd != null) { - return _panelLeftHeaderAdd!! - } - _panelLeftHeaderAdd = fluentIcon(name = "Filled.PanelLeftHeaderAdd") { - fluentPath { - moveTo(2.0f, 7.25f) - curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) - horizontalLineToRelative(13.5f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(5.56f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) - lineTo(20.5f, 10.5f) - horizontalLineToRelative(-11.0f) - verticalLineToRelative(8.0f) - horizontalLineToRelative(1.58f) - curveToRelative(0.08f, 0.52f, 0.22f, 1.03f, 0.42f, 1.5f) - lineTo(5.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - close() - moveTo(20.5f, 7.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(9.5f, 5.5f) - lineTo(9.5f, 9.0f) - horizontalLineToRelative(11.0f) - lineTo(20.5f, 7.25f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _panelLeftHeaderAdd!! - } - -private var _panelLeftHeaderAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelLeftHeaderKey.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelLeftHeaderKey.kt deleted file mode 100644 index a5780316..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelLeftHeaderKey.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PanelLeftHeaderKey: ImageVector - get() { - if (_panelLeftHeaderKey != null) { - return _panelLeftHeaderKey!! - } - _panelLeftHeaderKey = fluentIcon(name = "Filled.PanelLeftHeaderKey") { - fluentPath { - moveTo(2.0f, 7.25f) - curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) - horizontalLineToRelative(13.5f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(4.5f) - curveToRelative(-0.45f, -0.3f, -0.96f, -0.52f, -1.5f, -0.64f) - verticalLineToRelative(-0.61f) - horizontalLineToRelative(-11.0f) - verticalLineToRelative(8.0f) - horizontalLineToRelative(3.09f) - lineToRelative(-1.08f, 1.07f) - curveToRelative(-0.12f, 0.13f, -0.23f, 0.27f, -0.31f, 0.43f) - lineTo(5.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - close() - moveTo(9.5f, 9.0f) - horizontalLineToRelative(11.0f) - lineTo(20.5f, 7.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(9.5f, 5.5f) - lineTo(9.5f, 9.0f) - close() - moveTo(19.5f, 19.0f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, -3.38f, -2.59f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.15f, 0.12f) - lineToRelative(-3.75f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.22f, 0.53f) - verticalLineToRelative(1.44f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(1.75f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(15.0f, 22.0f) - horizontalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(1.5f) - close() - moveTo(21.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - } - } - return _panelLeftHeaderKey!! - } - -private var _panelLeftHeaderKey: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelLeftKey.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelLeftKey.kt deleted file mode 100644 index 6ee8f819..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelLeftKey.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PanelLeftKey: ImageVector - get() { - if (_panelLeftKey != null) { - return _panelLeftKey!! - } - _panelLeftKey = fluentIcon(name = "Filled.PanelLeftKey") { - fluentPath { - moveTo(5.25f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) - horizontalLineToRelative(5.95f) - curveToRelative(0.08f, -0.16f, 0.19f, -0.3f, 0.31f, -0.43f) - lineToRelative(1.08f, -1.07f) - lineTo(9.5f, 18.5f) - verticalLineToRelative(-13.0f) - horizontalLineToRelative(9.25f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(3.86f) - curveToRelative(0.54f, 0.13f, 1.05f, 0.35f, 1.5f, 0.65f) - lineTo(22.0f, 7.25f) - curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) - lineTo(5.25f, 4.0f) - close() - moveTo(23.0f, 15.5f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.5f, 3.5f) - lineTo(18.0f, 19.0f) - verticalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-1.44f) - curveToRelative(0.0f, -0.2f, 0.08f, -0.39f, 0.22f, -0.53f) - lineToRelative(3.75f, -3.75f) - lineToRelative(0.15f, -0.12f) - arcTo(3.5f, 3.5f, 0.0f, true, true, 23.0f, 15.5f) - close() - moveTo(20.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - } - } - return _panelLeftKey!! - } - -private var _panelLeftKey: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelRight.kt deleted file mode 100644 index 1558a864..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelRight.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PanelRight: ImageVector - get() { - if (_panelRight != null) { - return _panelRight!! - } - _panelRight = fluentIcon(name = "Filled.PanelRight") { - fluentPath { - moveTo(18.75f, 4.0f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineTo(5.25f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) - horizontalLineToRelative(13.5f) - close() - moveTo(5.25f, 5.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(9.25f) - verticalLineToRelative(-13.0f) - horizontalLineTo(5.25f) - close() - } - } - return _panelRight!! - } - -private var _panelRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelRightContract.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelRightContract.kt deleted file mode 100644 index 3af5f8cc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelRightContract.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PanelRightContract: ImageVector - get() { - if (_panelRightContract != null) { - return _panelRightContract!! - } - _panelRightContract = fluentIcon(name = "Filled.PanelRightContract") { - fluentPath { - moveTo(9.2f, 9.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, -0.06f) - lineToRelative(2.5f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.12f) - lineToRelative(-2.5f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.0f, -1.12f) - lineToRelative(1.05f, -0.94f) - lineTo(6.75f, 12.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.55f) - lineToRelative(-1.05f, -0.94f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.06f, -1.06f) - close() - moveTo(22.0f, 17.25f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) - lineTo(4.75f, 20.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) - lineTo(2.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) - verticalLineToRelative(10.5f) - close() - moveTo(15.0f, 18.5f) - verticalLineToRelative(-13.0f) - lineTo(4.75f, 5.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - lineTo(15.0f, 18.5f) - close() - } - } - return _panelRightContract!! - } - -private var _panelRightContract: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelRightCursor.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelRightCursor.kt deleted file mode 100644 index d77f01e6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelRightCursor.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PanelRightCursor: ImageVector - get() { - if (_panelRightCursor != null) { - return _panelRightCursor!! - } - _panelRightCursor = fluentIcon(name = "Filled.PanelRightCursor") { - fluentPath { - moveTo(18.75f, 4.0f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.42f, -0.08f, 0.81f, -0.22f, 1.18f) - lineToRelative(-5.73f, -6.35f) - curveToRelative(-0.4f, -0.44f, -0.98f, -0.65f, -1.55f, -0.56f) - lineTo(14.5f, 5.5f) - lineTo(5.25f, 5.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(13.0f, 18.5f) - lineTo(13.0f, 20.0f) - lineTo(5.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) - horizontalLineToRelative(13.5f) - close() - moveTo(14.49f, 12.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.82f, 0.2f) - lineToRelative(6.37f, 7.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 1.23f) - lineToRelative(-3.54f, -0.88f) - lineToRelative(-2.03f, 3.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.37f, -0.42f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.31f, 0.2f, -0.59f, 0.49f, -0.7f) - close() - } - } - return _panelRightCursor!! - } - -private var _panelRightCursor: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Password.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Password.kt deleted file mode 100644 index e6b6217b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Password.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Password: ImageVector - get() { - if (_password != null) { - return _password!! - } - _password = fluentIcon(name = "Filled.Password") { - fluentPath { - moveTo(5.25f, 5.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 8.25f) - verticalLineToRelative(7.5f) - curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) - horizontalLineToRelative(13.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-7.5f) - curveTo(22.0f, 6.45f, 20.55f, 5.0f, 18.75f, 5.0f) - lineTo(5.25f, 5.0f) - close() - moveTo(6.28f, 10.22f) - lineTo(7.0f, 10.94f) - lineTo(7.72f, 10.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-0.72f, 0.72f) - lineToRelative(0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(7.0f, 13.06f) - lineToRelative(-0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(0.72f, -0.72f) - lineToRelative(-0.72f, -0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - close() - moveTo(11.78f, 10.22f) - lineTo(12.5f, 10.94f) - lineTo(13.22f, 10.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-0.72f, 0.72f) - lineToRelative(0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-0.72f, -0.72f) - lineToRelative(-0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(0.72f, -0.72f) - lineToRelative(-0.72f, -0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - close() - moveTo(15.75f, 14.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(16.5f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _password!! - } - -private var _password: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Patch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Patch.kt deleted file mode 100644 index d76c4e0d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Patch.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Patch: ImageVector - get() { - if (_patch != null) { - return _patch!! - } - _patch = fluentIcon(name = "Filled.Patch") { - fluentPath { - moveToRelative(9.8f, 3.24f) - lineToRelative(1.5f, 1.5f) - lineToRelative(-6.57f, 6.55f) - lineToRelative(-1.5f, -1.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.59f) - lineTo(5.2f, 3.24f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 4.6f, 0.0f) - close() - moveTo(14.2f, 20.76f) - lineTo(12.7f, 19.26f) - lineTo(19.27f, 12.71f) - lineTo(20.77f, 14.21f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, 4.59f) - lineToRelative(-1.97f, 1.96f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -4.6f, 0.0f) - close() - moveTo(3.24f, 14.2f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 0.0f, 4.6f) - lineToRelative(1.96f, 1.96f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 4.6f, 0.0f) - lineTo(20.76f, 9.8f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 0.0f, -4.6f) - lineTo(18.8f, 3.24f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -4.6f, 0.0f) - lineTo(3.24f, 14.2f) - close() - moveTo(12.75f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(9.0f, 12.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(12.0f, 12.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(15.75f, 12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(12.0f, 15.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - } - } - return _patch!! - } - -private var _patch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Patient.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Patient.kt deleted file mode 100644 index eaebf5b3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Patient.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Patient: ImageVector - get() { - if (_patient != null) { - return _patient!! - } - _patient = fluentIcon(name = "Filled.Patient") { - fluentPath { - moveTo(17.75f, 2.0f) - curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) - verticalLineToRelative(15.5f) - curveTo(20.0f, 21.0f, 19.0f, 22.0f, 17.75f, 22.0f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(6.25f, 2.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(18.5f, 16.0f) - horizontalLineToRelative(-13.0f) - verticalLineToRelative(3.75f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) - lineTo(18.5f, 16.0f) - close() - moveTo(7.75f, 17.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-8.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(8.6f) - horizontalLineToRelative(-8.5f) - close() - moveTo(17.75f, 3.5f) - lineTo(6.15f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - lineTo(5.5f, 14.5f) - lineTo(8.0f, 14.5f) - verticalLineToRelative(-2.25f) - curveToRelative(0.0f, -0.65f, 0.5f, -1.18f, 1.12f, -1.25f) - horizontalLineToRelative(5.63f) - curveToRelative(0.65f, 0.0f, 1.18f, 0.49f, 1.24f, 1.12f) - lineToRelative(0.01f, 0.13f) - verticalLineToRelative(2.25f) - horizontalLineToRelative(2.5f) - lineTo(18.5f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(12.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - } - } - return _patient!! - } - -private var _patient: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PauseCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PauseCircle.kt deleted file mode 100644 index 7f20be7d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PauseCircle.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PauseCircle: ImageVector - get() { - if (_pauseCircle != null) { - return _pauseCircle!! - } - _pauseCircle = fluentIcon(name = "Filled.PauseCircle") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) - close() - moveTo(10.5f, 8.25f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(15.0f, 8.25f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - } - } - return _pauseCircle!! - } - -private var _pauseCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Payment.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Payment.kt deleted file mode 100644 index a60f0c95..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Payment.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Payment: ImageVector - get() { - if (_payment != null) { - return _payment!! - } - _payment = fluentIcon(name = "Filled.Payment") { - fluentPath { - moveTo(5.25f, 5.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 8.25f) - lineTo(2.0f, 9.5f) - horizontalLineToRelative(20.0f) - lineTo(22.0f, 8.25f) - curveTo(22.0f, 6.45f, 20.54f, 5.0f, 18.75f, 5.0f) - lineTo(5.25f, 5.0f) - close() - moveTo(22.0f, 11.0f) - lineTo(2.0f, 11.0f) - verticalLineToRelative(4.75f) - curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) - horizontalLineToRelative(13.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(22.0f, 11.0f) - close() - moveTo(15.75f, 14.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - } - } - return _payment!! - } - -private var _payment: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Pen.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Pen.kt deleted file mode 100644 index 3df229cc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Pen.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Pen: ImageVector - get() { - if (_pen != null) { - return _pen!! - } - _pen = fluentIcon(name = "Filled.Pen") { - fluentPath { - moveTo(15.9f, 3.05f) - arcToRelative(3.58f, 3.58f, 0.0f, true, true, 5.05f, 5.06f) - lineToRelative(-0.89f, 0.89f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, 4.6f) - lineToRelative(-1.79f, 1.77f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineTo(19.0f, 12.53f) - curveToRelative(0.68f, -0.68f, 0.68f, -1.79f, 0.0f, -2.47f) - lineToRelative(-10.0f, 10.0f) - curveToRelative(-0.4f, 0.4f, -0.92f, 0.7f, -1.48f, 0.82f) - lineToRelative(-4.6f, 1.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.9f, -0.9f) - lineToRelative(1.1f, -4.6f) - arcTo(3.1f, 3.1f, 0.0f, false, true, 3.94f, 15.0f) - lineTo(15.9f, 3.05f) - close() - } - } - return _pen!! - } - -private var _pen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PenOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PenOff.kt deleted file mode 100644 index 66c1e373..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PenOff.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PenOff: ImageVector - get() { - if (_penOff != null) { - return _penOff!! - } - _penOff = fluentIcon(name = "Filled.PenOff") { - fluentPath { - moveToRelative(14.0f, 15.06f) - lineToRelative(6.72f, 6.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineTo(8.94f, 10.0f) - lineToRelative(-5.0f, 5.0f) - curveToRelative(-0.4f, 0.4f, -0.7f, 0.92f, -0.82f, 1.48f) - lineToRelative(-1.1f, 4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.9f, 0.9f) - lineToRelative(4.6f, -1.1f) - arcTo(3.1f, 3.1f, 0.0f, false, false, 9.0f, 20.06f) - lineToRelative(5.0f, -5.0f) - close() - moveTo(19.0f, 12.53f) - lineTo(17.35f, 14.17f) - lineTo(18.41f, 15.23f) - lineTo(20.06f, 13.59f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 0.0f, -4.6f) - lineToRelative(0.9f, -0.88f) - arcToRelative(3.58f, 3.58f, 0.0f, false, false, -5.07f, -5.06f) - lineToRelative(-4.83f, 4.83f) - lineToRelative(5.06f, 5.06f) - lineTo(19.0f, 10.06f) - curveToRelative(0.68f, 0.68f, 0.68f, 1.79f, 0.0f, 2.47f) - close() - } - } - return _penOff!! - } - -private var _penOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PenProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PenProhibited.kt deleted file mode 100644 index 33e2c651..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PenProhibited.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PenProhibited: ImageVector - get() { - if (_penProhibited != null) { - return _penProhibited!! - } - _penProhibited = fluentIcon(name = "Filled.PenProhibited") { - fluentPath { - moveTo(20.95f, 3.05f) - arcToRelative(3.58f, 3.58f, 0.0f, false, false, -5.06f, 0.0f) - lineTo(3.94f, 15.0f) - curveToRelative(-0.4f, 0.4f, -0.7f, 0.92f, -0.82f, 1.48f) - lineToRelative(-1.1f, 4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.9f, 0.9f) - lineToRelative(4.6f, -1.1f) - arcTo(3.1f, 3.1f, 0.0f, false, false, 9.0f, 20.06f) - lineToRelative(1.15f, -1.15f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, 7.76f, -7.76f) - lineToRelative(3.04f, -3.04f) - arcToRelative(3.58f, 3.58f, 0.0f, false, false, 0.0f, -5.06f) - close() - moveTo(22.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(12.5f, 17.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 6.25f, -3.3f) - lineToRelative(-5.56f, 5.55f) - arcToRelative(3.98f, 3.98f, 0.0f, false, true, -0.69f, -2.25f) - close() - moveTo(16.5f, 21.5f) - curveToRelative(-0.83f, 0.0f, -1.6f, -0.26f, -2.25f, -0.7f) - lineToRelative(5.56f, -5.55f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -3.3f, 6.25f) - close() - } - } - return _penProhibited!! - } - -private var _penProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/People.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/People.kt deleted file mode 100644 index a2932b1d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/People.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.People: ImageVector - get() { - if (_people != null) { - return _people!! - } - _people = fluentIcon(name = "Filled.People") { - fluentPath { - moveTo(8.0f, 12.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, -8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 8.0f) - close() - moveTo(17.0f, 12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) - close() - moveTo(4.25f, 14.0f) - curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) - verticalLineToRelative(0.25f) - reflectiveCurveTo(2.0f, 21.0f, 8.0f, 21.0f) - reflectiveCurveToRelative(6.0f, -4.5f, 6.0f, -4.5f) - verticalLineToRelative(-0.25f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-7.5f) - close() - moveTo(17.0f, 19.5f) - arcToRelative(7.33f, 7.33f, 0.0f, false, true, -2.75f, -0.46f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.75f, -2.49f) - verticalLineToRelative(-0.3f) - curveToRelative(0.0f, -0.87f, -0.34f, -1.66f, -0.9f, -2.25f) - lineTo(19.8f, 14.0f) - curveToRelative(1.22f, 0.0f, 2.2f, 0.98f, 2.2f, 2.2f) - curveToRelative(0.0f, 0.0f, 0.0f, 3.3f, -5.0f, 3.3f) - close() - } - } - return _people!! - } - -private var _people: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleAdd.kt deleted file mode 100644 index becece7a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleAdd.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PeopleAdd: ImageVector - get() { - if (_peopleAdd != null) { - return _peopleAdd!! - } - _peopleAdd = fluentIcon(name = "Filled.PeopleAdd") { - fluentPath { - moveTo(8.0f, 11.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, -8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 8.0f) - close() - moveTo(17.0f, 11.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) - close() - moveTo(4.25f, 13.0f) - curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) - verticalLineToRelative(0.25f) - reflectiveCurveTo(2.0f, 20.0f, 8.0f, 20.0f) - arcToRelative(7.9f, 7.9f, 0.0f, false, false, 3.28f, -0.61f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, 1.36f, -6.2f) - arcToRelative(2.24f, 2.24f, 0.0f, false, false, -0.89f, -0.19f) - horizontalLineToRelative(-7.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _peopleAdd!! - } - -private var _peopleAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleAudience.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleAudience.kt deleted file mode 100644 index 228013a6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleAudience.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PeopleAudience: ImageVector - get() { - if (_peopleAudience != null) { - return _peopleAudience!! - } - _peopleAudience = fluentIcon(name = "Filled.PeopleAudience") { - fluentPath { - moveTo(14.75f, 10.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(16.5f, 16.0f) - horizontalLineToRelative(-9.0f) - verticalLineToRelative(-4.25f) - curveToRelative(0.0f, -0.97f, 0.79f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(5.5f) - close() - moveTo(22.0f, 11.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.38f) - curveToRelative(0.4f, 0.47f, 0.63f, 1.08f, 0.63f, 1.75f) - lineTo(17.5f, 16.0f) - horizontalLineToRelative(3.75f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-3.5f) - close() - moveTo(6.5f, 15.0f) - verticalLineToRelative(-3.25f) - lineToRelative(0.01f, -0.22f) - curveToRelative(0.05f, -0.58f, 0.27f, -1.1f, 0.62f, -1.53f) - lineTo(3.61f, 10.0f) - curveToRelative(-0.9f, 0.08f, -1.61f, 0.83f, -1.61f, 1.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(6.5f, 16.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(12.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) - close() - moveTo(18.5f, 4.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - moveTo(5.5f, 4.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - moveTo(2.0f, 17.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(18.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.5f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 18.25f, 22.0f) - lineTo(5.75f, 22.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 2.0f, 18.25f) - verticalLineToRelative(-0.5f) - close() - } - } - return _peopleAudience!! - } - -private var _peopleAudience: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleCall.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleCall.kt deleted file mode 100644 index 1eef05ce..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleCall.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PeopleCall: ImageVector - get() { - if (_peopleCall != null) { - return _peopleCall!! - } - _peopleCall = fluentIcon(name = "Filled.PeopleCall") { - fluentPath { - moveTo(8.0f, 11.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, -8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 8.0f) - close() - moveTo(17.0f, 11.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) - close() - moveTo(4.25f, 13.0f) - curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) - verticalLineToRelative(0.25f) - reflectiveCurveTo(2.0f, 20.0f, 8.0f, 20.0f) - reflectiveCurveToRelative(6.0f, -4.5f, 6.0f, -4.5f) - verticalLineToRelative(-0.25f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-7.5f) - close() - moveTo(18.19f, 14.0f) - lineTo(18.67f, 12.79f) - curveToRelative(0.24f, -0.61f, 0.92f, -0.93f, 1.55f, -0.73f) - lineToRelative(0.43f, 0.14f) - curveToRelative(0.72f, 0.24f, 1.32f, 0.8f, 1.35f, 1.57f) - curveToRelative(0.1f, 3.11f, -2.48f, 7.58f, -5.22f, 9.06f) - curveToRelative(-0.67f, 0.36f, -1.46f, 0.12f, -2.03f, -0.4f) - lineToRelative(-0.34f, -0.3f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.14f, -1.7f) - lineToRelative(0.8f, -1.02f) - arcToRelative(1.2f, 1.2f, 0.0f, false, true, 1.22f, -0.42f) - lineToRelative(1.3f, 0.32f) - arcToRelative(3.78f, 3.78f, 0.0f, false, false, 1.77f, -3.08f) - lineToRelative(-0.92f, -0.96f) - arcToRelative(1.2f, 1.2f, 0.0f, false, true, -0.25f, -1.28f) - close() - } - } - return _peopleCall!! - } - -private var _peopleCall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleCheckmark.kt deleted file mode 100644 index e6bbb23d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleCheckmark.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PeopleCheckmark: ImageVector - get() { - if (_peopleCheckmark != null) { - return _peopleCheckmark!! - } - _peopleCheckmark = fluentIcon(name = "Filled.PeopleCheckmark") { - fluentPath { - moveTo(8.0f, 11.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, -8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 8.0f) - close() - moveTo(17.0f, 11.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) - close() - moveTo(4.25f, 13.0f) - curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) - verticalLineToRelative(0.25f) - reflectiveCurveTo(2.0f, 20.0f, 8.0f, 20.0f) - arcToRelative(7.9f, 7.9f, 0.0f, false, false, 3.28f, -0.61f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, 1.36f, -6.2f) - arcToRelative(2.24f, 2.24f, 0.0f, false, false, -0.89f, -0.19f) - horizontalLineToRelative(-7.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.15f, 15.15f) - lineTo(16.5f, 18.79f) - lineTo(14.85f, 17.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - close() - } - } - return _peopleCheckmark!! - } - -private var _peopleCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleCommunity.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleCommunity.kt deleted file mode 100644 index 1a84ff8e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleCommunity.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PeopleCommunity: ImageVector - get() { - if (_peopleCommunity != null) { - return _peopleCommunity!! - } - _peopleCommunity = fluentIcon(name = "Filled.PeopleCommunity") { - fluentPath { - moveTo(7.5f, 8.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) - close() - moveTo(2.0f, 10.77f) - curveTo(2.0f, 9.79f, 2.8f, 9.0f, 3.77f, 9.0f) - horizontalLineToRelative(4.77f) - arcToRelative(3.98f, 3.98f, 0.0f, false, false, 0.81f, 5.0f) - lineTo(8.27f, 14.0f) - curveToRelative(-1.19f, 0.0f, -2.2f, 0.75f, -2.6f, 1.8f) - arcToRelative(4.6f, 4.6f, 0.0f, false, true, -2.97f, -2.1f) - arcToRelative(5.15f, 5.15f, 0.0f, false, true, -0.7f, -2.57f) - verticalLineToRelative(-0.36f) - close() - moveTo(16.0f, 11.0f) - curveToRelative(0.0f, -0.73f, -0.2f, -1.41f, -0.54f, -2.0f) - horizontalLineToRelative(4.77f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.36f) - curveToRelative(0.0f, 0.2f, 0.0f, 1.4f, -0.7f, 2.57f) - arcToRelative(4.6f, 4.6f, 0.0f, false, true, -2.98f, 2.1f) - arcToRelative(2.77f, 2.77f, 0.0f, false, false, -2.59f, -1.8f) - horizontalLineToRelative(-1.08f) - arcTo(3.99f, 3.99f, 0.0f, false, false, 16.0f, 11.0f) - close() - moveTo(19.5f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) - close() - moveTo(6.5f, 16.77f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(7.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.36f) - curveToRelative(0.0f, 0.2f, 0.0f, 1.4f, -0.7f, 2.57f) - curveToRelative(-0.74f, 1.24f, -2.19f, 2.3f, -4.8f, 2.3f) - reflectiveCurveToRelative(-4.06f, -1.06f, -4.8f, -2.3f) - arcToRelative(5.15f, 5.15f, 0.0f, false, true, -0.7f, -2.57f) - verticalLineToRelative(-0.36f) - close() - moveTo(12.0f, 14.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) - close() - } - } - return _peopleCommunity!! - } - -private var _peopleCommunity: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleCommunityAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleCommunityAdd.kt deleted file mode 100644 index 4cc9915c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleCommunityAdd.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PeopleCommunityAdd: ImageVector - get() { - if (_peopleCommunityAdd != null) { - return _peopleCommunityAdd!! - } - _peopleCommunityAdd = fluentIcon(name = "Filled.PeopleCommunityAdd") { - fluentPath { - moveTo(10.5f, 4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) - close() - moveTo(3.77f, 8.0f) - curveTo(2.79f, 8.0f, 2.0f, 8.8f, 2.0f, 9.77f) - verticalLineToRelative(0.36f) - curveToRelative(0.0f, 0.2f, 0.0f, 1.4f, 0.7f, 2.57f) - arcToRelative(4.6f, 4.6f, 0.0f, false, false, 2.98f, 2.1f) - curveToRelative(0.39f, -1.05f, 1.4f, -1.8f, 2.59f, -1.8f) - horizontalLineToRelative(1.08f) - arcToRelative(3.99f, 3.99f, 0.0f, false, true, -0.81f, -5.0f) - lineTo(3.77f, 8.0f) - close() - moveTo(15.47f, 8.0f) - arcToRelative(3.98f, 3.98f, 0.0f, false, true, 0.34f, 3.22f) - arcToRelative(6.51f, 6.51f, 0.0f, false, true, 5.67f, 1.14f) - curveToRelative(0.52f, -1.05f, 0.52f, -2.04f, 0.52f, -2.23f) - verticalLineToRelative(-0.36f) - curveTo(22.0f, 8.79f, 21.2f, 8.0f, 20.23f, 8.0f) - horizontalLineToRelative(-4.77f) - close() - moveTo(12.02f, 14.0f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, 0.0f, 7.0f) - lineTo(12.0f, 21.0f) - curveToRelative(-2.61f, 0.0f, -4.06f, -1.06f, -4.8f, -2.3f) - arcToRelative(5.15f, 5.15f, 0.0f, false, true, -0.7f, -2.57f) - verticalLineToRelative(-0.36f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(3.75f) - close() - moveTo(16.5f, 7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(18.0f, 20.5f) - lineTo(18.0f, 18.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - lineTo(18.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -1.0f, 0.0f) - lineTo(17.0f, 17.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - lineTo(17.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) - close() - moveTo(9.0f, 10.15f) - arcTo(3.0f, 3.0f, 0.0f, true, false, 12.02f, 7.0f) - lineTo(12.0f, 7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(0.15f) - close() - moveTo(12.02f, 7.0f) - lineTo(12.0f, 7.0f) - close() - } - } - return _peopleCommunityAdd!! - } - -private var _peopleCommunityAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleError.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleError.kt deleted file mode 100644 index e6431047..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleError.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PeopleError: ImageVector - get() { - if (_peopleError != null) { - return _peopleError!! - } - _peopleError = fluentIcon(name = "Filled.PeopleError") { - fluentPath { - moveTo(8.0f, 11.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, -8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 8.0f) - close() - moveTo(17.0f, 11.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) - close() - moveTo(4.25f, 13.0f) - curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) - verticalLineToRelative(0.25f) - reflectiveCurveTo(2.0f, 20.0f, 8.0f, 20.0f) - arcToRelative(7.9f, 7.9f, 0.0f, false, false, 3.28f, -0.61f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, 1.36f, -6.2f) - arcToRelative(2.24f, 2.24f, 0.0f, false, false, -0.89f, -0.19f) - horizontalLineToRelative(-7.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(17.5f, 14.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(17.5f, 21.13f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.25f) - close() - } - } - return _peopleError!! - } - -private var _peopleError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleList.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleList.kt deleted file mode 100644 index eba7e378..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleList.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PeopleList: ImageVector - get() { - if (_peopleList != null) { - return _peopleList!! - } - _peopleList = fluentIcon(name = "Filled.PeopleList") { - fluentPath { - moveTo(8.0f, 12.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, -8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 8.0f) - close() - moveTo(17.0f, 12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) - close() - moveTo(4.25f, 14.0f) - curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) - verticalLineToRelative(0.25f) - reflectiveCurveTo(2.0f, 21.0f, 8.0f, 21.0f) - curveToRelative(1.85f, 0.0f, 3.14f, -0.43f, 4.02f, -1.02f) - curveToRelative(0.06f, -0.38f, 0.24f, -0.72f, 0.5f, -0.98f) - arcToRelative(1.74f, 1.74f, 0.0f, false, true, 0.0f, -2.5f) - arcToRelative(1.74f, 1.74f, 0.0f, false, true, -0.1f, -2.4f) - curveToRelative(-0.2f, -0.06f, -0.43f, -0.1f, -0.67f, -0.1f) - horizontalLineToRelative(-7.5f) - close() - moveTo(13.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-7.5f) - close() - moveTo(13.75f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-7.5f) - close() - moveTo(13.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-7.5f) - close() - } - } - return _peopleList!! - } - -private var _peopleList: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleLock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleLock.kt deleted file mode 100644 index 3fa0dce2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleLock.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PeopleLock: ImageVector - get() { - if (_peopleLock != null) { - return _peopleLock!! - } - _peopleLock = fluentIcon(name = "Filled.PeopleLock") { - fluentPath { - moveTo(12.0f, 7.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, -8.0f, 0.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 8.0f, 0.0f) - close() - moveTo(16.0f, 10.83f) - arcToRelative(3.49f, 3.49f, 0.0f, false, true, 2.45f, -0.2f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, -2.44f, 0.2f) - close() - moveTo(13.7f, 14.13f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 12.0f, 16.5f) - verticalLineToRelative(2.49f) - arcTo(7.08f, 7.08f, 0.0f, false, true, 8.0f, 20.0f) - curveToRelative(-6.0f, 0.0f, -6.0f, -4.5f, -6.0f, -4.5f) - verticalLineToRelative(-0.25f) - curveTo(2.0f, 14.01f, 3.0f, 13.0f, 4.25f, 13.0f) - horizontalLineToRelative(7.5f) - curveToRelative(0.83f, 0.0f, 1.56f, 0.45f, 1.95f, 1.13f) - close() - moveTo(15.0f, 15.0f) - verticalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(0.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-6.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(0.5f) - close() - moveTo(16.5f, 14.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - close() - moveTo(18.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - } - } - return _peopleLock!! - } - -private var _peopleLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleMoney.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleMoney.kt deleted file mode 100644 index cf40715c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleMoney.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PeopleMoney: ImageVector - get() { - if (_peopleMoney != null) { - return _peopleMoney!! - } - _peopleMoney = fluentIcon(name = "Filled.PeopleMoney") { - fluentPath { - moveTo(8.0f, 11.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, -8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 8.0f) - close() - moveTo(17.0f, 11.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) - close() - moveTo(4.25f, 13.0f) - curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) - verticalLineToRelative(0.25f) - reflectiveCurveTo(2.0f, 20.0f, 8.0f, 20.0f) - curveToRelative(1.24f, 0.0f, 2.22f, -0.2f, 3.0f, -0.5f) - verticalLineToRelative(-4.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 1.6f, -2.33f) - curveToRelative(-0.26f, -0.11f, -0.55f, -0.17f, -0.85f, -0.17f) - horizontalLineToRelative(-7.5f) - close() - moveTo(12.0f, 15.5f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(8.0f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - verticalLineToRelative(-4.0f) - close() - moveTo(13.0f, 16.0f) - verticalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - close() - moveTo(22.0f, 17.0f) - verticalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - horizontalLineToRelative(-1.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - close() - moveTo(20.0f, 20.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - verticalLineToRelative(-1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - close() - moveTo(13.0f, 18.0f) - verticalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - close() - moveTo(17.5f, 19.25f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, -3.5f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, 3.5f) - close() - } - } - return _peopleMoney!! - } - -private var _peopleMoney: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleProhibited.kt deleted file mode 100644 index 56872c5e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleProhibited.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PeopleProhibited: ImageVector - get() { - if (_peopleProhibited != null) { - return _peopleProhibited!! - } - _peopleProhibited = fluentIcon(name = "Filled.PeopleProhibited") { - fluentPath { - moveTo(8.0f, 11.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, -8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 8.0f) - close() - moveTo(17.0f, 11.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) - close() - moveTo(4.25f, 13.0f) - curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) - verticalLineToRelative(0.25f) - reflectiveCurveTo(2.0f, 20.0f, 8.0f, 20.0f) - arcToRelative(7.9f, 7.9f, 0.0f, false, false, 3.28f, -0.61f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, 1.36f, -6.2f) - arcToRelative(2.24f, 2.24f, 0.0f, false, false, -0.89f, -0.19f) - horizontalLineToRelative(-7.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(13.5f, 17.5f) - curveToRelative(0.0f, 0.83f, 0.26f, 1.6f, 0.7f, 2.25f) - lineToRelative(5.55f, -5.56f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) - close() - moveTo(17.5f, 21.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) - lineToRelative(-5.55f, 5.56f) - curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) - close() - } - } - return _peopleProhibited!! - } - -private var _peopleProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleQueue.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleQueue.kt deleted file mode 100644 index 6c9dc219..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleQueue.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PeopleQueue: ImageVector - get() { - if (_peopleQueue != null) { - return _peopleQueue!! - } - _peopleQueue = fluentIcon(name = "Filled.PeopleQueue") { - fluentPath { - moveTo(10.5f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) - close() - moveTo(4.75f, 10.0f) - curveTo(3.78f, 10.0f, 3.0f, 10.78f, 3.0f, 11.75f) - verticalLineToRelative(4.75f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, 9.0f, 0.0f) - verticalLineToRelative(-4.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-5.5f) - close() - moveTo(10.86f, 20.85f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 13.0f, 16.5f) - verticalLineToRelative(-4.75f) - curveToRelative(0.0f, -0.66f, -0.24f, -1.27f, -0.63f, -1.75f) - horizontalLineToRelative(2.38f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.75f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -5.64f, 4.35f) - close() - moveTo(11.5f, 6.0f) - curveToRelative(0.0f, 1.0f, -0.37f, 1.91f, -0.97f, 2.61f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -5.23f) - curveToRelative(0.6f, 0.7f, 0.97f, 1.62f, 0.97f, 2.62f) - close() - moveTo(15.36f, 20.85f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 2.14f, -4.35f) - verticalLineToRelative(-4.75f) - curveToRelative(0.0f, -0.66f, -0.24f, -1.27f, -0.63f, -1.75f) - horizontalLineToRelative(2.38f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.75f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -5.64f, 4.35f) - close() - moveTo(16.0f, 6.0f) - curveToRelative(0.0f, 1.0f, -0.37f, 1.91f, -0.97f, 2.61f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -5.23f) - curveToRelative(0.6f, 0.7f, 0.97f, 1.62f, 0.97f, 2.62f) - close() - } - } - return _peopleQueue!! - } - -private var _peopleQueue: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleSearch.kt deleted file mode 100644 index b9977f1c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleSearch.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PeopleSearch: ImageVector - get() { - if (_peopleSearch != null) { - return _peopleSearch!! - } - _peopleSearch = fluentIcon(name = "Filled.PeopleSearch") { - fluentPath { - moveTo(11.9f, 14.0f) - horizontalLineToRelative(7.85f) - curveTo(21.0f, 14.0f, 22.0f, 15.0f, 22.0f, 16.25f) - verticalLineToRelative(0.9f) - curveToRelative(0.0f, 1.1f, -0.47f, 2.14f, -1.3f, 2.85f) - curveToRelative(-1.57f, 1.34f, -3.81f, 2.0f, -6.7f, 2.0f) - horizontalLineToRelative(-0.18f) - curveToRelative(0.3f, -0.6f, 0.23f, -1.36f, -0.22f, -1.9f) - lineToRelative(-0.11f, -0.12f) - lineToRelative(-2.23f, -2.22f) - arcTo(5.48f, 5.48f, 0.0f, false, false, 11.9f, 14.0f) - close() - moveTo(6.5f, 10.5f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 3.46f, 7.38f) - lineToRelative(2.82f, 2.81f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 1.14f) - lineToRelative(-0.09f, -0.08f) - lineToRelative(-2.9f, -2.9f) - arcTo(4.5f, 4.5f, 0.0f, true, true, 6.5f, 10.5f) - close() - moveTo(6.5f, 12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - moveTo(14.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - } - } - return _peopleSearch!! - } - -private var _peopleSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleSettings.kt deleted file mode 100644 index 8a5b75dd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleSettings.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PeopleSettings: ImageVector - get() { - if (_peopleSettings != null) { - return _peopleSettings!! - } - _peopleSettings = fluentIcon(name = "Filled.PeopleSettings") { - fluentPath { - moveTo(8.0f, 11.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, -8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 8.0f) - close() - moveTo(17.0f, 11.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) - close() - moveTo(4.25f, 13.0f) - curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) - verticalLineToRelative(0.25f) - reflectiveCurveTo(2.0f, 20.0f, 8.0f, 20.0f) - arcToRelative(7.9f, 7.9f, 0.0f, false, false, 3.28f, -0.61f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, 1.36f, -6.2f) - arcToRelative(2.24f, 2.24f, 0.0f, false, false, -0.89f, -0.19f) - horizontalLineToRelative(-7.5f) - close() - moveTo(14.28f, 13.98f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.59f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) - lineToRelative(0.55f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) - lineToRelative(-0.19f, 0.64f) - curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) - lineToRelative(0.49f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.9f) - lineToRelative(-0.2f, -0.7f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) - lineToRelative(0.59f, -0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, -0.01f, -1.8f) - lineToRelative(-0.54f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.19f, -0.63f) - curveToRelative(-0.44f, -0.39f, -0.94f, -0.7f, -1.49f, -0.93f) - lineToRelative(-0.49f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.91f) - lineToRelative(0.2f, 0.69f) - close() - moveTo(17.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) - close() - } - } - return _peopleSettings!! - } - -private var _peopleSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleStar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleStar.kt deleted file mode 100644 index d11979e2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleStar.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PeopleStar: ImageVector - get() { - if (_peopleStar != null) { - return _peopleStar!! - } - _peopleStar = fluentIcon(name = "Filled.PeopleStar") { - fluentPath { - moveTo(8.0f, 11.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, -8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 8.0f) - close() - moveTo(17.0f, 11.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) - close() - moveTo(4.25f, 13.0f) - curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) - verticalLineToRelative(0.25f) - reflectiveCurveTo(2.0f, 20.0f, 8.0f, 20.0f) - arcToRelative(7.9f, 7.9f, 0.0f, false, false, 3.28f, -0.61f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, 1.36f, -6.2f) - arcToRelative(2.24f, 2.24f, 0.0f, false, false, -0.89f, -0.19f) - horizontalLineToRelative(-7.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(18.06f, 14.42f) - arcToRelative(0.58f, 0.58f, 0.0f, false, false, -1.12f, 0.0f) - lineToRelative(-0.55f, 1.79f) - horizontalLineToRelative(-1.8f) - curveToRelative(-0.57f, 0.0f, -0.8f, 0.75f, -0.35f, 1.1f) - lineToRelative(1.46f, 1.1f) - lineToRelative(-0.56f, 1.79f) - curveToRelative(-0.17f, 0.56f, 0.44f, 1.03f, 0.9f, 0.68f) - lineToRelative(1.46f, -1.1f) - lineToRelative(1.46f, 1.1f) - curveToRelative(0.46f, 0.35f, 1.07f, -0.12f, 0.9f, -0.68f) - lineToRelative(-0.56f, -1.79f) - lineToRelative(1.46f, -1.1f) - curveToRelative(0.46f, -0.35f, 0.22f, -1.1f, -0.35f, -1.1f) - horizontalLineToRelative(-1.8f) - lineToRelative(-0.55f, -1.79f) - close() - } - } - return _peopleStar!! - } - -private var _peopleStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleSwap.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleSwap.kt deleted file mode 100644 index 5f310f3a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleSwap.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PeopleSwap: ImageVector - get() { - if (_peopleSwap != null) { - return _peopleSwap!! - } - _peopleSwap = fluentIcon(name = "Filled.PeopleSwap") { - fluentPath { - moveTo(12.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, -8.0f, 0.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 8.0f, 0.0f) - close() - moveTo(20.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) - close() - moveTo(2.0f, 16.25f) - curveTo(2.0f, 15.01f, 3.0f, 14.0f, 4.25f, 14.0f) - horizontalLineToRelative(7.5f) - curveToRelative(0.37f, 0.0f, 0.72f, 0.09f, 1.03f, 0.25f) - lineTo(10.5f, 16.5f) - curveToRelative(-0.68f, 0.69f, -0.68f, 1.8f, 0.0f, 2.48f) - lineToRelative(1.19f, 1.18f) - curveToRelative(-0.87f, 0.5f, -2.06f, 0.83f, -3.7f, 0.83f) - curveToRelative(-6.0f, 0.0f, -6.0f, -4.5f, -6.0f, -4.5f) - verticalLineToRelative(-0.25f) - close() - moveTo(20.28f, 14.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineTo(20.44f, 17.0f) - horizontalLineToRelative(-6.88f) - lineToRelative(1.22f, -1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineToRelative(-2.5f, 2.5f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineToRelative(-1.22f, -1.22f) - horizontalLineToRelative(6.88f) - lineToRelative(-1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineToRelative(2.5f, -2.5f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-2.5f, -2.5f) - close() - } - } - return _peopleSwap!! - } - -private var _peopleSwap: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleTeam.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleTeam.kt deleted file mode 100644 index fed7f825..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleTeam.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PeopleTeam: ImageVector - get() { - if (_peopleTeam != null) { - return _peopleTeam!! - } - _peopleTeam = fluentIcon(name = "Filled.PeopleTeam") { - fluentPath { - moveTo(14.75f, 10.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.75f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -9.0f, 0.0f) - verticalLineToRelative(-4.75f) - curveToRelative(0.0f, -0.97f, 0.79f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(5.5f) - close() - moveTo(7.13f, 10.0f) - curveToRelative(-0.35f, 0.42f, -0.57f, 0.95f, -0.62f, 1.53f) - verticalLineToRelative(4.97f) - curveToRelative(0.0f, 0.85f, 0.18f, 1.65f, 0.52f, 2.36f) - arcTo(4.0f, 4.0f, 0.0f, false, true, 2.0f, 15.0f) - verticalLineToRelative(-3.24f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) - lineToRelative(0.15f, -0.01f) - horizontalLineToRelative(3.38f) - close() - moveTo(16.87f, 10.0f) - horizontalLineToRelative(3.38f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(22.0f, 15.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -5.03f, 3.87f) - curveToRelative(0.3f, -0.63f, 0.48f, -1.32f, 0.53f, -2.06f) - verticalLineToRelative(-5.06f) - curveToRelative(0.0f, -0.67f, -0.23f, -1.28f, -0.63f, -1.75f) - close() - moveTo(12.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) - close() - moveTo(18.5f, 4.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - moveTo(5.5f, 4.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - } - } - return _peopleTeam!! - } - -private var _peopleTeam: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleTeamAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleTeamAdd.kt deleted file mode 100644 index 6d8855f0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleTeamAdd.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PeopleTeamAdd: ImageVector - get() { - if (_peopleTeamAdd != null) { - return _peopleTeamAdd!! - } - _peopleTeamAdd = fluentIcon(name = "Filled.PeopleTeamAdd") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(17.5f, 14.0f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) - lineToRelative(-0.01f, 0.1f) - lineTo(17.0f, 17.0f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(0.18f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) - lineToRelative(0.1f, 0.01f) - lineTo(17.0f, 18.0f) - verticalLineToRelative(2.6f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - horizontalLineToRelative(0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) - lineToRelative(0.01f, -0.1f) - lineTo(18.0f, 18.0f) - horizontalLineToRelative(2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - verticalLineToRelative(-0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) - lineToRelative(-0.1f, -0.01f) - lineTo(18.0f, 17.0f) - verticalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) - horizontalLineToRelative(-0.09f) - close() - moveTo(14.25f, 10.0f) - curveToRelative(0.84f, 0.0f, 1.57f, 0.45f, 1.96f, 1.13f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) - lineTo(12.0f, 21.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -4.5f, -4.5f) - verticalLineToRelative(-4.25f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(4.5f) - close() - moveTo(7.41f, 10.0f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, -0.9f, 2.03f) - verticalLineToRelative(4.47f) - curveToRelative(0.0f, 0.85f, 0.18f, 1.65f, 0.52f, 2.36f) - arcTo(4.0f, 4.0f, 0.0f, false, true, 2.0f, 15.0f) - verticalLineToRelative(-2.74f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineToRelative(0.15f, -0.01f) - horizontalLineToRelative(3.16f) - close() - moveTo(19.75f, 10.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(0.56f) - arcTo(6.48f, 6.48f, 0.0f, false, false, 17.5f, 11.0f) - horizontalLineToRelative(-0.24f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -0.66f, -1.0f) - horizontalLineToRelative(3.15f) - close() - moveTo(18.5f, 4.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - moveTo(12.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) - close() - moveTo(5.5f, 4.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - } - } - return _peopleTeamAdd!! - } - -private var _peopleTeamAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleTeamDelete.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleTeamDelete.kt deleted file mode 100644 index 7ceaeb06..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleTeamDelete.kt +++ /dev/null @@ -1,100 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PeopleTeamDelete: ImageVector - get() { - if (_peopleTeamDelete != null) { - return _peopleTeamDelete!! - } - _peopleTeamDelete = fluentIcon(name = "Filled.PeopleTeamDelete") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(14.25f, 10.0f) - curveToRelative(0.84f, 0.0f, 1.57f, 0.45f, 1.96f, 1.13f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) - lineTo(12.0f, 21.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -4.5f, -4.5f) - verticalLineToRelative(-4.25f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(4.5f) - close() - moveTo(15.09f, 14.97f) - lineTo(15.02f, 15.02f) - lineTo(14.97f, 15.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.05f, 0.07f) - lineToRelative(1.77f, 1.77f) - lineToRelative(-1.76f, 1.77f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.06f, 0.06f) - lineToRelative(0.07f, 0.06f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) - lineToRelative(0.07f, -0.06f) - lineToRelative(1.77f, -1.76f) - lineToRelative(1.77f, 1.77f) - lineToRelative(0.07f, 0.05f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.57f, 0.0f) - lineToRelative(0.07f, -0.05f) - lineToRelative(0.05f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) - lineToRelative(-0.05f, -0.07f) - lineToRelative(-1.77f, -1.77f) - lineToRelative(1.77f, -1.77f) - lineToRelative(0.06f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) - lineToRelative(-0.06f, -0.07f) - lineToRelative(-0.07f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) - lineToRelative(-0.07f, 0.05f) - lineToRelative(-1.77f, 1.77f) - lineToRelative(-1.77f, -1.77f) - lineToRelative(-0.07f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.05f) - lineToRelative(-0.07f, 0.05f) - close() - moveTo(7.41f, 10.0f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, -0.9f, 2.03f) - verticalLineToRelative(4.47f) - curveToRelative(0.0f, 0.85f, 0.18f, 1.65f, 0.52f, 2.36f) - arcTo(4.0f, 4.0f, 0.0f, false, true, 2.0f, 15.0f) - verticalLineToRelative(-2.74f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineToRelative(0.15f, -0.01f) - horizontalLineToRelative(3.16f) - close() - moveTo(19.75f, 10.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(0.56f) - arcTo(6.48f, 6.48f, 0.0f, false, false, 17.5f, 11.0f) - horizontalLineToRelative(-0.24f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -0.66f, -1.0f) - horizontalLineToRelative(3.15f) - close() - moveTo(18.5f, 4.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - moveTo(12.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) - close() - moveTo(5.5f, 4.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - } - } - return _peopleTeamDelete!! - } - -private var _peopleTeamDelete: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleTeamToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleTeamToolbox.kt deleted file mode 100644 index b29df380..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PeopleTeamToolbox.kt +++ /dev/null @@ -1,110 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PeopleTeamToolbox: ImageVector - get() { - if (_peopleTeamToolbox != null) { - return _peopleTeamToolbox!! - } - _peopleTeamToolbox = fluentIcon(name = "Filled.PeopleTeamToolbox") { - fluentPath { - moveTo(14.75f, 10.0f) - curveToRelative(0.8f, 0.0f, 1.47f, 0.53f, 1.68f, 1.25f) - horizontalLineToRelative(-0.68f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 13.0f, 14.0f) - verticalLineToRelative(0.05f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.0f, 2.45f) - verticalLineToRelative(4.39f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -3.5f, -4.4f) - verticalLineToRelative(-4.74f) - curveToRelative(0.0f, -0.97f, 0.79f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(5.5f) - close() - moveTo(19.25f, 11.25f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 13.99f) - verticalLineToRelative(-2.24f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.38f) - curveToRelative(0.3f, 0.35f, 0.5f, 0.78f, 0.59f, 1.25f) - horizontalLineToRelative(1.79f) - close() - moveTo(7.13f, 10.0f) - curveToRelative(-0.35f, 0.42f, -0.57f, 0.95f, -0.62f, 1.53f) - verticalLineToRelative(4.97f) - curveToRelative(0.0f, 0.85f, 0.18f, 1.65f, 0.52f, 2.36f) - arcTo(4.0f, 4.0f, 0.0f, false, true, 2.0f, 15.0f) - verticalLineToRelative(-3.24f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) - lineToRelative(0.15f, -0.01f) - horizontalLineToRelative(3.38f) - close() - moveTo(12.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) - close() - moveTo(18.5f, 4.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - moveTo(5.5f, 4.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - moveTo(14.0f, 15.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - lineTo(12.0f, 18.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(16.0f, 18.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(20.5f, 18.0f) - lineTo(23.0f, 18.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(21.0f, 15.0f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(1.0f) - close() - moveTo(15.5f, 14.0f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(12.0f, 21.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - lineTo(23.0f, 19.5f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - close() - } - } - return _peopleTeamToolbox!! - } - -private var _peopleTeamToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonAccounts.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonAccounts.kt deleted file mode 100644 index c29e5659..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonAccounts.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonAccounts: ImageVector - get() { - if (_personAccounts != null) { - return _personAccounts!! - } - _personAccounts = fluentIcon(name = "Filled.PersonAccounts") { - fluentPath { - moveTo(13.0f, 14.05f) - lineTo(13.0f, 14.0f) - lineTo(4.25f, 14.0f) - curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) - verticalLineToRelative(0.92f) - curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) - curveTo(4.06f, 20.92f, 6.58f, 22.0f, 10.0f, 22.0f) - curveToRelative(0.36f, 0.0f, 0.7f, -0.01f, 1.04f, -0.03f) - curveToRelative(-0.03f, -0.15f, -0.04f, -0.31f, -0.04f, -0.47f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -1.2f, 0.86f, -2.22f, 2.0f, -2.45f) - close() - moveTo(10.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(14.0f, 15.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(8.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(21.0f, 15.0f) - verticalLineToRelative(-1.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(14.0f, 15.0f) - close() - moveTo(15.5f, 13.75f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - lineTo(19.5f, 15.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-1.25f) - close() - } - } - return _personAccounts!! - } - -private var _personAccounts: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonAdd.kt deleted file mode 100644 index 0b3bdaa2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonAdd.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonAdd: ImageVector - get() { - if (_personAdd != null) { - return _personAdd!! - } - _personAdd = fluentIcon(name = "Filled.PersonAdd") { - fluentPath { - moveTo(11.0f, 17.5f) - curveToRelative(0.0f, -1.29f, 0.38f, -2.49f, 1.02f, -3.5f) - lineTo(4.25f, 14.0f) - curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) - verticalLineToRelative(0.92f) - curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) - curveTo(4.06f, 20.92f, 6.58f, 22.0f, 10.0f, 22.0f) - curveToRelative(0.93f, 0.0f, 1.8f, -0.08f, 2.6f, -0.24f) - arcTo(6.48f, 6.48f, 0.0f, false, true, 11.0f, 17.5f) - close() - moveTo(15.0f, 7.0f) - arcTo(5.0f, 5.0f, 0.0f, true, false, 5.0f, 7.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 10.0f, 0.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(17.41f, 14.0f) - horizontalLineToRelative(0.18f) - curveToRelative(0.2f, 0.05f, 0.37f, 0.2f, 0.4f, 0.41f) - lineToRelative(0.01f, 0.09f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.6f) - curveToRelative(0.2f, 0.05f, 0.36f, 0.2f, 0.4f, 0.41f) - verticalLineToRelative(0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, 0.4f) - lineToRelative(-0.1f, 0.01f) - lineTo(18.0f, 18.0f) - verticalLineToRelative(2.59f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.41f, 0.4f) - lineToRelative(-0.09f, 0.01f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, -0.41f) - lineTo(17.0f, 20.5f) - lineTo(17.0f, 18.0f) - lineTo(14.4f, 18.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, -0.41f) - verticalLineToRelative(-0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.4f, -0.4f) - lineToRelative(0.1f, -0.01f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.59f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.41f, -0.4f) - close() - } - } - return _personAdd!! - } - -private var _personAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonAlert.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonAlert.kt deleted file mode 100644 index 8c6bf594..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonAlert.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonAlert: ImageVector - get() { - if (_personAlert != null) { - return _personAlert!! - } - _personAlert = fluentIcon(name = "Filled.PersonAlert") { - fluentPath { - moveTo(17.75f, 14.0f) - curveTo(19.0f, 14.0f, 20.0f, 15.0f, 20.0f, 16.25f) - verticalLineToRelative(0.92f) - curveToRelative(0.0f, 0.57f, -0.18f, 1.13f, -0.5f, 1.6f) - curveTo(17.93f, 20.93f, 15.41f, 22.0f, 12.0f, 22.0f) - horizontalLineToRelative(-0.48f) - curveToRelative(0.12f, -0.01f, 0.37f, -0.03f, 0.62f, -0.14f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.72f, -1.99f) - curveToRelative(-0.1f, -0.24f, -0.3f, -0.41f, -0.38f, -0.5f) - lineToRelative(-0.37f, -0.32f) - lineToRelative(-0.61f, -0.51f) - verticalLineTo(16.0f) - curveToRelative(0.0f, -0.71f, -0.15f, -1.39f, -0.42f, -2.0f) - horizontalLineToRelative(6.67f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(6.5f, 12.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, 4.0f) - verticalLineToRelative(3.0f) - lineToRelative(-0.95f, 0.8f) - curveToRelative(-0.3f, 0.26f, -0.46f, 0.39f, -0.5f, 0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.24f, 0.65f) - curveToRelative(0.1f, 0.05f, 0.3f, 0.05f, 0.7f, 0.05f) - horizontalLineToRelative(9.02f) - curveToRelative(0.4f, 0.0f, 0.6f, 0.0f, 0.7f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.25f, -0.66f) - curveToRelative(-0.05f, -0.1f, -0.2f, -0.23f, -0.5f, -0.49f) - lineToRelative(-0.96f, -0.8f) - verticalLineToRelative(-3.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, -4.0f) - close() - moveTo(8.0f, 22.0f) - curveToRelative(-0.22f, 0.58f, -0.8f, 1.0f, -1.5f, 1.0f) - curveToRelative(-0.69f, 0.0f, -1.28f, -0.42f, -1.5f, -1.0f) - horizontalLineToRelative(3.0f) - close() - } - } - return _personAlert!! - } - -private var _personAlert: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonArrowBack.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonArrowBack.kt deleted file mode 100644 index fea838e9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonArrowBack.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonArrowBack: ImageVector - get() { - if (_personArrowBack != null) { - return _personArrowBack!! - } - _personArrowBack = fluentIcon(name = "Filled.PersonArrowBack") { - fluentPath { - moveTo(11.0f, 17.5f) - curveToRelative(0.0f, -1.29f, 0.38f, -2.49f, 1.02f, -3.5f) - lineTo(4.25f, 14.0f) - curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) - verticalLineToRelative(0.92f) - curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) - curveTo(4.06f, 20.92f, 6.58f, 22.0f, 10.0f, 22.0f) - curveToRelative(0.93f, 0.0f, 1.8f, -0.08f, 2.6f, -0.24f) - arcTo(6.47f, 6.47f, 0.0f, false, true, 11.0f, 17.5f) - close() - moveTo(10.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(16.35f, 15.35f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(1.5f, 1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-0.64f, -0.65f) - horizontalLineToRelative(2.04f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(0.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-0.25f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-2.04f) - lineToRelative(0.64f, -0.65f) - close() - } - } - return _personArrowBack!! - } - -private var _personArrowBack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonArrowLeft.kt deleted file mode 100644 index 0db4f05e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonArrowLeft.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonArrowLeft: ImageVector - get() { - if (_personArrowLeft != null) { - return _personArrowLeft!! - } - _personArrowLeft = fluentIcon(name = "Filled.PersonArrowLeft") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(12.02f, 14.0f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, 0.6f, 7.8f) - curveToRelative(-0.8f, 0.13f, -1.68f, 0.2f, -2.62f, 0.2f) - curveToRelative(-2.89f, 0.0f, -5.13f, -0.66f, -6.7f, -2.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 2.0f, 17.16f) - verticalLineToRelative(-0.91f) - curveTo(2.0f, 15.01f, 3.01f, 14.0f, 4.25f, 14.0f) - horizontalLineToRelative(7.77f) - close() - moveTo(16.72f, 14.59f) - lineTo(16.65f, 14.65f) - lineTo(14.13f, 17.16f) - lineTo(14.09f, 17.21f) - lineTo(14.06f, 17.27f) - lineTo(14.03f, 17.35f) - lineTo(14.02f, 17.39f) - lineTo(14.0f, 17.48f) - verticalLineToRelative(0.09f) - lineToRelative(0.03f, 0.08f) - lineToRelative(0.03f, 0.08f) - lineToRelative(0.02f, 0.04f) - lineToRelative(0.05f, 0.07f) - lineToRelative(2.52f, 2.51f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.77f, -0.63f) - lineToRelative(-0.06f, -0.07f) - lineTo(15.7f, 18.0f) - horizontalLineToRelative(4.79f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.41f) - verticalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.5f) - horizontalLineToRelative(-4.88f) - lineToRelative(1.65f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.06f, -0.63f) - lineToRelative(-0.06f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.64f, -0.06f) - close() - moveTo(10.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - } - } - return _personArrowLeft!! - } - -private var _personArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonArrowRight.kt deleted file mode 100644 index d0d00862..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonArrowRight.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonArrowRight: ImageVector - get() { - if (_personArrowRight != null) { - return _personArrowRight!! - } - _personArrowRight = fluentIcon(name = "Filled.PersonArrowRight") { - fluentPath { - moveTo(11.0f, 17.5f) - curveToRelative(0.0f, -1.29f, 0.38f, -2.49f, 1.02f, -3.5f) - lineTo(4.25f, 14.0f) - curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) - verticalLineToRelative(0.92f) - curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) - curveTo(4.06f, 20.92f, 6.58f, 22.0f, 10.0f, 22.0f) - curveToRelative(0.93f, 0.0f, 1.8f, -0.08f, 2.6f, -0.24f) - arcTo(6.47f, 6.47f, 0.0f, false, true, 11.0f, 17.5f) - close() - moveTo(10.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(18.35f, 14.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(19.29f, 17.0f) - lineTo(15.0f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) - horizontalLineToRelative(4.3f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.15f, -0.34f) - verticalLineToRelative(-0.01f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.15f, -0.36f) - lineToRelative(-2.5f, -2.5f) - close() - } - } - return _personArrowRight!! - } - -private var _personArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonAvailable.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonAvailable.kt deleted file mode 100644 index 6bcb33f2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonAvailable.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonAvailable: ImageVector - get() { - if (_personAvailable != null) { - return _personAvailable!! - } - _personAvailable = fluentIcon(name = "Filled.PersonAvailable") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(12.02f, 14.0f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, 0.57f, 7.76f) - curveToRelative(-0.8f, 0.16f, -1.66f, 0.24f, -2.59f, 0.24f) - curveToRelative(-3.42f, 0.0f, -5.94f, -1.07f, -7.49f, -3.24f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.5f, -1.6f) - verticalLineToRelative(-0.91f) - curveTo(2.0f, 15.0f, 3.0f, 14.0f, 4.24f, 14.0f) - horizontalLineToRelative(7.77f) - close() - moveTo(14.85f, 17.15f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.7f, -0.7f) - lineToRelative(-3.65f, 3.64f) - lineToRelative(-1.65f, -1.64f) - close() - moveTo(10.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - } - } - return _personAvailable!! - } - -private var _personAvailable: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonBoard.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonBoard.kt deleted file mode 100644 index 0c0ab79b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonBoard.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonBoard: ImageVector - get() { - if (_personBoard != null) { - return _personBoard!! - } - _personBoard = fluentIcon(name = "Filled.PersonBoard") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(8.5f) - curveTo(3.0f, 16.55f, 4.46f, 18.0f, 6.25f, 18.0f) - horizontalLineToRelative(8.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-8.5f) - curveTo(18.0f, 4.45f, 16.54f, 3.0f, 14.75f, 3.0f) - horizontalLineToRelative(-8.5f) - close() - moveTo(12.75f, 7.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.5f, 0.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.5f, 0.0f) - close() - moveTo(13.5f, 10.75f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 0.5f, -0.09f, 0.86f, -0.25f, 1.16f) - curveToRelative(-0.17f, 0.3f, -0.43f, 0.56f, -0.82f, 0.83f) - curveToRelative(-0.73f, 0.5f, -1.86f, 0.76f, -3.43f, 0.76f) - arcToRelative(6.12f, 6.12f, 0.0f, false, true, -3.24f, -0.76f) - arcToRelative(3.1f, 3.1f, 0.0f, false, true, -0.94f, -0.83f) - curveToRelative(-0.2f, -0.3f, -0.32f, -0.66f, -0.32f, -1.16f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(6.0f) - close() - moveTo(6.01f, 19.0f) - curveToRelative(0.58f, 0.9f, 1.59f, 1.5f, 2.74f, 1.5f) - horizontalLineToRelative(6.5f) - curveToRelative(2.9f, 0.0f, 5.25f, -2.35f, 5.25f, -5.25f) - verticalLineToRelative(-6.5f) - curveToRelative(0.0f, -1.15f, -0.6f, -2.16f, -1.5f, -2.74f) - verticalLineToRelative(9.24f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 15.25f, 19.0f) - lineTo(6.01f, 19.0f) - close() - } - } - return _personBoard!! - } - -private var _personBoard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonCall.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonCall.kt deleted file mode 100644 index c205d2f7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonCall.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonCall: ImageVector - get() { - if (_personCall != null) { - return _personCall!! - } - _personCall = fluentIcon(name = "Filled.PersonCall") { - fluentPath { - moveTo(17.72f, 15.95f) - arcToRelative(2.2f, 2.2f, 0.0f, false, true, -0.57f, -1.95f) - lineTo(6.25f, 14.0f) - curveTo(5.01f, 14.0f, 4.0f, 15.0f, 4.0f, 16.25f) - verticalLineToRelative(0.92f) - curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) - curveTo(6.06f, 20.92f, 8.58f, 22.0f, 12.0f, 22.0f) - arcToRelative(15.0f, 15.0f, 0.0f, false, false, 1.13f, -0.04f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.36f, -2.16f) - lineToRelative(0.8f, -1.01f) - arcToRelative(2.2f, 2.2f, 0.0f, false, true, 2.23f, -0.77f) - lineToRelative(0.84f, 0.2f) - curveToRelative(0.52f, -0.43f, 0.83f, -0.97f, 0.95f, -1.64f) - lineToRelative(-0.6f, -0.63f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(18.2f, 14.0f) - lineTo(18.67f, 12.79f) - curveToRelative(0.24f, -0.61f, 0.92f, -0.93f, 1.55f, -0.73f) - lineToRelative(0.43f, 0.14f) - curveToRelative(0.72f, 0.24f, 1.32f, 0.8f, 1.35f, 1.57f) - curveToRelative(0.1f, 3.11f, -2.48f, 7.58f, -5.22f, 9.06f) - curveToRelative(-0.67f, 0.36f, -1.46f, 0.12f, -2.03f, -0.4f) - lineToRelative(-0.34f, -0.3f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.14f, -1.7f) - lineToRelative(0.8f, -1.02f) - arcToRelative(1.2f, 1.2f, 0.0f, false, true, 1.22f, -0.42f) - lineToRelative(1.3f, 0.32f) - arcToRelative(3.78f, 3.78f, 0.0f, false, false, 1.77f, -3.08f) - lineToRelative(-0.92f, -0.96f) - arcToRelative(1.2f, 1.2f, 0.0f, false, true, -0.25f, -1.28f) - close() - } - } - return _personCall!! - } - -private var _personCall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonChat.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonChat.kt deleted file mode 100644 index 0b5967b7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonChat.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonChat: ImageVector - get() { - if (_personChat != null) { - return _personChat!! - } - _personChat = fluentIcon(name = "Filled.PersonChat") { - fluentPath { - moveTo(11.0f, 17.5f) - curveToRelative(0.0f, -1.29f, 0.37f, -2.5f, 1.02f, -3.5f) - lineTo(6.25f, 14.0f) - curveTo(5.0f, 14.0f, 4.0f, 15.0f, 4.0f, 16.25f) - verticalLineToRelative(0.92f) - curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) - curveToRelative(1.4f, 1.96f, 3.62f, 3.03f, 6.58f, 3.2f) - lineToRelative(0.52f, -1.7f) - arcTo(6.48f, 6.48f, 0.0f, false, true, 11.0f, 17.5f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, -8.17f, 4.81f) - lineToRelative(-2.19f, 0.67f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.62f, -0.63f) - lineToRelative(0.67f, -2.18f) - arcTo(5.5f, 5.5f, 0.0f, true, true, 23.0f, 17.5f) - close() - moveTo(15.5f, 16.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) - horizontalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(15.0f, 18.5f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - close() - } - } - return _personChat!! - } - -private var _personChat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonCircle.kt deleted file mode 100644 index 034c1953..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonCircle.kt +++ /dev/null @@ -1,39 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonCircle: ImageVector - get() { - if (_personCircle != null) { - return _personCircle!! - } - _personCircle = fluentIcon(name = "Filled.PersonCircle") { - fluentPath { - moveTo(12.0f, 22.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, -20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, 20.0f) - close() - moveTo(17.0f, 13.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - horizontalLineToRelative(-7.0f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 1.97f, 1.86f, 4.0f, 5.0f, 4.0f) - curveToRelative(3.14f, 0.0f, 5.0f, -2.03f, 5.0f, -4.0f) - verticalLineToRelative(-0.5f) - close() - moveTo(14.75f, 8.25f) - arcToRelative(2.75f, 2.75f, 0.0f, true, false, -5.5f, 0.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 5.5f, 0.0f) - close() - } - } - return _personCircle!! - } - -private var _personCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonClock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonClock.kt deleted file mode 100644 index 4e42a386..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonClock.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonClock: ImageVector - get() { - if (_personClock != null) { - return _personClock!! - } - _personClock = fluentIcon(name = "Filled.PersonClock") { - fluentPath { - moveTo(11.0f, 17.5f) - curveToRelative(0.0f, -1.29f, 0.38f, -2.49f, 1.02f, -3.5f) - lineTo(4.25f, 14.0f) - curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) - verticalLineToRelative(0.58f) - curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) - curveTo(4.47f, 21.1f, 6.85f, 22.0f, 10.0f, 22.0f) - curveToRelative(0.93f, 0.0f, 1.8f, -0.08f, 2.6f, -0.24f) - arcTo(6.48f, 6.48f, 0.0f, false, true, 11.0f, 17.5f) - close() - moveTo(10.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(19.5f, 17.5f) - horizontalLineToRelative(-2.0f) - lineTo(17.5f, 15.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -1.0f, 0.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - close() - } - } - return _personClock!! - } - -private var _personClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonDelete.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonDelete.kt deleted file mode 100644 index 8abe0751..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonDelete.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonDelete: ImageVector - get() { - if (_personDelete != null) { - return _personDelete!! - } - _personDelete = fluentIcon(name = "Filled.PersonDelete") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(12.02f, 14.0f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, 0.6f, 7.8f) - curveToRelative(-0.8f, 0.13f, -1.68f, 0.2f, -2.62f, 0.2f) - curveToRelative(-2.89f, 0.0f, -5.13f, -0.66f, -6.7f, -2.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 2.0f, 17.16f) - verticalLineToRelative(-0.91f) - curveTo(2.0f, 15.01f, 3.01f, 14.0f, 4.25f, 14.0f) - horizontalLineToRelative(7.77f) - close() - moveTo(15.09f, 14.97f) - lineTo(15.02f, 15.02f) - lineTo(14.97f, 15.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.05f, 0.07f) - lineToRelative(1.77f, 1.77f) - lineToRelative(-1.76f, 1.77f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.06f, 0.06f) - lineToRelative(0.07f, 0.06f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) - lineToRelative(0.07f, -0.06f) - lineToRelative(1.77f, -1.76f) - lineToRelative(1.77f, 1.77f) - lineToRelative(0.07f, 0.05f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.57f, 0.0f) - lineToRelative(0.07f, -0.05f) - lineToRelative(0.05f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) - lineToRelative(-0.05f, -0.07f) - lineToRelative(-1.77f, -1.77f) - lineToRelative(1.77f, -1.77f) - lineToRelative(0.06f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) - lineToRelative(-0.06f, -0.07f) - lineToRelative(-0.07f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) - lineToRelative(-0.07f, 0.05f) - lineToRelative(-1.77f, 1.77f) - lineToRelative(-1.77f, -1.77f) - lineToRelative(-0.07f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.49f, -0.05f) - lineToRelative(-0.08f, 0.05f) - close() - moveTo(10.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - } - } - return _personDelete!! - } - -private var _personDelete: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonEdit.kt deleted file mode 100644 index 03374b4f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonEdit.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonEdit: ImageVector - get() { - if (_personEdit != null) { - return _personEdit!! - } - _personEdit = fluentIcon(name = "Filled.PersonEdit") { - fluentPath { - moveTo(12.5f, 17.86f) - lineTo(16.35f, 14.0f) - lineTo(6.26f, 14.0f) - curveTo(5.0f, 14.0f, 4.0f, 15.0f, 4.0f, 16.25f) - verticalLineToRelative(0.92f) - curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) - curveToRelative(1.4f, 1.94f, 3.57f, 3.0f, 6.49f, 3.2f) - curveToRelative(0.0f, -0.18f, 0.02f, -0.37f, 0.06f, -0.56f) - lineToRelative(0.46f, -1.83f) - curveToRelative(0.16f, -0.65f, 0.5f, -1.24f, 0.97f, -1.71f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _personEdit!! - } - -private var _personEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonFeedback.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonFeedback.kt deleted file mode 100644 index 40d43408..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonFeedback.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonFeedback: ImageVector - get() { - if (_personFeedback != null) { - return _personFeedback!! - } - _personFeedback = fluentIcon(name = "Filled.PersonFeedback") { - fluentPath { - moveTo(14.77f, 12.4f) - curveToRelative(0.15f, 0.07f, 0.32f, 0.1f, 0.48f, 0.1f) - curveToRelative(0.33f, 0.0f, 0.64f, -0.13f, 0.88f, -0.36f) - lineTo(18.31f, 10.0f) - horizontalLineToRelative(0.94f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 7.25f) - verticalLineToRelative(-2.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 2.0f) - horizontalLineToRelative(-4.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 12.0f, 4.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 1.26f, 0.85f, 2.32f, 2.0f, 2.65f) - verticalLineToRelative(1.35f) - curveToRelative(0.0f, 0.5f, 0.31f, 0.95f, 0.77f, 1.15f) - close() - moveTo(8.0f, 13.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 0.0f, -7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 0.0f, 7.0f) - close() - moveTo(8.0f, 22.0f) - curveToRelative(-2.06f, 0.0f, -3.64f, -0.56f, -4.7f, -1.67f) - curveToRelative(-1.34f, -1.4f, -1.3f, -3.17f, -1.3f, -3.36f) - verticalLineToRelative(-0.01f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 4.0f, 15.0f) - horizontalLineToRelative(8.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - curveToRelative(0.0f, 0.13f, 0.05f, 1.92f, -1.3f, 3.33f) - curveTo(11.64f, 21.44f, 10.06f, 22.0f, 8.0f, 22.0f) - close() - } - } - return _personFeedback!! - } - -private var _personFeedback: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonHeart.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonHeart.kt deleted file mode 100644 index a6ca8c94..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonHeart.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonHeart: ImageVector - get() { - if (_personHeart != null) { - return _personHeart!! - } - _personHeart = fluentIcon(name = "Filled.PersonHeart") { - fluentPath { - moveTo(11.4f, 19.07f) - arcToRelative(4.47f, 4.47f, 0.0f, false, true, -0.88f, -5.07f) - lineTo(4.25f, 14.0f) - curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) - verticalLineToRelative(0.92f) - curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) - curveTo(4.06f, 20.92f, 6.58f, 22.0f, 10.0f, 22.0f) - curveToRelative(1.41f, 0.0f, 2.67f, -0.18f, 3.77f, -0.55f) - lineToRelative(-2.37f, -2.38f) - close() - moveTo(10.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(17.04f, 23.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.53f, -0.22f) - lineToRelative(-4.4f, -4.41f) - arcToRelative(3.47f, 3.47f, 0.0f, false, true, 4.9f, -4.9f) - lineToRelative(0.03f, 0.03f) - lineToRelative(0.04f, -0.04f) - arcToRelative(3.47f, 3.47f, 0.0f, false, true, 4.9f, 4.9f) - lineToRelative(-4.4f, 4.42f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.22f) - close() - } - } - return _personHeart!! - } - -private var _personHeart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonLightbulb.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonLightbulb.kt deleted file mode 100644 index 99e2263b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonLightbulb.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonLightbulb: ImageVector - get() { - if (_personLightbulb != null) { - return _personLightbulb!! - } - _personLightbulb = fluentIcon(name = "Filled.PersonLightbulb") { - fluentPath { - moveTo(13.0f, 16.0f) - curveToRelative(0.0f, -0.71f, 0.15f, -1.39f, 0.42f, -2.0f) - lineTo(6.25f, 14.0f) - curveTo(5.01f, 14.0f, 4.0f, 15.0f, 4.0f, 16.25f) - verticalLineToRelative(0.92f) - curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) - curveTo(6.06f, 20.92f, 8.58f, 22.0f, 12.0f, 22.0f) - curveToRelative(1.18f, 0.0f, 2.24f, -0.13f, 3.2f, -0.38f) - lineToRelative(-0.34f, -1.73f) - arcTo(5.0f, 5.0f, 0.0f, false, true, 13.0f, 16.0f) - close() - moveTo(17.0f, 7.0f) - arcTo(5.0f, 5.0f, 0.0f, true, false, 7.0f, 7.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 10.0f, 0.0f) - close() - moveTo(22.0f, 16.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -1.76f, 3.32f) - lineToRelative(-0.14f, 0.68f) - horizontalLineToRelative(-4.2f) - lineToRelative(-0.14f, -0.68f) - arcTo(4.0f, 4.0f, 0.0f, true, true, 22.0f, 16.0f) - close() - moveTo(16.1f, 21.0f) - lineTo(16.26f, 21.8f) - curveToRelative(0.14f, 0.7f, 0.76f, 1.2f, 1.47f, 1.2f) - horizontalLineToRelative(0.54f) - curveToRelative(0.72f, 0.0f, 1.33f, -0.5f, 1.47f, -1.2f) - lineToRelative(0.16f, -0.8f) - horizontalLineToRelative(-3.8f) - close() - } - } - return _personLightbulb!! - } - -private var _personLightbulb: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonLink.kt deleted file mode 100644 index a0b0047d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonLink.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonLink: ImageVector - get() { - if (_personLink != null) { - return _personLink!! - } - _personLink = fluentIcon(name = "Filled.PersonLink") { - fluentPath { - moveTo(16.75f, 14.0f) - curveToRelative(0.78f, 0.0f, 1.47f, 0.4f, 1.88f, 1.0f) - horizontalLineToRelative(-2.88f) - arcToRelative(4.75f, 4.75f, 0.0f, false, false, -4.19f, 6.99f) - lineTo(11.0f, 22.0f) - curveToRelative(-3.42f, 0.0f, -5.94f, -1.07f, -7.49f, -3.24f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.5f, -1.6f) - verticalLineToRelative(-0.91f) - curveTo(3.0f, 15.0f, 4.0f, 14.0f, 5.24f, 14.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(11.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(23.0f, 19.75f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 19.25f, 16.0f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - verticalLineToRelative(-0.01f) - horizontalLineToRelative(0.2f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 19.74f) - close() - moveTo(16.5f, 16.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-0.2f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(20.0f, 19.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - } - } - return _personLink!! - } - -private var _personLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonLock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonLock.kt deleted file mode 100644 index 2d5592f2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonLock.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonLock: ImageVector - get() { - if (_personLock != null) { - return _personLock!! - } - _personLock = fluentIcon(name = "Filled.PersonLock") { - fluentPath { - moveTo(14.0f, 14.05f) - lineTo(14.0f, 14.0f) - lineTo(4.25f, 14.0f) - curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) - verticalLineToRelative(0.92f) - curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) - curveTo(4.06f, 20.92f, 6.58f, 22.0f, 10.0f, 22.0f) - curveToRelative(0.71f, 0.0f, 1.39f, -0.05f, 2.03f, -0.14f) - arcToRelative(2.51f, 2.51f, 0.0f, false, true, -0.03f, -0.36f) - verticalLineToRelative(-5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.0f, -2.45f) - close() - moveTo(10.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(15.0f, 15.0f) - verticalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(0.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-6.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(0.5f) - close() - moveTo(16.5f, 14.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - close() - moveTo(18.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - } - } - return _personLock!! - } - -private var _personLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonMail.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonMail.kt deleted file mode 100644 index 7e7b05a6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonMail.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonMail: ImageVector - get() { - if (_personMail != null) { - return _personMail!! - } - _personMail = fluentIcon(name = "Filled.PersonMail") { - fluentPath { - moveTo(11.0f, 15.5f) - curveToRelative(0.0f, -0.56f, 0.19f, -1.08f, 0.5f, -1.5f) - lineTo(5.25f, 14.0f) - curveTo(4.01f, 14.0f, 3.0f, 15.0f, 3.0f, 16.25f) - verticalLineToRelative(0.92f) - curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) - curveTo(5.06f, 20.92f, 7.58f, 22.0f, 11.0f, 22.0f) - horizontalLineToRelative(0.05f) - arcToRelative(2.51f, 2.51f, 0.0f, false, true, -0.05f, -0.5f) - verticalLineToRelative(-6.0f) - close() - moveTo(11.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(17.51f, 18.93f) - lineTo(12.01f, 15.73f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, -1.73f) - lineTo(21.0f, 14.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 1.97f) - lineToRelative(-5.49f, 2.96f) - close() - moveTo(17.74f, 19.94f) - lineTo(23.0f, 17.11f) - lineTo(23.0f, 21.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - verticalLineToRelative(-4.13f) - lineToRelative(5.25f, 3.06f) - curveToRelative(0.15f, 0.09f, 0.33f, 0.1f, 0.49f, 0.01f) - close() - } - } - return _personMail!! - } - -private var _personMail: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonMoney.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonMoney.kt deleted file mode 100644 index bc5a50d6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonMoney.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonMoney: ImageVector - get() { - if (_personMoney != null) { - return _personMoney!! - } - _personMoney = fluentIcon(name = "Filled.PersonMoney") { - fluentPath { - moveTo(17.75f, 14.0f) - curveToRelative(0.78f, 0.0f, 1.47f, 0.4f, 1.87f, 1.0f) - lineTo(13.5f, 15.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.5f, 2.5f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.16f, 0.02f, 0.32f, 0.04f, 0.47f) - curveToRelative(-2.93f, -0.18f, -5.13f, -1.25f, -6.53f, -3.2f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.5f, -1.6f) - verticalLineToRelative(-0.92f) - curveTo(4.0f, 15.0f, 5.0f, 14.0f, 6.24f, 14.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(12.0f, 17.5f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(8.0f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - verticalLineToRelative(-4.0f) - close() - moveTo(22.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - horizontalLineToRelative(-1.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(22.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(14.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - verticalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - horizontalLineToRelative(-1.0f) - close() - moveTo(15.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - verticalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - horizontalLineToRelative(1.0f) - close() - moveTo(19.25f, 19.5f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, -3.5f, 0.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 3.5f, 0.0f) - close() - } - } - return _personMoney!! - } - -private var _personMoney: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonNote.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonNote.kt deleted file mode 100644 index 9faca29c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonNote.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonNote: ImageVector - get() { - if (_personNote != null) { - return _personNote!! - } - _personNote = fluentIcon(name = "Filled.PersonNote") { - fluentPath { - moveTo(11.0f, 15.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.17f, -1.0f) - lineTo(4.25f, 14.0f) - curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) - verticalLineToRelative(0.92f) - curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) - curveTo(4.06f, 20.92f, 6.58f, 22.0f, 10.0f, 22.0f) - curveToRelative(0.4f, 0.0f, 0.78f, -0.01f, 1.16f, -0.04f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 11.0f, 21.0f) - verticalLineToRelative(-6.0f) - close() - moveTo(10.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(12.0f, 15.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - verticalLineToRelative(6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - verticalLineToRelative(-6.0f) - close() - moveTo(14.5f, 16.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) - horizontalLineToRelative(6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) - horizontalLineToRelative(-6.0f) - close() - moveTo(14.5f, 19.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) - horizontalLineToRelative(6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) - horizontalLineToRelative(-6.0f) - close() - } - } - return _personNote!! - } - -private var _personNote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonPill.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonPill.kt deleted file mode 100644 index 4ba762d8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonPill.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonPill: ImageVector - get() { - if (_personPill != null) { - return _personPill!! - } - _personPill = fluentIcon(name = "Filled.PersonPill") { - fluentPath { - moveTo(11.68f, 22.0f) - curveToRelative(-0.9f, -1.5f, -0.7f, -3.45f, 0.58f, -4.74f) - lineTo(15.53f, 14.0f) - lineTo(6.25f, 14.0f) - curveTo(5.01f, 14.0f, 4.0f, 15.0f, 4.0f, 16.25f) - verticalLineToRelative(0.92f) - curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) - curveToRelative(1.5f, 2.1f, 3.91f, 3.16f, 7.17f, 3.23f) - close() - moveTo(17.0f, 7.0f) - arcTo(5.0f, 5.0f, 0.0f, true, false, 7.0f, 7.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 10.0f, 0.0f) - close() - moveTo(17.97f, 12.97f) - arcToRelative(2.87f, 2.87f, 0.0f, false, true, 4.06f, 4.06f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(2.87f, 2.87f, 0.0f, false, true, -4.06f, -4.06f) - lineToRelative(5.0f, -5.0f) - close() - moveTo(20.97f, 14.03f) - arcToRelative(1.37f, 1.37f, 0.0f, false, false, -1.94f, 0.0f) - lineTo(17.06f, 16.0f) - lineTo(19.0f, 17.94f) - lineToRelative(1.97f, -1.97f) - curveToRelative(0.54f, -0.54f, 0.54f, -1.4f, 0.0f, -1.94f) - close() - moveTo(17.03f, 20.03f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-1.0f, 1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(1.0f, -1.0f) - close() - } - } - return _personPill!! - } - -private var _personPill: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonProhibited.kt deleted file mode 100644 index 81eec06e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonProhibited.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonProhibited: ImageVector - get() { - if (_personProhibited != null) { - return _personProhibited!! - } - _personProhibited = fluentIcon(name = "Filled.PersonProhibited") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(12.02f, 14.0f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, 0.6f, 7.79f) - curveToRelative(-0.8f, 0.14f, -1.68f, 0.21f, -2.62f, 0.21f) - curveToRelative(-2.89f, 0.0f, -5.13f, -0.66f, -6.7f, -2.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 2.0f, 17.16f) - verticalLineToRelative(-0.91f) - curveTo(2.0f, 15.01f, 3.01f, 14.0f, 4.25f, 14.0f) - horizontalLineToRelative(7.77f) - close() - moveTo(20.81f, 15.25f) - lineTo(15.25f, 20.81f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 5.56f, -5.56f) - close() - moveTo(17.5f, 13.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -3.3f, 6.25f) - lineToRelative(5.55f, -5.56f) - arcToRelative(3.98f, 3.98f, 0.0f, false, false, -2.25f, -0.69f) - close() - moveTo(10.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - } - } - return _personProhibited!! - } - -private var _personProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonQuestionMark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonQuestionMark.kt deleted file mode 100644 index 7b2da7e6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonQuestionMark.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonQuestionMark: ImageVector - get() { - if (_personQuestionMark != null) { - return _personQuestionMark!! - } - _personQuestionMark = fluentIcon(name = "Filled.PersonQuestionMark") { - fluentPath { - moveTo(12.02f, 14.0f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, 0.57f, 7.76f) - curveToRelative(-0.8f, 0.16f, -1.66f, 0.24f, -2.59f, 0.24f) - curveToRelative(-3.42f, 0.0f, -5.94f, -1.07f, -7.49f, -3.24f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.5f, -1.6f) - verticalLineToRelative(-0.91f) - curveTo(2.0f, 15.0f, 3.0f, 14.0f, 4.24f, 14.0f) - horizontalLineToRelative(7.77f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(17.5f, 19.75f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, 1.25f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, -1.25f) - close() - moveTo(17.5f, 13.87f) - curveToRelative(-1.05f, 0.0f, -1.86f, 0.82f, -1.85f, 1.96f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, -0.01f) - curveToRelative(0.0f, -0.58f, 0.36f, -0.95f, 0.85f, -0.95f) - curveToRelative(0.47f, 0.0f, 0.85f, 0.4f, 0.85f, 0.95f) - curveToRelative(0.0f, 0.2f, -0.05f, 0.35f, -0.22f, 0.57f) - lineToRelative(-0.1f, 0.11f) - lineToRelative(-0.1f, 0.11f) - lineToRelative(-0.26f, 0.3f) - lineToRelative(-0.14f, 0.15f) - curveToRelative(-0.38f, 0.46f, -0.53f, 0.8f, -0.53f, 1.31f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) - curveToRelative(0.0f, -0.2f, 0.06f, -0.36f, 0.24f, -0.59f) - lineToRelative(0.08f, -0.1f) - lineToRelative(0.1f, -0.12f) - lineToRelative(0.27f, -0.29f) - lineToRelative(0.14f, -0.15f) - curveToRelative(0.37f, -0.45f, 0.52f, -0.79f, 0.52f, -1.3f) - curveToRelative(0.0f, -1.1f, -0.82f, -1.95f, -1.85f, -1.95f) - close() - moveTo(10.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - } - } - return _personQuestionMark!! - } - -private var _personQuestionMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonSearch.kt deleted file mode 100644 index 6ed59a08..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonSearch.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonSearch: ImageVector - get() { - if (_personSearch != null) { - return _personSearch!! - } - _personSearch = fluentIcon(name = "Filled.PersonSearch") { - fluentPath { - moveTo(11.9f, 14.0f) - horizontalLineToRelative(7.85f) - curveTo(21.0f, 14.0f, 22.0f, 15.0f, 22.0f, 16.25f) - verticalLineToRelative(0.9f) - curveToRelative(0.0f, 1.1f, -0.47f, 2.14f, -1.3f, 2.85f) - curveToRelative(-1.57f, 1.34f, -3.81f, 2.0f, -6.7f, 2.0f) - horizontalLineToRelative(-0.18f) - curveToRelative(0.3f, -0.6f, 0.23f, -1.36f, -0.22f, -1.9f) - lineToRelative(-0.11f, -0.12f) - lineToRelative(-2.23f, -2.22f) - arcTo(5.48f, 5.48f, 0.0f, false, false, 11.9f, 14.0f) - close() - moveTo(6.5f, 10.5f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 3.46f, 7.38f) - lineToRelative(2.82f, 2.81f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 1.14f) - lineToRelative(-0.09f, -0.08f) - lineToRelative(-2.9f, -2.9f) - arcTo(4.5f, 4.5f, 0.0f, true, true, 6.5f, 10.5f) - close() - moveTo(6.5f, 12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - moveTo(14.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - } - } - return _personSearch!! - } - -private var _personSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonSquare.kt deleted file mode 100644 index defef8b5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonSquare.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonSquare: ImageVector - get() { - if (_personSquare != null) { - return _personSquare!! - } - _personSquare = fluentIcon(name = "Filled.PersonSquare") { - fluentPath { - moveTo(3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineTo(6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - horizontalLineTo(6.25f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - close() - moveTo(15.5f, 12.0f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 1.97f, -1.86f, 4.0f, -5.0f, 4.0f) - curveToRelative(-3.14f, 0.0f, -5.0f, -2.03f, -5.0f, -4.0f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(7.0f) - close() - moveTo(12.0f, 5.5f) - arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, 5.5f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.0f, -5.5f) - close() - } - } - return _personSquare!! - } - -private var _personSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonStar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonStar.kt deleted file mode 100644 index 0ea4f30e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonStar.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonStar: ImageVector - get() { - if (_personStar != null) { - return _personStar!! - } - _personStar = fluentIcon(name = "Filled.PersonStar") { - fluentPath { - moveTo(11.0f, 17.5f) - curveToRelative(0.0f, -1.29f, 0.38f, -2.49f, 1.02f, -3.5f) - lineTo(5.25f, 14.0f) - curveTo(4.01f, 14.0f, 3.0f, 15.0f, 3.0f, 16.25f) - verticalLineToRelative(0.92f) - curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) - curveTo(5.06f, 20.92f, 7.58f, 22.0f, 11.0f, 22.0f) - curveToRelative(0.6f, 0.0f, 1.17f, -0.03f, 1.72f, -0.1f) - arcTo(6.48f, 6.48f, 0.0f, false, true, 11.0f, 17.5f) - close() - moveTo(11.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(18.06f, 14.42f) - arcToRelative(0.58f, 0.58f, 0.0f, false, false, -1.12f, 0.0f) - lineToRelative(-0.55f, 1.79f) - horizontalLineToRelative(-1.8f) - curveToRelative(-0.57f, 0.0f, -0.8f, 0.75f, -0.35f, 1.1f) - lineToRelative(1.46f, 1.1f) - lineToRelative(-0.56f, 1.79f) - curveToRelative(-0.17f, 0.56f, 0.44f, 1.03f, 0.9f, 0.68f) - lineToRelative(1.46f, -1.1f) - lineToRelative(1.46f, 1.1f) - curveToRelative(0.46f, 0.35f, 1.07f, -0.12f, 0.9f, -0.68f) - lineToRelative(-0.56f, -1.79f) - lineToRelative(1.46f, -1.1f) - curveToRelative(0.46f, -0.35f, 0.22f, -1.1f, -0.35f, -1.1f) - horizontalLineToRelative(-1.8f) - lineToRelative(-0.55f, -1.79f) - close() - } - } - return _personStar!! - } - -private var _personStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonStarburst.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonStarburst.kt deleted file mode 100644 index be7f4e3c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonStarburst.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonStarburst: ImageVector - get() { - if (_personStarburst != null) { - return _personStarburst!! - } - _personStarburst = fluentIcon(name = "Filled.PersonStarburst") { - fluentPath { - moveTo(13.49f, 3.05f) - arcToRelative(1.43f, 1.43f, 0.0f, false, false, -2.61f, 0.0f) - curveToRelative(-0.38f, 0.82f, -1.4f, 1.1f, -2.14f, 0.57f) - curveToRelative(-1.0f, -0.72f, -2.39f, 0.08f, -2.27f, 1.3f) - curveToRelative(0.1f, 0.9f, -0.66f, 1.66f, -1.56f, 1.57f) - arcTo(1.43f, 1.43f, 0.0f, false, false, 3.6f, 8.76f) - curveToRelative(0.53f, 0.73f, 0.25f, 1.76f, -0.57f, 2.14f) - arcToRelative(1.43f, 1.43f, 0.0f, false, false, 0.0f, 2.6f) - curveToRelative(0.82f, 0.38f, 1.1f, 1.42f, 0.57f, 2.15f) - curveToRelative(-0.72f, 1.0f, 0.08f, 2.38f, 1.3f, 2.26f) - curveToRelative(0.9f, -0.09f, 1.66f, 0.67f, 1.57f, 1.57f) - arcToRelative(1.43f, 1.43f, 0.0f, false, false, 2.27f, 1.3f) - arcToRelative(1.43f, 1.43f, 0.0f, false, true, 2.14f, 0.58f) - arcToRelative(1.43f, 1.43f, 0.0f, false, false, 2.6f, 0.0f) - curveToRelative(0.38f, -0.82f, 1.42f, -1.1f, 2.15f, -0.57f) - curveToRelative(1.0f, 0.72f, 2.39f, -0.08f, 2.26f, -1.3f) - curveToRelative(-0.09f, -0.91f, 0.67f, -1.67f, 1.57f, -1.58f) - arcToRelative(1.43f, 1.43f, 0.0f, false, false, 1.3f, -2.26f) - arcToRelative(1.43f, 1.43f, 0.0f, false, true, 0.58f, -2.14f) - arcToRelative(1.43f, 1.43f, 0.0f, false, false, 0.0f, -2.61f) - arcToRelative(1.43f, 1.43f, 0.0f, false, true, -0.57f, -2.14f) - curveToRelative(0.72f, -1.0f, -0.08f, -2.39f, -1.3f, -2.27f) - curveToRelative(-0.9f, 0.1f, -1.67f, -0.66f, -1.58f, -1.56f) - arcToRelative(1.43f, 1.43f, 0.0f, false, false, -2.26f, -1.31f) - curveToRelative(-0.73f, 0.53f, -1.77f, 0.25f, -2.14f, -0.57f) - close() - moveTo(9.77f, 8.58f) - arcToRelative(2.41f, 2.41f, 0.0f, true, true, 4.83f, 0.0f) - arcToRelative(2.41f, 2.41f, 0.0f, false, true, -4.83f, 0.0f) - close() - moveTo(9.17f, 12.2f) - horizontalLineToRelative(6.03f) - curveToRelative(1.0f, 0.0f, 1.81f, 0.81f, 1.81f, 1.81f) - curveToRelative(0.0f, 1.35f, -0.55f, 2.43f, -1.46f, 3.16f) - curveToRelative(-0.9f, 0.72f, -2.1f, 1.07f, -3.37f, 1.07f) - arcToRelative(5.35f, 5.35f, 0.0f, false, true, -3.36f, -1.07f) - arcToRelative(3.92f, 3.92f, 0.0f, false, true, -1.46f, -3.16f) - curveToRelative(0.0f, -1.0f, 0.8f, -1.8f, 1.8f, -1.8f) - close() - } - } - return _personStarburst!! - } - -private var _personStarburst: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonSupport.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonSupport.kt deleted file mode 100644 index 7f946b55..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonSupport.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonSupport: ImageVector - get() { - if (_personSupport != null) { - return _personSupport!! - } - _personSupport = fluentIcon(name = "Filled.PersonSupport") { - fluentPath { - moveTo(20.0f, 16.25f) - curveTo(20.0f, 15.0f, 19.0f, 14.0f, 17.75f, 14.0f) - horizontalLineTo(6.25f) - curveTo(5.0f, 14.0f, 4.0f, 15.0f, 4.0f, 16.25f) - verticalLineToRelative(0.92f) - curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) - curveTo(6.05f, 20.92f, 8.58f, 22.0f, 12.0f, 22.0f) - reflectiveCurveToRelative(5.94f, -1.07f, 7.49f, -3.24f) - curveToRelative(0.33f, -0.46f, 0.51f, -1.02f, 0.51f, -1.6f) - verticalLineToRelative(-0.91f) - close() - moveTo(17.0f, 7.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, -9.03f, -2.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.22f, -0.03f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(5.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 7.25f, 13.0f) - horizontalLineToRelative(0.26f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -0.79f, -1.62f) - curveToRelative(-0.42f, -0.2f, -0.72f, -0.63f, -0.72f, -1.13f) - verticalLineTo(10.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.38f, 0.0f, 0.73f, -0.12f, 1.02f, -0.33f) - arcTo(5.0f, 5.0f, 0.0f, false, false, 17.0f, 7.0f) - close() - moveTo(7.0f, 6.9f) - arcToRelative(5.11f, 5.11f, 0.0f, false, false, 0.0f, 0.2f) - verticalLineToRelative(1.15f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineTo(6.0f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(1.0f) - verticalLineToRelative(1.4f) - close() - } - } - return _personSupport!! - } - -private var _personSupport: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonSwap.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonSwap.kt deleted file mode 100644 index 2980b91f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonSwap.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonSwap: ImageVector - get() { - if (_personSwap != null) { - return _personSwap!! - } - _personSwap = fluentIcon(name = "Filled.PersonSwap") { - fluentPath { - moveTo(15.75f, 14.0f) - curveTo(17.0f, 14.0f, 18.0f, 15.0f, 18.0f, 16.25f) - verticalLineToRelative(0.91f) - curveToRelative(0.0f, 0.29f, -0.04f, 0.57f, -0.13f, 0.84f) - horizontalLineToRelative(-2.03f) - arcTo(1.75f, 1.75f, 0.0f, false, false, 13.0f, 16.02f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, 2.48f) - lineToRelative(0.94f, 0.93f) - curveToRelative(-0.47f, 0.05f, -0.95f, 0.07f, -1.45f, 0.07f) - curveToRelative(-3.42f, 0.0f, -5.95f, -1.07f, -7.49f, -3.24f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.51f, -1.6f) - verticalLineToRelative(-0.91f) - curveTo(2.0f, 15.0f, 3.0f, 14.0f, 4.25f, 14.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(10.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(14.78f, 17.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.06f) - lineToRelative(2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineToRelative(-1.22f, -1.22f) - horizontalLineToRelative(6.88f) - lineToRelative(-1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.06f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(20.44f, 19.0f) - horizontalLineToRelative(-6.88f) - lineToRelative(1.22f, -1.22f) - close() - } - } - return _personSwap!! - } - -private var _personSwap: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonSync.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonSync.kt deleted file mode 100644 index a9fbd9f3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonSync.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonSync: ImageVector - get() { - if (_personSync != null) { - return _personSync!! - } - _personSync = fluentIcon(name = "Filled.PersonSync") { - fluentPath { - moveTo(11.0f, 17.5f) - curveToRelative(0.0f, -1.29f, 0.38f, -2.49f, 1.02f, -3.5f) - lineTo(5.25f, 14.0f) - curveTo(4.01f, 14.0f, 3.0f, 15.0f, 3.0f, 16.25f) - verticalLineToRelative(0.92f) - curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) - curveTo(5.06f, 20.92f, 7.58f, 22.0f, 11.0f, 22.0f) - curveToRelative(0.6f, 0.0f, 1.17f, -0.03f, 1.72f, -0.1f) - arcTo(6.48f, 6.48f, 0.0f, false, true, 11.0f, 17.5f) - close() - moveTo(11.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) - close() - moveTo(20.5f, 14.0f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - verticalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.8f, -0.59f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) - verticalLineToRelative(-0.55f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - close() - moveTo(15.0f, 19.95f) - verticalLineToRelative(0.55f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.77f, 0.65f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) - close() - } - } - return _personSync!! - } - -private var _personSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonTag.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonTag.kt deleted file mode 100644 index 457a7b8e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonTag.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonTag: ImageVector - get() { - if (_personTag != null) { - return _personTag!! - } - _personTag = fluentIcon(name = "Filled.PersonTag") { - fluentPath { - moveTo(11.0f, 14.0f) - verticalLineToRelative(2.94f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.86f, 2.1f) - lineToRelative(2.26f, 2.29f) - curveToRelative(-1.18f, 0.45f, -2.56f, 0.67f, -4.12f, 0.67f) - curveToRelative(-3.42f, 0.0f, -5.94f, -1.07f, -7.49f, -3.24f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.5f, -1.6f) - verticalLineToRelative(-0.91f) - curveTo(2.0f, 15.0f, 3.0f, 14.0f, 4.24f, 14.0f) - lineTo(11.0f, 14.0f) - close() - moveTo(15.0f, 7.0f) - arcTo(5.0f, 5.0f, 0.0f, true, false, 5.0f, 7.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 10.0f, 0.0f) - close() - moveTo(16.57f, 22.4f) - lineTo(12.57f, 18.33f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.57f, -1.4f) - lineTo(12.0f, 14.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(2.92f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.4f, 0.58f) - lineToRelative(4.08f, 4.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.02f, 2.83f) - lineToRelative(-3.0f, 3.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.85f, -0.02f) - close() - moveTo(15.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - } - } - return _personTag!! - } - -private var _personTag: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonVoice.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonVoice.kt deleted file mode 100644 index e4bc8878..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonVoice.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonVoice: ImageVector - get() { - if (_personVoice != null) { - return _personVoice!! - } - _personVoice = fluentIcon(name = "Filled.PersonVoice") { - fluentPath { - moveTo(14.75f, 15.0f) - curveTo(16.0f, 15.0f, 17.0f, 16.0f, 17.0f, 17.25f) - verticalLineToRelative(0.92f) - curveToRelative(0.0f, 0.57f, -0.18f, 1.13f, -0.5f, 1.6f) - curveTo(14.93f, 21.93f, 12.41f, 23.0f, 9.0f, 23.0f) - reflectiveCurveToRelative(-5.94f, -1.07f, -7.49f, -3.24f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.5f, -1.6f) - verticalLineToRelative(-0.91f) - curveTo(1.0f, 16.0f, 2.0f, 15.0f, 3.24f, 15.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(19.05f, 1.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, 0.28f) - arcToRelative(12.7f, 12.7f, 0.0f, false, true, -0.01f, 12.66f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.3f, -0.75f) - arcToRelative(11.2f, 11.2f, 0.0f, false, false, 0.0f, -11.16f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.28f, -1.03f) - close() - moveTo(9.0f, 3.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcTo(5.0f, 5.0f, 0.0f, false, true, 9.0f, 3.0f) - close() - moveTo(15.59f, 3.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.02f, 0.28f) - arcToRelative(8.71f, 8.71f, 0.0f, false, true, 0.0f, 8.65f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.3f, -0.74f) - arcToRelative(7.21f, 7.21f, 0.0f, false, false, 0.0f, -7.17f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.28f, -1.02f) - close() - } - } - return _personVoice!! - } - -private var _personVoice: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonWalking.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonWalking.kt deleted file mode 100644 index 2d1c577f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PersonWalking.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PersonWalking: ImageVector - get() { - if (_personWalking != null) { - return _personWalking!! - } - _personWalking = fluentIcon(name = "Filled.PersonWalking") { - fluentPath { - moveTo(13.0f, 6.5f) - arcTo(2.25f, 2.25f, 0.0f, true, false, 13.0f, 2.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) - close() - moveTo(10.36f, 6.42f) - curveToRelative(0.19f, 0.04f, 0.35f, 0.15f, 0.5f, 0.27f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, 2.9f, 0.72f) - curveToRelative(0.18f, -0.04f, 0.38f, -0.06f, 0.56f, 0.0f) - lineToRelative(0.13f, 0.02f) - curveToRelative(0.39f, 0.1f, 0.72f, 0.34f, 0.92f, 0.68f) - lineToRelative(1.33f, 2.17f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.66f, 0.46f) - lineToRelative(1.43f, 0.29f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -0.58f, 2.94f) - lineToRelative(-2.5f, -0.5f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.0f, -0.69f) - lineToRelative(-0.18f, -0.3f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, -0.96f, 0.1f) - curveToRelative(-0.18f, 0.46f, -0.12f, 0.98f, 0.17f, 1.38f) - lineToRelative(1.0f, 1.43f) - curveToRelative(0.15f, 0.23f, 0.24f, 0.5f, 0.26f, 0.77f) - lineToRelative(0.25f, 4.25f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.18f) - lineToRelative(-0.2f, -3.4f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.25f, -0.6f) - lineToRelative(-0.85f, -0.96f) - arcToRelative(0.88f, 0.88f, 0.0f, false, false, -1.47f, 0.25f) - lineToRelative(-2.1f, 5.18f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.77f, -1.12f) - lineToRelative(3.07f, -7.63f) - lineToRelative(0.05f, -0.17f) - lineToRelative(0.57f, -1.47f) - arcToRelative(0.47f, 0.47f, 0.0f, false, false, -0.87f, -0.36f) - lineToRelative(-1.26f, 2.8f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.74f, -1.23f) - lineToRelative(1.62f, -3.6f) - curveToRelative(0.17f, -0.37f, 0.47f, -0.66f, 0.85f, -0.8f) - lineToRelative(3.08f, -1.14f) - curveToRelative(0.28f, -0.1f, 0.59f, -0.12f, 0.88f, -0.05f) - lineToRelative(0.5f, 0.13f) - close() - } - } - return _personWalking!! - } - -private var _personWalking: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Phone.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Phone.kt deleted file mode 100644 index f186251b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Phone.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Phone: ImageVector - get() { - if (_phone != null) { - return _phone!! - } - _phone = fluentIcon(name = "Filled.Phone") { - fluentPath { - moveTo(15.75f, 2.0f) - curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-7.5f) - curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) - lineTo(6.0f, 4.25f) - curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(13.25f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - } - } - return _phone!! - } - -private var _phone: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneAdd.kt deleted file mode 100644 index 372d452c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneAdd.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PhoneAdd: ImageVector - get() { - if (_phoneAdd != null) { - return _phoneAdd!! - } - _phoneAdd = fluentIcon(name = "Filled.PhoneAdd") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(13.75f, 2.0f) - curveTo(14.99f, 2.0f, 16.0f, 3.0f, 16.0f, 4.25f) - verticalLineToRelative(6.92f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -5.0f, 6.33f) - lineTo(8.75f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.42f) - arcToRelative(6.49f, 6.49f, 0.0f, false, false, 1.64f, 3.0f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(17.5f, 14.0f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) - lineToRelative(-0.01f, 0.1f) - lineTo(17.0f, 17.0f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(0.18f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) - lineToRelative(0.1f, 0.01f) - lineTo(17.0f, 18.0f) - verticalLineToRelative(2.6f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - horizontalLineToRelative(0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) - lineToRelative(0.01f, -0.1f) - lineTo(18.0f, 18.0f) - horizontalLineToRelative(2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - verticalLineToRelative(-0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) - lineToRelative(-0.1f, -0.01f) - lineTo(18.0f, 17.0f) - verticalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) - horizontalLineToRelative(-0.09f) - close() - } - } - return _phoneAdd!! - } - -private var _phoneAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneArrowRight.kt deleted file mode 100644 index 98823205..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneArrowRight.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PhoneArrowRight: ImageVector - get() { - if (_phoneArrowRight != null) { - return _phoneArrowRight!! - } - _phoneArrowRight = fluentIcon(name = "Filled.PhoneArrowRight") { - fluentPath { - moveTo(13.75f, 2.0f) - curveTo(14.99f, 2.0f, 16.0f, 3.0f, 16.0f, 4.25f) - verticalLineToRelative(5.77f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 10.17f, 18.0f) - lineTo(8.75f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - horizontalLineToRelative(2.08f) - arcToRelative(6.53f, 6.53f, 0.0f, false, false, 2.3f, 2.5f) - lineTo(6.26f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(16.5f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(16.72f, 13.59f) - lineTo(16.65f, 13.65f) - lineTo(16.59f, 13.72f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) - lineToRelative(0.06f, 0.07f) - lineTo(18.29f, 16.0f) - lineTo(13.4f, 16.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(0.18f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(0.06f, -0.07f) - lineToRelative(2.53f, -2.53f) - lineToRelative(0.04f, -0.05f) - lineToRelative(0.04f, -0.08f) - lineToRelative(0.03f, -0.08f) - lineTo(19.99f, 16.39f) - lineToRelative(-0.03f, -0.08f) - lineToRelative(-0.04f, -0.08f) - lineToRelative(-0.04f, -0.05f) - lineToRelative(-2.53f, -2.53f) - lineToRelative(-0.07f, -0.06f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.49f, -0.04f) - lineToRelative(-0.07f, 0.04f) - close() - } - } - return _phoneArrowRight!! - } - -private var _phoneArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneChat.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneChat.kt deleted file mode 100644 index adfed5fc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneChat.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PhoneChat: ImageVector - get() { - if (_phoneChat != null) { - return _phoneChat!! - } - _phoneChat = fluentIcon(name = "Filled.PhoneChat") { - fluentPath { - moveTo(15.75f, 2.0f) - curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) - verticalLineToRelative(6.77f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -6.38f, 9.24f) - lineTo(11.09f, 22.0f) - lineTo(8.25f, 22.0f) - curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) - lineTo(6.0f, 4.25f) - curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(21.0f, 13.26f) - arcTo(5.48f, 5.48f, 0.0f, false, false, 17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -4.81f, 8.17f) - lineToRelative(-0.67f, 2.19f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.63f, 0.62f) - lineToRelative(2.18f, -0.67f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 21.0f, 13.25f) - close() - moveTo(15.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - horizontalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(17.5f, 19.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - close() - } - } - return _phoneChat!! - } - -private var _phoneChat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneDesktop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneDesktop.kt deleted file mode 100644 index 3c81636f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneDesktop.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PhoneDesktop: ImageVector - get() { - if (_phoneDesktop != null) { - return _phoneDesktop!! - } - _phoneDesktop = fluentIcon(name = "Filled.PhoneDesktop") { - fluentPath { - moveTo(8.25f, 9.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-4.5f) - curveTo(2.78f, 22.0f, 2.0f, 21.22f, 2.0f, 20.25f) - verticalLineToRelative(-9.5f) - curveTo(2.0f, 9.78f, 2.78f, 9.0f, 3.75f, 9.0f) - horizontalLineToRelative(4.5f) - close() - moveTo(6.25f, 18.5f) - horizontalLineToRelative(-0.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) - horizontalLineToRelative(0.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.49f) - horizontalLineToRelative(-0.1f) - close() - moveTo(19.75f, 2.0f) - curveToRelative(1.19f, 0.0f, 2.16f, 0.93f, 2.24f, 2.1f) - verticalLineToRelative(9.15f) - curveToRelative(0.0f, 1.2f, -0.92f, 2.17f, -2.09f, 2.24f) - lineToRelative(-0.15f, 0.01f) - lineTo(16.0f, 15.5f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(11.0f, 19.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(-2.0f) - lineTo(11.0f, 15.5f) - verticalLineToRelative(-5.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 8.66f, 8.0f) - lineTo(4.0f, 8.0f) - lineTo(4.0f, 4.25f) - curveToRelative(0.0f, -1.2f, 0.92f, -2.17f, 2.1f, -2.24f) - lineTo(6.25f, 2.0f) - horizontalLineToRelative(13.5f) - close() - } - } - return _phoneDesktop!! - } - -private var _phoneDesktop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneDismiss.kt deleted file mode 100644 index d621237b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneDismiss.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PhoneDismiss: ImageVector - get() { - if (_phoneDismiss != null) { - return _phoneDismiss!! - } - _phoneDismiss = fluentIcon(name = "Filled.PhoneDismiss") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(13.75f, 2.0f) - curveTo(14.99f, 2.0f, 16.0f, 3.0f, 16.0f, 4.25f) - verticalLineToRelative(6.92f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 11.02f, 18.0f) - lineTo(8.75f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - horizontalLineToRelative(2.66f) - curveToRelative(0.3f, 0.95f, 0.83f, 1.8f, 1.5f, 2.5f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(15.09f, 14.97f) - lineTo(15.02f, 15.02f) - lineTo(14.97f, 15.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.05f, 0.07f) - lineToRelative(1.77f, 1.77f) - lineToRelative(-1.76f, 1.77f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.06f, 0.06f) - lineToRelative(0.07f, 0.06f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) - lineToRelative(0.07f, -0.06f) - lineToRelative(1.77f, -1.76f) - lineToRelative(1.77f, 1.77f) - lineToRelative(0.07f, 0.05f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.57f, 0.0f) - lineToRelative(0.07f, -0.05f) - lineToRelative(0.05f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) - lineToRelative(-0.05f, -0.07f) - lineToRelative(-1.77f, -1.77f) - lineToRelative(1.77f, -1.77f) - lineToRelative(0.06f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) - lineToRelative(-0.06f, -0.07f) - lineToRelative(-0.07f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) - lineToRelative(-0.07f, 0.05f) - lineToRelative(-1.77f, 1.77f) - lineToRelative(-1.77f, -1.77f) - lineToRelative(-0.07f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.05f) - lineToRelative(-0.07f, 0.05f) - close() - } - } - return _phoneDismiss!! - } - -private var _phoneDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneKey.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneKey.kt deleted file mode 100644 index 0781c244..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneKey.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PhoneKey: ImageVector - get() { - if (_phoneKey != null) { - return _phoneKey!! - } - _phoneKey = fluentIcon(name = "Filled.PhoneKey") { - fluentPath { - moveTo(15.75f, 2.0f) - curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) - verticalLineToRelative(7.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, -2.97f, 4.8f) - lineTo(13.1f, 18.0f) - horizontalLineToRelative(-2.34f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.84f) - lineToRelative(-0.08f, 0.07f) - curveToRelative(-0.33f, 0.33f, -0.51f, 0.78f, -0.51f, 1.24f) - lineTo(11.01f, 22.0f) - lineTo(8.25f, 22.0f) - curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) - lineTo(6.0f, 4.25f) - curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(19.5f, 19.0f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, -3.38f, -2.59f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.15f, 0.12f) - lineToRelative(-3.75f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.22f, 0.53f) - verticalLineToRelative(1.44f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(1.75f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(15.0f, 22.0f) - horizontalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(1.5f) - close() - moveTo(21.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - } - } - return _phoneKey!! - } - -private var _phoneKey: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneLaptop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneLaptop.kt deleted file mode 100644 index fc2f5959..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneLaptop.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PhoneLaptop: ImageVector - get() { - if (_phoneLaptop != null) { - return _phoneLaptop!! - } - _phoneLaptop = fluentIcon(name = "Filled.PhoneLaptop") { - fluentPath { - moveTo(8.25f, 8.0f) - curveTo(9.22f, 8.0f, 10.0f, 8.8f, 10.0f, 9.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-4.5f) - curveTo(2.78f, 21.0f, 2.0f, 20.22f, 2.0f, 19.25f) - verticalLineToRelative(-9.5f) - curveTo(2.0f, 8.8f, 2.78f, 8.0f, 3.75f, 8.0f) - horizontalLineToRelative(4.5f) - close() - moveTo(6.25f, 17.5f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(21.25f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(11.0f, 18.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(10.25f) - close() - moveTo(18.25f, 5.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(11.0f, 16.0f) - lineTo(11.0f, 9.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.85f, -2.0f) - lineTo(4.0f, 7.0f) - verticalLineToRelative(-0.25f) - curveTo(4.0f, 5.78f, 4.78f, 5.0f, 5.75f, 5.0f) - horizontalLineToRelative(12.5f) - close() - } - } - return _phoneLaptop!! - } - -private var _phoneLaptop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneLinkSetup.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneLinkSetup.kt deleted file mode 100644 index abd13ded..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneLinkSetup.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PhoneLinkSetup: ImageVector - get() { - if (_phoneLinkSetup != null) { - return _phoneLinkSetup!! - } - _phoneLinkSetup = fluentIcon(name = "Filled.PhoneLinkSetup") { - fluentPath { - moveTo(17.5f, 12.0f) - curveToRelative(0.3f, 0.0f, 0.58f, 0.02f, 0.86f, 0.07f) - lineToRelative(0.17f, 0.72f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.42f, 1.47f) - lineToRelative(0.1f, -0.02f) - lineToRelative(0.6f, -0.18f) - curveToRelative(0.36f, 0.46f, 0.65f, 1.0f, 0.85f, 1.57f) - lineToRelative(-0.45f, 0.43f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.17f, 2.7f) - lineToRelative(0.15f, 0.15f) - lineToRelative(0.47f, 0.46f) - curveToRelative(-0.2f, 0.57f, -0.5f, 1.1f, -0.85f, 1.57f) - lineToRelative(-0.6f, -0.18f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.49f, 1.35f) - lineToRelative(-0.03f, 0.1f) - lineToRelative(-0.17f, 0.72f) - arcToRelative(5.18f, 5.18f, 0.0f, false, true, -1.72f, 0.0f) - lineToRelative(-0.17f, -0.72f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.42f, -1.47f) - lineToRelative(-0.1f, 0.02f) - lineToRelative(-0.6f, 0.18f) - curveToRelative(-0.36f, -0.47f, -0.65f, -1.0f, -0.85f, -1.57f) - lineToRelative(0.45f, -0.43f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.17f, -2.7f) - lineToRelative(-0.15f, -0.15f) - lineToRelative(-0.47f, -0.46f) - curveToRelative(0.2f, -0.58f, 0.5f, -1.1f, 0.85f, -1.57f) - lineToRelative(0.6f, 0.18f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.49f, -1.35f) - lineToRelative(0.03f, -0.1f) - lineToRelative(0.17f, -0.72f) - curveToRelative(0.28f, -0.05f, 0.57f, -0.07f, 0.86f, -0.07f) - close() - moveTo(13.75f, 2.0f) - curveTo(14.99f, 2.0f, 16.0f, 3.0f, 16.0f, 4.25f) - verticalLineToRelative(6.92f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 11.02f, 18.0f) - lineTo(8.75f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - horizontalLineToRelative(2.66f) - curveToRelative(0.3f, 0.95f, 0.83f, 1.8f, 1.5f, 2.5f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(17.5f, 16.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, 0.67f, -1.45f, 1.5f) - reflectiveCurveTo(16.7f, 19.0f, 17.5f, 19.0f) - curveToRelative(0.8f, 0.0f, 1.45f, -0.67f, 1.45f, -1.5f) - reflectiveCurveTo(18.3f, 16.0f, 17.5f, 16.0f) - close() - } - } - return _phoneLinkSetup!! - } - -private var _phoneLinkSetup: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneLock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneLock.kt deleted file mode 100644 index 8e4f4442..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneLock.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PhoneLock: ImageVector - get() { - if (_phoneLock != null) { - return _phoneLock!! - } - _phoneLock = fluentIcon(name = "Filled.PhoneLock") { - fluentPath { - moveTo(13.75f, 2.0f) - curveTo(14.99f, 2.0f, 16.0f, 3.0f, 16.0f, 4.25f) - verticalLineToRelative(6.59f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 14.0f, 14.0f) - verticalLineToRelative(0.05f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.0f, 2.45f) - verticalLineToRelative(2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(2.75f) - curveToRelative(0.0f, 0.17f, 0.02f, 0.34f, 0.05f, 0.5f) - horizontalLineToRelative(-5.8f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(15.0f, 14.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.5f, 1.5f) - horizontalLineToRelative(6.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(20.0f, 15.0f) - verticalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) - close() - moveTo(16.5f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(18.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - } - } - return _phoneLock!! - } - -private var _phoneLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhonePageHeader.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhonePageHeader.kt deleted file mode 100644 index eba2cc75..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhonePageHeader.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PhonePageHeader: ImageVector - get() { - if (_phonePageHeader != null) { - return _phonePageHeader!! - } - _phonePageHeader = fluentIcon(name = "Filled.PhonePageHeader") { - fluentPath { - moveTo(18.0f, 6.0f) - verticalLineToRelative(13.75f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-7.5f) - curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) - lineTo(6.0f, 6.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(15.75f, 2.0f) - curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) - lineTo(18.0f, 5.0f) - lineTo(6.0f, 5.0f) - verticalLineToRelative(-0.75f) - curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - } - } - return _phonePageHeader!! - } - -private var _phonePageHeader: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhonePagination.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhonePagination.kt deleted file mode 100644 index 9b98d406..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhonePagination.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PhonePagination: ImageVector - get() { - if (_phonePagination != null) { - return _phonePagination!! - } - _phonePagination = fluentIcon(name = "Filled.PhonePagination") { - fluentPath { - moveTo(15.75f, 2.0f) - curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-7.5f) - curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) - lineTo(6.0f, 4.25f) - curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(9.5f, 17.76f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(12.0f, 17.76f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(14.5f, 17.76f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - } - } - return _phonePagination!! - } - -private var _phonePagination: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneScreenTime.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneScreenTime.kt deleted file mode 100644 index 7ee8323b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneScreenTime.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PhoneScreenTime: ImageVector - get() { - if (_phoneScreenTime != null) { - return _phoneScreenTime!! - } - _phoneScreenTime = fluentIcon(name = "Filled.PhoneScreenTime") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(13.75f, 2.0f) - curveTo(14.99f, 2.0f, 16.0f, 3.0f, 16.0f, 4.25f) - verticalLineToRelative(6.92f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 11.02f, 18.0f) - lineTo(8.75f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - horizontalLineToRelative(2.66f) - curveToRelative(0.3f, 0.95f, 0.83f, 1.8f, 1.5f, 2.5f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(16.5f, 14.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - lineTo(17.0f, 18.0f) - verticalLineToRelative(-3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - } - } - return _phoneScreenTime!! - } - -private var _phoneScreenTime: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneShake.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneShake.kt deleted file mode 100644 index 489edf39..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneShake.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PhoneShake: ImageVector - get() { - if (_phoneShake != null) { - return _phoneShake!! - } - _phoneShake = fluentIcon(name = "Filled.PhoneShake") { - fluentPath { - moveTo(12.34f, 4.07f) - curveToRelative(1.2f, -0.32f, 2.43f, 0.39f, 2.76f, 1.6f) - lineToRelative(2.75f, 10.28f) - curveToRelative(0.32f, 1.2f, -0.39f, 2.43f, -1.59f, 2.76f) - lineToRelative(-4.6f, 1.23f) - curveToRelative(-1.2f, 0.32f, -2.43f, -0.4f, -2.75f, -1.6f) - lineTo(6.16f, 8.06f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 7.75f, 5.3f) - lineToRelative(4.59f, -1.23f) - close() - moveTo(14.69f, 15.27f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.92f, -0.52f) - lineToRelative(-1.93f, 0.52f) - lineToRelative(-0.1f, 0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.49f, 1.42f) - lineToRelative(1.93f, -0.52f) - lineToRelative(0.1f, -0.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.43f, -0.88f) - close() - moveTo(18.68f, 2.4f) - curveToRelative(0.2f, -0.36f, 0.65f, -0.5f, 1.01f, -0.3f) - arcToRelative(4.9f, 4.9f, 0.0f, false, true, 1.72f, 6.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.33f, -0.69f) - lineToRelative(0.05f, -0.09f) - arcToRelative(3.4f, 3.4f, 0.0f, false, false, -1.16f, -4.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.3f, -1.02f) - close() - moveTo(17.5f, 4.44f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, -0.14f) - arcToRelative(2.6f, 2.6f, 0.0f, false, true, 0.9f, 1.32f) - curveToRelative(0.11f, 0.44f, 0.09f, 0.88f, -0.02f, 1.29f) - lineToRelative(-0.05f, 0.18f) - lineToRelative(-0.05f, 0.13f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.42f, -0.49f) - lineToRelative(0.05f, -0.14f) - lineToRelative(0.02f, -0.06f) - curveToRelative(0.05f, -0.18f, 0.06f, -0.37f, 0.02f, -0.52f) - arcToRelative(0.93f, 0.93f, 0.0f, false, false, -0.17f, -0.31f) - arcToRelative(1.36f, 1.36f, 0.0f, false, false, -0.16f, -0.18f) - lineToRelative(-0.03f, -0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.14f, -1.05f) - close() - moveTo(2.54f, 15.41f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, 0.66f) - lineToRelative(-0.1f, 0.2f) - lineToRelative(-0.1f, 0.28f) - arcToRelative(3.54f, 3.54f, 0.0f, false, false, 0.6f, 3.36f) - curveToRelative(0.26f, 0.32f, 0.51f, 0.54f, 0.68f, 0.65f) - lineToRelative(0.07f, 0.04f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.75f, 1.3f) - arcToRelative(5.04f, 5.04f, 0.0f, false, true, -1.74f, -6.49f) - close() - moveTo(4.67f, 16.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.42f, 0.47f) - lineToRelative(-0.05f, 0.15f) - lineToRelative(-0.01f, 0.05f) - curveToRelative(-0.05f, 0.18f, -0.06f, 0.37f, -0.02f, 0.53f) - arcToRelative(1.38f, 1.38f, 0.0f, false, false, 0.32f, 0.5f) - lineToRelative(0.04f, 0.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.92f, 1.19f) - arcToRelative(2.6f, 2.6f, 0.0f, false, true, -0.89f, -1.33f) - curveToRelative(-0.11f, -0.43f, -0.09f, -0.87f, 0.01f, -1.28f) - lineToRelative(0.06f, -0.17f) - lineToRelative(0.04f, -0.13f) - close() - } - } - return _phoneShake!! - } - -private var _phoneShake: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneSpanIn.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneSpanIn.kt deleted file mode 100644 index c0c956ea..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneSpanIn.kt +++ /dev/null @@ -1,99 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PhoneSpanIn: ImageVector - get() { - if (_phoneSpanIn != null) { - return _phoneSpanIn!! - } - _phoneSpanIn = fluentIcon(name = "Filled.PhoneSpanIn") { - fluentPath { - moveTo(15.75f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(3.67f) - curveToRelative(-0.65f, -0.31f, -1.45f, -0.2f, -1.99f, 0.34f) - lineToRelative(-2.18f, 2.22f) - curveToRelative(-0.52f, 0.31f, -0.83f, 0.9f, -0.83f, 1.52f) - verticalLineToRelative(0.16f) - curveToRelative(0.05f, 0.46f, 0.26f, 0.88f, 0.6f, 1.18f) - lineToRelative(0.1f, 0.1f) - lineToRelative(2.31f, 2.3f) - lineToRelative(0.14f, 0.12f) - arcToRelative(1.8f, 1.8f, 0.0f, false, false, 1.85f, 0.22f) - verticalLineToRelative(3.67f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - horizontalLineToRelative(-7.5f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(6.0f, 19.75f) - verticalLineToRelative(-3.68f) - curveToRelative(0.59f, 0.28f, 1.27f, 0.22f, 1.8f, -0.16f) - lineToRelative(0.13f, -0.12f) - lineToRelative(2.36f, -2.35f) - lineToRelative(0.12f, -0.1f) - curveToRelative(0.37f, -0.33f, 0.59f, -0.82f, 0.59f, -1.34f) - verticalLineToRelative(-0.16f) - arcToRelative(1.78f, 1.78f, 0.0f, false, false, -0.6f, -1.18f) - lineToRelative(-0.1f, -0.1f) - lineToRelative(-2.31f, -2.3f) - arcTo(1.75f, 1.75f, 0.0f, false, false, 6.0f, 7.92f) - lineTo(6.0f, 4.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(8.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(17.78f, 8.97f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-1.22f, 1.22f) - horizontalLineToRelative(3.78f) - curveToRelative(0.37f, 0.0f, 0.66f, 0.33f, 0.66f, 0.75f) - curveToRelative(0.0f, 0.38f, -0.25f, 0.7f, -0.57f, 0.74f) - lineTo(16.56f, 12.74f) - lineToRelative(1.22f, 1.23f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-2.37f, -2.37f) - arcTo(0.77f, 0.77f, 0.0f, false, true, 14.0f, 12.0f) - curveToRelative(0.0f, -0.29f, 0.14f, -0.54f, 0.35f, -0.66f) - lineToRelative(2.37f, -2.37f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(7.2f, 8.9f) - lineToRelative(0.08f, 0.07f) - lineToRelative(2.37f, 2.37f) - curveToRelative(0.2f, 0.12f, 0.35f, 0.37f, 0.35f, 0.66f) - curveToRelative(0.0f, 0.25f, -0.1f, 0.47f, -0.28f, 0.61f) - lineToRelative(-0.07f, 0.05f) - lineToRelative(-2.37f, 2.37f) - lineToRelative(-0.08f, 0.07f) - curveToRelative(-0.27f, 0.2f, -0.62f, 0.2f, -0.89f, 0.01f) - lineToRelative(-0.1f, -0.08f) - lineToRelative(-0.06f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.01f, -0.89f) - lineToRelative(0.08f, -0.09f) - lineToRelative(1.22f, -1.22f) - lineTo(3.56f, 12.75f) - curveTo(3.26f, 12.68f, 3.0f, 12.37f, 3.0f, 12.0f) - reflectiveCurveToRelative(0.25f, -0.7f, 0.57f, -0.74f) - lineToRelative(0.09f, -0.01f) - horizontalLineToRelative(3.78f) - lineToRelative(-1.22f, -1.22f) - lineToRelative(-0.07f, -0.09f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 7.2f, 8.9f) - close() - } - } - return _phoneSpanIn!! - } - -private var _phoneSpanIn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneSpanOut.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneSpanOut.kt deleted file mode 100644 index 96954f84..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneSpanOut.kt +++ /dev/null @@ -1,111 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PhoneSpanOut: ImageVector - get() { - if (_phoneSpanOut != null) { - return _phoneSpanOut!! - } - _phoneSpanOut = fluentIcon(name = "Filled.PhoneSpanOut") { - fluentPath { - moveTo(15.75f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(3.52f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.49f, 0.5f) - arcTo(1.73f, 1.73f, 0.0f, false, false, 16.1f, 10.0f) - lineToRelative(0.05f, 0.16f) - lineToRelative(0.04f, 0.09f) - horizontalLineToRelative(-1.52f) - curveToRelative(-0.85f, 0.0f, -1.5f, 0.65f, -1.64f, 1.46f) - lineToRelative(-0.01f, 0.14f) - lineTo(13.0f, 12.0f) - curveToRelative(0.0f, 0.8f, 0.51f, 1.51f, 1.33f, 1.7f) - lineToRelative(0.16f, 0.04f) - horizontalLineToRelative(1.68f) - lineToRelative(-0.02f, 0.04f) - curveToRelative(-0.2f, 0.47f, -0.2f, 1.02f, 0.05f, 1.51f) - lineToRelative(0.1f, 0.17f) - lineToRelative(0.09f, 0.14f) - lineToRelative(0.12f, 0.14f) - curveToRelative(0.4f, 0.4f, 0.95f, 0.57f, 1.49f, 0.48f) - verticalLineToRelative(3.53f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - horizontalLineToRelative(-7.5f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(6.0f, 19.75f) - verticalLineToRelative(-3.53f) - curveToRelative(0.54f, 0.09f, 1.09f, -0.08f, 1.49f, -0.48f) - lineToRelative(0.12f, -0.14f) - lineToRelative(0.1f, -0.14f) - curveToRelative(0.33f, -0.54f, 0.37f, -1.16f, 0.14f, -1.68f) - lineToRelative(-0.02f, -0.03f) - horizontalLineToRelative(1.51f) - lineToRelative(0.17f, -0.01f) - curveToRelative(0.91f, -0.14f, 1.49f, -0.9f, 1.49f, -1.74f) - verticalLineToRelative(-0.15f) - arcToRelative(1.7f, 1.7f, 0.0f, false, false, -1.66f, -1.6f) - lineTo(7.82f, 10.25f) - lineToRelative(0.04f, -0.1f) - arcTo(1.74f, 1.74f, 0.0f, false, false, 6.0f, 7.78f) - lineTo(6.0f, 4.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(8.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(6.78f, 8.97f) - curveToRelative(0.27f, 0.26f, 0.3f, 0.68f, 0.07f, 0.97f) - lineToRelative(-0.07f, 0.09f) - lineToRelative(-1.22f, 1.22f) - horizontalLineToRelative(3.78f) - curveToRelative(0.37f, 0.0f, 0.66f, 0.33f, 0.66f, 0.75f) - curveToRelative(0.0f, 0.38f, -0.25f, 0.7f, -0.57f, 0.74f) - lineTo(5.56f, 12.74f) - lineToRelative(1.22f, 1.23f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-2.37f, -2.37f) - arcTo(0.77f, 0.77f, 0.0f, false, true, 3.0f, 12.0f) - curveToRelative(0.0f, -0.29f, 0.14f, -0.54f, 0.35f, -0.66f) - lineToRelative(2.37f, -2.37f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(17.22f, 8.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.08f) - lineToRelative(0.08f, 0.08f) - lineToRelative(2.37f, 2.36f) - curveToRelative(0.2f, 0.13f, 0.35f, 0.38f, 0.35f, 0.67f) - curveToRelative(0.0f, 0.25f, -0.1f, 0.47f, -0.28f, 0.6f) - lineToRelative(-0.07f, 0.06f) - lineToRelative(-2.37f, 2.37f) - lineToRelative(-0.08f, 0.07f) - curveToRelative(-0.27f, 0.2f, -0.62f, 0.2f, -0.89f, 0.0f) - lineToRelative(-0.1f, -0.07f) - lineToRelative(-0.06f, -0.09f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.01f, -0.88f) - lineToRelative(0.08f, -0.1f) - lineToRelative(1.22f, -1.21f) - horizontalLineToRelative(-3.78f) - lineToRelative(-0.1f, -0.01f) - curveToRelative(-0.31f, -0.05f, -0.56f, -0.37f, -0.56f, -0.74f) - curveToRelative(0.0f, -0.38f, 0.25f, -0.7f, 0.57f, -0.75f) - lineTo(18.44f, 11.25f) - lineToRelative(-1.22f, -1.22f) - lineToRelative(-0.07f, -0.09f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.07f, -0.97f) - close() - } - } - return _phoneSpanOut!! - } - -private var _phoneSpanOut: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneSpeaker.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneSpeaker.kt deleted file mode 100644 index 75da4b0b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneSpeaker.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PhoneSpeaker: ImageVector - get() { - if (_phoneSpeaker != null) { - return _phoneSpeaker!! - } - _phoneSpeaker = fluentIcon(name = "Filled.PhoneSpeaker") { - fluentPath { - moveTo(13.75f, 2.0f) - curveTo(14.99f, 2.0f, 16.0f, 3.0f, 16.0f, 4.25f) - verticalLineToRelative(8.67f) - curveToRelative(-0.37f, 0.05f, -0.73f, 0.23f, -1.03f, 0.54f) - lineTo(13.53f, 15.0f) - lineTo(12.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(2.0f) - lineTo(8.75f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.38f) - curveToRelative(0.18f, 0.3f, 0.5f, 0.5f, 0.87f, 0.5f) - horizontalLineToRelative(1.53f) - lineToRelative(1.44f, 1.54f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.06f, 0.06f) - curveToRelative(-0.36f, 0.25f, -0.8f, 0.4f, -1.28f, 0.4f) - horizontalLineToRelative(-7.5f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(22.15f, 14.3f) - arcToRelative(4.53f, 4.53f, 0.0f, false, false, -0.92f, -1.13f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.96f, 1.16f) - curveToRelative(0.13f, 0.1f, 0.35f, 0.35f, 0.59f, 0.74f) - curveToRelative(0.4f, 0.67f, 0.64f, 1.48f, 0.64f, 2.43f) - curveToRelative(0.0f, 0.95f, -0.24f, 1.76f, -0.64f, 2.43f) - curveToRelative(-0.24f, 0.39f, -0.46f, 0.64f, -0.59f, 0.74f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.96f, 1.16f) - curveToRelative(0.25f, -0.21f, 0.59f, -0.58f, 0.91f, -1.13f) - curveToRelative(0.54f, -0.9f, 0.86f, -1.96f, 0.86f, -3.2f) - curveToRelative(0.0f, -1.24f, -0.32f, -2.3f, -0.86f, -3.2f) - close() - moveTo(19.87f, 15.4f) - curveToRelative(-0.23f, -0.36f, -0.48f, -0.6f, -0.67f, -0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 1.2f) - arcToRelative(2.24f, 2.24f, 0.0f, false, true, 0.7f, 1.65f) - arcToRelative(2.24f, 2.24f, 0.0f, false, true, -0.7f, 1.65f) - lineToRelative(-0.08f, 0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) - arcToRelative(3.73f, 3.73f, 0.0f, false, false, 1.3f, -2.85f) - curveToRelative(0.0f, -0.81f, -0.23f, -1.52f, -0.63f, -2.1f) - close() - moveTo(17.0f, 14.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.31f, -0.5f) - lineTo(14.16f, 16.0f) - horizontalLineToRelative(-1.41f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(1.41f) - lineToRelative(1.53f, 1.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.31f, -0.49f) - verticalLineToRelative(-5.5f) - close() - } - } - return _phoneSpeaker!! - } - -private var _phoneSpeaker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneStatusBar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneStatusBar.kt deleted file mode 100644 index e845d7cb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneStatusBar.kt +++ /dev/null @@ -1,39 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PhoneStatusBar: ImageVector - get() { - if (_phoneStatusBar != null) { - return _phoneStatusBar!! - } - _phoneStatusBar = fluentIcon(name = "Filled.PhoneStatusBar") { - fluentPath { - moveTo(15.75f, 2.0f) - curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-7.5f) - curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) - lineTo(6.0f, 4.25f) - curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(14.75f, 4.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - horizontalLineToRelative(5.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - } - } - return _phoneStatusBar!! - } - -private var _phoneStatusBar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneTablet.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneTablet.kt deleted file mode 100644 index 2bf1d12f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneTablet.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PhoneTablet: ImageVector - get() { - if (_phoneTablet != null) { - return _phoneTablet!! - } - _phoneTablet = fluentIcon(name = "Filled.PhoneTablet") { - fluentPath { - moveTo(8.25f, 7.0f) - curveTo(9.22f, 7.0f, 10.0f, 7.78f, 10.0f, 8.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-4.5f) - curveTo(2.78f, 20.0f, 2.0f, 19.22f, 2.0f, 18.25f) - verticalLineToRelative(-9.5f) - curveTo(2.0f, 7.78f, 2.78f, 7.0f, 3.75f, 7.0f) - horizontalLineToRelative(4.5f) - close() - moveTo(6.25f, 16.5f) - horizontalLineToRelative(-0.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) - horizontalLineToRelative(0.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.49f) - horizontalLineToRelative(-0.1f) - close() - moveTo(19.75f, 4.0f) - curveToRelative(1.19f, 0.0f, 2.16f, 0.93f, 2.24f, 2.1f) - verticalLineToRelative(8.65f) - curveToRelative(0.0f, 1.2f, -0.92f, 2.17f, -2.09f, 2.24f) - lineToRelative(-0.15f, 0.01f) - lineTo(11.0f, 17.0f) - lineTo(11.0f, 8.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 8.66f, 6.0f) - lineTo(6.01f, 6.0f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 8.1f, 4.0f) - horizontalLineToRelative(11.66f) - close() - moveTo(15.25f, 13.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - horizontalLineToRelative(2.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - } - } - return _phoneTablet!! - } - -private var _phoneTablet: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneUpdate.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneUpdate.kt deleted file mode 100644 index c59d9a4a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneUpdate.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PhoneUpdate: ImageVector - get() { - if (_phoneUpdate != null) { - return _phoneUpdate!! - } - _phoneUpdate = fluentIcon(name = "Filled.PhoneUpdate") { - fluentPath { - moveTo(15.75f, 2.0f) - curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-7.5f) - curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) - verticalLineTo(4.25f) - curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(12.0f, 7.03f) - horizontalLineToRelative(-0.1f) - lineToRelative(-0.1f, 0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.54f, 0.6f) - lineToRelative(-0.01f, 0.12f) - verticalLineToRelative(6.71f) - lineToRelative(-0.96f, -0.96f) - lineToRelative(-0.09f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.04f, 1.05f) - lineToRelative(0.07f, 0.08f) - lineToRelative(2.24f, 2.24f) - lineToRelative(0.05f, 0.05f) - lineToRelative(0.06f, 0.04f) - lineToRelative(0.07f, 0.05f) - lineToRelative(0.12f, 0.05f) - lineToRelative(0.1f, 0.02f) - lineToRelative(0.08f, 0.01f) - horizontalLineToRelative(0.1f) - lineToRelative(0.09f, -0.01f) - lineToRelative(0.06f, -0.01f) - lineToRelative(0.1f, -0.04f) - lineToRelative(0.06f, -0.03f) - lineToRelative(0.07f, -0.04f) - lineToRelative(0.06f, -0.05f) - lineToRelative(0.04f, -0.04f) - lineToRelative(2.24f, -2.24f) - lineToRelative(0.07f, -0.08f) - curveToRelative(0.2f, -0.26f, 0.2f, -0.62f, 0.01f, -0.89f) - lineToRelative(-0.08f, -0.09f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.88f, 0.0f) - lineToRelative(-0.1f, 0.07f) - lineToRelative(-0.96f, 0.96f) - verticalLineTo(7.68f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, -0.64f) - horizontalLineTo(12.0f) - close() - } - } - return _phoneUpdate!! - } - -private var _phoneUpdate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneUpdateCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneUpdateCheckmark.kt deleted file mode 100644 index 518fde8c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneUpdateCheckmark.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PhoneUpdateCheckmark: ImageVector - get() { - if (_phoneUpdateCheckmark != null) { - return _phoneUpdateCheckmark!! - } - _phoneUpdateCheckmark = fluentIcon(name = "Filled.PhoneUpdateCheckmark") { - fluentPath { - moveTo(8.25f, 22.0f) - horizontalLineToRelative(4.56f) - arcToRelative(6.48f, 6.48f, 0.0f, false, true, -1.56f, -6.3f) - lineTo(11.25f, 9.5f) - lineToRelative(-0.96f, 0.97f) - lineToRelative(-0.09f, 0.07f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 9.16f, 9.5f) - lineToRelative(0.07f, -0.08f) - lineToRelative(2.24f, -2.24f) - lineToRelative(0.05f, -0.05f) - lineToRelative(0.06f, -0.04f) - lineToRelative(0.07f, -0.05f) - lineToRelative(0.12f, -0.05f) - lineToRelative(0.1f, -0.02f) - lineToRelative(0.08f, -0.01f) - horizontalLineToRelative(0.1f) - lineToRelative(0.09f, 0.01f) - lineToRelative(0.06f, 0.01f) - lineToRelative(0.1f, 0.04f) - lineToRelative(0.06f, 0.03f) - lineToRelative(0.07f, 0.04f) - lineToRelative(0.06f, 0.05f) - lineToRelative(0.04f, 0.04f) - lineToRelative(2.24f, 2.24f) - lineToRelative(0.07f, 0.08f) - curveToRelative(0.2f, 0.26f, 0.2f, 0.62f, 0.01f, 0.89f) - lineToRelative(-0.08f, 0.09f) - lineToRelative(-0.08f, 0.07f) - curveToRelative(-0.26f, 0.2f, -0.62f, 0.2f, -0.88f, 0.0f) - lineToRelative(-0.1f, -0.07f) - lineToRelative(-0.96f, -0.96f) - verticalLineToRelative(3.55f) - arcTo(6.48f, 6.48f, 0.0f, false, true, 18.0f, 11.02f) - lineTo(18.0f, 4.25f) - curveTo(18.0f, 3.01f, 17.0f, 2.0f, 15.75f, 2.0f) - horizontalLineToRelative(-7.5f) - curveTo(7.01f, 2.0f, 6.0f, 3.0f, 6.0f, 4.25f) - verticalLineToRelative(15.5f) - curveTo(6.0f, 20.99f, 7.0f, 22.0f, 8.25f, 22.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-3.65f, 3.64f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _phoneUpdateCheckmark!! - } - -private var _phoneUpdateCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneVerticalScroll.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneVerticalScroll.kt deleted file mode 100644 index e8e97b70..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneVerticalScroll.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PhoneVerticalScroll: ImageVector - get() { - if (_phoneVerticalScroll != null) { - return _phoneVerticalScroll!! - } - _phoneVerticalScroll = fluentIcon(name = "Filled.PhoneVerticalScroll") { - fluentPath { - moveTo(15.75f, 2.0f) - curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-7.5f) - curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) - lineTo(6.0f, 4.25f) - curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(13.71f, 13.47f) - lineTo(12.0f, 15.22f) - lineToRelative(-1.72f, -1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.07f, 1.06f) - lineToRelative(2.25f, 2.3f) - curveToRelative(0.3f, 0.3f, 0.78f, 0.3f, 1.08f, 0.0f) - lineToRelative(2.25f, -2.3f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.08f, -1.05f) - close() - moveTo(14.79f, 9.52f) - lineTo(12.54f, 7.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, -0.07f) - lineToRelative(-0.08f, 0.07f) - lineToRelative(-2.25f, 2.3f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.99f, 1.12f) - lineToRelative(0.08f, -0.07f) - lineTo(12.0f, 8.82f) - lineToRelative(1.71f, 1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.15f, -0.96f) - lineToRelative(-0.07f, -0.09f) - lineToRelative(-2.25f, -2.3f) - lineToRelative(2.25f, 2.3f) - close() - } - } - return _phoneVerticalScroll!! - } - -private var _phoneVerticalScroll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneVibrate.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneVibrate.kt deleted file mode 100644 index 691f3ad7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhoneVibrate.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PhoneVibrate: ImageVector - get() { - if (_phoneVibrate != null) { - return _phoneVibrate!! - } - _phoneVibrate = fluentIcon(name = "Filled.PhoneVibrate") { - fluentPath { - moveTo(15.75f, 2.0f) - curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-7.5f) - curveTo(7.0f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) - lineTo(6.0f, 4.25f) - curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(13.25f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - horizontalLineToRelative(2.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(20.13f, 7.57f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.25f, 0.45f) - lineToRelative(0.05f, 0.1f) - lineTo(22.0f, 9.6f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.27f, 2.74f) - lineToRelative(-0.12f, 0.17f) - lineToRelative(-0.15f, 0.2f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.17f, 0.85f) - lineToRelative(0.04f, 0.12f) - lineToRelative(0.59f, 1.46f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.81f, 0.85f) - lineToRelative(-0.05f, -0.1f) - lineToRelative(-0.58f, -1.47f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.26f, -2.74f) - lineToRelative(0.12f, -0.17f) - lineToRelative(0.15f, -0.2f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.17f, -0.85f) - lineToRelative(-0.04f, -0.12f) - lineToRelative(-0.58f, -1.46f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.56f, -1.3f) - close() - moveTo(2.63f, 7.57f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.25f, 0.45f) - lineToRelative(0.05f, 0.1f) - lineToRelative(0.58f, 1.47f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.27f, 2.74f) - lineToRelative(-0.12f, 0.17f) - lineToRelative(-0.15f, 0.2f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.17f, 0.85f) - lineToRelative(0.04f, 0.12f) - lineToRelative(0.59f, 1.46f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.81f, 0.85f) - lineToRelative(-0.05f, -0.1f) - lineTo(2.0f, 14.4f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.26f, -2.74f) - lineToRelative(0.12f, -0.17f) - lineToRelative(0.15f, -0.2f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.17f, -0.85f) - lineToRelative(-0.04f, -0.12f) - lineToRelative(-0.58f, -1.46f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.56f, -1.3f) - close() - } - } - return _phoneVibrate!! - } - -private var _phoneVibrate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhotoFilter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhotoFilter.kt deleted file mode 100644 index 7b66283b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PhotoFilter.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PhotoFilter: ImageVector - get() { - if (_photoFilter != null) { - return _photoFilter!! - } - _photoFilter = fluentIcon(name = "Filled.PhotoFilter") { - fluentPath { - moveTo(9.5f, 2.0f) - arcToRelative(7.5f, 7.5f, 0.0f, false, true, 7.18f, 5.32f) - arcToRelative(7.5f, 7.5f, 0.0f, true, true, -9.36f, 9.36f) - arcTo(7.5f, 7.5f, 0.0f, false, true, 9.5f, 2.0f) - close() - moveTo(17.0f, 9.6f) - verticalLineToRelative(-0.1f) - arcTo(7.5f, 7.5f, 0.0f, false, true, 9.6f, 17.0f) - arcTo(5.5f, 5.5f, 0.0f, true, false, 17.0f, 9.6f) - close() - moveTo(9.5f, 4.0f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 7.0f, 14.4f) - verticalLineToRelative(0.1f) - arcTo(7.5f, 7.5f, 0.0f, false, true, 14.4f, 7.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -4.9f, -3.0f) - close() - } - } - return _photoFilter!! - } - -private var _photoFilter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Pi.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Pi.kt deleted file mode 100644 index 595173cc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Pi.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Pi: ImageVector - get() { - if (_pi != null) { - return _pi!! - } - _pi = fluentIcon(name = "Filled.Pi") { - fluentPath { - moveTo(2.0f, 7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(15.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineTo(17.0f) - verticalLineToRelative(10.7f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 2.0f, 1.42f) - lineToRelative(0.16f, -0.06f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.68f, 1.88f) - lineToRelative(-0.16f, 0.06f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 15.0f, 16.7f) - verticalLineTo(6.0f) - horizontalLineTo(9.98f) - arcToRelative(53.9f, 53.9f, 0.0f, false, true, -0.36f, 4.21f) - arcToRelative(45.04f, 45.04f, 0.0f, false, true, -1.93f, 9.12f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.88f, -0.66f) - arcToRelative(43.1f, 43.1f, 0.0f, false, false, 1.82f, -8.7f) - arcTo(65.6f, 65.6f, 0.0f, false, false, 7.98f, 6.0f) - horizontalLineTo(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(0.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - verticalLineTo(7.0f) - close() - } - } - return _pi!! - } - -private var _pi: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PictureInPicture.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PictureInPicture.kt deleted file mode 100644 index f96862eb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PictureInPicture.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PictureInPicture: ImageVector - get() { - if (_pictureInPicture != null) { - return _pictureInPicture!! - } - _pictureInPicture = fluentIcon(name = "Filled.PictureInPicture") { - fluentPath { - moveTo(5.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 6.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) - horizontalLineTo(11.0f) - verticalLineToRelative(-4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 1.0f, 0.17f) - verticalLineTo(6.25f) - curveTo(22.0f, 4.45f, 20.54f, 3.0f, 18.75f, 3.0f) - horizontalLineTo(5.25f) - close() - moveTo(22.0f, 13.27f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.0f, -0.27f) - horizontalLineToRelative(-7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - verticalLineToRelative(-5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.0f, -1.73f) - close() - } - } - return _pictureInPicture!! - } - -private var _pictureInPicture: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PictureInPictureEnter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PictureInPictureEnter.kt deleted file mode 100644 index fa362f17..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PictureInPictureEnter.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PictureInPictureEnter: ImageVector - get() { - if (_pictureInPictureEnter != null) { - return _pictureInPictureEnter!! - } - _pictureInPictureEnter = fluentIcon(name = "Filled.PictureInPictureEnter") { - fluentPath { - moveTo(5.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 6.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) - lineTo(11.0f, 19.0f) - verticalLineToRelative(-4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 1.0f, 0.17f) - lineTo(22.0f, 6.25f) - curveTo(22.0f, 4.45f, 20.54f, 3.0f, 18.75f, 3.0f) - lineTo(5.25f, 3.0f) - close() - moveTo(6.28f, 6.22f) - lineTo(9.5f, 9.44f) - lineTo(9.5f, 7.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.69f) - lineTo(5.22f, 7.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - close() - moveTo(22.0f, 13.27f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.0f, -0.27f) - horizontalLineToRelative(-7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - verticalLineToRelative(-5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.0f, -1.73f) - close() - } - } - return _pictureInPictureEnter!! - } - -private var _pictureInPictureEnter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PictureInPictureExit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PictureInPictureExit.kt deleted file mode 100644 index c57afafb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PictureInPictureExit.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PictureInPictureExit: ImageVector - get() { - if (_pictureInPictureExit != null) { - return _pictureInPictureExit!! - } - _pictureInPictureExit = fluentIcon(name = "Filled.PictureInPictureExit") { - fluentPath { - moveTo(10.0f, 11.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(12.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - lineTo(3.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, 2.0f) - horizontalLineToRelative(7.0f) - close() - moveTo(10.0f, 12.0f) - lineTo(3.0f, 12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -1.0f, -0.17f) - verticalLineToRelative(5.92f) - curveTo(2.0f, 19.55f, 3.46f, 21.0f, 5.25f, 21.0f) - horizontalLineToRelative(13.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-9.5f) - curveTo(22.0f, 6.45f, 20.54f, 5.0f, 18.75f, 5.0f) - lineTo(13.0f, 5.0f) - verticalLineToRelative(4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - close() - moveTo(14.25f, 16.0f) - horizontalLineToRelative(1.69f) - lineToRelative(-2.72f, -2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineTo(17.0f, 14.94f) - verticalLineToRelative(-1.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - } - } - return _pictureInPictureExit!! - } - -private var _pictureInPictureExit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Pill.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Pill.kt deleted file mode 100644 index cc4cb412..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Pill.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Pill: ImageVector - get() { - if (_pill != null) { - return _pill!! - } - _pill = fluentIcon(name = "Filled.Pill") { - fluentPath { - moveTo(13.3f, 3.53f) - arcToRelative(5.07f, 5.07f, 0.0f, true, true, 7.17f, 7.17f) - lineToRelative(-9.77f, 9.77f) - arcToRelative(5.07f, 5.07f, 0.0f, false, true, -7.18f, -7.17f) - lineToRelative(9.78f, -9.77f) - close() - moveTo(19.41f, 4.59f) - arcToRelative(3.57f, 3.57f, 0.0f, false, false, -5.05f, 0.0f) - lineTo(10.0f, 8.94f) - lineTo(15.05f, 14.0f) - lineToRelative(4.36f, -4.35f) - arcToRelative(3.57f, 3.57f, 0.0f, false, false, 0.0f, -5.05f) - close() - moveTo(10.81f, 18.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineTo(8.3f, 18.66f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.1f, 0.02f) - lineToRelative(-0.02f, -0.02f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.04f, 1.08f) - lineToRelative(0.02f, 0.02f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 4.2f, -0.04f) - lineToRelative(1.44f, -1.44f) - close() - } - } - return _pill!! - } - -private var _pill: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PinOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PinOff.kt deleted file mode 100644 index 23c413cb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PinOff.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PinOff: ImageVector - get() { - if (_pinOff != null) { - return _pinOff!! - } - _pinOff = fluentIcon(name = "Filled.PinOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(5.9f, 5.9f) - lineToRelative(-3.3f, 1.15f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -0.49f, 2.07f) - lineToRelative(3.1f, 3.1f) - lineTo(3.0f, 19.94f) - lineTo(3.0f, 21.0f) - horizontalLineToRelative(1.06f) - lineToRelative(4.44f, -4.44f) - lineToRelative(3.1f, 3.1f) - curveToRelative(0.66f, 0.66f, 1.77f, 0.4f, 2.07f, -0.47f) - lineToRelative(1.14f, -3.31f) - lineToRelative(5.91f, 5.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(20.35f, 12.16f) - lineTo(17.01f, 13.83f) - lineTo(10.17f, 7.0f) - lineToRelative(1.67f, -3.34f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 4.4f, -0.72f) - lineToRelative(4.83f, 4.83f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.72f, 4.4f) - close() - } - } - return _pinOff!! - } - -private var _pinOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Pipeline.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Pipeline.kt deleted file mode 100644 index 658b0011..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Pipeline.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Pipeline: ImageVector - get() { - if (_pipeline != null) { - return _pipeline!! - } - _pipeline = fluentIcon(name = "Filled.Pipeline") { - fluentPath { - moveTo(2.0f, 6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) - verticalLineToRelative(11.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - lineTo(2.0f, 6.0f) - close() - moveTo(18.0f, 6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) - verticalLineToRelative(11.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - lineTo(18.0f, 6.0f) - close() - moveTo(16.5f, 6.0f) - horizontalLineToRelative(-9.0f) - verticalLineToRelative(11.0f) - horizontalLineToRelative(9.0f) - lineTo(16.5f, 6.0f) - close() - } - } - return _pipeline!! - } - -private var _pipeline: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Pivot.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Pivot.kt deleted file mode 100644 index d96f2cf6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Pivot.kt +++ /dev/null @@ -1,91 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Pivot: ImageVector - get() { - if (_pivot != null) { - return _pivot!! - } - _pivot = fluentIcon(name = "Filled.Pivot") { - fluentPath { - moveTo(3.0f, 6.5f) - lineTo(3.0f, 17.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 3.5f, 3.5f) - horizontalLineToRelative(4.38f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.53f, -2.34f) - lineToRelative(1.5f, -1.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.71f, 0.84f) - horizontalLineToRelative(0.88f) - verticalLineToRelative(-0.88f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.84f, -3.71f) - lineToRelative(1.5f, -1.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 2.34f, -0.53f) - lineTo(20.5f, 6.5f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 17.0f, 3.0f) - lineTo(6.5f, 3.0f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 3.0f, 6.5f) - close() - moveTo(6.5f, 5.0f) - horizontalLineToRelative(1.0f) - curveTo(8.33f, 5.0f, 9.0f, 5.67f, 9.0f, 6.5f) - verticalLineToRelative(1.0f) - curveTo(9.0f, 8.33f, 8.33f, 9.0f, 7.5f, 9.0f) - horizontalLineToRelative(-1.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 5.0f, 7.5f) - verticalLineToRelative(-1.0f) - curveTo(5.0f, 5.67f, 5.67f, 5.0f, 6.5f, 5.0f) - close() - moveTo(11.0f, 6.5f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - lineTo(17.0f, 5.0f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-4.5f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 11.0f, 7.5f) - verticalLineToRelative(-1.0f) - close() - moveTo(7.5f, 11.0f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - lineTo(9.0f, 17.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-1.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 5.0f, 17.0f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(1.0f) - close() - moveTo(20.28f, 12.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(0.22f, -0.22f) - verticalLineToRelative(2.44f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.44f) - lineToRelative(0.22f, -0.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.06f) - lineToRelative(1.5f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-0.22f, -0.22f) - horizontalLineToRelative(2.44f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-2.44f) - lineToRelative(0.22f, 0.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-1.5f, -1.5f) - close() - } - } - return _pivot!! - } - -private var _pivot: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PlayCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PlayCircle.kt deleted file mode 100644 index a460a181..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PlayCircle.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PlayCircle: ImageVector - get() { - if (_playCircle != null) { - return _playCircle!! - } - _playCircle = fluentIcon(name = "Filled.PlayCircle") { - fluentPath { - moveTo(2.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) - close() - moveTo(10.86f, 8.15f) - arcTo(1.25f, 1.25f, 0.0f, false, false, 9.0f, 9.25f) - verticalLineToRelative(5.5f) - curveToRelative(0.0f, 0.95f, 1.02f, 1.56f, 1.86f, 1.1f) - lineToRelative(5.75f, -3.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.3f) - lineToRelative(-5.75f, -3.2f) - close() - } - } - return _playCircle!! - } - -private var _playCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PlayCircleHint.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PlayCircleHint.kt deleted file mode 100644 index 0034b2f8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PlayCircleHint.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PlayCircleHint: ImageVector - get() { - if (_playCircleHint != null) { - return _playCircleHint!! - } - _playCircleHint = fluentIcon(name = "Filled.PlayCircleHint") { - fluentPath { - moveTo(12.0f, 2.0f) - curveToRelative(-0.67f, 0.0f, -1.32f, 0.07f, -1.95f, 0.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.29f, 1.47f) - arcToRelative(8.55f, 8.55f, 0.0f, false, true, 3.32f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.3f, -1.47f) - curveTo(13.31f, 2.07f, 12.65f, 2.0f, 12.0f, 2.0f) - close() - moveTo(7.28f, 4.93f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.84f, -1.25f) - arcToRelative(10.05f, 10.05f, 0.0f, false, false, -2.76f, 2.76f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.25f, 0.84f) - arcToRelative(8.55f, 8.55f, 0.0f, false, true, 2.35f, -2.35f) - close() - moveTo(17.56f, 3.68f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.84f, 1.25f) - arcToRelative(8.55f, 8.55f, 0.0f, false, true, 2.35f, 2.35f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.25f, -0.84f) - arcToRelative(10.05f, 10.05f, 0.0f, false, false, -2.76f, -2.76f) - close() - moveTo(21.81f, 10.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.47f, 0.29f) - arcToRelative(8.54f, 8.54f, 0.0f, false, true, 0.0f, 3.32f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.47f, 0.3f) - arcToRelative(10.05f, 10.05f, 0.0f, false, false, 0.0f, -3.91f) - close() - moveTo(3.66f, 10.34f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.47f, -0.3f) - arcToRelative(10.05f, 10.05f, 0.0f, false, false, 0.0f, 3.91f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.47f, -0.29f) - arcToRelative(8.55f, 8.55f, 0.0f, false, true, 0.0f, -3.32f) - close() - moveTo(4.93f, 16.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.25f, 0.84f) - arcToRelative(10.05f, 10.05f, 0.0f, false, false, 2.76f, 2.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.84f, -1.25f) - arcToRelative(8.55f, 8.55f, 0.0f, false, true, -2.35f, -2.35f) - close() - moveTo(20.32f, 17.56f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.25f, -0.84f) - arcToRelative(8.55f, 8.55f, 0.0f, false, true, -2.35f, 2.35f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.84f, 1.25f) - arcToRelative(10.05f, 10.05f, 0.0f, false, false, 2.76f, -2.76f) - close() - moveTo(10.34f, 20.34f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.3f, 1.47f) - arcToRelative(10.05f, 10.05f, 0.0f, false, false, 3.91f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.29f, -1.47f) - arcToRelative(8.54f, 8.54f, 0.0f, false, true, -3.32f, 0.0f) - close() - moveTo(19.25f, 12.0f) - arcToRelative(7.25f, 7.25f, 0.0f, true, true, -14.5f, 0.0f) - arcToRelative(7.25f, 7.25f, 0.0f, false, true, 14.5f, 0.0f) - close() - moveTo(10.85f, 8.15f) - arcTo(1.25f, 1.25f, 0.0f, false, false, 9.0f, 9.25f) - verticalLineToRelative(5.5f) - curveToRelative(0.0f, 0.95f, 1.02f, 1.55f, 1.86f, 1.09f) - lineToRelative(5.75f, -3.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.3f) - lineToRelative(-5.75f, -3.2f) - close() - } - } - return _playCircleHint!! - } - -private var _playCircleHint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PlugConnected.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PlugConnected.kt deleted file mode 100644 index 1fd4d88d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PlugConnected.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PlugConnected: ImageVector - get() { - if (_plugConnected != null) { - return _plugConnected!! - } - _plugConnected = fluentIcon(name = "Filled.PlugConnected") { - fluentPath { - moveTo(19.49f, 5.57f) - arcToRelative(5.97f, 5.97f, 0.0f, false, true, -1.9f, 8.96f) - curveToRelative(-0.64f, 0.35f, -1.42f, 0.14f, -1.94f, -0.38f) - lineToRelative(-5.8f, -5.8f) - curveToRelative(-0.52f, -0.52f, -0.73f, -1.3f, -0.38f, -1.95f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 8.96f, -1.89f) - lineToRelative(2.29f, -2.29f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-2.29f, 2.3f) - close() - moveTo(3.28f, 21.78f) - lineToRelative(2.3f, -2.29f) - arcToRelative(5.97f, 5.97f, 0.0f, false, false, 8.95f, -1.9f) - curveToRelative(0.35f, -0.64f, 0.14f, -1.42f, -0.38f, -1.94f) - lineToRelative(-5.8f, -5.8f) - curveToRelative(-0.52f, -0.52f, -1.3f, -0.73f, -1.95f, -0.38f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, -1.89f, 8.96f) - lineToRelative(-2.29f, 2.29f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - close() - } - } - return _plugConnected!! - } - -private var _plugConnected: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PlugDisconnected.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PlugDisconnected.kt deleted file mode 100644 index d1c0a1ce..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PlugDisconnected.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PlugDisconnected: ImageVector - get() { - if (_plugDisconnected != null) { - return _plugDisconnected!! - } - _plugDisconnected = fluentIcon(name = "Filled.PlugDisconnected") { - fluentPath { - moveTo(21.7f, 3.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.4f) - lineToRelative(-1.8f, 1.79f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, -5.26f, 0.6f) - lineToRelative(-1.06f, 1.07f) - curveToRelative(-0.69f, 0.69f, -0.69f, 1.8f, 0.0f, 2.48f) - lineToRelative(3.58f, 3.58f) - curveToRelative(0.69f, 0.69f, 1.8f, 0.69f, 2.48f, 0.0f) - lineToRelative(1.07f, -1.06f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, 0.6f, -5.26f) - lineToRelative(1.8f, -1.8f) - close() - moveTo(10.7f, 11.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.4f) - lineToRelative(-1.48f, 1.46f) - lineToRelative(-0.29f, -0.29f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-1.78f, 1.77f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, -0.6f, 5.26f) - lineToRelative(-1.8f, 1.8f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.42f, 1.4f) - lineToRelative(1.8f, -1.79f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, 5.25f, -0.6f) - lineToRelative(1.77f, -1.78f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-0.3f, -0.3f) - lineToRelative(1.48f, -1.46f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, -1.42f) - lineToRelative(-1.47f, 1.47f) - lineToRelative(-1.58f, -1.58f) - lineToRelative(1.47f, -1.47f) - close() - } - } - return _plugDisconnected!! - } - -private var _plugDisconnected: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PointScan.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PointScan.kt deleted file mode 100644 index ba42c898..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PointScan.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PointScan: ImageVector - get() { - if (_pointScan != null) { - return _pointScan!! - } - _pointScan = fluentIcon(name = "Filled.PointScan") { - fluentPath { - moveTo(10.25f, 2.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(4.8f) - arcTo(6.25f, 6.25f, 0.0f, false, true, 16.46f, 13.0f) - horizontalLineToRelative(4.79f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(16.45f, 14.5f) - arcTo(6.25f, 6.25f, 0.0f, false, true, 11.0f, 19.96f) - verticalLineToRelative(1.29f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(9.5f, 19.95f) - arcToRelative(6.25f, 6.25f, 0.0f, false, true, -5.46f, -5.45f) - lineTo(2.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(4.05f, 13.0f) - arcTo(6.25f, 6.25f, 0.0f, false, true, 9.5f, 7.54f) - lineTo(9.5f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(10.25f, 7.5f) - curveToRelative(-0.25f, 0.0f, -0.5f, 0.01f, -0.75f, 0.04f) - lineTo(9.5f, 13.0f) - lineTo(4.04f, 13.0f) - arcToRelative(6.31f, 6.31f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(9.5f, 14.5f) - verticalLineToRelative(5.46f) - arcToRelative(6.3f, 6.3f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(11.0f, 14.5f) - horizontalLineToRelative(5.46f) - arcToRelative(6.31f, 6.31f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(11.0f, 13.0f) - lineTo(11.0f, 7.54f) - curveToRelative(-0.25f, -0.03f, -0.5f, -0.04f, -0.75f, -0.04f) - close() - } - } - return _pointScan!! - } - -private var _pointScan: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Poll.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Poll.kt deleted file mode 100644 index 2abcb876..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Poll.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Poll: ImageVector - get() { - if (_poll != null) { - return _poll!! - } - _poll = fluentIcon(name = "Filled.Poll") { - fluentPath { - moveTo(11.75f, 2.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.75f) - verticalLineToRelative(14.5f) - arcToRelative(2.75f, 2.75f, 0.0f, true, true, -5.5f, 0.0f) - lineTo(9.0f, 4.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 11.75f, 2.0f) - close() - moveTo(18.75f, 7.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.75f) - verticalLineToRelative(9.5f) - arcToRelative(2.75f, 2.75f, 0.0f, true, true, -5.5f, 0.0f) - verticalLineToRelative(-9.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.75f, 7.0f) - close() - moveTo(4.75f, 12.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.75f) - verticalLineToRelative(4.5f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -5.5f, 0.0f) - verticalLineToRelative(-4.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 12.0f) - close() - } - } - return _poll!! - } - -private var _poll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PollHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PollHorizontal.kt deleted file mode 100644 index ec9d34c3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PollHorizontal.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PollHorizontal: ImageVector - get() { - if (_pollHorizontal != null) { - return _pollHorizontal!! - } - _pollHorizontal = fluentIcon(name = "Filled.PollHorizontal") { - fluentPath { - moveTo(22.0f, 11.75f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) - lineTo(4.75f, 14.5f) - arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, -5.5f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 11.75f) - close() - moveTo(17.0f, 18.75f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) - horizontalLineToRelative(-9.5f) - arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, -5.5f) - horizontalLineToRelative(9.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 17.0f, 18.75f) - close() - moveTo(12.0f, 4.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 9.25f, 7.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, -5.5f) - horizontalLineToRelative(4.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 12.0f, 4.75f) - close() - } - } - return _pollHorizontal!! - } - -private var _pollHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PortHdmi.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PortHdmi.kt deleted file mode 100644 index b4cafc64..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PortHdmi.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PortHdmi: ImageVector - get() { - if (_portHdmi != null) { - return _portHdmi!! - } - _portHdmi = fluentIcon(name = "Filled.PortHdmi") { - fluentPath { - moveToRelative(21.41f, 11.41f) - lineToRelative(-2.82f, -2.82f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 17.17f, 8.0f) - horizontalLineTo(6.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.42f, 0.59f) - lineToRelative(-2.82f, 2.82f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 2.0f, 12.83f) - verticalLineTo(14.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, 2.0f) - horizontalLineToRelative(16.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - verticalLineToRelative(-1.17f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - close() - moveTo(17.0f, 12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, 0.75f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(8.5f) - arcTo(0.76f, 0.76f, 0.0f, false, true, 17.0f, 12.0f) - close() - } - } - return _portHdmi!! - } - -private var _portHdmi: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PortMicroUsb.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PortMicroUsb.kt deleted file mode 100644 index 9bf50fd0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PortMicroUsb.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PortMicroUsb: ImageVector - get() { - if (_portMicroUsb != null) { - return _portMicroUsb!! - } - _portMicroUsb = fluentIcon(name = "Filled.PortMicroUsb") { - fluentPath { - moveTo(19.0f, 12.83f) - verticalLineTo(13.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineTo(7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - verticalLineToRelative(-0.17f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.59f, -1.42f) - lineToRelative(1.82f, -1.82f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 8.83f, 9.0f) - horizontalLineToRelative(6.34f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.42f, 0.59f) - lineToRelative(1.82f, 1.82f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.59f, 1.42f) - close() - } - } - return _portMicroUsb!! - } - -private var _portMicroUsb: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PortUsbA.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PortUsbA.kt deleted file mode 100644 index 80190443..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PortUsbA.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PortUsbA: ImageVector - get() { - if (_portUsbA != null) { - return _portUsbA!! - } - _portUsbA = fluentIcon(name = "Filled.PortUsbA") { - fluentPath { - moveTo(18.0f, 8.0f) - horizontalLineTo(6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, 2.0f) - horizontalLineToRelative(12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - verticalLineToRelative(-4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - close() - moveTo(6.0f, 10.0f) - horizontalLineToRelative(12.0f) - verticalLineToRelative(2.0f) - horizontalLineTo(6.0f) - verticalLineToRelative(-2.0f) - close() - } - } - return _portUsbA!! - } - -private var _portUsbA: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PortUsbC.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PortUsbC.kt deleted file mode 100644 index 4720a612..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PortUsbC.kt +++ /dev/null @@ -1,29 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PortUsbC: ImageVector - get() { - if (_portUsbC != null) { - return _portUsbC!! - } - _portUsbC = fluentIcon(name = "Filled.PortUsbC") { - fluentPath { - moveTo(19.0f, 12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - horizontalLineTo(8.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) - horizontalLineToRelative(8.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - close() - } - } - return _portUsbC!! - } - -private var _portUsbC: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PositionBackward.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PositionBackward.kt deleted file mode 100644 index ae660263..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PositionBackward.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PositionBackward: ImageVector - get() { - if (_positionBackward != null) { - return _positionBackward!! - } - _positionBackward = fluentIcon(name = "Filled.PositionBackward") { - fluentPath { - moveTo(16.5f, 6.5f) - horizontalLineToRelative(-5.75f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, -4.25f, 4.25f) - verticalLineToRelative(5.75f) - lineTo(5.25f, 16.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 13.25f) - verticalLineToRelative(-8.0f) - curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) - horizontalLineToRelative(8.0f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - lineTo(16.5f, 6.5f) - close() - moveTo(22.0f, 18.75f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-8.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.25f, -3.25f) - verticalLineToRelative(-8.0f) - curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) - horizontalLineToRelative(8.0f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(8.0f) - close() - moveTo(18.75f, 20.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-8.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-8.0f) - curveTo(9.78f, 9.0f, 9.0f, 9.78f, 9.0f, 10.75f) - verticalLineToRelative(8.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(8.0f) - close() - } - } - return _positionBackward!! - } - -private var _positionBackward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PositionForward.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PositionForward.kt deleted file mode 100644 index 2f53907f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PositionForward.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PositionForward: ImageVector - get() { - if (_positionForward != null) { - return _positionForward!! - } - _positionForward = fluentIcon(name = "Filled.PositionForward") { - fluentPath { - moveTo(13.25f, 16.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-8.0f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-8.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) - verticalLineToRelative(8.0f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(8.0f) - close() - moveTo(7.5f, 17.5f) - lineTo(9.0f, 17.5f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(8.0f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-8.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(17.5f, 9.0f) - lineTo(17.5f, 7.5f) - horizontalLineToRelative(1.25f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(8.0f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-8.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.25f, -3.25f) - lineTo(7.5f, 17.5f) - close() - } - } - return _positionForward!! - } - -private var _positionForward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PositionToBack.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PositionToBack.kt deleted file mode 100644 index 08096f78..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PositionToBack.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PositionToBack: ImageVector - get() { - if (_positionToBack != null) { - return _positionToBack!! - } - _positionToBack = fluentIcon(name = "Filled.PositionToBack") { - fluentPath { - moveTo(6.0f, 11.0f) - horizontalLineToRelative(1.25f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 11.0f, 7.25f) - lineTo(11.0f, 6.0f) - horizontalLineToRelative(3.75f) - curveTo(16.55f, 6.0f, 18.0f, 7.46f, 18.0f, 9.25f) - lineTo(18.0f, 13.0f) - horizontalLineToRelative(-1.25f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 13.0f, 16.75f) - lineTo(13.0f, 18.0f) - lineTo(9.25f, 18.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 6.0f, 14.75f) - lineTo(6.0f, 11.0f) - close() - moveTo(1.0f, 3.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.75f, 1.0f) - horizontalLineToRelative(3.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 10.0f, 3.75f) - verticalLineToRelative(3.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 7.25f, 10.0f) - horizontalLineToRelative(-3.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 1.0f, 7.25f) - verticalLineToRelative(-3.5f) - close() - moveTo(3.75f, 2.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-3.5f) - close() - moveTo(14.0f, 16.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 16.75f, 14.0f) - horizontalLineToRelative(3.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 23.0f, 16.75f) - verticalLineToRelative(3.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 20.25f, 23.0f) - horizontalLineToRelative(-3.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 14.0f, 20.25f) - verticalLineToRelative(-3.5f) - close() - moveTo(16.75f, 15.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-3.5f) - close() - } - } - return _positionToBack!! - } - -private var _positionToBack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PositionToFront.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PositionToFront.kt deleted file mode 100644 index bafd86fd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PositionToFront.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PositionToFront: ImageVector - get() { - if (_positionToFront != null) { - return _positionToFront!! - } - _positionToFront = fluentIcon(name = "Filled.PositionToFront") { - fluentPath { - moveTo(1.0f, 3.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.75f, 1.0f) - horizontalLineToRelative(3.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 10.0f, 3.75f) - verticalLineTo(5.0f) - horizontalLineToRelative(-0.75f) - curveToRelative(-0.26f, 0.0f, -0.5f, 0.02f, -0.75f, 0.07f) - verticalLineTo(3.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(1.32f) - curveToRelative(-0.05f, 0.24f, -0.07f, 0.5f, -0.07f, 0.75f) - verticalLineTo(10.0f) - horizontalLineTo(3.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 1.0f, 7.25f) - verticalLineToRelative(-3.5f) - close() - moveTo(14.0f, 19.0f) - verticalLineToRelative(1.25f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 16.75f, 23.0f) - horizontalLineToRelative(3.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 23.0f, 20.25f) - verticalLineToRelative(-3.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 20.25f, 14.0f) - horizontalLineTo(19.0f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.26f, -0.02f, 0.5f, -0.07f, 0.75f) - horizontalLineToRelative(1.32f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - verticalLineToRelative(-1.32f) - curveToRelative(-0.24f, 0.05f, -0.5f, 0.07f, -0.75f, 0.07f) - horizontalLineTo(14.0f) - close() - moveTo(6.0f, 9.25f) - curveTo(6.0f, 7.45f, 7.46f, 6.0f, 9.25f, 6.0f) - horizontalLineToRelative(5.5f) - curveTo(16.55f, 6.0f, 18.0f, 7.46f, 18.0f, 9.25f) - verticalLineToRelative(5.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-5.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 6.0f, 14.75f) - verticalLineToRelative(-5.5f) - close() - } - } - return _positionToFront!! - } - -private var _positionToFront: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Power.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Power.kt deleted file mode 100644 index ea16fcd4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Power.kt +++ /dev/null @@ -1,35 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Power: ImageVector - get() { - if (_power != null) { - return _power!! - } - _power = fluentIcon(name = "Filled.Power") { - fluentPath { - moveTo(8.2f, 4.84f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.85f, 1.82f) - arcToRelative(7.0f, 7.0f, 0.0f, true, false, 5.92f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.84f, -1.8f) - arcToRelative(9.0f, 9.0f, 0.0f, true, true, -7.6f, -0.02f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - verticalLineTo(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - verticalLineTo(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - } - } - return _power!! - } - -private var _power: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Predictions.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Predictions.kt deleted file mode 100644 index c87e3a04..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Predictions.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Predictions: ImageVector - get() { - if (_predictions != null) { - return _predictions!! - } - _predictions = fluentIcon(name = "Filled.Predictions") { - fluentPath { - moveToRelative(16.68f, 14.93f) - lineToRelative(1.29f, 3.85f) - curveToRelative(0.26f, 0.8f, -0.08f, 1.67f, -0.81f, 2.08f) - curveToRelative(-1.37f, 0.77f, -3.1f, 1.14f, -5.16f, 1.14f) - reflectiveCurveToRelative(-3.79f, -0.37f, -5.16f, -1.14f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.8f, -2.08f) - lineToRelative(1.28f, -3.85f) - arcToRelative(7.72f, 7.72f, 0.0f, false, false, 9.36f, 0.0f) - close() - moveTo(12.0f, 2.0f) - curveToRelative(1.34f, 0.0f, 2.58f, 0.39f, 3.63f, 1.06f) - curveToRelative(-0.08f, 0.31f, -0.2f, 0.54f, -0.37f, 0.7f) - curveToRelative(-0.25f, 0.26f, -0.68f, 0.42f, -1.32f, 0.47f) - lineToRelative(-0.22f, 0.02f) - horizontalLineToRelative(-0.38f) - curveToRelative(-2.17f, 0.16f, -2.12f, 3.5f, 0.16f, 3.5f) - curveToRelative(0.89f, 0.0f, 1.46f, 0.18f, 1.76f, 0.49f) - curveToRelative(0.26f, 0.25f, 0.42f, 0.68f, 0.47f, 1.32f) - lineToRelative(0.02f, 0.22f) - verticalLineToRelative(0.38f) - curveToRelative(0.1f, 1.32f, 1.36f, 1.81f, 2.34f, 1.5f) - arcTo(6.75f, 6.75f, 0.0f, true, true, 12.0f, 2.0f) - close() - moveTo(18.25f, 2.0f) - curveToRelative(0.0f, 1.15f, 0.27f, 1.96f, 0.78f, 2.47f) - curveToRelative(0.47f, 0.47f, 1.2f, 0.74f, 2.21f, 0.78f) - horizontalLineToRelative(0.26f) - curveToRelative(0.96f, 0.0f, 1.0f, 1.38f, 0.12f, 1.5f) - horizontalLineToRelative(-0.12f) - curveToRelative(-1.15f, 0.0f, -1.96f, 0.27f, -2.47f, 0.78f) - curveToRelative(-0.47f, 0.47f, -0.74f, 1.2f, -0.78f, 2.21f) - lineTo(18.25f, 10.0f) - curveToRelative(0.0f, 1.0f, -1.5f, 1.0f, -1.5f, 0.0f) - curveToRelative(0.0f, -1.15f, -0.27f, -1.96f, -0.78f, -2.47f) - curveToRelative(-0.47f, -0.47f, -1.2f, -0.74f, -2.21f, -0.78f) - horizontalLineToRelative(-0.26f) - curveToRelative(-0.96f, 0.0f, -1.0f, -1.38f, -0.12f, -1.5f) - horizontalLineToRelative(0.12f) - curveToRelative(1.15f, 0.0f, 1.96f, -0.27f, 2.47f, -0.78f) - curveToRelative(0.51f, -0.51f, 0.78f, -1.32f, 0.78f, -2.47f) - curveToRelative(0.0f, -1.0f, 1.5f, -1.0f, 1.5f, 0.0f) - close() - } - } - return _predictions!! - } - -private var _predictions: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Premium.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Premium.kt deleted file mode 100644 index e1de0906..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Premium.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Premium: ImageVector - get() { - if (_premium != null) { - return _premium!! - } - _premium = fluentIcon(name = "Filled.Premium") { - fluentPath { - moveTo(18.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.83f, 0.44f) - lineToRelative(0.06f, 0.11f) - lineToRelative(3.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.06f, 1.01f) - lineToRelative(-0.09f, 0.1f) - lineToRelative(-8.97f, 9.98f) - arcToRelative(0.99f, 0.99f, 0.0f, false, true, -0.89f, 0.35f) - lineToRelative(-0.1f, -0.02f) - arcToRelative(0.98f, 0.98f, 0.0f, false, true, -0.54f, -0.32f) - lineToRelative(-8.98f, -9.98f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.2f, -1.0f) - lineToRelative(0.05f, -0.12f) - lineToRelative(3.0f, -6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.77f, -0.54f) - lineTo(6.0f, 3.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(14.58f, 11.0f) - lineTo(9.42f, 11.0f) - lineTo(12.0f, 17.34f) - lineTo(14.58f, 11.0f) - close() - moveTo(18.75f, 11.0f) - horizontalLineToRelative(-2.02f) - lineToRelative(-1.66f, 4.09f) - lineTo(18.75f, 11.0f) - close() - moveTo(7.26f, 11.0f) - lineTo(5.25f, 11.0f) - lineToRelative(3.67f, 4.09f) - lineTo(7.26f, 11.0f) - close() - moveTo(8.62f, 5.0f) - horizontalLineToRelative(-2.0f) - lineToRelative(-2.0f, 4.0f) - horizontalLineToRelative(2.7f) - lineToRelative(1.3f, -4.0f) - close() - moveTo(13.27f, 5.0f) - horizontalLineToRelative(-2.54f) - lineToRelative(-1.3f, 4.0f) - horizontalLineToRelative(5.14f) - lineToRelative(-1.3f, -4.0f) - close() - moveTo(17.38f, 5.0f) - horizontalLineToRelative(-2.0f) - lineToRelative(1.3f, 4.0f) - horizontalLineToRelative(2.7f) - lineToRelative(-2.0f, -4.0f) - close() - } - } - return _premium!! - } - -private var _premium: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PremiumPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PremiumPerson.kt deleted file mode 100644 index 7dd716a5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PremiumPerson.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PremiumPerson: ImageVector - get() { - if (_premiumPerson != null) { - return _premiumPerson!! - } - _premiumPerson = fluentIcon(name = "Filled.PremiumPerson") { - fluentPath { - moveTo(18.83f, 3.44f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 18.0f, 3.0f) - lineTo(5.88f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.77f, 0.55f) - lineToRelative(-3.0f, 6.0f) - lineToRelative(-0.06f, 0.13f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.2f, 0.99f) - lineToRelative(8.99f, 9.98f) - curveToRelative(0.14f, 0.17f, 0.33f, 0.28f, 0.53f, 0.32f) - lineToRelative(0.11f, 0.02f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.89f, -0.35f) - lineToRelative(0.26f, -0.29f) - arcToRelative(3.79f, 3.79f, 0.0f, false, true, -0.03f, -0.48f) - verticalLineToRelative(-0.1f) - arcTo(2.77f, 2.77f, 0.0f, false, true, 15.77f, 17.0f) - horizontalLineToRelative(0.28f) - arcToRelative(3.49f, 3.49f, 0.0f, false, true, 2.45f, -6.0f) - curveToRelative(0.85f, 0.0f, 1.62f, 0.3f, 2.23f, 0.8f) - lineToRelative(1.01f, -1.13f) - lineToRelative(0.09f, -0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.06f, -1.02f) - lineToRelative(-3.0f, -6.0f) - lineToRelative(-0.06f, -0.1f) - close() - moveTo(9.43f, 11.0f) - horizontalLineToRelative(5.15f) - lineTo(12.0f, 17.34f) - lineTo(9.42f, 11.0f) - close() - moveTo(5.25f, 11.0f) - horizontalLineToRelative(2.01f) - lineToRelative(1.66f, 4.09f) - lineTo(5.25f, 11.0f) - close() - moveTo(6.62f, 5.0f) - horizontalLineToRelative(2.0f) - lineToRelative(-1.3f, 4.0f) - horizontalLineToRelative(-2.7f) - lineToRelative(2.0f, -4.0f) - close() - moveTo(10.72f, 5.0f) - horizontalLineToRelative(2.55f) - lineToRelative(1.3f, 4.0f) - lineTo(9.43f, 9.0f) - lineToRelative(1.3f, -4.0f) - close() - moveTo(15.38f, 5.0f) - horizontalLineToRelative(2.0f) - lineToRelative(2.0f, 4.0f) - horizontalLineToRelative(-2.7f) - lineToRelative(-1.3f, -4.0f) - close() - moveTo(21.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(23.0f, 19.88f) - curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) - reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _premiumPerson!! - } - -private var _premiumPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PresenceAvailable.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PresenceAvailable.kt deleted file mode 100644 index 2273317e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PresenceAvailable.kt +++ /dev/null @@ -1,35 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PresenceAvailable: ImageVector - get() { - if (_presenceAvailable != null) { - return _presenceAvailable!! - } - _presenceAvailable = fluentIcon(name = "Filled.PresenceAvailable") { - fluentPath { - moveTo(12.0f, 24.0f) - arcToRelative(12.0f, 12.0f, 0.0f, true, false, 0.0f, -24.0f) - arcToRelative(12.0f, 12.0f, 0.0f, false, false, 0.0f, 24.0f) - close() - moveTo(17.06f, 10.56f) - lineTo(11.56f, 16.06f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.12f, 0.0f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.12f, -2.12f) - lineToRelative(0.94f, 0.94f) - lineToRelative(4.44f, -4.44f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.12f, 2.12f) - close() - } - } - return _presenceAvailable!! - } - -private var _presenceAvailable: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PresenceAway.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PresenceAway.kt deleted file mode 100644 index 4c548c99..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PresenceAway.kt +++ /dev/null @@ -1,35 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PresenceAway: ImageVector - get() { - if (_presenceAway != null) { - return _presenceAway!! - } - _presenceAway = fluentIcon(name = "Filled.PresenceAway") { - fluentPath { - moveTo(12.0f, 24.0f) - arcToRelative(12.0f, 12.0f, 0.0f, true, false, 0.0f, -24.0f) - arcToRelative(12.0f, 12.0f, 0.0f, false, false, 0.0f, 24.0f) - close() - moveTo(13.0f, 6.5f) - verticalLineToRelative(4.81f) - lineToRelative(2.98f, 2.55f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.96f, 2.28f) - lineToRelative(-3.5f, -3.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 10.0f, 12.0f) - lineTo(10.0f, 6.5f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - } - } - return _presenceAway!! - } - -private var _presenceAway: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PresenceDnd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PresenceDnd.kt deleted file mode 100644 index cf1de891..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PresenceDnd.kt +++ /dev/null @@ -1,32 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PresenceDnd: ImageVector - get() { - if (_presenceDnd != null) { - return _presenceDnd!! - } - _presenceDnd = fluentIcon(name = "Filled.PresenceDnd") { - fluentPath { - moveTo(12.0f, 24.0f) - arcToRelative(12.0f, 12.0f, 0.0f, true, false, 0.0f, -24.0f) - arcToRelative(12.0f, 12.0f, 0.0f, false, false, 0.0f, 24.0f) - close() - moveTo(7.5f, 10.5f) - horizontalLineToRelative(9.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) - horizontalLineToRelative(-9.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - } - } - return _presenceDnd!! - } - -private var _presenceDnd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Presenter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Presenter.kt deleted file mode 100644 index 89f91163..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Presenter.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Presenter: ImageVector - get() { - if (_presenter != null) { - return _presenter!! - } - _presenter = fluentIcon(name = "Filled.Presenter") { - fluentPath { - moveTo(20.24f, 13.0f) - curveToRelative(0.71f, 0.0f, 1.03f, 0.89f, 0.47f, 1.33f) - lineTo(16.0f, 18.11f) - verticalLineToRelative(1.64f) - curveTo(16.0f, 21.0f, 14.99f, 22.0f, 13.75f, 22.0f) - horizontalLineToRelative(-3.5f) - curveTo(9.01f, 22.0f, 8.0f, 21.0f, 8.0f, 19.75f) - verticalLineToRelative(-1.64f) - lineToRelative(-4.72f, -3.78f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 3.75f, 13.0f) - horizontalLineToRelative(16.5f) - close() - moveTo(8.75f, 9.0f) - horizontalLineToRelative(6.5f) - curveToRelative(0.91f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) - verticalLineTo(12.0f) - horizontalLineTo(7.0f) - verticalLineToRelative(-1.25f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) - lineTo(8.76f, 9.0f) - horizontalLineToRelative(6.5f) - horizontalLineToRelative(-6.5f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) - close() - } - } - return _presenter!! - } - -private var _presenter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PresenterOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PresenterOff.kt deleted file mode 100644 index f1037ffa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PresenterOff.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PresenterOff: ImageVector - get() { - if (_presenterOff != null) { - return _presenterOff!! - } - _presenterOff = fluentIcon(name = "Filled.PresenterOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(5.85f, 5.86f) - curveTo(7.44f, 9.4f, 7.0f, 10.02f, 7.0f, 10.75f) - lineTo(7.0f, 12.0f) - horizontalLineToRelative(3.94f) - lineToRelative(1.0f, 1.0f) - horizontalLineToRelative(-8.2f) - curveToRelative(-0.7f, 0.0f, -1.01f, 0.89f, -0.46f, 1.33f) - lineTo(8.0f, 18.11f) - verticalLineToRelative(1.64f) - curveTo(8.0f, 21.0f, 9.0f, 22.0f, 10.25f, 22.0f) - horizontalLineToRelative(3.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-1.64f) - lineToRelative(0.58f, -0.47f) - lineToRelative(4.14f, 4.14f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(16.18f, 13.0f) - lineToRelative(2.76f, 2.76f) - lineToRelative(1.77f, -1.43f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.47f, -1.33f) - horizontalLineToRelative(-4.06f) - close() - moveTo(12.18f, 9.0f) - lineTo(15.18f, 12.0f) - lineTo(17.0f, 12.0f) - lineTo(17.0f, 10.61f) - curveTo(16.92f, 9.7f, 16.16f, 9.0f, 15.24f, 9.0f) - horizontalLineToRelative(-3.06f) - close() - moveTo(12.0f, 8.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.98f, -0.16f) - lineTo(9.16f, 5.98f) - arcTo(3.0f, 3.0f, 0.0f, true, true, 12.0f, 8.0f) - close() - } - } - return _presenterOff!! - } - -private var _presenterOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PreviewLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PreviewLink.kt deleted file mode 100644 index 5161bddd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PreviewLink.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PreviewLink: ImageVector - get() { - if (_previewLink != null) { - return _previewLink!! - } - _previewLink = fluentIcon(name = "Filled.PreviewLink") { - fluentPath { - moveTo(6.02f, 7.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(11.96f) - lineTo(17.98f, 7.0f) - lineTo(6.02f, 7.0f) - close() - moveTo(14.98f, 13.48f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(-3.0f) - close() - moveTo(2.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 3.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 21.0f) - lineTo(4.75f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 18.25f) - lineTo(2.0f, 5.75f) - close() - moveTo(4.52f, 6.25f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(13.46f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(5.27f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(13.48f, 12.73f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(5.28f, 12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(5.27f, 12.5f) - close() - moveTo(4.52f, 16.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(5.98f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(5.27f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - } - } - return _previewLink!! - } - -private var _previewLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Previous.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Previous.kt deleted file mode 100644 index a98bd754..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Previous.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Previous: ImageVector - get() { - if (_previous != null) { - return _previous!! - } - _previous = fluentIcon(name = "Filled.Previous") { - fluentPath { - moveTo(3.0f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(3.0f, 3.75f) - close() - moveTo(21.0f, 4.75f) - curveToRelative(0.0f, -1.4f, -1.58f, -2.24f, -2.74f, -1.44f) - lineToRelative(-10.5f, 7.2f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, 2.87f) - lineToRelative(10.5f, 7.3f) - curveToRelative(1.15f, 0.81f, 2.74f, -0.02f, 2.74f, -1.43f) - lineTo(21.0f, 4.75f) - close() - } - } - return _previous!! - } - -private var _previous: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Print.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Print.kt deleted file mode 100644 index 1c6e4939..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Print.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Print: ImageVector - get() { - if (_print != null) { - return _print!! - } - _print = fluentIcon(name = "Filled.Print") { - fluentPath { - moveTo(18.0f, 17.5f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-7.5f) - curveTo(7.01f, 21.0f, 6.0f, 20.0f, 6.0f, 18.75f) - lineTo(6.0f, 17.5f) - lineTo(4.25f, 17.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-6.0f) - curveTo(2.0f, 7.45f, 3.46f, 6.0f, 5.25f, 6.0f) - lineTo(6.0f, 6.0f) - verticalLineToRelative(-0.75f) - curveTo(6.0f, 4.01f, 7.0f, 3.0f, 8.25f, 3.0f) - horizontalLineToRelative(7.5f) - curveTo(17.0f, 3.0f, 18.0f, 4.0f, 18.0f, 5.25f) - lineTo(18.0f, 6.0f) - horizontalLineToRelative(0.75f) - curveTo(20.55f, 6.0f, 22.0f, 7.46f, 22.0f, 9.25f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.24f, 2.25f) - lineTo(18.0f, 17.5f) - close() - moveTo(15.75f, 13.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(7.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(15.75f, 4.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(7.5f, 6.0f) - horizontalLineToRelative(9.0f) - verticalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - } - } - return _print!! - } - -private var _print: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PrintAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PrintAdd.kt deleted file mode 100644 index 223ab9a6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PrintAdd.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PrintAdd: ImageVector - get() { - if (_printAdd != null) { - return _printAdd!! - } - _printAdd = fluentIcon(name = "Filled.PrintAdd") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 7.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 7.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 6.0f) - lineTo(17.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - lineTo(18.0f, 6.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 7.0f) - close() - moveTo(17.5f, 13.0f) - curveToRelative(1.75f, 0.0f, 3.34f, -0.7f, 4.5f, -1.81f) - verticalLineToRelative(5.06f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.24f, 2.25f) - lineTo(18.0f, 18.5f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-7.5f) - curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) - lineTo(6.0f, 18.5f) - lineTo(4.25f, 18.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-6.0f) - curveTo(2.0f, 8.45f, 3.46f, 7.0f, 5.25f, 7.0f) - lineTo(6.0f, 7.0f) - verticalLineToRelative(-0.75f) - curveTo(6.0f, 5.01f, 7.0f, 4.0f, 8.25f, 4.0f) - horizontalLineToRelative(3.25f) - curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) - lineTo(8.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(7.5f, 7.0f) - horizontalLineToRelative(3.52f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, 6.48f, 6.0f) - close() - moveTo(16.5f, 15.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(7.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-4.5f) - close() - } - } - return _printAdd!! - } - -private var _printAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Production.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Production.kt deleted file mode 100644 index cfcf4b8e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Production.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Production: ImageVector - get() { - if (_production != null) { - return _production!! - } - _production = fluentIcon(name = "Filled.Production") { - fluentPath { - moveTo(4.5f, 5.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-2.5f) - close() - moveTo(15.25f, 3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-2.5f) - close() - moveTo(15.0f, 5.25f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(2.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-2.5f) - close() - moveTo(2.0f, 16.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.5f, -4.5f) - horizontalLineToRelative(11.0f) - arcToRelative(4.5f, 4.5f, 0.0f, true, true, 0.0f, 9.0f) - horizontalLineToRelative(-11.0f) - arcTo(4.5f, 4.5f, 0.0f, false, true, 2.0f, 16.0f) - close() - moveTo(8.5f, 16.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) - close() - moveTo(13.5f, 16.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) - close() - moveTo(17.0f, 17.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - close() - } - } - return _production!! - } - -private var _production: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ProductionCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ProductionCheckmark.kt deleted file mode 100644 index 1c3d606c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ProductionCheckmark.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ProductionCheckmark: ImageVector - get() { - if (_productionCheckmark != null) { - return _productionCheckmark!! - } - _productionCheckmark = fluentIcon(name = "Filled.ProductionCheckmark") { - fluentPath { - moveTo(6.25f, 3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-2.5f) - close() - moveTo(13.5f, 5.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-2.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - close() - moveTo(15.25f, 5.0f) - horizontalLineToRelative(2.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - close() - moveTo(6.5f, 11.5f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, 0.0f, 9.0f) - horizontalLineToRelative(5.23f) - arcToRelative(6.47f, 6.47f, 0.0f, false, true, -0.72f, -3.37f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.7f, -2.6f) - arcTo(6.53f, 6.53f, 0.0f, false, true, 15.0f, 11.5f) - lineTo(6.5f, 11.5f) - close() - moveTo(7.0f, 17.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-3.65f, 3.64f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _productionCheckmark!! - } - -private var _productionCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Prohibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Prohibited.kt deleted file mode 100644 index dae40c41..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Prohibited.kt +++ /dev/null @@ -1,35 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Prohibited: ImageVector - get() { - if (_prohibited != null) { - return _prohibited!! - } - _prohibited = fluentIcon(name = "Filled.Prohibited") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(18.11f, 7.65f) - lineTo(7.65f, 18.11f) - arcTo(7.5f, 7.5f, 0.0f, false, false, 18.11f, 7.65f) - close() - moveTo(12.0f, 4.5f) - arcToRelative(7.5f, 7.5f, 0.0f, false, false, -6.11f, 11.85f) - lineTo(16.35f, 5.89f) - arcTo(7.47f, 7.47f, 0.0f, false, false, 12.0f, 4.5f) - close() - } - } - return _prohibited!! - } - -private var _prohibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ProhibitedMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ProhibitedMultiple.kt deleted file mode 100644 index 0dc6d1b6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ProhibitedMultiple.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ProhibitedMultiple: ImageVector - get() { - if (_prohibitedMultiple != null) { - return _prohibitedMultiple!! - } - _prohibitedMultiple = fluentIcon(name = "Filled.ProhibitedMultiple") { - fluentPath { - moveTo(10.75f, 19.5f) - arcToRelative(8.75f, 8.75f, 0.0f, true, false, 0.0f, -17.5f) - arcToRelative(8.75f, 8.75f, 0.0f, false, false, 0.0f, 17.5f) - close() - moveTo(10.75f, 17.5f) - curveToRelative(-1.5f, 0.0f, -2.9f, -0.5f, -4.01f, -1.32f) - lineToRelative(9.44f, -9.44f) - arcToRelative(6.75f, 6.75f, 0.0f, false, true, -5.43f, 10.76f) - close() - moveTo(14.76f, 5.32f) - lineTo(5.32f, 14.76f) - arcToRelative(6.75f, 6.75f, 0.0f, false, true, 9.44f, -9.44f) - close() - moveTo(20.5f, 10.75f) - arcToRelative(9.75f, 9.75f, 0.0f, false, true, -12.8f, 9.26f) - arcTo(8.75f, 8.75f, 0.0f, false, false, 20.02f, 7.7f) - curveToRelative(0.3f, 0.97f, 0.48f, 2.0f, 0.48f, 3.06f) - close() - } - } - return _prohibitedMultiple!! - } - -private var _prohibitedMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ProjectionScreen.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ProjectionScreen.kt deleted file mode 100644 index 72f9684b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ProjectionScreen.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ProjectionScreen: ImageVector - get() { - if (_projectionScreen != null) { - return _projectionScreen!! - } - _projectionScreen = fluentIcon(name = "Filled.ProjectionScreen") { - fluentPath { - moveTo(3.5f, 3.0f) - arcTo(1.5f, 1.5f, 0.0f, false, false, 3.0f, 5.91f) - verticalLineToRelative(7.34f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 6.75f, 17.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - verticalLineTo(17.0f) - horizontalLineToRelative(4.5f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 21.0f, 13.25f) - verticalLineTo(5.91f) - arcTo(1.5f, 1.5f, 0.0f, false, false, 20.5f, 3.0f) - horizontalLineToRelative(-17.0f) - close() - } - } - return _projectionScreen!! - } - -private var _projectionScreen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ProjectionScreenDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ProjectionScreenDismiss.kt deleted file mode 100644 index c9877243..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ProjectionScreenDismiss.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ProjectionScreenDismiss: ImageVector - get() { - if (_projectionScreenDismiss != null) { - return _projectionScreenDismiss!! - } - _projectionScreenDismiss = fluentIcon(name = "Filled.ProjectionScreenDismiss") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 4.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineTo(18.21f, 6.5f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineTo(17.5f, 5.79f) - lineToRelative(-1.65f, -1.64f) - close() - moveTo(17.5f, 13.0f) - curveToRelative(1.29f, 0.0f, 2.49f, -0.38f, 3.5f, -1.02f) - verticalLineToRelative(1.27f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 17.25f, 17.0f) - horizontalLineToRelative(-4.5f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.5f) - lineTo(11.25f, 17.0f) - horizontalLineToRelative(-4.5f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 3.0f, 13.25f) - lineTo(3.0f, 5.91f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 3.5f, 3.0f) - horizontalLineToRelative(8.52f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, 5.48f, 10.0f) - close() - } - } - return _projectionScreenDismiss!! - } - -private var _projectionScreenDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ProjectionScreenText.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ProjectionScreenText.kt deleted file mode 100644 index 534ad17a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ProjectionScreenText.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ProjectionScreenText: ImageVector - get() { - if (_projectionScreenText != null) { - return _projectionScreenText!! - } - _projectionScreenText = fluentIcon(name = "Filled.ProjectionScreenText") { - fluentPath { - moveTo(2.0f, 4.5f) - curveTo(2.0f, 3.67f, 2.67f, 3.0f, 3.5f, 3.0f) - horizontalLineToRelative(17.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.5f, 2.91f) - verticalLineToRelative(7.34f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 17.25f, 17.0f) - horizontalLineToRelative(-4.5f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.5f) - lineTo(11.25f, 17.0f) - horizontalLineToRelative(-4.5f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 3.0f, 13.25f) - lineTo(3.0f, 5.91f) - curveToRelative(-0.58f, -0.2f, -1.0f, -0.76f, -1.0f, -1.41f) - close() - moveTo(9.0f, 7.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(9.75f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.0f) - close() - moveTo(8.75f, 10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.5f) - close() - } - } - return _projectionScreenText!! - } - -private var _projectionScreenText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ProtocolHandler.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ProtocolHandler.kt deleted file mode 100644 index 4c0a3269..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ProtocolHandler.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ProtocolHandler: ImageVector - get() { - if (_protocolHandler != null) { - return _protocolHandler!! - } - _protocolHandler = fluentIcon(name = "Filled.ProtocolHandler") { - fluentPath { - moveToRelative(13.48f, 17.73f) - lineToRelative(-0.77f, -0.77f) - lineToRelative(2.48f, -2.49f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -4.95f) - lineTo(12.7f, 7.04f) - lineToRelative(0.77f, -0.77f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 3.54f, 0.0f) - lineToRelative(3.96f, 3.96f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, 3.54f) - lineToRelative(-3.96f, 3.96f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -3.54f, 0.0f) - close() - moveTo(14.48f, 13.77f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, -3.54f) - lineToRelative(-3.96f, -3.96f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -3.54f, 0.0f) - lineToRelative(-3.96f, 3.96f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 3.54f) - lineToRelative(3.96f, 3.96f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.54f, 0.0f) - lineToRelative(3.96f, -3.96f) - close() - } - } - return _protocolHandler!! - } - -private var _protocolHandler: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Pulse.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Pulse.kt deleted file mode 100644 index 6456af46..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Pulse.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Pulse: ImageVector - get() { - if (_pulse != null) { - return _pulse!! - } - _pulse = fluentIcon(name = "Filled.Pulse") { - fluentPath { - moveToRelative(8.47f, 7.24f) - lineToRelative(3.06f, 12.99f) - curveToRelative(0.23f, 1.0f, 1.63f, 1.04f, 1.93f, 0.06f) - lineToRelative(2.94f, -9.58f) - lineToRelative(0.39f, 1.53f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.97f, 0.76f) - horizontalLineTo(21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-2.47f) - lineToRelative(-1.06f, -4.24f) - curveToRelative(-0.25f, -0.99f, -1.63f, -1.02f, -1.93f, -0.05f) - lineToRelative(-2.91f, 9.47f) - lineToRelative(-3.15f, -13.4f) - curveToRelative(-0.24f, -1.03f, -1.7f, -1.04f, -1.95f, -0.02f) - lineTo(5.47f, 11.0f) - horizontalLineTo(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(3.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.97f, -0.76f) - lineToRelative(1.25f, -5.0f) - close() - } - } - return _pulse!! - } - -private var _pulse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PulseSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PulseSquare.kt deleted file mode 100644 index 84826758..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PulseSquare.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PulseSquare: ImageVector - get() { - if (_pulseSquare != null) { - return _pulseSquare!! - } - _pulseSquare = fluentIcon(name = "Filled.PulseSquare") { - fluentPath { - moveTo(18.75f, 3.0f) - curveTo(19.99f, 3.0f, 21.0f, 4.0f, 21.0f, 5.25f) - verticalLineToRelative(13.5f) - curveTo(21.0f, 20.0f, 20.0f, 21.0f, 18.75f, 21.0f) - horizontalLineTo(5.25f) - curveTo(4.01f, 21.0f, 3.0f, 20.0f, 3.0f, 18.75f) - verticalLineTo(5.25f) - curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(13.5f) - close() - moveTo(9.8f, 7.95f) - lineTo(8.26f, 11.5f) - horizontalLineTo(6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.0f) - curveToRelative(0.3f, 0.0f, 0.56f, -0.18f, 0.68f, -0.45f) - lineToRelative(1.04f, -2.36f) - lineToRelative(2.33f, 5.83f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.37f, 0.06f) - lineTo(15.71f, 13.0f) - horizontalLineToRelative(1.54f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.67f, 0.41f) - lineToRelative(-1.0f, 2.0f) - lineToRelative(-2.39f, -5.94f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.38f, -0.02f) - close() - } - } - return _pulseSquare!! - } - -private var _pulseSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PuzzleCube.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PuzzleCube.kt deleted file mode 100644 index 031eaf98..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PuzzleCube.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PuzzleCube: ImageVector - get() { - if (_puzzleCube != null) { - return _puzzleCube!! - } - _puzzleCube = fluentIcon(name = "Filled.PuzzleCube") { - fluentPath { - moveTo(9.5f, 21.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - close() - moveTo(16.0f, 21.0f) - horizontalLineToRelative(1.75f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 16.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - close() - moveTo(21.0f, 14.5f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(21.0f, 8.0f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(16.0f, 3.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(14.5f, 3.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - lineTo(14.5f, 3.0f) - close() - moveTo(3.0f, 9.5f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-5.0f) - lineTo(3.0f, 9.5f) - close() - moveTo(3.0f, 16.0f) - verticalLineToRelative(1.75f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - lineTo(8.0f, 21.0f) - verticalLineToRelative(-5.0f) - lineTo(3.0f, 16.0f) - close() - moveTo(14.5f, 9.5f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(5.0f) - close() - } - } - return _puzzleCube!! - } - -private var _puzzleCube: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PuzzlePiece.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PuzzlePiece.kt deleted file mode 100644 index 05f93d77..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PuzzlePiece.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.PuzzlePiece: ImageVector - get() { - if (_puzzlePiece != null) { - return _puzzlePiece!! - } - _puzzlePiece = fluentIcon(name = "Filled.PuzzlePiece") { - fluentPath { - moveTo(13.0f, 2.0f) - curveToRelative(1.36f, 0.0f, 2.47f, 1.1f, 2.47f, 2.47f) - verticalLineTo(5.0f) - horizontalLineTo(19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(3.5f) - horizontalLineToRelative(-1.53f) - arcToRelative(2.47f, 2.47f, 0.0f, false, false, -2.46f, 2.3f) - lineToRelative(-0.01f, 0.17f) - verticalLineToRelative(0.06f) - curveToRelative(0.0f, 1.31f, 1.02f, 2.38f, 2.3f, 2.46f) - lineToRelative(0.17f, 0.01f) - horizontalLineTo(20.0f) - verticalLineTo(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-3.53f) - verticalLineToRelative(0.53f) - arcToRelative(2.47f, 2.47f, 0.0f, true, true, -4.94f, 0.0f) - verticalLineTo(19.0f) - horizontalLineTo(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineToRelative(-3.53f) - horizontalLineToRelative(-0.53f) - arcToRelative(2.47f, 2.47f, 0.0f, false, true, 0.0f, -4.94f) - horizontalLineTo(6.0f) - verticalLineTo(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(3.53f) - verticalLineToRelative(-0.53f) - curveTo(10.53f, 3.11f, 11.63f, 2.0f, 13.0f, 2.0f) - close() - } - } - return _puzzlePiece!! - } - -private var _puzzlePiece: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/QrCode.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/QrCode.kt deleted file mode 100644 index 266d0c8f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/QrCode.kt +++ /dev/null @@ -1,126 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.QrCode: ImageVector - get() { - if (_qrCode != null) { - return _qrCode!! - } - _qrCode = fluentIcon(name = "Filled.QrCode") { - fluentPath { - moveTo(8.0f, 6.0f) - lineTo(6.0f, 6.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(2.0f) - lineTo(8.0f, 6.0f) - close() - moveTo(3.0f, 5.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 5.5f, 3.0f) - horizontalLineToRelative(3.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 11.0f, 5.5f) - verticalLineToRelative(3.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 8.5f, 11.0f) - horizontalLineToRelative(-3.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 3.0f, 8.5f) - verticalLineToRelative(-3.0f) - close() - moveTo(5.5f, 5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - horizontalLineToRelative(-3.0f) - close() - moveTo(6.0f, 16.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(2.0f) - lineTo(6.0f, 18.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(3.0f, 15.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 5.5f, 13.0f) - horizontalLineToRelative(3.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) - verticalLineToRelative(3.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 8.5f, 21.0f) - horizontalLineToRelative(-3.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 3.0f, 18.5f) - verticalLineToRelative(-3.0f) - close() - moveTo(5.5f, 15.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - horizontalLineToRelative(-3.0f) - close() - moveTo(18.0f, 6.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(2.0f) - lineTo(18.0f, 6.0f) - close() - moveTo(15.5f, 3.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 13.0f, 5.5f) - verticalLineToRelative(3.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, 2.5f) - horizontalLineToRelative(3.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 21.0f, 8.5f) - verticalLineToRelative(-3.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 18.5f, 3.0f) - horizontalLineToRelative(-3.0f) - close() - moveTo(15.0f, 5.5f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(3.0f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - verticalLineToRelative(3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - verticalLineToRelative(-3.0f) - close() - moveTo(13.0f, 13.0f) - horizontalLineToRelative(2.75f) - verticalLineToRelative(2.75f) - lineTo(13.0f, 15.75f) - lineTo(13.0f, 13.0f) - close() - moveTo(18.25f, 15.75f) - horizontalLineToRelative(-2.5f) - verticalLineToRelative(2.5f) - lineTo(13.0f, 18.25f) - lineTo(13.0f, 21.0f) - horizontalLineToRelative(2.75f) - verticalLineToRelative(-2.75f) - horizontalLineToRelative(2.5f) - lineTo(18.25f, 21.0f) - lineTo(21.0f, 21.0f) - verticalLineToRelative(-2.75f) - horizontalLineToRelative(-2.75f) - verticalLineToRelative(-2.5f) - close() - moveTo(18.25f, 15.75f) - lineTo(18.25f, 13.0f) - lineTo(21.0f, 13.0f) - verticalLineToRelative(2.75f) - horizontalLineToRelative(-2.75f) - close() - } - } - return _qrCode!! - } - -private var _qrCode: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Question.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Question.kt deleted file mode 100644 index 4236d4d7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Question.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Question: ImageVector - get() { - if (_question != null) { - return _question!! - } - _question = fluentIcon(name = "Filled.Question") { - fluentPath { - moveTo(12.0f, 4.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, -5.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 6.0f, 0.0f) - curveToRelative(0.0f, 0.82f, -0.2f, 1.3f, -0.44f, 1.63f) - curveToRelative(-0.26f, 0.36f, -0.62f, 0.64f, -1.13f, 0.98f) - lineToRelative(-0.11f, 0.08f) - curveToRelative(-0.45f, 0.3f, -1.02f, 0.7f, -1.47f, 1.25f) - arcTo(3.89f, 3.89f, 0.0f, false, false, 11.0f, 15.5f) - verticalLineToRelative(0.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -0.66f, 0.18f, -1.02f, 0.4f, -1.3f) - curveToRelative(0.26f, -0.31f, 0.6f, -0.55f, 1.11f, -0.9f) - lineToRelative(0.06f, -0.04f) - arcToRelative(6.2f, 6.2f, 0.0f, false, false, 1.62f, -1.47f) - curveToRelative(0.5f, -0.7f, 0.81f, -1.6f, 0.81f, -2.79f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, -5.0f, -5.0f) - close() - moveTo(12.0f, 21.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - } - } - return _question!! - } - -private var _question: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/QuestionCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/QuestionCircle.kt deleted file mode 100644 index f8ac7769..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/QuestionCircle.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.QuestionCircle: ImageVector - get() { - if (_questionCircle != null) { - return _questionCircle!! - } - _questionCircle = fluentIcon(name = "Filled.QuestionCircle") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(12.0f, 15.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(12.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 9.25f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.1f) - verticalLineToRelative(-0.1f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - curveToRelative(0.0f, 0.54f, -0.13f, 0.8f, -0.64f, 1.33f) - lineToRelative(-0.14f, 0.14f) - curveToRelative(-0.88f, 0.88f, -1.22f, 1.45f, -1.22f, 2.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - curveToRelative(0.0f, -0.54f, 0.13f, -0.8f, 0.64f, -1.33f) - lineToRelative(0.14f, -0.14f) - curveToRelative(0.88f, -0.88f, 1.22f, -1.45f, 1.22f, -2.53f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 12.0f, 6.75f) - close() - } - } - return _questionCircle!! - } - -private var _questionCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/QuizNew.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/QuizNew.kt deleted file mode 100644 index 3e47c755..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/QuizNew.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.QuizNew: ImageVector - get() { - if (_quizNew != null) { - return _quizNew!! - } - _quizNew = fluentIcon(name = "Filled.QuizNew") { - fluentPath { - moveTo(10.52f, 9.0f) - lineTo(10.0f, 7.73f) - lineTo(9.48f, 9.0f) - horizontalLineToRelative(1.04f) - close() - moveTo(5.75f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) - horizontalLineToRelative(6.27f) - arcToRelative(6.47f, 6.47f, 0.0f, false, true, -0.52f, -6.0f) - lineTo(5.75f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(6.63f) - arcTo(6.49f, 6.49f, 0.0f, false, true, 21.0f, 12.02f) - lineTo(21.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) - lineTo(5.75f, 3.0f) - close() - moveTo(9.25f, 18.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(10.69f, 5.46f) - lineTo(12.94f, 10.96f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.39f, 0.57f) - lineToRelative(-0.42f, -1.03f) - lineTo(8.87f, 10.5f) - lineToRelative(-0.43f, 1.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.38f, -0.56f) - lineToRelative(2.25f, -5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.38f, 0.0f) - close() - moveTo(16.5f, 5.75f) - lineTo(16.5f, 7.0f) - horizontalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(16.5f, 8.5f) - verticalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(15.0f, 8.5f) - horizontalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(15.0f, 7.0f) - lineTo(15.0f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _quizNew!! - } - -private var _quizNew: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RadioButton.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RadioButton.kt deleted file mode 100644 index c61415d4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RadioButton.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.RadioButton: ImageVector - get() { - if (_radioButton != null) { - return _radioButton!! - } - _radioButton = fluentIcon(name = "Filled.RadioButton") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) - close() - moveTo(12.0f, 6.0f) - arcToRelative(6.0f, 6.0f, 0.0f, true, true, 0.0f, 12.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 0.0f, -12.0f) - close() - } - } - return _radioButton!! - } - -private var _radioButton: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RatingMature.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RatingMature.kt deleted file mode 100644 index dd2abd95..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RatingMature.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.RatingMature: ImageVector - get() { - if (_ratingMature != null) { - return _ratingMature!! - } - _ratingMature = fluentIcon(name = "Filled.RatingMature") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(8.83f, 8.27f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.33f, 0.48f) - verticalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) - verticalLineToRelative(-4.43f) - lineToRelative(2.42f, 2.91f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.16f, 0.0f) - lineToRelative(2.42f, -2.9f) - verticalLineToRelative(4.42f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) - verticalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.33f, -0.48f) - lineTo(12.0f, 12.07f) - lineToRelative(-3.17f, -3.8f) - close() - } - } - return _ratingMature!! - } - -private var _ratingMature: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RatioOneToOne.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RatioOneToOne.kt deleted file mode 100644 index 775ac6e9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RatioOneToOne.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.RatioOneToOne: ImageVector - get() { - if (_ratioOneToOne != null) { - return _ratioOneToOne!! - } - _ratioOneToOne = fluentIcon(name = "Filled.RatioOneToOne") { - fluentPath { - moveTo(5.25f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) - horizontalLineToRelative(13.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-9.5f) - curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) - lineTo(5.25f, 4.0f) - close() - moveTo(8.5f, 8.75f) - verticalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-5.1f) - lineToRelative(-0.33f, 0.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.84f, -1.24f) - lineToRelative(1.5f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.17f, 0.62f) - close() - moveTo(17.5f, 8.75f) - verticalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - verticalLineToRelative(-5.1f) - lineToRelative(-0.33f, 0.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.84f, -1.24f) - lineToRelative(1.5f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.17f, 0.62f) - close() - moveTo(13.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(12.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - close() - } - } - return _ratioOneToOne!! - } - -private var _ratioOneToOne: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReOrderDotsHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReOrderDotsHorizontal.kt deleted file mode 100644 index 727f0af2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReOrderDotsHorizontal.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ReOrderDotsHorizontal: ImageVector - get() { - if (_reOrderDotsHorizontal != null) { - return _reOrderDotsHorizontal!! - } - _reOrderDotsHorizontal = fluentIcon(name = "Filled.ReOrderDotsHorizontal") { - fluentPath { - moveTo(7.0f, 16.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(7.0f, 8.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(14.0f, 16.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(14.0f, 8.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(21.0f, 16.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(21.0f, 8.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - } - } - return _reOrderDotsHorizontal!! - } - -private var _reOrderDotsHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReOrderDotsVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReOrderDotsVertical.kt deleted file mode 100644 index 7654fa3a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReOrderDotsVertical.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ReOrderDotsVertical: ImageVector - get() { - if (_reOrderDotsVertical != null) { - return _reOrderDotsVertical!! - } - _reOrderDotsVertical = fluentIcon(name = "Filled.ReOrderDotsVertical") { - fluentPath { - moveTo(16.0f, 17.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) - close() - moveTo(8.0f, 17.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) - close() - moveTo(16.0f, 10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) - close() - moveTo(8.0f, 10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) - close() - moveTo(16.0f, 3.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) - close() - moveTo(8.0f, 3.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) - close() - } - } - return _reOrderDotsVertical!! - } - -private var _reOrderDotsVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReadAloud.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReadAloud.kt deleted file mode 100644 index a07a56d4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReadAloud.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ReadAloud: ImageVector - get() { - if (_readAloud != null) { - return _readAloud!! - } - _readAloud = fluentIcon(name = "Filled.ReadAloud") { - fluentPath { - moveTo(14.6f, 2.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.49f) - curveToRelative(0.26f, 0.14f, 0.0f, 0.0f, 0.0f, 0.0f) - horizontalLineToRelative(0.01f) - lineToRelative(0.02f, 0.02f) - arcToRelative(4.9f, 4.9f, 0.0f, false, true, 0.3f, 0.16f) - arcToRelative(12.27f, 12.27f, 0.0f, false, true, 3.11f, 2.5f) - arcTo(10.75f, 10.75f, 0.0f, false, true, 22.0f, 13.13f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.98f, -0.26f) - arcToRelative(8.75f, 8.75f, 0.0f, false, false, -2.13f, -7.27f) - arcToRelative(10.27f, 10.27f, 0.0f, false, false, -2.8f, -2.19f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.49f, -1.33f) - close() - moveTo(9.92f, 4.63f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.86f, 0.0f) - lineToRelative(-5.5f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.86f, 0.74f) - lineTo(6.15f, 15.0f) - horizontalLineToRelative(5.7f) - lineToRelative(1.72f, 4.37f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.86f, -0.74f) - lineToRelative(-5.5f, -14.0f) - close() - moveTo(11.07f, 13.0f) - lineTo(6.93f, 13.0f) - lineTo(9.0f, 7.73f) - lineTo(11.07f, 13.0f) - close() - moveTo(15.45f, 5.6f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.9f, 1.8f) - curveToRelative(0.3f, 0.14f, 0.8f, 0.57f, 1.23f, 1.26f) - curveToRelative(0.42f, 0.67f, 0.72f, 1.48f, 0.72f, 2.34f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - curveToRelative(0.0f, -1.31f, -0.45f, -2.5f, -1.03f, -3.41f) - arcToRelative(5.57f, 5.57f, 0.0f, false, false, -2.02f, -1.98f) - close() - } - } - return _readAloud!! - } - -private var _readAloud: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReadingList.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReadingList.kt deleted file mode 100644 index 2bdb4fb0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReadingList.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ReadingList: ImageVector - get() { - if (_readingList != null) { - return _readingList!! - } - _readingList = fluentIcon(name = "Filled.ReadingList") { - fluentPath { - moveTo(20.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(7.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(20.0f, 18.0f) - close() - moveTo(17.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(4.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(17.0f, 15.0f) - close() - moveTo(20.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(7.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(20.0f, 12.0f) - close() - moveTo(6.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.78f, 1.87f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.8f, 0.86f) - lineToRelative(-0.05f, -0.1f) - arcTo(1.0f, 1.0f, 0.0f, true, false, 6.0f, 9.0f) - horizontalLineToRelative(11.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(6.0f, 11.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) - close() - moveTo(20.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(11.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(20.0f, 6.0f) - close() - } - } - return _readingList!! - } - -private var _readingList: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReadingListAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReadingListAdd.kt deleted file mode 100644 index 98bb02b2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReadingListAdd.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ReadingListAdd: ImageVector - get() { - if (_readingListAdd != null) { - return _readingListAdd!! - } - _readingListAdd = fluentIcon(name = "Filled.ReadingListAdd") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(17.5f, 14.0f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) - lineToRelative(-0.01f, 0.1f) - lineTo(17.0f, 17.0f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(0.18f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) - lineToRelative(0.1f, 0.01f) - lineTo(17.0f, 18.0f) - verticalLineToRelative(2.6f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - horizontalLineToRelative(0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) - lineToRelative(0.01f, -0.1f) - lineTo(18.0f, 18.0f) - horizontalLineToRelative(2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - verticalLineToRelative(-0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) - lineToRelative(-0.1f, -0.01f) - lineTo(18.0f, 17.0f) - verticalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) - horizontalLineToRelative(-0.09f) - close() - moveTo(11.02f, 18.0f) - curveToRelative(0.05f, 0.7f, 0.22f, 1.38f, 0.48f, 2.0f) - lineTo(7.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - horizontalLineToRelative(4.14f) - close() - moveTo(11.5f, 15.0f) - curveToRelative(-0.26f, 0.62f, -0.43f, 1.3f, -0.48f, 2.0f) - lineTo(4.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - horizontalLineToRelative(7.62f) - close() - moveTo(14.04f, 12.0f) - curveToRelative(-0.81f, 0.51f, -1.5f, 1.2f, -2.02f, 2.0f) - lineTo(7.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - horizontalLineToRelative(7.16f) - close() - moveTo(6.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.78f, 1.87f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.8f, 0.86f) - lineToRelative(-0.05f, -0.1f) - arcTo(1.0f, 1.0f, 0.0f, true, false, 6.0f, 9.0f) - horizontalLineToRelative(11.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(6.0f, 11.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) - close() - moveTo(20.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(11.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(20.0f, 6.0f) - close() - } - } - return _readingListAdd!! - } - -private var _readingListAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReadingModeMobile.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReadingModeMobile.kt deleted file mode 100644 index ec967b0e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReadingModeMobile.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ReadingModeMobile: ImageVector - get() { - if (_readingModeMobile != null) { - return _readingModeMobile!! - } - _readingModeMobile = fluentIcon(name = "Filled.ReadingModeMobile") { - fluentPath { - moveTo(17.75f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.19f, -0.93f, 2.16f, -2.1f, 2.24f) - lineTo(6.25f, 21.99f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.09f) - lineTo(4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveToRelative(0.0f, -1.19f, 0.93f, -2.16f, 2.1f, -2.24f) - horizontalLineToRelative(11.65f) - close() - moveTo(12.25f, 13.0f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(12.35f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(16.25f, 10.0f) - horizontalLineToRelative(-8.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(16.25f, 7.0f) - horizontalLineToRelative(-8.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - } - } - return _readingModeMobile!! - } - -private var _readingModeMobile: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RealEstate.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RealEstate.kt deleted file mode 100644 index 7ff95c4d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RealEstate.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.RealEstate: ImageVector - get() { - if (_realEstate != null) { - return _realEstate!! - } - _realEstate = fluentIcon(name = "Filled.RealEstate") { - fluentPath { - moveTo(3.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - horizontalLineToRelative(16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(5.0f, 6.0f) - verticalLineToRelative(15.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(3.0f, 4.0f) - close() - moveTo(6.0f, 7.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(8.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 19.0f) - horizontalLineToRelative(-9.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 6.0f, 16.25f) - verticalLineToRelative(-8.5f) - close() - moveTo(10.0f, 12.46f) - verticalLineToRelative(3.04f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(1.75f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - lineTo(12.5f, 14.5f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(1.0f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(1.75f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-3.04f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.35f, -0.76f) - lineToRelative(-2.82f, -2.42f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.66f, 0.0f) - lineToRelative(-2.82f, 2.42f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.35f, 0.76f) - close() - } - } - return _realEstate!! - } - -private var _realEstate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Receipt.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Receipt.kt deleted file mode 100644 index 0e7c02ec..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Receipt.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Receipt: ImageVector - get() { - if (_receipt != null) { - return _receipt!! - } - _receipt = fluentIcon(name = "Filled.Receipt") { - fluentPath { - moveTo(4.0f, 6.25f) - curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(8.5f) - curveTo(15.99f, 4.0f, 17.0f, 5.0f, 17.0f, 6.25f) - lineTo(17.0f, 14.0f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-11.0f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-12.0f) - close() - moveTo(17.0f, 19.0f) - horizontalLineToRelative(0.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.0f, 15.5f) - horizontalLineToRelative(-2.0f) - lineTo(17.0f, 19.0f) - close() - moveTo(7.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.5f) - close() - moveTo(7.75f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.5f) - close() - moveTo(7.75f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.5f) - close() - } - } - return _receipt!! - } - -private var _receipt: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReceiptAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReceiptAdd.kt deleted file mode 100644 index a12082c2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReceiptAdd.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ReceiptAdd: ImageVector - get() { - if (_receiptAdd != null) { - return _receiptAdd!! - } - _receiptAdd = fluentIcon(name = "Filled.ReceiptAdd") { - fluentPath { - moveTo(5.0f, 6.25f) - curveTo(5.0f, 5.01f, 6.0f, 4.0f, 7.25f, 4.0f) - horizontalLineToRelative(8.5f) - curveTo(16.99f, 4.0f, 18.0f, 5.0f, 18.0f, 6.25f) - verticalLineTo(14.0f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-5.98f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, -1.08f, -7.5f) - horizontalLineToRelative(3.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(9.0f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, -4.0f, -0.33f) - verticalLineTo(6.25f) - close() - moveTo(18.0f, 19.0f) - horizontalLineToRelative(0.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineTo(15.5f) - horizontalLineToRelative(-2.0f) - verticalLineTo(19.0f) - close() - moveTo(8.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.5f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(7.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - verticalLineTo(18.0f) - horizontalLineTo(3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineTo(6.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - verticalLineTo(17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineTo(7.0f) - close() - } - } - return _receiptAdd!! - } - -private var _receiptAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReceiptBag.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReceiptBag.kt deleted file mode 100644 index 3c28ccb3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReceiptBag.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ReceiptBag: ImageVector - get() { - if (_receiptBag != null) { - return _receiptBag!! - } - _receiptBag = fluentIcon(name = "Filled.ReceiptBag") { - fluentPath { - moveTo(5.0f, 6.25f) - curveTo(5.0f, 5.01f, 6.0f, 4.0f, 7.25f, 4.0f) - horizontalLineToRelative(8.5f) - curveTo(16.99f, 4.0f, 18.0f, 5.0f, 18.0f, 6.25f) - lineTo(18.0f, 14.0f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(11.5f, 20.5f) - verticalLineToRelative(-5.75f) - curveToRelative(0.0f, -0.7f, -0.4f, -1.3f, -1.0f, -1.58f) - lineTo(10.5f, 13.0f) - horizontalLineToRelative(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.09f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -4.41f, -1.77f) - curveToRelative(-0.24f, -0.1f, -0.49f, -0.16f, -0.75f, -0.2f) - lineTo(5.0f, 6.26f) - close() - moveTo(18.0f, 19.0f) - horizontalLineToRelative(0.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(20.0f, 15.5f) - horizontalLineToRelative(-2.0f) - lineTo(18.0f, 19.0f) - close() - moveTo(8.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.5f) - close() - moveTo(1.75f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.0f) - curveTo(1.0f, 21.99f, 2.0f, 23.0f, 3.25f, 23.0f) - horizontalLineToRelative(5.0f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(9.5f, 14.0f) - verticalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -3.75f, -2.17f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 2.0f, 13.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-0.25f) - close() - moveTo(7.0f, 14.0f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.35f, -0.07f, -0.68f, -0.2f, -0.98f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 8.0f, 13.0f) - verticalLineToRelative(1.0f) - lineTo(7.0f, 14.0f) - close() - moveTo(5.5f, 13.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - } - } - return _receiptBag!! - } - -private var _receiptBag: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReceiptCube.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReceiptCube.kt deleted file mode 100644 index afba7404..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReceiptCube.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ReceiptCube: ImageVector - get() { - if (_receiptCube != null) { - return _receiptCube!! - } - _receiptCube = fluentIcon(name = "Filled.ReceiptCube") { - fluentPath { - moveTo(5.0f, 6.25f) - curveTo(5.0f, 5.01f, 6.0f, 4.0f, 7.25f, 4.0f) - horizontalLineToRelative(8.5f) - curveTo(16.99f, 4.0f, 18.0f, 5.0f, 18.0f, 6.25f) - lineTo(18.0f, 14.0f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-6.36f) - curveToRelative(0.07f, -0.24f, 0.11f, -0.49f, 0.11f, -0.75f) - verticalLineToRelative(-4.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -1.38f, -2.24f) - lineToRelative(-0.03f, -0.01f) - horizontalLineToRelative(3.66f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.59f, 0.29f) - lineToRelative(-1.04f, -0.53f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 5.0f, 11.21f) - lineTo(5.0f, 6.25f) - close() - moveTo(18.0f, 19.0f) - horizontalLineToRelative(0.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(20.0f, 15.5f) - horizontalLineToRelative(-2.0f) - lineTo(18.0f, 19.0f) - close() - moveTo(8.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.5f) - close() - moveTo(10.17f, 13.9f) - lineTo(6.67f, 12.16f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -1.34f, 0.0f) - lineToRelative(-3.5f, 1.75f) - curveToRelative(-0.5f, 0.25f, -0.83f, 0.77f, -0.83f, 1.34f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.57f, 0.32f, 1.09f, 0.83f, 1.34f) - lineToRelative(3.5f, 1.75f) - curveToRelative(0.42f, 0.22f, 0.92f, 0.22f, 1.34f, 0.0f) - lineToRelative(3.5f, -1.75f) - curveToRelative(0.5f, -0.25f, 0.83f, -0.77f, 0.83f, -1.34f) - verticalLineToRelative(-4.5f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -0.83f, -1.34f) - close() - moveTo(2.55f, 15.28f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.67f, -0.23f) - lineTo(6.0f, 16.45f) - lineToRelative(2.78f, -1.4f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.44f, 0.9f) - lineTo(6.5f, 17.3f) - verticalLineToRelative(3.19f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - verticalLineToRelative(-3.2f) - lineToRelative(-2.72f, -1.35f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.23f, -0.67f) - close() - } - } - return _receiptCube!! - } - -private var _receiptCube: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReceiptMoney.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReceiptMoney.kt deleted file mode 100644 index bec7f2b1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReceiptMoney.kt +++ /dev/null @@ -1,93 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ReceiptMoney: ImageVector - get() { - if (_receiptMoney != null) { - return _receiptMoney!! - } - _receiptMoney = fluentIcon(name = "Filled.ReceiptMoney") { - fluentPath { - moveTo(5.0f, 6.25f) - curveTo(5.0f, 5.01f, 6.0f, 4.0f, 7.25f, 4.0f) - horizontalLineToRelative(8.5f) - curveTo(16.99f, 4.0f, 18.0f, 5.0f, 18.0f, 6.25f) - lineTo(18.0f, 14.0f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(13.0f, 20.5f) - verticalLineToRelative(-4.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.5f, -2.5f) - lineTo(5.0f, 14.0f) - lineTo(5.0f, 6.25f) - close() - moveTo(18.0f, 19.0f) - horizontalLineToRelative(0.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(20.0f, 15.5f) - horizontalLineToRelative(-2.0f) - lineTo(18.0f, 19.0f) - close() - moveTo(8.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.5f) - close() - moveTo(8.75f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.5f) - close() - moveTo(2.5f, 15.0f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(8.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - horizontalLineToRelative(-8.0f) - close() - moveTo(10.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - verticalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - horizontalLineToRelative(1.0f) - close() - moveTo(9.0f, 21.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - verticalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - lineTo(9.0f, 21.0f) - close() - moveTo(2.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(2.0f, 19.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - lineTo(3.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(6.5f, 16.75f) - arcToRelative(1.75f, 1.75f, 0.0f, true, true, 0.0f, 3.5f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.0f, -3.5f) - close() - } - } - return _receiptMoney!! - } - -private var _receiptMoney: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReceiptPlay.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReceiptPlay.kt deleted file mode 100644 index 24f9eca9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReceiptPlay.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ReceiptPlay: ImageVector - get() { - if (_receiptPlay != null) { - return _receiptPlay!! - } - _receiptPlay = fluentIcon(name = "Filled.ReceiptPlay") { - fluentPath { - moveTo(5.0f, 6.25f) - curveTo(5.0f, 5.01f, 6.0f, 4.0f, 7.25f, 4.0f) - horizontalLineToRelative(8.5f) - curveTo(16.99f, 4.0f, 18.0f, 5.0f, 18.0f, 6.25f) - lineTo(18.0f, 14.0f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-5.98f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, -1.08f, -7.5f) - horizontalLineToRelative(3.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(9.0f, 11.5f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, -4.0f, -0.33f) - lineTo(5.0f, 6.25f) - close() - moveTo(18.0f, 19.0f) - horizontalLineToRelative(0.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(20.0f, 15.5f) - horizontalLineToRelative(-2.0f) - lineTo(18.0f, 19.0f) - close() - moveTo(8.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.5f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(5.0f, 19.5f) - curveToRelative(0.0f, 0.4f, 0.44f, 0.64f, 0.78f, 0.42f) - lineToRelative(3.0f, -2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.84f) - lineToRelative(-3.0f, -2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.78f, 0.42f) - verticalLineToRelative(4.0f) - close() - } - } - return _receiptPlay!! - } - -private var _receiptPlay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReceiptSparkles.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReceiptSparkles.kt deleted file mode 100644 index a0788544..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ReceiptSparkles.kt +++ /dev/null @@ -1,115 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ReceiptSparkles: ImageVector - get() { - if (_receiptSparkles != null) { - return _receiptSparkles!! - } - _receiptSparkles = fluentIcon(name = "Filled.ReceiptSparkles") { - fluentPath { - moveTo(15.85f, 6.15f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, 0.69f, 1.11f) - lineToRelative(0.45f, 1.38f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 1.02f, 0.0f) - lineToRelative(0.45f, -1.38f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, 1.8f, -1.8f) - lineToRelative(1.38f, -0.44f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, -1.03f) - horizontalLineToRelative(-0.03f) - lineToRelative(-1.38f, -0.45f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.8f, -1.8f) - lineTo(18.0f, 0.36f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, -1.03f, 0.0f) - lineToRelative(-0.45f, 1.38f) - lineToRelative(-0.01f, 0.03f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.76f, 1.77f) - lineToRelative(-1.38f, 0.44f) - arcToRelative(0.57f, 0.57f, 0.0f, false, false, -0.26f, 0.2f) - arcToRelative(0.51f, 0.51f, 0.0f, false, false, -0.1f, 0.34f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.1f, 0.3f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.26f, 0.19f) - lineToRelative(1.38f, 0.45f) - arcToRelative(2.83f, 2.83f, 0.0f, false, true, 1.11f, 0.69f) - close() - moveTo(23.02f, 9.96f) - lineTo(23.78f, 10.21f) - horizontalLineToRelative(0.02f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, 0.47f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, 0.1f) - lineToRelative(-0.77f, 0.26f) - arcToRelative(1.58f, 1.58f, 0.0f, false, false, -1.0f, 1.0f) - lineToRelative(-0.24f, 0.76f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.58f, 0.0f) - lineToRelative(-0.24f, -0.77f) - arcToRelative(1.57f, 1.57f, 0.0f, false, false, -1.0f, -1.0f) - lineToRelative(-0.77f, -0.25f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, -0.46f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, -0.1f) - lineToRelative(0.77f, -0.26f) - arcToRelative(1.58f, 1.58f, 0.0f, false, false, 0.98f, -1.0f) - lineToRelative(0.25f, -0.76f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.57f, 0.0f) - lineToRelative(0.25f, 0.77f) - arcToRelative(1.57f, 1.57f, 0.0f, false, false, 1.0f, 1.0f) - close() - moveTo(17.0f, 14.0f) - lineTo(17.0f, 9.94f) - curveToRelative(-0.15f, -0.05f, -0.3f, -0.12f, -0.43f, -0.21f) - curveToRelative(-0.26f, -0.2f, -0.46f, -0.46f, -0.57f, -0.77f) - lineToRelative(-0.44f, -1.38f) - curveToRelative(-0.07f, -0.2f, -0.16f, -0.38f, -0.29f, -0.55f) - lineToRelative(-0.15f, -0.17f) - arcToRelative(1.8f, 1.8f, 0.0f, false, false, -0.72f, -0.44f) - lineTo(13.0f, 5.96f) - arcTo(1.57f, 1.57f, 0.0f, false, true, 12.06f, 4.0f) - lineTo(6.25f, 4.0f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) - verticalLineToRelative(12.0f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(11.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(20.5f, 14.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - horizontalLineToRelative(-3.0f) - close() - moveTo(17.25f, 19.0f) - lineTo(17.0f, 19.0f) - verticalLineToRelative(-3.5f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(1.75f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - close() - moveTo(7.0f, 8.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 8.75f) - close() - moveTo(7.0f, 12.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(7.0f, 15.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _receiptSparkles!! - } - -private var _receiptSparkles: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Record.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Record.kt deleted file mode 100644 index f3f86ec9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Record.kt +++ /dev/null @@ -1,30 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Record: ImageVector - get() { - if (_record != null) { - return _record!! - } - _record = fluentIcon(name = "Filled.Record") { - fluentPath { - moveTo(2.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) - close() - moveTo(12.0f, 18.0f) - arcToRelative(6.0f, 6.0f, 0.0f, true, false, 0.0f, -12.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, 0.0f, 12.0f) - close() - } - } - return _record!! - } - -private var _record: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RecordStop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RecordStop.kt deleted file mode 100644 index 87413c70..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RecordStop.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.RecordStop: ImageVector - get() { - if (_recordStop != null) { - return _recordStop!! - } - _recordStop = fluentIcon(name = "Filled.RecordStop") { - fluentPath { - moveTo(12.0f, 22.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) - close() - moveTo(9.5f, 8.0f) - horizontalLineToRelative(5.0f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-5.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 8.0f, 14.5f) - verticalLineToRelative(-5.0f) - curveTo(8.0f, 8.67f, 8.67f, 8.0f, 9.5f, 8.0f) - close() - } - } - return _recordStop!! - } - -private var _recordStop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RectangleLandscape.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RectangleLandscape.kt deleted file mode 100644 index 9ae74cc3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RectangleLandscape.kt +++ /dev/null @@ -1,32 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.RectangleLandscape: ImageVector - get() { - if (_rectangleLandscape != null) { - return _rectangleLandscape!! - } - _rectangleLandscape = fluentIcon(name = "Filled.RectangleLandscape") { - fluentPath { - moveTo(5.25f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) - horizontalLineToRelative(13.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-9.5f) - curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) - horizontalLineTo(5.25f) - close() - } - } - return _rectangleLandscape!! - } - -private var _rectangleLandscape: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Resize.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Resize.kt deleted file mode 100644 index 3b0be9c6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Resize.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Resize: ImageVector - get() { - if (_resize != null) { - return _resize!! - } - _resize = fluentIcon(name = "Filled.Resize") { - fluentPath { - moveTo(11.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(5.25f, 2.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) - lineTo(2.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(4.0f, 5.25f) - curveTo(4.0f, 4.56f, 4.56f, 4.0f, 5.25f, 4.0f) - lineTo(10.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - close() - moveTo(14.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(4.75f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - lineTo(20.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(22.0f, 5.25f) - curveTo(22.0f, 3.45f, 20.54f, 2.0f, 18.75f, 2.0f) - lineTo(14.0f, 2.0f) - close() - moveTo(14.0f, 22.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(4.75f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - lineTo(20.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(4.75f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(14.0f, 22.0f) - close() - moveTo(10.0f, 22.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(5.25f, 20.0f) - curveTo(4.56f, 20.0f, 4.0f, 19.44f, 4.0f, 18.75f) - lineTo(4.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(4.75f) - curveTo(2.0f, 20.55f, 3.46f, 22.0f, 5.25f, 22.0f) - lineTo(10.0f, 22.0f) - close() - } - } - return _resize!! - } - -private var _resize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ResizeImage.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ResizeImage.kt deleted file mode 100644 index e58bd360..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ResizeImage.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ResizeImage: ImageVector - get() { - if (_resizeImage != null) { - return _resizeImage!! - } - _resizeImage = fluentIcon(name = "Filled.ResizeImage") { - fluentPath { - moveTo(11.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(5.25f, 2.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) - lineTo(2.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(4.0f, 5.25f) - curveTo(4.0f, 4.56f, 4.56f, 4.0f, 5.25f, 4.0f) - lineTo(10.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - close() - moveTo(14.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(4.75f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - lineTo(20.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(22.0f, 5.25f) - curveTo(22.0f, 3.45f, 20.54f, 2.0f, 18.75f, 2.0f) - lineTo(14.0f, 2.0f) - close() - moveTo(14.0f, 22.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(4.75f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - lineTo(20.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(4.75f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(14.0f, 22.0f) - close() - moveTo(4.0f, 12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.56f, 0.15f, 1.08f, 0.42f, 1.52f) - lineToRelative(3.49f, -3.49f) - curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.0f) - lineToRelative(3.5f, 3.5f) - curveToRelative(0.26f, -0.45f, 0.41f, -0.97f, 0.41f, -1.53f) - verticalLineToRelative(-5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - lineTo(4.0f, 12.0f) - close() - moveTo(4.0f, 23.0f) - curveToRelative(-0.56f, 0.0f, -1.08f, -0.15f, -1.52f, -0.42f) - lineToRelative(3.49f, -3.49f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(3.5f, 3.5f) - curveToRelative(-0.45f, 0.26f, -0.97f, 0.41f, -1.53f, 0.41f) - lineTo(4.0f, 23.0f) - close() - moveTo(9.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - close() - } - } - return _resizeImage!! - } - -private var _resizeImage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ResizeLarge.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ResizeLarge.kt deleted file mode 100644 index db9045c4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ResizeLarge.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ResizeLarge: ImageVector - get() { - if (_resizeLarge != null) { - return _resizeLarge!! - } - _resizeLarge = fluentIcon(name = "Filled.ResizeLarge") { - fluentPath { - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.5f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.5f) - close() - moveTo(17.75f, 4.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.5f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.5f) - close() - moveTo(17.75f, 19.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.5f) - close() - moveTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.5f) - close() - moveTo(8.25f, 6.0f) - curveTo(7.01f, 6.0f, 6.0f, 7.0f, 6.0f, 8.25f) - verticalLineToRelative(7.5f) - curveTo(6.0f, 16.99f, 7.0f, 18.0f, 8.25f, 18.0f) - horizontalLineToRelative(7.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-7.5f) - curveTo(18.0f, 7.01f, 17.0f, 6.0f, 15.75f, 6.0f) - horizontalLineToRelative(-7.5f) - close() - } - } - return _resizeLarge!! - } - -private var _resizeLarge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ResizeSmall.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ResizeSmall.kt deleted file mode 100644 index 5644142e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ResizeSmall.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ResizeSmall: ImageVector - get() { - if (_resizeSmall != null) { - return _resizeSmall!! - } - _resizeSmall = fluentIcon(name = "Filled.ResizeSmall") { - fluentPath { - moveTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.5f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.5f) - close() - moveTo(10.2f, 8.0f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(3.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-3.5f) - close() - moveTo(17.75f, 4.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.5f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.5f) - close() - moveTo(17.75f, 19.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.5f) - close() - moveTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.5f) - close() - } - } - return _resizeSmall!! - } - -private var _resizeSmall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ResizeTable.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ResizeTable.kt deleted file mode 100644 index bae7298f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ResizeTable.kt +++ /dev/null @@ -1,111 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ResizeTable: ImageVector - get() { - if (_resizeTable != null) { - return _resizeTable!! - } - _resizeTable = fluentIcon(name = "Filled.ResizeTable") { - fluentPath { - moveTo(5.25f, 2.0f) - horizontalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(2.96f) - curveToRelative(-0.58f, 0.2f, -1.1f, 0.55f, -1.5f, 0.99f) - lineTo(2.0f, 5.25f) - curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) - close() - moveTo(15.79f, 20.5f) - curveToRelative(-0.2f, 0.58f, -0.55f, 1.1f, -0.99f, 1.5f) - horizontalLineToRelative(3.95f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.96f) - close() - moveTo(21.25f, 11.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-5.0f) - curveTo(22.0f, 3.45f, 20.54f, 2.0f, 18.75f, 2.0f) - horizontalLineToRelative(-5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - close() - moveTo(7.0f, 9.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(3.5f) - lineTo(7.0f, 12.5f) - lineTo(7.0f, 9.0f) - close() - moveTo(7.0f, 14.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(3.5f) - lineTo(7.0f, 17.5f) - lineTo(7.0f, 14.0f) - close() - moveTo(11.5f, 14.0f) - verticalLineToRelative(3.5f) - lineTo(15.0f, 17.5f) - lineTo(15.0f, 14.0f) - horizontalLineToRelative(-3.5f) - close() - moveTo(7.0f, 19.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(3.0f) - lineTo(7.0f, 22.0f) - verticalLineToRelative(-3.0f) - close() - moveTo(11.5f, 19.0f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(0.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 15.0f, 19.25f) - lineTo(15.0f, 19.0f) - horizontalLineToRelative(-3.5f) - close() - moveTo(11.5f, 9.0f) - verticalLineToRelative(3.5f) - lineTo(15.0f, 12.5f) - verticalLineToRelative(-0.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 12.25f, 9.0f) - horizontalLineToRelative(-0.75f) - close() - moveTo(5.5f, 9.0f) - horizontalLineToRelative(-0.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 11.75f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(3.5f) - lineTo(5.5f, 9.0f) - close() - moveTo(5.5f, 14.0f) - lineTo(2.0f, 14.0f) - verticalLineToRelative(3.5f) - horizontalLineToRelative(3.5f) - lineTo(5.5f, 14.0f) - close() - moveTo(5.5f, 19.0f) - lineTo(2.0f, 19.0f) - verticalLineToRelative(0.25f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 22.0f) - horizontalLineToRelative(0.75f) - verticalLineToRelative(-3.0f) - close() - } - } - return _resizeTable!! - } - -private var _resizeTable: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ResizeVideo.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ResizeVideo.kt deleted file mode 100644 index 62bf5d42..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ResizeVideo.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ResizeVideo: ImageVector - get() { - if (_resizeVideo != null) { - return _resizeVideo!! - } - _resizeVideo = fluentIcon(name = "Filled.ResizeVideo") { - fluentPath { - moveTo(21.25f, 13.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(5.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - horizontalLineToRelative(-4.67f) - curveToRelative(0.54f, -0.39f, 0.98f, -0.9f, 1.27f, -1.5f) - horizontalLineToRelative(3.4f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(11.75f, 9.0f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 1.8f, -1.45f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-6.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 18.75f) - verticalLineToRelative(-6.5f) - curveTo(2.0f, 10.45f, 3.46f, 9.0f, 5.25f, 9.0f) - horizontalLineToRelative(6.5f) - close() - moveTo(6.06f, 13.1f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.06f, 0.24f) - verticalLineToRelative(4.32f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.74f, 0.44f) - lineToRelative(3.96f, -2.16f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.88f) - lineTo(6.74f, 12.9f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.68f, 0.2f) - close() - moveTo(18.75f, 2.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 22.0f, 5.07f) - verticalLineToRelative(5.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-5.1f) - curveToRelative(0.0f, -0.92f, -0.7f, -1.67f, -1.6f, -1.74f) - lineToRelative(-0.15f, -0.01f) - horizontalLineToRelative(-5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(5.1f) - close() - moveTo(10.25f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-5.1f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - lineToRelative(-0.01f, 0.15f) - verticalLineToRelative(3.4f) - curveToRelative(-0.6f, 0.3f, -1.11f, 0.73f, -1.5f, 1.27f) - lineTo(2.0f, 5.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(5.25f, 2.0f) - horizontalLineToRelative(5.0f) - close() - } - } - return _resizeVideo!! - } - -private var _resizeVideo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Reward.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Reward.kt deleted file mode 100644 index 6031876f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Reward.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Reward: ImageVector - get() { - if (_reward != null) { - return _reward!! - } - _reward = fluentIcon(name = "Filled.Reward") { - fluentPath { - moveTo(20.25f, 2.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(3.04f) - curveToRelative(0.0f, 1.03f, -0.57f, 1.97f, -1.48f, 2.44f) - lineToRelative(-6.3f, 3.29f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, -4.44f, 0.0f) - lineToRelative(-6.3f, -3.3f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 6.8f) - lineTo(2.0f, 3.75f) - curveTo(2.0f, 2.78f, 2.78f, 2.0f, 3.75f, 2.0f) - horizontalLineToRelative(16.5f) - close() - moveTo(12.0f, 13.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - moveTo(16.0f, 3.5f) - lineTo(8.0f, 3.5f) - verticalLineToRelative(6.4f) - lineToRelative(3.88f, 2.03f) - curveToRelative(0.08f, 0.04f, 0.16f, 0.04f, 0.24f, 0.0f) - lineTo(16.0f, 9.9f) - lineTo(16.0f, 3.5f) - close() - } - } - return _reward!! - } - -private var _reward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Rewind.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Rewind.kt deleted file mode 100644 index 0cb62e4c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Rewind.kt +++ /dev/null @@ -1,41 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Rewind: ImageVector - get() { - if (_rewind != null) { - return _rewind!! - } - _rewind = fluentIcon(name = "Filled.Rewind") { - fluentPath { - moveTo(10.03f, 4.36f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 12.5f, 5.5f) - verticalLineToRelative(4.0f) - lineToRelative(6.03f, -5.14f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 21.0f, 5.51f) - lineTo(21.0f, 18.5f) - curveToRelative(0.0f, 0.88f, -0.7f, 1.48f, -1.46f, 1.5f) - horizontalLineToRelative(-0.09f) - curveToRelative(-0.32f, 0.0f, -0.64f, -0.12f, -0.92f, -0.36f) - lineToRelative(-6.03f, -5.13f) - verticalLineToRelative(3.99f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.47f, 1.14f) - lineToRelative(-7.41f, -6.3f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.0f, -2.67f) - lineToRelative(7.41f, -6.3f) - close() - moveTo(2.62f, 10.66f) - lineTo(3.11f, 11.24f) - close() - } - } - return _rewind!! - } - -private var _rewind: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Rhombus.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Rhombus.kt deleted file mode 100644 index e87c9dcd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Rhombus.kt +++ /dev/null @@ -1,32 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Rhombus: ImageVector - get() { - if (_rhombus != null) { - return _rhombus!! - } - _rhombus = fluentIcon(name = "Filled.Rhombus") { - fluentPath { - moveTo(5.8f, 5.4f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 7.9f, 4.0f) - horizontalLineToRelative(12.85f) - curveToRelative(1.6f, 0.0f, 2.69f, 1.61f, 2.09f, 3.1f) - lineTo(18.2f, 18.6f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 16.1f, 20.0f) - horizontalLineTo(3.25f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.08f, -3.1f) - lineTo(5.8f, 5.4f) - close() - } - } - return _rhombus!! - } - -private var _rhombus: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Ribbon.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Ribbon.kt deleted file mode 100644 index afb3b916..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Ribbon.kt +++ /dev/null @@ -1,35 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Ribbon: ImageVector - get() { - if (_ribbon != null) { - return _ribbon!! - } - _ribbon = fluentIcon(name = "Filled.Ribbon") { - fluentPath { - moveTo(17.0f, 15.24f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.61f, -0.68f, 0.97f, -1.18f, 0.62f) - lineTo(12.0f, 19.17f) - lineToRelative(-3.82f, 2.69f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 21.25f) - verticalLineToRelative(-6.0f) - arcToRelative(7.97f, 7.97f, 0.0f, false, false, 10.0f, 0.0f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(7.0f, 7.0f, 0.0f, true, true, 0.0f, 14.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, 0.0f, -14.0f) - close() - } - } - return _ribbon!! - } - -private var _ribbon: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RibbonAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RibbonAdd.kt deleted file mode 100644 index 0d84fc87..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RibbonAdd.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.RibbonAdd: ImageVector - get() { - if (_ribbonAdd != null) { - return _ribbonAdd!! - } - _ribbonAdd = fluentIcon(name = "Filled.RibbonAdd") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 7.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 7.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 6.0f) - lineTo(17.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 6.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 7.0f) - close() - moveTo(11.0f, 6.5f) - curveToRelative(0.0f, -1.65f, 0.62f, -3.16f, 1.63f, -4.3f) - arcTo(7.02f, 7.02f, 0.0f, false, false, 4.0f, 9.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, false, 12.77f, 3.96f) - arcTo(6.5f, 6.5f, 0.0f, false, true, 11.0f, 6.5f) - close() - moveTo(16.0f, 15.25f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.6f, -0.68f, 0.96f, -1.18f, 0.61f) - lineTo(11.0f, 19.17f) - lineToRelative(-3.82f, 2.7f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 6.0f, 21.24f) - verticalLineToRelative(-6.0f) - arcToRelative(7.97f, 7.97f, 0.0f, false, false, 10.0f, 0.0f) - close() - } - } - return _ribbonAdd!! - } - -private var _ribbonAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RibbonOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RibbonOff.kt deleted file mode 100644 index aaefedfa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RibbonOff.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.RibbonOff: ImageVector - get() { - if (_ribbonOff != null) { - return _ribbonOff!! - } - _ribbonOff = fluentIcon(name = "Filled.RibbonOff") { - fluentPath { - moveTo(5.45f, 6.51f) - arcTo(6.98f, 6.98f, 0.0f, false, false, 12.0f, 16.0f) - curveToRelative(0.88f, 0.0f, 1.71f, -0.16f, 2.49f, -0.45f) - lineToRelative(0.76f, 0.76f) - arcTo(7.97f, 7.97f, 0.0f, false, true, 7.0f, 15.25f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.6f, 0.69f, 0.96f, 1.18f, 0.6f) - lineTo(12.0f, 19.18f) - lineToRelative(3.82f, 2.69f) - curveToRelative(0.5f, 0.35f, 1.18f, 0.0f, 1.18f, -0.61f) - verticalLineToRelative(-3.19f) - lineToRelative(3.72f, 3.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(3.23f, 3.23f) - close() - moveTo(7.15f, 3.96f) - lineTo(17.04f, 13.86f) - arcToRelative(7.0f, 7.0f, 0.0f, false, false, -9.9f, -9.9f) - close() - } - } - return _ribbonOff!! - } - -private var _ribbonOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RibbonStar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RibbonStar.kt deleted file mode 100644 index 4896f98b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RibbonStar.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.RibbonStar: ImageVector - get() { - if (_ribbonStar != null) { - return _ribbonStar!! - } - _ribbonStar = fluentIcon(name = "Filled.RibbonStar") { - fluentPath { - moveTo(17.0f, 21.25f) - verticalLineToRelative(-6.0f) - arcToRelative(7.97f, 7.97f, 0.0f, false, true, -10.0f, 0.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.6f, 0.69f, 0.96f, 1.18f, 0.6f) - lineTo(12.0f, 19.18f) - lineToRelative(3.82f, 2.69f) - curveToRelative(0.5f, 0.35f, 1.18f, 0.0f, 1.18f, -0.61f) - close() - moveTo(19.0f, 9.0f) - arcTo(7.0f, 7.0f, 0.0f, true, false, 5.0f, 9.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, false, 14.0f, 0.0f) - close() - moveTo(12.23f, 5.64f) - lineTo(13.14f, 7.5f) - lineTo(15.19f, 7.79f) - curveToRelative(0.2f, 0.03f, 0.29f, 0.29f, 0.14f, 0.44f) - lineToRelative(-1.48f, 1.44f) - lineToRelative(0.35f, 2.03f) - curveToRelative(0.03f, 0.21f, -0.19f, 0.37f, -0.37f, 0.27f) - lineTo(12.0f, 11.01f) - lineToRelative(-1.83f, 0.96f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.37f, -0.27f) - lineToRelative(0.35f, -2.03f) - lineToRelative(-1.48f, -1.44f) - arcToRelative(0.26f, 0.26f, 0.0f, false, true, 0.14f, -0.44f) - lineToRelative(2.05f, -0.3f) - lineToRelative(0.91f, -1.85f) - curveToRelative(0.1f, -0.19f, 0.37f, -0.19f, 0.46f, 0.0f) - close() - } - } - return _ribbonStar!! - } - -private var _ribbonStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RoadCone.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RoadCone.kt deleted file mode 100644 index d3a7af0d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RoadCone.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.RoadCone: ImageVector - get() { - if (_roadCone != null) { - return _roadCone!! - } - _roadCone = fluentIcon(name = "Filled.RoadCone") { - fluentPath { - moveTo(11.2f, 2.0f) - curveToRelative(-0.58f, 0.0f, -1.08f, 0.4f, -1.22f, 0.96f) - arcTo(325.4f, 325.4f, 0.0f, false, true, 7.59f, 12.0f) - horizontalLineToRelative(5.16f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineTo(7.18f) - lineToRelative(-0.55f, 2.0f) - horizontalLineToRelative(7.12f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineTo(6.22f) - lineToRelative(-0.93f, 3.5f) - horizontalLineTo(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.54f) - lineTo(14.02f, 2.93f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.2f, -0.93f) - horizontalLineToRelative(-1.63f) - close() - } - } - return _roadCone!! - } - -private var _roadCone: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Rocket.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Rocket.kt deleted file mode 100644 index 018b30fd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Rocket.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Rocket: ImageVector - get() { - if (_rocket != null) { - return _rocket!! - } - _rocket = fluentIcon(name = "Filled.Rocket") { - fluentPath { - moveTo(13.06f, 7.43f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 3.53f, 3.54f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -3.53f, -3.54f) - close() - moveTo(15.53f, 8.49f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.41f, 1.42f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.41f, -1.42f) - close() - moveTo(19.7f, 2.51f) - curveToRelative(0.86f, 0.27f, 1.54f, 0.95f, 1.8f, 1.81f) - lineToRelative(0.21f, 0.67f) - curveToRelative(0.75f, 2.4f, 0.1f, 5.0f, -1.67f, 6.77f) - lineToRelative(-1.0f, 1.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -0.32f, 4.57f) - lineToRelative(-1.25f, 1.24f) - curveToRelative(-0.29f, 0.3f, -0.76f, 0.3f, -1.06f, 0.0f) - lineToRelative(-1.59f, -1.59f) - lineToRelative(-0.17f, 0.18f) - curveToRelative(-0.69f, 0.68f, -1.8f, 0.68f, -2.48f, 0.0f) - lineToRelative(-0.48f, -0.49f) - lineToRelative(-0.82f, 1.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.17f, 0.14f) - lineToRelative(-3.9f, -3.89f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.15f, -1.17f) - lineToRelative(1.39f, -0.83f) - lineToRelative(-0.47f, -0.47f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.0f, -2.47f) - lineToRelative(0.18f, -0.18f) - lineToRelative(-1.6f, -1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.05f) - lineTo(6.7f, 5.3f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 4.57f, -0.32f) - lineToRelative(1.0f, -1.0f) - arcToRelative(6.75f, 6.75f, 0.0f, false, true, 6.77f, -1.67f) - lineToRelative(0.66f, 0.2f) - close() - moveTo(20.08f, 4.77f) - curveToRelative(-0.13f, -0.4f, -0.43f, -0.7f, -0.83f, -0.83f) - lineToRelative(-0.66f, -0.2f) - arcToRelative(5.25f, 5.25f, 0.0f, false, false, -5.27f, 1.3f) - lineToRelative(-5.4f, 5.4f) - curveToRelative(-0.1f, 0.1f, -0.1f, 0.25f, 0.0f, 0.35f) - lineToRelative(5.31f, 5.3f) - curveToRelative(0.1f, 0.1f, 0.26f, 0.1f, 0.36f, 0.0f) - lineToRelative(5.4f, -5.39f) - arcToRelative(5.25f, 5.25f, 0.0f, false, false, 1.3f, -5.27f) - lineToRelative(-0.21f, -0.66f) - close() - moveTo(6.69f, 18.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineToRelative(-2.48f, 2.48f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineToRelative(2.48f, -2.48f) - close() - moveTo(4.75f, 15.39f) - curveToRelative(0.29f, 0.3f, 0.29f, 0.77f, 0.0f, 1.06f) - lineToRelative(-1.07f, 1.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(1.06f, -1.06f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.07f, 0.0f) - close() - moveTo(8.63f, 20.34f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-1.06f, 1.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineToRelative(1.06f, -1.06f) - close() - } - } - return _rocket!! - } - -private var _rocket: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RotateLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RotateLeft.kt deleted file mode 100644 index 601140d8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RotateLeft.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.RotateLeft: ImageVector - get() { - if (_rotateLeft != null) { - return _rotateLeft!! - } - _rotateLeft = fluentIcon(name = "Filled.RotateLeft") { - fluentPath { - moveTo(14.5f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.5f) - curveToRelative(2.49f, 0.0f, 4.5f, -1.57f, 4.5f, -3.5f) - curveToRelative(0.0f, -1.87f, -1.9f, -3.4f, -4.28f, -3.5f) - lineTo(8.06f, 6.5f) - lineToRelative(1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-3.0f, -3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(3.0f, -3.0f) - lineToRelative(0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, 1.13f) - lineTo(8.06f, 5.0f) - lineTo(15.0f, 5.0f) - curveToRelative(3.31f, 0.0f, 6.0f, 2.24f, 6.0f, 5.0f) - reflectiveCurveToRelative(-2.69f, 5.0f, -6.0f, 5.0f) - horizontalLineToRelative(-0.5f) - close() - moveTo(3.5f, 10.37f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - lineTo(3.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(16.14f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.25f, -0.93f) - lineTo(3.75f, 10.43f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.25f, -0.06f) - close() - } - } - return _rotateLeft!! - } - -private var _rotateLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RotateRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RotateRight.kt deleted file mode 100644 index 2120d052..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RotateRight.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.RotateRight: ImageVector - get() { - if (_rotateRight != null) { - return _rotateRight!! - } - _rotateRight = fluentIcon(name = "Filled.RotateRight") { - fluentPath { - moveTo(9.5f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(9.0f, 13.5f) - curveToRelative(-2.49f, 0.0f, -4.5f, -1.57f, -4.5f, -3.5f) - curveToRelative(0.0f, -1.87f, 1.9f, -3.4f, 4.28f, -3.5f) - horizontalLineToRelative(7.16f) - lineToRelative(-1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) - lineToRelative(0.08f, -0.07f) - lineToRelative(3.0f, -3.0f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-3.0f, -3.0f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 1.13f) - lineTo(15.94f, 5.0f) - lineTo(9.0f, 5.0f) - curveToRelative(-3.31f, 0.0f, -6.0f, 2.24f, -6.0f, 5.0f) - reflectiveCurveToRelative(2.69f, 5.0f, 6.0f, 5.0f) - horizontalLineToRelative(0.5f) - close() - moveTo(20.5f, 10.37f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - lineTo(21.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - lineTo(3.86f, 21.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.25f, -0.93f) - lineToRelative(16.64f, -9.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.25f, -0.06f) - close() - } - } - return _rotateRight!! - } - -private var _rotateRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Router.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Router.kt deleted file mode 100644 index d0b4e328..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Router.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Router: ImageVector - get() { - if (_router != null) { - return _router!! - } - _router = fluentIcon(name = "Filled.Router") { - fluentPath { - moveTo(12.0f, 3.5f) - arcTo(7.5f, 7.5f, 0.0f, false, false, 4.5f, 11.0f) - verticalLineToRelative(0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(3.0f, 11.0f) - arcToRelative(9.0f, 9.0f, 0.0f, false, true, 18.0f, 0.0f) - verticalLineToRelative(0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(19.5f, 11.0f) - arcTo(7.5f, 7.5f, 0.0f, false, false, 12.0f, 3.5f) - close() - moveTo(12.0f, 6.5f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 7.5f, 11.0f) - verticalLineToRelative(0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(6.0f, 11.0f) - arcToRelative(6.0f, 6.0f, 0.0f, true, true, 12.0f, 0.0f) - verticalLineToRelative(0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(16.5f, 11.0f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 6.5f) - close() - moveTo(9.0f, 11.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 3.75f, 2.9f) - lineTo(12.75f, 16.0f) - lineTo(18.0f, 16.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) - lineTo(6.0f, 22.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) - horizontalLineToRelative(5.25f) - verticalLineToRelative(-2.1f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 9.0f, 11.0f) - close() - } - } - return _router!! - } - -private var _router: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RowTriple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RowTriple.kt deleted file mode 100644 index 3f554b6b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/RowTriple.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.RowTriple: ImageVector - get() { - if (_rowTriple != null) { - return _rowTriple!! - } - _rowTriple = fluentIcon(name = "Filled.RowTriple") { - fluentPath { - moveTo(5.75f, 2.02f) - curveTo(4.78f, 2.02f, 4.0f, 2.8f, 4.0f, 3.77f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(12.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(5.75f, 2.02f) - close() - moveTo(5.75f, 9.02f) - curveTo(4.78f, 9.02f, 4.0f, 9.8f, 4.0f, 10.77f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(12.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(5.75f, 9.02f) - close() - moveTo(5.75f, 16.02f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(12.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(5.75f, 16.02f) - close() - } - } - return _rowTriple!! - } - -private var _rowTriple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Rss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Rss.kt deleted file mode 100644 index b5fb0c21..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Rss.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Rss: ImageVector - get() { - if (_rss != null) { - return _rss!! - } - _rss = fluentIcon(name = "Filled.Rss") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(6.75f, 7.5f) - arcTo(0.74f, 0.74f, 0.0f, false, true, 6.0f, 6.78f) - verticalLineToRelative(-0.06f) - curveToRelative(0.0f, -0.39f, 0.3f, -0.72f, 0.7f, -0.72f) - horizontalLineToRelative(0.05f) - curveTo(12.96f, 6.0f, 18.0f, 11.04f, 18.0f, 17.25f) - verticalLineToRelative(0.05f) - curveToRelative(0.0f, 0.4f, -0.33f, 0.7f, -0.72f, 0.7f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.74f, 0.74f, 0.0f, false, true, -0.72f, -0.75f) - arcTo(9.75f, 9.75f, 0.0f, false, false, 6.75f, 7.5f) - close() - moveTo(13.29f, 18.0f) - horizontalLineToRelative(-0.09f) - curveToRelative(-0.4f, 0.0f, -0.7f, -0.35f, -0.7f, -0.75f) - arcToRelative(5.75f, 5.75f, 0.0f, false, false, -5.75f, -5.75f) - curveToRelative(-0.4f, 0.0f, -0.75f, -0.3f, -0.75f, -0.7f) - verticalLineToRelative(-0.1f) - arcToRelative(0.69f, 0.69f, 0.0f, false, true, 0.75f, -0.7f) - arcTo(7.25f, 7.25f, 0.0f, false, true, 14.0f, 17.33f) - curveToRelative(0.0f, 0.38f, -0.33f, 0.67f, -0.7f, 0.67f) - close() - moveTo(7.5f, 18.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) - close() - } - } - return _rss!! - } - -private var _rss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Ruler.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Ruler.kt deleted file mode 100644 index d1a1819d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Ruler.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Ruler: ImageVector - get() { - if (_ruler != null) { - return _ruler!! - } - _ruler = fluentIcon(name = "Filled.Ruler") { - fluentPath { - moveTo(7.0f, 4.25f) - curveTo(7.0f, 3.01f, 8.0f, 2.0f, 9.25f, 2.0f) - horizontalLineToRelative(5.5f) - curveTo(15.99f, 2.0f, 17.0f, 3.0f, 17.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-5.5f) - arcTo(2.26f, 2.26f, 0.0f, false, true, 7.0f, 19.75f) - lineTo(7.0f, 4.25f) - close() - moveTo(8.5f, 5.0f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(8.5f, 5.0f) - close() - moveTo(8.5f, 8.0f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(8.5f, 8.0f) - close() - moveTo(8.5f, 11.25f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(8.5f, 11.25f) - close() - moveTo(8.5f, 14.5f) - lineTo(8.5f, 16.0f) - horizontalLineToRelative(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(8.5f, 14.5f) - close() - moveTo(8.5f, 17.5f) - lineTo(8.5f, 19.0f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(8.5f, 17.5f) - close() - } - } - return _ruler!! - } - -private var _ruler: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Run.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Run.kt deleted file mode 100644 index d72fbd2d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Run.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Run: ImageVector - get() { - if (_run != null) { - return _run!! - } - _run = fluentIcon(name = "Filled.Run") { - fluentPath { - moveTo(11.03f, 2.58f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.39f, -0.03f) - curveToRelative(-0.99f, 0.17f, -2.0f, 0.65f, -2.9f, 1.23f) - arcToRelative(18.85f, 18.85f, 0.0f, false, false, -3.87f, 3.27f) - arcToRelative(13.0f, 13.0f, 0.0f, false, true, -0.65f, 0.7f) - curveToRelative(-0.26f, 0.27f, -0.57f, 0.6f, -0.74f, 0.84f) - curveToRelative(-0.38f, 0.54f, -0.75f, 1.13f, -1.09f, 1.75f) - curveToRelative(-0.1f, 0.18f, -0.11f, 0.4f, -0.05f, 0.6f) - curveToRelative(0.9f, 2.66f, 3.7f, 5.1f, 7.0f, 6.86f) - curveToRelative(3.31f, 1.78f, 7.3f, 2.95f, 10.83f, 2.95f) - horizontalLineToRelative(0.84f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) - verticalLineToRelative(-2.8f) - curveToRelative(0.0f, -1.03f, -0.6f, -1.99f, -1.52f, -2.45f) - lineToRelative(-2.38f, -1.2f) - arcToRelative(11.4f, 11.4f, 0.0f, false, true, -1.25f, -1.92f) - arcToRelative(6.91f, 6.91f, 0.0f, false, true, -0.72f, -1.97f) - lineToRelative(0.54f, -0.9f) - arcToRelative(4.25f, 4.25f, 0.0f, false, true, 2.0f, -1.71f) - lineToRelative(0.86f, -0.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.03f, -1.39f) - lineToRelative(-7.23f, -2.72f) - close() - moveTo(19.26f, 17.22f) - curveToRelative(-1.58f, -0.21f, -2.25f, -0.4f, -3.51f, -0.76f) - lineToRelative(0.89f, -1.34f) - lineToRelative(1.93f, 0.97f) - curveToRelative(0.42f, 0.2f, 0.7f, 0.64f, 0.7f, 1.12f) - close() - moveTo(15.26f, 17.87f) - curveToRelative(1.4f, 0.4f, 2.13f, 0.62f, 4.0f, 0.86f) - verticalLineToRelative(0.52f) - horizontalLineToRelative(-0.09f) - curveToRelative(-3.22f, 0.0f, -6.98f, -1.08f, -10.13f, -2.77f) - curveToRelative(-3.03f, -1.62f, -5.34f, -3.7f, -6.17f, -5.72f) - lineToRelative(0.27f, -0.44f) - arcToRelative(22.6f, 22.6f, 0.0f, false, false, 3.91f, 3.55f) - arcToRelative(25.95f, 25.95f, 0.0f, false, false, 4.75f, 2.8f) - lineToRelative(2.5f, 0.93f) - lineToRelative(0.05f, 0.01f) - lineToRelative(0.91f, 0.26f) - close() - moveTo(8.79f, 8.94f) - lineTo(6.76f, 6.35f) - curveToRelative(0.55f, -0.46f, 1.15f, -0.92f, 1.77f, -1.3f) - arcToRelative(7.3f, 7.3f, 0.0f, false, true, 2.17f, -0.99f) - lineToRelative(5.36f, 2.01f) - arcTo(5.75f, 5.75f, 0.0f, false, false, 14.15f, 8.0f) - lineToRelative(-0.33f, 0.54f) - lineToRelative(-2.74f, -1.27f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, 0.95f) - lineToRelative(2.14f, 5.43f) - lineToRelative(-0.55f, 1.31f) - curveToRelative(-1.39f, -0.7f, -2.32f, -1.27f, -3.36f, -2.01f) - lineToRelative(0.62f, -3.41f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.14f, -0.6f) - close() - } - } - return _run!! - } - -private var _run: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Sanitize.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Sanitize.kt deleted file mode 100644 index 2784f04e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Sanitize.kt +++ /dev/null @@ -1,96 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Sanitize: ImageVector - get() { - if (_sanitize != null) { - return _sanitize!! - } - _sanitize = fluentIcon(name = "Filled.Sanitize") { - fluentPath { - moveTo(3.62f, 10.62f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -4.24f) - lineToRelative(3.26f, -3.26f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 4.24f, 0.0f) - lineTo(14.8f, 6.8f) - lineToRelative(-0.13f, 0.22f) - arcTo(1.75f, 1.75f, 0.0f, false, false, 12.0f, 8.5f) - verticalLineToRelative(4.52f) - arcToRelative(3.78f, 3.78f, 0.0f, false, false, -2.2f, 0.36f) - arcToRelative(2.9f, 2.9f, 0.0f, false, false, -0.75f, 0.54f) - curveToRelative(-0.07f, 0.08f, -0.15f, 0.17f, -0.23f, 0.29f) - arcToRelative(1.86f, 1.86f, 0.0f, false, false, -0.3f, 1.3f) - lineToRelative(-4.9f, -4.9f) - close() - moveTo(17.0f, 7.75f) - verticalLineToRelative(5.75f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineTo(14.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) - verticalLineTo(9.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(7.0f) - curveToRelative(0.0f, 0.62f, -0.27f, 1.39f, -0.56f, 2.04f) - curveToRelative(-0.3f, 0.68f, -0.68f, 1.37f, -0.98f, 1.9f) - arcToRelative(2.64f, 2.64f, 0.0f, false, true, -2.3f, 1.3f) - horizontalLineToRelative(-1.14f) - curveToRelative(-0.88f, 0.01f, -1.7f, -0.41f, -2.23f, -1.12f) - lineToRelative(-1.37f, -1.9f) - lineToRelative(-1.66f, -1.9f) - lineToRelative(-1.9f, -1.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.36f, -0.64f) - curveToRelative(0.0f, -0.24f, 0.1f, -0.4f, 0.15f, -0.48f) - lineToRelative(0.18f, -0.2f) - curveToRelative(0.12f, -0.12f, 0.27f, -0.21f, 0.43f, -0.29f) - curveToRelative(0.31f, -0.16f, 0.74f, -0.28f, 1.24f, -0.28f) - curveToRelative(0.53f, 0.0f, 1.07f, 0.15f, 1.5f, 0.31f) - verticalLineTo(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineTo(7.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(4.25f, 14.0f) - curveToRelative(0.42f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineTo(5.0f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineTo(17.0f) - horizontalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.75f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(9.0f, 18.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineTo(19.0f) - horizontalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.75f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(9.0f) - verticalLineToRelative(-0.75f) - close() - } - } - return _sanitize!! - } - -private var _sanitize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SaveArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SaveArrowRight.kt deleted file mode 100644 index ae31fb51..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SaveArrowRight.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SaveArrowRight: ImageVector - get() { - if (_saveArrowRight != null) { - return _saveArrowRight!! - } - _saveArrowRight = fluentIcon(name = "Filled.SaveArrowRight") { - fluentPath { - moveTo(6.75f, 3.0f) - horizontalLineToRelative(-1.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) - lineTo(6.0f, 21.0f) - verticalLineToRelative(-6.0f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(4.81f) - arcToRelative(6.48f, 6.48f, 0.0f, false, true, 7.94f, -0.73f) - lineTo(21.0f, 8.3f) - curveToRelative(0.0f, -0.87f, -0.34f, -1.7f, -0.95f, -2.3f) - lineTo(18.0f, 3.95f) - curveToRelative(-0.6f, -0.6f, -1.41f, -0.94f, -2.26f, -0.95f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(9.0f, 9.75f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - lineTo(6.75f, 3.0f) - close() - moveTo(8.25f, 14.25f) - horizontalLineToRelative(3.62f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, 0.15f, 6.75f) - lineTo(7.5f, 21.0f) - verticalLineToRelative(-6.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(14.25f, 3.0f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(9.0f, 8.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(8.25f, 3.0f) - horizontalLineToRelative(6.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(19.29f, 17.0f) - lineTo(14.5f, 17.0f) - close() - } - } - return _saveArrowRight!! - } - -private var _saveArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SaveCopy.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SaveCopy.kt deleted file mode 100644 index fde45bfb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SaveCopy.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SaveCopy: ImageVector - get() { - if (_saveCopy != null) { - return _saveCopy!! - } - _saveCopy = fluentIcon(name = "Filled.SaveCopy") { - fluentPath { - moveTo(20.5f, 5.63f) - curveToRelative(0.87f, 0.3f, 1.5f, 1.14f, 1.5f, 2.12f) - verticalLineToRelative(10.0f) - curveTo(22.0f, 20.1f, 20.1f, 22.0f, 17.75f, 22.0f) - horizontalLineToRelative(-10.0f) - curveToRelative(-0.98f, 0.0f, -1.82f, -0.63f, -2.12f, -1.5f) - horizontalLineToRelative(12.12f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, -2.75f) - lineTo(20.5f, 5.63f) - close() - moveTo(17.25f, 2.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(13.0f) - curveToRelative(0.0f, 1.24f, -1.01f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-13.0f) - curveTo(3.01f, 19.5f, 2.0f, 18.49f, 2.0f, 17.25f) - verticalLineToRelative(-13.0f) - curveTo(2.0f, 3.01f, 3.0f, 2.0f, 4.25f, 2.0f) - horizontalLineToRelative(13.0f) - close() - moveTo(10.75f, 6.75f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - lineTo(10.0f, 10.0f) - lineTo(7.5f, 10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - lineTo(10.0f, 11.5f) - lineTo(10.0f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.1f) - verticalLineToRelative(-2.6f) - lineTo(14.0f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - horizontalLineToRelative(-2.6f) - lineTo(11.5f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - } - } - return _saveCopy!! - } - -private var _saveCopy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SaveEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SaveEdit.kt deleted file mode 100644 index de90d1d1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SaveEdit.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SaveEdit: ImageVector - get() { - if (_saveEdit != null) { - return _saveEdit!! - } - _saveEdit = fluentIcon(name = "Filled.SaveEdit") { - fluentPath { - moveTo(6.75f, 3.0f) - horizontalLineToRelative(-1.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) - lineTo(6.0f, 21.0f) - verticalLineToRelative(-6.0f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(7.35f) - lineToRelative(1.8f, -1.79f) - arcToRelative(3.3f, 3.3f, 0.0f, false, true, 3.6f, -0.7f) - lineTo(21.0f, 8.3f) - curveToRelative(0.0f, -0.87f, -0.34f, -1.7f, -0.95f, -2.3f) - lineTo(18.0f, 3.95f) - curveToRelative(-0.6f, -0.6f, -1.41f, -0.94f, -2.26f, -0.95f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(9.0f, 9.75f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - lineTo(6.75f, 3.0f) - close() - moveTo(14.1f, 14.25f) - lineTo(11.49f, 16.86f) - curveToRelative(-0.47f, 0.48f, -0.8f, 1.07f, -0.97f, 1.72f) - lineToRelative(-0.46f, 1.83f) - curveToRelative(-0.05f, 0.2f, -0.07f, 0.4f, -0.06f, 0.59f) - lineTo(7.5f, 21.0f) - verticalLineToRelative(-6.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.85f) - close() - moveTo(14.25f, 3.0f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(9.0f, 8.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(8.25f, 3.0f) - horizontalLineToRelative(6.0f) - close() - moveTo(19.72f, 11.0f) - curveToRelative(-0.6f, 0.0f, -1.18f, 0.22f, -1.62f, 0.67f) - lineToRelative(-5.9f, 5.9f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.71f, 1.25f) - lineToRelative(-0.46f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcTo(2.29f, 2.29f, 0.0f, false, false, 19.72f, 11.0f) - close() - } - } - return _saveEdit!! - } - -private var _saveEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SaveMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SaveMultiple.kt deleted file mode 100644 index 75d28d2e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SaveMultiple.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SaveMultiple: ImageVector - get() { - if (_saveMultiple != null) { - return _saveMultiple!! - } - _saveMultiple = fluentIcon(name = "Filled.SaveMultiple") { - fluentPath { - moveTo(5.75f, 3.0f) - lineTo(7.0f, 3.0f) - verticalLineToRelative(3.25f) - curveTo(7.0f, 7.49f, 8.0f, 8.5f, 9.25f, 8.5f) - horizontalLineToRelative(2.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(14.0f, 3.27f) - curveToRelative(0.37f, 0.16f, 0.72f, 0.39f, 1.01f, 0.68f) - lineTo(17.05f, 6.0f) - curveToRelative(0.6f, 0.6f, 0.95f, 1.43f, 0.95f, 2.3f) - verticalLineToRelative(6.96f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 15.25f, 18.0f) - lineTo(15.0f, 18.0f) - verticalLineToRelative(-4.75f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-4.5f) - curveTo(7.01f, 11.0f, 6.0f, 12.0f, 6.0f, 13.25f) - lineTo(6.0f, 18.0f) - horizontalLineToRelative(-0.25f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 15.25f) - verticalLineToRelative(-9.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - close() - moveTo(7.5f, 18.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(-4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(7.5f, 18.0f) - close() - moveTo(8.5f, 3.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(8.5f, 3.0f) - close() - moveTo(10.75f, 21.0f) - curveToRelative(-1.37f, 0.0f, -2.6f, -0.58f, -3.46f, -1.5f) - horizontalLineToRelative(8.96f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.45f, 3.25f, -3.25f) - lineTo(19.5f, 8.44f) - lineToRelative(0.55f, 0.55f) - curveToRelative(0.6f, 0.6f, 0.95f, 1.43f, 0.95f, 2.3f) - verticalLineToRelative(4.96f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 16.25f, 21.0f) - horizontalLineToRelative(-5.5f) - close() - } - } - return _saveMultiple!! - } - -private var _saveMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Savings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Savings.kt deleted file mode 100644 index 74b0b047..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Savings.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Savings: ImageVector - get() { - if (_savings != null) { - return _savings!! - } - _savings = fluentIcon(name = "Filled.Savings") { - fluentPath { - moveTo(18.82f, 11.13f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 1.97f, -2.7f) - arcTo(6.89f, 6.89f, 0.0f, false, true, 22.0f, 12.5f) - arcToRelative(7.1f, 7.1f, 0.0f, false, true, -3.0f, 5.93f) - verticalLineToRelative(1.83f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(16.0f, 22.01f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - horizontalLineToRelative(-2.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - lineTo(9.75f, 22.01f) - curveTo(8.78f, 22.0f, 8.0f, 21.22f, 8.0f, 20.25f) - verticalLineToRelative(-0.68f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, -2.53f, -1.54f) - arcToRelative(9.86f, 9.86f, 0.0f, false, true, -1.6f, -2.13f) - arcToRelative(0.49f, 0.49f, 0.0f, false, false, -0.33f, -0.26f) - arcTo(1.84f, 1.84f, 0.0f, false, true, 2.0f, 13.83f) - verticalLineToRelative(-1.76f) - curveToRelative(0.0f, -0.84f, 0.6f, -1.56f, 1.44f, -1.7f) - curveToRelative(0.09f, -0.01f, 0.22f, -0.1f, 0.28f, -0.28f) - curveToRelative(0.19f, -0.58f, 0.56f, -1.43f, 1.25f, -2.12f) - arcTo(7.94f, 7.94f, 0.0f, false, true, 7.0f, 6.52f) - lineTo(7.0f, 3.67f) - curveToRelative(0.0f, -0.94f, 1.13f, -1.32f, 1.74f, -0.72f) - curveToRelative(0.33f, 0.33f, 0.81f, 0.77f, 1.34f, 1.14f) - curveToRelative(0.53f, 0.36f, 1.04f, 0.6f, 1.46f, 0.66f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, -0.45f, 3.17f) - curveToRelative(0.18f, 0.96f, 0.9f, 1.57f, 1.6f, 1.85f) - lineToRelative(3.7f, 1.53f) - curveToRelative(0.68f, 0.29f, 1.63f, 0.38f, 2.43f, -0.17f) - close() - moveTo(8.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(18.26f, 10.3f) - arcToRelative(3.98f, 3.98f, 0.0f, false, false, 1.44f, -4.83f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -7.63f, 2.27f) - arcToRelative(1.27f, 1.27f, 0.0f, false, false, 0.3f, 0.62f) - curveToRelative(0.19f, 0.21f, 0.43f, 0.38f, 0.7f, 0.49f) - lineToRelative(3.7f, 1.53f) - curveToRelative(0.49f, 0.2f, 1.05f, 0.22f, 1.49f, -0.08f) - close() - } - } - return _savings!! - } - -private var _savings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScaleFill.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScaleFill.kt deleted file mode 100644 index 5d692e06..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScaleFill.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ScaleFill: ImageVector - get() { - if (_scaleFill != null) { - return _scaleFill!! - } - _scaleFill = fluentIcon(name = "Filled.ScaleFill") { - fluentPath { - moveTo(5.25f, 3.0f) - curveTo(4.01f, 3.0f, 3.0f, 4.0f, 3.0f, 5.25f) - verticalLineToRelative(13.5f) - curveTo(3.0f, 19.99f, 4.0f, 21.0f, 5.25f, 21.0f) - horizontalLineToRelative(13.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(21.0f, 5.25f) - curveTo(21.0f, 4.01f, 20.0f, 3.0f, 18.75f, 3.0f) - lineTo(5.25f, 3.0f) - close() - moveTo(6.0f, 6.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.69f) - lineToRelative(1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(7.5f, 8.56f) - verticalLineToRelative(0.7f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - lineTo(6.0f, 6.74f) - close() - moveTo(17.78f, 17.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.53f, 0.22f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.69f) - lineToRelative(-1.72f, -1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineToRelative(1.72f, 1.72f) - verticalLineToRelative(-0.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.2f, -0.08f, 0.4f, -0.22f, 0.53f) - close() - moveTo(18.0f, 6.75f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.69f) - lineToRelative(-1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(1.72f, -1.72f) - horizontalLineToRelative(-0.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.51f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, 0.75f) - close() - moveTo(6.22f, 17.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.22f, -0.53f) - verticalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(0.69f) - lineToRelative(1.72f, -1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) - lineTo(8.56f, 16.5f) - horizontalLineToRelative(0.7f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - lineTo(6.74f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.53f, -0.22f) - close() - } - } - return _scaleFill!! - } - -private var _scaleFill: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScaleFit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScaleFit.kt deleted file mode 100644 index 7fefd577..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScaleFit.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ScaleFit: ImageVector - get() { - if (_scaleFit != null) { - return _scaleFit!! - } - _scaleFit = fluentIcon(name = "Filled.ScaleFit") { - fluentPath { - moveTo(4.25f, 4.0f) - curveTo(3.01f, 4.0f, 2.0f, 5.0f, 2.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(2.0f, 18.99f, 3.0f, 20.0f, 4.25f, 20.0f) - horizontalLineToRelative(15.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(22.0f, 6.25f) - curveTo(22.0f, 5.01f, 21.0f, 4.0f, 19.75f, 4.0f) - lineTo(4.25f, 4.0f) - close() - moveTo(7.99f, 9.44f) - curveToRelative(0.32f, 0.27f, 0.35f, 0.74f, 0.07f, 1.05f) - lineToRelative(-0.66f, 0.76f) - horizontalLineToRelative(2.86f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(7.4f, 12.75f) - lineToRelative(0.66f, 0.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.12f, 0.98f) - lineToRelative(-1.75f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -0.98f) - lineToRelative(1.75f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, -0.07f) - close() - moveTo(15.95f, 10.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, -0.98f) - lineToRelative(1.75f, 2.0f) - curveToRelative(0.25f, 0.28f, 0.25f, 0.7f, 0.0f, 0.98f) - lineToRelative(-1.75f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) - lineToRelative(0.66f, -0.76f) - horizontalLineToRelative(-2.86f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.86f) - lineToRelative(-0.66f, -0.76f) - close() - } - } - return _scaleFit!! - } - -private var _scaleFit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Scales.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Scales.kt deleted file mode 100644 index 15fc8fe0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Scales.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Scales: ImageVector - get() { - if (_scales != null) { - return _scales!! - } - _scales = fluentIcon(name = "Filled.Scales") { - fluentPath { - moveTo(3.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.04f) - lineToRelative(-2.73f, 6.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.06f, 0.28f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 7.0f, 0.0f) - curveToRelative(0.0f, -0.1f, -0.02f, -0.2f, -0.06f, -0.28f) - lineTo(6.21f, 4.5f) - horizontalLineToRelative(5.04f) - verticalLineToRelative(12.0f) - horizontalLineToRelative(-4.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) - horizontalLineToRelative(9.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, -4.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-12.0f) - horizontalLineToRelative(5.04f) - lineToRelative(-2.73f, 6.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.06f, 0.28f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 7.0f, 0.0f) - curveToRelative(0.0f, -0.1f, -0.02f, -0.2f, -0.06f, -0.28f) - lineTo(19.21f, 4.5f) - horizontalLineToRelative(1.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 3.0f) - close() - moveTo(5.5f, 6.74f) - lineToRelative(1.63f, 4.01f) - lineTo(3.87f, 10.75f) - lineTo(5.5f, 6.74f) - close() - moveTo(16.87f, 10.75f) - lineTo(18.5f, 6.74f) - lineTo(20.13f, 10.75f) - horizontalLineToRelative(-3.26f) - close() - } - } - return _scales!! - } - -private var _scales: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Scan.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Scan.kt deleted file mode 100644 index ddac1283..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Scan.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Scan: ImageVector - get() { - if (_scan != null) { - return _scan!! - } - _scan = fluentIcon(name = "Filled.Scan") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(15.33f, 14.22f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -0.26f, 0.34f) - lineToRelative(-0.14f, 0.17f) - lineToRelative(-3.95f, 5.2f) - arcToRelative(8.07f, 8.07f, 0.0f, false, false, 6.24f, -1.87f) - lineToRelative(-1.9f, -3.84f) - close() - moveTo(11.43f, 16.02f) - lineTo(5.09f, 16.02f) - arcToRelative(8.03f, 8.03f, 0.0f, false, false, 3.82f, 3.36f) - lineToRelative(2.54f, -3.36f) - close() - moveTo(19.75f, 9.99f) - horizontalLineToRelative(-4.28f) - lineToRelative(0.06f, 0.13f) - lineToRelative(0.12f, 0.23f) - lineToRelative(3.0f, 6.09f) - arcToRelative(7.96f, 7.96f, 0.0f, false, false, 1.1f, -6.45f) - close() - moveTo(5.05f, 8.05f) - arcToRelative(7.96f, 7.96f, 0.0f, false, false, -0.8f, 5.97f) - horizontalLineToRelative(4.29f) - lineToRelative(-0.06f, -0.09f) - lineToRelative(-3.44f, -5.88f) - close() - moveTo(12.0f, 10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.58f, 0.77f) - lineToRelative(-0.1f, 0.17f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.09f, 0.12f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 3.17f, 2.36f) - lineToRelative(0.16f, -0.2f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, -0.13f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 12.0f, 10.0f) - close() - moveTo(12.0f, 4.0f) - curveToRelative(-2.2f, 0.0f, -4.2f, 0.9f, -5.65f, 2.33f) - lineToRelative(2.17f, 3.7f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.25f, -0.39f) - lineTo(12.15f, 4.0f) - lineTo(12.0f, 4.0f) - close() - moveTo(14.28f, 4.33f) - lineTo(12.1f, 8.0f) - horizontalLineToRelative(6.83f) - arcToRelative(8.02f, 8.02f, 0.0f, false, false, -4.64f, -3.66f) - close() - } - } - return _scan!! - } - -private var _scan: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanCamera.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanCamera.kt deleted file mode 100644 index 8193dadd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanCamera.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ScanCamera: ImageVector - get() { - if (_scanCamera != null) { - return _scanCamera!! - } - _scanCamera = fluentIcon(name = "Filled.ScanCamera") { - fluentPath { - moveTo(3.0f, 6.5f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 6.5f, 3.0f) - horizontalLineToRelative(1.86f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - lineTo(6.5f, 5.0f) - curveTo(5.67f, 5.0f, 5.0f, 5.67f, 5.0f, 6.5f) - verticalLineToRelative(1.86f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - lineTo(3.0f, 6.5f) - close() - moveTo(14.64f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(1.86f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 21.0f, 6.5f) - verticalLineToRelative(1.86f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(19.0f, 6.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - horizontalLineToRelative(-1.86f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(4.0f, 14.64f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(1.86f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(1.86f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(6.5f, 21.0f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 3.0f, 17.5f) - verticalLineToRelative(-1.86f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(20.0f, 14.64f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(1.86f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.5f, 3.5f) - horizontalLineToRelative(-1.86f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(1.86f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-1.86f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(12.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(10.85f, 7.0f) - curveToRelative(-0.48f, 0.0f, -0.9f, 0.26f, -1.12f, 0.68f) - lineTo(9.24f, 9.0f) - horizontalLineToRelative(-0.57f) - curveTo(7.75f, 9.0f, 7.0f, 9.6f, 7.0f, 10.5f) - verticalLineToRelative(3.86f) - curveToRelative(0.0f, 0.9f, 0.75f, 1.64f, 1.67f, 1.64f) - horizontalLineToRelative(6.66f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.73f, 1.67f, -1.64f) - lineTo(17.0f, 10.5f) - curveToRelative(0.0f, -0.9f, -0.75f, -1.5f, -1.67f, -1.5f) - horizontalLineToRelative(-0.57f) - lineToRelative(-0.49f, -1.32f) - arcTo(1.25f, 1.25f, 0.0f, false, false, 13.15f, 7.0f) - horizontalLineToRelative(-2.3f) - close() - moveTo(12.0f, 14.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, 4.0f) - close() - } - } - return _scanCamera!! - } - -private var _scanCamera: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanDash.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanDash.kt deleted file mode 100644 index e9d6e561..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanDash.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ScanDash: ImageVector - get() { - if (_scanDash != null) { - return _scanDash!! - } - _scanDash = fluentIcon(name = "Filled.ScanDash") { - fluentPath { - moveTo(6.5f, 3.0f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 3.0f, 6.5f) - verticalLineToRelative(1.86f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - lineTo(5.0f, 6.5f) - curveTo(5.0f, 5.67f, 5.67f, 5.0f, 6.5f, 5.0f) - horizontalLineToRelative(1.86f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - lineTo(6.5f, 3.0f) - close() - moveTo(15.64f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(1.86f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(1.86f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(21.0f, 6.5f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 17.5f, 3.0f) - horizontalLineToRelative(-1.86f) - close() - moveTo(5.0f, 15.64f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(1.86f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 6.5f, 21.0f) - horizontalLineToRelative(1.86f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(6.5f, 19.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 5.0f, 17.5f) - verticalLineToRelative(-1.86f) - close() - moveTo(21.0f, 15.64f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(1.86f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-1.86f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(1.86f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 3.5f, -3.5f) - verticalLineToRelative(-1.86f) - close() - moveTo(8.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(8.0f, 11.0f) - close() - } - } - return _scanDash!! - } - -private var _scanDash: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanObject.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanObject.kt deleted file mode 100644 index 98892f4b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanObject.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ScanObject: ImageVector - get() { - if (_scanObject != null) { - return _scanObject!! - } - _scanObject = fluentIcon(name = "Filled.ScanObject") { - fluentPath { - moveTo(3.5f, 5.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) - verticalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-3.0f) - close() - moveTo(20.5f, 5.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.0f) - curveTo(20.55f, 2.0f, 22.0f, 3.46f, 22.0f, 5.25f) - verticalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-3.0f) - close() - moveTo(5.25f, 20.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.0f) - curveTo(2.0f, 20.55f, 3.46f, 22.0f, 5.25f, 22.0f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.0f) - close() - moveTo(20.5f, 18.75f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.0f) - close() - moveTo(13.82f, 8.23f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.64f, 0.0f) - lineToRelative(-3.05f, 4.2f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 8.95f, 16.0f) - horizontalLineToRelative(6.1f) - curveToRelative(1.84f, 0.0f, 2.9f, -2.09f, 1.82f, -3.57f) - lineToRelative(-3.05f, -4.2f) - close() - } - } - return _scanObject!! - } - -private var _scanObject: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanQrCode.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanQrCode.kt deleted file mode 100644 index 2bfe43d7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanQrCode.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ScanQrCode: ImageVector - get() { - if (_scanQrCode != null) { - return _scanQrCode!! - } - _scanQrCode = fluentIcon(name = "Filled.ScanQrCode") { - fluentPath { - moveTo(3.0f, 6.5f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 6.5f, 3.0f) - horizontalLineToRelative(1.86f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - lineTo(6.5f, 5.0f) - curveTo(5.67f, 5.0f, 5.0f, 5.67f, 5.0f, 6.5f) - verticalLineToRelative(1.86f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - lineTo(3.0f, 6.5f) - close() - moveTo(14.64f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(1.86f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 21.0f, 6.5f) - verticalLineToRelative(1.86f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(19.0f, 6.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - horizontalLineToRelative(-1.86f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(4.0f, 14.64f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(1.86f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(1.86f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(6.5f, 21.0f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 3.0f, 17.5f) - verticalLineToRelative(-1.86f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(20.0f, 14.64f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(1.86f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.5f, 3.5f) - horizontalLineToRelative(-1.86f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(1.86f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-1.86f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(10.0f, 7.0f) - lineTo(7.0f, 7.0f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(4.0f) - lineTo(7.0f, 14.0f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(3.0f) - lineTo(17.0f, 7.0f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(-4.0f) - lineTo(10.0f, 7.0f) - close() - } - } - return _scanQrCode!! - } - -private var _scanQrCode: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanTable.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanTable.kt deleted file mode 100644 index 54ae751c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanTable.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ScanTable: ImageVector - get() { - if (_scanTable != null) { - return _scanTable!! - } - _scanTable = fluentIcon(name = "Filled.ScanTable") { - fluentPath { - moveTo(2.75f, 15.0f) - curveToRelative(0.38f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) - verticalLineToRelative(3.6f) - lineToRelative(0.01f, 0.13f) - curveToRelative(0.06f, 0.59f, 0.53f, 1.06f, 1.12f, 1.12f) - horizontalLineToRelative(3.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(4.58f, 22.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 19.43f) - lineTo(2.0f, 15.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) - close() - moveTo(21.25f, 15.0f) - curveToRelative(0.38f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) - verticalLineToRelative(3.6f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 19.42f, 22.0f) - horizontalLineToRelative(-3.66f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(3.6f) - curveToRelative(0.64f, 0.0f, 1.18f, -0.49f, 1.24f, -1.12f) - verticalLineToRelative(-3.63f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.76f, -0.75f) - close() - moveTo(18.0f, 11.0f) - verticalLineToRelative(4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.82f, 3.0f) - lineTo(9.0f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -2.82f) - lineTo(6.0f, 11.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(15.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) - lineTo(18.0f, 9.5f) - lineTo(6.0f, 9.5f) - lineTo(6.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.82f, -3.0f) - lineTo(15.0f, 6.0f) - close() - moveTo(8.25f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-3.6f) - curveToRelative(-0.65f, 0.0f, -1.18f, 0.5f, -1.25f, 1.12f) - verticalLineToRelative(3.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-3.6f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.58f, -2.74f) - lineTo(4.75f, 2.0f) - horizontalLineToRelative(3.5f) - close() - moveTo(19.25f, 2.0f) - horizontalLineToRelative(0.16f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 4.59f) - verticalLineToRelative(3.77f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, 0.0f) - verticalLineToRelative(-3.6f) - lineToRelative(-0.01f, -0.13f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.12f, -1.11f) - lineToRelative(-0.12f, -0.01f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.6f) - close() - } - } - return _scanTable!! - } - -private var _scanTable: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanText.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanText.kt deleted file mode 100644 index 52da20f1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanText.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ScanText: ImageVector - get() { - if (_scanText != null) { - return _scanText!! - } - _scanText = fluentIcon(name = "Filled.ScanText") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - lineTo(3.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - lineTo(5.0f, 6.25f) - curveTo(5.0f, 5.56f, 5.56f, 5.0f, 6.25f, 5.0f) - lineTo(8.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(16.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(1.75f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - lineTo(19.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(16.0f, 3.0f) - close() - moveTo(5.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(1.75f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - lineTo(8.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(6.25f, 19.0f) - curveTo(5.56f, 19.0f, 5.0f, 18.44f, 5.0f, 17.75f) - lineTo(5.0f, 16.0f) - close() - moveTo(21.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(1.75f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - lineTo(16.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(1.75f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 16.0f) - close() - moveTo(8.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(8.0f, 7.0f) - close() - moveTo(7.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(8.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(8.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(8.0f, 15.0f) - close() - } - } - return _scanText!! - } - -private var _scanText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanThumbUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanThumbUp.kt deleted file mode 100644 index 8e61330c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanThumbUp.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ScanThumbUp: ImageVector - get() { - if (_scanThumbUp != null) { - return _scanThumbUp!! - } - _scanThumbUp = fluentIcon(name = "Filled.ScanThumbUp") { - fluentPath { - moveTo(3.5f, 5.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) - verticalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-3.0f) - close() - moveTo(20.5f, 5.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.0f) - curveTo(20.55f, 2.0f, 22.0f, 3.46f, 22.0f, 5.25f) - verticalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-3.0f) - close() - moveTo(5.25f, 20.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.0f) - curveTo(2.0f, 20.55f, 3.46f, 22.0f, 5.25f, 22.0f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.0f) - close() - moveTo(20.5f, 18.75f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.0f) - close() - moveTo(11.29f, 6.42f) - curveToRelative(0.26f, -0.61f, 1.06f, -1.4f, 2.18f, -1.11f) - curveToRelative(0.7f, 0.18f, 1.2f, 0.6f, 1.49f, 1.18f) - curveToRelative(0.25f, 0.5f, 0.29f, 1.05f, 0.3f, 1.46f) - curveToRelative(0.0f, 0.4f, -0.06f, 0.83f, -0.14f, 1.22f) - horizontalLineToRelative(0.2f) - curveToRelative(1.55f, 0.0f, 2.82f, 1.43f, 2.33f, 2.99f) - lineTo(16.5f, 15.8f) - arcToRelative(2.88f, 2.88f, 0.0f, false, true, -3.58f, 1.82f) - lineTo(8.4f, 16.3f) - arcToRelative(2.4f, 2.4f, 0.0f, false, true, -1.56f, -1.4f) - lineToRelative(-0.44f, -1.08f) - arcToRelative(2.27f, 2.27f, 0.0f, false, true, 1.06f, -2.84f) - lineTo(9.0f, 10.14f) - lineToRelative(0.03f, -0.03f) - lineToRelative(0.26f, -0.24f) - curveToRelative(0.24f, -0.25f, 0.6f, -0.7f, 0.96f, -1.43f) - lineToRelative(0.46f, -0.87f) - curveToRelative(0.22f, -0.4f, 0.38f, -0.7f, 0.57f, -1.15f) - close() - } - } - return _scanThumbUp!! - } - -private var _scanThumbUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanThumbUpOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanThumbUpOff.kt deleted file mode 100644 index 2d423ca9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanThumbUpOff.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ScanThumbUpOff: ImageVector - get() { - if (_scanThumbUpOff != null) { - return _scanThumbUpOff!! - } - _scanThumbUpOff = fluentIcon(name = "Filled.ScanThumbUpOff") { - fluentPath { - moveTo(2.48f, 3.54f) - curveToRelative(-0.3f, 0.5f, -0.48f, 1.08f, -0.48f, 1.71f) - verticalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -0.2f, 0.04f, -0.4f, 0.1f, -0.59f) - lineToRelative(5.45f, 5.45f) - horizontalLineToRelative(-0.01f) - lineToRelative(-0.03f, 0.03f) - lineToRelative(-1.54f, 0.85f) - arcToRelative(2.27f, 2.27f, 0.0f, false, false, -1.06f, 2.84f) - lineToRelative(0.44f, 1.09f) - arcToRelative(2.4f, 2.4f, 0.0f, false, false, 1.56f, 1.39f) - lineToRelative(4.5f, 1.32f) - curveToRelative(1.06f, 0.3f, 2.2f, 0.0f, 2.93f, -0.73f) - lineToRelative(3.5f, 3.5f) - curveToRelative(-0.19f, 0.06f, -0.38f, 0.1f, -0.59f, 0.1f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.0f) - curveToRelative(0.63f, 0.0f, 1.21f, -0.18f, 1.7f, -0.48f) - lineToRelative(0.27f, 0.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(0.26f, 0.26f) - close() - moveTo(10.73f, 7.54f) - lineTo(17.09f, 13.91f) - lineTo(17.65f, 12.16f) - curveToRelative(0.49f, -1.56f, -0.78f, -3.0f, -2.34f, -3.0f) - horizontalLineToRelative(-0.19f) - curveToRelative(0.08f, -0.38f, 0.15f, -0.81f, 0.14f, -1.2f) - curveToRelative(-0.01f, -0.42f, -0.05f, -0.97f, -0.3f, -1.47f) - curveToRelative(-0.29f, -0.58f, -0.8f, -1.0f, -1.5f, -1.18f) - curveToRelative(-1.1f, -0.29f, -1.9f, 0.5f, -2.17f, 1.11f) - curveToRelative(-0.19f, 0.44f, -0.35f, 0.74f, -0.56f, 1.13f) - close() - moveTo(20.5f, 17.32f) - lineTo(22.0f, 18.82f) - verticalLineToRelative(-3.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.57f) - close() - moveTo(5.18f, 2.0f) - lineToRelative(1.5f, 1.5f) - horizontalLineToRelative(1.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(5.18f, 2.0f) - close() - moveTo(20.5f, 5.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.0f) - curveTo(20.55f, 2.0f, 22.0f, 3.46f, 22.0f, 5.25f) - verticalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-3.0f) - close() - moveTo(5.25f, 20.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.0f) - curveTo(2.0f, 20.55f, 3.46f, 22.0f, 5.25f, 22.0f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.0f) - close() - } - } - return _scanThumbUpOff!! - } - -private var _scanThumbUpOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanType.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanType.kt deleted file mode 100644 index 859fb61f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanType.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ScanType: ImageVector - get() { - if (_scanType != null) { - return _scanType!! - } - _scanType = fluentIcon(name = "Filled.ScanType") { - fluentPath { - moveTo(5.5f, 4.0f) - curveTo(4.67f, 4.0f, 4.0f, 4.67f, 4.0f, 5.5f) - lineTo(4.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - lineTo(2.0f, 5.5f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 5.5f, 2.0f) - lineTo(8.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - lineTo(5.5f, 4.0f) - close() - moveTo(5.5f, 20.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 4.0f, 18.5f) - lineTo(4.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(2.5f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 5.5f, 22.0f) - lineTo(8.0f, 22.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(5.5f, 20.0f) - close() - moveTo(20.0f, 5.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(16.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(2.5f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 22.0f, 5.5f) - lineTo(22.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(20.0f, 5.5f) - close() - moveTo(18.5f, 20.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - lineTo(20.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(2.5f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.5f, 3.5f) - lineTo(16.0f, 22.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(2.5f) - close() - moveTo(7.75f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(1.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - lineTo(8.75f, 8.0f) - lineTo(11.0f, 8.0f) - verticalLineToRelative(8.0f) - lineTo(9.75f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(13.0f, 16.0f) - lineTo(13.0f, 8.0f) - horizontalLineToRelative(2.25f) - verticalLineToRelative(0.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(17.25f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineToRelative(-8.5f) - close() - } - } - return _scanType!! - } - -private var _scanType: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanTypeCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanTypeCheckmark.kt deleted file mode 100644 index 50c4833a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScanTypeCheckmark.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ScanTypeCheckmark: ImageVector - get() { - if (_scanTypeCheckmark != null) { - return _scanTypeCheckmark!! - } - _scanTypeCheckmark = fluentIcon(name = "Filled.ScanTypeCheckmark") { - fluentPath { - moveTo(5.5f, 4.0f) - curveTo(4.67f, 4.0f, 4.0f, 4.67f, 4.0f, 5.5f) - lineTo(4.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - lineTo(2.0f, 5.5f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 5.5f, 2.0f) - lineTo(8.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - lineTo(5.5f, 4.0f) - close() - moveTo(5.5f, 20.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 4.0f, 18.5f) - lineTo(4.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(2.5f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 5.5f, 22.0f) - lineTo(8.0f, 22.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(5.5f, 20.0f) - close() - moveTo(20.0f, 5.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(16.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(2.5f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 22.0f, 5.5f) - lineTo(22.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(20.0f, 5.5f) - close() - moveTo(7.75f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(1.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - lineTo(8.75f, 8.0f) - lineTo(11.0f, 8.0f) - verticalLineToRelative(8.0f) - lineTo(9.75f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(1.27f) - arcTo(6.48f, 6.48f, 0.0f, false, true, 13.0f, 12.81f) - lineTo(13.0f, 8.0f) - horizontalLineToRelative(2.25f) - verticalLineToRelative(0.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(17.25f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineToRelative(-8.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-3.65f, 3.64f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _scanTypeCheckmark!! - } - -private var _scanTypeCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Scratchpad.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Scratchpad.kt deleted file mode 100644 index d4418776..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Scratchpad.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Scratchpad: ImageVector - get() { - if (_scratchpad != null) { - return _scratchpad!! - } - _scratchpad = fluentIcon(name = "Filled.Scratchpad") { - fluentPath { - moveTo(17.78f, 2.0f) - arcTo(2.23f, 2.23f, 0.0f, false, true, 20.0f, 4.18f) - verticalLineToRelative(4.08f) - arcTo(4.24f, 4.24f, 0.0f, false, false, 13.51f, 7.0f) - lineTo(8.25f, 7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.13f) - curveToRelative(-0.21f, 0.47f, -0.34f, 0.97f, -0.37f, 1.5f) - lineTo(8.25f, 10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(12.0f, 11.5f) - verticalLineToRelative(0.67f) - arcToRelative(1.74f, 1.74f, 0.0f, false, false, -0.6f, -0.16f) - lineToRelative(-0.15f, -0.01f) - curveToRelative(-0.7f, 0.0f, -1.3f, 0.4f, -1.58f, 1.0f) - lineTo(8.25f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(9.5f, 14.5f) - curveToRelative(0.0f, 3.0f, 1.98f, 5.53f, 4.76f, 6.36f) - lineToRelative(0.24f, 0.07f) - verticalLineToRelative(0.32f) - curveToRelative(0.0f, 0.27f, 0.06f, 0.52f, 0.17f, 0.75f) - lineTo(6.25f, 22.0f) - arcToRelative(2.29f, 2.29f, 0.0f, false, true, -2.24f, -2.03f) - lineTo(4.0f, 19.81f) - lineTo(4.0f, 4.2f) - curveToRelative(0.0f, -0.93f, 0.82f, -2.1f, 2.08f, -2.18f) - lineTo(6.25f, 2.0f) - horizontalLineToRelative(11.53f) - close() - moveTo(21.25f, 13.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(0.75f) - arcToRelative(5.64f, 5.64f, 0.0f, false, true, -5.0f, 5.6f) - verticalLineToRelative(1.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(15.5f, 20.1f) - arcToRelative(5.65f, 5.65f, 0.0f, false, true, -5.0f, -5.36f) - verticalLineToRelative(-0.99f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.85f) - curveToRelative(0.0f, 2.35f, 1.9f, 4.15f, 4.25f, 4.15f) - curveToRelative(2.28f, 0.0f, 4.13f, -1.7f, 4.24f, -3.94f) - lineToRelative(0.01f, -0.21f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(16.25f, 7.0f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(4.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.5f, 0.0f) - verticalLineToRelative(-4.0f) - curveTo(13.0f, 8.45f, 14.46f, 7.0f, 16.25f, 7.0f) - close() - } - } - return _scratchpad!! - } - -private var _scratchpad: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScreenSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScreenSearch.kt deleted file mode 100644 index 58bc65c1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ScreenSearch.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ScreenSearch: ImageVector - get() { - if (_screenSearch != null) { - return _screenSearch!! - } - _screenSearch = fluentIcon(name = "Filled.ScreenSearch") { - fluentPath { - moveTo(2.0f, 7.25f) - curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) - horizontalLineToRelative(13.5f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-6.28f) - lineToRelative(-2.04f, -2.05f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 2.0f, 11.25f) - verticalLineToRelative(-4.0f) - close() - moveTo(5.5f, 20.0f) - curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) - lineToRelative(2.62f, 2.61f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.61f, -2.61f) - arcTo(4.5f, 4.5f, 0.0f, true, false, 5.5f, 20.0f) - close() - moveTo(5.5f, 18.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) - close() - } - } - return _screenSearch!! - } - -private var _screenSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Screenshot.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Screenshot.kt deleted file mode 100644 index 87ffc8e5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Screenshot.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Screenshot: ImageVector - get() { - if (_screenshot != null) { - return _screenshot!! - } - _screenshot = fluentIcon(name = "Filled.Screenshot") { - fluentPath { - moveTo(17.25f, 3.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 21.0f, 6.75f) - verticalLineToRelative(10.5f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 17.25f, 21.0f) - lineTo(6.75f, 21.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 3.0f, 17.25f) - lineTo(3.0f, 6.75f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 6.75f, 3.0f) - horizontalLineToRelative(10.5f) - close() - moveTo(17.25f, 13.0f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - lineTo(16.5f, 16.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.41f, 0.5f) - horizontalLineToRelative(-2.34f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - lineTo(16.0f, 18.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -1.85f) - verticalLineToRelative(-2.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(6.75f, 13.0f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - lineTo(6.0f, 16.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.85f, 2.0f) - horizontalLineToRelative(2.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - lineTo(8.0f, 16.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.41f) - verticalLineToRelative(-2.34f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(10.25f, 6.0f) - horizontalLineToRelative(-2.4f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.84f, 1.84f) - lineTo(6.0f, 8.0f) - verticalLineToRelative(2.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(7.5f, 7.91f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.41f, -0.4f) - lineTo(8.0f, 7.5f) - horizontalLineToRelative(2.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(16.0f, 6.0f) - horizontalLineToRelative(-2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - lineTo(16.0f, 7.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.5f, 0.41f) - verticalLineToRelative(2.34f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.1f) - lineTo(18.0f, 8.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.85f, -2.0f) - lineTo(16.0f, 6.0f) - close() - } - } - return _screenshot!! - } - -private var _screenshot: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SearchInfo.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SearchInfo.kt deleted file mode 100644 index 8d3ad183..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SearchInfo.kt +++ /dev/null @@ -1,41 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SearchInfo: ImageVector - get() { - if (_searchInfo != null) { - return _searchInfo!! - } - _searchInfo = fluentIcon(name = "Filled.SearchInfo") { - fluentPath { - moveTo(17.25f, 10.0f) - arcToRelative(7.25f, 7.25f, 0.0f, true, false, -2.68f, 5.63f) - lineToRelative(4.9f, 4.9f) - lineToRelative(0.08f, 0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, -1.13f) - lineToRelative(-4.9f, -4.9f) - arcTo(7.22f, 7.22f, 0.0f, false, false, 17.25f, 10.0f) - close() - moveTo(11.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(10.0f, 9.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _searchInfo!! - } - -private var _searchInfo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SearchSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SearchSquare.kt deleted file mode 100644 index 5c337b18..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SearchSquare.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SearchSquare: ImageVector - get() { - if (_searchSquare != null) { - return _searchSquare!! - } - _searchSquare = fluentIcon(name = "Filled.SearchSquare") { - fluentPath { - moveTo(11.0f, 14.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) - close() - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(11.0f, 15.5f) - curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) - lineToRelative(2.62f, 2.61f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.61f, -2.61f) - arcTo(4.5f, 4.5f, 0.0f, true, false, 11.0f, 15.5f) - close() - } - } - return _searchSquare!! - } - -private var _searchSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SearchVisual.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SearchVisual.kt deleted file mode 100644 index f6f8adfa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SearchVisual.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SearchVisual: ImageVector - get() { - if (_searchVisual != null) { - return _searchVisual!! - } - _searchVisual = fluentIcon(name = "Filled.SearchVisual") { - fluentPath { - moveTo(3.0f, 6.5f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 6.5f, 3.0f) - lineTo(9.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - lineTo(6.5f, 5.0f) - curveTo(5.67f, 5.0f, 5.0f, 5.67f, 5.0f, 6.5f) - lineTo(5.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(3.0f, 6.5f) - close() - moveTo(21.0f, 17.5f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.5f, 3.5f) - lineTo(15.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(2.5f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - lineTo(19.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(2.5f) - close() - moveTo(21.0f, 6.5f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 17.5f, 3.0f) - lineTo(15.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(2.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - lineTo(19.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(21.0f, 6.5f) - close() - moveTo(6.5f, 21.0f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 3.0f, 17.5f) - lineTo(3.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - lineTo(9.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(6.5f, 21.0f) - close() - moveTo(12.0f, 15.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) - close() - moveTo(7.5f, 8.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - } - } - return _searchVisual!! - } - -private var _searchVisual: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SelectAllOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SelectAllOff.kt deleted file mode 100644 index 7acdb032..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SelectAllOff.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SelectAllOff: ImageVector - get() { - if (_selectAllOff != null) { - return _selectAllOff!! - } - _selectAllOff = fluentIcon(name = "Filled.SelectAllOff") { - fluentPath { - moveTo(20.5f, 5.63f) - curveToRelative(0.87f, 0.3f, 1.5f, 1.14f, 1.5f, 2.12f) - verticalLineToRelative(10.0f) - curveTo(22.0f, 20.1f, 20.1f, 22.0f, 17.75f, 22.0f) - horizontalLineToRelative(-10.0f) - curveToRelative(-0.98f, 0.0f, -1.82f, -0.63f, -2.12f, -1.5f) - horizontalLineToRelative(12.12f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, -2.75f) - verticalLineTo(5.63f) - close() - moveTo(17.25f, 2.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(13.0f) - curveToRelative(0.0f, 1.24f, -1.01f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-13.0f) - curveTo(3.01f, 19.5f, 2.0f, 18.49f, 2.0f, 17.25f) - verticalLineToRelative(-13.0f) - curveTo(2.0f, 3.01f, 3.0f, 2.0f, 4.25f, 2.0f) - horizontalLineToRelative(13.0f) - close() - } - } - return _selectAllOff!! - } - -private var _selectAllOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SelectAllOn.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SelectAllOn.kt deleted file mode 100644 index 4126787a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SelectAllOn.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SelectAllOn: ImageVector - get() { - if (_selectAllOn != null) { - return _selectAllOn!! - } - _selectAllOn = fluentIcon(name = "Filled.SelectAllOn") { - fluentPath { - moveTo(20.5f, 5.63f) - curveToRelative(0.87f, 0.3f, 1.5f, 1.14f, 1.5f, 2.12f) - verticalLineToRelative(10.0f) - curveTo(22.0f, 20.1f, 20.1f, 22.0f, 17.75f, 22.0f) - horizontalLineToRelative(-10.0f) - curveToRelative(-0.98f, 0.0f, -1.82f, -0.63f, -2.12f, -1.5f) - horizontalLineToRelative(12.12f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, -2.75f) - lineTo(20.5f, 5.63f) - close() - moveTo(17.25f, 2.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(13.0f) - curveToRelative(0.0f, 1.24f, -1.01f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-13.0f) - curveTo(3.01f, 19.5f, 2.0f, 18.49f, 2.0f, 17.25f) - verticalLineToRelative(-13.0f) - curveTo(2.0f, 3.01f, 3.0f, 2.0f, 4.25f, 2.0f) - horizontalLineToRelative(13.0f) - close() - moveTo(13.47f, 7.47f) - lineTo(9.58f, 11.36f) - lineTo(8.6f, 10.05f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.2f, 0.9f) - lineToRelative(1.5f, 2.0f) - curveToRelative(0.27f, 0.37f, 0.8f, 0.4f, 1.13f, 0.08f) - lineToRelative(4.5f, -4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - close() - } - } - return _selectAllOn!! - } - -private var _selectAllOn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SelectObject.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SelectObject.kt deleted file mode 100644 index 566cf740..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SelectObject.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SelectObject: ImageVector - get() { - if (_selectObject != null) { - return _selectObject!! - } - _selectObject = fluentIcon(name = "Filled.SelectObject") { - fluentPath { - moveTo(7.0f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(8.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(9.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - close() - moveTo(5.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(6.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - moveTo(19.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(20.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - moveTo(9.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(9.0f, 20.0f) - close() - moveTo(5.0f, 21.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) - close() - moveTo(21.0f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(19.0f, 21.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) - close() - } - } - return _selectObject!! - } - -private var _selectObject: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SelectObjectSkew.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SelectObjectSkew.kt deleted file mode 100644 index a5b42af9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SelectObjectSkew.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SelectObjectSkew: ImageVector - get() { - if (_selectObjectSkew != null) { - return _selectObjectSkew!! - } - _selectObjectSkew = fluentIcon(name = "Filled.SelectObjectSkew") { - fluentPath { - moveTo(18.59f, 6.41f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 22.0f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, -3.41f, 1.41f) - close() - moveTo(14.27f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 3.46f, -2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -3.46f, 2.0f) - close() - moveTo(4.0f, 21.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, 4.0f) - close() - moveTo(6.59f, 6.41f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 10.0f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.41f, 3.41f) - close() - moveTo(3.82f, 16.01f) - lineTo(6.26f, 7.45f) - arcToRelative(2.99f, 2.99f, 0.0f, false, false, 1.92f, 0.54f) - lineToRelative(-2.44f, 8.56f) - arcToRelative(2.99f, 2.99f, 0.0f, false, false, -1.92f, -0.54f) - close() - moveTo(17.17f, 6.0f) - horizontalLineToRelative(-6.34f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -2.0f) - horizontalLineToRelative(6.34f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(13.17f, 20.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -2.0f) - lineTo(6.83f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 2.0f) - horizontalLineToRelative(6.34f) - close() - moveTo(15.82f, 16.0f) - lineTo(18.26f, 7.45f) - arcToRelative(2.99f, 2.99f, 0.0f, false, false, 1.92f, 0.54f) - lineToRelative(-2.44f, 8.56f) - arcToRelative(2.99f, 2.99f, 0.0f, false, false, -1.92f, -0.54f) - close() - } - } - return _selectObjectSkew!! - } - -private var _selectObjectSkew: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SelectObjectSkewDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SelectObjectSkewDismiss.kt deleted file mode 100644 index 8d3f1c5e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SelectObjectSkewDismiss.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SelectObjectSkewDismiss: ImageVector - get() { - if (_selectObjectSkewDismiss != null) { - return _selectObjectSkewDismiss!! - } - _selectObjectSkewDismiss = fluentIcon(name = "Filled.SelectObjectSkewDismiss") { - fluentPath { - moveTo(18.59f, 6.41f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 22.0f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, -3.44f, 1.4f) - lineToRelative(0.03f, 0.01f) - close() - moveTo(2.0f, 19.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -4.0f, 0.0f) - close() - moveTo(6.59f, 6.41f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 10.0f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.44f, 3.4f) - lineToRelative(0.03f, 0.01f) - close() - moveTo(6.26f, 7.45f) - lineTo(3.82f, 16.0f) - arcToRelative(3.05f, 3.05f, 0.0f, false, true, 1.92f, 0.54f) - lineTo(8.18f, 8.0f) - arcToRelative(3.05f, 3.05f, 0.0f, false, true, -1.92f, -0.54f) - close() - moveTo(17.17f, 6.0f) - horizontalLineToRelative(-6.34f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -2.0f) - horizontalLineToRelative(6.34f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(11.5f, 20.0f) - arcToRelative(6.46f, 6.46f, 0.0f, false, true, -0.48f, -2.0f) - horizontalLineToRelative(-4.2f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 2.0f) - horizontalLineToRelative(4.68f) - close() - moveTo(20.18f, 8.0f) - lineTo(19.26f, 11.24f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -2.02f, -0.24f) - lineToRelative(1.02f, -3.55f) - arcToRelative(2.99f, 2.99f, 0.0f, false, false, 1.92f, 0.54f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-1.64f, -1.65f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.65f, 1.64f) - lineToRelative(-1.65f, -1.64f) - close() - } - } - return _selectObjectSkewDismiss!! - } - -private var _selectObjectSkewDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SelectObjectSkewEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SelectObjectSkewEdit.kt deleted file mode 100644 index 9dfabe74..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SelectObjectSkewEdit.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SelectObjectSkewEdit: ImageVector - get() { - if (_selectObjectSkewEdit != null) { - return _selectObjectSkewEdit!! - } - _selectObjectSkewEdit = fluentIcon(name = "Filled.SelectObjectSkewEdit") { - fluentPath { - moveTo(18.59f, 6.41f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 22.0f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, -3.44f, 1.4f) - lineToRelative(0.03f, 0.01f) - close() - moveTo(2.0f, 19.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -4.0f, 0.0f) - close() - moveTo(6.59f, 6.41f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 10.0f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.44f, 3.4f) - lineToRelative(0.03f, 0.01f) - close() - moveTo(6.26f, 7.45f) - lineTo(3.82f, 16.0f) - arcToRelative(3.05f, 3.05f, 0.0f, false, true, 1.92f, 0.54f) - lineTo(8.18f, 8.0f) - arcToRelative(3.05f, 3.05f, 0.0f, false, true, -1.92f, -0.54f) - close() - moveTo(17.17f, 6.0f) - horizontalLineToRelative(-6.34f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -2.0f) - horizontalLineToRelative(6.34f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(11.52f, 19.58f) - curveToRelative(0.15f, -0.6f, 0.44f, -1.13f, 0.84f, -1.58f) - lineTo(6.83f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 2.0f) - horizontalLineToRelative(4.59f) - lineToRelative(0.1f, -0.42f) - close() - moveTo(20.18f, 7.99f) - lineTo(19.22f, 11.36f) - curveToRelative(-0.3f, 0.15f, -0.58f, 0.35f, -0.83f, 0.6f) - lineToRelative(-1.99f, 2.0f) - lineToRelative(1.86f, -6.51f) - arcToRelative(2.99f, 2.99f, 0.0f, false, false, 1.92f, 0.54f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _selectObjectSkewEdit!! - } - -private var _selectObjectSkewEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SendClock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SendClock.kt deleted file mode 100644 index a8754798..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SendClock.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SendClock: ImageVector - get() { - if (_sendClock != null) { - return _sendClock!! - } - _sendClock = fluentIcon(name = "Filled.SendClock") { - fluentPath { - moveToRelative(12.81f, 12.2f) - lineToRelative(-7.53f, 1.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.38f, 0.32f) - lineToRelative(-2.6f, 6.96f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.03f, 0.94f) - lineToRelative(7.68f, -3.84f) - lineToRelative(-0.01f, -0.33f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, 10.6f, -5.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.27f, -1.12f) - lineToRelative(-18.0f, -9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.03f, 0.94f) - lineToRelative(2.6f, 6.96f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.38f, 0.32f) - lineToRelative(7.53f, 1.25f) - arcToRelative(0.2f, 0.2f, 0.0f, false, true, 0.0f, 0.4f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(19.5f, 17.5f) - horizontalLineToRelative(-2.0f) - lineTo(17.5f, 15.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - close() - } - } - return _sendClock!! - } - -private var _sendClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SendCopy.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SendCopy.kt deleted file mode 100644 index 6a042199..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SendCopy.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SendCopy: ImageVector - get() { - if (_sendCopy != null) { - return _sendCopy!! - } - _sendCopy = fluentIcon(name = "Filled.SendCopy") { - fluentPath { - moveTo(20.0f, 11.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(21.0f, 17.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, -5.27f, 5.5f) - lineTo(8.25f, 22.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.45f, -2.01f) - horizontalLineToRelative(2.4f) - lineToRelative(0.05f, 0.01f) - horizontalLineToRelative(7.25f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 3.5f, -3.3f) - verticalLineToRelative(-4.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(17.0f, 9.49f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - verticalLineToRelative(6.62f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.34f, 2.5f) - lineTo(5.5f, 19.49f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 3.0f, 17.15f) - lineTo(3.0f, 10.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.1f) - verticalLineToRelative(6.6f) - curveToRelative(0.0f, 0.24f, 0.17f, 0.45f, 0.4f, 0.49f) - horizontalLineToRelative(10.1f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.49f, -0.4f) - verticalLineToRelative(-6.6f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(6.3f, 5.79f) - lineToRelative(3.49f, -3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) - lineToRelative(0.1f, 0.08f) - lineToRelative(3.5f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 1.5f) - lineToRelative(-0.1f, -0.08f) - lineToRelative(-1.8f, -1.8f) - lineToRelative(0.01f, 8.84f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - horizontalLineToRelative(-0.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - lineTo(9.5f, 5.41f) - lineToRelative(-1.8f, 1.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.31f, 0.08f) - lineToRelative(-0.1f, -0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.32f) - lineToRelative(0.08f, -0.1f) - lineToRelative(3.5f, -3.5f) - lineToRelative(-3.5f, 3.5f) - close() - } - } - return _sendCopy!! - } - -private var _sendCopy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SerialPort.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SerialPort.kt deleted file mode 100644 index 9d5cd78d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SerialPort.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SerialPort: ImageVector - get() { - if (_serialPort != null) { - return _serialPort!! - } - _serialPort = fluentIcon(name = "Filled.SerialPort") { - fluentPath { - moveTo(2.23f, 10.39f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.68f, -3.4f) - horizontalLineToRelative(14.18f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.68f, 3.4f) - lineToRelative(-1.08f, 4.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.02f, 17.0f) - lineTo(5.98f, 17.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.68f, -2.11f) - lineToRelative(-1.07f, -4.5f) - close() - moveTo(7.0f, 11.5f) - arcTo(0.75f, 0.75f, 0.0f, true, false, 7.0f, 10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(10.25f, 10.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - close() - moveTo(8.25f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(11.5f, 13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - close() - moveTo(13.25f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(16.5f, 13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - close() - moveTo(12.0f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(15.25f, 10.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - close() - moveTo(17.0f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - } - } - return _serialPort!! - } - -private var _serialPort: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Server.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Server.kt deleted file mode 100644 index e6ec248f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Server.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Server: ImageVector - get() { - if (_server != null) { - return _server!! - } - _server = fluentIcon(name = "Filled.Server") { - fluentPath { - moveTo(9.0f, 2.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(14.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) - horizontalLineToRelative(6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) - lineTo(18.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - lineTo(9.0f, 2.0f) - close() - moveTo(8.5f, 6.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(8.5f, 17.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(8.5f, 14.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _server!! - } - -private var _server: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ServiceBell.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ServiceBell.kt deleted file mode 100644 index d1cf0754..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ServiceBell.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ServiceBell: ImageVector - get() { - if (_serviceBell != null) { - return _serviceBell!! - } - _serviceBell = fluentIcon(name = "Filled.ServiceBell") { - fluentPath { - moveTo(10.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) - verticalLineToRelative(1.24f) - arcToRelative(8.24f, 8.24f, 0.0f, false, true, 6.25f, 8.0f) - curveToRelative(0.0f, 0.42f, -0.34f, 0.76f, -0.75f, 0.76f) - horizontalLineToRelative(-15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - curveToRelative(0.0f, -3.86f, 2.67f, -7.1f, 6.25f, -8.0f) - lineTo(10.0f, 4.0f) - close() - moveTo(13.25f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - curveToRelative(1.25f, 0.0f, 2.14f, 0.62f, 2.89f, 1.68f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.22f, -0.86f) - arcToRelative(4.87f, 4.87f, 0.0f, false, false, -4.11f, -2.32f) - close() - moveTo(2.0f, 17.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(16.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) - lineTo(4.0f, 19.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - close() - } - } - return _serviceBell!! - } - -private var _serviceBell: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SettingsChat.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SettingsChat.kt deleted file mode 100644 index 48476e4d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SettingsChat.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SettingsChat: ImageVector - get() { - if (_settingsChat != null) { - return _settingsChat!! - } - _settingsChat = fluentIcon(name = "Filled.SettingsChat") { - fluentPath { - moveTo(14.2f, 2.5f) - curveToRelative(-0.72f, -0.16f, -1.45f, -0.24f, -2.19f, -0.25f) - curveToRelative(-0.75f, 0.0f, -1.48f, 0.1f, -2.2f, 0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.58f, 0.65f) - lineToRelative(-0.17f, 1.53f) - arcTo(1.39f, 1.39f, 0.0f, false, true, 7.13f, 5.8f) - lineToRelative(-1.4f, -0.62f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.85f, 0.17f) - arcToRelative(9.8f, 9.8f, 0.0f, false, false, -2.2f, 3.8f) - curveToRelative(-0.1f, 0.3f, 0.0f, 0.63f, 0.27f, 0.82f) - lineToRelative(1.24f, 0.92f) - arcToRelative(1.38f, 1.38f, 0.0f, false, true, 0.0f, 2.22f) - lineToRelative(-1.24f, 0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.28f, 0.82f) - arcToRelative(9.8f, 9.8f, 0.0f, false, false, 2.2f, 3.8f) - curveToRelative(0.23f, 0.23f, 0.57f, 0.3f, 0.86f, 0.18f) - lineToRelative(1.4f, -0.62f) - arcToRelative(1.38f, 1.38f, 0.0f, false, true, 1.93f, 1.11f) - lineToRelative(0.17f, 1.52f) - curveToRelative(0.03f, 0.32f, 0.26f, 0.58f, 0.57f, 0.65f) - curveToRelative(0.45f, 0.1f, 0.91f, 0.18f, 1.37f, 0.22f) - lineToRelative(0.45f, -1.45f) - arcToRelative(6.48f, 6.48f, 0.0f, false, true, -0.1f, -5.3f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 3.44f, -3.45f) - arcToRelative(6.48f, 6.48f, 0.0f, false, true, 4.49f, -0.21f) - curveToRelative(0.09f, -0.16f, 0.21f, -0.3f, 0.37f, -0.41f) - lineToRelative(1.24f, -0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.27f, -0.82f) - arcToRelative(9.8f, 9.8f, 0.0f, false, false, -2.2f, -3.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.86f, -0.17f) - lineToRelative(-1.4f, 0.61f) - arcToRelative(1.38f, 1.38f, 0.0f, false, true, -1.93f, -1.12f) - lineToRelative(-0.16f, -1.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.59f, -0.65f) - close() - moveTo(19.28f, 12.3f) - arcTo(5.49f, 5.49f, 0.0f, false, false, 12.0f, 17.5f) - curveToRelative(0.0f, 0.97f, 0.25f, 1.88f, 0.69f, 2.67f) - lineToRelative(-0.67f, 2.19f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.63f, 0.62f) - lineToRelative(2.18f, -0.67f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 4.45f, -10.02f) - close() - moveTo(15.5f, 18.0f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - close() - moveTo(19.5f, 17.0f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - horizontalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - close() - } - } - return _settingsChat!! - } - -private var _settingsChat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShapeExclude.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShapeExclude.kt deleted file mode 100644 index 521b2b0c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShapeExclude.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShapeExclude: ImageVector - get() { - if (_shapeExclude != null) { - return _shapeExclude!! - } - _shapeExclude = fluentIcon(name = "Filled.ShapeExclude") { - fluentPath { - moveTo(5.25f, 2.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) - verticalLineToRelative(8.0f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineTo(7.5f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(8.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-8.0f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineTo(16.5f) - verticalLineTo(5.25f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-8.0f) - close() - moveTo(16.5f, 7.5f) - verticalLineToRelative(5.75f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineTo(7.5f) - verticalLineToRelative(-5.75f) - curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) - horizontalLineToRelative(5.75f) - close() - } - } - return _shapeExclude!! - } - -private var _shapeExclude: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShapeIntersect.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShapeIntersect.kt deleted file mode 100644 index 5f566f29..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShapeIntersect.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShapeIntersect: ImageVector - get() { - if (_shapeIntersect != null) { - return _shapeIntersect!! - } - _shapeIntersect = fluentIcon(name = "Filled.ShapeIntersect") { - fluentPath { - moveTo(2.0f, 5.25f) - curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) - horizontalLineToRelative(8.0f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - lineTo(16.5f, 7.5f) - horizontalLineToRelative(2.25f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(8.0f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-8.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.25f, -3.25f) - lineTo(7.5f, 16.5f) - lineTo(5.25f, 16.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 13.25f) - verticalLineToRelative(-8.0f) - close() - moveTo(15.0f, 5.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-8.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(8.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(7.5f, 15.0f) - verticalLineToRelative(-4.25f) - arcToRelative(3.23f, 3.23f, 0.0f, false, true, 3.25f, -3.25f) - lineTo(15.0f, 7.5f) - lineTo(15.0f, 5.25f) - close() - moveTo(16.0f, 14.98f) - arcTo(3.38f, 3.38f, 0.0f, false, true, 14.98f, 16.0f) - curveToRelative(-0.5f, 0.32f, -1.1f, 0.5f, -1.73f, 0.5f) - lineTo(9.0f, 16.5f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(8.0f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-8.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(16.5f, 9.0f) - verticalLineToRelative(4.25f) - curveToRelative(0.0f, 0.64f, -0.18f, 1.23f, -0.5f, 1.73f) - close() - } - } - return _shapeIntersect!! - } - -private var _shapeIntersect: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShapeSubtract.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShapeSubtract.kt deleted file mode 100644 index 877856f9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShapeSubtract.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShapeSubtract: ImageVector - get() { - if (_shapeSubtract != null) { - return _shapeSubtract!! - } - _shapeSubtract = fluentIcon(name = "Filled.ShapeSubtract") { - fluentPath { - moveTo(3.0f, 2.9f) - curveToRelative(-0.62f, 0.6f, -1.0f, 1.43f, -1.0f, 2.35f) - verticalLineToRelative(8.0f) - arcToRelative(3.3f, 3.3f, 0.0f, false, false, 0.56f, 1.82f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 2.69f, 1.43f) - lineTo(7.5f, 16.5f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(8.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-8.0f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - lineTo(16.5f, 7.5f) - lineTo(16.5f, 5.25f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-8.0f) - curveToRelative(-0.87f, 0.0f, -1.67f, 0.34f, -2.25f, 0.9f) - close() - moveTo(9.0f, 10.75f) - curveTo(9.0f, 9.78f, 9.78f, 9.0f, 10.75f, 9.0f) - horizontalLineToRelative(8.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(8.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-8.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-8.0f) - close() - } - } - return _shapeSubtract!! - } - -private var _shapeSubtract: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShapeUnion.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShapeUnion.kt deleted file mode 100644 index 7783cba5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShapeUnion.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShapeUnion: ImageVector - get() { - if (_shapeUnion != null) { - return _shapeUnion!! - } - _shapeUnion = fluentIcon(name = "Filled.ShapeUnion") { - fluentPath { - moveTo(5.25f, 2.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) - verticalLineToRelative(8.0f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineTo(7.5f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(8.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-8.0f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineTo(16.5f) - verticalLineTo(5.25f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-8.0f) - close() - } - } - return _shapeUnion!! - } - -private var _shapeUnion: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Shapes.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Shapes.kt deleted file mode 100644 index c3685a8e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Shapes.kt +++ /dev/null @@ -1,39 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Shapes: ImageVector - get() { - if (_shapes != null) { - return _shapes!! - } - _shapes = fluentIcon(name = "Filled.Shapes") { - fluentPath { - moveTo(2.0f, 8.75f) - arcTo(6.75f, 6.75f, 0.0f, false, true, 15.46f, 8.0f) - horizontalLineToRelative(-3.21f) - arcTo(4.25f, 4.25f, 0.0f, false, false, 8.0f, 12.25f) - verticalLineToRelative(3.2f) - arcToRelative(6.75f, 6.75f, 0.0f, false, true, -6.0f, -6.7f) - close() - moveTo(12.25f, 9.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 9.0f, 12.25f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(6.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-6.5f) - curveTo(22.0f, 10.45f, 20.54f, 9.0f, 18.75f, 9.0f) - horizontalLineToRelative(-6.5f) - close() - } - } - return _shapes!! - } - -private var _shapes: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShareAndroid.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShareAndroid.kt deleted file mode 100644 index 0a08b18b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShareAndroid.kt +++ /dev/null @@ -1,35 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShareAndroid: ImageVector - get() { - if (_shareAndroid != null) { - return _shareAndroid!! - } - _shareAndroid = fluentIcon(name = "Filled.ShareAndroid") { - fluentPath { - moveTo(17.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, -2.15f, 5.1f) - lineTo(9.4f, 11.2f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 1.58f) - lineToRelative(5.45f, 3.12f) - arcTo(2.99f, 2.99f, 0.0f, false, true, 20.0f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, -5.9f, -0.79f) - lineTo(8.66f, 14.1f) - arcTo(2.99f, 2.99f, 0.0f, false, true, 3.5f, 12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 5.15f, -2.1f) - lineTo(14.1f, 6.8f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 17.0f, 3.0f) - close() - } - } - return _shareAndroid!! - } - -private var _shareAndroid: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShareCloseTray.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShareCloseTray.kt deleted file mode 100644 index b7521c28..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShareCloseTray.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShareCloseTray: ImageVector - get() { - if (_shareCloseTray != null) { - return _shareCloseTray!! - } - _shareCloseTray = fluentIcon(name = "Filled.ShareCloseTray") { - fluentPath { - moveTo(4.25f, 20.0f) - curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) - lineTo(2.0f, 6.25f) - curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) - horizontalLineToRelative(15.5f) - curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(4.25f, 20.0f) - close() - moveTo(12.53f, 16.53f) - lineTo(15.78f, 13.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-1.97f, 1.97f) - lineTo(12.75f, 7.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(6.44f) - lineToRelative(-1.97f, -1.97f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(3.25f, 3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 0.0f) - close() - } - } - return _shareCloseTray!! - } - -private var _shareCloseTray: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShareIos.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShareIos.kt deleted file mode 100644 index d372a9ef..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShareIos.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShareIos: ImageVector - get() { - if (_shareIos != null) { - return _shareIos!! - } - _shareIos = fluentIcon(name = "Filled.ShareIos") { - fluentPath { - moveTo(19.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.99f, 0.88f) - verticalLineTo(18.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -3.8f, 4.0f) - horizontalLineTo(8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -3.8f) - verticalLineTo(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - verticalLineTo(18.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.85f, 2.0f) - horizontalLineTo(16.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.99f, -1.85f) - verticalLineTo(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(6.29f, 7.29f) - lineToRelative(5.0f, -5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) - lineToRelative(0.09f, 0.08f) - lineToRelative(5.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 1.5f) - lineToRelative(-0.09f, -0.09f) - lineToRelative(-3.3f, -3.28f) - verticalLineToRelative(9.83f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - horizontalLineTo(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - verticalLineTo(5.41f) - lineToRelative(-3.3f, 3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.08f) - lineToRelative(-0.1f, -0.09f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.07f, -1.32f) - lineToRelative(0.08f, -0.1f) - lineToRelative(5.0f, -4.99f) - lineToRelative(-5.0f, 5.0f) - close() - } - } - return _shareIos!! - } - -private var _shareIos: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShareScreenPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShareScreenPerson.kt deleted file mode 100644 index ccd66496..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShareScreenPerson.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShareScreenPerson: ImageVector - get() { - if (_shareScreenPerson != null) { - return _shareScreenPerson!! - } - _shareScreenPerson = fluentIcon(name = "Filled.ShareScreenPerson") { - fluentPath { - moveTo(5.25f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) - lineTo(13.0f, 20.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, -0.13f) - verticalLineToRelative(-0.1f) - arcTo(2.77f, 2.77f, 0.0f, false, true, 15.77f, 17.0f) - horizontalLineToRelative(0.28f) - arcToRelative(3.49f, 3.49f, 0.0f, false, true, 2.45f, -6.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 3.5f, 3.5f) - lineTo(22.0f, 7.25f) - curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) - lineTo(5.25f, 4.0f) - close() - moveTo(21.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(23.0f, 19.88f) - curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) - reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _shareScreenPerson!! - } - -private var _shareScreenPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShareScreenPersonOverlay.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShareScreenPersonOverlay.kt deleted file mode 100644 index cac9f37c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShareScreenPersonOverlay.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShareScreenPersonOverlay: ImageVector - get() { - if (_shareScreenPersonOverlay != null) { - return _shareScreenPersonOverlay!! - } - _shareScreenPersonOverlay = fluentIcon(name = "Filled.ShareScreenPersonOverlay") { - fluentPath { - moveTo(2.0f, 7.25f) - curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) - horizontalLineToRelative(13.5f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(7.25f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, -5.95f, 2.5f) - horizontalLineToRelative(-0.28f) - arcTo(2.77f, 2.77f, 0.0f, false, false, 13.0f, 19.77f) - verticalLineToRelative(0.1f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 0.13f) - lineTo(5.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - close() - moveTo(5.0f, 8.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - lineTo(12.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(6.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - close() - moveTo(21.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(23.0f, 19.88f) - curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) - reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _shareScreenPersonOverlay!! - } - -private var _shareScreenPersonOverlay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShareScreenPersonOverlayInside.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShareScreenPersonOverlayInside.kt deleted file mode 100644 index 20820a1c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShareScreenPersonOverlayInside.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShareScreenPersonOverlayInside: ImageVector - get() { - if (_shareScreenPersonOverlayInside != null) { - return _shareScreenPersonOverlayInside!! - } - _shareScreenPersonOverlayInside = fluentIcon(name = - "Filled.ShareScreenPersonOverlayInside") { - fluentPath { - moveTo(2.0f, 7.25f) - curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) - horizontalLineToRelative(13.5f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(5.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - close() - moveTo(16.0f, 12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) - close() - moveTo(5.0f, 8.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - lineTo(12.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(6.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - close() - moveTo(14.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(0.25f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 15.75f, 17.0f) - horizontalLineToRelative(0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 19.0f, 14.25f) - lineTo(19.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineToRelative(-4.0f) - close() - } - } - return _shareScreenPersonOverlayInside!! - } - -private var _shareScreenPersonOverlayInside: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShareScreenPersonP.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShareScreenPersonP.kt deleted file mode 100644 index dcafe37f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShareScreenPersonP.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShareScreenPersonP: ImageVector - get() { - if (_shareScreenPersonP != null) { - return _shareScreenPersonP!! - } - _shareScreenPersonP = fluentIcon(name = "Filled.ShareScreenPersonP") { - fluentPath { - moveTo(2.0f, 7.25f) - curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) - horizontalLineToRelative(13.5f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(7.25f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, -5.95f, 2.5f) - horizontalLineToRelative(-0.28f) - arcTo(2.77f, 2.77f, 0.0f, false, false, 13.0f, 19.77f) - verticalLineToRelative(0.1f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 0.13f) - lineTo(5.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - close() - moveTo(7.0f, 8.75f) - verticalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(8.5f, 13.5f) - horizontalLineToRelative(1.25f) - arcToRelative(2.75f, 2.75f, 0.0f, true, false, 0.0f, -5.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(8.5f, 12.0f) - horizontalLineToRelative(1.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - lineTo(8.5f, 9.5f) - lineTo(8.5f, 12.0f) - close() - moveTo(21.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(23.0f, 19.88f) - curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) - reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _shareScreenPersonP!! - } - -private var _shareScreenPersonP: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShareScreenStart.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShareScreenStart.kt deleted file mode 100644 index c363338b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShareScreenStart.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShareScreenStart: ImageVector - get() { - if (_shareScreenStart != null) { - return _shareScreenStart!! - } - _shareScreenStart = fluentIcon(name = "Filled.ShareScreenStart") { - fluentPath { - moveTo(4.25f, 4.0f) - curveTo(3.01f, 4.0f, 2.0f, 5.0f, 2.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(2.0f, 18.99f, 3.0f, 20.0f, 4.25f, 20.0f) - horizontalLineToRelative(15.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(22.0f, 6.25f) - curveTo(22.0f, 5.01f, 21.0f, 4.0f, 19.75f, 4.0f) - lineTo(4.25f, 4.0f) - close() - moveTo(12.53f, 7.47f) - lineTo(15.78f, 10.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-1.97f, -1.97f) - verticalLineToRelative(6.44f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - lineTo(11.25f, 9.81f) - lineToRelative(-1.97f, 1.97f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(3.25f, -3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 0.0f) - close() - } - } - return _shareScreenStart!! - } - -private var _shareScreenStart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShareScreenStop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShareScreenStop.kt deleted file mode 100644 index 43226479..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShareScreenStop.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShareScreenStop: ImageVector - get() { - if (_shareScreenStop != null) { - return _shareScreenStop!! - } - _shareScreenStop = fluentIcon(name = "Filled.ShareScreenStop") { - fluentPath { - moveTo(4.25f, 4.0f) - horizontalLineToRelative(15.5f) - curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(4.25f, 20.0f) - curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) - lineTo(2.0f, 6.25f) - curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) - close() - moveTo(9.28f, 8.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineTo(10.94f, 12.0f) - lineToRelative(-2.72f, 2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineTo(12.0f, 13.06f) - lineToRelative(2.72f, 2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineTo(13.06f, 12.0f) - lineToRelative(2.72f, -2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineTo(12.0f, 10.94f) - lineTo(9.28f, 8.22f) - close() - } - } - return _shareScreenStop!! - } - -private var _shareScreenStop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Shield.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Shield.kt deleted file mode 100644 index 5b40b8ca..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Shield.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Shield: ImageVector - get() { - if (_shield != null) { - return _shield!! - } - _shield = fluentIcon(name = "Filled.Shield") { - fluentPath { - moveTo(3.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - curveToRelative(2.66f, 0.0f, 5.26f, -0.94f, 7.8f, -2.85f) - curveToRelative(0.27f, -0.2f, 0.63f, -0.2f, 0.9f, 0.0f) - curveTo(14.99f, 4.05f, 17.59f, 5.0f, 20.25f, 5.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineTo(11.0f) - curveToRelative(0.0f, 5.0f, -2.96f, 8.68f, -8.73f, 10.95f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.0f) - curveTo(5.96f, 19.68f, 3.0f, 16.0f, 3.0f, 11.0f) - verticalLineTo(5.75f) - close() - } - } - return _shield!! - } - -private var _shield: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldAdd.kt deleted file mode 100644 index 5506f476..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldAdd.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShieldAdd: ImageVector - get() { - if (_shieldAdd != null) { - return _shieldAdd!! - } - _shieldAdd = fluentIcon(name = "Filled.ShieldAdd") { - fluentPath { - moveTo(3.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - curveToRelative(2.66f, 0.0f, 5.26f, -0.94f, 7.8f, -2.85f) - curveToRelative(0.27f, -0.2f, 0.63f, -0.2f, 0.9f, 0.0f) - curveTo(14.99f, 4.05f, 17.59f, 5.0f, 20.25f, 5.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(21.0f, 11.0f) - curveToRelative(0.0f, 0.34f, -0.01f, 0.67f, -0.04f, 1.0f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -8.33f, 9.8f) - lineToRelative(-0.36f, 0.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.0f) - curveTo(5.96f, 19.68f, 3.0f, 16.0f, 3.0f, 11.0f) - lineTo(3.0f, 5.75f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _shieldAdd!! - } - -private var _shieldAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldBadge.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldBadge.kt deleted file mode 100644 index f98f5f22..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldBadge.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShieldBadge: ImageVector - get() { - if (_shieldBadge != null) { - return _shieldBadge!! - } - _shieldBadge = fluentIcon(name = "Filled.ShieldBadge") { - fluentPath { - moveTo(2.0f, 7.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 5.0f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 20.0f, 7.75f) - verticalLineToRelative(2.47f) - arcToRelative(3.96f, 3.96f, 0.0f, false, true, -1.4f, -1.04f) - arcToRelative(3.33f, 3.33f, 0.0f, false, true, -0.17f, -0.2f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.88f, 0.03f) - lineToRelative(-0.14f, 0.17f) - curveToRelative(-0.14f, 0.15f, -0.34f, 0.35f, -0.6f, 0.56f) - curveToRelative(-0.54f, 0.41f, -1.24f, 0.75f, -2.06f, 0.75f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.8f, -1.75f, 1.76f) - lineTo(11.0f, 15.0f) - lineTo(4.75f, 15.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 12.25f) - verticalLineToRelative(-4.5f) - close() - moveTo(15.57f, 8.98f) - close() - moveTo(18.58f, 10.53f) - curveToRelative(-0.35f, -0.27f, -0.7f, -0.6f, -0.97f, -0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.22f, 0.0f) - arcToRelative(4.98f, 4.98f, 0.0f, false, true, -3.64f, 1.93f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(12.0f, 15.0f) - curveToRelative(0.0f, 1.64f, 0.44f, 2.95f, 1.3f, 3.98f) - arcToRelative(7.98f, 7.98f, 0.0f, false, false, 3.44f, 2.22f) - curveToRelative(0.17f, 0.07f, 0.35f, 0.07f, 0.52f, 0.0f) - curveToRelative(1.4f, -0.52f, 2.6f, -1.2f, 3.44f, -2.22f) - arcTo(5.97f, 5.97f, 0.0f, false, false, 22.0f, 15.0f) - verticalLineToRelative(-2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - curveToRelative(-0.58f, 0.0f, -1.1f, -0.13f, -1.56f, -0.32f) - curveToRelative(-0.42f, -0.17f, -0.8f, -0.4f, -1.1f, -0.65f) - close() - } - } - return _shieldBadge!! - } - -private var _shieldBadge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldCheckmark.kt deleted file mode 100644 index 2c626b1e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldCheckmark.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShieldCheckmark: ImageVector - get() { - if (_shieldCheckmark != null) { - return _shieldCheckmark!! - } - _shieldCheckmark = fluentIcon(name = "Filled.ShieldCheckmark") { - fluentPath { - moveTo(3.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - curveToRelative(2.66f, 0.0f, 5.26f, -0.94f, 7.8f, -2.85f) - curveToRelative(0.27f, -0.2f, 0.63f, -0.2f, 0.9f, 0.0f) - curveTo(14.99f, 4.05f, 17.59f, 5.0f, 20.25f, 5.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(21.0f, 11.0f) - curveToRelative(0.0f, 0.34f, -0.01f, 0.67f, -0.04f, 1.0f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -8.33f, 9.8f) - lineToRelative(-0.36f, 0.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.0f) - curveTo(5.96f, 19.68f, 3.0f, 16.0f, 3.0f, 11.0f) - lineTo(3.0f, 5.75f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(20.85f, 15.15f) - curveToRelative(0.2f, 0.2f, 0.2f, 0.5f, 0.0f, 0.7f) - lineToRelative(-4.0f, 4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.0f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, -0.7f) - lineToRelative(1.65f, 1.64f) - lineToRelative(3.65f, -3.64f) - curveToRelative(0.2f, -0.2f, 0.5f, -0.2f, 0.7f, 0.0f) - close() - } - } - return _shieldCheckmark!! - } - -private var _shieldCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldDismiss.kt deleted file mode 100644 index 9fb082e2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldDismiss.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShieldDismiss: ImageVector - get() { - if (_shieldDismiss != null) { - return _shieldDismiss!! - } - _shieldDismiss = fluentIcon(name = "Filled.ShieldDismiss") { - fluentPath { - moveTo(12.45f, 2.15f) - curveTo(14.99f, 4.05f, 17.59f, 5.0f, 20.25f, 5.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineTo(11.0f) - curveToRelative(0.0f, 5.0f, -2.96f, 8.68f, -8.73f, 10.95f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.0f) - curveTo(5.96f, 19.68f, 3.0f, 16.0f, 3.0f, 11.0f) - verticalLineTo(5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - curveToRelative(2.66f, 0.0f, 5.26f, -0.94f, 7.8f, -2.85f) - curveToRelative(0.27f, -0.2f, 0.63f, -0.2f, 0.9f, 0.0f) - close() - moveTo(9.28f, 8.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.13f, 0.98f) - lineToRelative(0.07f, 0.08f) - lineTo(10.94f, 12.0f) - lineToRelative(-2.72f, 2.73f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineTo(12.0f, 13.06f) - lineToRelative(2.73f, 2.73f) - curveToRelative(0.26f, 0.26f, 0.68f, 0.29f, 0.97f, 0.07f) - lineToRelative(0.09f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.07f, -0.98f) - lineToRelative(-0.07f, -0.08f) - lineTo(13.06f, 12.0f) - lineToRelative(2.73f, -2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineTo(12.0f, 10.94f) - lineTo(9.28f, 8.22f) - close() - } - } - return _shieldDismiss!! - } - -private var _shieldDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldError.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldError.kt deleted file mode 100644 index 04fa9426..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldError.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShieldError: ImageVector - get() { - if (_shieldError != null) { - return _shieldError!! - } - _shieldError = fluentIcon(name = "Filled.ShieldError") { - fluentPath { - moveTo(20.25f, 5.0f) - curveToRelative(-2.66f, 0.0f, -5.26f, -0.94f, -7.8f, -2.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 0.0f) - curveTo(9.01f, 4.05f, 6.41f, 5.0f, 3.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(3.0f, 11.0f) - curveToRelative(0.0f, 5.0f, 2.96f, 8.68f, 8.73f, 10.95f) - curveToRelative(0.17f, 0.07f, 0.37f, 0.07f, 0.54f, 0.0f) - curveTo(18.04f, 19.68f, 21.0f, 16.0f, 21.0f, 11.0f) - lineTo(21.0f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(11.25f, 7.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(12.75f, 14.33f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(11.25f, 7.63f) - close() - moveTo(12.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - close() - } - } - return _shieldError!! - } - -private var _shieldError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldGlobe.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldGlobe.kt deleted file mode 100644 index 2fbda013..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldGlobe.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShieldGlobe: ImageVector - get() { - if (_shieldGlobe != null) { - return _shieldGlobe!! - } - _shieldGlobe = fluentIcon(name = "Filled.ShieldGlobe") { - fluentPath { - moveTo(3.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(3.0f, 11.0f) - curveToRelative(0.0f, 5.0f, 2.96f, 8.68f, 8.73f, 10.95f) - curveToRelative(0.17f, 0.07f, 0.37f, 0.07f, 0.54f, 0.0f) - curveTo(18.04f, 19.68f, 21.0f, 16.0f, 21.0f, 11.0f) - lineTo(21.0f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - curveToRelative(-2.66f, 0.0f, -5.26f, -0.94f, -7.8f, -2.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 0.0f) - curveTo(9.01f, 4.05f, 6.41f, 5.0f, 3.75f, 5.0f) - close() - moveTo(10.07f, 15.5f) - arcToRelative(9.63f, 9.63f, 0.0f, false, true, -0.55f, -2.75f) - lineTo(8.07f, 12.75f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 2.0f, 2.76f) - close() - moveTo(11.6f, 15.27f) - arcToRelative(7.56f, 7.56f, 0.0f, false, true, -0.57f, -2.52f) - horizontalLineToRelative(1.94f) - arcToRelative(7.56f, 7.56f, 0.0f, false, true, -0.57f, 2.52f) - curveToRelative(-0.17f, 0.37f, -0.3f, 0.56f, -0.4f, 0.65f) - curveToRelative(-0.1f, -0.1f, -0.23f, -0.28f, -0.4f, -0.65f) - close() - moveTo(11.6f, 8.73f) - curveToRelative(-0.28f, 0.62f, -0.5f, 1.49f, -0.57f, 2.52f) - horizontalLineToRelative(1.94f) - arcToRelative(7.56f, 7.56f, 0.0f, false, false, -0.57f, -2.52f) - arcToRelative(2.34f, 2.34f, 0.0f, false, false, -0.4f, -0.65f) - curveToRelative(-0.1f, 0.1f, -0.23f, 0.28f, -0.4f, 0.65f) - close() - moveTo(13.93f, 15.51f) - curveToRelative(0.29f, -0.77f, 0.48f, -1.72f, 0.55f, -2.76f) - horizontalLineToRelative(1.45f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -2.0f, 2.76f) - close() - moveTo(14.48f, 11.25f) - horizontalLineToRelative(1.45f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -2.0f, -2.76f) - curveToRelative(0.29f, 0.77f, 0.48f, 1.72f, 0.55f, 2.76f) - close() - moveTo(8.07f, 11.25f) - horizontalLineToRelative(1.45f) - curveToRelative(0.07f, -1.04f, 0.26f, -1.99f, 0.55f, -2.76f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -2.0f, 2.76f) - close() - moveTo(12.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - } - } - return _shieldGlobe!! - } - -private var _shieldGlobe: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldKeyhole.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldKeyhole.kt deleted file mode 100644 index afa5c08f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldKeyhole.kt +++ /dev/null @@ -1,41 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShieldKeyhole: ImageVector - get() { - if (_shieldKeyhole != null) { - return _shieldKeyhole!! - } - _shieldKeyhole = fluentIcon(name = "Filled.ShieldKeyhole") { - fluentPath { - moveTo(3.0f, 5.75f) - verticalLineTo(11.0f) - curveToRelative(0.0f, 5.0f, 2.96f, 8.68f, 8.73f, 10.95f) - curveToRelative(0.17f, 0.07f, 0.37f, 0.07f, 0.54f, 0.0f) - curveTo(18.04f, 19.68f, 21.0f, 16.0f, 21.0f, 11.0f) - verticalLineTo(5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - curveToRelative(-2.66f, 0.0f, -5.26f, -0.94f, -7.8f, -2.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 0.0f) - curveTo(9.01f, 4.05f, 6.41f, 5.0f, 3.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(14.0f, 11.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.25f, 1.85f) - verticalLineToRelative(2.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.4f) - arcTo(2.0f, 2.0f, 0.0f, true, true, 14.0f, 11.0f) - close() - } - } - return _shieldKeyhole!! - } - -private var _shieldKeyhole: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldLock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldLock.kt deleted file mode 100644 index 2ed891a1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldLock.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShieldLock: ImageVector - get() { - if (_shieldLock != null) { - return _shieldLock!! - } - _shieldLock = fluentIcon(name = "Filled.ShieldLock") { - fluentPath { - moveTo(3.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - curveToRelative(2.66f, 0.0f, 5.26f, -0.94f, 7.8f, -2.85f) - curveToRelative(0.27f, -0.2f, 0.63f, -0.2f, 0.9f, 0.0f) - curveTo(14.99f, 4.05f, 17.59f, 5.0f, 20.25f, 5.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(21.0f, 11.0f) - lineToRelative(-0.01f, 0.54f) - arcTo(3.49f, 3.49f, 0.0f, false, false, 15.0f, 14.0f) - verticalLineToRelative(0.05f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.0f, 2.45f) - verticalLineToRelative(5.15f) - lineToRelative(-0.73f, 0.3f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.0f) - curveTo(5.96f, 19.68f, 3.0f, 16.0f, 3.0f, 11.0f) - lineTo(3.0f, 5.75f) - close() - moveTo(16.0f, 15.0f) - verticalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(0.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-6.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(0.5f) - close() - moveTo(17.5f, 14.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - close() - moveTo(19.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - } - } - return _shieldLock!! - } - -private var _shieldLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldProhibited.kt deleted file mode 100644 index 8d0bb389..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldProhibited.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShieldProhibited: ImageVector - get() { - if (_shieldProhibited != null) { - return _shieldProhibited!! - } - _shieldProhibited = fluentIcon(name = "Filled.ShieldProhibited") { - fluentPath { - moveTo(3.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(3.0f, 11.0f) - curveToRelative(0.0f, 5.0f, 2.96f, 8.68f, 8.73f, 10.95f) - curveToRelative(0.17f, 0.07f, 0.37f, 0.07f, 0.54f, 0.0f) - lineToRelative(0.43f, -0.17f) - arcToRelative(6.5f, 6.5f, 0.0f, true, true, 8.28f, -10.0f) - lineTo(21.0f, 11.0f) - lineTo(21.0f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - curveToRelative(-2.66f, 0.0f, -5.26f, -0.94f, -7.8f, -2.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 0.0f) - curveTo(9.01f, 4.05f, 6.41f, 5.0f, 3.75f, 5.0f) - close() - moveTo(16.5f, 22.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) - close() - moveTo(13.2f, 18.75f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 5.56f, -5.56f) - lineToRelative(-5.57f, 5.56f) - close() - moveTo(14.25f, 19.81f) - lineTo(19.81f, 14.25f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -5.56f, 5.56f) - close() - } - } - return _shieldProhibited!! - } - -private var _shieldProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldQuestion.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldQuestion.kt deleted file mode 100644 index 7875e283..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldQuestion.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShieldQuestion: ImageVector - get() { - if (_shieldQuestion != null) { - return _shieldQuestion!! - } - _shieldQuestion = fluentIcon(name = "Filled.ShieldQuestion") { - fluentPath { - moveTo(3.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - curveToRelative(2.66f, 0.0f, 5.26f, -0.94f, 7.8f, -2.85f) - curveToRelative(0.27f, -0.2f, 0.63f, -0.2f, 0.9f, 0.0f) - curveTo(14.99f, 4.05f, 17.59f, 5.0f, 20.25f, 5.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(21.0f, 11.0f) - curveToRelative(0.0f, 5.0f, -2.96f, 8.68f, -8.73f, 10.95f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.0f) - curveTo(5.96f, 19.68f, 3.0f, 16.0f, 3.0f, 11.0f) - lineTo(3.0f, 5.75f) - close() - moveTo(13.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(10.75f, 9.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - curveToRelative(0.0f, 0.45f, -0.25f, 0.74f, -0.78f, 1.27f) - lineToRelative(-0.05f, 0.05f) - curveToRelative(-0.47f, 0.46f, -1.17f, 1.16f, -1.17f, 2.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - curveToRelative(0.0f, -0.45f, 0.25f, -0.74f, 0.78f, -1.27f) - lineToRelative(0.05f, -0.05f) - curveToRelative(0.47f, -0.47f, 1.17f, -1.16f, 1.17f, -2.28f) - arcToRelative(2.75f, 2.75f, 0.0f, true, false, -5.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - close() - } - } - return _shieldQuestion!! - } - -private var _shieldQuestion: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldTask.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldTask.kt deleted file mode 100644 index 8c86fb5e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShieldTask.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShieldTask: ImageVector - get() { - if (_shieldTask != null) { - return _shieldTask!! - } - _shieldTask = fluentIcon(name = "Filled.ShieldTask") { - fluentPath { - moveTo(20.25f, 5.0f) - curveToRelative(-2.66f, 0.0f, -5.26f, -0.94f, -7.8f, -2.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 0.0f) - curveTo(9.01f, 4.05f, 6.41f, 5.0f, 3.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(3.0f, 11.0f) - curveToRelative(0.0f, 5.0f, 2.96f, 8.68f, 8.73f, 10.95f) - curveToRelative(0.17f, 0.07f, 0.37f, 0.07f, 0.54f, 0.0f) - curveTo(18.04f, 19.68f, 21.0f, 16.0f, 21.0f, 11.0f) - lineTo(21.0f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(16.75f, 9.3f) - lineTo(10.75f, 14.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.03f, -0.02f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(2.0f, 2.0f) - lineToRelative(5.46f, -5.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.02f, 1.1f) - close() - } - } - return _shieldTask!! - } - -private var _shieldTask: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Shifts.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Shifts.kt deleted file mode 100644 index 5b3c4e0a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Shifts.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Shifts: ImageVector - get() { - if (_shifts != null) { - return _shifts!! - } - _shifts = fluentIcon(name = "Filled.Shifts") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(11.75f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(12.5f, 12.0f) - lineTo(12.5f, 6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - } - } - return _shifts!! - } - -private var _shifts: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Shifts30Minutes.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Shifts30Minutes.kt deleted file mode 100644 index 0f742e11..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Shifts30Minutes.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Shifts30Minutes: ImageVector - get() { - if (_shifts30Minutes != null) { - return _shifts30Minutes!! - } - _shifts30Minutes = fluentIcon(name = "Filled.Shifts30Minutes") { - fluentPath { - moveTo(15.5f, 5.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, -7.0f, 0.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 7.0f, 0.0f) - close() - moveTo(8.75f, 10.0f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(9.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-6.5f) - close() - moveTo(6.5f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(5.5f, 21.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(10.11f, 16.53f) - curveToRelative(-0.27f, 0.06f, -0.52f, 0.2f, -0.67f, 0.33f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.92f, -1.19f) - curveToRelative(0.27f, -0.2f, 0.71f, -0.48f, 1.25f, -0.6f) - arcToRelative(2.33f, 2.33f, 0.0f, false, true, 1.88f, 0.32f) - arcToRelative(2.27f, 2.27f, 0.0f, false, true, 0.62f, 3.03f) - arcToRelative(2.1f, 2.1f, 0.0f, false, true, -0.08f, 2.86f) - curveToRelative(-0.6f, 0.6f, -1.4f, 0.77f, -2.08f, 0.73f) - arcToRelative(3.12f, 3.12f, 0.0f, false, true, -1.85f, -0.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.99f, -1.12f) - curveToRelative(0.17f, 0.15f, 0.52f, 0.3f, 0.94f, 0.32f) - curveToRelative(0.4f, 0.02f, 0.73f, -0.09f, 0.94f, -0.3f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, 0.12f, -0.62f) - curveToRelative(-0.07f, -0.2f, -0.23f, -0.34f, -0.5f, -0.34f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(0.5f) - curveToRelative(0.12f, 0.0f, 0.17f, -0.04f, 0.21f, -0.08f) - curveToRelative(0.05f, -0.04f, 0.1f, -0.14f, 0.13f, -0.28f) - curveToRelative(0.05f, -0.3f, -0.07f, -0.61f, -0.28f, -0.75f) - arcToRelative(0.83f, 0.83f, 0.0f, false, false, -0.7f, -0.11f) - close() - moveTo(16.5f, 15.0f) - arcToRelative(2.2f, 2.2f, 0.0f, false, false, -1.99f, 1.08f) - curveToRelative(-0.38f, 0.65f, -0.51f, 1.5f, -0.51f, 2.42f) - curveToRelative(0.0f, 0.92f, 0.13f, 1.77f, 0.51f, 2.42f) - arcTo(2.2f, 2.2f, 0.0f, false, false, 16.5f, 22.0f) - arcToRelative(2.2f, 2.2f, 0.0f, false, false, 1.99f, -1.08f) - curveToRelative(0.38f, -0.64f, 0.51f, -1.5f, 0.51f, -2.42f) - curveToRelative(0.0f, -0.93f, -0.13f, -1.78f, -0.51f, -2.42f) - arcTo(2.2f, 2.2f, 0.0f, false, false, 16.5f, 15.0f) - close() - moveTo(15.5f, 18.5f) - curveToRelative(0.0f, -0.83f, 0.12f, -1.35f, 0.3f, -1.64f) - curveToRelative(0.13f, -0.23f, 0.32f, -0.36f, 0.7f, -0.36f) - curveToRelative(0.39f, 0.0f, 0.57f, 0.13f, 0.7f, 0.35f) - curveToRelative(0.18f, 0.3f, 0.3f, 0.81f, 0.3f, 1.65f) - curveToRelative(0.0f, 0.84f, -0.12f, 1.36f, -0.3f, 1.65f) - curveToRelative(-0.13f, 0.22f, -0.31f, 0.35f, -0.7f, 0.35f) - curveToRelative(-0.38f, 0.0f, -0.57f, -0.13f, -0.7f, -0.35f) - curveToRelative(-0.18f, -0.3f, -0.3f, -0.82f, -0.3f, -1.65f) - close() - } - } - return _shifts30Minutes!! - } - -private var _shifts30Minutes: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShiftsActivity.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShiftsActivity.kt deleted file mode 100644 index 65392138..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShiftsActivity.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShiftsActivity: ImageVector - get() { - if (_shiftsActivity != null) { - return _shiftsActivity!! - } - _shiftsActivity = fluentIcon(name = "Filled.ShiftsActivity") { - fluentPath { - moveTo(11.1f, 4.05f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -0.21f, -1.99f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 11.05f, 11.05f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.99f, -0.22f) - arcToRelative(8.0f, 8.0f, 0.0f, true, true, -8.84f, -8.84f) - close() - moveTo(14.77f, 2.39f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.54f, 1.93f) - curveToRelative(0.28f, 0.08f, 0.57f, 0.17f, 0.84f, 0.29f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.76f, -1.86f) - curveToRelative(-0.35f, -0.14f, -0.7f, -0.26f, -1.06f, -0.36f) - close() - moveTo(17.35f, 4.69f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, -0.06f) - lineToRelative(0.61f, 0.6f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 17.9f, 6.6f) - arcToRelative(7.94f, 7.94f, 0.0f, false, false, -0.49f, -0.49f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.06f, -1.4f) - close() - moveTo(11.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(10.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(19.94f, 7.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.3f, 0.55f) - arcToRelative(9.86f, 9.86f, 0.0f, false, true, 0.37f, 1.06f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.93f, 0.54f) - arcToRelative(7.9f, 7.9f, 0.0f, false, false, -0.29f, -0.84f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.55f, -1.3f) - close() - } - } - return _shiftsActivity!! - } - -private var _shiftsActivity: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShiftsAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShiftsAdd.kt deleted file mode 100644 index 6b25eaa3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShiftsAdd.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShiftsAdd: ImageVector - get() { - if (_shiftsAdd != null) { - return _shiftsAdd!! - } - _shiftsAdd = fluentIcon(name = "Filled.ShiftsAdd") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(5.77f) - arcToRelative(6.47f, 6.47f, 0.0f, false, true, 8.0f, 0.8f) - arcToRelative(0.8f, 0.8f, 0.0f, false, true, 0.0f, -0.07f) - verticalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineTo(12.0f) - horizontalLineToRelative(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.5f) - lineToRelative(-0.14f, -0.01f) - arcToRelative(6.47f, 6.47f, 0.0f, false, true, 0.37f, 7.51f) - horizontalLineToRelative(5.77f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineTo(6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - horizontalLineTo(6.25f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(7.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - verticalLineTo(18.0f) - horizontalLineTo(3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - horizontalLineTo(6.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - verticalLineTo(17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineTo(7.0f) - close() - } - } - return _shiftsAdd!! - } - -private var _shiftsAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShiftsAvailability.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShiftsAvailability.kt deleted file mode 100644 index 66bb36ec..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShiftsAvailability.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShiftsAvailability: ImageVector - get() { - if (_shiftsAvailability != null) { - return _shiftsAvailability!! - } - _shiftsAvailability = fluentIcon(name = "Filled.ShiftsAvailability") { - fluentPath { - moveTo(8.5f, 2.0f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -0.48f, 12.98f) - arcToRelative(7.5f, 7.5f, 0.0f, false, true, 6.96f, -6.96f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 8.5f, 2.0f) - close() - moveTo(11.28f, 7.78f) - lineTo(8.28f, 10.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 0.0f) - lineToRelative(-1.5f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineToRelative(0.97f, 0.97f) - lineToRelative(2.47f, -2.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) - close() - moveTo(9.0f, 15.5f) - arcToRelative(6.5f, 6.5f, 0.0f, true, true, 13.0f, 0.0f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, -13.0f, 0.0f) - close() - moveTo(13.22f, 13.24f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(1.22f, 1.2f) - lineToRelative(-1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(1.22f, -1.22f) - lineToRelative(1.21f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.07f, -1.06f) - lineToRelative(-1.22f, -1.22f) - lineToRelative(1.21f, -1.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.05f, -1.07f) - lineToRelative(-1.22f, 1.21f) - lineToRelative(-1.22f, -1.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - close() - } - } - return _shiftsAvailability!! - } - -private var _shiftsAvailability: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShiftsCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShiftsCheckmark.kt deleted file mode 100644 index 34d0a60a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShiftsCheckmark.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShiftsCheckmark: ImageVector - get() { - if (_shiftsCheckmark != null) { - return _shiftsCheckmark!! - } - _shiftsCheckmark = fluentIcon(name = "Filled.ShiftsCheckmark") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(5.77f) - arcToRelative(6.47f, 6.47f, 0.0f, false, true, 8.0f, 0.8f) - arcToRelative(0.8f, 0.8f, 0.0f, false, true, 0.0f, -0.07f) - verticalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(12.5f, 12.0f) - horizontalLineToRelative(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.5f) - lineToRelative(-0.14f, -0.01f) - arcToRelative(6.47f, 6.47f, 0.0f, false, true, 0.37f, 7.51f) - horizontalLineToRelative(5.77f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(8.85f, 15.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineTo(5.5f, 18.29f) - lineToRelative(-0.9f, -0.9f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.71f) - lineToRelative(1.25f, 1.25f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(3.0f, -3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _shiftsCheckmark!! - } - -private var _shiftsCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShiftsDay.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShiftsDay.kt deleted file mode 100644 index 0fc32b11..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShiftsDay.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShiftsDay: ImageVector - get() { - if (_shiftsDay != null) { - return _shiftsDay!! - } - _shiftsDay = fluentIcon(name = "Filled.ShiftsDay") { - fluentPath { - moveTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - horizontalLineTo(6.25f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineTo(6.25f) - close() - moveTo(7.5f, 8.75f) - arcTo(2.3f, 2.3f, 0.0f, false, true, 9.25f, 8.0f) - curveToRelative(1.15f, 0.0f, 1.9f, 0.8f, 2.15f, 1.66f) - curveToRelative(0.26f, 0.85f, 0.1f, 1.9f, -0.62f, 2.62f) - arcToRelative(8.1f, 8.1f, 0.0f, false, true, -0.79f, 0.67f) - lineToRelative(-0.04f, 0.03f) - curveToRelative(-0.28f, 0.22f, -0.53f, 0.41f, -0.75f, 0.63f) - arcToRelative(2.3f, 2.3f, 0.0f, false, false, -0.58f, 0.89f) - horizontalLineToRelative(2.13f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - curveToRelative(0.0f, -1.25f, 0.52f, -2.08f, 1.14f, -2.7f) - curveToRelative(0.3f, -0.3f, 0.62f, -0.55f, 0.9f, -0.76f) - curveToRelative(0.28f, -0.22f, 0.5f, -0.4f, 0.68f, -0.57f) - curveToRelative(0.27f, -0.27f, 0.37f, -0.72f, 0.25f, -1.13f) - curveToRelative(-0.12f, -0.38f, -0.37f, -0.59f, -0.72f, -0.59f) - reflectiveCurveToRelative(-0.53f, 0.14f, -0.64f, 0.25f) - arcToRelative(0.84f, 0.84f, 0.0f, false, false, -0.15f, 0.23f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.43f, -0.46f) - lineToRelative(0.04f, -0.1f) - lineToRelative(0.08f, -0.17f) - curveToRelative(0.07f, -0.14f, 0.18f, -0.32f, 0.35f, -0.5f) - close() - moveTo(13.25f, 8.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.75f) - horizontalLineToRelative(1.5f) - verticalLineTo(8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(6.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineTo(13.0f) - horizontalLineToRelative(-2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _shiftsDay!! - } - -private var _shiftsDay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShiftsOpen.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShiftsOpen.kt deleted file mode 100644 index c215326b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShiftsOpen.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShiftsOpen: ImageVector - get() { - if (_shiftsOpen != null) { - return _shiftsOpen!! - } - _shiftsOpen = fluentIcon(name = "Filled.ShiftsOpen") { - fluentPath { - moveTo(15.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(2.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(11.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - lineTo(15.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(2.5f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 3.5f, -3.5f) - verticalLineToRelative(-11.0f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 17.5f, 3.0f) - lineTo(15.0f, 3.0f) - close() - moveTo(5.0f, 6.5f) - curveTo(5.0f, 5.67f, 5.67f, 5.0f, 6.5f, 5.0f) - lineTo(9.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(6.5f, 3.0f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 3.0f, 6.5f) - verticalLineToRelative(11.0f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 6.5f, 21.0f) - lineTo(9.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(6.5f, 19.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 5.0f, 17.5f) - verticalLineToRelative(-11.0f) - close() - moveTo(12.5f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - lineTo(16.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - horizontalLineToRelative(-3.5f) - lineTo(12.5f, 7.0f) - close() - } - } - return _shiftsOpen!! - } - -private var _shiftsOpen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShiftsProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShiftsProhibited.kt deleted file mode 100644 index 9be466fd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShiftsProhibited.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShiftsProhibited: ImageVector - get() { - if (_shiftsProhibited != null) { - return _shiftsProhibited!! - } - _shiftsProhibited = fluentIcon(name = "Filled.ShiftsProhibited") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(5.77f) - arcToRelative(6.47f, 6.47f, 0.0f, false, true, 8.0f, 0.8f) - arcToRelative(0.8f, 0.8f, 0.0f, false, true, 0.0f, -0.07f) - verticalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(12.5f, 12.0f) - horizontalLineToRelative(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.5f) - lineToRelative(-0.14f, -0.01f) - arcToRelative(6.47f, 6.47f, 0.0f, false, true, 0.37f, 7.51f) - horizontalLineToRelative(5.77f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(2.5f, 17.5f) - curveToRelative(0.0f, 0.83f, 0.25f, 1.6f, 0.7f, 2.25f) - lineToRelative(5.55f, -5.56f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) - close() - moveTo(6.5f, 21.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) - lineToRelative(-5.55f, 5.56f) - curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) - close() - } - } - return _shiftsProhibited!! - } - -private var _shiftsProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShiftsQuestionMark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShiftsQuestionMark.kt deleted file mode 100644 index 144460ad..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShiftsQuestionMark.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShiftsQuestionMark: ImageVector - get() { - if (_shiftsQuestionMark != null) { - return _shiftsQuestionMark!! - } - _shiftsQuestionMark = fluentIcon(name = "Filled.ShiftsQuestionMark") { - fluentPath { - moveTo(6.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(6.5f, 19.88f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, 1.25f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, -1.25f) - close() - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-5.77f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, -0.37f, -7.51f) - horizontalLineToRelative(0.07f) - lineToRelative(0.07f, 0.01f) - horizontalLineToRelative(4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(12.5f, 12.0f) - lineTo(12.5f, 6.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - lineTo(11.0f, 12.8f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, -8.0f, -0.79f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(6.5f, 14.0f) - curveToRelative(-1.05f, 0.0f, -1.86f, 0.82f, -1.85f, 1.96f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, -0.01f) - curveToRelative(0.0f, -0.58f, 0.36f, -0.95f, 0.85f, -0.95f) - curveToRelative(0.47f, 0.0f, 0.85f, 0.4f, 0.85f, 0.95f) - curveToRelative(0.0f, 0.23f, -0.07f, 0.4f, -0.31f, 0.68f) - lineToRelative(-0.1f, 0.11f) - lineToRelative(-0.27f, 0.3f) - curveToRelative(-0.48f, 0.53f, -0.67f, 0.89f, -0.67f, 1.46f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - curveToRelative(0.0f, -0.23f, 0.08f, -0.4f, 0.32f, -0.7f) - lineToRelative(0.1f, -0.1f) - lineToRelative(0.27f, -0.3f) - curveToRelative(0.48f, -0.53f, 0.66f, -0.88f, 0.66f, -1.45f) - curveToRelative(0.0f, -1.1f, -0.82f, -1.95f, -1.85f, -1.95f) - close() - } - } - return _shiftsQuestionMark!! - } - -private var _shiftsQuestionMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShiftsTeam.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShiftsTeam.kt deleted file mode 100644 index fddabbc7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShiftsTeam.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShiftsTeam: ImageVector - get() { - if (_shiftsTeam != null) { - return _shiftsTeam!! - } - _shiftsTeam = fluentIcon(name = "Filled.ShiftsTeam") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-5.0f) - curveToRelative(0.18f, -0.38f, 0.25f, -0.79f, 0.25f, -1.19f) - curveToRelative(0.0f, -0.92f, -0.53f, -1.73f, -1.32f, -2.1f) - arcTo(2.74f, 2.74f, 0.0f, false, false, 9.75f, 13.0f) - curveToRelative(-0.74f, 0.0f, -1.4f, 0.3f, -1.9f, 0.76f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 12.01f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(11.75f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(12.5f, 12.0f) - lineTo(12.5f, 6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(4.75f, 17.0f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, -4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) - close() - moveTo(4.75f, 23.0f) - curveToRelative(2.68f, 0.0f, 3.75f, -1.57f, 3.75f, -3.13f) - curveToRelative(0.0f, -1.03f, -0.72f, -1.87f, -1.6f, -1.87f) - lineTo(2.6f, 18.0f) - curveToRelative(-0.88f, 0.0f, -1.6f, 0.84f, -1.6f, 1.88f) - curveTo(1.0f, 21.43f, 2.07f, 23.0f, 4.75f, 23.0f) - close() - moveTo(11.5f, 15.75f) - arcToRelative(1.75f, 1.75f, 0.0f, true, true, -3.5f, 0.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 3.5f, 0.0f) - close() - moveTo(8.92f, 22.0f) - curveToRelative(0.4f, -0.66f, 0.58f, -1.4f, 0.58f, -2.13f) - curveToRelative(0.0f, -0.47f, -0.11f, -0.95f, -0.32f, -1.37f) - horizontalLineToRelative(1.54f) - curveToRelative(0.7f, 0.0f, 1.28f, 0.59f, 1.28f, 1.31f) - curveToRelative(0.0f, 1.1f, -0.85f, 2.19f, -3.0f, 2.19f) - horizontalLineToRelative(-0.08f) - close() - } - } - return _shiftsTeam!! - } - -private var _shiftsTeam: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShoppingBag.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShoppingBag.kt deleted file mode 100644 index ade0fcc5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShoppingBag.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShoppingBag: ImageVector - get() { - if (_shoppingBag != null) { - return _shoppingBag!! - } - _shoppingBag = fluentIcon(name = "Filled.ShoppingBag") { - fluentPath { - moveTo(7.0f, 7.0f) - lineTo(7.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 5.0f, -2.24f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 17.0f, 5.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(1.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - lineTo(20.0f, 18.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -1.82f, 3.36f) - lineToRelative(-0.55f, -0.1f) - arcToRelative(4.17f, 4.17f, 0.0f, false, true, -2.17f, -1.17f) - curveToRelative(-0.6f, -0.61f, -0.96f, -1.35f, -0.96f, -2.09f) - lineTo(14.5f, 7.0f) - horizontalLineToRelative(1.0f) - lineTo(15.5f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.66f, -0.96f) - curveToRelative(0.1f, 0.3f, 0.16f, 0.63f, 0.16f, 0.96f) - verticalLineToRelative(13.0f) - curveToRelative(0.0f, 1.23f, 0.58f, 2.33f, 1.39f, 3.14f) - curveToRelative(0.32f, 0.33f, 0.68f, 0.62f, 1.08f, 0.86f) - lineTo(8.0f, 22.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f) - lineTo(4.0f, 8.5f) - curveTo(4.0f, 7.67f, 4.67f, 7.0f, 5.5f, 7.0f) - lineTo(7.0f, 7.0f) - close() - moveTo(8.5f, 5.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(3.0f) - lineTo(11.5f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) - close() - } - } - return _shoppingBag!! - } - -private var _shoppingBag: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShoppingBagArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShoppingBagArrowLeft.kt deleted file mode 100644 index bfa62b86..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShoppingBagArrowLeft.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShoppingBagArrowLeft: ImageVector - get() { - if (_shoppingBagArrowLeft != null) { - return _shoppingBagArrowLeft!! - } - _shoppingBagArrowLeft = fluentIcon(name = "Filled.ShoppingBagArrowLeft") { - fluentPath { - moveTo(7.0f, 7.0f) - lineTo(7.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 5.0f, -2.24f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 17.0f, 5.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(1.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(3.0f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, -5.5f, 0.23f) - lineTo(14.5f, 7.0f) - horizontalLineToRelative(1.0f) - lineTo(15.5f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.66f, -0.96f) - curveToRelative(0.1f, 0.3f, 0.16f, 0.63f, 0.16f, 0.96f) - verticalLineToRelative(7.81f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, -0.19f, 9.19f) - lineTo(8.0f, 22.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f) - lineTo(4.0f, 8.5f) - curveTo(4.0f, 7.67f, 4.67f, 7.0f, 5.5f, 7.0f) - lineTo(7.0f, 7.0f) - close() - moveTo(11.5f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(3.0f) - lineTo(11.5f, 5.0f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(16.72f, 14.59f) - lineTo(16.65f, 14.65f) - lineTo(14.13f, 17.16f) - lineTo(14.09f, 17.21f) - lineTo(14.05f, 17.29f) - lineTo(14.03f, 17.35f) - lineTo(14.01f, 17.43f) - verticalLineToRelative(0.11f) - lineToRelative(0.01f, 0.09f) - lineToRelative(0.03f, 0.08f) - lineToRelative(0.03f, 0.06f) - lineToRelative(0.05f, 0.07f) - lineToRelative(2.52f, 2.51f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.76f, -0.63f) - lineToRelative(-0.05f, -0.07f) - lineTo(15.7f, 18.0f) - horizontalLineToRelative(4.79f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.41f) - verticalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.5f) - horizontalLineToRelative(-4.88f) - lineToRelative(1.65f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.05f, -0.63f) - lineToRelative(-0.05f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.64f, -0.06f) - close() - } - } - return _shoppingBagArrowLeft!! - } - -private var _shoppingBagArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShoppingBagDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShoppingBagDismiss.kt deleted file mode 100644 index c895a107..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShoppingBagDismiss.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShoppingBagDismiss: ImageVector - get() { - if (_shoppingBagDismiss != null) { - return _shoppingBagDismiss!! - } - _shoppingBagDismiss = fluentIcon(name = "Filled.ShoppingBagDismiss") { - fluentPath { - moveTo(7.0f, 7.0f) - lineTo(7.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 5.0f, -2.24f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 17.0f, 5.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(1.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(3.0f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, -5.5f, 0.23f) - lineTo(14.5f, 7.0f) - horizontalLineToRelative(1.0f) - lineTo(15.5f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.66f, -0.96f) - curveToRelative(0.1f, 0.3f, 0.16f, 0.63f, 0.16f, 0.96f) - verticalLineToRelative(7.81f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, -0.19f, 9.19f) - lineTo(8.0f, 22.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f) - lineTo(4.0f, 8.5f) - curveTo(4.0f, 7.67f, 4.67f, 7.0f, 5.5f, 7.0f) - lineTo(7.0f, 7.0f) - close() - moveTo(8.5f, 5.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(3.0f) - lineTo(11.5f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-1.64f, -1.65f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.65f, 1.64f) - lineToRelative(-1.65f, -1.64f) - close() - } - } - return _shoppingBagDismiss!! - } - -private var _shoppingBagDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShoppingBagPause.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShoppingBagPause.kt deleted file mode 100644 index 46ed71f1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShoppingBagPause.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShoppingBagPause: ImageVector - get() { - if (_shoppingBagPause != null) { - return _shoppingBagPause!! - } - _shoppingBagPause = fluentIcon(name = "Filled.ShoppingBagPause") { - fluentPath { - moveTo(7.0f, 7.0f) - lineTo(7.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 5.0f, -2.24f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 17.0f, 5.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(1.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(3.0f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, -5.5f, 0.23f) - lineTo(14.5f, 7.0f) - horizontalLineToRelative(1.0f) - lineTo(15.5f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.66f, -0.96f) - curveToRelative(0.1f, 0.3f, 0.16f, 0.63f, 0.16f, 0.96f) - verticalLineToRelative(7.81f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, -0.19f, 9.19f) - lineTo(8.0f, 22.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f) - lineTo(4.0f, 8.5f) - curveTo(4.0f, 7.67f, 4.67f, 7.0f, 5.5f, 7.0f) - lineTo(7.0f, 7.0f) - close() - moveTo(8.5f, 5.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(3.0f) - lineTo(11.5f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.5f, 14.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(19.5f, 14.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - } - } - return _shoppingBagPause!! - } - -private var _shoppingBagPause: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShoppingBagPercent.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShoppingBagPercent.kt deleted file mode 100644 index e9f60a34..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShoppingBagPercent.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShoppingBagPercent: ImageVector - get() { - if (_shoppingBagPercent != null) { - return _shoppingBagPercent!! - } - _shoppingBagPercent = fluentIcon(name = "Filled.ShoppingBagPercent") { - fluentPath { - moveTo(7.0f, 5.0f) - verticalLineToRelative(2.0f) - lineTo(5.5f, 7.0f) - curveTo(4.67f, 7.0f, 4.0f, 7.67f, 4.0f, 8.5f) - lineTo(4.0f, 18.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, 4.0f) - horizontalLineToRelative(4.17f) - curveToRelative(-0.31f, -0.65f, -0.2f, -1.45f, 0.34f, -1.99f) - lineToRelative(0.71f, -0.7f) - arcTo(4.0f, 4.0f, 0.0f, false, true, 13.0f, 18.0f) - verticalLineToRelative(-0.34f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 0.0f, -6.32f) - lineTo(13.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -0.16f, -0.96f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 15.5f, 5.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(4.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 3.5f, 3.5f) - verticalLineToRelative(0.03f) - lineToRelative(2.0f, -2.0f) - lineTo(20.0f, 8.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(17.0f, 7.0f) - lineTo(17.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -5.0f, -2.24f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 7.0f, 5.0f) - close() - moveTo(8.5f, 7.0f) - lineTo(8.5f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-3.0f) - close() - moveTo(14.5f, 17.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) - close() - moveTo(14.5f, 13.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(20.5f, 23.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) - close() - moveTo(20.5f, 19.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(21.78f, 14.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-7.5f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(7.5f, -7.5f) - close() - } - } - return _shoppingBagPercent!! - } - -private var _shoppingBagPercent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShoppingBagPlay.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShoppingBagPlay.kt deleted file mode 100644 index 32f3ab4b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShoppingBagPlay.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShoppingBagPlay: ImageVector - get() { - if (_shoppingBagPlay != null) { - return _shoppingBagPlay!! - } - _shoppingBagPlay = fluentIcon(name = "Filled.ShoppingBagPlay") { - fluentPath { - moveTo(7.0f, 5.0f) - verticalLineToRelative(2.0f) - lineTo(5.5f, 7.0f) - curveTo(4.67f, 7.0f, 4.0f, 7.67f, 4.0f, 8.5f) - lineTo(4.0f, 18.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, 4.0f) - horizontalLineToRelative(4.81f) - arcToRelative(6.48f, 6.48f, 0.0f, false, true, 0.19f, -9.19f) - lineTo(13.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -0.16f, -0.96f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 15.5f, 5.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(4.73f) - arcToRelative(6.47f, 6.47f, 0.0f, false, true, 5.5f, -0.23f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(17.0f, 7.0f) - lineTo(17.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -5.0f, -2.24f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 7.0f, 5.0f) - close() - moveTo(10.0f, 3.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-3.0f) - lineTo(8.5f, 5.0f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(16.91f, 15.1f) - arcToRelative(0.55f, 0.55f, 0.0f, false, false, -0.54f, -0.05f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.2f, 0.13f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, -0.18f, 0.44f) - verticalLineToRelative(3.76f) - arcToRelative(0.61f, 0.61f, 0.0f, false, false, 0.19f, 0.44f) - curveToRelative(0.05f, 0.05f, 0.12f, 0.1f, 0.19f, 0.13f) - arcToRelative(0.55f, 0.55f, 0.0f, false, false, 0.44f, 0.0f) - arcToRelative(0.66f, 0.66f, 0.0f, false, false, 0.11f, -0.05f) - lineToRelative(2.8f, -1.92f) - arcToRelative(0.56f, 0.56f, 0.0f, false, false, 0.2f, -0.22f) - arcToRelative(0.65f, 0.65f, 0.0f, false, false, 0.0f, -0.6f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.2f, -0.22f) - lineToRelative(-2.8f, -1.84f) - close() - } - } - return _shoppingBagPlay!! - } - -private var _shoppingBagPlay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShoppingBagTag.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShoppingBagTag.kt deleted file mode 100644 index 59ffc28a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ShoppingBagTag.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ShoppingBagTag: ImageVector - get() { - if (_shoppingBagTag != null) { - return _shoppingBagTag!! - } - _shoppingBagTag = fluentIcon(name = "Filled.ShoppingBagTag") { - fluentPath { - moveTo(7.0f, 7.0f) - lineTo(7.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 5.0f, -2.24f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 17.0f, 5.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(1.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(4.32f) - lineToRelative(-0.97f, -0.96f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -2.11f, -0.86f) - lineTo(14.5f, 11.0f) - lineTo(14.5f, 7.0f) - horizontalLineToRelative(1.0f) - lineTo(15.5f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.66f, -0.96f) - curveToRelative(0.1f, 0.3f, 0.16f, 0.63f, 0.16f, 0.96f) - verticalLineToRelative(6.17f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 11.0f, 14.0f) - verticalLineToRelative(2.93f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.86f, 2.1f) - lineTo(14.77f, 22.0f) - lineTo(8.0f, 22.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f) - lineTo(4.0f, 8.5f) - curveTo(4.0f, 7.67f, 4.67f, 7.0f, 5.5f, 7.0f) - lineTo(7.0f, 7.0f) - close() - moveTo(8.5f, 5.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(3.0f) - lineTo(11.5f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) - close() - moveTo(12.57f, 18.33f) - lineTo(16.57f, 22.4f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.86f, 0.02f) - lineToRelative(2.99f, -3.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.01f, -2.83f) - lineToRelative(-4.08f, -4.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.41f, -0.58f) - lineTo(14.0f, 12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(2.93f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.57f, 1.4f) - close() - moveTo(16.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - } - } - return _shoppingBagTag!! - } - -private var _shoppingBagTag: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Shortpick.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Shortpick.kt deleted file mode 100644 index 1b00f06c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Shortpick.kt +++ /dev/null @@ -1,122 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Shortpick: ImageVector - get() { - if (_shortpick != null) { - return _shortpick!! - } - _shortpick = fluentIcon(name = "Filled.Shortpick") { - fluentPath { - moveTo(8.96f, 3.5f) - lineTo(8.5f, 3.5f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(0.46f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.71f) - curveTo(7.56f, 7.0f, 7.0f, 6.44f, 7.0f, 5.75f) - verticalLineToRelative(-2.5f) - curveTo(7.0f, 2.56f, 7.56f, 2.0f, 8.25f, 2.0f) - horizontalLineToRelative(0.71f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(11.5f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.0f) - close() - moveTo(15.04f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.46f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-0.46f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.71f) - curveTo(16.44f, 7.0f, 17.0f, 6.44f, 17.0f, 5.75f) - verticalLineToRelative(-2.5f) - curveTo(17.0f, 2.56f, 16.44f, 2.0f, 15.75f, 2.0f) - horizontalLineToRelative(-0.71f) - close() - moveTo(11.5f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.0f) - close() - moveTo(4.75f, 8.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(10.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(9.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(10.0f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-9.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 4.0f, 18.75f) - verticalLineToRelative(-10.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(8.25f, 14.0f) - curveTo(7.56f, 14.0f, 7.0f, 14.56f, 7.0f, 15.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(7.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-7.5f) - close() - moveTo(8.5f, 9.5f) - horizontalLineToRelative(0.46f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.71f) - curveTo(7.56f, 8.0f, 7.0f, 8.56f, 7.0f, 9.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(0.71f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(8.5f, 11.5f) - verticalLineToRelative(-2.0f) - close() - moveTo(10.75f, 8.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(14.29f, 8.75f) - curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(0.71f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineToRelative(-0.71f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.46f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(-0.46f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(10.75f, 12.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _shortpick!! - } - -private var _shortpick: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Showerhead.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Showerhead.kt deleted file mode 100644 index 16c598a2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Showerhead.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Showerhead: ImageVector - get() { - if (_showerhead != null) { - return _showerhead!! - } - _showerhead = fluentIcon(name = "Filled.Showerhead") { - fluentPath { - moveTo(21.49f, 4.98f) - lineTo(19.48f, 7.0f) - arcToRelative(9.05f, 9.05f, 0.0f, false, false, -2.47f, -2.47f) - lineToRelative(2.01f, -2.0f) - arcToRelative(1.75f, 1.75f, 0.0f, true, true, 2.47f, 2.46f) - close() - moveTo(5.28f, 13.72f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(2.0f, -2.0f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(7.78f, 17.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(2.0f, -2.0f) - close() - moveTo(10.28f, 19.78f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(2.0f, -2.0f) - close() - moveTo(3.74f, 7.26f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 2.47f, 0.0f) - lineToRelative(10.56f, 10.56f) - arcToRelative(1.75f, 1.75f, 0.0f, true, true, -2.47f, 2.48f) - lineTo(3.74f, 9.74f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.0f, -2.48f) - close() - moveTo(6.92f, 6.56f) - arcToRelative(2.76f, 2.76f, 0.0f, false, false, -0.43f, -0.36f) - arcTo(8.0f, 8.0f, 0.0f, false, true, 17.8f, 17.5f) - curveToRelative(-0.1f, -0.13f, -0.2f, -0.26f, -0.32f, -0.39f) - lineTo(6.92f, 6.56f) - close() - } - } - return _showerhead!! - } - -private var _showerhead: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SignOut.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SignOut.kt deleted file mode 100644 index 99c46d51..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SignOut.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SignOut: ImageVector - get() { - if (_signOut != null) { - return _signOut!! - } - _signOut = fluentIcon(name = "Filled.SignOut") { - fluentPath { - moveTo(12.0f, 4.35f) - lineTo(12.0f, 11.0f) - horizontalLineToRelative(7.44f) - lineToRelative(-1.72f, -1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - lineToRelative(3.0f, 3.0f) - curveToRelative(0.26f, 0.26f, 0.29f, 0.68f, 0.07f, 0.97f) - lineToRelative(-0.07f, 0.09f) - lineToRelative(-3.0f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.97f) - lineToRelative(0.07f, -0.09f) - lineToRelative(1.71f, -1.72f) - lineTo(12.0f, 12.5f) - verticalLineToRelative(6.75f) - curveToRelative(0.0f, 0.47f, -0.42f, 0.82f, -0.88f, 0.74f) - lineToRelative(-8.5f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.62f, -0.74f) - verticalLineToRelative(-12.0f) - curveToRelative(0.0f, -0.37f, 0.27f, -0.68f, 0.63f, -0.74f) - lineToRelative(8.5f, -1.4f) - curveToRelative(0.46f, -0.07f, 0.87f, 0.28f, 0.87f, 0.74f) - close() - moveTo(8.5f, 11.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(13.0f, 18.5f) - horizontalLineToRelative(0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - lineToRelative(-0.01f, -4.25f) - lineTo(13.0f, 13.5f) - verticalLineToRelative(5.0f) - close() - moveTo(13.0f, 10.0f) - lineTo(13.0f, 5.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.37f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) - verticalLineToRelative(0.1f) - lineTo(14.5f, 10.0f) - lineTo(13.0f, 10.0f) - close() - } - } - return _signOut!! - } - -private var _signOut: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Signature.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Signature.kt deleted file mode 100644 index 352c91e5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Signature.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Signature: ImageVector - get() { - if (_signature != null) { - return _signature!! - } - _signature = fluentIcon(name = "Filled.Signature") { - fluentPath { - moveTo(14.75f, 16.5f) - curveToRelative(1.3f, 0.0f, 1.82f, 0.58f, 2.2f, 1.87f) - lineToRelative(0.07f, 0.24f) - curveToRelative(0.19f, 0.66f, 0.3f, 0.86f, 0.52f, 0.95f) - curveToRelative(0.26f, 0.1f, 0.43f, 0.09f, 0.7f, -0.05f) - lineToRelative(0.15f, -0.08f) - lineToRelative(0.17f, -0.11f) - lineToRelative(0.67f, -0.46f) - curveToRelative(0.61f, -0.4f, 1.17f, -0.67f, 1.84f, -0.84f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.36f, 1.46f) - curveToRelative(-0.4f, 0.1f, -0.76f, 0.25f, -1.14f, 0.49f) - lineToRelative(-0.3f, 0.19f) - lineToRelative(-0.48f, 0.33f) - curveToRelative(-0.23f, 0.15f, -0.4f, 0.26f, -0.58f, 0.35f) - arcToRelative(2.2f, 2.2f, 0.0f, false, true, -1.96f, 0.1f) - curveToRelative(-0.75f, -0.3f, -1.05f, -0.78f, -1.33f, -1.72f) - lineToRelative(-0.16f, -0.54f) - curveToRelative(-0.18f, -0.59f, -0.3f, -0.68f, -0.73f, -0.68f) - curveToRelative(-0.3f, 0.0f, -0.63f, 0.16f, -1.07f, 0.52f) - lineToRelative(-0.18f, 0.16f) - lineToRelative(-0.92f, 0.88f) - curveToRelative(-1.41f, 1.32f, -2.61f, 1.97f, -4.33f, 1.97f) - curveToRelative(-1.69f, 0.0f, -3.15f, -0.26f, -4.37f, -0.77f) - lineToRelative(2.95f, -0.8f) - curveToRelative(0.45f, 0.04f, 0.92f, 0.07f, 1.42f, 0.07f) - curveToRelative(1.18f, 0.0f, 2.03f, -0.42f, 3.09f, -1.37f) - lineToRelative(0.25f, -0.24f) - lineToRelative(0.54f, -0.5f) - arcToRelative(12.0f, 12.0f, 0.0f, false, true, 0.59f, -0.55f) - curveToRelative(0.68f, -0.57f, 1.3f, -0.87f, 2.03f, -0.87f) - close() - moveTo(19.03f, 2.97f) - arcToRelative(3.58f, 3.58f, 0.0f, false, true, 0.0f, 5.06f) - lineToRelative(-0.29f, 0.29f) - curveToRelative(1.15f, 1.4f, 1.11f, 2.89f, 0.04f, 3.96f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(2.0f, -2.0f) - curveToRelative(0.48f, -0.49f, 0.54f, -1.09f, -0.04f, -1.84f) - lineTo(9.06f, 18.0f) - curveToRelative(-0.27f, 0.28f, -0.62f, 0.48f, -1.0f, 0.58f) - lineToRelative(-5.11f, 1.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.92f, -0.93f) - lineToRelative(1.4f, -5.11f) - curveToRelative(0.1f, -0.38f, 0.3f, -0.72f, 0.57f, -1.0f) - lineToRelative(9.97f, -9.97f) - arcToRelative(3.58f, 3.58f, 0.0f, false, true, 5.06f, 0.0f) - close() - } - } - return _signature!! - } - -private var _signature: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Sim.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Sim.kt deleted file mode 100644 index 5926f05f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Sim.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Sim: ImageVector - get() { - if (_sim != null) { - return _sim!! - } - _sim = fluentIcon(name = "Filled.Sim") { - fluentPath { - moveTo(4.0f, 5.25f) - curveTo(4.0f, 3.45f, 5.46f, 2.0f, 7.25f, 2.0f) - horizontalLineToRelative(5.46f) - curveToRelative(0.87f, 0.0f, 1.7f, 0.34f, 2.3f, 0.95f) - lineTo(19.05f, 7.0f) - curveToRelative(0.6f, 0.6f, 0.95f, 1.43f, 0.95f, 2.3f) - verticalLineToRelative(9.46f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-9.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 4.0f, 18.75f) - lineTo(4.0f, 5.25f) - close() - moveTo(7.75f, 14.0f) - lineTo(12.0f, 14.0f) - verticalLineToRelative(-3.25f) - lineTo(9.25f, 10.75f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - lineTo(7.75f, 14.0f) - close() - moveTo(7.75f, 15.5f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - lineTo(12.0f, 18.25f) - lineTo(12.0f, 15.5f) - lineTo(7.75f, 15.5f) - close() - moveTo(13.5f, 18.25f) - horizontalLineToRelative(1.25f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(13.5f, 10.75f) - verticalLineToRelative(7.5f) - close() - } - } - return _sim!! - } - -private var _sim: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SkipBack10.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SkipBack10.kt deleted file mode 100644 index 3eab7971..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SkipBack10.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SkipBack10: ImageVector - get() { - if (_skipBack10 != null) { - return _skipBack10!! - } - _skipBack10 = fluentIcon(name = "Filled.SkipBack10") { - fluentPath { - moveTo(3.0f, 2.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - lineTo(2.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(5.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - lineTo(4.86f, 8.0f) - arcToRelative(7.87f, 7.87f, 0.0f, false, true, 3.69f, -2.57f) - arcToRelative(9.44f, 9.44f, 0.0f, false, true, 10.82f, 4.05f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.76f, -0.96f) - arcToRelative(11.44f, 11.44f, 0.0f, false, false, -13.17f, -5.0f) - arcTo(9.52f, 9.52f, 0.0f, false, false, 4.0f, 5.98f) - lineTo(4.0f, 3.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - moveTo(9.75f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.76f, -0.65f) - lineToRelative(-0.22f, 0.27f) - arcToRelative(8.02f, 8.02f, 0.0f, false, true, -2.28f, 2.02f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.02f, 1.72f) - curveToRelative(0.49f, -0.3f, 0.9f, -0.58f, 1.24f, -0.87f) - lineTo(7.75f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - verticalLineToRelative(-8.0f) - close() - moveTo(16.25f, 11.0f) - curveToRelative(-1.39f, 0.0f, -2.4f, 0.64f, -3.0f, 1.66f) - arcTo(6.61f, 6.61f, 0.0f, false, false, 12.5f, 16.0f) - curveToRelative(0.0f, 1.18f, 0.18f, 2.39f, 0.74f, 3.34f) - arcTo(3.33f, 3.33f, 0.0f, false, false, 16.25f, 21.0f) - curveToRelative(1.39f, 0.0f, 2.4f, -0.64f, 3.0f, -1.66f) - curveToRelative(0.57f, -0.95f, 0.75f, -2.16f, 0.75f, -3.34f) - curveToRelative(0.0f, -1.18f, -0.18f, -2.39f, -0.74f, -3.34f) - arcTo(3.33f, 3.33f, 0.0f, false, false, 16.25f, 11.0f) - close() - moveTo(14.5f, 16.0f) - curveToRelative(0.0f, -1.03f, 0.17f, -1.82f, 0.46f, -2.32f) - curveToRelative(0.25f, -0.42f, 0.61f, -0.68f, 1.29f, -0.68f) - reflectiveCurveToRelative(1.04f, 0.26f, 1.29f, 0.68f) - curveToRelative(0.3f, 0.5f, 0.46f, 1.29f, 0.46f, 2.32f) - arcToRelative(4.7f, 4.7f, 0.0f, false, true, -0.46f, 2.32f) - curveToRelative(-0.25f, 0.42f, -0.61f, 0.68f, -1.29f, 0.68f) - reflectiveCurveToRelative(-1.04f, -0.26f, -1.29f, -0.68f) - arcTo(4.7f, 4.7f, 0.0f, false, true, 14.5f, 16.0f) - close() - } - } - return _skipBack10!! - } - -private var _skipBack10: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SkipForward10.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SkipForward10.kt deleted file mode 100644 index 496e82e1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SkipForward10.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SkipForward10: ImageVector - get() { - if (_skipForward10 != null) { - return _skipForward10!! - } - _skipForward10 = fluentIcon(name = "Filled.SkipForward10") { - fluentPath { - moveTo(21.0f, 2.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - lineTo(22.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-5.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - horizontalLineToRelative(3.39f) - arcToRelative(7.87f, 7.87f, 0.0f, false, false, -3.69f, -2.57f) - arcTo(9.44f, 9.44f, 0.0f, false, false, 4.63f, 9.48f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.76f, -0.96f) - arcToRelative(11.44f, 11.44f, 0.0f, false, true, 13.17f, -5.0f) - arcTo(9.52f, 9.52f, 0.0f, false, true, 20.0f, 5.98f) - lineTo(20.0f, 3.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(9.1f, 11.06f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.65f, 0.94f) - verticalLineToRelative(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - verticalLineToRelative(-5.5f) - curveToRelative(-0.35f, 0.28f, -0.75f, 0.57f, -1.24f, 0.86f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.02f, -1.72f) - arcToRelative(8.02f, 8.02f, 0.0f, false, false, 2.28f, -2.02f) - lineToRelative(0.22f, -0.27f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.1f, -0.29f) - close() - moveTo(13.24f, 12.66f) - arcTo(3.33f, 3.33f, 0.0f, false, true, 16.25f, 11.0f) - curveToRelative(1.39f, 0.0f, 2.4f, 0.64f, 3.0f, 1.66f) - curveToRelative(0.57f, 0.95f, 0.75f, 2.16f, 0.75f, 3.34f) - curveToRelative(0.0f, 1.18f, -0.18f, 2.39f, -0.74f, 3.34f) - arcTo(3.33f, 3.33f, 0.0f, false, true, 16.25f, 21.0f) - curveToRelative(-1.39f, 0.0f, -2.4f, -0.64f, -3.0f, -1.66f) - arcTo(6.61f, 6.61f, 0.0f, false, true, 12.5f, 16.0f) - curveToRelative(0.0f, -1.18f, 0.18f, -2.39f, 0.74f, -3.34f) - close() - moveTo(14.96f, 13.68f) - arcTo(4.7f, 4.7f, 0.0f, false, false, 14.5f, 16.0f) - curveToRelative(0.0f, 1.03f, 0.17f, 1.82f, 0.46f, 2.32f) - curveToRelative(0.25f, 0.42f, 0.61f, 0.68f, 1.29f, 0.68f) - reflectiveCurveToRelative(1.04f, -0.26f, 1.29f, -0.68f) - curveToRelative(0.3f, -0.5f, 0.46f, -1.29f, 0.46f, -2.32f) - arcToRelative(4.7f, 4.7f, 0.0f, false, false, -0.46f, -2.32f) - curveToRelative(-0.25f, -0.42f, -0.61f, -0.68f, -1.29f, -0.68f) - reflectiveCurveToRelative(-1.04f, 0.26f, -1.29f, 0.68f) - close() - } - } - return _skipForward10!! - } - -private var _skipForward10: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SkipForward30.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SkipForward30.kt deleted file mode 100644 index 77a4cd76..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SkipForward30.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SkipForward30: ImageVector - get() { - if (_skipForward30 != null) { - return _skipForward30!! - } - _skipForward30 = fluentIcon(name = "Filled.SkipForward30") { - fluentPath { - moveTo(21.0f, 2.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - lineTo(22.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-5.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(3.39f) - arcToRelative(7.87f, 7.87f, 0.0f, false, false, -3.69f, -2.57f) - arcTo(9.44f, 9.44f, 0.0f, false, false, 4.63f, 9.48f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.76f, -0.96f) - arcToRelative(11.44f, 11.44f, 0.0f, false, true, 13.17f, -5.0f) - arcTo(9.52f, 9.52f, 0.0f, false, true, 20.0f, 5.98f) - lineTo(20.0f, 3.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(6.46f, 13.71f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.57f, -0.44f) - arcTo(3.3f, 3.3f, 0.0f, false, true, 8.5f, 13.0f) - curveToRelative(1.6f, 0.0f, 1.92f, 0.77f, 1.93f, 1.04f) - curveToRelative(0.01f, 0.24f, -0.21f, 0.96f, -1.68f, 0.96f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - curveToRelative(1.47f, 0.0f, 1.7f, 0.72f, 1.68f, 0.96f) - curveToRelative(0.0f, 0.27f, -0.32f, 1.04f, -1.93f, 1.04f) - arcToRelative(3.3f, 3.3f, 0.0f, false, true, -1.47f, -0.27f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.57f, -0.44f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, 1.42f) - horizontalLineToRelative(0.01f) - curveToRelative(0.19f, 0.2f, 0.53f, 0.54f, 1.1f, 0.82f) - curveToRelative(0.59f, 0.28f, 1.34f, 0.47f, 2.35f, 0.47f) - curveToRelative(2.24f, 0.0f, 3.87f, -1.23f, 3.93f, -2.96f) - curveToRelative(0.03f, -0.8f, -0.28f, -1.51f, -0.84f, -2.04f) - curveToRelative(0.56f, -0.53f, 0.87f, -1.23f, 0.84f, -2.04f) - curveTo(12.37f, 12.23f, 10.74f, 11.0f, 8.5f, 11.0f) - curveToRelative(-1.0f, 0.0f, -1.76f, 0.2f, -2.34f, 0.47f) - curveToRelative(-0.58f, 0.28f, -0.92f, 0.63f, -1.1f, 0.81f) - lineToRelative(-0.02f, 0.01f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.42f) - close() - moveTo(14.24f, 12.66f) - arcTo(3.33f, 3.33f, 0.0f, false, true, 17.25f, 11.0f) - curveToRelative(1.39f, 0.0f, 2.4f, 0.64f, 3.0f, 1.66f) - curveToRelative(0.57f, 0.95f, 0.75f, 2.16f, 0.75f, 3.34f) - curveToRelative(0.0f, 1.18f, -0.18f, 2.39f, -0.74f, 3.34f) - arcTo(3.33f, 3.33f, 0.0f, false, true, 17.25f, 21.0f) - curveToRelative(-1.39f, 0.0f, -2.4f, -0.64f, -3.0f, -1.66f) - arcTo(6.61f, 6.61f, 0.0f, false, true, 13.5f, 16.0f) - curveToRelative(0.0f, -1.18f, 0.18f, -2.39f, 0.74f, -3.34f) - close() - moveTo(15.96f, 13.68f) - arcTo(4.7f, 4.7f, 0.0f, false, false, 15.5f, 16.0f) - curveToRelative(0.0f, 1.03f, 0.17f, 1.82f, 0.46f, 2.32f) - curveToRelative(0.25f, 0.42f, 0.61f, 0.68f, 1.29f, 0.68f) - reflectiveCurveToRelative(1.04f, -0.26f, 1.29f, -0.68f) - curveToRelative(0.3f, -0.5f, 0.46f, -1.29f, 0.46f, -2.32f) - arcToRelative(4.7f, 4.7f, 0.0f, false, false, -0.46f, -2.32f) - curveToRelative(-0.25f, -0.42f, -0.61f, -0.68f, -1.29f, -0.68f) - reflectiveCurveToRelative(-1.04f, 0.26f, -1.29f, 0.68f) - close() - } - } - return _skipForward30!! - } - -private var _skipForward30: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SkipForwardTab.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SkipForwardTab.kt deleted file mode 100644 index 5829ed42..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SkipForwardTab.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SkipForwardTab: ImageVector - get() { - if (_skipForwardTab != null) { - return _skipForwardTab!! - } - _skipForwardTab = fluentIcon(name = "Filled.SkipForwardTab") { - fluentPath { - moveTo(22.0f, 3.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(2.73f) - arcToRelative(9.52f, 9.52f, 0.0f, false, false, -3.95f, -2.46f) - arcToRelative(11.44f, 11.44f, 0.0f, false, false, -13.18f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.76f, 0.96f) - arcToRelative(9.44f, 9.44f, 0.0f, false, true, 10.83f, -4.05f) - curveToRelative(1.47f, 0.46f, 2.7f, 1.4f, 3.68f, 2.57f) - horizontalLineToRelative(-3.39f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - lineTo(21.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - lineTo(22.0f, 3.25f) - close() - moveTo(6.0f, 15.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(8.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - verticalLineToRelative(4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - lineTo(8.0f, 21.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(8.0f, 15.5f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(7.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - horizontalLineToRelative(-7.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - close() - } - } - return _skipForwardTab!! - } - -private var _skipForwardTab: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlashForward.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlashForward.kt deleted file mode 100644 index 1b5b89a5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlashForward.kt +++ /dev/null @@ -1,29 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SlashForward: ImageVector - get() { - if (_slashForward != null) { - return _slashForward!! - } - _slashForward = fluentIcon(name = "Filled.SlashForward") { - fluentPath { - moveTo(15.32f, 2.05f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.63f, 1.27f) - lineToRelative(-6.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.9f, -0.64f) - lineToRelative(6.0f, -18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.27f, -0.63f) - close() - } - } - return _slashForward!! - } - -private var _slashForward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Sleep.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Sleep.kt deleted file mode 100644 index f1f50e8e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Sleep.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Sleep: ImageVector - get() { - if (_sleep != null) { - return _sleep!! - } - _sleep = fluentIcon(name = "Filled.Sleep") { - fluentPath { - moveTo(13.38f, 3.03f) - arcToRelative(9.0f, 9.0f, 0.0f, true, true, -7.9f, 14.1f) - arcToRelative(0.68f, 0.68f, 0.0f, false, true, 0.32f, -1.02f) - curveToRelative(3.4f, -1.21f, 5.21f, -2.62f, 6.27f, -4.63f) - curveToRelative(1.1f, -2.12f, 1.4f, -4.44f, 0.62f, -7.62f) - arcToRelative(0.68f, 0.68f, 0.0f, false, true, 0.69f, -0.83f) - close() - moveTo(10.99f, 3.65f) - lineTo(11.0f, 3.75f) - lineTo(11.0f, 9.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -1.5f, -1.94f) - verticalLineToRelative(-2.3f) - lineTo(6.0f, 5.83f) - lineTo(6.0f, 10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -1.5f, -1.94f) - lineTo(4.5f, 5.27f) - curveToRelative(0.0f, -0.3f, 0.17f, -0.55f, 0.43f, -0.68f) - lineToRelative(0.1f, -0.03f) - lineToRelative(5.0f, -1.53f) - curveToRelative(0.45f, -0.13f, 0.9f, 0.17f, 0.96f, 0.62f) - close() - } - } - return _sleep!! - } - -private var _sleep: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideAdd.kt deleted file mode 100644 index a12217cf..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideAdd.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SlideAdd: ImageVector - get() { - if (_slideAdd != null) { - return _slideAdd!! - } - _slideAdd = fluentIcon(name = "Filled.SlideAdd") { - fluentPath { - moveTo(4.75f, 4.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 6.75f) - verticalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 20.0f) - horizontalLineToRelative(6.75f) - arcTo(6.5f, 6.5f, 0.0f, false, true, 22.0f, 12.81f) - lineTo(22.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 4.0f) - lineTo(4.75f, 4.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _slideAdd!! - } - -private var _slideAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideArrowRight.kt deleted file mode 100644 index 3302aebb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideArrowRight.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SlideArrowRight: ImageVector - get() { - if (_slideArrowRight != null) { - return _slideArrowRight!! - } - _slideArrowRight = fluentIcon(name = "Filled.SlideArrowRight") { - fluentPath { - moveTo(2.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) - verticalLineToRelative(6.06f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, -6.21f, -1.58f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.54f, -0.23f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(6.6f) - curveToRelative(-0.52f, 0.43f, -0.97f, 0.93f, -1.33f, 1.5f) - lineTo(6.75f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.56f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, 0.19f, 4.5f) - lineTo(4.75f, 20.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) - lineTo(2.0f, 6.75f) - close() - moveTo(6.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(19.29f, 17.0f) - lineTo(14.5f, 17.0f) - close() - } - } - return _slideArrowRight!! - } - -private var _slideArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideEraser.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideEraser.kt deleted file mode 100644 index 82c2817b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideEraser.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SlideEraser: ImageVector - get() { - if (_slideEraser != null) { - return _slideEraser!! - } - _slideEraser = fluentIcon(name = "Filled.SlideEraser") { - fluentPath { - moveTo(4.75f, 4.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 6.75f) - verticalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 20.0f) - horizontalLineToRelative(7.83f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.17f, -3.35f) - lineToRelative(4.91f, -4.92f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 3.54f, 0.0f) - lineToRelative(0.8f, 0.8f) - verticalLineTo(6.76f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 4.0f) - horizontalLineTo(4.75f) - close() - } - fluentPath { - moveTo(20.5f, 12.44f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.13f, 0.0f) - lineToRelative(-3.11f, 3.11f) - lineToRelative(4.2f, 4.2f) - lineToRelative(3.12f, -3.1f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -2.12f) - lineToRelative(-2.09f, -2.09f) - close() - } - fluentPath { - moveToRelative(13.45f, 17.36f) - lineToRelative(1.1f, -1.1f) - lineToRelative(4.21f, 4.2f) - lineToRelative(-1.1f, 1.1f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.12f, 0.0f) - lineToRelative(-2.09f, -2.08f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -2.12f) - close() - } - } - return _slideEraser!! - } - -private var _slideEraser: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideGrid.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideGrid.kt deleted file mode 100644 index afc721f9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideGrid.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SlideGrid: ImageVector - get() { - if (_slideGrid != null) { - return _slideGrid!! - } - _slideGrid = fluentIcon(name = "Filled.SlideGrid") { - fluentPath { - moveTo(6.25f, 12.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(4.0f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-4.0f) - close() - moveTo(13.75f, 12.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(4.0f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-4.0f) - close() - moveTo(6.25f, 7.0f) - curveTo(5.56f, 7.0f, 5.0f, 7.56f, 5.0f, 8.25f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(4.0f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-4.0f) - close() - moveTo(13.75f, 7.0f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(4.0f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-2.0f) - curveTo(19.0f, 7.56f, 18.44f, 7.0f, 17.75f, 7.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(2.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) - verticalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) - lineTo(4.75f, 20.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) - lineTo(2.0f, 6.75f) - close() - moveTo(4.75f, 5.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(14.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - lineTo(20.5f, 6.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(4.75f, 5.5f) - close() - } - } - return _slideGrid!! - } - -private var _slideGrid: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideHide.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideHide.kt deleted file mode 100644 index 183d1e6e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideHide.kt +++ /dev/null @@ -1,118 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SlideHide: ImageVector - get() { - if (_slideHide != null) { - return _slideHide!! - } - _slideHide = fluentIcon(name = "Filled.SlideHide") { - fluentPath { - moveTo(6.75f, 3.0f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 2.0f, 7.75f) - verticalLineToRelative(7.0f) - curveTo(2.0f, 15.99f, 3.0f, 17.0f, 4.25f, 17.0f) - horizontalLineToRelative(0.25f) - lineTo(4.5f, 8.75f) - curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) - lineTo(19.0f, 5.5f) - verticalLineToRelative(-0.25f) - curveTo(19.0f, 4.01f, 18.0f, 3.0f, 16.75f, 3.0f) - horizontalLineToRelative(-10.0f) - close() - moveTo(19.25f, 6.5f) - horizontalLineToRelative(0.5f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-1.1f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(6.25f, 11.5f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-2.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(6.99f, 17.14f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.49f, 0.1f) - verticalLineToRelative(1.16f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.25f, 2.1f) - horizontalLineToRelative(0.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-0.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) - verticalLineToRelative(-1.1f) - close() - moveTo(22.0f, 17.24f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) - verticalLineToRelative(1.01f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.0f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-1.0f) - close() - moveTo(14.75f, 19.0f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(12.25f, 19.0f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(21.99f, 12.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.49f, 0.1f) - verticalLineToRelative(2.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - verticalLineToRelative(-2.6f) - close() - moveTo(9.5f, 7.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-1.0f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.0f) - curveToRelative(0.42f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - close() - moveTo(15.25f, 6.5f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(12.75f, 6.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - } - } - return _slideHide!! - } - -private var _slideHide: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideLayout.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideLayout.kt deleted file mode 100644 index 1379d240..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideLayout.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SlideLayout: ImageVector - get() { - if (_slideLayout != null) { - return _slideLayout!! - } - _slideLayout = fluentIcon(name = "Filled.SlideLayout") { - fluentPath { - moveTo(6.5f, 8.75f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(10.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.75f) - horizontalLineToRelative(-11.0f) - lineTo(6.5f, 8.75f) - close() - moveTo(6.5f, 12.0f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - lineTo(9.0f, 15.5f) - lineTo(9.0f, 12.0f) - lineTo(6.5f, 12.0f) - close() - moveTo(17.25f, 15.5f) - lineTo(10.5f, 15.5f) - lineTo(10.5f, 12.0f) - horizontalLineToRelative(7.0f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - close() - moveTo(2.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) - verticalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) - lineTo(4.75f, 20.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) - lineTo(2.0f, 6.75f) - close() - moveTo(6.75f, 7.0f) - curveTo(5.78f, 7.0f, 5.0f, 7.78f, 5.0f, 8.75f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(10.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-6.5f) - curveTo(19.0f, 7.78f, 18.22f, 7.0f, 17.25f, 7.0f) - lineTo(6.75f, 7.0f) - close() - } - } - return _slideLayout!! - } - -private var _slideLayout: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideLink.kt deleted file mode 100644 index 75c64f79..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideLink.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SlideLink: ImageVector - get() { - if (_slideLink != null) { - return _slideLink!! - } - _slideLink = fluentIcon(name = "Filled.SlideLink") { - fluentPath { - moveTo(2.0f, 6.25f) - curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) - horizontalLineToRelative(15.5f) - curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) - verticalLineToRelative(7.13f) - arcToRelative(4.73f, 4.73f, 0.0f, false, false, -2.75f, -0.88f) - horizontalLineToRelative(-3.5f) - arcToRelative(4.75f, 4.75f, 0.0f, false, false, -3.87f, 7.5f) - lineTo(4.25f, 20.0f) - curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) - lineTo(2.0f, 6.25f) - close() - moveTo(23.0f, 17.25f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.75f, -3.75f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - lineTo(19.25f, 21.0f) - horizontalLineToRelative(0.2f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 17.24f) - close() - moveTo(16.5f, 14.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-0.2f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(20.0f, 17.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - } - } - return _slideLink!! - } - -private var _slideLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideMicrophone.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideMicrophone.kt deleted file mode 100644 index 6e14a475..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideMicrophone.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SlideMicrophone: ImageVector - get() { - if (_slideMicrophone != null) { - return _slideMicrophone!! - } - _slideMicrophone = fluentIcon(name = "Filled.SlideMicrophone") { - fluentPath { - moveTo(2.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) - verticalLineToRelative(7.75f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -7.0f, 0.0f) - verticalLineToRelative(1.59f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.0f, 1.41f) - curveToRelative(0.0f, 0.92f, 0.28f, 1.77f, 0.75f, 2.5f) - horizontalLineToRelative(-9.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) - lineTo(2.0f, 6.75f) - close() - moveTo(6.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - close() - moveTo(6.75f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.5f) - close() - moveTo(6.0f, 14.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(15.0f, 17.5f) - curveToRelative(0.0f, 1.09f, 0.6f, 1.98f, 1.52f, 2.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 1.98f, 0.5f) - curveToRelative(1.93f, 0.0f, 3.5f, -1.25f, 3.5f, -3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - curveToRelative(0.0f, 2.0f, -1.75f, 3.72f, -4.0f, 3.97f) - verticalLineToRelative(1.03f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-1.03f) - arcTo(4.77f, 4.77f, 0.0f, false, true, 15.02f, 20.0f) - arcTo(3.7f, 3.7f, 0.0f, false, true, 14.0f, 17.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - close() - moveTo(16.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - lineTo(21.0f, 17.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) - verticalLineToRelative(-2.5f) - close() - } - } - return _slideMicrophone!! - } - -private var _slideMicrophone: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideMultiple.kt deleted file mode 100644 index bebb4f89..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideMultiple.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SlideMultiple: ImageVector - get() { - if (_slideMultiple != null) { - return _slideMultiple!! - } - _slideMultiple = fluentIcon(name = "Filled.SlideMultiple") { - fluentPath { - moveTo(2.0f, 7.75f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 6.75f, 3.0f) - horizontalLineToRelative(10.0f) - curveTo(17.99f, 3.0f, 19.0f, 4.0f, 19.0f, 5.25f) - verticalLineToRelative(0.25f) - horizontalLineTo(7.75f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 4.5f, 8.75f) - verticalLineTo(17.0f) - horizontalLineToRelative(-0.25f) - curveTo(3.01f, 17.0f, 2.0f, 16.0f, 2.0f, 14.75f) - verticalLineToRelative(-7.0f) - close() - moveTo(7.75f, 6.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(12.0f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-12.0f) - close() - } - } - return _slideMultiple!! - } - -private var _slideMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideMultipleArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideMultipleArrowRight.kt deleted file mode 100644 index 6dbcd8a5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideMultipleArrowRight.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SlideMultipleArrowRight: ImageVector - get() { - if (_slideMultipleArrowRight != null) { - return _slideMultipleArrowRight!! - } - _slideMultipleArrowRight = fluentIcon(name = "Filled.SlideMultipleArrowRight") { - fluentPath { - moveTo(2.0f, 7.75f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 6.75f, 3.0f) - horizontalLineToRelative(10.0f) - curveTo(17.99f, 3.0f, 19.0f, 4.0f, 19.0f, 5.25f) - verticalLineToRelative(0.25f) - lineTo(7.75f, 5.5f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 4.5f, 8.75f) - lineTo(4.5f, 17.0f) - horizontalLineToRelative(-0.25f) - curveTo(3.01f, 17.0f, 2.0f, 16.0f, 2.0f, 14.75f) - verticalLineToRelative(-7.0f) - close() - moveTo(7.75f, 6.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(3.98f) - arcTo(6.5f, 6.5f, 0.0f, false, true, 22.0f, 12.81f) - lineTo(22.0f, 8.75f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-12.0f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(14.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(19.29f, 17.0f) - lineTo(14.5f, 17.0f) - close() - } - } - return _slideMultipleArrowRight!! - } - -private var _slideMultipleArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideMultipleSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideMultipleSearch.kt deleted file mode 100644 index 3e9f5d7e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideMultipleSearch.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SlideMultipleSearch: ImageVector - get() { - if (_slideMultipleSearch != null) { - return _slideMultipleSearch!! - } - _slideMultipleSearch = fluentIcon(name = "Filled.SlideMultipleSearch") { - fluentPath { - moveTo(2.0f, 7.75f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 6.75f, 3.0f) - horizontalLineToRelative(10.0f) - curveTo(17.99f, 3.0f, 19.0f, 4.0f, 19.0f, 5.25f) - verticalLineToRelative(0.25f) - lineTo(7.75f, 5.5f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 4.5f, 8.75f) - verticalLineToRelative(2.34f) - curveToRelative(-0.94f, 0.17f, -1.8f, 0.58f, -2.5f, 1.17f) - lineTo(2.0f, 7.75f) - close() - moveTo(10.43f, 18.95f) - lineTo(11.97f, 20.5f) - horizontalLineToRelative(7.78f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-12.0f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - lineTo(5.5f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 4.93f, 7.95f) - close() - moveTo(5.5f, 21.0f) - curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) - lineToRelative(2.62f, 2.61f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.61f, -2.61f) - arcTo(4.5f, 4.5f, 0.0f, true, false, 5.5f, 21.0f) - close() - moveTo(5.5f, 19.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) - close() - } - } - return _slideMultipleSearch!! - } - -private var _slideMultipleSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideSearch.kt deleted file mode 100644 index 06822e7a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideSearch.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SlideSearch: ImageVector - get() { - if (_slideSearch != null) { - return _slideSearch!! - } - _slideSearch = fluentIcon(name = "Filled.SlideSearch") { - fluentPath { - moveTo(2.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) - verticalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) - horizontalLineToRelative(-6.78f) - lineToRelative(-2.04f, -2.05f) - curveToRelative(0.36f, -0.74f, 0.57f, -1.57f, 0.57f, -2.45f) - horizontalLineToRelative(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.46f) - arcToRelative(5.47f, 5.47f, 0.0f, false, false, -0.68f, -1.5f) - horizontalLineToRelative(7.14f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(8.66f, 11.0f) - arcToRelative(5.48f, 5.48f, 0.0f, false, false, -6.66f, 0.26f) - lineTo(2.0f, 6.75f) - close() - moveTo(6.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.5f) - close() - moveTo(5.5f, 20.0f) - curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) - lineToRelative(2.62f, 2.61f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.61f, -2.61f) - arcTo(4.5f, 4.5f, 0.0f, true, false, 5.5f, 20.0f) - close() - moveTo(5.5f, 18.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) - close() - } - } - return _slideSearch!! - } - -private var _slideSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideSettings.kt deleted file mode 100644 index e71719e1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideSettings.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SlideSettings: ImageVector - get() { - if (_slideSettings != null) { - return _slideSettings!! - } - _slideSettings = fluentIcon(name = "Filled.SlideSettings") { - fluentPath { - moveTo(5.25f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) - horizontalLineToRelative(6.25f) - arcTo(6.5f, 6.5f, 0.0f, false, true, 22.0f, 12.81f) - lineTo(22.0f, 7.25f) - curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) - lineTo(5.25f, 4.0f) - close() - moveTo(14.28f, 13.98f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.59f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) - lineToRelative(0.55f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) - lineToRelative(-0.19f, 0.64f) - curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) - lineToRelative(0.49f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) - lineToRelative(-0.2f, -0.69f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) - lineToRelative(0.59f, -0.14f) - arcToRelative(5.72f, 5.72f, 0.0f, false, false, 0.0f, -1.8f) - lineToRelative(-0.55f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.19f, -0.63f) - curveToRelative(-0.44f, -0.39f, -0.94f, -0.7f, -1.49f, -0.93f) - lineToRelative(-0.49f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) - lineToRelative(0.2f, 0.7f) - close() - moveTo(17.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) - close() - } - } - return _slideSettings!! - } - -private var _slideSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideSize.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideSize.kt deleted file mode 100644 index 1632cb1b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideSize.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SlideSize: ImageVector - get() { - if (_slideSize != null) { - return _slideSize!! - } - _slideSize = fluentIcon(name = "Filled.SlideSize") { - fluentPath { - moveTo(2.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) - verticalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) - lineTo(4.75f, 20.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) - lineTo(2.0f, 6.75f) - close() - moveTo(16.78f, 7.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.53f, -0.22f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.69f) - lineToRelative(-1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(1.72f, -1.72f) - verticalLineToRelative(0.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.2f, -0.08f, -0.39f, -0.22f, -0.53f) - close() - moveTo(7.75f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.69f) - lineToRelative(1.72f, -1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineTo(8.5f, 14.44f) - verticalLineToRelative(-0.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, 0.75f) - close() - } - } - return _slideSize!! - } - -private var _slideSize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideText.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideText.kt deleted file mode 100644 index 0149c24d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideText.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SlideText: ImageVector - get() { - if (_slideText != null) { - return _slideText!! - } - _slideText = fluentIcon(name = "Filled.SlideText") { - fluentPath { - moveTo(2.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) - verticalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) - lineTo(4.75f, 20.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) - lineTo(2.0f, 6.75f) - close() - moveTo(6.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - close() - moveTo(6.75f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-8.5f) - close() - moveTo(6.0f, 14.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - } - } - return _slideText!! - } - -private var _slideText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideTextMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideTextMultiple.kt deleted file mode 100644 index 17d2e96f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideTextMultiple.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SlideTextMultiple: ImageVector - get() { - if (_slideTextMultiple != null) { - return _slideTextMultiple!! - } - _slideTextMultiple = fluentIcon(name = "Filled.SlideTextMultiple") { - fluentPath { - moveTo(17.0f, 4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - lineTo(5.0f, 19.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(2.0f, 7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(6.75f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - close() - moveTo(6.75f, 10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.5f) - close() - moveTo(6.0f, 14.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(21.0f, 7.51f) - curveToRelative(0.9f, 0.58f, 1.5f, 1.59f, 1.5f, 2.74f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) - horizontalLineToRelative(-9.0f) - curveToRelative(-1.15f, 0.0f, -2.16f, -0.6f, -2.74f, -1.5f) - horizontalLineToRelative(11.74f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 21.0f, 16.25f) - lineTo(21.0f, 7.51f) - close() - } - } - return _slideTextMultiple!! - } - -private var _slideTextMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideTextPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideTextPerson.kt deleted file mode 100644 index 870362f9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideTextPerson.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SlideTextPerson: ImageVector - get() { - if (_slideTextPerson != null) { - return _slideTextPerson!! - } - _slideTextPerson = fluentIcon(name = "Filled.SlideTextPerson") { - fluentPath { - moveTo(4.75f, 4.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 6.75f) - verticalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 20.0f) - lineTo(13.0f, 20.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, -0.13f) - verticalLineToRelative(-0.1f) - arcTo(2.77f, 2.77f, 0.0f, false, true, 15.77f, 17.0f) - horizontalLineToRelative(0.28f) - arcToRelative(3.49f, 3.49f, 0.0f, false, true, -0.42f, -4.5f) - lineTo(6.75f, 12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(9.0f) - curveToRelative(0.37f, 0.0f, 0.69f, 0.27f, 0.74f, 0.63f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 21.96f, 14.0f) - lineTo(22.0f, 14.0f) - lineTo(22.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 4.0f) - lineTo(4.75f, 4.0f) - close() - moveTo(6.0f, 8.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 6.0f, 8.75f) - close() - moveTo(6.75f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.5f) - close() - moveTo(21.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(23.0f, 19.88f) - curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) - reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _slideTextPerson!! - } - -private var _slideTextPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideTransition.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideTransition.kt deleted file mode 100644 index 2d2ff21f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SlideTransition.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SlideTransition: ImageVector - get() { - if (_slideTransition != null) { - return _slideTransition!! - } - _slideTransition = fluentIcon(name = "Filled.SlideTransition") { - fluentPath { - moveTo(4.75f, 4.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 6.75f) - verticalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 20.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 17.25f) - lineTo(22.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 4.0f) - lineTo(4.75f, 4.0f) - close() - moveTo(6.5f, 5.5f) - verticalLineToRelative(13.0f) - lineTo(5.0f, 18.5f) - verticalLineToRelative(-13.0f) - horizontalLineToRelative(1.5f) - close() - moveTo(10.5f, 18.5f) - lineTo(9.0f, 18.5f) - verticalLineToRelative(-13.0f) - horizontalLineToRelative(1.5f) - verticalLineToRelative(13.0f) - close() - moveTo(15.5f, 18.5f) - lineTo(14.0f, 18.5f) - verticalLineToRelative(-13.0f) - horizontalLineToRelative(1.5f) - verticalLineToRelative(13.0f) - close() - } - } - return _slideTransition!! - } - -private var _slideTransition: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Smartwatch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Smartwatch.kt deleted file mode 100644 index 8172f7c5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Smartwatch.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Smartwatch: ImageVector - get() { - if (_smartwatch != null) { - return _smartwatch!! - } - _smartwatch = fluentIcon(name = "Filled.Smartwatch") { - fluentPath { - moveTo(9.5f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(1.3f) - curveToRelative(0.46f, -0.2f, 0.97f, -0.3f, 1.5f, -0.3f) - horizontalLineToRelative(6.0f) - curveToRelative(0.53f, 0.0f, 1.04f, 0.1f, 1.5f, 0.3f) - lineTo(16.5f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - horizontalLineToRelative(-5.0f) - close() - moveTo(9.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) - horizontalLineToRelative(6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) - verticalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(18.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - lineTo(9.0f, 6.0f) - close() - moveTo(9.0f, 19.0f) - curveToRelative(-0.53f, 0.0f, -1.04f, -0.1f, -1.5f, -0.3f) - lineTo(7.5f, 20.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - verticalLineToRelative(-1.3f) - curveToRelative(-0.46f, 0.2f, -0.97f, 0.3f, -1.5f, 0.3f) - lineTo(9.0f, 19.0f) - close() - } - } - return _smartwatch!! - } - -private var _smartwatch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SmartwatchDot.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SmartwatchDot.kt deleted file mode 100644 index 37ca961f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SmartwatchDot.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SmartwatchDot: ImageVector - get() { - if (_smartwatchDot != null) { - return _smartwatchDot!! - } - _smartwatchDot = fluentIcon(name = "Filled.SmartwatchDot") { - fluentPath { - moveTo(14.5f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.79f, 1.1f) - arcToRelative(3.49f, 3.49f, 0.0f, false, false, -0.23f, 2.04f) - arcTo(4.0f, 4.0f, 0.0f, false, false, 15.0f, 5.0f) - lineTo(9.0f, 5.0f) - curveToRelative(-0.53f, 0.0f, -1.04f, 0.1f, -1.5f, 0.3f) - lineTo(7.5f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(15.0f, 6.0f) - curveToRelative(0.59f, 0.0f, 1.14f, 0.17f, 1.6f, 0.46f) - curveToRelative(0.25f, 0.37f, 0.57f, 0.69f, 0.94f, 0.94f) - curveToRelative(0.29f, 0.46f, 0.46f, 1.01f, 0.46f, 1.6f) - verticalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - lineTo(9.0f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(6.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(6.0f) - close() - moveTo(9.0f, 19.0f) - curveToRelative(-0.53f, 0.0f, -1.04f, -0.1f, -1.5f, -0.3f) - lineTo(7.5f, 20.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - verticalLineToRelative(-1.3f) - curveToRelative(-0.46f, 0.2f, -0.97f, 0.3f, -1.5f, 0.3f) - lineTo(9.0f, 19.0f) - close() - moveTo(22.0f, 4.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 5.0f, 0.0f) - close() - } - } - return _smartwatchDot!! - } - -private var _smartwatchDot: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Snooze.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Snooze.kt deleted file mode 100644 index 5d50dce0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Snooze.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Snooze: ImageVector - get() { - if (_snooze != null) { - return _snooze!! - } - _snooze = fluentIcon(name = "Filled.Snooze") { - fluentPath { - moveTo(9.0f, 12.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.85f, 1.54f) - lineToRelative(-0.07f, 0.09f) - lineTo(5.08f, 20.0f) - horizontalLineTo(9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - verticalLineTo(21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - horizontalLineTo(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.85f, -1.53f) - lineToRelative(0.07f, -0.1f) - lineToRelative(4.7f, -5.87f) - horizontalLineTo(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - verticalLineToRelative(-0.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -0.99f) - horizontalLineTo(9.0f) - close() - moveTo(21.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.84f, 1.54f) - lineToRelative(-0.07f, 0.1f) - lineTo(14.11f, 13.0f) - horizontalLineTo(21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - verticalLineTo(14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - horizontalLineTo(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.84f, -1.54f) - lineToRelative(0.07f, -0.1f) - lineTo(18.89f, 4.0f) - horizontalLineTo(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - verticalLineTo(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) - horizontalLineTo(21.0f) - close() - } - } - return _snooze!! - } - -private var _snooze: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SoundSource.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SoundSource.kt deleted file mode 100644 index e2e8edf7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SoundSource.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SoundSource: ImageVector - get() { - if (_soundSource != null) { - return _soundSource!! - } - _soundSource = fluentIcon(name = "Filled.SoundSource") { - fluentPath { - moveTo(3.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 14.76f, 5.75f) - lineToRelative(1.0f, 1.13f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -14.5f, 0.0f) - lineToRelative(0.98f, -1.13f) - arcTo(8.47f, 8.47f, 0.0f, false, true, 3.5f, 12.0f) - close() - moveTo(19.25f, 12.13f) - arcToRelative(7.1f, 7.1f, 0.0f, false, true, -1.78f, 4.71f) - lineToRelative(-1.0f, -1.14f) - arcToRelative(5.63f, 5.63f, 0.0f, true, false, -8.8f, -0.15f) - lineTo(6.65f, 16.7f) - arcToRelative(7.12f, 7.12f, 0.0f, true, true, 12.6f, -4.57f) - close() - moveTo(16.25f, 12.0f) - curveToRelative(0.0f, 0.94f, -0.3f, 1.8f, -0.82f, 2.51f) - lineToRelative(-1.03f, -1.17f) - arcToRelative(2.75f, 2.75f, 0.0f, true, false, -4.8f, 0.0f) - lineTo(8.57f, 14.5f) - arcTo(4.25f, 4.25f, 0.0f, true, true, 16.25f, 12.0f) - close() - moveTo(12.0f, 12.5f) - curveToRelative(0.22f, 0.0f, 0.42f, 0.1f, 0.56f, 0.26f) - lineToRelative(7.0f, 8.0f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 19.0f, 22.0f) - lineTo(5.0f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.56f, -1.24f) - lineToRelative(7.0f, -8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.56f, -0.26f) - close() - } - } - return _soundSource!! - } - -private var _soundSource: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SoundWaveCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SoundWaveCircle.kt deleted file mode 100644 index 8abdbc53..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SoundWaveCircle.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SoundWaveCircle: ImageVector - get() { - if (_soundWaveCircle != null) { - return _soundWaveCircle!! - } - _soundWaveCircle = fluentIcon(name = "Filled.SoundWaveCircle") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) - close() - moveTo(11.0f, 8.75f) - verticalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(17.0f, 8.75f) - verticalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(14.0f, 10.25f) - verticalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(8.0f, 10.75f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - } - } - return _soundWaveCircle!! - } - -private var _soundWaveCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Space3D.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Space3D.kt deleted file mode 100644 index 5a5831f3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Space3D.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Space3D: ImageVector - get() { - if (_space3D != null) { - return _space3D!! - } - _space3D = fluentIcon(name = "Filled.Space3D") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - lineTo(21.0f, 15.0f) - horizontalLineToRelative(-0.81f) - lineToRelative(-2.25f, -3.0f) - horizontalLineToRelative(1.56f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 12.0f) - horizontalLineToRelative(1.56f) - lineToRelative(-2.25f, 3.0f) - lineTo(3.0f, 15.0f) - lineTo(3.0f, 6.25f) - close() - moveTo(15.7f, 16.5f) - lineTo(21.0f, 16.5f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-0.67f) - lineToRelative(-0.36f, -1.22f) - lineToRelative(-1.03f, -3.28f) - close() - moveTo(18.3f, 15.0f) - horizontalLineToRelative(-3.09f) - lineToRelative(-0.93f, -3.0f) - horizontalLineToRelative(1.77f) - lineToRelative(2.25f, 3.0f) - close() - moveTo(10.51f, 15.0f) - horizontalLineToRelative(3.13f) - lineToRelative(-0.94f, -3.0f) - horizontalLineToRelative(-1.44f) - lineToRelative(-0.75f, 3.0f) - close() - moveTo(14.11f, 16.5f) - horizontalLineToRelative(-3.97f) - lineTo(9.02f, 21.0f) - horizontalLineToRelative(6.5f) - lineToRelative(-0.24f, -0.78f) - lineToRelative(-1.16f, -3.72f) - close() - moveTo(9.72f, 12.0f) - lineToRelative(-0.74f, 3.0f) - horizontalLineToRelative(-3.3f) - lineToRelative(2.26f, -3.0f) - horizontalLineToRelative(1.79f) - close() - moveTo(8.6f, 16.5f) - lineTo(3.0f, 16.5f) - verticalLineToRelative(1.25f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(1.23f) - lineToRelative(1.12f, -4.5f) - close() - } - } - return _space3D!! - } - -private var _space3D: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Spacebar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Spacebar.kt deleted file mode 100644 index dac54a9a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Spacebar.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Spacebar: ImageVector - get() { - if (_spacebar != null) { - return _spacebar!! - } - _spacebar = fluentIcon(name = "Filled.Spacebar") { - fluentPath { - moveTo(20.0f, 11.0f) - verticalLineToRelative(2.0f) - horizontalLineTo(4.0f) - verticalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(16.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - verticalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - close() - } - } - return _spacebar!! - } - -private var _spacebar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Sparkle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Sparkle.kt deleted file mode 100644 index 63cf1b6f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Sparkle.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Sparkle: ImageVector - get() { - if (_sparkle != null) { - return _sparkle!! - } - _sparkle = fluentIcon(name = "Filled.Sparkle") { - fluentPath { - moveTo(8.67f, 15.73f) - arcToRelative(1.44f, 1.44f, 0.0f, false, false, 2.16f, -0.61f) - lineToRelative(0.61f, -1.86f) - arcToRelative(2.87f, 2.87f, 0.0f, false, true, 1.82f, -1.81f) - lineToRelative(1.78f, -0.58f) - arcToRelative(1.44f, 1.44f, 0.0f, false, false, -0.06f, -2.74f) - lineToRelative(-1.75f, -0.57f) - arcToRelative(2.88f, 2.88f, 0.0f, false, true, -1.82f, -1.82f) - lineToRelative(-0.58f, -1.78f) - arcToRelative(1.45f, 1.45f, 0.0f, false, false, -2.73f, 0.02f) - lineToRelative(-0.59f, 1.8f) - arcToRelative(2.88f, 2.88f, 0.0f, false, true, -1.77f, 1.78f) - lineToRelative(-1.77f, 0.57f) - arcToRelative(1.44f, 1.44f, 0.0f, false, false, 0.01f, 2.73f) - lineToRelative(1.76f, 0.57f) - arcToRelative(2.89f, 2.89f, 0.0f, false, true, 1.82f, 1.83f) - lineToRelative(0.58f, 1.77f) - curveToRelative(0.1f, 0.29f, 0.28f, 0.53f, 0.53f, 0.7f) - close() - moveTo(16.33f, 20.78f) - curveToRelative(-0.19f, -0.13f, -0.33f, -0.33f, -0.4f, -0.55f) - lineToRelative(-0.34f, -1.0f) - arcToRelative(1.31f, 1.31f, 0.0f, false, false, -0.82f, -0.83f) - lineToRelative(-0.99f, -0.32f) - arcTo(1.15f, 1.15f, 0.0f, false, true, 13.0f, 17.0f) - arcToRelative(1.14f, 1.14f, 0.0f, false, true, 0.77f, -1.08f) - lineToRelative(1.0f, -0.33f) - arcToRelative(1.3f, 1.3f, 0.0f, false, false, 0.8f, -0.82f) - lineToRelative(0.33f, -0.99f) - arcToRelative(1.14f, 1.14f, 0.0f, false, true, 2.16f, -0.02f) - lineToRelative(0.33f, 1.01f) - arcToRelative(1.3f, 1.3f, 0.0f, false, false, 0.82f, 0.82f) - lineToRelative(0.99f, 0.32f) - arcToRelative(1.14f, 1.14f, 0.0f, false, true, 0.04f, 2.17f) - lineToRelative(-1.01f, 0.33f) - arcToRelative(1.32f, 1.32f, 0.0f, false, false, -0.82f, 0.82f) - lineToRelative(-0.32f, 0.99f) - arcToRelative(1.14f, 1.14f, 0.0f, false, true, -1.76f, 0.56f) - close() - } - } - return _sparkle!! - } - -private var _sparkle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SparkleCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SparkleCircle.kt deleted file mode 100644 index 840fa944..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SparkleCircle.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SparkleCircle: ImageVector - get() { - if (_sparkleCircle != null) { - return _sparkleCircle!! - } - _sparkleCircle = fluentIcon(name = "Filled.SparkleCircle") { - fluentPath { - moveTo(12.0f, 22.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) - close() - moveTo(8.56f, 6.17f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.88f, 0.0f) - lineToRelative(0.46f, 1.3f) - curveToRelative(0.1f, 0.29f, 0.34f, 0.52f, 0.64f, 0.63f) - lineToRelative(1.3f, 0.46f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.88f) - lineToRelative(-1.3f, 0.46f) - curveToRelative(-0.3f, 0.1f, -0.53f, 0.34f, -0.64f, 0.64f) - lineToRelative(-0.46f, 1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.88f, 0.0f) - lineToRelative(-0.46f, -1.3f) - curveToRelative(-0.1f, -0.3f, -0.34f, -0.53f, -0.64f, -0.64f) - lineToRelative(-1.3f, -0.46f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.88f) - lineToRelative(1.3f, -0.46f) - curveToRelative(0.3f, -0.1f, 0.54f, -0.34f, 0.64f, -0.64f) - lineToRelative(0.46f, -1.3f) - close() - moveTo(15.95f, 12.71f) - lineTo(16.13f, 13.31f) - curveToRelative(0.08f, 0.27f, 0.3f, 0.48f, 0.57f, 0.56f) - lineToRelative(0.6f, 0.18f) - arcToRelative(0.99f, 0.99f, 0.0f, false, true, 0.0f, 1.9f) - lineToRelative(-0.6f, 0.18f) - arcToRelative(0.85f, 0.85f, 0.0f, false, false, -0.57f, 0.57f) - lineToRelative(-0.18f, 0.6f) - arcToRelative(0.99f, 0.99f, 0.0f, false, true, -1.9f, 0.0f) - lineToRelative(-0.18f, -0.6f) - arcToRelative(0.85f, 0.85f, 0.0f, false, false, -0.57f, -0.57f) - lineToRelative(-0.6f, -0.18f) - arcToRelative(0.99f, 0.99f, 0.0f, false, true, 0.0f, -1.9f) - lineToRelative(0.6f, -0.18f) - curveToRelative(0.28f, -0.08f, 0.49f, -0.3f, 0.57f, -0.57f) - lineToRelative(0.18f, -0.6f) - arcToRelative(0.99f, 0.99f, 0.0f, false, true, 1.9f, 0.0f) - close() - } - } - return _sparkleCircle!! - } - -private var _sparkleCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Speaker0.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Speaker0.kt deleted file mode 100644 index 4c135bd5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Speaker0.kt +++ /dev/null @@ -1,35 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Speaker0: ImageVector - get() { - if (_speaker0 != null) { - return _speaker0!! - } - _speaker0 = fluentIcon(name = "Filled.Speaker0") { - fluentPath { - moveTo(14.7f, 3.44f) - curveToRelative(0.2f, 0.23f, 0.3f, 0.51f, 0.3f, 0.8f) - verticalLineToRelative(15.51f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.06f, 0.95f) - lineToRelative(-4.96f, -4.2f) - horizontalLineTo(4.25f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-4.5f) - curveTo(2.0f, 8.5f, 3.0f, 7.5f, 4.25f, 7.5f) - horizontalLineToRelative(3.73f) - lineToRelative(4.96f, -4.2f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 1.76f, 0.14f) - close() - } - } - return _speaker0!! - } - -private var _speaker0: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Speaker1.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Speaker1.kt deleted file mode 100644 index cebb9c7c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Speaker1.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Speaker1: ImageVector - get() { - if (_speaker1 != null) { - return _speaker1!! - } - _speaker1 = fluentIcon(name = "Filled.Speaker1") { - fluentPath { - moveTo(14.7f, 3.44f) - curveToRelative(0.2f, 0.23f, 0.3f, 0.51f, 0.3f, 0.81f) - verticalLineToRelative(15.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.06f, 0.96f) - lineTo(7.98f, 16.5f) - lineTo(4.25f, 16.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-4.5f) - curveTo(2.0f, 8.51f, 3.0f, 7.5f, 4.25f, 7.5f) - horizontalLineToRelative(3.73f) - lineToRelative(4.96f, -4.2f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 1.76f, 0.14f) - close() - moveTo(17.1f, 8.64f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, 0.25f) - curveToRelative(0.58f, 0.94f, 0.87f, 2.0f, 0.87f, 3.14f) - curveToRelative(0.0f, 1.15f, -0.3f, 2.2f, -0.87f, 3.14f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.28f, -0.78f) - curveToRelative(0.43f, -0.7f, 0.65f, -1.48f, 0.65f, -2.36f) - curveToRelative(0.0f, -0.88f, -0.22f, -1.66f, -0.65f, -2.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.25f, -1.03f) - close() - } - } - return _speaker1!! - } - -private var _speaker1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Speaker2.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Speaker2.kt deleted file mode 100644 index 92d1630b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Speaker2.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Speaker2: ImageVector - get() { - if (_speaker2 != null) { - return _speaker2!! - } - _speaker2 = fluentIcon(name = "Filled.Speaker2") { - fluentPath { - moveTo(25.08f, 6.42f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 28.0f, 7.72f) - verticalLineToRelative(32.56f) - curveToRelative(0.0f, 1.51f, -1.8f, 2.31f, -2.92f, 1.3f) - lineToRelative(-8.2f, -7.36f) - curveToRelative(-0.88f, -0.79f, -2.0f, -1.22f, -3.18f, -1.22f) - lineTo(9.0f, 33.0f) - arcToRelative(5.25f, 5.25f, 0.0f, false, true, -5.25f, -5.25f) - verticalLineToRelative(-7.5f) - curveTo(3.75f, 17.35f, 6.1f, 15.0f, 9.0f, 15.0f) - horizontalLineToRelative(4.7f) - curveToRelative(1.17f, 0.0f, 2.3f, -0.43f, 3.18f, -1.21f) - lineToRelative(8.2f, -7.37f) - close() - moveTo(36.34f, 8.4f) - curveToRelative(0.47f, -0.5f, 1.26f, -0.53f, 1.76f, -0.06f) - horizontalLineToRelative(0.02f) - curveToRelative(-0.35f, -0.34f, -0.01f, 0.0f, -0.01f, 0.0f) - lineToRelative(0.02f, 0.03f) - arcToRelative(5.37f, 5.37f, 0.0f, false, true, 0.27f, 0.26f) - arcToRelative(20.4f, 20.4f, 0.0f, false, true, 2.7f, 3.79f) - arcTo(23.76f, 23.76f, 0.0f, false, true, 44.0f, 24.0f) - curveToRelative(0.0f, 5.05f, -1.45f, 8.94f, -2.9f, 11.58f) - arcToRelative(20.41f, 20.41f, 0.0f, false, true, -2.9f, 4.0f) - lineToRelative(-0.07f, 0.06f) - lineToRelative(-0.02f, 0.01f) - verticalLineToRelative(0.01f) - reflectiveCurveToRelative(0.66f, -0.66f, 0.0f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.72f, -1.82f) - arcToRelative(3.26f, 3.26f, 0.0f, false, false, 0.19f, -0.19f) - arcToRelative(17.9f, 17.9f, 0.0f, false, false, 2.33f, -3.28f) - curveTo(40.2f, 32.03f, 41.5f, 28.55f, 41.5f, 24.0f) - curveToRelative(0.0f, -4.55f, -1.3f, -8.03f, -2.6f, -10.37f) - arcToRelative(17.9f, 17.9f, 0.0f, false, false, -2.5f, -3.46f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.06f, -1.77f) - close() - moveTo(32.34f, 14.4f) - curveToRelative(0.46f, -0.5f, 1.25f, -0.54f, 1.76f, -0.07f) - lineToRelative(0.06f, 0.07f) - lineToRelative(-0.06f, -0.06f) - lineToRelative(0.02f, 0.02f) - arcToRelative(2.62f, 2.62f, 0.0f, false, true, 0.18f, 0.17f) - curveToRelative(0.12f, 0.12f, 0.27f, 0.3f, 0.45f, 0.51f) - arcToRelative(13.98f, 13.98f, 0.0f, false, true, -0.59f, 18.56f) - lineToRelative(-0.01f, 0.02f) - lineToRelative(-0.03f, 0.03f) - horizontalLineToRelative(-0.01f) - verticalLineToRelative(0.01f) - reflectiveCurveToRelative(0.39f, -0.4f, 0.0f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.71f, -1.82f) - lineToRelative(0.01f, -0.02f) - arcToRelative(4.57f, 4.57f, 0.0f, false, false, 0.43f, -0.47f) - arcToRelative(11.48f, 11.48f, 0.0f, false, false, -0.43f, -15.17f) - lineToRelative(-0.01f, -0.02f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.07f, -1.76f) - close() - } - } - return _speaker2!! - } - -private var _speaker2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SpeakerBluetooth.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SpeakerBluetooth.kt deleted file mode 100644 index 40268633..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SpeakerBluetooth.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SpeakerBluetooth: ImageVector - get() { - if (_speakerBluetooth != null) { - return _speakerBluetooth!! - } - _speakerBluetooth = fluentIcon(name = "Filled.SpeakerBluetooth") { - fluentPath { - moveTo(14.7f, 3.44f) - curveToRelative(0.2f, 0.23f, 0.3f, 0.51f, 0.3f, 0.81f) - verticalLineToRelative(15.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.06f, 0.96f) - lineTo(7.98f, 16.5f) - lineTo(4.25f, 16.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-4.5f) - curveTo(2.0f, 8.51f, 3.0f, 7.5f, 4.25f, 7.5f) - horizontalLineToRelative(3.73f) - lineToRelative(4.96f, -4.2f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 1.76f, 0.14f) - close() - moveTo(17.5f, 9.9f) - lineTo(17.5f, 6.75f) - curveToRelative(0.0f, -0.65f, 0.75f, -0.98f, 1.23f, -0.58f) - lineToRelative(0.07f, 0.07f) - lineToRelative(3.0f, 3.25f) - curveToRelative(0.27f, 0.29f, 0.26f, 0.73f, 0.0f, 1.01f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-1.7f, 1.42f) - lineToRelative(1.7f, 1.42f) - curveToRelative(0.3f, 0.26f, 0.35f, 0.7f, 0.14f, 1.0f) - lineToRelative(-0.07f, 0.09f) - lineToRelative(-3.0f, 3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.3f, -0.4f) - lineTo(17.5f, 14.1f) - lineToRelative(-0.27f, 0.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.04f, -1.07f) - lineToRelative(0.08f, -0.08f) - lineToRelative(1.23f, -1.02f) - verticalLineToRelative(-0.3f) - lineToRelative(-1.23f, -1.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.87f, -1.22f) - lineToRelative(0.1f, 0.06f) - lineToRelative(0.26f, 0.23f) - lineTo(17.5f, 6.75f) - lineTo(17.5f, 9.9f) - close() - moveTo(19.0f, 13.1f) - verticalLineToRelative(2.23f) - lineToRelative(1.16f, -1.26f) - lineTo(19.0f, 13.1f) - close() - moveTo(19.0f, 8.67f) - verticalLineToRelative(2.23f) - lineToRelative(1.16f, -0.97f) - lineTo(19.0f, 8.67f) - close() - } - } - return _speakerBluetooth!! - } - -private var _speakerBluetooth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SpeakerEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SpeakerEdit.kt deleted file mode 100644 index 72204ef9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SpeakerEdit.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SpeakerEdit: ImageVector - get() { - if (_speakerEdit != null) { - return _speakerEdit!! - } - _speakerEdit = fluentIcon(name = "Filled.SpeakerEdit") { - fluentPath { - moveTo(15.0f, 4.25f) - verticalLineToRelative(11.1f) - lineToRelative(-2.51f, 2.51f) - curveToRelative(-0.45f, 0.45f, -0.77f, 1.0f, -0.94f, 1.6f) - lineTo(8.43f, 16.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.5f, -0.2f) - lineTo(4.25f, 16.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.24f) - verticalLineToRelative(-4.5f) - curveTo(2.0f, 8.51f, 3.0f, 7.5f, 4.25f, 7.5f) - horizontalLineToRelative(3.68f) - curveToRelative(0.18f, 0.0f, 0.36f, -0.07f, 0.5f, -0.19f) - lineToRelative(4.49f, -4.0f) - curveToRelative(0.8f, -0.7f, 2.08f, -0.14f, 2.08f, 0.94f) - close() - moveTo(18.4f, 11.96f) - curveToRelative(0.17f, -0.18f, 0.37f, -0.34f, 0.58f, -0.47f) - arcToRelative(6.96f, 6.96f, 0.0f, false, false, -0.82f, -2.82f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.32f, 0.72f) - arcToRelative(5.47f, 5.47f, 0.0f, false, true, 0.58f, 3.54f) - lineToRelative(0.97f, -0.97f) - close() - moveTo(20.44f, 11.01f) - arcToRelative(3.3f, 3.3f, 0.0f, false, true, 1.53f, 0.24f) - arcToRelative(9.95f, 9.95f, 0.0f, false, false, -1.93f, -5.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.2f, 0.9f) - arcToRelative(8.45f, 8.45f, 0.0f, false, true, 1.6f, 4.06f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.71f, 1.25f) - lineToRelative(-0.46f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.28f, 2.28f, 0.0f, true, false, -3.23f, -3.24f) - close() - } - } - return _speakerEdit!! - } - -private var _speakerEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SpeakerMute.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SpeakerMute.kt deleted file mode 100644 index bd6b8568..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SpeakerMute.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SpeakerMute: ImageVector - get() { - if (_speakerMute != null) { - return _speakerMute!! - } - _speakerMute = fluentIcon(name = "Filled.SpeakerMute") { - fluentPath { - moveTo(15.0f, 4.25f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.08f, -0.93f) - lineTo(8.42f, 7.3f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.49f, 0.19f) - lineTo(4.25f, 7.49f) - curveTo(3.01f, 7.5f, 2.0f, 8.5f, 2.0f, 9.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(3.68f) - curveToRelative(0.18f, 0.0f, 0.36f, 0.06f, 0.5f, 0.19f) - lineToRelative(4.49f, 3.99f) - curveToRelative(0.8f, 0.72f, 2.08f, 0.14f, 2.08f, -0.93f) - lineTo(15.0f, 4.25f) - close() - moveTo(16.22f, 9.22f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineTo(19.0f, 10.94f) - lineToRelative(1.72f, -1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineTo(20.06f, 12.0f) - lineToRelative(1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(19.0f, 13.06f) - lineToRelative(-1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineTo(17.94f, 12.0f) - lineToRelative(-1.72f, -1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - } - } - return _speakerMute!! - } - -private var _speakerMute: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SpeakerOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SpeakerOff.kt deleted file mode 100644 index a8c26e8a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SpeakerOff.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SpeakerOff: ImageVector - get() { - if (_speakerOff != null) { - return _speakerOff!! - } - _speakerOff = fluentIcon(name = "Filled.SpeakerOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(6.44f, 7.5f) - lineTo(4.25f, 7.5f) - curveTo(3.01f, 7.5f, 2.0f, 8.5f, 2.0f, 9.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(3.68f) - curveToRelative(0.18f, 0.0f, 0.36f, 0.06f, 0.5f, 0.19f) - lineToRelative(4.49f, 3.99f) - curveToRelative(0.8f, 0.72f, 2.08f, 0.14f, 2.08f, -0.93f) - verticalLineToRelative(-3.69f) - lineToRelative(5.72f, 5.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(17.14f, 13.96f) - lineTo(18.28f, 15.1f) - arcToRelative(6.97f, 6.97f, 0.0f, false, false, -0.12f, -6.43f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.32f, 0.72f) - arcToRelative(5.47f, 5.47f, 0.0f, false, true, 0.3f, 4.57f) - close() - moveTo(19.39f, 16.21f) - lineTo(20.49f, 17.3f) - arcToRelative(9.96f, 9.96f, 0.0f, false, false, -0.45f, -11.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.2f, 0.9f) - arcToRelative(8.46f, 8.46f, 0.0f, false, true, 0.55f, 9.26f) - close() - moveTo(9.52f, 6.34f) - lineTo(15.0f, 11.82f) - lineTo(15.0f, 4.25f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.08f, -0.93f) - lineToRelative(-3.4f, 3.02f) - close() - } - } - return _speakerOff!! - } - -private var _speakerOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SpeakerSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SpeakerSettings.kt deleted file mode 100644 index 084d4d83..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SpeakerSettings.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SpeakerSettings: ImageVector - get() { - if (_speakerSettings != null) { - return _speakerSettings!! - } - _speakerSettings = fluentIcon(name = "Filled.SpeakerSettings") { - fluentPath { - moveTo(14.7f, 3.44f) - curveToRelative(0.2f, 0.23f, 0.3f, 0.51f, 0.3f, 0.81f) - verticalLineToRelative(7.25f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -3.76f, 7.77f) - lineTo(7.98f, 16.5f) - lineTo(4.25f, 16.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-4.5f) - curveTo(2.0f, 8.51f, 3.0f, 7.5f, 4.25f, 7.5f) - horizontalLineToRelative(3.73f) - lineToRelative(4.96f, -4.2f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 1.76f, 0.14f) - close() - moveTo(14.28f, 13.98f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.59f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) - lineToRelative(0.55f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.52f) - lineToRelative(-0.19f, 0.63f) - curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) - lineToRelative(0.49f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.9f) - lineToRelative(-0.2f, -0.7f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) - lineToRelative(0.59f, -0.13f) - arcToRelative(5.72f, 5.72f, 0.0f, false, false, 0.0f, -1.81f) - lineToRelative(-0.55f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.19f, -0.63f) - curveToRelative(-0.44f, -0.39f, -0.94f, -0.7f, -1.49f, -0.93f) - lineToRelative(-0.49f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.91f) - lineToRelative(0.2f, 0.69f) - close() - moveTo(17.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) - close() - } - } - return _speakerSettings!! - } - -private var _speakerSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SpeakerUsb.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SpeakerUsb.kt deleted file mode 100644 index 1ee04b49..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SpeakerUsb.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SpeakerUsb: ImageVector - get() { - if (_speakerUsb != null) { - return _speakerUsb!! - } - _speakerUsb = fluentIcon(name = "Filled.SpeakerUsb") { - fluentPath { - moveTo(15.0f, 4.25f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.06f, -0.96f) - lineTo(7.98f, 7.5f) - lineTo(4.25f, 7.5f) - curveTo(3.01f, 7.5f, 2.0f, 8.52f, 2.0f, 9.76f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(3.73f) - lineToRelative(4.96f, 4.2f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.06f, -0.95f) - lineTo(15.0f, 4.25f) - close() - moveTo(16.16f, 13.95f) - lineTo(17.5f, 16.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineToRelative(-2.0f) - lineToRelative(1.33f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.17f, -0.56f) - lineTo(23.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(22.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(3.4f) - curveToRelative(0.0f, 0.2f, 0.06f, 0.4f, 0.16f, 0.55f) - close() - moveTo(18.5f, 7.5f) - horizontalLineToRelative(2.0f) - lineTo(20.5f, 9.0f) - horizontalLineToRelative(-2.0f) - lineTo(18.5f, 7.5f) - close() - } - } - return _speakerUsb!! - } - -private var _speakerUsb: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SplitHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SplitHorizontal.kt deleted file mode 100644 index a7b1b7d9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SplitHorizontal.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SplitHorizontal: ImageVector - get() { - if (_splitHorizontal != null) { - return _splitHorizontal!! - } - _splitHorizontal = fluentIcon(name = "Filled.SplitHorizontal") { - fluentPath { - moveTo(21.25f, 12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(18.5f) - close() - moveTo(17.75f, 2.0f) - curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) - verticalLineTo(10.0f) - horizontalLineTo(4.0f) - verticalLineTo(4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(4.0f, 19.25f) - verticalLineTo(13.5f) - horizontalLineToRelative(16.0f) - verticalLineToRelative(5.75f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineTo(6.25f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - close() - } - } - return _splitHorizontal!! - } - -private var _splitHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SplitVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SplitVertical.kt deleted file mode 100644 index cd388f00..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SplitVertical.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SplitVertical: ImageVector - get() { - if (_splitVertical != null) { - return _splitVertical!! - } - _splitVertical = fluentIcon(name = "Filled.SplitVertical") { - fluentPath { - moveTo(12.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineTo(2.75f) - close() - moveTo(2.0f, 6.25f) - curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) - horizontalLineTo(10.0f) - verticalLineToRelative(16.0f) - horizontalLineTo(4.25f) - curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) - verticalLineTo(6.25f) - close() - moveTo(19.25f, 20.0f) - horizontalLineTo(13.5f) - verticalLineTo(4.0f) - horizontalLineToRelative(5.75f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - close() - } - } - return _splitVertical!! - } - -private var _splitVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Sport.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Sport.kt deleted file mode 100644 index 6066e53a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Sport.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Sport: ImageVector - get() { - if (_sport != null) { - return _sport!! - } - _sport = fluentIcon(name = "Filled.Sport") { - fluentPath { - moveTo(20.1f, 4.97f) - curveToRelative(0.42f, 0.52f, 0.78f, 1.08f, 1.07f, 1.66f) - arcToRelative(2.77f, 2.77f, 0.0f, false, true, -3.66f, 0.93f) - lineToRelative(2.58f, -2.59f) - close() - moveTo(19.03f, 3.91f) - lineTo(16.44f, 6.49f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.93f, -3.66f) - arcToRelative(8.2f, 8.2f, 0.0f, false, true, 1.66f, 1.08f) - close() - moveTo(20.53f, 14.96f) - arcToRelative(8.26f, 8.26f, 0.0f, false, false, 1.23f, -6.7f) - arcToRelative(4.25f, 4.25f, 0.0f, false, true, -5.34f, 0.38f) - lineToRelative(-1.1f, 1.11f) - lineToRelative(5.2f, 5.21f) - close() - moveTo(15.36f, 7.58f) - arcToRelative(4.25f, 4.25f, 0.0f, false, true, 0.39f, -5.34f) - arcToRelative(8.26f, 8.26f, 0.0f, false, false, -6.71f, 1.24f) - lineToRelative(5.21f, 5.2f) - lineToRelative(1.1f, -1.1f) - close() - moveTo(13.19f, 9.75f) - lineTo(7.89f, 4.45f) - arcTo(8.21f, 8.21f, 0.0f, false, false, 5.9f, 7.68f) - curveToRelative(1.91f, 0.3f, 4.44f, 1.02f, 6.53f, 2.82f) - lineToRelative(0.75f, -0.75f) - close() - moveTo(11.73f, 11.21f) - arcToRelative(9.2f, 9.2f, 0.0f, false, true, 1.06f, 1.06f) - arcToRelative(12.13f, 12.13f, 0.0f, false, true, 2.56f, 6.08f) - arcToRelative(16.23f, 16.23f, 0.0f, false, true, 0.13f, 1.32f) - arcToRelative(2.3f, 2.3f, 0.0f, false, true, -2.5f, 2.3f) - curveToRelative(-1.98f, -0.15f, -5.34f, -0.77f, -7.76f, -3.19f) - reflectiveCurveTo(2.18f, 13.0f, 2.02f, 11.02f) - verticalLineToRelative(-0.19f) - arcToRelative(2.3f, 2.3f, 0.0f, false, true, 2.5f, -2.3f) - curveToRelative(0.34f, 0.02f, 0.72f, 0.06f, 1.14f, 0.12f) - curveToRelative(1.8f, 0.27f, 4.15f, 0.93f, 6.07f, 2.56f) - close() - moveTo(8.03f, 13.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.5f, -2.5f) - close() - moveTo(16.32f, 18.09f) - arcToRelative(13.02f, 13.02f, 0.0f, false, false, -2.82f, -6.53f) - lineToRelative(0.75f, -0.75f) - lineToRelative(5.3f, 5.3f) - arcToRelative(8.21f, 8.21f, 0.0f, false, true, -3.23f, 1.98f) - close() - } - } - return _sport!! - } - -private var _sport: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SportAmericanFootball.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SportAmericanFootball.kt deleted file mode 100644 index 592044ec..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SportAmericanFootball.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SportAmericanFootball: ImageVector - get() { - if (_sportAmericanFootball != null) { - return _sportAmericanFootball!! - } - _sportAmericanFootball = fluentIcon(name = "Filled.SportAmericanFootball") { - fluentPath { - moveTo(21.38f, 11.5f) - arcToRelative(14.78f, 14.78f, 0.0f, false, true, -9.97f, 9.9f) - lineToRelative(-8.82f, -8.8f) - arcToRelative(14.78f, 14.78f, 0.0f, false, true, 9.91f, -9.98f) - lineToRelative(8.88f, 8.88f) - close() - moveTo(13.72f, 9.22f) - lineTo(9.22f, 13.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(4.5f, -4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - close() - moveTo(2.2f, 14.32f) - lineToRelative(7.48f, 7.48f) - curveToRelative(-0.8f, 0.13f, -1.6f, 0.2f, -2.43f, 0.2f) - horizontalLineToRelative(-1.0f) - arcTo(4.25f, 4.25f, 0.0f, false, true, 2.0f, 17.75f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.83f, 0.07f, -1.64f, 0.2f, -2.43f) - close() - moveTo(14.22f, 2.22f) - lineTo(21.78f, 9.78f) - curveToRelative(0.15f, -0.82f, 0.22f, -1.67f, 0.22f, -2.53f) - verticalLineToRelative(-1.0f) - curveTo(22.0f, 3.9f, 20.1f, 2.0f, 17.75f, 2.0f) - horizontalLineToRelative(-1.0f) - curveToRelative(-0.86f, 0.0f, -1.71f, 0.07f, -2.53f, 0.22f) - close() - } - } - return _sportAmericanFootball!! - } - -private var _sportAmericanFootball: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SportBaseball.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SportBaseball.kt deleted file mode 100644 index bd5a3638..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SportBaseball.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SportBaseball: ImageVector - get() { - if (_sportBaseball != null) { - return _sportBaseball!! - } - _sportBaseball = fluentIcon(name = "Filled.SportBaseball") { - fluentPath { - moveTo(3.94f, 6.08f) - arcToRelative(9.96f, 9.96f, 0.0f, false, false, -0.01f, 11.83f) - lineToRelative(0.23f, -0.22f) - arcTo(8.23f, 8.23f, 0.0f, false, true, 7.0f, 16.01f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.48f, 1.42f) - arcToRelative(6.73f, 6.73f, 0.0f, false, false, -2.58f, 1.62f) - arcToRelative(9.97f, 9.97f, 0.0f, false, false, 14.18f, 0.0f) - arcToRelative(7.23f, 7.23f, 0.0f, false, false, -2.58f, -1.62f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.48f, -1.42f) - arcToRelative(8.23f, 8.23f, 0.0f, false, true, 3.08f, 1.9f) - arcToRelative(9.96f, 9.96f, 0.0f, false, false, -0.01f, -11.83f) - lineToRelative(-0.22f, 0.2f) - arcTo(8.23f, 8.23f, 0.0f, false, true, 17.0f, 7.96f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.48f, -1.42f) - arcToRelative(6.74f, 6.74f, 0.0f, false, false, 2.57f, -1.6f) - arcToRelative(9.97f, 9.97f, 0.0f, false, false, -14.16f, 0.0f) - arcToRelative(7.28f, 7.28f, 0.0f, false, false, 2.57f, 1.6f) - arcTo(0.75f, 0.75f, 0.0f, true, true, 7.0f, 7.96f) - arcToRelative(8.23f, 8.23f, 0.0f, false, true, -3.07f, -1.88f) - close() - moveTo(9.02f, 16.15f) - curveToRelative(-0.1f, -0.4f, 0.15f, -0.8f, 0.55f, -0.9f) - horizontalLineToRelative(0.01f) - lineToRelative(0.02f, -0.01f) - arcToRelative(3.89f, 3.89f, 0.0f, false, true, 0.37f, -0.08f) - arcToRelative(12.54f, 12.54f, 0.0f, false, true, 4.42f, 0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.29f, 1.48f) - arcToRelative(11.04f, 11.04f, 0.0f, false, false, -4.17f, -0.01f) - reflectiveCurveToRelative(-0.75f, 0.1f, -0.9f, -0.55f) - close() - moveTo(9.93f, 7.27f) - lineTo(10.0f, 7.29f) - arcToRelative(6.08f, 6.08f, 0.0f, false, false, 1.12f, 0.15f) - curveToRelative(0.76f, 0.06f, 1.82f, 0.06f, 2.98f, -0.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.3f, 1.48f) - arcToRelative(12.54f, 12.54f, 0.0f, false, true, -4.8f, 0.0f) - horizontalLineToRelative(-0.02f) - verticalLineToRelative(-0.01f) - horizontalLineToRelative(-0.01f) - arcToRelative(0.76f, 0.76f, 0.0f, false, true, -0.55f, -0.91f) - curveToRelative(0.16f, -0.65f, 0.91f, -0.55f, 0.91f, -0.55f) - close() - } - } - return _sportBaseball!! - } - -private var _sportBaseball: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SportBasketball.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SportBasketball.kt deleted file mode 100644 index 6bc1cbdb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SportBasketball.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SportBasketball: ImageVector - get() { - if (_sportBasketball != null) { - return _sportBasketball!! - } - _sportBasketball = fluentIcon(name = "Filled.SportBasketball") { - fluentPath { - moveTo(18.43f, 12.87f) - curveToRelative(-1.28f, -0.39f, -2.76f, -0.9f, -4.16f, -2.08f) - lineTo(13.07f, 12.0f) - lineToRelative(6.51f, 6.52f) - arcToRelative(9.94f, 9.94f, 0.0f, false, false, 2.16f, -4.22f) - lineToRelative(-0.01f, -0.01f) - verticalLineToRelative(-0.01f) - arcToRelative(3.74f, 3.74f, 0.0f, false, false, -1.35f, -0.8f) - curveToRelative(-0.43f, -0.17f, -0.9f, -0.3f, -1.42f, -0.46f) - lineToRelative(-0.53f, -0.15f) - close() - moveTo(18.53f, 4.42f) - lineTo(14.28f, 8.66f) - arcToRelative(9.6f, 9.6f, 0.0f, false, true, -1.7f, -3.52f) - lineToRelative(-0.15f, -0.47f) - curveToRelative(-0.15f, -0.54f, -0.31f, -1.1f, -0.5f, -1.6f) - curveToRelative(-0.15f, -0.36f, -0.31f, -0.71f, -0.52f, -1.05f) - arcToRelative(9.98f, 9.98f, 0.0f, false, true, 7.11f, 2.4f) - close() - moveTo(19.58f, 5.48f) - lineTo(15.34f, 9.72f) - arcToRelative(9.6f, 9.6f, 0.0f, false, false, 3.52f, 1.7f) - lineToRelative(0.47f, 0.15f) - curveToRelative(0.54f, 0.15f, 1.1f, 0.31f, 1.6f, 0.5f) - curveToRelative(0.36f, 0.15f, 0.71f, 0.31f, 1.05f, 0.52f) - arcToRelative(9.98f, 9.98f, 0.0f, false, false, -2.4f, -7.11f) - close() - moveTo(9.72f, 2.28f) - lineTo(9.71f, 2.27f) - arcToRelative(9.94f, 9.94f, 0.0f, false, false, -4.23f, 2.15f) - lineTo(12.0f, 10.94f) - lineToRelative(1.21f, -1.21f) - arcToRelative(10.93f, 10.93f, 0.0f, false, true, -2.08f, -4.16f) - lineToRelative(-0.15f, -0.52f) - curveToRelative(-0.15f, -0.53f, -0.29f, -1.0f, -0.46f, -1.43f) - curveToRelative(-0.21f, -0.56f, -0.46f, -1.0f, -0.8f, -1.34f) - close() - moveTo(2.13f, 10.38f) - arcToRelative(9.95f, 9.95f, 0.0f, false, true, 2.29f, -4.9f) - lineTo(10.94f, 12.0f) - lineToRelative(-1.09f, 1.09f) - arcToRelative(10.34f, 10.34f, 0.0f, false, false, -4.66f, -1.91f) - lineToRelative(-0.6f, -0.12f) - curveToRelative(-0.6f, -0.12f, -1.15f, -0.22f, -1.64f, -0.37f) - curveToRelative(-0.32f, -0.09f, -0.59f, -0.19f, -0.82f, -0.3f) - close() - moveTo(2.0f, 11.97f) - curveToRelative(0.0f, 2.34f, 0.8f, 4.68f, 2.42f, 6.56f) - lineToRelative(4.36f, -4.36f) - arcToRelative(9.13f, 9.13f, 0.0f, false, false, -3.89f, -1.51f) - lineToRelative(-0.54f, -0.1f) - arcTo(21.14f, 21.14f, 0.0f, false, true, 2.0f, 11.95f) - close() - moveTo(9.85f, 15.22f) - lineTo(5.48f, 19.59f) - arcTo(9.97f, 9.97f, 0.0f, false, false, 12.24f, 22.0f) - curveToRelative(-0.15f, -0.3f, -0.27f, -0.62f, -0.37f, -0.93f) - curveToRelative(-0.17f, -0.54f, -0.29f, -1.13f, -0.4f, -1.7f) - lineToRelative(-0.11f, -0.5f) - arcToRelative(8.6f, 8.6f, 0.0f, false, false, -1.51f, -3.66f) - close() - moveTo(13.9f, 21.83f) - arcToRelative(9.94f, 9.94f, 0.0f, false, false, 4.62f, -2.24f) - lineTo(12.0f, 13.06f) - lineToRelative(-1.08f, 1.09f) - arcToRelative(9.88f, 9.88f, 0.0f, false, true, 1.9f, 4.4f) - lineToRelative(0.12f, 0.56f) - curveToRelative(0.12f, 0.56f, 0.22f, 1.05f, 0.36f, 1.51f) - curveToRelative(0.16f, 0.5f, 0.35f, 0.9f, 0.6f, 1.2f) - close() - } - } - return _sportBasketball!! - } - -private var _sportBasketball: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SportHockey.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SportHockey.kt deleted file mode 100644 index 0b6b5ff0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SportHockey.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SportHockey: ImageVector - get() { - if (_sportHockey != null) { - return _sportHockey!! - } - _sportHockey = fluentIcon(name = "Filled.SportHockey") { - fluentPath { - moveTo(2.35f, 12.57f) - curveToRelative(-0.68f, 1.9f, -0.77f, 3.88f, 0.44f, 5.1f) - lineToRelative(0.24f, 0.24f) - arcToRelative(629.85f, 629.85f, 0.0f, false, false, 3.02f, 3.04f) - curveToRelative(1.28f, 1.28f, 3.3f, 1.3f, 5.29f, 0.66f) - arcToRelative(16.3f, 16.3f, 0.0f, false, false, 6.22f, -4.04f) - arcToRelative(16.3f, 16.3f, 0.0f, false, false, 4.04f, -6.22f) - curveToRelative(0.64f, -1.99f, 0.62f, -4.01f, -0.66f, -5.3f) - arcToRelative(756.94f, 756.94f, 0.0f, false, true, -2.89f, -2.9f) - lineToRelative(-0.36f, -0.37f) - curveToRelative(-1.23f, -1.21f, -3.2f, -1.12f, -5.1f, -0.44f) - curveToRelative(-1.97f, 0.71f, -4.15f, 2.14f, -6.12f, 4.11f) - arcToRelative(17.45f, 17.45f, 0.0f, false, false, -4.12f, 6.12f) - close() - moveTo(17.49f, 6.87f) - verticalLineToRelative(0.06f) - arcToRelative(5.12f, 5.12f, 0.0f, false, true, -0.15f, 0.57f) - arcToRelative(14.34f, 14.34f, 0.0f, false, true, -3.6f, 6.03f) - arcToRelative(15.61f, 15.61f, 0.0f, false, true, -6.78f, 3.94f) - lineToRelative(-0.03f, 0.01f) - lineTo(6.9f, 17.48f) - reflectiveCurveToRelative(-0.75f, 0.09f, -0.9f, -0.57f) - curveToRelative(-0.08f, -0.4f, 0.18f, -0.8f, 0.58f, -0.9f) - horizontalLineToRelative(0.03f) - arcToRelative(4.38f, 4.38f, 0.0f, false, false, 0.5f, -0.14f) - arcToRelative(14.1f, 14.1f, 0.0f, false, false, 5.57f, -3.4f) - arcToRelative(12.84f, 12.84f, 0.0f, false, false, 3.2f, -5.36f) - arcToRelative(6.85f, 6.85f, 0.0f, false, false, 0.12f, -0.46f) - curveToRelative(0.07f, -0.4f, 0.44f, -0.7f, 0.86f, -0.64f) - curveToRelative(0.41f, 0.07f, 0.69f, 0.45f, 0.62f, 0.86f) - close() - } - } - return _sportHockey!! - } - -private var _sportHockey: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SportSoccer.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SportSoccer.kt deleted file mode 100644 index 5a920910..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SportSoccer.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SportSoccer: ImageVector - get() { - if (_sportSoccer != null) { - return _sportSoccer!! - } - _sportSoccer = fluentIcon(name = "Filled.SportSoccer") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) - close() - moveTo(8.24f, 4.37f) - lineToRelative(3.01f, 1.8f) - verticalLineToRelative(2.2f) - lineToRelative(-2.79f, 2.02f) - lineToRelative(-2.04f, -0.7f) - lineToRelative(-0.59f, -3.54f) - arcToRelative(8.53f, 8.53f, 0.0f, false, true, 2.41f, -1.78f) - close() - moveTo(3.62f, 13.44f) - lineTo(5.95f, 11.11f) - lineTo(7.99f, 11.81f) - lineTo(9.07f, 15.15f) - lineTo(8.1f, 16.73f) - lineTo(4.8f, 16.53f) - curveToRelative(-0.58f, -0.92f, -0.99f, -1.97f, -1.18f, -3.1f) - close() - moveTo(10.53f, 20.37f) - lineTo(9.35f, 17.57f) - lineTo(10.31f, 16.0f) - horizontalLineToRelative(3.37f) - lineToRelative(0.91f, 1.58f) - lineToRelative(-1.04f, 2.78f) - arcToRelative(8.55f, 8.55f, 0.0f, false, true, -3.02f, 0.01f) - close() - moveTo(18.89f, 16.97f) - lineTo(15.87f, 16.79f) - lineTo(14.93f, 15.16f) - lineTo(16.02f, 11.82f) - lineTo(18.03f, 11.12f) - lineTo(20.34f, 13.64f) - arcToRelative(8.46f, 8.46f, 0.0f, false, true, -1.45f, 3.34f) - close() - moveTo(18.17f, 6.16f) - lineTo(17.58f, 9.69f) - lineTo(15.54f, 10.39f) - lineTo(12.75f, 8.37f) - verticalLineToRelative(-2.2f) - lineToRelative(3.0f, -1.8f) - arcToRelative(8.53f, 8.53f, 0.0f, false, true, 2.42f, 1.79f) - close() - } - } - return _sportSoccer!! - } - -private var _sportSoccer: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Square.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Square.kt deleted file mode 100644 index 13e7cd73..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Square.kt +++ /dev/null @@ -1,32 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Square: ImageVector - get() { - if (_square != null) { - return _square!! - } - _square = fluentIcon(name = "Filled.Square") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineTo(6.25f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - verticalLineTo(6.25f) - close() - } - } - return _square!! - } - -private var _square: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SquareArrowForward.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SquareArrowForward.kt deleted file mode 100644 index f2946feb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SquareArrowForward.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SquareArrowForward: ImageVector - get() { - if (_squareArrowForward != null) { - return _squareArrowForward!! - } - _squareArrowForward = fluentIcon(name = "Filled.SquareArrowForward") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(5.77f) - arcTo(6.5f, 6.5f, 0.0f, false, true, 21.0f, 12.02f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) - close() - moveTo(18.65f, 15.35f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, -0.7f) - lineToRelative(1.5f, 1.5f) - curveToRelative(0.2f, 0.2f, 0.2f, 0.5f, 0.0f, 0.7f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, -0.7f) - lineToRelative(0.64f, -0.65f) - horizontalLineToRelative(-2.04f) - curveTo(16.01f, 17.0f, 15.0f, 18.0f, 15.0f, 19.25f) - verticalLineToRelative(0.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-0.25f) - curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) - horizontalLineToRelative(2.04f) - lineToRelative(-0.64f, -0.65f) - close() - } - } - return _squareArrowForward!! - } - -private var _squareArrowForward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SquareHint.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SquareHint.kt deleted file mode 100644 index 474c821a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SquareHint.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SquareHint: ImageVector - get() { - if (_squareHint != null) { - return _squareHint!! - } - _squareHint = fluentIcon(name = "Filled.SquareHint") { - fluentPath { - moveTo(10.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(17.5f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 21.0f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - close() - moveTo(6.5f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - curveTo(5.67f, 5.0f, 5.0f, 5.67f, 5.0f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 6.5f, 3.0f) - close() - moveTo(4.0f, 16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 6.5f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 5.0f, 17.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - moveTo(11.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-2.0f) - close() - moveTo(17.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 3.5f, -3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - close() - moveTo(20.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(3.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(2.0f) - close() - } - } - return _squareHint!! - } - -private var _squareHint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SquareHintApps.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SquareHintApps.kt deleted file mode 100644 index af216818..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SquareHintApps.kt +++ /dev/null @@ -1,108 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SquareHintApps: ImageVector - get() { - if (_squareHintApps != null) { - return _squareHintApps!! - } - _squareHintApps = fluentIcon(name = "Filled.SquareHintApps") { - fluentPath { - moveTo(6.25f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - close() - moveTo(9.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - close() - moveTo(17.0f, 3.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.0f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(3.0f, 17.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - close() - moveTo(3.0f, 14.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(4.5f) - close() - moveTo(7.0f, 5.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(10.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) - horizontalLineToRelative(2.25f) - verticalLineToRelative(-2.25f) - curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) - horizontalLineToRelative(0.75f) - lineTo(18.5f, 7.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(7.0f, 5.5f) - close() - moveTo(12.25f, 15.5f) - horizontalLineToRelative(3.25f) - verticalLineToRelative(-3.25f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(3.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-7.5f) - curveTo(11.01f, 23.0f, 10.0f, 22.0f, 10.0f, 20.75f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - close() - moveTo(17.0f, 12.25f) - verticalLineToRelative(3.25f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(-3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(15.5f, 21.5f) - lineTo(15.5f, 17.0f) - horizontalLineToRelative(-3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.25f) - close() - moveTo(17.0f, 17.0f) - verticalLineToRelative(4.5f) - horizontalLineToRelative(2.75f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(21.5f, 17.0f) - lineTo(17.0f, 17.0f) - close() - } - } - return _squareHintApps!! - } - -private var _squareHintApps: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SquareHintSparkles.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SquareHintSparkles.kt deleted file mode 100644 index 2f8f9fe7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SquareHintSparkles.kt +++ /dev/null @@ -1,102 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SquareHintSparkles: ImageVector - get() { - if (_squareHintSparkles != null) { - return _squareHintSparkles!! - } - _squareHintSparkles = fluentIcon(name = "Filled.SquareHintSparkles") { - fluentPath { - moveTo(16.09f, 6.41f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.35f, -0.95f) - lineTo(13.36f, 5.0f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, -1.03f) - lineToRelative(1.38f, -0.44f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.76f, -1.77f) - lineToRelative(0.01f, -0.03f) - lineToRelative(0.45f, -1.38f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, 1.03f, 0.0f) - lineToRelative(0.44f, 1.38f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.8f, 1.8f) - lineToRelative(1.38f, 0.44f) - lineToRelative(0.03f, 0.01f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, 1.03f) - lineToRelative(-1.38f, 0.44f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.8f, 1.8f) - lineToRelative(-0.45f, 1.38f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, -1.03f, 0.0f) - lineToRelative(-0.44f, -1.38f) - curveToRelative(-0.1f, -0.3f, -0.25f, -0.6f, -0.45f, -0.85f) - close() - moveTo(23.79f, 10.21f) - lineTo(23.02f, 9.96f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, -1.0f, -1.0f) - lineToRelative(-0.25f, -0.76f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, -0.57f, 0.0f) - lineToRelative(-0.25f, 0.77f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, -0.98f, 1.0f) - lineToRelative(-0.77f, 0.24f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.77f, 0.25f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, 1.0f) - lineToRelative(0.24f, 0.77f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.58f, 0.0f) - lineToRelative(0.24f, -0.77f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, -1.0f) - lineToRelative(0.77f, -0.24f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, -0.57f) - horizontalLineToRelative(-0.02f) - close() - moveTo(12.27f, 3.57f) - curveToRelative(0.2f, -0.26f, 0.46f, -0.46f, 0.76f, -0.57f) - lineTo(11.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(1.1f) - arcToRelative(1.57f, 1.57f, 0.0f, false, true, 0.18f, -1.43f) - close() - moveTo(4.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(14.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - close() - moveTo(6.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - close() - moveTo(6.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) - close() - moveTo(17.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - close() - } - } - return _squareHintSparkles!! - } - -private var _squareHintSparkles: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SquareMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SquareMultiple.kt deleted file mode 100644 index 011c2d0c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SquareMultiple.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SquareMultiple: ImageVector - get() { - if (_squareMultiple != null) { - return _squareMultiple!! - } - _squareMultiple = fluentIcon(name = "Filled.SquareMultiple") { - fluentPath { - moveTo(7.52f, 5.0f) - horizontalLineTo(6.0f) - curveToRelative(0.13f, -1.68f, 1.53f, -3.0f, 3.24f, -3.0f) - horizontalLineToRelative(8.0f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 22.0f, 6.75f) - verticalLineToRelative(8.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.0f, 3.24f) - verticalLineToRelative(-1.5f) - curveToRelative(0.85f, -0.13f, 1.5f, -0.86f, 1.5f, -1.74f) - verticalLineToRelative(-8.0f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-8.0f) - curveToRelative(-0.88f, 0.0f, -1.61f, 0.65f, -1.73f, 1.5f) - close() - moveTo(5.25f, 6.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 9.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 20.55f, 3.46f, 22.0f, 5.25f, 22.0f) - horizontalLineToRelative(9.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-9.5f) - curveTo(18.0f, 7.45f, 16.55f, 6.0f, 14.75f, 6.0f) - horizontalLineToRelative(-9.5f) - close() - } - } - return _squareMultiple!! - } - -private var _squareMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Stack.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Stack.kt deleted file mode 100644 index 174a7c88..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Stack.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Stack: ImageVector - get() { - if (_stack != null) { - return _stack!! - } - _stack = fluentIcon(name = "Filled.Stack") { - fluentPath { - moveTo(4.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(11.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(17.0f, 6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - lineTo(4.0f, 4.0f) - close() - moveTo(6.5f, 17.5f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 4.56f, 16.0f) - lineTo(15.5f, 16.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) - lineTo(18.0f, 6.56f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.5f, 1.94f) - verticalLineToRelative(5.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, 4.0f) - horizontalLineToRelative(-9.0f) - close() - moveTo(9.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.94f, -1.5f) - horizontalLineToRelative(9.19f) - curveToRelative(2.35f, 0.0f, 4.25f, -1.9f, 4.25f, -4.25f) - lineTo(20.5f, 9.06f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 22.0f, 11.0f) - verticalLineToRelative(3.25f) - arcTo(5.75f, 5.75f, 0.0f, false, true, 16.25f, 20.0f) - lineTo(9.0f, 20.0f) - close() - } - } - return _stack!! - } - -private var _stack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StackArrowForward.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StackArrowForward.kt deleted file mode 100644 index 99cac8f9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StackArrowForward.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.StackArrowForward: ImageVector - get() { - if (_stackArrowForward != null) { - return _stackArrowForward!! - } - _stackArrowForward = fluentIcon(name = "Filled.StackArrowForward") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, 11.0f) - close() - moveTo(19.35f, 3.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(0.64f, 0.65f) - horizontalLineToRelative(-2.04f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 14.0f, 8.25f) - verticalLineToRelative(0.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-0.25f) - curveTo(15.0f, 7.01f, 16.0f, 6.0f, 17.25f, 6.0f) - horizontalLineToRelative(2.04f) - lineToRelative(-0.64f, 0.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.5f, -1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-1.5f, -1.5f) - close() - moveTo(4.0f, 4.0f) - horizontalLineToRelative(7.5f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, 5.5f, 8.98f) - lineTo(17.0f, 13.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - lineTo(4.0f, 15.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(2.0f, 6.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - close() - moveTo(18.0f, 12.98f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, 1.5f, -0.3f) - verticalLineToRelative(0.82f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, 4.0f) - horizontalLineToRelative(-9.0f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 4.56f, 16.0f) - lineTo(15.5f, 16.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) - verticalLineToRelative(-0.52f) - close() - moveTo(22.0f, 11.19f) - curveToRelative(-0.44f, 0.43f, -0.95f, 0.8f, -1.5f, 1.08f) - verticalLineToRelative(1.98f) - curveToRelative(0.0f, 2.35f, -1.9f, 4.25f, -4.25f, 4.25f) - lineTo(7.06f, 18.5f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 9.0f, 20.0f) - horizontalLineToRelative(7.25f) - arcTo(5.75f, 5.75f, 0.0f, false, false, 22.0f, 14.25f) - verticalLineToRelative(-3.06f) - close() - } - } - return _stackArrowForward!! - } - -private var _stackArrowForward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StackStar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StackStar.kt deleted file mode 100644 index 6f502bdd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StackStar.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.StackStar: ImageVector - get() { - if (_stackStar != null) { - return _stackStar!! - } - _stackStar = fluentIcon(name = "Filled.StackStar") { - fluentPath { - moveTo(4.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(11.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(17.0f, 6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - lineTo(4.0f, 4.0f) - close() - moveTo(9.5f, 6.1f) - curveToRelative(0.19f, 0.0f, 0.36f, 0.1f, 0.45f, 0.28f) - lineToRelative(0.88f, 1.76f) - lineToRelative(1.73f, 0.21f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.26f, 0.88f) - lineToRelative(-1.27f, 1.06f) - lineToRelative(0.44f, 1.95f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.76f, 0.53f) - lineTo(9.5f, 11.7f) - lineToRelative(-1.74f, 1.08f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.75f, -0.53f) - lineToRelative(0.44f, -1.95f) - lineToRelative(-1.27f, -1.06f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.26f, -0.88f) - lineToRelative(1.73f, -0.21f) - lineToRelative(0.88f, -1.76f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.45f, -0.28f) - close() - moveTo(6.5f, 17.5f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 4.56f, 16.0f) - lineTo(15.5f, 16.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) - lineTo(18.0f, 6.56f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.5f, 1.94f) - verticalLineToRelative(5.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, 4.0f) - horizontalLineToRelative(-9.0f) - close() - moveTo(9.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.94f, -1.5f) - horizontalLineToRelative(9.19f) - curveToRelative(2.35f, 0.0f, 4.25f, -1.9f, 4.25f, -4.25f) - lineTo(20.5f, 9.06f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 22.0f, 11.0f) - verticalLineToRelative(3.25f) - arcTo(5.75f, 5.75f, 0.0f, false, true, 16.25f, 20.0f) - lineTo(9.0f, 20.0f) - close() - } - } - return _stackStar!! - } - -private var _stackStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarAdd.kt deleted file mode 100644 index 23adad5d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarAdd.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.StarAdd: ImageVector - get() { - if (_starAdd != null) { - return _starAdd!! - } - _starAdd = fluentIcon(name = "Filled.StarAdd") { - fluentPath { - moveTo(10.79f, 3.1f) - curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) - lineToRelative(2.36f, 4.78f) - lineToRelative(5.27f, 0.77f) - curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) - lineToRelative(-0.9f, 0.88f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -9.44f, 7.43f) - lineToRelative(-3.97f, 2.08f) - arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) - lineToRelative(0.9f, -5.25f) - lineToRelative(-3.81f, -3.72f) - curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) - lineToRelative(5.27f, -0.77f) - lineToRelative(2.36f, -4.78f) - close() - moveTo(22.99f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(17.99f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(16.99f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _starAdd!! - } - -private var _starAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarArrowBack.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarArrowBack.kt deleted file mode 100644 index eec608da..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarArrowBack.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.StarArrowBack: ImageVector - get() { - if (_starArrowBack != null) { - return _starArrowBack!! - } - _starArrowBack = fluentIcon(name = "Filled.StarArrowBack") { - fluentPath { - moveTo(10.79f, 3.1f) - curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) - lineToRelative(2.36f, 4.78f) - lineToRelative(5.27f, 0.77f) - curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) - lineToRelative(-0.9f, 0.88f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -9.44f, 7.43f) - lineToRelative(-3.97f, 2.08f) - arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) - lineToRelative(0.9f, -5.25f) - lineToRelative(-3.81f, -3.72f) - curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) - lineToRelative(5.27f, -0.77f) - lineToRelative(2.36f, -4.78f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(16.35f, 15.35f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(1.5f, 1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-0.64f, -0.65f) - horizontalLineToRelative(2.04f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(0.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-0.25f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-2.04f) - lineToRelative(0.64f, -0.65f) - close() - } - } - return _starArrowBack!! - } - -private var _starArrowBack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarArrowRightEnd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarArrowRightEnd.kt deleted file mode 100644 index 8fe3208b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarArrowRightEnd.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.StarArrowRightEnd: ImageVector - get() { - if (_starArrowRightEnd != null) { - return _starArrowRightEnd!! - } - _starArrowRightEnd = fluentIcon(name = "Filled.StarArrowRightEnd") { - fluentPath { - moveTo(10.79f, 3.1f) - curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) - lineToRelative(2.36f, 4.78f) - lineToRelative(5.27f, 0.77f) - curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) - lineToRelative(-0.9f, 0.88f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -9.44f, 7.43f) - lineToRelative(-3.97f, 2.08f) - arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) - lineToRelative(0.9f, -5.25f) - lineToRelative(-3.81f, -3.72f) - curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) - lineToRelative(5.27f, -0.77f) - lineToRelative(2.36f, -4.78f) - close() - moveTo(22.99f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.49f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.71f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.7f, 0.7f) - lineTo(19.28f, 17.0f) - horizontalLineToRelative(-4.8f) - close() - } - } - return _starArrowRightEnd!! - } - -private var _starArrowRightEnd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarArrowRightStart.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarArrowRightStart.kt deleted file mode 100644 index 5251612e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarArrowRightStart.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.StarArrowRightStart: ImageVector - get() { - if (_starArrowRightStart != null) { - return _starArrowRightStart!! - } - _starArrowRightStart = fluentIcon(name = "Filled.StarArrowRightStart") { - fluentPath { - moveTo(10.79f, 3.1f) - curveToRelative(0.5f, -1.0f, 1.93f, -1.0f, 2.42f, 0.0f) - lineToRelative(2.36f, 4.78f) - lineToRelative(5.27f, 0.77f) - curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) - lineToRelative(-3.82f, 3.72f) - lineToRelative(0.9f, 5.25f) - arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.95f, 1.42f) - lineToRelative(-3.96f, -2.08f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -9.44f, -7.43f) - lineToRelative(-0.9f, -0.88f) - curveToRelative(-0.81f, -0.78f, -0.37f, -2.14f, 0.74f, -2.3f) - lineToRelative(5.27f, -0.77f) - lineTo(10.8f, 3.1f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(3.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.7f, 0.7f) - lineTo(8.29f, 17.0f) - horizontalLineTo(3.5f) - close() - } - } - return _starArrowRightStart!! - } - -private var _starArrowRightStart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarDismiss.kt deleted file mode 100644 index 800e01be..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarDismiss.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.StarDismiss: ImageVector - get() { - if (_starDismiss != null) { - return _starDismiss!! - } - _starDismiss = fluentIcon(name = "Filled.StarDismiss") { - fluentPath { - moveTo(10.79f, 3.1f) - curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) - lineToRelative(2.36f, 4.78f) - lineToRelative(5.27f, 0.77f) - curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) - lineToRelative(-0.9f, 0.88f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -9.44f, 7.43f) - lineToRelative(-3.97f, 2.08f) - arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) - lineToRelative(0.9f, -5.25f) - lineToRelative(-3.81f, -3.72f) - curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) - lineToRelative(5.27f, -0.77f) - lineToRelative(2.36f, -4.78f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-1.64f, -1.65f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.65f, 1.64f) - lineToRelative(-1.65f, -1.64f) - close() - } - } - return _starDismiss!! - } - -private var _starDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarEdit.kt deleted file mode 100644 index df6f3d52..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarEdit.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.StarEdit: ImageVector - get() { - if (_starEdit != null) { - return _starEdit!! - } - _starEdit = fluentIcon(name = "Filled.StarEdit") { - fluentPath { - moveTo(13.2f, 3.1f) - curveToRelative(-0.49f, -1.0f, -1.92f, -1.0f, -2.41f, 0.0f) - lineTo(8.43f, 7.88f) - lineToRelative(-5.27f, 0.77f) - arcToRelative(1.35f, 1.35f, 0.0f, false, false, -0.75f, 2.3f) - lineToRelative(3.81f, 3.72f) - lineToRelative(-0.9f, 5.25f) - arcToRelative(1.35f, 1.35f, 0.0f, false, false, 1.96f, 1.42f) - lineToRelative(2.94f, -1.54f) - lineToRelative(0.3f, -1.22f) - curveToRelative(0.17f, -0.65f, 0.5f, -1.24f, 0.98f, -1.72f) - lineToRelative(5.9f, -5.9f) - arcToRelative(3.28f, 3.28f, 0.0f, false, true, 4.37f, -0.23f) - curveToRelative(0.53f, -0.8f, 0.08f, -1.94f, -0.93f, -2.08f) - lineToRelative(-5.27f, -0.77f) - lineTo(13.2f, 3.1f) - close() - moveTo(18.1f, 11.67f) - lineTo(12.2f, 17.57f) - curveToRelative(-0.34f, 0.35f, -0.58f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.46f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.24f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _starEdit!! - } - -private var _starEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarEmphasis.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarEmphasis.kt deleted file mode 100644 index 5b6b4be3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarEmphasis.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.StarEmphasis: ImageVector - get() { - if (_starEmphasis != null) { - return _starEmphasis!! - } - _starEmphasis = fluentIcon(name = "Filled.StarEmphasis") { - fluentPath { - moveTo(13.21f, 3.1f) - curveToRelative(-0.5f, -1.0f, -1.93f, -1.0f, -2.42f, 0.0f) - lineTo(8.43f, 7.88f) - lineToRelative(-5.27f, 0.77f) - arcToRelative(1.35f, 1.35f, 0.0f, false, false, -0.75f, 2.3f) - lineToRelative(3.82f, 3.72f) - lineToRelative(-0.9f, 5.25f) - arcToRelative(1.35f, 1.35f, 0.0f, false, false, 1.95f, 1.42f) - lineTo(12.0f, 18.86f) - lineToRelative(4.72f, 2.48f) - curveToRelative(0.99f, 0.52f, 2.14f, -0.32f, 1.96f, -1.42f) - lineToRelative(-0.9f, -5.25f) - lineToRelative(3.81f, -3.72f) - curveToRelative(0.8f, -0.78f, 0.36f, -2.14f, -0.75f, -2.3f) - lineToRelative(-5.27f, -0.77f) - lineTo(13.2f, 3.1f) - close() - moveTo(1.16f, 3.78f) - curveToRelative(-0.25f, 0.32f, -0.2f, 0.8f, 0.12f, 1.06f) - lineToRelative(2.5f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.94f, -1.18f) - lineToRelative(-2.5f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.12f) - close() - moveTo(22.84f, 18.22f) - curveToRelative(0.25f, -0.33f, 0.2f, -0.8f, -0.12f, -1.06f) - lineToRelative(-2.5f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.94f, 1.18f) - lineToRelative(2.5f, 2.0f) - curveToRelative(0.32f, 0.25f, 0.8f, 0.2f, 1.06f, -0.12f) - close() - moveTo(1.28f, 17.16f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.94f, 1.18f) - lineToRelative(2.5f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.94f, -1.18f) - lineToRelative(-2.5f, 2.0f) - close() - moveTo(22.84f, 3.78f) - curveToRelative(0.25f, 0.32f, 0.2f, 0.8f, -0.12f, 1.06f) - lineToRelative(-2.5f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.94f, -1.18f) - lineToRelative(2.5f, -2.0f) - curveToRelative(0.32f, -0.25f, 0.8f, -0.2f, 1.06f, 0.12f) - close() - } - } - return _starEmphasis!! - } - -private var _starEmphasis: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarHalf.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarHalf.kt deleted file mode 100644 index a6f1c373..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarHalf.kt +++ /dev/null @@ -1,33 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.StarHalf: ImageVector - get() { - if (_starHalf != null) { - return _starHalf!! - } - _starHalf = fluentIcon(name = "Filled.StarHalf") { - fluentPath { - moveTo(12.0f, 2.35f) - curveToRelative(-0.48f, 0.0f, -0.96f, 0.25f, -1.21f, 0.75f) - lineTo(8.43f, 7.88f) - lineToRelative(-5.27f, 0.77f) - arcToRelative(1.35f, 1.35f, 0.0f, false, false, -0.75f, 2.3f) - lineToRelative(3.81f, 3.72f) - lineToRelative(-0.9f, 5.25f) - arcToRelative(1.35f, 1.35f, 0.0f, false, false, 1.96f, 1.42f) - lineTo(12.0f, 18.86f) - verticalLineTo(2.35f) - close() - } - } - return _starHalf!! - } - -private var _starHalf: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarLineHorizontal3.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarLineHorizontal3.kt deleted file mode 100644 index 15eb7c98..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarLineHorizontal3.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.StarLineHorizontal3: ImageVector - get() { - if (_starLineHorizontal3 != null) { - return _starLineHorizontal3!! - } - _starLineHorizontal3 = fluentIcon(name = "Filled.StarLineHorizontal3") { - fluentPath { - moveTo(10.79f, 3.1f) - curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) - lineToRelative(1.69f, 3.43f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.68f, 4.22f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.77f, 3.35f) - lineToRelative(-6.17f, 3.24f) - arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) - lineToRelative(0.9f, -5.25f) - lineToRelative(-3.81f, -3.72f) - curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) - lineToRelative(5.27f, -0.77f) - lineToRelative(2.36f, -4.78f) - close() - moveTo(14.5f, 16.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(14.5f, 12.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(14.5f, 8.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _starLineHorizontal3!! - } - -private var _starLineHorizontal3: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarOff.kt deleted file mode 100644 index 1d238fd5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarOff.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.StarOff: ImageVector - get() { - if (_starOff != null) { - return _starOff!! - } - _starOff = fluentIcon(name = "Filled.StarOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(4.8f, 4.8f) - lineToRelative(-3.86f, 0.57f) - arcToRelative(1.35f, 1.35f, 0.0f, false, false, -0.75f, 2.3f) - lineToRelative(3.82f, 3.72f) - lineToRelative(-0.9f, 5.25f) - arcToRelative(1.35f, 1.35f, 0.0f, false, false, 1.95f, 1.42f) - lineTo(12.0f, 18.86f) - lineToRelative(4.72f, 2.48f) - curveToRelative(0.99f, 0.52f, 2.14f, -0.32f, 1.96f, -1.42f) - lineToRelative(-0.04f, -0.22f) - lineToRelative(2.08f, 2.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(21.59f, 10.95f) - lineTo(17.81f, 14.63f) - lineTo(9.31f, 6.12f) - lineTo(10.79f, 3.1f) - curveToRelative(0.5f, -1.0f, 1.93f, -1.0f, 2.42f, 0.0f) - lineToRelative(2.36f, 4.78f) - lineToRelative(5.27f, 0.77f) - curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) - close() - } - } - return _starOff!! - } - -private var _starOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarOneQuarter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarOneQuarter.kt deleted file mode 100644 index e3378370..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarOneQuarter.kt +++ /dev/null @@ -1,32 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.StarOneQuarter: ImageVector - get() { - if (_starOneQuarter != null) { - return _starOneQuarter!! - } - _starOneQuarter = fluentIcon(name = "Filled.StarOneQuarter") { - fluentPath { - moveToRelative(9.0f, 6.72f) - lineToRelative(-0.57f, 1.16f) - lineToRelative(-5.27f, 0.77f) - arcToRelative(1.35f, 1.35f, 0.0f, false, false, -0.75f, 2.3f) - lineToRelative(3.81f, 3.72f) - lineToRelative(-0.9f, 5.25f) - arcToRelative(1.35f, 1.35f, 0.0f, false, false, 1.96f, 1.42f) - lineToRelative(1.72f, -0.9f) - verticalLineTo(6.72f) - close() - } - } - return _starOneQuarter!! - } - -private var _starOneQuarter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarProhibited.kt deleted file mode 100644 index d98e4ed7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarProhibited.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.StarProhibited: ImageVector - get() { - if (_starProhibited != null) { - return _starProhibited!! - } - _starProhibited = fluentIcon(name = "Filled.StarProhibited") { - fluentPath { - moveTo(10.79f, 3.1f) - curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) - lineToRelative(2.36f, 4.78f) - lineToRelative(5.27f, 0.77f) - curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) - lineToRelative(-0.9f, 0.88f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -9.44f, 7.43f) - lineToRelative(-3.97f, 2.08f) - arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) - lineToRelative(0.9f, -5.25f) - lineToRelative(-3.81f, -3.72f) - curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) - lineToRelative(5.27f, -0.77f) - lineToRelative(2.36f, -4.78f) - close() - moveTo(22.99f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(13.49f, 17.5f) - curveToRelative(0.0f, 0.83f, 0.26f, 1.6f, 0.7f, 2.25f) - lineToRelative(5.56f, -5.56f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) - close() - moveTo(17.49f, 21.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.32f, -6.25f) - lineToRelative(-5.56f, 5.56f) - curveToRelative(0.64f, 0.43f, 1.41f, 0.69f, 2.25f, 0.69f) - close() - } - } - return _starProhibited!! - } - -private var _starProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarSettings.kt deleted file mode 100644 index 44c89d13..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarSettings.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.StarSettings: ImageVector - get() { - if (_starSettings != null) { - return _starSettings!! - } - _starSettings = fluentIcon(name = "Filled.StarSettings") { - fluentPath { - moveTo(10.79f, 3.1f) - curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) - lineToRelative(2.36f, 4.78f) - lineToRelative(5.27f, 0.77f) - curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) - lineToRelative(-0.9f, 0.88f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -9.44f, 7.43f) - lineToRelative(-3.97f, 2.08f) - arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) - lineToRelative(0.9f, -5.25f) - lineToRelative(-3.81f, -3.72f) - curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) - lineToRelative(5.27f, -0.77f) - lineToRelative(2.36f, -4.78f) - close() - moveTo(14.28f, 13.97f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.59f, 0.15f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) - lineToRelative(0.55f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) - lineToRelative(-0.19f, 0.63f) - curveToRelative(0.44f, 0.39f, 0.94f, 0.7f, 1.49f, 0.93f) - lineToRelative(0.49f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) - lineToRelative(-0.2f, -0.69f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) - lineToRelative(0.59f, -0.14f) - arcToRelative(5.72f, 5.72f, 0.0f, false, false, 0.0f, -1.8f) - lineToRelative(-0.55f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.19f, -0.64f) - curveToRelative(-0.44f, -0.38f, -0.94f, -0.7f, -1.49f, -0.92f) - lineToRelative(-0.49f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) - lineToRelative(0.2f, 0.7f) - close() - moveTo(17.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) - close() - } - } - return _starSettings!! - } - -private var _starSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarThreeQuarter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarThreeQuarter.kt deleted file mode 100644 index 514ce335..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StarThreeQuarter.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.StarThreeQuarter: ImageVector - get() { - if (_starThreeQuarter != null) { - return _starThreeQuarter!! - } - _starThreeQuarter = fluentIcon(name = "Filled.StarThreeQuarter") { - fluentPath { - moveTo(15.0f, 6.73f) - lineTo(13.21f, 3.1f) - curveToRelative(-0.25f, -0.5f, -0.73f, -0.75f, -1.21f, -0.75f) - reflectiveCurveToRelative(-0.96f, 0.25f, -1.21f, 0.75f) - lineTo(8.43f, 7.88f) - lineToRelative(-5.27f, 0.77f) - arcToRelative(1.35f, 1.35f, 0.0f, false, false, -0.75f, 2.3f) - lineToRelative(3.81f, 3.72f) - lineToRelative(-0.9f, 5.25f) - arcToRelative(1.35f, 1.35f, 0.0f, false, false, 1.96f, 1.42f) - lineTo(12.0f, 18.86f) - lineToRelative(3.0f, 1.58f) - verticalLineTo(6.73f) - close() - } - } - return _starThreeQuarter!! - } - -private var _starThreeQuarter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Status.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Status.kt deleted file mode 100644 index fd574f48..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Status.kt +++ /dev/null @@ -1,41 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Status: ImageVector - get() { - if (_status != null) { - return _status!! - } - _status = fluentIcon(name = "Filled.Status") { - fluentPath { - moveTo(12.0f, 3.0f) - curveToRelative(1.25f, 0.0f, 2.44f, 0.25f, 3.52f, 0.71f) - lineToRelative(-1.16f, 1.17f) - arcToRelative(7.5f, 7.5f, 0.0f, true, false, 4.78f, 4.82f) - lineToRelative(1.17f, -1.17f) - arcTo(9.0f, 9.0f, 0.0f, true, true, 12.0f, 3.0f) - close() - moveTo(21.16f, 2.57f) - lineTo(21.3f, 2.7f) - arcToRelative(2.4f, 2.4f, 0.0f, false, true, 0.0f, 3.4f) - lineToRelative(-6.75f, 6.81f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.4f, 0.25f) - lineTo(9.8f, 14.53f) - arcToRelative(0.2f, 0.2f, 0.0f, false, true, -0.25f, -0.25f) - lineToRelative(1.37f, -4.35f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.24f, -0.4f) - lineToRelative(6.76f, -6.82f) - curveToRelative(0.88f, -0.9f, 2.3f, -0.94f, 3.24f, -0.14f) - close() - } - } - return _status!! - } - -private var _status: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Steps.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Steps.kt deleted file mode 100644 index 9aea8e93..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Steps.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Steps: ImageVector - get() { - if (_steps != null) { - return _steps!! - } - _steps = fluentIcon(name = "Filled.Steps") { - fluentPath { - moveTo(12.0f, 3.38f) - curveToRelative(0.0f, -0.76f, 0.62f, -1.38f, 1.38f, -1.38f) - horizontalLineToRelative(3.74f) - curveToRelative(0.76f, 0.0f, 1.38f, 0.62f, 1.38f, 1.38f) - lineTo(18.5f, 9.0f) - lineTo(17.0f, 9.0f) - lineTo(17.0f, 3.5f) - horizontalLineToRelative(-3.5f) - verticalLineToRelative(3.63f) - curveToRelative(0.0f, 0.75f, -0.62f, 1.37f, -1.38f, 1.37f) - lineTo(8.5f, 8.5f) - verticalLineToRelative(3.63f) - curveToRelative(0.0f, 0.75f, -0.62f, 1.37f, -1.38f, 1.37f) - lineTo(3.5f, 13.5f) - lineTo(3.5f, 17.0f) - lineTo(9.0f, 17.0f) - verticalLineToRelative(1.5f) - lineTo(3.37f, 18.5f) - curveToRelative(-0.75f, 0.0f, -1.37f, -0.62f, -1.37f, -1.38f) - verticalLineToRelative(-3.75f) - curveToRelative(0.0f, -0.75f, 0.62f, -1.37f, 1.38f, -1.37f) - lineTo(7.0f, 12.0f) - lineTo(7.0f, 8.37f) - curveTo(7.0f, 7.63f, 7.62f, 7.0f, 8.38f, 7.0f) - lineTo(12.0f, 7.0f) - lineTo(12.0f, 3.37f) - close() - moveTo(15.0f, 11.38f) - curveToRelative(0.0f, -0.76f, 0.62f, -1.38f, 1.38f, -1.38f) - horizontalLineToRelative(3.75f) - curveToRelative(0.75f, 0.0f, 1.37f, 0.62f, 1.37f, 1.38f) - verticalLineToRelative(6.87f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-6.88f) - curveToRelative(-0.75f, 0.0f, -1.37f, -0.62f, -1.37f, -1.38f) - verticalLineToRelative(-3.75f) - curveToRelative(0.0f, -0.75f, 0.62f, -1.37f, 1.38f, -1.37f) - lineTo(15.0f, 15.0f) - verticalLineToRelative(-3.63f) - close() - } - } - return _steps!! - } - -private var _steps: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Stethoscope.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Stethoscope.kt deleted file mode 100644 index e3ff2eb3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Stethoscope.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Stethoscope: ImageVector - get() { - if (_stethoscope != null) { - return _stethoscope!! - } - _stethoscope = fluentIcon(name = "Filled.Stethoscope") { - fluentPath { - moveTo(3.0f, 2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - lineTo(2.0f, 9.0f) - curveToRelative(0.0f, 1.74f, 0.61f, 3.26f, 1.71f, 4.34f) - curveToRelative(0.87f, 0.86f, 2.01f, 1.4f, 3.29f, 1.59f) - verticalLineToRelative(0.82f) - arcToRelative(6.25f, 6.25f, 0.0f, true, false, 12.5f, 0.0f) - verticalLineToRelative(-0.66f) - arcToRelative(3.25f, 3.25f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(0.66f) - arcToRelative(4.25f, 4.25f, 0.0f, true, true, -8.5f, 0.0f) - verticalLineToRelative(-0.82f) - arcToRelative(5.82f, 5.82f, 0.0f, false, false, 3.29f, -1.6f) - arcTo(5.97f, 5.97f, 0.0f, false, false, 14.0f, 9.0f) - lineTo(14.0f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(1.0f) - lineTo(12.0f, 9.0f) - curveToRelative(0.0f, 1.26f, -0.44f, 2.24f, -1.11f, 2.91f) - arcTo(4.02f, 4.02f, 0.0f, false, true, 8.0f, 13.0f) - curveToRelative(-1.22f, 0.0f, -2.2f, -0.42f, -2.89f, -1.09f) - arcTo(3.98f, 3.98f, 0.0f, false, true, 4.0f, 9.0f) - lineTo(4.0f, 4.5f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - lineTo(3.0f, 2.5f) - close() - moveTo(18.5f, 10.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - } - } - return _stethoscope!! - } - -private var _stethoscope: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Sticker.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Sticker.kt deleted file mode 100644 index 595ceec6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Sticker.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Sticker: ImageVector - get() { - if (_sticker != null) { - return _sticker!! - } - _sticker = fluentIcon(name = "Filled.Sticker") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - lineTo(21.0f, 13.0f) - horizontalLineToRelative(-4.96f) - curveToRelative(-1.2f, 0.08f, -2.22f, 0.81f, -2.72f, 1.84f) - arcToRelative(5.05f, 5.05f, 0.0f, false, true, -4.14f, -0.7f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.86f, 1.23f) - arcToRelative(6.33f, 6.33f, 0.0f, false, false, 4.35f, 1.1f) - lineToRelative(0.33f, -0.03f) - lineTo(13.0f, 21.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(20.35f, 14.72f) - lineTo(14.72f, 20.34f) - lineTo(14.5f, 20.54f) - lineTo(14.5f, 16.1f) - curveToRelative(0.08f, -0.85f, 0.75f, -1.53f, 1.6f, -1.6f) - lineToRelative(0.15f, -0.01f) - horizontalLineToRelative(4.28f) - lineToRelative(-0.19f, 0.22f) - close() - moveTo(9.0f, 7.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(15.0f, 7.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - } - } - return _sticker!! - } - -private var _sticker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StickerAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StickerAdd.kt deleted file mode 100644 index a0f4fbf9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StickerAdd.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.StickerAdd: ImageVector - get() { - if (_stickerAdd != null) { - return _stickerAdd!! - } - _stickerAdd = fluentIcon(name = "Filled.StickerAdd") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(17.5f, 14.0f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) - lineToRelative(-0.01f, 0.1f) - lineTo(17.0f, 17.0f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(0.18f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) - lineToRelative(0.1f, 0.01f) - lineTo(17.0f, 18.0f) - verticalLineToRelative(2.6f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - horizontalLineToRelative(0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) - lineToRelative(0.01f, -0.1f) - lineTo(18.0f, 18.0f) - horizontalLineToRelative(2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - verticalLineToRelative(-0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) - lineToRelative(-0.1f, -0.01f) - lineTo(18.0f, 17.0f) - verticalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) - horizontalLineToRelative(-0.09f) - close() - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(5.77f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -9.5f, 2.96f) - arcToRelative(4.78f, 4.78f, 0.0f, false, true, -2.32f, -0.84f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.86f, 1.23f) - arcToRelative(6.3f, 6.3f, 0.0f, false, false, 2.77f, 1.08f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, 0.93f, 4.55f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(9.0f, 7.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(15.0f, 7.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - } - } - return _stickerAdd!! - } - -private var _stickerAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Stop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Stop.kt deleted file mode 100644 index 12738a19..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Stop.kt +++ /dev/null @@ -1,32 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Stop: ImageVector - get() { - if (_stop != null) { - return _stop!! - } - _stop = fluentIcon(name = "Filled.Stop") { - fluentPath { - moveTo(4.75f, 3.0f) - curveTo(3.78f, 3.0f, 3.0f, 3.78f, 3.0f, 4.75f) - verticalLineToRelative(14.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(14.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineTo(4.75f) - curveTo(21.0f, 3.78f, 20.22f, 3.0f, 19.25f, 3.0f) - horizontalLineTo(4.75f) - close() - } - } - return _stop!! - } - -private var _stop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Storage.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Storage.kt deleted file mode 100644 index 58a60762..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Storage.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Storage: ImageVector - get() { - if (_storage != null) { - return _storage!! - } - _storage = fluentIcon(name = "Filled.Storage") { - fluentPath { - moveTo(5.0f, 7.0f) - horizontalLineToRelative(14.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) - lineTo(22.0f, 14.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.82f, 3.0f) - lineTo(5.0f, 17.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -2.82f) - lineTo(2.0f, 10.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.82f, -3.0f) - lineTo(19.0f, 7.0f) - lineTo(5.0f, 7.0f) - close() - moveTo(18.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(14.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - } - } - return _storage!! - } - -private var _storage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StoreMicrosoft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StoreMicrosoft.kt deleted file mode 100644 index a17ac4d8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StoreMicrosoft.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.StoreMicrosoft: ImageVector - get() { - if (_storeMicrosoft != null) { - return _storeMicrosoft!! - } - _storeMicrosoft = fluentIcon(name = "Filled.StoreMicrosoft") { - fluentPath { - moveTo(8.0f, 3.75f) - lineTo(8.0f, 6.0f) - lineTo(2.75f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(11.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 21.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 18.25f) - lineTo(22.0f, 6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(16.0f, 6.0f) - lineTo(16.0f, 3.75f) - curveTo(16.0f, 2.78f, 15.22f, 2.0f, 14.25f, 2.0f) - horizontalLineToRelative(-4.5f) - curveTo(8.78f, 2.0f, 8.0f, 2.78f, 8.0f, 3.75f) - close() - moveTo(9.75f, 3.5f) - horizontalLineToRelative(4.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - lineTo(14.5f, 6.0f) - horizontalLineToRelative(-5.0f) - lineTo(9.5f, 3.75f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - close() - moveTo(8.0f, 13.0f) - lineTo(8.0f, 9.5f) - horizontalLineToRelative(3.5f) - lineTo(11.5f, 13.0f) - lineTo(8.0f, 13.0f) - close() - moveTo(8.0f, 17.5f) - lineTo(8.0f, 14.0f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(3.5f) - lineTo(8.0f, 17.5f) - close() - moveTo(16.0f, 13.0f) - horizontalLineToRelative(-3.5f) - lineTo(12.5f, 9.5f) - lineTo(16.0f, 9.5f) - lineTo(16.0f, 13.0f) - close() - moveTo(12.5f, 17.5f) - lineTo(12.5f, 14.0f) - lineTo(16.0f, 14.0f) - verticalLineToRelative(3.5f) - horizontalLineToRelative(-3.5f) - close() - } - } - return _storeMicrosoft!! - } - -private var _storeMicrosoft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Stream.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Stream.kt deleted file mode 100644 index 315deb63..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Stream.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Stream: ImageVector - get() { - if (_stream != null) { - return _stream!! - } - _stream = fluentIcon(name = "Filled.Stream") { - fluentPath { - moveTo(9.0f, 11.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, 7.0f, -7.0f) - horizontalLineToRelative(1.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(16.0f, 2.0f) - arcToRelative(9.0f, 9.0f, 0.0f, false, false, -9.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - lineTo(3.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) - close() - moveTo(17.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, 4.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, -6.0f, 6.0f) - lineTo(3.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(4.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, -4.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 6.0f, -6.0f) - horizontalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(18.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - arcToRelative(9.0f, 9.0f, 0.0f, false, true, -9.0f, 9.0f) - lineTo(6.0f, 22.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(2.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, false, 7.0f, -7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-3.0f) - close() - } - } - return _stream!! - } - -private var _stream: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StyleGuide.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StyleGuide.kt deleted file mode 100644 index c98714a9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/StyleGuide.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.StyleGuide: ImageVector - get() { - if (_styleGuide != null) { - return _styleGuide!! - } - _styleGuide = fluentIcon(name = "Filled.StyleGuide") { - fluentPath { - moveToRelative(17.4f, 4.72f) - lineToRelative(2.72f, 10.14f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -1.94f, 3.37f) - lineToRelative(-6.28f, 1.69f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -3.37f, -1.95f) - lineTo(5.8f, 7.83f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 1.95f, -3.37f) - lineToRelative(6.27f, -1.68f) - curveToRelative(1.47f, -0.4f, 2.98f, 0.48f, 3.37f, 1.94f) - close() - moveTo(10.96f, 7.74f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.93f, 0.52f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.93f, -0.52f) - close() - moveTo(5.8f, 11.66f) - lineToRelative(1.76f, 6.57f) - curveToRelative(0.18f, 0.67f, 0.54f, 1.26f, 1.0f, 1.71f) - lineToRelative(-0.44f, -0.02f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.6f, -2.9f) - lineToRelative(0.28f, -5.36f) - close() - moveTo(4.88f, 10.18f) - lineTo(4.52f, 16.98f) - curveToRelative(-0.04f, 0.7f, 0.12f, 1.36f, 0.43f, 1.94f) - lineToRelative(-0.42f, -0.16f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -1.58f, -3.56f) - lineToRelative(1.93f, -5.02f) - close() - } - } - return _styleGuide!! - } - -private var _styleGuide: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SubGrid.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SubGrid.kt deleted file mode 100644 index 72b0317a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SubGrid.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SubGrid: ImageVector - get() { - if (_subGrid != null) { - return _subGrid!! - } - _subGrid = fluentIcon(name = "Filled.SubGrid") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(5.0f) - lineTo(11.25f, 7.0f) - horizontalLineToRelative(-1.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 7.0f, 9.75f) - verticalLineToRelative(1.5f) - lineTo(4.5f, 11.25f) - verticalLineToRelative(-5.0f) - close() - moveTo(7.0f, 12.75f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(4.25f) - lineTo(11.25f, 7.0f) - horizontalLineToRelative(1.5f) - verticalLineToRelative(4.25f) - lineTo(17.0f, 11.25f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(-4.25f) - lineTo(12.75f, 17.0f) - horizontalLineToRelative(-1.5f) - verticalLineToRelative(-4.25f) - lineTo(7.0f, 12.75f) - close() - moveTo(7.0f, 12.75f) - verticalLineToRelative(1.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 9.75f, 17.0f) - horizontalLineToRelative(1.5f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(-5.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-5.0f) - lineTo(7.0f, 12.75f) - close() - moveTo(12.75f, 17.0f) - horizontalLineToRelative(1.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 17.0f, 14.25f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-5.0f) - lineTo(12.75f, 17.0f) - close() - moveTo(17.0f, 11.25f) - verticalLineToRelative(-1.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 14.25f, 7.0f) - horizontalLineToRelative(-1.5f) - lineTo(12.75f, 4.5f) - horizontalLineToRelative(5.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(5.0f) - lineTo(17.0f, 11.25f) - close() - } - } - return _subGrid!! - } - -private var _subGrid: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Subtitles.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Subtitles.kt deleted file mode 100644 index a8d0c000..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Subtitles.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Subtitles: ImageVector - get() { - if (_subtitles != null) { - return _subtitles!! - } - _subtitles = fluentIcon(name = "Filled.Subtitles") { - fluentPath { - moveTo(2.0f, 7.25f) - curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) - horizontalLineToRelative(13.5f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(5.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - close() - moveTo(5.0f, 13.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(15.75f, 12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.5f) - close() - moveTo(5.0f, 16.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(11.75f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.5f) - close() - } - } - return _subtitles!! - } - -private var _subtitles: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SubtractCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SubtractCircle.kt deleted file mode 100644 index dd4fd5b1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SubtractCircle.kt +++ /dev/null @@ -1,32 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SubtractCircle: ImageVector - get() { - if (_subtractCircle != null) { - return _subtractCircle!! - } - _subtractCircle = fluentIcon(name = "Filled.SubtractCircle") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(7.75f, 11.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - horizontalLineToRelative(8.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - horizontalLineToRelative(-8.6f) - close() - } - } - return _subtractCircle!! - } - -private var _subtractCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SubtractSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SubtractSquare.kt deleted file mode 100644 index 6275f52e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SubtractSquare.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SubtractSquare: ImageVector - get() { - if (_subtractSquare != null) { - return _subtractSquare!! - } - _subtractSquare = fluentIcon(name = "Filled.SubtractSquare") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.45f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(16.25f, 11.25f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - } - } - return _subtractSquare!! - } - -private var _subtractSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SurfaceEarbuds.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SurfaceEarbuds.kt deleted file mode 100644 index d02de72a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SurfaceEarbuds.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SurfaceEarbuds: ImageVector - get() { - if (_surfaceEarbuds != null) { - return _surfaceEarbuds!! - } - _surfaceEarbuds = fluentIcon(name = "Filled.SurfaceEarbuds") { - fluentPath { - moveTo(10.11f, 17.24f) - arcToRelative(7.0f, 7.0f, 0.0f, false, false, 3.41f, 4.84f) - lineToRelative(-2.47f, 0.82f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.32f, -0.83f) - lineToRelative(-0.43f, -0.69f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.22f, -2.42f) - lineToRelative(1.59f, -1.72f) - close() - moveTo(17.0f, 10.0f) - arcToRelative(6.0f, 6.0f, 0.0f, true, true, 0.0f, 12.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 0.0f, -12.0f) - close() - moveTo(7.0f, 1.0f) - curveToRelative(0.21f, 0.0f, 0.43f, 0.01f, 0.63f, 0.03f) - lineToRelative(-0.35f, 0.12f) - arcTo(4.53f, 4.53f, 0.0f, false, false, 4.7f, 7.92f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 7.16f, 0.58f) - lineTo(13.0f, 7.3f) - arcTo(6.0f, 6.0f, 0.0f, true, true, 7.0f, 1.0f) - close() - moveTo(12.8f, 1.65f) - lineTo(12.9f, 1.78f) - lineTo(13.0f, 1.91f) - lineTo(13.64f, 2.93f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.11f, 2.3f) - lineToRelative(-0.11f, 0.14f) - lineToRelative(-2.29f, 2.45f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, -4.5f, -5.3f) - curveToRelative(0.31f, -0.19f, 0.64f, -0.33f, 0.97f, -0.42f) - lineToRelative(3.08f, -1.02f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.12f, 0.57f) - close() - moveTo(10.35f, 3.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.26f, 0.95f) - lineToRelative(0.05f, 0.1f) - lineToRelative(0.27f, 0.39f) - lineToRelative(0.06f, 0.09f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.24f, -0.83f) - lineToRelative(-0.06f, -0.1f) - lineToRelative(-0.26f, -0.38f) - lineToRelative(-0.07f, -0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, -0.11f) - close() - } - } - return _surfaceEarbuds!! - } - -private var _surfaceEarbuds: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SurfaceHub.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SurfaceHub.kt deleted file mode 100644 index 1612eb98..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SurfaceHub.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SurfaceHub: ImageVector - get() { - if (_surfaceHub != null) { - return _surfaceHub!! - } - _surfaceHub = fluentIcon(name = "Filled.SurfaceHub") { - fluentPath { - moveTo(19.25f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.74f, 0.33f, 0.75f, 0.73f) - verticalLineToRelative(0.1f) - lineToRelative(-1.0f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, 0.66f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-0.73f) - lineTo(19.0f, 21.12f) - verticalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.45f, 0.26f) - lineToRelative(-0.03f, -0.1f) - lineTo(16.9f, 18.0f) - horizontalLineToRelative(-2.8f) - lineToRelative(-0.6f, 3.38f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, -0.16f) - lineToRelative(0.02f, -0.1f) - lineToRelative(0.56f, -3.12f) - lineTo(8.1f, 18.0f) - lineToRelative(-0.6f, 3.38f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, -0.16f) - lineToRelative(0.02f, -0.1f) - lineTo(7.48f, 13.0f) - lineTo(4.75f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.73f) - verticalLineToRelative(-0.1f) - lineToRelative(1.0f, -9.5f) - curveToRelative(0.04f, -0.35f, 0.31f, -0.62f, 0.65f, -0.66f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(13.5f) - close() - moveTo(13.48f, 13.0f) - lineTo(9.0f, 13.0f) - lineToRelative(-0.63f, 3.5f) - horizontalLineToRelative(4.48f) - lineToRelative(0.63f, -3.5f) - close() - moveTo(16.0f, 13.0f) - horizontalLineToRelative(-1.0f) - lineToRelative(-0.63f, 3.5f) - horizontalLineToRelative(2.26f) - lineTo(16.0f, 13.0f) - close() - } - } - return _surfaceHub!! - } - -private var _surfaceHub: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SwimmingPool.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SwimmingPool.kt deleted file mode 100644 index a40617c0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SwimmingPool.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SwimmingPool: ImageVector - get() { - if (_swimmingPool != null) { - return _swimmingPool!! - } - _swimmingPool = fluentIcon(name = "Filled.SwimmingPool") { - fluentPath { - moveTo(6.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - verticalLineToRelative(6.03f) - curveToRelative(0.63f, 0.06f, 1.3f, 0.19f, 2.0f, 0.41f) - lineTo(10.0f, 11.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(3.48f) - curveToRelative(0.8f, 0.0f, 1.48f, -0.17f, 2.0f, -0.35f) - lineTo(18.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -6.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(-6.0f) - lineTo(10.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -6.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(6.6f, 15.02f) - curveToRelative(-1.03f, 0.13f, -1.7f, 0.55f, -2.0f, 0.77f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.2f, -1.6f) - curveToRelative(0.49f, -0.37f, 1.49f, -0.97f, 2.95f, -1.15f) - arcToRelative(8.87f, 8.87f, 0.0f, false, true, 5.51f, 1.32f) - arcToRelative(7.5f, 7.5f, 0.0f, false, false, 7.63f, 0.18f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.02f, 1.72f) - arcToRelative(9.49f, 9.49f, 0.0f, false, true, -9.64f, -0.17f) - curveTo(9.03f, 15.05f, 7.6f, 14.9f, 6.6f, 15.02f) - close() - moveTo(4.6f, 19.79f) - curveToRelative(0.3f, -0.22f, 0.97f, -0.64f, 2.0f, -0.77f) - curveToRelative(1.0f, -0.12f, 2.43f, 0.03f, 4.27f, 1.07f) - arcToRelative(9.49f, 9.49f, 0.0f, false, false, 9.64f, 0.17f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.02f, -1.72f) - arcToRelative(7.5f, 7.5f, 0.0f, false, true, -7.63f, -0.18f) - arcToRelative(8.87f, 8.87f, 0.0f, false, false, -5.51f, -1.32f) - arcToRelative(6.14f, 6.14f, 0.0f, false, false, -2.96f, 1.16f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.22f, 1.6f) - close() - } - } - return _swimmingPool!! - } - -private var _swimmingPool: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SwipeDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SwipeDown.kt deleted file mode 100644 index cd3afaba..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SwipeDown.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SwipeDown: ImageVector - get() { - if (_swipeDown != null) { - return _swipeDown!! - } - _swipeDown = fluentIcon(name = "Filled.SwipeDown") { - fluentPath { - moveTo(12.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(11.59f) - lineToRelative(1.3f, -1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.31f, -0.08f) - lineToRelative(0.1f, 0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.32f) - lineToRelative(-0.08f, 0.1f) - lineToRelative(-3.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.08f) - lineToRelative(-0.1f, -0.08f) - lineToRelative(-3.0f, -3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -1.5f) - lineToRelative(0.1f, 0.08f) - lineTo(11.0f, 18.6f) - lineTo(11.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 2.0f, 9.58f) - verticalLineToRelative(-1.7f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, -4.0f, 0.0f) - verticalLineToRelative(1.7f) - arcTo(5.0f, 5.0f, 0.0f, false, true, 12.0f, 2.0f) - close() - } - } - return _swipeDown!! - } - -private var _swipeDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SwipeRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SwipeRight.kt deleted file mode 100644 index afb82b64..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SwipeRight.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SwipeRight: ImageVector - get() { - if (_swipeRight != null) { - return _swipeRight!! - } - _swipeRight = fluentIcon(name = "Filled.SwipeRight") { - fluentPath { - moveTo(6.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(11.59f) - lineToRelative(-1.3f, 1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.08f, 1.31f) - lineToRelative(0.08f, 0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.32f, 0.08f) - lineToRelative(0.1f, -0.08f) - lineToRelative(3.0f, -3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.08f, -1.32f) - lineToRelative(-0.08f, -0.1f) - lineToRelative(-3.0f, -3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.5f, 1.32f) - lineToRelative(0.08f, 0.1f) - lineTo(18.6f, 11.0f) - lineTo(7.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - close() - moveTo(2.0f, 12.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 9.58f, 2.0f) - horizontalLineToRelative(-1.7f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 0.0f, -4.0f) - horizontalLineToRelative(1.7f) - arcTo(5.0f, 5.0f, 0.0f, false, false, 2.0f, 12.0f) - close() - } - } - return _swipeRight!! - } - -private var _swipeRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SwipeUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SwipeUp.kt deleted file mode 100644 index 70bfa842..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/SwipeUp.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.SwipeUp: ImageVector - get() { - if (_swipeUp != null) { - return _swipeUp!! - } - _swipeUp = fluentIcon(name = "Filled.SwipeUp") { - fluentPath { - moveTo(12.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - lineTo(13.0f, 5.41f) - lineToRelative(1.3f, 1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.31f, 0.08f) - lineToRelative(0.1f, -0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.08f, -1.32f) - lineToRelative(-0.08f, -0.1f) - lineToRelative(-3.0f, -3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.32f, -0.08f) - lineToRelative(-0.1f, 0.08f) - lineToRelative(-3.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.32f, 1.5f) - lineToRelative(0.1f, -0.08f) - lineTo(11.0f, 5.4f) - lineTo(11.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - close() - moveTo(12.0f, 22.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 2.0f, -9.58f) - verticalLineToRelative(1.7f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, -4.0f, 0.0f) - verticalLineToRelative(-1.7f) - arcTo(5.0f, 5.0f, 0.0f, false, false, 12.0f, 22.0f) - close() - } - } - return _swipeUp!! - } - -private var _swipeUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Symbols.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Symbols.kt deleted file mode 100644 index 7cc479d9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Symbols.kt +++ /dev/null @@ -1,103 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Symbols: ImageVector - get() { - if (_symbols != null) { - return _symbols!! - } - _symbols = fluentIcon(name = "Filled.Symbols") { - fluentPath { - moveTo(16.92f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(15.88f, 19.5f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 4.7f, -0.3f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.24f, 0.87f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -6.65f, 0.83f) - verticalLineToRelative(0.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-2.6f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(2.5f) - close() - moveTo(6.4f, 13.0f) - horizontalLineToRelative(0.1f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(3.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineTo(2.0f, 17.5f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(-0.1f) - close() - moveTo(17.5f, 13.0f) - curveToRelative(1.11f, 0.0f, 2.15f, 0.4f, 2.95f, 1.1f) - verticalLineToRelative(-0.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(2.6f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(19.74f, 15.5f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -4.7f, 0.29f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.24f, -0.86f) - arcTo(4.5f, 4.5f, 0.0f, false, true, 17.5f, 13.0f) - close() - moveTo(6.5f, 2.0f) - arcToRelative(4.5f, 4.5f, 0.0f, true, true, 0.0f, 9.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 0.0f, -9.0f) - close() - moveTo(19.21f, 2.0f) - curveTo(20.77f, 2.0f, 22.0f, 3.39f, 22.0f, 5.08f) - arcToRelative(3.2f, 3.2f, 0.0f, false, true, -0.85f, 2.21f) - lineToRelative(-2.5f, 3.14f) - arcToRelative(1.49f, 1.49f, 0.0f, false, true, -2.35f, 0.0f) - lineToRelative(-2.67f, -3.4f) - arcTo(3.27f, 3.27f, 0.0f, false, true, 13.0f, 5.08f) - curveTo(13.0f, 3.39f, 14.23f, 2.0f, 15.79f, 2.0f) - curveToRelative(0.56f, 0.0f, 1.1f, 0.19f, 1.55f, 0.52f) - lineToRelative(0.16f, 0.13f) - lineToRelative(0.16f, -0.13f) - arcTo(2.6f, 2.6f, 0.0f, false, true, 19.21f, 2.0f) - close() - moveTo(3.91f, 4.98f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 4.1f, 4.1f) - lineToRelative(-4.1f, -4.1f) - close() - moveTo(6.5f, 3.5f) - curveToRelative(-0.56f, 0.0f, -1.08f, 0.15f, -1.52f, 0.41f) - lineToRelative(4.1f, 4.11f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 6.5f, 3.5f) - close() - } - } - return _symbols!! - } - -private var _symbols: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Syringe.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Syringe.kt deleted file mode 100644 index 21391c95..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Syringe.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Syringe: ImageVector - get() { - if (_syringe != null) { - return _syringe!! - } - _syringe = fluentIcon(name = "Filled.Syringe") { - fluentPath { - moveTo(16.72f, 2.22f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.07f, 0.0f) - lineToRelative(4.0f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.07f, 1.06f) - lineToRelative(-0.47f, -0.47f) - lineToRelative(-1.69f, 1.69f) - lineToRelative(2.47f, 2.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-1.47f, -1.47f) - lineToRelative(-6.84f, 6.84f) - curveToRelative(-0.7f, 0.7f, -1.66f, 1.1f, -2.65f, 1.1f) - lineTo(6.56f, 18.5f) - lineToRelative(-3.28f, 3.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(3.28f, -3.28f) - verticalLineToRelative(-2.45f) - curveToRelative(0.0f, -1.0f, 0.4f, -1.95f, 1.1f, -2.65f) - lineToRelative(0.34f, -0.34f) - lineToRelative(1.53f, 1.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(8.0f, 10.94f) - lineToRelative(0.94f, -0.94f) - lineToRelative(1.53f, 1.53f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineTo(10.0f, 8.94f) - lineToRelative(0.94f, -0.94f) - lineToRelative(1.53f, 1.53f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineTo(12.0f, 6.94f) - lineToRelative(1.44f, -1.44f) - lineToRelative(-1.47f, -1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineToRelative(2.47f, 2.47f) - lineToRelative(1.7f, -1.7f) - lineToRelative(-0.48f, -0.46f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - moveTo(19.19f, 5.75f) - lineTo(18.25f, 4.81f) - lineTo(16.56f, 6.5f) - lineTo(17.5f, 7.44f) - lineTo(19.2f, 5.74f) - close() - } - } - return _syringe!! - } - -private var _syringe: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/System.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/System.kt deleted file mode 100644 index 4005ca2d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/System.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.System: ImageVector - get() { - if (_system != null) { - return _system!! - } - _system = fluentIcon(name = "Filled.System") { - fluentPath { - moveTo(4.95f, 5.0f) - horizontalLineToRelative(14.1f) - curveTo(20.68f, 5.0f, 22.0f, 6.3f, 22.0f, 7.92f) - verticalLineToRelative(8.16f) - arcTo(2.93f, 2.93f, 0.0f, false, true, 19.05f, 19.0f) - lineTo(4.95f, 19.0f) - arcTo(2.93f, 2.93f, 0.0f, false, true, 2.0f, 16.08f) - lineTo(2.0f, 7.92f) - arcTo(2.93f, 2.93f, 0.0f, false, true, 4.95f, 5.0f) - close() - moveTo(4.95f, 7.0f) - arcToRelative(0.93f, 0.93f, 0.0f, false, false, -0.95f, 0.92f) - verticalLineToRelative(8.16f) - curveToRelative(0.0f, 0.5f, 0.42f, 0.92f, 0.95f, 0.92f) - horizontalLineToRelative(14.1f) - curveToRelative(0.53f, 0.0f, 0.95f, -0.41f, 0.95f, -0.92f) - lineTo(20.0f, 7.92f) - curveToRelative(0.0f, -0.5f, -0.42f, -0.92f, -0.95f, -0.92f) - lineTo(4.95f, 7.0f) - close() - } - } - return _system!! - } - -private var _system: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Tab.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Tab.kt deleted file mode 100644 index 8d18a5f7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Tab.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Tab: ImageVector - get() { - if (_tab != null) { - return _tab!! - } - _tab = fluentIcon(name = "Filled.Tab") { - fluentPath { - moveTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) - horizontalLineTo(5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - verticalLineTo(5.75f) - close() - moveTo(5.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(12.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineTo(5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineTo(5.75f) - close() - } - } - return _tab!! - } - -private var _tab: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabAdd.kt deleted file mode 100644 index 68a1ed1f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabAdd.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TabAdd: ImageVector - get() { - if (_tabAdd != null) { - return _tabAdd!! - } - _tabAdd = fluentIcon(name = "Filled.TabAdd") { - fluentPath { - moveTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(6.27f) - arcToRelative(6.46f, 6.46f, 0.0f, false, false, -2.0f, -0.85f) - lineTo(19.0f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(5.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(5.42f) - curveToRelative(0.17f, 0.72f, 0.46f, 1.4f, 0.85f, 2.0f) - lineTo(5.75f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _tabAdd!! - } - -private var _tabAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabArrowLeft.kt deleted file mode 100644 index 8f956e0e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabArrowLeft.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TabArrowLeft: ImageVector - get() { - if (_tabArrowLeft != null) { - return _tabArrowLeft!! - } - _tabArrowLeft = fluentIcon(name = "Filled.TabArrowLeft") { - fluentPath { - moveTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(6.27f) - arcToRelative(6.46f, 6.46f, 0.0f, false, false, -2.0f, -0.85f) - lineTo(19.0f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(5.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(5.42f) - curveToRelative(0.17f, 0.72f, 0.46f, 1.4f, 0.85f, 2.0f) - lineTo(5.75f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - close() - moveTo(17.5f, 23.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, 11.0f) - close() - moveTo(20.5f, 18.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - horizontalLineToRelative(-4.8f) - lineToRelative(1.65f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineTo(15.71f, 18.0f) - horizontalLineToRelative(4.79f) - close() - } - } - return _tabArrowLeft!! - } - -private var _tabArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabDesktop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabDesktop.kt deleted file mode 100644 index 1cf50e3c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabDesktop.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TabDesktop: ImageVector - get() { - if (_tabDesktop != null) { - return _tabDesktop!! - } - _tabDesktop = fluentIcon(name = "Filled.TabDesktop") { - fluentPath { - moveTo(11.0f, 3.0f) - lineTo(6.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) - horizontalLineToRelative(12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) - lineTo(21.0f, 8.0f) - horizontalLineToRelative(-7.75f) - curveTo(12.01f, 8.0f, 11.0f, 7.0f, 11.0f, 5.75f) - lineTo(11.0f, 3.0f) - close() - moveTo(21.0f, 6.5f) - lineTo(21.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - horizontalLineToRelative(-5.5f) - verticalLineToRelative(2.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(21.0f, 6.5f) - close() - } - } - return _tabDesktop!! - } - -private var _tabDesktop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabDesktopArrowClockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabDesktopArrowClockwise.kt deleted file mode 100644 index 360e8dae..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabDesktopArrowClockwise.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TabDesktopArrowClockwise: ImageVector - get() { - if (_tabDesktopArrowClockwise != null) { - return _tabDesktopArrowClockwise!! - } - _tabDesktopArrowClockwise = fluentIcon(name = "Filled.TabDesktopArrowClockwise") { - fluentPath { - moveTo(5.75f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(5.35f) - arcToRelative(6.98f, 6.98f, 0.0f, false, true, 7.77f, -1.53f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 3.23f, 0.93f) - verticalLineToRelative(1.9f) - arcToRelative(6.97f, 6.97f, 0.0f, false, true, -1.1f, 8.6f) - horizontalLineToRelative(5.35f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) - lineTo(21.0f, 8.0f) - horizontalLineToRelative(-7.75f) - curveTo(12.01f, 8.0f, 11.0f, 7.0f, 11.0f, 5.75f) - lineTo(11.0f, 3.0f) - lineTo(5.75f, 3.0f) - close() - moveTo(12.5f, 3.0f) - verticalLineToRelative(2.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(21.0f, 6.5f) - verticalLineToRelative(-0.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) - lineTo(12.5f, 3.0f) - close() - moveTo(13.0f, 13.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(9.5f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.33f) - lineToRelative(-0.02f, -0.01f) - arcTo(4.5f, 4.5f, 0.0f, true, false, 12.5f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - arcToRelative(6.0f, 6.0f, 0.0f, true, true, -2.5f, -4.87f) - verticalLineToRelative(-0.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.75f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.75f) - close() - } - } - return _tabDesktopArrowClockwise!! - } - -private var _tabDesktopArrowClockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabDesktopBottom.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabDesktopBottom.kt deleted file mode 100644 index 498b3ea5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabDesktopBottom.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TabDesktopBottom: ImageVector - get() { - if (_tabDesktopBottom != null) { - return _tabDesktopBottom!! - } - _tabDesktopBottom = fluentIcon(name = "Filled.TabDesktopBottom") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineTo(14.5f) - verticalLineToRelative(-3.25f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineTo(3.0f) - verticalLineTo(6.25f) - close() - moveTo(3.0f, 17.0f) - verticalLineToRelative(0.75f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineTo(13.0f) - verticalLineToRelative(-3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineTo(3.0f) - close() - } - } - return _tabDesktopBottom!! - } - -private var _tabDesktopBottom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabDesktopImage.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabDesktopImage.kt deleted file mode 100644 index 37716ae0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabDesktopImage.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TabDesktopImage: ImageVector - get() { - if (_tabDesktopImage != null) { - return _tabDesktopImage!! - } - _tabDesktopImage = fluentIcon(name = "Filled.TabDesktopImage") { - fluentPath { - moveTo(11.0f, 3.0f) - lineTo(6.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(4.54f) - arcTo(3.98f, 3.98f, 0.0f, false, true, 5.0f, 10.0f) - horizontalLineToRelative(5.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, 4.0f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.73f, -0.2f, 1.41f, -0.54f, 2.0f) - lineTo(18.0f, 21.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) - lineTo(21.0f, 8.0f) - horizontalLineToRelative(-7.75f) - curveTo(12.01f, 8.0f, 11.0f, 7.0f, 11.0f, 5.75f) - lineTo(11.0f, 3.0f) - close() - moveTo(21.0f, 6.5f) - lineTo(21.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - horizontalLineToRelative(-5.5f) - verticalLineToRelative(2.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(21.0f, 6.5f) - close() - moveTo(5.0f, 11.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.56f, 0.15f, 1.08f, 0.42f, 1.52f) - lineToRelative(3.49f, -3.49f) - curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.0f) - lineToRelative(3.5f, 3.5f) - curveToRelative(0.26f, -0.45f, 0.41f, -0.97f, 0.41f, -1.53f) - verticalLineToRelative(-5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - lineTo(5.0f, 11.0f) - close() - moveTo(5.0f, 22.0f) - curveToRelative(-0.56f, 0.0f, -1.08f, -0.15f, -1.52f, -0.42f) - lineToRelative(3.49f, -3.49f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(3.5f, 3.5f) - curveToRelative(-0.45f, 0.26f, -0.97f, 0.41f, -1.53f, 0.41f) - lineTo(5.0f, 22.0f) - close() - moveTo(10.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - close() - } - } - return _tabDesktopImage!! - } - -private var _tabDesktopImage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabDesktopMultipleBottom.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabDesktopMultipleBottom.kt deleted file mode 100644 index 9989441b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabDesktopMultipleBottom.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TabDesktopMultipleBottom: ImageVector - get() { - if (_tabDesktopMultipleBottom != null) { - return _tabDesktopMultipleBottom!! - } - _tabDesktopMultipleBottom = fluentIcon(name = "Filled.TabDesktopMultipleBottom") { - fluentPath { - moveTo(6.0f, 5.0f) - horizontalLineToRelative(1.52f) - curveToRelative(0.12f, -0.85f, 0.85f, -1.5f, 1.73f, -1.5f) - horizontalLineToRelative(8.0f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(8.0f) - curveToRelative(0.0f, 0.88f, -0.65f, 1.61f, -1.5f, 1.73f) - verticalLineTo(18.0f) - curveToRelative(1.68f, -0.13f, 3.0f, -1.53f, 3.0f, -3.24f) - verticalLineToRelative(-8.0f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 17.25f, 2.0f) - horizontalLineToRelative(-8.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.24f, 3.0f) - close() - moveTo(2.0f, 9.25f) - curveTo(2.0f, 7.45f, 3.46f, 6.0f, 5.25f, 6.0f) - horizontalLineToRelative(9.5f) - curveTo(16.55f, 6.0f, 18.0f, 7.46f, 18.0f, 9.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.8f, -1.45f, 3.25f, -3.25f, 3.25f) - horizontalLineTo(11.5f) - verticalLineToRelative(-3.25f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineTo(2.0f) - verticalLineTo(9.25f) - close() - moveTo(2.0f, 18.0f) - verticalLineToRelative(0.75f) - curveTo(2.0f, 20.55f, 3.46f, 22.0f, 5.25f, 22.0f) - horizontalLineTo(10.0f) - verticalLineToRelative(-3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineTo(2.0f) - close() - } - } - return _tabDesktopMultipleBottom!! - } - -private var _tabDesktopMultipleBottom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabInPrivate.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabInPrivate.kt deleted file mode 100644 index ba3908fc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabInPrivate.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TabInPrivate: ImageVector - get() { - if (_tabInPrivate != null) { - return _tabInPrivate!! - } - _tabInPrivate = fluentIcon(name = "Filled.TabInPrivate") { - fluentPath { - moveTo(5.75f, 3.0f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) - lineTo(5.75f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - close() - moveTo(5.0f, 5.75f) - verticalLineToRelative(0.54f) - lineTo(6.3f, 5.0f) - horizontalLineToRelative(-0.55f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(5.0f, 7.71f) - verticalLineToRelative(2.58f) - lineTo(10.3f, 5.0f) - lineTo(7.7f, 5.0f) - lineTo(5.0f, 7.7f) - close() - moveTo(11.7f, 5.0f) - lineTo(5.0f, 11.7f) - verticalLineToRelative(2.6f) - lineTo(14.3f, 5.0f) - horizontalLineToRelative(-2.6f) - close() - moveTo(15.7f, 5.0f) - lineTo(5.0f, 15.7f) - verticalLineToRelative(2.59f) - lineTo(18.3f, 5.0f) - lineTo(15.7f, 5.0f) - close() - moveTo(19.0f, 5.7f) - lineTo(5.7f, 19.0f) - lineTo(8.3f, 19.0f) - lineTo(19.0f, 8.3f) - lineTo(19.0f, 5.7f) - close() - moveTo(19.0f, 9.7f) - lineTo(9.7f, 19.0f) - horizontalLineToRelative(2.6f) - lineToRelative(6.7f, -6.7f) - lineTo(19.0f, 9.7f) - close() - moveTo(19.0f, 13.7f) - lineTo(13.7f, 19.0f) - horizontalLineToRelative(2.6f) - lineToRelative(2.7f, -2.7f) - verticalLineToRelative(-2.6f) - close() - moveTo(19.0f, 17.7f) - lineTo(17.7f, 19.0f) - horizontalLineToRelative(0.55f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-0.54f) - close() - } - } - return _tabInPrivate!! - } - -private var _tabInPrivate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabInprivateAccount.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabInprivateAccount.kt deleted file mode 100644 index 1d5bbc1d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabInprivateAccount.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TabInprivateAccount: ImageVector - get() { - if (_tabInprivateAccount != null) { - return _tabInprivateAccount!! - } - _tabInprivateAccount = fluentIcon(name = "Filled.TabInprivateAccount") { - fluentPath { - moveTo(5.75f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) - horizontalLineToRelative(6.62f) - arcToRelative(3.9f, 3.9f, 0.0f, false, true, -0.37f, -1.67f) - lineTo(12.0f, 19.0f) - lineTo(5.75f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(5.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(12.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(3.38f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 2.0f, 1.22f) - verticalLineToRelative(-4.6f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) - lineTo(5.75f, 3.0f) - close() - moveTo(15.0f, 13.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(2.24f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.59f, 1.0f) - lineTo(18.0f, 12.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.17f, 1.0f) - lineTo(18.0f, 14.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(2.24f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 15.0f, 13.0f) - close() - moveTo(14.94f, 17.0f) - curveToRelative(-0.58f, 0.0f, -1.07f, 0.28f, -1.4f, 0.63f) - curveToRelative(-0.32f, 0.35f, -0.54f, 0.83f, -0.54f, 1.31f) - verticalLineToRelative(0.39f) - curveToRelative(0.0f, 1.96f, 2.04f, 3.67f, 5.0f, 3.67f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(3.47f) - curveToRelative(0.41f, -0.29f, 0.75f, -0.63f, 1.0f, -1.0f) - lineTo(18.0f, 21.0f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(4.92f) - curveToRelative(0.05f, -0.22f, 0.08f, -0.44f, 0.08f, -0.67f) - lineTo(23.0f, 19.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(4.73f) - arcToRelative(2.13f, 2.13f, 0.0f, false, false, -0.27f, -0.37f) - arcToRelative(1.91f, 1.91f, 0.0f, false, false, -1.4f, -0.63f) - horizontalLineToRelative(-6.12f) - close() - } - } - return _tabInprivateAccount!! - } - -private var _tabInprivateAccount: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabProhibited.kt deleted file mode 100644 index 13c319d7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabProhibited.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TabProhibited: ImageVector - get() { - if (_tabProhibited != null) { - return _tabProhibited!! - } - _tabProhibited = fluentIcon(name = "Filled.TabProhibited") { - fluentPath { - moveTo(5.86f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) - horizontalLineToRelative(6.16f) - arcToRelative(6.46f, 6.46f, 0.0f, false, true, -0.85f, -2.0f) - lineTo(5.86f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(4.86f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(5.14f) - curveToRelative(0.71f, 0.15f, 1.39f, 0.43f, 2.0f, 0.8f) - lineTo(20.86f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - horizontalLineToRelative(-12.0f) - close() - moveTo(17.5f, 23.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) - close() - moveTo(14.2f, 19.75f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 5.56f, -5.56f) - lineToRelative(-5.57f, 5.56f) - close() - moveTo(15.25f, 20.81f) - lineTo(20.81f, 15.25f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -5.56f, 5.56f) - close() - } - } - return _tabProhibited!! - } - -private var _tabProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabShieldDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabShieldDismiss.kt deleted file mode 100644 index 2885ddd1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabShieldDismiss.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TabShieldDismiss: ImageVector - get() { - if (_tabShieldDismiss != null) { - return _tabShieldDismiss!! - } - _tabShieldDismiss = fluentIcon(name = "Filled.TabShieldDismiss") { - fluentPath { - moveTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(4.99f) - arcToRelative(5.36f, 5.36f, 0.0f, false, true, -2.0f, -1.36f) - lineTo(19.0f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(5.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(6.98f) - arcToRelative(6.7f, 6.7f, 0.0f, false, false, 1.45f, 2.0f) - lineTo(5.75f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - close() - moveTo(18.35f, 10.15f) - arcTo(5.71f, 5.71f, 0.0f, false, false, 22.5f, 12.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.5f, 0.41f) - verticalLineToRelative(3.09f) - curveToRelative(0.0f, 3.22f, -1.64f, 5.4f, -4.84f, 6.47f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.32f, 0.0f) - curveToRelative(-3.1f, -1.03f, -4.74f, -3.12f, -4.84f, -6.18f) - lineTo(13.0f, 12.5f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - curveToRelative(1.53f, 0.0f, 2.9f, -0.61f, 4.15f, -1.85f) - curveToRelative(0.2f, -0.2f, 0.51f, -0.2f, 0.7f, 0.0f) - close() - moveTo(15.97f, 13.84f) - lineTo(15.9f, 13.9f) - lineTo(15.84f, 13.97f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) - lineToRelative(0.06f, 0.07f) - lineToRelative(1.4f, 1.4f) - lineToRelative(-1.4f, 1.4f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) - lineToRelative(0.06f, 0.07f) - lineToRelative(0.07f, 0.06f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) - lineToRelative(0.07f, -0.06f) - lineToRelative(1.4f, -1.4f) - lineToRelative(1.4f, 1.4f) - lineToRelative(0.07f, 0.06f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) - lineToRelative(0.07f, -0.06f) - lineToRelative(0.06f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.56f) - lineToRelative(-0.06f, -0.07f) - lineToRelative(-1.4f, -1.4f) - lineToRelative(1.4f, -1.4f) - lineToRelative(0.06f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.56f) - lineToRelative(-0.06f, -0.07f) - lineToRelative(-0.07f, -0.06f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.56f, 0.0f) - lineToRelative(-0.07f, 0.06f) - lineToRelative(-1.4f, 1.4f) - lineToRelative(-1.4f, -1.4f) - lineToRelative(-0.07f, -0.06f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.49f, -0.04f) - lineToRelative(-0.07f, 0.04f) - close() - } - } - return _tabShieldDismiss!! - } - -private var _tabShieldDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Table.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Table.kt deleted file mode 100644 index 9f694afa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Table.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Table: ImageVector - get() { - if (_table != null) { - return _table!! - } - _table = fluentIcon(name = "Filled.Table") { - fluentPath { - moveTo(9.5f, 21.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - close() - moveTo(16.0f, 21.0f) - horizontalLineToRelative(1.75f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 16.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - close() - moveTo(21.0f, 14.5f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(21.0f, 8.0f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(16.0f, 3.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(14.5f, 3.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - lineTo(14.5f, 3.0f) - close() - moveTo(8.0f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - lineTo(3.0f, 8.0f) - horizontalLineToRelative(5.0f) - lineTo(8.0f, 3.0f) - close() - moveTo(3.0f, 9.5f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-5.0f) - lineTo(3.0f, 9.5f) - close() - moveTo(3.0f, 16.0f) - verticalLineToRelative(1.75f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - lineTo(8.0f, 21.0f) - verticalLineToRelative(-5.0f) - lineTo(3.0f, 16.0f) - close() - moveTo(14.5f, 9.5f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(5.0f) - close() - } - } - return _table!! - } - -private var _table: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableAdd.kt deleted file mode 100644 index ccbf4f88..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableAdd.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableAdd: ImageVector - get() { - if (_tableAdd != null) { - return _tableAdd!! - } - _tableAdd = fluentIcon(name = "Filled.TableAdd") { - fluentPath { - moveTo(9.5f, 21.0f) - horizontalLineToRelative(2.52f) - arcToRelative(6.47f, 6.47f, 0.0f, false, true, -0.85f, -5.0f) - lineTo(9.5f, 16.0f) - verticalLineToRelative(5.0f) - close() - moveTo(21.0f, 9.5f) - verticalLineToRelative(2.52f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, -5.0f, -0.85f) - lineTo(16.0f, 9.5f) - horizontalLineToRelative(5.0f) - close() - moveTo(14.5f, 9.5f) - verticalLineToRelative(2.23f) - arcToRelative(6.53f, 6.53f, 0.0f, false, false, -2.77f, 2.77f) - lineTo(9.5f, 14.5f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(21.0f, 8.0f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(16.0f, 3.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(14.5f, 3.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - lineTo(14.5f, 3.0f) - close() - moveTo(8.0f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - lineTo(3.0f, 8.0f) - horizontalLineToRelative(5.0f) - lineTo(8.0f, 3.0f) - close() - moveTo(3.0f, 9.5f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-5.0f) - lineTo(3.0f, 9.5f) - close() - moveTo(3.0f, 16.0f) - verticalLineToRelative(1.75f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - lineTo(8.0f, 21.0f) - verticalLineToRelative(-5.0f) - lineTo(3.0f, 16.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _tableAdd!! - } - -private var _tableAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableBottomRow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableBottomRow.kt deleted file mode 100644 index b0ccb6ba..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableBottomRow.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableBottomRow: ImageVector - get() { - if (_tableBottomRow != null) { - return _tableBottomRow!! - } - _tableBottomRow = fluentIcon(name = "Filled.TableBottomRow") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(8.25f) - horizontalLineToRelative(1.5f) - lineTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(8.25f) - lineTo(21.0f, 14.5f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(4.5f, 20.49f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 16.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(5.0f) - lineTo(6.25f, 21.0f) - curveToRelative(-0.64f, 0.0f, -1.24f, -0.19f, -1.75f, -0.51f) - close() - moveTo(20.91f, 18.5f) - curveToRelative(0.06f, -0.24f, 0.09f, -0.5f, 0.09f, -0.75f) - lineTo(21.0f, 16.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(1.75f) - arcToRelative(3.23f, 3.23f, 0.0f, false, false, 3.16f, -2.5f) - close() - moveTo(14.5f, 21.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - close() - } - } - return _tableBottomRow!! - } - -private var _tableBottomRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableCellEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableCellEdit.kt deleted file mode 100644 index c1218a25..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableCellEdit.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableCellEdit: ImageVector - get() { - if (_tableCellEdit != null) { - return _tableCellEdit!! - } - _tableCellEdit = fluentIcon(name = "Filled.TableCellEdit") { - fluentPath { - moveTo(5.25f, 6.5f) - curveTo(4.01f, 6.5f, 3.0f, 7.5f, 3.0f, 8.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineTo(8.0f) - verticalLineToRelative(-9.0f) - horizontalLineTo(5.25f) - close() - } - fluentPath { - moveTo(12.49f, 14.86f) - curveToRelative(-0.2f, 0.2f, -0.37f, 0.41f, -0.51f, 0.64f) - horizontalLineTo(9.5f) - verticalLineToRelative(-9.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(6.35f) - lineToRelative(-2.01f, 2.01f) - close() - } - fluentPath { - moveTo(20.72f, 8.0f) - horizontalLineToRelative(0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.12f, -1.5f) - horizontalLineTo(16.0f) - verticalLineToRelative(4.85f) - lineToRelative(2.4f, -2.39f) - arcTo(3.28f, 3.28f, 0.0f, false, true, 20.7f, 8.0f) - close() - } - fluentPath { - moveTo(20.72f, 9.0f) - curveToRelative(-0.6f, 0.0f, -1.18f, 0.22f, -1.62f, 0.67f) - lineToRelative(-5.9f, 5.9f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.71f, 1.25f) - lineToRelative(-0.46f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcTo(2.29f, 2.29f, 0.0f, false, false, 20.72f, 9.0f) - close() - } - } - return _tableCellEdit!! - } - -private var _tableCellEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableCellsMerge.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableCellsMerge.kt deleted file mode 100644 index f9926187..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableCellsMerge.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableCellsMerge: ImageVector - get() { - if (_tableCellsMerge != null) { - return _tableCellsMerge!! - } - _tableCellsMerge = fluentIcon(name = "Filled.TableCellsMerge") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(0.25f) - lineTo(3.0f, 6.5f) - verticalLineToRelative(-0.25f) - close() - moveTo(3.0f, 8.0f) - verticalLineToRelative(8.0f) - horizontalLineToRelative(18.0f) - lineTo(21.0f, 8.0f) - lineTo(3.0f, 8.0f) - close() - moveTo(15.58f, 11.25f) - lineTo(14.69f, 10.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.12f, -1.0f) - lineToRelative(2.0f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.01f, 0.99f) - lineToRelative(-2.0f, 2.26f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.13f, -1.0f) - lineToRelative(0.89f, -1.0f) - lineTo(8.42f, 12.75f) - lineToRelative(0.9f, 1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, 1.0f) - lineToRelative(-2.0f, -2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.0f) - lineToRelative(2.0f, -2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.12f, 1.0f) - lineToRelative(-0.89f, 1.0f) - horizontalLineToRelative(7.16f) - close() - moveTo(3.0f, 17.75f) - verticalLineToRelative(-0.25f) - horizontalLineToRelative(18.0f) - verticalLineToRelative(0.25f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - close() - } - } - return _tableCellsMerge!! - } - -private var _tableCellsMerge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableCellsSplit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableCellsSplit.kt deleted file mode 100644 index bbcdf965..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableCellsSplit.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableCellsSplit: ImageVector - get() { - if (_tableCellsSplit != null) { - return _tableCellsSplit!! - } - _tableCellsSplit = fluentIcon(name = "Filled.TableCellsSplit") { - fluentPath { - moveTo(6.25f, 3.0f) - lineTo(11.0f, 3.0f) - verticalLineToRelative(4.0f) - lineTo(3.0f, 7.0f) - verticalLineToRelative(-0.75f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - close() - moveTo(21.0f, 7.0f) - verticalLineToRelative(-0.75f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(12.5f, 3.0f) - verticalLineToRelative(4.0f) - lineTo(21.0f, 7.0f) - close() - moveTo(12.5f, 21.0f) - horizontalLineToRelative(5.25f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 17.0f) - horizontalLineToRelative(-8.5f) - verticalLineToRelative(4.0f) - close() - moveTo(3.0f, 8.5f) - verticalLineToRelative(7.0f) - horizontalLineToRelative(18.0f) - verticalLineToRelative(-7.0f) - lineTo(3.0f, 8.5f) - close() - moveTo(12.5f, 10.0f) - verticalLineToRelative(4.0f) - lineTo(11.0f, 14.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(1.5f) - close() - moveTo(3.0f, 17.75f) - lineTo(3.0f, 17.0f) - horizontalLineToRelative(8.0f) - verticalLineToRelative(4.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - close() - } - } - return _tableCellsSplit!! - } - -private var _tableCellsSplit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableDeleteColumn.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableDeleteColumn.kt deleted file mode 100644 index 3f41ee1f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableDeleteColumn.kt +++ /dev/null @@ -1,99 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableDeleteColumn: ImageVector - get() { - if (_tableDeleteColumn != null) { - return _tableDeleteColumn!! - } - _tableDeleteColumn = fluentIcon(name = "Filled.TableDeleteColumn") { - fluentPath { - moveTo(22.0f, 3.75f) - lineTo(22.0f, 8.0f) - horizontalLineToRelative(-5.0f) - lineTo(17.0f, 6.25f) - curveTo(17.0f, 4.45f, 18.46f, 3.0f, 20.25f, 3.0f) - horizontalLineToRelative(1.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(22.0f, 9.5f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(21.25f, 21.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(22.0f, 16.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(1.75f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(1.0f) - close() - moveTo(2.0f, 20.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(1.0f) - curveTo(5.55f, 21.0f, 7.0f, 19.54f, 7.0f, 17.75f) - lineTo(7.0f, 16.0f) - lineTo(2.0f, 16.0f) - verticalLineToRelative(4.25f) - close() - moveTo(2.0f, 9.5f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-5.0f) - lineTo(2.0f, 9.5f) - close() - moveTo(2.0f, 3.75f) - lineTo(2.0f, 8.0f) - horizontalLineToRelative(5.0f) - lineTo(7.0f, 6.25f) - curveTo(7.0f, 4.45f, 5.54f, 3.0f, 3.75f, 3.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(11.25f, 15.52f) - verticalLineToRelative(5.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-5.73f) - arcToRelative(1.83f, 1.83f, 0.0f, false, true, -0.08f, -0.07f) - lineToRelative(-0.67f, -0.67f) - lineToRelative(-0.67f, 0.67f) - lineToRelative(-0.08f, 0.07f) - close() - moveTo(11.25f, 8.72f) - lineTo(11.33f, 8.8f) - lineTo(12.0f, 9.47f) - lineTo(12.67f, 8.8f) - lineTo(12.75f, 8.73f) - lineTo(12.75f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(5.98f) - close() - moveTo(9.47f, 14.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineTo(10.94f, 12.0f) - lineToRelative(-1.47f, -1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineTo(12.0f, 10.94f) - lineToRelative(1.47f, -1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineTo(13.06f, 12.0f) - lineToRelative(1.47f, 1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(12.0f, 13.06f) - lineToRelative(-1.47f, 1.47f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - close() - } - } - return _tableDeleteColumn!! - } - -private var _tableDeleteColumn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableDeleteRow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableDeleteRow.kt deleted file mode 100644 index d057a36a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableDeleteRow.kt +++ /dev/null @@ -1,99 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableDeleteRow: ImageVector - get() { - if (_tableDeleteRow != null) { - return _tableDeleteRow!! - } - _tableDeleteRow = fluentIcon(name = "Filled.TableDeleteRow") { - fluentPath { - moveTo(3.75f, 2.0f) - lineTo(8.0f, 2.0f) - verticalLineToRelative(5.0f) - lineTo(6.25f, 7.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 3.75f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(9.5f, 2.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(-5.0f) - lineTo(9.5f, 2.0f) - close() - moveTo(21.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(16.0f, 2.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(1.75f) - curveTo(19.55f, 7.0f, 21.0f, 5.54f, 21.0f, 3.75f) - verticalLineToRelative(-1.0f) - close() - moveTo(20.25f, 22.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - lineTo(16.0f, 17.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(4.25f) - close() - moveTo(9.5f, 22.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - close() - moveTo(3.75f, 22.0f) - lineTo(8.0f, 22.0f) - verticalLineToRelative(-5.0f) - lineTo(6.25f, 17.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 20.25f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - close() - moveTo(15.52f, 12.75f) - horizontalLineToRelative(5.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.73f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-0.67f, 0.67f) - lineToRelative(0.67f, 0.67f) - lineToRelative(0.07f, 0.08f) - close() - moveTo(8.72f, 12.75f) - lineTo(8.8f, 12.67f) - lineTo(9.47f, 12.0f) - lineTo(8.8f, 11.33f) - arcToRelative(1.85f, 1.85f, 0.0f, false, true, -0.07f, -0.08f) - lineTo(2.75f, 11.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.98f) - close() - moveTo(14.53f, 14.53f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineTo(12.0f, 13.06f) - lineToRelative(-1.47f, 1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineTo(10.94f, 12.0f) - lineToRelative(-1.47f, -1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineTo(12.0f, 10.94f) - lineToRelative(1.47f, -1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineTo(13.06f, 12.0f) - lineToRelative(1.47f, 1.47f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - close() - } - } - return _tableDeleteRow!! - } - -private var _tableDeleteRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableDismiss.kt deleted file mode 100644 index 2da8a327..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableDismiss.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableDismiss: ImageVector - get() { - if (_tableDismiss != null) { - return _tableDismiss!! - } - _tableDismiss = fluentIcon(name = "Filled.TableDismiss") { - fluentPath { - moveTo(9.5f, 21.0f) - horizontalLineToRelative(2.52f) - arcToRelative(6.47f, 6.47f, 0.0f, false, true, -0.85f, -5.0f) - lineTo(9.5f, 16.0f) - verticalLineToRelative(5.0f) - close() - moveTo(21.0f, 9.5f) - verticalLineToRelative(2.52f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, -5.0f, -0.85f) - lineTo(16.0f, 9.5f) - horizontalLineToRelative(5.0f) - close() - moveTo(14.5f, 9.5f) - verticalLineToRelative(2.23f) - arcToRelative(6.53f, 6.53f, 0.0f, false, false, -2.77f, 2.77f) - lineTo(9.5f, 14.5f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(21.0f, 8.0f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(16.0f, 3.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(14.5f, 3.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - lineTo(14.5f, 3.0f) - close() - moveTo(8.0f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - lineTo(3.0f, 8.0f) - horizontalLineToRelative(5.0f) - lineTo(8.0f, 3.0f) - close() - moveTo(3.0f, 9.5f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-5.0f) - lineTo(3.0f, 9.5f) - close() - moveTo(3.0f, 16.0f) - verticalLineToRelative(1.75f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - lineTo(8.0f, 21.0f) - verticalLineToRelative(-5.0f) - lineTo(3.0f, 16.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-1.64f, -1.65f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.65f, 1.64f) - lineToRelative(-1.65f, -1.64f) - close() - } - } - return _tableDismiss!! - } - -private var _tableDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableEdit.kt deleted file mode 100644 index 9f83fb5b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableEdit.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableEdit: ImageVector - get() { - if (_tableEdit != null) { - return _tableEdit!! - } - _tableEdit = fluentIcon(name = "Filled.TableEdit") { - fluentPath { - moveTo(12.49f, 19.82f) - curveToRelative(0.12f, -0.47f, 0.36f, -0.9f, 0.7f, -1.25f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.27f, 2.27f, 0.0f, false, true, 3.24f, 0.0f) - curveToRelative(0.9f, 0.9f, 0.9f, 2.34f, 0.0f, 3.23f) - lineToRelative(-5.9f, 5.9f) - curveToRelative(-0.35f, 0.35f, -0.78f, 0.6f, -1.25f, 0.7f) - lineToRelative(-1.83f, 0.47f) - curveToRelative(-0.8f, 0.2f, -1.52f, -0.53f, -1.32f, -1.32f) - lineToRelative(0.46f, -1.83f) - close() - moveTo(9.49f, 21.0f) - horizontalLineToRelative(1.67f) - lineToRelative(0.36f, -1.42f) - curveToRelative(0.16f, -0.65f, 0.5f, -1.24f, 0.97f, -1.72f) - lineTo(14.35f, 16.0f) - lineTo(9.5f, 16.0f) - verticalLineToRelative(5.0f) - close() - moveTo(16.0f, 9.5f) - verticalLineToRelative(4.85f) - lineToRelative(2.4f, -2.39f) - arcToRelative(3.28f, 3.28f, 0.0f, false, true, 2.6f, -0.95f) - lineTo(21.0f, 9.5f) - horizontalLineToRelative(-5.0f) - close() - moveTo(21.0f, 8.0f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.55f, 3.0f, 17.76f, 3.0f) - lineTo(16.0f, 3.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(14.5f, 3.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - lineTo(14.5f, 3.0f) - close() - moveTo(8.0f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - lineTo(3.0f, 8.0f) - horizontalLineToRelative(5.0f) - lineTo(8.0f, 3.0f) - close() - moveTo(3.0f, 9.5f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-5.0f) - lineTo(3.0f, 9.5f) - close() - moveTo(3.0f, 16.0f) - verticalLineToRelative(1.75f) - curveTo(3.0f, 19.55f, 4.45f, 21.0f, 6.25f, 21.0f) - lineTo(8.0f, 21.0f) - verticalLineToRelative(-5.0f) - lineTo(3.0f, 16.0f) - close() - moveTo(14.5f, 9.5f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(5.0f) - close() - } - } - return _tableEdit!! - } - -private var _tableEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableFreezeColumn.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableFreezeColumn.kt deleted file mode 100644 index f587f014..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableFreezeColumn.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableFreezeColumn: ImageVector - get() { - if (_tableFreezeColumn != null) { - return _tableFreezeColumn!! - } - _tableFreezeColumn = fluentIcon(name = "Filled.TableFreezeColumn") { - fluentPath { - moveTo(8.0f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - lineTo(3.0f, 8.0f) - horizontalLineToRelative(5.0f) - lineTo(8.0f, 3.0f) - close() - moveTo(8.0f, 9.5f) - lineTo(3.0f, 9.5f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-5.0f) - close() - moveTo(9.5f, 14.5f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(-5.0f) - close() - moveTo(9.5f, 16.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(3.5f) - horizontalLineToRelative(3.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(14.5f, 4.5f) - lineTo(14.5f, 8.0f) - horizontalLineToRelative(-5.0f) - lineTo(9.5f, 3.0f) - horizontalLineToRelative(8.25f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(9.5f, 21.0f) - verticalLineToRelative(-5.0f) - close() - moveTo(8.0f, 16.0f) - lineTo(3.0f, 16.0f) - verticalLineToRelative(1.75f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - lineTo(8.0f, 21.0f) - verticalLineToRelative(-5.0f) - close() - } - } - return _tableFreezeColumn!! - } - -private var _tableFreezeColumn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableFreezeColumnAndRow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableFreezeColumnAndRow.kt deleted file mode 100644 index dd740f34..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableFreezeColumnAndRow.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableFreezeColumnAndRow: ImageVector - get() { - if (_tableFreezeColumnAndRow != null) { - return _tableFreezeColumnAndRow!! - } - _tableFreezeColumnAndRow = fluentIcon(name = "Filled.TableFreezeColumnAndRow") { - fluentPath { - moveTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(8.25f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-5.0f) - lineTo(4.5f, 9.5f) - lineTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(14.5f, 19.5f) - lineTo(14.5f, 16.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(8.25f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - close() - moveTo(8.0f, 16.0f) - lineTo(3.0f, 16.0f) - verticalLineToRelative(1.75f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - lineTo(8.0f, 21.0f) - verticalLineToRelative(-5.0f) - close() - moveTo(9.5f, 14.5f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - close() - } - } - return _tableFreezeColumnAndRow!! - } - -private var _tableFreezeColumnAndRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableFreezeRow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableFreezeRow.kt deleted file mode 100644 index fd83d309..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableFreezeRow.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableFreezeRow: ImageVector - get() { - if (_tableFreezeRow != null) { - return _tableFreezeRow!! - } - _tableFreezeRow = fluentIcon(name = "Filled.TableFreezeRow") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(8.25f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-5.0f) - lineTo(4.5f, 9.5f) - lineTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(19.5f, 9.5f) - lineTo(16.0f, 9.5f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(21.0f, 16.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(1.75f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 16.0f) - close() - moveTo(14.5f, 14.5f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(9.5f, 16.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(-5.0f) - close() - moveTo(8.0f, 16.0f) - lineTo(3.0f, 16.0f) - verticalLineToRelative(1.75f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - lineTo(8.0f, 21.0f) - verticalLineToRelative(-5.0f) - close() - } - } - return _tableFreezeRow!! - } - -private var _tableFreezeRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableInsertColumn.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableInsertColumn.kt deleted file mode 100644 index 2349eca3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableInsertColumn.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableInsertColumn: ImageVector - get() { - if (_tableInsertColumn != null) { - return _tableInsertColumn!! - } - _tableInsertColumn = fluentIcon(name = "Filled.TableInsertColumn") { - fluentPath { - moveTo(4.5f, 3.75f) - verticalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(3.0f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(16.0f, 5.25f) - curveTo(16.0f, 4.01f, 15.1f, 3.0f, 14.0f, 3.0f) - horizontalLineToRelative(-4.0f) - curveTo(8.9f, 3.0f, 8.0f, 4.0f, 8.0f, 5.25f) - lineTo(8.0f, 8.0f) - horizontalLineToRelative(8.0f) - lineTo(16.0f, 5.25f) - close() - moveTo(8.0f, 14.5f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(8.0f) - verticalLineToRelative(5.0f) - lineTo(8.0f, 14.5f) - close() - moveTo(8.0f, 16.0f) - verticalLineToRelative(2.75f) - curveToRelative(0.0f, 1.24f, 0.9f, 2.25f, 2.0f, 2.25f) - horizontalLineToRelative(4.0f) - curveToRelative(1.1f, 0.0f, 2.0f, -1.0f, 2.0f, -2.25f) - lineTo(16.0f, 16.0f) - lineTo(8.0f, 16.0f) - close() - moveTo(21.0f, 20.25f) - lineTo(21.0f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - close() - } - } - return _tableInsertColumn!! - } - -private var _tableInsertColumn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableInsertRow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableInsertRow.kt deleted file mode 100644 index 35c49e69..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableInsertRow.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableInsertRow: ImageVector - get() { - if (_tableInsertRow != null) { - return _tableInsertRow!! - } - _tableInsertRow = fluentIcon(name = "Filled.TableInsertRow") { - fluentPath { - moveTo(20.25f, 4.5f) - lineTo(3.75f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(8.0f, 8.0f) - lineTo(5.25f, 8.0f) - curveTo(4.01f, 8.0f, 3.0f, 8.9f, 3.0f, 10.0f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 1.1f, 1.0f, 2.0f, 2.25f, 2.0f) - lineTo(8.0f, 16.0f) - lineTo(8.0f, 8.0f) - close() - moveTo(9.5f, 16.0f) - horizontalLineToRelative(5.0f) - lineTo(14.5f, 8.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(8.0f) - close() - moveTo(18.75f, 16.0f) - lineTo(16.0f, 16.0f) - lineTo(16.0f, 8.0f) - horizontalLineToRelative(2.75f) - curveToRelative(1.24f, 0.0f, 2.25f, 0.9f, 2.25f, 2.0f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 1.1f, -1.0f, 2.0f, -2.25f, 2.0f) - close() - moveTo(3.75f, 21.0f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - } - } - return _tableInsertRow!! - } - -private var _tableInsertRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableLightning.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableLightning.kt deleted file mode 100644 index 8d0b02e9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableLightning.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableLightning: ImageVector - get() { - if (_tableLightning != null) { - return _tableLightning!! - } - _tableLightning = fluentIcon(name = "Filled.TableLightning") { - fluentPath { - moveTo(9.5f, 21.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.36f, -2.14f) - lineToRelative(0.88f, -1.86f) - lineTo(9.5f, 16.0f) - verticalLineToRelative(5.0f) - close() - moveTo(21.0f, 9.5f) - lineTo(21.0f, 11.0f) - horizontalLineToRelative(-4.68f) - curveToRelative(-0.11f, 0.0f, -0.22f, 0.01f, -0.32f, 0.03f) - lineTo(16.0f, 9.5f) - horizontalLineToRelative(5.0f) - close() - moveTo(14.5f, 9.5f) - verticalLineToRelative(3.34f) - lineToRelative(-0.78f, 1.66f) - lineTo(9.5f, 14.5f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(21.0f, 8.0f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(16.0f, 3.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(14.5f, 3.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - lineTo(14.5f, 3.0f) - close() - moveTo(8.0f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - lineTo(3.0f, 8.0f) - horizontalLineToRelative(5.0f) - lineTo(8.0f, 3.0f) - close() - moveTo(3.0f, 9.5f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-5.0f) - lineTo(3.0f, 9.5f) - close() - moveTo(3.0f, 16.0f) - verticalLineToRelative(1.75f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - lineTo(8.0f, 21.0f) - verticalLineToRelative(-5.0f) - lineTo(3.0f, 16.0f) - close() - moveTo(16.32f, 12.0f) - horizontalLineToRelative(4.82f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.44f, 0.75f) - lineTo(19.75f, 16.0f) - horizontalLineToRelative(1.5f) - curveToRelative(0.64f, 0.0f, 0.98f, 0.76f, 0.56f, 1.24f) - lineToRelative(-4.82f, 5.51f) - curveToRelative(-0.5f, 0.58f, -1.45f, 0.09f, -1.26f, -0.66f) - lineTo(16.5f, 19.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.46f, -0.71f) - lineToRelative(2.82f, -6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.46f, -0.29f) - close() - } - } - return _tableLightning!! - } - -private var _tableLightning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableLink.kt deleted file mode 100644 index 6c08c46a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableLink.kt +++ /dev/null @@ -1,102 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableLink: ImageVector - get() { - if (_tableLink != null) { - return _tableLink!! - } - _tableLink = fluentIcon(name = "Filled.TableLink") { - fluentPath { - moveTo(9.5f, 21.0f) - horizontalLineToRelative(2.07f) - arcToRelative(4.73f, 4.73f, 0.0f, false, true, 0.3f, -5.0f) - lineTo(9.5f, 16.0f) - verticalLineToRelative(5.0f) - close() - moveTo(21.0f, 9.5f) - verticalLineToRelative(4.83f) - arcToRelative(4.74f, 4.74f, 0.0f, false, false, -1.75f, -0.33f) - lineTo(16.0f, 14.0f) - lineTo(16.0f, 9.5f) - horizontalLineToRelative(5.0f) - close() - moveTo(14.5f, 9.5f) - verticalLineToRelative(4.67f) - curveToRelative(-0.3f, 0.08f, -0.6f, 0.2f, -0.87f, 0.33f) - lineTo(9.5f, 14.5f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(21.0f, 8.0f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(16.0f, 3.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(14.5f, 3.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - lineTo(14.5f, 3.0f) - close() - moveTo(8.0f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - lineTo(3.0f, 8.0f) - horizontalLineToRelative(5.0f) - lineTo(8.0f, 3.0f) - close() - moveTo(3.0f, 9.5f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-5.0f) - lineTo(3.0f, 9.5f) - close() - moveTo(3.0f, 16.0f) - verticalLineToRelative(1.75f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - lineTo(8.0f, 21.0f) - verticalLineToRelative(-5.0f) - lineTo(3.0f, 16.0f) - close() - moveTo(19.25f, 15.0f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 0.2f, 7.5f) - horizontalLineToRelative(-0.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - horizontalLineToRelative(0.1f) - lineTo(19.25f, 21.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.15f, -4.5f) - horizontalLineToRelative(-0.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(15.75f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-0.1f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.15f, 4.5f) - horizontalLineToRelative(0.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-0.1f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.2f, -7.5f) - horizontalLineToRelative(0.2f) - close() - moveTo(19.25f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(3.6f) - close() - } - } - return _tableLink!! - } - -private var _tableLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableLock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableLock.kt deleted file mode 100644 index 10f0f466..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableLock.kt +++ /dev/null @@ -1,99 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableLock: ImageVector - get() { - if (_tableLock != null) { - return _tableLock!! - } - _tableLock = fluentIcon(name = "Filled.TableLock") { - fluentPath { - moveTo(9.5f, 21.0f) - lineTo(13.0f, 21.0f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.17f, 0.02f, -0.34f, 0.05f, -0.5f) - lineTo(9.5f, 16.0f) - verticalLineToRelative(5.0f) - close() - moveTo(21.0f, 9.5f) - verticalLineToRelative(2.05f) - arcToRelative(3.49f, 3.49f, 0.0f, false, false, -5.0f, 0.0f) - lineTo(16.0f, 9.5f) - horizontalLineToRelative(5.0f) - close() - moveTo(14.5f, 9.5f) - verticalLineToRelative(4.7f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -0.5f, 0.3f) - lineTo(9.5f, 14.5f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(21.0f, 8.0f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(16.0f, 3.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(14.5f, 3.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - lineTo(14.5f, 3.0f) - close() - moveTo(8.0f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - lineTo(3.0f, 8.0f) - horizontalLineToRelative(5.0f) - lineTo(8.0f, 3.0f) - close() - moveTo(3.0f, 9.5f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-5.0f) - lineTo(3.0f, 9.5f) - close() - moveTo(3.0f, 16.0f) - verticalLineToRelative(1.75f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - lineTo(8.0f, 21.0f) - verticalLineToRelative(-5.0f) - lineTo(3.0f, 16.0f) - close() - moveTo(15.5f, 15.0f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(6.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(21.0f, 15.0f) - verticalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-0.5f) - close() - moveTo(17.5f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(19.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - } - } - return _tableLock!! - } - -private var _tableLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableMoveAbove.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableMoveAbove.kt deleted file mode 100644 index 77696c9b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableMoveAbove.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableMoveAbove: ImageVector - get() { - if (_tableMoveAbove != null) { - return _tableMoveAbove!! - } - _tableMoveAbove = fluentIcon(name = "Filled.TableMoveAbove") { - fluentPath { - moveTo(20.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(16.5f) - close() - moveTo(20.78f, 9.72f) - curveToRelative(0.14f, 0.14f, 0.22f, 0.33f, 0.22f, 0.53f) - verticalLineToRelative(4.25f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(4.25f) - curveToRelative(0.2f, 0.0f, 0.39f, 0.08f, 0.53f, 0.22f) - close() - moveTo(14.5f, 14.5f) - verticalLineToRelative(-4.02f) - curveToRelative(-0.25f, 0.04f, -0.5f, 0.02f, -0.75f, -0.05f) - verticalLineToRelative(0.82f) - arcToRelative(1.75f, 1.75f, 0.0f, true, true, -3.5f, 0.0f) - verticalLineToRelative(-0.82f) - curveToRelative(-0.24f, 0.07f, -0.5f, 0.09f, -0.75f, 0.05f) - verticalLineToRelative(4.02f) - horizontalLineToRelative(5.0f) - close() - moveTo(9.5f, 16.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(-5.0f) - close() - moveTo(8.0f, 14.5f) - verticalLineToRelative(-5.0f) - lineTo(3.75f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.25f) - horizontalLineToRelative(5.0f) - close() - moveTo(3.0f, 16.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(5.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 16.0f) - close() - moveTo(16.0f, 16.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(1.75f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(16.0f, 21.0f) - verticalLineToRelative(-5.0f) - close() - moveTo(14.81f, 9.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 0.06f) - lineToRelative(-1.0f, -0.89f) - verticalLineToRelative(2.83f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(11.25f, 8.42f) - lineToRelative(-1.0f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.0f, -1.13f) - lineToRelative(2.25f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.0f, 0.0f) - lineToRelative(2.25f, 2.0f) - curveToRelative(0.3f, 0.27f, 0.34f, 0.75f, 0.06f, 1.06f) - close() - } - } - return _tableMoveAbove!! - } - -private var _tableMoveAbove: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableMoveBelow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableMoveBelow.kt deleted file mode 100644 index 5f70090c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableMoveBelow.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableMoveBelow: ImageVector - get() { - if (_tableMoveBelow != null) { - return _tableMoveBelow!! - } - _tableMoveBelow = fluentIcon(name = "Filled.TableMoveBelow") { - fluentPath { - moveTo(9.5f, 9.5f) - verticalLineToRelative(4.02f) - curveToRelative(0.25f, -0.04f, 0.5f, -0.02f, 0.75f, 0.05f) - verticalLineToRelative(-0.82f) - arcToRelative(1.75f, 1.75f, 0.0f, true, true, 3.5f, 0.0f) - verticalLineToRelative(0.82f) - curveToRelative(0.24f, -0.07f, 0.5f, -0.09f, 0.75f, -0.05f) - lineTo(14.5f, 9.5f) - horizontalLineToRelative(-5.0f) - close() - moveTo(8.0f, 9.5f) - verticalLineToRelative(5.0f) - lineTo(3.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(3.0f, 9.5f) - horizontalLineToRelative(5.0f) - close() - moveTo(9.5f, 8.0f) - horizontalLineToRelative(5.0f) - lineTo(14.5f, 3.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - close() - moveTo(16.0f, 9.5f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(4.25f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(21.0f, 9.5f) - horizontalLineToRelative(-5.0f) - close() - moveTo(21.0f, 8.0f) - horizontalLineToRelative(-5.0f) - lineTo(16.0f, 3.0f) - horizontalLineToRelative(1.75f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - lineTo(21.0f, 8.0f) - close() - moveTo(8.0f, 8.0f) - lineTo(3.0f, 8.0f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - lineTo(8.0f, 3.0f) - verticalLineToRelative(5.0f) - close() - moveTo(3.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 19.5f) - close() - moveTo(9.19f, 14.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -0.06f) - lineToRelative(1.0f, 0.89f) - verticalLineToRelative(-2.83f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(2.83f) - lineToRelative(1.0f, -0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.0f, 1.13f) - lineToRelative(-2.25f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.0f, 0.0f) - lineToRelative(-2.25f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.06f, -1.06f) - close() - } - } - return _tableMoveBelow!! - } - -private var _tableMoveBelow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableMoveLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableMoveLeft.kt deleted file mode 100644 index 46140610..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableMoveLeft.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableMoveLeft: ImageVector - get() { - if (_tableMoveLeft != null) { - return _tableMoveLeft!! - } - _tableMoveLeft = fluentIcon(name = "Filled.TableMoveLeft") { - fluentPath { - moveTo(16.0f, 21.0f) - horizontalLineToRelative(1.75f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 16.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - close() - moveTo(16.0f, 14.5f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - close() - moveTo(10.48f, 9.5f) - horizontalLineToRelative(4.02f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(-4.02f) - curveToRelative(0.04f, -0.25f, 0.02f, -0.5f, -0.05f, -0.75f) - horizontalLineToRelative(0.82f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, -3.5f) - horizontalLineToRelative(-0.82f) - curveToRelative(0.07f, -0.24f, 0.09f, -0.5f, 0.05f, -0.75f) - close() - moveTo(16.0f, 8.0f) - horizontalLineToRelative(5.0f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(16.0f, 3.0f) - verticalLineToRelative(5.0f) - close() - moveTo(14.5f, 3.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(-5.0f) - lineTo(9.5f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.75f) - horizontalLineToRelative(4.25f) - close() - moveTo(14.5f, 16.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(-4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(9.5f, 16.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(4.5f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(4.5f, 3.75f) - close() - moveTo(9.25f, 9.19f) - curveToRelative(0.3f, 0.27f, 0.34f, 0.75f, 0.06f, 1.06f) - lineToRelative(-0.89f, 1.0f) - horizontalLineToRelative(2.83f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(8.42f, 12.75f) - lineToRelative(0.9f, 1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, 1.0f) - lineToRelative(-2.0f, -2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.0f) - lineToRelative(2.0f, -2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -0.06f) - close() - } - } - return _tableMoveLeft!! - } - -private var _tableMoveLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableMoveRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableMoveRight.kt deleted file mode 100644 index b79db707..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableMoveRight.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableMoveRight: ImageVector - get() { - if (_tableMoveRight != null) { - return _tableMoveRight!! - } - _tableMoveRight = fluentIcon(name = "Filled.TableMoveRight") { - fluentPath { - moveTo(8.0f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - lineTo(3.0f, 8.0f) - horizontalLineToRelative(5.0f) - lineTo(8.0f, 3.0f) - close() - moveTo(8.0f, 9.5f) - lineTo(3.0f, 9.5f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-5.0f) - close() - moveTo(9.5f, 14.5f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(4.02f) - curveToRelative(-0.04f, 0.25f, -0.02f, 0.5f, 0.05f, 0.75f) - horizontalLineToRelative(-0.82f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, 3.5f) - horizontalLineToRelative(0.82f) - curveToRelative(-0.07f, 0.24f, -0.09f, 0.5f, -0.05f, 0.75f) - lineTo(9.5f, 14.5f) - close() - moveTo(8.0f, 16.0f) - lineTo(3.0f, 16.0f) - verticalLineToRelative(1.75f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - lineTo(8.0f, 21.0f) - verticalLineToRelative(-5.0f) - close() - moveTo(9.5f, 21.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, 0.75f) - lineTo(9.5f, 21.0f) - close() - moveTo(9.5f, 8.0f) - lineTo(9.5f, 3.0f) - horizontalLineToRelative(4.25f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(14.5f, 8.0f) - horizontalLineToRelative(-5.0f) - close() - moveTo(19.5f, 20.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(21.0f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(16.5f) - close() - moveTo(14.75f, 14.81f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.06f, -1.06f) - lineToRelative(0.89f, -1.0f) - horizontalLineToRelative(-2.83f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.83f) - lineToRelative(-0.89f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.12f, -1.0f) - lineToRelative(2.0f, 2.25f) - curveToRelative(0.25f, 0.29f, 0.25f, 0.71f, 0.0f, 1.0f) - lineToRelative(-2.0f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 0.06f) - close() - } - } - return _tableMoveRight!! - } - -private var _tableMoveRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableResizeColumn.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableResizeColumn.kt deleted file mode 100644 index 1f382b6d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableResizeColumn.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableResizeColumn: ImageVector - get() { - if (_tableResizeColumn != null) { - return _tableResizeColumn!! - } - _tableResizeColumn = fluentIcon(name = "Filled.TableResizeColumn") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-0.25f) - verticalLineToRelative(-6.65f) - lineToRelative(1.06f, -1.19f) - curveToRelative(0.59f, -0.66f, 0.59f, -1.66f, 0.0f, -2.32f) - lineToRelative(-1.06f, -1.2f) - lineTo(17.5f, 3.0f) - horizontalLineToRelative(0.25f) - close() - moveTo(14.09f, 15.56f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.52f, -1.81f) - horizontalLineToRelative(-3.14f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 8.0f, 15.83f) - lineTo(8.0f, 21.0f) - horizontalLineToRelative(8.0f) - verticalLineToRelative(-5.17f) - curveToRelative(-0.62f, 0.3f, -1.37f, 0.2f, -1.91f, -0.27f) - close() - moveTo(14.09f, 8.44f) - curveToRelative(0.54f, -0.48f, 1.3f, -0.56f, 1.91f, -0.27f) - lineTo(16.0f, 3.0f) - lineTo(8.0f, 3.0f) - verticalLineToRelative(5.17f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 2.43f, 2.08f) - horizontalLineToRelative(3.14f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.52f, -1.8f) - close() - moveTo(6.5f, 9.64f) - lineTo(6.5f, 3.0f) - horizontalLineToRelative(-0.25f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(0.25f) - verticalLineToRelative(-6.65f) - lineToRelative(-1.06f, -1.19f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.0f, -2.32f) - lineToRelative(1.06f, -1.2f) - close() - moveTo(15.58f, 11.25f) - lineTo(8.42f, 11.25f) - lineToRelative(0.9f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.13f, -1.0f) - lineToRelative(-2.0f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.0f) - lineToRelative(2.0f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.12f, -1.0f) - lineToRelative(-0.89f, -1.0f) - horizontalLineToRelative(7.16f) - lineToRelative(-0.89f, 1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.12f, 1.0f) - lineToRelative(2.0f, -2.25f) - lineToRelative(0.01f, -0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.01f, -1.0f) - lineToRelative(-2.0f, -2.24f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.12f, 1.0f) - lineToRelative(0.89f, 1.0f) - close() - } - } - return _tableResizeColumn!! - } - -private var _tableResizeColumn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableResizeRow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableResizeRow.kt deleted file mode 100644 index 013f626d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableResizeRow.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableResizeRow: ImageVector - get() { - if (_tableResizeRow != null) { - return _tableResizeRow!! - } - _tableResizeRow = fluentIcon(name = "Filled.TableResizeRow") { - fluentPath { - moveTo(21.0f, 17.75f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - verticalLineToRelative(-0.25f) - horizontalLineToRelative(6.65f) - lineToRelative(1.19f, 1.06f) - curveToRelative(0.66f, 0.59f, 1.66f, 0.59f, 2.32f, 0.0f) - lineToRelative(1.2f, -1.06f) - lineTo(21.0f, 17.5f) - verticalLineToRelative(0.25f) - close() - moveTo(8.44f, 14.09f) - curveToRelative(0.47f, -0.53f, 1.18f, -0.7f, 1.81f, -0.52f) - verticalLineToRelative(-3.14f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 8.17f, 8.0f) - lineTo(3.0f, 8.0f) - verticalLineToRelative(8.0f) - horizontalLineToRelative(5.17f) - curveToRelative(-0.3f, -0.62f, -0.2f, -1.37f, 0.27f, -1.91f) - close() - moveTo(13.75f, 10.43f) - verticalLineToRelative(3.14f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 15.83f, 16.0f) - lineTo(21.0f, 16.0f) - lineTo(21.0f, 8.0f) - horizontalLineToRelative(-5.17f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -2.08f, 2.43f) - close() - moveTo(14.35f, 6.5f) - lineTo(21.0f, 6.5f) - verticalLineToRelative(-0.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(0.25f) - horizontalLineToRelative(6.65f) - lineToRelative(1.19f, -1.06f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 2.32f, 0.0f) - lineToRelative(1.2f, 1.06f) - close() - moveTo(12.75f, 15.58f) - lineTo(12.75f, 8.42f) - lineToRelative(1.0f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.0f, -1.13f) - lineToRelative(-2.25f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, 0.0f) - lineToRelative(-2.25f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.0f, 1.12f) - lineToRelative(1.0f, -0.89f) - verticalLineToRelative(7.16f) - lineToRelative(-1.0f, -0.89f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.0f, 1.12f) - lineToRelative(2.25f, 2.0f) - lineToRelative(0.01f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.0f, -0.01f) - lineToRelative(2.24f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, -1.12f) - lineToRelative(-1.0f, 0.89f) - close() - } - } - return _tableResizeRow!! - } - -private var _tableResizeRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableSettings.kt deleted file mode 100644 index 6db83cf3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableSettings.kt +++ /dev/null @@ -1,106 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableSettings: ImageVector - get() { - if (_tableSettings != null) { - return _tableSettings!! - } - _tableSettings = fluentIcon(name = "Filled.TableSettings") { - fluentPath { - moveTo(9.5f, 21.0f) - horizontalLineToRelative(2.52f) - arcToRelative(6.47f, 6.47f, 0.0f, false, true, -0.85f, -5.0f) - lineTo(9.5f, 16.0f) - verticalLineToRelative(5.0f) - close() - moveTo(21.0f, 9.5f) - verticalLineToRelative(2.52f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, -5.0f, -0.85f) - lineTo(16.0f, 9.5f) - horizontalLineToRelative(5.0f) - close() - moveTo(14.5f, 9.5f) - verticalLineToRelative(2.23f) - arcToRelative(6.53f, 6.53f, 0.0f, false, false, -2.77f, 2.77f) - lineTo(9.5f, 14.5f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(21.0f, 8.0f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(16.0f, 3.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(14.5f, 3.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - lineTo(14.5f, 3.0f) - close() - moveTo(8.0f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - lineTo(3.0f, 8.0f) - horizontalLineToRelative(5.0f) - lineTo(8.0f, 3.0f) - close() - moveTo(3.0f, 9.5f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-5.0f) - lineTo(3.0f, 9.5f) - close() - moveTo(3.0f, 16.0f) - verticalLineToRelative(1.75f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - lineTo(8.0f, 21.0f) - verticalLineToRelative(-5.0f) - lineTo(3.0f, 16.0f) - close() - moveTo(14.28f, 13.98f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.59f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) - lineToRelative(0.55f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) - lineToRelative(-0.19f, 0.63f) - curveToRelative(0.44f, 0.39f, 0.94f, 0.7f, 1.49f, 0.93f) - lineToRelative(0.49f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) - lineToRelative(-0.2f, -0.69f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) - lineToRelative(0.59f, -0.14f) - arcToRelative(5.72f, 5.72f, 0.0f, false, false, 0.0f, -1.8f) - lineToRelative(-0.55f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.19f, -0.63f) - curveToRelative(-0.44f, -0.4f, -0.94f, -0.7f, -1.49f, -0.93f) - lineToRelative(-0.49f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) - lineToRelative(0.2f, 0.7f) - close() - moveTo(17.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) - close() - } - } - return _tableSettings!! - } - -private var _tableSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableSimple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableSimple.kt deleted file mode 100644 index c026d470..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableSimple.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableSimple: ImageVector - get() { - if (_tableSimple != null) { - return _tableSimple!! - } - _tableSimple = fluentIcon(name = "Filled.TableSimple") { - fluentPath { - moveTo(17.75f, 21.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(-8.25f) - lineTo(21.0f, 12.75f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - close() - moveTo(21.0f, 11.25f) - horizontalLineToRelative(-8.25f) - lineTo(12.75f, 3.0f) - horizontalLineToRelative(5.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(5.0f) - close() - moveTo(11.25f, 11.25f) - lineTo(11.25f, 3.0f) - horizontalLineToRelative(-5.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(8.25f) - close() - moveTo(3.0f, 12.75f) - verticalLineToRelative(5.0f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-8.25f) - lineTo(3.0f, 12.75f) - close() - } - } - return _tableSimple!! - } - -private var _tableSimple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableSimpleCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableSimpleCheckmark.kt deleted file mode 100644 index 3c5ee7e0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableSimpleCheckmark.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableSimpleCheckmark: ImageVector - get() { - if (_tableSimpleCheckmark != null) { - return _tableSimpleCheckmark!! - } - _tableSimpleCheckmark = fluentIcon(name = "Filled.TableSimpleCheckmark") { - fluentPath { - moveTo(11.25f, 12.75f) - lineTo(11.25f, 21.0f) - horizontalLineToRelative(-5.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(8.25f) - close() - moveTo(12.75f, 21.0f) - verticalLineToRelative(-8.25f) - lineTo(21.0f, 12.75f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-5.0f) - close() - moveTo(12.75f, 3.0f) - verticalLineToRelative(8.25f) - lineTo(21.0f, 11.25f) - verticalLineToRelative(-5.0f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - horizontalLineToRelative(-5.0f) - close() - moveTo(11.25f, 3.0f) - verticalLineToRelative(8.25f) - lineTo(3.0f, 11.25f) - verticalLineToRelative(-5.0f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(18.78f, 16.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-1.47f, 1.47f) - lineToRelative(-0.47f, -0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.0f, 1.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.0f, -2.0f) - close() - } - } - return _tableSimpleCheckmark!! - } - -private var _tableSimpleCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableSimpleMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableSimpleMultiple.kt deleted file mode 100644 index 7799a56a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableSimpleMultiple.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableSimpleMultiple: ImageVector - get() { - if (_tableSimpleMultiple != null) { - return _tableSimpleMultiple!! - } - _tableSimpleMultiple = fluentIcon(name = "Filled.TableSimpleMultiple") { - fluentPath { - moveTo(15.75f, 19.0f) - lineTo(11.5f, 19.0f) - verticalLineToRelative(-7.5f) - lineTo(19.0f, 11.5f) - verticalLineToRelative(4.25f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - close() - moveTo(19.0f, 10.0f) - horizontalLineToRelative(-7.5f) - lineTo(11.5f, 2.0f) - horizontalLineToRelative(4.25f) - curveTo(17.55f, 2.0f, 19.0f, 3.46f, 19.0f, 5.25f) - lineTo(19.0f, 10.0f) - close() - moveTo(10.0f, 10.0f) - lineTo(10.0f, 2.0f) - lineTo(5.25f, 2.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) - lineTo(2.0f, 10.0f) - horizontalLineToRelative(8.0f) - close() - moveTo(10.0f, 19.0f) - verticalLineToRelative(-7.5f) - lineTo(2.0f, 11.5f) - verticalLineToRelative(4.25f) - curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) - lineTo(10.0f, 19.0f) - close() - moveTo(8.25f, 22.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.0f, -2.0f) - horizontalLineToRelative(10.5f) - curveTo(18.1f, 20.0f, 20.0f, 18.1f, 20.0f, 15.75f) - lineTo(20.0f, 5.25f) - curveToRelative(1.18f, 0.49f, 2.0f, 1.65f, 2.0f, 3.0f) - verticalLineToRelative(8.25f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, -5.5f, 5.5f) - lineTo(8.25f, 22.0f) - close() - } - } - return _tableSimpleMultiple!! - } - -private var _tableSimpleMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableStackAbove.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableStackAbove.kt deleted file mode 100644 index 5dd81f2f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableStackAbove.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableStackAbove: ImageVector - get() { - if (_tableStackAbove != null) { - return _tableStackAbove!! - } - _tableStackAbove = fluentIcon(name = "Filled.TableStackAbove") { - fluentPath { - moveTo(20.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(16.5f) - close() - moveTo(14.5f, 9.5f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(9.5f, 16.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(-5.0f) - close() - moveTo(8.0f, 9.5f) - verticalLineToRelative(5.0f) - lineTo(3.0f, 14.5f) - verticalLineToRelative(-4.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - lineTo(8.0f, 9.5f) - close() - moveTo(8.0f, 16.0f) - lineTo(3.0f, 16.0f) - verticalLineToRelative(1.75f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - lineTo(8.0f, 21.0f) - verticalLineToRelative(-5.0f) - close() - moveTo(21.0f, 16.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(1.75f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 16.0f) - close() - moveTo(16.0f, 14.5f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(16.0f, 9.5f) - verticalLineToRelative(5.0f) - close() - } - } - return _tableStackAbove!! - } - -private var _tableStackAbove: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableStackBelow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableStackBelow.kt deleted file mode 100644 index 3ef64f63..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableStackBelow.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableStackBelow: ImageVector - get() { - if (_tableStackBelow != null) { - return _tableStackBelow!! - } - _tableStackBelow = fluentIcon(name = "Filled.TableStackBelow") { - fluentPath { - moveTo(9.5f, 9.5f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(-5.0f) - close() - moveTo(8.0f, 9.5f) - verticalLineToRelative(5.0f) - horizontalLineTo(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineTo(9.5f) - horizontalLineToRelative(5.0f) - close() - moveTo(9.5f, 8.0f) - horizontalLineToRelative(5.0f) - verticalLineTo(3.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - close() - moveTo(16.0f, 9.5f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(4.25f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineTo(9.5f) - horizontalLineToRelative(-5.0f) - close() - moveTo(21.0f, 8.0f) - horizontalLineToRelative(-5.0f) - verticalLineTo(3.0f) - horizontalLineToRelative(1.75f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineTo(8.0f) - close() - moveTo(8.0f, 8.0f) - horizontalLineTo(3.0f) - verticalLineTo(6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineTo(8.0f) - verticalLineToRelative(5.0f) - close() - moveTo(3.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(3.75f) - close() - } - } - return _tableStackBelow!! - } - -private var _tableStackBelow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableStackLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableStackLeft.kt deleted file mode 100644 index 675664b6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableStackLeft.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableStackLeft: ImageVector - get() { - if (_tableStackLeft != null) { - return _tableStackLeft!! - } - _tableStackLeft = fluentIcon(name = "Filled.TableStackLeft") { - fluentPath { - moveTo(16.0f, 21.0f) - horizontalLineToRelative(1.75f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 16.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - close() - moveTo(16.0f, 14.5f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - close() - moveTo(14.5f, 9.5f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(16.0f, 8.0f) - horizontalLineToRelative(5.0f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(16.0f, 3.0f) - verticalLineToRelative(5.0f) - close() - moveTo(14.5f, 3.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(-5.0f) - lineTo(9.5f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.75f) - horizontalLineToRelative(4.25f) - close() - moveTo(14.5f, 16.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(-4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(9.5f, 16.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(4.5f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(4.5f, 3.75f) - close() - } - } - return _tableStackLeft!! - } - -private var _tableStackLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableStackRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableStackRight.kt deleted file mode 100644 index 90848647..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableStackRight.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableStackRight: ImageVector - get() { - if (_tableStackRight != null) { - return _tableStackRight!! - } - _tableStackRight = fluentIcon(name = "Filled.TableStackRight") { - fluentPath { - moveTo(8.0f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - lineTo(3.0f, 8.0f) - horizontalLineToRelative(5.0f) - lineTo(8.0f, 3.0f) - close() - moveTo(8.0f, 9.5f) - lineTo(3.0f, 9.5f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-5.0f) - close() - moveTo(9.5f, 14.5f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(-5.0f) - close() - moveTo(8.0f, 16.0f) - lineTo(3.0f, 16.0f) - verticalLineToRelative(1.75f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - lineTo(8.0f, 21.0f) - verticalLineToRelative(-5.0f) - close() - moveTo(9.5f, 21.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, 0.75f) - lineTo(9.5f, 21.0f) - close() - moveTo(9.5f, 8.0f) - lineTo(9.5f, 3.0f) - horizontalLineToRelative(4.25f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(14.5f, 8.0f) - horizontalLineToRelative(-5.0f) - close() - moveTo(19.5f, 20.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(21.0f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(16.5f) - close() - } - } - return _tableStackRight!! - } - -private var _tableStackRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableSwitch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableSwitch.kt deleted file mode 100644 index 8f02986b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TableSwitch.kt +++ /dev/null @@ -1,99 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TableSwitch: ImageVector - get() { - if (_tableSwitch != null) { - return _tableSwitch!! - } - _tableSwitch = fluentIcon(name = "Filled.TableSwitch") { - fluentPath { - moveTo(8.78f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(0.72f, 0.72f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(2.19f) - lineToRelative(-0.72f, -0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineToRelative(-0.72f, 0.72f) - lineTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.19f) - lineToRelative(-0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineToRelative(2.0f, -2.0f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-2.0f, -2.0f) - close() - moveTo(14.5f, 8.0f) - horizontalLineToRelative(-5.0f) - lineTo(9.5f, 6.97f) - lineTo(11.5f, 5.0f) - curveToRelative(0.54f, -0.54f, 0.65f, -1.34f, 0.34f, -1.99f) - horizontalLineToRelative(2.67f) - verticalLineToRelative(5.0f) - close() - moveTo(3.0f, 11.83f) - verticalLineToRelative(2.67f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-5.0f) - lineTo(6.97f, 9.5f) - lineTo(5.0f, 11.49f) - curveToRelative(-0.54f, 0.54f, -1.34f, 0.65f, -1.99f, 0.34f) - close() - moveTo(14.5f, 14.5f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(16.0f, 14.5f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(-5.0f) - close() - moveTo(16.0f, 8.0f) - horizontalLineToRelative(5.0f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(16.0f, 3.0f) - verticalLineToRelative(5.0f) - close() - moveTo(14.5f, 21.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(8.0f, 16.0f) - lineTo(3.0f, 16.0f) - verticalLineToRelative(1.75f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - lineTo(8.0f, 21.0f) - verticalLineToRelative(-5.0f) - close() - moveTo(16.0f, 16.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(1.75f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(16.0f, 21.0f) - verticalLineToRelative(-5.0f) - close() - } - } - return _tableSwitch!! - } - -private var _tableSwitch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Tablet.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Tablet.kt deleted file mode 100644 index a6333f11..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Tablet.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Tablet: ImageVector - get() { - if (_tablet != null) { - return _tablet!! - } - _tablet = fluentIcon(name = "Filled.Tablet") { - fluentPath { - moveTo(19.75f, 4.0f) - curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(22.0f, 19.0f, 21.0f, 20.0f, 19.75f, 20.0f) - lineTo(4.25f, 20.0f) - curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) - lineTo(2.0f, 6.25f) - curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) - horizontalLineToRelative(15.5f) - close() - moveTo(13.75f, 15.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - close() - } - } - return _tablet!! - } - -private var _tablet: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabletSpeaker.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabletSpeaker.kt deleted file mode 100644 index 5cb666e7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TabletSpeaker.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TabletSpeaker: ImageVector - get() { - if (_tabletSpeaker != null) { - return _tabletSpeaker!! - } - _tabletSpeaker = fluentIcon(name = "Filled.TabletSpeaker") { - fluentPath { - moveTo(22.14f, 3.3f) - arcToRelative(4.53f, 4.53f, 0.0f, false, false, -0.91f, -1.13f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.96f, 1.16f) - curveToRelative(0.13f, 0.1f, 0.35f, 0.35f, 0.59f, 0.74f) - curveToRelative(0.4f, 0.67f, 0.64f, 1.48f, 0.64f, 2.43f) - curveToRelative(0.0f, 0.95f, -0.24f, 1.76f, -0.64f, 2.43f) - curveToRelative(-0.24f, 0.39f, -0.46f, 0.64f, -0.59f, 0.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.96f, 1.16f) - curveToRelative(0.25f, -0.21f, 0.59f, -0.58f, 0.91f, -1.13f) - curveToRelative(0.54f, -0.9f, 0.86f, -1.96f, 0.86f, -3.2f) - curveToRelative(0.0f, -1.24f, -0.32f, -2.3f, -0.86f, -3.2f) - close() - } - fluentPath { - moveTo(19.87f, 4.4f) - curveToRelative(-0.23f, -0.36f, -0.48f, -0.6f, -0.67f, -0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 1.2f) - arcTo(2.24f, 2.24f, 0.0f, false, true, 19.0f, 6.5f) - arcToRelative(2.24f, 2.24f, 0.0f, false, true, -0.7f, 1.65f) - lineToRelative(-0.08f, 0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) - arcToRelative(3.73f, 3.73f, 0.0f, false, false, 1.3f, -2.85f) - curveToRelative(0.0f, -0.81f, -0.23f, -1.52f, -0.63f, -2.1f) - close() - } - fluentPath { - moveTo(17.0f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.31f, -0.5f) - lineTo(14.16f, 5.0f) - horizontalLineToRelative(-1.41f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(1.41f) - lineToRelative(1.53f, 1.74f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 17.0f, 9.25f) - verticalLineToRelative(-5.5f) - close() - } - fluentPath { - moveTo(12.0f, 4.0f) - horizontalLineToRelative(1.53f) - horizontalLineToRelative(-9.28f) - curveTo(3.01f, 4.0f, 2.0f, 5.0f, 2.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(2.0f, 19.0f, 3.0f, 20.0f, 4.25f, 20.0f) - horizontalLineToRelative(15.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-6.27f) - lineToRelative(-0.13f, 0.11f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -2.86f, -1.11f) - curveToRelative(-0.42f, 0.07f, -0.87f, -0.03f, -1.23f, -0.27f) - arcToRelative(1.76f, 1.76f, 0.0f, false, true, -2.8f, 0.33f) - lineTo(13.52f, 9.0f) - lineTo(12.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(11.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(10.25f, 15.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - } - } - return _tabletSpeaker!! - } - -private var _tabletSpeaker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Tabs.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Tabs.kt deleted file mode 100644 index 3f56319e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Tabs.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Tabs: ImageVector - get() { - if (_tabs != null) { - return _tabs!! - } - _tabs = fluentIcon(name = "Filled.Tabs") { - fluentPath { - moveTo(2.0f, 9.25f) - curveTo(2.0f, 5.25f, 5.25f, 2.0f, 9.25f, 2.0f) - horizontalLineToRelative(3.5f) - curveToRelative(1.35f, 0.0f, 2.51f, 0.83f, 3.0f, 2.0f) - horizontalLineToRelative(-5.5f) - arcTo(6.25f, 6.25f, 0.0f, false, false, 4.0f, 10.25f) - verticalLineToRelative(5.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -2.0f, -3.0f) - verticalLineToRelative(-3.5f) - close() - moveTo(5.0f, 10.25f) - curveTo(5.0f, 7.35f, 7.35f, 5.0f, 10.25f, 5.0f) - horizontalLineToRelative(5.5f) - curveToRelative(1.35f, 0.0f, 2.51f, 0.83f, 3.0f, 2.0f) - horizontalLineToRelative(-7.5f) - arcTo(4.25f, 4.25f, 0.0f, false, false, 7.0f, 11.25f) - verticalLineToRelative(7.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -2.0f, -3.0f) - verticalLineToRelative(-5.5f) - close() - moveTo(11.25f, 8.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 8.0f, 11.25f) - verticalLineToRelative(7.5f) - curveTo(8.0f, 20.55f, 9.46f, 22.0f, 11.25f, 22.0f) - horizontalLineToRelative(7.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-7.5f) - curveTo(22.0f, 9.45f, 20.54f, 8.0f, 18.75f, 8.0f) - horizontalLineToRelative(-7.5f) - close() - } - } - return _tabs!! - } - -private var _tabs: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TagDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TagDismiss.kt deleted file mode 100644 index 116a6e5b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TagDismiss.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TagDismiss: ImageVector - get() { - if (_tagDismiss != null) { - return _tagDismiss!! - } - _tagDismiss = fluentIcon(name = "Filled.TagDismiss") { - fluentPath { - moveTo(19.75f, 2.0f) - curveTo(20.99f, 2.0f, 22.0f, 3.0f, 22.0f, 4.25f) - verticalLineToRelative(5.46f) - curveToRelative(0.0f, 0.86f, -0.34f, 1.69f, -0.95f, 2.3f) - lineToRelative(-0.03f, 0.03f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.0f, 20.96f) - curveToRelative(-1.25f, 0.8f, -2.94f, 0.65f, -4.04f, -0.45f) - lineTo(3.5f, 16.06f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.6f) - lineToRelative(8.5f, -8.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.3f, -0.96f) - horizontalLineToRelative(5.46f) - close() - moveTo(17.0f, 5.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-1.64f, -1.65f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.65f, 1.64f) - lineToRelative(-1.65f, -1.64f) - close() - } - } - return _tagDismiss!! - } - -private var _tagDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TagError.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TagError.kt deleted file mode 100644 index 49aab03f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TagError.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TagError: ImageVector - get() { - if (_tagError != null) { - return _tagError!! - } - _tagError = fluentIcon(name = "Filled.TagError") { - fluentPath { - moveTo(19.75f, 2.0f) - curveTo(20.99f, 2.0f, 22.0f, 3.0f, 22.0f, 4.25f) - verticalLineToRelative(5.46f) - curveToRelative(0.0f, 0.86f, -0.34f, 1.69f, -0.95f, 2.3f) - lineToRelative(-0.03f, 0.03f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.0f, 20.96f) - curveToRelative(-1.25f, 0.8f, -2.94f, 0.65f, -4.04f, -0.45f) - lineTo(3.5f, 16.06f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.6f) - lineToRelative(8.5f, -8.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.3f, -0.96f) - horizontalLineToRelative(5.46f) - close() - moveTo(17.0f, 5.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(17.5f, 14.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(17.5f, 21.13f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.25f) - close() - } - } - return _tagError!! - } - -private var _tagError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TagLock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TagLock.kt deleted file mode 100644 index 1208c3b1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TagLock.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TagLock: ImageVector - get() { - if (_tagLock != null) { - return _tagLock!! - } - _tagLock = fluentIcon(name = "Filled.TagLock") { - fluentPath { - moveTo(19.75f, 2.0f) - curveTo(20.99f, 2.0f, 22.0f, 3.0f, 22.0f, 4.25f) - verticalLineToRelative(5.46f) - curveToRelative(0.0f, 0.86f, -0.34f, 1.69f, -0.95f, 2.3f) - lineToRelative(-0.42f, 0.42f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 14.0f, 14.0f) - verticalLineToRelative(0.05f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.0f, 2.45f) - verticalLineToRelative(4.45f) - curveToRelative(-1.26f, 0.8f, -2.95f, 0.66f, -4.05f, -0.44f) - lineTo(3.5f, 16.06f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.6f) - lineToRelative(8.5f, -8.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.3f, -0.96f) - horizontalLineToRelative(5.46f) - close() - moveTo(17.0f, 5.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(15.0f, 15.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(6.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(20.0f, 15.0f) - verticalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) - verticalLineToRelative(1.0f) - close() - moveTo(16.5f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(18.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - } - } - return _tagLock!! - } - -private var _tagLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TagMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TagMultiple.kt deleted file mode 100644 index 67393628..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TagMultiple.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TagMultiple: ImageVector - get() { - if (_tagMultiple != null) { - return _tagMultiple!! - } - _tagMultiple = fluentIcon(name = "Filled.TagMultiple") { - fluentPath { - moveTo(12.75f, 2.0f) - curveToRelative(-0.83f, 0.0f, -1.64f, 0.32f, -2.24f, 0.9f) - lineTo(3.7f, 9.4f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.04f, 3.22f) - lineToRelative(6.26f, 6.22f) - curveToRelative(0.87f, 0.87f, 2.28f, 0.88f, 3.16f, 0.01f) - lineToRelative(6.95f, -6.83f) - curveToRelative(0.62f, -0.61f, 0.97f, -1.45f, 0.97f, -2.32f) - lineTo(21.0f, 4.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 2.0f) - horizontalLineToRelative(-5.5f) - close() - moveTo(16.25f, 7.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, 2.5f) - close() - moveTo(19.25f, 14.18f) - lineTo(20.73f, 12.73f) - lineTo(20.86f, 12.6f) - curveToRelative(0.31f, 0.95f, 0.08f, 2.05f, -0.69f, 2.8f) - lineToRelative(-5.33f, 5.24f) - arcToRelative(4.75f, 4.75f, 0.0f, false, true, -6.67f, -0.02f) - lineToRelative(-4.35f, -4.3f) - curveToRelative(-0.77f, -0.77f, -1.0f, -1.86f, -0.69f, -2.82f) - lineToRelative(1.63f, 1.62f) - lineToRelative(0.11f, 0.13f) - lineToRelative(2.41f, 2.38f) - lineToRelative(1.93f, 1.92f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 4.58f, 0.02f) - lineToRelative(5.33f, -5.23f) - lineToRelative(0.14f, -0.16f) - close() - } - } - return _tagMultiple!! - } - -private var _tagMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TagOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TagOff.kt deleted file mode 100644 index 7e2b9032..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TagOff.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TagOff: ImageVector - get() { - if (_tagOff != null) { - return _tagOff!! - } - _tagOff = fluentIcon(name = "Filled.TagOff") { - fluentPath { - moveToRelative(16.0f, 17.06f) - lineToRelative(4.72f, 4.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineTo(6.94f, 8.0f) - lineTo(3.5f, 11.46f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 0.0f, 4.6f) - lineToRelative(4.46f, 4.45f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 4.6f, 0.0f) - lineTo(16.0f, 17.06f) - close() - moveTo(21.05f, 12.01f) - lineTo(18.06f, 15.0f) - lineTo(9.0f, 5.94f) - lineTo(12.0f, 2.95f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.3f, -0.95f) - horizontalLineToRelative(5.46f) - curveTo(21.0f, 2.0f, 22.0f, 3.0f, 22.0f, 4.25f) - verticalLineToRelative(5.46f) - curveToRelative(0.0f, 0.86f, -0.34f, 1.69f, -0.95f, 2.3f) - close() - moveTo(17.0f, 5.51f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - } - } - return _tagOff!! - } - -private var _tagOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TagQuestionMark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TagQuestionMark.kt deleted file mode 100644 index 243cc1ba..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TagQuestionMark.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TagQuestionMark: ImageVector - get() { - if (_tagQuestionMark != null) { - return _tagQuestionMark!! - } - _tagQuestionMark = fluentIcon(name = "Filled.TagQuestionMark") { - fluentPath { - moveTo(19.75f, 2.0f) - curveTo(20.99f, 2.0f, 22.0f, 3.0f, 22.0f, 4.25f) - verticalLineToRelative(5.46f) - curveToRelative(0.0f, 0.86f, -0.34f, 1.69f, -0.95f, 2.3f) - lineToRelative(-0.03f, 0.03f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.0f, 20.96f) - curveToRelative(-1.25f, 0.8f, -2.94f, 0.65f, -4.04f, -0.45f) - lineTo(3.5f, 16.06f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.6f) - lineToRelative(8.5f, -8.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.3f, -0.96f) - horizontalLineToRelative(5.46f) - close() - moveTo(17.0f, 5.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(16.88f, 20.5f) - arcToRelative(0.62f, 0.62f, 0.0f, true, true, 1.24f, 0.0f) - arcToRelative(0.62f, 0.62f, 0.0f, false, true, -1.24f, 0.0f) - close() - moveTo(15.65f, 15.96f) - curveToRelative(-0.01f, -1.14f, 0.8f, -1.96f, 1.85f, -1.96f) - curveToRelative(1.03f, 0.0f, 1.85f, 0.85f, 1.85f, 1.95f) - curveToRelative(0.0f, 0.57f, -0.18f, 0.92f, -0.66f, 1.45f) - lineToRelative(-0.27f, 0.3f) - lineToRelative(-0.1f, 0.1f) - curveToRelative(-0.24f, 0.3f, -0.32f, 0.47f, -0.32f, 0.7f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - curveToRelative(0.0f, -0.57f, 0.19f, -0.93f, 0.67f, -1.47f) - lineToRelative(0.27f, -0.29f) - lineToRelative(0.1f, -0.11f) - curveToRelative(0.24f, -0.29f, 0.31f, -0.45f, 0.31f, -0.68f) - curveToRelative(0.0f, -0.55f, -0.38f, -0.95f, -0.85f, -0.95f) - curveToRelative(-0.5f, 0.0f, -0.86f, 0.37f, -0.85f, 0.95f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - close() - } - } - return _tagQuestionMark!! - } - -private var _tagQuestionMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TagReset.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TagReset.kt deleted file mode 100644 index 9dc77c84..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TagReset.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TagReset: ImageVector - get() { - if (_tagReset != null) { - return _tagReset!! - } - _tagReset = fluentIcon(name = "Filled.TagReset") { - fluentPath { - moveTo(22.0f, 4.25f) - curveTo(22.0f, 3.01f, 21.0f, 2.0f, 19.75f, 2.0f) - horizontalLineToRelative(-5.47f) - curveToRelative(-0.86f, 0.0f, -1.69f, 0.34f, -2.3f, 0.95f) - lineToRelative(-8.5f, 8.51f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 0.0f, 4.6f) - lineToRelative(4.47f, 4.45f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 4.6f, 0.0f) - arcTo(6.0f, 6.0f, 0.0f, false, true, 12.0f, 18.0f) - curveToRelative(0.0f, -0.55f, 0.26f, -1.05f, 0.66f, -1.37f) - lineTo(11.0f, 15.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.0f, -2.48f) - lineToRelative(2.0f, -2.0f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 15.98f, 12.0f) - lineTo(18.0f, 12.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 2.5f, 0.55f) - lineToRelative(0.55f, -0.54f) - curveToRelative(0.6f, -0.61f, 0.95f, -1.44f, 0.95f, -2.3f) - lineTo(22.0f, 4.25f) - close() - moveTo(15.5f, 7.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - moveTo(14.78f, 12.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-2.0f, 2.0f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-0.72f, -0.72f) - lineTo(18.0f, 14.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, -3.5f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, false, 5.0f, -5.0f) - horizontalLineToRelative(-3.94f) - lineToRelative(0.72f, -0.72f) - close() - } - } - return _tagReset!! - } - -private var _tagReset: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TagSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TagSearch.kt deleted file mode 100644 index 1528c742..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TagSearch.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TagSearch: ImageVector - get() { - if (_tagSearch != null) { - return _tagSearch!! - } - _tagSearch = fluentIcon(name = "Filled.TagSearch") { - fluentPath { - moveTo(22.0f, 4.25f) - curveTo(22.0f, 3.01f, 21.0f, 2.0f, 19.75f, 2.0f) - horizontalLineToRelative(-5.47f) - curveToRelative(-0.86f, 0.0f, -1.69f, 0.34f, -2.3f, 0.95f) - lineToRelative(-8.5f, 8.51f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 0.0f, 4.6f) - lineToRelative(4.47f, 4.45f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 4.6f, 0.0f) - lineToRelative(0.1f, -0.1f) - arcTo(5.48f, 5.48f, 0.0f, false, true, 16.5f, 11.0f) - curveToRelative(1.53f, 0.0f, 2.92f, 0.63f, 3.92f, 1.64f) - lineToRelative(0.63f, -0.63f) - curveToRelative(0.6f, -0.61f, 0.95f, -1.44f, 0.95f, -2.3f) - lineTo(22.0f, 4.25f) - close() - moveTo(15.5f, 7.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - moveTo(20.17f, 19.1f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(2.61f, 2.62f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.61f, -2.61f) - close() - moveTo(19.5f, 16.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) - close() - } - } - return _tagSearch!! - } - -private var _tagSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TapDouble.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TapDouble.kt deleted file mode 100644 index 114a0c2e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TapDouble.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TapDouble: ImageVector - get() { - if (_tapDouble != null) { - return _tapDouble!! - } - _tapDouble = fluentIcon(name = "Filled.TapDouble") { - fluentPath { - moveTo(11.75f, 7.0f) - curveToRelative(1.36f, 0.0f, 1.95f, 0.9f, 2.0f, 2.33f) - lineTo(13.75f, 12.0f) - lineToRelative(2.87f, 0.41f) - lineToRelative(0.34f, 0.07f) - curveToRelative(1.4f, 0.4f, 2.25f, 1.8f, 1.96f, 3.22f) - lineToRelative(-0.05f, 0.17f) - lineToRelative(-1.22f, 4.44f) - curveToRelative(-0.17f, 0.62f, -0.67f, 1.1f, -1.3f, 1.24f) - lineToRelative(-0.14f, 0.03f) - lineToRelative(-3.06f, 0.43f) - curveToRelative(-0.76f, 0.11f, -1.5f, -0.29f, -1.83f, -0.97f) - lineToRelative(-0.06f, -0.14f) - lineToRelative(-0.21f, -0.57f) - arcToRelative(4.13f, 4.13f, 0.0f, false, false, -1.18f, -1.67f) - lineToRelative(-0.2f, -0.17f) - lineToRelative(-1.6f, -1.2f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -0.27f, -0.16f) - lineToRelative(-0.14f, -0.07f) - lineToRelative(-2.2f, -0.86f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.47f, -0.66f) - curveToRelative(-0.03f, -0.73f, 0.5f, -1.25f, 1.42f, -1.72f) - curveToRelative(0.72f, -0.36f, 1.73f, -0.33f, 3.07f, 0.05f) - lineToRelative(0.27f, 0.08f) - lineTo(9.75f, 9.5f) - curveToRelative(0.0f, -1.54f, 0.58f, -2.51f, 2.0f, -2.51f) - close() - moveTo(11.75f, 2.0f) - arcToRelative(7.25f, 7.25f, 0.0f, false, true, 6.67f, 10.1f) - arcToRelative(3.74f, 3.74f, 0.0f, false, false, -1.2f, -0.57f) - lineToRelative(-0.17f, -0.04f) - arcToRelative(5.75f, 5.75f, 0.0f, true, false, -9.92f, 1.19f) - arcToRelative(3.22f, 3.22f, 0.0f, false, false, -1.51f, 0.44f) - arcTo(7.25f, 7.25f, 0.0f, false, true, 11.75f, 2.0f) - close() - moveTo(11.75f, 4.5f) - arcToRelative(4.75f, 4.75f, 0.0f, false, true, 4.27f, 6.82f) - lineToRelative(-1.27f, -0.18f) - verticalLineToRelative(-0.65f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, -0.83f, -3.66f) - lineToRelative(-0.15f, -0.12f) - arcTo(2.85f, 2.85f, 0.0f, false, false, 11.75f, 6.0f) - curveToRelative(-0.89f, 0.0f, -1.56f, 0.26f, -2.04f, 0.72f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, -0.96f, 3.79f) - verticalLineToRelative(1.85f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.3f, 0.3f) - arcToRelative(4.75f, 4.75f, 0.0f, false, true, 3.3f, -8.16f) - close() - } - } - return _tapDouble!! - } - -private var _tapDouble: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TapSingle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TapSingle.kt deleted file mode 100644 index 20eea66e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TapSingle.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TapSingle: ImageVector - get() { - if (_tapSingle != null) { - return _tapSingle!! - } - _tapSingle = fluentIcon(name = "Filled.TapSingle") { - fluentPath { - moveTo(11.75f, 6.0f) - curveToRelative(1.36f, 0.0f, 1.95f, 0.9f, 2.0f, 2.33f) - lineTo(13.75f, 11.0f) - lineToRelative(2.87f, 0.41f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.3f, 3.29f) - lineToRelative(-0.05f, 0.17f) - lineToRelative(-1.22f, 4.44f) - curveToRelative(-0.18f, 0.62f, -0.67f, 1.1f, -1.3f, 1.24f) - lineToRelative(-0.14f, 0.03f) - lineToRelative(-3.06f, 0.43f) - curveToRelative(-0.76f, 0.11f, -1.5f, -0.29f, -1.83f, -0.97f) - lineToRelative(-0.06f, -0.14f) - lineToRelative(-0.21f, -0.57f) - arcToRelative(4.13f, 4.13f, 0.0f, false, false, -1.18f, -1.67f) - lineToRelative(-0.2f, -0.17f) - lineToRelative(-1.6f, -1.2f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -0.27f, -0.16f) - lineToRelative(-0.14f, -0.07f) - lineToRelative(-2.2f, -0.86f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.47f, -0.66f) - curveToRelative(-0.03f, -0.73f, 0.5f, -1.25f, 1.42f, -1.72f) - curveToRelative(0.72f, -0.36f, 1.73f, -0.33f, 3.07f, 0.05f) - lineToRelative(0.27f, 0.08f) - lineTo(9.75f, 8.5f) - curveToRelative(0.0f, -1.54f, 0.58f, -2.51f, 2.0f, -2.51f) - close() - moveTo(11.75f, 2.5f) - arcToRelative(5.75f, 5.75f, 0.0f, false, true, 5.3f, 7.99f) - lineToRelative(0.17f, 0.04f) - lineToRelative(-0.45f, -0.1f) - lineToRelative(-1.27f, -0.18f) - arcToRelative(4.25f, 4.25f, 0.0f, true, false, -6.75f, 1.02f) - verticalLineToRelative(0.41f) - arcToRelative(5.6f, 5.6f, 0.0f, false, false, -1.67f, -0.07f) - arcToRelative(5.75f, 5.75f, 0.0f, false, true, 4.67f, -9.1f) - close() - } - } - return _tapSingle!! - } - -private var _tapSingle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Target.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Target.kt deleted file mode 100644 index 983ffaf7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Target.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Target: ImageVector - get() { - if (_target != null) { - return _target!! - } - _target = fluentIcon(name = "Filled.Target") { - fluentPath { - moveTo(12.0f, 14.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) - close() - moveTo(6.0f, 12.0f) - arcToRelative(6.0f, 6.0f, 0.0f, true, true, 12.0f, 0.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, -12.0f, 0.0f) - close() - moveTo(12.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) - close() - moveTo(2.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) - close() - moveTo(12.0f, 4.0f) - arcToRelative(8.0f, 8.0f, 0.0f, true, false, 0.0f, 16.0f) - arcToRelative(8.0f, 8.0f, 0.0f, false, false, 0.0f, -16.0f) - close() - } - } - return _target!! - } - -private var _target: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TargetArrow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TargetArrow.kt deleted file mode 100644 index a75dd262..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TargetArrow.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TargetArrow: ImageVector - get() { - if (_targetArrow != null) { - return _targetArrow!! - } - _targetArrow = fluentIcon(name = "Filled.TargetArrow") { - fluentPath { - moveTo(21.78f, 6.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.53f, -1.28f) - lineTo(18.5f, 5.5f) - lineTo(18.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.28f, -0.53f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.22f, 0.53f) - verticalLineToRelative(2.84f) - lineToRelative(-1.98f, 1.98f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 1.41f, 1.41f) - lineToRelative(1.98f, -1.98f) - horizontalLineToRelative(2.84f) - curveToRelative(0.2f, 0.0f, 0.39f, -0.08f, 0.53f, -0.22f) - lineToRelative(2.5f, -2.5f) - close() - moveTo(12.0f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.36f, 0.21f, 3.42f, 0.6f) - lineToRelative(-1.4f, 1.41f) - lineToRelative(-0.18f, 0.2f) - arcTo(8.02f, 8.02f, 0.0f, false, false, 4.0f, 12.0f) - arcToRelative(8.0f, 8.0f, 0.0f, true, false, 15.79f, -1.84f) - lineToRelative(0.2f, -0.17f) - lineToRelative(1.4f, -1.41f) - arcTo(10.0f, 10.0f, 0.0f, true, true, 12.0f, 2.0f) - close() - moveTo(12.0f, 6.0f) - curveToRelative(0.52f, 0.0f, 1.02f, 0.07f, 1.5f, 0.19f) - verticalLineToRelative(1.48f) - lineToRelative(-0.41f, 0.42f) - lineToRelative(-0.05f, 0.05f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 2.82f, 2.82f) - lineToRelative(0.05f, -0.05f) - lineToRelative(0.42f, -0.41f) - horizontalLineToRelative(1.48f) - arcTo(6.01f, 6.01f, 0.0f, true, true, 12.0f, 6.0f) - close() - } - } - return _targetArrow!! - } - -private var _targetArrow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TargetEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TargetEdit.kt deleted file mode 100644 index bec95001..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TargetEdit.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TargetEdit: ImageVector - get() { - if (_targetEdit != null) { - return _targetEdit!! - } - _targetEdit = fluentIcon(name = "Filled.TargetEdit") { - fluentPath { - moveTo(12.0f, 14.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) - close() - moveTo(6.0f, 12.0f) - arcToRelative(6.0f, 6.0f, 0.0f, true, true, 11.99f, 0.37f) - lineToRelative(-5.5f, 5.5f) - lineToRelative(-0.12f, 0.12f) - lineTo(12.0f, 17.99f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, -6.0f, -6.0f) - close() - moveTo(12.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) - close() - moveTo(12.0f, 4.0f) - arcToRelative(8.0f, 8.0f, 0.0f, false, true, 7.95f, 7.09f) - arcToRelative(3.3f, 3.3f, 0.0f, false, true, 2.02f, 0.16f) - arcTo(10.0f, 10.0f, 0.0f, true, false, 11.0f, 21.95f) - curveToRelative(0.0f, -0.18f, 0.02f, -0.36f, 0.06f, -0.54f) - lineToRelative(0.36f, -1.43f) - arcTo(8.0f, 8.0f, 0.0f, false, true, 12.0f, 4.0f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.34f, -0.6f, 0.78f, -0.71f, 1.25f) - lineToRelative(-0.46f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _targetEdit!! - } - -private var _targetEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TaskListAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TaskListAdd.kt deleted file mode 100644 index 94b9ddc8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TaskListAdd.kt +++ /dev/null @@ -1,91 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TaskListAdd: ImageVector - get() { - if (_taskListAdd != null) { - return _taskListAdd!! - } - _taskListAdd = fluentIcon(name = "Filled.TaskListAdd") { - fluentPath { - moveTo(6.7f, 2.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) - lineTo(4.0f, 3.58f) - lineToRelative(-0.3f, -0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) - lineToRelative(1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) - close() - moveTo(11.0f, 17.5f) - curveToRelative(0.0f, 0.17f, 0.0f, 0.33f, 0.02f, 0.5f) - lineTo(10.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(11.18f, 16.0f) - curveToRelative(-0.12f, 0.48f, -0.18f, 0.98f, -0.18f, 1.5f) - close() - moveTo(17.5f, 11.0f) - curveToRelative(1.27f, 0.0f, 2.46f, 0.37f, 3.47f, 1.0f) - horizontalLineToRelative(0.15f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, -2.0f) - lineTo(9.88f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, 2.0f) - horizontalLineToRelative(4.03f) - curveToRelative(1.0f, -0.63f, 2.2f, -1.0f, 3.47f, -1.0f) - close() - moveTo(21.0f, 4.0f) - lineTo(9.88f, 4.0f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 10.0f, 6.0f) - horizontalLineToRelative(11.12f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 21.0f, 4.0f) - close() - moveTo(6.7f, 15.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) - lineTo(4.0f, 16.58f) - lineToRelative(-0.3f, -0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) - lineToRelative(1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) - close() - moveTo(5.3f, 8.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.4f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) - lineToRelative(-1.0f, -1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, -1.4f) - lineToRelative(0.3f, 0.29f) - lineToRelative(1.3f, -1.3f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _taskListAdd!! - } - -private var _taskListAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TaskListLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TaskListLtr.kt deleted file mode 100644 index 388f48d1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TaskListLtr.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TaskListLtr: ImageVector - get() { - if (_taskListLtr != null) { - return _taskListLtr!! - } - _taskListLtr = fluentIcon(name = "Filled.TaskListLtr") { - fluentPath { - moveTo(6.7f, 3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) - lineTo(4.0f, 4.58f) - lineToRelative(-0.3f, -0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) - lineToRelative(1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) - close() - moveTo(21.0f, 17.0f) - lineTo(9.88f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, 2.0f) - horizontalLineToRelative(11.0f) - lineToRelative(0.12f, -0.01f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, -2.0f) - close() - moveTo(21.0f, 11.0f) - lineTo(9.88f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, 2.0f) - horizontalLineToRelative(11.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, -2.0f) - close() - moveTo(21.0f, 5.0f) - lineTo(9.88f, 5.0f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 10.0f, 7.0f) - horizontalLineToRelative(11.12f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 21.0f, 5.0f) - close() - moveTo(6.7f, 16.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) - lineTo(4.0f, 17.58f) - lineToRelative(-0.3f, -0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) - lineToRelative(1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) - close() - moveTo(5.3f, 9.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.4f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) - lineToRelative(-1.0f, -1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, -1.4f) - lineToRelative(0.3f, 0.29f) - lineToRelative(1.3f, -1.3f) - close() - } - } - return _taskListLtr!! - } - -private var _taskListLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TaskListRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TaskListRtl.kt deleted file mode 100644 index b0e4cc25..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TaskListRtl.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TaskListRtl: ImageVector - get() { - if (_taskListRtl != null) { - return _taskListRtl!! - } - _taskListRtl = fluentIcon(name = "Filled.TaskListRtl") { - fluentPath { - moveTo(21.7f, 3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) - lineTo(19.0f, 4.58f) - lineToRelative(-0.3f, -0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.4f, 1.42f) - lineToRelative(1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) - close() - moveTo(14.0f, 17.0f) - lineTo(2.88f, 17.0f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 19.0f) - horizontalLineToRelative(11.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, -2.0f) - close() - moveTo(14.0f, 11.0f) - lineTo(2.88f, 11.0f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 13.0f) - horizontalLineToRelative(11.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, -2.0f) - close() - moveTo(14.0f, 5.0f) - lineTo(2.88f, 5.0f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 7.0f) - horizontalLineToRelative(11.12f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 14.0f, 5.0f) - close() - moveTo(21.7f, 16.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) - lineTo(19.0f, 17.58f) - lineToRelative(-0.3f, -0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) - lineToRelative(1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) - close() - moveTo(20.3f, 9.8f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, 1.4f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) - lineToRelative(-1.0f, -1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, -1.4f) - lineToRelative(0.3f, 0.29f) - lineToRelative(1.3f, -1.3f) - close() - } - } - return _taskListRtl!! - } - -private var _taskListRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TaskListSquareAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TaskListSquareAdd.kt deleted file mode 100644 index 9a8fa209..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TaskListSquareAdd.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TaskListSquareAdd: ImageVector - get() { - if (_taskListSquareAdd != null) { - return _taskListSquareAdd!! - } - _taskListSquareAdd = fluentIcon(name = "Filled.TaskListSquareAdd") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(5.77f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(12.5f, 9.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(10.78f, 8.78f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineTo(8.25f, 9.19f) - lineToRelative(-0.47f, -0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(1.0f, 1.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.0f, -2.0f) - close() - moveTo(10.78f, 13.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-1.47f, 1.47f) - lineToRelative(-0.47f, -0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(1.0f, 1.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.0f, -2.0f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _taskListSquareAdd!! - } - -private var _taskListSquareAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TaskListSquareLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TaskListSquareLtr.kt deleted file mode 100644 index a0d024da..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TaskListSquareLtr.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TaskListSquareLtr: ImageVector - get() { - if (_taskListSquareLtr != null) { - return _taskListSquareLtr!! - } - _taskListSquareLtr = fluentIcon(name = "Filled.TaskListSquareLtr") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(12.5f, 9.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(13.25f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - close() - moveTo(10.78f, 8.78f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineTo(8.25f, 9.19f) - lineToRelative(-0.47f, -0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(1.0f, 1.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.0f, -2.0f) - close() - moveTo(10.78f, 13.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-1.47f, 1.47f) - lineToRelative(-0.47f, -0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(1.0f, 1.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.0f, -2.0f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - close() - } - } - return _taskListSquareLtr!! - } - -private var _taskListSquareLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TaskListSquareRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TaskListSquareRtl.kt deleted file mode 100644 index d5306e00..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TaskListSquareRtl.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TaskListSquareRtl: ImageVector - get() { - if (_taskListSquareRtl != null) { - return _taskListSquareRtl!! - } - _taskListSquareRtl = fluentIcon(name = "Filled.TaskListSquareRtl") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(7.25f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - close() - moveTo(6.5f, 9.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(17.78f, 8.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineToRelative(-1.47f, 1.47f) - lineToRelative(-0.47f, -0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.0f, 1.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.0f, -2.0f) - close() - moveTo(17.78f, 13.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-1.47f, 1.47f) - lineToRelative(-0.47f, -0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.0f, 1.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.0f, -2.0f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - close() - } - } - return _taskListSquareRtl!! - } - -private var _taskListSquareRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TasksApp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TasksApp.kt deleted file mode 100644 index d3d21260..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TasksApp.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TasksApp: ImageVector - get() { - if (_tasksApp != null) { - return _tasksApp!! - } - _tasksApp = fluentIcon(name = "Filled.TasksApp") { - fluentPath { - moveTo(17.75f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(10.13f) - curveToRelative(-0.12f, 0.08f, -0.23f, 0.17f, -0.34f, 0.28f) - lineToRelative(-3.41f, 3.4f) - lineToRelative(-0.9f, -0.9f) - arcToRelative(2.24f, 2.24f, 0.0f, false, false, -1.5f, -0.66f) - horizontalLineToRelative(2.4f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.4f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.5f, 3.84f) - lineTo(13.83f, 22.0f) - lineTo(6.25f, 22.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveToRelative(0.0f, -1.19f, 0.93f, -2.16f, 2.1f, -2.24f) - horizontalLineToRelative(11.65f) - close() - moveTo(9.0f, 7.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(11.25f, 7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.0f) - close() - moveTo(10.5f, 11.75f) - curveToRelative(0.0f, 0.41f, 0.33f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(9.0f, 11.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(9.0f, 15.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(16.25f, 20.19f) - lineTo(20.72f, 15.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(0.73f, 0.73f, 0.0f, false, true, -0.5f, 0.22f) - arcToRelative(0.7f, 0.7f, 0.0f, false, true, -0.07f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.5f, -0.22f) - lineToRelative(-2.49f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineToRelative(1.97f, 1.97f) - close() - } - } - return _tasksApp!! - } - -private var _tasksApp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Teddy.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Teddy.kt deleted file mode 100644 index 9c063966..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Teddy.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Teddy: ImageVector - get() { - if (_teddy != null) { - return _teddy!! - } - _teddy = fluentIcon(name = "Filled.Teddy") { - fluentPath { - moveTo(3.2f, 10.27f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 6.25f, -4.96f) - arcToRelative(9.24f, 9.24f, 0.0f, false, false, -6.24f, 4.96f) - close() - moveTo(14.54f, 5.31f) - arcTo(3.99f, 3.99f, 0.0f, false, true, 21.5f, 8.0f) - curveToRelative(0.0f, 0.84f, -0.26f, 1.63f, -0.7f, 2.27f) - arcToRelative(9.24f, 9.24f, 0.0f, false, false, -6.26f, -4.96f) - close() - moveTo(6.63f, 19.31f) - arcTo(7.19f, 7.19f, 0.0f, false, true, 3.5f, 13.5f) - curveTo(3.5f, 9.36f, 7.3f, 6.0f, 12.0f, 6.0f) - reflectiveCurveToRelative(8.5f, 3.36f, 8.5f, 7.5f) - arcToRelative(7.19f, 7.19f, 0.0f, false, true, -3.13f, 5.81f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -10.74f, 0.0f) - close() - moveTo(15.0f, 17.14f) - curveToRelative(-0.45f, -0.4f, -0.98f, -0.7f, -1.54f, -0.9f) - curveToRelative(-0.17f, 0.44f, -0.76f, 0.76f, -1.46f, 0.76f) - reflectiveCurveToRelative(-1.3f, -0.32f, -1.46f, -0.76f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, -3.0f, 3.65f) - curveToRelative(1.3f, 0.7f, 2.82f, 1.11f, 4.46f, 1.11f) - curveToRelative(1.64f, 0.0f, 3.16f, -0.4f, 4.46f, -1.11f) - arcTo(4.48f, 4.48f, 0.0f, false, false, 15.0f, 17.14f) - close() - } - } - return _teddy!! - } - -private var _teddy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Temperature.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Temperature.kt deleted file mode 100644 index ec7c8297..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Temperature.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Temperature: ImageVector - get() { - if (_temperature != null) { - return _temperature!! - } - _temperature = fluentIcon(name = "Filled.Temperature") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, 3.8f) - lineTo(16.0f, 12.73f) - lineToRelative(0.06f, 0.06f) - curveToRelative(0.8f, 0.86f, 1.3f, 1.97f, 1.41f, 3.16f) - lineToRelative(0.02f, 0.27f) - lineToRelative(0.01f, 0.28f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -9.73f, -3.51f) - lineToRelative(0.17f, -0.2f) - lineToRelative(0.06f, -0.06f) - lineTo(8.0f, 6.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 3.6f, -3.98f) - lineToRelative(0.2f, -0.02f) - horizontalLineToRelative(0.2f) - close() - moveTo(12.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 1.85f) - verticalLineToRelative(7.75f) - lineToRelative(-0.33f, 0.3f) - arcTo(3.49f, 3.49f, 0.0f, false, false, 12.0f, 20.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 2.49f, -5.96f) - lineToRelative(-0.16f, -0.15f) - lineToRelative(-0.33f, -0.3f) - lineTo(14.0f, 6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - close() - moveTo(12.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(5.2f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(11.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - } - } - return _temperature!! - } - -private var _temperature: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Tent.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Tent.kt deleted file mode 100644 index f9af8121..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Tent.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Tent: ImageVector - get() { - if (_tent != null) { - return _tent!! - } - _tent = fluentIcon(name = "Filled.Tent") { - fluentPath { - moveTo(12.26f, 2.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.04f, 0.02f) - lineToRelative(-1.7f, 1.7f) - arcToRelative(19.93f, 19.93f, 0.0f, false, true, -3.84f, 3.0f) - curveToRelative(-0.4f, 0.23f, -0.66f, 0.63f, -0.72f, 1.09f) - lineTo(3.6f, 17.5f) - horizontalLineToRelative(-0.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.85f) - lineToRelative(-1.35f, -9.45f) - arcToRelative(1.56f, 1.56f, 0.0f, false, false, -0.8f, -1.15f) - arcToRelative(20.82f, 20.82f, 0.0f, false, true, -4.23f, -3.06f) - lineTo(12.26f, 2.2f) - close() - moveTo(14.1f, 15.12f) - arcToRelative(18.4f, 18.4f, 0.0f, false, false, 1.65f, 2.38f) - lineTo(8.28f, 17.5f) - curveToRelative(0.54f, -0.66f, 1.18f, -1.52f, 1.64f, -2.4f) - arcToRelative(43.26f, 43.26f, 0.0f, false, false, 2.06f, -5.02f) - lineToRelative(0.19f, 0.53f) - arcToRelative(32.4f, 32.4f, 0.0f, false, false, 1.93f, 4.5f) - close() - } - } - return _tent!! - } - -private var _tent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TetrisApp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TetrisApp.kt deleted file mode 100644 index 8c9b8c80..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TetrisApp.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TetrisApp: ImageVector - get() { - if (_tetrisApp != null) { - return _tetrisApp!! - } - _tetrisApp = fluentIcon(name = "Filled.TetrisApp") { - fluentPath { - moveTo(8.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(5.0f) - lineTo(8.0f, 7.0f) - lineTo(8.0f, 3.0f) - close() - moveTo(3.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(4.0f) - lineTo(7.0f, 8.0f) - lineTo(3.0f, 8.0f) - close() - moveTo(13.0f, 8.0f) - lineTo(8.0f, 8.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - lineTo(13.0f, 8.0f) - close() - moveTo(18.0f, 2.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - lineTo(19.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - moveTo(4.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(5.0f) - lineTo(5.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineToRelative(-3.0f) - close() - moveTo(15.0f, 16.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-5.0f) - close() - moveTo(16.0f, 16.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-5.0f) - close() - moveTo(17.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineToRelative(-3.0f) - close() - } - } - return _tetrisApp!! - } - -private var _tetrisApp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAddSpaceAfter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAddSpaceAfter.kt deleted file mode 100644 index a57ef77f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAddSpaceAfter.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextAddSpaceAfter: ImageVector - get() { - if (_textAddSpaceAfter != null) { - return _textAddSpaceAfter!! - } - _textAddSpaceAfter = fluentIcon(name = "Filled.TextAddSpaceAfter") { - fluentPath { - moveTo(3.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(4.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(3.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(4.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(9.3f, 18.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, 1.4f) - lineToRelative(1.3f, -1.29f) - lineToRelative(1.3f, 1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, -1.42f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) - lineToRelative(-2.0f, 2.0f) - close() - } - } - return _textAddSpaceAfter!! - } - -private var _textAddSpaceAfter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAddSpaceBefore.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAddSpaceBefore.kt deleted file mode 100644 index c2c07545..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAddSpaceBefore.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextAddSpaceBefore: ImageVector - get() { - if (_textAddSpaceBefore != null) { - return _textAddSpaceBefore!! - } - _textAddSpaceBefore = fluentIcon(name = "Filled.TextAddSpaceBefore") { - fluentPath { - moveTo(9.3f, 6.2f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, -1.4f) - lineTo(12.0f, 6.08f) - lineToRelative(1.3f, -1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, 1.42f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) - lineToRelative(-2.0f, -2.0f) - close() - moveTo(3.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(4.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(3.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(4.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - } - } - return _textAddSpaceBefore!! - } - -private var _textAddSpaceBefore: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAddT.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAddT.kt deleted file mode 100644 index d6d6b076..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAddT.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextAddT: ImageVector - get() { - if (_textAddT != null) { - return _textAddT!! - } - _textAddT = fluentIcon(name = "Filled.TextAddT") { - fluentPath { - moveTo(3.75f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(12.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(16.25f, 6.0f) - lineTo(12.0f, 6.0f) - verticalLineToRelative(8.03f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, -0.5f, 5.97f) - lineTo(9.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(1.0f) - lineTo(10.0f, 6.0f) - lineTo(5.75f, 6.0f) - verticalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - lineTo(3.75f, 5.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _textAddT!! - } - -private var _textAddT: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignCenter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignCenter.kt deleted file mode 100644 index d4cdff7f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignCenter.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextAlignCenter: ImageVector - get() { - if (_textAlignCenter != null) { - return _textAlignCenter!! - } - _textAlignCenter = fluentIcon(name = "Filled.TextAlignCenter") { - fluentPath { - moveTo(4.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(5.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(6.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(7.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(3.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(3.0f, 11.0f) - close() - } - } - return _textAlignCenter!! - } - -private var _textAlignCenter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignCenterRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignCenterRotate270.kt deleted file mode 100644 index 60cc74ee..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignCenterRotate270.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextAlignCenterRotate270: ImageVector - get() { - if (_textAlignCenterRotate270 != null) { - return _textAlignCenterRotate270!! - } - _textAlignCenterRotate270 = fluentIcon(name = "Filled.TextAlignCenterRotate270") { - fluentPath { - moveTo(6.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(5.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - verticalLineToRelative(14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - close() - moveTo(18.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(17.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - close() - moveTo(11.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(13.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(18.0f) - close() - } - } - return _textAlignCenterRotate270!! - } - -private var _textAlignCenterRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignCenterRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignCenterRotate90.kt deleted file mode 100644 index 3c5305bf..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignCenterRotate90.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextAlignCenterRotate90: ImageVector - get() { - if (_textAlignCenterRotate90 != null) { - return _textAlignCenterRotate90!! - } - _textAlignCenterRotate90 = fluentIcon(name = "Filled.TextAlignCenterRotate90") { - fluentPath { - moveTo(18.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(17.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(6.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(5.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(13.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(13.0f, 3.0f) - close() - } - } - return _textAlignCenterRotate90!! - } - -private var _textAlignCenterRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignDistributed.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignDistributed.kt deleted file mode 100644 index 6e36fb97..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignDistributed.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextAlignDistributed: ImageVector - get() { - if (_textAlignDistributed != null) { - return _textAlignDistributed!! - } - _textAlignDistributed = fluentIcon(name = "Filled.TextAlignDistributed") { - fluentPath { - moveTo(4.3f, 3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.4f) - lineToRelative(-0.29f, 0.3f) - horizontalLineTo(21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineTo(5.41f) - lineToRelative(0.3f, 0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 1.4f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) - lineToRelative(2.0f, -2.0f) - close() - moveTo(18.58f, 19.0f) - lineToRelative(-0.3f, 0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.4f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.4f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, 1.4f) - lineToRelative(0.3f, 0.3f) - horizontalLineTo(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(15.59f) - close() - moveTo(3.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineTo(3.0f) - close() - } - } - return _textAlignDistributed!! - } - -private var _textAlignDistributed: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignDistributedEvenly.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignDistributedEvenly.kt deleted file mode 100644 index 1dbda76c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignDistributedEvenly.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextAlignDistributedEvenly: ImageVector - get() { - if (_textAlignDistributedEvenly != null) { - return _textAlignDistributedEvenly!! - } - _textAlignDistributedEvenly = fluentIcon(name = "Filled.TextAlignDistributedEvenly") { - fluentPath { - moveTo(2.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(3.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(5.7f, 15.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.4f) - lineToRelative(2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, -1.4f) - lineToRelative(-0.29f, -0.3f) - lineTo(18.6f, 19.0f) - lineToRelative(-0.3f, 0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.4f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.4f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, 1.4f) - lineToRelative(0.3f, 0.3f) - lineTo(5.4f, 17.0f) - lineToRelative(0.3f, -0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.4f) - close() - moveTo(3.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(3.0f, 11.0f) - close() - } - } - return _textAlignDistributedEvenly!! - } - -private var _textAlignDistributedEvenly: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignDistributedVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignDistributedVertical.kt deleted file mode 100644 index e35ff61a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignDistributedVertical.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextAlignDistributedVertical: ImageVector - get() { - if (_textAlignDistributedVertical != null) { - return _textAlignDistributedVertical!! - } - _textAlignDistributedVertical = fluentIcon(name = "Filled.TextAlignDistributedVertical") { - fluentPath { - moveTo(19.0f, 5.41f) - verticalLineTo(21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineTo(5.41f) - lineToRelative(-0.3f, 0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.4f, -1.42f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) - lineToRelative(2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 1.42f) - lineToRelative(-0.3f, -0.3f) - close() - moveTo(5.0f, 18.6f) - lineToRelative(-0.3f, -0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) - lineToRelative(2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.4f, -1.42f) - lineToRelative(-0.3f, 0.3f) - verticalLineTo(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(15.59f) - close() - moveTo(13.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineTo(3.0f) - close() - } - } - return _textAlignDistributedVertical!! - } - -private var _textAlignDistributedVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignJustify.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignJustify.kt deleted file mode 100644 index f059c49e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignJustify.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextAlignJustify: ImageVector - get() { - if (_textAlignJustify != null) { - return _textAlignJustify!! - } - _textAlignJustify = fluentIcon(name = "Filled.TextAlignJustify") { - fluentPath { - moveTo(2.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(3.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(2.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(3.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(3.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(3.0f, 11.0f) - close() - } - } - return _textAlignJustify!! - } - -private var _textAlignJustify: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignJustifyLow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignJustifyLow.kt deleted file mode 100644 index 99e89f41..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignJustifyLow.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextAlignJustifyLow: ImageVector - get() { - if (_textAlignJustifyLow != null) { - return _textAlignJustifyLow!! - } - _textAlignJustifyLow = fluentIcon(name = "Filled.TextAlignJustifyLow") { - fluentPath { - moveTo(13.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(2.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(3.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(14.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-7.0f) - close() - } - } - return _textAlignJustifyLow!! - } - -private var _textAlignJustifyLow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignJustifyLow90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignJustifyLow90.kt deleted file mode 100644 index 00cc2231..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignJustifyLow90.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextAlignJustifyLow90: ImageVector - get() { - if (_textAlignJustifyLow90 != null) { - return _textAlignJustifyLow90!! - } - _textAlignJustifyLow90 = fluentIcon(name = "Filled.TextAlignJustifyLow90") { - fluentPath { - moveTo(18.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(6.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(5.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(13.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-7.0f) - close() - } - } - return _textAlignJustifyLow90!! - } - -private var _textAlignJustifyLow90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignJustifyLowRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignJustifyLowRotate270.kt deleted file mode 100644 index 0bea397d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignJustifyLowRotate270.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextAlignJustifyLowRotate270: ImageVector - get() { - if (_textAlignJustifyLowRotate270 != null) { - return _textAlignJustifyLowRotate270!! - } - _textAlignJustifyLowRotate270 = fluentIcon(name = "Filled.TextAlignJustifyLowRotate270") { - fluentPath { - moveTo(6.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(5.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - verticalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - close() - moveTo(18.0f, 22.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(17.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - close() - moveTo(11.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(13.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(7.0f) - close() - } - } - return _textAlignJustifyLowRotate270!! - } - -private var _textAlignJustifyLowRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignJustifyLowRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignJustifyLowRotate90.kt deleted file mode 100644 index df769da2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignJustifyLowRotate90.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextAlignJustifyLowRotate90: ImageVector - get() { - if (_textAlignJustifyLowRotate90 != null) { - return _textAlignJustifyLowRotate90!! - } - _textAlignJustifyLowRotate90 = fluentIcon(name = "Filled.TextAlignJustifyLowRotate90") { - fluentPath { - moveTo(18.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(6.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(5.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(13.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-7.0f) - close() - } - } - return _textAlignJustifyLowRotate90!! - } - -private var _textAlignJustifyLowRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignJustifyRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignJustifyRotate270.kt deleted file mode 100644 index 1bf7a4ec..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignJustifyRotate270.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextAlignJustifyRotate270: ImageVector - get() { - if (_textAlignJustifyRotate270 != null) { - return _textAlignJustifyRotate270!! - } - _textAlignJustifyRotate270 = fluentIcon(name = "Filled.TextAlignJustifyRotate270") { - fluentPath { - moveTo(6.0f, 22.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(5.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - verticalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - close() - moveTo(18.0f, 22.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(17.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - close() - moveTo(11.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(13.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(18.0f) - close() - } - } - return _textAlignJustifyRotate270!! - } - -private var _textAlignJustifyRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignJustifyRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignJustifyRotate90.kt deleted file mode 100644 index 9e1a08f4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignJustifyRotate90.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextAlignJustifyRotate90: ImageVector - get() { - if (_textAlignJustifyRotate90 != null) { - return _textAlignJustifyRotate90!! - } - _textAlignJustifyRotate90 = fluentIcon(name = "Filled.TextAlignJustifyRotate90") { - fluentPath { - moveTo(18.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(17.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(6.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(5.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(13.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(13.0f, 3.0f) - close() - } - } - return _textAlignJustifyRotate90!! - } - -private var _textAlignJustifyRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignLeft.kt deleted file mode 100644 index 0a026457..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignLeft.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextAlignLeft: ImageVector - get() { - if (_textAlignLeft != null) { - return _textAlignLeft!! - } - _textAlignLeft = fluentIcon(name = "Filled.TextAlignLeft") { - fluentPath { - moveTo(2.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(3.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(2.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(3.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(3.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(3.0f, 11.0f) - close() - } - } - return _textAlignLeft!! - } - -private var _textAlignLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignLeftRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignLeftRotate270.kt deleted file mode 100644 index f1f77ab1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignLeftRotate270.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextAlignLeftRotate270: ImageVector - get() { - if (_textAlignLeftRotate270 != null) { - return _textAlignLeftRotate270!! - } - _textAlignLeftRotate270 = fluentIcon(name = "Filled.TextAlignLeftRotate270") { - fluentPath { - moveTo(6.0f, 22.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(5.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - verticalLineToRelative(15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - close() - moveTo(18.0f, 22.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(17.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - close() - moveTo(11.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(13.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(18.0f) - close() - } - } - return _textAlignLeftRotate270!! - } - -private var _textAlignLeftRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignLeftRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignLeftRotate90.kt deleted file mode 100644 index 78512dde..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignLeftRotate90.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextAlignLeftRotate90: ImageVector - get() { - if (_textAlignLeftRotate90 != null) { - return _textAlignLeftRotate90!! - } - _textAlignLeftRotate90 = fluentIcon(name = "Filled.TextAlignLeftRotate90") { - fluentPath { - moveTo(18.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(17.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(6.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(5.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(13.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(13.0f, 3.0f) - close() - } - } - return _textAlignLeftRotate90!! - } - -private var _textAlignLeftRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignRight.kt deleted file mode 100644 index a544cba4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignRight.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextAlignRight: ImageVector - get() { - if (_textAlignRight != null) { - return _textAlignRight!! - } - _textAlignRight = fluentIcon(name = "Filled.TextAlignRight") { - fluentPath { - moveTo(5.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(6.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(9.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(10.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(3.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(3.0f, 11.0f) - close() - } - } - return _textAlignRight!! - } - -private var _textAlignRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignRightRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignRightRotate270.kt deleted file mode 100644 index 8fcec238..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignRightRotate270.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextAlignRightRotate270: ImageVector - get() { - if (_textAlignRightRotate270 != null) { - return _textAlignRightRotate270!! - } - _textAlignRightRotate270 = fluentIcon(name = "Filled.TextAlignRightRotate270") { - fluentPath { - moveTo(6.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(5.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - verticalLineToRelative(15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - close() - moveTo(18.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(17.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - close() - moveTo(11.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(13.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(18.0f) - close() - } - } - return _textAlignRightRotate270!! - } - -private var _textAlignRightRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignRightRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignRightRotate90.kt deleted file mode 100644 index 4fae6ff9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextAlignRightRotate90.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextAlignRightRotate90: ImageVector - get() { - if (_textAlignRightRotate90 != null) { - return _textAlignRightRotate90!! - } - _textAlignRightRotate90 = fluentIcon(name = "Filled.TextAlignRightRotate90") { - fluentPath { - moveTo(18.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(17.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(6.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(5.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(13.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(13.0f, 3.0f) - close() - } - } - return _textAlignRightRotate90!! - } - -private var _textAlignRightRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBold.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBold.kt deleted file mode 100644 index 563b6061..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBold.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextBold: ImageVector - get() { - if (_textBold != null) { - return _textBold!! - } - _textBold = fluentIcon(name = "Filled.TextBold") { - fluentPath { - moveTo(6.0f, 5.75f) - curveTo(6.0f, 4.78f, 6.78f, 4.0f, 7.75f, 4.0f) - horizontalLineToRelative(4.75f) - arcToRelative(4.76f, 4.76f, 0.0f, false, true, 3.95f, 7.38f) - arcTo(4.84f, 4.84f, 0.0f, false, true, 18.0f, 15.0f) - curveToRelative(0.0f, 3.13f, -2.68f, 5.0f, -5.0f, 5.0f) - lineTo(7.75f, 20.0f) - curveTo(6.78f, 20.0f, 6.0f, 19.22f, 6.0f, 18.25f) - lineTo(6.0f, 5.75f) - close() - moveTo(9.5f, 13.5f) - verticalLineToRelative(3.0f) - lineTo(13.0f, 16.5f) - curveToRelative(0.31f, 0.0f, 0.71f, -0.14f, 1.02f, -0.42f) - curveToRelative(0.3f, -0.26f, 0.48f, -0.62f, 0.48f, -1.08f) - curveToRelative(0.0f, -0.89f, -0.75f, -1.5f, -1.5f, -1.5f) - lineTo(9.5f, 13.5f) - close() - moveTo(9.5f, 10.0f) - horizontalLineToRelative(3.0f) - curveToRelative(0.71f, 0.0f, 1.25f, -0.6f, 1.25f, -1.25f) - curveToRelative(0.0f, -0.66f, -0.54f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-3.0f) - lineTo(9.5f, 10.0f) - close() - } - } - return _textBold!! - } - -private var _textBold: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBoxSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBoxSettings.kt deleted file mode 100644 index f7115285..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBoxSettings.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextBoxSettings: ImageVector - get() { - if (_textBoxSettings != null) { - return _textBoxSettings!! - } - _textBoxSettings = fluentIcon(name = "Filled.TextBoxSettings") { - fluentPath { - moveTo(21.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) - lineTo(5.75f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) - horizontalLineToRelative(6.27f) - arcToRelative(6.47f, 6.47f, 0.0f, false, true, -1.0f, -4.0f) - lineTo(6.75f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(11.3f, 15.5f) - curveToRelative(0.3f, -0.95f, 0.83f, -1.8f, 1.5f, -2.5f) - lineTo(6.75f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(7.6f) - curveToRelative(0.16f, 0.0f, 0.31f, 0.05f, 0.44f, 0.14f) - arcToRelative(6.47f, 6.47f, 0.0f, false, true, 6.31f, 0.38f) - lineTo(21.0f, 5.75f) - close() - moveTo(17.25f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(10.6f) - close() - moveTo(12.5f, 15.63f) - lineTo(12.95f, 16.06f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, 2.88f) - lineToRelative(-0.45f, 0.43f) - curveToRelative(0.2f, 0.57f, 0.5f, 1.1f, 0.85f, 1.57f) - lineToRelative(0.6f, -0.18f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.52f, 1.45f) - lineToRelative(0.17f, 0.72f) - arcToRelative(5.18f, 5.18f, 0.0f, false, false, 1.72f, 0.0f) - lineToRelative(0.17f, -0.72f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.52f, -1.45f) - lineToRelative(0.6f, 0.18f) - curveToRelative(0.36f, -0.47f, 0.65f, -1.0f, 0.85f, -1.57f) - lineToRelative(-0.45f, -0.43f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -2.88f) - lineToRelative(0.45f, -0.43f) - curveToRelative(-0.2f, -0.58f, -0.5f, -1.1f, -0.85f, -1.57f) - lineToRelative(-0.6f, 0.18f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.52f, -1.45f) - lineToRelative(-0.17f, -0.72f) - arcToRelative(5.17f, 5.17f, 0.0f, false, false, -1.72f, 0.0f) - lineToRelative(-0.17f, 0.72f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.52f, 1.45f) - lineToRelative(-0.6f, -0.18f) - curveToRelative(-0.36f, 0.47f, -0.65f, 1.0f, -0.85f, 1.57f) - close() - moveTo(17.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) - close() - } - } - return _textBoxSettings!! - } - -private var _textBoxSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBulletListAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBulletListAdd.kt deleted file mode 100644 index 05161b3a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBulletListAdd.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextBulletListAdd: ImageVector - get() { - if (_textBulletListAdd != null) { - return _textBulletListAdd!! - } - _textBulletListAdd = fluentIcon(name = "Filled.TextBulletListAdd") { - fluentPath { - moveTo(5.0f, 18.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) - close() - moveTo(12.02f, 17.0f) - lineTo(7.38f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, 2.0f) - horizontalLineToRelative(4.67f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -0.15f, -2.0f) - close() - moveTo(13.81f, 13.0f) - lineTo(7.5f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(18.5f, 11.0f) - curveToRelative(-1.84f, 0.0f, -3.5f, 0.77f, -4.69f, 2.0f) - close() - moveTo(5.0f, 12.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) - close() - moveTo(5.0f, 6.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) - close() - moveTo(21.0f, 5.0f) - lineTo(7.38f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, 2.0f) - horizontalLineToRelative(13.62f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 21.0f, 5.0f) - close() - moveTo(24.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(19.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(18.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(18.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(19.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(19.0f, 18.0f) - close() - } - } - return _textBulletListAdd!! - } - -private var _textBulletListAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBulletListLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBulletListLtr.kt deleted file mode 100644 index c1c64e42..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBulletListLtr.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextBulletListLtr: ImageVector - get() { - if (_textBulletListLtr != null) { - return _textBulletListLtr!! - } - _textBulletListLtr = fluentIcon(name = "Filled.TextBulletListLtr") { - fluentPath { - moveTo(3.5f, 16.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(7.5f, 17.0f) - lineTo(21.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(7.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(21.0f, 17.0f) - lineTo(7.5f, 17.0f) - close() - moveTo(3.5f, 10.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(7.5f, 11.0f) - lineTo(21.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(7.5f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(21.0f, 11.0f) - lineTo(7.5f, 11.0f) - close() - moveTo(3.5f, 4.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(7.5f, 5.0f) - lineTo(21.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(7.5f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(21.0f, 5.0f) - lineTo(7.5f, 5.0f) - close() - } - } - return _textBulletListLtr!! - } - -private var _textBulletListLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBulletListLtr90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBulletListLtr90.kt deleted file mode 100644 index 4db63f80..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBulletListLtr90.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextBulletListLtr90: ImageVector - get() { - if (_textBulletListLtr90 != null) { - return _textBulletListLtr90!! - } - _textBulletListLtr90 = fluentIcon(name = "Filled.TextBulletListLtr90") { - fluentPath { - moveTo(7.5f, 3.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - moveTo(7.0f, 7.5f) - lineTo(7.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(5.0f, 7.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - verticalLineToRelative(0.12f) - close() - moveTo(13.5f, 3.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - moveTo(13.0f, 7.5f) - lineTo(13.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(11.0f, 7.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - verticalLineToRelative(0.12f) - close() - moveTo(19.5f, 3.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - moveTo(19.0f, 7.5f) - lineTo(19.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(17.0f, 7.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - verticalLineToRelative(0.12f) - close() - } - } - return _textBulletListLtr90!! - } - -private var _textBulletListLtr90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBulletListLtrRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBulletListLtrRotate270.kt deleted file mode 100644 index 6f6923cb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBulletListLtrRotate270.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextBulletListLtrRotate270: ImageVector - get() { - if (_textBulletListLtrRotate270 != null) { - return _textBulletListLtrRotate270!! - } - _textBulletListLtrRotate270 = fluentIcon(name = "Filled.TextBulletListLtrRotate270") { - fluentPath { - moveTo(16.5f, 20.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - moveTo(17.0f, 16.5f) - lineTo(17.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(19.0f, 16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - verticalLineToRelative(-0.12f) - close() - moveTo(10.5f, 20.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - moveTo(11.0f, 16.5f) - lineTo(11.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(13.0f, 16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - verticalLineToRelative(-0.12f) - close() - moveTo(4.5f, 20.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - moveTo(5.0f, 16.5f) - lineTo(5.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(7.0f, 16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - verticalLineToRelative(-0.12f) - close() - } - } - return _textBulletListLtrRotate270!! - } - -private var _textBulletListLtrRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBulletListRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBulletListRtl.kt deleted file mode 100644 index ab86732a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBulletListRtl.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextBulletListRtl: ImageVector - get() { - if (_textBulletListRtl != null) { - return _textBulletListRtl!! - } - _textBulletListRtl = fluentIcon(name = "Filled.TextBulletListRtl") { - fluentPath { - moveTo(20.5f, 16.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(16.5f, 17.0f) - lineTo(3.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, 2.0f) - lineTo(16.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, -2.0f) - horizontalLineToRelative(-0.12f) - close() - moveTo(20.5f, 10.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(16.5f, 11.0f) - lineTo(3.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, 2.0f) - lineTo(16.5f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, -2.0f) - horizontalLineToRelative(-0.12f) - close() - moveTo(20.5f, 4.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(16.5f, 5.0f) - lineTo(3.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, 2.0f) - lineTo(16.5f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, -2.0f) - horizontalLineToRelative(-0.12f) - close() - } - } - return _textBulletListRtl!! - } - -private var _textBulletListRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBulletListSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBulletListSquare.kt deleted file mode 100644 index ecb7181d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBulletListSquare.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextBulletListSquare: ImageVector - get() { - if (_textBulletListSquare != null) { - return _textBulletListSquare!! - } - _textBulletListSquare = fluentIcon(name = "Filled.TextBulletListSquare") { - fluentPath { - moveTo(5.25f, 3.0f) - curveTo(4.01f, 3.0f, 3.0f, 4.0f, 3.0f, 5.25f) - verticalLineToRelative(13.5f) - curveTo(3.0f, 19.99f, 4.0f, 21.0f, 5.25f, 21.0f) - horizontalLineToRelative(13.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(21.0f, 5.25f) - curveTo(21.0f, 4.01f, 20.0f, 3.0f, 18.75f, 3.0f) - lineTo(5.25f, 3.0f) - close() - moveTo(8.75f, 8.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(10.5f, 8.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(10.5f, 12.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(11.25f, 15.0f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - close() - moveTo(7.75f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - close() - moveTo(8.75f, 15.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - } - } - return _textBulletListSquare!! - } - -private var _textBulletListSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBulletListSquareEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBulletListSquareEdit.kt deleted file mode 100644 index 0aa2302e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBulletListSquareEdit.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextBulletListSquareEdit: ImageVector - get() { - if (_textBulletListSquareEdit != null) { - return _textBulletListSquareEdit!! - } - _textBulletListSquareEdit = fluentIcon(name = "Filled.TextBulletListSquareEdit") { - fluentPath { - moveTo(3.0f, 5.25f) - curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(13.5f) - curveTo(19.99f, 3.0f, 21.0f, 4.0f, 21.0f, 5.25f) - verticalLineToRelative(5.76f) - curveToRelative(-0.93f, -0.08f, -1.9f, 0.24f, -2.6f, 0.95f) - lineTo(15.35f, 15.0f) - horizontalLineToRelative(-4.11f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(2.6f) - lineToRelative(-1.36f, 1.36f) - curveToRelative(-0.47f, 0.48f, -0.8f, 1.07f, -0.97f, 1.72f) - lineTo(11.17f, 21.0f) - lineTo(5.25f, 21.0f) - curveTo(4.01f, 21.0f, 3.0f, 20.0f, 3.0f, 18.75f) - lineTo(3.0f, 5.25f) - close() - moveTo(7.75f, 9.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(11.25f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.5f) - close() - moveTo(11.25f, 11.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.5f) - close() - moveTo(6.75f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) - close() - moveTo(7.75f, 16.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _textBulletListSquareEdit!! - } - -private var _textBulletListSquareEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBulletListSquareWarning.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBulletListSquareWarning.kt deleted file mode 100644 index 44122ce4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBulletListSquareWarning.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextBulletListSquareWarning: ImageVector - get() { - if (_textBulletListSquareWarning != null) { - return _textBulletListSquareWarning!! - } - _textBulletListSquareWarning = fluentIcon(name = "Filled.TextBulletListSquareWarning") { - fluentPath { - moveTo(5.25f, 3.0f) - curveTo(4.01f, 3.0f, 3.0f, 4.0f, 3.0f, 5.25f) - verticalLineToRelative(13.5f) - curveTo(3.0f, 19.99f, 4.0f, 21.0f, 5.25f, 21.0f) - horizontalLineToRelative(5.8f) - curveToRelative(0.05f, -0.26f, 0.15f, -0.51f, 0.28f, -0.74f) - lineToRelative(2.15f, -3.76f) - horizontalLineToRelative(-2.23f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(3.09f) - lineToRelative(1.0f, -1.74f) - curveToRelative(0.1f, -0.2f, 0.23f, -0.36f, 0.38f, -0.51f) - horizontalLineToRelative(-4.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(5.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - arcToRelative(2.48f, 2.48f, 0.0f, false, true, 2.17f, 1.26f) - lineTo(21.0f, 15.59f) - lineTo(21.0f, 5.25f) - curveTo(21.0f, 4.01f, 20.0f, 3.0f, 18.75f, 3.0f) - lineTo(5.25f, 3.0f) - close() - moveTo(8.75f, 8.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(10.5f, 8.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(7.75f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - close() - moveTo(8.75f, 15.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(17.11f, 13.05f) - arcToRelative(1.49f, 1.49f, 0.0f, false, true, 1.69f, 0.7f) - lineToRelative(4.0f, 7.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 21.5f, 23.0f) - horizontalLineToRelative(-8.0f) - arcToRelative(1.49f, 1.49f, 0.0f, false, true, -1.5f, -1.5f) - curveToRelative(0.0f, -0.26f, 0.07f, -0.52f, 0.2f, -0.75f) - lineToRelative(4.0f, -7.0f) - curveToRelative(0.2f, -0.36f, 0.54f, -0.6f, 0.9f, -0.7f) - close() - moveTo(18.0f, 15.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-3.0f) - close() - moveTo(17.5f, 21.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - } - } - return _textBulletListSquareWarning!! - } - -private var _textBulletListSquareWarning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBulletListTree.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBulletListTree.kt deleted file mode 100644 index 4710d036..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextBulletListTree.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextBulletListTree: ImageVector - get() { - if (_textBulletListTree != null) { - return _textBulletListTree!! - } - _textBulletListTree = fluentIcon(name = "Filled.TextBulletListTree") { - fluentPath { - moveTo(7.5f, 16.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(11.5f, 17.0f) - lineTo(21.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(11.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(21.0f, 17.0f) - horizontalLineToRelative(-9.5f) - close() - moveTo(3.5f, 10.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(7.5f, 11.0f) - lineTo(21.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(7.5f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(21.0f, 11.0f) - lineTo(7.5f, 11.0f) - close() - moveTo(3.5f, 4.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(7.5f, 5.0f) - lineTo(21.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(7.5f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(21.0f, 5.0f) - lineTo(7.5f, 5.0f) - close() - } - } - return _textBulletListTree!! - } - -private var _textBulletListTree: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextCaseLowercase.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextCaseLowercase.kt deleted file mode 100644 index 466dfe5b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextCaseLowercase.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextCaseLowercase: ImageVector - get() { - if (_textCaseLowercase != null) { - return _textCaseLowercase!! - } - _textCaseLowercase = fluentIcon(name = "Filled.TextCaseLowercase") { - fluentPath { - moveTo(15.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(15.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.1f) - curveToRelative(0.61f, 0.41f, 1.34f, 0.65f, 2.11f, 0.65f) - curveToRelative(2.27f, 0.0f, 4.11f, -2.07f, 4.11f, -4.63f) - curveToRelative(0.0f, -2.55f, -1.84f, -4.62f, -4.1f, -4.62f) - curveToRelative(-0.78f, 0.0f, -1.5f, 0.24f, -2.12f, 0.66f) - lineTo(15.0f, 4.0f) - close() - moveTo(17.11f, 18.0f) - curveToRelative(-0.95f, 0.0f, -2.11f, -0.95f, -2.11f, -2.63f) - curveToRelative(0.0f, -1.67f, 1.16f, -2.62f, 2.11f, -2.62f) - reflectiveCurveToRelative(2.11f, 0.95f, 2.11f, 2.63f) - curveToRelative(0.0f, 1.67f, -1.16f, 2.62f, -2.1f, 2.62f) - close() - moveTo(11.0f, 19.26f) - verticalLineToRelative(-5.71f) - arcToRelative(3.34f, 3.34f, 0.0f, false, false, -0.98f, -2.34f) - curveToRelative(-0.6f, -0.58f, -1.45f, -0.9f, -2.47f, -0.95f) - horizontalLineToRelative(-0.3f) - arcToRelative(4.7f, 4.7f, 0.0f, false, false, -2.83f, 0.68f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.15f, 1.64f) - curveToRelative(0.33f, -0.23f, 0.93f, -0.37f, 1.88f, -0.32f) - curveToRelative(0.59f, 0.03f, 0.96f, 0.17f, 1.19f, 0.4f) - curveToRelative(0.17f, 0.16f, 0.29f, 0.4f, 0.34f, 0.74f) - arcToRelative(7.7f, 7.7f, 0.0f, false, false, -2.6f, -0.13f) - arcToRelative(4.02f, 4.02f, 0.0f, false, false, -2.47f, 1.14f) - curveToRelative(-0.6f, 0.61f, -0.91f, 1.43f, -0.91f, 2.35f) - curveToRelative(0.0f, 2.1f, 1.53f, 3.5f, 3.5f, 3.5f) - curveToRelative(0.8f, 0.0f, 1.65f, -0.24f, 2.54f, -0.7f) - curveToRelative(0.13f, 0.4f, 0.5f, 0.7f, 0.96f, 0.7f) - horizontalLineToRelative(0.13f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.87f, -1.0f) - close() - moveTo(5.0f, 16.8f) - curveToRelative(0.0f, -0.42f, 0.13f, -0.76f, 0.38f, -1.0f) - curveToRelative(0.26f, -0.25f, 0.66f, -0.44f, 1.24f, -0.51f) - arcToRelative(5.8f, 5.8f, 0.0f, false, true, 2.26f, 0.18f) - lineToRelative(0.12f, 0.04f) - verticalLineToRelative(1.77f) - lineToRelative(-0.14f, 0.1f) - curveToRelative(-0.96f, 0.63f, -1.75f, 0.92f, -2.36f, 0.92f) - curveToRelative(-0.47f, 0.0f, -0.84f, -0.15f, -1.09f, -0.4f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 5.0f, 16.8f) - close() - } - } - return _textCaseLowercase!! - } - -private var _textCaseLowercase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextCaseTitle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextCaseTitle.kt deleted file mode 100644 index 0aad9062..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextCaseTitle.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextCaseTitle: ImageVector - get() { - if (_textCaseTitle != null) { - return _textCaseTitle!! - } - _textCaseTitle = fluentIcon(name = "Filled.TextCaseTitle") { - fluentPath { - moveTo(8.44f, 3.42f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.87f, -0.03f) - lineToRelative(-6.0f, 15.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.86f, 0.72f) - lineTo(3.83f, 16.0f) - horizontalLineToRelative(6.96f) - lineToRelative(1.27f, 3.58f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.88f, -0.66f) - lineToRelative(-5.5f, -15.5f) - close() - moveTo(4.6f, 14.0f) - lineToRelative(2.86f, -7.37f) - lineTo(10.08f, 14.0f) - lineTo(4.6f, 14.0f) - close() - moveTo(16.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(7.62f) - curveToRelative(0.59f, -0.4f, 1.27f, -0.62f, 2.0f, -0.62f) - curveToRelative(2.2f, 0.0f, 4.0f, 2.07f, 4.0f, 4.63f) - curveToRelative(0.0f, 2.55f, -1.8f, 4.62f, -4.0f, 4.62f) - curveToRelative(-0.75f, 0.0f, -1.46f, -0.24f, -2.06f, -0.66f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.94f, -0.34f) - lineTo(15.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(19.0f, 18.25f) - curveToRelative(0.84f, 0.0f, 2.0f, -0.9f, 2.0f, -2.63f) - reflectiveCurveTo(19.84f, 13.0f, 19.0f, 13.0f) - curveToRelative(-0.84f, 0.0f, -2.0f, 0.9f, -2.0f, 2.63f) - reflectiveCurveToRelative(1.16f, 2.62f, 2.0f, 2.62f) - close() - } - } - return _textCaseTitle!! - } - -private var _textCaseTitle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextCaseUppercase.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextCaseUppercase.kt deleted file mode 100644 index 5a074b25..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextCaseUppercase.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextCaseUppercase: ImageVector - get() { - if (_textCaseUppercase != null) { - return _textCaseUppercase!! - } - _textCaseUppercase = fluentIcon(name = "Filled.TextCaseUppercase") { - fluentPath { - moveTo(18.0f, 3.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(15.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(3.88f) - arcToRelative(4.87f, 4.87f, 0.0f, false, false, 2.43f, -9.1f) - arcTo(4.74f, 4.74f, 0.0f, false, false, 18.0f, 3.0f) - close() - moveTo(18.0f, 10.5f) - horizontalLineToRelative(-2.0f) - lineTo(16.0f, 5.0f) - horizontalLineToRelative(2.0f) - arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, 5.5f) - close() - moveTo(16.0f, 18.25f) - lineTo(16.0f, 12.5f) - horizontalLineToRelative(2.88f) - arcToRelative(2.88f, 2.88f, 0.0f, false, true, 0.0f, 5.75f) - lineTo(16.0f, 18.25f) - close() - moveTo(7.26f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.93f, 0.66f) - lineToRelative(5.5f, 15.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.88f, 0.68f) - lineTo(10.51f, 16.0f) - lineTo(3.8f, 16.0f) - lineToRelative(-1.35f, 3.6f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.88f, -0.7f) - lineTo(6.31f, 3.65f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 7.26f, 3.0f) - close() - moveTo(4.55f, 14.0f) - horizontalLineToRelative(5.24f) - lineTo(7.23f, 6.89f) - lineTo(4.55f, 14.0f) - close() - } - } - return _textCaseUppercase!! - } - -private var _textCaseUppercase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextChangeCase.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextChangeCase.kt deleted file mode 100644 index 69a22de3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextChangeCase.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextChangeCase: ImageVector - get() { - if (_textChangeCase != null) { - return _textChangeCase!! - } - _textChangeCase = fluentIcon(name = "Filled.TextChangeCase") { - fluentPath { - moveTo(16.51f, 2.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.93f, 0.67f) - lineToRelative(5.5f, 15.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.88f, 0.66f) - lineTo(19.79f, 16.0f) - horizontalLineToRelative(-6.96f) - lineToRelative(-1.4f, 3.61f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.86f, -0.72f) - lineToRelative(6.0f, -15.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.94f, -0.64f) - close() - moveTo(16.46f, 6.63f) - lineTo(13.6f, 14.0f) - horizontalLineToRelative(5.48f) - lineToRelative(-2.62f, -7.37f) - close() - moveTo(8.25f, 20.26f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.96f, -0.7f) - curveToRelative(-0.89f, 0.46f, -1.73f, 0.7f, -2.54f, 0.7f) - curveToRelative(-1.97f, 0.0f, -3.5f, -1.4f, -3.5f, -3.5f) - curveToRelative(0.0f, -0.92f, 0.32f, -1.74f, 0.91f, -2.35f) - arcToRelative(4.02f, 4.02f, 0.0f, false, true, 2.47f, -1.14f) - arcToRelative(7.7f, 7.7f, 0.0f, false, true, 2.6f, 0.13f) - arcToRelative(1.23f, 1.23f, 0.0f, false, false, -0.34f, -0.75f) - curveToRelative(-0.23f, -0.22f, -0.6f, -0.36f, -1.19f, -0.4f) - curveToRelative(-0.95f, -0.04f, -1.55f, 0.1f, -1.88f, 0.33f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.15f, -1.64f) - arcToRelative(4.7f, 4.7f, 0.0f, false, true, 2.83f, -0.69f) - lineToRelative(0.3f, 0.01f) - curveToRelative(1.02f, 0.05f, 1.87f, 0.37f, 2.47f, 0.95f) - curveToRelative(0.6f, 0.57f, 0.93f, 1.37f, 0.98f, 2.33f) - verticalLineToRelative(5.72f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.86f, 1.0f) - horizontalLineToRelative(-0.14f) - close() - moveTo(4.87f, 15.29f) - curveToRelative(-0.58f, 0.07f, -0.98f, 0.26f, -1.24f, 0.5f) - curveToRelative(-0.25f, 0.25f, -0.38f, 0.59f, -0.38f, 1.0f) - curveToRelative(0.0f, 0.5f, 0.16f, 0.87f, 0.41f, 1.11f) - curveToRelative(0.25f, 0.25f, 0.62f, 0.4f, 1.09f, 0.4f) - curveToRelative(0.6f, 0.0f, 1.4f, -0.29f, 2.36f, -0.92f) - lineToRelative(0.14f, -0.1f) - verticalLineToRelative(-1.77f) - lineToRelative(-0.12f, -0.04f) - arcToRelative(5.8f, 5.8f, 0.0f, false, false, -2.26f, -0.18f) - close() - } - } - return _textChangeCase!! - } - -private var _textChangeCase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextClearFormatting.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextClearFormatting.kt deleted file mode 100644 index ec421f95..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextClearFormatting.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextClearFormatting: ImageVector - get() { - if (_textClearFormatting != null) { - return _textClearFormatting!! - } - _textClearFormatting = fluentIcon(name = "Filled.TextClearFormatting") { - fluentPath { - moveTo(2.76f, 14.0f) - arcToRelative(0.84f, 0.84f, 0.0f, false, true, -0.55f, -0.18f) - arcToRelative(0.6f, 0.6f, 0.0f, false, true, -0.21f, -0.46f) - curveToRelative(0.0f, -0.11f, 0.03f, -0.25f, 0.1f, -0.41f) - lineTo(6.01f, 2.7f) - curveToRelative(0.18f, -0.47f, 0.51f, -0.7f, 1.0f, -0.7f) - curveToRelative(0.45f, 0.0f, 0.77f, 0.22f, 0.95f, 0.7f) - lineToRelative(3.94f, 10.24f) - curveToRelative(0.06f, 0.16f, 0.09f, 0.3f, 0.09f, 0.4f) - curveToRelative(0.0f, 0.2f, -0.07f, 0.35f, -0.22f, 0.47f) - arcToRelative(0.8f, 0.8f, 0.0f, false, true, -0.54f, 0.18f) - curveToRelative(-0.36f, 0.0f, -0.61f, -0.19f, -0.75f, -0.56f) - lineToRelative(-1.08f, -2.92f) - lineTo(4.58f, 10.51f) - lineToRelative(-1.07f, 2.92f) - curveToRelative(-0.14f, 0.37f, -0.39f, 0.56f, -0.75f, 0.56f) - close() - moveTo(5.02f, 9.27f) - horizontalLineToRelative(3.96f) - lineTo(7.03f, 3.9f) - horizontalLineToRelative(-0.06f) - lineTo(5.02f, 9.27f) - close() - moveTo(12.79f, 14.73f) - lineTo(18.27f, 20.21f) - lineTo(22.43f, 16.05f) - curveToRelative(0.76f, -0.76f, 0.76f, -2.0f, 0.0f, -2.75f) - lineToRelative(-2.72f, -2.73f) - arcToRelative(1.95f, 1.95f, 0.0f, false, false, -2.76f, 0.0f) - lineToRelative(-4.16f, 4.16f) - close() - moveTo(14.75f, 11.36f) - lineTo(13.0f, 13.1f) - lineTo(13.0f, 2.76f) - curveToRelative(0.0f, -0.23f, 0.06f, -0.4f, 0.2f, -0.55f) - curveToRelative(0.13f, -0.14f, 0.3f, -0.2f, 0.5f, -0.2f) - curveToRelative(0.21f, 0.0f, 0.38f, 0.06f, 0.5f, 0.2f) - curveToRelative(0.14f, 0.14f, 0.21f, 0.32f, 0.21f, 0.55f) - verticalLineToRelative(4.07f) - horizontalLineToRelative(0.03f) - arcToRelative(2.97f, 2.97f, 0.0f, false, true, 2.71f, -1.56f) - curveToRelative(1.07f, 0.0f, 1.93f, 0.4f, 2.58f, 1.2f) - curveToRelative(0.66f, 0.79f, 0.99f, 1.85f, 0.99f, 3.17f) - lineToRelative(-0.02f, 0.51f) - lineToRelative(-0.29f, -0.29f) - arcToRelative(2.93f, 2.93f, 0.0f, false, false, -1.16f, -0.71f) - arcToRelative(3.34f, 3.34f, 0.0f, false, false, -0.63f, -1.8f) - arcToRelative(2.11f, 2.11f, 0.0f, false, false, -1.77f, -0.84f) - curveToRelative(-0.72f, 0.0f, -1.3f, 0.3f, -1.76f, 0.87f) - arcToRelative(3.52f, 3.52f, 0.0f, false, false, -0.69f, 2.26f) - curveToRelative(0.0f, 0.66f, 0.12f, 1.24f, 0.35f, 1.72f) - close() - moveTo(17.21f, 21.27f) - lineTo(11.73f, 15.79f) - lineTo(10.57f, 16.95f) - curveToRelative(-0.76f, 0.76f, -0.76f, 2.0f, 0.0f, 2.76f) - lineToRelative(2.72f, 2.72f) - curveToRelative(0.34f, 0.34f, 0.77f, 0.53f, 1.21f, 0.56f) - lineTo(14.5f, 23.0f) - lineTo(20.0f, 23.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.02f) - lineToRelative(0.23f, -0.23f) - close() - } - } - return _textClearFormatting!! - } - -private var _textClearFormatting: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextCollapse.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextCollapse.kt deleted file mode 100644 index 92079c47..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextCollapse.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextCollapse: ImageVector - get() { - if (_textCollapse != null) { - return _textCollapse!! - } - _textCollapse = fluentIcon(name = "Filled.TextCollapse") { - fluentPath { - moveTo(6.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(7.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - close() - moveTo(13.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - close() - moveTo(7.0f, 18.0f) - horizontalLineToRelative(14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(7.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - close() - moveTo(13.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - close() - moveTo(11.0f, 11.5f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, -9.0f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 9.0f, 0.0f) - close() - moveTo(9.0f, 11.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineToRelative(4.0f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - close() - } - } - return _textCollapse!! - } - -private var _textCollapse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColor.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColor.kt deleted file mode 100644 index e4c586d0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColor.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextColor: ImageVector - get() { - if (_textColor != null) { - return _textColor!! - } - _textColor = fluentIcon(name = "Filled.TextColor") { - fluentPath { - moveTo(17.75f, 14.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(5.25f, 22.0f) - curveTo(4.01f, 22.0f, 3.0f, 21.0f, 3.0f, 19.75f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(12.5f) - close() - moveTo(7.05f, 11.97f) - lineTo(10.81f, 2.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.1f) - lineToRelative(0.05f, 0.1f) - lineToRelative(3.75f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.65f) - lineToRelative(-0.05f, -0.1f) - lineToRelative(-1.0f, -2.52f) - horizontalLineToRelative(-4.1f) - lineToRelative(-1.0f, 2.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.88f, 0.45f) - lineToRelative(-0.1f, -0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.45f, -0.87f) - lineToRelative(0.03f, -0.1f) - lineToRelative(3.76f, -9.5f) - lineToRelative(-3.76f, 9.5f) - close() - moveTo(11.5f, 4.79f) - lineTo(10.04f, 8.5f) - horizontalLineToRelative(2.92f) - lineTo(11.5f, 4.8f) - close() - } - } - return _textColor!! - } - -private var _textColor: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColumnOne.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColumnOne.kt deleted file mode 100644 index a7fd9a42..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColumnOne.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextColumnOne: ImageVector - get() { - if (_textColumnOne != null) { - return _textColumnOne!! - } - _textColumnOne = fluentIcon(name = "Filled.TextColumnOne") { - fluentPath { - moveTo(5.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(6.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(5.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(6.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(5.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(6.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(5.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(6.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - } - } - return _textColumnOne!! - } - -private var _textColumnOne: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColumnOneNarrow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColumnOneNarrow.kt deleted file mode 100644 index 2bc4926f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColumnOneNarrow.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextColumnOneNarrow: ImageVector - get() { - if (_textColumnOneNarrow != null) { - return _textColumnOneNarrow!! - } - _textColumnOneNarrow = fluentIcon(name = "Filled.TextColumnOneNarrow") { - fluentPath { - moveTo(9.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(9.0f, 5.0f) - close() - moveTo(9.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(9.0f, 9.0f) - close() - moveTo(8.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(9.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(9.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(9.0f, 17.0f) - close() - } - } - return _textColumnOneNarrow!! - } - -private var _textColumnOneNarrow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColumnOneSemiNarrow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColumnOneSemiNarrow.kt deleted file mode 100644 index 1f24831f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColumnOneSemiNarrow.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextColumnOneSemiNarrow: ImageVector - get() { - if (_textColumnOneSemiNarrow != null) { - return _textColumnOneSemiNarrow!! - } - _textColumnOneSemiNarrow = fluentIcon(name = "Filled.TextColumnOneSemiNarrow") { - fluentPath { - moveTo(8.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(8.0f, 5.0f) - close() - moveTo(8.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(8.0f, 9.0f) - close() - moveTo(7.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(8.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(8.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(8.0f, 17.0f) - close() - } - } - return _textColumnOneSemiNarrow!! - } - -private var _textColumnOneSemiNarrow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColumnOneWide.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColumnOneWide.kt deleted file mode 100644 index 96e7ec83..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColumnOneWide.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextColumnOneWide: ImageVector - get() { - if (_textColumnOneWide != null) { - return _textColumnOneWide!! - } - _textColumnOneWide = fluentIcon(name = "Filled.TextColumnOneWide") { - fluentPath { - moveTo(4.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(4.0f, 5.0f) - close() - moveTo(4.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(4.0f, 9.0f) - close() - moveTo(3.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(4.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(4.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(4.0f, 17.0f) - close() - } - } - return _textColumnOneWide!! - } - -private var _textColumnOneWide: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColumnOneWideLightning.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColumnOneWideLightning.kt deleted file mode 100644 index 2a672325..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColumnOneWideLightning.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextColumnOneWideLightning: ImageVector - get() { - if (_textColumnOneWideLightning != null) { - return _textColumnOneWideLightning!! - } - _textColumnOneWideLightning = fluentIcon(name = "Filled.TextColumnOneWideLightning") { - fluentPath { - moveTo(4.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(4.0f, 5.0f) - close() - moveTo(4.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(4.0f, 9.0f) - close() - moveTo(11.0f, 17.5f) - curveToRelative(0.0f, -0.17f, 0.0f, -0.34f, 0.02f, -0.5f) - lineTo(4.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(7.17f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -0.17f, -1.5f) - close() - moveTo(11.5f, 15.0f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, 1.31f, -2.0f) - lineTo(4.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(18.53f, 14.0f) - lineTo(17.1f, 14.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.47f, 0.32f) - lineToRelative(-1.13f, 3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.47f, 0.68f) - horizontalLineToRelative(0.78f) - lineToRelative(-0.77f, 2.32f) - arcToRelative(0.52f, 0.52f, 0.0f, false, false, 0.92f, 0.44f) - lineToRelative(2.63f, -4.03f) - arcToRelative(0.47f, 0.47f, 0.0f, false, false, -0.4f, -0.73f) - horizontalLineToRelative(-0.63f) - lineToRelative(0.5f, -1.32f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.47f, -0.68f) - close() - } - } - return _textColumnOneWideLightning!! - } - -private var _textColumnOneWideLightning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColumnThree.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColumnThree.kt deleted file mode 100644 index d5ea26a4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColumnThree.kt +++ /dev/null @@ -1,106 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextColumnThree: ImageVector - get() { - if (_textColumnThree != null) { - return _textColumnThree!! - } - _textColumnThree = fluentIcon(name = "Filled.TextColumnThree") { - fluentPath { - moveTo(3.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - lineTo(4.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(9.58f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(16.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(3.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - lineTo(4.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(9.58f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(16.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(3.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(4.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(9.58f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(16.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(3.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(4.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(9.58f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(16.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - } - } - return _textColumnThree!! - } - -private var _textColumnThree: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColumnTwo.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColumnTwo.kt deleted file mode 100644 index 4e36695b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColumnTwo.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextColumnTwo: ImageVector - get() { - if (_textColumnTwo != null) { - return _textColumnTwo!! - } - _textColumnTwo = fluentIcon(name = "Filled.TextColumnTwo") { - fluentPath { - moveTo(3.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(4.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(3.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(4.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(3.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(4.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(3.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(4.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(13.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(13.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(13.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(13.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - } - } - return _textColumnTwo!! - } - -private var _textColumnTwo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColumnTwoLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColumnTwoLeft.kt deleted file mode 100644 index 435369fb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColumnTwoLeft.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextColumnTwoLeft: ImageVector - get() { - if (_textColumnTwoLeft != null) { - return _textColumnTwoLeft!! - } - _textColumnTwoLeft = fluentIcon(name = "Filled.TextColumnTwoLeft") { - fluentPath { - moveTo(21.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineToRelative(-9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - close() - moveTo(8.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(4.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - close() - moveTo(21.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineToRelative(-9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - close() - moveTo(8.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(4.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - close() - moveTo(21.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineToRelative(-9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - close() - moveTo(8.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(4.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - close() - moveTo(21.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineToRelative(-9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - close() - moveTo(8.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(4.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - close() - } - } - return _textColumnTwoLeft!! - } - -private var _textColumnTwoLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColumnTwoRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColumnTwoRight.kt deleted file mode 100644 index cdeda693..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColumnTwoRight.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextColumnTwoRight: ImageVector - get() { - if (_textColumnTwoRight != null) { - return _textColumnTwoRight!! - } - _textColumnTwoRight = fluentIcon(name = "Filled.TextColumnTwoRight") { - fluentPath { - moveTo(3.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(4.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(16.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(3.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(4.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(16.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(3.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(4.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(16.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(3.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(4.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(16.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - } - } - return _textColumnTwoRight!! - } - -private var _textColumnTwoRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextContinuous.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextContinuous.kt deleted file mode 100644 index 23edd8fc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextContinuous.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextContinuous: ImageVector - get() { - if (_textContinuous != null) { - return _textContinuous!! - } - _textContinuous = fluentIcon(name = "Filled.TextContinuous") { - fluentPath { - moveTo(3.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(4.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(8.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(9.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(8.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(9.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(20.0f, 19.0f) - lineTo(4.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - close() - moveTo(3.3f, 11.2f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, -1.4f) - lineToRelative(1.5f, 1.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.4f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.4f) - lineToRelative(0.79f, -0.8f) - lineToRelative(-0.8f, -0.8f) - close() - } - } - return _textContinuous!! - } - -private var _textContinuous: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDensity.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDensity.kt deleted file mode 100644 index 0eb3dfee..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDensity.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextDensity: ImageVector - get() { - if (_textDensity != null) { - return _textDensity!! - } - _textDensity = fluentIcon(name = "Filled.TextDensity") { - fluentPath { - moveTo(12.25f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(11.5f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(10.0f, 5.0f) - lineTo(2.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(10.0f, 6.5f) - lineTo(10.0f, 5.0f) - close() - moveTo(10.0f, 9.0f) - lineTo(2.75f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(10.0f, 10.5f) - lineTo(10.0f, 9.0f) - close() - moveTo(10.0f, 13.0f) - lineTo(2.75f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(10.0f, 14.5f) - lineTo(10.0f, 13.0f) - close() - moveTo(10.0f, 17.0f) - lineTo(2.75f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(10.0f, 18.5f) - lineTo(10.0f, 17.0f) - close() - moveTo(19.75f, 18.0f) - lineTo(14.5f, 18.0f) - verticalLineToRelative(-4.5f) - horizontalLineToRelative(5.25f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, 4.5f) - close() - moveTo(19.75f, 10.5f) - lineTo(14.5f, 10.5f) - lineTo(14.5f, 6.0f) - horizontalLineToRelative(5.25f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, 4.5f) - close() - } - } - return _textDensity!! - } - -private var _textDensity: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDescription.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDescription.kt deleted file mode 100644 index f68a29cd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDescription.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextDescription: ImageVector - get() { - if (_textDescription != null) { - return _textDescription!! - } - _textDescription = fluentIcon(name = "Filled.TextDescription") { - fluentPath { - moveTo(3.0f, 17.0f) - horizontalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(3.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(15.0f, 17.0f) - lineTo(3.0f, 17.0f) - close() - moveTo(3.0f, 13.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(3.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(21.0f, 13.0f) - lineTo(3.0f, 13.0f) - close() - moveTo(3.0f, 9.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(3.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(21.0f, 9.0f) - lineTo(3.0f, 9.0f) - close() - moveTo(3.0f, 5.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(3.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(21.0f, 5.0f) - lineTo(3.0f, 5.0f) - close() - } - } - return _textDescription!! - } - -private var _textDescription: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDescriptionLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDescriptionLtr.kt deleted file mode 100644 index 751bf502..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDescriptionLtr.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextDescriptionLtr: ImageVector - get() { - if (_textDescriptionLtr != null) { - return _textDescriptionLtr!! - } - _textDescriptionLtr = fluentIcon(name = "Filled.TextDescriptionLtr") { - fluentPath { - moveTo(3.0f, 17.0f) - horizontalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(3.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(15.0f, 17.0f) - lineTo(3.0f, 17.0f) - close() - moveTo(3.0f, 13.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(3.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(21.0f, 13.0f) - lineTo(3.0f, 13.0f) - close() - moveTo(3.0f, 9.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(3.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(21.0f, 9.0f) - lineTo(3.0f, 9.0f) - close() - moveTo(3.0f, 5.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(3.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(21.0f, 5.0f) - lineTo(3.0f, 5.0f) - close() - } - } - return _textDescriptionLtr!! - } - -private var _textDescriptionLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDescriptionRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDescriptionRtl.kt deleted file mode 100644 index 68cabf62..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDescriptionRtl.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextDescriptionRtl: ImageVector - get() { - if (_textDescriptionRtl != null) { - return _textDescriptionRtl!! - } - _textDescriptionRtl = fluentIcon(name = "Filled.TextDescriptionRtl") { - fluentPath { - moveTo(21.0f, 17.0f) - lineTo(9.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, 2.0f) - lineTo(21.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, -2.0f) - lineTo(9.0f, 17.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(21.0f, 13.0f) - lineTo(3.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, 2.0f) - lineTo(21.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, -2.0f) - lineTo(3.0f, 13.0f) - horizontalLineToRelative(18.0f) - close() - moveTo(21.0f, 9.0f) - lineTo(3.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, 2.0f) - lineTo(21.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, -2.0f) - lineTo(3.0f, 9.0f) - horizontalLineToRelative(18.0f) - close() - moveTo(21.0f, 5.0f) - lineTo(3.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, 2.0f) - lineTo(21.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, -2.0f) - lineTo(3.0f, 5.0f) - horizontalLineToRelative(18.0f) - close() - } - } - return _textDescriptionRtl!! - } - -private var _textDescriptionRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionHorizontalLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionHorizontalLeft.kt deleted file mode 100644 index 858a25b4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionHorizontalLeft.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextDirectionHorizontalLeft: ImageVector - get() { - if (_textDirectionHorizontalLeft != null) { - return _textDirectionHorizontalLeft!! - } - _textDirectionHorizontalLeft = fluentIcon(name = "Filled.TextDirectionHorizontalLeft") { - fluentPath { - moveTo(16.25f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.92f, 0.62f) - lineToRelative(-3.75f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.84f, 0.76f) - lineToRelative(1.0f, -2.38f) - horizontalLineToRelative(3.66f) - lineToRelative(1.0f, 2.38f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.84f, -0.76f) - lineToRelative(-3.75f, -9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.92f, -0.62f) - close() - moveTo(16.25f, 6.6f) - lineTo(17.25f, 9.0f) - horizontalLineToRelative(-2.0f) - lineToRelative(1.0f, -2.4f) - close() - moveTo(6.71f, 5.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, 0.0f) - lineTo(3.37f, 7.22f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.55f) - lineToRelative(1.92f, 1.93f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, -1.42f) - lineTo(6.4f, 9.0f) - lineTo(11.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - lineTo(6.41f, 7.0f) - lineToRelative(0.3f, -0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.4f) - close() - moveTo(5.29f, 14.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 1.4f) - lineToRelative(-0.3f, 0.3f) - lineTo(20.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - lineTo(6.41f, 18.0f) - lineToRelative(0.3f, 0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.42f, 1.4f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) - lineToRelative(2.0f, -2.0f) - close() - } - } - return _textDirectionHorizontalLeft!! - } - -private var _textDirectionHorizontalLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionHorizontalLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionHorizontalLtr.kt deleted file mode 100644 index dd6728b9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionHorizontalLtr.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextDirectionHorizontalLtr: ImageVector - get() { - if (_textDirectionHorizontalLtr != null) { - return _textDirectionHorizontalLtr!! - } - _textDirectionHorizontalLtr = fluentIcon(name = "Filled.TextDirectionHorizontalLtr") { - fluentPath { - moveTo(7.75f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.92f, 0.62f) - lineToRelative(3.75f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.84f, 0.76f) - lineToRelative(-1.0f, -2.38f) - lineTo(5.92f, 11.0f) - lineToRelative(-1.0f, 2.38f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.84f, -0.76f) - lineToRelative(3.75f, -9.0f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 7.75f, 3.0f) - close() - moveTo(7.75f, 6.6f) - lineTo(6.75f, 9.0f) - horizontalLineToRelative(2.0f) - lineToRelative(-1.0f, -2.4f) - close() - moveTo(17.29f, 5.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 0.0f) - lineToRelative(1.92f, 1.93f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.55f) - lineToRelative(-1.92f, 1.93f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, -1.42f) - lineToRelative(0.3f, -0.29f) - lineTo(13.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - horizontalLineToRelative(4.59f) - lineToRelative(-0.3f, -0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) - close() - moveTo(18.71f, 14.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, 1.4f) - lineToRelative(0.3f, 0.3f) - lineTo(4.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(13.59f) - lineToRelative(-0.3f, 0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.4f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.4f) - lineToRelative(-2.0f, -2.0f) - close() - } - } - return _textDirectionHorizontalLtr!! - } - -private var _textDirectionHorizontalLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionHorizontalRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionHorizontalRight.kt deleted file mode 100644 index 2d9c148d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionHorizontalRight.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextDirectionHorizontalRight: ImageVector - get() { - if (_textDirectionHorizontalRight != null) { - return _textDirectionHorizontalRight!! - } - _textDirectionHorizontalRight = fluentIcon(name = "Filled.TextDirectionHorizontalRight") { - fluentPath { - moveTo(7.75f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.92f, 0.62f) - lineToRelative(3.75f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.84f, 0.76f) - lineToRelative(-1.0f, -2.38f) - lineTo(5.92f, 11.0f) - lineToRelative(-1.0f, 2.38f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.84f, -0.76f) - lineToRelative(3.75f, -9.0f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 7.75f, 3.0f) - close() - moveTo(7.75f, 6.6f) - lineTo(6.75f, 9.0f) - horizontalLineToRelative(2.0f) - lineToRelative(-1.0f, -2.4f) - close() - moveTo(17.29f, 5.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 0.0f) - lineToRelative(1.92f, 1.93f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.55f) - lineToRelative(-1.92f, 1.93f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, -1.42f) - lineToRelative(0.3f, -0.29f) - lineTo(13.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - horizontalLineToRelative(4.59f) - lineToRelative(-0.3f, -0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) - close() - moveTo(18.71f, 14.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, 1.4f) - lineToRelative(0.3f, 0.3f) - lineTo(4.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(13.59f) - lineToRelative(-0.3f, 0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.4f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.4f) - lineToRelative(-2.0f, -2.0f) - close() - } - } - return _textDirectionHorizontalRight!! - } - -private var _textDirectionHorizontalRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionHorizontalRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionHorizontalRtl.kt deleted file mode 100644 index cc6d0e78..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionHorizontalRtl.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextDirectionHorizontalRtl: ImageVector - get() { - if (_textDirectionHorizontalRtl != null) { - return _textDirectionHorizontalRtl!! - } - _textDirectionHorizontalRtl = fluentIcon(name = "Filled.TextDirectionHorizontalRtl") { - fluentPath { - moveTo(16.25f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.92f, 0.62f) - lineToRelative(-3.75f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.84f, 0.76f) - lineToRelative(1.0f, -2.38f) - horizontalLineToRelative(3.66f) - lineToRelative(1.0f, 2.38f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.84f, -0.76f) - lineToRelative(-3.75f, -9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.92f, -0.62f) - close() - moveTo(16.25f, 6.6f) - lineTo(17.25f, 9.0f) - horizontalLineToRelative(-2.0f) - lineToRelative(1.0f, -2.4f) - close() - moveTo(6.71f, 5.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, 0.0f) - lineTo(3.37f, 7.22f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.55f) - lineToRelative(1.92f, 1.93f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, -1.42f) - lineTo(6.4f, 9.0f) - lineTo(11.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - lineTo(6.41f, 7.0f) - lineToRelative(0.3f, -0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.4f) - close() - moveTo(5.29f, 14.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 1.4f) - lineToRelative(-0.3f, 0.3f) - lineTo(20.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - lineTo(6.41f, 18.0f) - lineToRelative(0.3f, 0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.42f, 1.4f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) - lineToRelative(2.0f, -2.0f) - close() - } - } - return _textDirectionHorizontalRtl!! - } - -private var _textDirectionHorizontalRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionRotate270Right.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionRotate270Right.kt deleted file mode 100644 index 30673701..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionRotate270Right.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextDirectionRotate270Right: ImageVector - get() { - if (_textDirectionRotate270Right != null) { - return _textDirectionRotate270Right!! - } - _textDirectionRotate270Right = fluentIcon(name = "Filled.TextDirectionRotate270Right") { - fluentPath { - moveTo(19.7f, 5.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.4f, 1.4f) - lineToRelative(-0.3f, -0.29f) - lineTo(18.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(16.0f, 6.41f) - lineToRelative(-0.3f, 0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.42f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) - lineToRelative(2.0f, 2.0f) - close() - moveTo(3.63f, 17.16f) - lineToRelative(9.0f, 3.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.76f, -1.84f) - lineToRelative(-2.38f, -1.0f) - verticalLineToRelative(-3.66f) - lineToRelative(2.38f, -1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.76f, -1.84f) - lineToRelative(-9.0f, 3.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.84f) - close() - moveTo(9.01f, 17.24f) - lineTo(6.61f, 16.24f) - lineTo(9.01f, 15.24f) - verticalLineToRelative(2.0f) - close() - moveTo(10.71f, 6.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, 1.42f) - lineToRelative(0.3f, -0.3f) - lineTo(7.01f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(9.01f, 6.41f) - lineToRelative(0.3f, 0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) - close() - } - } - return _textDirectionRotate270Right!! - } - -private var _textDirectionRotate270Right: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionRotate90Left.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionRotate90Left.kt deleted file mode 100644 index 50ce99b4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionRotate90Left.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextDirectionRotate90Left: ImageVector - get() { - if (_textDirectionRotate90Left != null) { - return _textDirectionRotate90Left!! - } - _textDirectionRotate90Left = fluentIcon(name = "Filled.TextDirectionRotate90Left") { - fluentPath { - moveToRelative(20.38f, 15.33f) - lineToRelative(-9.0f, -3.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -0.76f, 1.84f) - lineToRelative(2.38f, 1.0f) - verticalLineToRelative(3.66f) - lineToRelative(-2.38f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.76f, 1.84f) - lineToRelative(9.0f, -3.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.84f) - close() - moveTo(15.0f, 15.25f) - lineToRelative(2.4f, 1.0f) - lineToRelative(-2.4f, 1.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(8.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(6.0f, 6.41f) - lineToRelative(-0.3f, 0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.42f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) - lineToRelative(2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 1.42f) - lineTo(8.0f, 6.4f) - lineTo(8.0f, 20.0f) - close() - moveTo(16.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(15.0f, 6.41f) - lineToRelative(-0.3f, 0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.4f, -1.42f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) - lineToRelative(2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 1.42f) - lineToRelative(-0.3f, -0.3f) - lineTo(17.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - close() - } - } - return _textDirectionRotate90Left!! - } - -private var _textDirectionRotate90Left: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionRotate90Ltr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionRotate90Ltr.kt deleted file mode 100644 index 67b0769a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionRotate90Ltr.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextDirectionRotate90Ltr: ImageVector - get() { - if (_textDirectionRotate90Ltr != null) { - return _textDirectionRotate90Ltr!! - } - _textDirectionRotate90Ltr = fluentIcon(name = "Filled.TextDirectionRotate90Ltr") { - fluentPath { - moveToRelative(20.38f, 8.67f) - lineToRelative(-9.0f, 3.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -0.76f, -1.84f) - lineToRelative(2.38f, -1.0f) - lineTo(13.0f, 5.92f) - lineToRelative(-2.38f, -1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.76f, -1.84f) - lineToRelative(9.0f, 3.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.84f) - close() - moveTo(15.0f, 8.75f) - lineToRelative(2.4f, -1.0f) - lineToRelative(-2.4f, -1.0f) - verticalLineToRelative(2.0f) - close() - moveTo(8.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) - verticalLineToRelative(13.59f) - lineToRelative(-0.3f, -0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) - lineToRelative(2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.42f) - lineToRelative(-0.3f, 0.3f) - lineTo(8.0f, 4.0f) - close() - moveTo(16.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(3.59f) - lineToRelative(-0.3f, -0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) - lineToRelative(2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.42f) - lineToRelative(-0.3f, 0.3f) - lineTo(17.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - } - } - return _textDirectionRotate90Ltr!! - } - -private var _textDirectionRotate90Ltr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionRotate90Right.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionRotate90Right.kt deleted file mode 100644 index 5334e00f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionRotate90Right.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextDirectionRotate90Right: ImageVector - get() { - if (_textDirectionRotate90Right != null) { - return _textDirectionRotate90Right!! - } - _textDirectionRotate90Right = fluentIcon(name = "Filled.TextDirectionRotate90Right") { - fluentPath { - moveToRelative(20.38f, 8.67f) - lineToRelative(-9.0f, 3.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -0.76f, -1.84f) - lineToRelative(2.38f, -1.0f) - lineTo(13.0f, 5.92f) - lineToRelative(-2.38f, -1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.76f, -1.84f) - lineToRelative(9.0f, 3.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.84f) - close() - moveTo(15.0f, 8.75f) - lineToRelative(2.4f, -1.0f) - lineToRelative(-2.4f, -1.0f) - verticalLineToRelative(2.0f) - close() - moveTo(8.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) - verticalLineToRelative(13.59f) - lineToRelative(-0.3f, -0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) - lineToRelative(2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.42f) - lineToRelative(-0.3f, 0.3f) - lineTo(8.0f, 4.0f) - close() - moveTo(16.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(3.59f) - lineToRelative(-0.3f, -0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) - lineToRelative(2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.42f) - lineToRelative(-0.3f, 0.3f) - lineTo(17.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - } - } - return _textDirectionRotate90Right!! - } - -private var _textDirectionRotate90Right: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionRotate90Rtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionRotate90Rtl.kt deleted file mode 100644 index 547b642c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionRotate90Rtl.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextDirectionRotate90Rtl: ImageVector - get() { - if (_textDirectionRotate90Rtl != null) { - return _textDirectionRotate90Rtl!! - } - _textDirectionRotate90Rtl = fluentIcon(name = "Filled.TextDirectionRotate90Rtl") { - fluentPath { - moveToRelative(20.38f, 15.33f) - lineToRelative(-9.0f, -3.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -0.76f, 1.84f) - lineToRelative(2.38f, 1.0f) - verticalLineToRelative(3.66f) - lineToRelative(-2.38f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.76f, 1.84f) - lineToRelative(9.0f, -3.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.84f) - close() - moveTo(15.0f, 15.25f) - lineToRelative(2.4f, 1.0f) - lineToRelative(-2.4f, 1.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(8.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(6.0f, 6.41f) - lineToRelative(-0.3f, 0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.42f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) - lineToRelative(2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 1.42f) - lineTo(8.0f, 6.4f) - lineTo(8.0f, 20.0f) - close() - moveTo(16.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(15.0f, 6.41f) - lineToRelative(-0.3f, 0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.4f, -1.42f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) - lineToRelative(2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 1.42f) - lineToRelative(-0.3f, -0.3f) - lineTo(17.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - close() - } - } - return _textDirectionRotate90Rtl!! - } - -private var _textDirectionRotate90Rtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionVertical.kt deleted file mode 100644 index 4ea6122e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextDirectionVertical.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextDirectionVertical: ImageVector - get() { - if (_textDirectionVertical != null) { - return _textDirectionVertical!! - } - _textDirectionVertical = fluentIcon(name = "Filled.TextDirectionVertical") { - fluentPath { - moveTo(8.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) - verticalLineToRelative(13.59f) - lineToRelative(-0.3f, -0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) - lineToRelative(2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.42f) - lineToRelative(-0.3f, 0.3f) - lineTo(8.0f, 4.0f) - close() - moveTo(17.17f, 3.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.84f, 0.0f) - lineToRelative(-3.75f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.84f, 0.76f) - lineToRelative(1.0f, -2.38f) - horizontalLineToRelative(3.66f) - lineToRelative(1.0f, 2.38f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.84f, -0.76f) - lineToRelative(-3.75f, -9.0f) - close() - moveTo(17.25f, 9.0f) - horizontalLineToRelative(-2.0f) - lineToRelative(1.0f, -2.4f) - lineToRelative(1.0f, 2.4f) - close() - moveTo(16.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(2.59f) - lineToRelative(-0.3f, -0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) - lineToRelative(2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.42f) - lineToRelative(-0.3f, 0.3f) - lineTo(17.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - } - } - return _textDirectionVertical!! - } - -private var _textDirectionVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextEditStyle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextEditStyle.kt deleted file mode 100644 index 352ce2b3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextEditStyle.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextEditStyle: ImageVector - get() { - if (_textEditStyle != null) { - return _textEditStyle!! - } - _textEditStyle = fluentIcon(name = "Filled.TextEditStyle") { - fluentPath { - moveTo(20.06f, 8.45f) - arcToRelative(3.22f, 3.22f, 0.0f, false, true, 0.0f, 4.55f) - lineToRelative(-7.11f, 7.1f) - curveToRelative(-0.27f, 0.27f, -0.61f, 0.47f, -0.98f, 0.57f) - lineToRelative(-4.61f, 1.3f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.92f, -0.94f) - lineToRelative(1.38f, -4.54f) - curveToRelative(0.11f, -0.35f, 0.3f, -0.67f, 0.56f, -0.93f) - lineToRelative(7.13f, -7.12f) - arcToRelative(3.22f, 3.22f, 0.0f, false, true, 4.55f, 0.0f) - close() - moveTo(8.16f, 2.37f) - lineToRelative(0.04f, 0.1f) - lineToRelative(3.25f, 8.25f) - lineToRelative(-1.15f, 1.16f) - lineTo(9.56f, 10.0f) - horizontalLineTo(5.44f) - lineToRelative(-1.0f, 2.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.87f, 0.45f) - lineToRelative(-0.1f, -0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.45f, -0.87f) - lineToRelative(0.03f, -0.1f) - lineToRelative(3.76f, -9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.1f) - close() - moveTo(7.5f, 4.79f) - lineTo(6.04f, 8.5f) - horizontalLineToRelative(2.92f) - lineTo(7.5f, 4.8f) - close() - } - } - return _textEditStyle!! - } - -private var _textEditStyle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextEffects.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextEffects.kt deleted file mode 100644 index bd343187..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextEffects.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextEffects: ImageVector - get() { - if (_textEffects != null) { - return _textEffects!! - } - _textEffects = fluentIcon(name = "Filled.TextEffects") { - fluentPath { - moveTo(14.76f, 3.82f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -5.52f, 0.0f) - lineToRelative(-4.26f, 9.94f) - lineToRelative(-0.05f, 0.12f) - lineToRelative(-1.69f, 3.94f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 5.52f, 2.36f) - lineTo(9.69f, 18.0f) - horizontalLineToRelative(4.62f) - lineToRelative(0.93f, 2.18f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 5.52f, -2.36f) - lineToRelative(-1.69f, -3.94f) - arcToRelative(2.9f, 2.9f, 0.0f, false, false, -0.05f, -0.12f) - lineToRelative(-4.26f, -9.94f) - close() - moveTo(12.92f, 4.61f) - lineTo(17.2f, 14.59f) - lineTo(17.21f, 14.63f) - lineTo(18.92f, 18.61f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.84f, 0.78f) - lineTo(15.63f, 16.0f) - lineTo(8.37f, 16.0f) - lineToRelative(-1.45f, 3.4f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.84f, -0.8f) - lineToRelative(1.7f, -3.97f) - lineToRelative(0.02f, -0.04f) - lineToRelative(4.28f, -9.98f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.84f, 0.0f) - close() - moveTo(14.77f, 14.0f) - lineTo(9.23f, 14.0f) - lineTo(12.0f, 7.54f) - lineTo(14.77f, 14.0f) - close() - } - } - return _textEffects!! - } - -private var _textEffects: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextExpand.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextExpand.kt deleted file mode 100644 index ad817fee..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextExpand.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextExpand: ImageVector - get() { - if (_textExpand != null) { - return _textExpand!! - } - _textExpand = fluentIcon(name = "Filled.TextExpand") { - fluentPath { - moveTo(7.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(7.0f, 18.0f) - close() - moveTo(13.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(6.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(7.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(13.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(11.0f, 11.5f) - arcToRelative(4.5f, 4.5f, 0.0f, true, true, -9.0f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 9.0f, 0.0f) - close() - moveTo(7.0f, 9.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - lineTo(6.0f, 11.0f) - lineTo(4.5f, 11.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - lineTo(6.0f, 12.0f) - verticalLineToRelative(1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - lineTo(7.0f, 12.0f) - horizontalLineToRelative(1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - lineTo(7.0f, 11.0f) - lineTo(7.0f, 9.5f) - close() - } - } - return _textExpand!! - } - -private var _textExpand: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextField.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextField.kt deleted file mode 100644 index a1dbc946..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextField.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextField: ImageVector - get() { - if (_textField != null) { - return _textField!! - } - _textField = fluentIcon(name = "Filled.TextField") { - fluentPath { - moveTo(2.0f, 6.75f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(12.5f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 22.0f, 6.75f) - verticalLineToRelative(10.5f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 18.25f, 21.0f) - lineTo(5.75f, 21.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 2.0f, 17.25f) - lineTo(2.0f, 6.75f) - close() - moveTo(12.75f, 7.5f) - horizontalLineToRelative(2.75f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) - lineTo(8.5f, 7.5f) - horizontalLineToRelative(2.75f) - verticalLineToRelative(9.0f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.5f) - verticalLineToRelative(-9.0f) - close() - } - } - return _textField!! - } - -private var _textField: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextFirstLine.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextFirstLine.kt deleted file mode 100644 index 43b8752a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextFirstLine.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextFirstLine: ImageVector - get() { - if (_textFirstLine != null) { - return _textFirstLine!! - } - _textFirstLine = fluentIcon(name = "Filled.TextFirstLine") { - fluentPath { - moveTo(3.7f, 3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.4f) - lineTo(3.58f, 6.0f) - lineToRelative(-1.3f, 1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.4f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.4f) - lineToRelative(-2.0f, -2.0f) - close() - moveTo(10.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(10.0f, 5.0f) - close() - moveTo(21.0f, 17.0f) - lineTo(3.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - close() - moveTo(2.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(3.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - } - } - return _textFirstLine!! - } - -private var _textFirstLine: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextFont.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextFont.kt deleted file mode 100644 index 3ba52aaa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextFont.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextFont: ImageVector - get() { - if (_textFont != null) { - return _textFont!! - } - _textFont = fluentIcon(name = "Filled.TextFont") { - fluentPath { - moveTo(7.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.94f, 0.66f) - lineToRelative(2.88f, 7.92f) - lineToRelative(-1.1f, 2.8f) - lineTo(9.2f, 12.0f) - lineTo(4.79f, 12.0f) - lineToRelative(-0.85f, 2.34f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.88f, -0.68f) - lineToRelative(4.0f, -11.0f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 7.0f, 2.0f) - close() - moveTo(5.52f, 10.0f) - horizontalLineToRelative(2.96f) - lineTo(7.0f, 5.93f) - lineTo(5.52f, 10.0f) - close() - moveTo(15.37f, 6.53f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.86f, 0.0f) - lineToRelative(-5.36f, 13.5f) - lineTo(8.0f, 20.03f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - horizontalLineToRelative(-0.7f) - lineToRelative(0.8f, -2.03f) - horizontalLineToRelative(6.66f) - lineToRelative(0.8f, 2.02f) - lineTo(18.0f, 20.02f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(3.01f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - horizontalLineToRelative(-0.3f) - lineToRelative(-5.34f, -13.5f) - close() - moveTo(16.97f, 16.0f) - lineTo(11.9f, 16.0f) - lineToRelative(2.54f, -6.39f) - lineTo(16.97f, 16.0f) - close() - } - } - return _textFont!! - } - -private var _textFont: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextFontInfo.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextFontInfo.kt deleted file mode 100644 index 124af95b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextFontInfo.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextFontInfo: ImageVector - get() { - if (_textFontInfo != null) { - return _textFontInfo!! - } - _textFontInfo = fluentIcon(name = "Filled.TextFontInfo") { - fluentPath { - moveTo(9.51f, 1.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.93f, 0.67f) - lineToRelative(3.16f, 8.88f) - arcToRelative(6.53f, 6.53f, 0.0f, false, false, -1.54f, 1.65f) - lineToRelative(-2.6f, -7.32f) - lineTo(6.6f, 13.0f) - horizontalLineToRelative(5.42f) - curveToRelative(-0.39f, 0.6f, -0.68f, 1.28f, -0.85f, 2.0f) - lineTo(5.83f, 15.0f) - lineToRelative(-1.4f, 3.61f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.86f, -0.72f) - lineToRelative(6.0f, -15.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.94f, -0.64f) - close() - moveTo(17.0f, 16.0f) - verticalLineToRelative(3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - close() - moveTo(18.25f, 13.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(23.0f, 16.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(22.0f, 16.5f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, -9.0f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 9.0f, 0.0f) - close() - } - } - return _textFontInfo!! - } - -private var _textFontInfo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextFontSize.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextFontSize.kt deleted file mode 100644 index bc6368ec..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextFontSize.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextFontSize: ImageVector - get() { - if (_textFontSize != null) { - return _textFontSize!! - } - _textFontSize = fluentIcon(name = "Filled.TextFontSize") { - fluentPath { - moveToRelative(9.97f, 16.17f) - lineToRelative(4.59f, -12.51f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.83f, -0.12f) - lineToRelative(0.05f, 0.12f) - lineToRelative(5.5f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.83f, 0.79f) - lineToRelative(-0.05f, -0.1f) - lineToRelative(-1.4f, -3.85f) - horizontalLineToRelative(-6.31f) - lineToRelative(-1.45f, 3.92f) - lineToRelative(-0.04f, 0.08f) - lineToRelative(-0.07f, 0.1f) - lineToRelative(-0.08f, 0.1f) - lineToRelative(-0.08f, 0.07f) - lineToRelative(-0.08f, 0.06f) - lineToRelative(-0.05f, 0.03f) - lineToRelative(-0.09f, 0.05f) - lineToRelative(-0.1f, 0.04f) - lineToRelative(-0.1f, 0.03f) - lineToRelative(-0.14f, 0.02f) - horizontalLineToRelative(-0.18f) - lineToRelative(-0.1f, -0.02f) - lineToRelative(-0.15f, -0.05f) - lineToRelative(-0.07f, -0.03f) - lineToRelative(-0.1f, -0.05f) - lineToRelative(-0.11f, -0.08f) - lineToRelative(-0.1f, -0.09f) - lineToRelative(-0.06f, -0.07f) - lineToRelative(-0.06f, -0.1f) - lineToRelative(-0.05f, -0.1f) - lineToRelative(-0.75f, -1.91f) - lineTo(4.66f, 17.5f) - lineToRelative(-0.73f, 1.86f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.18f, 0.6f) - lineToRelative(-0.11f, -0.03f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.6f, -1.18f) - lineToRelative(0.03f, -0.11f) - lineToRelative(3.5f, -9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.8f, -0.12f) - lineToRelative(0.06f, 0.12f) - lineToRelative(2.54f, 6.53f) - lineToRelative(4.59f, -12.51f) - lineToRelative(-4.59f, 12.5f) - close() - moveTo(6.5f, 12.76f) - lineTo(5.43f, 15.5f) - horizontalLineToRelative(2.13f) - lineTo(6.5f, 12.76f) - close() - moveTo(15.5f, 6.9f) - lineTo(13.08f, 13.5f) - horizontalLineToRelative(4.84f) - lineTo(15.5f, 6.9f) - close() - } - } - return _textFontSize!! - } - -private var _textFontSize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextFootnote.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextFootnote.kt deleted file mode 100644 index db38d3f6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextFootnote.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextFootnote: ImageVector - get() { - if (_textFootnote != null) { - return _textFootnote!! - } - _textFootnote = fluentIcon(name = "Filled.TextFootnote") { - fluentPath { - moveToRelative(20.02f, 7.54f) - lineToRelative(-0.22f, 0.16f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.1f, -1.67f) - arcToRelative(3.31f, 3.31f, 0.0f, false, false, 1.35f, -1.74f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.97f, 0.21f) - lineTo(22.02f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(20.02f, 7.54f) - close() - moveTo(2.12f, 17.97f) - lineTo(2.1f, 17.97f) - curveToRelative(-0.22f, -0.2f, -0.35f, -0.48f, -0.35f, -0.78f) - curveToRelative(0.0f, -0.19f, 0.05f, -0.37f, 0.11f, -0.54f) - lineTo(5.3f, 7.69f) - curveToRelative(0.1f, -0.27f, 0.27f, -0.52f, 0.51f, -0.7f) - curveToRelative(0.25f, -0.17f, 0.53f, -0.24f, 0.83f, -0.24f) - arcToRelative(1.34f, 1.34f, 0.0f, false, true, 1.3f, 0.93f) - lineToRelative(3.45f, 8.97f) - curveToRelative(0.06f, 0.17f, 0.11f, 0.35f, 0.11f, 0.54f) - curveToRelative(0.0f, 0.31f, -0.13f, 0.58f, -0.37f, 0.78f) - curveToRelative(-0.23f, 0.2f, -0.5f, 0.28f, -0.8f, 0.28f) - arcToRelative(1.14f, 1.14f, 0.0f, false, true, -1.12f, -0.82f) - lineTo(8.4f, 15.2f) - lineTo(4.86f, 15.2f) - lineToRelative(-0.82f, 2.23f) - curveToRelative(-0.09f, 0.23f, -0.22f, 0.44f, -0.42f, 0.6f) - curveToRelative(-0.21f, 0.15f, -0.46f, 0.22f, -0.7f, 0.22f) - curveToRelative(-0.3f, 0.0f, -0.57f, -0.08f, -0.8f, -0.27f) - close() - moveTo(7.64f, 13.11f) - lineTo(6.63f, 10.31f) - lineTo(5.61f, 13.11f) - horizontalLineToRelative(2.03f) - close() - moveTo(11.75f, 17.15f) - curveToRelative(0.0f, 0.28f, 0.09f, 0.55f, 0.29f, 0.77f) - verticalLineToRelative(0.01f) - curveToRelative(0.22f, 0.23f, 0.5f, 0.32f, 0.79f, 0.32f) - arcToRelative(1.09f, 1.09f, 0.0f, false, false, 1.02f, -0.67f) - arcToRelative(3.28f, 3.28f, 0.0f, false, false, 2.02f, 0.67f) - curveToRelative(1.08f, 0.0f, 1.98f, -0.4f, 2.66f, -1.22f) - curveToRelative(0.66f, -0.8f, 0.97f, -1.86f, 0.97f, -3.1f) - reflectiveCurveToRelative(-0.3f, -2.29f, -0.97f, -3.1f) - arcToRelative(3.28f, 3.28f, 0.0f, false, false, -2.65f, -1.22f) - arcToRelative(3.15f, 3.15f, 0.0f, false, false, -1.9f, 0.6f) - lineTo(13.98f, 7.9f) - curveToRelative(0.0f, -0.3f, -0.09f, -0.59f, -0.3f, -0.82f) - curveToRelative(-0.22f, -0.23f, -0.5f, -0.34f, -0.81f, -0.34f) - curveToRelative(-0.31f, 0.0f, -0.6f, 0.11f, -0.81f, 0.34f) - curveToRelative(-0.22f, 0.24f, -0.31f, 0.52f, -0.31f, 0.82f) - verticalLineToRelative(9.24f) - close() - moveTo(17.24f, 13.93f) - curveToRelative(0.0f, 0.77f, -0.18f, 1.32f, -0.47f, 1.7f) - curveToRelative(-0.27f, 0.35f, -0.64f, 0.53f, -1.15f, 0.53f) - arcToRelative(1.4f, 1.4f, 0.0f, false, true, -1.15f, -0.56f) - arcToRelative(2.6f, 2.6f, 0.0f, false, true, -0.5f, -1.67f) - curveToRelative(0.0f, -0.73f, 0.19f, -1.27f, 0.5f, -1.66f) - curveToRelative(0.3f, -0.4f, 0.68f, -0.57f, 1.15f, -0.57f) - curveToRelative(0.51f, 0.0f, 0.88f, 0.18f, 1.15f, 0.54f) - curveToRelative(0.3f, 0.38f, 0.47f, 0.92f, 0.47f, 1.7f) - close() - } - } - return _textFootnote!! - } - -private var _textFootnote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextGrammarArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextGrammarArrowLeft.kt deleted file mode 100644 index 544ad86c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextGrammarArrowLeft.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextGrammarArrowLeft: ImageVector - get() { - if (_textGrammarArrowLeft != null) { - return _textGrammarArrowLeft!! - } - _textGrammarArrowLeft = fluentIcon(name = "Filled.TextGrammarArrowLeft") { - fluentPath { - moveTo(6.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, -11.0f) - close() - moveTo(7.28f, 14.59f) - lineTo(7.35f, 14.65f) - lineTo(9.87f, 17.16f) - lineTo(9.91f, 17.21f) - lineTo(9.95f, 17.29f) - lineTo(9.97f, 17.35f) - lineTo(9.99f, 17.43f) - verticalLineToRelative(0.11f) - lineToRelative(-0.01f, 0.09f) - lineToRelative(-0.03f, 0.08f) - lineToRelative(-0.03f, 0.06f) - lineToRelative(-0.05f, 0.07f) - lineToRelative(-2.52f, 2.51f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.76f, -0.63f) - lineToRelative(0.05f, -0.07f) - lineTo(8.3f, 18.0f) - lineTo(3.5f, 18.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.41f) - verticalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.41f, -0.5f) - horizontalLineToRelative(4.88f) - lineToRelative(-1.65f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.05f, -0.63f) - lineToRelative(0.05f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.64f, -0.06f) - close() - moveTo(12.98f, 17.0f) - lineTo(21.12f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, 2.0f) - horizontalLineToRelative(-8.17f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 0.15f, -2.0f) - close() - moveTo(12.5f, 15.0f) - lineTo(21.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, -2.0f) - horizontalLineToRelative(-9.93f) - curveToRelative(0.55f, 0.58f, 1.0f, 1.25f, 1.31f, 2.0f) - close() - moveTo(21.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, -2.0f) - lineTo(3.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, 2.0f) - lineTo(21.0f, 11.0f) - close() - moveTo(3.0f, 5.0f) - horizontalLineToRelative(18.12f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 21.0f, 7.0f) - lineTo(2.88f, 7.0f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 3.0f, 5.0f) - close() - } - } - return _textGrammarArrowLeft!! - } - -private var _textGrammarArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextGrammarArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextGrammarArrowRight.kt deleted file mode 100644 index 24d5f707..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextGrammarArrowRight.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextGrammarArrowRight: ImageVector - get() { - if (_textGrammarArrowRight != null) { - return _textGrammarArrowRight!! - } - _textGrammarArrowRight = fluentIcon(name = "Filled.TextGrammarArrowRight") { - fluentPath { - moveTo(21.0f, 5.0f) - lineTo(3.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, 2.0f) - lineTo(21.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, -2.0f) - lineTo(21.0f, 5.0f) - close() - moveTo(21.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, -2.0f) - lineTo(3.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, 2.0f) - lineTo(21.0f, 11.0f) - close() - moveTo(21.0f, 15.0f) - horizontalLineToRelative(-8.5f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.31f, -2.0f) - horizontalLineToRelative(9.93f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, 2.0f) - close() - moveTo(21.0f, 17.0f) - horizontalLineToRelative(-8.02f) - arcToRelative(6.62f, 6.62f, 0.0f, false, true, -0.15f, 2.0f) - lineTo(21.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, -2.0f) - lineTo(21.0f, 17.0f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(5.65f, 20.35f) - lineTo(5.72f, 20.41f) - curveToRelative(0.2f, 0.14f, 0.46f, 0.12f, 0.64f, -0.06f) - lineToRelative(0.05f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.63f) - lineTo(4.7f, 18.0f) - lineTo(9.6f, 18.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.41f, -0.5f) - verticalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.41f) - lineTo(4.71f, 17.0f) - lineToRelative(1.65f, -1.65f) - lineToRelative(0.05f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.76f, -0.63f) - lineToRelative(-2.52f, 2.51f) - lineToRelative(-0.05f, 0.07f) - lineToRelative(-0.03f, 0.06f) - lineToRelative(-0.03f, 0.08f) - lineToRelative(-0.01f, 0.09f) - verticalLineToRelative(0.1f) - lineToRelative(0.02f, 0.1f) - lineToRelative(0.02f, 0.05f) - lineToRelative(0.04f, 0.08f) - lineToRelative(0.04f, 0.05f) - lineToRelative(2.52f, 2.51f) - close() - } - } - return _textGrammarArrowRight!! - } - -private var _textGrammarArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextGrammarCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextGrammarCheckmark.kt deleted file mode 100644 index 1b79fc4e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextGrammarCheckmark.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextGrammarCheckmark: ImageVector - get() { - if (_textGrammarCheckmark != null) { - return _textGrammarCheckmark!! - } - _textGrammarCheckmark = fluentIcon(name = "Filled.TextGrammarCheckmark") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(20.15f, 15.15f) - lineTo(16.05f, 19.24f) - lineTo(14.9f, 17.7f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.8f, 0.6f) - lineToRelative(1.5f, 2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.75f, 0.05f) - lineToRelative(4.5f, -4.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - close() - moveTo(11.02f, 17.0f) - lineTo(2.88f, 17.0f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 19.0f) - horizontalLineToRelative(8.17f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -0.15f, -2.0f) - close() - moveTo(11.5f, 15.0f) - lineTo(3.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - horizontalLineToRelative(9.93f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.31f, 2.0f) - close() - moveTo(3.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(21.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(3.0f, 11.0f) - close() - moveTo(21.0f, 5.0f) - lineTo(2.88f, 5.0f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 7.0f) - horizontalLineToRelative(18.12f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 21.0f, 5.0f) - close() - } - } - return _textGrammarCheckmark!! - } - -private var _textGrammarCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextGrammarDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextGrammarDismiss.kt deleted file mode 100644 index 73e793be..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextGrammarDismiss.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextGrammarDismiss: ImageVector - get() { - if (_textGrammarDismiss != null) { - return _textGrammarDismiss!! - } - _textGrammarDismiss = fluentIcon(name = "Filled.TextGrammarDismiss") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(15.02f, 15.02f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.71f) - lineToRelative(1.77f, 1.77f) - lineToRelative(-1.76f, 1.77f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, 0.7f) - lineToRelative(1.77f, -1.76f) - lineToRelative(1.77f, 1.77f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, -0.71f) - lineToRelative(-1.76f, -1.77f) - lineToRelative(1.77f, -1.77f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.78f, 1.76f) - lineToRelative(-1.77f, -1.77f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - close() - moveTo(11.02f, 17.0f) - lineTo(2.88f, 17.0f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 19.0f) - horizontalLineToRelative(8.17f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -0.15f, -2.0f) - close() - moveTo(11.5f, 15.0f) - lineTo(3.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - horizontalLineToRelative(9.93f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.31f, 2.0f) - close() - moveTo(3.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(21.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(3.0f, 11.0f) - close() - moveTo(21.0f, 5.0f) - lineTo(2.88f, 5.0f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 7.0f) - horizontalLineToRelative(18.12f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 21.0f, 5.0f) - close() - } - } - return _textGrammarDismiss!! - } - -private var _textGrammarDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextGrammarSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextGrammarSettings.kt deleted file mode 100644 index 47c9c32c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextGrammarSettings.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextGrammarSettings: ImageVector - get() { - if (_textGrammarSettings != null) { - return _textGrammarSettings!! - } - _textGrammarSettings = fluentIcon(name = "Filled.TextGrammarSettings") { - fluentPath { - moveTo(11.02f, 17.0f) - lineTo(2.88f, 17.0f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 19.0f) - horizontalLineToRelative(8.17f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -0.15f, -2.0f) - close() - moveTo(21.0f, 11.0f) - lineTo(3.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(21.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(21.0f, 11.0f) - close() - moveTo(3.0f, 15.0f) - horizontalLineToRelative(8.5f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, 1.31f, -2.0f) - lineTo(2.88f, 13.0f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 15.0f) - close() - moveTo(21.0f, 5.0f) - lineTo(2.88f, 5.0f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 7.0f) - horizontalLineToRelative(18.12f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 21.0f, 5.0f) - close() - moveTo(14.28f, 13.98f) - lineTo(14.08f, 13.28f) - curveToRelative(0.44f, -0.37f, 0.94f, -0.68f, 1.48f, -0.9f) - lineToRelative(0.5f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.9f, 0.0f) - lineToRelative(0.5f, -0.52f) - curveToRelative(0.54f, 0.23f, 1.04f, 0.54f, 1.48f, 0.93f) - lineToRelative(-0.19f, 0.63f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.45f, 2.5f) - lineToRelative(0.54f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, true, 0.0f, 1.8f) - lineToRelative(-0.58f, 0.15f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.44f, 2.5f) - lineToRelative(0.2f, 0.68f) - curveToRelative(-0.44f, 0.38f, -0.94f, 0.7f, -1.48f, 0.91f) - lineToRelative(-0.5f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.9f, 0.0f) - lineToRelative(-0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, true, -1.48f, -0.93f) - lineToRelative(0.19f, -0.63f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.45f, -2.5f) - lineToRelative(-0.54f, -0.14f) - arcToRelative(5.72f, 5.72f, 0.0f, false, true, 0.0f, -1.8f) - lineToRelative(0.58f, -0.15f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.44f, -2.5f) - close() - moveTo(17.5f, 19.0f) - curveToRelative(0.8f, 0.0f, 1.45f, -0.67f, 1.45f, -1.5f) - reflectiveCurveTo(18.3f, 16.0f, 17.5f, 16.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, 0.67f, -1.45f, 1.5f) - reflectiveCurveTo(16.7f, 19.0f, 17.5f, 19.0f) - close() - } - } - return _textGrammarSettings!! - } - -private var _textGrammarSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextGrammarWand.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextGrammarWand.kt deleted file mode 100644 index 8507c7b8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextGrammarWand.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextGrammarWand: ImageVector - get() { - if (_textGrammarWand != null) { - return _textGrammarWand!! - } - _textGrammarWand = fluentIcon(name = "Filled.TextGrammarWand") { - fluentPath { - moveTo(3.0f, 17.0f) - horizontalLineToRelative(7.52f) - lineToRelative(-2.0f, 2.0f) - lineTo(3.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(3.0f, 17.0f) - close() - moveTo(3.0f, 15.0f) - horizontalLineToRelative(7.85f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.78f, -2.0f) - lineTo(2.88f, 13.0f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 15.0f) - close() - moveTo(3.0f, 7.0f) - horizontalLineToRelative(18.12f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 21.0f, 5.0f) - lineTo(2.88f, 5.0f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 7.0f) - close() - moveTo(12.72f, 16.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-4.5f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(4.5f, -4.5f) - close() - moveTo(3.0f, 9.0f) - horizontalLineToRelative(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(3.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(3.0f, 9.0f) - close() - moveTo(16.5f, 8.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.66f) - lineToRelative(0.14f, 1.13f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 2.83f, 2.83f) - lineToRelative(1.13f, 0.14f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.48f) - lineToRelative(-1.13f, 0.14f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -2.83f, 2.83f) - lineToRelative(-0.14f, 1.13f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.48f, 0.0f) - lineToRelative(-0.14f, -1.13f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -2.83f, -2.83f) - lineToRelative(-1.13f, -0.14f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.48f) - lineToRelative(1.13f, -0.14f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 2.83f, -2.83f) - lineToRelative(0.14f, -1.13f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 16.5f, 8.0f) - close() - } - } - return _textGrammarWand!! - } - -private var _textGrammarWand: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextHanging.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextHanging.kt deleted file mode 100644 index e05688fb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextHanging.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextHanging: ImageVector - get() { - if (_textHanging != null) { - return _textHanging!! - } - _textHanging = fluentIcon(name = "Filled.TextHanging") { - fluentPath { - moveTo(21.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(3.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - horizontalLineToRelative(18.0f) - close() - moveTo(14.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(3.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(11.0f) - close() - moveTo(15.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(3.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - close() - moveTo(19.3f, 13.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.4f) - lineTo(19.42f, 16.0f) - lineToRelative(1.3f, 1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 1.4f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) - lineToRelative(2.0f, -2.0f) - close() - } - } - return _textHanging!! - } - -private var _textHanging: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextHeader1.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextHeader1.kt deleted file mode 100644 index f6206f24..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextHeader1.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextHeader1: ImageVector - get() { - if (_textHeader1 != null) { - return _textHeader1!! - } - _textHeader1 = fluentIcon(name = "Filled.TextHeader1") { - fluentPath { - moveTo(20.18f, 5.02f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 21.0f, 6.03f) - verticalLineTo(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineTo(9.61f) - arcToRelative(5.66f, 5.66f, 0.0f, false, true, -2.18f, 1.34f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.64f, -1.9f) - curveToRelative(1.13f, -0.37f, 2.19f, -1.33f, 2.86f, -3.34f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.14f, -0.7f) - close() - moveTo(3.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(6.0f) - verticalLineTo(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-5.0f) - horizontalLineTo(4.0f) - verticalLineToRelative(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineTo(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - } - } - return _textHeader1!! - } - -private var _textHeader1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextHeader2.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextHeader2.kt deleted file mode 100644 index 4df034ca..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextHeader2.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextHeader2: ImageVector - get() { - if (_textHeader2 != null) { - return _textHeader2!! - } - _textHeader2 = fluentIcon(name = "Filled.TextHeader2") { - fluentPath { - moveTo(15.4f, 7.95f) - curveToRelative(0.19f, -0.4f, 0.8f, -1.2f, 2.35f, -1.2f) - curveToRelative(0.79f, 0.0f, 1.34f, 0.24f, 1.69f, 0.57f) - curveToRelative(0.34f, 0.32f, 0.56f, 0.8f, 0.56f, 1.43f) - curveToRelative(0.0f, 1.83f, -1.14f, 2.8f, -2.73f, 4.02f) - lineToRelative(-0.22f, 0.16f) - curveToRelative(-1.44f, 1.09f, -3.3f, 2.5f, -3.3f, 5.07f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-5.32f) - curveToRelative(0.36f, -0.97f, 1.28f, -1.68f, 2.55f, -2.64f) - curveTo(20.01f, 13.19f, 22.0f, 11.67f, 22.0f, 8.75f) - arcToRelative(3.9f, 3.9f, 0.0f, false, false, -1.19f, -2.88f) - arcToRelative(4.37f, 4.37f, 0.0f, false, false, -3.06f, -1.12f) - curveToRelative(-2.44f, 0.0f, -3.67f, 1.36f, -4.14f, 2.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.78f, 0.9f) - close() - moveTo(4.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) - verticalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineTo(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(5.0f) - horizontalLineTo(4.0f) - verticalLineTo(6.0f) - close() - } - } - return _textHeader2!! - } - -private var _textHeader2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextHeader3.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextHeader3.kt deleted file mode 100644 index 0bf4c737..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextHeader3.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextHeader3: ImageVector - get() { - if (_textHeader3 != null) { - return _textHeader3!! - } - _textHeader3 = fluentIcon(name = "Filled.TextHeader3") { - fluentPath { - moveTo(15.4f, 7.95f) - curveToRelative(0.19f, -0.4f, 0.8f, -1.2f, 2.35f, -1.2f) - curveToRelative(0.79f, 0.0f, 1.34f, 0.24f, 1.69f, 0.57f) - curveToRelative(0.34f, 0.32f, 0.56f, 0.8f, 0.56f, 1.43f) - curveToRelative(0.0f, 0.58f, -0.14f, 0.95f, -0.32f, 1.21f) - arcToRelative(1.9f, 1.9f, 0.0f, false, true, -0.77f, 0.64f) - curveToRelative(-0.7f, 0.34f, -1.56f, 0.4f, -2.13f, 0.4f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - curveToRelative(0.57f, 0.0f, 1.44f, 0.06f, 2.13f, 0.4f) - curveToRelative(0.33f, 0.16f, 0.6f, 0.37f, 0.77f, 0.64f) - curveToRelative(0.18f, 0.26f, 0.32f, 0.63f, 0.32f, 1.21f) - curveToRelative(0.0f, 0.95f, -0.8f, 2.0f, -2.25f, 2.0f) - curveToRelative(-1.64f, 0.0f, -2.16f, -0.7f, -2.32f, -1.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.86f, 0.74f) - curveToRelative(0.5f, 1.25f, 1.82f, 2.38f, 4.18f, 2.38f) - arcToRelative(4.1f, 4.1f, 0.0f, false, false, 3.6f, -6.33f) - arcToRelative(3.7f, 3.7f, 0.0f, false, false, -0.9f, -0.92f) - curveToRelative(0.33f, -0.24f, 0.64f, -0.54f, 0.9f, -0.92f) - curveToRelative(0.42f, -0.63f, 0.65f, -1.4f, 0.65f, -2.33f) - arcToRelative(3.9f, 3.9f, 0.0f, false, false, -1.19f, -2.88f) - arcToRelative(4.37f, 4.37f, 0.0f, false, false, -3.06f, -1.12f) - curveToRelative(-2.44f, 0.0f, -3.67f, 1.36f, -4.14f, 2.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.78f, 0.9f) - close() - moveTo(4.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) - verticalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineTo(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(5.0f) - horizontalLineTo(4.0f) - verticalLineTo(6.0f) - close() - } - } - return _textHeader3!! - } - -private var _textHeader3: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentDecreaseLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentDecreaseLtr.kt deleted file mode 100644 index 5d76d412..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentDecreaseLtr.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextIndentDecreaseLtr: ImageVector - get() { - if (_textIndentDecreaseLtr != null) { - return _textIndentDecreaseLtr!! - } - _textIndentDecreaseLtr = fluentIcon(name = "Filled.TextIndentDecreaseLtr") { - fluentPath { - moveTo(9.0f, 16.0f) - horizontalLineToRelative(8.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(9.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - horizontalLineToRelative(8.62f) - lineTo(9.0f, 16.0f) - close() - moveTo(2.3f, 11.3f) - lineTo(4.3f, 9.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.49f, 1.31f) - lineToRelative(-0.08f, 0.1f) - lineTo(4.4f, 12.0f) - lineToRelative(1.3f, 1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 1.49f) - lineToRelative(-0.1f, -0.08f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.32f) - lineToRelative(0.08f, -0.1f) - lineToRelative(2.0f, -2.0f) - lineToRelative(-2.0f, 2.0f) - close() - moveTo(9.0f, 11.0f) - horizontalLineToRelative(11.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(9.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(20.5f, 11.0f) - lineTo(9.0f, 11.0f) - close() - moveTo(9.0f, 6.0f) - horizontalLineToRelative(8.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(9.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - horizontalLineToRelative(8.62f) - lineTo(9.0f, 6.0f) - close() - } - } - return _textIndentDecreaseLtr!! - } - -private var _textIndentDecreaseLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentDecreaseLtr90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentDecreaseLtr90.kt deleted file mode 100644 index 656bf120..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentDecreaseLtr90.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextIndentDecreaseLtr90: ImageVector - get() { - if (_textIndentDecreaseLtr90 != null) { - return _textIndentDecreaseLtr90!! - } - _textIndentDecreaseLtr90 = fluentIcon(name = "Filled.TextIndentDecreaseLtr90") { - fluentPath { - moveTo(8.0f, 9.0f) - verticalLineToRelative(8.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(6.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(8.0f, 9.0f) - close() - moveTo(12.7f, 2.3f) - lineTo(14.7f, 4.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.31f, 1.49f) - lineToRelative(-0.1f, -0.08f) - lineTo(12.0f, 4.4f) - lineToRelative(-1.3f, 1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.49f, -1.32f) - lineToRelative(0.08f, -0.1f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) - lineToRelative(0.1f, 0.08f) - close() - moveTo(13.0f, 9.0f) - verticalLineToRelative(11.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(11.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(13.0f, 9.0f) - close() - moveTo(18.0f, 9.0f) - verticalLineToRelative(8.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(16.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(18.0f, 9.0f) - close() - } - } - return _textIndentDecreaseLtr90!! - } - -private var _textIndentDecreaseLtr90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentDecreaseLtrRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentDecreaseLtrRotate270.kt deleted file mode 100644 index 16d09979..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentDecreaseLtrRotate270.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextIndentDecreaseLtrRotate270: ImageVector - get() { - if (_textIndentDecreaseLtrRotate270 != null) { - return _textIndentDecreaseLtrRotate270!! - } - _textIndentDecreaseLtrRotate270 = fluentIcon(name = - "Filled.TextIndentDecreaseLtrRotate270") { - fluentPath { - moveTo(16.0f, 15.0f) - lineTo(16.0f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(18.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(16.0f, 15.0f) - close() - moveTo(11.3f, 21.7f) - lineTo(9.3f, 19.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.31f, -1.49f) - lineToRelative(0.1f, 0.08f) - lineTo(12.0f, 19.6f) - lineToRelative(1.3f, -1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.49f, 1.32f) - lineToRelative(-0.08f, 0.1f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.08f) - lineToRelative(-0.1f, -0.08f) - close() - moveTo(11.0f, 15.0f) - lineTo(11.0f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(13.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(11.0f, 15.0f) - close() - moveTo(6.0f, 15.0f) - lineTo(6.0f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(8.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(6.0f, 15.0f) - close() - } - } - return _textIndentDecreaseLtrRotate270!! - } - -private var _textIndentDecreaseLtrRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentDecreaseRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentDecreaseRotate270.kt deleted file mode 100644 index 04fc3618..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentDecreaseRotate270.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextIndentDecreaseRotate270: ImageVector - get() { - if (_textIndentDecreaseRotate270 != null) { - return _textIndentDecreaseRotate270!! - } - _textIndentDecreaseRotate270 = fluentIcon(name = "Filled.TextIndentDecreaseRotate270") { - fluentPath { - moveTo(16.0f, 15.0f) - lineTo(16.0f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(18.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(16.0f, 15.0f) - close() - moveTo(11.3f, 21.7f) - lineTo(9.3f, 19.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.31f, -1.49f) - lineToRelative(0.1f, 0.08f) - lineTo(12.0f, 19.6f) - lineToRelative(1.3f, -1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.49f, 1.32f) - lineToRelative(-0.08f, 0.1f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.08f) - lineToRelative(-0.1f, -0.08f) - close() - moveTo(11.0f, 15.0f) - lineTo(11.0f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(13.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(11.0f, 15.0f) - close() - moveTo(6.0f, 15.0f) - lineTo(6.0f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(8.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(6.0f, 15.0f) - close() - } - } - return _textIndentDecreaseRotate270!! - } - -private var _textIndentDecreaseRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentDecreaseRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentDecreaseRotate90.kt deleted file mode 100644 index 9e8c37bd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentDecreaseRotate90.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextIndentDecreaseRotate90: ImageVector - get() { - if (_textIndentDecreaseRotate90 != null) { - return _textIndentDecreaseRotate90!! - } - _textIndentDecreaseRotate90 = fluentIcon(name = "Filled.TextIndentDecreaseRotate90") { - fluentPath { - moveTo(8.0f, 9.0f) - verticalLineToRelative(8.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(6.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(8.0f, 9.0f) - close() - moveTo(12.7f, 2.3f) - lineTo(14.7f, 4.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.31f, 1.49f) - lineToRelative(-0.1f, -0.08f) - lineTo(12.0f, 4.4f) - lineToRelative(-1.3f, 1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.49f, -1.32f) - lineToRelative(0.08f, -0.1f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) - lineToRelative(0.1f, 0.08f) - close() - moveTo(13.0f, 9.0f) - verticalLineToRelative(11.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(11.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(13.0f, 9.0f) - close() - moveTo(18.0f, 9.0f) - verticalLineToRelative(8.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(16.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(18.0f, 9.0f) - close() - } - } - return _textIndentDecreaseRotate90!! - } - -private var _textIndentDecreaseRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentDecreaseRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentDecreaseRtl.kt deleted file mode 100644 index c6f37172..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentDecreaseRtl.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextIndentDecreaseRtl: ImageVector - get() { - if (_textIndentDecreaseRtl != null) { - return _textIndentDecreaseRtl!! - } - _textIndentDecreaseRtl = fluentIcon(name = "Filled.TextIndentDecreaseRtl") { - fluentPath { - moveTo(5.5f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(8.62f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 15.0f, 6.0f) - lineTo(6.38f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.88f, 1.0f) - close() - moveTo(3.5f, 13.0f) - horizontalLineToRelative(11.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, -2.0f) - lineTo(3.38f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, 2.0f) - close() - moveTo(5.5f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, -2.0f) - lineTo(6.38f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.88f, 1.0f) - close() - moveTo(19.61f, 14.79f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, -1.5f) - lineTo(19.6f, 12.0f) - lineToRelative(-1.3f, -1.3f) - lineToRelative(-0.08f, -0.09f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.5f, -1.32f) - lineToRelative(2.0f, 2.0f) - lineToRelative(0.08f, 0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, 1.32f) - lineToRelative(-2.0f, 2.0f) - lineToRelative(-0.1f, 0.08f) - close() - } - } - return _textIndentDecreaseRtl!! - } - -private var _textIndentDecreaseRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentDecreaseRtl90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentDecreaseRtl90.kt deleted file mode 100644 index 77cc0777..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentDecreaseRtl90.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextIndentDecreaseRtl90: ImageVector - get() { - if (_textIndentDecreaseRtl90 != null) { - return _textIndentDecreaseRtl90!! - } - _textIndentDecreaseRtl90 = fluentIcon(name = "Filled.TextIndentDecreaseRtl90") { - fluentPath { - moveTo(17.0f, 5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) - lineTo(18.0f, 6.38f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -0.88f) - close() - moveTo(11.0f, 3.5f) - verticalLineToRelative(11.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) - lineTo(13.0f, 3.38f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) - close() - moveTo(7.0f, 5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(8.62f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 8.0f, 15.0f) - lineTo(8.0f, 6.38f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -0.88f) - close() - moveTo(9.21f, 19.61f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.5f, -1.32f) - lineTo(12.0f, 19.6f) - lineToRelative(1.3f, -1.3f) - lineToRelative(0.09f, -0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, 1.5f) - lineToRelative(-2.0f, 2.0f) - lineToRelative(-0.1f, 0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, -0.08f) - lineToRelative(-2.0f, -2.0f) - lineToRelative(-0.08f, -0.1f) - close() - } - } - return _textIndentDecreaseRtl90!! - } - -private var _textIndentDecreaseRtl90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentDecreaseRtlRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentDecreaseRtlRotate270.kt deleted file mode 100644 index d6e45b9c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentDecreaseRtlRotate270.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextIndentDecreaseRtlRotate270: ImageVector - get() { - if (_textIndentDecreaseRtlRotate270 != null) { - return _textIndentDecreaseRtlRotate270!! - } - _textIndentDecreaseRtlRotate270 = fluentIcon(name = - "Filled.TextIndentDecreaseRtlRotate270") { - fluentPath { - moveTo(7.0f, 18.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - lineTo(8.0f, 8.88f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 6.0f, 9.0f) - verticalLineToRelative(8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 0.88f) - close() - moveTo(13.0f, 20.5f) - lineTo(13.0f, 8.88f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 11.0f, 9.0f) - verticalLineToRelative(11.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) - close() - moveTo(17.0f, 18.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - lineTo(18.0f, 8.88f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 16.0f, 9.0f) - verticalLineToRelative(8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 0.88f) - close() - moveTo(14.79f, 4.39f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.5f, 1.32f) - lineTo(12.0f, 4.4f) - lineToRelative(-1.3f, 1.3f) - lineToRelative(-0.09f, 0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, -1.5f) - lineToRelative(2.0f, -2.0f) - lineToRelative(0.1f, -0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, 0.08f) - lineToRelative(2.0f, 2.0f) - lineToRelative(0.08f, 0.1f) - close() - } - } - return _textIndentDecreaseRtlRotate270!! - } - -private var _textIndentDecreaseRtlRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentIncreaseLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentIncreaseLtr.kt deleted file mode 100644 index 94589e54..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentIncreaseLtr.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextIndentIncreaseLtr: ImageVector - get() { - if (_textIndentIncreaseLtr != null) { - return _textIndentIncreaseLtr!! - } - _textIndentIncreaseLtr = fluentIcon(name = "Filled.TextIndentIncreaseLtr") { - fluentPath { - moveTo(9.0f, 16.0f) - horizontalLineToRelative(8.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(9.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - horizontalLineToRelative(8.62f) - lineTo(9.0f, 16.0f) - close() - moveTo(2.3f, 9.3f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 3.6f, 9.2f) - lineToRelative(0.1f, 0.08f) - lineToRelative(2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.32f) - lineToRelative(-0.08f, 0.1f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.5f, -1.32f) - lineToRelative(0.08f, -0.1f) - lineTo(3.6f, 12.0f) - lineToRelative(-1.3f, -1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) - close() - moveTo(9.0f, 11.0f) - horizontalLineToRelative(11.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(9.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(20.5f, 11.0f) - lineTo(9.0f, 11.0f) - close() - moveTo(9.0f, 6.0f) - horizontalLineToRelative(8.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(9.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - horizontalLineToRelative(8.62f) - lineTo(9.0f, 6.0f) - close() - } - } - return _textIndentIncreaseLtr!! - } - -private var _textIndentIncreaseLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentIncreaseLtr90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentIncreaseLtr90.kt deleted file mode 100644 index 707aca4b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentIncreaseLtr90.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextIndentIncreaseLtr90: ImageVector - get() { - if (_textIndentIncreaseLtr90 != null) { - return _textIndentIncreaseLtr90!! - } - _textIndentIncreaseLtr90 = fluentIcon(name = "Filled.TextIndentIncreaseLtr90") { - fluentPath { - moveTo(8.0f, 9.0f) - verticalLineToRelative(8.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(6.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(8.0f, 9.0f) - close() - moveTo(14.7f, 2.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.09f, 1.31f) - lineToRelative(-0.08f, 0.1f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.08f) - lineToRelative(-0.1f, -0.08f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -1.5f) - lineToRelative(0.1f, 0.08f) - lineTo(12.0f, 3.6f) - lineToRelative(1.3f, -1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) - close() - moveTo(13.0f, 9.0f) - verticalLineToRelative(11.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(11.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(13.0f, 9.0f) - close() - moveTo(18.0f, 9.0f) - verticalLineToRelative(8.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(16.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(18.0f, 9.0f) - close() - } - } - return _textIndentIncreaseLtr90!! - } - -private var _textIndentIncreaseLtr90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentIncreaseLtrRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentIncreaseLtrRotate270.kt deleted file mode 100644 index b19130b3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentIncreaseLtrRotate270.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextIndentIncreaseLtrRotate270: ImageVector - get() { - if (_textIndentIncreaseLtrRotate270 != null) { - return _textIndentIncreaseLtrRotate270!! - } - _textIndentIncreaseLtrRotate270 = fluentIcon(name = - "Filled.TextIndentIncreaseLtrRotate270") { - fluentPath { - moveTo(16.0f, 15.0f) - lineTo(16.0f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(18.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(16.0f, 15.0f) - close() - moveTo(9.3f, 21.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.09f, -1.31f) - lineToRelative(0.08f, -0.1f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) - lineToRelative(0.1f, 0.08f) - lineToRelative(2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 1.5f) - lineToRelative(-0.1f, -0.08f) - lineTo(12.0f, 20.4f) - lineToRelative(-1.3f, 1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) - close() - moveTo(11.0f, 15.0f) - lineTo(11.0f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(13.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(11.0f, 15.0f) - close() - moveTo(6.0f, 15.0f) - lineTo(6.0f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(8.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(6.0f, 15.0f) - close() - } - } - return _textIndentIncreaseLtrRotate270!! - } - -private var _textIndentIncreaseLtrRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentIncreaseRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentIncreaseRotate270.kt deleted file mode 100644 index 2c5b5529..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentIncreaseRotate270.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextIndentIncreaseRotate270: ImageVector - get() { - if (_textIndentIncreaseRotate270 != null) { - return _textIndentIncreaseRotate270!! - } - _textIndentIncreaseRotate270 = fluentIcon(name = "Filled.TextIndentIncreaseRotate270") { - fluentPath { - moveTo(16.0f, 15.0f) - lineTo(16.0f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(18.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(16.0f, 15.0f) - close() - moveTo(9.3f, 21.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.09f, -1.31f) - lineToRelative(0.08f, -0.1f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) - lineToRelative(0.1f, 0.08f) - lineToRelative(2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 1.5f) - lineToRelative(-0.1f, -0.08f) - lineTo(12.0f, 20.4f) - lineToRelative(-1.3f, 1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) - close() - moveTo(11.0f, 15.0f) - lineTo(11.0f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(13.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(11.0f, 15.0f) - close() - moveTo(6.0f, 15.0f) - lineTo(6.0f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(8.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(6.0f, 15.0f) - close() - } - } - return _textIndentIncreaseRotate270!! - } - -private var _textIndentIncreaseRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentIncreaseRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentIncreaseRotate90.kt deleted file mode 100644 index ad7a1703..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentIncreaseRotate90.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextIndentIncreaseRotate90: ImageVector - get() { - if (_textIndentIncreaseRotate90 != null) { - return _textIndentIncreaseRotate90!! - } - _textIndentIncreaseRotate90 = fluentIcon(name = "Filled.TextIndentIncreaseRotate90") { - fluentPath { - moveTo(8.0f, 9.0f) - verticalLineToRelative(8.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(6.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(8.0f, 9.0f) - close() - moveTo(14.7f, 2.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.09f, 1.31f) - lineToRelative(-0.08f, 0.1f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.08f) - lineToRelative(-0.1f, -0.08f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -1.5f) - lineToRelative(0.1f, 0.08f) - lineTo(12.0f, 3.6f) - lineToRelative(1.3f, -1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) - close() - moveTo(13.0f, 9.0f) - verticalLineToRelative(11.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(11.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(13.0f, 9.0f) - close() - moveTo(18.0f, 9.0f) - verticalLineToRelative(8.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(16.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(18.0f, 9.0f) - close() - } - } - return _textIndentIncreaseRotate90!! - } - -private var _textIndentIncreaseRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentIncreaseRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentIncreaseRtl.kt deleted file mode 100644 index 2834a956..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentIncreaseRtl.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextIndentIncreaseRtl: ImageVector - get() { - if (_textIndentIncreaseRtl != null) { - return _textIndentIncreaseRtl!! - } - _textIndentIncreaseRtl = fluentIcon(name = "Filled.TextIndentIncreaseRtl") { - fluentPath { - moveTo(15.0f, 8.0f) - lineTo(6.5f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(15.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(6.5f, 8.0f) - lineTo(15.0f, 8.0f) - close() - moveTo(21.7f, 14.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.31f, 0.09f) - lineToRelative(-0.1f, -0.08f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.32f) - lineToRelative(0.08f, -0.1f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.5f, 1.32f) - lineToRelative(-0.08f, 0.1f) - lineTo(20.4f, 12.0f) - lineToRelative(1.3f, 1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.4f) - close() - moveTo(15.0f, 13.0f) - lineTo(3.5f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(15.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(3.5f, 13.0f) - lineTo(15.0f, 13.0f) - close() - moveTo(15.0f, 18.0f) - lineTo(6.5f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(15.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(6.5f, 18.0f) - lineTo(15.0f, 18.0f) - close() - } - } - return _textIndentIncreaseRtl!! - } - -private var _textIndentIncreaseRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentIncreaseRtl90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentIncreaseRtl90.kt deleted file mode 100644 index 5a73d1a8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentIncreaseRtl90.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextIndentIncreaseRtl90: ImageVector - get() { - if (_textIndentIncreaseRtl90 != null) { - return _textIndentIncreaseRtl90!! - } - _textIndentIncreaseRtl90 = fluentIcon(name = "Filled.TextIndentIncreaseRtl90") { - fluentPath { - moveTo(16.0f, 15.0f) - lineTo(16.0f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(18.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(16.0f, 6.5f) - lineTo(16.0f, 15.0f) - close() - moveTo(9.3f, 21.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.09f, -1.31f) - lineToRelative(0.08f, -0.1f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) - lineToRelative(0.1f, 0.08f) - lineToRelative(2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 1.5f) - lineToRelative(-0.1f, -0.08f) - lineTo(12.0f, 20.4f) - lineToRelative(-1.3f, 1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) - close() - moveTo(11.0f, 15.0f) - lineTo(11.0f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(13.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(11.0f, 3.5f) - lineTo(11.0f, 15.0f) - close() - moveTo(6.0f, 15.0f) - lineTo(6.0f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(8.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(6.0f, 6.5f) - lineTo(6.0f, 15.0f) - close() - } - } - return _textIndentIncreaseRtl90!! - } - -private var _textIndentIncreaseRtl90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentIncreaseRtlRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentIncreaseRtlRotate270.kt deleted file mode 100644 index 5191091f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextIndentIncreaseRtlRotate270.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextIndentIncreaseRtlRotate270: ImageVector - get() { - if (_textIndentIncreaseRtlRotate270 != null) { - return _textIndentIncreaseRtlRotate270!! - } - _textIndentIncreaseRtlRotate270 = fluentIcon(name = - "Filled.TextIndentIncreaseRtlRotate270") { - fluentPath { - moveTo(8.0f, 9.0f) - verticalLineToRelative(8.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(6.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - verticalLineToRelative(8.62f) - lineTo(8.0f, 9.0f) - close() - moveTo(14.7f, 2.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.09f, 1.31f) - lineToRelative(-0.08f, 0.1f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.08f) - lineToRelative(-0.1f, -0.08f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -1.5f) - lineToRelative(0.1f, 0.08f) - lineTo(12.0f, 3.6f) - lineToRelative(1.3f, -1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) - close() - moveTo(13.0f, 9.0f) - verticalLineToRelative(11.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(11.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - lineTo(13.0f, 20.5f) - lineTo(13.0f, 9.0f) - close() - moveTo(18.0f, 9.0f) - verticalLineToRelative(8.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(16.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) - verticalLineToRelative(8.62f) - lineTo(18.0f, 9.0f) - close() - } - } - return _textIndentIncreaseRtlRotate270!! - } - -private var _textIndentIncreaseRtlRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextItalic.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextItalic.kt deleted file mode 100644 index 295afb57..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextItalic.kt +++ /dev/null @@ -1,37 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextItalic: ImageVector - get() { - if (_textItalic != null) { - return _textItalic!! - } - _textItalic = fluentIcon(name = "Filled.TextItalic") { - fluentPath { - moveTo(10.65f, 18.5f) - horizontalLineToRelative(3.85f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - horizontalLineTo(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(3.5f) - lineTo(13.34f, 6.0f) - horizontalLineTo(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - horizontalLineToRelative(8.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - horizontalLineToRelative(-3.02f) - lineToRelative(-4.83f, 12.5f) - close() - } - } - return _textItalic!! - } - -private var _textItalic: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextLineSpacing.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextLineSpacing.kt deleted file mode 100644 index 08ec3f87..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextLineSpacing.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextLineSpacing: ImageVector - get() { - if (_textLineSpacing != null) { - return _textLineSpacing!! - } - _textLineSpacing = fluentIcon(name = "Filled.TextLineSpacing") { - fluentPath { - moveTo(20.0f, 6.41f) - lineTo(20.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(18.0f, 6.41f) - lineToRelative(-0.3f, 0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.4f, -1.42f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) - lineToRelative(2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 1.42f) - lineToRelative(-0.3f, -0.3f) - close() - moveTo(2.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(3.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(2.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(3.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(3.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(3.0f, 17.0f) - close() - moveTo(20.0f, 14.0f) - verticalLineToRelative(3.59f) - lineToRelative(0.3f, -0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.42f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, -1.42f) - lineToRelative(0.3f, 0.3f) - lineTo(18.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - close() - } - } - return _textLineSpacing!! - } - -private var _textLineSpacing: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextMore.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextMore.kt deleted file mode 100644 index 1f773ada..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextMore.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextMore: ImageVector - get() { - if (_textMore != null) { - return _textMore!! - } - _textMore = fluentIcon(name = "Filled.TextMore") { - fluentPath { - moveTo(10.67f, 2.61f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.84f, 0.0f) - lineToRelative(-6.75f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.84f, 0.78f) - lineTo(5.77f, 15.0f) - horizontalLineToRelative(7.96f) - lineTo(15.0f, 18.05f) - arcToRelative(2.51f, 2.51f, 0.0f, false, true, 2.49f, 0.95f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.08f, -0.39f) - lineToRelative(-6.75f, -16.0f) - close() - moveTo(12.88f, 13.0f) - lineTo(6.62f, 13.0f) - lineToRelative(3.13f, -7.43f) - lineTo(12.88f, 13.0f) - close() - moveTo(10.5f, 22.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - close() - moveTo(17.0f, 20.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - moveTo(22.0f, 20.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - } - } - return _textMore!! - } - -private var _textMore: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextNumberFormat.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextNumberFormat.kt deleted file mode 100644 index ae610820..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextNumberFormat.kt +++ /dev/null @@ -1,155 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextNumberFormat: ImageVector - get() { - if (_textNumberFormat != null) { - return _textNumberFormat!! - } - _textNumberFormat = fluentIcon(name = "Filled.TextNumberFormat") { - fluentPath { - moveTo(5.96f, 3.42f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.88f, -0.03f) - lineToRelative(-2.51f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.86f, 0.72f) - lineToRelative(0.22f, -0.56f) - lineTo(6.2f, 10.05f) - lineToRelative(0.19f, 0.53f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.89f, -0.66f) - lineToRelative(-2.31f, -6.5f) - close() - moveTo(5.48f, 8.05f) - lineTo(4.42f, 8.05f) - lineToRelative(0.56f, -1.42f) - lineToRelative(0.5f, 1.42f) - close() - moveTo(9.0f, 3.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - lineTo(12.19f, 2.75f) - curveToRelative(0.21f, 0.0f, 0.85f, 0.0f, 1.45f, 0.33f) - curveToRelative(0.33f, 0.19f, 0.64f, 0.47f, 0.86f, 0.88f) - curveToRelative(0.22f, 0.4f, 0.33f, 0.88f, 0.33f, 1.42f) - curveToRelative(0.0f, 0.52f, -0.12f, 0.97f, -0.32f, 1.33f) - curveToRelative(0.14f, 0.13f, 0.26f, 0.28f, 0.37f, 0.46f) - curveToRelative(0.25f, 0.41f, 0.37f, 0.9f, 0.37f, 1.46f) - arcToRelative(2.4f, 2.4f, 0.0f, false, true, -1.29f, 2.25f) - curveToRelative(-0.62f, 0.33f, -1.29f, 0.37f, -1.58f, 0.37f) - lineTo(10.0f, 11.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineToRelative(-6.5f) - close() - moveTo(12.17f, 6.0f) - curveToRelative(0.13f, 0.0f, 0.33f, -0.03f, 0.46f, -0.11f) - curveToRelative(0.05f, -0.03f, 0.1f, -0.07f, 0.12f, -0.12f) - arcToRelative(0.8f, 0.8f, 0.0f, false, false, 0.08f, -0.4f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.09f, -0.46f) - arcToRelative(0.19f, 0.19f, 0.0f, false, false, -0.08f, -0.08f) - arcToRelative(1.09f, 1.09f, 0.0f, false, false, -0.5f, -0.08f) - lineTo(11.0f, 4.75f) - lineTo(11.0f, 6.0f) - horizontalLineToRelative(1.17f) - close() - moveTo(12.17f, 8.0f) - lineTo(11.0f, 8.0f) - verticalLineToRelative(1.25f) - horizontalLineToRelative(1.38f) - curveToRelative(0.17f, 0.0f, 0.44f, -0.03f, 0.63f, -0.14f) - arcToRelative(0.4f, 0.4f, 0.0f, false, false, 0.17f, -0.14f) - curveToRelative(0.02f, -0.04f, 0.07f, -0.14f, 0.07f, -0.34f) - curveToRelative(0.0f, -0.26f, -0.05f, -0.38f, -0.08f, -0.42f) - arcToRelative(0.28f, 0.28f, 0.0f, false, false, -0.13f, -0.11f) - arcToRelative(1.6f, 1.6f, 0.0f, false, false, -0.66f, -0.1f) - horizontalLineToRelative(-0.2f) - close() - moveTo(20.64f, 3.05f) - curveToRelative(0.69f, 0.34f, 1.2f, 0.97f, 1.55f, 1.92f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.88f, 0.68f) - curveToRelative(-0.22f, -0.6f, -0.45f, -0.75f, -0.55f, -0.8f) - curveToRelative(-0.16f, -0.08f, -0.35f, -0.1f, -0.76f, -0.1f) - arcToRelative(0.9f, 0.9f, 0.0f, false, false, -0.64f, 0.22f) - curveToRelative(-0.15f, 0.13f, -0.29f, 0.35f, -0.4f, 0.63f) - arcToRelative(3.63f, 3.63f, 0.0f, false, false, -0.21f, 1.14f) - verticalLineToRelative(0.01f) - curveToRelative(0.0f, 0.53f, 0.01f, 1.16f, 0.21f, 1.67f) - curveToRelative(0.1f, 0.24f, 0.22f, 0.42f, 0.38f, 0.55f) - curveToRelative(0.15f, 0.12f, 0.38f, 0.24f, 0.77f, 0.29f) - curveToRelative(0.12f, 0.0f, 0.38f, 0.0f, 0.63f, -0.08f) - curveToRelative(0.22f, -0.09f, 0.44f, -0.24f, 0.6f, -0.58f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.82f, 0.82f) - curveToRelative(-0.84f, 1.85f, -2.68f, 1.89f, -3.27f, 1.82f) - arcToRelative(3.4f, 3.4f, 0.0f, false, true, -1.83f, -0.73f) - arcToRelative(3.3f, 3.3f, 0.0f, false, true, -0.96f, -1.36f) - arcToRelative(6.4f, 6.4f, 0.0f, false, true, 0.0f, -4.25f) - curveToRelative(0.17f, -0.47f, 0.46f, -1.0f, 0.94f, -1.43f) - arcToRelative(2.89f, 2.89f, 0.0f, false, true, 2.0f, -0.72f) - curveToRelative(0.36f, 0.0f, 0.99f, 0.0f, 1.6f, 0.3f) - close() - moveTo(17.89f, 14.93f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.18f, 0.28f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.92f, -0.55f) - curveToRelative(0.1f, -0.36f, 0.33f, -0.84f, 0.77f, -1.23f) - arcToRelative(2.85f, 2.85f, 0.0f, false, true, 1.94f, -0.68f) - curveToRelative(1.7f, 0.0f, 2.75f, 1.26f, 2.75f, 2.48f) - curveToRelative(0.0f, 0.42f, -0.08f, 1.11f, -0.54f, 1.72f) - arcToRelative(2.2f, 2.2f, 0.0f, false, true, 0.54f, 1.53f) - curveToRelative(0.0f, 0.9f, -0.3f, 1.64f, -0.9f, 2.15f) - curveToRelative(-0.57f, 0.47f, -1.26f, 0.62f, -1.85f, 0.62f) - curveToRelative(-0.54f, 0.0f, -1.12f, -0.09f, -1.63f, -0.41f) - arcToRelative(2.62f, 2.62f, 0.0f, false, true, -1.07f, -1.46f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.9f, -0.62f) - curveToRelative(0.1f, 0.27f, 0.19f, 0.35f, 0.24f, 0.39f) - curveToRelative(0.07f, 0.04f, 0.22f, 0.1f, 0.56f, 0.1f) - curveToRelative(0.29f, 0.0f, 0.47f, -0.07f, 0.56f, -0.15f) - curveToRelative(0.06f, -0.05f, 0.19f, -0.2f, 0.19f, -0.62f) - curveToRelative(0.0f, -0.15f, -0.03f, -0.2f, -0.05f, -0.21f) - arcToRelative(0.41f, 0.41f, 0.0f, false, false, -0.16f, -0.12f) - curveToRelative(-0.24f, -0.11f, -0.57f, -0.15f, -0.83f, -0.15f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - curveToRelative(0.67f, 0.0f, 0.85f, -0.2f, 0.9f, -0.26f) - arcToRelative(0.83f, 0.83f, 0.0f, false, false, 0.14f, -0.51f) - curveToRelative(0.0f, -0.09f, -0.12f, -0.48f, -0.75f, -0.48f) - curveToRelative(-0.36f, 0.0f, -0.53f, 0.1f, -0.61f, 0.18f) - close() - moveTo(10.75f, 15.53f) - curveToRelative(0.0f, -0.42f, 0.35f, -0.78f, 0.74f, -0.78f) - curveToRelative(0.33f, 0.0f, 0.57f, 0.16f, 0.68f, 0.32f) - curveToRelative(0.08f, 0.12f, 0.17f, 0.37f, -0.1f, 0.83f) - curveToRelative(-0.13f, 0.22f, -0.33f, 0.42f, -0.62f, 0.66f) - lineToRelative(-0.48f, 0.35f) - lineToRelative(-0.08f, 0.05f) - lineToRelative(-0.48f, 0.35f) - curveToRelative(-0.76f, 0.57f, -1.66f, 1.42f, -1.66f, 2.94f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(3.45f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - horizontalLineToRelative(-2.0f) - lineToRelative(0.42f, -0.34f) - lineToRelative(0.42f, -0.31f) - lineToRelative(0.08f, -0.06f) - curveToRelative(0.18f, -0.12f, 0.38f, -0.26f, 0.57f, -0.41f) - curveToRelative(0.38f, -0.3f, 0.8f, -0.7f, 1.1f, -1.21f) - curveToRelative(0.6f, -1.02f, 0.6f, -2.1f, 0.06f, -2.94f) - arcToRelative(2.78f, 2.78f, 0.0f, false, false, -5.1f, 1.54f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - close() - moveTo(5.02f, 16.79f) - lineTo(4.81f, 16.95f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.11f, -1.67f) - arcToRelative(3.31f, 3.31f, 0.0f, false, false, 1.35f, -1.74f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.97f, 0.21f) - verticalLineToRelative(6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-3.46f) - close() - } - } - return _textNumberFormat!! - } - -private var _textNumberFormat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextNumberListLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextNumberListLtr.kt deleted file mode 100644 index 3a97135e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextNumberListLtr.kt +++ /dev/null @@ -1,104 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextNumberListLtr: ImageVector - get() { - if (_textNumberListLtr != null) { - return _textNumberListLtr!! - } - _textNumberListLtr = fluentIcon(name = "Filled.TextNumberListLtr") { - fluentPath { - moveTo(6.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.43f, -0.3f) - arcToRelative(1.42f, 1.42f, 0.0f, false, true, -0.07f, 0.13f) - curveToRelative(-0.05f, 0.1f, -0.13f, 0.23f, -0.24f, 0.38f) - curveToRelative(-0.22f, 0.32f, -0.52f, 0.66f, -0.9f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.79f, 1.28f) - lineToRelative(0.35f, -0.25f) - verticalLineToRelative(2.36f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) - verticalLineToRelative(-4.5f) - close() - moveTo(19.5f, 18.0f) - horizontalLineToRelative(-8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, 2.0f) - horizontalLineToRelative(8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, -2.0f) - close() - moveTo(19.5f, 11.5f) - horizontalLineToRelative(-8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, 2.0f) - horizontalLineToRelative(8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, -2.0f) - close() - moveTo(19.5f, 5.0f) - horizontalLineToRelative(-8.62f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 11.0f, 7.0f) - horizontalLineToRelative(8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, -2.0f) - close() - moveTo(5.15f, 10.52f) - curveToRelative(-0.3f, -0.05f, -0.68f, 0.07f, -0.87f, 0.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - arcToRelative(2.57f, 2.57f, 0.0f, false, true, 2.2f, -0.68f) - curveToRelative(0.39f, 0.07f, 0.8f, 0.26f, 1.1f, 0.6f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 7.0f, 11.0f) - curveToRelative(0.0f, 0.62f, -0.27f, 1.08f, -0.6f, 1.42f) - curveToRelative(-0.28f, 0.28f, -0.64f, 0.51f, -0.91f, 0.69f) - lineToRelative(-0.08f, 0.05f) - curveToRelative(-0.2f, 0.13f, -0.36f, 0.24f, -0.48f, 0.34f) - horizontalLineToRelative(1.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - curveToRelative(0.0f, -1.31f, 0.98f, -1.95f, 1.58f, -2.34f) - lineToRelative(0.06f, -0.04f) - curveToRelative(0.31f, -0.2f, 0.53f, -0.34f, 0.68f, -0.5f) - curveToRelative(0.14f, -0.14f, 0.18f, -0.24f, 0.18f, -0.37f) - curveToRelative(0.0f, -0.22f, -0.06f, -0.32f, -0.1f, -0.36f) - arcToRelative(0.42f, 0.42f, 0.0f, false, false, -0.25f, -0.12f) - close() - moveTo(2.97f, 21.28f) - reflectiveCurveToRelative(0.1f, 0.08f, 0.0f, 0.0f) - lineToRelative(0.01f, 0.01f) - lineToRelative(0.01f, 0.01f) - arcToRelative(1.4f, 1.4f, 0.0f, false, false, 0.15f, 0.13f) - arcTo(3.24f, 3.24f, 0.0f, false, false, 5.0f, 22.0f) - curveToRelative(0.64f, 0.0f, 1.2f, -0.18f, 1.6f, -0.54f) - curveToRelative(0.4f, -0.36f, 0.61f, -0.86f, 0.6f, -1.36f) - curveToRelative(-0.02f, -0.42f, -0.17f, -0.8f, -0.43f, -1.1f) - arcToRelative(1.73f, 1.73f, 0.0f, false, false, -0.17f, -2.46f) - curveTo(6.2f, 16.18f, 5.64f, 16.0f, 5.0f, 16.0f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, -1.86f, 0.57f) - arcToRelative(1.95f, 1.95f, 0.0f, false, false, -0.15f, 0.13f) - lineToRelative(-0.01f, 0.01f) - lineToRelative(-0.01f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.07f, 1.05f) - lineToRelative(0.17f, -0.1f) - curveToRelative(0.16f, -0.08f, 0.42f, -0.17f, 0.79f, -0.17f) - curveToRelative(0.36f, 0.0f, 0.54f, 0.1f, 0.6f, 0.16f) - curveToRelative(0.08f, 0.07f, 0.1f, 0.13f, 0.1f, 0.2f) - curveToRelative(0.0f, 0.06f, -0.04f, 0.14f, -0.13f, 0.22f) - curveToRelative(-0.09f, 0.08f, -0.26f, 0.17f, -0.57f, 0.17f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - curveToRelative(0.31f, 0.0f, 0.48f, 0.1f, 0.57f, 0.17f) - curveToRelative(0.1f, 0.08f, 0.12f, 0.16f, 0.13f, 0.23f) - curveToRelative(0.0f, 0.06f, -0.02f, 0.13f, -0.1f, 0.19f) - curveToRelative(-0.06f, 0.06f, -0.24f, 0.16f, -0.6f, 0.16f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.96f, -0.27f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.07f, 1.05f) - close() - moveTo(2.97f, 16.72f) - close() - } - } - return _textNumberListLtr!! - } - -private var _textNumberListLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextNumberListLtr90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextNumberListLtr90.kt deleted file mode 100644 index cc87036f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextNumberListLtr90.kt +++ /dev/null @@ -1,105 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextNumberListLtr90: ImageVector - get() { - if (_textNumberListLtr90 != null) { - return _textNumberListLtr90!! - } - _textNumberListLtr90 = fluentIcon(name = "Filled.TextNumberListLtr90") { - fluentPath { - moveTo(21.25f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.3f, -1.43f) - arcToRelative(1.47f, 1.47f, 0.0f, false, true, -0.13f, -0.07f) - curveToRelative(-0.1f, -0.05f, -0.23f, -0.13f, -0.38f, -0.24f) - arcToRelative(3.26f, 3.26f, 0.0f, false, true, -0.9f, -0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.28f, 0.79f) - lineToRelative(0.25f, 0.35f) - horizontalLineToRelative(-2.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.5f) - close() - moveTo(6.0f, 19.5f) - verticalLineToRelative(-8.62f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 4.0f, 11.0f) - verticalLineToRelative(8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) - close() - moveTo(12.5f, 19.5f) - verticalLineToRelative(-8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) - verticalLineToRelative(8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) - close() - moveTo(19.0f, 19.5f) - verticalLineToRelative(-8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) - verticalLineToRelative(8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) - close() - moveTo(13.48f, 5.15f) - curveToRelative(0.05f, -0.3f, -0.07f, -0.68f, -0.26f, -0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - curveToRelative(0.56f, 0.56f, 0.81f, 1.43f, 0.68f, 2.2f) - curveToRelative(-0.07f, 0.39f, -0.26f, 0.8f, -0.6f, 1.1f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 13.0f, 7.0f) - curveToRelative(-0.62f, 0.0f, -1.08f, -0.27f, -1.42f, -0.6f) - curveToRelative(-0.28f, -0.28f, -0.51f, -0.64f, -0.69f, -0.91f) - lineToRelative(-0.05f, -0.08f) - curveToRelative(-0.13f, -0.2f, -0.24f, -0.36f, -0.34f, -0.48f) - verticalLineToRelative(1.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - curveToRelative(1.31f, 0.0f, 1.95f, 0.98f, 2.34f, 1.58f) - lineToRelative(0.04f, 0.06f) - curveToRelative(0.2f, 0.31f, 0.34f, 0.53f, 0.5f, 0.68f) - curveToRelative(0.14f, 0.14f, 0.24f, 0.18f, 0.37f, 0.18f) - curveToRelative(0.22f, 0.0f, 0.32f, -0.06f, 0.36f, -0.1f) - curveToRelative(0.05f, -0.04f, 0.1f, -0.12f, 0.12f, -0.25f) - close() - moveTo(2.72f, 2.97f) - reflectiveCurveToRelative(-0.08f, 0.1f, 0.0f, 0.0f) - lineToRelative(-0.01f, 0.01f) - lineToRelative(-0.01f, 0.01f) - arcToRelative(1.46f, 1.46f, 0.0f, false, false, -0.13f, 0.15f) - arcTo(3.24f, 3.24f, 0.0f, false, false, 2.0f, 5.0f) - curveToRelative(0.0f, 0.64f, 0.18f, 1.2f, 0.54f, 1.6f) - curveToRelative(0.36f, 0.4f, 0.86f, 0.61f, 1.36f, 0.6f) - curveToRelative(0.42f, -0.02f, 0.8f, -0.17f, 1.1f, -0.43f) - arcToRelative(1.73f, 1.73f, 0.0f, false, false, 2.46f, -0.17f) - curveTo(7.82f, 6.2f, 8.0f, 5.64f, 8.0f, 5.0f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, -0.57f, -1.86f) - arcTo(1.96f, 1.96f, 0.0f, false, false, 7.3f, 3.0f) - lineToRelative(-0.01f, -0.01f) - lineToRelative(-0.01f, -0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.05f, 1.07f) - lineToRelative(0.1f, 0.17f) - curveToRelative(0.08f, 0.16f, 0.17f, 0.42f, 0.17f, 0.79f) - curveToRelative(0.0f, 0.36f, -0.1f, 0.54f, -0.16f, 0.6f) - arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.2f, 0.1f) - arcToRelative(0.32f, 0.32f, 0.0f, false, true, -0.22f, -0.13f) - curveToRelative(-0.08f, -0.09f, -0.17f, -0.26f, -0.17f, -0.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - curveToRelative(0.0f, 0.31f, -0.1f, 0.48f, -0.17f, 0.57f) - arcToRelative(0.32f, 0.32f, 0.0f, false, true, -0.23f, 0.13f) - arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.19f, -0.1f) - curveToRelative(-0.06f, -0.06f, -0.16f, -0.24f, -0.16f, -0.6f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.27f, -0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.05f, -1.07f) - close() - moveTo(7.28f, 2.97f) - reflectiveCurveToRelative(0.17f, 0.2f, 0.0f, 0.0f) - close() - } - } - return _textNumberListLtr90!! - } - -private var _textNumberListLtr90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextNumberListLtrRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextNumberListLtrRotate270.kt deleted file mode 100644 index bd0e2403..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextNumberListLtrRotate270.kt +++ /dev/null @@ -1,104 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextNumberListLtrRotate270: ImageVector - get() { - if (_textNumberListLtrRotate270 != null) { - return _textNumberListLtrRotate270!! - } - _textNumberListLtrRotate270 = fluentIcon(name = "Filled.TextNumberListLtrRotate270") { - fluentPath { - moveTo(2.75f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.3f, 1.43f) - arcToRelative(1.2f, 1.2f, 0.0f, false, true, 0.13f, 0.07f) - curveToRelative(0.1f, 0.05f, 0.23f, 0.13f, 0.38f, 0.24f) - curveToRelative(0.32f, 0.22f, 0.66f, 0.52f, 0.9f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.28f, -0.79f) - arcToRelative(3.97f, 3.97f, 0.0f, false, false, -0.25f, -0.35f) - horizontalLineToRelative(2.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - close() - moveTo(18.0f, 4.5f) - verticalLineToRelative(8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) - lineTo(20.0f, 4.38f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) - close() - moveTo(11.5f, 4.5f) - verticalLineToRelative(8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) - lineTo(13.5f, 4.38f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) - close() - moveTo(5.0f, 4.5f) - verticalLineToRelative(8.62f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 7.0f, 13.0f) - lineTo(7.0f, 4.38f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) - close() - moveTo(10.52f, 18.85f) - curveToRelative(-0.05f, 0.3f, 0.07f, 0.68f, 0.26f, 0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - arcToRelative(2.57f, 2.57f, 0.0f, false, true, -0.68f, -2.2f) - curveToRelative(0.07f, -0.39f, 0.26f, -0.8f, 0.6f, -1.1f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 11.0f, 17.0f) - curveToRelative(0.62f, 0.0f, 1.08f, 0.27f, 1.42f, 0.6f) - curveToRelative(0.28f, 0.28f, 0.51f, 0.64f, 0.69f, 0.91f) - lineToRelative(0.05f, 0.08f) - curveToRelative(0.13f, 0.2f, 0.24f, 0.36f, 0.34f, 0.48f) - verticalLineToRelative(-1.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - curveToRelative(-1.31f, 0.0f, -1.95f, -0.98f, -2.34f, -1.58f) - lineToRelative(-0.04f, -0.06f) - arcToRelative(4.2f, 4.2f, 0.0f, false, false, -0.5f, -0.69f) - curveToRelative(-0.14f, -0.13f, -0.24f, -0.17f, -0.37f, -0.17f) - curveToRelative(-0.22f, 0.0f, -0.32f, 0.06f, -0.36f, 0.1f) - arcToRelative(0.42f, 0.42f, 0.0f, false, false, -0.12f, 0.25f) - close() - moveTo(21.28f, 21.03f) - reflectiveCurveToRelative(0.08f, -0.1f, 0.0f, 0.0f) - lineToRelative(0.01f, -0.01f) - lineToRelative(0.01f, -0.01f) - arcToRelative(1.58f, 1.58f, 0.0f, false, false, 0.13f, -0.15f) - arcTo(3.24f, 3.24f, 0.0f, false, false, 22.0f, 19.0f) - curveToRelative(0.0f, -0.64f, -0.18f, -1.2f, -0.54f, -1.6f) - curveToRelative(-0.36f, -0.41f, -0.86f, -0.61f, -1.36f, -0.6f) - curveToRelative(-0.42f, 0.02f, -0.8f, 0.17f, -1.1f, 0.43f) - arcToRelative(1.73f, 1.73f, 0.0f, false, false, -2.46f, 0.17f) - curveToRelative(-0.36f, 0.4f, -0.54f, 0.96f, -0.54f, 1.6f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, 0.57f, 1.86f) - arcToRelative(1.99f, 1.99f, 0.0f, false, false, 0.13f, 0.15f) - lineToRelative(0.01f, 0.01f) - lineToRelative(0.01f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.05f, -1.07f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.27f, -0.96f) - curveToRelative(0.0f, -0.36f, 0.1f, -0.54f, 0.16f, -0.6f) - arcToRelative(0.23f, 0.23f, 0.0f, false, true, 0.2f, -0.1f) - curveToRelative(0.06f, 0.0f, 0.14f, 0.04f, 0.22f, 0.13f) - curveToRelative(0.08f, 0.09f, 0.17f, 0.26f, 0.17f, 0.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - curveToRelative(0.0f, -0.31f, 0.1f, -0.48f, 0.17f, -0.57f) - curveToRelative(0.08f, -0.1f, 0.16f, -0.12f, 0.23f, -0.13f) - curveToRelative(0.06f, 0.0f, 0.13f, 0.02f, 0.19f, 0.1f) - curveToRelative(0.06f, 0.06f, 0.16f, 0.24f, 0.16f, 0.6f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.27f, 0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.05f, 1.07f) - close() - moveTo(16.72f, 21.03f) - reflectiveCurveToRelative(-0.17f, -0.2f, 0.0f, 0.0f) - close() - } - } - return _textNumberListLtrRotate270!! - } - -private var _textNumberListLtrRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextNumberListRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextNumberListRotate270.kt deleted file mode 100644 index ec2f6efb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextNumberListRotate270.kt +++ /dev/null @@ -1,104 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextNumberListRotate270: ImageVector - get() { - if (_textNumberListRotate270 != null) { - return _textNumberListRotate270!! - } - _textNumberListRotate270 = fluentIcon(name = "Filled.TextNumberListRotate270") { - fluentPath { - moveTo(2.75f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.3f, 1.43f) - arcToRelative(2.3f, 2.3f, 0.0f, false, true, 0.13f, 0.07f) - curveToRelative(0.1f, 0.05f, 0.23f, 0.13f, 0.38f, 0.24f) - curveToRelative(0.32f, 0.22f, 0.66f, 0.52f, 0.9f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.28f, -0.79f) - arcToRelative(3.97f, 3.97f, 0.0f, false, false, -0.25f, -0.35f) - horizontalLineToRelative(2.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - close() - moveTo(18.0f, 4.5f) - verticalLineToRelative(8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) - lineTo(20.0f, 4.38f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) - close() - moveTo(11.5f, 4.5f) - verticalLineToRelative(8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) - lineTo(13.5f, 4.38f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) - close() - moveTo(5.0f, 4.5f) - verticalLineToRelative(8.62f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 7.0f, 13.0f) - lineTo(7.0f, 4.38f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) - close() - moveTo(10.52f, 18.85f) - curveToRelative(-0.05f, 0.3f, 0.07f, 0.68f, 0.26f, 0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - arcToRelative(2.57f, 2.57f, 0.0f, false, true, -0.68f, -2.2f) - curveToRelative(0.07f, -0.39f, 0.26f, -0.8f, 0.6f, -1.1f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 11.0f, 17.0f) - curveToRelative(0.62f, 0.0f, 1.08f, 0.27f, 1.42f, 0.6f) - curveToRelative(0.28f, 0.28f, 0.51f, 0.64f, 0.69f, 0.91f) - lineToRelative(0.05f, 0.08f) - curveToRelative(0.13f, 0.2f, 0.24f, 0.36f, 0.34f, 0.48f) - verticalLineToRelative(-1.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - curveToRelative(-1.31f, 0.0f, -1.95f, -0.98f, -2.34f, -1.58f) - lineToRelative(-0.04f, -0.06f) - arcToRelative(4.2f, 4.2f, 0.0f, false, false, -0.5f, -0.68f) - curveToRelative(-0.14f, -0.14f, -0.24f, -0.18f, -0.37f, -0.18f) - curveToRelative(-0.22f, 0.0f, -0.32f, 0.06f, -0.36f, 0.1f) - arcToRelative(0.42f, 0.42f, 0.0f, false, false, -0.12f, 0.25f) - close() - moveTo(21.28f, 21.03f) - reflectiveCurveToRelative(0.08f, -0.1f, 0.0f, 0.0f) - lineToRelative(0.01f, -0.01f) - lineToRelative(0.01f, -0.01f) - arcToRelative(1.42f, 1.42f, 0.0f, false, false, 0.13f, -0.15f) - arcTo(3.24f, 3.24f, 0.0f, false, false, 22.0f, 19.0f) - curveToRelative(0.0f, -0.64f, -0.18f, -1.2f, -0.54f, -1.6f) - curveToRelative(-0.36f, -0.4f, -0.86f, -0.61f, -1.36f, -0.6f) - curveToRelative(-0.42f, 0.02f, -0.8f, 0.17f, -1.1f, 0.43f) - arcToRelative(1.73f, 1.73f, 0.0f, false, false, -2.46f, 0.17f) - curveToRelative(-0.36f, 0.4f, -0.54f, 0.96f, -0.54f, 1.6f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, 0.57f, 1.86f) - arcToRelative(1.95f, 1.95f, 0.0f, false, false, 0.13f, 0.15f) - lineToRelative(0.01f, 0.01f) - lineToRelative(0.01f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.05f, -1.07f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.27f, -0.96f) - curveToRelative(0.0f, -0.36f, 0.1f, -0.54f, 0.16f, -0.6f) - arcToRelative(0.23f, 0.23f, 0.0f, false, true, 0.2f, -0.1f) - curveToRelative(0.06f, 0.0f, 0.14f, 0.04f, 0.22f, 0.13f) - curveToRelative(0.08f, 0.09f, 0.17f, 0.26f, 0.17f, 0.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - curveToRelative(0.0f, -0.31f, 0.1f, -0.48f, 0.17f, -0.57f) - curveToRelative(0.08f, -0.1f, 0.16f, -0.12f, 0.23f, -0.13f) - curveToRelative(0.06f, 0.0f, 0.13f, 0.02f, 0.19f, 0.1f) - curveToRelative(0.06f, 0.06f, 0.16f, 0.24f, 0.16f, 0.6f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.27f, 0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.05f, 1.07f) - close() - moveTo(16.72f, 21.03f) - reflectiveCurveToRelative(-0.17f, -0.2f, 0.0f, 0.0f) - close() - } - } - return _textNumberListRotate270!! - } - -private var _textNumberListRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextNumberListRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextNumberListRotate90.kt deleted file mode 100644 index 009fe140..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextNumberListRotate90.kt +++ /dev/null @@ -1,105 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextNumberListRotate90: ImageVector - get() { - if (_textNumberListRotate90 != null) { - return _textNumberListRotate90!! - } - _textNumberListRotate90 = fluentIcon(name = "Filled.TextNumberListRotate90") { - fluentPath { - moveTo(21.25f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.3f, -1.43f) - arcToRelative(1.47f, 1.47f, 0.0f, false, true, -0.13f, -0.07f) - curveToRelative(-0.1f, -0.05f, -0.23f, -0.13f, -0.38f, -0.24f) - arcToRelative(3.26f, 3.26f, 0.0f, false, true, -0.9f, -0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.28f, 0.79f) - lineToRelative(0.25f, 0.35f) - horizontalLineToRelative(-2.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.5f) - close() - moveTo(6.0f, 19.5f) - verticalLineToRelative(-8.62f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 4.0f, 11.0f) - verticalLineToRelative(8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) - close() - moveTo(12.5f, 19.5f) - verticalLineToRelative(-8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) - verticalLineToRelative(8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) - close() - moveTo(19.0f, 19.5f) - verticalLineToRelative(-8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) - verticalLineToRelative(8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) - close() - moveTo(13.48f, 5.15f) - curveToRelative(0.05f, -0.3f, -0.07f, -0.68f, -0.26f, -0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - curveToRelative(0.56f, 0.56f, 0.81f, 1.43f, 0.68f, 2.2f) - curveToRelative(-0.07f, 0.39f, -0.26f, 0.8f, -0.6f, 1.1f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 13.0f, 7.0f) - curveToRelative(-0.62f, 0.0f, -1.08f, -0.27f, -1.42f, -0.6f) - curveToRelative(-0.28f, -0.28f, -0.51f, -0.64f, -0.69f, -0.91f) - lineToRelative(-0.05f, -0.08f) - curveToRelative(-0.13f, -0.2f, -0.24f, -0.36f, -0.34f, -0.48f) - verticalLineToRelative(1.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - curveToRelative(1.31f, 0.0f, 1.95f, 0.98f, 2.34f, 1.58f) - lineToRelative(0.04f, 0.06f) - curveToRelative(0.2f, 0.31f, 0.34f, 0.53f, 0.5f, 0.68f) - curveToRelative(0.14f, 0.14f, 0.24f, 0.18f, 0.37f, 0.18f) - curveToRelative(0.22f, 0.0f, 0.32f, -0.06f, 0.36f, -0.1f) - curveToRelative(0.05f, -0.04f, 0.1f, -0.12f, 0.12f, -0.25f) - close() - moveTo(2.72f, 2.97f) - reflectiveCurveToRelative(-0.08f, 0.1f, 0.0f, 0.0f) - lineToRelative(-0.01f, 0.01f) - lineToRelative(-0.01f, 0.01f) - arcToRelative(1.46f, 1.46f, 0.0f, false, false, -0.13f, 0.15f) - arcTo(3.24f, 3.24f, 0.0f, false, false, 2.0f, 5.0f) - curveToRelative(0.0f, 0.64f, 0.18f, 1.2f, 0.54f, 1.6f) - curveToRelative(0.36f, 0.4f, 0.86f, 0.61f, 1.36f, 0.6f) - curveToRelative(0.42f, -0.02f, 0.8f, -0.17f, 1.1f, -0.43f) - arcToRelative(1.73f, 1.73f, 0.0f, false, false, 2.46f, -0.17f) - curveTo(7.82f, 6.2f, 8.0f, 5.64f, 8.0f, 5.0f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, -0.57f, -1.86f) - arcTo(1.96f, 1.96f, 0.0f, false, false, 7.3f, 3.0f) - lineToRelative(-0.01f, -0.01f) - lineToRelative(-0.01f, -0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.05f, 1.07f) - lineToRelative(0.1f, 0.17f) - curveToRelative(0.08f, 0.16f, 0.17f, 0.42f, 0.17f, 0.79f) - curveToRelative(0.0f, 0.36f, -0.1f, 0.54f, -0.16f, 0.6f) - arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.2f, 0.1f) - arcToRelative(0.32f, 0.32f, 0.0f, false, true, -0.22f, -0.13f) - curveToRelative(-0.08f, -0.09f, -0.17f, -0.26f, -0.17f, -0.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - curveToRelative(0.0f, 0.31f, -0.1f, 0.48f, -0.17f, 0.57f) - arcToRelative(0.32f, 0.32f, 0.0f, false, true, -0.23f, 0.13f) - arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.19f, -0.1f) - curveToRelative(-0.06f, -0.06f, -0.16f, -0.24f, -0.16f, -0.6f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.27f, -0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.05f, -1.07f) - close() - moveTo(7.28f, 2.97f) - reflectiveCurveToRelative(0.17f, 0.2f, 0.0f, 0.0f) - close() - } - } - return _textNumberListRotate90!! - } - -private var _textNumberListRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextNumberListRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextNumberListRtl.kt deleted file mode 100644 index a705bee5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextNumberListRtl.kt +++ /dev/null @@ -1,106 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextNumberListRtl: ImageVector - get() { - if (_textNumberListRtl != null) { - return _textNumberListRtl!! - } - _textNumberListRtl = fluentIcon(name = "Filled.TextNumberListRtl") { - fluentPath { - moveTo(20.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.43f, -0.3f) - arcToRelative(2.3f, 2.3f, 0.0f, false, true, -0.07f, 0.13f) - curveToRelative(-0.05f, 0.1f, -0.13f, 0.23f, -0.24f, 0.38f) - curveToRelative(-0.22f, 0.32f, -0.52f, 0.66f, -0.9f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.79f, 1.28f) - lineToRelative(0.35f, -0.25f) - verticalLineToRelative(2.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-4.5f) - close() - moveTo(13.0f, 18.0f) - lineTo(4.38f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, 2.0f) - horizontalLineToRelative(8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, -2.0f) - close() - moveTo(13.0f, 11.5f) - lineTo(4.38f, 11.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, 2.0f) - horizontalLineToRelative(8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, -2.0f) - close() - moveTo(14.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(4.38f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, 2.0f) - horizontalLineToRelative(8.62f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 14.0f, 6.0f) - close() - moveTo(19.15f, 10.52f) - curveToRelative(-0.3f, -0.05f, -0.68f, 0.07f, -0.87f, 0.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - arcToRelative(2.57f, 2.57f, 0.0f, false, true, 2.2f, -0.68f) - curveToRelative(0.39f, 0.07f, 0.8f, 0.26f, 1.1f, 0.6f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 21.0f, 11.0f) - curveToRelative(0.0f, 0.62f, -0.27f, 1.08f, -0.6f, 1.42f) - curveToRelative(-0.28f, 0.28f, -0.64f, 0.51f, -0.91f, 0.69f) - lineToRelative(-0.08f, 0.05f) - curveToRelative(-0.2f, 0.13f, -0.36f, 0.24f, -0.48f, 0.34f) - horizontalLineToRelative(1.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - curveToRelative(0.0f, -1.31f, 0.98f, -1.95f, 1.58f, -2.34f) - lineToRelative(0.06f, -0.04f) - curveToRelative(0.31f, -0.2f, 0.53f, -0.34f, 0.68f, -0.5f) - curveToRelative(0.14f, -0.14f, 0.18f, -0.24f, 0.18f, -0.37f) - curveToRelative(0.0f, -0.22f, -0.06f, -0.32f, -0.1f, -0.36f) - arcToRelative(0.42f, 0.42f, 0.0f, false, false, -0.25f, -0.12f) - close() - moveTo(16.97f, 21.28f) - reflectiveCurveToRelative(0.1f, 0.08f, 0.0f, 0.0f) - lineToRelative(0.01f, 0.01f) - lineToRelative(0.01f, 0.01f) - arcToRelative(1.42f, 1.42f, 0.0f, false, false, 0.15f, 0.13f) - arcTo(3.24f, 3.24f, 0.0f, false, false, 19.0f, 22.0f) - curveToRelative(0.64f, 0.0f, 1.2f, -0.18f, 1.6f, -0.54f) - curveToRelative(0.4f, -0.36f, 0.61f, -0.86f, 0.6f, -1.36f) - curveToRelative(-0.02f, -0.42f, -0.17f, -0.8f, -0.43f, -1.1f) - arcToRelative(1.73f, 1.73f, 0.0f, false, false, -0.17f, -2.46f) - curveToRelative(-0.4f, -0.36f, -0.96f, -0.54f, -1.6f, -0.54f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, -1.86f, 0.57f) - arcToRelative(1.92f, 1.92f, 0.0f, false, false, -0.15f, 0.13f) - lineToRelative(-0.01f, 0.01f) - lineToRelative(-0.01f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.07f, 1.05f) - lineToRelative(0.17f, -0.1f) - curveToRelative(0.16f, -0.08f, 0.42f, -0.17f, 0.79f, -0.17f) - curveToRelative(0.36f, 0.0f, 0.54f, 0.1f, 0.6f, 0.16f) - curveToRelative(0.08f, 0.07f, 0.1f, 0.13f, 0.1f, 0.2f) - curveToRelative(0.0f, 0.06f, -0.04f, 0.14f, -0.13f, 0.22f) - curveToRelative(-0.09f, 0.08f, -0.26f, 0.17f, -0.57f, 0.17f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - curveToRelative(0.31f, 0.0f, 0.48f, 0.1f, 0.57f, 0.17f) - curveToRelative(0.1f, 0.08f, 0.12f, 0.16f, 0.13f, 0.23f) - curveToRelative(0.0f, 0.06f, -0.02f, 0.13f, -0.1f, 0.19f) - curveToRelative(-0.06f, 0.06f, -0.24f, 0.16f, -0.6f, 0.16f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.96f, -0.27f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.07f, 1.05f) - close() - moveTo(16.97f, 16.72f) - reflectiveCurveToRelative(0.2f, -0.17f, 0.0f, 0.0f) - close() - } - } - return _textNumberListRtl!! - } - -private var _textNumberListRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextNumberListRtl90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextNumberListRtl90.kt deleted file mode 100644 index b2b3c00a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextNumberListRtl90.kt +++ /dev/null @@ -1,106 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextNumberListRtl90: ImageVector - get() { - if (_textNumberListRtl90 != null) { - return _textNumberListRtl90!! - } - _textNumberListRtl90 = fluentIcon(name = "Filled.TextNumberListRtl90") { - fluentPath { - moveTo(21.25f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.3f, -1.43f) - arcToRelative(2.14f, 2.14f, 0.0f, false, true, -0.13f, -0.07f) - curveToRelative(-0.1f, -0.05f, -0.23f, -0.13f, -0.38f, -0.24f) - arcToRelative(3.26f, 3.26f, 0.0f, false, true, -0.9f, -0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.28f, 0.79f) - lineToRelative(0.25f, 0.35f) - horizontalLineToRelative(-2.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.5f) - close() - moveTo(6.0f, 13.0f) - lineTo(6.0f, 4.38f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) - verticalLineToRelative(8.62f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 6.0f, 13.0f) - close() - moveTo(12.5f, 13.0f) - lineTo(12.5f, 4.38f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) - verticalLineToRelative(8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) - close() - moveTo(18.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - lineTo(19.0f, 4.38f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) - verticalLineToRelative(8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 0.88f) - close() - moveTo(13.48f, 19.15f) - curveToRelative(0.05f, -0.3f, -0.07f, -0.68f, -0.26f, -0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - curveToRelative(0.56f, 0.56f, 0.81f, 1.43f, 0.68f, 2.2f) - curveToRelative(-0.07f, 0.39f, -0.26f, 0.8f, -0.6f, 1.1f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 13.0f, 21.0f) - curveToRelative(-0.62f, 0.0f, -1.08f, -0.27f, -1.42f, -0.6f) - arcToRelative(5.29f, 5.29f, 0.0f, false, true, -0.69f, -0.91f) - lineToRelative(-0.05f, -0.08f) - curveToRelative(-0.13f, -0.2f, -0.24f, -0.36f, -0.34f, -0.48f) - verticalLineToRelative(1.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - curveToRelative(1.31f, 0.0f, 1.95f, 0.98f, 2.34f, 1.58f) - lineToRelative(0.04f, 0.06f) - curveToRelative(0.2f, 0.31f, 0.34f, 0.53f, 0.5f, 0.68f) - curveToRelative(0.14f, 0.14f, 0.24f, 0.18f, 0.37f, 0.18f) - curveToRelative(0.22f, 0.0f, 0.32f, -0.06f, 0.36f, -0.1f) - curveToRelative(0.05f, -0.04f, 0.1f, -0.12f, 0.12f, -0.25f) - close() - moveTo(2.72f, 16.97f) - reflectiveCurveToRelative(-0.08f, 0.1f, 0.0f, 0.0f) - lineToRelative(-0.01f, 0.01f) - lineToRelative(-0.01f, 0.01f) - arcToRelative(1.47f, 1.47f, 0.0f, false, false, -0.13f, 0.15f) - arcTo(3.24f, 3.24f, 0.0f, false, false, 2.0f, 19.0f) - curveToRelative(0.0f, 0.64f, 0.18f, 1.2f, 0.54f, 1.6f) - curveToRelative(0.36f, 0.4f, 0.86f, 0.61f, 1.36f, 0.6f) - curveToRelative(0.42f, -0.02f, 0.8f, -0.17f, 1.1f, -0.43f) - arcToRelative(1.73f, 1.73f, 0.0f, false, false, 2.46f, -0.17f) - curveToRelative(0.36f, -0.4f, 0.54f, -0.96f, 0.54f, -1.6f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, -0.57f, -1.86f) - arcTo(1.95f, 1.95f, 0.0f, false, false, 7.3f, 17.0f) - lineToRelative(-0.01f, -0.01f) - lineToRelative(-0.01f, -0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.05f, 1.07f) - lineToRelative(0.1f, 0.17f) - curveToRelative(0.08f, 0.16f, 0.17f, 0.42f, 0.17f, 0.79f) - curveToRelative(0.0f, 0.36f, -0.1f, 0.54f, -0.16f, 0.6f) - arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.2f, 0.1f) - arcToRelative(0.32f, 0.32f, 0.0f, false, true, -0.22f, -0.13f) - curveToRelative(-0.08f, -0.09f, -0.17f, -0.26f, -0.17f, -0.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - curveToRelative(0.0f, 0.31f, -0.1f, 0.48f, -0.17f, 0.57f) - arcToRelative(0.32f, 0.32f, 0.0f, false, true, -0.23f, 0.13f) - arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.19f, -0.1f) - curveToRelative(-0.06f, -0.06f, -0.16f, -0.24f, -0.16f, -0.6f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.27f, -0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.05f, -1.07f) - close() - moveTo(7.28f, 16.97f) - reflectiveCurveToRelative(0.17f, 0.2f, 0.0f, 0.0f) - close() - } - } - return _textNumberListRtl90!! - } - -private var _textNumberListRtl90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextNumberListRtlRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextNumberListRtlRotate270.kt deleted file mode 100644 index ea387356..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextNumberListRtlRotate270.kt +++ /dev/null @@ -1,104 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextNumberListRtlRotate270: ImageVector - get() { - if (_textNumberListRtlRotate270 != null) { - return _textNumberListRtlRotate270!! - } - _textNumberListRtlRotate270 = fluentIcon(name = "Filled.TextNumberListRtlRotate270") { - fluentPath { - moveTo(2.75f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.3f, 1.43f) - arcToRelative(1.42f, 1.42f, 0.0f, false, true, 0.13f, 0.07f) - curveToRelative(0.1f, 0.05f, 0.23f, 0.13f, 0.38f, 0.24f) - curveToRelative(0.32f, 0.22f, 0.66f, 0.52f, 0.9f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.28f, -0.79f) - arcToRelative(3.96f, 3.96f, 0.0f, false, false, -0.25f, -0.35f) - horizontalLineToRelative(2.36f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - close() - moveTo(18.0f, 11.0f) - verticalLineToRelative(8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) - verticalLineToRelative(-8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) - close() - moveTo(11.5f, 11.0f) - verticalLineToRelative(8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) - verticalLineToRelative(-8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) - close() - moveTo(6.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(8.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) - verticalLineToRelative(-8.62f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 6.0f, 10.0f) - close() - moveTo(10.52f, 4.85f) - curveToRelative(-0.05f, 0.3f, 0.07f, 0.68f, 0.26f, 0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - arcToRelative(2.57f, 2.57f, 0.0f, false, true, -0.68f, -2.2f) - curveToRelative(0.07f, -0.39f, 0.26f, -0.8f, 0.6f, -1.1f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 11.0f, 3.0f) - curveToRelative(0.62f, 0.0f, 1.08f, 0.27f, 1.42f, 0.6f) - curveToRelative(0.28f, 0.28f, 0.51f, 0.64f, 0.69f, 0.91f) - lineToRelative(0.05f, 0.08f) - curveToRelative(0.13f, 0.2f, 0.24f, 0.36f, 0.34f, 0.48f) - lineTo(13.5f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - curveToRelative(-1.31f, 0.0f, -1.95f, -0.98f, -2.34f, -1.58f) - lineToRelative(-0.04f, -0.06f) - arcToRelative(4.2f, 4.2f, 0.0f, false, false, -0.5f, -0.68f) - curveToRelative(-0.14f, -0.14f, -0.24f, -0.18f, -0.37f, -0.18f) - curveToRelative(-0.22f, 0.0f, -0.32f, 0.06f, -0.36f, 0.1f) - arcToRelative(0.42f, 0.42f, 0.0f, false, false, -0.12f, 0.25f) - close() - moveTo(21.28f, 7.03f) - reflectiveCurveToRelative(0.08f, -0.1f, 0.0f, 0.0f) - lineToRelative(0.01f, -0.01f) - lineToRelative(0.01f, -0.01f) - arcToRelative(1.4f, 1.4f, 0.0f, false, false, 0.13f, -0.15f) - arcTo(3.24f, 3.24f, 0.0f, false, false, 22.0f, 5.0f) - curveToRelative(0.0f, -0.64f, -0.18f, -1.2f, -0.54f, -1.6f) - curveToRelative(-0.36f, -0.4f, -0.86f, -0.61f, -1.36f, -0.6f) - curveToRelative(-0.42f, 0.02f, -0.8f, 0.17f, -1.1f, 0.43f) - arcToRelative(1.73f, 1.73f, 0.0f, false, false, -2.46f, 0.17f) - curveToRelative(-0.36f, 0.4f, -0.54f, 0.96f, -0.54f, 1.6f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, 0.57f, 1.86f) - arcToRelative(1.95f, 1.95f, 0.0f, false, false, 0.13f, 0.15f) - lineToRelative(0.01f, 0.01f) - lineToRelative(0.01f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.05f, -1.07f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 17.5f, 5.0f) - curveToRelative(0.0f, -0.36f, 0.1f, -0.54f, 0.16f, -0.6f) - arcToRelative(0.23f, 0.23f, 0.0f, false, true, 0.2f, -0.1f) - curveToRelative(0.06f, 0.0f, 0.14f, 0.04f, 0.22f, 0.13f) - curveToRelative(0.08f, 0.09f, 0.17f, 0.26f, 0.17f, 0.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - curveToRelative(0.0f, -0.31f, 0.1f, -0.48f, 0.17f, -0.57f) - curveToRelative(0.08f, -0.1f, 0.16f, -0.12f, 0.23f, -0.13f) - curveToRelative(0.06f, 0.0f, 0.13f, 0.02f, 0.19f, 0.1f) - curveToRelative(0.06f, 0.06f, 0.16f, 0.24f, 0.16f, 0.6f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.27f, 0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.05f, 1.07f) - close() - moveTo(16.72f, 7.03f) - close() - } - } - return _textNumberListRtlRotate270!! - } - -private var _textNumberListRtlRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextParagraph.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextParagraph.kt deleted file mode 100644 index 694c0c36..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextParagraph.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextParagraph: ImageVector - get() { - if (_textParagraph != null) { - return _textParagraph!! - } - _textParagraph = fluentIcon(name = "Filled.TextParagraph") { - fluentPath { - moveTo(21.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - horizontalLineToRelative(-4.59f) - lineToRelative(2.3f, 2.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 1.4f) - lineToRelative(-4.0f, -4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) - lineToRelative(4.0f, -4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.42f, 1.4f) - lineTo(14.4f, 8.0f) - horizontalLineTo(19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineTo(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(7.3f, 11.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.4f) - lineTo(9.58f, 15.0f) - horizontalLineTo(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(6.59f) - lineToRelative(-2.3f, 2.3f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.42f, 1.4f) - lineToRelative(4.0f, -4.0f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 13.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.3f, -0.71f) - lineToRelative(-4.0f, -4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) - close() - } - } - return _textParagraph!! - } - -private var _textParagraph: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextParagraphDirection.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextParagraphDirection.kt deleted file mode 100644 index 3dfa40b9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextParagraphDirection.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextParagraphDirection: ImageVector - get() { - if (_textParagraphDirection != null) { - return _textParagraphDirection!! - } - _textParagraphDirection = fluentIcon(name = "Filled.TextParagraphDirection") { - fluentPath { - moveTo(13.5f, 3.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, 11.0f) - lineTo(15.0f, 14.0f) - verticalLineToRelative(7.2f) - curveToRelative(0.0f, 0.45f, 0.34f, 0.8f, 0.75f, 0.8f) - reflectiveCurveToRelative(0.75f, -0.35f, 0.75f, -0.8f) - lineTo(16.5f, 4.5f) - lineTo(18.0f, 4.5f) - verticalLineToRelative(16.7f) - curveToRelative(0.0f, 0.45f, 0.34f, 0.8f, 0.75f, 0.8f) - reflectiveCurveToRelative(0.75f, -0.35f, 0.75f, -0.8f) - lineTo(19.5f, 4.5f) - horizontalLineToRelative(0.67f) - curveToRelative(0.47f, -0.06f, 0.83f, -0.37f, 0.83f, -0.75f) - curveToRelative(0.0f, -0.41f, -0.43f, -0.75f, -0.95f, -0.75f) - lineTo(13.5f, 3.0f) - close() - moveTo(4.08f, 11.86f) - arcToRelative(0.67f, 0.67f, 0.0f, false, true, -0.9f, -0.99f) - lineTo(4.9f, 9.0f) - lineTo(3.18f, 7.13f) - lineToRelative(-0.06f, -0.08f) - arcToRelative(0.67f, 0.67f, 0.0f, false, true, 1.03f, -0.84f) - lineTo(6.3f, 8.54f) - lineToRelative(0.06f, 0.08f) - curveToRelative(0.18f, 0.26f, 0.16f, 0.6f, -0.06f, 0.84f) - lineToRelative(-2.15f, 2.33f) - lineToRelative(-0.07f, 0.07f) - close() - moveTo(5.4f, 19.86f) - arcToRelative(0.67f, 0.67f, 0.0f, false, false, 0.9f, -0.99f) - lineTo(4.59f, 17.0f) - lineToRelative(1.7f, -1.87f) - lineToRelative(0.07f, -0.08f) - arcToRelative(0.67f, 0.67f, 0.0f, false, false, -1.03f, -0.84f) - lineToRelative(-2.15f, 2.33f) - lineToRelative(-0.06f, 0.08f) - curveToRelative(-0.18f, 0.26f, -0.16f, 0.6f, 0.06f, 0.84f) - lineToRelative(2.15f, 2.33f) - lineToRelative(0.07f, 0.07f) - close() - } - } - return _textParagraphDirection!! - } - -private var _textParagraphDirection: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextPositionBehind.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextPositionBehind.kt deleted file mode 100644 index 80872c48..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextPositionBehind.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextPositionBehind: ImageVector - get() { - if (_textPositionBehind != null) { - return _textPositionBehind!! - } - _textPositionBehind = fluentIcon(name = "Filled.TextPositionBehind") { - fluentPath { - moveTo(3.75f, 3.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(3.75f, 3.75f) - close() - moveTo(10.75f, 11.0f) - curveToRelative(0.0f, -0.09f, 0.0f, -0.17f, 0.03f, -0.25f) - horizontalLineToRelative(2.45f) - lineToRelative(0.02f, 0.25f) - verticalLineToRelative(1.75f) - horizontalLineToRelative(-2.5f) - lineTo(10.75f, 11.0f) - close() - moveTo(14.24f, 10.75f) - lineTo(14.25f, 11.0f) - verticalLineToRelative(4.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-5.0f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, -8.5f, 0.25f) - verticalLineToRelative(4.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(9.75f, 11.0f) - lineToRelative(0.01f, -0.25f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.48f, 0.0f) - close() - moveTo(20.25f, 12.75f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - close() - moveTo(6.75f, 11.0f) - verticalLineToRelative(-0.25f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(3.0f) - lineTo(6.75f, 11.0f) - close() - moveTo(2.75f, 18.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(3.75f, 19.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - } - } - return _textPositionBehind!! - } - -private var _textPositionBehind: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextPositionFront.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextPositionFront.kt deleted file mode 100644 index 45f562b7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextPositionFront.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextPositionFront: ImageVector - get() { - if (_textPositionFront != null) { - return _textPositionFront!! - } - _textPositionFront = fluentIcon(name = "Filled.TextPositionFront") { - fluentPath { - moveTo(3.75f, 3.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(3.75f, 3.75f) - close() - moveTo(12.0f, 8.75f) - curveToRelative(-0.78f, 0.0f, -1.47f, 0.4f, -1.87f, 1.0f) - horizontalLineToRelative(-2.2f) - arcToRelative(4.25f, 4.25f, 0.0f, false, true, 8.13f, 0.0f) - horizontalLineToRelative(-2.19f) - curveToRelative(-0.4f, -0.6f, -1.09f, -1.0f, -1.87f, -1.0f) - close() - moveTo(3.75f, 10.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(3.75f, 10.75f) - close() - moveTo(7.75f, 13.75f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(16.25f, 13.75f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(2.75f, 18.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(3.75f, 19.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - } - } - return _textPositionFront!! - } - -private var _textPositionFront: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextPositionLine.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextPositionLine.kt deleted file mode 100644 index a80a5cb1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextPositionLine.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextPositionLine: ImageVector - get() { - if (_textPositionLine != null) { - return _textPositionLine!! - } - _textPositionLine = fluentIcon(name = "Filled.TextPositionLine") { - fluentPath { - moveTo(3.75f, 3.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(3.75f, 3.75f) - close() - moveTo(7.0f, 8.75f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(4.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(2.75f, 11.0f) - arcToRelative(4.25f, 4.25f, 0.0f, false, true, 8.5f, 0.0f) - verticalLineToRelative(4.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(9.25f, 11.0f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - close() - moveTo(13.75f, 14.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-6.5f) - close() - moveTo(3.75f, 17.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(3.75f, 17.75f) - close() - } - } - return _textPositionLine!! - } - -private var _textPositionLine: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextPositionSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextPositionSquare.kt deleted file mode 100644 index 2f82b046..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextPositionSquare.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextPositionSquare: ImageVector - get() { - if (_textPositionSquare != null) { - return _textPositionSquare!! - } - _textPositionSquare = fluentIcon(name = "Filled.TextPositionSquare") { - fluentPath { - moveTo(3.75f, 3.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(3.75f, 3.75f) - close() - moveTo(2.75f, 8.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(17.25f, 8.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(3.75f, 10.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-2.0f) - close() - moveTo(17.25f, 11.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(3.75f, 14.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-2.0f) - close() - moveTo(17.25f, 15.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(2.75f, 18.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(3.75f, 19.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(9.75f, 11.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.5f, 0.0f) - verticalLineToRelative(4.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(16.25f, 11.0f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, -8.5f, 0.0f) - verticalLineToRelative(4.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(9.75f, 11.0f) - close() - } - } - return _textPositionSquare!! - } - -private var _textPositionSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextPositionSquareLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextPositionSquareLeft.kt deleted file mode 100644 index 5a3d5440..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextPositionSquareLeft.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextPositionSquareLeft: ImageVector - get() { - if (_textPositionSquareLeft != null) { - return _textPositionSquareLeft!! - } - _textPositionSquareLeft = fluentIcon(name = "Filled.TextPositionSquareLeft") { - fluentPath { - moveTo(3.75f, 3.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(3.75f, 3.75f) - close() - moveTo(13.25f, 7.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-7.0f) - close() - moveTo(12.25f, 15.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(13.25f, 10.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-7.0f) - close() - moveTo(2.75f, 18.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(3.75f, 19.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(4.75f, 11.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.5f, 0.0f) - verticalLineToRelative(4.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(11.25f, 11.0f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, -8.5f, 0.0f) - verticalLineToRelative(4.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(4.75f, 11.0f) - close() - } - } - return _textPositionSquareLeft!! - } - -private var _textPositionSquareLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextPositionSquareRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextPositionSquareRight.kt deleted file mode 100644 index afa0a240..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextPositionSquareRight.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextPositionSquareRight: ImageVector - get() { - if (_textPositionSquareRight != null) { - return _textPositionSquareRight!! - } - _textPositionSquareRight = fluentIcon(name = "Filled.TextPositionSquareRight") { - fluentPath { - moveTo(20.25f, 3.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(3.75f, 5.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - horizontalLineToRelative(16.5f) - close() - moveTo(10.75f, 7.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - horizontalLineToRelative(7.0f) - close() - moveTo(11.75f, 15.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineToRelative(-7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - close() - moveTo(10.75f, 10.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(7.0f) - close() - moveTo(21.25f, 18.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(3.75f, 17.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - close() - moveTo(19.25f, 11.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -4.5f, 0.0f) - verticalLineToRelative(4.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(12.75f, 11.0f) - arcToRelative(4.25f, 4.25f, 0.0f, false, true, 8.5f, 0.0f) - verticalLineToRelative(4.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(19.25f, 11.0f) - close() - } - } - return _textPositionSquareRight!! - } - -private var _textPositionSquareRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextPositionThrough.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextPositionThrough.kt deleted file mode 100644 index 1b32a396..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextPositionThrough.kt +++ /dev/null @@ -1,104 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextPositionThrough: ImageVector - get() { - if (_textPositionThrough != null) { - return _textPositionThrough!! - } - _textPositionThrough = fluentIcon(name = "Filled.TextPositionThrough") { - fluentPath { - moveTo(3.75f, 3.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(3.75f, 3.75f) - close() - moveTo(15.87f, 9.25f) - arcToRelative(4.27f, 4.27f, 0.0f, false, false, -5.87f, -2.0f) - arcTo(4.27f, 4.27f, 0.0f, false, false, 7.75f, 11.0f) - verticalLineToRelative(4.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - lineTo(9.75f, 11.0f) - arcToRelative(2.28f, 2.28f, 0.0f, false, true, 0.84f, -1.75f) - arcToRelative(2.24f, 2.24f, 0.0f, false, true, 2.82f, 0.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.84f, 1.75f) - verticalLineToRelative(4.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - lineTo(16.25f, 11.0f) - arcToRelative(4.32f, 4.32f, 0.0f, false, false, -0.38f, -1.75f) - close() - moveTo(3.75f, 7.25f) - horizontalLineToRelative(4.58f) - curveToRelative(-0.57f, 0.55f, -1.01f, 1.24f, -1.28f, 2.0f) - horizontalLineToRelative(-3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(3.75f, 10.75f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - close() - moveTo(3.75f, 14.25f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(1.5f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.06f, 0.5f) - lineTo(3.75f, 16.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - close() - moveTo(10.75f, 15.75f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.06f, 0.5f) - horizontalLineToRelative(2.62f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.06f, -0.5f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(-2.5f) - verticalLineToRelative(1.5f) - close() - moveTo(17.25f, 15.75f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.06f, 0.5f) - horizontalLineToRelative(3.06f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(1.5f) - close() - moveTo(20.25f, 12.75f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - close() - moveTo(13.25f, 11.0f) - verticalLineToRelative(1.75f) - horizontalLineToRelative(-2.5f) - lineTo(10.75f, 11.0f) - curveToRelative(0.0f, -0.09f, 0.0f, -0.17f, 0.03f, -0.25f) - horizontalLineToRelative(2.45f) - lineToRelative(0.02f, 0.25f) - close() - moveTo(20.25f, 9.25f) - horizontalLineToRelative(-3.3f) - arcToRelative(5.25f, 5.25f, 0.0f, false, false, -1.28f, -2.0f) - horizontalLineToRelative(4.58f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - close() - moveTo(3.75f, 17.75f) - horizontalLineToRelative(16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(3.75f, 19.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - close() - } - } - return _textPositionThrough!! - } - -private var _textPositionThrough: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextPositionTight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextPositionTight.kt deleted file mode 100644 index 5406df13..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextPositionTight.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextPositionTight: ImageVector - get() { - if (_textPositionTight != null) { - return _textPositionTight!! - } - _textPositionTight = fluentIcon(name = "Filled.TextPositionTight") { - fluentPath { - moveTo(3.75f, 3.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(3.75f, 3.75f) - close() - moveTo(15.87f, 9.25f) - arcToRelative(4.27f, 4.27f, 0.0f, false, false, -5.87f, -2.0f) - arcTo(4.27f, 4.27f, 0.0f, false, false, 7.75f, 11.0f) - verticalLineToRelative(4.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - lineTo(9.75f, 11.0f) - arcToRelative(2.32f, 2.32f, 0.0f, false, true, 0.01f, -0.25f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.49f, 0.25f) - verticalLineToRelative(4.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(16.25f, 11.0f) - arcToRelative(4.32f, 4.32f, 0.0f, false, false, -0.38f, -1.75f) - close() - moveTo(3.75f, 7.25f) - horizontalLineToRelative(4.58f) - curveToRelative(-0.57f, 0.55f, -1.01f, 1.24f, -1.28f, 2.0f) - horizontalLineToRelative(-3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(3.75f, 10.75f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - close() - moveTo(3.75f, 14.25f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(1.5f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.06f, 0.5f) - lineTo(3.75f, 16.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - close() - moveTo(17.25f, 15.75f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.06f, 0.5f) - horizontalLineToRelative(3.06f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(1.5f) - close() - moveTo(20.25f, 12.75f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - close() - moveTo(20.25f, 9.25f) - horizontalLineToRelative(-3.3f) - arcToRelative(5.25f, 5.25f, 0.0f, false, false, -1.28f, -2.0f) - horizontalLineToRelative(4.58f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - close() - moveTo(3.75f, 17.75f) - horizontalLineToRelative(16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(3.75f, 19.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - close() - } - } - return _textPositionTight!! - } - -private var _textPositionTight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextPositionTopBottom.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextPositionTopBottom.kt deleted file mode 100644 index ff574451..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextPositionTopBottom.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextPositionTopBottom: ImageVector - get() { - if (_textPositionTopBottom != null) { - return _textPositionTopBottom!! - } - _textPositionTopBottom = fluentIcon(name = "Filled.TextPositionTopBottom") { - fluentPath { - moveTo(2.75f, 4.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(3.75f, 5.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(2.75f, 18.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(3.75f, 19.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(9.75f, 11.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.5f, 0.0f) - verticalLineToRelative(4.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(16.25f, 11.0f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, -8.5f, 0.0f) - verticalLineToRelative(4.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(9.75f, 11.0f) - close() - } - } - return _textPositionTopBottom!! - } - -private var _textPositionTopBottom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextProofingTools.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextProofingTools.kt deleted file mode 100644 index afc75e3f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextProofingTools.kt +++ /dev/null @@ -1,111 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextProofingTools: ImageVector - get() { - if (_textProofingTools != null) { - return _textProofingTools!! - } - _textProofingTools = fluentIcon(name = "Filled.TextProofingTools") { - fluentPath { - moveTo(22.2f, 4.97f) - arcToRelative(3.21f, 3.21f, 0.0f, false, false, -1.56f, -1.92f) - curveToRelative(-0.61f, -0.3f, -1.24f, -0.3f, -1.6f, -0.3f) - lineTo(19.0f, 2.75f) - curveToRelative(-0.8f, 0.0f, -1.47f, 0.28f, -1.96f, 0.72f) - curveToRelative(-0.48f, 0.43f, -0.77f, 0.96f, -0.94f, 1.43f) - arcToRelative(5.62f, 5.62f, 0.0f, false, false, -0.35f, 1.8f) - verticalLineToRelative(0.09f) - curveToRelative(0.0f, 0.5f, 0.0f, 1.47f, 0.35f, 2.36f) - curveToRelative(0.19f, 0.48f, 0.49f, 0.97f, 0.96f, 1.36f) - curveToRelative(0.49f, 0.4f, 1.1f, 0.65f, 1.83f, 0.73f) - curveToRelative(0.6f, 0.07f, 2.43f, 0.03f, 3.27f, -1.82f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.82f, -0.82f) - curveToRelative(-0.16f, 0.34f, -0.38f, 0.5f, -0.6f, 0.58f) - curveToRelative(-0.25f, 0.09f, -0.51f, 0.09f, -0.63f, 0.08f) - curveToRelative(-0.4f, -0.05f, -0.62f, -0.17f, -0.77f, -0.3f) - arcToRelative(1.3f, 1.3f, 0.0f, false, true, -0.38f, -0.54f) - arcToRelative(4.7f, 4.7f, 0.0f, false, true, -0.21f, -1.67f) - arcToRelative(2.46f, 2.46f, 0.0f, false, true, 0.03f, -0.34f) - curveToRelative(0.03f, -0.24f, 0.08f, -0.53f, 0.19f, -0.8f) - curveToRelative(0.1f, -0.3f, 0.24f, -0.5f, 0.4f, -0.64f) - arcToRelative(0.9f, 0.9f, 0.0f, false, true, 0.63f, -0.22f) - curveToRelative(0.4f, 0.0f, 0.6f, 0.02f, 0.76f, 0.1f) - curveToRelative(0.1f, 0.05f, 0.33f, 0.2f, 0.55f, 0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.88f, -0.68f) - close() - moveTo(14.5f, 6.71f) - curveToRelative(0.2f, -0.36f, 0.32f, -0.8f, 0.32f, -1.33f) - curveToRelative(0.0f, -0.54f, -0.1f, -1.01f, -0.33f, -1.42f) - curveToRelative(-0.22f, -0.41f, -0.53f, -0.7f, -0.86f, -0.88f) - arcToRelative(2.96f, 2.96f, 0.0f, false, false, -1.45f, -0.33f) - lineTo(10.0f, 2.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(2.38f) - curveToRelative(0.3f, 0.0f, 0.96f, -0.04f, 1.58f, -0.37f) - arcToRelative(2.4f, 2.4f, 0.0f, false, false, 1.29f, -2.25f) - curveToRelative(0.0f, -0.56f, -0.12f, -1.05f, -0.37f, -1.46f) - curveToRelative(-0.11f, -0.18f, -0.23f, -0.33f, -0.37f, -0.46f) - close() - moveTo(12.65f, 4.83f) - curveToRelative(0.03f, 0.01f, 0.06f, 0.04f, 0.08f, 0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.09f, 0.47f) - arcToRelative(0.8f, 0.8f, 0.0f, false, true, -0.08f, 0.39f) - arcToRelative(0.31f, 0.31f, 0.0f, false, true, -0.12f, 0.12f) - arcToRelative(0.98f, 0.98f, 0.0f, false, true, -0.46f, 0.11f) - lineTo(11.0f, 6.0f) - lineTo(11.0f, 4.75f) - horizontalLineToRelative(1.16f) - curveToRelative(0.22f, 0.0f, 0.4f, 0.01f, 0.5f, 0.08f) - close() - moveTo(12.17f, 8.0f) - horizontalLineToRelative(0.2f) - curveToRelative(0.26f, 0.0f, 0.5f, 0.01f, 0.67f, 0.1f) - curveToRelative(0.07f, 0.03f, 0.1f, 0.06f, 0.13f, 0.1f) - curveToRelative(0.03f, 0.05f, 0.08f, 0.17f, 0.08f, 0.43f) - curveToRelative(0.0f, 0.2f, -0.05f, 0.3f, -0.07f, 0.34f) - arcToRelative(0.4f, 0.4f, 0.0f, false, true, -0.16f, 0.14f) - curveToRelative(-0.2f, 0.1f, -0.47f, 0.14f, -0.64f, 0.14f) - lineTo(11.0f, 9.25f) - lineTo(11.0f, 8.0f) - horizontalLineToRelative(1.17f) - close() - moveTo(5.03f, 2.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.93f, 0.67f) - lineToRelative(2.3f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.88f, 0.66f) - lineToRelative(-0.19f, -0.53f) - lineTo(3.65f, 10.05f) - lineToRelative(-0.22f, 0.56f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.86f, -0.72f) - lineToRelative(2.51f, -6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.95f, -0.64f) - close() - moveTo(4.98f, 6.63f) - lineTo(4.42f, 8.05f) - horizontalLineToRelative(1.06f) - lineToRelative(-0.5f, -1.42f) - close() - moveTo(15.48f, 12.61f) - lineTo(11.18f, 17.77f) - lineTo(9.46f, 16.04f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, 1.42f) - lineToRelative(2.5f, 2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.48f, -0.07f) - lineToRelative(5.0f, -6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.54f, -1.28f) - close() - } - } - return _textProofingTools!! - } - -private var _textProofingTools: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextQuote.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextQuote.kt deleted file mode 100644 index 3d2afbcb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextQuote.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextQuote: ImageVector - get() { - if (_textQuote != null) { - return _textQuote!! - } - _textQuote = fluentIcon(name = "Filled.TextQuote") { - fluentPath { - moveTo(7.5f, 6.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 10.0f, 8.34f) - verticalLineToRelative(0.2f) - arcToRelative(13.01f, 13.01f, 0.0f, false, true, -3.7f, 9.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.1f, -1.02f) - arcToRelative(11.55f, 11.55f, 0.0f, false, false, 3.08f, -5.86f) - arcTo(2.5f, 2.5f, 0.0f, true, true, 7.5f, 6.0f) - close() - moveTo(16.5f, 6.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 19.0f, 8.34f) - verticalLineToRelative(0.2f) - arcToRelative(12.99f, 12.99f, 0.0f, false, true, -3.7f, 9.23f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.1f, -1.04f) - arcToRelative(11.51f, 11.51f, 0.0f, false, false, 3.08f, -5.85f) - arcTo(2.5f, 2.5f, 0.0f, true, true, 16.5f, 6.0f) - close() - } - } - return _textQuote!! - } - -private var _textQuote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextSortAscending.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextSortAscending.kt deleted file mode 100644 index 1ea568a8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextSortAscending.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextSortAscending: ImageVector - get() { - if (_textSortAscending != null) { - return _textSortAscending!! - } - _textSortAscending = fluentIcon(name = "Filled.TextSortAscending") { - fluentPath { - moveTo(7.98f, 2.67f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.9f, 0.0f) - lineTo(3.3f, 10.74f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.89f, 0.66f) - lineToRelative(0.4f, -1.2f) - horizontalLineToRelative(2.88f) - lineToRelative(0.41f, 1.2f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.9f, -0.66f) - lineToRelative(-2.8f, -8.07f) - close() - moveTo(6.29f, 8.21f) - lineToRelative(0.74f, -2.15f) - lineToRelative(0.75f, 2.15f) - horizontalLineTo(6.29f) - close() - moveTo(3.75f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineTo(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.8f, 1.6f) - lineTo(6.75f, 20.0f) - horizontalLineTo(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineTo(4.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.8f, -1.6f) - lineTo(8.0f, 15.0f) - horizontalLineTo(4.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(17.5f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(15.59f) - lineToRelative(1.8f, -1.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.42f) - lineToRelative(-3.5f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) - lineToRelative(-3.5f, -3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, -1.42f) - lineToRelative(1.8f, 1.8f) - verticalLineTo(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - } - } - return _textSortAscending!! - } - -private var _textSortAscending: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextSortDescending.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextSortDescending.kt deleted file mode 100644 index af2d890e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextSortDescending.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextSortDescending: ImageVector - get() { - if (_textSortDescending != null) { - return _textSortDescending!! - } - _textSortDescending = fluentIcon(name = "Filled.TextSortDescending") { - fluentPath { - moveTo(3.75f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - lineTo(10.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.8f, 1.6f) - lineTo(6.75f, 9.0f) - lineTo(10.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(4.75f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.8f, -1.6f) - lineTo(8.0f, 4.0f) - lineTo(4.75f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(7.98f, 12.67f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.9f, 0.0f) - lineTo(3.3f, 20.74f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.89f, 0.66f) - lineToRelative(0.4f, -1.2f) - horizontalLineToRelative(2.88f) - lineToRelative(0.41f, 1.2f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.9f, -0.66f) - lineToRelative(-2.8f, -8.07f) - close() - moveTo(6.29f, 18.21f) - lineTo(7.03f, 16.06f) - lineTo(7.78f, 18.21f) - lineTo(6.29f, 18.21f) - close() - moveTo(17.5f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(15.59f) - lineToRelative(1.8f, -1.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.42f) - lineToRelative(-3.5f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) - lineToRelative(-3.5f, -3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, -1.42f) - lineToRelative(1.8f, 1.8f) - lineTo(16.5f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - } - } - return _textSortDescending!! - } - -private var _textSortDescending: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextStrikethrough.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextStrikethrough.kt deleted file mode 100644 index 0510e9d1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextStrikethrough.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextStrikethrough: ImageVector - get() { - if (_textStrikethrough != null) { - return _textStrikethrough!! - } - _textStrikethrough = fluentIcon(name = "Filled.TextStrikethrough") { - fluentPath { - moveTo(13.85f, 11.5f) - horizontalLineToRelative(5.65f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - horizontalLineToRelative(-2.39f) - curveToRelative(0.66f, 0.77f, 1.0f, 1.67f, 1.0f, 2.68f) - curveToRelative(0.0f, 2.93f, -3.28f, 4.92f, -7.03f, 4.48f) - curveToRelative(-2.33f, -0.27f, -3.97f, -1.22f, -4.83f, -2.83f) - curveToRelative(-0.26f, -0.49f, -0.2f, -1.01f, 0.25f, -1.33f) - curveToRelative(0.46f, -0.32f, 1.26f, -0.1f, 1.52f, 0.39f) - curveToRelative(0.53f, 1.0f, 1.6f, 1.59f, 3.29f, 1.79f) - curveToRelative(2.59f, 0.3f, 4.8f, -0.91f, 4.8f, -2.5f) - curveToRelative(0.0f, -1.1f, -0.55f, -1.94f, -2.1f, -2.68f) - horizontalLineTo(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(8.85f) - close() - moveTo(6.99f, 9.7f) - lineToRelative(-0.3f, -0.51f) - curveToRelative(-0.3f, -0.6f, -0.47f, -1.22f, -0.44f, -1.84f) - curveToRelative(0.16f, -2.96f, 2.94f, -4.71f, 6.6f, -4.29f) - curveToRelative(2.27f, 0.27f, 4.0f, 1.09f, 5.15f, 2.49f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.15f, 1.4f) - arcToRelative(0.99f, 0.99f, 0.0f, false, true, -1.4f, -0.1f) - curveToRelative(-0.81f, -0.99f, -2.07f, -1.6f, -3.82f, -1.8f) - curveToRelative(-2.57f, -0.3f, -4.38f, 0.72f, -4.38f, 2.32f) - curveToRelative(0.0f, 0.72f, 0.24f, 1.22f, 0.77f, 1.81f) - curveToRelative(0.22f, 0.26f, 0.64f, 0.53f, 1.26f, 0.82f) - horizontalLineTo(7.2f) - curveToRelative(-0.1f, -0.17f, -0.18f, -0.27f, -0.2f, -0.3f) - close() - } - } - return _textStrikethrough!! - } - -private var _textStrikethrough: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextSubscript.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextSubscript.kt deleted file mode 100644 index ec81b987..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextSubscript.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextSubscript: ImageVector - get() { - if (_textSubscript != null) { - return _textSubscript!! - } - _textSubscript = fluentIcon(name = "Filled.TextSubscript") { - fluentPath { - moveTo(16.76f, 5.65f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.52f, -1.3f) - lineTo(10.0f, 10.46f) - lineTo(4.76f, 4.35f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.52f, 1.3f) - lineTo(8.68f, 12.0f) - lineToRelative(-5.44f, 6.35f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.52f, 1.3f) - lineTo(10.0f, 13.54f) - lineToRelative(5.07f, 5.91f) - curveToRelative(0.15f, -0.83f, 0.52f, -1.47f, 0.94f, -1.97f) - lineTo(11.31f, 12.0f) - lineToRelative(5.45f, -6.35f) - close() - moveTo(18.74f, 14.75f) - curveToRelative(-0.4f, 0.0f, -0.74f, 0.36f, -0.74f, 0.77f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(2.78f, 2.78f, 0.0f, false, true, 5.1f, -1.54f) - curveToRelative(0.54f, 0.84f, 0.54f, 1.92f, -0.06f, 2.94f) - curveToRelative(-0.3f, 0.52f, -0.72f, 0.9f, -1.1f, 1.2f) - curveToRelative(-0.2f, 0.16f, -0.39f, 0.3f, -0.57f, 0.42f) - lineToRelative(-0.08f, 0.06f) - arcToRelative(16.88f, 16.88f, 0.0f, false, false, -0.83f, 0.65f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - lineTo(17.0f, 21.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - curveToRelative(0.0f, -1.52f, 0.9f, -2.37f, 1.66f, -2.94f) - lineToRelative(0.48f, -0.35f) - lineToRelative(0.08f, -0.05f) - lineToRelative(0.48f, -0.35f) - curveToRelative(0.3f, -0.24f, 0.5f, -0.44f, 0.62f, -0.66f) - curveToRelative(0.27f, -0.46f, 0.18f, -0.71f, 0.1f, -0.83f) - arcToRelative(0.81f, 0.81f, 0.0f, false, false, -0.68f, -0.32f) - close() - } - } - return _textSubscript!! - } - -private var _textSubscript: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextSuperscript.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextSuperscript.kt deleted file mode 100644 index 3a8adae2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextSuperscript.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextSuperscript: ImageVector - get() { - if (_textSuperscript != null) { - return _textSuperscript!! - } - _textSuperscript = fluentIcon(name = "Filled.TextSuperscript") { - fluentPath { - moveTo(18.74f, 3.75f) - curveToRelative(-0.4f, 0.0f, -0.74f, 0.36f, -0.74f, 0.77f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(2.78f, 2.78f, 0.0f, false, true, 5.1f, -1.54f) - curveToRelative(0.54f, 0.84f, 0.54f, 1.92f, -0.06f, 2.94f) - curveToRelative(-0.3f, 0.52f, -0.72f, 0.9f, -1.1f, 1.2f) - curveToRelative(-0.2f, 0.16f, -0.39f, 0.3f, -0.57f, 0.42f) - lineToRelative(-0.08f, 0.06f) - lineToRelative(-0.42f, 0.3f) - curveToRelative(-0.16f, 0.13f, -0.3f, 0.24f, -0.41f, 0.35f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - horizontalLineTo(17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - curveToRelative(0.0f, -1.52f, 0.9f, -2.37f, 1.66f, -2.94f) - lineToRelative(0.48f, -0.35f) - lineToRelative(0.08f, -0.05f) - lineToRelative(0.48f, -0.35f) - curveToRelative(0.3f, -0.24f, 0.5f, -0.44f, 0.62f, -0.66f) - curveToRelative(0.27f, -0.46f, 0.18f, -0.71f, 0.1f, -0.83f) - arcToRelative(0.81f, 0.81f, 0.0f, false, false, -0.68f, -0.32f) - close() - moveTo(11.32f, 12.0f) - lineToRelative(4.4f, -5.13f) - curveToRelative(0.13f, -0.2f, 0.27f, -0.38f, 0.42f, -0.54f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 15.0f, 4.63f) - lineToRelative(-5.0f, 5.83f) - lineToRelative(-5.24f, -6.11f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.52f, 1.3f) - lineTo(8.68f, 12.0f) - lineToRelative(-5.44f, 6.35f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.52f, 1.3f) - lineTo(10.0f, 13.54f) - lineToRelative(5.24f, 6.11f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.52f, -1.3f) - lineTo(11.32f, 12.0f) - close() - } - } - return _textSuperscript!! - } - -private var _textSuperscript: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextT.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextT.kt deleted file mode 100644 index e73e95a5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextT.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextT: ImageVector - get() { - if (_textT != null) { - return _textT!! - } - _textT = fluentIcon(name = "Filled.TextT") { - fluentPath { - moveTo(4.75f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(12.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineTo(6.0f) - horizontalLineTo(13.0f) - verticalLineToRelative(12.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(1.0f) - verticalLineTo(6.0f) - horizontalLineTo(6.75f) - verticalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - verticalLineTo(5.0f) - close() - } - } - return _textT!! - } - -private var _textT: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextUnderline.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextUnderline.kt deleted file mode 100644 index 3ba5a419..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextUnderline.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextUnderline: ImageVector - get() { - if (_textUnderline != null) { - return _textUnderline!! - } - _textUnderline = fluentIcon(name = "Filled.TextUnderline") { - fluentPath { - moveTo(6.0f, 4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 3.46f, 1.32f, 5.0f, 4.25f, 5.0f) - curveToRelative(2.93f, 0.0f, 4.25f, -1.54f, 4.25f, -5.0f) - verticalLineToRelative(-6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 4.54f, -2.18f, 7.0f, -6.25f, 7.0f) - curveToRelative(-4.08f, 0.0f, -6.25f, -2.46f, -6.25f, -7.0f) - verticalLineToRelative(-6.0f) - close() - moveTo(7.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(10.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineTo(7.0f) - close() - } - } - return _textUnderline!! - } - -private var _textUnderline: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextUnderlineCharacterU.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextUnderlineCharacterU.kt deleted file mode 100644 index 2b0c02a7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextUnderlineCharacterU.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextUnderlineCharacterU: ImageVector - get() { - if (_textUnderlineCharacterU != null) { - return _textUnderlineCharacterU!! - } - _textUnderlineCharacterU = fluentIcon(name = "Filled.TextUnderlineCharacterU") { - fluentPath { - moveTo(9.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) - verticalLineToRelative(6.5f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 10.0f, 0.0f) - verticalLineTo(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(6.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) - verticalLineTo(5.0f) - close() - moveTo(7.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineTo(7.0f) - close() - } - } - return _textUnderlineCharacterU!! - } - -private var _textUnderlineCharacterU: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextUnderlineDouble.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextUnderlineDouble.kt deleted file mode 100644 index 57ecadeb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextUnderlineDouble.kt +++ /dev/null @@ -1,115 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextUnderlineDouble: ImageVector - get() { - if (_textUnderlineDouble != null) { - return _textUnderlineDouble!! - } - _textUnderlineDouble = fluentIcon(name = "Filled.TextUnderlineDouble") { - fluentPath { - moveTo(22.2f, 4.97f) - arcToRelative(3.21f, 3.21f, 0.0f, false, false, -1.56f, -1.92f) - curveToRelative(-0.61f, -0.3f, -1.24f, -0.3f, -1.6f, -0.3f) - lineTo(19.0f, 2.75f) - curveToRelative(-0.8f, 0.0f, -1.47f, 0.28f, -1.96f, 0.72f) - curveToRelative(-0.48f, 0.43f, -0.77f, 0.96f, -0.94f, 1.43f) - arcToRelative(5.62f, 5.62f, 0.0f, false, false, -0.35f, 1.8f) - verticalLineToRelative(0.09f) - curveToRelative(0.0f, 0.5f, 0.0f, 1.47f, 0.35f, 2.36f) - curveToRelative(0.19f, 0.48f, 0.49f, 0.97f, 0.96f, 1.36f) - curveToRelative(0.49f, 0.4f, 1.1f, 0.65f, 1.83f, 0.73f) - curveToRelative(0.6f, 0.07f, 2.43f, 0.03f, 3.27f, -1.82f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.82f, -0.82f) - curveToRelative(-0.16f, 0.34f, -0.38f, 0.5f, -0.6f, 0.58f) - curveToRelative(-0.25f, 0.09f, -0.51f, 0.09f, -0.63f, 0.08f) - curveToRelative(-0.4f, -0.05f, -0.62f, -0.17f, -0.77f, -0.3f) - arcToRelative(1.3f, 1.3f, 0.0f, false, true, -0.38f, -0.54f) - arcToRelative(4.7f, 4.7f, 0.0f, false, true, -0.21f, -1.67f) - arcToRelative(2.46f, 2.46f, 0.0f, false, true, 0.03f, -0.34f) - curveToRelative(0.03f, -0.24f, 0.08f, -0.53f, 0.19f, -0.8f) - curveToRelative(0.1f, -0.3f, 0.24f, -0.5f, 0.4f, -0.64f) - arcToRelative(0.9f, 0.9f, 0.0f, false, true, 0.63f, -0.22f) - curveToRelative(0.4f, 0.0f, 0.6f, 0.02f, 0.76f, 0.1f) - curveToRelative(0.1f, 0.05f, 0.33f, 0.2f, 0.55f, 0.8f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.88f, -0.68f) - close() - moveTo(14.5f, 6.71f) - curveToRelative(0.2f, -0.36f, 0.32f, -0.8f, 0.32f, -1.33f) - curveToRelative(0.0f, -0.54f, -0.1f, -1.01f, -0.33f, -1.42f) - curveToRelative(-0.22f, -0.41f, -0.53f, -0.7f, -0.86f, -0.88f) - arcToRelative(2.96f, 2.96f, 0.0f, false, false, -1.45f, -0.33f) - lineTo(10.0f, 2.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(2.38f) - curveToRelative(0.3f, 0.0f, 0.96f, -0.04f, 1.58f, -0.37f) - arcToRelative(2.4f, 2.4f, 0.0f, false, false, 1.29f, -2.25f) - curveToRelative(0.0f, -0.56f, -0.12f, -1.05f, -0.37f, -1.46f) - curveToRelative(-0.11f, -0.18f, -0.23f, -0.33f, -0.37f, -0.46f) - close() - moveTo(12.65f, 4.83f) - curveToRelative(0.03f, 0.01f, 0.06f, 0.04f, 0.08f, 0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.09f, 0.47f) - arcToRelative(0.8f, 0.8f, 0.0f, false, true, -0.08f, 0.39f) - arcToRelative(0.31f, 0.31f, 0.0f, false, true, -0.12f, 0.12f) - arcToRelative(0.98f, 0.98f, 0.0f, false, true, -0.46f, 0.11f) - lineTo(11.0f, 6.0f) - lineTo(11.0f, 4.75f) - horizontalLineToRelative(1.16f) - curveToRelative(0.22f, 0.0f, 0.4f, 0.01f, 0.5f, 0.08f) - close() - moveTo(12.17f, 8.0f) - horizontalLineToRelative(0.2f) - curveToRelative(0.26f, 0.0f, 0.5f, 0.01f, 0.67f, 0.1f) - curveToRelative(0.07f, 0.03f, 0.1f, 0.06f, 0.13f, 0.1f) - curveToRelative(0.03f, 0.05f, 0.08f, 0.17f, 0.08f, 0.43f) - curveToRelative(0.0f, 0.2f, -0.05f, 0.3f, -0.07f, 0.34f) - arcToRelative(0.4f, 0.4f, 0.0f, false, true, -0.16f, 0.14f) - curveToRelative(-0.2f, 0.1f, -0.47f, 0.14f, -0.64f, 0.14f) - lineTo(11.0f, 9.25f) - lineTo(11.0f, 8.0f) - horizontalLineToRelative(1.17f) - close() - moveTo(5.03f, 2.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.93f, 0.67f) - lineToRelative(2.3f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.88f, 0.66f) - lineToRelative(-0.19f, -0.53f) - lineTo(3.65f, 10.05f) - lineToRelative(-0.22f, 0.56f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.86f, -0.72f) - lineToRelative(2.51f, -6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.95f, -0.64f) - close() - moveTo(4.98f, 6.63f) - lineTo(4.42f, 8.05f) - horizontalLineToRelative(1.06f) - lineToRelative(-0.5f, -1.42f) - close() - moveTo(1.5f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(2.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-19.0f) - close() - } - } - return _textUnderlineDouble!! - } - -private var _textUnderlineDouble: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextWordCount.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextWordCount.kt deleted file mode 100644 index 0c5ed767..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextWordCount.kt +++ /dev/null @@ -1,104 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextWordCount: ImageVector - get() { - if (_textWordCount != null) { - return _textWordCount!! - } - _textWordCount = fluentIcon(name = "Filled.TextWordCount") { - fluentPath { - moveTo(2.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(3.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(2.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(3.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(18.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(14.04f, 17.13f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.14f, 0.22f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.93f, -0.52f) - curveToRelative(0.1f, -0.33f, 0.3f, -0.79f, 0.7f, -1.17f) - curveToRelative(0.43f, -0.4f, 1.04f, -0.66f, 1.8f, -0.66f) - arcTo(2.44f, 2.44f, 0.0f, false, true, 17.0f, 17.36f) - curveToRelative(0.0f, 0.39f, -0.07f, 1.02f, -0.47f, 1.59f) - lineToRelative(0.1f, 0.12f) - curveToRelative(0.24f, 0.37f, 0.37f, 0.8f, 0.37f, 1.3f) - curveToRelative(0.0f, 0.83f, -0.27f, 1.53f, -0.81f, 2.02f) - curveToRelative(-0.53f, 0.46f, -1.17f, 0.61f, -1.72f, 0.61f) - curveToRelative(-0.5f, 0.0f, -1.03f, -0.09f, -1.51f, -0.4f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -0.98f, -1.4f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.91f, -0.59f) - curveToRelative(0.08f, 0.26f, 0.16f, 0.3f, 0.18f, 0.32f) - curveToRelative(0.03f, 0.02f, 0.12f, 0.07f, 0.4f, 0.07f) - curveToRelative(0.22f, 0.0f, 0.34f, -0.06f, 0.39f, -0.1f) - curveToRelative(0.03f, -0.03f, 0.14f, -0.14f, 0.14f, -0.54f) - curveToRelative(0.0f, -0.12f, -0.03f, -0.16f, -0.03f, -0.17f) - curveToRelative(0.0f, 0.0f, -0.03f, -0.04f, -0.1f, -0.07f) - arcToRelative(1.6f, 1.6f, 0.0f, false, false, -0.66f, -0.12f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - curveToRelative(0.28f, 0.0f, 0.45f, -0.05f, 0.54f, -0.09f) - arcToRelative(0.35f, 0.35f, 0.0f, false, false, 0.14f, -0.1f) - curveToRelative(0.07f, -0.09f, 0.11f, -0.24f, 0.11f, -0.45f) - arcToRelative(0.36f, 0.36f, 0.0f, false, false, -0.1f, -0.21f) - curveToRelative(-0.07f, -0.07f, -0.19f, -0.15f, -0.43f, -0.15f) - curveToRelative(-0.28f, 0.0f, -0.39f, 0.08f, -0.43f, 0.13f) - close() - moveTo(7.81f, 17.63f) - curveToRelative(0.0f, -0.15f, 0.07f, -0.33f, 0.18f, -0.46f) - curveToRelative(0.1f, -0.12f, 0.23f, -0.17f, 0.34f, -0.17f) - curveToRelative(0.23f, 0.0f, 0.4f, 0.11f, 0.48f, 0.24f) - curveToRelative(0.06f, 0.1f, 0.14f, 0.32f, -0.09f, 0.73f) - curveToRelative(-0.1f, 0.19f, -0.27f, 0.37f, -0.52f, 0.58f) - lineToRelative(-0.42f, 0.32f) - lineToRelative(-0.06f, 0.05f) - curveToRelative(-0.13f, 0.1f, -0.28f, 0.2f, -0.42f, 0.32f) - curveToRelative(-0.69f, 0.54f, -1.49f, 1.35f, -1.49f, 2.76f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - lineTo(9.83f, 23.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(8.31f, 21.0f) - lineToRelative(0.23f, -0.2f) - lineToRelative(0.37f, -0.27f) - lineToRelative(0.07f, -0.06f) - curveToRelative(0.16f, -0.11f, 0.33f, -0.24f, 0.5f, -0.39f) - curveToRelative(0.34f, -0.28f, 0.72f, -0.65f, 1.0f, -1.14f) - curveToRelative(0.52f, -0.95f, 0.52f, -1.96f, 0.03f, -2.75f) - arcTo(2.56f, 2.56f, 0.0f, false, false, 8.33f, 15.0f) - curveToRelative(-1.55f, 0.0f, -2.52f, 1.4f, -2.52f, 2.64f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(2.55f, 19.02f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.13f, -1.66f) - arcToRelative(2.97f, 2.97f, 0.0f, false, false, 1.15f, -1.56f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.98f, 0.2f) - verticalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-2.98f) - close() - } - } - return _textWordCount!! - } - -private var _textWordCount: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextWrap.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextWrap.kt deleted file mode 100644 index c535aa78..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextWrap.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextWrap: ImageVector - get() { - if (_textWrap != null) { - return _textWrap!! - } - _textWrap = fluentIcon(name = "Filled.TextWrap") { - fluentPath { - moveTo(2.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(3.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(3.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(3.0f, 17.0f) - close() - moveTo(15.41f, 17.0f) - lineTo(19.0f, 17.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) - lineTo(3.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(16.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, 8.0f) - horizontalLineToRelative(-3.59f) - lineToRelative(0.3f, 0.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 1.4f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) - lineToRelative(2.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 1.4f) - lineToRelative(-0.3f, 0.3f) - close() - } - } - return _textWrap!! - } - -private var _textWrap: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextWrapOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextWrapOff.kt deleted file mode 100644 index eb91a985..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextWrapOff.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextWrapOff: ImageVector - get() { - if (_textWrapOff != null) { - return _textWrapOff!! - } - _textWrapOff = fluentIcon(name = "Filled.TextWrapOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(3.94f, 5.0f) - lineTo(3.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(2.94f) - lineToRelative(4.0f, 4.0f) - lineTo(3.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(8.94f) - lineToRelative(2.32f, 2.32f) - lineToRelative(-1.97f, 1.97f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.42f) - lineToRelative(2.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, -1.42f) - lineToRelative(-0.3f, -0.29f) - horizontalLineToRelative(2.53f) - lineToRelative(2.78f, 2.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(14.18f, 11.0f) - lineTo(19.0f, 11.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 2.39f, 7.2f) - lineToRelative(-1.45f, -1.44f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 19.0f, 13.0f) - horizontalLineToRelative(-2.82f) - lineToRelative(-2.0f, -2.0f) - close() - moveTo(10.18f, 7.0f) - lineTo(8.18f, 5.0f) - lineTo(21.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(10.18f, 7.0f) - close() - moveTo(2.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(3.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - } - } - return _textWrapOff!! - } - -private var _textWrapOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Textbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Textbox.kt deleted file mode 100644 index 8224b657..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Textbox.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Textbox: ImageVector - get() { - if (_textbox != null) { - return _textbox!! - } - _textbox = fluentIcon(name = "Filled.Textbox") { - fluentPath { - moveTo(21.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) - lineTo(5.75f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) - lineTo(21.0f, 5.75f) - close() - moveTo(14.25f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-7.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(7.6f) - close() - moveTo(6.75f, 15.5f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(17.25f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(10.6f) - close() - } - } - return _textbox!! - } - -private var _textbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextboxAlignBottom.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextboxAlignBottom.kt deleted file mode 100644 index 92cde763..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextboxAlignBottom.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextboxAlignBottom: ImageVector - get() { - if (_textboxAlignBottom != null) { - return _textboxAlignBottom!! - } - _textboxAlignBottom = fluentIcon(name = "Filled.TextboxAlignBottom") { - fluentPath { - moveTo(18.25f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) - lineTo(5.75f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(12.5f) - close() - moveTo(6.75f, 13.5f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(10.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - lineTo(6.75f, 13.5f) - close() - moveTo(17.25f, 16.5f) - lineTo(6.65f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(10.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - } - } - return _textboxAlignBottom!! - } - -private var _textboxAlignBottom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextboxAlignBottomRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextboxAlignBottomRotate90.kt deleted file mode 100644 index e31435b4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextboxAlignBottomRotate90.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextboxAlignBottomRotate90: ImageVector - get() { - if (_textboxAlignBottomRotate90 != null) { - return _textboxAlignBottomRotate90!! - } - _textboxAlignBottomRotate90 = fluentIcon(name = "Filled.TextboxAlignBottomRotate90") { - fluentPath { - moveTo(21.0f, 18.25f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) - lineTo(5.75f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(12.5f) - close() - moveTo(10.5f, 6.75f) - verticalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - verticalLineToRelative(10.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - lineTo(10.5f, 6.75f) - close() - moveTo(7.5f, 17.25f) - lineTo(7.5f, 6.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - verticalLineToRelative(10.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - close() - } - } - return _textboxAlignBottomRotate90!! - } - -private var _textboxAlignBottomRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextboxAlignCenter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextboxAlignCenter.kt deleted file mode 100644 index e5ccf1ec..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextboxAlignCenter.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextboxAlignCenter: ImageVector - get() { - if (_textboxAlignCenter != null) { - return _textboxAlignCenter!! - } - _textboxAlignCenter = fluentIcon(name = "Filled.TextboxAlignCenter") { - fluentPath { - moveTo(18.25f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) - lineTo(5.75f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(12.5f) - close() - moveTo(7.0f, 10.0f) - horizontalLineToRelative(-0.14f) - curveToRelative(-0.48f, 0.06f, -0.86f, 0.37f, -0.86f, 0.75f) - curveToRelative(0.0f, 0.41f, 0.45f, 0.75f, 1.0f, 0.75f) - horizontalLineToRelative(10.14f) - curveToRelative(0.48f, -0.06f, 0.86f, -0.37f, 0.86f, -0.75f) - curveToRelative(0.0f, -0.41f, -0.45f, -0.75f, -1.0f, -0.75f) - lineTo(7.0f, 10.0f) - close() - moveTo(15.33f, 13.0f) - lineTo(8.57f, 13.0f) - curveToRelative(-0.32f, 0.06f, -0.57f, 0.37f, -0.57f, 0.75f) - curveToRelative(0.0f, 0.41f, 0.3f, 0.75f, 0.67f, 0.75f) - horizontalLineToRelative(6.76f) - curveToRelative(0.32f, -0.06f, 0.57f, -0.37f, 0.57f, -0.75f) - curveToRelative(0.0f, -0.41f, -0.3f, -0.75f, -0.67f, -0.75f) - close() - } - } - return _textboxAlignCenter!! - } - -private var _textboxAlignCenter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextboxAlignMiddle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextboxAlignMiddle.kt deleted file mode 100644 index 5547332e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextboxAlignMiddle.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextboxAlignMiddle: ImageVector - get() { - if (_textboxAlignMiddle != null) { - return _textboxAlignMiddle!! - } - _textboxAlignMiddle = fluentIcon(name = "Filled.TextboxAlignMiddle") { - fluentPath { - moveTo(18.25f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) - lineTo(5.75f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(12.5f) - close() - moveTo(7.0f, 10.0f) - horizontalLineToRelative(-0.14f) - curveToRelative(-0.48f, 0.06f, -0.86f, 0.37f, -0.86f, 0.75f) - curveToRelative(0.0f, 0.41f, 0.45f, 0.75f, 1.0f, 0.75f) - horizontalLineToRelative(10.14f) - curveToRelative(0.48f, -0.06f, 0.86f, -0.37f, 0.86f, -0.75f) - curveToRelative(0.0f, -0.41f, -0.45f, -0.75f, -1.0f, -0.75f) - lineTo(7.0f, 10.0f) - close() - moveTo(17.0f, 13.0f) - lineTo(6.86f, 13.0f) - curveToRelative(-0.48f, 0.06f, -0.86f, 0.37f, -0.86f, 0.75f) - curveToRelative(0.0f, 0.41f, 0.45f, 0.75f, 1.0f, 0.75f) - horizontalLineToRelative(10.14f) - curveToRelative(0.48f, -0.06f, 0.86f, -0.37f, 0.86f, -0.75f) - curveToRelative(0.0f, -0.41f, -0.45f, -0.75f, -1.0f, -0.75f) - close() - } - } - return _textboxAlignMiddle!! - } - -private var _textboxAlignMiddle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextboxAlignMiddleRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextboxAlignMiddleRotate90.kt deleted file mode 100644 index b7f57127..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextboxAlignMiddleRotate90.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextboxAlignMiddleRotate90: ImageVector - get() { - if (_textboxAlignMiddleRotate90 != null) { - return _textboxAlignMiddleRotate90!! - } - _textboxAlignMiddleRotate90 = fluentIcon(name = "Filled.TextboxAlignMiddleRotate90") { - fluentPath { - moveTo(21.0f, 18.25f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) - lineTo(5.75f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(12.5f) - close() - moveTo(14.0f, 7.0f) - verticalLineToRelative(-0.14f) - curveToRelative(-0.06f, -0.48f, -0.37f, -0.86f, -0.75f, -0.86f) - curveToRelative(-0.41f, 0.0f, -0.75f, 0.45f, -0.75f, 1.0f) - verticalLineToRelative(10.14f) - curveToRelative(0.06f, 0.48f, 0.37f, 0.86f, 0.75f, 0.86f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.45f, 0.75f, -1.0f) - lineTo(14.0f, 7.0f) - close() - moveTo(11.0f, 17.0f) - lineTo(11.0f, 6.86f) - curveToRelative(-0.06f, -0.48f, -0.37f, -0.86f, -0.75f, -0.86f) - curveToRelative(-0.41f, 0.0f, -0.75f, 0.45f, -0.75f, 1.0f) - verticalLineToRelative(10.14f) - curveToRelative(0.06f, 0.48f, 0.37f, 0.86f, 0.75f, 0.86f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.45f, 0.75f, -1.0f) - close() - } - } - return _textboxAlignMiddleRotate90!! - } - -private var _textboxAlignMiddleRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextboxAlignTop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextboxAlignTop.kt deleted file mode 100644 index e4576053..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextboxAlignTop.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextboxAlignTop: ImageVector - get() { - if (_textboxAlignTop != null) { - return _textboxAlignTop!! - } - _textboxAlignTop = fluentIcon(name = "Filled.TextboxAlignTop") { - fluentPath { - moveTo(18.25f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) - lineTo(5.75f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(12.5f) - close() - moveTo(7.0f, 7.48f) - lineToRelative(-0.14f, 0.01f) - curveToRelative(-0.48f, 0.05f, -0.86f, 0.36f, -0.86f, 0.74f) - curveToRelative(0.0f, 0.42f, 0.45f, 0.75f, 1.0f, 0.75f) - horizontalLineToRelative(10.14f) - curveToRelative(0.48f, -0.05f, 0.86f, -0.37f, 0.86f, -0.75f) - curveToRelative(0.0f, -0.41f, -0.45f, -0.75f, -1.0f, -0.75f) - lineTo(7.0f, 7.48f) - close() - moveTo(17.0f, 10.48f) - lineTo(7.0f, 10.48f) - lineToRelative(-0.14f, 0.01f) - curveToRelative(-0.48f, 0.05f, -0.86f, 0.36f, -0.86f, 0.74f) - curveToRelative(0.0f, 0.42f, 0.45f, 0.75f, 1.0f, 0.75f) - horizontalLineToRelative(10.14f) - curveToRelative(0.48f, -0.05f, 0.86f, -0.37f, 0.86f, -0.75f) - curveToRelative(0.0f, -0.41f, -0.45f, -0.75f, -1.0f, -0.75f) - close() - } - } - return _textboxAlignTop!! - } - -private var _textboxAlignTop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextboxAlignTopRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextboxAlignTopRotate90.kt deleted file mode 100644 index d92f6839..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextboxAlignTopRotate90.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextboxAlignTopRotate90: ImageVector - get() { - if (_textboxAlignTopRotate90 != null) { - return _textboxAlignTopRotate90!! - } - _textboxAlignTopRotate90 = fluentIcon(name = "Filled.TextboxAlignTopRotate90") { - fluentPath { - moveTo(21.0f, 18.25f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) - lineTo(5.75f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(12.5f) - close() - moveTo(16.52f, 7.0f) - lineToRelative(-0.01f, -0.14f) - curveToRelative(-0.05f, -0.48f, -0.36f, -0.86f, -0.74f, -0.86f) - curveToRelative(-0.42f, 0.0f, -0.75f, 0.45f, -0.75f, 1.0f) - verticalLineToRelative(10.14f) - curveToRelative(0.05f, 0.48f, 0.37f, 0.86f, 0.75f, 0.86f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.45f, 0.75f, -1.0f) - lineTo(16.52f, 7.0f) - close() - moveTo(13.52f, 17.0f) - lineTo(13.52f, 7.0f) - lineToRelative(-0.01f, -0.14f) - curveToRelative(-0.05f, -0.48f, -0.36f, -0.86f, -0.74f, -0.86f) - curveToRelative(-0.42f, 0.0f, -0.75f, 0.45f, -0.75f, 1.0f) - verticalLineToRelative(10.14f) - curveToRelative(0.05f, 0.48f, 0.37f, 0.86f, 0.75f, 0.86f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.45f, 0.75f, -1.0f) - close() - } - } - return _textboxAlignTopRotate90!! - } - -private var _textboxAlignTopRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextboxMore.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextboxMore.kt deleted file mode 100644 index 5eaaa3b3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextboxMore.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextboxMore: ImageVector - get() { - if (_textboxMore != null) { - return _textboxMore!! - } - _textboxMore = fluentIcon(name = "Filled.TextboxMore") { - fluentPath { - moveTo(18.25f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(12.3f) - arcToRelative(2.51f, 2.51f, 0.0f, false, false, -2.94f, 1.9f) - curveToRelative(0.0f, 0.03f, -0.03f, 0.05f, -0.06f, 0.05f) - arcToRelative(0.06f, 0.06f, 0.0f, false, true, -0.06f, -0.05f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.88f, 0.0f) - curveToRelative(0.0f, 0.03f, -0.03f, 0.05f, -0.06f, 0.05f) - arcToRelative(0.06f, 0.06f, 0.0f, false, true, -0.06f, -0.05f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 8.05f, 21.0f) - horizontalLineToRelative(-2.3f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(12.5f) - close() - moveTo(15.0f, 12.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-7.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(7.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(17.25f, 15.5f) - lineTo(6.65f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(10.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(18.0f, 8.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(6.65f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(10.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(12.0f, 20.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - moveTo(15.5f, 22.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - close() - moveTo(20.5f, 22.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - close() - } - } - return _textboxMore!! - } - -private var _textboxMore: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextboxRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextboxRotate90.kt deleted file mode 100644 index 8e003f05..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextboxRotate90.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TextboxRotate90: ImageVector - get() { - if (_textboxRotate90 != null) { - return _textboxRotate90!! - } - _textboxRotate90 = fluentIcon(name = "Filled.TextboxRotate90") { - fluentPath { - moveTo(18.25f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) - lineTo(21.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) - lineTo(5.75f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) - horizontalLineToRelative(12.5f) - close() - moveTo(12.5f, 14.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-7.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(7.6f) - close() - moveTo(8.5f, 6.75f) - verticalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(7.0f, 6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.1f) - close() - moveTo(16.5f, 17.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(15.0f, 6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(10.6f) - close() - } - } - return _textboxRotate90!! - } - -private var _textboxRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Thinking.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Thinking.kt deleted file mode 100644 index 81b820e6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Thinking.kt +++ /dev/null @@ -1,39 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Thinking: ImageVector - get() { - if (_thinking != null) { - return _thinking!! - } - _thinking = fluentIcon(name = "Filled.Thinking") { - fluentPath { - moveTo(4.0f, 18.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) - close() - moveTo(9.5f, 15.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(5.41f, 5.41f, 0.0f, false, true, 5.33f, 4.47f) - horizontalLineToRelative(0.08f) - arcToRelative(3.76f, 3.76f, 0.0f, true, true, 0.0f, 7.53f) - lineTo(6.6f, 14.0f) - arcToRelative(3.76f, 3.76f, 0.0f, true, true, 0.0f, -7.53f) - horizontalLineToRelative(0.08f) - arcTo(5.41f, 5.41f, 0.0f, false, true, 12.0f, 2.0f) - close() - } - } - return _thinking!! - } - -private var _thinking: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ThumbDislike.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ThumbDislike.kt deleted file mode 100644 index b9e29d1d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ThumbDislike.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ThumbDislike: ImageVector - get() { - if (_thumbDislike != null) { - return _thumbDislike!! - } - _thumbDislike = fluentIcon(name = "Filled.ThumbDislike") { - fluentPath { - moveTo(15.06f, 14.18f) - curveToRelative(0.46f, 1.43f, 0.69f, 2.68f, 0.69f, 3.76f) - curveToRelative(0.0f, 2.4f, -0.94f, 4.24f, -2.5f, 4.24f) - curveToRelative(-0.8f, 0.0f, -1.08f, -0.45f, -1.38f, -1.54f) - lineToRelative(-0.27f, -1.02f) - arcToRelative(264.6f, 264.6f, 0.0f, false, false, -0.56f, -1.9f) - lineToRelative(-2.87f, -4.49f) - arcToRelative(5.88f, 5.88f, 0.0f, false, false, -2.85f, -2.32f) - lineToRelative(-1.26f, -0.48f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.09f, -1.97f) - lineToRelative(0.69f, -3.54f) - curveToRelative(0.16f, -0.86f, 0.82f, -1.55f, 1.67f, -1.76f) - lineToRelative(8.25f, -2.02f) - arcToRelative(4.75f, 4.75f, 0.0f, false, true, 5.73f, 3.44f) - lineToRelative(1.58f, 6.17f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.67f, 3.43f) - horizontalLineToRelative(-3.16f) - close() - } - } - return _thumbDislike!! - } - -private var _thumbDislike: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ThumbLike.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ThumbLike.kt deleted file mode 100644 index 3cee8778..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ThumbLike.kt +++ /dev/null @@ -1,39 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ThumbLike: ImageVector - get() { - if (_thumbLike != null) { - return _thumbLike!! - } - _thumbLike = fluentIcon(name = "Filled.ThumbLike") { - fluentPath { - moveTo(15.06f, 9.0f) - curveToRelative(0.46f, -1.42f, 0.69f, -2.67f, 0.69f, -3.75f) - curveToRelative(0.0f, -2.4f, -0.94f, -4.25f, -2.5f, -4.25f) - curveToRelative(-0.85f, 0.0f, -1.11f, 0.5f, -1.44f, 1.75f) - arcToRelative(64.9f, 64.9f, 0.0f, false, true, -0.77f, 2.72f) - lineTo(8.17f, 9.95f) - arcToRelative(5.88f, 5.88f, 0.0f, false, true, -2.85f, 2.33f) - lineToRelative(-1.26f, 0.48f) - curveToRelative(-0.8f, 0.3f, -1.25f, 1.13f, -1.09f, 1.97f) - lineToRelative(0.69f, 3.54f) - curveToRelative(0.16f, 0.86f, 0.82f, 1.54f, 1.67f, 1.75f) - lineToRelative(8.25f, 2.03f) - arcToRelative(4.75f, 4.75f, 0.0f, false, false, 5.73f, -3.44f) - lineToRelative(1.58f, -6.18f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.22f, 9.0f) - horizontalLineToRelative(-3.16f) - close() - } - } - return _thumbLike!! - } - -private var _thumbLike: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TicketDiagonal.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TicketDiagonal.kt deleted file mode 100644 index 20813e79..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TicketDiagonal.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TicketDiagonal: ImageVector - get() { - if (_ticketDiagonal != null) { - return _ticketDiagonal!! - } - _ticketDiagonal = fluentIcon(name = "Filled.TicketDiagonal") { - fluentPath { - moveTo(15.6f, 2.53f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.2f, 0.0f) - lineToRelative(-9.87f, 9.88f) - curveToRelative(-0.88f, 0.88f, -0.88f, 2.3f, 0.0f, 3.18f) - lineToRelative(1.17f, 1.17f) - curveToRelative(0.51f, 0.51f, 1.23f, 0.42f, 1.66f, 0.16f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 1.71f, 1.71f) - curveToRelative(-0.25f, 0.44f, -0.34f, 1.16f, 0.17f, 1.67f) - lineToRelative(1.17f, 1.17f) - curveToRelative(0.88f, 0.88f, 2.3f, 0.88f, 3.18f, 0.0f) - lineToRelative(9.88f, -9.88f) - curveToRelative(0.88f, -0.88f, 0.88f, -2.3f, 0.0f, -3.18f) - lineTo(20.3f, 7.24f) - curveToRelative(-0.51f, -0.51f, -1.23f, -0.42f, -1.66f, -0.16f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.71f, -1.71f) - curveToRelative(0.25f, -0.44f, 0.34f, -1.16f, -0.17f, -1.67f) - lineTo(15.6f, 2.53f) - close() - } - } - return _ticketDiagonal!! - } - -private var _ticketDiagonal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TicketHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TicketHorizontal.kt deleted file mode 100644 index ca82bc45..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TicketHorizontal.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TicketHorizontal: ImageVector - get() { - if (_ticketHorizontal != null) { - return _ticketHorizontal!! - } - _ticketHorizontal = fluentIcon(name = "Filled.TicketHorizontal") { - fluentPath { - moveTo(20.75f, 5.0f) - curveToRelative(0.7f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(2.26f) - curveToRelative(0.0f, 0.4f, -0.3f, 0.72f, -0.7f, 0.75f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 0.0f, 5.48f) - curveToRelative(0.4f, 0.03f, 0.7f, 0.36f, 0.7f, 0.75f) - verticalLineToRelative(2.26f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineTo(3.25f) - curveTo(2.56f, 19.0f, 2.0f, 18.44f, 2.0f, 17.75f) - verticalLineToRelative(-2.26f) - curveToRelative(0.0f, -0.4f, 0.3f, -0.72f, 0.7f, -0.75f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 0.0f, -5.48f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, -0.75f) - verticalLineTo(6.25f) - curveTo(2.0f, 5.56f, 2.56f, 5.0f, 3.25f, 5.0f) - horizontalLineToRelative(17.5f) - close() - } - } - return _ticketHorizontal!! - } - -private var _ticketHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TimeAndWeather.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TimeAndWeather.kt deleted file mode 100644 index c56618aa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TimeAndWeather.kt +++ /dev/null @@ -1,96 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TimeAndWeather: ImageVector - get() { - if (_timeAndWeather != null) { - return _timeAndWeather!! - } - _timeAndWeather = fluentIcon(name = "Filled.TimeAndWeather") { - fluentPath { - moveTo(12.0f, 18.53f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.99f, 0.89f) - verticalLineToRelative(1.57f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.99f, 0.11f) - verticalLineToRelative(-1.57f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(18.03f, 16.6f) - lineTo(19.06f, 17.63f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.41f, 1.41f) - lineToRelative(-1.03f, -1.03f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, -1.41f) - close() - moveTo(7.37f, 16.6f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.41f) - lineToRelative(-1.03f, 1.03f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.41f, -1.41f) - lineToRelative(1.03f, -1.03f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, 0.0f) - close() - moveTo(12.01f, 6.47f) - arcToRelative(5.52f, 5.52f, 0.0f, true, true, 0.0f, 11.05f) - arcToRelative(5.52f, 5.52f, 0.0f, false, true, 0.0f, -11.05f) - close() - moveTo(11.25f, 9.0f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(3.1f) - curveToRelative(0.05f, 0.34f, 0.32f, 0.6f, 0.65f, 0.65f) - horizontalLineToRelative(2.2f) - curveToRelative(0.33f, -0.05f, 0.6f, -0.31f, 0.64f, -0.64f) - lineToRelative(0.01f, -0.1f) - verticalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, -0.65f) - lineTo(12.0f, 12.01f) - lineTo(12.0f, 9.64f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) - close() - moveTo(20.98f, 11.02f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.11f, 2.0f) - horizontalLineToRelative(-1.57f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.11f, -2.0f) - horizontalLineToRelative(1.57f) - close() - moveTo(4.48f, 10.99f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) - lineTo(3.02f, 12.99f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.11f, -2.0f) - horizontalLineToRelative(1.57f) - close() - moveTo(6.25f, 4.87f) - lineTo(6.35f, 4.96f) - lineTo(7.37f, 5.99f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 1.5f) - lineToRelative(-0.09f, -0.09f) - lineToRelative(-1.03f, -1.03f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -1.5f) - close() - moveTo(19.06f, 4.96f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.09f, 1.32f) - lineToRelative(-0.09f, 0.1f) - lineToRelative(-1.03f, 1.02f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.5f, -1.32f) - lineToRelative(0.09f, -0.1f) - lineToRelative(1.03f, -1.02f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, 0.0f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.89f) - verticalLineToRelative(1.57f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) - lineTo(11.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - } - } - return _timeAndWeather!! - } - -private var _timeAndWeather: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TimePicker.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TimePicker.kt deleted file mode 100644 index f114aec2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TimePicker.kt +++ /dev/null @@ -1,100 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TimePicker: ImageVector - get() { - if (_timePicker != null) { - return _timePicker!! - } - _timePicker = fluentIcon(name = "Filled.TimePicker") { - fluentPath { - moveTo(12.62f, 2.22f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.24f, 0.0f) - lineToRelative(-3.75f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.24f, 1.56f) - lineTo(12.0f, 4.28f) - lineToRelative(3.13f, 2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.24f, -1.56f) - lineToRelative(-3.75f, -3.0f) - close() - moveTo(2.75f, 9.0f) - curveTo(1.51f, 9.0f, 0.5f, 10.0f, 0.5f, 11.25f) - verticalLineToRelative(1.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) - verticalLineToRelative(-1.5f) - curveTo(5.0f, 10.01f, 4.0f, 9.0f, 2.75f, 9.0f) - close() - moveTo(2.0f, 11.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.5f) - close() - moveTo(8.25f, 9.0f) - curveTo(7.01f, 9.0f, 6.0f, 10.0f, 6.0f, 11.25f) - verticalLineToRelative(1.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - close() - moveTo(7.5f, 11.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.5f) - close() - moveTo(14.0f, 11.25f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.5f, 0.0f) - verticalLineToRelative(1.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) - verticalLineToRelative(-1.5f) - close() - moveTo(16.25f, 10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(21.75f, 9.0f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(1.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) - verticalLineToRelative(-1.5f) - curveTo(24.0f, 10.01f, 23.0f, 9.0f, 21.75f, 9.0f) - close() - moveTo(21.0f, 11.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.5f) - close() - moveTo(13.0f, 10.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(12.25f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(12.63f, 22.03f) - lineTo(16.63f, 18.78f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.26f, -1.56f) - lineTo(12.0f, 19.96f) - lineToRelative(-3.37f, -2.74f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.26f, 1.56f) - lineToRelative(4.0f, 3.25f) - curveToRelative(0.37f, 0.3f, 0.9f, 0.3f, 1.26f, 0.0f) - close() - } - } - return _timePicker!! - } - -private var _timePicker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Timeline.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Timeline.kt deleted file mode 100644 index 5509d153..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Timeline.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Timeline: ImageVector - get() { - if (_timeline != null) { - return _timeline!! - } - _timeline = fluentIcon(name = "Filled.Timeline") { - fluentPath { - moveTo(15.25f, 13.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(3.75f, 21.0f) - curveTo(2.78f, 21.0f, 2.0f, 20.22f, 2.0f, 19.25f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - close() - moveTo(21.0f, 14.9f) - verticalLineToRelative(5.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(19.5f, 14.91f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 1.5f, -0.01f) - close() - moveTo(20.25f, 10.1f) - arcToRelative(1.9f, 1.9f, 0.0f, true, true, 0.0f, 3.8f) - arcToRelative(1.9f, 1.9f, 0.0f, false, true, 0.0f, -3.8f) - close() - moveTo(15.25f, 3.0f) - curveTo(16.2f, 3.0f, 17.0f, 3.78f, 17.0f, 4.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) - lineTo(3.75f, 11.0f) - curveTo(2.78f, 11.0f, 2.0f, 10.22f, 2.0f, 9.25f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.75f) - horizontalLineToRelative(11.65f) - close() - moveTo(20.25f, 3.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - lineTo(21.0f, 9.1f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -1.5f, -0.01f) - lineTo(19.5f, 3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _timeline!! - } - -private var _timeline: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Timer.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Timer.kt deleted file mode 100644 index 4101d149..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Timer.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Timer: ImageVector - get() { - if (_timer != null) { - return _timer!! - } - _timer = fluentIcon(name = "Filled.Timer") { - fluentPath { - moveTo(12.0f, 5.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 0.0f, 17.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, 0.0f, -17.0f) - close() - moveTo(12.0f, 8.0f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(12.75f, 8.65f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 12.0f, 8.0f) - close() - moveTo(19.17f, 5.12f) - lineTo(19.25f, 5.18f) - lineTo(20.4f, 6.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.9f, 1.2f) - lineToRelative(-0.08f, -0.06f) - lineToRelative(-1.15f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.9f, -1.2f) - close() - moveTo(14.25f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(4.6f) - close() - } - } - return _timer!! - } - -private var _timer: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Timer10.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Timer10.kt deleted file mode 100644 index e2b676b7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Timer10.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Timer10: ImageVector - get() { - if (_timer10 != null) { - return _timer10!! - } - _timer10 = fluentIcon(name = "Filled.Timer10") { - fluentPath { - moveTo(12.0f, 5.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, 8.38f, 7.05f) - arcToRelative(4.28f, 4.28f, 0.0f, false, false, -4.38f, 2.2f) - verticalLineToRelative(-0.5f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.3f, -1.66f) - lineToRelative(-0.95f, 0.32f) - lineTo(12.75f, 8.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - lineTo(11.25f, 13.34f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 1.25f, 2.64f) - verticalLineToRelative(6.0f) - curveToRelative(-0.17f, 0.02f, -0.33f, 0.02f, -0.5f, 0.02f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, 0.0f, -17.0f) - close() - moveTo(19.17f, 5.12f) - lineTo(19.25f, 5.18f) - lineTo(20.4f, 6.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.9f, 1.2f) - lineToRelative(-0.08f, -0.06f) - lineToRelative(-1.15f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.9f, -1.2f) - close() - moveTo(14.25f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(4.6f) - close() - moveTo(14.69f, 13.14f) - curveToRelative(0.2f, 0.14f, 0.31f, 0.37f, 0.31f, 0.61f) - verticalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-7.46f) - lineToRelative(-0.51f, 0.17f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.48f, -1.42f) - lineToRelative(1.5f, -0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.68f, 0.1f) - close() - moveTo(16.5f, 16.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 6.5f, 0.0f) - verticalLineToRelative(3.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.5f, 0.0f) - verticalLineToRelative(-3.5f) - close() - moveTo(19.75f, 14.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(3.5f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, 3.5f, 0.0f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - } - } - return _timer10!! - } - -private var _timer10: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Timer2.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Timer2.kt deleted file mode 100644 index cbe9795d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Timer2.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Timer2: ImageVector - get() { - if (_timer2 != null) { - return _timer2!! - } - _timer2 = fluentIcon(name = "Filled.Timer2") { - fluentPath { - moveTo(20.4f, 12.16f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, -5.4f, 9.3f) - verticalLineToRelative(-0.21f) - curveToRelative(0.0f, -1.31f, 0.6f, -2.48f, 1.53f, -3.26f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 15.0f, 16.25f) - arcToRelative(4.25f, 4.25f, 0.0f, false, true, 5.4f, -4.1f) - close() - moveTo(11.26f, 8.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.48f, 0.0f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(11.25f, 8.65f) - close() - moveTo(19.26f, 5.18f) - lineTo(19.17f, 5.12f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 1.2f) - lineToRelative(1.15f, 1.0f) - lineToRelative(0.08f, 0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.9f, -1.2f) - lineToRelative(-1.15f, -1.0f) - close() - moveTo(15.0f, 3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(19.25f, 13.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 16.0f, 16.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - arcTo(1.75f, 1.75f, 0.0f, true, true, 19.25f, 18.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 16.0f, 21.25f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(17.5f, 21.5f) - verticalLineToRelative(-0.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 0.0f, -6.5f) - close() - } - } - return _timer2!! - } - -private var _timer2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Timer3.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Timer3.kt deleted file mode 100644 index 1cb1899d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Timer3.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Timer3: ImageVector - get() { - if (_timer3 != null) { - return _timer3!! - } - _timer3 = fluentIcon(name = "Filled.Timer3") { - fluentPath { - moveTo(15.45f, 15.92f) - curveToRelative(0.53f, 0.6f, 1.37f, 0.74f, 2.06f, 0.4f) - arcToRelative(2.99f, 2.99f, 0.0f, false, false, 0.0f, 3.35f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.5f, 1.78f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 5.38f, -9.3f) - curveToRelative(-0.37f, -0.1f, -0.76f, -0.15f, -1.14f, -0.15f) - arcToRelative(5.47f, 5.47f, 0.0f, false, false, -3.35f, 1.19f) - arcToRelative(5.53f, 5.53f, 0.0f, false, false, -0.28f, 0.22f) - lineToRelative(-0.02f, 0.02f) - lineToRelative(-0.01f, 0.01f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -0.14f, 2.48f) - close() - moveTo(11.25f, 8.65f) - lineTo(11.25f, 13.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(12.75f, 8.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - close() - moveTo(19.25f, 5.18f) - lineTo(19.17f, 5.12f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 1.2f) - lineToRelative(1.15f, 1.0f) - lineToRelative(0.08f, 0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.9f, -1.2f) - lineToRelative(-1.15f, -1.0f) - close() - moveTo(15.0f, 3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(18.25f, 18.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - curveToRelative(0.53f, 0.0f, 1.06f, -0.18f, 1.44f, -0.47f) - curveToRelative(0.4f, -0.3f, 0.56f, -0.63f, 0.56f, -0.9f) - curveToRelative(0.0f, -0.65f, -0.66f, -1.38f, -1.75f, -1.38f) - curveToRelative(-0.52f, 0.0f, -1.01f, 0.19f, -1.4f, 0.4f) - arcToRelative(4.1f, 4.1f, 0.0f, false, false, -0.6f, 0.4f) - verticalLineToRelative(0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.0f, -1.12f) - lineToRelative(0.02f, -0.02f) - arcToRelative(3.08f, 3.08f, 0.0f, false, true, 0.23f, -0.18f) - curveToRelative(0.15f, -0.1f, 0.36f, -0.25f, 0.62f, -0.4f) - curveToRelative(0.51f, -0.28f, 1.27f, -0.59f, 2.13f, -0.59f) - curveToRelative(1.68f, 0.0f, 3.25f, 1.18f, 3.25f, 2.88f) - curveToRelative(0.0f, 0.89f, -0.52f, 1.62f, -1.16f, 2.1f) - lineToRelative(-0.03f, 0.02f) - lineToRelative(0.03f, 0.02f) - curveToRelative(0.64f, 0.48f, 1.16f, 1.21f, 1.16f, 2.1f) - curveToRelative(0.0f, 1.7f, -1.57f, 2.88f, -3.25f, 2.88f) - curveToRelative(-0.86f, 0.0f, -1.62f, -0.31f, -2.13f, -0.6f) - arcToRelative(5.58f, 5.58f, 0.0f, false, true, -0.85f, -0.57f) - lineToRelative(-0.01f, -0.01f) - lineToRelative(-0.01f, -0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.0f, -1.12f) - lineToRelative(0.02f, 0.02f) - arcToRelative(2.96f, 2.96f, 0.0f, false, false, 0.57f, 0.38f) - curveToRelative(0.4f, 0.22f, 0.9f, 0.41f, 1.41f, 0.41f) - curveToRelative(1.09f, 0.0f, 1.75f, -0.73f, 1.75f, -1.38f) - curveToRelative(0.0f, -0.27f, -0.17f, -0.6f, -0.56f, -0.9f) - arcToRelative(2.48f, 2.48f, 0.0f, false, false, -1.44f, -0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _timer3!! - } - -private var _timer3: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TimerOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TimerOff.kt deleted file mode 100644 index 6ab6bfc2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TimerOff.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TimerOff: ImageVector - get() { - if (_timerOff != null) { - return _timerOff!! - } - _timerOff = fluentIcon(name = "Filled.TimerOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(4.0f, 4.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, 12.01f, 12.01f) - lineToRelative(2.49f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.07f) - lineTo(3.28f, 2.22f) - close() - moveTo(12.62f, 13.68f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.36f, -0.33f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-0.94f) - lineToRelative(1.37f, 1.37f) - close() - moveTo(12.75f, 8.75f) - verticalLineToRelative(0.82f) - lineToRelative(7.13f, 7.13f) - arcTo(8.5f, 8.5f, 0.0f, false, false, 8.8f, 5.62f) - lineToRelative(2.63f, 2.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.3f, 0.4f) - lineToRelative(0.01f, 0.1f) - close() - moveTo(19.17f, 5.12f) - lineTo(19.25f, 5.18f) - lineTo(20.4f, 6.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.9f, 1.2f) - lineToRelative(-0.08f, -0.06f) - lineToRelative(-1.15f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.9f, -1.2f) - close() - moveTo(14.25f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(4.6f) - close() - } - } - return _timerOff!! - } - -private var _timerOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ToggleLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ToggleLeft.kt deleted file mode 100644 index deb951c9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ToggleLeft.kt +++ /dev/null @@ -1,32 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ToggleLeft: ImageVector - get() { - if (_toggleLeft != null) { - return _toggleLeft!! - } - _toggleLeft = fluentIcon(name = "Filled.ToggleLeft") { - fluentPath { - moveTo(17.0f, 7.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, 10.0f) - lineTo(7.0f, 17.0f) - arcTo(5.0f, 5.0f, 0.0f, false, true, 7.0f, 7.0f) - horizontalLineToRelative(10.0f) - close() - moveTo(7.25f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) - close() - } - } - return _toggleLeft!! - } - -private var _toggleLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ToggleMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ToggleMultiple.kt deleted file mode 100644 index 119049b8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ToggleMultiple.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ToggleMultiple: ImageVector - get() { - if (_toggleMultiple != null) { - return _toggleMultiple!! - } - _toggleMultiple = fluentIcon(name = "Filled.ToggleMultiple") { - fluentPath { - moveTo(2.0f, 6.5f) - arcTo(4.5f, 4.5f, 0.0f, false, true, 6.5f, 2.0f) - horizontalLineToRelative(11.0f) - arcToRelative(4.5f, 4.5f, 0.0f, true, true, 0.0f, 9.0f) - horizontalLineToRelative(-11.0f) - arcTo(4.5f, 4.5f, 0.0f, false, true, 2.0f, 6.5f) - close() - moveTo(6.5f, 8.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) - close() - moveTo(6.5f, 13.0f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, 0.0f, 9.0f) - horizontalLineToRelative(11.0f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, 0.0f, -9.0f) - horizontalLineToRelative(-11.0f) - close() - moveTo(19.5f, 17.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - } - } - return _toggleMultiple!! - } - -private var _toggleMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ToggleRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ToggleRight.kt deleted file mode 100644 index c3629735..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ToggleRight.kt +++ /dev/null @@ -1,32 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ToggleRight: ImageVector - get() { - if (_toggleRight != null) { - return _toggleRight!! - } - _toggleRight = fluentIcon(name = "Filled.ToggleRight") { - fluentPath { - moveTo(7.0f, 7.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 0.0f, 10.0f) - horizontalLineToRelative(10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 0.0f, -10.0f) - lineTo(7.0f, 7.0f) - close() - moveTo(16.75f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, -5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, 5.0f) - close() - } - } - return _toggleRight!! - } - -private var _toggleRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Toolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Toolbox.kt deleted file mode 100644 index 6cf6eafc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Toolbox.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Toolbox: ImageVector - get() { - if (_toolbox != null) { - return _toolbox!! - } - _toolbox = fluentIcon(name = "Filled.Toolbox") { - fluentPath { - moveTo(7.0f, 6.25f) - lineTo(7.0f, 7.0f) - lineTo(4.25f, 7.0f) - curveTo(3.01f, 7.0f, 2.0f, 8.0f, 2.0f, 9.25f) - verticalLineToRelative(2.25f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(8.0f) - verticalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(0.75f) - lineTo(22.0f, 11.5f) - lineTo(22.0f, 9.25f) - curveTo(22.0f, 8.01f, 21.0f, 7.0f, 19.75f, 7.0f) - lineTo(17.0f, 7.0f) - verticalLineToRelative(-0.75f) - curveTo(17.0f, 5.01f, 16.0f, 4.0f, 14.75f, 4.0f) - horizontalLineToRelative(-5.5f) - curveTo(8.01f, 4.0f, 7.0f, 5.01f, 7.0f, 6.25f) - close() - moveTo(9.25f, 5.5f) - horizontalLineToRelative(5.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(15.5f, 7.0f) - horizontalLineToRelative(-7.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(22.0f, 13.0f) - horizontalLineToRelative(-4.5f) - verticalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(16.0f, 13.0f) - lineTo(8.0f, 13.0f) - verticalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(6.5f, 13.0f) - lineTo(2.0f, 13.0f) - verticalLineToRelative(4.75f) - curveTo(2.0f, 18.99f, 3.0f, 20.0f, 4.25f, 20.0f) - horizontalLineToRelative(15.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.01f, 2.25f, -2.25f) - lineTo(22.0f, 13.0f) - close() - } - } - return _toolbox!! - } - -private var _toolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TooltipQuote.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TooltipQuote.kt deleted file mode 100644 index 8fdd6eec..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TooltipQuote.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TooltipQuote: ImageVector - get() { - if (_tooltipQuote != null) { - return _tooltipQuote!! - } - _tooltipQuote = fluentIcon(name = "Filled.TooltipQuote") { - fluentPath { - moveTo(4.25f, 2.0f) - curveTo(3.01f, 2.0f, 2.0f, 3.0f, 2.0f, 4.25f) - verticalLineToRelative(7.5f) - curveTo(2.0f, 12.99f, 3.0f, 14.0f, 4.25f, 14.0f) - horizontalLineToRelative(1.94f) - lineToRelative(1.9f, 3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.32f, 0.0f) - lineToRelative(1.9f, -3.6f) - horizontalLineToRelative(1.94f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-7.5f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-9.0f) - close() - moveTo(5.5f, 6.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - curveToRelative(0.0f, 2.15f, -1.29f, 3.6f, -1.72f, 4.03f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - curveToRelative(0.2f, -0.2f, 0.61f, -0.66f, 0.91f, -1.33f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.64f) - verticalLineToRelative(-1.0f) - close() - moveTo(9.5f, 6.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - curveToRelative(0.0f, 2.15f, -1.29f, 3.6f, -1.72f, 4.03f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - curveToRelative(0.2f, -0.2f, 0.61f, -0.66f, 0.91f, -1.33f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.64f) - verticalLineToRelative(-1.0f) - close() - moveTo(2.75f, 16.5f) - horizontalLineToRelative(3.63f) - lineToRelative(0.79f, 1.5f) - lineTo(2.75f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(21.25f, 18.0f) - lineTo(10.33f, 18.0f) - lineToRelative(0.8f, -1.5f) - horizontalLineToRelative(10.12f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(2.0f, 21.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _tooltipQuote!! - } - -private var _tooltipQuote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TopSpeed.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TopSpeed.kt deleted file mode 100644 index 3e60a346..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TopSpeed.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TopSpeed: ImageVector - get() { - if (_topSpeed != null) { - return _topSpeed!! - } - _topSpeed = fluentIcon(name = "Filled.TopSpeed") { - fluentPath { - moveTo(11.0f, 3.56f) - lineTo(11.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - lineTo(13.0f, 3.56f) - arcTo(8.5f, 8.5f, 0.0f, false, true, 20.44f, 11.0f) - lineTo(19.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(1.44f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, -2.24f, 4.74f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.1f, 1.02f) - arcTo(9.92f, 9.92f, 0.0f, false, false, 22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, -20.0f, 0.0f) - arcToRelative(9.92f, 9.92f, 0.0f, false, false, 2.7f, 6.76f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.1f, -1.02f) - arcTo(8.5f, 8.5f, 0.0f, false, true, 3.56f, 13.0f) - lineTo(5.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(3.56f, 11.0f) - curveToRelative(0.19f, -1.6f, 0.82f, -3.06f, 1.76f, -4.26f) - lineToRelative(0.97f, 0.97f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, -1.42f) - lineToRelative(-0.97f, -0.97f) - arcTo(8.46f, 8.46f, 0.0f, false, true, 11.0f, 3.56f) - close() - moveTo(16.76f, 6.63f) - arcToRelative(0.65f, 0.65f, 0.0f, false, false, -0.8f, 0.02f) - lineToRelative(-0.23f, 0.18f) - arcToRelative(396.1f, 396.1f, 0.0f, false, false, -4.21f, 3.6f) - arcToRelative(37.86f, 37.86f, 0.0f, false, false, -1.1f, 1.05f) - curveToRelative(-0.66f, 0.8f, -0.52f, 1.98f, 0.3f, 2.62f) - curveToRelative(0.83f, 0.64f, 2.03f, 0.5f, 2.68f, -0.3f) - arcToRelative(37.18f, 37.18f, 0.0f, false, false, 0.78f, -1.3f) - arcToRelative(152.48f, 152.48f, 0.0f, false, false, 2.62f, -4.85f) - lineToRelative(0.13f, -0.24f) - arcToRelative(0.61f, 0.61f, 0.0f, false, false, -0.17f, -0.78f) - close() - } - } - return _topSpeed!! - } - -private var _topSpeed: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Translate.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Translate.kt deleted file mode 100644 index e3f37c67..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Translate.kt +++ /dev/null @@ -1,95 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Translate: ImageVector - get() { - if (_translate != null) { - return _translate!! - } - _translate = fluentIcon(name = "Filled.Translate") { - fluentPath { - moveTo(16.95f, 5.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.9f, -0.6f) - curveToRelative(-0.13f, 0.39f, -0.24f, 0.9f, -0.33f, 1.34f) - curveToRelative(-0.56f, 0.01f, -1.12f, 0.0f, -1.65f, -0.04f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -0.14f, 2.0f) - curveToRelative(0.46f, 0.03f, 0.93f, 0.05f, 1.42f, 0.05f) - curveToRelative(-0.11f, 0.6f, -0.19f, 1.17f, -0.24f, 1.7f) - arcToRelative(6.37f, 6.37f, 0.0f, false, false, -2.64f, 2.7f) - curveToRelative(-0.63f, 1.28f, -0.7f, 2.85f, 0.24f, 3.88f) - curveToRelative(0.67f, 0.73f, 1.7f, 0.75f, 2.5f, 0.58f) - curveToRelative(0.32f, -0.06f, 0.65f, -0.17f, 0.98f, -0.32f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.75f, -0.93f) - lineToRelative(-0.04f, -0.11f) - arcToRelative(8.4f, 8.4f, 0.0f, false, false, 2.74f, -4.06f) - curveToRelative(0.28f, 0.25f, 0.5f, 0.55f, 0.65f, 0.86f) - curveToRelative(0.29f, 0.6f, 0.34f, 1.27f, 0.1f, 1.91f) - arcToRelative(3.49f, 3.49f, 0.0f, false, true, -1.84f, 1.85f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.9f, 1.78f) - arcToRelative(5.47f, 5.47f, 0.0f, false, false, 2.82f, -2.94f) - arcToRelative(4.44f, 4.44f, 0.0f, false, false, -0.17f, -3.46f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 20.0f, 9.33f) - lineTo(20.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.97f, -0.23f) - curveToRelative(-0.57f, -0.04f, -1.17f, 0.0f, -1.8f, 0.14f) - curveToRelative(0.05f, -0.3f, 0.1f, -0.63f, 0.17f, -0.97f) - curveToRelative(0.97f, -0.09f, 1.94f, -0.25f, 2.84f, -0.47f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.48f, -1.94f) - curveToRelative(-0.62f, 0.15f, -1.28f, 0.27f, -1.96f, 0.36f) - lineToRelative(0.15f, -0.59f) - close() - moveTo(13.27f, 13.32f) - curveToRelative(0.16f, -0.34f, 0.41f, -0.7f, 0.76f, -1.04f) - arcToRelative(10.8f, 10.8f, 0.0f, false, false, 0.43f, 2.45f) - curveToRelative(-0.24f, 0.11f, -0.47f, 0.18f, -0.67f, 0.23f) - curveToRelative(-0.43f, 0.09f, -0.59f, 0.02f, -0.61f, 0.0f) - curveToRelative(-0.17f, -0.19f, -0.34f, -0.77f, 0.09f, -1.64f) - close() - moveTo(17.77f, 10.76f) - arcToRelative(6.36f, 6.36f, 0.0f, false, true, -1.57f, 2.73f) - arcToRelative(10.3f, 10.3f, 0.0f, false, true, -0.18f, -2.43f) - lineToRelative(0.1f, -0.04f) - lineToRelative(1.64f, -0.26f) - close() - moveTo(16.11f, 11.02f) - lineTo(17.77f, 10.76f) - curveToRelative(-0.5f, -0.03f, -1.05f, 0.05f, -1.66f, 0.26f) - close() - moveTo(7.54f, 6.3f) - arcToRelative(6.34f, 6.34f, 0.0f, false, false, -4.46f, 0.33f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.85f, 1.81f) - arcToRelative(4.34f, 4.34f, 0.0f, false, true, 3.05f, -0.22f) - curveToRelative(0.36f, 0.1f, 0.56f, 0.25f, 0.69f, 0.37f) - curveToRelative(0.12f, 0.12f, 0.2f, 0.27f, 0.25f, 0.45f) - curveToRelative(0.07f, 0.23f, 0.1f, 0.45f, 0.1f, 0.7f) - arcToRelative(6.41f, 6.41f, 0.0f, false, false, -4.82f, 0.52f) - arcToRelative(3.56f, 3.56f, 0.0f, false, false, -1.68f, 3.44f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 2.57f, 3.14f) - arcToRelative(5.6f, 5.6f, 0.0f, false, false, 3.95f, -0.55f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 10.0f, 16.0f) - verticalLineToRelative(-5.7f) - curveToRelative(0.02f, -0.42f, 0.04f, -1.16f, -0.16f, -1.84f) - curveToRelative(-0.13f, -0.44f, -0.36f, -0.9f, -0.75f, -1.29f) - curveToRelative(-0.4f, -0.4f, -0.91f, -0.7f, -1.55f, -0.88f) - close() - moveTo(7.12f, 11.59f) - curveToRelative(0.34f, 0.06f, 0.64f, 0.14f, 0.88f, 0.22f) - lineTo(8.0f, 14.0f) - curveToRelative(-0.22f, 0.15f, -0.53f, 0.34f, -0.9f, 0.52f) - curveToRelative(-0.8f, 0.38f, -1.68f, 0.6f, -2.47f, 0.38f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.12f, -1.38f) - curveToRelative(-0.06f, -0.7f, 0.24f, -1.29f, 0.66f, -1.53f) - arcToRelative(4.42f, 4.42f, 0.0f, false, true, 2.95f, -0.41f) - close() - } - } - return _translate!! - } - -private var _translate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TranslateOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TranslateOff.kt deleted file mode 100644 index 45d71f95..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TranslateOff.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TranslateOff: ImageVector - get() { - if (_translateOff != null) { - return _translateOff!! - } - _translateOff = fluentIcon(name = "Filled.TranslateOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(2.8f, 2.8f) - curveToRelative(-0.85f, 0.1f, -1.52f, 0.34f, -1.94f, 0.54f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.85f, 1.81f) - arcToRelative(4.34f, 4.34f, 0.0f, false, true, 3.32f, -0.12f) - lineToRelative(0.65f, 0.65f) - lineToRelative(0.02f, 0.07f) - curveToRelative(0.07f, 0.23f, 0.1f, 0.45f, 0.1f, 0.7f) - arcToRelative(6.41f, 6.41f, 0.0f, false, false, -4.82f, 0.52f) - arcToRelative(3.56f, 3.56f, 0.0f, false, false, -1.68f, 3.44f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 2.57f, 3.14f) - arcToRelative(5.6f, 5.6f, 0.0f, false, false, 3.95f, -0.55f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 10.0f, 16.0f) - verticalLineToRelative(-4.94f) - lineToRelative(1.44f, 1.44f) - curveToRelative(-0.6f, 1.27f, -0.66f, 2.81f, 0.27f, 3.83f) - curveToRelative(0.67f, 0.73f, 1.7f, 0.75f, 2.5f, 0.58f) - curveToRelative(0.32f, -0.06f, 0.65f, -0.17f, 0.98f, -0.32f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.75f, 0.4f) - lineToRelative(4.78f, 4.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.07f) - lineTo(3.28f, 2.22f) - close() - moveTo(13.88f, 14.94f) - lineTo(13.79f, 14.96f) - curveToRelative(-0.43f, 0.09f, -0.59f, 0.02f, -0.61f, 0.0f) - curveToRelative(-0.12f, -0.13f, -0.23f, -0.43f, -0.16f, -0.88f) - lineToRelative(0.86f, 0.86f) - close() - moveTo(7.12f, 11.58f) - curveToRelative(0.34f, 0.06f, 0.64f, 0.14f, 0.88f, 0.22f) - lineTo(8.0f, 14.0f) - curveToRelative(-0.22f, 0.15f, -0.53f, 0.34f, -0.9f, 0.52f) - curveToRelative(-0.8f, 0.38f, -1.68f, 0.6f, -2.47f, 0.38f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.12f, -1.38f) - curveToRelative(-0.06f, -0.7f, 0.24f, -1.29f, 0.66f, -1.53f) - arcToRelative(4.42f, 4.42f, 0.0f, false, true, 2.95f, -0.41f) - close() - moveTo(20.39f, 14.26f) - curveToRelative(-0.2f, 0.53f, -0.61f, 1.1f, -1.37f, 1.58f) - lineToRelative(1.44f, 1.44f) - arcToRelative(5.08f, 5.08f, 0.0f, false, false, 1.8f, -2.33f) - arcToRelative(4.44f, 4.44f, 0.0f, false, false, -0.16f, -3.46f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 20.0f, 9.33f) - lineTo(20.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.97f, -0.23f) - curveToRelative(-0.57f, -0.04f, -1.17f, 0.0f, -1.8f, 0.14f) - curveToRelative(0.05f, -0.3f, 0.1f, -0.63f, 0.17f, -0.97f) - curveToRelative(0.97f, -0.09f, 1.94f, -0.25f, 2.84f, -0.47f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -0.48f, -1.94f) - curveToRelative(-0.62f, 0.15f, -1.28f, 0.27f, -1.96f, 0.36f) - lineToRelative(0.15f, -0.59f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.9f, -0.6f) - curveToRelative(-0.13f, 0.39f, -0.24f, 0.9f, -0.33f, 1.34f) - curveToRelative(-0.56f, 0.01f, -1.12f, 0.0f, -1.65f, -0.04f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -0.14f, 2.0f) - curveToRelative(0.46f, 0.03f, 0.93f, 0.05f, 1.42f, 0.04f) - curveToRelative(-0.11f, 0.62f, -0.19f, 1.18f, -0.24f, 1.7f) - curveToRelative(-0.26f, 0.15f, -0.5f, 0.3f, -0.72f, 0.47f) - lineToRelative(2.7f, 2.7f) - curveToRelative(-0.07f, -0.5f, -0.1f, -1.1f, -0.08f, -1.85f) - lineToRelative(0.1f, -0.04f) - lineToRelative(1.66f, -0.26f) - arcToRelative(6.35f, 6.35f, 0.0f, false, true, -1.35f, 2.48f) - lineToRelative(1.42f, 1.42f) - arcToRelative(8.37f, 8.37f, 0.0f, false, false, 1.8f, -3.17f) - curveToRelative(0.28f, 0.25f, 0.5f, 0.55f, 0.65f, 0.86f) - curveToRelative(0.29f, 0.6f, 0.34f, 1.27f, 0.1f, 1.91f) - close() - } - } - return _translateOff!! - } - -private var _translateOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Transmission.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Transmission.kt deleted file mode 100644 index 72a27022..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Transmission.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Transmission: ImageVector - get() { - if (_transmission != null) { - return _transmission!! - } - _transmission = fluentIcon(name = "Filled.Transmission") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -0.75f, 5.4f) - verticalLineToRelative(3.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineTo(7.4f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 12.0f, 2.0f) - close() - moveTo(5.5f, 4.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 3.0f, 6.5f) - verticalLineToRelative(12.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 5.0f, 0.0f) - verticalLineTo(15.0f) - horizontalLineToRelative(1.5f) - verticalLineToRelative(3.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 5.0f, 0.0f) - verticalLineTo(15.0f) - horizontalLineTo(19.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - verticalLineTo(6.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) - verticalLineTo(10.0f) - horizontalLineToRelative(-2.25f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(3.75f) - verticalLineToRelative(-5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineTo(13.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-6.0f) - verticalLineToRelative(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-5.0f) - horizontalLineTo(6.5f) - verticalLineToRelative(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(3.75f) - verticalLineTo(10.0f) - horizontalLineTo(8.0f) - verticalLineTo(6.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 5.5f, 4.0f) - close() - } - } - return _transmission!! - } - -private var _transmission: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TrayItemAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TrayItemAdd.kt deleted file mode 100644 index c88e6d11..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TrayItemAdd.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TrayItemAdd: ImageVector - get() { - if (_trayItemAdd != null) { - return _trayItemAdd!! - } - _trayItemAdd = fluentIcon(name = "Filled.TrayItemAdd") { - fluentPath { - moveTo(13.75f, 2.0f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(4.0f) - curveTo(18.44f, 7.0f, 19.0f, 6.44f, 19.0f, 5.75f) - verticalLineToRelative(-2.5f) - curveTo(19.0f, 2.56f, 18.44f, 2.0f, 17.75f, 2.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(16.5f, 9.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(6.69f) - lineToRelative(-1.22f, -1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(2.5f, 2.5f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-1.22f, 1.22f) - lineTo(16.5f, 9.25f) - close() - moveTo(6.25f, 13.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(4.0f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-4.0f) - close() - moveTo(3.5f, 16.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, 2.75f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 18.75f) - verticalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - lineTo(4.75f, 20.0f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - verticalLineToRelative(-2.0f) - close() - } - } - return _trayItemAdd!! - } - -private var _trayItemAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TrayItemRemove.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TrayItemRemove.kt deleted file mode 100644 index 4fa2b83e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TrayItemRemove.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TrayItemRemove: ImageVector - get() { - if (_trayItemRemove != null) { - return _trayItemRemove!! - } - _trayItemRemove = fluentIcon(name = "Filled.TrayItemRemove") { - fluentPath { - moveTo(13.75f, 2.0f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(4.0f) - curveTo(18.44f, 7.0f, 19.0f, 6.44f, 19.0f, 5.75f) - verticalLineToRelative(-2.5f) - curveTo(19.0f, 2.56f, 18.44f, 2.0f, 17.75f, 2.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(16.28f, 8.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineTo(15.0f, 11.06f) - verticalLineToRelative(6.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-6.69f) - lineToRelative(1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.5f, -2.5f) - close() - moveTo(6.25f, 13.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(4.0f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-4.0f) - close() - moveTo(3.5f, 16.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, 2.75f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 18.75f) - verticalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - lineTo(4.75f, 20.0f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - verticalLineToRelative(-2.0f) - close() - } - } - return _trayItemRemove!! - } - -private var _trayItemRemove: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Trophy.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Trophy.kt deleted file mode 100644 index 9530219b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Trophy.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Trophy: ImageVector - get() { - if (_trophy != null) { - return _trophy!! - } - _trophy = fluentIcon(name = "Filled.Trophy") { - fluentPath { - moveTo(15.25f, 2.0f) - curveToRelative(1.16f, 0.0f, 2.12f, 0.88f, 2.24f, 2.0f) - horizontalLineToRelative(1.27f) - curveToRelative(0.92f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) - verticalLineToRelative(3.15f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.06f, 3.24f) - lineToRelative(-0.2f, 0.01f) - arcToRelative(5.76f, 5.76f, 0.0f, false, true, -4.74f, 3.95f) - verticalLineToRelative(1.55f) - horizontalLineToRelative(1.75f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.25f, 3.07f) - lineTo(17.5f, 21.25f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.64f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.65f) - verticalLineToRelative(-0.6f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.06f, -3.24f) - lineToRelative(0.18f, -0.01f) - lineTo(11.0f, 17.5f) - verticalLineToRelative(-1.55f) - arcTo(5.76f, 5.76f, 0.0f, false, true, 6.27f, 12.0f) - horizontalLineToRelative(-0.02f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 8.75f) - verticalLineToRelative(-3.0f) - curveTo(3.0f, 4.78f, 3.78f, 4.0f, 4.75f, 4.0f) - lineTo(6.0f, 4.0f) - curveToRelative(0.13f, -1.12f, 1.08f, -2.0f, 2.24f, -2.0f) - horizontalLineToRelative(7.0f) - close() - moveTo(18.75f, 5.5f) - lineTo(17.5f, 5.5f) - verticalLineToRelative(4.98f) - curveToRelative(0.8f, -0.11f, 1.43f, -0.76f, 1.5f, -1.58f) - lineTo(19.0f, 5.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.18f, -0.24f) - lineToRelative(-0.06f, -0.01f) - close() - moveTo(6.0f, 5.5f) - lineTo(4.75f, 5.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.88f, 0.65f, 1.61f, 1.5f, 1.73f) - lineTo(6.0f, 5.5f) - close() - } - } - return _trophy!! - } - -private var _trophy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TrophyLock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TrophyLock.kt deleted file mode 100644 index 5d7f3aee..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TrophyLock.kt +++ /dev/null @@ -1,91 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TrophyLock: ImageVector - get() { - if (_trophyLock != null) { - return _trophyLock!! - } - _trophyLock = fluentIcon(name = "Filled.TrophyLock") { - fluentPath { - moveTo(15.25f, 2.0f) - curveToRelative(1.16f, 0.0f, 2.12f, 0.88f, 2.24f, 2.0f) - horizontalLineToRelative(1.27f) - curveToRelative(0.92f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) - verticalLineToRelative(3.15f) - curveToRelative(0.0f, 0.43f, -0.08f, 0.85f, -0.23f, 1.23f) - arcToRelative(3.48f, 3.48f, 0.0f, false, false, -1.44f, -0.46f) - curveToRelative(0.1f, -0.2f, 0.15f, -0.4f, 0.17f, -0.62f) - lineTo(19.0f, 5.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.18f, -0.24f) - lineToRelative(-0.06f, -0.01f) - lineTo(17.5f, 5.5f) - verticalLineToRelative(4.14f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 15.0f, 13.0f) - verticalLineToRelative(0.05f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.0f, 2.45f) - verticalLineToRelative(0.36f) - arcToRelative(5.7f, 5.7f, 0.0f, false, true, -0.5f, 0.1f) - verticalLineToRelative(1.54f) - horizontalLineToRelative(0.5f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.56f, 0.19f, 1.08f, 0.5f, 1.5f) - lineTo(6.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - verticalLineToRelative(-0.6f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.06f, -3.24f) - lineToRelative(0.18f, -0.01f) - lineTo(11.0f, 17.5f) - verticalLineToRelative(-1.55f) - arcTo(5.76f, 5.76f, 0.0f, false, true, 6.27f, 12.0f) - horizontalLineToRelative(-0.02f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 8.75f) - verticalLineToRelative(-3.0f) - curveTo(3.0f, 4.78f, 3.78f, 4.0f, 4.75f, 4.0f) - lineTo(6.0f, 4.0f) - curveToRelative(0.13f, -1.12f, 1.08f, -2.0f, 2.24f, -2.0f) - horizontalLineToRelative(7.0f) - close() - moveTo(6.0f, 5.5f) - lineTo(4.75f, 5.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.88f, 0.65f, 1.61f, 1.5f, 1.73f) - lineTo(6.0f, 5.5f) - close() - moveTo(16.0f, 14.0f) - verticalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(0.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-6.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(0.5f) - close() - moveTo(17.5f, 13.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - close() - moveTo(19.5f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - } - } - return _trophyLock!! - } - -private var _trophyLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TrophyOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TrophyOff.kt deleted file mode 100644 index f2bf0393..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TrophyOff.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TrophyOff: ImageVector - get() { - if (_trophyOff != null) { - return _trophyOff!! - } - _trophyOff = fluentIcon(name = "Filled.TrophyOff") { - fluentPath { - moveTo(3.48f, 4.54f) - lineTo(2.22f, 3.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(18.5f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineToRelative(-6.39f, -6.39f) - curveToRelative(-0.56f, 0.28f, -1.18f, 0.48f, -1.83f, 0.56f) - verticalLineToRelative(1.55f) - horizontalLineToRelative(1.75f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.25f, 3.07f) - lineTo(17.5f, 21.25f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.64f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.65f) - verticalLineToRelative(-0.6f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.06f, -3.24f) - lineToRelative(0.18f, -0.01f) - lineTo(11.0f, 17.5f) - verticalLineToRelative(-1.55f) - arcTo(5.76f, 5.76f, 0.0f, false, true, 6.27f, 12.0f) - horizontalLineToRelative(-0.02f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 8.75f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -0.47f, 0.18f, -0.9f, 0.48f, -1.2f) - close() - moveTo(6.0f, 7.06f) - lineTo(4.54f, 5.6f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.04f, 0.15f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.88f, 0.65f, 1.61f, 1.5f, 1.73f) - lineTo(6.0f, 7.06f) - close() - moveTo(17.23f, 12.0f) - curveToRelative(-0.16f, 0.5f, -0.38f, 0.96f, -0.66f, 1.39f) - lineTo(6.3f, 3.12f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 8.25f, 2.0f) - horizontalLineToRelative(7.0f) - curveToRelative(1.16f, 0.0f, 2.12f, 0.88f, 2.24f, 2.0f) - horizontalLineToRelative(1.27f) - curveToRelative(0.92f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) - verticalLineToRelative(3.15f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.06f, 3.24f) - lineToRelative(-0.2f, 0.01f) - close() - moveTo(18.76f, 5.5f) - lineTo(17.5f, 5.5f) - verticalLineToRelative(4.98f) - curveToRelative(0.8f, -0.11f, 1.43f, -0.76f, 1.5f, -1.58f) - lineTo(19.0f, 5.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.18f, -0.24f) - lineToRelative(-0.06f, -0.01f) - close() - } - } - return _trophyOff!! - } - -private var _trophyOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Tv.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Tv.kt deleted file mode 100644 index a63671d2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Tv.kt +++ /dev/null @@ -1,39 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Tv: ImageVector - get() { - if (_tv != null) { - return _tv!! - } - _tv = fluentIcon(name = "Filled.Tv") { - fluentPath { - moveTo(4.75f, 4.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 6.75f) - verticalLineToRelative(8.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 18.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 15.25f) - verticalLineToRelative(-8.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 4.0f) - horizontalLineTo(4.75f) - close() - moveTo(5.0f, 20.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineTo(5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _tv!! - } - -private var _tv: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TvUsb.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TvUsb.kt deleted file mode 100644 index c6315eb0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TvUsb.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.TvUsb: ImageVector - get() { - if (_tvUsb != null) { - return _tvUsb!! - } - _tvUsb = fluentIcon(name = "Filled.TvUsb") { - fluentPath { - moveTo(4.75f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 5.75f) - verticalLineToRelative(8.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 17.0f) - horizontalLineToRelative(9.75f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -0.82f, 0.4f, -1.54f, 1.0f, -2.0f) - verticalLineToRelative(-1.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 18.0f, 8.5f) - horizontalLineToRelative(3.0f) - curveToRelative(0.36f, 0.0f, 0.7f, 0.07f, 1.0f, 0.2f) - lineTo(22.0f, 5.76f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 3.0f) - lineTo(4.75f, 3.0f) - close() - moveTo(5.75f, 18.5f) - horizontalLineToRelative(9.0f) - lineToRelative(0.16f, 0.28f) - lineToRelative(0.8f, 1.22f) - lineTo(5.75f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(17.5f, 20.0f) - lineToRelative(-1.34f, -2.04f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.16f, -0.55f) - lineTo(16.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - verticalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(3.44f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.17f, 0.55f) - lineTo(21.5f, 20.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(18.5f, 11.5f) - lineTo(18.5f, 13.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(-2.0f) - close() - } - } - return _tvUsb!! - } - -private var _tvUsb: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Umbrella.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Umbrella.kt deleted file mode 100644 index 5077f600..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Umbrella.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Umbrella: ImageVector - get() { - if (_umbrella != null) { - return _umbrella!! - } - _umbrella = fluentIcon(name = "Filled.Umbrella") { - fluentPath { - moveTo(10.25f, 10.91f) - curveToRelative(0.47f, -0.4f, 1.07f, -0.73f, 1.75f, -0.73f) - curveToRelative(0.68f, 0.0f, 1.28f, 0.33f, 1.75f, 0.73f) - arcToRelative(4.6f, 4.6f, 0.0f, false, true, 0.68f, 0.71f) - lineToRelative(0.03f, 0.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.24f, 0.0f) - arcToRelative(5.6f, 5.6f, 0.0f, false, true, 0.71f, -0.76f) - curveToRelative(0.48f, -0.4f, 1.08f, -0.73f, 1.76f, -0.73f) - curveToRelative(0.67f, 0.0f, 1.28f, 0.33f, 1.75f, 0.73f) - curveToRelative(0.23f, 0.2f, 0.41f, 0.4f, 0.54f, 0.54f) - lineToRelative(0.17f, 0.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.37f, -0.42f) - curveTo(22.0f, 6.57f, 17.95f, 2.0f, 12.0f, 2.0f) - reflectiveCurveTo(2.0f, 6.57f, 2.0f, 11.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.37f, 0.42f) - lineToRelative(0.17f, -0.22f) - curveToRelative(0.13f, -0.15f, 0.31f, -0.34f, 0.54f, -0.54f) - curveToRelative(0.47f, -0.4f, 1.08f, -0.73f, 1.75f, -0.73f) - curveToRelative(0.68f, 0.0f, 1.28f, 0.33f, 1.76f, 0.73f) - arcToRelative(4.6f, 4.6f, 0.0f, false, true, 0.7f, 0.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.25f, 0.0f) - lineToRelative(0.03f, -0.05f) - arcToRelative(3.8f, 3.8f, 0.0f, false, true, 0.68f, -0.7f) - close() - moveTo(12.0f, 11.18f) - curveToRelative(-0.24f, 0.0f, -0.49f, 0.08f, -0.75f, 0.24f) - lineTo(11.25f, 19.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - lineTo(6.75f, 19.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 6.0f, 0.0f) - verticalLineToRelative(-7.58f) - arcToRelative(1.47f, 1.47f, 0.0f, false, false, -0.75f, -0.24f) - close() - } - } - return _umbrella!! - } - -private var _umbrella: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/UninstallApp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/UninstallApp.kt deleted file mode 100644 index 0e5d7fbc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/UninstallApp.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.UninstallApp: ImageVector - get() { - if (_uninstallApp != null) { - return _uninstallApp!! - } - _uninstallApp = fluentIcon(name = "Filled.UninstallApp") { - fluentPath { - moveToRelative(16.61f, 8.79f) - lineToRelative(0.1f, -0.08f) - lineToRelative(1.79f, -1.8f) - lineToRelative(1.8f, 1.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.31f, 0.08f) - lineToRelative(0.1f, -0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.08f, -1.32f) - lineToRelative(-0.08f, -0.1f) - lineToRelative(-1.8f, -1.79f) - lineToRelative(1.8f, -1.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.08f, -1.31f) - lineToRelative(-0.08f, -0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.32f, -0.08f) - lineToRelative(-0.1f, 0.08f) - lineToRelative(-1.79f, 1.8f) - lineToRelative(-1.8f, -1.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.31f, -0.08f) - lineToRelative(-0.1f, 0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.08f, 1.32f) - lineToRelative(0.08f, 0.1f) - lineToRelative(1.8f, 1.79f) - lineToRelative(-1.8f, 1.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.08f, 1.31f) - lineToRelative(0.08f, 0.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.22f, 0.15f) - lineToRelative(0.1f, -0.07f) - close() - moveTo(18.5f, 21.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) - verticalLineToRelative(-5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.5f, -2.5f) - lineTo(13.0f, 11.0f) - lineTo(13.0f, 5.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 10.5f, 3.0f) - horizontalLineToRelative(-5.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 3.0f, 5.5f) - verticalLineToRelative(13.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 5.5f, 21.0f) - horizontalLineToRelative(13.0f) - close() - moveTo(5.0f, 11.0f) - lineTo(5.0f, 5.5f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(5.0f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - lineTo(11.0f, 11.0f) - lineTo(5.0f, 11.0f) - close() - moveTo(11.0f, 19.0f) - lineTo(5.5f, 19.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(5.0f, 13.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(6.0f) - close() - moveTo(18.5f, 19.0f) - lineTo(13.0f, 19.0f) - verticalLineToRelative(-6.0f) - horizontalLineToRelative(5.5f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - verticalLineToRelative(5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - close() - } - } - return _uninstallApp!! - } - -private var _uninstallApp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/UsbPlug.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/UsbPlug.kt deleted file mode 100644 index 2a9077e8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/UsbPlug.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.UsbPlug: ImageVector - get() { - if (_usbPlug != null) { - return _usbPlug!! - } - _usbPlug = fluentIcon(name = "Filled.UsbPlug") { - fluentPath { - moveTo(11.0f, 21.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineTo(17.0f) - horizontalLineToRelative(-0.75f) - curveToRelative(-1.19f, 0.0f, -2.16f, -0.93f, -2.24f, -2.1f) - verticalLineTo(9.25f) - curveToRelative(0.0f, -0.98f, 0.63f, -1.82f, 1.5f, -2.13f) - verticalLineTo(2.75f) - curveToRelative(0.0f, -0.38f, 0.29f, -0.7f, 0.65f, -0.75f) - horizontalLineToRelative(6.6f) - curveToRelative(0.39f, 0.0f, 0.7f, 0.28f, 0.75f, 0.65f) - verticalLineTo(7.13f) - curveToRelative(0.82f, 0.3f, 1.42f, 1.05f, 1.49f, 1.95f) - verticalLineToRelative(5.67f) - curveToRelative(0.0f, 1.2f, -0.92f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - horizontalLineToRelative(-0.75f) - verticalLineToRelative(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineTo(17.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(4.25f) - close() - moveTo(14.52f, 3.5f) - horizontalLineToRelative(-5.0f) - verticalLineTo(7.0f) - horizontalLineToRelative(5.0f) - verticalLineTo(3.5f) - close() - } - } - return _usbPlug!! - } - -private var _usbPlug: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/UsbStick.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/UsbStick.kt deleted file mode 100644 index be0ef75a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/UsbStick.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.UsbStick: ImageVector - get() { - if (_usbStick != null) { - return _usbStick!! - } - _usbStick = fluentIcon(name = "Filled.UsbStick") { - fluentPath { - moveTo(15.27f, 2.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineTo(16.01f, 7.13f) - curveToRelative(0.82f, 0.3f, 1.42f, 1.05f, 1.49f, 1.95f) - verticalLineToRelative(10.67f) - curveToRelative(0.0f, 1.2f, -0.92f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - horizontalLineToRelative(-6.5f) - curveToRelative(-1.19f, 0.0f, -2.16f, -0.93f, -2.24f, -2.1f) - lineTo(6.51f, 9.25f) - curveToRelative(0.0f, -0.98f, 0.63f, -1.82f, 1.5f, -2.13f) - lineTo(8.01f, 2.75f) - curveToRelative(0.0f, -0.38f, 0.29f, -0.7f, 0.65f, -0.75f) - horizontalLineToRelative(6.6f) - close() - moveTo(14.52f, 3.5f) - horizontalLineToRelative(-5.0f) - lineTo(9.52f, 7.0f) - horizontalLineToRelative(5.0f) - lineTo(14.52f, 3.5f) - close() - } - } - return _usbStick!! - } - -private var _usbStick: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Vault.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Vault.kt deleted file mode 100644 index 144816d8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Vault.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Vault: ImageVector - get() { - if (_vault != null) { - return _vault!! - } - _vault = fluentIcon(name = "Filled.Vault") { - fluentPath { - moveTo(14.0f, 13.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - close() - moveTo(2.0f, 7.75f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 5.75f, 4.0f) - horizontalLineToRelative(12.5f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 22.0f, 7.75f) - verticalLineToRelative(8.5f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 18.25f, 20.0f) - lineTo(5.75f, 20.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 2.0f, 16.25f) - verticalLineToRelative(-8.5f) - close() - moveTo(5.75f, 7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-8.5f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 5.75f, 7.0f) - close() - moveTo(11.28f, 8.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.2f, 1.2f) - arcToRelative(2.99f, 2.99f, 0.0f, false, false, 0.0f, 3.04f) - lineToRelative(-1.2f, 1.2f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(1.2f, -1.2f) - arcToRelative(2.99f, 2.99f, 0.0f, false, false, 3.04f, 0.0f) - lineToRelative(1.2f, 1.2f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-1.2f, -1.2f) - arcToRelative(2.99f, 2.99f, 0.0f, false, false, 0.0f, -3.04f) - lineToRelative(1.2f, -1.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineToRelative(-1.2f, 1.2f) - arcToRelative(2.99f, 2.99f, 0.0f, false, false, -3.04f, 0.0f) - lineToRelative(-1.2f, -1.2f) - close() - } - } - return _vault!! - } - -private var _vault: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleBicycle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleBicycle.kt deleted file mode 100644 index 5633330a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleBicycle.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VehicleBicycle: ImageVector - get() { - if (_vehicleBicycle != null) { - return _vehicleBicycle!! - } - _vehicleBicycle = fluentIcon(name = "Filled.VehicleBicycle") { - fluentPath { - moveTo(13.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(1.19f) - lineToRelative(0.62f, 3.0f) - lineTo(9.0f, 7.0f) - lineTo(9.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(5.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(0.86f) - lineToRelative(-0.9f, 3.16f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, 4.9f, 4.35f) - lineToRelative(4.47f, -5.21f) - lineToRelative(0.25f, 1.2f) - arcTo(4.5f, 4.5f, 0.0f, true, false, 17.7f, 11.0f) - lineToRelative(-1.71f, -8.2f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 15.0f, 2.0f) - horizontalLineToRelative(-2.0f) - close() - moveTo(16.14f, 13.4f) - lineTo(16.52f, 15.2f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.96f, -0.4f) - lineToRelative(-0.36f, -1.72f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -1.98f, 0.32f) - close() - moveTo(10.31f, 13.1f) - arcToRelative(4.52f, 4.52f, 0.0f, false, false, -2.21f, -1.8f) - lineTo(8.75f, 9.0f) - horizontalLineToRelative(5.08f) - lineToRelative(-3.52f, 4.1f) - close() - moveTo(7.55f, 13.23f) - curveToRelative(0.37f, 0.17f, 0.7f, 0.44f, 0.95f, 0.77f) - lineTo(7.33f, 14.0f) - lineToRelative(0.22f, -0.77f) - close() - moveTo(5.47f, 13.23f) - lineTo(5.04f, 14.73f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 6.0f, 16.0f) - horizontalLineToRelative(2.95f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -3.48f, -2.78f) - close() - } - } - return _vehicleBicycle!! - } - -private var _vehicleBicycle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleBus.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleBus.kt deleted file mode 100644 index 45c7d619..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleBus.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VehicleBus: ImageVector - get() { - if (_vehicleBus != null) { - return _vehicleBus!! - } - _vehicleBus = fluentIcon(name = "Filled.VehicleBus") { - fluentPath { - moveTo(10.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.5f) - close() - moveTo(4.0f, 5.75f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 7.75f, 2.0f) - horizontalLineToRelative(8.5f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 20.0f, 5.75f) - lineTo(20.0f, 9.5f) - horizontalLineToRelative(1.23f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(20.0f, 11.0f) - verticalLineToRelative(8.75f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-1.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(15.0f, 18.5f) - lineTo(9.0f, 18.5f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-1.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.0f, 11.0f) - lineTo(2.75f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(4.0f, 9.5f) - lineTo(4.0f, 5.75f) - close() - moveTo(16.5f, 18.5f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(1.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - lineTo(18.5f, 18.5f) - horizontalLineToRelative(-2.0f) - close() - moveTo(5.5f, 18.5f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(1.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - lineTo(7.5f, 18.5f) - horizontalLineToRelative(-2.0f) - close() - moveTo(7.75f, 3.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - lineTo(5.5f, 12.0f) - horizontalLineToRelative(13.0f) - lineTo(18.5f, 5.75f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-8.5f) - close() - moveTo(9.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(16.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - } - } - return _vehicleBus!! - } - -private var _vehicleBus: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleCab.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleCab.kt deleted file mode 100644 index f2b1dacc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleCab.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VehicleCab: ImageVector - get() { - if (_vehicleCab != null) { - return _vehicleCab!! - } - _vehicleCab = fluentIcon(name = "Filled.VehicleCab") { - fluentPath { - moveTo(9.27f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.74f) - lineTo(8.52f, 4.5f) - horizontalLineToRelative(-0.67f) - curveToRelative(-1.43f, 0.0f, -2.69f, 0.93f, -3.1f, 2.3f) - lineToRelative(-0.07f, 0.2f) - horizontalLineToRelative(-0.93f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.53f) - lineToRelative(-0.2f, 0.83f) - curveToRelative(-0.65f, 0.4f, -1.08f, 1.1f, -1.08f, 1.92f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(1.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(8.0f, 18.5f) - horizontalLineToRelative(8.0f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(1.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.82f, -0.43f, -1.53f, -1.08f, -1.92f) - lineToRelative(-0.2f, -0.83f) - horizontalLineToRelative(0.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.94f) - lineToRelative(-0.06f, -0.18f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.11f, -2.32f) - horizontalLineToRelative(-0.66f) - lineTo(15.48f, 2.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(9.27f, 1.99f) - close() - moveTo(7.85f, 6.0f) - horizontalLineToRelative(8.29f) - curveToRelative(0.77f, 0.0f, 1.45f, 0.5f, 1.68f, 1.25f) - lineToRelative(0.2f, 0.7f) - lineTo(18.3f, 9.0f) - lineTo(5.7f, 9.0f) - lineToRelative(0.25f, -1.05f) - lineToRelative(0.22f, -0.71f) - curveTo(6.4f, 6.5f, 7.08f, 6.0f, 7.85f, 6.0f) - close() - moveTo(4.5f, 18.5f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - lineTo(4.5f, 18.5f) - close() - moveTo(17.5f, 18.5f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - lineTo(17.5f, 18.5f) - close() - moveTo(8.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(17.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - close() - } - } - return _vehicleCab!! - } - -private var _vehicleCab: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleCar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleCar.kt deleted file mode 100644 index d4089eea..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleCar.kt +++ /dev/null @@ -1,94 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VehicleCar: ImageVector - get() { - if (_vehicleCar != null) { - return _vehicleCar!! - } - _vehicleCar = fluentIcon(name = "Filled.VehicleCar") { - fluentPath { - moveTo(15.8f, 3.0f) - curveToRelative(1.49f, 0.0f, 2.79f, 1.01f, 3.15f, 2.46f) - lineTo(19.34f, 7.0f) - horizontalLineToRelative(0.91f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-0.54f) - lineToRelative(0.21f, 0.83f) - curveToRelative(0.65f, 0.4f, 1.08f, 1.1f, 1.08f, 1.92f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.96f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-1.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.79f, -1.75f, -1.75f) - lineTo(16.0f, 18.5f) - lineTo(8.0f, 18.5f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.96f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-1.5f) - curveTo(3.78f, 21.5f, 3.0f, 20.7f, 3.0f, 19.75f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.81f, 0.43f, -1.53f, 1.08f, -1.92f) - lineToRelative(0.2f, -0.83f) - horizontalLineToRelative(-0.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineTo(3.0f, 7.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(0.91f) - lineToRelative(0.39f, -1.54f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 8.2f, 3.0f) - horizontalLineToRelative(7.6f) - close() - moveTo(6.5f, 18.5f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.13f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(1.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.12f, 0.25f, -0.25f) - lineTo(6.5f, 18.5f) - close() - moveTo(19.5f, 18.5f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.13f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(1.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.12f, 0.25f, -0.25f) - lineTo(19.5f, 18.5f) - close() - moveTo(13.75f, 14.0f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(17.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(7.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(15.8f, 4.5f) - lineTo(8.2f, 4.5f) - curveToRelative(-0.8f, 0.0f, -1.5f, 0.55f, -1.7f, 1.33f) - lineTo(5.71f, 9.0f) - lineTo(18.3f, 9.0f) - lineToRelative(-0.8f, -3.18f) - curveToRelative(-0.19f, -0.77f, -0.89f, -1.32f, -1.7f, -1.32f) - close() - } - } - return _vehicleCar!! - } - -private var _vehicleCar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleCarCollision.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleCarCollision.kt deleted file mode 100644 index 28007605..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleCarCollision.kt +++ /dev/null @@ -1,88 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VehicleCarCollision: ImageVector - get() { - if (_vehicleCarCollision != null) { - return _vehicleCarCollision!! - } - _vehicleCarCollision = fluentIcon(name = "Filled.VehicleCarCollision") { - fluentPath { - moveTo(12.34f, 2.3f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.34f, 0.45f) - verticalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.3f) - lineToRelative(1.16f, 1.5f) - curveToRelative(0.23f, 0.32f, 0.67f, 0.4f, 1.0f, 0.18f) - lineToRelative(1.7f, -1.1f) - lineToRelative(-0.82f, 2.48f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.71f, 0.99f) - horizontalLineToRelative(3.19f) - lineToRelative(-1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.08f, 0.97f) - lineToRelative(1.65f, 2.31f) - horizontalLineToRelative(-1.54f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.61f, -1.19f) - lineToRelative(-2.13f, -2.98f) - lineToRelative(2.05f, -2.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.53f, -1.28f) - horizontalLineToRelative(-3.96f) - lineToRelative(1.17f, -3.51f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.12f, -0.87f) - lineTo(14.42f, 5.0f) - lineToRelative(-2.08f, -2.7f) - close() - moveTo(2.86f, 13.74f) - horizontalLineToRelative(-0.11f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.77f) - lineToRelative(0.26f, -1.41f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 6.0f, 9.0f) - horizontalLineToRelative(6.09f) - curveToRelative(1.03f, 0.0f, 1.93f, 0.7f, 2.18f, 1.7f) - lineToRelative(0.39f, 1.55f) - horizontalLineToRelative(0.6f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.11f) - curveToRelative(0.53f, 0.5f, 0.86f, 1.21f, 0.86f, 2.0f) - verticalLineToRelative(4.75f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - lineTo(13.01f, 20.0f) - lineTo(5.0f, 20.0f) - verticalLineToRelative(0.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - verticalLineToRelative(-4.75f) - curveToRelative(0.0f, -0.79f, 0.33f, -1.5f, 0.86f, -2.0f) - close() - moveTo(5.26f, 11.1f) - lineTo(4.9f, 13.0f) - horizontalLineToRelative(8.35f) - verticalLineToRelative(-0.12f) - lineToRelative(-0.44f, -1.81f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.73f, -0.57f) - lineTo(5.99f, 10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.73f, 0.61f) - close() - moveTo(13.0f, 16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(6.0f, 17.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - } - } - return _vehicleCarCollision!! - } - -private var _vehicleCarCollision: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleCarParking.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleCarParking.kt deleted file mode 100644 index bf6e2be8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleCarParking.kt +++ /dev/null @@ -1,93 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VehicleCarParking: ImageVector - get() { - if (_vehicleCarParking != null) { - return _vehicleCarParking!! - } - _vehicleCarParking = fluentIcon(name = "Filled.VehicleCarParking") { - fluentPath { - moveTo(17.25f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - lineTo(22.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(14.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(19.5f, 8.0f) - horizontalLineToRelative(-1.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(17.25f, 2.0f) - close() - moveTo(15.8f, 3.0f) - lineToRelative(0.45f, 0.03f) - verticalLineToRelative(1.53f) - curveToRelative(-0.14f, -0.04f, -0.3f, -0.06f, -0.45f, -0.06f) - lineTo(8.2f, 4.5f) - curveToRelative(-0.8f, 0.0f, -1.5f, 0.55f, -1.7f, 1.33f) - lineTo(5.71f, 9.0f) - lineTo(18.5f, 9.0f) - verticalLineToRelative(9.5f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.13f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(0.75f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(-0.75f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.79f, -1.75f, -1.75f) - lineTo(16.0f, 18.5f) - lineTo(8.0f, 18.5f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.96f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-1.5f) - curveTo(3.78f, 21.5f, 3.0f, 20.7f, 3.0f, 19.75f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.81f, 0.43f, -1.53f, 1.08f, -1.92f) - lineToRelative(0.2f, -0.83f) - horizontalLineToRelative(-0.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineTo(3.0f, 7.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(0.91f) - lineToRelative(0.39f, -1.54f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 8.2f, 3.0f) - horizontalLineToRelative(7.6f) - close() - moveTo(6.5f, 18.5f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.13f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(1.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.12f, 0.25f, -0.25f) - lineTo(6.5f, 18.5f) - close() - moveTo(13.75f, 14.0f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(17.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(7.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - } - } - return _vehicleCarParking!! - } - -private var _vehicleCarParking: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleCarProfileLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleCarProfileLtr.kt deleted file mode 100644 index fc768e0a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleCarProfileLtr.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VehicleCarProfileLtr: ImageVector - get() { - if (_vehicleCarProfileLtr != null) { - return _vehicleCarProfileLtr!! - } - _vehicleCarProfileLtr = fluentIcon(name = "Filled.VehicleCarProfileLtr") { - fluentPath { - moveTo(8.03f, 4.0f) - curveToRelative(-1.24f, 0.0f, -2.33f, 0.83f, -2.66f, 2.03f) - lineToRelative(-0.95f, 3.49f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 12.25f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.86f, 0.4f, 1.64f, 1.02f, 2.14f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 6.32f, 0.61f) - horizontalLineToRelative(4.82f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 6.25f, -0.26f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 14.5f) - verticalLineToRelative(-1.69f) - curveToRelative(0.0f, -1.26f, -0.86f, -2.36f, -2.08f, -2.67f) - lineToRelative(-2.19f, -0.54f) - lineToRelative(-2.5f, -4.25f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 12.86f, 4.0f) - lineTo(8.03f, 4.0f) - close() - moveTo(6.83f, 6.42f) - curveToRelative(0.14f, -0.54f, 0.63f, -0.92f, 1.2f, -0.92f) - lineTo(9.5f, 5.5f) - verticalLineToRelative(4.0f) - lineTo(5.98f, 9.5f) - lineToRelative(0.84f, -3.08f) - close() - moveTo(11.0f, 9.5f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(1.86f) - curveToRelative(0.44f, 0.0f, 0.85f, 0.23f, 1.07f, 0.61f) - lineToRelative(2.0f, 3.39f) - lineTo(11.0f, 9.5f) - close() - moveTo(6.25f, 14.5f) - arcToRelative(1.75f, 1.75f, 0.0f, true, true, 0.0f, 3.5f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.0f, -3.5f) - close() - moveTo(15.5f, 16.25f) - arcToRelative(1.75f, 1.75f, 0.0f, true, true, 3.5f, 0.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -3.5f, 0.0f) - close() - } - } - return _vehicleCarProfileLtr!! - } - -private var _vehicleCarProfileLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleCarProfileLtrClock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleCarProfileLtrClock.kt deleted file mode 100644 index c83aacde..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleCarProfileLtrClock.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VehicleCarProfileLtrClock: ImageVector - get() { - if (_vehicleCarProfileLtrClock != null) { - return _vehicleCarProfileLtrClock!! - } - _vehicleCarProfileLtrClock = fluentIcon(name = "Filled.VehicleCarProfileLtrClock") { - fluentPath { - moveTo(6.5f, 1.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(8.5f, 6.5f) - horizontalLineToRelative(-2.0f) - lineTo(6.5f, 4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - close() - moveTo(6.5f, 13.0f) - curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.81f) - lineTo(11.0f, 12.0f) - horizontalLineToRelative(4.93f) - lineToRelative(-2.0f, -3.39f) - arcTo(1.25f, 1.25f, 0.0f, false, false, 12.86f, 8.0f) - horizontalLineToRelative(-0.03f) - curveToRelative(0.11f, -0.48f, 0.17f, -0.98f, 0.17f, -1.5f) - curveToRelative(0.92f, 0.05f, 1.76f, 0.55f, 2.23f, 1.35f) - lineToRelative(2.5f, 4.25f) - lineToRelative(2.19f, 0.54f) - curveToRelative(1.22f, 0.31f, 2.08f, 1.41f, 2.08f, 2.67f) - lineTo(22.0f, 17.0f) - curveToRelative(0.0f, 1.1f, -0.65f, 2.05f, -1.59f, 2.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.25f, 0.25f) - lineTo(9.34f, 19.75f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.32f, -0.61f) - arcTo(2.74f, 2.74f, 0.0f, false, true, 2.0f, 17.0f) - verticalLineToRelative(-2.25f) - curveToRelative(0.0f, -1.08f, 0.62f, -2.02f, 1.53f, -2.47f) - curveToRelative(0.9f, 0.46f, 1.9f, 0.72f, 2.97f, 0.72f) - close() - moveTo(6.25f, 17.0f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, 3.5f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, -3.5f) - close() - moveTo(15.5f, 18.75f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, 3.5f, 0.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -3.5f, 0.0f) - close() - } - } - return _vehicleCarProfileLtrClock!! - } - -private var _vehicleCarProfileLtrClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleCarProfileRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleCarProfileRtl.kt deleted file mode 100644 index 4b548016..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleCarProfileRtl.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VehicleCarProfileRtl: ImageVector - get() { - if (_vehicleCarProfileRtl != null) { - return _vehicleCarProfileRtl!! - } - _vehicleCarProfileRtl = fluentIcon(name = "Filled.VehicleCarProfileRtl") { - fluentPath { - moveTo(15.97f, 4.0f) - curveToRelative(1.24f, 0.0f, 2.33f, 0.83f, 2.66f, 2.03f) - lineToRelative(0.95f, 3.49f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 12.25f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.86f, -0.4f, 1.64f, -1.02f, 2.14f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.32f, 0.61f) - lineTo(9.84f, 17.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.25f, -0.26f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 14.5f) - verticalLineToRelative(-1.69f) - curveToRelative(0.0f, -1.26f, 0.86f, -2.36f, 2.08f, -2.67f) - lineToRelative(2.19f, -0.54f) - lineToRelative(2.5f, -4.25f) - curveToRelative(0.5f, -0.84f, 1.4f, -1.35f, 2.37f, -1.35f) - horizontalLineToRelative(4.83f) - close() - moveTo(17.17f, 6.42f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.2f, -0.92f) - lineTo(14.5f, 5.5f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(3.52f) - lineToRelative(-0.84f, -3.08f) - close() - moveTo(13.0f, 9.5f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-1.86f) - curveToRelative(-0.44f, 0.0f, -0.85f, 0.23f, -1.07f, 0.61f) - lineToRelative(-2.0f, 3.39f) - lineTo(13.0f, 9.5f) - close() - moveTo(17.75f, 14.5f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, 3.5f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, -3.5f) - close() - moveTo(8.5f, 16.25f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, -3.5f, 0.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 3.5f, 0.0f) - close() - } - } - return _vehicleCarProfileRtl!! - } - -private var _vehicleCarProfileRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleShip.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleShip.kt deleted file mode 100644 index ad4f0cc3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleShip.kt +++ /dev/null @@ -1,106 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VehicleShip: ImageVector - get() { - if (_vehicleShip != null) { - return _vehicleShip!! - } - _vehicleShip = fluentIcon(name = "Filled.VehicleShip") { - fluentPath { - moveTo(8.75f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(8.0f, 5.0f) - lineTo(5.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.76f) - lineToRelative(-1.46f, 0.54f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.42f, 1.02f) - lineToRelative(2.33f, 5.02f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 2.22f, 1.14f) - lineToRelative(0.01f, 0.03f) - lineToRelative(0.07f, 0.16f) - curveToRelative(0.07f, 0.15f, 0.17f, 0.35f, 0.3f, 0.53f) - curveToRelative(0.28f, 0.37f, 0.57f, 0.55f, 0.95f, 0.55f) - reflectiveCurveToRelative(0.67f, -0.18f, 0.94f, -0.55f) - arcToRelative(2.83f, 2.83f, 0.0f, false, false, 0.39f, -0.72f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 3.34f, 0.0f) - verticalLineToRelative(0.03f) - lineToRelative(0.08f, 0.16f) - curveToRelative(0.06f, 0.15f, 0.17f, 0.35f, 0.3f, 0.53f) - curveToRelative(0.28f, 0.37f, 0.57f, 0.55f, 0.95f, 0.55f) - reflectiveCurveToRelative(0.67f, -0.18f, 0.94f, -0.55f) - arcToRelative(2.86f, 2.86f, 0.0f, false, false, 0.39f, -0.72f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 2.3f, -1.12f) - lineToRelative(2.46f, -5.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.42f, -1.03f) - lineToRelative(-1.67f, -0.6f) - verticalLineToRelative(-4.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(16.0f, 5.0f) - lineTo(16.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-6.5f) - close() - moveTo(14.5f, 5.0f) - horizontalLineToRelative(-5.0f) - lineTo(9.5f, 3.5f) - horizontalLineToRelative(5.0f) - lineTo(14.5f, 5.0f) - close() - moveTo(17.5f, 6.5f) - verticalLineToRelative(3.42f) - lineToRelative(-4.4f, -1.57f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -2.2f, 0.0f) - lineTo(6.5f, 9.98f) - lineTo(6.5f, 6.5f) - horizontalLineToRelative(11.0f) - close() - moveTo(18.73f, 18.56f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.45f, -0.03f) - verticalLineToRelative(0.01f) - arcToRelative(2.16f, 2.16f, 0.0f, false, true, -0.12f, 0.3f) - curveToRelative(-0.09f, 0.2f, -0.22f, 0.45f, -0.42f, 0.71f) - curveToRelative(-0.38f, 0.52f, -0.94f, 0.95f, -1.74f, 0.95f) - reflectiveCurveToRelative(-1.36f, -0.44f, -1.74f, -0.95f) - arcToRelative(3.85f, 3.85f, 0.0f, false, true, -0.54f, -1.0f) - verticalLineToRelative(-0.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.44f, 0.0f) - verticalLineToRelative(0.01f) - lineToRelative(-0.02f, 0.06f) - arcToRelative(3.36f, 3.36f, 0.0f, false, true, -0.52f, 0.95f) - curveToRelative(-0.38f, 0.51f, -0.93f, 0.95f, -1.74f, 0.95f) - curveToRelative(-0.8f, 0.0f, -1.36f, -0.44f, -1.74f, -0.95f) - arcToRelative(3.83f, 3.83f, 0.0f, false, true, -0.54f, -1.0f) - verticalLineToRelative(-0.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.44f, 0.02f) - verticalLineToRelative(0.01f) - arcToRelative(1.62f, 1.62f, 0.0f, false, true, -0.11f, 0.28f) - curveToRelative(-0.09f, 0.2f, -0.22f, 0.45f, -0.42f, 0.7f) - curveToRelative(-0.38f, 0.49f, -1.0f, 0.96f, -2.0f, 0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - arcTo(3.92f, 3.92f, 0.0f, false, false, 6.0f, 20.37f) - lineToRelative(0.06f, 0.08f) - curveTo(6.6f, 21.19f, 7.56f, 22.0f, 9.0f, 22.0f) - arcToRelative(3.63f, 3.63f, 0.0f, false, false, 3.0f, -1.63f) - lineToRelative(0.06f, 0.08f) - curveTo(12.6f, 21.2f, 13.56f, 22.0f, 15.0f, 22.0f) - arcToRelative(3.63f, 3.63f, 0.0f, false, false, 3.0f, -1.62f) - lineToRelative(0.06f, 0.08f) - curveToRelative(0.6f, 0.76f, 1.61f, 1.54f, 3.19f, 1.54f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - arcToRelative(2.42f, 2.42f, 0.0f, false, true, -2.0f, -0.96f) - arcToRelative(3.27f, 3.27f, 0.0f, false, true, -0.52f, -0.98f) - close() - } - } - return _vehicleShip!! - } - -private var _vehicleShip: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleSubway.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleSubway.kt deleted file mode 100644 index 6e00ca00..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleSubway.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VehicleSubway: ImageVector - get() { - if (_vehicleSubway != null) { - return _vehicleSubway!! - } - _vehicleSubway = fluentIcon(name = "Filled.VehicleSubway") { - fluentPath { - moveTo(16.25f, 3.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 20.0f, 6.75f) - verticalLineToRelative(9.0f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -2.89f, 3.65f) - lineToRelative(2.46f, 1.17f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.55f, 1.4f) - lineToRelative(-0.1f, -0.04f) - lineToRelative(-5.09f, -2.43f) - horizontalLineToRelative(-3.66f) - lineToRelative(-5.1f, 2.43f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.64f, -1.36f) - lineToRelative(2.46f, -1.17f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 4.0f, 15.75f) - verticalLineToRelative(-9.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 7.75f, 3.0f) - horizontalLineToRelative(8.5f) - close() - moveTo(8.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(16.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(16.25f, 4.5f) - horizontalLineToRelative(-8.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(5.75f) - horizontalLineToRelative(13.0f) - lineTo(18.5f, 6.75f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - close() - moveTo(13.25f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.5f) - close() - } - } - return _vehicleSubway!! - } - -private var _vehicleSubway: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleTruck.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleTruck.kt deleted file mode 100644 index b1ae5391..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleTruck.kt +++ /dev/null @@ -1,100 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VehicleTruck: ImageVector - get() { - if (_vehicleTruck != null) { - return _vehicleTruck!! - } - _vehicleTruck = fluentIcon(name = "Filled.VehicleTruck") { - fluentPath { - moveTo(3.0f, 5.25f) - curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(13.5f) - curveTo(19.99f, 3.0f, 21.0f, 4.0f, 21.0f, 5.25f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(-8.25f) - curveToRelative(0.0f, -0.1f, -0.01f, -0.22f, -0.04f, -0.33f) - lineToRelative(-0.73f, -3.32f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -2.93f, -2.35f) - horizontalLineToRelative(-7.1f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 5.52f, 7.6f) - lineToRelative(-0.73f, 3.32f) - curveToRelative(-0.03f, 0.11f, -0.04f, 0.22f, -0.04f, 0.33f) - verticalLineToRelative(8.25f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(3.0f, 5.25f) - close() - moveTo(8.45f, 6.0f) - curveToRelative(-1.05f, 0.0f, -1.96f, 0.73f, -2.2f, 1.76f) - lineToRelative(-0.73f, 3.33f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.02f, 0.16f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(1.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(1.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-9.0f) - curveToRelative(0.0f, -0.05f, 0.0f, -0.1f, -0.02f, -0.16f) - lineToRelative(-0.74f, -3.33f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 15.54f, 6.0f) - lineTo(8.46f, 6.0f) - close() - moveTo(7.72f, 8.09f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.73f, -0.59f) - horizontalLineToRelative(7.1f) - curveToRelative(0.35f, 0.0f, 0.65f, 0.24f, 0.73f, 0.59f) - lineToRelative(0.54f, 2.41f) - lineTo(7.18f, 10.5f) - lineToRelative(0.54f, -2.41f) - close() - moveTo(7.0f, 20.25f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - close() - moveTo(17.0f, 19.5f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(2.0f) - close() - moveTo(10.75f, 16.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(10.01f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(15.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - close() - } - } - return _vehicleTruck!! - } - -private var _vehicleTruck: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleTruckBag.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleTruckBag.kt deleted file mode 100644 index bf5f11ec..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleTruckBag.kt +++ /dev/null @@ -1,98 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VehicleTruckBag: ImageVector - get() { - if (_vehicleTruckBag != null) { - return _vehicleTruckBag!! - } - _vehicleTruckBag = fluentIcon(name = "Filled.VehicleTruckBag") { - fluentPath { - moveTo(1.75f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(5.0f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(9.5f, 4.5f) - verticalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -3.75f, -2.17f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 2.0f, 3.5f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-0.25f) - close() - moveTo(7.0f, 4.5f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.35f, -0.07f, -0.68f, -0.2f, -0.98f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 8.0f, 3.5f) - verticalLineToRelative(1.0f) - lineTo(7.0f, 4.5f) - close() - moveTo(5.5f, 3.5f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(2.0f, 17.25f) - verticalLineToRelative(-3.0f) - curveToRelative(0.38f, 0.16f, 0.8f, 0.25f, 1.25f, 0.25f) - horizontalLineToRelative(5.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-6.0f) - curveToRelative(0.0f, -0.7f, -0.4f, -1.3f, -1.0f, -1.58f) - lineTo(10.5f, 3.5f) - curveToRelative(0.0f, -0.17f, -0.01f, -0.34f, -0.04f, -0.5f) - horizontalLineToRelative(3.79f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - lineTo(16.5f, 6.0f) - horizontalLineToRelative(1.55f) - curveToRelative(0.87f, 0.0f, 1.66f, 0.5f, 2.03f, 1.29f) - lineToRelative(1.7f, 3.58f) - curveToRelative(0.15f, 0.3f, 0.22f, 0.63f, 0.22f, 0.97f) - verticalLineToRelative(5.41f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-1.8f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -5.9f, 0.0f) - horizontalLineToRelative(-2.1f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -5.91f, -0.01f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 2.0f, 17.25f) - close() - moveTo(20.5f, 15.5f) - horizontalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(1.25f) - verticalLineToRelative(-1.5f) - close() - moveTo(20.18f, 11.0f) - lineTo(18.73f, 7.93f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.68f, -0.43f) - lineTo(16.5f, 7.5f) - lineTo(16.5f, 11.0f) - horizontalLineToRelative(3.68f) - close() - moveTo(7.0f, 20.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - close() - moveTo(16.5f, 19.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) - close() - moveTo(3.5f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, -0.4f) - close() - } - } - return _vehicleTruckBag!! - } - -private var _vehicleTruckBag: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleTruckCube.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleTruckCube.kt deleted file mode 100644 index b47ef152..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleTruckCube.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VehicleTruckCube: ImageVector - get() { - if (_vehicleTruckCube != null) { - return _vehicleTruckCube!! - } - _vehicleTruckCube = fluentIcon(name = "Filled.VehicleTruckCube") { - fluentPath { - moveTo(1.0f, 8.57f) - lineTo(1.0f, 4.43f) - curveToRelative(0.0f, -0.57f, 0.32f, -1.09f, 0.83f, -1.34f) - lineToRelative(3.5f, -1.75f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 1.34f, 0.0f) - lineToRelative(3.5f, 1.75f) - curveToRelative(0.5f, 0.25f, 0.83f, 0.77f, 0.83f, 1.34f) - verticalLineToRelative(4.14f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -0.83f, 1.35f) - lineToRelative(-3.5f, 1.75f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.34f, 0.0f) - lineToRelative(-3.5f, -1.75f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 1.0f, 8.57f) - close() - moveTo(2.55f, 4.53f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.23f, 0.67f) - lineTo(5.5f, 6.56f) - lineTo(5.5f, 9.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) - lineTo(6.5f, 6.56f) - lineTo(9.22f, 5.2f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.44f, -0.9f) - lineTo(6.0f, 5.7f) - lineTo(3.22f, 4.3f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.67f, 0.23f) - close() - moveTo(11.55f, 3.0f) - curveToRelative(0.29f, 0.41f, 0.45f, 0.9f, 0.45f, 1.43f) - verticalLineToRelative(4.14f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -1.38f, 2.24f) - lineToRelative(-3.5f, 1.75f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.24f, 0.0f) - lineTo(2.0f, 11.12f) - verticalLineToRelative(6.13f) - curveToRelative(0.0f, 1.17f, 0.9f, 2.13f, 2.04f, 2.24f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 5.92f, 0.01f) - horizontalLineToRelative(2.08f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 5.92f, 0.0f) - horizontalLineToRelative(1.79f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-5.41f) - curveToRelative(0.0f, -0.34f, -0.07f, -0.66f, -0.22f, -0.97f) - lineToRelative(-1.7f, -3.58f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 18.05f, 6.0f) - lineTo(16.5f, 6.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-2.7f) - close() - moveTo(19.25f, 15.5f) - horizontalLineToRelative(1.25f) - lineTo(20.5f, 17.0f) - horizontalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - close() - moveTo(18.73f, 7.93f) - lineTo(20.18f, 11.0f) - lineTo(16.5f, 11.0f) - lineTo(16.5f, 7.5f) - horizontalLineToRelative(1.55f) - curveToRelative(0.3f, 0.0f, 0.55f, 0.17f, 0.68f, 0.43f) - close() - moveTo(8.5f, 19.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - moveTo(15.0f, 17.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - } - } - return _vehicleTruckCube!! - } - -private var _vehicleTruckCube: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleTruckProfile.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleTruckProfile.kt deleted file mode 100644 index 5664118f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VehicleTruckProfile.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VehicleTruckProfile: ImageVector - get() { - if (_vehicleTruckProfile != null) { - return _vehicleTruckProfile!! - } - _vehicleTruckProfile = fluentIcon(name = "Filled.VehicleTruckProfile") { - fluentPath { - moveTo(2.0f, 5.25f) - curveTo(2.0f, 4.01f, 3.0f, 3.0f, 4.25f, 3.0f) - horizontalLineToRelative(10.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - lineTo(16.5f, 6.0f) - horizontalLineToRelative(1.55f) - curveToRelative(0.87f, 0.0f, 1.66f, 0.5f, 2.03f, 1.29f) - lineToRelative(1.7f, 3.58f) - curveToRelative(0.15f, 0.3f, 0.22f, 0.63f, 0.22f, 0.97f) - verticalLineToRelative(5.41f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-1.8f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -5.9f, 0.0f) - horizontalLineToRelative(-2.1f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -5.91f, -0.01f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 2.0f, 17.25f) - verticalLineToRelative(-12.0f) - close() - moveTo(20.5f, 15.5f) - horizontalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(1.25f) - verticalLineToRelative(-1.5f) - close() - moveTo(20.18f, 11.0f) - lineTo(18.73f, 7.93f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.68f, -0.43f) - lineTo(16.5f, 7.5f) - lineTo(16.5f, 11.0f) - horizontalLineToRelative(3.68f) - close() - moveTo(7.0f, 20.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - close() - moveTo(16.5f, 19.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) - close() - } - } - return _vehicleTruckProfile!! - } - -private var _vehicleTruckProfile: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Video.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Video.kt deleted file mode 100644 index 6ece9971..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Video.kt +++ /dev/null @@ -1,41 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Video: ImageVector - get() { - if (_video != null) { - return _video!! - } - _video = fluentIcon(name = "Filled.Video") { - fluentPath { - moveTo(16.0f, 16.25f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-7.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.25f) - verticalLineToRelative(-8.5f) - curveTo(2.0f, 5.95f, 3.46f, 4.5f, 5.25f, 4.5f) - horizontalLineToRelative(7.5f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(8.5f) - close() - moveTo(21.76f, 5.89f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.24f, 0.65f) - verticalLineToRelative(10.92f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.65f, 0.76f) - lineTo(17.0f, 15.37f) - lineTo(17.0f, 8.63f) - lineToRelative(3.35f, -2.85f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, 0.11f) - close() - } - } - return _video!! - } - -private var _video: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Video360.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Video360.kt deleted file mode 100644 index 72e3a6b2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Video360.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Video360: ImageVector - get() { - if (_video360 != null) { - return _video360!! - } - _video360 = fluentIcon(name = "Filled.Video360") { - fluentPath { - moveTo(4.7f, 4.02f) - curveToRelative(-1.38f, -0.2f, -2.7f, 0.85f, -2.7f, 2.3f) - verticalLineToRelative(11.36f) - curveToRelative(0.0f, 1.45f, 1.32f, 2.5f, 2.7f, 2.3f) - lineToRelative(0.63f, -0.08f) - arcToRelative(54.28f, 54.28f, 0.0f, false, true, 13.98f, 0.08f) - curveToRelative(1.37f, 0.2f, 2.69f, -0.86f, 2.69f, -2.3f) - lineTo(22.0f, 6.32f) - curveToRelative(0.0f, -1.45f, -1.32f, -2.5f, -2.7f, -2.3f) - curveToRelative(-1.57f, 0.22f, -4.1f, 0.48f, -7.3f, 0.48f) - reflectiveCurveToRelative(-5.73f, -0.26f, -7.3f, -0.48f) - close() - moveTo(19.0f, 18.42f) - curveToRelative(-0.93f, -0.11f, -2.11f, -0.23f, -3.5f, -0.32f) - lineTo(15.5f, 15.0f) - lineTo(18.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.43f) - close() - moveTo(14.0f, 18.03f) - arcToRelative(59.06f, 59.06f, 0.0f, false, false, -4.0f, 0.0f) - lineTo(10.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(3.03f) - close() - moveTo(8.5f, 18.1f) - curveToRelative(-1.39f, 0.09f, -2.57f, 0.2f, -3.5f, 0.33f) - lineTo(5.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(3.1f) - close() - moveTo(12.0f, 13.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) - close() - moveTo(8.5f, 12.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - moveTo(18.5f, 12.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - } - } - return _video360!! - } - -private var _video360: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoAdd.kt deleted file mode 100644 index 8737f12c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoAdd.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VideoAdd: ImageVector - get() { - if (_videoAdd != null) { - return _videoAdd!! - } - _videoAdd = fluentIcon(name = "Filled.VideoAdd") { - fluentPath { - moveTo(16.0f, 16.25f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-0.06f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 2.0f, 12.81f) - lineTo(2.0f, 7.75f) - curveTo(2.0f, 5.95f, 3.46f, 4.5f, 5.25f, 4.5f) - horizontalLineToRelative(7.5f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(8.5f) - close() - moveTo(21.76f, 5.89f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.24f, 0.65f) - verticalLineToRelative(10.92f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.65f, 0.76f) - lineTo(17.0f, 15.37f) - lineTo(17.0f, 8.63f) - lineToRelative(3.35f, -2.85f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, 0.11f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(7.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(6.0f, 18.0f) - lineTo(3.5f, 18.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(6.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(7.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(7.0f, 18.0f) - close() - } - } - return _videoAdd!! - } - -private var _videoAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoBackgroundEffect.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoBackgroundEffect.kt deleted file mode 100644 index fad9de35..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoBackgroundEffect.kt +++ /dev/null @@ -1,95 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VideoBackgroundEffect: ImageVector - get() { - if (_videoBackgroundEffect != null) { - return _videoBackgroundEffect!! - } - _videoBackgroundEffect = fluentIcon(name = "Filled.VideoBackgroundEffect") { - fluentPath { - moveTo(6.0f, 16.94f) - verticalLineToRelative(2.12f) - lineToRelative(-0.94f, 0.94f) - lineTo(2.94f, 20.0f) - lineTo(6.0f, 16.94f) - close() - moveTo(22.0f, 14.44f) - verticalLineToRelative(2.12f) - lineTo(18.56f, 20.0f) - horizontalLineToRelative(-0.57f) - verticalLineToRelative(-1.56f) - lineToRelative(4.01f, -4.0f) - close() - moveTo(8.75f, 14.0f) - horizontalLineToRelative(6.5f) - curveToRelative(0.91f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) - lineTo(16.99f, 20.0f) - lineTo(7.0f, 20.0f) - verticalLineToRelative(-4.25f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) - lineToRelative(0.15f, -0.01f) - close() - moveTo(8.02f, 10.42f) - curveToRelative(0.06f, 0.57f, 0.24f, 1.12f, 0.52f, 1.6f) - lineTo(2.0f, 18.56f) - verticalLineToRelative(-2.12f) - lineToRelative(6.02f, -6.02f) - close() - moveTo(22.0f, 9.93f) - verticalLineToRelative(2.13f) - lineToRelative(-4.0f, 4.0f) - verticalLineToRelative(-0.31f) - lineToRelative(-0.01f, -0.17f) - arcToRelative(2.73f, 2.73f, 0.0f, false, false, -0.39f, -1.25f) - lineToRelative(4.4f, -4.4f) - close() - moveTo(12.06f, 4.0f) - lineTo(2.0f, 14.06f) - verticalLineToRelative(-2.12f) - lineTo(9.94f, 4.0f) - horizontalLineToRelative(2.12f) - close() - moveTo(22.0f, 5.43f) - verticalLineToRelative(2.13f) - lineToRelative(-5.67f, 5.66f) - arcToRelative(2.73f, 2.73f, 0.0f, false, false, -0.86f, -0.21f) - lineToRelative(-0.23f, -0.01f) - horizontalLineToRelative(-0.6f) - curveToRelative(0.35f, -0.3f, 0.64f, -0.66f, 0.86f, -1.06f) - lineToRelative(6.5f, -6.5f) - close() - moveTo(12.0f, 7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) - close() - moveTo(7.56f, 4.0f) - lineTo(2.0f, 9.56f) - lineTo(2.0f, 7.44f) - lineTo(5.44f, 4.0f) - horizontalLineToRelative(2.12f) - close() - moveTo(21.06f, 4.0f) - lineTo(15.9f, 9.15f) - arcToRelative(3.98f, 3.98f, 0.0f, false, false, -0.65f, -1.47f) - lineTo(18.93f, 4.0f) - horizontalLineToRelative(2.13f) - close() - moveTo(16.56f, 4.0f) - lineTo(14.0f, 6.54f) - arcToRelative(3.97f, 3.97f, 0.0f, false, false, -1.6f, -0.52f) - lineTo(14.45f, 4.0f) - horizontalLineToRelative(2.12f) - close() - } - } - return _videoBackgroundEffect!! - } - -private var _videoBackgroundEffect: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoBackgroundEffectHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoBackgroundEffectHorizontal.kt deleted file mode 100644 index 2e8d8a43..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoBackgroundEffectHorizontal.kt +++ /dev/null @@ -1,91 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VideoBackgroundEffectHorizontal: ImageVector - get() { - if (_videoBackgroundEffectHorizontal != null) { - return _videoBackgroundEffectHorizontal!! - } - _videoBackgroundEffectHorizontal = fluentIcon(name = - "Filled.VideoBackgroundEffectHorizontal") { - fluentPath { - moveTo(2.13f, 5.5f) - curveTo(2.43f, 4.63f, 3.27f, 4.0f, 4.25f, 4.0f) - horizontalLineToRelative(15.5f) - curveToRelative(0.98f, 0.0f, 1.81f, 0.63f, 2.12f, 1.5f) - lineTo(2.13f, 5.5f) - close() - moveTo(22.0f, 11.25f) - horizontalLineToRelative(-6.2f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -0.9f, 1.5f) - lineTo(22.0f, 12.75f) - verticalLineToRelative(-1.5f) - close() - moveTo(22.0f, 9.0f) - horizontalLineToRelative(-6.13f) - arcToRelative(3.99f, 3.99f, 0.0f, false, false, -0.75f, -1.5f) - lineTo(22.0f, 7.5f) - lineTo(22.0f, 9.0f) - close() - moveTo(14.83f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -5.66f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 5.66f, 0.0f) - close() - moveTo(2.0f, 7.5f) - horizontalLineToRelative(6.88f) - curveToRelative(-0.35f, 0.43f, -0.61f, 0.94f, -0.75f, 1.5f) - lineTo(2.0f, 9.0f) - lineTo(2.0f, 7.5f) - close() - moveTo(2.0f, 11.25f) - horizontalLineToRelative(6.2f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.9f, 1.5f) - lineTo(2.0f, 12.75f) - verticalLineToRelative(-1.5f) - close() - moveTo(2.0f, 15.0f) - horizontalLineToRelative(4.1f) - curveToRelative(-0.06f, 0.24f, -0.1f, 0.49f, -0.1f, 0.75f) - verticalLineToRelative(0.75f) - lineTo(2.0f, 16.5f) - lineTo(2.0f, 15.0f) - close() - moveTo(2.13f, 18.5f) - lineTo(6.0f, 18.5f) - lineTo(6.0f, 20.0f) - lineTo(4.25f, 20.0f) - curveToRelative(-0.98f, 0.0f, -1.81f, -0.63f, -2.12f, -1.5f) - close() - moveTo(7.0f, 15.75f) - arcTo(1.74f, 1.74f, 0.0f, false, true, 8.75f, 14.0f) - horizontalLineToRelative(6.5f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 17.0f, 15.75f) - lineTo(17.0f, 20.0f) - lineTo(7.0f, 20.0f) - verticalLineToRelative(-4.25f) - close() - moveTo(18.0f, 18.5f) - lineTo(18.0f, 20.0f) - horizontalLineToRelative(1.75f) - curveToRelative(0.98f, 0.0f, 1.81f, -0.63f, 2.12f, -1.5f) - lineTo(18.0f, 18.5f) - close() - moveTo(22.0f, 16.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.26f, -0.04f, -0.51f, -0.1f, -0.75f) - lineTo(22.0f, 15.0f) - verticalLineToRelative(1.5f) - close() - } - } - return _videoBackgroundEffectHorizontal!! - } - -private var _videoBackgroundEffectHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoChat.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoChat.kt deleted file mode 100644 index 795cb29c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoChat.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VideoChat: ImageVector - get() { - if (_videoChat != null) { - return _videoChat!! - } - _videoChat = fluentIcon(name = "Filled.VideoChat") { - fluentPath { - moveTo(16.0f, 16.25f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-0.48f) - curveToRelative(0.47f, -0.9f, 0.73f, -1.92f, 0.73f, -3.0f) - curveToRelative(0.0f, -2.02f, -0.7f, -3.64f, -2.36f, -5.02f) - arcTo(5.99f, 5.99f, 0.0f, false, false, 6.5f, 10.0f) - curveToRelative(-1.75f, 0.0f, -3.33f, 0.69f, -4.5f, 1.81f) - lineTo(2.0f, 7.75f) - curveTo(2.0f, 5.95f, 3.46f, 4.5f, 5.25f, 4.5f) - horizontalLineToRelative(7.5f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(8.5f) - close() - moveTo(21.76f, 5.89f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.24f, 0.65f) - verticalLineToRelative(10.92f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.65f, 0.76f) - lineTo(17.0f, 15.37f) - lineTo(17.0f, 8.63f) - lineToRelative(3.35f, -2.85f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, 0.11f) - close() - moveTo(10.0f, 12.26f) - arcTo(5.48f, 5.48f, 0.0f, false, false, 6.5f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -4.81f, 8.17f) - lineToRelative(-0.67f, 2.19f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.63f, 0.62f) - lineToRelative(2.18f, -0.67f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 10.0f, 12.25f) - close() - moveTo(4.5f, 16.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - horizontalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(6.5f, 18.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - close() - } - } - return _videoChat!! - } - -private var _videoChat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoClip.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoClip.kt deleted file mode 100644 index d663b7a8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoClip.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VideoClip: ImageVector - get() { - if (_videoClip != null) { - return _videoClip!! - } - _videoClip = fluentIcon(name = "Filled.VideoClip") { - fluentPath { - moveTo(5.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(2.0f, 19.55f, 3.46f, 21.0f, 5.25f, 21.0f) - horizontalLineToRelative(13.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineTo(6.25f) - curveTo(22.0f, 4.45f, 20.54f, 3.0f, 18.75f, 3.0f) - horizontalLineTo(5.25f) - close() - moveTo(9.0f, 9.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.48f, -0.88f) - lineToRelative(5.0f, 2.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.76f) - lineToRelative(-5.0f, 2.75f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 9.0f, 14.75f) - verticalLineToRelative(-5.5f) - close() - } - } - return _videoClip!! - } - -private var _videoClip: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoClipMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoClipMultiple.kt deleted file mode 100644 index 422805d6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoClipMultiple.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VideoClipMultiple: ImageVector - get() { - if (_videoClipMultiple != null) { - return _videoClipMultiple!! - } - _videoClipMultiple = fluentIcon(name = "Filled.VideoClipMultiple") { - fluentPath { - moveTo(5.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 6.25f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(10.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-9.0f) - curveTo(19.0f, 4.45f, 17.54f, 3.0f, 15.75f, 3.0f) - horizontalLineTo(5.25f) - close() - moveTo(8.0f, 13.25f) - verticalLineToRelative(-5.5f) - curveToRelative(0.0f, -0.6f, 0.66f, -0.95f, 1.15f, -0.63f) - lineToRelative(4.62f, 2.96f) - curveToRelative(0.31f, 0.2f, 0.31f, 0.64f, 0.0f, 0.84f) - lineToRelative(-4.62f, 2.96f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 13.25f) - close() - moveTo(7.75f, 21.0f) - curveToRelative(-1.15f, 0.0f, -2.16f, -0.6f, -2.74f, -1.5f) - horizontalLineToRelative(11.24f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 20.0f, 15.75f) - verticalLineTo(6.01f) - curveToRelative(0.9f, 0.58f, 1.5f, 1.59f, 1.5f, 2.74f) - verticalLineToRelative(7.0f) - curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) - horizontalLineToRelative(-8.5f) - close() - } - } - return _videoClipMultiple!! - } - -private var _videoClipMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoClipOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoClipOff.kt deleted file mode 100644 index 82118fbf..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoClipOff.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VideoClipOff: ImageVector - get() { - if (_videoClipOff != null) { - return _videoClipOff!! - } - _videoClipOff = fluentIcon(name = "Filled.VideoClipOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(0.7f, 0.7f) - arcTo(3.24f, 3.24f, 0.0f, false, false, 2.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(2.0f, 19.55f, 3.46f, 21.0f, 5.25f, 21.0f) - horizontalLineToRelative(13.5f) - curveToRelative(0.36f, 0.0f, 0.7f, -0.06f, 1.02f, -0.16f) - lineToRelative(0.95f, 0.94f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(13.12f, 14.18f) - lineTo(10.48f, 15.63f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 9.0f, 14.75f) - verticalLineToRelative(-4.69f) - lineToRelative(4.12f, 4.12f) - close() - moveTo(15.48f, 11.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.31f, 1.5f) - lineToRelative(6.07f, 6.06f) - curveToRelative(0.1f, -0.3f, 0.14f, -0.6f, 0.14f, -0.93f) - lineTo(22.0f, 6.25f) - curveTo(22.0f, 4.45f, 20.54f, 3.0f, 18.75f, 3.0f) - lineTo(6.18f, 3.0f) - lineToRelative(6.69f, 6.69f) - lineToRelative(2.61f, 1.43f) - close() - } - } - return _videoClipOff!! - } - -private var _videoClipOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoOff.kt deleted file mode 100644 index 437e85e9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoOff.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VideoOff: ImageVector - get() { - if (_videoOff != null) { - return _videoOff!! - } - _videoOff = fluentIcon(name = "Filled.VideoOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.57f, 1.57f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.75f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(7.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 3.17f, -2.52f) - lineToRelative(4.8f, 4.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(17.0f, 13.82f) - lineToRelative(4.5f, 4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.5f, -0.86f) - verticalLineTo(6.54f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.65f, -0.76f) - lineTo(17.0f, 8.63f) - verticalLineToRelative(5.19f) - close() - moveTo(7.68f, 4.5f) - lineTo(16.0f, 12.82f) - verticalLineTo(7.75f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineTo(7.68f) - close() - } - } - return _videoOff!! - } - -private var _videoOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoPerson.kt deleted file mode 100644 index 286d27b6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoPerson.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VideoPerson: ImageVector - get() { - if (_videoPerson != null) { - return _videoPerson!! - } - _videoPerson = fluentIcon(name = "Filled.VideoPerson") { - fluentPath { - moveTo(19.75f, 4.0f) - curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(22.0f, 19.0f, 20.99f, 20.0f, 19.75f, 20.0f) - lineTo(4.25f, 20.0f) - curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) - lineTo(2.0f, 6.25f) - curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) - horizontalLineToRelative(15.5f) - close() - moveTo(19.75f, 5.5f) - lineTo(4.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(7.0f, 18.5f) - verticalLineToRelative(-2.75f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) - lineToRelative(0.15f, -0.01f) - horizontalLineToRelative(6.5f) - curveToRelative(0.91f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) - verticalLineToRelative(2.9f) - horizontalLineToRelative(2.76f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) - lineTo(20.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(12.0f, 7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) - close() - } - } - return _videoPerson!! - } - -private var _videoPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoPersonCall.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoPersonCall.kt deleted file mode 100644 index bfc3010f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoPersonCall.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VideoPersonCall: ImageVector - get() { - if (_videoPersonCall != null) { - return _videoPersonCall!! - } - _videoPersonCall = fluentIcon(name = "Filled.VideoPersonCall") { - fluentPath { - moveTo(22.0f, 6.25f) - curveTo(22.0f, 5.01f, 20.99f, 4.0f, 19.75f, 4.0f) - lineTo(4.25f, 4.0f) - curveTo(3.01f, 4.0f, 2.0f, 5.0f, 2.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(2.0f, 19.0f, 3.0f, 20.0f, 4.25f, 20.0f) - horizontalLineToRelative(9.76f) - curveToRelative(0.03f, -0.42f, 0.2f, -0.84f, 0.48f, -1.2f) - lineToRelative(0.8f, -1.01f) - arcToRelative(2.2f, 2.2f, 0.0f, false, true, 1.7f, -0.83f) - lineTo(16.99f, 15.6f) - curveToRelative(-0.07f, -0.9f, -0.83f, -1.61f, -1.75f, -1.61f) - lineTo(8.61f, 13.99f) - curveToRelative(-0.9f, 0.08f, -1.61f, 0.83f, -1.61f, 1.75f) - verticalLineToRelative(2.75f) - lineTo(4.25f, 18.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(3.5f, 6.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(15.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(3.77f) - curveToRelative(0.33f, -0.05f, 0.68f, -0.02f, 1.02f, 0.1f) - lineToRelative(0.44f, 0.13f) - lineToRelative(0.04f, 0.01f) - lineTo(22.0f, 6.25f) - close() - moveTo(15.0f, 10.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, -6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 6.0f, 0.0f) - close() - moveTo(19.2f, 13.0f) - lineTo(19.67f, 11.79f) - curveToRelative(0.24f, -0.61f, 0.92f, -0.93f, 1.55f, -0.73f) - lineToRelative(0.43f, 0.14f) - curveToRelative(0.72f, 0.24f, 1.32f, 0.8f, 1.35f, 1.57f) - curveToRelative(0.1f, 3.11f, -2.48f, 7.58f, -5.22f, 9.06f) - curveToRelative(-0.67f, 0.36f, -1.46f, 0.12f, -2.03f, -0.4f) - lineToRelative(-0.34f, -0.3f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.14f, -1.7f) - lineToRelative(0.8f, -1.02f) - arcToRelative(1.2f, 1.2f, 0.0f, false, true, 1.22f, -0.42f) - lineToRelative(1.3f, 0.32f) - arcToRelative(3.78f, 3.78f, 0.0f, false, false, 1.77f, -3.08f) - lineToRelative(-0.92f, -0.96f) - arcToRelative(1.2f, 1.2f, 0.0f, false, true, -0.25f, -1.28f) - close() - } - } - return _videoPersonCall!! - } - -private var _videoPersonCall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoPersonClock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoPersonClock.kt deleted file mode 100644 index ced8ba1a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoPersonClock.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VideoPersonClock: ImageVector - get() { - if (_videoPersonClock != null) { - return _videoPersonClock!! - } - _videoPersonClock = fluentIcon(name = "Filled.VideoPersonClock") { - fluentPath { - moveTo(22.0f, 5.25f) - curveTo(22.0f, 4.01f, 20.99f, 3.0f, 19.75f, 3.0f) - lineTo(4.25f, 3.0f) - curveTo(3.01f, 3.0f, 2.0f, 4.0f, 2.0f, 5.25f) - verticalLineToRelative(11.5f) - curveTo(2.0f, 18.0f, 3.0f, 19.0f, 4.25f, 19.0f) - horizontalLineToRelative(6.93f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, 1.63f, -6.0f) - lineTo(8.61f, 13.0f) - curveToRelative(-0.9f, 0.08f, -1.61f, 0.83f, -1.61f, 1.75f) - verticalLineToRelative(2.75f) - lineTo(4.25f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(3.5f, 5.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(15.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(6.48f) - curveToRelative(0.55f, 0.29f, 1.05f, 0.65f, 1.5f, 1.08f) - lineTo(22.0f, 5.25f) - close() - moveTo(15.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, -6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 6.0f, 0.0f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(19.5f, 17.5f) - horizontalLineToRelative(-2.0f) - lineTo(17.5f, 15.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - close() - } - } - return _videoPersonClock!! - } - -private var _videoPersonClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoPersonOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoPersonOff.kt deleted file mode 100644 index 489e679e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoPersonOff.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VideoPersonOff: ImageVector - get() { - if (_videoPersonOff != null) { - return _videoPersonOff!! - } - _videoPersonOff = fluentIcon(name = "Filled.VideoPersonOff") { - fluentPath { - moveTo(2.22f, 2.22f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(18.5f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineTo(18.94f, 20.0f) - lineTo(4.25f, 20.0f) - curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) - lineTo(2.0f, 6.25f) - curveToRelative(0.0f, -0.86f, 0.49f, -1.61f, 1.2f, -1.99f) - lineToRelative(-0.98f, -0.98f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - moveTo(11.94f, 13.0f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 9.0f, 10.06f) - lineTo(4.44f, 5.5f) - horizontalLineToRelative(-0.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(7.0f, 18.5f) - verticalLineToRelative(-2.75f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) - lineToRelative(0.15f, -0.01f) - horizontalLineToRelative(4.19f) - lineToRelative(-1.0f, -1.0f) - close() - moveTo(14.63f, 11.45f) - lineTo(10.55f, 7.37f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 4.08f, 4.08f) - close() - moveTo(20.5f, 17.31f) - lineTo(20.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(8.68f, 5.5f) - lineTo(7.18f, 4.0f) - horizontalLineToRelative(12.57f) - curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.32f, -0.07f, 0.61f, -0.18f, 0.89f) - lineTo(20.5f, 17.3f) - close() - } - } - return _videoPersonOff!! - } - -private var _videoPersonOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoPersonSparkle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoPersonSparkle.kt deleted file mode 100644 index 8587901c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoPersonSparkle.kt +++ /dev/null @@ -1,101 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VideoPersonSparkle: ImageVector - get() { - if (_videoPersonSparkle != null) { - return _videoPersonSparkle!! - } - _videoPersonSparkle = fluentIcon(name = "Filled.VideoPersonSparkle") { - fluentPath { - moveTo(4.3f, 4.0f) - horizontalLineToRelative(15.45f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 22.0f, 6.25f) - verticalLineToRelative(11.5f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 19.75f, 20.0f) - lineTo(4.25f, 20.0f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 2.0f, 17.75f) - verticalLineToRelative(-7.2f) - curveToRelative(0.06f, 0.07f, 0.13f, 0.14f, 0.21f, 0.2f) - arcToRelative(1.38f, 1.38f, 0.0f, false, false, 1.29f, 0.14f) - verticalLineToRelative(6.86f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, 0.75f) - lineTo(7.0f, 18.5f) - verticalLineToRelative(-2.76f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 8.6f, 14.0f) - horizontalLineToRelative(6.65f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 1.74f, 1.6f) - verticalLineToRelative(2.89f) - horizontalLineToRelative(2.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, -0.75f) - lineTo(20.5f, 6.24f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.74f) - lineTo(5.42f, 5.5f) - lineToRelative(-0.28f, -0.1f) - arcToRelative(0.9f, 0.9f, 0.0f, false, true, -0.57f, -0.55f) - lineTo(4.3f, 4.0f) - close() - moveTo(14.12f, 7.88f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, -4.24f, 4.24f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 4.24f, -4.24f) - close() - moveTo(2.36f, 8.84f) - lineTo(2.66f, 9.76f) - arcToRelative(0.36f, 0.36f, 0.0f, false, false, 0.68f, 0.02f) - verticalLineToRelative(-0.02f) - lineToRelative(0.3f, -0.92f) - arcToRelative(1.88f, 1.88f, 0.0f, false, true, 1.2f, -1.2f) - lineToRelative(0.92f, -0.3f) - arcToRelative(0.36f, 0.36f, 0.0f, false, false, 0.0f, -0.68f) - horizontalLineToRelative(-0.02f) - lineToRelative(-0.92f, -0.3f) - arcToRelative(1.9f, 1.9f, 0.0f, false, true, -1.2f, -1.2f) - lineToRelative(-0.3f, -0.92f) - arcToRelative(0.36f, 0.36f, 0.0f, false, false, -0.55f, -0.17f) - curveToRelative(-0.06f, 0.04f, -0.1f, 0.1f, -0.13f, 0.17f) - lineToRelative(-0.3f, 0.92f) - verticalLineToRelative(0.02f) - arcToRelative(1.9f, 1.9f, 0.0f, false, true, -1.18f, 1.18f) - lineToRelative(-0.92f, 0.3f) - arcToRelative(0.36f, 0.36f, 0.0f, false, false, -0.17f, 0.55f) - curveToRelative(0.04f, 0.06f, 0.1f, 0.1f, 0.17f, 0.13f) - lineToRelative(0.92f, 0.3f) - arcToRelative(1.9f, 1.9f, 0.0f, false, true, 1.2f, 1.2f) - close() - moveTo(4.89f, 10.54f) - lineTo(5.43f, 10.37f) - arcToRelative(1.12f, 1.12f, 0.0f, false, false, 0.68f, -0.7f) - lineToRelative(0.18f, -0.53f) - arcTo(0.22f, 0.22f, 0.0f, false, true, 6.4f, 9.0f) - arcToRelative(0.2f, 0.2f, 0.0f, false, true, 0.2f, 0.03f) - lineToRelative(0.03f, 0.03f) - lineToRelative(0.05f, 0.07f) - lineToRelative(0.17f, 0.54f) - arcToRelative(1.1f, 1.1f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(0.54f, 0.17f) - lineToRelative(0.04f, 0.02f) - arcToRelative(0.21f, 0.21f, 0.0f, false, true, 0.1f, 0.18f) - arcToRelative(0.21f, 0.21f, 0.0f, false, true, -0.14f, 0.2f) - lineToRelative(-0.53f, 0.17f) - arcToRelative(1.1f, 1.1f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(-0.17f, 0.54f) - arcToRelative(0.22f, 0.22f, 0.0f, false, true, -0.08f, 0.1f) - arcToRelative(0.21f, 0.21f, 0.0f, false, true, -0.32f, -0.1f) - lineToRelative(-0.17f, -0.54f) - arcToRelative(1.1f, 1.1f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-0.54f, -0.17f) - arcToRelative(0.21f, 0.21f, 0.0f, false, true, -0.1f, -0.32f) - arcToRelative(0.2f, 0.2f, 0.0f, false, true, 0.1f, -0.08f) - close() - } - } - return _videoPersonSparkle!! - } - -private var _videoPersonSparkle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoPersonStar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoPersonStar.kt deleted file mode 100644 index 32d0db3e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoPersonStar.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VideoPersonStar: ImageVector - get() { - if (_videoPersonStar != null) { - return _videoPersonStar!! - } - _videoPersonStar = fluentIcon(name = "Filled.VideoPersonStar") { - fluentPath { - moveTo(19.75f, 4.0f) - curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) - verticalLineToRelative(6.56f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) - lineTo(20.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(4.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(7.0f, 18.5f) - verticalLineToRelative(-2.75f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) - lineToRelative(0.15f, -0.01f) - horizontalLineToRelative(3.27f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, -0.52f, 6.0f) - lineTo(4.25f, 20.0f) - curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) - lineTo(2.0f, 6.25f) - curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) - horizontalLineToRelative(15.5f) - close() - moveTo(12.0f, 7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(18.06f, 14.42f) - arcToRelative(0.58f, 0.58f, 0.0f, false, false, -1.12f, 0.0f) - lineToRelative(-0.55f, 1.79f) - horizontalLineToRelative(-1.8f) - curveToRelative(-0.57f, 0.0f, -0.8f, 0.75f, -0.35f, 1.1f) - lineToRelative(1.46f, 1.1f) - lineToRelative(-0.56f, 1.79f) - curveToRelative(-0.17f, 0.56f, 0.44f, 1.03f, 0.9f, 0.68f) - lineToRelative(1.46f, -1.1f) - lineToRelative(1.46f, 1.1f) - curveToRelative(0.46f, 0.35f, 1.07f, -0.12f, 0.9f, -0.68f) - lineToRelative(-0.56f, -1.79f) - lineToRelative(1.46f, -1.1f) - curveToRelative(0.46f, -0.35f, 0.22f, -1.1f, -0.35f, -1.1f) - horizontalLineToRelative(-1.8f) - lineToRelative(-0.55f, -1.79f) - close() - } - } - return _videoPersonStar!! - } - -private var _videoPersonStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoPersonStarOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoPersonStarOff.kt deleted file mode 100644 index 0889f08f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoPersonStarOff.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VideoPersonStarOff: ImageVector - get() { - if (_videoPersonStarOff != null) { - return _videoPersonStarOff!! - } - _videoPersonStarOff = fluentIcon(name = "Filled.VideoPersonStarOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(0.98f, 0.98f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(2.0f, 19.0f, 3.0f, 20.0f, 4.25f, 20.0f) - horizontalLineToRelative(7.25f) - arcToRelative(6.48f, 6.48f, 0.0f, false, true, 0.52f, -6.0f) - lineTo(8.61f, 14.0f) - curveToRelative(-0.9f, 0.08f, -1.61f, 0.83f, -1.61f, 1.75f) - verticalLineToRelative(2.75f) - lineTo(4.25f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(3.5f, 6.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(0.19f) - lineTo(9.0f, 10.06f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 11.94f, 13.0f) - lineToRelative(1.18f, 1.18f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 7.72f, 7.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.94f, -1.16f) - lineTo(3.28f, 2.22f) - close() - moveTo(19.74f, 20.8f) - arcToRelative(0.56f, 0.56f, 0.0f, false, true, -0.78f, 0.08f) - lineToRelative(-1.46f, -1.1f) - lineToRelative(-1.46f, 1.1f) - curveToRelative(-0.46f, 0.35f, -1.07f, -0.12f, -0.9f, -0.68f) - lineToRelative(0.56f, -1.79f) - lineToRelative(-1.46f, -1.1f) - curveToRelative(-0.46f, -0.35f, -0.22f, -1.1f, 0.35f, -1.1f) - horizontalLineToRelative(0.56f) - lineToRelative(4.59f, 4.59f) - close() - moveTo(10.55f, 7.37f) - lineToRelative(4.08f, 4.08f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -4.08f, -4.08f) - close() - moveTo(15.55f, 12.36f) - lineTo(17.25f, 14.06f) - curveToRelative(0.29f, -0.15f, 0.68f, -0.03f, 0.8f, 0.36f) - lineToRelative(0.21f, 0.66f) - lineToRelative(1.13f, 1.13f) - horizontalLineToRelative(1.02f) - curveToRelative(0.57f, 0.0f, 0.8f, 0.75f, 0.35f, 1.1f) - lineToRelative(-0.15f, 0.11f) - lineToRelative(2.03f, 2.04f) - arcTo(5.49f, 5.49f, 0.0f, false, false, 17.5f, 12.0f) - curveToRelative(-0.69f, 0.0f, -1.35f, 0.13f, -1.96f, 0.36f) - close() - moveTo(7.17f, 4.0f) - lineToRelative(1.5f, 1.5f) - horizontalLineToRelative(11.07f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(5.48f) - curveToRelative(0.55f, 0.29f, 1.05f, 0.65f, 1.5f, 1.08f) - lineTo(21.99f, 6.25f) - curveTo(22.0f, 5.01f, 20.99f, 4.0f, 19.75f, 4.0f) - lineTo(7.18f, 4.0f) - close() - } - } - return _videoPersonStarOff!! - } - -private var _videoPersonStarOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoPlayPause.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoPlayPause.kt deleted file mode 100644 index b4881f01..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoPlayPause.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VideoPlayPause: ImageVector - get() { - if (_videoPlayPause != null) { - return _videoPlayPause!! - } - _videoPlayPause = fluentIcon(name = "Filled.VideoPlayPause") { - fluentPath { - moveTo(12.0f, 7.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(1.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-1.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-4.13f) - curveToRelative(-0.02f, 0.55f, -0.3f, 1.1f, -0.84f, 1.42f) - lineToRelative(-6.5f, 3.95f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 2.0f, 15.99f) - lineTo(2.0f, 8.0f) - curveToRelative(0.0f, -1.37f, 1.5f, -2.2f, 2.67f, -1.48f) - lineToRelative(6.5f, 4.03f) - curveToRelative(0.53f, 0.33f, 0.8f, 0.87f, 0.83f, 1.41f) - lineTo(12.0f, 7.75f) - close() - moveTo(18.0f, 7.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(1.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-1.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-8.5f) - close() - } - } - return _videoPlayPause!! - } - -private var _videoPlayPause: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoProhibited.kt deleted file mode 100644 index 30929ae0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoProhibited.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VideoProhibited: ImageVector - get() { - if (_videoProhibited != null) { - return _videoProhibited!! - } - _videoProhibited = fluentIcon(name = "Filled.VideoProhibited") { - fluentPath { - moveTo(11.0f, 17.5f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, 5.0f, -6.33f) - lineTo(16.0f, 8.25f) - curveTo(16.0f, 6.45f, 14.54f, 5.0f, 12.75f, 5.0f) - horizontalLineToRelative(-7.5f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 8.25f) - verticalLineToRelative(8.5f) - curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) - horizontalLineToRelative(6.25f) - arcToRelative(6.48f, 6.48f, 0.0f, false, true, -0.5f, -2.5f) - close() - moveTo(17.5f, 11.0f) - curveToRelative(1.75f, 0.0f, 3.33f, 0.69f, 4.5f, 1.81f) - lineTo(22.0f, 7.04f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.65f, -0.76f) - lineTo(17.0f, 9.13f) - verticalLineToRelative(1.89f) - lineToRelative(0.5f, -0.02f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(13.5f, 17.5f) - curveToRelative(0.0f, 0.83f, 0.26f, 1.6f, 0.7f, 2.25f) - lineToRelative(5.55f, -5.56f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) - close() - moveTo(17.5f, 21.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) - lineToRelative(-5.55f, 5.56f) - curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) - close() - } - } - return _videoProhibited!! - } - -private var _videoProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoSecurity.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoSecurity.kt deleted file mode 100644 index d1370300..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoSecurity.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VideoSecurity: ImageVector - get() { - if (_videoSecurity != null) { - return _videoSecurity!! - } - _videoSecurity = fluentIcon(name = "Filled.VideoSecurity") { - fluentPath { - moveTo(2.0f, 6.25f) - curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(8.5f) - curveTo(15.55f, 3.0f, 17.0f, 4.46f, 17.0f, 6.25f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-8.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 12.75f) - verticalLineToRelative(-6.5f) - close() - moveTo(21.62f, 3.6f) - curveToRelative(0.23f, 0.13f, 0.38f, 0.38f, 0.38f, 0.65f) - verticalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.14f, 0.64f) - lineTo(18.0f, 13.67f) - verticalLineTo(5.33f) - lineToRelative(2.86f, -1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.76f, -0.01f) - close() - moveTo(8.14f, 17.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.39f, 1.75f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(1.6f) - curveToRelative(0.0f, 0.5f, 0.4f, 0.9f, 0.9f, 0.9f) - horizontalLineToRelative(1.94f) - curveToRelative(3.0f, 0.0f, 5.51f, -2.15f, 6.05f, -5.0f) - horizontalLineTo(8.14f) - close() - } - } - return _videoSecurity!! - } - -private var _videoSecurity: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoSwitch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoSwitch.kt deleted file mode 100644 index b2c130bd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/VideoSwitch.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.VideoSwitch: ImageVector - get() { - if (_videoSwitch != null) { - return _videoSwitch!! - } - _videoSwitch = fluentIcon(name = "Filled.VideoSwitch") { - fluentPath { - moveTo(4.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 6.75f, 3.0f) - horizontalLineToRelative(5.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 15.0f, 5.75f) - verticalLineToRelative(6.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 12.25f, 15.0f) - horizontalLineToRelative(-5.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.0f, 12.25f) - verticalLineToRelative(-6.5f) - close() - moveTo(4.2f, 14.99f) - curveToRelative(-0.42f, 0.15f, -0.79f, 0.3f, -1.1f, 0.48f) - curveToRelative(-0.5f, 0.3f, -1.1f, 0.78f, -1.1f, 1.53f) - reflectiveCurveToRelative(0.6f, 1.24f, 1.1f, 1.53f) - curveToRelative(0.56f, 0.32f, 1.31f, 0.58f, 2.18f, 0.79f) - curveToRelative(1.74f, 0.42f, 4.09f, 0.68f, 6.66f, 0.68f) - lineToRelative(-0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineToRelative(2.0f, -2.0f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(0.72f, 0.72f) - arcToRelative(28.2f, 28.2f, 0.0f, false, true, -6.3f, -0.64f) - curveToRelative(-0.81f, -0.2f, -1.4f, -0.42f, -1.79f, -0.63f) - curveToRelative(-0.17f, -0.1f, -0.27f, -0.18f, -0.31f, -0.23f) - curveToRelative(0.04f, -0.05f, 0.14f, -0.12f, 0.31f, -0.23f) - curveToRelative(0.38f, -0.21f, 0.98f, -0.44f, 1.79f, -0.63f) - curveToRelative(0.22f, -0.06f, 0.47f, -0.11f, 0.72f, -0.16f) - arcToRelative(3.74f, 3.74f, 0.0f, false, true, -2.17f, -0.99f) - close() - moveTo(14.02f, 15.56f) - curveToRelative(1.7f, 0.09f, 3.19f, 0.3f, 4.34f, 0.58f) - curveToRelative(0.81f, 0.2f, 1.4f, 0.42f, 1.79f, 0.63f) - curveToRelative(0.17f, 0.1f, 0.27f, 0.18f, 0.31f, 0.23f) - lineToRelative(-0.01f, 0.01f) - curveToRelative(-0.1f, 0.1f, -0.3f, 0.23f, -0.6f, 0.37f) - curveToRelative(-0.62f, 0.28f, -1.55f, 0.54f, -2.72f, 0.73f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.24f, 1.48f) - curveToRelative(1.24f, -0.2f, 2.31f, -0.49f, 3.1f, -0.84f) - curveToRelative(0.38f, -0.18f, 0.74f, -0.4f, 1.01f, -0.65f) - curveToRelative(0.27f, -0.26f, 0.52f, -0.63f, 0.52f, -1.1f) - curveToRelative(0.0f, -0.75f, -0.6f, -1.24f, -1.1f, -1.53f) - arcToRelative(8.56f, 8.56f, 0.0f, false, false, -2.18f, -0.79f) - curveToRelative(-0.93f, -0.22f, -2.03f, -0.4f, -3.24f, -0.52f) - arcToRelative(3.77f, 3.77f, 0.0f, false, true, -1.46f, 1.4f) - close() - moveTo(20.51f, 16.94f) - close() - moveTo(20.0f, 5.24f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.22f, -0.58f) - lineTo(16.0f, 6.89f) - verticalLineToRelative(4.22f) - lineToRelative(2.78f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.22f, -0.58f) - verticalLineToRelative(-7.5f) - close() - } - } - return _videoSwitch!! - } - -private var _videoSwitch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ViewDesktop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ViewDesktop.kt deleted file mode 100644 index 098c9d39..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ViewDesktop.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ViewDesktop: ImageVector - get() { - if (_viewDesktop != null) { - return _viewDesktop!! - } - _viewDesktop = fluentIcon(name = "Filled.ViewDesktop") { - fluentPath { - moveTo(19.75f, 3.0f) - curveToRelative(1.19f, 0.0f, 2.16f, 0.93f, 2.24f, 2.1f) - verticalLineToRelative(10.65f) - curveToRelative(0.0f, 1.2f, -0.92f, 2.17f, -2.09f, 2.25f) - horizontalLineToRelative(-4.4f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(8.5f, 20.5f) - lineTo(8.5f, 18.0f) - lineTo(4.25f, 18.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) - lineTo(2.0f, 15.76f) - lineTo(2.0f, 5.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 3.0f) - horizontalLineToRelative(15.5f) - close() - moveTo(14.0f, 18.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(4.0f) - lineTo(14.0f, 18.0f) - close() - moveTo(18.5f, 6.0f) - horizontalLineToRelative(-9.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(9.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-8.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(7.5f, 6.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-8.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - } - } - return _viewDesktop!! - } - -private var _viewDesktop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ViewDesktopMobile.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ViewDesktopMobile.kt deleted file mode 100644 index 08c5ddc3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ViewDesktopMobile.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ViewDesktopMobile: ImageVector - get() { - if (_viewDesktopMobile != null) { - return _viewDesktopMobile!! - } - _viewDesktopMobile = fluentIcon(name = "Filled.ViewDesktopMobile") { - fluentPath { - moveTo(15.75f, 2.0f) - curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-7.5f) - curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) - lineTo(6.0f, 4.25f) - curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(13.25f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - horizontalLineToRelative(2.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(14.5f, 9.0f) - horizontalLineToRelative(-5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(14.5f, 5.0f) - horizontalLineToRelative(-5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.27f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - } - } - return _viewDesktopMobile!! - } - -private var _viewDesktopMobile: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Voicemail.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Voicemail.kt deleted file mode 100644 index abfa907c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Voicemail.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Voicemail: ImageVector - get() { - if (_voicemail != null) { - return _voicemail!! - } - _voicemail = fluentIcon(name = "Filled.Voicemail") { - fluentPath { - moveTo(19.75f, 4.0f) - curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(22.0f, 19.0f, 21.0f, 20.0f, 19.75f, 20.0f) - lineTo(4.25f, 20.0f) - curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) - lineTo(2.0f, 6.25f) - curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) - horizontalLineToRelative(15.5f) - close() - moveTo(15.75f, 9.0f) - lineTo(7.82f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 2.88f, 1.7f) - lineToRelative(-0.1f, -0.2f) - horizontalLineToRelative(2.8f) - arcTo(3.0f, 3.0f, 0.0f, true, false, 16.18f, 9.0f) - horizontalLineToRelative(-0.43f) - close() - moveTo(8.0f, 10.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(16.0f, 10.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - } - } - return _voicemail!! - } - -private var _voicemail: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Vote.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Vote.kt deleted file mode 100644 index 43321c37..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Vote.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Vote: ImageVector - get() { - if (_vote != null) { - return _vote!! - } - _vote = fluentIcon(name = "Filled.Vote") { - fluentPath { - moveToRelative(21.94f, 14.47f) - lineToRelative(0.03f, 0.06f) - lineToRelative(0.02f, 0.1f) - lineTo(21.99f, 21.25f) - curveToRelative(0.0f, 0.38f, -0.27f, 0.7f, -0.64f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(2.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - lineTo(2.0f, 14.7f) - lineToRelative(0.01f, -0.09f) - lineToRelative(0.05f, -0.15f) - lineToRelative(2.76f, -6.02f) - curveToRelative(0.1f, -0.23f, 0.32f, -0.4f, 0.57f, -0.43f) - horizontalLineToRelative(2.65f) - lineToRelative(-0.79f, 1.36f) - lineToRelative(-0.07f, 0.13f) - horizontalLineToRelative(-1.2f) - lineTo(3.92f, 14.0f) - horizontalLineToRelative(16.15f) - lineToRelative(-2.03f, -4.35f) - lineToRelative(0.87f, -1.5f) - curveToRelative(0.06f, 0.06f, 0.12f, 0.12f, 0.17f, 0.2f) - lineToRelative(0.05f, 0.09f) - lineToRelative(2.81f, 6.03f) - close() - moveTo(13.37f, 2.06f) - lineToRelative(0.09f, 0.04f) - lineToRelative(5.18f, 3.0f) - curveToRelative(0.33f, 0.2f, 0.46f, 0.6f, 0.32f, 0.94f) - lineToRelative(-0.04f, 0.09f) - lineToRelative(-2.8f, 4.87f) - horizontalLineToRelative(1.13f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(8.57f, 11.0f) - lineToRelative(-0.18f, -0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.32f, -0.94f) - lineToRelative(0.05f, -0.09f) - lineToRelative(4.31f, -7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.94f, -0.31f) - close() - moveTo(13.36f, 3.78f) - lineTo(9.79f, 9.98f) - lineTo(11.57f, 11.0f) - horizontalLineToRelative(2.81f) - lineToRelative(2.87f, -4.97f) - lineToRelative(-3.9f, -2.25f) - close() - } - } - return _vote!! - } - -private var _vote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WalkieTalkie.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WalkieTalkie.kt deleted file mode 100644 index 201e64cf..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WalkieTalkie.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WalkieTalkie: ImageVector - get() { - if (_walkieTalkie != null) { - return _walkieTalkie!! - } - _walkieTalkie = fluentIcon(name = "Filled.WalkieTalkie") { - fluentPath { - moveTo(9.5f, 7.5f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(-5.0f) - close() - moveTo(8.75f, 1.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(9.5f, 3.0f) - horizontalLineToRelative(7.25f) - curveTo(17.99f, 3.0f, 19.0f, 4.0f, 19.0f, 5.25f) - lineTo(19.0f, 14.0f) - curveToRelative(0.0f, 0.19f, -0.07f, 0.37f, -0.2f, 0.5f) - lineToRelative(-1.3f, 1.42f) - verticalLineToRelative(3.83f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-6.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-3.83f) - lineTo(5.2f, 14.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 5.0f, 14.0f) - lineTo(5.0f, 5.25f) - curveTo(5.0f, 4.01f, 6.0f, 3.0f, 7.25f, 3.0f) - lineTo(8.0f, 3.0f) - lineTo(8.0f, 1.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(8.0f, 6.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(6.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(9.5f, 14.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - } - } - return _walkieTalkie!! - } - -private var _walkieTalkie: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Wallet.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Wallet.kt deleted file mode 100644 index 723d6242..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Wallet.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Wallet: ImageVector - get() { - if (_wallet != null) { - return _wallet!! - } - _wallet = fluentIcon(name = "Filled.Wallet") { - fluentPath { - moveTo(3.0f, 5.0f) - verticalLineToRelative(12.75f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(12.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-8.5f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 19.0f, 6.09f) - verticalLineToRelative(-0.84f) - curveTo(19.0f, 4.01f, 18.0f, 3.0f, 16.75f, 3.0f) - lineTo(5.25f, 3.0f) - curveToRelative(-1.16f, 0.0f, -2.11f, 0.88f, -2.24f, 2.0f) - lineTo(3.0f, 5.0f) - close() - moveTo(5.25f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(11.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(17.5f, 6.0f) - lineTo(5.25f, 6.0f) - close() - moveTo(16.25f, 13.0f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - } - } - return _wallet!! - } - -private var _wallet: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WalletCreditCard.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WalletCreditCard.kt deleted file mode 100644 index 084448ce..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WalletCreditCard.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WalletCreditCard: ImageVector - get() { - if (_walletCreditCard != null) { - return _walletCreditCard!! - } - _walletCreditCard = fluentIcon(name = "Filled.WalletCreditCard") { - fluentPath { - moveTo(14.36f, 2.6f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, 0.36f, -0.04f) - lineToRelative(0.92f, 0.81f) - lineTo(12.74f, 7.0f) - horizontalLineToRelative(1.92f) - lineToRelative(2.1f, -2.63f) - lineToRelative(1.66f, 1.45f) - curveToRelative(0.1f, 0.1f, 0.11f, 0.25f, 0.02f, 0.35f) - lineToRelative(-0.69f, 0.83f) - horizontalLineToRelative(1.95f) - curveToRelative(0.5f, -0.72f, 0.38f, -1.71f, -0.3f, -2.3f) - lineToRelative(-3.69f, -3.26f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.53f, 0.23f) - lineTo(8.98f, 7.0f) - horizontalLineToRelative(1.9f) - lineToRelative(3.48f, -4.4f) - close() - moveTo(5.25f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(13.0f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-12.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 7.25f) - curveTo(3.0f, 6.01f, 4.0f, 5.0f, 5.25f, 5.0f) - horizontalLineToRelative(4.32f) - lineToRelative(-1.2f, 1.5f) - lineTo(5.26f, 6.5f) - close() - moveTo(15.5f, 14.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - } - } - return _walletCreditCard!! - } - -private var _walletCreditCard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Wallpaper.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Wallpaper.kt deleted file mode 100644 index 2fcec711..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Wallpaper.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Wallpaper: ImageVector - get() { - if (_wallpaper != null) { - return _wallpaper!! - } - _wallpaper = fluentIcon(name = "Filled.Wallpaper") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - lineTo(10.0f, 3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(6.25f, 5.0f) - curveTo(5.56f, 5.0f, 5.0f, 5.56f, 5.0f, 6.25f) - lineTo(5.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(3.0f, 6.25f) - close() - moveTo(13.0f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(3.75f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - lineTo(21.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - lineTo(19.0f, 6.25f) - curveTo(19.0f, 5.56f, 18.44f, 5.0f, 17.75f, 5.0f) - lineTo(14.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(4.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(3.59f) - lineToRelative(4.53f, -4.53f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 4.94f, 0.0f) - lineTo(19.0f, 17.6f) - lineTo(19.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(3.75f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(14.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(3.59f) - lineToRelative(-4.53f, -4.53f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.12f, 0.0f) - lineTo(6.4f, 19.0f) - lineTo(10.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(17.5f, 8.75f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.5f, 0.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.5f, 0.0f) - close() - } - } - return _wallpaper!! - } - -private var _wallpaper: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Wand.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Wand.kt deleted file mode 100644 index cc1a1e73..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Wand.kt +++ /dev/null @@ -1,121 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Wand: ImageVector - get() { - if (_wand != null) { - return _wand!! - } - _wand = fluentIcon(name = "Filled.Wand") { - fluentPath { - moveToRelative(11.4f, 9.46f) - lineToRelative(-8.7f, 8.72f) - arcToRelative(2.27f, 2.27f, 0.0f, false, false, 3.2f, 3.2f) - lineToRelative(8.71f, -8.7f) - lineToRelative(-3.2f, -3.22f) - close() - moveTo(16.85f, 15.01f) - lineTo(16.75f, 15.0f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(-0.75f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - lineTo(16.0f, 18.0f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - lineTo(17.5f, 18.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-0.75f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(0.1f) - close() - moveTo(13.31f, 7.57f) - lineTo(13.18f, 7.69f) - lineTo(12.47f, 8.4f) - lineTo(15.67f, 11.61f) - lineTo(16.39f, 10.9f) - curveToRelative(0.88f, -0.88f, 0.88f, -2.3f, 0.0f, -3.18f) - lineToRelative(-0.16f, -0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.92f, 0.0f) - close() - moveTo(6.85f, 5.0f) - lineTo(6.75f, 5.0f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(-0.75f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - lineTo(6.0f, 8.0f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - lineTo(7.5f, 8.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - lineTo(7.5f, 6.5f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineTo(6.75f, 5.0f) - horizontalLineToRelative(0.1f) - close() - moveTo(18.85f, 3.0f) - lineTo(18.75f, 2.99f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(-0.75f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - lineTo(18.0f, 5.99f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - lineTo(19.5f, 6.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-0.75f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(0.1f) - close() - } - } - return _wand!! - } - -private var _wand: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Washer.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Washer.kt deleted file mode 100644 index dce95fd5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Washer.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Washer: ImageVector - get() { - if (_washer != null) { - return _washer!! - } - _washer = fluentIcon(name = "Filled.Washer") { - fluentPath { - moveTo(8.25f, 13.75f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 7.45f, -0.64f) - curveToRelative(-0.17f, 0.15f, -0.37f, 0.3f, -0.64f, 0.42f) - curveToRelative(-0.54f, 0.23f, -1.42f, 0.37f, -2.94f, -0.02f) - curveToRelative(-1.7f, -0.42f, -2.84f, -0.17f, -3.64f, 0.33f) - lineToRelative(-0.22f, 0.15f) - lineToRelative(-0.01f, -0.24f) - close() - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(8.0f, 7.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - close() - moveTo(12.0f, 6.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(12.0f, 8.5f) - arcTo(5.25f, 5.25f, 0.0f, true, true, 12.0f, 19.0f) - arcToRelative(5.25f, 5.25f, 0.0f, false, true, 0.0f, -10.5f) - close() - } - } - return _washer!! - } - -private var _washer: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Water.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Water.kt deleted file mode 100644 index 1e14e9d1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Water.kt +++ /dev/null @@ -1,116 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Water: ImageVector - get() { - if (_water != null) { - return _water!! - } - _water = fluentIcon(name = "Filled.Water") { - fluentPath { - moveTo(18.46f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.93f, 0.55f) - arcTo(4.57f, 4.57f, 0.0f, false, false, 21.2f, 6.0f) - lineToRelative(0.12f, 0.06f) - horizontalLineToRelative(0.02f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.64f, 1.9f) - horizontalLineToRelative(-0.01f) - lineToRelative(-0.01f, -0.01f) - lineToRelative(-0.03f, -0.01f) - arcToRelative(2.55f, 2.55f, 0.0f, false, true, -0.34f, -0.15f) - arcToRelative(6.1f, 6.1f, 0.0f, false, true, -1.75f, -1.4f) - arcTo(4.27f, 4.27f, 0.0f, false, true, 15.25f, 8.0f) - curveToRelative(-1.23f, 0.0f, -2.39f, -0.55f, -3.25f, -1.56f) - arcTo(4.26f, 4.26f, 0.0f, false, true, 8.75f, 8.0f) - arcToRelative(4.27f, 4.27f, 0.0f, false, true, -3.3f, -1.62f) - arcToRelative(6.12f, 6.12f, 0.0f, false, true, -2.0f, 1.52f) - lineToRelative(-0.09f, 0.03f) - lineToRelative(-0.02f, 0.01f) - horizontalLineToRelative(-0.02f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.65f, -1.88f) - lineToRelative(0.02f, -0.01f) - lineTo(2.8f, 6.0f) - curveToRelative(0.11f, -0.06f, 0.28f, -0.15f, 0.48f, -0.3f) - curveToRelative(0.39f, -0.3f, 0.9f, -0.8f, 1.33f, -1.65f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.82f, 0.08f) - curveTo(6.96f, 5.47f, 7.92f, 6.0f, 8.75f, 6.0f) - curveToRelative(0.83f, 0.0f, 1.8f, -0.53f, 2.32f, -1.87f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.86f, 0.0f) - curveTo(13.46f, 5.47f, 14.42f, 6.0f, 15.25f, 6.0f) - curveToRelative(0.83f, 0.0f, 1.8f, -0.53f, 2.32f, -1.87f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.89f, -0.63f) - close() - moveTo(18.46f, 9.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.93f, 0.55f) - arcTo(4.57f, 4.57f, 0.0f, false, false, 21.2f, 12.0f) - lineToRelative(0.12f, 0.06f) - horizontalLineToRelative(0.02f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.64f, 1.9f) - horizontalLineToRelative(-0.01f) - lineToRelative(-0.01f, -0.01f) - lineToRelative(-0.03f, -0.01f) - arcToRelative(2.68f, 2.68f, 0.0f, false, true, -0.34f, -0.15f) - arcToRelative(6.1f, 6.1f, 0.0f, false, true, -1.75f, -1.4f) - arcToRelative(4.27f, 4.27f, 0.0f, false, true, -3.3f, 1.62f) - curveToRelative(-1.23f, 0.0f, -2.39f, -0.55f, -3.25f, -1.56f) - arcTo(4.26f, 4.26f, 0.0f, false, true, 8.75f, 14.0f) - arcToRelative(4.27f, 4.27f, 0.0f, false, true, -3.3f, -1.62f) - arcToRelative(6.12f, 6.12f, 0.0f, false, true, -2.0f, 1.52f) - arcToRelative(2.7f, 2.7f, 0.0f, false, true, -0.09f, 0.03f) - lineToRelative(-0.02f, 0.01f) - horizontalLineToRelative(-0.02f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.65f, -1.88f) - lineToRelative(0.02f, -0.01f) - lineToRelative(0.11f, -0.05f) - curveToRelative(0.11f, -0.06f, 0.28f, -0.15f, 0.48f, -0.3f) - curveToRelative(0.39f, -0.3f, 0.9f, -0.8f, 1.33f, -1.65f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.82f, 0.08f) - curveTo(6.96f, 11.47f, 7.92f, 12.0f, 8.75f, 12.0f) - curveToRelative(0.83f, 0.0f, 1.8f, -0.53f, 2.32f, -1.87f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.86f, 0.0f) - curveToRelative(0.53f, 1.34f, 1.49f, 1.87f, 2.32f, 1.87f) - curveToRelative(0.83f, 0.0f, 1.8f, -0.53f, 2.32f, -1.87f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.89f, -0.63f) - close() - moveTo(19.39f, 16.05f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.82f, 0.08f) - curveToRelative(-0.53f, 1.34f, -1.49f, 1.87f, -2.32f, 1.87f) - curveToRelative(-0.83f, 0.0f, -1.8f, -0.53f, -2.32f, -1.87f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.86f, 0.0f) - curveTo(10.54f, 17.47f, 9.58f, 18.0f, 8.75f, 18.0f) - curveToRelative(-0.83f, 0.0f, -1.8f, -0.53f, -2.32f, -1.87f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.82f, -0.08f) - arcTo(4.58f, 4.58f, 0.0f, false, true, 2.8f, 18.0f) - lineToRelative(-0.12f, 0.05f) - horizontalLineToRelative(-0.02f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.65f, 1.9f) - horizontalLineToRelative(0.02f) - lineToRelative(0.02f, -0.02f) - arcToRelative(2.7f, 2.7f, 0.0f, false, false, 0.34f, -0.14f) - arcToRelative(6.12f, 6.12f, 0.0f, false, false, 1.75f, -1.4f) - arcToRelative(4.27f, 4.27f, 0.0f, false, false, 3.3f, 1.6f) - curveToRelative(1.23f, 0.0f, 2.4f, -0.54f, 3.25f, -1.55f) - curveToRelative(0.86f, 1.0f, 2.02f, 1.56f, 3.25f, 1.56f) - curveToRelative(1.25f, 0.0f, 2.44f, -0.58f, 3.3f, -1.62f) - arcToRelative(6.1f, 6.1f, 0.0f, false, false, 2.0f, 1.52f) - lineToRelative(0.09f, 0.03f) - horizontalLineToRelative(0.03f) - verticalLineToRelative(0.01f) - horizontalLineToRelative(0.01f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.65f, -1.89f) - horizontalLineToRelative(-0.02f) - arcToRelative(3.12f, 3.12f, 0.0f, false, true, -0.59f, -0.35f) - curveToRelative(-0.39f, -0.3f, -0.9f, -0.8f, -1.33f, -1.65f) - close() - } - } - return _water!! - } - -private var _water: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherBlowingSnow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherBlowingSnow.kt deleted file mode 100644 index aebe93a5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherBlowingSnow.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WeatherBlowingSnow: ImageVector - get() { - if (_weatherBlowingSnow != null) { - return _weatherBlowingSnow!! - } - _weatherBlowingSnow = fluentIcon(name = "Filled.WeatherBlowingSnow") { - fluentPath { - moveTo(11.55f, 3.5f) - arcToRelative(4.11f, 4.11f, 0.0f, false, false, -4.03f, 3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.96f, 0.4f) - curveToRelative(0.2f, -0.99f, 1.06f, -1.7f, 2.07f, -1.7f) - horizontalLineToRelative(0.2f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, 4.5f) - lineTo(3.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(8.75f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, 0.0f, -8.5f) - horizontalLineToRelative(-0.2f) - close() - moveTo(18.82f, 9.5f) - arcToRelative(3.2f, 3.2f, 0.0f, false, false, -3.02f, 2.18f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.9f, 0.64f) - arcToRelative(1.18f, 1.18f, 0.0f, false, true, 2.3f, 0.36f) - verticalLineToRelative(0.07f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - lineTo(3.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(11.75f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(0.07f) - arcToRelative(1.18f, 1.18f, 0.0f, false, true, -2.3f, 0.36f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.9f, 0.64f) - arcToRelative(3.18f, 3.18f, 0.0f, false, false, 6.2f, -1.0f) - verticalLineToRelative(-0.07f) - curveToRelative(0.0f, -0.44f, -0.09f, -0.87f, -0.25f, -1.25f) - horizontalLineToRelative(1.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-0.07f) - arcToRelative(3.18f, 3.18f, 0.0f, false, false, -3.18f, -3.18f) - close() - moveTo(4.0f, 6.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - moveTo(10.25f, 20.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(19.0f, 7.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - } - } - return _weatherBlowingSnow!! - } - -private var _weatherBlowingSnow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherCloudy.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherCloudy.kt deleted file mode 100644 index c613a7ff..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherCloudy.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WeatherCloudy: ImageVector - get() { - if (_weatherCloudy != null) { - return _weatherCloudy!! - } - _weatherCloudy = fluentIcon(name = "Filled.WeatherCloudy") { - fluentPath { - moveTo(13.0f, 7.0f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.64f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) - lineTo(7.69f, 19.0f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) - horizontalLineToRelative(0.08f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 7.0f) - close() - moveTo(10.0f, 4.0f) - curveToRelative(1.62f, 0.0f, 3.05f, 0.82f, 3.9f, 2.06f) - arcToRelative(7.5f, 7.5f, 0.0f, false, false, -0.9f, -0.05f) - curveToRelative(-3.0f, 0.0f, -5.17f, 1.68f, -5.94f, 4.21f) - lineToRelative(-0.06f, 0.24f) - lineToRelative(-0.06f, 0.24f) - lineToRelative(-0.2f, 0.04f) - arcToRelative(4.68f, 4.68f, 0.0f, false, false, -3.46f, 3.04f) - arcTo(3.28f, 3.28f, 0.0f, false, true, 5.1f, 7.9f) - horizontalLineToRelative(0.25f) - arcTo(4.72f, 4.72f, 0.0f, false, true, 10.0f, 4.0f) - close() - } - } - return _weatherCloudy!! - } - -private var _weatherCloudy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherDrizzle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherDrizzle.kt deleted file mode 100644 index 1155c9ee..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherDrizzle.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WeatherDrizzle: ImageVector - get() { - if (_weatherDrizzle != null) { - return _weatherDrizzle!! - } - _weatherDrizzle = fluentIcon(name = "Filled.WeatherDrizzle") { - fluentPath { - moveTo(12.0f, 3.0f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.37f) - horizontalLineToRelative(-0.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.09f, 0.17f) - lineToRelative(-1.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.24f, -0.84f) - lineToRelative(0.56f, -0.83f) - horizontalLineToRelative(-2.23f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.09f, 0.17f) - lineToRelative(-1.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.24f, -0.84f) - lineToRelative(0.56f, -0.83f) - lineTo(8.46f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.09f, 0.17f) - lineToRelative(-1.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.24f, -0.84f) - lineToRelative(0.56f, -0.83f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.37f) - horizontalLineToRelative(0.08f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 12.0f, 3.0f) - close() - moveTo(7.13f, 18.83f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.24f, 0.84f) - lineToRelative(1.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.24f, -0.84f) - lineToRelative(-1.0f, 1.5f) - close() - moveTo(11.33f, 19.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.2f, -1.04f) - lineToRelative(1.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.24f, 0.84f) - lineToRelative(-1.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.04f, 0.2f) - close() - } - } - return _weatherDrizzle!! - } - -private var _weatherDrizzle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherDuststorm.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherDuststorm.kt deleted file mode 100644 index e5247d6f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherDuststorm.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WeatherDuststorm: ImageVector - get() { - if (_weatherDuststorm != null) { - return _weatherDuststorm!! - } - _weatherDuststorm = fluentIcon(name = "Filled.WeatherDuststorm") { - fluentPath { - moveTo(5.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - close() - moveTo(7.0f, 4.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(11.55f, 3.5f) - arcToRelative(4.11f, 4.11f, 0.0f, false, false, -4.03f, 3.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.96f, 0.4f) - curveToRelative(0.2f, -0.99f, 1.06f, -1.7f, 2.07f, -1.7f) - horizontalLineToRelative(0.2f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, 4.5f) - lineTo(3.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(8.75f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, 0.0f, -8.5f) - horizontalLineToRelative(-0.2f) - close() - moveTo(18.82f, 9.5f) - arcToRelative(3.2f, 3.2f, 0.0f, false, false, -3.02f, 2.18f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.9f, 0.64f) - arcToRelative(1.18f, 1.18f, 0.0f, false, true, 2.3f, 0.36f) - verticalLineToRelative(0.07f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - lineTo(3.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(11.75f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(0.07f) - arcToRelative(1.18f, 1.18f, 0.0f, false, true, -2.3f, 0.36f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.9f, 0.64f) - arcToRelative(3.18f, 3.18f, 0.0f, false, false, 6.2f, -1.0f) - verticalLineToRelative(-0.07f) - curveToRelative(0.0f, -0.44f, -0.09f, -0.87f, -0.25f, -1.25f) - horizontalLineToRelative(1.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-0.07f) - arcToRelative(3.18f, 3.18f, 0.0f, false, false, -3.18f, -3.18f) - close() - moveTo(7.5f, 20.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(7.5f, 22.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) - close() - moveTo(20.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - close() - moveTo(22.0f, 5.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - } - } - return _weatherDuststorm!! - } - -private var _weatherDuststorm: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherFog.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherFog.kt deleted file mode 100644 index 38f92684..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherFog.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WeatherFog: ImageVector - get() { - if (_weatherFog != null) { - return _weatherFog!! - } - _weatherFog = fluentIcon(name = "Filled.WeatherFog") { - fluentPath { - moveTo(7.74f, 19.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-8.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(8.6f) - horizontalLineToRelative(-8.5f) - close() - moveTo(4.75f, 16.52f) - horizontalLineToRelative(14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(4.75f, 18.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(12.0f, 3.0f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.64f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) - lineTo(6.69f, 15.0f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) - horizontalLineToRelative(0.08f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 12.0f, 3.0f) - close() - } - } - return _weatherFog!! - } - -private var _weatherFog: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherHailDay.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherHailDay.kt deleted file mode 100644 index 83110d62..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherHailDay.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WeatherHailDay: ImageVector - get() { - if (_weatherHailDay != null) { - return _weatherHailDay!! - } - _weatherHailDay = fluentIcon(name = "Filled.WeatherHailDay") { - fluentPath { - moveTo(13.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(9.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(16.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(13.0f, 6.0f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.64f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) - lineTo(7.69f, 18.0f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) - horizontalLineToRelative(0.08f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 6.0f) - close() - moveTo(4.37f, 10.16f) - curveToRelative(0.14f, 0.36f, 0.0f, 0.75f, -0.32f, 0.94f) - lineToRelative(-0.09f, 0.04f) - lineToRelative(-0.92f, 0.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.67f, -1.34f) - lineToRelative(0.1f, -0.05f) - lineToRelative(0.92f, -0.38f) - curveToRelative(0.38f, -0.16f, 0.82f, 0.02f, 0.98f, 0.4f) - close() - moveTo(10.85f, 5.33f) - lineTo(10.68f, 5.39f) - curveToRelative(-1.78f, 0.63f, -3.06f, 2.0f, -3.61f, 3.82f) - lineTo(7.0f, 9.46f) - lineToRelative(-0.06f, 0.24f) - lineToRelative(-0.2f, 0.04f) - curveToRelative(-0.62f, 0.13f, -1.18f, 0.37f, -1.68f, 0.71f) - arcToRelative(3.94f, 3.94f, 0.0f, false, true, 5.8f, -5.12f) - close() - moveTo(2.95f, 5.36f) - lineTo(3.05f, 5.4f) - lineTo(3.97f, 5.78f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 3.5f, 7.2f) - lineToRelative(-0.1f, -0.03f) - lineToRelative(-0.93f, -0.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.47f, -1.42f) - close() - moveTo(6.75f, 2.38f) - lineTo(6.8f, 2.47f) - lineTo(7.18f, 3.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, 0.67f) - lineToRelative(-0.04f, -0.1f) - lineToRelative(-0.38f, -0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.66f) - close() - moveTo(11.11f, 2.06f) - curveToRelative(0.35f, 0.14f, 0.53f, 0.52f, 0.44f, 0.87f) - lineToRelative(-0.03f, 0.1f) - lineToRelative(-0.39f, 0.93f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.42f, -0.47f) - lineToRelative(0.04f, -0.1f) - lineToRelative(0.38f, -0.93f) - curveToRelative(0.16f, -0.38f, 0.6f, -0.56f, 0.98f, -0.4f) - close() - } - } - return _weatherHailDay!! - } - -private var _weatherHailDay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherHailNight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherHailNight.kt deleted file mode 100644 index ad6b7928..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherHailNight.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WeatherHailNight: ImageVector - get() { - if (_weatherHailNight != null) { - return _weatherHailNight!! - } - _weatherHailNight = fluentIcon(name = "Filled.WeatherHailNight") { - fluentPath { - moveTo(13.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(9.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(16.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(13.0f, 6.0f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.64f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) - lineTo(7.69f, 18.0f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) - horizontalLineToRelative(0.08f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 6.0f) - close() - moveTo(6.6f, 2.0f) - arcToRelative(5.06f, 5.06f, 0.0f, false, true, 4.47f, 3.27f) - curveToRelative(-1.98f, 0.56f, -3.4f, 2.0f, -4.0f, 3.95f) - lineTo(7.0f, 9.46f) - lineToRelative(-0.06f, 0.24f) - lineToRelative(-0.2f, 0.04f) - curveToRelative(-1.15f, 0.24f, -2.14f, 0.9f, -2.81f, 1.81f) - lineToRelative(-0.16f, -0.08f) - arcToRelative(5.06f, 5.06f, 0.0f, false, true, -1.64f, -1.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.37f, -1.13f) - curveToRelative(1.64f, -0.59f, 2.53f, -1.25f, 3.03f, -2.21f) - curveToRelative(0.55f, -1.06f, 0.66f, -2.18f, 0.29f, -3.68f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 6.59f, 2.0f) - close() - } - } - return _weatherHailNight!! - } - -private var _weatherHailNight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherHaze.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherHaze.kt deleted file mode 100644 index 536ea335..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherHaze.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WeatherHaze: ImageVector - get() { - if (_weatherHaze != null) { - return _weatherHaze!! - } - _weatherHaze = fluentIcon(name = "Filled.WeatherHaze") { - fluentPath { - moveTo(6.84f, 13.98f) - arcToRelative(5.65f, 5.65f, 0.0f, false, true, 1.72f, 0.03f) - curveToRelative(1.29f, 0.2f, 2.52f, 0.83f, 3.82f, 1.6f) - curveToRelative(2.36f, 1.37f, 4.94f, 1.1f, 6.43f, 0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.88f, 1.22f) - curveToRelative(-2.01f, 1.44f, -5.24f, 1.69f, -8.07f, 0.04f) - arcToRelative(10.05f, 10.05f, 0.0f, false, false, -3.3f, -1.41f) - arcToRelative(4.8f, 4.8f, 0.0f, false, false, -3.21f, 0.67f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.72f, -1.32f) - arcToRelative(7.2f, 7.2f, 0.0f, false, true, 2.45f, -0.86f) - close() - moveTo(9.64f, 11.28f) - arcToRelative(5.66f, 5.66f, 0.0f, false, false, -3.08f, -0.25f) - curveToRelative(-0.7f, 0.13f, -1.41f, 0.4f, -2.17f, 0.81f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.72f, 1.32f) - arcToRelative(4.8f, 4.8f, 0.0f, false, true, 4.05f, -0.46f) - arcTo(13.6f, 13.6f, 0.0f, false, true, 11.8f, 14.0f) - curveToRelative(2.78f, 1.53f, 5.92f, 1.26f, 7.89f, -0.14f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.88f, -1.22f) - curveToRelative(-0.4f, 0.3f, -0.9f, 0.52f, -1.44f, 0.68f) - curveToRelative(-1.08f, 0.3f, -2.38f, 0.31f, -3.68f, -0.12f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, -1.31f, -0.6f) - arcToRelative(14.99f, 14.99f, 0.0f, false, false, -2.74f, -1.32f) - close() - moveTo(17.52f, 12.0f) - verticalLineToRelative(0.2f) - curveToRelative(-1.2f, 0.5f, -2.96f, 0.52f, -4.64f, -0.46f) - arcToRelative(12.39f, 12.39f, 0.0f, false, false, -4.17f, -1.72f) - arcToRelative(6.67f, 6.67f, 0.0f, false, false, -1.85f, -0.05f) - arcTo(5.53f, 5.53f, 0.0f, false, true, 17.52f, 12.0f) - close() - moveTo(12.12f, 22.0f) - arcToRelative(0.76f, 0.76f, 0.0f, false, true, -0.25f, 0.0f) - horizontalLineToRelative(0.25f) - close() - moveTo(5.97f, 4.94f) - lineToRelative(-0.08f, -0.07f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 4.91f, 6.0f) - lineToRelative(1.06f, 1.06f) - lineToRelative(0.09f, 0.07f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 7.03f, 6.0f) - lineTo(5.97f, 4.94f) - close() - moveTo(19.15f, 5.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.13f, -0.98f) - lineTo(16.96f, 6.0f) - lineToRelative(-0.08f, 0.09f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.14f, 0.97f) - lineTo(19.08f, 6.0f) - lineToRelative(0.07f, -0.08f) - close() - moveTo(12.75f, 2.64f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - verticalLineToRelative(1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - verticalLineToRelative(-1.6f) - close() - moveTo(5.1f, 19.16f) - arcToRelative(4.8f, 4.8f, 0.0f, false, true, 3.2f, -0.67f) - curveToRelative(1.0f, 0.16f, 2.02f, 0.66f, 3.31f, 1.4f) - curveToRelative(2.83f, 1.66f, 6.06f, 1.4f, 8.07f, -0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.88f, -1.22f) - curveToRelative(-1.49f, 1.06f, -4.07f, 1.34f, -6.43f, -0.04f) - arcTo(11.44f, 11.44f, 0.0f, false, false, 8.56f, 17.0f) - arcToRelative(6.29f, 6.29f, 0.0f, false, false, -4.17f, 0.84f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.72f, 1.32f) - close() - } - } - return _weatherHaze!! - } - -private var _weatherHaze: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherMoon.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherMoon.kt deleted file mode 100644 index e0a468b9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherMoon.kt +++ /dev/null @@ -1,30 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WeatherMoon: ImageVector - get() { - if (_weatherMoon != null) { - return _weatherMoon!! - } - _weatherMoon = fluentIcon(name = "Filled.WeatherMoon") { - fluentPath { - moveTo(20.03f, 17.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -16.9f, 0.68f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.36f, -1.13f) - curveToRelative(3.77f, -1.35f, 5.79f, -2.91f, 6.96f, -5.15f) - curveToRelative(1.23f, -2.35f, 1.55f, -4.93f, 0.69f, -8.46f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 11.9f, 2.0f) - arcTo(10.0f, 10.0f, 0.0f, false, true, 20.03f, 17.0f) - close() - } - } - return _weatherMoon!! - } - -private var _weatherMoon: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherMoonOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherMoonOff.kt deleted file mode 100644 index fb74833e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherMoonOff.kt +++ /dev/null @@ -1,39 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WeatherMoonOff: ImageVector - get() { - if (_weatherMoonOff != null) { - return _weatherMoonOff!! - } - _weatherMoonOff = fluentIcon(name = "Filled.WeatherMoonOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(8.2f, 8.2f) - curveToRelative(-1.18f, 2.19f, -3.2f, 3.73f, -6.93f, 5.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.36f, 1.13f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 15.1f, 1.6f) - lineToRelative(2.49f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(16.37f, 3.34f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 3.71f, 13.56f) - lineTo(11.5f, 8.31f) - curveToRelative(0.25f, -1.56f, 0.15f, -3.3f, -0.35f, -5.37f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 11.9f, 2.0f) - curveToRelative(1.55f, 0.09f, 3.08f, 0.53f, 4.46f, 1.33f) - close() - } - } - return _weatherMoonOff!! - } - -private var _weatherMoonOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherPartlyCloudyDay.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherPartlyCloudyDay.kt deleted file mode 100644 index 31718c5d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherPartlyCloudyDay.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WeatherPartlyCloudyDay: ImageVector - get() { - if (_weatherPartlyCloudyDay != null) { - return _weatherPartlyCloudyDay!! - } - _weatherPartlyCloudyDay = fluentIcon(name = "Filled.WeatherPartlyCloudyDay") { - fluentPath { - moveTo(13.0f, 8.0f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.64f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) - lineTo(7.69f, 20.0f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) - horizontalLineToRelative(0.08f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 8.0f) - close() - moveTo(4.37f, 12.16f) - curveToRelative(0.14f, 0.35f, 0.0f, 0.75f, -0.32f, 0.94f) - lineToRelative(-0.09f, 0.04f) - lineToRelative(-0.92f, 0.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.67f, -1.34f) - lineToRelative(0.1f, -0.05f) - lineToRelative(0.92f, -0.38f) - curveToRelative(0.38f, -0.16f, 0.82f, 0.02f, 0.98f, 0.4f) - close() - moveTo(10.85f, 7.33f) - lineTo(10.68f, 7.39f) - curveToRelative(-1.78f, 0.63f, -3.06f, 2.0f, -3.61f, 3.82f) - lineToRelative(-0.07f, 0.25f) - lineToRelative(-0.06f, 0.24f) - lineToRelative(-0.2f, 0.04f) - curveToRelative(-0.61f, 0.12f, -1.18f, 0.37f, -1.68f, 0.71f) - arcToRelative(3.94f, 3.94f, 0.0f, false, true, 5.8f, -5.12f) - close() - moveTo(2.95f, 7.36f) - lineTo(3.05f, 7.4f) - lineTo(3.97f, 7.78f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 3.5f, 9.2f) - lineToRelative(-0.1f, -0.04f) - lineToRelative(-0.93f, -0.38f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.47f, -1.42f) - close() - moveTo(6.75f, 4.37f) - lineTo(6.8f, 4.47f) - lineTo(7.19f, 5.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.67f) - lineToRelative(-0.04f, -0.1f) - lineToRelative(-0.38f, -0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.67f) - close() - moveTo(11.11f, 4.06f) - curveToRelative(0.35f, 0.14f, 0.53f, 0.52f, 0.44f, 0.87f) - lineToRelative(-0.03f, 0.1f) - lineToRelative(-0.39f, 0.93f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.42f, -0.47f) - lineToRelative(0.04f, -0.1f) - lineToRelative(0.38f, -0.93f) - curveToRelative(0.16f, -0.38f, 0.6f, -0.56f, 0.98f, -0.4f) - close() - } - } - return _weatherPartlyCloudyDay!! - } - -private var _weatherPartlyCloudyDay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherPartlyCloudyNight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherPartlyCloudyNight.kt deleted file mode 100644 index 5535d59f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherPartlyCloudyNight.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WeatherPartlyCloudyNight: ImageVector - get() { - if (_weatherPartlyCloudyNight != null) { - return _weatherPartlyCloudyNight!! - } - _weatherPartlyCloudyNight = fluentIcon(name = "Filled.WeatherPartlyCloudyNight") { - fluentPath { - moveTo(13.0f, 8.01f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.37f) - lineTo(7.69f, 20.01f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.37f) - horizontalLineToRelative(0.08f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 8.01f) - close() - moveTo(6.59f, 4.01f) - arcToRelative(5.06f, 5.06f, 0.0f, false, true, 4.47f, 3.26f) - curveToRelative(-1.98f, 0.57f, -3.4f, 2.0f, -4.0f, 3.95f) - lineToRelative(-0.06f, 0.25f) - lineToRelative(-0.06f, 0.23f) - lineToRelative(-0.2f, 0.04f) - curveToRelative(-1.15f, 0.24f, -2.14f, 0.9f, -2.81f, 1.82f) - lineToRelative(-0.16f, -0.09f) - arcToRelative(5.06f, 5.06f, 0.0f, false, true, -1.64f, -1.51f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.37f, -1.13f) - curveToRelative(1.64f, -0.6f, 2.53f, -1.25f, 3.03f, -2.22f) - curveToRelative(0.55f, -1.05f, 0.66f, -2.17f, 0.29f, -3.68f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.77f, -0.92f) - close() - } - } - return _weatherPartlyCloudyNight!! - } - -private var _weatherPartlyCloudyNight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherRain.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherRain.kt deleted file mode 100644 index fa71314f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherRain.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WeatherRain: ImageVector - get() { - if (_weatherRain != null) { - return _weatherRain!! - } - _weatherRain = fluentIcon(name = "Filled.WeatherRain") { - fluentPath { - moveTo(12.0f, 4.0f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.37f) - horizontalLineToRelative(-0.59f) - lineToRelative(-1.58f, 2.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, -0.66f) - lineToRelative(0.04f, -0.09f) - lineTo(15.0f, 16.0f) - horizontalLineToRelative(-2.13f) - lineToRelative(-1.59f, 2.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, -0.66f) - lineToRelative(0.04f, -0.09f) - lineTo(11.12f, 16.0f) - horizontalLineTo(9.0f) - lineTo(7.4f, 18.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, -0.66f) - lineToRelative(0.05f, -0.09f) - lineTo(7.26f, 16.0f) - horizontalLineToRelative(-0.57f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.37f) - horizontalLineToRelative(0.08f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 12.0f, 4.0f) - close() - } - } - return _weatherRain!! - } - -private var _weatherRain: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherRainShowersDay.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherRainShowersDay.kt deleted file mode 100644 index af4b434d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherRainShowersDay.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WeatherRainShowersDay: ImageVector - get() { - if (_weatherRainShowersDay != null) { - return _weatherRainShowersDay!! - } - _weatherRainShowersDay = fluentIcon(name = "Filled.WeatherRainShowersDay") { - fluentPath { - moveTo(13.0f, 6.01f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.37f) - horizontalLineToRelative(-0.52f) - lineToRelative(-1.64f, 2.62f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, -0.66f) - lineToRelative(0.04f, -0.09f) - lineTo(16.06f, 18.0f) - horizontalLineToRelative(-2.13f) - lineToRelative(-1.65f, 2.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, -0.66f) - lineToRelative(0.04f, -0.09f) - lineTo(12.2f, 18.0f) - horizontalLineToRelative(-2.13f) - lineTo(8.4f, 20.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, -0.66f) - lineToRelative(0.04f, -0.09f) - lineTo(8.33f, 18.0f) - horizontalLineToRelative(-0.64f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) - horizontalLineToRelative(0.08f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 6.01f) - close() - moveTo(4.37f, 10.17f) - curveToRelative(0.14f, 0.35f, 0.0f, 0.74f, -0.32f, 0.93f) - lineToRelative(-0.09f, 0.05f) - lineToRelative(-0.92f, 0.38f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.67f, -1.34f) - lineToRelative(0.1f, -0.05f) - lineToRelative(0.92f, -0.38f) - curveToRelative(0.38f, -0.16f, 0.82f, 0.02f, 0.98f, 0.4f) - close() - moveTo(10.85f, 5.33f) - lineTo(10.68f, 5.39f) - curveToRelative(-1.78f, 0.63f, -3.06f, 2.0f, -3.61f, 3.82f) - lineTo(7.0f, 9.46f) - lineToRelative(-0.06f, 0.24f) - lineToRelative(-0.2f, 0.04f) - curveToRelative(-0.61f, 0.13f, -1.18f, 0.37f, -1.68f, 0.71f) - arcToRelative(3.94f, 3.94f, 0.0f, false, true, 5.8f, -5.12f) - close() - moveTo(2.95f, 5.36f) - lineTo(3.05f, 5.4f) - lineTo(3.97f, 5.78f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 3.5f, 7.2f) - lineToRelative(-0.1f, -0.03f) - lineToRelative(-0.93f, -0.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.47f, -1.42f) - close() - moveTo(6.75f, 2.38f) - lineTo(6.8f, 2.47f) - lineTo(7.19f, 3.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.67f) - lineToRelative(-0.04f, -0.1f) - lineToRelative(-0.38f, -0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.66f) - close() - moveTo(11.11f, 2.06f) - curveToRelative(0.35f, 0.14f, 0.53f, 0.52f, 0.44f, 0.87f) - lineToRelative(-0.03f, 0.1f) - lineToRelative(-0.39f, 0.93f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.42f, -0.46f) - lineToRelative(0.04f, -0.11f) - lineToRelative(0.38f, -0.93f) - curveToRelative(0.16f, -0.38f, 0.6f, -0.56f, 0.98f, -0.4f) - close() - } - } - return _weatherRainShowersDay!! - } - -private var _weatherRainShowersDay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherRainShowersNight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherRainShowersNight.kt deleted file mode 100644 index 3c692598..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherRainShowersNight.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WeatherRainShowersNight: ImageVector - get() { - if (_weatherRainShowersNight != null) { - return _weatherRainShowersNight!! - } - _weatherRainShowersNight = fluentIcon(name = "Filled.WeatherRainShowersNight") { - fluentPath { - moveTo(13.0f, 6.01f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.37f) - lineToRelative(-0.63f, -0.01f) - lineToRelative(-1.55f, 2.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, -0.66f) - lineToRelative(0.04f, -0.09f) - lineTo(15.94f, 18.0f) - horizontalLineToRelative(-2.13f) - lineToRelative(-1.54f, 2.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, -0.66f) - lineToRelative(0.05f, -0.09f) - lineToRelative(1.1f, -1.88f) - lineTo(9.95f, 18.0f) - lineTo(8.4f, 20.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, -0.66f) - lineToRelative(0.05f, -0.09f) - lineTo(8.2f, 18.0f) - horizontalLineToRelative(-0.6f) - arcTo(3.6f, 3.6f, 0.0f, false, true, 4.0f, 14.32f) - arcToRelative(3.69f, 3.69f, 0.0f, false, true, 3.7f, -3.68f) - horizontalLineToRelative(0.07f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 6.01f) - close() - moveTo(6.59f, 2.01f) - arcToRelative(5.06f, 5.06f, 0.0f, false, true, 4.47f, 3.26f) - curveToRelative(-1.98f, 0.56f, -3.4f, 2.0f, -4.0f, 3.95f) - lineTo(7.0f, 9.46f) - lineToRelative(-0.06f, 0.24f) - lineToRelative(-0.2f, 0.04f) - curveToRelative(-1.15f, 0.24f, -2.14f, 0.9f, -2.81f, 1.81f) - lineToRelative(-0.16f, -0.08f) - arcToRelative(5.06f, 5.06f, 0.0f, false, true, -1.64f, -1.51f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.37f, -1.14f) - curveToRelative(1.64f, -0.59f, 2.52f, -1.25f, 3.03f, -2.21f) - curveToRelative(0.55f, -1.06f, 0.66f, -2.18f, 0.29f, -3.68f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 6.59f, 2.0f) - close() - } - } - return _weatherRainShowersNight!! - } - -private var _weatherRainShowersNight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherRainSnow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherRainSnow.kt deleted file mode 100644 index cde156aa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherRainSnow.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WeatherRainSnow: ImageVector - get() { - if (_weatherRainSnow != null) { - return _weatherRainSnow!! - } - _weatherRainSnow = fluentIcon(name = "Filled.WeatherRainSnow") { - fluentPath { - moveTo(14.53f, 17.55f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(12.0f, 4.0f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.37f) - lineTo(16.0f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.43f, 0.0f) - lineTo(8.99f, 16.0f) - lineTo(7.4f, 18.62f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, -0.65f) - lineToRelative(0.05f, -0.1f) - lineTo(7.26f, 16.0f) - horizontalLineToRelative(-0.57f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.37f) - horizontalLineToRelative(0.08f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 12.0f, 4.0f) - close() - moveTo(11.58f, 16.7f) - curveToRelative(0.33f, 0.2f, 0.46f, 0.6f, 0.32f, 0.94f) - lineToRelative(-0.05f, 0.09f) - lineToRelative(-0.55f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, -0.66f) - lineToRelative(0.05f, -0.1f) - lineToRelative(0.55f, -0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, -0.27f) - close() - moveTo(17.03f, 16.8f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - } - } - return _weatherRainSnow!! - } - -private var _weatherRainSnow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherSnow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherSnow.kt deleted file mode 100644 index c7bb8031..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherSnow.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WeatherSnow: ImageVector - get() { - if (_weatherSnow != null) { - return _weatherSnow!! - } - _weatherSnow = fluentIcon(name = "Filled.WeatherSnow") { - fluentPath { - moveTo(9.75f, 18.15f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(14.25f, 18.15f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(7.5f, 17.15f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(12.0f, 17.15f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(16.5f, 17.15f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(12.0f, 4.0f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.37f) - lineTo(6.69f, 16.0f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.37f) - horizontalLineToRelative(0.08f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 12.0f, 4.0f) - close() - } - } - return _weatherSnow!! - } - -private var _weatherSnow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherSnowShowerDay.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherSnowShowerDay.kt deleted file mode 100644 index e1a20bb9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherSnowShowerDay.kt +++ /dev/null @@ -1,94 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WeatherSnowShowerDay: ImageVector - get() { - if (_weatherSnowShowerDay != null) { - return _weatherSnowShowerDay!! - } - _weatherSnowShowerDay = fluentIcon(name = "Filled.WeatherSnowShowerDay") { - fluentPath { - moveTo(10.75f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(15.25f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(8.5f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(13.0f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(17.5f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(13.0f, 6.01f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.37f) - lineTo(7.69f, 18.01f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.37f) - horizontalLineToRelative(0.08f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 6.01f) - close() - moveTo(4.37f, 10.17f) - curveToRelative(0.14f, 0.35f, 0.0f, 0.74f, -0.32f, 0.93f) - lineToRelative(-0.09f, 0.05f) - lineToRelative(-0.92f, 0.38f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.67f, -1.34f) - lineToRelative(0.1f, -0.05f) - lineToRelative(0.92f, -0.38f) - curveToRelative(0.38f, -0.16f, 0.82f, 0.02f, 0.98f, 0.4f) - close() - moveTo(10.85f, 5.33f) - lineTo(10.68f, 5.39f) - curveToRelative(-1.78f, 0.63f, -3.06f, 2.0f, -3.61f, 3.82f) - lineTo(7.0f, 9.46f) - lineToRelative(-0.06f, 0.24f) - lineToRelative(-0.2f, 0.04f) - curveToRelative(-0.61f, 0.13f, -1.18f, 0.37f, -1.68f, 0.71f) - arcToRelative(3.94f, 3.94f, 0.0f, false, true, 5.8f, -5.12f) - close() - moveTo(2.95f, 5.36f) - lineTo(3.05f, 5.4f) - lineTo(3.97f, 5.78f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 3.5f, 7.2f) - lineToRelative(-0.1f, -0.03f) - lineToRelative(-0.93f, -0.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.47f, -1.42f) - close() - moveTo(6.75f, 2.38f) - lineTo(6.8f, 2.47f) - lineTo(7.19f, 3.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.67f) - lineToRelative(-0.04f, -0.1f) - lineToRelative(-0.38f, -0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.66f) - close() - moveTo(11.11f, 2.06f) - curveToRelative(0.35f, 0.14f, 0.53f, 0.52f, 0.44f, 0.87f) - lineToRelative(-0.03f, 0.1f) - lineToRelative(-0.39f, 0.93f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.42f, -0.46f) - lineToRelative(0.04f, -0.11f) - lineToRelative(0.38f, -0.93f) - curveToRelative(0.16f, -0.38f, 0.6f, -0.56f, 0.98f, -0.4f) - close() - } - } - return _weatherSnowShowerDay!! - } - -private var _weatherSnowShowerDay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherSnowShowerNight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherSnowShowerNight.kt deleted file mode 100644 index 39efbf45..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherSnowShowerNight.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WeatherSnowShowerNight: ImageVector - get() { - if (_weatherSnowShowerNight != null) { - return _weatherSnowShowerNight!! - } - _weatherSnowShowerNight = fluentIcon(name = "Filled.WeatherSnowShowerNight") { - fluentPath { - moveTo(10.75f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(15.25f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(8.5f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(13.0f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(17.5f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(13.0f, 6.02f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) - lineTo(7.69f, 18.01f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) - horizontalLineToRelative(0.08f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 6.02f) - close() - moveTo(6.6f, 2.0f) - arcToRelative(5.06f, 5.06f, 0.0f, false, true, 4.47f, 3.27f) - curveToRelative(-1.98f, 0.56f, -3.4f, 2.0f, -4.0f, 3.95f) - lineTo(7.0f, 9.47f) - lineToRelative(-0.06f, 0.24f) - lineToRelative(-0.2f, 0.04f) - curveToRelative(-1.15f, 0.24f, -2.14f, 0.9f, -2.81f, 1.81f) - lineToRelative(-0.16f, -0.08f) - arcToRelative(5.06f, 5.06f, 0.0f, false, true, -1.64f, -1.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.37f, -1.13f) - curveToRelative(1.64f, -0.59f, 2.52f, -1.25f, 3.03f, -2.22f) - curveToRelative(0.55f, -1.05f, 0.66f, -2.17f, 0.29f, -3.67f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 6.59f, 2.0f) - close() - } - } - return _weatherSnowShowerNight!! - } - -private var _weatherSnowShowerNight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherSnowflake.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherSnowflake.kt deleted file mode 100644 index 93ddfaf4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherSnowflake.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WeatherSnowflake: ImageVector - get() { - if (_weatherSnowflake != null) { - return _weatherSnowflake!! - } - _weatherSnowflake = fluentIcon(name = "Filled.WeatherSnowflake") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.55f) - lineToRelative(1.7f, -1.7f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.42f, 1.4f) - lineTo(13.0f, 8.39f) - verticalLineTo(11.0f) - horizontalLineToRelative(2.62f) - lineToRelative(3.12f, -3.12f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.42f, 1.41f) - lineTo(18.45f, 11.0f) - horizontalLineTo(21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-2.55f) - lineToRelative(1.7f, 1.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 1.42f) - lineTo(15.61f, 13.0f) - horizontalLineTo(13.0f) - verticalLineToRelative(2.62f) - lineToRelative(3.12f, 3.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.41f, 1.42f) - lineTo(13.0f, 18.45f) - verticalLineTo(21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-2.55f) - lineToRelative(-1.7f, 1.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, -1.4f) - lineTo(11.0f, 15.61f) - verticalLineTo(13.0f) - horizontalLineTo(8.38f) - lineToRelative(-3.12f, 3.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, -1.41f) - lineTo(5.55f, 13.0f) - horizontalLineTo(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(2.55f) - lineToRelative(-1.7f, -1.7f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, -1.42f) - lineTo(8.39f, 11.0f) - horizontalLineTo(11.0f) - verticalLineTo(8.38f) - lineTo(7.88f, 5.26f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, -1.42f) - lineTo(11.0f, 5.55f) - verticalLineTo(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - } - } - return _weatherSnowflake!! - } - -private var _weatherSnowflake: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherSqualls.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherSqualls.kt deleted file mode 100644 index e5d71764..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherSqualls.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WeatherSqualls: ImageVector - get() { - if (_weatherSqualls != null) { - return _weatherSqualls!! - } - _weatherSqualls = fluentIcon(name = "Filled.WeatherSqualls") { - fluentPath { - moveTo(7.75f, 6.19f) - arcToRelative(4.3f, 4.3f, 0.0f, false, true, 3.98f, -2.69f) - arcToRelative(4.25f, 4.25f, 0.0f, true, true, 0.02f, 8.5f) - lineTo(3.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(8.75f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, -0.02f, -4.5f) - arcTo(2.3f, 2.3f, 0.0f, false, false, 9.6f, 6.93f) - lineToRelative(-0.17f, 0.44f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.86f, -0.74f) - lineToRelative(0.18f, -0.44f) - close() - moveTo(15.8f, 11.69f) - arcToRelative(3.18f, 3.18f, 0.0f, false, true, 6.2f, 1.0f) - verticalLineToRelative(0.06f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-1.0f) - curveToRelative(0.16f, 0.38f, 0.25f, 0.8f, 0.25f, 1.25f) - verticalLineToRelative(0.07f) - arcToRelative(3.18f, 3.18f, 0.0f, false, true, -6.2f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.9f, -0.64f) - arcToRelative(1.18f, 1.18f, 0.0f, false, false, 2.3f, -0.36f) - verticalLineToRelative(-0.07f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(3.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(15.75f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-0.07f) - arcToRelative(1.18f, 1.18f, 0.0f, false, false, -2.3f, -0.36f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.9f, -0.64f) - close() - } - } - return _weatherSqualls!! - } - -private var _weatherSqualls: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherSunny.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherSunny.kt deleted file mode 100644 index 43878dc1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherSunny.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WeatherSunny: ImageVector - get() { - if (_weatherSunny != null) { - return _weatherSunny!! - } - _weatherSunny = fluentIcon(name = "Filled.WeatherSunny") { - fluentPath { - moveTo(12.0f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(17.0f, 12.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, -10.0f, 0.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 10.0f, 0.0f) - close() - moveTo(21.25f, 12.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.5f) - close() - moveTo(12.0f, 19.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(4.25f, 12.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.5f) - close() - moveTo(4.22f, 4.22f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(1.5f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineToRelative(-1.5f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - moveTo(5.28f, 19.78f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(1.5f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-1.5f, 1.5f) - close() - moveTo(19.78f, 4.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineToRelative(1.5f, -1.5f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - close() - moveTo(18.72f, 19.78f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-1.5f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.5f, 1.5f) - close() - } - } - return _weatherSunny!! - } - -private var _weatherSunny: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherSunnyHigh.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherSunnyHigh.kt deleted file mode 100644 index 71031726..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherSunnyHigh.kt +++ /dev/null @@ -1,94 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WeatherSunnyHigh: ImageVector - get() { - if (_weatherSunnyHigh != null) { - return _weatherSunnyHigh!! - } - _weatherSunnyHigh = fluentIcon(name = "Filled.WeatherSunnyHigh") { - fluentPath { - moveTo(12.0f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(8.0f, 9.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, 8.0f, 0.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -8.0f, 0.0f) - close() - moveTo(12.75f, 14.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - close() - moveTo(5.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.5f) - close() - moveTo(17.0f, 8.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(6.72f, 5.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineToRelative(-0.5f, -0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(0.5f, 0.5f) - close() - moveTo(7.78f, 12.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-0.5f, 0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(0.5f, -0.5f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - close() - moveTo(17.28f, 5.78f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(0.5f, -0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-0.5f, 0.5f) - close() - moveTo(16.22f, 12.22f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(0.5f, 0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-0.5f, -0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - moveTo(3.22f, 21.84f) - curveToRelative(-0.33f, 0.25f, -0.8f, 0.2f, -1.06f, -0.12f) - curveToRelative(-0.4f, -0.51f, 0.12f, -1.06f, 0.12f, -1.06f) - horizontalLineToRelative(0.02f) - arcToRelative(3.49f, 3.49f, 0.0f, false, true, 0.18f, -0.15f) - lineToRelative(0.54f, -0.36f) - arcTo(16.78f, 16.78f, 0.0f, false, true, 12.0f, 17.5f) - arcToRelative(16.78f, 16.78f, 0.0f, false, true, 9.7f, 3.15f) - lineToRelative(0.01f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.93f, 1.18f) - lineToRelative(-0.03f, -0.03f) - arcToRelative(5.63f, 5.63f, 0.0f, false, false, -0.58f, -0.4f) - arcTo(15.28f, 15.28f, 0.0f, false, false, 12.0f, 19.0f) - arcToRelative(15.28f, 15.28f, 0.0f, false, false, -8.75f, 2.81f) - lineToRelative(-0.03f, 0.02f) - close() - } - } - return _weatherSunnyHigh!! - } - -private var _weatherSunnyHigh: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherSunnyLow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherSunnyLow.kt deleted file mode 100644 index cff5381d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherSunnyLow.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WeatherSunnyLow: ImageVector - get() { - if (_weatherSunnyLow != null) { - return _weatherSunnyLow!! - } - _weatherSunnyLow = fluentIcon(name = "Filled.WeatherSunnyLow") { - fluentPath { - moveTo(12.75f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.5f) - close() - moveTo(19.03f, 4.97f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-1.06f, 1.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(1.06f, -1.06f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(6.59f, 13.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 10.82f, 0.0f) - horizontalLineToRelative(3.84f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(2.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.84f) - close() - moveTo(6.75f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(6.75f, 16.0f) - close() - moveTo(10.75f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.5f) - close() - moveTo(4.97f, 4.97f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(1.06f, 1.06f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(4.97f, 6.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - } - } - return _weatherSunnyLow!! - } - -private var _weatherSunnyLow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherThunderstorm.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherThunderstorm.kt deleted file mode 100644 index 120623b2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WeatherThunderstorm.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WeatherThunderstorm: ImageVector - get() { - if (_weatherThunderstorm != null) { - return _weatherThunderstorm!! - } - _weatherThunderstorm = fluentIcon(name = "Filled.WeatherThunderstorm") { - fluentPath { - moveTo(13.76f, 13.2f) - curveToRelative(0.3f, 0.28f, 0.33f, 0.75f, 0.06f, 1.06f) - lineTo(12.7f, 15.5f) - horizontalLineToRelative(2.28f) - curveToRelative(0.63f, 0.0f, 0.98f, 0.73f, 0.59f, 1.22f) - lineToRelative(-3.21f, 4.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.18f, -0.94f) - lineTo(13.42f, 17.0f) - horizontalLineToRelative(-2.4f) - curveToRelative(-0.65f, 0.0f, -0.99f, -0.77f, -0.56f, -1.25f) - lineToRelative(2.24f, -2.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -0.06f) - close() - moveTo(13.0f, 5.0f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.64f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) - horizontalLineToRelative(-1.75f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.58f, -2.5f) - horizontalLineToRelative(-0.13f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.9f, -1.9f) - lineToRelative(-2.23f, 2.48f) - arcTo(1.73f, 1.73f, 0.0f, false, false, 9.44f, 17.0f) - lineTo(7.7f, 17.0f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) - horizontalLineToRelative(0.08f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 5.0f) - close() - moveTo(10.0f, 2.0f) - curveToRelative(1.62f, 0.0f, 3.05f, 0.82f, 3.9f, 2.06f) - arcToRelative(7.5f, 7.5f, 0.0f, false, false, -0.9f, -0.05f) - curveToRelative(-3.0f, 0.0f, -5.17f, 1.68f, -5.94f, 4.21f) - lineTo(7.0f, 8.46f) - lineToRelative(-0.06f, 0.24f) - lineToRelative(-0.2f, 0.04f) - arcToRelative(4.68f, 4.68f, 0.0f, false, false, -3.46f, 3.04f) - arcTo(3.28f, 3.28f, 0.0f, false, true, 5.1f, 5.9f) - horizontalLineToRelative(0.25f) - arcTo(4.72f, 4.72f, 0.0f, false, true, 10.0f, 2.0f) - close() - } - } - return _weatherThunderstorm!! - } - -private var _weatherThunderstorm: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WebAsset.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WebAsset.kt deleted file mode 100644 index 56bbe166..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WebAsset.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WebAsset: ImageVector - get() { - if (_webAsset != null) { - return _webAsset!! - } - _webAsset = fluentIcon(name = "Filled.WebAsset") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(6.75f, 6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(6.75f, 6.75f) - close() - } - } - return _webAsset!! - } - -private var _webAsset: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Whiteboard.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Whiteboard.kt deleted file mode 100644 index f557e983..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Whiteboard.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Whiteboard: ImageVector - get() { - if (_whiteboard != null) { - return _whiteboard!! - } - _whiteboard = fluentIcon(name = "Filled.Whiteboard") { - fluentPath { - moveToRelative(15.99f, 4.0f) - lineToRelative(-3.07f, 3.06f) - curveToRelative(-0.34f, 0.34f, -0.6f, 0.74f, -0.78f, 1.18f) - lineToRelative(-0.08f, 0.23f) - lineToRelative(-0.74f, 2.3f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.64f, 2.88f) - lineToRelative(0.15f, -0.04f) - lineToRelative(2.33f, -0.7f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 1.29f, -0.7f) - lineToRelative(0.18f, -0.18f) - lineTo(22.0f, 7.95f) - verticalLineToRelative(8.8f) - curveToRelative(0.0f, 1.8f, -1.45f, 3.25f, -3.25f, 3.25f) - lineTo(5.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - verticalLineToRelative(-4.2f) - lineToRelative(0.08f, -0.03f) - lineToRelative(0.07f, -0.04f) - lineToRelative(3.76f, -2.36f) - lineToRelative(0.1f, -0.05f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 11.0f) - lineToRelative(-0.04f, 0.1f) - lineToRelative(-1.2f, 2.3f) - lineToRelative(-0.08f, 0.14f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 3.0f, 2.95f) - lineToRelative(0.17f, -0.09f) - lineToRelative(1.76f, -1.0f) - lineToRelative(0.09f, -0.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.74f, -1.3f) - lineToRelative(-0.1f, 0.05f) - lineToRelative(-1.75f, 1.0f) - lineToRelative(-0.1f, 0.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, -0.96f) - lineToRelative(0.04f, -0.09f) - lineToRelative(1.2f, -2.28f) - lineToRelative(0.09f, -0.17f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.12f, -2.87f) - lineToRelative(-0.15f, 0.08f) - lineTo(2.0f, 10.81f) - lineTo(2.0f, 7.24f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(5.25f, 4.0f) - horizontalLineToRelative(10.74f) - close() - moveTo(21.18f, 3.54f) - lineTo(21.31f, 3.67f) - lineTo(21.43f, 3.8f) - curveToRelative(0.76f, 0.89f, 0.72f, 2.23f, -0.13f, 3.07f) - lineToRelative(-4.28f, 4.28f) - curveToRelative(-0.26f, 0.26f, -0.58f, 0.45f, -0.94f, 0.56f) - lineToRelative(-2.33f, 0.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.24f, -1.27f) - lineToRelative(0.74f, -2.29f) - curveToRelative(0.11f, -0.34f, 0.3f, -0.65f, 0.56f, -0.9f) - lineToRelative(4.29f, -4.29f) - arcToRelative(2.27f, 2.27f, 0.0f, false, true, 3.08f, -0.12f) - close() - } - } - return _whiteboard!! - } - -private var _whiteboard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Wifi1.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Wifi1.kt deleted file mode 100644 index 72c7a90e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Wifi1.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Wifi1: ImageVector - get() { - if (_wifi1 != null) { - return _wifi1!! - } - _wifi1 = fluentIcon(name = "Filled.Wifi1") { - fluentPath { - moveTo(17.78f, 10.7f) - curveToRelative(0.6f, 0.6f, 1.12f, 1.33f, 1.5f, 2.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.77f, 0.9f) - arcToRelative(6.13f, 6.13f, 0.0f, false, false, -10.94f, -0.02f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.78f, -0.9f) - arcToRelative(8.13f, 8.13f, 0.0f, false, true, 13.0f, -2.07f) - close() - moveTo(15.74f, 13.7f) - curveToRelative(0.46f, 0.46f, 0.83f, 1.02f, 1.1f, 1.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.84f, 0.8f) - arcToRelative(3.23f, 3.23f, 0.0f, false, false, -5.93f, -0.01f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.83f, -0.8f) - arcToRelative(5.23f, 5.23f, 0.0f, false, true, 8.49f, -1.61f) - close() - moveTo(20.42f, 8.3f) - curveToRelative(0.5f, 0.5f, 0.99f, 1.09f, 1.4f, 1.69f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.64f, 1.14f) - arcToRelative(9.92f, 9.92f, 0.0f, false, false, -16.36f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.64f, -1.15f) - arcTo(11.92f, 11.92f, 0.0f, false, true, 20.42f, 8.3f) - close() - moveTo(13.06f, 16.44f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -2.12f, 2.12f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.12f, -2.12f) - close() - } - } - return _wifi1!! - } - -private var _wifi1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Wifi2.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Wifi2.kt deleted file mode 100644 index ef96c4ef..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Wifi2.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Wifi2: ImageVector - get() { - if (_wifi2 != null) { - return _wifi2!! - } - _wifi2 = fluentIcon(name = "Filled.Wifi2") { - fluentPath { - moveTo(10.96f, 16.44f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 2.12f, 2.12f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.12f, -2.12f) - close() - moveTo(8.36f, 13.7f) - arcToRelative(5.23f, 5.23f, 0.0f, false, true, 8.5f, 1.62f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.83f, 0.8f) - arcToRelative(3.23f, 3.23f, 0.0f, false, false, -5.93f, -0.01f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.83f, -0.8f) - curveToRelative(0.26f, -0.6f, 0.63f, -1.15f, 1.09f, -1.61f) - close() - moveTo(6.31f, 10.7f) - arcToRelative(8.13f, 8.13f, 0.0f, false, true, 13.0f, 2.1f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.78f, 0.9f) - arcToRelative(6.13f, 6.13f, 0.0f, false, false, -10.94f, -0.02f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.78f, -0.9f) - curveToRelative(0.38f, -0.76f, 0.88f, -1.46f, 1.5f, -2.07f) - close() - } - } - return _wifi2!! - } - -private var _wifi2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Wifi3.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Wifi3.kt deleted file mode 100644 index e335739d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Wifi3.kt +++ /dev/null @@ -1,33 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Wifi3: ImageVector - get() { - if (_wifi3 != null) { - return _wifi3!! - } - _wifi3 = fluentIcon(name = "Filled.Wifi3") { - fluentPath { - moveTo(10.94f, 16.45f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 2.12f, 2.12f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.12f, -2.12f) - close() - moveTo(8.34f, 13.7f) - arcToRelative(5.23f, 5.23f, 0.0f, false, true, 8.5f, 1.63f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.84f, 0.8f) - arcToRelative(3.23f, 3.23f, 0.0f, false, false, -5.93f, -0.01f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.83f, -0.8f) - curveToRelative(0.27f, -0.6f, 0.63f, -1.16f, 1.1f, -1.62f) - close() - } - } - return _wifi3!! - } - -private var _wifi3: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Wifi4.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Wifi4.kt deleted file mode 100644 index f4e9d23a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Wifi4.kt +++ /dev/null @@ -1,26 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Wifi4: ImageVector - get() { - if (_wifi4 != null) { - return _wifi4!! - } - _wifi4 = fluentIcon(name = "Filled.Wifi4") { - fluentPath { - moveTo(10.96f, 18.57f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 2.12f, -2.13f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.12f, 2.13f) - close() - } - } - return _wifi4!! - } - -private var _wifi4: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WifiLock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WifiLock.kt deleted file mode 100644 index 0f71571b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WifiLock.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WifiLock: ImageVector - get() { - if (_wifiLock != null) { - return _wifiLock!! - } - _wifiLock = fluentIcon(name = "Filled.WifiLock") { - fluentPath { - moveTo(17.78f, 10.7f) - curveToRelative(0.6f, 0.6f, 1.12f, 1.33f, 1.5f, 2.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.77f, 0.9f) - arcToRelative(6.13f, 6.13f, 0.0f, false, false, -8.17f, -2.75f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -1.77f, -1.28f) - arcToRelative(8.13f, 8.13f, 0.0f, false, true, 10.21f, 1.04f) - close() - moveTo(4.98f, 9.71f) - arcToRelative(8.3f, 8.3f, 0.0f, false, false, -0.26f, 0.27f) - curveToRelative(-0.6f, 0.36f, -1.08f, 0.88f, -1.38f, 1.51f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 2.18f, 10.0f) - arcToRelative(11.92f, 11.92f, 0.0f, false, true, 19.64f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.64f, 1.14f) - arcToRelative(9.92f, 9.92f, 0.0f, false, false, -15.2f, -1.41f) - close() - moveTo(15.74f, 13.7f) - curveToRelative(0.46f, 0.46f, 0.83f, 1.02f, 1.1f, 1.62f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.84f, 0.8f) - arcToRelative(3.23f, 3.23f, 0.0f, false, false, -3.37f, -1.93f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 10.0f, 13.05f) - lineTo(10.0f, 13.0f) - curveToRelative(0.0f, -0.14f, 0.0f, -0.28f, -0.02f, -0.41f) - curveToRelative(1.9f, -0.82f, 4.2f, -0.45f, 5.76f, 1.11f) - close() - moveTo(13.06f, 16.44f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 12.0f, 19.0f) - verticalLineToRelative(-3.0f) - curveToRelative(0.38f, 0.0f, 0.77f, 0.15f, 1.06f, 0.44f) - close() - moveTo(4.0f, 14.0f) - verticalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(0.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-6.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 2.0f, 20.5f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - lineTo(4.0f, 14.0f) - close() - moveTo(5.5f, 13.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) - close() - moveTo(7.5f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - } - } - return _wifiLock!! - } - -private var _wifiLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WifiOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WifiOff.kt deleted file mode 100644 index 17a7d2b3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WifiOff.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WifiOff: ImageVector - get() { - if (_wifiOff != null) { - return _wifiOff!! - } - _wifiOff = fluentIcon(name = "Filled.WifiOff") { - fluentPath { - moveToRelative(12.86f, 14.27f) - lineToRelative(7.43f, 7.44f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, -1.42f) - lineToRelative(-18.0f, -18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.42f, 1.42f) - lineToRelative(3.1f, 3.1f) - arcToRelative(11.97f, 11.97f, 0.0f, false, false, -3.21f, 3.17f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.64f, 1.14f) - arcToRelative(9.94f, 9.94f, 0.0f, false, true, 3.01f, -2.87f) - lineTo(8.0f, 9.4f) - arcToRelative(8.14f, 8.14f, 0.0f, false, false, -3.2f, 3.38f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.78f, 0.9f) - arcToRelative(6.08f, 6.08f, 0.0f, false, true, 2.9f, -2.8f) - lineToRelative(1.41f, 1.42f) - arcToRelative(5.2f, 5.2f, 0.0f, false, false, -3.63f, 3.01f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.83f, 0.8f) - arcToRelative(3.23f, 3.23f, 0.0f, false, true, 3.78f, -1.84f) - close() - moveTo(11.53f, 8.34f) - lineTo(13.75f, 10.57f) - arcToRelative(6.1f, 6.1f, 0.0f, false, true, 3.76f, 3.13f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.78f, -0.9f) - arcToRelative(8.1f, 8.1f, 0.0f, false, false, -7.76f, -4.45f) - close() - moveTo(8.5f, 5.33f) - lineToRelative(1.65f, 1.65f) - arcToRelative(9.9f, 9.9f, 0.0f, false, true, 10.02f, 4.15f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.64f, -1.14f) - arcTo(11.91f, 11.91f, 0.0f, false, false, 8.51f, 5.33f) - close() - moveTo(13.05f, 16.44f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -2.12f, 2.12f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.12f, -2.12f) - close() - } - } - return _wifiOff!! - } - -private var _wifiOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WifiWarning.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WifiWarning.kt deleted file mode 100644 index 5a67d24d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WifiWarning.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WifiWarning: ImageVector - get() { - if (_wifiWarning != null) { - return _wifiWarning!! - } - _wifiWarning = fluentIcon(name = "Filled.WifiWarning") { - fluentPath { - moveToRelative(17.78f, 10.7f) - lineToRelative(0.35f, 0.38f) - curveToRelative(-0.8f, -0.2f, -1.67f, -0.02f, -2.3f, 0.56f) - arcToRelative(6.13f, 6.13f, 0.0f, false, false, -9.26f, 2.04f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.78f, -0.9f) - arcToRelative(8.13f, 8.13f, 0.0f, false, true, 13.0f, -2.07f) - close() - moveTo(11.96f, 19.0f) - lineToRelative(1.21f, -2.43f) - arcTo(1.5f, 1.5f, 0.0f, true, false, 11.95f, 19.0f) - close() - moveTo(14.03f, 14.85f) - lineTo(14.93f, 13.05f) - arcToRelative(5.23f, 5.23f, 0.0f, false, false, -7.69f, 2.26f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.84f, 0.8f) - arcToRelative(3.23f, 3.23f, 0.0f, false, true, 4.95f, -1.26f) - close() - moveTo(20.42f, 8.3f) - curveToRelative(0.5f, 0.5f, 0.99f, 1.09f, 1.4f, 1.69f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.64f, 1.14f) - arcToRelative(9.92f, 9.92f, 0.0f, false, false, -16.36f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.64f, -1.15f) - arcTo(11.92f, 11.92f, 0.0f, false, true, 20.42f, 8.3f) - close() - moveTo(16.16f, 12.83f) - lineTo(12.16f, 20.83f) - arcTo(1.5f, 1.5f, 0.0f, false, false, 13.5f, 23.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.34f, -2.17f) - lineToRelative(-4.0f, -8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.68f, 0.0f) - close() - moveTo(18.0f, 15.5f) - verticalLineToRelative(3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - close() - moveTo(17.5f, 21.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - close() - } - } - return _wifiWarning!! - } - -private var _wifiWarning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Window.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Window.kt deleted file mode 100644 index d7a8c51e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Window.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Window: ImageVector - get() { - if (_window != null) { - return _window!! - } - _window = fluentIcon(name = "Filled.Window") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(4.5f, 17.75f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 8.5f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(9.25f) - close() - } - } - return _window!! - } - -private var _window: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WindowApps.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WindowApps.kt deleted file mode 100644 index 4ea1103f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WindowApps.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WindowApps: ImageVector - get() { - if (_windowApps != null) { - return _windowApps!! - } - _windowApps = fluentIcon(name = "Filled.WindowApps") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(2.76f) - lineTo(20.75f, 9.0f) - lineTo(19.5f, 9.0f) - verticalLineToRelative(-0.5f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(9.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(9.0f, 19.5f) - lineTo(9.0f, 21.0f) - lineTo(6.26f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(12.25f, 15.5f) - horizontalLineToRelative(3.25f) - verticalLineToRelative(-3.25f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(3.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-7.5f) - curveTo(11.01f, 23.0f, 10.0f, 22.0f, 10.0f, 20.75f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - close() - moveTo(17.0f, 12.25f) - verticalLineToRelative(3.25f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(-3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(15.5f, 21.5f) - lineTo(15.5f, 17.0f) - horizontalLineToRelative(-3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.25f) - close() - moveTo(17.0f, 17.0f) - verticalLineToRelative(4.5f) - horizontalLineToRelative(2.75f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(21.5f, 17.0f) - lineTo(17.0f, 17.0f) - close() - } - } - return _windowApps!! - } - -private var _windowApps: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WindowArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WindowArrowUp.kt deleted file mode 100644 index 664c0ce2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WindowArrowUp.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WindowArrowUp: ImageVector - get() { - if (_windowArrowUp != null) { - return _windowArrowUp!! - } - _windowArrowUp = fluentIcon(name = "Filled.WindowArrowUp") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(17.51f, 14.0f) - horizontalLineToRelative(-0.08f) - lineToRelative(-0.06f, 0.02f) - lineToRelative(-0.08f, 0.03f) - lineToRelative(-0.07f, 0.04f) - lineToRelative(-0.06f, 0.04f) - lineToRelative(-2.51f, 2.52f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) - lineToRelative(0.06f, 0.07f) - lineToRelative(0.07f, 0.06f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) - lineToRelative(0.07f, -0.06f) - lineTo(17.0f, 15.71f) - verticalLineToRelative(5.38f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - lineToRelative(0.09f, 0.01f) - horizontalLineToRelative(0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - lineTo(18.0f, 21.0f) - verticalLineToRelative(-5.3f) - lineToRelative(1.65f, 1.65f) - lineToRelative(0.07f, 0.06f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-0.07f, -0.06f) - lineToRelative(-2.54f, -2.55f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.07f, -0.03f) - lineToRelative(-0.06f, -0.02f) - lineToRelative(-0.06f, -0.01f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.06f, -0.01f) - close() - moveTo(6.25f, 3.0f) - horizontalLineToRelative(11.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.24f, 3.07f) - lineToRelative(0.01f, 0.18f) - verticalLineToRelative(5.77f) - arcToRelative(6.46f, 6.46f, 0.0f, false, false, -2.0f, -0.85f) - lineTo(19.0f, 8.0f) - lineTo(5.0f, 8.0f) - verticalLineToRelative(9.75f) - curveToRelative(0.0f, 0.65f, 0.5f, 1.18f, 1.12f, 1.24f) - lineToRelative(0.13f, 0.01f) - horizontalLineToRelative(4.92f) - curveToRelative(0.17f, 0.72f, 0.46f, 1.4f, 0.85f, 2.0f) - lineTo(6.25f, 21.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(3.0f, 17.75f) - lineTo(3.0f, 6.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(6.25f, 3.0f) - close() - } - } - return _windowArrowUp!! - } - -private var _windowArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WindowDatabase.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WindowDatabase.kt deleted file mode 100644 index 028e1d6c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WindowDatabase.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WindowDatabase: ImageVector - get() { - if (_windowDatabase != null) { - return _windowDatabase!! - } - _windowDatabase = fluentIcon(name = "Filled.WindowDatabase") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(4.58f) - curveToRelative(-0.47f, -0.12f, -0.98f, -0.2f, -1.5f, -0.25f) - lineTo(19.5f, 8.5f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(9.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(5.25f) - lineTo(11.5f, 21.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(14.66f, 12.48f) - curveToRelative(0.9f, -0.3f, 2.07f, -0.48f, 3.34f, -0.48f) - reflectiveCurveToRelative(2.45f, 0.18f, 3.34f, 0.48f) - curveToRelative(0.44f, 0.15f, 0.84f, 0.35f, 1.13f, 0.59f) - curveToRelative(0.3f, 0.24f, 0.53f, 0.55f, 0.53f, 0.93f) - reflectiveCurveToRelative(-0.23f, 0.7f, -0.53f, 0.93f) - curveToRelative(-0.3f, 0.24f, -0.7f, 0.44f, -1.13f, 0.59f) - curveToRelative(-0.9f, 0.3f, -2.07f, 0.48f, -3.34f, 0.48f) - reflectiveCurveToRelative(-2.45f, -0.18f, -3.34f, -0.48f) - arcToRelative(3.79f, 3.79f, 0.0f, false, true, -1.13f, -0.59f) - curveToRelative(-0.3f, -0.24f, -0.53f, -0.55f, -0.53f, -0.93f) - reflectiveCurveToRelative(0.23f, -0.7f, 0.53f, -0.93f) - curveToRelative(0.3f, -0.24f, 0.7f, -0.44f, 1.13f, -0.59f) - close() - moveTo(13.0f, 21.0f) - verticalLineToRelative(-4.6f) - curveToRelative(0.38f, 0.23f, 0.8f, 0.4f, 1.18f, 0.54f) - curveToRelative(1.08f, 0.37f, 2.43f, 0.56f, 3.82f, 0.56f) - curveToRelative(1.39f, 0.0f, 2.74f, -0.2f, 3.82f, -0.56f) - curveToRelative(0.39f, -0.13f, 0.8f, -0.3f, 1.18f, -0.55f) - lineTo(23.0f, 21.0f) - curveToRelative(0.0f, 0.43f, -0.26f, 0.75f, -0.55f, 0.98f) - curveToRelative(-0.29f, 0.22f, -0.68f, 0.4f, -1.11f, 0.55f) - curveToRelative(-0.88f, 0.3f, -2.06f, 0.47f, -3.34f, 0.47f) - curveToRelative(-1.28f, 0.0f, -2.46f, -0.17f, -3.34f, -0.47f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -1.11f, -0.55f) - curveToRelative(-0.29f, -0.23f, -0.55f, -0.55f, -0.55f, -0.98f) - close() - } - } - return _windowDatabase!! - } - -private var _windowDatabase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WindowDevTools.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WindowDevTools.kt deleted file mode 100644 index 73602fa1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WindowDevTools.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WindowDevTools: ImageVector - get() { - if (_windowDevTools != null) { - return _windowDevTools!! - } - _windowDevTools = fluentIcon(name = "Filled.WindowDevTools") { - fluentPath { - moveTo(3.0f, 3.05f) - curveToRelative(-0.62f, 0.63f, -1.0f, 1.5f, -1.0f, 2.45f) - verticalLineToRelative(11.0f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 5.5f, 20.0f) - horizontalLineToRelative(7.01f) - curveToRelative(0.06f, -0.25f, 0.15f, -0.5f, 0.28f, -0.74f) - lineToRelative(0.73f, -1.26f) - lineTo(5.5f, 18.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 4.0f, 16.5f) - lineTo(4.0f, 7.0f) - horizontalLineToRelative(14.0f) - verticalLineToRelative(1.25f) - arcToRelative(4.52f, 4.52f, 0.0f, false, true, 2.0f, -0.24f) - lineTo(20.0f, 5.5f) - curveToRelative(0.0f, -0.95f, -0.38f, -1.82f, -1.0f, -2.45f) - lineTo(19.0f, 3.0f) - horizontalLineToRelative(-0.05f) - curveToRelative(-0.63f, -0.62f, -1.5f, -1.0f, -2.45f, -1.0f) - horizontalLineToRelative(-11.0f) - curveToRelative(-0.95f, 0.0f, -1.82f, 0.38f, -2.45f, 1.0f) - lineTo(3.0f, 3.0f) - verticalLineToRelative(0.05f) - close() - moveTo(19.21f, 9.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 0.96f, 0.04f) - lineToRelative(-1.65f, 2.86f) - arcToRelative(1.17f, 1.17f, 0.0f, true, false, 2.02f, 1.17f) - lineToRelative(1.65f, -2.86f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -2.97f, 5.76f) - lineToRelative(-3.03f, 5.25f) - arcToRelative(1.46f, 1.46f, 0.0f, false, true, -2.53f, -1.46f) - lineToRelative(3.02f, -5.24f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 19.21f, 9.0f) - close() - moveTo(10.31f, 9.24f) - curveToRelative(0.27f, 0.3f, 0.25f, 0.78f, -0.05f, 1.06f) - lineToRelative(-2.4f, 2.2f) - lineToRelative(2.4f, 2.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.02f, 1.1f) - lineToRelative(-3.0f, -2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.1f) - lineToRelative(3.0f, -2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 0.04f) - close() - moveTo(13.26f, 15.8f) - lineTo(15.28f, 13.95f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.01f, -2.9f) - lineTo(13.26f, 9.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.02f, 1.1f) - lineToRelative(2.4f, 2.2f) - lineToRelative(-2.4f, 2.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.02f, 1.1f) - close() - } - } - return _windowDevTools!! - } - -private var _windowDevTools: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WindowNew.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WindowNew.kt deleted file mode 100644 index 85f452d1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WindowNew.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WindowNew: ImageVector - get() { - if (_windowNew != null) { - return _windowNew!! - } - _windowNew = fluentIcon(name = "Filled.WindowNew") { - fluentPath { - moveTo(19.0f, 17.98f) - verticalLineToRelative(-0.14f) - curveToRelative(1.17f, -0.5f, 2.0f, -1.65f, 2.0f, -3.0f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - horizontalLineToRelative(-8.5f) - curveToRelative(-1.45f, 0.0f, -2.67f, 0.94f, -3.1f, 2.25f) - horizontalLineToRelative(-0.2f) - arcToRelative(2.8f, 2.8f, 0.0f, false, false, -2.22f, 0.95f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 3.0f, 8.5f) - verticalLineToRelative(8.75f) - curveToRelative(0.0f, 1.06f, 0.38f, 2.01f, 1.11f, 2.7f) - arcTo(4.13f, 4.13f, 0.0f, false, false, 7.0f, 21.0f) - horizontalLineToRelative(8.0f) - curveToRelative(0.97f, 0.0f, 1.94f, -0.2f, 2.7f, -0.68f) - arcToRelative(2.7f, 2.7f, 0.0f, false, false, 1.3f, -2.34f) - close() - moveTo(5.96f, 6.75f) - lineTo(6.0f, 6.75f) - verticalLineToRelative(8.09f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(8.25f) - curveToRelative(-0.04f, 0.42f, -0.25f, 0.73f, -0.62f, 0.97f) - curveToRelative(-0.43f, 0.27f, -1.09f, 0.44f, -1.88f, 0.44f) - lineTo(7.0f, 19.5f) - curveToRelative(-0.84f, 0.0f, -1.46f, -0.27f, -1.86f, -0.64f) - curveToRelative(-0.4f, -0.38f, -0.64f, -0.92f, -0.64f, -1.61f) - lineTo(4.5f, 8.5f) - curveToRelative(0.0f, -0.63f, 0.16f, -1.07f, 0.38f, -1.33f) - curveToRelative(0.2f, -0.24f, 0.53f, -0.42f, 1.08f, -0.42f) - close() - moveTo(12.02f, 6.5f) - horizontalLineToRelative(4.73f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(4.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(16.0f, 9.06f) - lineToRelative(-5.22f, 5.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineTo(14.94f, 8.0f) - horizontalLineToRelative(-2.92f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - close() - } - } - return _windowNew!! - } - -private var _windowNew: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WindowShield.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WindowShield.kt deleted file mode 100644 index 4e73f277..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WindowShield.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WindowShield: ImageVector - get() { - if (_windowShield != null) { - return _windowShield!! - } - _windowShield = fluentIcon(name = "Filled.WindowShield") { - fluentPath { - moveTo(17.75f, 3.0f) - horizontalLineToRelative(0.18f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 21.0f, 6.08f) - verticalLineToRelative(6.54f) - arcToRelative(3.73f, 3.73f, 0.0f, false, true, -2.0f, -1.18f) - verticalLineTo(8.0f) - horizontalLineTo(5.0f) - verticalLineToRelative(9.75f) - curveToRelative(0.0f, 0.65f, 0.5f, 1.18f, 1.12f, 1.24f) - lineToRelative(0.13f, 0.01f) - horizontalLineToRelative(7.13f) - arcToRelative(5.86f, 5.86f, 0.0f, false, false, 1.15f, 2.0f) - horizontalLineTo(6.25f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.93f) - verticalLineTo(6.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.06f, -3.24f) - lineTo(6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(19.0f, 12.76f) - arcToRelative(4.29f, 4.29f, 0.0f, false, false, 2.6f, 0.9f) - curveToRelative(0.2f, 0.0f, 0.35f, 0.15f, 0.4f, 0.34f) - verticalLineToRelative(2.58f) - curveToRelative(0.0f, 2.69f, -1.31f, 4.51f, -3.87f, 5.4f) - arcToRelative(0.39f, 0.39f, 0.0f, false, true, -0.26f, 0.0f) - arcTo(6.66f, 6.66f, 0.0f, false, true, 16.0f, 21.0f) - arcToRelative(4.84f, 4.84f, 0.0f, false, true, -1.56f, -2.0f) - arcToRelative(6.05f, 6.05f, 0.0f, false, true, -0.44f, -2.15f) - verticalLineToRelative(-2.77f) - arcToRelative(0.4f, 0.4f, 0.0f, false, true, 0.4f, -0.41f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 3.32f, -1.55f) - arcToRelative(0.39f, 0.39f, 0.0f, false, true, 0.56f, 0.0f) - curveToRelative(0.24f, 0.25f, 0.47f, 0.46f, 0.72f, 0.64f) - close() - } - } - return _windowShield!! - } - -private var _windowShield: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WindowWrench.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WindowWrench.kt deleted file mode 100644 index 53cedd0c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WindowWrench.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WindowWrench: ImageVector - get() { - if (_windowWrench != null) { - return _windowWrench!! - } - _windowWrench = fluentIcon(name = "Filled.WindowWrench") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(4.8f) - curveToRelative(0.09f, -0.48f, 0.32f, -0.94f, 0.69f, -1.31f) - lineToRelative(0.19f, -0.19f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 8.5f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(2.53f) - lineToRelative(0.51f, 0.09f) - curveToRelative(0.47f, 0.1f, 0.82f, 0.4f, 0.99f, 0.79f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(20.13f, 12.51f) - arcToRelative(0.41f, 0.41f, 0.0f, false, false, -0.33f, -0.42f) - arcToRelative(4.06f, 4.06f, 0.0f, false, false, -3.75f, 1.1f) - arcToRelative(4.07f, 4.07f, 0.0f, false, false, -0.87f, 4.47f) - lineToRelative(-2.73f, 2.73f) - arcToRelative(1.52f, 1.52f, 0.0f, false, false, 0.0f, 2.16f) - curveToRelative(0.6f, 0.6f, 1.56f, 0.6f, 2.16f, 0.0f) - lineToRelative(2.73f, -2.73f) - arcToRelative(4.07f, 4.07f, 0.0f, false, false, 5.57f, -4.62f) - curveToRelative(-0.08f, -0.35f, -0.51f, -0.44f, -0.77f, -0.18f) - lineToRelative(-1.9f, 1.9f) - arcToRelative(1.53f, 1.53f, 0.0f, false, true, -0.74f, 0.4f) - arcToRelative(1.53f, 1.53f, 0.0f, false, true, -1.42f, -2.56f) - lineToRelative(1.9f, -1.9f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.15f, -0.35f) - close() - moveTo(17.72f, 21.0f) - lineToRelative(-0.12f, -0.03f) - lineToRelative(-0.03f, 0.03f) - horizontalLineToRelative(0.15f) - close() - } - } - return _windowWrench!! - } - -private var _windowWrench: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WrenchScrewdriver.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WrenchScrewdriver.kt deleted file mode 100644 index cd9debbb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/WrenchScrewdriver.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.WrenchScrewdriver: ImageVector - get() { - if (_wrenchScrewdriver != null) { - return _wrenchScrewdriver!! - } - _wrenchScrewdriver = fluentIcon(name = "Filled.WrenchScrewdriver") { - fluentPath { - moveTo(16.08f, 2.41f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.67f, -0.41f) - horizontalLineToRelative(1.5f) - curveToRelative(0.28f, 0.0f, 0.54f, 0.16f, 0.67f, 0.41f) - lineToRelative(1.0f, 2.0f) - curveToRelative(0.11f, 0.23f, 0.1f, 0.5f, -0.02f, 0.71f) - lineTo(19.0f, 6.7f) - verticalLineTo(12.0f) - horizontalLineToRelative(1.25f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.75f) - horizontalLineToRelative(-7.0f) - verticalLineToRelative(-1.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineTo(16.0f) - verticalLineTo(6.7f) - lineToRelative(-0.9f, -1.58f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.02f, -0.7f) - lineToRelative(1.0f, -2.0f) - close() - moveTo(14.0f, 16.0f) - verticalLineToRelative(2.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 7.0f, 0.0f) - verticalLineTo(16.0f) - horizontalLineToRelative(-7.0f) - close() - moveTo(8.83f, 2.21f) - curveToRelative(0.2f, -0.14f, 0.47f, -0.17f, 0.7f, -0.07f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.5f, 10.0f) - verticalLineToRelative(7.32f) - arcToRelative(2.54f, 2.54f, 0.0f, false, true, -5.07f, 0.0f) - verticalLineToRelative(-7.33f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.51f, -10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, 0.7f) - verticalLineTo(6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineTo(2.83f) - curveToRelative(0.0f, -0.25f, 0.12f, -0.48f, 0.33f, -0.62f) - close() - } - } - return _wrenchScrewdriver!! - } - -private var _wrenchScrewdriver: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/XboxConsole.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/XboxConsole.kt deleted file mode 100644 index 71a6eef8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/XboxConsole.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.XboxConsole: ImageVector - get() { - if (_xboxConsole != null) { - return _xboxConsole!! - } - _xboxConsole = fluentIcon(name = "Filled.XboxConsole") { - fluentPath { - moveTo(5.75f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(18.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineTo(8.0f) - verticalLineTo(11.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineTo(22.0f) - horizontalLineToRelative(8.75f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineTo(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineTo(5.75f) - close() - moveTo(9.5f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - } - } - return _xboxConsole!! - } - -private var _xboxConsole: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/XboxController.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/XboxController.kt deleted file mode 100644 index 2b3198db..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/XboxController.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.XboxController: ImageVector - get() { - if (_xboxController != null) { - return _xboxController!! - } - _xboxController = fluentIcon(name = "Filled.XboxController") { - fluentPath { - moveTo(9.8f, 5.5f) - arcToRelative(2.58f, 2.58f, 0.0f, false, false, -1.63f, -0.2f) - lineToRelative(-1.18f, 0.23f) - curveToRelative(-0.87f, 0.16f, -1.6f, 0.72f, -2.0f, 1.5f) - curveToRelative(-1.38f, 2.67f, -2.4f, 4.86f, -2.8f, 6.73f) - curveToRelative(-0.42f, 1.92f, -0.17f, 3.57f, 1.07f, 5.07f) - curveToRelative(0.82f, 1.0f, 2.23f, 0.8f, 2.97f, -0.03f) - lineToRelative(1.81f, -2.09f) - curveToRelative(0.41f, -0.47f, 1.0f, -0.75f, 1.63f, -0.75f) - horizontalLineToRelative(4.66f) - curveToRelative(0.62f, 0.0f, 1.22f, 0.28f, 1.63f, 0.75f) - lineToRelative(1.82f, 2.09f) - curveToRelative(0.73f, 0.83f, 2.14f, 1.03f, 2.96f, 0.03f) - curveToRelative(1.24f, -1.5f, 1.49f, -3.15f, 1.08f, -5.07f) - curveToRelative(-0.4f, -1.87f, -1.43f, -4.06f, -2.8f, -6.73f) - arcToRelative(2.85f, 2.85f, 0.0f, false, false, -2.0f, -1.5f) - lineToRelative(-1.19f, -0.23f) - arcToRelative(2.58f, 2.58f, 0.0f, false, false, -1.64f, 0.2f) - lineToRelative(-0.44f, 0.24f) - curveToRelative(-0.35f, 0.19f, -0.73f, 0.3f, -1.1f, 0.3f) - horizontalLineToRelative(-1.3f) - curveToRelative(-0.37f, 0.0f, -0.75f, -0.11f, -1.1f, -0.3f) - lineTo(9.8f, 5.5f) - close() - moveTo(12.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - close() - } - } - return _xboxController!! - } - -private var _xboxController: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/XboxControllerError.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/XboxControllerError.kt deleted file mode 100644 index 9b058077..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/XboxControllerError.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.XboxControllerError: ImageVector - get() { - if (_xboxControllerError != null) { - return _xboxControllerError!! - } - _xboxControllerError = fluentIcon(name = "Filled.XboxControllerError") { - fluentPath { - moveTo(9.8f, 4.5f) - arcToRelative(2.58f, 2.58f, 0.0f, false, false, -1.63f, -0.2f) - lineToRelative(-1.18f, 0.23f) - curveToRelative(-0.87f, 0.16f, -1.6f, 0.72f, -2.0f, 1.5f) - curveToRelative(-1.38f, 2.67f, -2.4f, 4.86f, -2.8f, 6.73f) - curveToRelative(-0.42f, 1.92f, -0.17f, 3.57f, 1.07f, 5.07f) - curveToRelative(0.82f, 1.0f, 2.23f, 0.8f, 2.97f, -0.03f) - lineToRelative(1.81f, -2.09f) - curveToRelative(0.41f, -0.47f, 1.0f, -0.75f, 1.63f, -0.75f) - horizontalLineToRelative(1.51f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, 10.23f, -3.65f) - arcTo(42.28f, 42.28f, 0.0f, false, false, 19.0f, 6.03f) - arcToRelative(2.85f, 2.85f, 0.0f, false, false, -2.0f, -1.5f) - lineToRelative(-1.18f, -0.23f) - arcToRelative(2.58f, 2.58f, 0.0f, false, false, -1.64f, 0.2f) - lineToRelative(-0.44f, 0.24f) - curveToRelative(-0.35f, 0.19f, -0.73f, 0.3f, -1.1f, 0.3f) - horizontalLineToRelative(-1.3f) - curveToRelative(-0.37f, 0.0f, -0.75f, -0.11f, -1.1f, -0.3f) - lineTo(9.8f, 4.5f) - close() - moveTo(12.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - close() - moveTo(23.0f, 16.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(17.5f, 13.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) - verticalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(17.5f, 20.13f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.25f) - close() - } - } - return _xboxControllerError!! - } - -private var _xboxControllerError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Xray.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Xray.kt deleted file mode 100644 index b461c5fd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/Xray.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.Xray: ImageVector - get() { - if (_xray != null) { - return _xray!! - } - _xray = fluentIcon(name = "Filled.Xray") { - fluentPath { - moveTo(14.0f, 16.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(9.25f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(4.0f, 5.25f) - curveTo(4.0f, 3.45f, 5.46f, 2.0f, 7.25f, 2.0f) - horizontalLineToRelative(9.5f) - curveTo(18.55f, 2.0f, 20.0f, 3.46f, 20.0f, 5.25f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-9.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 4.0f, 18.75f) - lineTo(4.0f, 5.25f) - close() - moveTo(12.75f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(0.75f) - lineTo(9.0f, 6.5f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 9.0f, 8.0f) - horizontalLineToRelative(2.25f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 2.12f, 1.5f) - horizontalLineToRelative(1.26f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 2.12f, -1.5f) - horizontalLineToRelative(-2.0f) - lineTo(12.75f, 13.0f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - lineTo(12.75f, 8.0f) - lineTo(15.0f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.25f) - verticalLineToRelative(-0.75f) - close() - } - } - return _xray!! - } - -private var _xray: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ZoomFit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ZoomFit.kt deleted file mode 100644 index 2524e716..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ZoomFit.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ZoomFit: ImageVector - get() { - if (_zoomFit != null) { - return _zoomFit!! - } - _zoomFit = fluentIcon(name = "Filled.ZoomFit") { - fluentPath { - moveTo(12.52f, 2.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.03f, 0.0f) - lineTo(9.27f, 4.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.03f, -1.09f) - lineToRelative(2.22f, -2.1f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.1f, 0.01f) - lineToRelative(2.2f, 2.1f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.03f, 1.08f) - lineToRelative(-2.21f, -2.1f) - close() - moveTo(4.77f, 8.2f) - curveToRelative(0.3f, 0.29f, 0.32f, 0.76f, 0.03f, 1.06f) - lineTo(2.7f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.01f, 1.03f) - lineToRelative(2.1f, 2.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.1f, 1.04f) - lineToRelative(-2.09f, -2.21f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -3.1f) - lineToRelative(2.1f, -2.21f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, -0.04f) - close() - moveTo(19.23f, 8.21f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 0.03f) - lineToRelative(2.1f, 2.22f) - curveToRelative(0.82f, 0.86f, 0.82f, 2.22f, 0.0f, 3.1f) - lineToRelative(-2.1f, 2.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.09f, -1.03f) - lineToRelative(2.1f, -2.21f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.03f) - lineToRelative(-2.1f, -2.21f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.03f, -1.07f) - close() - moveTo(15.79f, 19.23f) - curveToRelative(0.29f, 0.3f, 0.28f, 0.77f, -0.02f, 1.06f) - lineToRelative(-2.22f, 2.1f) - curveToRelative(-0.86f, 0.82f, -2.22f, 0.82f, -3.1f, 0.0f) - lineToRelative(-2.2f, -2.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.02f, -1.1f) - lineToRelative(2.22f, 2.1f) - curveToRelative(0.29f, 0.28f, 0.74f, 0.28f, 1.03f, 0.0f) - lineToRelative(2.21f, -2.09f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 0.03f) - close() - moveTo(9.75f, 7.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 7.0f, 9.75f) - verticalLineToRelative(4.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 9.75f, 17.0f) - horizontalLineToRelative(4.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 17.0f, 14.25f) - verticalLineToRelative(-4.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 14.25f, 7.0f) - horizontalLineToRelative(-4.5f) - close() - } - } - return _zoomFit!! - } - -private var _zoomFit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ZoomIn.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ZoomIn.kt deleted file mode 100644 index 71201757..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ZoomIn.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ZoomIn: ImageVector - get() { - if (_zoomIn != null) { - return _zoomIn!! - } - _zoomIn = fluentIcon(name = "Filled.ZoomIn") { - fluentPath { - moveTo(17.5f, 10.0f) - curveToRelative(0.0f, 1.71f, -0.57f, 3.29f, -1.54f, 4.55f) - lineToRelative(4.75f, 4.74f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 1.5f) - lineToRelative(-0.1f, -0.08f) - lineToRelative(-4.74f, -4.75f) - arcTo(7.5f, 7.5f, 0.0f, true, true, 17.5f, 10.0f) - close() - moveTo(10.0f, 5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineTo(9.0f) - horizontalLineTo(6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineTo(9.0f) - verticalLineToRelative(2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineTo(11.0f) - horizontalLineToRelative(2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineTo(11.0f) - verticalLineTo(6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - } - } - return _zoomIn!! - } - -private var _zoomIn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ZoomOut.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ZoomOut.kt deleted file mode 100644 index 38346186..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/ZoomOut.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.filled - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Filled.ZoomOut: ImageVector - get() { - if (_zoomOut != null) { - return _zoomOut!! - } - _zoomOut = fluentIcon(name = "Filled.ZoomOut") { - fluentPath { - moveTo(17.5f, 10.0f) - arcToRelative(7.5f, 7.5f, 0.0f, true, false, -2.95f, 5.96f) - lineToRelative(4.74f, 4.75f) - lineToRelative(0.1f, 0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.32f, -1.5f) - lineToRelative(-4.75f, -4.74f) - arcTo(7.47f, 7.47f, 0.0f, false, false, 17.5f, 10.0f) - close() - moveTo(13.5f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - horizontalLineToRelative(7.0f) - close() - } - } - return _zoomOut!! - } - -private var _zoomOut: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AccessTime.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AccessTime.kt deleted file mode 100644 index a5dbb40d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AccessTime.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AccessTime: ImageVector - get() { - if (_accessTime != null) { - return _accessTime!! - } - _accessTime = fluentIcon(name = "Regular.AccessTime") { - fluentPath { - moveTo(7.5f, 8.74f) - arcTo(2.3f, 2.3f, 0.0f, false, true, 9.25f, 8.0f) - curveToRelative(1.15f, 0.0f, 1.9f, 0.8f, 2.15f, 1.66f) - curveToRelative(0.26f, 0.85f, 0.1f, 1.9f, -0.62f, 2.62f) - arcToRelative(8.1f, 8.1f, 0.0f, false, true, -0.79f, 0.67f) - lineToRelative(-0.04f, 0.03f) - curveToRelative(-0.28f, 0.22f, -0.53f, 0.41f, -0.75f, 0.63f) - arcToRelative(2.3f, 2.3f, 0.0f, false, false, -0.58f, 0.89f) - horizontalLineToRelative(2.13f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - curveToRelative(0.0f, -1.25f, 0.52f, -2.08f, 1.14f, -2.7f) - curveToRelative(0.3f, -0.3f, 0.62f, -0.55f, 0.9f, -0.76f) - curveToRelative(0.28f, -0.22f, 0.5f, -0.4f, 0.68f, -0.57f) - curveToRelative(0.27f, -0.27f, 0.37f, -0.72f, 0.25f, -1.13f) - curveToRelative(-0.12f, -0.38f, -0.37f, -0.59f, -0.72f, -0.59f) - reflectiveCurveToRelative(-0.53f, 0.14f, -0.64f, 0.25f) - arcToRelative(0.84f, 0.84f, 0.0f, false, false, -0.15f, 0.23f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.43f, -0.46f) - lineToRelative(0.04f, -0.1f) - lineToRelative(0.08f, -0.17f) - curveToRelative(0.07f, -0.14f, 0.18f, -0.32f, 0.35f, -0.5f) - close() - moveTo(13.25f, 8.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.75f) - horizontalLineToRelative(1.5f) - verticalLineTo(8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(6.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineTo(13.0f) - horizontalLineToRelative(-2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 20.0f, 0.0f) - close() - moveTo(3.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 17.0f, 0.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, -17.0f, 0.0f) - close() - } - } - return _accessTime!! - } - -private var _accessTime: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Accessibility.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Accessibility.kt deleted file mode 100644 index cd539b52..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Accessibility.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Accessibility: ImageVector - get() { - if (_accessibility != null) { - return _accessibility!! - } - _accessibility = fluentIcon(name = "Regular.Accessibility") { - fluentPath { - moveTo(10.5f, 5.0f) - curveToRelative(0.0f, 0.64f, 0.4f, 1.19f, 0.97f, 1.4f) - curveToRelative(0.35f, 0.09f, 0.71f, 0.09f, 1.06f, 0.0f) - arcTo(1.5f, 1.5f, 0.0f, true, false, 10.5f, 5.0f) - close() - moveTo(9.03f, 5.4f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 5.95f, 0.0f) - lineToRelative(2.87f, -1.22f) - arcToRelative(2.27f, 2.27f, 0.0f, false, true, 2.96f, 1.18f) - arcToRelative(2.24f, 2.24f, 0.0f, false, true, -1.18f, 2.96f) - lineTo(16.0f, 9.86f) - verticalLineToRelative(3.71f) - lineToRelative(1.88f, 5.45f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.26f, 1.46f) - lineTo(12.0f, 15.78f) - lineToRelative(-1.62f, 4.7f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.26f, -1.46f) - lineTo(8.0f, 13.56f) - verticalLineToRelative(-3.7f) - lineTo(4.37f, 8.32f) - arcToRelative(2.24f, 2.24f, 0.0f, false, true, -1.18f, -2.96f) - arcToRelative(2.27f, 2.27f, 0.0f, false, true, 2.96f, -1.18f) - lineTo(9.03f, 5.4f) - close() - moveTo(11.03f, 7.84f) - curveToRelative(-0.17f, -0.05f, -0.34f, -0.1f, -0.5f, -0.17f) - lineTo(5.56f, 5.56f) - arcToRelative(0.77f, 0.77f, 0.0f, false, false, -1.0f, 0.4f) - curveToRelative(-0.16f, 0.38f, 0.02f, 0.81f, 0.4f, 0.98f) - lineToRelative(3.78f, 1.6f) - curveToRelative(0.46f, 0.2f, 0.76f, 0.65f, 0.76f, 1.15f) - verticalLineToRelative(3.91f) - curveToRelative(0.0f, 0.14f, -0.02f, 0.28f, -0.07f, 0.4f) - lineToRelative(-1.89f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.42f, 0.5f) - lineToRelative(2.1f, -6.13f) - arcToRelative(0.99f, 0.99f, 0.0f, false, true, 1.87f, 0.0f) - lineToRelative(2.11f, 6.12f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.42f, -0.48f) - lineToRelative(-1.89f, -5.49f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.07f, -0.4f) - lineTo(14.5f, 9.69f) - curveToRelative(0.0f, -0.5f, 0.3f, -0.95f, 0.76f, -1.15f) - lineToRelative(3.78f, -1.6f) - curveToRelative(0.39f, -0.17f, 0.56f, -0.6f, 0.4f, -0.98f) - arcToRelative(0.77f, 0.77f, 0.0f, false, false, -1.0f, -0.4f) - lineToRelative(-4.97f, 2.1f) - curveToRelative(-0.16f, 0.08f, -0.33f, 0.13f, -0.5f, 0.18f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -1.95f, 0.0f) - close() - } - } - return _accessibility!! - } - -private var _accessibility: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AccessibilityCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AccessibilityCheckmark.kt deleted file mode 100644 index b0cad174..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AccessibilityCheckmark.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AccessibilityCheckmark: ImageVector - get() { - if (_accessibilityCheckmark != null) { - return _accessibilityCheckmark!! - } - _accessibilityCheckmark = fluentIcon(name = "Regular.AccessibilityCheckmark") { - fluentPath { - moveTo(9.03f, 5.4f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 5.95f, 0.0f) - lineToRelative(2.87f, -1.22f) - arcToRelative(2.27f, 2.27f, 0.0f, false, true, 2.96f, 1.18f) - arcToRelative(2.24f, 2.24f, 0.0f, false, true, -1.18f, 2.96f) - lineTo(16.0f, 9.86f) - verticalLineToRelative(1.31f) - curveToRelative(-0.53f, 0.13f, -1.03f, 0.32f, -1.5f, 0.56f) - lineTo(14.5f, 9.7f) - curveToRelative(0.0f, -0.5f, 0.3f, -0.95f, 0.76f, -1.15f) - lineToRelative(3.78f, -1.6f) - curveToRelative(0.39f, -0.17f, 0.56f, -0.6f, 0.4f, -0.98f) - arcToRelative(0.77f, 0.77f, 0.0f, false, false, -1.0f, -0.4f) - lineToRelative(-4.97f, 2.1f) - curveToRelative(-0.16f, 0.08f, -0.33f, 0.13f, -0.5f, 0.18f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -1.95f, 0.0f) - curveToRelative(-0.16f, -0.05f, -0.33f, -0.1f, -0.48f, -0.17f) - lineTo(5.55f, 5.56f) - arcToRelative(0.77f, 0.77f, 0.0f, false, false, -1.0f, 0.4f) - curveToRelative(-0.16f, 0.38f, 0.02f, 0.81f, 0.4f, 0.98f) - lineToRelative(3.78f, 1.6f) - curveToRelative(0.46f, 0.2f, 0.76f, 0.65f, 0.76f, 1.15f) - verticalLineToRelative(3.91f) - curveToRelative(0.0f, 0.14f, -0.02f, 0.28f, -0.07f, 0.4f) - lineToRelative(-1.89f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.42f, 0.5f) - lineToRelative(2.1f, -6.13f) - arcToRelative(0.99f, 0.99f, 0.0f, false, true, 1.45f, -0.53f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, -1.44f, 5.13f) - lineToRelative(-0.7f, 2.01f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.25f, -1.46f) - lineTo(8.0f, 13.56f) - verticalLineToRelative(-3.7f) - lineTo(4.37f, 8.32f) - arcToRelative(2.24f, 2.24f, 0.0f, false, true, -1.18f, -2.96f) - arcToRelative(2.27f, 2.27f, 0.0f, false, true, 2.96f, -1.18f) - lineTo(9.03f, 5.4f) - close() - moveTo(10.5f, 5.0f) - curveToRelative(0.0f, 0.64f, 0.4f, 1.19f, 0.97f, 1.4f) - curveToRelative(0.35f, 0.09f, 0.71f, 0.09f, 1.06f, 0.0f) - arcTo(1.5f, 1.5f, 0.0f, true, false, 10.5f, 5.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-3.65f, 3.64f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _accessibilityCheckmark!! - } - -private var _accessibilityCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AddCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AddCircle.kt deleted file mode 100644 index ad21d132..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AddCircle.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AddCircle: ImageVector - get() { - if (_addCircle != null) { - return _addCircle!! - } - _addCircle = fluentIcon(name = "Regular.AddCircle") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) - close() - moveTo(12.0f, 7.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - verticalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _addCircle!! - } - -private var _addCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AddSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AddSquare.kt deleted file mode 100644 index 4ce3f2f8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AddSquare.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AddSquare: ImageVector - get() { - if (_addSquare != null) { - return _addSquare!! - } - _addSquare = fluentIcon(name = "Regular.AddSquare") { - fluentPath { - moveTo(12.0f, 7.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - verticalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(6.25f, 4.5f) - close() - } - } - return _addSquare!! - } - -private var _addSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AddSubtractCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AddSubtractCircle.kt deleted file mode 100644 index ee62975f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AddSubtractCircle.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AddSubtractCircle: ImageVector - get() { - if (_addSubtractCircle != null) { - return _addSubtractCircle!! - } - _addSubtractCircle = fluentIcon(name = "Regular.AddSubtractCircle") { - fluentPath { - moveTo(13.0f, 15.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(9.5f, 6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - lineTo(8.0f, 8.0f) - lineTo(6.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(8.0f, 9.5f) - verticalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(9.5f, 9.5f) - horizontalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(9.5f, 8.0f) - lineTo(9.5f, 6.75f) - close() - moveTo(12.0f, 22.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, -20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, 20.0f) - close() - moveTo(12.0f, 20.5f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 6.52f, -13.96f) - lineTo(6.54f, 18.52f) - arcTo(8.47f, 8.47f, 0.0f, false, false, 12.0f, 20.5f) - close() - moveTo(5.48f, 17.46f) - lineTo(17.46f, 5.48f) - arcTo(8.5f, 8.5f, 0.0f, false, false, 5.49f, 17.45f) - close() - } - } - return _addSubtractCircle!! - } - -private var _addSubtractCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Airplane.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Airplane.kt deleted file mode 100644 index 94342a6d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Airplane.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Airplane: ImageVector - get() { - if (_airplane != null) { - return _airplane!! - } - _airplane = fluentIcon(name = "Regular.Airplane") { - fluentPath { - moveToRelative(9.47f, 9.64f) - lineToRelative(-0.7f, -5.87f) - verticalLineToRelative(-0.08f) - curveToRelative(0.0f, -0.88f, 0.72f, -1.6f, 1.6f, -1.6f) - curveToRelative(0.8f, 0.0f, 1.55f, 0.42f, 1.98f, 1.13f) - lineToRelative(0.1f, 0.16f) - lineToRelative(2.94f, 6.09f) - lineToRelative(3.95f, -0.12f) - arcToRelative(2.6f, 2.6f, 0.0f, false, true, 2.68f, 2.53f) - verticalLineToRelative(0.07f) - arcToRelative(2.6f, 2.6f, 0.0f, false, true, -2.62f, 2.6f) - lineToRelative(-3.97f, -0.12f) - lineToRelative(-2.99f, 6.19f) - arcToRelative(2.3f, 2.3f, 0.0f, false, true, -2.06f, 1.3f) - curveToRelative(-0.9f, 0.0f, -1.61f, -0.73f, -1.61f, -1.64f) - verticalLineToRelative(-0.12f) - lineToRelative(0.71f, -5.9f) - lineToRelative(-2.13f, -0.07f) - lineToRelative(-0.27f, 0.74f) - arcToRelative(1.95f, 1.95f, 0.0f, false, true, -1.83f, 1.28f) - curveToRelative(-0.87f, 0.0f, -1.58f, -0.71f, -1.58f, -1.59f) - verticalLineToRelative(-0.76f) - lineToRelative(-0.16f, -0.03f) - arcToRelative(1.92f, 1.92f, 0.0f, false, true, 0.0f, -3.76f) - lineToRelative(0.16f, -0.03f) - verticalLineToRelative(-0.76f) - curveToRelative(0.0f, -0.8f, 0.6f, -1.48f, 1.43f, -1.58f) - horizontalLineToRelative(0.15f) - curveToRelative(0.75f, 0.0f, 1.43f, 0.42f, 1.77f, 1.12f) - lineToRelative(0.06f, 0.15f) - lineToRelative(0.27f, 0.74f) - lineToRelative(2.12f, -0.07f) - close() - moveTo(10.37f, 3.59f) - curveToRelative(-0.05f, 0.0f, -0.1f, 0.04f, -0.1f, 0.08f) - lineToRelative(0.88f, 7.42f) - lineToRelative(-4.84f, 0.15f) - lineToRelative(-0.62f, -1.72f) - lineToRelative(-0.04f, -0.08f) - curveToRelative(-0.07f, -0.15f, -0.23f, -0.25f, -0.35f, -0.25f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.09f, 0.09f, 0.0f, false, false, -0.07f, 0.09f) - verticalLineToRelative(1.98f) - lineToRelative(-1.35f, 0.28f) - arcToRelative(0.42f, 0.42f, 0.0f, false, false, 0.0f, 0.82f) - lineToRelative(1.35f, 0.28f) - verticalLineToRelative(1.98f) - curveToRelative(0.0f, 0.05f, 0.03f, 0.09f, 0.08f, 0.09f) - curveToRelative(0.19f, 0.0f, 0.36f, -0.12f, 0.42f, -0.3f) - lineToRelative(0.64f, -1.75f) - lineToRelative(4.86f, 0.15f) - lineToRelative(-0.9f, 7.47f) - verticalLineToRelative(0.03f) - curveToRelative(0.0f, 0.06f, 0.05f, 0.1f, 0.1f, 0.1f) - arcToRelative(0.8f, 0.8f, 0.0f, false, false, 0.72f, -0.44f) - lineToRelative(3.42f, -7.07f) - lineToRelative(4.9f, 0.15f) - curveToRelative(0.61f, 0.0f, 1.1f, -0.5f, 1.1f, -1.09f) - verticalLineToRelative(-0.04f) - arcToRelative(1.1f, 1.1f, 0.0f, false, false, -1.12f, -1.07f) - lineToRelative(-4.93f, 0.15f) - lineToRelative(-3.35f, -6.93f) - lineToRelative(-0.06f, -0.1f) - arcToRelative(0.8f, 0.8f, 0.0f, false, false, -0.67f, -0.38f) - close() - } - } - return _airplane!! - } - -private var _airplane: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AirplaneTakeOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AirplaneTakeOff.kt deleted file mode 100644 index c4caf020..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AirplaneTakeOff.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AirplaneTakeOff: ImageVector - get() { - if (_airplaneTakeOff != null) { - return _airplaneTakeOff!! - } - _airplaneTakeOff = fluentIcon(name = "Regular.AirplaneTakeOff") { - fluentPath { - moveToRelative(8.32f, 8.4f) - lineToRelative(-0.78f, -1.12f) - arcToRelative(2.1f, 2.1f, 0.0f, false, true, 3.05f, -2.81f) - lineToRelative(2.58f, 2.09f) - curveToRelative(0.31f, -0.33f, 0.68f, -0.68f, 1.1f, -1.0f) - arcToRelative(4.7f, 4.7f, 0.0f, false, true, 2.42f, -1.06f) - curveToRelative(2.24f, -0.17f, 3.91f, 1.25f, 4.86f, 2.33f) - curveToRelative(0.49f, 0.56f, 0.58f, 1.27f, 0.37f, 1.88f) - curveToRelative(-0.2f, 0.6f, -0.69f, 1.1f, -1.34f, 1.32f) - lineToRelative(-5.37f, 1.85f) - lineToRelative(-3.16f, 4.22f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.0f, -1.78f) - lineToRelative(0.25f, -1.28f) - lineToRelative(-2.53f, 0.54f) - arcTo(2.28f, 2.28f, 0.0f, false, true, 3.0f, 11.35f) - lineTo(3.0f, 7.7f) - arcToRelative(1.7f, 1.7f, 0.0f, false, true, 3.18f, -0.8f) - lineToRelative(0.96f, 1.76f) - lineToRelative(1.18f, -0.24f) - close() - moveTo(8.78f, 6.43f) - lineTo(9.91f, 8.08f) - lineTo(11.81f, 7.68f) - curveToRelative(0.09f, -0.02f, 0.17f, -0.05f, 0.26f, -0.09f) - lineTo(9.65f, 5.63f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.87f, 0.8f) - close() - moveTo(16.81f, 6.0f) - curveToRelative(-0.5f, 0.04f, -1.07f, 0.32f, -1.63f, 0.75f) - curveToRelative(-0.55f, 0.42f, -1.03f, 0.94f, -1.36f, 1.34f) - curveToRelative(-0.42f, 0.5f, -1.0f, 0.91f, -1.7f, 1.06f) - lineTo(6.9f, 10.23f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.8f, -0.37f) - lineTo(4.85f, 7.6f) - arcToRelative(0.2f, 0.2f, 0.0f, false, false, -0.36f, 0.1f) - verticalLineToRelative(3.65f) - curveToRelative(0.0f, 0.5f, 0.46f, 0.87f, 0.95f, 0.77f) - lineToRelative(3.64f, -0.79f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.9f, 0.88f) - lineToRelative(-0.47f, 2.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.33f, 0.6f) - lineToRelative(3.3f, -4.41f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.36f, -0.26f) - lineToRelative(5.58f, -1.93f) - arcToRelative(0.64f, 0.64f, 0.0f, false, false, 0.41f, -0.38f) - arcToRelative(0.4f, 0.4f, 0.0f, false, false, -0.08f, -0.41f) - curveToRelative(-0.86f, -0.98f, -2.1f, -1.94f, -3.61f, -1.82f) - close() - moveTo(3.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 19.5f) - close() - } - } - return _airplaneTakeOff!! - } - -private var _airplaneTakeOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Album.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Album.kt deleted file mode 100644 index 46bf4f76..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Album.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Album: ImageVector - get() { - if (_album != null) { - return _album!! - } - _album = fluentIcon(name = "Regular.Album") { - fluentPath { - moveTo(10.0f, 9.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - verticalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(10.0f, 9.0f) - close() - moveTo(12.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(16.5f, 9.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - horizontalLineToRelative(-4.0f) - close() - moveTo(4.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(12.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(16.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(22.0f, 6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - lineTo(4.0f, 4.0f) - close() - moveTo(20.0f, 5.5f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - verticalLineToRelative(12.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - lineTo(7.5f, 18.5f) - verticalLineToRelative(-13.0f) - lineTo(20.0f, 5.5f) - close() - moveTo(4.0f, 5.5f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(13.0f) - lineTo(4.0f, 18.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(3.5f, 6.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - close() - } - } - return _album!! - } - -private var _album: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlbumAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlbumAdd.kt deleted file mode 100644 index c46606d1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlbumAdd.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AlbumAdd: ImageVector - get() { - if (_albumAdd != null) { - return _albumAdd!! - } - _albumAdd = fluentIcon(name = "Regular.AlbumAdd") { - fluentPath { - moveTo(2.0f, 6.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(16.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - verticalLineToRelative(12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-7.5f) - curveToRelative(0.2f, -0.47f, 0.34f, -0.98f, 0.42f, -1.5f) - lineTo(20.0f, 18.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(20.5f, 6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - lineTo(7.5f, 5.5f) - verticalLineToRelative(5.58f) - arcToRelative(6.55f, 6.55f, 0.0f, false, false, -1.5f, -0.06f) - lineTo(6.0f, 5.5f) - lineTo(4.0f, 5.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(5.73f) - curveToRelative(-0.55f, 0.29f, -1.06f, 0.65f, -1.5f, 1.08f) - lineTo(2.0f, 6.0f) - close() - moveTo(12.0f, 7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(18.0f, 9.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(16.0f, 8.5f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - verticalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(11.5f, 9.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(4.0f) - close() - moveTo(6.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(7.0f, 20.5f) - lineTo(7.0f, 18.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - lineTo(7.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -1.0f, 0.0f) - lineTo(6.0f, 17.0f) - lineTo(3.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - lineTo(6.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) - close() - } - } - return _albumAdd!! - } - -private var _albumAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlertBadge.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlertBadge.kt deleted file mode 100644 index 47b75ef6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlertBadge.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AlertBadge: ImageVector - get() { - if (_alertBadge != null) { - return _alertBadge!! - } - _alertBadge = fluentIcon(name = "Regular.AlertBadge") { - fluentPath { - moveTo(11.99f, 2.0f) - curveToRelative(1.45f, 0.0f, 2.8f, 0.4f, 3.95f, 1.11f) - curveToRelative(-0.35f, 0.37f, -0.61f, 0.8f, -0.77f, 1.29f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, -9.2f, 5.1f) - verticalLineToRelative(4.4f) - lineTo(4.64f, 17.0f) - horizontalLineToRelative(14.72f) - lineTo(18.0f, 13.9f) - lineTo(18.0f, 9.28f) - lineToRelative(-0.03f, -0.32f) - arcToRelative(3.54f, 3.54f, 0.0f, false, false, 1.5f, -0.1f) - lineToRelative(0.02f, 0.38f) - verticalLineToRelative(4.35f) - lineToRelative(1.39f, 3.16f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.15f, 1.75f) - lineTo(15.0f, 18.5f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.17f) - verticalLineToRelative(-0.18f) - lineTo(4.24f, 18.49f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.15f, -1.74f) - lineToRelative(1.38f, -3.16f) - lineTo(4.47f, 9.5f) - arcToRelative(7.5f, 7.5f, 0.0f, false, true, 7.5f, -7.5f) - close() - moveTo(13.49f, 18.5f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.14f) - verticalLineToRelative(-0.15f) - close() - moveTo(16.03f, 5.05f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 18.5f, 3.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -2.47f, 2.05f) - close() - } - } - return _alertBadge!! - } - -private var _alertBadge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlertOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlertOff.kt deleted file mode 100644 index 64871e01..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlertOff.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AlertOff: ImageVector - get() { - if (_alertOff != null) { - return _alertOff!! - } - _alertOff = fluentIcon(name = "Regular.AlertOff") { - fluentPath { - moveToRelative(5.22f, 6.28f) - lineToRelative(-3.0f, -3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineToRelative(18.5f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-3.28f, -3.28f) - lineTo(15.0f, 18.5f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.18f) - verticalLineToRelative(-0.18f) - lineTo(4.27f, 18.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.14f, -1.75f) - lineTo(4.5f, 13.6f) - lineTo(4.5f, 9.5f) - curveToRelative(0.0f, -1.15f, 0.26f, -2.24f, 0.72f, -3.21f) - close() - moveTo(15.94f, 17.0f) - lineTo(6.36f, 7.43f) - arcTo(6.02f, 6.02f, 0.0f, false, false, 6.0f, 9.5f) - verticalLineToRelative(4.4f) - lineTo(4.66f, 17.0f) - horizontalLineToRelative(11.28f) - close() - moveTo(13.5f, 18.5f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.15f) - verticalLineToRelative(-0.15f) - close() - moveTo(18.0f, 13.9f) - lineTo(18.7f, 15.53f) - lineTo(20.9f, 17.71f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -0.02f, -0.96f) - lineToRelative(-1.38f, -3.16f) - lineTo(19.5f, 9.25f) - arcTo(7.5f, 7.5f, 0.0f, false, false, 7.04f, 3.86f) - lineToRelative(1.07f, 1.06f) - arcTo(5.99f, 5.99f, 0.0f, false, true, 18.0f, 9.28f) - lineTo(18.0f, 13.91f) - close() - } - } - return _alertOff!! - } - -private var _alertOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlertOn.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlertOn.kt deleted file mode 100644 index 10a4a616..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlertOn.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AlertOn: ImageVector - get() { - if (_alertOn != null) { - return _alertOn!! - } - _alertOn = fluentIcon(name = "Regular.AlertOn") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(7.5f, 7.5f, 0.0f, false, true, 7.5f, 7.25f) - verticalLineToRelative(4.35f) - lineToRelative(1.38f, 3.15f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.15f, 1.75f) - lineTo(15.0f, 18.5f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.18f) - verticalLineToRelative(-0.18f) - lineTo(4.27f, 18.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.14f, -1.75f) - lineTo(4.5f, 13.6f) - lineTo(4.5f, 9.5f) - curveTo(4.5f, 5.35f, 7.85f, 2.0f, 12.0f, 2.0f) - close() - moveTo(13.5f, 18.5f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.15f) - verticalLineToRelative(-0.15f) - close() - moveTo(12.0f, 3.5f) - curveToRelative(-3.32f, 0.0f, -6.0f, 2.67f, -6.0f, 6.0f) - verticalLineToRelative(4.4f) - lineTo(4.66f, 17.0f) - horizontalLineToRelative(14.7f) - lineTo(18.0f, 13.9f) - lineTo(18.0f, 9.29f) - arcToRelative(5.99f, 5.99f, 0.0f, false, false, -6.0f, -5.78f) - close() - moveTo(21.0f, 8.25f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(21.0f, 9.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(1.0f, 8.25f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(1.0f, 9.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(1.0f, 8.25f) - close() - moveTo(22.6f, 2.55f) - curveToRelative(0.23f, 0.3f, 0.2f, 0.72f, -0.07f, 0.98f) - lineToRelative(-0.08f, 0.07f) - lineToRelative(-2.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, -1.13f) - lineToRelative(0.08f, -0.07f) - lineToRelative(2.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, 0.15f) - close() - moveTo(2.45f, 2.4f) - lineToRelative(2.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.9f, 1.2f) - lineToRelative(-2.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.9f, -1.2f) - close() - } - } - return _alertOn!! - } - -private var _alertOn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlertSnooze.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlertSnooze.kt deleted file mode 100644 index 8c17d91e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlertSnooze.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AlertSnooze: ImageVector - get() { - if (_alertSnooze != null) { - return _alertSnooze!! - } - _alertSnooze = fluentIcon(name = "Regular.AlertSnooze") { - fluentPath { - moveTo(12.0f, 3.5f) - curveToRelative(-3.1f, 0.0f, -6.0f, 2.43f, -6.0f, 6.25f) - verticalLineToRelative(4.15f) - lineTo(4.68f, 17.0f) - horizontalLineToRelative(14.67f) - lineTo(18.0f, 13.9f) - verticalLineToRelative(-2.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(1.84f) - lineToRelative(1.38f, 3.16f) - curveToRelative(0.36f, 0.82f, -0.24f, 1.75f, -1.15f, 1.75f) - lineTo(15.0f, 18.5f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.0f) - lineTo(4.3f, 18.5f) - curveToRelative(-0.9f, 0.0f, -1.5f, -0.91f, -1.15f, -1.74f) - lineTo(4.5f, 13.6f) - lineTo(4.5f, 9.75f) - arcToRelative(7.53f, 7.53f, 0.0f, false, true, 10.0f, -7.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.5f, 1.42f) - arcToRelative(5.96f, 5.96f, 0.0f, false, false, -2.0f, -0.35f) - close() - moveTo(12.0f, 20.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - horizontalLineToRelative(-3.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - close() - moveTo(15.25f, 7.0f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(1.04f) - lineToRelative(-1.65f, 2.31f) - lineToRelative(-0.06f, 0.1f) - curveToRelative(-0.25f, 0.48f, 0.1f, 1.09f, 0.67f, 1.09f) - horizontalLineToRelative(2.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-1.04f) - lineToRelative(1.65f, -2.31f) - lineToRelative(0.06f, -0.1f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 15.25f, 7.0f) - close() - moveTo(21.25f, 2.0f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(2.13f) - lineToRelative(-2.76f, 4.35f) - lineToRelative(-0.05f, 0.09f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 17.75f, 9.0f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-2.13f) - lineToRelative(2.76f, -4.35f) - lineToRelative(0.05f, -0.09f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 21.25f, 2.0f) - close() - } - } - return _alertSnooze!! - } - -private var _alertSnooze: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlertUrgent.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlertUrgent.kt deleted file mode 100644 index 74218044..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlertUrgent.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AlertUrgent: ImageVector - get() { - if (_alertUrgent != null) { - return _alertUrgent!! - } - _alertUrgent = fluentIcon(name = "Regular.AlertUrgent") { - fluentPath { - moveToRelative(10.43f, 19.92f) - lineToRelative(3.56f, -1.5f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -3.56f, 1.5f) - close() - moveTo(15.86f, 2.1f) - arcToRelative(11.72f, 11.72f, 0.0f, false, true, 4.68f, 4.4f) - arcTo(11.72f, 11.72f, 0.0f, false, true, 22.0f, 12.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, -0.04f) - curveToRelative(0.05f, -2.1f, -0.37f, -3.92f, -1.26f, -5.46f) - arcToRelative(10.23f, 10.23f, 0.0f, false, false, -4.1f, -3.82f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.72f, -1.32f) - close() - moveTo(6.71f, 6.52f) - arcToRelative(5.82f, 5.82f, 0.0f, false, true, 7.6f, 2.74f) - lineToRelative(0.1f, 0.21f) - lineToRelative(1.29f, 2.9f) - lineToRelative(1.7f, 1.46f) - curveToRelative(0.09f, 0.08f, 0.17f, 0.18f, 0.26f, 0.33f) - lineToRelative(0.06f, 0.11f) - curveToRelative(0.28f, 0.63f, 0.0f, 1.37f, -0.64f, 1.65f) - lineTo(6.76f, 20.49f) - arcTo(1.25f, 1.25f, 0.0f, false, true, 5.0f, 19.35f) - lineTo(5.0f, 17.0f) - lineToRelative(-1.24f, -2.79f) - arcToRelative(5.82f, 5.82f, 0.0f, false, true, 2.95f, -7.7f) - close() - moveTo(5.13f, 13.6f) - lineTo(6.5f, 16.7f) - verticalLineToRelative(2.27f) - lineToRelative(9.61f, -4.25f) - lineToRelative(-1.65f, -1.43f) - lineToRelative(-1.41f, -3.19f) - lineToRelative(-0.09f, -0.18f) - arcToRelative(4.32f, 4.32f, 0.0f, false, false, -7.83f, 3.7f) - close() - moveTo(15.63f, 5.7f) - curveToRelative(0.96f, 0.52f, 1.74f, 1.29f, 2.31f, 2.28f) - curveToRelative(0.57f, 1.0f, 0.85f, 2.05f, 0.82f, 3.15f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, -0.03f) - curveToRelative(0.02f, -0.82f, -0.18f, -1.6f, -0.62f, -2.37f) - arcToRelative(4.42f, 4.42f, 0.0f, false, false, -1.73f, -1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.71f, -1.32f) - close() - } - } - return _alertUrgent!! - } - -private var _alertUrgent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlignBottom.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlignBottom.kt deleted file mode 100644 index d59adab1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlignBottom.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AlignBottom: ImageVector - get() { - if (_alignBottom != null) { - return _alignBottom!! - } - _alignBottom = fluentIcon(name = "Regular.AlignBottom") { - fluentPath { - moveTo(2.75f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(2.75f, 21.0f) - close() - moveTo(4.0f, 15.75f) - curveTo(4.0f, 16.99f, 5.0f, 18.0f, 6.25f, 18.0f) - horizontalLineToRelative(2.5f) - curveTo(9.99f, 18.0f, 11.0f, 17.0f, 11.0f, 15.75f) - lineTo(11.0f, 5.25f) - curveTo(11.0f, 4.01f, 10.0f, 3.0f, 8.75f, 3.0f) - horizontalLineToRelative(-2.5f) - curveTo(5.01f, 3.0f, 4.0f, 4.0f, 4.0f, 5.25f) - verticalLineToRelative(10.5f) - close() - moveTo(6.25f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(5.5f, 5.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-2.5f) - close() - moveTo(13.0f, 15.75f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(2.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-7.0f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-2.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(7.0f) - close() - moveTo(15.25f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-7.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(7.0f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-2.5f) - close() - } - } - return _alignBottom!! - } - -private var _alignBottom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlignCenterHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlignCenterHorizontal.kt deleted file mode 100644 index 8b209750..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlignCenterHorizontal.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AlignCenterHorizontal: ImageVector - get() { - if (_alignCenterHorizontal != null) { - return _alignCenterHorizontal!! - } - _alignCenterHorizontal = fluentIcon(name = "Regular.AlignCenterHorizontal") { - fluentPath { - moveTo(21.25f, 12.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(20.0f, 11.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-2.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-2.5f) - curveTo(5.01f, 4.5f, 4.0f, 5.5f, 4.0f, 6.75f) - verticalLineToRelative(4.5f) - lineTo(2.75f, 11.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(4.0f, 12.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(2.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-4.5f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(2.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-2.5f) - horizontalLineToRelative(1.25f) - close() - moveTo(18.5f, 8.75f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-6.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(9.5f, 6.75f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(5.5f, 6.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - } - } - return _alignCenterHorizontal!! - } - -private var _alignCenterHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlignCenterVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlignCenterVertical.kt deleted file mode 100644 index 2e119896..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlignCenterVertical.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AlignCenterVertical: ImageVector - get() { - if (_alignCenterVertical != null) { - return _alignCenterVertical!! - } - _alignCenterVertical = fluentIcon(name = "Regular.AlignCenterVertical") { - fluentPath { - moveTo(11.25f, 21.25f) - lineTo(11.25f, 20.0f) - horizontalLineToRelative(-2.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(-4.5f) - curveTo(5.51f, 11.0f, 4.5f, 10.0f, 4.5f, 8.75f) - verticalLineToRelative(-2.5f) - curveTo(4.5f, 5.01f, 5.5f, 4.0f, 6.75f, 4.0f) - horizontalLineToRelative(4.5f) - lineTo(11.25f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(12.75f, 4.0f) - horizontalLineToRelative(4.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-4.5f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(2.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-2.5f) - verticalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(15.25f, 18.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(6.5f) - close() - moveTo(17.25f, 9.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(6.75f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(10.5f) - close() - } - } - return _alignCenterVertical!! - } - -private var _alignCenterVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlignLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlignLeft.kt deleted file mode 100644 index e15f2049..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlignLeft.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AlignLeft: ImageVector - get() { - if (_alignLeft != null) { - return _alignLeft!! - } - _alignLeft = fluentIcon(name = "Regular.AlignLeft") { - fluentPath { - moveTo(3.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(3.0f, 2.75f) - close() - moveTo(8.25f, 4.0f) - curveTo(7.01f, 4.0f, 6.0f, 5.0f, 6.0f, 6.25f) - verticalLineToRelative(2.5f) - curveTo(6.0f, 9.99f, 7.0f, 11.0f, 8.25f, 11.0f) - horizontalLineToRelative(10.5f) - curveTo(19.99f, 11.0f, 21.0f, 10.0f, 21.0f, 8.75f) - verticalLineToRelative(-2.5f) - curveTo(21.0f, 5.01f, 20.0f, 4.0f, 18.75f, 4.0f) - lineTo(8.25f, 4.0f) - close() - moveTo(7.5f, 6.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(10.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(8.25f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-2.5f) - close() - moveTo(8.25f, 13.0f) - curveTo(7.01f, 13.0f, 6.0f, 14.0f, 6.0f, 15.25f) - verticalLineToRelative(2.5f) - curveTo(6.0f, 18.99f, 7.0f, 20.0f, 8.25f, 20.0f) - horizontalLineToRelative(7.0f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-7.0f) - close() - moveTo(7.5f, 15.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-2.5f) - close() - } - } - return _alignLeft!! - } - -private var _alignLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlignRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlignRight.kt deleted file mode 100644 index dfda72cb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlignRight.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AlignRight: ImageVector - get() { - if (_alignRight != null) { - return _alignRight!! - } - _alignRight = fluentIcon(name = "Regular.AlignRight") { - fluentPath { - moveTo(21.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(21.0f, 2.75f) - close() - moveTo(15.75f, 4.0f) - curveTo(16.99f, 4.0f, 18.0f, 5.0f, 18.0f, 6.25f) - verticalLineToRelative(2.5f) - curveTo(18.0f, 9.99f, 17.0f, 11.0f, 15.75f, 11.0f) - lineTo(5.25f, 11.0f) - curveTo(4.01f, 11.0f, 3.0f, 10.0f, 3.0f, 8.75f) - verticalLineToRelative(-2.5f) - curveTo(3.0f, 5.01f, 4.0f, 4.0f, 5.25f, 4.0f) - horizontalLineToRelative(10.5f) - close() - moveTo(16.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(5.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(10.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-2.5f) - close() - moveTo(15.75f, 13.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-7.0f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(7.0f) - close() - moveTo(16.5f, 15.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(7.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-2.5f) - close() - } - } - return _alignRight!! - } - -private var _alignRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlignTop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlignTop.kt deleted file mode 100644 index 40f06f67..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AlignTop.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AlignTop: ImageVector - get() { - if (_alignTop != null) { - return _alignTop!! - } - _alignTop = fluentIcon(name = "Regular.AlignTop") { - fluentPath { - moveTo(2.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(2.75f, 3.0f) - close() - moveTo(4.0f, 8.25f) - curveTo(4.0f, 7.01f, 5.0f, 6.0f, 6.25f, 6.0f) - horizontalLineToRelative(2.5f) - curveTo(9.99f, 6.0f, 11.0f, 7.0f, 11.0f, 8.25f) - verticalLineToRelative(10.5f) - curveTo(11.0f, 19.99f, 10.0f, 21.0f, 8.75f, 21.0f) - horizontalLineToRelative(-2.5f) - curveTo(5.01f, 21.0f, 4.0f, 20.0f, 4.0f, 18.75f) - lineTo(4.0f, 8.25f) - close() - moveTo(6.25f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(9.5f, 8.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.5f) - close() - moveTo(13.0f, 8.25f) - curveTo(13.0f, 7.01f, 14.0f, 6.0f, 15.25f, 6.0f) - horizontalLineToRelative(2.5f) - curveTo(18.99f, 6.0f, 20.0f, 7.0f, 20.0f, 8.25f) - verticalLineToRelative(7.0f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-2.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-7.0f) - close() - moveTo(15.25f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(7.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.5f) - close() - } - } - return _alignTop!! - } - -private var _alignTop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AnimalCat.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AnimalCat.kt deleted file mode 100644 index b7631c45..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AnimalCat.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AnimalCat: ImageVector - get() { - if (_animalCat != null) { - return _animalCat!! - } - _animalCat = fluentIcon(name = "Regular.AnimalCat") { - fluentPath { - moveTo(15.5f, 3.5f) - curveToRelative(-0.85f, 0.08f, -1.5f, 0.79f, -1.5f, 1.65f) - lineTo(14.0f, 10.0f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.76f, 0.75f) - curveToRelative(-1.44f, 0.0f, -2.45f, 0.59f, -3.2f, 1.49f) - arcToRelative(8.67f, 8.67f, 0.0f, false, false, -1.6f, 3.56f) - arcToRelative(19.66f, 19.66f, 0.0f, false, false, -0.47f, 4.7f) - lineTo(15.0f, 20.5f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - lineTo(11.5f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.25f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 3.75f, 3.75f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(0.75f) - curveToRelative(0.42f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-10.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(0.5f) - curveToRelative(0.99f, 0.0f, 1.58f, -1.08f, 1.07f, -1.9f) - lineToRelative(-0.62f, -1.0f) - curveToRelative(-0.23f, -0.38f, -0.63f, -0.6f, -1.06f, -0.6f) - horizontalLineToRelative(-2.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(15.5f, 3.51f) - close() - moveTo(6.47f, 20.5f) - arcTo(23.85f, 23.85f, 0.0f, false, true, 7.0f, 15.45f) - curveToRelative(0.34f, -1.46f, 0.91f, -3.0f, 1.9f, -4.17f) - arcToRelative(5.4f, 5.4f, 0.0f, false, true, 3.6f, -1.99f) - lineTo(12.5f, 5.15f) - arcTo(3.15f, 3.15f, 0.0f, false, true, 15.64f, 2.0f) - curveTo(16.4f, 2.0f, 17.0f, 2.6f, 17.0f, 3.35f) - lineTo(17.0f, 4.0f) - horizontalLineToRelative(1.64f) - curveToRelative(0.95f, 0.0f, 1.83f, 0.5f, 2.33f, 1.3f) - lineToRelative(0.62f, 1.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.09f, 4.19f) - verticalLineToRelative(9.26f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(5.8f, 22.0f) - arcToRelative(3.8f, 3.8f, 0.0f, false, true, -2.78f, -6.39f) - lineToRelative(1.14f, -1.22f) - arcToRelative(3.06f, 3.06f, 0.0f, false, false, -0.08f, -4.25f) - lineTo(2.97f, 9.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineToRelative(1.11f, 1.11f) - arcToRelative(4.56f, 4.56f, 0.0f, false, true, 0.11f, 6.34f) - lineToRelative(-1.13f, 1.21f) - arcTo(2.3f, 2.3f, 0.0f, false, false, 5.8f, 20.5f) - horizontalLineToRelative(0.67f) - close() - } - } - return _animalCat!! - } - -private var _animalCat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AnimalDog.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AnimalDog.kt deleted file mode 100644 index e43fde7d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AnimalDog.kt +++ /dev/null @@ -1,101 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AnimalDog: ImageVector - get() { - if (_animalDog != null) { - return _animalDog!! - } - _animalDog = fluentIcon(name = "Regular.AnimalDog") { - fluentPath { - moveTo(13.25f, 2.0f) - horizontalLineToRelative(3.18f) - curveToRelative(0.51f, 0.0f, 1.01f, 0.14f, 1.45f, 0.4f) - lineToRelative(2.76f, 1.71f) - curveToRelative(0.22f, 0.14f, 0.36f, 0.38f, 0.36f, 0.64f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-0.25f) - verticalLineToRelative(9.05f) - curveToRelative(1.0f, 0.13f, 1.7f, 0.55f, 2.1f, 1.27f) - curveToRelative(0.22f, 0.4f, 0.31f, 0.84f, 0.36f, 1.25f) - curveToRelative(0.04f, 0.39f, 0.04f, 0.8f, 0.04f, 1.15f) - verticalLineToRelative(0.03f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(5.83f, 22.0f) - arcToRelative(3.83f, 3.83f, 0.0f, false, true, -1.97f, -7.12f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.78f, 1.28f) - arcToRelative(2.33f, 2.33f, 0.0f, false, false, 1.2f, 4.34f) - curveToRelative(0.31f, 0.0f, 0.51f, -0.08f, 0.64f, -0.18f) - curveToRelative(0.14f, -0.1f, 0.25f, -0.23f, 0.33f, -0.4f) - arcToRelative(1.93f, 1.93f, 0.0f, false, false, 0.19f, -0.7f) - verticalLineToRelative(-0.03f) - arcToRelative(7.94f, 7.94f, 0.0f, false, true, 0.03f, -0.65f) - curveToRelative(0.04f, -0.43f, 0.1f, -1.02f, 0.23f, -1.68f) - curveToRelative(0.26f, -1.29f, 0.8f, -2.97f, 1.96f, -4.14f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.54f, -3.36f) - curveTo(11.0f, 8.13f, 11.0f, 7.0f, 11.0f, 6.5f) - lineTo(11.0f, 4.25f) - curveTo(11.0f, 3.01f, 12.0f, 2.0f, 13.25f, 2.0f) - close() - moveTo(7.75f, 19.25f) - lineTo(8.5f, 19.28f) - verticalLineToRelative(0.04f) - arcToRelative(2.57f, 2.57f, 0.0f, false, true, -0.05f, 0.38f) - curveToRelative(-0.04f, 0.21f, -0.12f, 0.5f, -0.25f, 0.8f) - horizontalLineToRelative(7.25f) - arcToRelative(1.7f, 1.7f, 0.0f, false, false, -1.5f, -1.45f) - arcToRelative(4.7f, 4.7f, 0.0f, false, false, -0.98f, -0.05f) - horizontalLineToRelative(-0.2f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.03f, -1.5f) - horizontalLineToRelative(0.51f) - curveToRelative(0.23f, 0.0f, 0.5f, 0.0f, 0.75f, 0.04f) - verticalLineToRelative(-2.29f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(2.8f) - arcToRelative(3.24f, 3.24f, 0.0f, false, true, 1.46f, 2.45f) - horizontalLineToRelative(2.53f) - lineToRelative(-0.02f, -0.27f) - curveToRelative(-0.04f, -0.3f, -0.1f, -0.52f, -0.19f, -0.68f) - curveToRelative(-0.13f, -0.23f, -0.43f, -0.55f, -1.53f, -0.55f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(17.0f, 7.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(19.5f, 5.17f) - lineToRelative(-2.41f, -1.48f) - curveToRelative(-0.2f, -0.13f, -0.42f, -0.19f, -0.66f, -0.19f) - horizontalLineToRelative(-3.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(2.23f) - curveToRelative(0.01f, 0.23f, 0.1f, 0.43f, 0.2f, 0.56f) - curveToRelative(0.1f, 0.11f, 0.27f, 0.21f, 0.55f, 0.21f) - curveToRelative(0.29f, 0.0f, 0.45f, -0.1f, 0.56f, -0.22f) - curveToRelative(0.11f, -0.13f, 0.19f, -0.33f, 0.19f, -0.58f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - curveToRelative(0.0f, 0.55f, -0.18f, 1.13f, -0.57f, 1.57f) - curveToRelative(-0.4f, 0.46f, -0.98f, 0.73f, -1.68f, 0.73f) - curveToRelative(-0.31f, 0.0f, -0.6f, -0.05f, -0.86f, -0.15f) - curveToRelative(-0.03f, 0.33f, -0.08f, 0.68f, -0.15f, 1.04f) - arcToRelative(8.0f, 8.0f, 0.0f, false, true, -1.96f, 4.14f) - arcToRelative(6.78f, 6.78f, 0.0f, false, false, -1.54f, 3.38f) - arcToRelative(12.7f, 12.7f, 0.0f, false, false, -0.24f, 2.06f) - verticalLineToRelative(0.06f) - lineToRelative(-0.75f, -0.03f) - close() - moveTo(16.25f, 22.0f) - verticalLineToRelative(-0.75f) - close() - } - } - return _animalDog!! - } - -private var _animalDog: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AnimalRabbit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AnimalRabbit.kt deleted file mode 100644 index 8bd71703..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AnimalRabbit.kt +++ /dev/null @@ -1,117 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AnimalRabbit: ImageVector - get() { - if (_animalRabbit != null) { - return _animalRabbit!! - } - _animalRabbit = fluentIcon(name = "Regular.AnimalRabbit") { - fluentPath { - moveTo(7.75f, 19.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.74f, -2.58f) - lineTo(5.0f, 16.25f) - lineTo(5.0f, 15.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 2.56f, -4.56f) - curveToRelative(0.51f, -0.25f, 1.08f, -0.4f, 1.68f, -0.43f) - lineTo(9.5f, 10.0f) - horizontalLineToRelative(4.25f) - lineToRelative(0.24f, 0.03f) - lineToRelative(0.13f, 0.01f) - lineToRelative(0.11f, -0.16f) - lineToRelative(0.13f, -0.18f) - lineToRelative(-1.78f, -1.78f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.22f, -2.57f) - lineToRelative(0.1f, -0.13f) - lineToRelative(0.12f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.7f, -0.12f) - lineToRelative(0.14f, 0.12f) - lineToRelative(5.4f, 5.41f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -2.63f, 6.83f) - lineTo(17.78f, 17.33f) - lineToRelative(-0.03f, 0.06f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.14f, 1.59f) - lineToRelative(-0.19f, 0.01f) - lineToRelative(-0.17f, 0.01f) - horizontalLineToRelative(-7.5f) - close() - moveTo(14.35f, 6.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.76f, 0.64f) - lineToRelative(0.05f, 0.07f) - lineToRelative(2.81f, 2.81f) - lineToRelative(-0.64f, 0.64f) - curveToRelative(-0.2f, 0.21f, -0.38f, 0.45f, -0.52f, 0.7f) - lineToRelative(-0.1f, 0.19f) - lineToRelative(-0.26f, 0.58f) - lineToRelative(-0.62f, -0.17f) - curveToRelative(-0.2f, -0.05f, -0.4f, -0.09f, -0.6f, -0.1f) - lineToRelative(-0.21f, -0.01f) - horizontalLineToRelative(-4.0f) - curveToRelative(-0.7f, 0.0f, -1.34f, 0.24f, -1.85f, 0.64f) - lineToRelative(-0.15f, 0.12f) - lineToRelative(-0.16f, 0.16f) - lineToRelative(-0.1f, 0.1f) - lineToRelative(-0.1f, 0.13f) - lineToRelative(-0.13f, 0.17f) - lineToRelative(-0.04f, 0.06f) - lineToRelative(-0.11f, 0.2f) - lineToRelative(-0.06f, 0.11f) - lineToRelative(-0.06f, 0.14f) - lineToRelative(-0.04f, 0.08f) - lineToRelative(-0.05f, 0.15f) - lineToRelative(-0.05f, 0.18f) - lineToRelative(-0.06f, 0.3f) - lineToRelative(-0.02f, 0.08f) - lineToRelative(-0.01f, 0.19f) - lineToRelative(-0.01f, 0.19f) - verticalLineToRelative(1.75f) - curveToRelative(0.0f, 0.65f, 0.5f, 1.18f, 1.12f, 1.24f) - lineToRelative(0.13f, 0.01f) - lineTo(12.0f, 17.5f) - verticalLineToRelative(-0.25f) - curveToRelative(0.0f, -0.64f, -0.49f, -1.18f, -1.12f, -1.24f) - lineTo(9.75f, 16.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(1.1f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.58f) - lineTo(13.5f, 17.5f) - horizontalLineToRelative(1.75f) - curveToRelative(0.6f, 0.0f, 1.1f, -0.41f, 1.22f, -0.98f) - lineToRelative(0.02f, -0.12f) - lineToRelative(0.1f, -0.84f) - lineToRelative(0.82f, 0.2f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.48f, -4.07f) - lineToRelative(-0.12f, -0.13f) - lineToRelative(-5.41f, -5.4f) - close() - moveTo(5.0f, 10.5f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -0.14f, 3.0f) - horizontalLineToRelative(0.25f) - verticalLineToRelative(-0.03f) - lineToRelative(0.14f, -0.44f) - lineToRelative(0.1f, -0.25f) - lineToRelative(0.1f, -0.24f) - lineToRelative(0.05f, -0.11f) - lineToRelative(0.14f, -0.24f) - lineToRelative(0.08f, -0.14f) - lineToRelative(0.15f, -0.2f) - lineToRelative(0.07f, -0.1f) - lineToRelative(0.11f, -0.14f) - lineToRelative(0.13f, -0.15f) - lineToRelative(0.15f, -0.15f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -1.04f, -0.78f) - lineToRelative(-0.15f, -0.02f) - lineTo(5.0f, 10.5f) - close() - } - } - return _animalRabbit!! - } - -private var _animalRabbit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AnimalTurtle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AnimalTurtle.kt deleted file mode 100644 index d15e1e1b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AnimalTurtle.kt +++ /dev/null @@ -1,107 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AnimalTurtle: ImageVector - get() { - if (_animalTurtle != null) { - return _animalTurtle!! - } - _animalTurtle = fluentIcon(name = "Regular.AnimalTurtle") { - fluentPath { - moveTo(11.0f, 6.0f) - arcToRelative(6.14f, 6.14f, 0.0f, false, true, 5.8f, 4.12f) - lineToRelative(0.07f, 0.24f) - lineToRelative(0.05f, 0.14f) - horizontalLineToRelative(2.33f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.74f, 2.58f) - verticalLineToRelative(1.17f) - curveToRelative(0.0f, 0.92f, -0.7f, 1.67f, -1.6f, 1.74f) - horizontalLineToRelative(-1.77f) - lineToRelative(0.24f, 0.6f) - curveToRelative(0.35f, 0.84f, -0.01f, 1.8f, -0.81f, 2.21f) - lineToRelative(-0.14f, 0.07f) - curveToRelative(-0.16f, 0.06f, -0.32f, 0.1f, -0.5f, 0.12f) - horizontalLineToRelative(-1.95f) - curveToRelative(-0.63f, 0.0f, -1.2f, -0.33f, -1.51f, -0.86f) - lineToRelative(-0.08f, -0.14f) - lineToRelative(-0.53f, -1.14f) - horizontalLineToRelative(0.05f) - curveToRelative(-1.4f, 0.18f, -2.82f, 0.2f, -4.22f, 0.06f) - lineToRelative(-0.5f, -0.06f) - lineTo(8.14f, 18.0f) - curveToRelative(-0.3f, 0.61f, -0.9f, 1.0f, -1.59f, 1.0f) - horizontalLineToRelative(-1.8f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.62f, -2.41f) - lineToRelative(0.44f, -1.05f) - arcTo(3.24f, 3.24f, 0.0f, false, true, 2.0f, 12.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.64f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(1.89f) - lineToRelative(0.5f, -1.64f) - arcTo(6.14f, 6.14f, 0.0f, false, true, 11.0f, 6.0f) - close() - moveTo(17.77f, 15.7f) - curveToRelative(-0.77f, 0.3f, -1.55f, 0.56f, -2.35f, 0.76f) - lineToRelative(-0.55f, 0.13f) - lineToRelative(0.36f, 0.77f) - curveToRelative(0.03f, 0.05f, 0.07f, 0.09f, 0.12f, 0.11f) - lineToRelative(0.05f, 0.02f) - horizontalLineToRelative(1.84f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.25f, -0.27f) - lineToRelative(-0.02f, -0.07f) - lineTo(17.0f, 16.0f) - horizontalLineToRelative(-0.05f) - lineToRelative(0.42f, -0.15f) - lineToRelative(0.4f, -0.16f) - close() - moveTo(4.22f, 15.7f) - lineTo(4.62f, 15.84f) - lineTo(5.0f, 15.98f) - lineTo(4.52f, 17.15f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.23f, 0.34f) - horizontalLineToRelative(1.86f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.17f, -0.14f) - lineToRelative(0.36f, -0.76f) - horizontalLineToRelative(0.04f) - curveToRelative(-1.0f, -0.2f, -2.0f, -0.51f, -2.96f, -0.9f) - close() - moveTo(11.0f, 7.5f) - arcToRelative(4.64f, 4.64f, 0.0f, false, false, -4.37f, 3.08f) - lineToRelative(-0.07f, 0.21f) - lineToRelative(-1.14f, 3.75f) - lineToRelative(0.17f, 0.06f) - arcToRelative(16.67f, 16.67f, 0.0f, false, false, 10.41f, 0.13f) - lineToRelative(0.41f, -0.13f) - lineToRelative(0.16f, -0.06f) - lineToRelative(-1.13f, -3.75f) - arcToRelative(4.64f, 4.64f, 0.0f, false, false, -4.0f, -3.27f) - lineToRelative(-0.23f, -0.02f) - lineTo(11.0f, 7.5f) - close() - moveTo(4.02f, 14.0f) - lineToRelative(0.15f, -0.5f) - horizontalLineToRelative(-0.5f) - lineToRelative(0.02f, 0.05f) - curveToRelative(0.09f, 0.17f, 0.2f, 0.32f, 0.33f, 0.45f) - close() - moveTo(17.37f, 12.0f) - lineTo(18.13f, 14.5f) - horizontalLineToRelative(2.12f) - curveToRelative(0.11f, 0.0f, 0.21f, -0.08f, 0.24f, -0.2f) - verticalLineToRelative(-1.05f) - curveToRelative(0.0f, -0.65f, -0.49f, -1.18f, -1.12f, -1.24f) - horizontalLineToRelative(-0.12f) - lineTo(17.37f, 12.0f) - close() - } - } - return _animalTurtle!! - } - -private var _animalTurtle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AppFolder.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AppFolder.kt deleted file mode 100644 index 2e73ceeb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AppFolder.kt +++ /dev/null @@ -1,122 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AppFolder: ImageVector - get() { - if (_appFolder != null) { - return _appFolder!! - } - _appFolder = fluentIcon(name = "Regular.AppFolder") { - fluentPath { - moveTo(11.5f, 14.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-2.0f) - curveToRelative(-0.96f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(2.0f) - curveTo(6.0f, 17.22f, 6.8f, 18.0f, 7.75f, 18.0f) - horizontalLineToRelative(2.0f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-2.0f) - close() - moveTo(7.75f, 14.0f) - horizontalLineToRelative(2.0f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - close() - moveTo(18.0f, 14.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-2.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(2.0f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-2.0f) - close() - moveTo(14.25f, 14.0f) - horizontalLineToRelative(2.0f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - close() - moveTo(11.5f, 7.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-2.0f) - curveTo(6.78f, 6.0f, 6.0f, 6.78f, 6.0f, 7.75f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(2.0f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-2.0f) - close() - moveTo(7.75f, 7.5f) - horizontalLineToRelative(2.0f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - close() - moveTo(18.0f, 7.75f) - curveTo(18.0f, 6.78f, 17.2f, 6.0f, 16.25f, 6.0f) - horizontalLineToRelative(-2.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(2.0f) - curveToRelative(0.96f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-2.0f) - close() - moveTo(14.25f, 7.5f) - horizontalLineToRelative(2.0f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - close() - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 6.25f) - close() - } - } - return _appFolder!! - } - -private var _appFolder: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AppGeneric.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AppGeneric.kt deleted file mode 100644 index 4a86a526..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AppGeneric.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AppGeneric: ImageVector - get() { - if (_appGeneric != null) { - return _appGeneric!! - } - _appGeneric = fluentIcon(name = "Regular.AppGeneric") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(0.25f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(-0.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(6.25f, 4.5f) - close() - moveTo(4.5f, 17.75f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 8.0f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(9.75f) - close() - moveTo(6.85f, 9.5f) - horizontalLineToRelative(3.3f) - curveToRelative(0.47f, 0.0f, 0.85f, 0.38f, 0.85f, 0.85f) - verticalLineToRelative(6.8f) - curveToRelative(0.0f, 0.47f, -0.38f, 0.85f, -0.85f, 0.85f) - horizontalLineToRelative(-3.3f) - arcToRelative(0.85f, 0.85f, 0.0f, false, true, -0.85f, -0.85f) - verticalLineToRelative(-6.8f) - curveToRelative(0.0f, -0.47f, 0.38f, -0.85f, 0.85f, -0.85f) - close() - moveTo(7.5f, 16.5f) - horizontalLineToRelative(2.0f) - lineTo(9.5f, 11.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(5.5f) - close() - moveTo(12.0f, 10.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(12.75f, 12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - close() - } - } - return _appGeneric!! - } - -private var _appGeneric: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AppRecent.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AppRecent.kt deleted file mode 100644 index 89de12ea..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AppRecent.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AppRecent: ImageVector - get() { - if (_appRecent != null) { - return _appRecent!! - } - _appRecent = fluentIcon(name = "Regular.AppRecent") { - fluentPath { - moveTo(15.75f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - lineTo(18.0f, 5.0f) - horizontalLineToRelative(1.75f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - lineTo(18.0f, 19.0f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - horizontalLineToRelative(-7.5f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(6.0f, 19.75f) - lineTo(6.0f, 19.0f) - lineTo(4.25f, 19.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(2.0f, 16.75f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 5.0f) - lineTo(6.0f, 5.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(8.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(15.75f, 3.5f) - horizontalLineToRelative(-7.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(7.5f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - lineTo(16.5f, 4.25f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - close() - moveTo(6.0f, 6.5f) - lineTo(4.25f, 6.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - lineTo(6.0f, 17.5f) - verticalLineToRelative(-11.0f) - close() - moveTo(19.75f, 6.5f) - lineTo(18.0f, 6.5f) - verticalLineToRelative(11.0f) - horizontalLineToRelative(1.75f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - verticalLineToRelative(-9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - } - } - return _appRecent!! - } - -private var _appRecent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AppStore.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AppStore.kt deleted file mode 100644 index 486e976d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AppStore.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AppStore: ImageVector - get() { - if (_appStore != null) { - return _appStore!! - } - _appStore = fluentIcon(name = "Regular.AppStore") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(9.37f, 15.25f) - lineToRelative(-0.51f, 0.88f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, -0.67f) - lineToRelative(0.04f, -0.09f) - lineToRelative(0.07f, -0.12f) - horizontalLineToRelative(1.74f) - close() - moveTo(13.29f, 10.02f) - lineTo(15.01f, 13.0f) - horizontalLineToRelative(1.74f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.29f, 0.75f, 0.65f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.75f) - horizontalLineToRelative(-0.97f) - lineToRelative(0.5f, 0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.24f, 0.84f) - lineToRelative(-0.06f, -0.09f) - lineToRelative(-2.66f, -4.6f) - lineToRelative(0.87f, -1.5f) - close() - moveTo(13.26f, 7.1f) - curveToRelative(0.33f, 0.2f, 0.46f, 0.6f, 0.32f, 0.94f) - lineToRelative(-0.05f, 0.09f) - lineTo(10.68f, 13.0f) - horizontalLineToRelative(1.73f) - lineToRelative(0.87f, 1.5f) - lineTo(7.25f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - horizontalLineToRelative(1.8f) - lineToRelative(2.18f, -3.74f) - lineToRelative(-0.67f, -1.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.2f, -0.96f) - lineToRelative(0.08f, -0.06f) - curveToRelative(0.33f, -0.19f, 0.74f, -0.1f, 0.97f, 0.19f) - lineToRelative(0.05f, 0.08f) - lineToRelative(0.24f, 0.41f) - lineToRelative(0.24f, -0.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.02f, -0.28f) - close() - } - } - return _appStore!! - } - -private var _appStore: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AppTitle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AppTitle.kt deleted file mode 100644 index 369514ea..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AppTitle.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AppTitle: ImageVector - get() { - if (_appTitle != null) { - return _appTitle!! - } - _appTitle = fluentIcon(name = "Regular.AppTitle") { - fluentPath { - moveTo(4.75f, 20.5f) - horizontalLineToRelative(14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(4.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(14.6f) - horizontalLineToRelative(-14.5f) - close() - moveTo(16.25f, 3.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 20.0f, 6.75f) - verticalLineToRelative(8.5f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 16.25f, 19.0f) - horizontalLineToRelative(-8.5f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 4.0f, 15.25f) - verticalLineToRelative(-8.5f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 7.75f, 3.0f) - horizontalLineToRelative(8.5f) - close() - moveTo(16.25f, 4.5f) - horizontalLineToRelative(-8.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(8.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - close() - } - } - return _appTitle!! - } - -private var _appTitle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ApprovalsApp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ApprovalsApp.kt deleted file mode 100644 index 8b1654ba..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ApprovalsApp.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ApprovalsApp: ImageVector - get() { - if (_approvalsApp != null) { - return _approvalsApp!! - } - _approvalsApp = fluentIcon(name = "Regular.ApprovalsApp") { - fluentPath { - moveTo(11.78f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(11.94f, 4.0f) - arcToRelative(9.0f, 9.0f, 0.0f, true, false, 9.02f, 9.82f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, -0.13f) - arcToRelative(7.5f, 7.5f, 0.0f, true, true, -7.52f, -8.19f) - lineToRelative(-1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.06f) - lineToRelative(-2.5f, -2.5f) - close() - moveTo(15.78f, 10.22f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-4.5f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 0.0f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineToRelative(1.47f, 1.47f) - lineToRelative(3.97f, -3.97f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - } - } - return _approvalsApp!! - } - -private var _approvalsApp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Apps.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Apps.kt deleted file mode 100644 index de41bc68..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Apps.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Apps: ImageVector - get() { - if (_apps != null) { - return _apps!! - } - _apps = fluentIcon(name = "Regular.Apps") { - fluentPath { - moveToRelative(18.5f, 2.33f) - lineToRelative(3.17f, 3.18f) - curveToRelative(0.88f, 0.88f, 0.88f, 2.3f, 0.0f, 3.18f) - lineToRelative(-2.58f, 2.59f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 21.0f, 13.5f) - verticalLineToRelative(5.25f) - curveTo(21.0f, 20.0f, 20.0f, 21.0f, 18.75f, 21.0f) - lineTo(5.25f, 21.0f) - curveTo(4.01f, 21.0f, 3.0f, 20.0f, 3.0f, 18.75f) - lineTo(3.0f, 5.25f) - curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(5.25f) - curveToRelative(1.13f, 0.0f, 2.06f, 0.83f, 2.23f, 1.92f) - lineToRelative(2.58f, -2.59f) - curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.0f) - close() - moveTo(4.5f, 18.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(-6.75f) - lineTo(4.5f, 12.75f) - verticalLineToRelative(6.0f) - close() - moveTo(12.75f, 19.5f) - horizontalLineToRelative(6.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(19.5f, 13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-6.0f) - verticalLineToRelative(6.75f) - close() - moveTo(10.5f, 4.5f) - lineTo(5.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.0f) - horizontalLineToRelative(6.75f) - verticalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(12.75f, 9.31f) - verticalLineToRelative(1.94f) - horizontalLineToRelative(1.94f) - lineToRelative(-1.94f, -1.94f) - close() - moveTo(16.37f, 3.39f) - lineTo(13.2f, 6.57f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(3.18f, 3.18f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(3.18f, -3.18f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-3.18f, -3.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - close() - } - } - return _apps!! - } - -private var _apps: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AppsAddIn.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AppsAddIn.kt deleted file mode 100644 index 131ae252..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AppsAddIn.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AppsAddIn: ImageVector - get() { - if (_appsAddIn != null) { - return _appsAddIn!! - } - _appsAddIn = fluentIcon(name = "Regular.AppsAddIn") { - fluentPath { - moveTo(10.5f, 3.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(6.0f) - horizontalLineToRelative(6.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(5.25f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(5.25f, 21.0f) - curveTo(4.01f, 21.0f, 3.0f, 20.0f, 3.0f, 18.75f) - lineTo(3.0f, 5.25f) - curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(5.25f) - close() - moveTo(11.25f, 12.75f) - lineTo(4.5f, 12.75f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(-6.75f) - close() - moveTo(18.75f, 12.75f) - horizontalLineToRelative(-6.0f) - verticalLineToRelative(6.75f) - horizontalLineToRelative(6.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(19.5f, 13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(10.5f, 4.5f) - lineTo(5.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.0f) - horizontalLineToRelative(6.75f) - verticalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(17.9f, 2.0f) - horizontalLineToRelative(0.1f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(2.5f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineTo(22.0f, 6.0f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-2.5f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineTo(18.0f, 10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-2.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineTo(14.0f, 6.0f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - close() - } - } - return _appsAddIn!! - } - -private var _appsAddIn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AppsList.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AppsList.kt deleted file mode 100644 index d27be9e4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AppsList.kt +++ /dev/null @@ -1,106 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AppsList: ImageVector - get() { - if (_appsList != null) { - return _appsList!! - } - _appsList = fluentIcon(name = "Regular.AppsList") { - fluentPath { - moveTo(6.25f, 16.0f) - curveTo(7.2f, 16.0f, 8.0f, 16.8f, 8.0f, 17.75f) - verticalLineToRelative(2.5f) - curveTo(8.0f, 21.22f, 7.2f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(-2.5f) - curveTo(2.78f, 22.0f, 2.0f, 21.22f, 2.0f, 20.25f) - verticalLineToRelative(-2.5f) - curveTo(2.0f, 16.8f, 2.78f, 16.0f, 3.75f, 16.0f) - horizontalLineToRelative(2.5f) - close() - moveTo(6.25f, 17.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(2.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(9.75f, 18.0f) - horizontalLineToRelative(11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(9.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(11.6f) - horizontalLineToRelative(-11.5f) - close() - moveTo(6.25f, 9.0f) - curveTo(7.2f, 9.0f, 8.0f, 9.78f, 8.0f, 10.75f) - verticalLineToRelative(2.5f) - curveTo(8.0f, 14.22f, 7.2f, 15.0f, 6.25f, 15.0f) - horizontalLineToRelative(-2.5f) - curveTo(2.78f, 15.0f, 2.0f, 14.22f, 2.0f, 13.25f) - verticalLineToRelative(-2.5f) - curveTo(2.0f, 9.78f, 2.78f, 9.0f, 3.75f, 9.0f) - horizontalLineToRelative(2.5f) - close() - moveTo(6.25f, 10.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(2.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(9.75f, 11.0f) - horizontalLineToRelative(11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(9.75f, 12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(11.6f) - horizontalLineToRelative(-11.5f) - close() - moveTo(6.25f, 2.0f) - curveTo(7.2f, 2.0f, 8.0f, 2.78f, 8.0f, 3.75f) - verticalLineToRelative(2.5f) - curveTo(8.0f, 7.2f, 7.2f, 8.0f, 6.25f, 8.0f) - horizontalLineToRelative(-2.5f) - curveTo(2.78f, 8.0f, 2.0f, 7.2f, 2.0f, 6.25f) - verticalLineToRelative(-2.5f) - curveTo(2.0f, 2.78f, 2.78f, 2.0f, 3.75f, 2.0f) - horizontalLineToRelative(2.5f) - close() - moveTo(6.25f, 3.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(2.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(9.75f, 4.0f) - horizontalLineToRelative(11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(9.75f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(11.6f) - horizontalLineToRelative(-11.5f) - close() - } - } - return _appsList!! - } - -private var _appsList: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AppsListDetail.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AppsListDetail.kt deleted file mode 100644 index c87b690e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AppsListDetail.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AppsListDetail: ImageVector - get() { - if (_appsListDetail != null) { - return _appsListDetail!! - } - _appsListDetail = fluentIcon(name = "Regular.AppsListDetail") { - fluentPath { - moveTo(4.25f, 4.0f) - curveTo(3.01f, 4.0f, 2.0f, 5.0f, 2.0f, 6.25f) - verticalLineToRelative(2.5f) - curveTo(2.0f, 9.99f, 3.0f, 11.0f, 4.25f, 11.0f) - horizontalLineToRelative(2.5f) - curveTo(7.99f, 11.0f, 9.0f, 10.0f, 9.0f, 8.75f) - verticalLineToRelative(-2.5f) - curveTo(9.0f, 5.01f, 8.0f, 4.0f, 6.75f, 4.0f) - horizontalLineToRelative(-2.5f) - close() - moveTo(3.5f, 6.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-2.5f) - close() - moveTo(11.25f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-10.0f) - close() - moveTo(11.25f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-7.0f) - close() - moveTo(4.25f, 13.0f) - curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) - verticalLineToRelative(2.5f) - curveTo(2.0f, 18.99f, 3.0f, 20.0f, 4.25f, 20.0f) - horizontalLineToRelative(2.5f) - curveTo(7.99f, 20.0f, 9.0f, 19.0f, 9.0f, 17.75f) - verticalLineToRelative(-2.5f) - curveTo(9.0f, 14.01f, 8.0f, 13.0f, 6.75f, 13.0f) - horizontalLineToRelative(-2.5f) - close() - moveTo(3.5f, 15.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-2.5f) - close() - moveTo(11.25f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-10.0f) - close() - moveTo(11.25f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-7.0f) - close() - } - } - return _appsListDetail!! - } - -private var _appsListDetail: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Archive.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Archive.kt deleted file mode 100644 index 8d246c7c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Archive.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Archive: ImageVector - get() { - if (_archive != null) { - return _archive!! - } - _archive = fluentIcon(name = "Regular.Archive") { - fluentPath { - moveTo(10.25f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - close() - moveTo(3.0f, 5.25f) - curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(13.5f) - curveTo(19.99f, 3.0f, 21.0f, 4.0f, 21.0f, 5.25f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.78f, -0.4f, 1.47f, -1.0f, 1.87f) - verticalLineToRelative(8.63f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 16.25f, 21.0f) - horizontalLineToRelative(-8.5f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 4.0f, 17.25f) - lineTo(4.0f, 8.62f) - curveToRelative(-0.6f, -0.4f, -1.0f, -1.09f, -1.0f, -1.87f) - verticalLineToRelative(-1.5f) - close() - moveTo(5.5f, 9.0f) - verticalLineToRelative(8.25f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(8.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(18.5f, 9.0f) - horizontalLineToRelative(-13.0f) - close() - moveTo(5.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(5.25f, 4.5f) - close() - } - } - return _archive!! - } - -private var _archive: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArchiveArrowBack.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArchiveArrowBack.kt deleted file mode 100644 index 11216679..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArchiveArrowBack.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArchiveArrowBack: ImageVector - get() { - if (_archiveArrowBack != null) { - return _archiveArrowBack!! - } - _archiveArrowBack = fluentIcon(name = "Regular.ArchiveArrowBack") { - fluentPath { - moveTo(10.25f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.1f) - curveToRelative(0.35f, -0.3f, 0.74f, -0.55f, 1.15f, -0.77f) - curveToRelative(-0.01f, -0.4f, -0.34f, -0.73f, -0.75f, -0.73f) - horizontalLineToRelative(-3.5f) - close() - moveTo(7.75f, 19.5f) - horizontalLineToRelative(3.56f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(7.75f, 21.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 4.0f, 17.25f) - lineTo(4.0f, 8.62f) - curveToRelative(-0.6f, -0.4f, -1.0f, -1.09f, -1.0f, -1.87f) - verticalLineToRelative(-1.5f) - curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(13.5f) - curveTo(19.99f, 3.0f, 21.0f, 4.0f, 21.0f, 5.25f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.78f, -0.4f, 1.47f, -1.0f, 1.87f) - verticalLineToRelative(2.88f) - curveToRelative(-0.47f, -0.2f, -0.98f, -0.34f, -1.5f, -0.42f) - lineTo(18.5f, 9.0f) - horizontalLineToRelative(-13.0f) - verticalLineToRelative(8.25f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - close() - moveTo(5.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(5.25f, 4.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(16.35f, 15.35f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(1.5f, 1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-0.64f, -0.65f) - horizontalLineToRelative(2.04f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(0.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-0.25f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-2.04f) - lineToRelative(0.64f, -0.65f) - close() - } - } - return _archiveArrowBack!! - } - -private var _archiveArrowBack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArchiveMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArchiveMultiple.kt deleted file mode 100644 index 8e04b126..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArchiveMultiple.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArchiveMultiple: ImageVector - get() { - if (_archiveMultiple != null) { - return _archiveMultiple!! - } - _archiveMultiple = fluentIcon(name = "Regular.ArchiveMultiple") { - fluentPath { - moveTo(9.75f, 10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.48f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(9.75f, 10.5f) - close() - moveTo(4.75f, 2.0f) - curveTo(3.78f, 2.0f, 3.0f, 2.78f, 3.0f, 3.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.7f, 0.4f, 1.3f, 1.0f, 1.58f) - verticalLineToRelative(7.92f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 3.75f, 3.75f) - horizontalLineToRelative(7.5f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 19.0f, 15.75f) - lineTo(19.0f, 7.83f) - curveToRelative(0.6f, -0.28f, 1.0f, -0.88f, 1.0f, -1.58f) - verticalLineToRelative(-2.5f) - curveTo(20.0f, 2.78f, 19.22f, 2.0f, 18.25f, 2.0f) - lineTo(4.75f, 2.0f) - close() - moveTo(5.5f, 15.75f) - lineTo(5.5f, 8.0f) - horizontalLineToRelative(12.0f) - verticalLineToRelative(7.75f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-7.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - close() - moveTo(4.5f, 3.75f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(13.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - lineTo(4.75f, 6.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-2.5f) - close() - moveTo(21.5f, 11.75f) - curveToRelative(0.0f, -1.23f, -0.59f, -2.32f, -1.5f, -3.0f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 2.35f, -1.9f, 4.25f, -4.25f, 4.25f) - horizontalLineToRelative(-8.5f) - curveToRelative(0.68f, 0.91f, 1.77f, 1.5f, 3.0f, 1.5f) - horizontalLineToRelative(5.5f) - arcToRelative(5.75f, 5.75f, 0.0f, false, false, 5.75f, -5.75f) - verticalLineToRelative(-4.5f) - close() - } - } - return _archiveMultiple!! - } - -private var _archiveMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArchiveSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArchiveSettings.kt deleted file mode 100644 index 8a4f6d1c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArchiveSettings.kt +++ /dev/null @@ -1,91 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArchiveSettings: ImageVector - get() { - if (_archiveSettings != null) { - return _archiveSettings!! - } - _archiveSettings = fluentIcon(name = "Regular.ArchiveSettings") { - fluentPath { - moveTo(3.0f, 5.25f) - curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(13.5f) - curveTo(19.99f, 3.0f, 21.0f, 4.0f, 21.0f, 5.25f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.78f, -0.4f, 1.47f, -1.0f, 1.87f) - verticalLineToRelative(2.88f) - curveToRelative(-0.47f, -0.2f, -0.98f, -0.34f, -1.5f, -0.42f) - lineTo(18.5f, 9.0f) - horizontalLineToRelative(-13.0f) - verticalLineToRelative(8.25f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(3.56f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(7.75f, 21.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 4.0f, 17.25f) - lineTo(4.0f, 8.62f) - curveToRelative(-0.6f, -0.4f, -1.0f, -1.09f, -1.0f, -1.87f) - verticalLineToRelative(-1.5f) - close() - moveTo(5.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(5.25f, 4.5f) - close() - moveTo(13.75f, 11.0f) - curveToRelative(0.4f, 0.0f, 0.74f, 0.33f, 0.75f, 0.73f) - curveToRelative(-0.41f, 0.22f, -0.8f, 0.48f, -1.15f, 0.77f) - horizontalLineToRelative(-3.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.5f) - close() - moveTo(14.28f, 13.98f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.59f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) - lineToRelative(0.55f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) - lineToRelative(-0.19f, 0.64f) - curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) - lineToRelative(0.49f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.9f) - lineToRelative(-0.2f, -0.7f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) - lineToRelative(0.59f, -0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, -0.01f, -1.8f) - lineToRelative(-0.54f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.19f, -0.63f) - curveToRelative(-0.44f, -0.39f, -0.94f, -0.7f, -1.49f, -0.93f) - lineToRelative(-0.49f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.91f) - lineToRelative(0.2f, 0.69f) - close() - moveTo(17.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) - close() - } - } - return _archiveSettings!! - } - -private var _archiveSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowAutofitContent.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowAutofitContent.kt deleted file mode 100644 index bd8f5490..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowAutofitContent.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowAutofitContent: ImageVector - get() { - if (_arrowAutofitContent != null) { - return _arrowAutofitContent!! - } - _arrowAutofitContent = fluentIcon(name = "Regular.ArrowAutofitContent") { - fluentPath { - moveTo(6.0f, 4.19f) - curveToRelative(0.3f, 0.27f, 0.34f, 0.74f, 0.06f, 1.05f) - lineTo(5.4f, 6.0f) - horizontalLineToRelative(2.86f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(5.4f, 7.5f) - lineToRelative(0.66f, 0.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.12f, 0.98f) - lineToRelative(-1.75f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -0.98f) - lineToRelative(1.75f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, -0.07f) - close() - moveTo(17.95f, 5.24f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, -0.98f) - lineToRelative(1.75f, 2.0f) - curveToRelative(0.25f, 0.28f, 0.25f, 0.7f, 0.0f, 0.98f) - lineToRelative(-1.75f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) - lineToRelative(0.66f, -0.76f) - horizontalLineToRelative(-2.86f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.86f) - lineToRelative(-0.66f, -0.76f) - close() - moveTo(6.0f, 15.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(6.75f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(5.75f, 11.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 13.75f) - verticalLineToRelative(4.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, 2.75f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 17.75f) - verticalLineToRelative(-4.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 11.0f) - lineTo(5.75f, 11.0f) - close() - moveTo(4.5f, 13.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(12.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - lineTo(5.75f, 19.0f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - verticalLineToRelative(-4.0f) - close() - } - } - return _arrowAutofitContent!! - } - -private var _arrowAutofitContent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowAutofitDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowAutofitDown.kt deleted file mode 100644 index 3b804ed3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowAutofitDown.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowAutofitDown: ImageVector - get() { - if (_arrowAutofitDown != null) { - return _arrowAutofitDown!! - } - _arrowAutofitDown = fluentIcon(name = "Regular.ArrowAutofitDown") { - fluentPath { - moveTo(13.22f, 17.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.98f) - lineToRelative(0.07f, 0.08f) - lineToRelative(2.37f, 2.37f) - curveToRelative(0.12f, 0.2f, 0.37f, 0.35f, 0.66f, 0.35f) - curveToRelative(0.25f, 0.0f, 0.48f, -0.1f, 0.61f, -0.28f) - lineToRelative(0.05f, -0.07f) - lineToRelative(2.37f, -2.37f) - lineToRelative(0.07f, -0.08f) - curveToRelative(0.2f, -0.27f, 0.2f, -0.62f, 0.01f, -0.89f) - lineToRelative(-0.08f, -0.1f) - lineToRelative(-0.08f, -0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.88f, -0.01f) - lineToRelative(-0.1f, 0.08f) - lineTo(17.0f, 18.44f) - verticalLineTo(3.56f) - curveToRelative(-0.06f, -0.31f, -0.37f, -0.56f, -0.75f, -0.56f) - reflectiveCurveToRelative(-0.7f, 0.25f, -0.74f, 0.57f) - lineToRelative(-0.01f, 0.09f) - verticalLineToRelative(14.78f) - lineToRelative(-1.22f, -1.22f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) - close() - moveTo(6.25f, 20.0f) - curveTo(5.01f, 20.0f, 4.0f, 19.0f, 4.0f, 17.76f) - verticalLineTo(6.26f) - curveTo(4.0f, 5.02f, 5.0f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.0f) - close() - } - } - return _arrowAutofitDown!! - } - -private var _arrowAutofitDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowAutofitHeight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowAutofitHeight.kt deleted file mode 100644 index e25bb802..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowAutofitHeight.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowAutofitHeight: ImageVector - get() { - if (_arrowAutofitHeight != null) { - return _arrowAutofitHeight!! - } - _arrowAutofitHeight = fluentIcon(name = "Regular.ArrowAutofitHeight") { - fluentPath { - moveTo(13.22f, 6.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(2.37f, -2.37f) - curveToRelative(0.12f, -0.2f, 0.37f, -0.35f, 0.66f, -0.35f) - curveToRelative(0.25f, 0.0f, 0.48f, 0.1f, 0.61f, 0.28f) - lineToRelative(0.05f, 0.07f) - lineToRelative(2.37f, 2.37f) - lineToRelative(0.07f, 0.08f) - curveToRelative(0.2f, 0.27f, 0.2f, 0.62f, 0.01f, 0.89f) - lineToRelative(-0.08f, 0.1f) - lineToRelative(-0.08f, 0.06f) - curveToRelative(-0.26f, 0.2f, -0.62f, 0.2f, -0.88f, 0.01f) - lineToRelative(-0.1f, -0.08f) - lineTo(17.0f, 5.56f) - verticalLineToRelative(3.88f) - curveToRelative(-0.06f, 0.31f, -0.37f, 0.56f, -0.75f, 0.56f) - reflectiveCurveToRelative(-0.7f, -0.25f, -0.74f, -0.57f) - lineToRelative(-0.01f, -0.09f) - lineTo(15.5f, 5.56f) - lineToRelative(-1.22f, 1.22f) - lineToRelative(-0.08f, 0.07f) - curveToRelative(-0.3f, 0.22f, -0.71f, 0.2f, -0.98f, -0.07f) - close() - moveTo(13.22f, 17.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - lineToRelative(1.22f, 1.22f) - verticalLineToRelative(-3.78f) - curveToRelative(0.0f, -0.37f, 0.34f, -0.66f, 0.75f, -0.66f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.25f, 0.75f, 0.57f) - lineTo(17.0f, 18.44f) - lineToRelative(1.22f, -1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.08f, 0.98f) - lineToRelative(-0.08f, 0.08f) - lineToRelative(-2.36f, 2.37f) - arcToRelative(0.77f, 0.77f, 0.0f, false, true, -0.67f, 0.35f) - arcToRelative(0.77f, 0.77f, 0.0f, false, true, -0.66f, -0.35f) - lineToRelative(-2.37f, -2.37f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - moveTo(6.25f, 3.99f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.24f) - verticalLineToRelative(11.5f) - curveTo(4.0f, 18.98f, 5.0f, 20.0f, 6.25f, 20.0f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(5.5f, 6.24f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.0f) - close() - } - } - return _arrowAutofitHeight!! - } - -private var _arrowAutofitHeight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowAutofitHeightDotted.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowAutofitHeightDotted.kt deleted file mode 100644 index f67ae40b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowAutofitHeightDotted.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowAutofitHeightDotted: ImageVector - get() { - if (_arrowAutofitHeightDotted != null) { - return _arrowAutofitHeightDotted!! - } - _arrowAutofitHeightDotted = fluentIcon(name = "Regular.ArrowAutofitHeightDotted") { - fluentPath { - moveTo(16.78f, 3.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineToRelative(1.97f, -1.97f) - lineToRelative(1.97f, 1.97f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.5f, -2.5f) - close() - moveTo(4.0f, 6.24f) - curveTo(4.0f, 5.0f, 5.0f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.0f) - curveTo(5.01f, 20.0f, 4.0f, 19.0f, 4.0f, 17.74f) - lineTo(4.0f, 6.24f) - close() - moveTo(16.78f, 20.78f) - lineTo(19.28f, 18.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-1.97f, 1.97f) - lineToRelative(-1.97f, -1.97f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(2.5f, 2.5f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - close() - moveTo(16.25f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(15.5f, 15.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(16.25f, 7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - } - } - return _arrowAutofitHeightDotted!! - } - -private var _arrowAutofitHeightDotted: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowAutofitUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowAutofitUp.kt deleted file mode 100644 index 80052c8f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowAutofitUp.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowAutofitUp: ImageVector - get() { - if (_arrowAutofitUp != null) { - return _arrowAutofitUp!! - } - _arrowAutofitUp = fluentIcon(name = "Regular.ArrowAutofitUp") { - fluentPath { - moveTo(13.22f, 6.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(2.37f, -2.37f) - curveToRelative(0.12f, -0.2f, 0.37f, -0.35f, 0.66f, -0.35f) - curveToRelative(0.25f, 0.0f, 0.48f, 0.1f, 0.61f, 0.28f) - lineToRelative(0.05f, 0.07f) - lineToRelative(2.37f, 2.37f) - lineToRelative(0.07f, 0.08f) - curveToRelative(0.2f, 0.27f, 0.2f, 0.62f, 0.01f, 0.89f) - lineToRelative(-0.08f, 0.1f) - lineToRelative(-0.08f, 0.06f) - curveToRelative(-0.26f, 0.2f, -0.62f, 0.2f, -0.88f, 0.01f) - lineToRelative(-0.1f, -0.08f) - lineTo(17.0f, 5.56f) - verticalLineTo(20.44f) - curveToRelative(-0.06f, 0.31f, -0.37f, 0.56f, -0.75f, 0.56f) - reflectiveCurveToRelative(-0.7f, -0.25f, -0.74f, -0.57f) - lineToRelative(-0.01f, -0.09f) - verticalLineTo(5.56f) - lineToRelative(-1.22f, 1.22f) - lineToRelative(-0.08f, 0.07f) - curveToRelative(-0.3f, 0.22f, -0.71f, 0.2f, -0.98f, -0.07f) - close() - moveTo(6.25f, 4.0f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.24f) - verticalLineToRelative(11.5f) - curveTo(4.0f, 18.98f, 5.0f, 20.0f, 6.25f, 20.0f) - horizontalLineToRelative(6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineTo(6.24f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.0f) - close() - } - } - return _arrowAutofitUp!! - } - -private var _arrowAutofitUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowAutofitWidth.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowAutofitWidth.kt deleted file mode 100644 index e98896e1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowAutofitWidth.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowAutofitWidth: ImageVector - get() { - if (_arrowAutofitWidth != null) { - return _arrowAutofitWidth!! - } - _arrowAutofitWidth = fluentIcon(name = "Regular.ArrowAutofitWidth") { - fluentPath { - moveTo(20.0f, 6.24f) - curveTo(20.0f, 5.0f, 19.0f, 4.0f, 17.75f, 4.0f) - lineTo(6.25f, 4.0f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.24f) - verticalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(17.22f, 13.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - lineToRelative(2.37f, 2.37f) - curveToRelative(0.2f, 0.12f, 0.35f, 0.37f, 0.35f, 0.66f) - curveToRelative(0.0f, 0.25f, -0.1f, 0.48f, -0.28f, 0.61f) - lineToRelative(-0.07f, 0.05f) - lineToRelative(-2.37f, 2.37f) - lineToRelative(-0.08f, 0.07f) - curveToRelative(-0.27f, 0.2f, -0.62f, 0.2f, -0.89f, 0.01f) - lineToRelative(-0.1f, -0.08f) - lineToRelative(-0.06f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.01f, -0.88f) - lineToRelative(0.08f, -0.1f) - lineTo(18.44f, 17.0f) - horizontalLineToRelative(-3.88f) - curveToRelative(-0.31f, -0.06f, -0.56f, -0.37f, -0.56f, -0.75f) - reflectiveCurveToRelative(0.25f, -0.7f, 0.57f, -0.74f) - lineToRelative(0.09f, -0.01f) - horizontalLineToRelative(3.78f) - lineToRelative(-1.22f, -1.22f) - lineToRelative(-0.07f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.07f, -0.98f) - close() - moveTo(6.78f, 13.22f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.69f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-1.22f, 1.22f) - horizontalLineToRelative(3.78f) - curveToRelative(0.37f, 0.0f, 0.66f, 0.34f, 0.66f, 0.75f) - curveToRelative(0.0f, 0.38f, -0.25f, 0.7f, -0.57f, 0.75f) - lineTo(5.56f, 17.0f) - lineToRelative(1.22f, 1.22f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.69f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.08f) - lineToRelative(-0.08f, -0.08f) - lineToRelative(-2.37f, -2.36f) - arcToRelative(0.77f, 0.77f, 0.0f, false, true, -0.35f, -0.67f) - curveToRelative(0.0f, -0.28f, 0.14f, -0.53f, 0.35f, -0.66f) - lineToRelative(2.37f, -2.37f) - curveToRelative(0.3f, -0.29f, 0.77f, -0.29f, 1.06f, 0.0f) - close() - } - } - return _arrowAutofitWidth!! - } - -private var _arrowAutofitWidth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowAutofitWidthDotted.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowAutofitWidthDotted.kt deleted file mode 100644 index 3ca47f78..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowAutofitWidthDotted.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowAutofitWidthDotted: ImageVector - get() { - if (_arrowAutofitWidthDotted != null) { - return _arrowAutofitWidthDotted!! - } - _arrowAutofitWidthDotted = fluentIcon(name = "Regular.ArrowAutofitWidthDotted") { - fluentPath { - moveTo(17.76f, 4.0f) - curveTo(19.0f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) - verticalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(6.26f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-4.0f) - curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.26f, 4.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(18.28f, 19.28f) - lineTo(20.78f, 16.78f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.97f, 1.97f) - lineToRelative(-1.97f, 1.97f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - close() - moveTo(3.22f, 15.72f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineToRelative(-1.97f, -1.97f) - lineToRelative(1.97f, -1.97f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-2.5f, 2.5f) - close() - moveTo(13.0f, 16.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - close() - moveTo(10.0f, 16.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(17.0f, 16.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - close() - } - } - return _arrowAutofitWidthDotted!! - } - -private var _arrowAutofitWidthDotted: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowBetweenDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowBetweenDown.kt deleted file mode 100644 index 82cfdf65..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowBetweenDown.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowBetweenDown: ImageVector - get() { - if (_arrowBetweenDown != null) { - return _arrowBetweenDown!! - } - _arrowBetweenDown = fluentIcon(name = "Regular.ArrowBetweenDown") { - fluentPath { - moveTo(6.0f, 1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(10.0f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-10.0f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 6.0f, 2.25f) - verticalLineToRelative(-0.5f) - close() - moveTo(11.75f, 6.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(8.69f) - lineToRelative(3.72f, -3.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-5.0f, 5.0f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-5.0f, -5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineTo(11.0f, 15.44f) - verticalLineTo(6.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(4.5f, 21.75f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(10.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.5f) - close() - } - } - return _arrowBetweenDown!! - } - -private var _arrowBetweenDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowBidirectionalUpDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowBidirectionalUpDown.kt deleted file mode 100644 index 49b1c145..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowBidirectionalUpDown.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowBidirectionalUpDown: ImageVector - get() { - if (_arrowBidirectionalUpDown != null) { - return _arrowBidirectionalUpDown!! - } - _arrowBidirectionalUpDown = fluentIcon(name = "Regular.ArrowBidirectionalUpDown") { - fluentPath { - moveTo(11.25f, 5.63f) - verticalLineToRelative(12.74f) - lineToRelative(-3.46f, -3.64f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.08f, 1.04f) - lineToRelative(4.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.08f, 0.0f) - lineToRelative(4.75f, -5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.08f, -1.04f) - lineToRelative(-3.46f, 3.64f) - verticalLineTo(5.63f) - lineToRelative(3.46f, 3.64f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.08f, -1.04f) - lineToRelative(-4.75f, -5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.08f, 0.0f) - lineToRelative(-4.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.08f, 1.04f) - lineToRelative(3.46f, -3.64f) - close() - } - } - return _arrowBidirectionalUpDown!! - } - -private var _arrowBidirectionalUpDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowBounce.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowBounce.kt deleted file mode 100644 index f837abe0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowBounce.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowBounce: ImageVector - get() { - if (_arrowBounce != null) { - return _arrowBounce!! - } - _arrowBounce = fluentIcon(name = "Regular.ArrowBounce") { - fluentPath { - moveTo(11.0f, 6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineTo(8.56f) - lineToRelative(8.72f, 8.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 0.0f) - lineToRelative(8.5f, -8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-7.97f, 7.97f) - lineTo(4.56f, 7.5f) - horizontalLineToRelative(5.7f) - curveToRelative(0.4f, 0.0f, 0.74f, -0.34f, 0.74f, -0.75f) - close() - } - } - return _arrowBounce!! - } - -private var _arrowBounce: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCircleDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCircleDown.kt deleted file mode 100644 index 953c37c9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCircleDown.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowCircleDown: ImageVector - get() { - if (_arrowCircleDown != null) { - return _arrowCircleDown!! - } - _arrowCircleDown = fluentIcon(name = "Regular.ArrowCircleDown") { - fluentPath { - moveToRelative(16.53f, 11.72f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) - lineToRelative(-2.72f, 2.72f) - lineTo(12.75f, 7.65f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 12.0f, 7.0f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - verticalLineToRelative(6.7f) - lineToRelative(-2.72f, -2.73f) - lineToRelative(-0.09f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, 1.13f) - lineToRelative(4.0f, 4.0f) - lineToRelative(0.08f, 0.07f) - curveToRelative(0.3f, 0.22f, 0.71f, 0.2f, 0.98f, -0.07f) - lineToRelative(4.0f, -4.0f) - lineToRelative(0.07f, -0.08f) - curveToRelative(0.22f, -0.3f, 0.2f, -0.71f, -0.07f, -0.98f) - close() - moveTo(2.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, -20.0f, 0.0f) - close() - moveTo(20.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, -17.0f, 0.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, 17.0f, 0.0f) - close() - } - } - return _arrowCircleDown!! - } - -private var _arrowCircleDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCircleDownDouble.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCircleDownDouble.kt deleted file mode 100644 index 89e42312..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCircleDownDouble.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowCircleDownDouble: ImageVector - get() { - if (_arrowCircleDownDouble != null) { - return _arrowCircleDownDouble!! - } - _arrowCircleDownDouble = fluentIcon(name = "Regular.ArrowCircleDownDouble") { - fluentPath { - moveToRelative(11.25f, 13.75f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) - lineToRelative(-0.69f, 0.69f) - lineTo(9.5f, 7.65f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 8.74f, 7.0f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - verticalLineToRelative(6.7f) - lineToRelative(-0.69f, -0.7f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 1.13f) - lineToRelative(1.97f, 1.97f) - lineToRelative(0.08f, 0.07f) - curveToRelative(0.3f, 0.22f, 0.71f, 0.2f, 0.98f, -0.07f) - lineToRelative(1.97f, -1.97f) - lineToRelative(0.07f, -0.08f) - curveToRelative(0.22f, -0.3f, 0.2f, -0.71f, -0.07f, -0.98f) - close() - moveTo(2.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, -20.0f, 0.0f) - close() - moveTo(20.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, -17.0f, 0.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, 17.0f, 0.0f) - close() - moveTo(17.75f, 13.75f) - lineTo(17.67f, 13.68f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) - lineToRelative(-0.7f, 0.69f) - verticalLineToRelative(-6.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.74f, -0.64f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - verticalLineToRelative(6.7f) - lineToRelative(-0.69f, -0.7f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 1.13f) - lineToRelative(1.97f, 1.97f) - lineToRelative(0.08f, 0.07f) - curveToRelative(0.3f, 0.22f, 0.71f, 0.2f, 0.98f, -0.07f) - lineToRelative(1.97f, -1.97f) - lineToRelative(0.07f, -0.08f) - curveToRelative(0.22f, -0.3f, 0.2f, -0.71f, -0.07f, -0.98f) - close() - } - } - return _arrowCircleDownDouble!! - } - -private var _arrowCircleDownDouble: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCircleDownRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCircleDownRight.kt deleted file mode 100644 index cc757688..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCircleDownRight.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowCircleDownRight: ImageVector - get() { - if (_arrowCircleDownRight != null) { - return _arrowCircleDownRight!! - } - _arrowCircleDownRight = fluentIcon(name = "Regular.ArrowCircleDownRight") { - fluentPath { - moveTo(13.5f, 14.5f) - lineTo(8.74f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(6.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(4.64f) - lineTo(9.28f, 8.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(5.27f, 5.22f) - close() - moveTo(2.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) - close() - } - } - return _arrowCircleDownRight!! - } - -private var _arrowCircleDownRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCircleDownSplit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCircleDownSplit.kt deleted file mode 100644 index d128af6b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCircleDownSplit.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowCircleDownSplit: ImageVector - get() { - if (_arrowCircleDownSplit != null) { - return _arrowCircleDownSplit!! - } - _arrowCircleDownSplit = fluentIcon(name = "Regular.ArrowCircleDownSplit") { - fluentPath { - moveToRelative(11.0f, 14.0f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) - lineToRelative(-0.44f, 0.44f) - lineTo(9.5f, 10.5f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(3.94f) - lineToRelative(-0.51f, -0.44f) - lineToRelative(-0.09f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, 1.13f) - lineToRelative(1.79f, 1.72f) - lineToRelative(0.08f, 0.07f) - curveToRelative(0.3f, 0.22f, 0.71f, 0.2f, 0.98f, -0.07f) - lineToRelative(1.72f, -1.72f) - lineToRelative(0.07f, -0.08f) - curveToRelative(0.22f, -0.3f, 0.2f, -0.72f, -0.07f, -0.98f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) - lineToRelative(-0.44f, 0.44f) - verticalLineToRelative(-4.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.64f) - horizontalLineToRelative(-2.5f) - lineTo(12.75f, 5.65f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 12.0f, 5.0f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - lineTo(11.25f, 9.0f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - verticalLineToRelative(4.69f) - lineTo(7.56f, 14.0f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 1.13f) - lineToRelative(1.72f, 1.72f) - lineToRelative(0.08f, 0.07f) - curveToRelative(0.3f, 0.22f, 0.71f, 0.2f, 0.98f, -0.07f) - lineTo(11.0f, 15.06f) - lineToRelative(0.07f, -0.09f) - curveToRelative(0.22f, -0.29f, 0.2f, -0.7f, -0.07f, -0.97f) - close() - moveTo(2.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, -20.0f, 0.0f) - close() - moveTo(20.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, -17.0f, 0.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, 17.0f, 0.0f) - close() - } - } - return _arrowCircleDownSplit!! - } - -private var _arrowCircleDownSplit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCircleLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCircleLeft.kt deleted file mode 100644 index 5100d4b7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCircleLeft.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowCircleLeft: ImageVector - get() { - if (_arrowCircleLeft != null) { - return _arrowCircleLeft!! - } - _arrowCircleLeft = fluentIcon(name = "Regular.ArrowCircleLeft") { - fluentPath { - moveToRelative(12.28f, 16.53f) - lineToRelative(0.07f, -0.08f) - curveToRelative(0.22f, -0.3f, 0.2f, -0.71f, -0.07f, -0.98f) - lineToRelative(-2.72f, -2.72f) - horizontalLineToRelative(6.79f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 17.0f, 12.0f) - verticalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) - horizontalLineToRelative(-6.7f) - lineToRelative(2.73f, -2.72f) - lineToRelative(0.07f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.13f, -0.98f) - lineToRelative(-4.0f, 4.0f) - lineToRelative(-0.07f, 0.08f) - curveToRelative(-0.22f, 0.3f, -0.2f, 0.71f, 0.07f, 0.98f) - lineToRelative(4.0f, 4.0f) - lineToRelative(0.08f, 0.07f) - curveToRelative(0.3f, 0.22f, 0.71f, 0.2f, 0.98f, -0.07f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) - close() - moveTo(12.0f, 20.5f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 0.0f, -17.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, 0.0f, 17.0f) - close() - } - } - return _arrowCircleLeft!! - } - -private var _arrowCircleLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCircleRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCircleRight.kt deleted file mode 100644 index 53546227..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCircleRight.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowCircleRight: ImageVector - get() { - if (_arrowCircleRight != null) { - return _arrowCircleRight!! - } - _arrowCircleRight = fluentIcon(name = "Regular.ArrowCircleRight") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) - close() - moveTo(11.65f, 7.55f) - lineTo(11.72f, 7.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - lineToRelative(4.0f, 4.0f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-4.0f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(2.72f, -2.72f) - lineTo(7.75f, 12.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineTo(7.0f, 12.0f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(6.69f) - lineToRelative(-2.72f, -2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(-0.07f, 0.08f) - close() - } - } - return _arrowCircleRight!! - } - -private var _arrowCircleRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCircleUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCircleUp.kt deleted file mode 100644 index 4705f1b3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCircleUp.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowCircleUp: ImageVector - get() { - if (_arrowCircleUp != null) { - return _arrowCircleUp!! - } - _arrowCircleUp = fluentIcon(name = "Regular.ArrowCircleUp") { - fluentPath { - moveToRelative(7.47f, 12.28f) - lineToRelative(0.08f, 0.07f) - curveToRelative(0.3f, 0.22f, 0.71f, 0.2f, 0.98f, -0.07f) - lineToRelative(2.72f, -2.72f) - verticalLineToRelative(6.79f) - curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - verticalLineToRelative(-6.7f) - lineToRelative(2.72f, 2.73f) - lineToRelative(0.09f, 0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.97f, -1.13f) - lineToRelative(-4.0f, -4.0f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) - lineToRelative(-4.0f, 4.0f) - lineToRelative(-0.07f, 0.08f) - curveToRelative(-0.22f, 0.3f, -0.2f, 0.71f, 0.07f, 0.98f) - close() - moveTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 20.0f, 0.0f) - close() - moveTo(3.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 17.0f, 0.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, -17.0f, 0.0f) - close() - } - } - return _arrowCircleUp!! - } - -private var _arrowCircleUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCircleUpLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCircleUpLeft.kt deleted file mode 100644 index f9036e04..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCircleUpLeft.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowCircleUpLeft: ImageVector - get() { - if (_arrowCircleUpLeft != null) { - return _arrowCircleUpLeft!! - } - _arrowCircleUpLeft = fluentIcon(name = "Regular.ArrowCircleUpLeft") { - fluentPath { - moveTo(10.5f, 9.5f) - horizontalLineToRelative(4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-4.64f) - lineToRelative(5.22f, 5.17f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(10.5f, 9.5f) - close() - moveTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, -20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 20.0f, 0.0f) - close() - moveTo(12.0f, 20.5f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, -17.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, 17.0f) - close() - } - } - return _arrowCircleUpLeft!! - } - -private var _arrowCircleUpLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowClockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowClockwise.kt deleted file mode 100644 index 9bf62b3b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowClockwise.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowClockwise: ImageVector - get() { - if (_arrowClockwise != null) { - return _arrowClockwise!! - } - _arrowClockwise = fluentIcon(name = "Regular.ArrowClockwise") { - fluentPath { - moveTo(12.0f, 4.5f) - arcToRelative(7.5f, 7.5f, 0.0f, true, false, 7.42f, 6.4f) - curveToRelative(-0.07f, -0.46f, 0.26f, -0.9f, 0.72f, -0.9f) - curveToRelative(0.37f, 0.0f, 0.7f, 0.26f, 0.76f, 0.62f) - arcTo(9.0f, 9.0f, 0.0f, true, true, 18.0f, 5.3f) - verticalLineTo(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.35f) - arcToRelative(7.47f, 7.47f, 0.0f, false, false, -5.1f, -2.0f) - close() - } - } - return _arrowClockwise!! - } - -private var _arrowClockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowClockwiseDashes.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowClockwiseDashes.kt deleted file mode 100644 index 966b4d20..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowClockwiseDashes.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowClockwiseDashes: ImageVector - get() { - if (_arrowClockwiseDashes != null) { - return _arrowClockwiseDashes!! - } - _arrowClockwiseDashes = fluentIcon(name = "Regular.ArrowClockwiseDashes") { - fluentPath { - moveTo(10.13f, 3.2f) - arcToRelative(9.03f, 9.03f, 0.0f, false, true, 3.74f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.3f, 1.46f) - arcToRelative(7.53f, 7.53f, 0.0f, false, false, -3.13f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.31f, -1.47f) - close() - moveTo(15.87f, 4.67f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, -0.22f) - curveToRelative(0.39f, 0.25f, 0.76f, 0.53f, 1.1f, 0.84f) - lineTo(18.0f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.35f) - curveToRelative(-0.32f, -0.3f, -0.65f, -0.56f, -1.02f, -0.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.21f, -1.03f) - close() - moveTo(19.5f, 12.0f) - verticalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(21.0f, 12.0f) - curveToRelative(0.0f, 0.64f, -0.07f, 1.27f, -0.2f, 1.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.46f, -0.3f) - curveToRelative(0.1f, -0.51f, 0.16f, -1.03f, 0.16f, -1.57f) - close() - moveTo(8.13f, 4.67f) - curveToRelative(0.23f, 0.35f, 0.13f, 0.81f, -0.21f, 1.04f) - arcTo(7.54f, 7.54f, 0.0f, false, false, 5.7f, 7.9f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.26f, -0.81f) - arcTo(9.04f, 9.04f, 0.0f, false, true, 7.1f, 4.45f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, 0.22f) - close() - moveTo(4.66f, 10.44f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.47f, -0.31f) - arcToRelative(9.03f, 9.03f, 0.0f, false, false, 0.0f, 3.74f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.47f, -0.3f) - arcToRelative(7.53f, 7.53f, 0.0f, false, true, 0.0f, -3.13f) - close() - moveTo(19.33f, 15.87f) - curveToRelative(0.35f, 0.22f, 0.44f, 0.69f, 0.22f, 1.03f) - arcToRelative(9.04f, 9.04f, 0.0f, false, true, -2.65f, 2.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.82f, -1.26f) - arcToRelative(7.55f, 7.55f, 0.0f, false, false, 2.21f, -2.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.04f, -0.22f) - close() - moveTo(5.71f, 16.08f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.26f, 0.82f) - arcToRelative(9.04f, 9.04f, 0.0f, false, false, 2.65f, 2.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.82f, -1.26f) - arcToRelative(7.55f, 7.55f, 0.0f, false, true, -2.21f, -2.2f) - close() - moveTo(9.55f, 19.92f) - curveToRelative(0.09f, -0.4f, 0.48f, -0.67f, 0.89f, -0.58f) - arcToRelative(7.54f, 7.54f, 0.0f, false, false, 3.12f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.31f, 1.47f) - arcToRelative(9.03f, 9.03f, 0.0f, false, true, -3.74f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.58f, -0.9f) - close() - } - } - return _arrowClockwiseDashes!! - } - -private var _arrowClockwiseDashes: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCollapseAll.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCollapseAll.kt deleted file mode 100644 index 60af2c55..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCollapseAll.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowCollapseAll: ImageVector - get() { - if (_arrowCollapseAll != null) { - return _arrowCollapseAll!! - } - _arrowCollapseAll = fluentIcon(name = "Regular.ArrowCollapseAll") { - fluentPath { - moveTo(2.0f, 4.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(2.75f, 5.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 2.0f, 4.75f) - close() - moveTo(6.22f, 8.22f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(3.0f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(7.5f, 10.56f) - verticalLineToRelative(8.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-8.19f) - lineToRelative(-1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(3.0f, -3.0f) - close() - moveTo(11.5f, 8.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _arrowCollapseAll!! - } - -private var _arrowCollapseAll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCounterclockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCounterclockwise.kt deleted file mode 100644 index 227a5c7e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCounterclockwise.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowCounterclockwise: ImageVector - get() { - if (_arrowCounterclockwise != null) { - return _arrowCounterclockwise!! - } - _arrowCounterclockwise = fluentIcon(name = "Regular.ArrowCounterclockwise") { - fluentPath { - moveTo(12.0f, 4.5f) - arcToRelative(7.5f, 7.5f, 0.0f, true, true, -7.42f, 6.4f) - curveToRelative(0.07f, -0.46f, -0.26f, -0.9f, -0.72f, -0.9f) - curveToRelative(-0.37f, 0.0f, -0.7f, 0.26f, -0.76f, 0.62f) - arcTo(9.0f, 9.0f, 0.0f, true, false, 6.0f, 5.3f) - verticalLineTo(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(6.9f) - arcToRelative(7.47f, 7.47f, 0.0f, false, true, 5.1f, -2.0f) - close() - } - } - return _arrowCounterclockwise!! - } - -private var _arrowCounterclockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCounterclockwiseDashes.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCounterclockwiseDashes.kt deleted file mode 100644 index c2882bd4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCounterclockwiseDashes.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowCounterclockwiseDashes: ImageVector - get() { - if (_arrowCounterclockwiseDashes != null) { - return _arrowCounterclockwiseDashes!! - } - _arrowCounterclockwiseDashes = fluentIcon(name = "Regular.ArrowCounterclockwiseDashes") { - fluentPath { - moveTo(13.87f, 3.2f) - arcToRelative(9.03f, 9.03f, 0.0f, false, false, -3.74f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.3f, 1.46f) - arcToRelative(7.53f, 7.53f, 0.0f, false, true, 3.13f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.31f, -1.47f) - close() - moveTo(8.13f, 4.66f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.03f, -0.22f) - curveToRelative(-0.39f, 0.25f, -0.76f, 0.53f, -1.1f, 0.84f) - lineTo(6.0f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(6.9f, 6.5f) - curveToRelative(0.32f, -0.3f, 0.65f, -0.56f, 1.02f, -0.8f) - curveToRelative(0.34f, -0.22f, 0.44f, -0.68f, 0.21f, -1.03f) - close() - moveTo(4.5f, 12.0f) - verticalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - lineTo(3.0f, 12.0f) - curveToRelative(0.0f, 0.64f, 0.07f, 1.27f, 0.2f, 1.87f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.46f, -0.3f) - curveToRelative(-0.1f, -0.51f, -0.16f, -1.03f, -0.16f, -1.57f) - close() - moveTo(15.87f, 4.67f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.21f, 1.04f) - arcToRelative(7.55f, 7.55f, 0.0f, false, true, 2.21f, 2.2f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.26f, -0.81f) - arcToRelative(9.04f, 9.04f, 0.0f, false, false, -2.65f, -2.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.03f, 0.22f) - close() - moveTo(19.34f, 10.44f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.47f, -0.31f) - arcToRelative(9.03f, 9.03f, 0.0f, false, true, 0.0f, 3.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.47f, -0.3f) - arcToRelative(7.54f, 7.54f, 0.0f, false, false, 0.0f, -3.13f) - close() - moveTo(4.67f, 15.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.22f, 1.03f) - arcToRelative(9.04f, 9.04f, 0.0f, false, false, 2.65f, 2.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.82f, -1.26f) - arcToRelative(7.55f, 7.55f, 0.0f, false, true, -2.21f, -2.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.04f, -0.22f) - close() - moveTo(18.29f, 16.08f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.26f, 0.82f) - arcToRelative(9.04f, 9.04f, 0.0f, false, true, -2.65f, 2.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.82f, -1.26f) - arcToRelative(7.55f, 7.55f, 0.0f, false, false, 2.21f, -2.2f) - close() - moveTo(14.45f, 19.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.89f, -0.58f) - arcToRelative(7.54f, 7.54f, 0.0f, false, true, -3.12f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.31f, 1.47f) - arcToRelative(9.03f, 9.03f, 0.0f, false, false, 3.74f, 0.0f) - curveToRelative(0.4f, -0.1f, 0.67f, -0.49f, 0.58f, -0.9f) - close() - } - } - return _arrowCounterclockwiseDashes!! - } - -private var _arrowCounterclockwiseDashes: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCurveDownLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCurveDownLeft.kt deleted file mode 100644 index e1afdafc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowCurveDownLeft.kt +++ /dev/null @@ -1,39 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowCurveDownLeft: ImageVector - get() { - if (_arrowCurveDownLeft != null) { - return _arrowCurveDownLeft!! - } - _arrowCurveDownLeft = fluentIcon(name = "Regular.ArrowCurveDownLeft") { - fluentPath { - moveTo(16.4f, 3.38f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.02f, -0.28f) - arcToRelative(7.92f, 7.92f, 0.0f, false, false, -3.92f, 4.7f) - arcToRelative(15.4f, 15.4f, 0.0f, false, false, -0.46f, 4.55f) - verticalLineTo(18.44f) - lineToRelative(-3.72f, -3.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(5.0f, 5.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(5.0f, -5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineToRelative(-3.72f, 3.72f) - verticalLineToRelative(-6.07f) - curveToRelative(0.0f, -1.41f, 0.0f, -2.8f, 0.4f, -4.13f) - arcToRelative(6.43f, 6.43f, 0.0f, false, true, 3.22f, -3.84f) - curveToRelative(0.36f, -0.2f, 0.49f, -0.66f, 0.28f, -1.02f) - close() - } - } - return _arrowCurveDownLeft!! - } - -private var _arrowCurveDownLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowEnterLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowEnterLeft.kt deleted file mode 100644 index 898dc06f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowEnterLeft.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowEnterLeft: ImageVector - get() { - if (_arrowEnterLeft != null) { - return _arrowEnterLeft!! - } - _arrowEnterLeft = fluentIcon(name = "Regular.ArrowEnterLeft") { - fluentPath { - moveTo(21.25f, 4.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(6.5f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 18.25f, 15.0f) - horizontalLineTo(4.6f) - lineToRelative(3.72f, 3.72f) - curveToRelative(0.26f, 0.27f, 0.29f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-5.0f, -5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.08f, -0.98f) - lineToRelative(0.08f, -0.08f) - lineToRelative(5.0f, -5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-3.72f, 3.72f) - horizontalLineToRelative(13.66f) - curveToRelative(1.2f, 0.0f, 2.17f, -0.93f, 2.25f, -2.1f) - verticalLineTo(4.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _arrowEnterLeft!! - } - -private var _arrowEnterLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowEnterUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowEnterUp.kt deleted file mode 100644 index 07fd6c9e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowEnterUp.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowEnterUp: ImageVector - get() { - if (_arrowEnterUp != null) { - return _arrowEnterUp!! - } - _arrowEnterUp = fluentIcon(name = "Regular.ArrowEnterUp") { - fluentPath { - moveTo(20.0f, 21.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-6.5f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 9.0f, 18.25f) - verticalLineTo(4.6f) - lineTo(5.28f, 8.3f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(5.0f, -5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.08f) - lineToRelative(0.08f, 0.08f) - lineToRelative(5.0f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-3.72f, -3.72f) - verticalLineToRelative(13.66f) - curveToRelative(0.0f, 1.2f, 0.93f, 2.17f, 2.1f, 2.25f) - horizontalLineToRelative(6.65f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - } - } - return _arrowEnterUp!! - } - -private var _arrowEnterUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowExportLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowExportLtr.kt deleted file mode 100644 index 21d9e08f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowExportLtr.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowExportLtr: ImageVector - get() { - if (_arrowExportLtr != null) { - return _arrowExportLtr!! - } - _arrowExportLtr = fluentIcon(name = "Regular.ArrowExportLtr") { - fluentPath { - moveTo(2.75f, 4.5f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.75f, 0.65f) - verticalLineToRelative(13.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(2.0f, 5.26f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(15.65f, 6.3f) - lineTo(15.72f, 6.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - lineToRelative(5.0f, 5.0f) - curveToRelative(0.26f, 0.26f, 0.29f, 0.68f, 0.07f, 0.97f) - lineToRelative(-0.07f, 0.09f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.97f) - lineToRelative(0.07f, -0.09f) - lineToRelative(3.71f, -3.72f) - lineTo(5.75f, 12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.64f, -0.75f) - lineTo(19.45f, 11.01f) - lineToRelative(-3.73f, -3.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(-0.07f, 0.08f) - close() - } - } - return _arrowExportLtr!! - } - -private var _arrowExportLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowExportRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowExportRtl.kt deleted file mode 100644 index 5ab0d1a4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowExportRtl.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowExportRtl: ImageVector - get() { - if (_arrowExportRtl != null) { - return _arrowExportRtl!! - } - _arrowExportRtl = fluentIcon(name = "Regular.ArrowExportRtl") { - fluentPath { - moveTo(21.24f, 4.5f) - curveToRelative(-0.38f, 0.0f, -0.69f, 0.28f, -0.74f, 0.65f) - verticalLineToRelative(13.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.49f, 0.1f) - verticalLineTo(5.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(8.34f, 6.3f) - lineToRelative(-0.06f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, -0.07f) - lineToRelative(-0.08f, 0.07f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.97f) - lineToRelative(0.07f, 0.09f) - lineToRelative(5.0f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, -0.97f) - lineToRelative(-0.07f, -0.09f) - lineToRelative(-3.71f, -3.72f) - horizontalLineToRelative(13.67f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.64f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.75f) - horizontalLineTo(4.55f) - lineToRelative(3.73f, -3.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.07f, -0.98f) - lineToRelative(-0.07f, -0.08f) - lineToRelative(0.07f, 0.08f) - close() - } - } - return _arrowExportRtl!! - } - -private var _arrowExportRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowExportUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowExportUp.kt deleted file mode 100644 index 3991d79b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowExportUp.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowExportUp: ImageVector - get() { - if (_arrowExportUp != null) { - return _arrowExportUp!! - } - _arrowExportUp = fluentIcon(name = "Regular.ArrowExportUp") { - fluentPath { - moveTo(12.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineTo(11.0f, 4.56f) - verticalLineToRelative(13.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineTo(4.56f) - lineToRelative(3.72f, 3.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-5.0f, -5.0f) - close() - moveTo(5.25f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-13.0f) - close() - } - } - return _arrowExportUp!! - } - -private var _arrowExportUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowForwardDownLightning.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowForwardDownLightning.kt deleted file mode 100644 index ee96493f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowForwardDownLightning.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowForwardDownLightning: ImageVector - get() { - if (_arrowForwardDownLightning != null) { - return _arrowForwardDownLightning!! - } - _arrowForwardDownLightning = fluentIcon(name = "Regular.ArrowForwardDownLightning") { - fluentPath { - moveTo(13.0f, 16.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(8.53f, 13.0f) - lineTo(7.1f, 13.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.47f, 0.32f) - lineToRelative(-1.13f, 3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.47f, 0.68f) - horizontalLineToRelative(0.78f) - lineToRelative(-0.77f, 2.32f) - arcToRelative(0.52f, 0.52f, 0.0f, false, false, 0.92f, 0.44f) - lineToRelative(2.63f, -4.03f) - arcToRelative(0.47f, 0.47f, 0.0f, false, false, -0.4f, -0.73f) - lineTo(8.5f, 15.0f) - lineToRelative(0.5f, -1.32f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.47f, -0.68f) - close() - moveTo(16.63f, 6.54f) - lineTo(19.59f, 9.5f) - horizontalLineToRelative(-5.92f) - arcToRelative(6.25f, 6.25f, 0.0f, false, true, -6.02f, -6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) - verticalLineToRelative(0.25f) - arcTo(7.75f, 7.75f, 0.0f, false, false, 13.9f, 11.0f) - horizontalLineToRelative(5.69f) - lineToRelative(-2.97f, 2.96f) - lineToRelative(-0.07f, 0.09f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, 0.97f) - lineToRelative(4.25f, -4.24f) - lineToRelative(0.07f, -0.08f) - curveToRelative(0.22f, -0.3f, 0.2f, -0.71f, -0.07f, -0.98f) - lineToRelative(-4.25f, -4.24f) - lineToRelative(-0.08f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 1.14f) - close() - } - } - return _arrowForwardDownLightning!! - } - -private var _arrowForwardDownLightning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowForwardDownPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowForwardDownPerson.kt deleted file mode 100644 index 53775cbd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowForwardDownPerson.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowForwardDownPerson: ImageVector - get() { - if (_arrowForwardDownPerson != null) { - return _arrowForwardDownPerson!! - } - _arrowForwardDownPerson = fluentIcon(name = "Regular.ArrowForwardDownPerson") { - fluentPath { - moveToRelative(19.69f, 9.5f) - lineToRelative(-2.96f, -2.96f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -1.14f) - lineToRelative(0.09f, 0.08f) - lineToRelative(4.24f, 4.24f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-4.24f, 4.24f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.14f, -0.97f) - lineToRelative(0.08f, -0.09f) - lineTo(19.69f, 11.0f) - lineTo(14.0f, 11.0f) - arcToRelative(7.75f, 7.75f, 0.0f, false, true, -7.75f, -7.5f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - arcToRelative(6.25f, 6.25f, 0.0f, false, false, 6.02f, 6.25f) - lineTo(19.7f, 9.5f) - close() - moveTo(9.0f, 13.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(11.0f, 18.88f) - curveTo(11.0f, 20.43f, 9.71f, 22.0f, 6.5f, 22.0f) - reflectiveCurveTo(2.0f, 20.44f, 2.0f, 18.88f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.99f, 0.8f, -1.78f, 1.77f, -1.78f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _arrowForwardDownPerson!! - } - -private var _arrowForwardDownPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowHookDownLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowHookDownLeft.kt deleted file mode 100644 index 16db4a07..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowHookDownLeft.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowHookDownLeft: ImageVector - get() { - if (_arrowHookDownLeft != null) { - return _arrowHookDownLeft!! - } - _arrowHookDownLeft = fluentIcon(name = "Regular.ArrowHookDownLeft") { - fluentPath { - moveTo(7.0f, 4.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineTo(14.0f) - curveToRelative(1.98f, 0.0f, 3.5f, 0.82f, 4.52f, 2.07f) - arcTo(7.05f, 7.05f, 0.0f, false, true, 20.0f, 10.5f) - curveToRelative(0.0f, 1.58f, -0.48f, 3.2f, -1.48f, 4.43f) - arcTo(5.63f, 5.63f, 0.0f, false, true, 14.0f, 17.0f) - horizontalLineTo(7.56f) - lineToRelative(2.47f, 2.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-3.75f, -3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(3.75f, -3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineTo(7.56f, 15.5f) - horizontalLineTo(14.0f) - curveToRelative(1.52f, 0.0f, 2.62f, -0.61f, 3.36f, -1.52f) - arcToRelative(5.56f, 5.56f, 0.0f, false, false, 1.14f, -3.48f) - curveToRelative(0.0f, -1.3f, -0.4f, -2.56f, -1.14f, -3.48f) - arcTo(4.13f, 4.13f, 0.0f, false, false, 14.0f, 5.5f) - horizontalLineTo(7.75f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 4.75f) - close() - } - } - return _arrowHookDownLeft!! - } - -private var _arrowHookDownLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowHookDownRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowHookDownRight.kt deleted file mode 100644 index a1e517e4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowHookDownRight.kt +++ /dev/null @@ -1,39 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowHookDownRight: ImageVector - get() { - if (_arrowHookDownRight != null) { - return _arrowHookDownRight!! - } - _arrowHookDownRight = fluentIcon(name = "Regular.ArrowHookDownRight") { - fluentPath { - moveTo(10.5f, 5.5f) - horizontalLineTo(16.0f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 16.0f, 4.0f) - horizontalLineToRelative(-5.5f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, 0.0f, 13.0f) - horizontalLineToRelative(5.95f) - lineToRelative(-2.62f, 2.62f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(3.89f, -3.88f) - curveToRelative(0.1f, -0.1f, 0.16f, -0.23f, 0.2f, -0.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.21f, -0.74f) - lineToRelative(-3.88f, -3.88f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(2.6f, 2.61f) - horizontalLineTo(10.5f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - } - } - return _arrowHookDownRight!! - } - -private var _arrowHookDownRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowHookUpLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowHookUpLeft.kt deleted file mode 100644 index 2fe628bd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowHookUpLeft.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowHookUpLeft: ImageVector - get() { - if (_arrowHookUpLeft != null) { - return _arrowHookUpLeft!! - } - _arrowHookUpLeft = fluentIcon(name = "Regular.ArrowHookUpLeft") { - fluentPath { - moveTo(7.0f, 19.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineTo(14.0f) - curveToRelative(1.98f, 0.0f, 3.5f, -0.82f, 4.52f, -2.07f) - arcTo(7.05f, 7.05f, 0.0f, false, false, 20.0f, 13.5f) - curveToRelative(0.0f, -1.58f, -0.48f, -3.2f, -1.48f, -4.43f) - arcTo(5.63f, 5.63f, 0.0f, false, false, 14.0f, 7.0f) - horizontalLineTo(7.56f) - lineToRelative(2.47f, -2.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineTo(5.22f, 7.22f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(3.75f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineTo(7.56f, 8.5f) - horizontalLineTo(14.0f) - curveToRelative(1.52f, 0.0f, 2.62f, 0.61f, 3.36f, 1.52f) - arcToRelative(5.56f, 5.56f, 0.0f, false, true, 1.14f, 3.48f) - curveToRelative(0.0f, 1.3f, -0.4f, 2.56f, -1.14f, 3.48f) - arcTo(4.13f, 4.13f, 0.0f, false, true, 14.0f, 18.5f) - horizontalLineTo(7.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - } - } - return _arrowHookUpLeft!! - } - -private var _arrowHookUpLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowHookUpRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowHookUpRight.kt deleted file mode 100644 index 95081e81..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowHookUpRight.kt +++ /dev/null @@ -1,39 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowHookUpRight: ImageVector - get() { - if (_arrowHookUpRight != null) { - return _arrowHookUpRight!! - } - _arrowHookUpRight = fluentIcon(name = "Regular.ArrowHookUpRight") { - fluentPath { - moveTo(10.5f, 18.5f) - horizontalLineToRelative(5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineTo(10.5f) - arcToRelative(6.5f, 6.5f, 0.0f, true, true, 0.0f, -13.0f) - horizontalLineToRelative(5.95f) - lineToRelative(-2.62f, -2.62f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineToRelative(3.89f, 3.88f) - curveToRelative(0.1f, 0.1f, 0.16f, 0.23f, 0.2f, 0.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.21f, 0.74f) - lineToRelative(-3.88f, 3.88f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(2.6f, -2.61f) - horizontalLineTo(10.5f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 0.0f, 10.0f) - close() - } - } - return _arrowHookUpRight!! - } - -private var _arrowHookUpRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowImport.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowImport.kt deleted file mode 100644 index beaa189a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowImport.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowImport: ImageVector - get() { - if (_arrowImport != null) { - return _arrowImport!! - } - _arrowImport = fluentIcon(name = "Regular.ArrowImport") { - fluentPath { - moveTo(21.25f, 4.5f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(20.5f, 5.26f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(12.65f, 6.3f) - lineTo(12.72f, 6.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - lineToRelative(5.0f, 5.0f) - curveToRelative(0.26f, 0.26f, 0.29f, 0.68f, 0.07f, 0.97f) - lineToRelative(-0.07f, 0.09f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.97f) - lineToRelative(0.07f, -0.09f) - lineToRelative(3.71f, -3.72f) - lineTo(2.75f, 12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) - lineToRelative(-0.01f, -0.1f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.75f) - lineTo(16.45f, 11.01f) - lineToRelative(-3.73f, -3.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(-0.07f, 0.08f) - close() - } - } - return _arrowImport!! - } - -private var _arrowImport: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowMaximize.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowMaximize.kt deleted file mode 100644 index 84923ce0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowMaximize.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowMaximize: ImageVector - get() { - if (_arrowMaximize != null) { - return _arrowMaximize!! - } - _arrowMaximize = fluentIcon(name = "Regular.ArrowMaximize") { - fluentPath { - moveTo(12.75f, 3.0f) - horizontalLineToRelative(7.55f) - lineToRelative(0.1f, 0.02f) - lineToRelative(0.1f, 0.02f) - lineToRelative(0.06f, 0.03f) - curveToRelative(0.08f, 0.03f, 0.15f, 0.09f, 0.22f, 0.15f) - lineToRelative(0.04f, 0.04f) - lineToRelative(0.06f, 0.09f) - lineToRelative(0.04f, 0.06f) - lineToRelative(0.04f, 0.1f) - lineToRelative(0.02f, 0.06f) - lineToRelative(0.01f, 0.06f) - verticalLineToRelative(0.1f) - lineToRelative(0.01f, 7.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-5.8f) - lineTo(5.56f, 19.5f) - horizontalLineToRelative(5.69f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.29f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - curveToRelative(0.0f, 0.39f, -0.28f, 0.7f, -0.65f, 0.75f) - horizontalLineTo(3.68f) - arcToRelative(0.7f, 0.7f, 0.0f, false, true, -0.18f, -0.04f) - lineToRelative(-0.1f, -0.04f) - horizontalLineTo(3.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.38f, -0.56f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.11f) - verticalLineToRelative(5.8f) - lineTo(18.44f, 4.5f) - horizontalLineToRelative(-5.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - horizontalLineToRelative(0.1f) - close() - } - } - return _arrowMaximize!! - } - -private var _arrowMaximize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowMaximizeVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowMaximizeVertical.kt deleted file mode 100644 index 2c2e17fe..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowMaximizeVertical.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowMaximizeVertical: ImageVector - get() { - if (_arrowMaximizeVertical != null) { - return _arrowMaximizeVertical!! - } - _arrowMaximizeVertical = fluentIcon(name = "Regular.ArrowMaximizeVertical") { - fluentPath { - moveTo(13.72f, 5.78f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineTo(11.0f, 4.56f) - verticalLineToRelative(4.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(12.5f, 4.56f) - lineToRelative(1.22f, 1.22f) - close() - moveTo(4.0f, 11.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(4.75f, 12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(12.5f, 14.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(4.69f) - lineToRelative(-1.22f, -1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(2.5f, 2.5f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-1.22f, 1.22f) - verticalLineToRelative(-4.69f) - close() - } - } - return _arrowMaximizeVertical!! - } - -private var _arrowMaximizeVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowMinimize.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowMinimize.kt deleted file mode 100644 index ca140b58..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowMinimize.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowMinimize: ImageVector - get() { - if (_arrowMinimize != null) { - return _arrowMinimize!! - } - _arrowMinimize = fluentIcon(name = "Regular.ArrowMinimize") { - fluentPath { - moveTo(21.78f, 2.22f) - curveToRelative(0.26f, 0.27f, 0.29f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-6.23f, 6.23f) - horizontalLineToRelative(5.7f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 0.38f, -0.27f, 0.69f, -0.64f, 0.74f) - horizontalLineTo(13.68f) - arcToRelative(0.73f, 0.73f, 0.0f, false, true, -0.2f, -0.04f) - lineToRelative(-0.1f, -0.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.38f, -0.56f) - verticalLineToRelative(-7.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.49f, -0.1f) - verticalLineTo(8.43f) - lineToRelative(6.23f, -6.22f) - curveToRelative(0.29f, -0.3f, 0.76f, -0.3f, 1.06f, 0.0f) - close() - moveTo(11.0f, 13.75f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.11f) - verticalLineToRelative(-5.8f) - lineToRelative(-6.22f, 6.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(6.22f, -6.22f) - horizontalLineTo(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.42f, 0.33f, -0.76f, 0.74f, -0.76f) - horizontalLineToRelative(7.56f) - lineToRelative(0.07f, 0.01f) - lineToRelative(0.1f, 0.03f) - lineToRelative(0.05f, 0.02f) - lineToRelative(0.09f, 0.04f) - lineToRelative(0.08f, 0.06f) - curveToRelative(0.06f, 0.04f, 0.11f, 0.09f, 0.15f, 0.14f) - lineToRelative(0.07f, 0.1f) - lineToRelative(0.04f, 0.1f) - lineToRelative(0.02f, 0.07f) - lineToRelative(0.01f, 0.06f) - verticalLineToRelative(0.06f) - verticalLineToRelative(-0.01f) - lineToRelative(0.01f, 0.07f) - close() - } - } - return _arrowMinimize!! - } - -private var _arrowMinimize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowMinimizeVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowMinimizeVertical.kt deleted file mode 100644 index 2f41d1b0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowMinimizeVertical.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowMinimizeVertical: ImageVector - get() { - if (_arrowMinimizeVertical != null) { - return _arrowMinimizeVertical!! - } - _arrowMinimizeVertical = fluentIcon(name = "Regular.ArrowMinimizeVertical") { - fluentPath { - moveTo(11.75f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(4.19f) - lineToRelative(1.22f, -1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-2.5f, 2.5f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineTo(11.0f, 6.94f) - verticalLineTo(2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - fluentPath { - moveTo(4.0f, 11.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineTo(4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - fluentPath { - moveTo(13.72f, 17.78f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineTo(11.0f, 16.56f) - verticalLineToRelative(4.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-4.69f) - lineToRelative(1.22f, 1.22f) - close() - } - } - return _arrowMinimizeVertical!! - } - -private var _arrowMinimizeVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowMove.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowMove.kt deleted file mode 100644 index ab15bd4c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowMove.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowMove: ImageVector - get() { - if (_arrowMove != null) { - return _arrowMove!! - } - _arrowMove = fluentIcon(name = "Regular.ArrowMove") { - fluentPath { - moveTo(15.28f, 6.03f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-1.47f, -1.47f) - verticalLineToRelative(3.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(11.25f, 4.56f) - lineTo(9.78f, 6.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(2.75f, -2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 0.0f) - lineToRelative(2.75f, 2.75f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - close() - moveTo(6.03f, 14.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-2.75f, -2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(2.75f, -2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) - lineToRelative(-1.47f, 1.47f) - horizontalLineToRelative(3.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(4.56f, 12.75f) - lineToRelative(1.47f, 1.47f) - close() - moveTo(17.97f, 15.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(1.47f, -1.47f) - horizontalLineToRelative(-3.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.69f) - lineToRelative(-1.47f, -1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineToRelative(2.75f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.06f) - lineToRelative(-2.75f, 2.75f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - close() - moveTo(15.28f, 17.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-1.47f, 1.47f) - verticalLineToRelative(-3.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.69f) - lineToRelative(-1.47f, -1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(2.75f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 0.0f) - lineToRelative(2.75f, -2.75f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - close() - } - } - return _arrowMove!! - } - -private var _arrowMove: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowNext.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowNext.kt deleted file mode 100644 index b660e224..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowNext.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowNext: ImageVector - get() { - if (_arrowNext != null) { - return _arrowNext!! - } - _arrowNext = fluentIcon(name = "Regular.ArrowNext") { - fluentPath { - moveTo(18.25f, 3.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(17.5f, 3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(5.22f, 3.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - lineToRelative(8.25f, 8.25f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-8.25f, 8.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineTo(12.94f, 12.0f) - lineTo(5.22f, 4.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - } - } - return _arrowNext!! - } - -private var _arrowNext: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowOutlineUpRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowOutlineUpRight.kt deleted file mode 100644 index 960ff7b4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowOutlineUpRight.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowOutlineUpRight: ImageVector - get() { - if (_arrowOutlineUpRight != null) { - return _arrowOutlineUpRight!! - } - _arrowOutlineUpRight = fluentIcon(name = "Regular.ArrowOutlineUpRight") { - fluentPath { - moveTo(20.5f, 4.0f) - arcToRelative(0.45f, 0.45f, 0.0f, false, false, -0.5f, -0.5f) - lineTo(7.94f, 4.84f) - arcToRelative(0.45f, 0.45f, 0.0f, false, false, -0.27f, 0.77f) - lineToRelative(1.8f, 1.8f) - curveToRelative(0.29f, 0.29f, 0.29f, 0.76f, 0.0f, 1.06f) - lineTo(3.63f, 14.3f) - arcToRelative(0.45f, 0.45f, 0.0f, false, false, 0.0f, 0.64f) - lineToRelative(5.43f, 5.43f) - curveToRelative(0.18f, 0.17f, 0.46f, 0.17f, 0.64f, 0.0f) - lineToRelative(5.83f, -5.84f) - curveToRelative(0.3f, -0.29f, 0.77f, -0.29f, 1.06f, 0.0f) - lineToRelative(1.8f, 1.8f) - curveToRelative(0.27f, 0.27f, 0.72f, 0.1f, 0.76f, -0.27f) - lineTo(20.5f, 4.0f) - close() - moveTo(19.83f, 2.01f) - curveToRelative(1.24f, -0.14f, 2.3f, 0.91f, 2.16f, 2.16f) - lineToRelative(-1.34f, 12.06f) - arcToRelative(1.95f, 1.95f, 0.0f, false, true, -3.32f, 1.16f) - lineToRelative(-1.27f, -1.27f) - lineToRelative(-5.3f, 5.3f) - curveToRelative(-0.76f, 0.77f, -2.0f, 0.77f, -2.76f, 0.0f) - lineTo(2.57f, 16.0f) - curveToRelative(-0.76f, -0.76f, -0.76f, -2.0f, 0.0f, -2.76f) - lineToRelative(5.3f, -5.3f) - lineToRelative(-1.26f, -1.27f) - arcToRelative(1.95f, 1.95f, 0.0f, false, true, 1.16f, -3.32f) - lineToRelative(12.06f, -1.34f) - close() - } - } - return _arrowOutlineUpRight!! - } - -private var _arrowOutlineUpRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowParagraph.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowParagraph.kt deleted file mode 100644 index c62fbe85..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowParagraph.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowParagraph: ImageVector - get() { - if (_arrowParagraph != null) { - return _arrowParagraph!! - } - _arrowParagraph = fluentIcon(name = "Regular.ArrowParagraph") { - fluentPath { - moveTo(21.25f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(4.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) - horizontalLineToRelative(-5.69f) - lineToRelative(2.72f, 2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-4.0f, -4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineTo(13.56f, 8.0f) - horizontalLineToRelative(5.69f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(7.72f, 11.22f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineTo(10.44f, 15.0f) - horizontalLineTo(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.69f) - lineToRelative(-2.72f, 2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(4.0f, -4.0f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-4.0f, -4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - close() - } - } - return _arrowParagraph!! - } - -private var _arrowParagraph: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowPrevious.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowPrevious.kt deleted file mode 100644 index b6333106..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowPrevious.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowPrevious: ImageVector - get() { - if (_arrowPrevious != null) { - return _arrowPrevious!! - } - _arrowPrevious = fluentIcon(name = "Regular.ArrowPrevious") { - fluentPath { - moveTo(5.75f, 3.0f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.1f) - lineTo(6.5f, 3.75f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 5.75f, 3.0f) - close() - moveTo(18.78f, 3.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, -0.07f) - lineToRelative(-0.08f, 0.07f) - lineToRelative(-8.25f, 8.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.98f) - lineToRelative(0.07f, 0.08f) - lineToRelative(8.25f, 8.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, -0.98f) - lineToRelative(-0.07f, -0.08f) - lineTo(11.06f, 12.0f) - lineToRelative(7.72f, -7.72f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - close() - } - } - return _arrowPrevious!! - } - -private var _arrowPrevious: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowRedo.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowRedo.kt deleted file mode 100644 index 2f102f3d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowRedo.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowRedo: ImageVector - get() { - if (_arrowRedo != null) { - return _arrowRedo!! - } - _arrowRedo = fluentIcon(name = "Regular.ArrowRedo") { - fluentPath { - moveTo(19.25f, 2.0f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(5.69f) - lineToRelative(-4.57f, -4.56f) - arcToRelative(6.41f, 6.41f, 0.0f, false, false, -8.88f, -0.18f) - lineToRelative(-0.19f, 0.18f) - arcToRelative(6.4f, 6.4f, 0.0f, false, false, 0.0f, 9.06f) - lineToRelative(8.85f, 8.84f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineToRelative(-8.85f, -8.84f) - arcToRelative(4.9f, 4.9f, 0.0f, false, true, 6.77f, -7.1f) - lineToRelative(0.18f, 0.16f) - lineToRelative(4.57f, 4.56f) - horizontalLineToRelative(-5.69f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(7.5f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - verticalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - } - } - return _arrowRedo!! - } - -private var _arrowRedo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowRepeat1.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowRepeat1.kt deleted file mode 100644 index 54abcf37..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowRepeat1.kt +++ /dev/null @@ -1,88 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowRepeat1: ImageVector - get() { - if (_arrowRepeat1 != null) { - return _arrowRepeat1!! - } - _arrowRepeat1 = fluentIcon(name = "Regular.ArrowRepeat1") { - fluentPath { - moveToRelative(14.61f, 2.47f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) - lineToRelative(-0.07f, 0.08f) - curveToRelative(-0.22f, 0.3f, -0.2f, 0.72f, 0.07f, 0.98f) - lineToRelative(1.97f, 1.98f) - lineTo(8.27f, 5.51f) - arcToRelative(6.51f, 6.51f, 0.0f, false, false, -4.58f, 10.92f) - lineToRelative(0.07f, 0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.08f, -1.03f) - lineToRelative(-0.2f, -0.23f) - arcTo(5.0f, 5.0f, 0.0f, false, true, 8.5f, 7.02f) - horizontalLineToRelative(6.88f) - lineToRelative(-1.83f, 1.84f) - lineToRelative(-0.07f, 0.07f) - curveToRelative(-0.22f, 0.3f, -0.2f, 0.72f, 0.07f, 1.0f) - curveToRelative(0.3f, 0.29f, 0.77f, 0.29f, 1.06f, 0.0f) - lineToRelative(3.18f, -3.2f) - lineToRelative(0.07f, -0.08f) - curveToRelative(0.22f, -0.3f, 0.2f, -0.72f, -0.07f, -0.99f) - lineToRelative(-3.18f, -3.19f) - close() - moveTo(20.23f, 7.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.05f, 1.07f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 1.31f, 3.09f) - curveToRelative(0.54f, 0.28f, 1.03f, 0.63f, 1.47f, 1.04f) - arcToRelative(6.64f, 6.64f, 0.0f, false, false, -1.66f, -5.13f) - lineToRelative(-0.07f, -0.07f) - close() - moveTo(8.56f, 17.05f) - horizontalLineToRelative(2.46f) - arcToRelative(6.6f, 6.6f, 0.0f, false, false, 0.07f, 1.5f) - lineTo(8.56f, 18.55f) - lineToRelative(1.9f, 1.91f) - lineToRelative(0.07f, 0.08f) - curveToRelative(0.22f, 0.3f, 0.2f, 0.72f, -0.07f, 0.99f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 0.07f) - lineToRelative(-0.09f, -0.07f) - lineToRelative(-3.18f, -3.2f) - lineToRelative(-0.07f, -0.07f) - arcToRelative(0.76f, 0.76f, 0.0f, false, true, 0.0f, -0.9f) - lineToRelative(0.07f, -0.09f) - lineToRelative(3.18f, -3.2f) - lineToRelative(0.08f, -0.06f) - curveToRelative(0.26f, -0.2f, 0.63f, -0.2f, 0.9f, 0.0f) - lineToRelative(0.08f, 0.07f) - lineToRelative(0.07f, 0.07f) - curveToRelative(0.2f, 0.27f, 0.2f, 0.64f, 0.0f, 0.9f) - lineToRelative(-0.07f, 0.1f) - lineToRelative(-1.9f, 1.9f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(18.11f, 14.01f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.56f, 0.27f) - curveToRelative(-0.05f, 0.11f, -0.27f, 0.45f, -0.61f, 0.82f) - curveToRelative(-0.33f, 0.38f, -0.74f, 0.74f, -1.16f, 0.95f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.44f, 0.9f) - curveToRelative(0.5f, -0.25f, 0.93f, -0.62f, 1.28f, -0.98f) - verticalLineToRelative(4.53f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.39f, -0.49f) - close() - } - } - return _arrowRepeat1!! - } - -private var _arrowRepeat1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowRepeatAll.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowRepeatAll.kt deleted file mode 100644 index 9a8a2cf4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowRepeatAll.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowRepeatAll: ImageVector - get() { - if (_arrowRepeatAll != null) { - return _arrowRepeatAll!! - } - _arrowRepeatAll = fluentIcon(name = "Regular.ArrowRepeatAll") { - fluentPath { - moveToRelative(14.61f, 2.47f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) - lineToRelative(-0.07f, 0.08f) - curveToRelative(-0.22f, 0.3f, -0.2f, 0.72f, 0.07f, 0.98f) - lineToRelative(1.97f, 1.98f) - lineTo(8.27f, 5.51f) - arcToRelative(6.51f, 6.51f, 0.0f, false, false, -4.58f, 10.92f) - lineToRelative(0.07f, 0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.08f, -1.03f) - lineToRelative(-0.2f, -0.23f) - arcTo(5.0f, 5.0f, 0.0f, false, true, 8.5f, 7.02f) - horizontalLineToRelative(6.88f) - lineToRelative(-1.83f, 1.84f) - lineToRelative(-0.07f, 0.07f) - curveToRelative(-0.22f, 0.3f, -0.2f, 0.72f, 0.07f, 1.0f) - curveToRelative(0.3f, 0.29f, 0.77f, 0.29f, 1.06f, 0.0f) - lineToRelative(3.18f, -3.2f) - lineToRelative(0.07f, -0.08f) - curveToRelative(0.22f, -0.3f, 0.2f, -0.72f, -0.07f, -0.99f) - lineToRelative(-3.18f, -3.19f) - close() - moveTo(20.23f, 7.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.05f, 1.07f) - arcToRelative(5.01f, 5.01f, 0.0f, false, true, -3.68f, 8.41f) - lineTo(8.56f, 17.05f) - lineToRelative(1.9f, -1.9f) - lineToRelative(0.08f, -0.1f) - curveToRelative(0.2f, -0.26f, 0.2f, -0.63f, 0.0f, -0.9f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-0.08f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 0.01f) - lineToRelative(-0.08f, 0.07f) - lineToRelative(-3.18f, 3.2f) - lineToRelative(-0.07f, 0.08f) - curveToRelative(-0.2f, 0.26f, -0.2f, 0.63f, 0.0f, 0.9f) - lineToRelative(0.07f, 0.08f) - lineToRelative(3.18f, 3.19f) - lineToRelative(0.09f, 0.07f) - curveToRelative(0.29f, 0.22f, 0.7f, 0.2f, 0.97f, -0.07f) - reflectiveCurveToRelative(0.3f, -0.7f, 0.07f, -0.99f) - lineToRelative(-0.07f, -0.07f) - lineToRelative(-1.9f, -1.91f) - lineTo(15.73f, 18.56f) - arcTo(6.51f, 6.51f, 0.0f, false, false, 20.3f, 7.63f) - lineToRelative(-0.07f, -0.07f) - close() - } - } - return _arrowRepeatAll!! - } - -private var _arrowRepeatAll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowRepeatAllOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowRepeatAllOff.kt deleted file mode 100644 index f8bf4a08..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowRepeatAllOff.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowRepeatAllOff: ImageVector - get() { - if (_arrowRepeatAllOff != null) { - return _arrowRepeatAllOff!! - } - _arrowRepeatAllOff = fluentIcon(name = "Regular.ArrowRepeatAllOff") { - fluentPath { - moveToRelative(3.2f, 2.15f) - lineToRelative(0.08f, 0.07f) - lineToRelative(18.5f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-3.5f, -3.5f) - curveToRelative(-0.45f, 0.11f, -0.9f, 0.19f, -1.37f, 0.21f) - lineToRelative(-0.35f, 0.01f) - lineTo(8.56f, 18.5f) - lineToRelative(1.9f, 1.9f) - lineToRelative(0.07f, 0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.04f, 1.05f) - lineToRelative(-0.09f, -0.07f) - lineToRelative(-3.18f, -3.18f) - lineToRelative(-0.07f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -0.9f) - lineToRelative(0.07f, -0.08f) - lineToRelative(3.18f, -3.18f) - lineToRelative(0.08f, -0.07f) - curveToRelative(0.26f, -0.2f, 0.63f, -0.2f, 0.9f, 0.0f) - lineToRelative(0.08f, 0.07f) - lineToRelative(0.07f, 0.07f) - curveToRelative(0.2f, 0.27f, 0.2f, 0.63f, 0.0f, 0.9f) - lineToRelative(-0.07f, 0.09f) - lineToRelative(-1.9f, 1.9f) - horizontalLineToRelative(6.94f) - curveToRelative(0.14f, 0.0f, 0.28f, 0.0f, 0.42f, -0.02f) - lineTo(6.4f, 7.46f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, -1.6f, 7.9f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.11f, 1.0f) - arcTo(6.47f, 6.47f, 0.0f, false, true, 5.3f, 6.36f) - lineTo(2.22f, 3.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) - close() - moveTo(19.75f, 7.38f) - curveToRelative(0.22f, 0.0f, 0.42f, 0.1f, 0.55f, 0.24f) - arcToRelative(6.47f, 6.47f, 0.0f, false, true, -0.75f, 9.46f) - lineToRelative(-1.06f, -1.07f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 0.69f, -7.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.57f, -1.24f) - close() - moveTo(14.53f, 2.4f) - lineToRelative(0.08f, 0.07f) - lineToRelative(3.18f, 3.18f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.7f, 0.07f, 0.99f) - lineToRelative(-0.07f, 0.07f) - lineToRelative(-3.18f, 3.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineTo(15.38f, 7.0f) - horizontalLineToRelative(-5.9f) - lineTo(7.98f, 5.52f) - lineToRelative(0.28f, -0.02f) - horizontalLineToRelative(7.25f) - lineToRelative(-1.97f, -1.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - curveToRelative(0.27f, -0.27f, 0.69f, -0.3f, 0.98f, -0.07f) - close() - } - } - return _arrowRepeatAllOff!! - } - -private var _arrowRepeatAllOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowReply.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowReply.kt deleted file mode 100644 index c254b735..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowReply.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowReply: ImageVector - get() { - if (_arrowReply != null) { - return _arrowReply!! - } - _arrowReply = fluentIcon(name = "Regular.ArrowReply") { - fluentPath { - moveTo(9.28f, 16.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineToRelative(-5.0f, -5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(5.0f, -5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) - lineTo(5.56f, 11.0f) - horizontalLineToRelative(7.84f) - curveToRelative(1.6f, 0.0f, 2.81f, 0.24f, 3.89f, 0.76f) - lineToRelative(0.24f, 0.13f) - arcToRelative(6.2f, 6.2f, 0.0f, false, true, 2.58f, 2.58f) - arcTo(8.4f, 8.4f, 0.0f, false, true, 21.0f, 18.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - curveToRelative(0.0f, -1.48f, -0.23f, -2.52f, -0.71f, -3.43f) - arcToRelative(4.7f, 4.7f, 0.0f, false, false, -1.96f, -1.96f) - arcToRelative(6.63f, 6.63f, 0.0f, false, false, -3.1f, -0.7f) - lineToRelative(-0.33f, -0.01f) - horizontalLineTo(5.56f) - lineToRelative(3.72f, 3.72f) - close() - } - } - return _arrowReply!! - } - -private var _arrowReply: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowReplyAll.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowReplyAll.kt deleted file mode 100644 index 40500b44..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowReplyAll.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowReplyAll: ImageVector - get() { - if (_arrowReplyAll != null) { - return _arrowReplyAll!! - } - _arrowReplyAll = fluentIcon(name = "Regular.ArrowReplyAll") { - fluentPath { - moveTo(13.28f, 16.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineToRelative(-5.0f, -5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(5.0f, -5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) - lineTo(9.56f, 11.0f) - horizontalLineToRelative(3.84f) - curveToRelative(1.6f, 0.0f, 2.81f, 0.24f, 3.89f, 0.76f) - lineToRelative(0.24f, 0.13f) - arcToRelative(6.2f, 6.2f, 0.0f, false, true, 2.58f, 2.58f) - arcTo(8.4f, 8.4f, 0.0f, false, true, 21.0f, 18.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - curveToRelative(0.0f, -1.48f, -0.23f, -2.52f, -0.71f, -3.43f) - arcToRelative(4.7f, 4.7f, 0.0f, false, false, -1.96f, -1.96f) - arcToRelative(6.63f, 6.63f, 0.0f, false, false, -3.1f, -0.7f) - lineToRelative(-0.33f, -0.01f) - lineTo(9.56f, 12.5f) - lineToRelative(3.72f, 3.72f) - close() - moveTo(9.28f, 6.22f) - curveToRelative(0.29f, 0.3f, 0.29f, 0.77f, 0.0f, 1.06f) - lineTo(4.8f, 11.75f) - lineToRelative(4.47f, 4.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineToRelative(-5.0f, -5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(5.0f, -5.0f) - curveToRelative(0.29f, -0.3f, 0.76f, -0.3f, 1.06f, 0.0f) - close() - } - } - return _arrowReplyAll!! - } - -private var _arrowReplyAll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowReplyDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowReplyDown.kt deleted file mode 100644 index 25c4ac21..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowReplyDown.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowReplyDown: ImageVector - get() { - if (_arrowReplyDown != null) { - return _arrowReplyDown!! - } - _arrowReplyDown = fluentIcon(name = "Regular.ArrowReplyDown") { - fluentPath { - moveTo(9.28f, 7.78f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-5.0f, 5.0f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(5.0f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(5.56f, 13.0f) - horizontalLineToRelative(7.84f) - curveToRelative(1.6f, 0.0f, 2.81f, -0.24f, 3.89f, -0.76f) - lineToRelative(0.24f, -0.13f) - arcToRelative(6.2f, 6.2f, 0.0f, false, false, 2.58f, -2.58f) - arcTo(8.4f, 8.4f, 0.0f, false, false, 21.0f, 5.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - curveToRelative(0.0f, 1.48f, -0.23f, 2.52f, -0.71f, 3.43f) - arcToRelative(4.7f, 4.7f, 0.0f, false, true, -1.96f, 1.96f) - curveToRelative(-0.84f, 0.45f, -1.79f, 0.67f, -3.1f, 0.7f) - lineToRelative(-0.33f, 0.01f) - horizontalLineTo(5.56f) - lineToRelative(3.72f, -3.72f) - close() - } - } - return _arrowReplyDown!! - } - -private var _arrowReplyDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowReset.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowReset.kt deleted file mode 100644 index 7a3bde09..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowReset.kt +++ /dev/null @@ -1,37 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowReset: ImageVector - get() { - if (_arrowReset != null) { - return _arrowReset!! - } - _arrowReset = fluentIcon(name = "Regular.ArrowReset") { - fluentPath { - moveTo(6.78f, 2.72f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineTo(4.56f, 6.0f) - horizontalLineToRelative(8.69f) - arcToRelative(7.75f, 7.75f, 0.0f, true, true, -7.75f, 7.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - arcToRelative(6.25f, 6.25f, 0.0f, true, false, 6.25f, -6.25f) - horizontalLineTo(4.56f) - lineToRelative(2.22f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-3.5f, -3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(3.5f, -3.5f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - } - } - return _arrowReset!! - } - -private var _arrowReset: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowRotateClockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowRotateClockwise.kt deleted file mode 100644 index 6a88e2ce..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowRotateClockwise.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowRotateClockwise: ImageVector - get() { - if (_arrowRotateClockwise != null) { - return _arrowRotateClockwise!! - } - _arrowRotateClockwise = fluentIcon(name = "Regular.ArrowRotateClockwise") { - fluentPath { - moveTo(12.0f, 3.0f) - arcToRelative(9.0f, 9.0f, 0.0f, false, true, 4.98f, 16.5f) - horizontalLineToRelative(1.77f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-4.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(2.49f) - arcTo(7.5f, 7.5f, 0.0f, true, false, 4.5f, 12.0f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 12.0f) - arcToRelative(9.0f, 9.0f, 0.0f, false, true, 9.0f, -9.0f) - close() - moveTo(12.0f, 9.25f) - arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, 5.5f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.0f, -5.5f) - close() - moveTo(12.0f, 10.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - } - } - return _arrowRotateClockwise!! - } - -private var _arrowRotateClockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowRotateCounterclockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowRotateCounterclockwise.kt deleted file mode 100644 index 0d9430b5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowRotateCounterclockwise.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowRotateCounterclockwise: ImageVector - get() { - if (_arrowRotateCounterclockwise != null) { - return _arrowRotateCounterclockwise!! - } - _arrowRotateCounterclockwise = fluentIcon(name = "Regular.ArrowRotateCounterclockwise") { - fluentPath { - moveTo(12.0f, 3.0f) - arcToRelative(9.0f, 9.0f, 0.0f, false, false, -4.98f, 16.5f) - lineTo(5.25f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - horizontalLineToRelative(4.1f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - verticalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, -0.1f) - verticalLineToRelative(2.49f) - arcToRelative(7.5f, 7.5f, 0.0f, true, true, 11.0f, -6.64f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - arcToRelative(9.0f, 9.0f, 0.0f, false, false, -9.0f, -9.0f) - close() - moveTo(12.0f, 9.25f) - arcToRelative(2.75f, 2.75f, 0.0f, true, false, 0.0f, 5.5f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 0.0f, -5.5f) - close() - moveTo(12.0f, 10.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - } - } - return _arrowRotateCounterclockwise!! - } - -private var _arrowRotateCounterclockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowRouting.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowRouting.kt deleted file mode 100644 index 07d283b3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowRouting.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowRouting: ImageVector - get() { - if (_arrowRouting != null) { - return _arrowRouting!! - } - _arrowRouting = fluentIcon(name = "Regular.ArrowRouting") { - fluentPath { - moveTo(18.78f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(19.44f, 5.0f) - horizontalLineToRelative(-6.19f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.75f, 2.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineToRelative(-1.3f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, -0.12f, 1.5f) - horizontalLineToRelative(1.42f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 12.0f, 17.25f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(6.19f) - lineToRelative(-1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineToRelative(3.0f, -3.0f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-3.0f, -3.0f) - close() - moveTo(3.5f, 19.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - } - } - return _arrowRouting!! - } - -private var _arrowRouting: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowRoutingRectangleMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowRoutingRectangleMultiple.kt deleted file mode 100644 index 667c468a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowRoutingRectangleMultiple.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowRoutingRectangleMultiple: ImageVector - get() { - if (_arrowRoutingRectangleMultiple != null) { - return _arrowRoutingRectangleMultiple!! - } - _arrowRoutingRectangleMultiple = fluentIcon(name = - "Regular.ArrowRoutingRectangleMultiple") { - fluentPath { - moveTo(18.78f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(19.44f, 5.0f) - horizontalLineToRelative(-6.19f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.75f, 2.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineToRelative(-1.3f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, -0.12f, 1.5f) - horizontalLineToRelative(1.42f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 12.0f, 17.25f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(6.19f) - lineToRelative(-1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineToRelative(3.0f, -3.0f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-3.0f, -3.0f) - close() - moveTo(3.5f, 19.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - moveTo(14.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) - verticalLineToRelative(-3.0f) - close() - } - } - return _arrowRoutingRectangleMultiple!! - } - -private var _arrowRoutingRectangleMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowShuffle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowShuffle.kt deleted file mode 100644 index 9f9c8872..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowShuffle.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowShuffle: ImageVector - get() { - if (_arrowShuffle != null) { - return _arrowShuffle!! - } - _arrowShuffle = fluentIcon(name = "Regular.ArrowShuffle") { - fluentPath { - moveTo(19.28f, 4.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(19.44f, 7.0f) - horizontalLineToRelative(-0.19f) - curveToRelative(-3.92f, 0.0f, -6.42f, 2.3f, -8.7f, 4.39f) - lineToRelative(-0.06f, 0.06f) - curveTo(8.15f, 13.6f, 6.04f, 15.5f, 2.75f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - curveToRelative(3.92f, 0.0f, 6.42f, -2.3f, 8.7f, -4.39f) - lineToRelative(0.06f, -0.06f) - curveToRelative(2.34f, -2.15f, 4.45f, -4.05f, 7.74f, -4.05f) - horizontalLineToRelative(0.19f) - lineToRelative(-1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.06f) - lineToRelative(-2.5f, -2.5f) - close() - moveTo(2.75f, 7.0f) - curveToRelative(3.25f, 0.0f, 5.52f, 1.58f, 7.5f, 3.31f) - lineToRelative(-0.3f, 0.28f) - lineToRelative(-0.13f, 0.12f) - lineToRelative(-0.68f, 0.62f) - curveTo(7.28f, 9.73f, 5.4f, 8.5f, 2.75f, 8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - close() - moveTo(19.25f, 17.0f) - curveToRelative(-3.25f, 0.0f, -5.52f, -1.58f, -7.5f, -3.31f) - lineToRelative(0.3f, -0.28f) - lineToRelative(0.13f, -0.12f) - lineToRelative(0.68f, -0.62f) - curveToRelative(1.86f, 1.6f, 3.74f, 2.83f, 6.39f, 2.83f) - horizontalLineToRelative(0.19f) - lineToRelative(-1.22f, -1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineToRelative(2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.06f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineTo(19.44f, 17.0f) - horizontalLineToRelative(-0.19f) - close() - } - } - return _arrowShuffle!! - } - -private var _arrowShuffle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowShuffleOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowShuffleOff.kt deleted file mode 100644 index 2135335d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowShuffleOff.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowShuffleOff: ImageVector - get() { - if (_arrowShuffleOff != null) { - return _arrowShuffleOff!! - } - _arrowShuffleOff = fluentIcon(name = "Regular.ArrowShuffleOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(4.7f, 4.7f) - arcTo(9.25f, 9.25f, 0.0f, false, false, 2.75f, 7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - curveToRelative(2.65f, 0.0f, 4.53f, 1.23f, 6.39f, 2.83f) - lineToRelative(0.59f, -0.54f) - lineToRelative(0.7f, 0.7f) - curveToRelative(-2.3f, 2.14f, -4.41f, 4.01f, -7.68f, 4.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - curveToRelative(3.92f, 0.0f, 6.42f, -2.3f, 8.7f, -4.39f) - lineToRelative(0.05f, -0.05f) - lineToRelative(0.7f, 0.7f) - curveToRelative(0.0f, 0.01f, 0.0f, 0.02f, -0.02f, 0.03f) - lineToRelative(-0.13f, 0.12f) - lineToRelative(-0.3f, 0.28f) - curveToRelative(0.94f, 0.82f, 1.94f, 1.6f, 3.09f, 2.2f) - lineToRelative(5.88f, 5.89f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(18.66f, 15.48f) - lineTo(20.87f, 17.68f) - lineTo(21.78f, 16.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.06f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.22f, 1.22f) - horizontalLineToRelative(-0.19f) - curveToRelative(-0.2f, 0.0f, -0.4f, 0.0f, -0.59f, -0.02f) - close() - moveTo(12.7f, 9.52f) - lineToRelative(1.07f, 1.07f) - curveToRelative(1.58f, -1.22f, 3.26f, -2.09f, 5.48f, -2.09f) - horizontalLineToRelative(0.19f) - lineToRelative(-1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.06f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(19.44f, 7.0f) - horizontalLineToRelative(-0.19f) - curveToRelative(-2.74f, 0.0f, -4.79f, 1.13f, -6.55f, 2.52f) - close() - } - } - return _arrowShuffleOff!! - } - -private var _arrowShuffleOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSort.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSort.kt deleted file mode 100644 index d3e7b91f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSort.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowSort: ImageVector - get() { - if (_arrowSort != null) { - return _arrowSort!! - } - _arrowSort = fluentIcon(name = "Regular.ArrowSort") { - fluentPath { - moveTo(17.25f, 4.0f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - verticalLineToRelative(12.7f) - lineToRelative(-3.22f, -3.23f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 1.14f) - lineToRelative(4.5f, 4.5f) - lineToRelative(0.09f, 0.07f) - curveToRelative(0.3f, 0.22f, 0.7f, 0.2f, 0.97f, -0.07f) - lineToRelative(4.5f, -4.5f) - lineToRelative(0.07f, -0.09f) - curveToRelative(0.22f, -0.3f, 0.2f, -0.7f, -0.07f, -0.98f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) - lineTo(18.0f, 17.45f) - lineTo(18.0f, 4.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) - close() - moveTo(6.21f, 4.22f) - lineTo(1.72f, 8.72f) - lineTo(1.65f, 8.8f) - curveToRelative(-0.22f, 0.3f, -0.2f, 0.7f, 0.07f, 0.98f) - lineToRelative(0.08f, 0.07f) - curveToRelative(0.3f, 0.22f, 0.71f, 0.2f, 0.98f, -0.07f) - lineTo(6.0f, 6.56f) - lineTo(6.0f, 19.36f) - curveToRelative(0.05f, 0.36f, 0.37f, 0.64f, 0.75f, 0.64f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - lineTo(7.5f, 6.55f) - lineToRelative(3.22f, 3.23f) - lineToRelative(0.08f, 0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, -1.14f) - lineToRelative(-4.5f, -4.5f) - lineToRelative(-0.09f, -0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) - close() - } - } - return _arrowSort!! - } - -private var _arrowSort: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSortDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSortDown.kt deleted file mode 100644 index e8326cf1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSortDown.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowSortDown: ImageVector - get() { - if (_arrowSortDown != null) { - return _arrowSortDown!! - } - _arrowSortDown = fluentIcon(name = "Regular.ArrowSortDown") { - fluentPath { - moveTo(11.65f, 4.0f) - horizontalLineToRelative(0.1f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(12.7f) - lineToRelative(3.22f, -3.23f) - curveToRelative(0.27f, -0.26f, 0.68f, -0.29f, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.69f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.09f) - lineToRelative(-4.5f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 0.07f) - lineToRelative(-0.09f, -0.07f) - lineToRelative(-4.5f, -4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.14f) - lineToRelative(0.08f, 0.07f) - lineTo(11.0f, 17.44f) - verticalLineTo(4.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(-0.1f) - close() - } - } - return _arrowSortDown!! - } - -private var _arrowSortDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSortDownLines.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSortDownLines.kt deleted file mode 100644 index 23369af9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSortDownLines.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowSortDownLines: ImageVector - get() { - if (_arrowSortDownLines != null) { - return _arrowSortDownLines!! - } - _arrowSortDownLines = fluentIcon(name = "Regular.ArrowSortDownLines") { - fluentPath { - moveTo(8.75f, 4.0f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - verticalLineToRelative(12.7f) - lineToRelative(-3.22f, -3.23f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 1.14f) - lineToRelative(4.5f, 4.5f) - lineToRelative(0.09f, 0.07f) - curveToRelative(0.3f, 0.22f, 0.7f, 0.2f, 0.97f, -0.07f) - lineToRelative(4.5f, -4.5f) - lineToRelative(0.07f, -0.09f) - curveToRelative(0.22f, -0.3f, 0.2f, -0.7f, -0.07f, -0.98f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) - lineTo(9.5f, 17.45f) - lineTo(9.5f, 4.65f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 8.74f, 4.0f) - close() - moveTo(12.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-8.0f) - close() - moveTo(11.5f, 8.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(12.25f, 10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.0f) - close() - } - } - return _arrowSortDownLines!! - } - -private var _arrowSortDownLines: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSortUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSortUp.kt deleted file mode 100644 index fb95cb2b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSortUp.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowSortUp: ImageVector - get() { - if (_arrowSortUp != null) { - return _arrowSortUp!! - } - _arrowSortUp = fluentIcon(name = "Regular.ArrowSortUp") { - fluentPath { - moveToRelative(6.72f, 8.71f) - lineToRelative(4.5f, -4.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -0.07f) - lineToRelative(0.08f, 0.07f) - lineToRelative(4.5f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 1.13f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-3.22f, -3.22f) - verticalLineToRelative(12.7f) - curveToRelative(0.0f, 0.37f, -0.28f, 0.69f, -0.65f, 0.74f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.64f) - verticalLineTo(6.56f) - lineTo(7.78f, 9.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.09f) - lineToRelative(4.5f, -4.49f) - lineToRelative(-4.5f, 4.5f) - close() - } - } - return _arrowSortUp!! - } - -private var _arrowSortUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSplit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSplit.kt deleted file mode 100644 index d5449f41..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSplit.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowSplit: ImageVector - get() { - if (_arrowSplit != null) { - return _arrowSplit!! - } - _arrowSplit = fluentIcon(name = "Regular.ArrowSplit") { - fluentPath { - moveTo(12.0f, 3.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineTo(9.5f) - horizontalLineToRelative(2.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.0f, 12.25f) - verticalLineToRelative(6.2f) - lineToRelative(1.72f, -1.73f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-3.0f, 3.0f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-3.0f, -3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(1.72f, 1.72f) - verticalLineToRelative(-6.19f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-6.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(6.19f) - lineToRelative(1.72f, -1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) - lineToRelative(-3.0f, 3.0f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-3.0f, -3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineTo(6.0f, 18.44f) - verticalLineToRelative(-6.19f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 8.75f, 9.5f) - horizontalLineToRelative(2.5f) - verticalLineTo(3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _arrowSplit!! - } - -private var _arrowSplit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSquareDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSquareDown.kt deleted file mode 100644 index bedd9e14..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSquareDown.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowSquareDown: ImageVector - get() { - if (_arrowSquareDown != null) { - return _arrowSquareDown!! - } - _arrowSquareDown = fluentIcon(name = "Regular.ArrowSquareDown") { - fluentPath { - moveToRelative(16.53f, 11.72f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) - lineToRelative(-2.72f, 2.72f) - verticalLineTo(7.65f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 12.0f, 7.0f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - verticalLineToRelative(6.7f) - lineToRelative(-2.72f, -2.73f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 1.13f) - lineToRelative(4.0f, 4.0f) - lineToRelative(0.08f, 0.07f) - curveToRelative(0.3f, 0.22f, 0.71f, 0.2f, 0.98f, -0.07f) - lineToRelative(4.0f, -4.0f) - lineToRelative(0.07f, -0.08f) - curveToRelative(0.22f, -0.3f, 0.2f, -0.71f, -0.07f, -0.98f) - close() - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineTo(6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - horizontalLineTo(6.25f) - close() - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineTo(6.25f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineTo(6.25f) - close() - } - } - return _arrowSquareDown!! - } - -private var _arrowSquareDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowStepIn.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowStepIn.kt deleted file mode 100644 index a21f95e7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowStepIn.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowStepIn: ImageVector - get() { - if (_arrowStepIn != null) { - return _arrowStepIn!! - } - _arrowStepIn = fluentIcon(name = "Regular.ArrowStepIn") { - fluentPath { - moveTo(12.0f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(9.26f) - lineToRelative(3.48f, -3.3f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.04f, 1.08f) - lineToRelative(-4.75f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.04f, 0.0f) - lineTo(6.73f, 9.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.04f, -1.08f) - lineToRelative(3.48f, 3.3f) - lineTo(11.25f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(12.0f, 22.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) - close() - moveTo(12.0f, 20.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) - close() - } - } - return _arrowStepIn!! - } - -private var _arrowStepIn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowStepInLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowStepInLeft.kt deleted file mode 100644 index 694a99dc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowStepInLeft.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowStepInLeft: ImageVector - get() { - if (_arrowStepInLeft != null) { - return _arrowStepInLeft!! - } - _arrowStepInLeft = fluentIcon(name = "Regular.ArrowStepInLeft") { - fluentPath { - moveTo(15.3f, 16.23f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.1f, 1.04f) - lineToRelative(-4.5f, -4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.04f) - lineToRelative(4.5f, -4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.1f, 1.04f) - lineTo(12.0f, 11.25f) - horizontalLineToRelative(9.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-9.26f) - lineToRelative(3.3f, 3.48f) - close() - moveTo(2.0f, 12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.0f) - close() - moveTo(3.5f, 12.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) - close() - } - } - return _arrowStepInLeft!! - } - -private var _arrowStepInLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowStepInRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowStepInRight.kt deleted file mode 100644 index e4dd3ff5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowStepInRight.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowStepInRight: ImageVector - get() { - if (_arrowStepInRight != null) { - return _arrowStepInRight!! - } - _arrowStepInRight = fluentIcon(name = "Regular.ArrowStepInRight") { - fluentPath { - moveTo(8.7f, 16.23f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.1f, 1.04f) - lineToRelative(4.5f, -4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.04f) - lineTo(9.8f, 6.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.1f, 1.04f) - lineToRelative(3.3f, 3.48f) - lineTo(2.76f, 11.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(9.26f) - lineToRelative(-3.3f, 3.48f) - close() - moveTo(22.0f, 12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, -6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 6.0f, 0.0f) - close() - moveTo(20.5f, 12.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - } - } - return _arrowStepInRight!! - } - -private var _arrowStepInRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowStepOut.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowStepOut.kt deleted file mode 100644 index 86885e52..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowStepOut.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowStepOut: ImageVector - get() { - if (_arrowStepOut != null) { - return _arrowStepOut!! - } - _arrowStepOut = fluentIcon(name = "Regular.ArrowStepOut") { - fluentPath { - moveTo(12.75f, 13.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(11.25f, 4.49f) - lineTo(7.77f, 7.8f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.04f, -1.08f) - lineToRelative(4.75f, -4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.04f, 0.0f) - lineToRelative(4.75f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.04f, 1.08f) - lineToRelative(-3.48f, -3.3f) - verticalLineToRelative(9.26f) - close() - moveTo(15.0f, 19.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) - close() - moveTo(10.5f, 19.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) - close() - } - } - return _arrowStepOut!! - } - -private var _arrowStepOut: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSwap.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSwap.kt deleted file mode 100644 index 07eef5c9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSwap.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowSwap: ImageVector - get() { - if (_arrowSwap != null) { - return _arrowSwap!! - } - _arrowSwap = fluentIcon(name = "Regular.ArrowSwap") { - fluentPath { - moveToRelative(14.78f, 2.22f) - lineToRelative(4.5f, 4.5f) - curveToRelative(0.26f, 0.26f, 0.29f, 0.68f, 0.07f, 0.97f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-4.5f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.97f) - lineToRelative(0.07f, -0.08f) - lineTo(16.94f, 8.0f) - lineTo(5.24f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.38f, 0.27f, -0.7f, 0.64f, -0.75f) - lineTo(16.94f, 6.5f) - lineToRelative(-3.22f, -3.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - lineToRelative(4.5f, 4.5f) - lineToRelative(-4.5f, -4.5f) - close() - moveTo(19.5f, 16.65f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.64f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(7.06f, 17.5f) - lineToRelative(3.22f, 3.22f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.08f, 0.98f) - lineToRelative(-0.08f, 0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 0.07f) - lineToRelative(-0.09f, -0.07f) - lineToRelative(-4.5f, -4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.97f) - lineToRelative(0.07f, -0.09f) - lineToRelative(4.5f, -4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.14f, 0.98f) - lineToRelative(-0.08f, 0.08f) - lineTo(7.07f, 16.0f) - horizontalLineToRelative(11.69f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - verticalLineToRelative(0.1f) - verticalLineToRelative(-0.1f) - close() - } - } - return _arrowSwap!! - } - -private var _arrowSwap: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSyncCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSyncCheckmark.kt deleted file mode 100644 index 318c2c1b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSyncCheckmark.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowSyncCheckmark: ImageVector - get() { - if (_arrowSyncCheckmark != null) { - return _arrowSyncCheckmark!! - } - _arrowSyncCheckmark = fluentIcon(name = "Regular.ArrowSyncCheckmark") { - fluentPath { - moveTo(16.4f, 6.23f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.9f, -1.2f) - arcToRelative(8.74f, 8.74f, 0.0f, false, true, -4.58f, 15.7f) - lineToRelative(0.75f, 0.74f) - lineToRelative(0.07f, 0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, 0.98f) - lineToRelative(-2.0f, -2.0f) - lineToRelative(-0.07f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.07f, -0.98f) - lineToRelative(0.33f, -0.33f) - arcToRelative(7.29f, 7.29f, 0.0f, false, false, 2.06f, 0.06f) - arcToRelative(7.25f, 7.25f, 0.0f, false, false, 3.6f, -12.97f) - close() - moveTo(10.53f, 2.53f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-0.33f, 0.33f) - arcToRelative(7.3f, 7.3f, 0.0f, false, false, -2.06f, -0.06f) - arcTo(7.25f, 7.25f, 0.0f, false, false, 7.4f, 17.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.96f, 1.15f) - arcToRelative(8.75f, 8.75f, 0.0f, false, true, 4.85f, -15.47f) - lineToRelative(-0.75f, -0.75f) - close() - moveTo(15.03f, 11.03f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineTo(11.0f, 12.94f) - lineToRelative(-0.97f, -0.97f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.5f, 1.5f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(3.5f, -3.5f) - close() - moveTo(12.0f, 18.0f) - arcToRelative(6.0f, 6.0f, 0.0f, true, false, 0.0f, -12.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, 0.0f, 12.0f) - close() - moveTo(12.0f, 16.5f) - arcToRelative(4.5f, 4.5f, 0.0f, true, true, 0.0f, -9.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 0.0f, 9.0f) - close() - } - } - return _arrowSyncCheckmark!! - } - -private var _arrowSyncCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSyncCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSyncCircle.kt deleted file mode 100644 index dcc28f1c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSyncCircle.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowSyncCircle: ImageVector - get() { - if (_arrowSyncCircle != null) { - return _arrowSyncCircle!! - } - _arrowSyncCircle = fluentIcon(name = "Regular.ArrowSyncCircle") { - fluentPath { - moveTo(16.0f, 8.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(14.0f, 12.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.27f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -5.94f, -1.02f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.16f, -0.96f) - arcTo(5.0f, 5.0f, 0.0f, false, true, 16.0f, 9.0f) - verticalLineToRelative(-0.75f) - close() - moveTo(8.0f, 15.0f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - lineTo(10.0f, 12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(8.84f, 13.5f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 5.84f, 0.77f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.14f, 0.97f) - arcTo(5.01f, 5.01f, 0.0f, false, true, 8.0f, 15.0f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) - close() - moveTo(20.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, -17.0f, 0.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, 17.0f, 0.0f) - close() - } - } - return _arrowSyncCircle!! - } - -private var _arrowSyncCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSyncDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSyncDismiss.kt deleted file mode 100644 index 5a7cd7d7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowSyncDismiss.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowSyncDismiss: ImageVector - get() { - if (_arrowSyncDismiss != null) { - return _arrowSyncDismiss!! - } - _arrowSyncDismiss = fluentIcon(name = "Regular.ArrowSyncDismiss") { - fluentPath { - moveTo(16.27f, 6.12f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, -1.08f) - arcToRelative(8.74f, 8.74f, 0.0f, false, true, -4.58f, 15.68f) - lineToRelative(0.75f, 0.75f) - lineToRelative(0.07f, 0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, 0.98f) - lineToRelative(-2.0f, -2.0f) - lineToRelative(-0.07f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.07f, -0.98f) - lineToRelative(0.31f, -0.31f) - arcToRelative(7.27f, 7.27f, 0.0f, false, false, 5.55f, -13.04f) - close() - moveTo(13.27f, 4.84f) - arcTo(7.27f, 7.27f, 0.0f, false, false, 7.5f, 17.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.05f) - arcToRelative(8.75f, 8.75f, 0.0f, false, true, 4.85f, -15.47f) - lineToRelative(-0.75f, -0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-0.31f, 0.31f) - close() - moveTo(9.47f, 9.47f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineTo(12.0f, 10.94f) - lineToRelative(1.47f, -1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineTo(13.06f, 12.0f) - lineToRelative(1.47f, 1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(12.0f, 13.06f) - lineToRelative(-1.47f, 1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineTo(10.94f, 12.0f) - lineToRelative(-1.47f, -1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - moveTo(12.0f, 18.0f) - arcToRelative(6.0f, 6.0f, 0.0f, true, false, 0.0f, -12.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, 0.0f, 12.0f) - close() - moveTo(12.0f, 16.5f) - arcToRelative(4.5f, 4.5f, 0.0f, true, true, 0.0f, -9.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 0.0f, 9.0f) - close() - } - } - return _arrowSyncDismiss!! - } - -private var _arrowSyncDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTrending.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTrending.kt deleted file mode 100644 index 0b7ca559..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTrending.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowTrending: ImageVector - get() { - if (_arrowTrending != null) { - return _arrowTrending!! - } - _arrowTrending = fluentIcon(name = "Regular.ArrowTrending") { - fluentPath { - moveTo(13.75f, 5.5f) - horizontalLineToRelative(7.55f) - lineToRelative(0.1f, 0.01f) - lineToRelative(0.1f, 0.03f) - lineToRelative(0.06f, 0.03f) - curveToRelative(0.08f, 0.03f, 0.16f, 0.08f, 0.22f, 0.15f) - lineToRelative(0.04f, 0.04f) - lineToRelative(0.04f, 0.06f) - lineToRelative(0.06f, 0.09f) - lineToRelative(0.04f, 0.09f) - lineToRelative(0.02f, 0.06f) - lineToRelative(0.01f, 0.07f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(7.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-5.8f) - lineToRelative(-7.72f, 7.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-2.97f, -2.97f) - lineToRelative(-5.47f, 5.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(6.0f, -6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - lineToRelative(2.97f, 2.97f) - lineTo(19.44f, 7.0f) - horizontalLineToRelative(-5.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.73f, -0.65f) - lineToRelative(-0.01f, -0.1f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - close() - } - } - return _arrowTrending!! - } - -private var _arrowTrending: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTrendingCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTrendingCheckmark.kt deleted file mode 100644 index a7120fd0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTrendingCheckmark.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowTrendingCheckmark: ImageVector - get() { - if (_arrowTrendingCheckmark != null) { - return _arrowTrendingCheckmark!! - } - _arrowTrendingCheckmark = fluentIcon(name = "Regular.ArrowTrendingCheckmark") { - fluentPath { - moveTo(20.25f, 3.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(19.5f, 5.56f) - lineToRelative(-5.97f, 5.97f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-2.22f, -2.22f) - lineToRelative(-5.97f, 5.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(6.5f, -6.5f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineTo(13.0f, 9.94f) - lineToRelative(5.44f, -5.44f) - horizontalLineToRelative(-3.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(5.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-3.65f, 3.64f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _arrowTrendingCheckmark!! - } - -private var _arrowTrendingCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTrendingDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTrendingDown.kt deleted file mode 100644 index 55260220..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTrendingDown.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowTrendingDown: ImageVector - get() { - if (_arrowTrendingDown != null) { - return _arrowTrendingDown!! - } - _arrowTrendingDown = fluentIcon(name = "Regular.ArrowTrendingDown") { - fluentPath { - moveTo(13.75f, 18.5f) - horizontalLineToRelative(7.55f) - lineToRelative(0.1f, -0.01f) - lineToRelative(0.1f, -0.03f) - lineToRelative(0.06f, -0.03f) - arcToRelative(0.72f, 0.72f, 0.0f, false, false, 0.22f, -0.15f) - lineToRelative(0.04f, -0.04f) - lineToRelative(0.04f, -0.06f) - lineToRelative(0.06f, -0.09f) - lineToRelative(0.04f, -0.09f) - lineToRelative(0.02f, -0.06f) - lineToRelative(0.01f, -0.07f) - lineToRelative(0.01f, -0.1f) - verticalLineToRelative(-7.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, -0.1f) - verticalLineToRelative(5.8f) - lineToRelative(-7.72f, -7.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, -0.07f) - lineToRelative(-0.08f, 0.07f) - lineToRelative(-2.97f, 2.97f) - lineToRelative(-5.47f, -5.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.13f, 0.98f) - lineToRelative(0.07f, 0.08f) - lineToRelative(6.0f, 6.0f) - curveToRelative(0.27f, 0.27f, 0.68f, 0.3f, 0.98f, 0.07f) - lineToRelative(0.08f, -0.07f) - lineToRelative(2.97f, -2.97f) - lineTo(19.44f, 17.0f) - horizontalLineToRelative(-5.7f) - curveToRelative(-0.37f, 0.0f, -0.68f, 0.28f, -0.73f, 0.65f) - lineToRelative(-0.01f, 0.1f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - close() - } - } - return _arrowTrendingDown!! - } - -private var _arrowTrendingDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTrendingLines.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTrendingLines.kt deleted file mode 100644 index 655cd195..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTrendingLines.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowTrendingLines: ImageVector - get() { - if (_arrowTrendingLines != null) { - return _arrowTrendingLines!! - } - _arrowTrendingLines = fluentIcon(name = "Regular.ArrowTrendingLines") { - fluentPath { - moveTo(16.75f, 2.0f) - horizontalLineToRelative(4.55f) - lineToRelative(0.1f, 0.01f) - lineToRelative(0.1f, 0.03f) - lineToRelative(0.06f, 0.03f) - curveToRelative(0.08f, 0.03f, 0.16f, 0.08f, 0.22f, 0.15f) - lineToRelative(0.04f, 0.04f) - lineToRelative(0.04f, 0.06f) - lineToRelative(0.06f, 0.09f) - lineToRelative(0.04f, 0.09f) - lineToRelative(0.02f, 0.06f) - lineToRelative(0.01f, 0.07f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(4.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(20.5f, 4.56f) - lineTo(14.06f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineTo(13.0f, 11.0f) - lineTo(9.97f, 8.09f) - lineToRelative(-5.69f, 5.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineTo(9.44f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - lineToRelative(3.03f, 2.9f) - lineToRelative(5.9f, -5.9f) - horizontalLineToRelative(-2.68f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - close() - moveTo(3.75f, 17.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(9.5f, 13.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-7.5f) - close() - moveTo(13.75f, 15.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-5.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(19.5f, 10.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-10.5f) - close() - } - } - return _arrowTrendingLines!! - } - -private var _arrowTrendingLines: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTrendingSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTrendingSettings.kt deleted file mode 100644 index a65b689d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTrendingSettings.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowTrendingSettings: ImageVector - get() { - if (_arrowTrendingSettings != null) { - return _arrowTrendingSettings!! - } - _arrowTrendingSettings = fluentIcon(name = "Regular.ArrowTrendingSettings") { - fluentPath { - moveTo(20.25f, 3.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(19.5f, 5.56f) - lineToRelative(-5.97f, 5.97f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-2.22f, -2.22f) - lineToRelative(-5.97f, 5.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(6.5f, -6.5f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineTo(13.0f, 9.94f) - lineToRelative(5.44f, -5.44f) - horizontalLineToRelative(-3.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(5.0f) - close() - moveTo(14.28f, 13.98f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.59f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) - lineToRelative(0.55f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) - lineToRelative(-0.19f, 0.63f) - curveToRelative(0.44f, 0.39f, 0.94f, 0.7f, 1.49f, 0.93f) - lineToRelative(0.49f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) - lineToRelative(-0.2f, -0.69f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) - lineToRelative(0.59f, -0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, -1.8f) - lineToRelative(-0.55f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.19f, -0.63f) - curveToRelative(-0.44f, -0.4f, -0.94f, -0.7f, -1.49f, -0.93f) - lineToRelative(-0.49f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) - lineToRelative(0.2f, 0.7f) - close() - moveTo(17.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) - close() - } - } - return _arrowTrendingSettings!! - } - -private var _arrowTrendingSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTrendingSparkle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTrendingSparkle.kt deleted file mode 100644 index 078648fe..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTrendingSparkle.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowTrendingSparkle: ImageVector - get() { - if (_arrowTrendingSparkle != null) { - return _arrowTrendingSparkle!! - } - _arrowTrendingSparkle = fluentIcon(name = "Regular.ArrowTrendingSparkle") { - fluentPath { - moveTo(4.85f, 8.15f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, 0.69f, 1.11f) - lineToRelative(0.45f, 1.38f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 1.02f, 0.0f) - lineToRelative(0.45f, -1.38f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, 1.8f, -1.8f) - lineToRelative(1.38f, -0.44f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, -1.03f) - horizontalLineToRelative(-0.03f) - lineToRelative(-1.38f, -0.45f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.8f, -1.8f) - lineTo(7.0f, 2.36f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, -1.03f, 0.0f) - lineTo(5.5f, 3.74f) - lineToRelative(-0.01f, 0.03f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.76f, 1.77f) - lineToRelative(-1.38f, 0.44f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, 1.03f) - lineToRelative(1.38f, 0.45f) - curveToRelative(0.42f, 0.14f, 0.8f, 0.37f, 1.11f, 0.69f) - close() - moveTo(20.25f, 7.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(19.5f, 9.56f) - lineToRelative(-5.97f, 5.97f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-2.22f, -2.22f) - lineToRelative(-5.97f, 5.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(6.5f, -6.5f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineTo(13.0f, 13.94f) - lineToRelative(5.44f, -5.44f) - horizontalLineToRelative(-3.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(5.0f) - close() - moveTo(20.02f, 17.96f) - lineTo(20.78f, 18.21f) - horizontalLineToRelative(0.02f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, 0.47f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, 0.1f) - lineToRelative(-0.77f, 0.26f) - arcToRelative(1.58f, 1.58f, 0.0f, false, false, -1.0f, 1.0f) - lineToRelative(-0.24f, 0.76f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.58f, 0.0f) - lineToRelative(-0.24f, -0.77f) - arcToRelative(1.57f, 1.57f, 0.0f, false, false, -1.0f, -1.0f) - lineToRelative(-0.77f, -0.25f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, -0.46f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, -0.1f) - lineToRelative(0.77f, -0.26f) - arcToRelative(1.58f, 1.58f, 0.0f, false, false, 0.98f, -1.0f) - lineToRelative(0.25f, -0.76f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.57f, 0.0f) - lineToRelative(0.25f, 0.77f) - arcToRelative(1.58f, 1.58f, 0.0f, false, false, 1.0f, 1.0f) - close() - } - } - return _arrowTrendingSparkle!! - } - -private var _arrowTrendingSparkle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTrendingText.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTrendingText.kt deleted file mode 100644 index c1cd7024..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTrendingText.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowTrendingText: ImageVector - get() { - if (_arrowTrendingText != null) { - return _arrowTrendingText!! - } - _arrowTrendingText = fluentIcon(name = "Regular.ArrowTrendingText") { - fluentPath { - moveTo(20.25f, 3.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(19.5f, 5.56f) - lineToRelative(-5.97f, 5.97f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-2.22f, -2.22f) - lineToRelative(-5.97f, 5.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(6.5f, -6.5f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineTo(13.0f, 9.94f) - lineToRelative(5.44f, -5.44f) - horizontalLineToRelative(-3.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(5.0f) - close() - moveTo(14.0f, 13.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - verticalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - horizontalLineToRelative(-7.0f) - close() - moveTo(14.0f, 16.5f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - moveTo(14.0f, 19.5f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - } - } - return _arrowTrendingText!! - } - -private var _arrowTrendingText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTrendingWrench.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTrendingWrench.kt deleted file mode 100644 index 7b20d6a5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTrendingWrench.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowTrendingWrench: ImageVector - get() { - if (_arrowTrendingWrench != null) { - return _arrowTrendingWrench!! - } - _arrowTrendingWrench = fluentIcon(name = "Regular.ArrowTrendingWrench") { - fluentPath { - moveTo(21.0f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.19f) - lineTo(13.0f, 9.94f) - lineToRelative(-2.22f, -2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-6.5f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(5.97f, -5.97f) - lineToRelative(2.22f, 2.22f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(5.97f, -5.97f) - verticalLineToRelative(3.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-5.0f) - close() - moveTo(20.48f, 11.83f) - curveToRelative(0.25f, -0.25f, 0.17f, -0.67f, -0.18f, -0.75f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.54f, 5.47f) - lineToRelative(-3.74f, 3.75f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 2.12f, 2.12f) - lineToRelative(3.74f, -3.74f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 5.47f, -4.54f) - curveToRelative(-0.08f, -0.35f, -0.5f, -0.44f, -0.75f, -0.19f) - lineToRelative(-1.74f, 1.75f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.12f, -2.12f) - lineToRelative(1.74f, -1.75f) - close() - } - } - return _arrowTrendingWrench!! - } - -private var _arrowTrendingWrench: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTurnBidirectionalDownRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTurnBidirectionalDownRight.kt deleted file mode 100644 index 57ae0c5e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTurnBidirectionalDownRight.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowTurnBidirectionalDownRight: ImageVector - get() { - if (_arrowTurnBidirectionalDownRight != null) { - return _arrowTurnBidirectionalDownRight!! - } - _arrowTurnBidirectionalDownRight = fluentIcon(name = - "Regular.ArrowTurnBidirectionalDownRight") { - fluentPath { - moveTo(17.28f, 3.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(3.22f, 3.22f) - horizontalLineToRelative(-7.69f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, -4.25f, 4.25f) - verticalLineToRelative(7.69f) - lineToRelative(-3.22f, -3.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(4.5f, 4.5f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(4.5f, -4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineTo(9.0f, 19.44f) - verticalLineToRelative(-7.69f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 11.75f, 9.0f) - horizontalLineToRelative(7.69f) - lineToRelative(-3.22f, 3.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineToRelative(4.5f, -4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.06f) - lineToRelative(-4.5f, -4.5f) - close() - } - } - return _arrowTurnBidirectionalDownRight!! - } - -private var _arrowTurnBidirectionalDownRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTurnRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTurnRight.kt deleted file mode 100644 index 962f9870..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowTurnRight.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowTurnRight: ImageVector - get() { - if (_arrowTurnRight != null) { - return _arrowTurnRight!! - } - _arrowTurnRight = fluentIcon(name = "Regular.ArrowTurnRight") { - fluentPath { - moveTo(16.28f, 3.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(3.22f, 3.22f) - horizontalLineToRelative(-7.69f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, -4.25f, 4.25f) - verticalLineTo(20.0f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 8.0f, 20.0f) - verticalLineToRelative(-8.25f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 10.75f, 9.0f) - horizontalLineToRelative(7.69f) - lineToRelative(-3.22f, 3.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineToRelative(4.5f, -4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.06f) - lineToRelative(-4.5f, -4.5f) - close() - } - } - return _arrowTurnRight!! - } - -private var _arrowTurnRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowUndo.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowUndo.kt deleted file mode 100644 index 0430bc14..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowUndo.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowUndo: ImageVector - get() { - if (_arrowUndo != null) { - return _arrowUndo!! - } - _arrowUndo = fluentIcon(name = "Regular.ArrowUndo") { - fluentPath { - moveTo(4.75f, 2.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(5.69f) - lineToRelative(4.57f, -4.56f) - arcToRelative(6.41f, 6.41f, 0.0f, false, true, 8.88f, -0.18f) - lineToRelative(0.19f, 0.18f) - arcToRelative(6.4f, 6.4f, 0.0f, false, true, 0.0f, 9.06f) - lineToRelative(-8.85f, 8.84f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(8.85f, -8.84f) - arcToRelative(4.9f, 4.9f, 0.0f, false, false, -6.77f, -7.1f) - lineToRelative(-0.18f, 0.16f) - lineTo(6.56f, 9.5f) - horizontalLineToRelative(5.69f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-7.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _arrowUndo!! - } - -private var _arrowUndo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowUpload.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowUpload.kt deleted file mode 100644 index acf5ed09..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowUpload.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowUpload: ImageVector - get() { - if (_arrowUpload != null) { - return _arrowUpload!! - } - _arrowUpload = fluentIcon(name = "Regular.ArrowUpload") { - fluentPath { - moveTo(18.25f, 3.51f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineToRelative(-13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(13.0f) - close() - moveTo(11.65f, 22.0f) - horizontalLineToRelative(0.1f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.64f) - lineToRelative(0.01f, -0.1f) - verticalLineTo(7.56f) - lineToRelative(3.72f, 3.72f) - curveToRelative(0.27f, 0.27f, 0.68f, 0.29f, 0.98f, 0.07f) - lineToRelative(0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.07f, -0.98f) - lineToRelative(-0.07f, -0.08f) - lineToRelative(-5.0f, -5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, -0.07f) - lineToRelative(-0.09f, 0.07f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) - lineToRelative(0.08f, -0.07f) - lineTo(11.0f, 7.58f) - verticalLineToRelative(13.67f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.75f) - close() - } - } - return _arrowUpload!! - } - -private var _arrowUpload: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowsBidirectional.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowsBidirectional.kt deleted file mode 100644 index 28592e64..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ArrowsBidirectional.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ArrowsBidirectional: ImageVector - get() { - if (_arrowsBidirectional != null) { - return _arrowsBidirectional!! - } - _arrowsBidirectional = fluentIcon(name = "Regular.ArrowsBidirectional") { - fluentPath { - moveTo(15.0f, 9.0f) - horizontalLineTo(9.0f) - verticalLineTo(6.75f) - curveToRelative(0.0f, -0.66f, -0.78f, -1.0f, -1.26f, -0.54f) - lineToRelative(-5.5f, 5.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.08f) - lineToRelative(5.5f, 5.25f) - lineToRelative(0.08f, 0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.19f, -0.61f) - verticalLineTo(15.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.66f, 0.78f, 1.0f, 1.26f, 0.54f) - lineToRelative(5.5f, -5.25f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.79f, 0.0f, -1.08f) - lineToRelative(-5.5f, -5.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.27f, 0.54f) - verticalLineTo(9.0f) - close() - moveTo(3.84f, 12.0f) - lineTo(7.5f, 8.5f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.76f, 0.75f) - horizontalLineToRelative(7.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.64f, -0.75f) - verticalLineTo(8.5f) - lineToRelative(3.66f, 3.5f) - lineToRelative(-3.66f, 3.5f) - verticalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-7.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.64f, 0.75f) - verticalLineToRelative(1.25f) - lineTo(3.83f, 12.0f) - close() - } - } - return _arrowsBidirectional!! - } - -private var _arrowsBidirectional: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AttachArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AttachArrowRight.kt deleted file mode 100644 index 6eddd54e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AttachArrowRight.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AttachArrowRight: ImageVector - get() { - if (_attachArrowRight != null) { - return _attachArrowRight!! - } - _attachArrowRight = fluentIcon(name = "Regular.AttachArrowRight") { - fluentPath { - moveTo(11.77f, 3.74f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 8.87f, 8.07f) - arcToRelative(6.46f, 6.46f, 0.0f, false, false, -1.49f, -0.6f) - lineToRelative(0.05f, -0.04f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 13.0f, 4.64f) - lineToRelative(-0.17f, 0.16f) - lineToRelative(-0.01f, 0.02f) - lineToRelative(-9.54f, 9.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.97f) - lineToRelative(0.07f, -0.09f) - lineToRelative(9.55f, -9.55f) - close() - moveTo(11.21f, 19.15f) - curveToRelative(0.14f, 0.54f, 0.35f, 1.04f, 0.61f, 1.51f) - lineToRelative(-0.38f, 0.38f) - lineToRelative(-0.03f, 0.03f) - arcToRelative(3.72f, 3.72f, 0.0f, false, true, -5.4f, -5.1f) - lineToRelative(0.05f, -0.06f) - lineToRelative(0.08f, -0.09f) - lineToRelative(0.14f, -0.15f) - lineToRelative(7.44f, -7.45f) - curveToRelative(0.27f, -0.27f, 0.69f, -0.29f, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.08f, 0.98f) - lineToRelative(-0.08f, 0.08f) - lineToRelative(-7.59f, 7.61f) - arcToRelative(2.23f, 2.23f, 0.0f, false, false, 3.17f, 3.1f) - lineToRelative(0.85f, -0.84f) - close() - moveTo(23.01f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.51f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.78f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.7f, 0.7f) - lineTo(19.29f, 17.0f) - lineTo(14.5f, 17.0f) - close() - } - } - return _attachArrowRight!! - } - -private var _attachArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AttachText.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AttachText.kt deleted file mode 100644 index 94e3c9ca..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AttachText.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AttachText: ImageVector - get() { - if (_attachText != null) { - return _attachText!! - } - _attachText = fluentIcon(name = "Regular.AttachText") { - fluentPath { - moveTo(7.25f, 3.5f) - curveToRelative(2.28f, 0.0f, 4.14f, 1.8f, 4.25f, 4.04f) - lineTo(11.5f, 18.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.16f) - lineTo(6.5f, 9.0f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 8.9f) - verticalLineToRelative(9.6f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.12f) - lineTo(10.0f, 7.75f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -5.5f, -0.17f) - lineTo(4.5f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(3.0f, 7.75f) - curveTo(3.0f, 5.4f, 4.9f, 3.5f, 7.25f, 3.5f) - close() - moveTo(16.25f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(2.6f) - close() - moveTo(20.25f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-6.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(6.6f) - close() - moveTo(20.25f, 10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-6.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(6.6f) - close() - moveTo(20.25f, 7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-6.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(6.6f) - close() - } - } - return _attachText!! - } - -private var _attachText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AutoFitHeight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AutoFitHeight.kt deleted file mode 100644 index d7a58df9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AutoFitHeight.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AutoFitHeight: ImageVector - get() { - if (_autoFitHeight != null) { - return _autoFitHeight!! - } - _autoFitHeight = fluentIcon(name = "Regular.AutoFitHeight") { - fluentPath { - moveTo(5.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(5.75f, 3.0f) - close() - moveTo(9.22f, 14.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - lineToRelative(1.22f, 1.22f) - lineTo(11.5f, 8.56f) - lineToRelative(-1.22f, 1.22f) - lineToRelative(-0.08f, 0.07f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 9.15f, 8.8f) - lineToRelative(0.07f, -0.08f) - lineToRelative(2.37f, -2.37f) - curveToRelative(0.12f, -0.2f, 0.37f, -0.35f, 0.66f, -0.35f) - curveToRelative(0.25f, 0.0f, 0.48f, 0.1f, 0.61f, 0.28f) - lineToRelative(0.05f, 0.07f) - lineToRelative(2.37f, 2.37f) - lineToRelative(0.07f, 0.08f) - curveToRelative(0.2f, 0.27f, 0.2f, 0.62f, 0.01f, 0.89f) - lineToRelative(-0.08f, 0.1f) - lineToRelative(-0.08f, 0.06f) - curveToRelative(-0.26f, 0.2f, -0.62f, 0.2f, -0.88f, 0.01f) - lineToRelative(-0.1f, -0.08f) - lineTo(13.0f, 8.56f) - lineTo(13.0f, 15.44f) - lineToRelative(1.22f, -1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.08f, 0.98f) - lineToRelative(-0.08f, 0.08f) - lineToRelative(-2.36f, 2.37f) - arcToRelative(0.77f, 0.77f, 0.0f, false, true, -0.67f, 0.35f) - arcToRelative(0.77f, 0.77f, 0.0f, false, true, -0.66f, -0.35f) - lineToRelative(-2.37f, -2.37f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - moveTo(5.0f, 20.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(5.75f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _autoFitHeight!! - } - -private var _autoFitHeight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AutoFitWidth.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AutoFitWidth.kt deleted file mode 100644 index 4d676061..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/AutoFitWidth.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.AutoFitWidth: ImageVector - get() { - if (_autoFitWidth != null) { - return _autoFitWidth!! - } - _autoFitWidth = fluentIcon(name = "Regular.AutoFitWidth") { - fluentPath { - moveTo(3.0f, 18.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(4.5f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(12.5f) - close() - moveTo(19.5f, 18.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(21.0f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(12.5f) - close() - moveTo(14.15f, 14.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, 0.98f) - lineToRelative(2.37f, -2.37f) - curveToRelative(0.2f, -0.12f, 0.35f, -0.37f, 0.35f, -0.66f) - arcToRelative(0.77f, 0.77f, 0.0f, false, false, -0.35f, -0.66f) - lineToRelative(-2.37f, -2.37f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) - lineToRelative(-0.07f, 0.08f) - curveToRelative(-0.22f, 0.3f, -0.2f, 0.71f, 0.07f, 0.98f) - lineToRelative(1.22f, 1.22f) - lineTo(8.56f, 11.25f) - lineToRelative(1.22f, -1.22f) - lineToRelative(0.08f, -0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -0.88f) - lineToRelative(-0.08f, -0.08f) - lineToRelative(-0.1f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.88f, 0.0f) - lineToRelative(-0.08f, 0.08f) - lineToRelative(-2.37f, 2.37f) - lineToRelative(-0.07f, 0.05f) - arcTo(0.79f, 0.79f, 0.0f, false, false, 6.0f, 12.0f) - curveToRelative(0.0f, 0.29f, 0.14f, 0.54f, 0.35f, 0.66f) - lineToRelative(2.37f, 2.37f) - lineToRelative(0.08f, 0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.05f, -1.04f) - lineToRelative(-0.07f, -0.09f) - lineToRelative(-1.22f, -1.22f) - lineTo(15.44f, 12.75f) - lineToRelative(-1.22f, 1.22f) - lineToRelative(-0.07f, 0.08f) - close() - } - } - return _autoFitWidth!! - } - -private var _autoFitWidth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Autocorrect.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Autocorrect.kt deleted file mode 100644 index b1c0dcc1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Autocorrect.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Autocorrect: ImageVector - get() { - if (_autocorrect != null) { - return _autocorrect!! - } - _autocorrect = fluentIcon(name = "Regular.Autocorrect") { - fluentPath { - moveTo(13.46f, 4.93f) - curveToRelative(0.3f, 0.19f, 0.55f, 0.42f, 0.75f, 0.7f) - lineToRelative(0.12f, 0.17f) - lineToRelative(2.94f, 4.7f) - horizontalLineToRelative(4.23f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-3.28f) - arcToRelative(4.75f, 4.75f, 0.0f, true, true, -3.46f, -1.5f) - horizontalLineToRelative(0.75f) - lineToRelative(-2.45f, -3.9f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.04f, -0.11f) - lineToRelative(-0.08f, 0.11f) - lineTo(3.4f, 18.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.33f, -0.7f) - lineToRelative(0.05f, -0.1f) - lineTo(9.67f, 5.8f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 3.8f, -0.87f) - close() - moveTo(14.75f, 12.0f) - arcToRelative(3.25f, 3.25f, 0.0f, true, false, 0.0f, 6.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 0.0f, -6.5f) - close() - } - } - return _autocorrect!! - } - -private var _autocorrect: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Autosum.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Autosum.kt deleted file mode 100644 index c0e7493e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Autosum.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Autosum: ImageVector - get() { - if (_autosum != null) { - return _autosum!! - } - _autosum = fluentIcon(name = "Regular.Autosum") { - fluentPath { - moveTo(5.06f, 4.46f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 5.75f, 4.0f) - horizontalLineToRelative(12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineTo(7.52f) - lineToRelative(5.36f, 5.54f) - curveToRelative(0.27f, 0.28f, 0.28f, 0.71f, 0.03f, 1.0f) - lineTo(7.38f, 18.5f) - horizontalLineToRelative(10.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineTo(5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.57f, -1.24f) - lineToRelative(6.15f, -7.17f) - lineTo(5.2f, 5.27f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.15f, -0.81f) - close() - } - } - return _autosum!! - } - -private var _autosum: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Backpack.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Backpack.kt deleted file mode 100644 index 83d8b905..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Backpack.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Backpack: ImageVector - get() { - if (_backpack != null) { - return _backpack!! - } - _backpack = fluentIcon(name = "Regular.Backpack") { - fluentPath { - moveTo(10.42f, 8.0f) - arcTo(2.42f, 2.42f, 0.0f, false, false, 8.0f, 10.42f) - curveToRelative(0.0f, 0.87f, 0.7f, 1.58f, 1.58f, 1.58f) - horizontalLineToRelative(4.84f) - curveToRelative(0.87f, 0.0f, 1.58f, -0.7f, 1.58f, -1.58f) - arcTo(2.42f, 2.42f, 0.0f, false, false, 13.58f, 8.0f) - horizontalLineToRelative(-3.16f) - close() - moveTo(9.5f, 10.42f) - curveToRelative(0.0f, -0.51f, 0.41f, -0.92f, 0.92f, -0.92f) - horizontalLineToRelative(3.16f) - curveToRelative(0.51f, 0.0f, 0.92f, 0.41f, 0.92f, 0.92f) - curveToRelative(0.0f, 0.04f, -0.04f, 0.08f, -0.08f, 0.08f) - lineTo(9.58f, 10.5f) - arcToRelative(0.08f, 0.08f, 0.0f, false, true, -0.08f, -0.08f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.74f, 3.42f) - arcTo(8.0f, 8.0f, 0.0f, false, false, 4.0f, 12.5f) - verticalLineToRelative(6.25f) - curveTo(4.0f, 20.55f, 5.46f, 22.0f, 7.25f, 22.0f) - horizontalLineToRelative(9.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(20.0f, 12.5f) - arcToRelative(8.0f, 8.0f, 0.0f, false, false, -4.26f, -7.08f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 12.0f, 2.0f) - close() - moveTo(18.5f, 14.0f) - horizontalLineToRelative(-13.0f) - verticalLineToRelative(-1.5f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, 13.0f, 0.0f) - lineTo(18.5f, 14.0f) - close() - moveTo(8.0f, 17.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.54f) - horizontalLineToRelative(9.0f) - verticalLineToRelative(3.04f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-9.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-3.04f) - lineTo(8.0f, 15.71f) - verticalLineToRelative(1.54f) - close() - moveTo(12.0f, 4.5f) - curveToRelative(-0.7f, 0.0f, -1.37f, 0.09f, -2.02f, 0.26f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.04f, 0.0f) - arcTo(8.01f, 8.01f, 0.0f, false, false, 12.0f, 4.5f) - close() - } - } - return _backpack!! - } - -private var _backpack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BackpackAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BackpackAdd.kt deleted file mode 100644 index 60590944..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BackpackAdd.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BackpackAdd: ImageVector - get() { - if (_backpackAdd != null) { - return _backpackAdd!! - } - _backpackAdd = fluentIcon(name = "Regular.BackpackAdd") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.74f, 3.42f) - arcTo(8.0f, 8.0f, 0.0f, false, false, 4.0f, 12.5f) - verticalLineToRelative(6.25f) - curveTo(4.0f, 20.55f, 5.46f, 22.0f, 7.25f, 22.0f) - horizontalLineToRelative(5.56f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, -1.5f) - lineTo(7.25f, 20.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-3.04f) - lineTo(8.0f, 15.71f) - verticalLineToRelative(1.54f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.54f) - horizontalLineToRelative(1.75f) - curveToRelative(0.17f, -0.6f, 0.44f, -1.19f, 0.77f, -1.71f) - lineTo(5.5f, 14.0f) - verticalLineToRelative(-1.5f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, 12.84f, -1.45f) - curveToRelative(0.56f, 0.08f, 1.1f, 0.22f, 1.6f, 0.42f) - arcToRelative(8.0f, 8.0f, 0.0f, false, false, -4.2f, -6.05f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 12.0f, 2.0f) - close() - moveTo(12.0f, 4.5f) - curveToRelative(-0.7f, 0.0f, -1.37f, 0.09f, -2.02f, 0.26f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.04f, 0.0f) - arcTo(8.01f, 8.01f, 0.0f, false, false, 12.0f, 4.5f) - close() - moveTo(14.03f, 12.0f) - curveToRelative(0.54f, -0.34f, 1.12f, -0.6f, 1.74f, -0.77f) - curveToRelative(0.15f, -0.24f, 0.23f, -0.52f, 0.23f, -0.81f) - arcTo(2.42f, 2.42f, 0.0f, false, false, 13.58f, 8.0f) - horizontalLineToRelative(-3.16f) - arcTo(2.42f, 2.42f, 0.0f, false, false, 8.0f, 10.42f) - curveToRelative(0.0f, 0.87f, 0.7f, 1.58f, 1.58f, 1.58f) - horizontalLineToRelative(4.45f) - close() - moveTo(9.5f, 10.42f) - curveToRelative(0.0f, -0.51f, 0.41f, -0.92f, 0.92f, -0.92f) - horizontalLineToRelative(3.16f) - curveToRelative(0.51f, 0.0f, 0.92f, 0.41f, 0.92f, 0.92f) - curveToRelative(0.0f, 0.04f, -0.04f, 0.08f, -0.08f, 0.08f) - lineTo(9.58f, 10.5f) - arcToRelative(0.08f, 0.08f, 0.0f, false, true, -0.08f, -0.08f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _backpackAdd!! - } - -private var _backpackAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Badge.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Badge.kt deleted file mode 100644 index fec95f4b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Badge.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Badge: ImageVector - get() { - if (_badge != null) { - return _badge!! - } - _badge = fluentIcon(name = "Regular.Badge") { - fluentPath { - moveTo(16.34f, 3.0f) - curveToRelative(-0.22f, 0.45f, -0.34f, 0.96f, -0.34f, 1.5f) - lineTo(5.75f, 4.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.7f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(12.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - lineTo(19.5f, 8.0f) - curveToRelative(0.54f, 0.0f, 1.05f, -0.12f, 1.5f, -0.34f) - verticalLineToRelative(10.59f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) - lineTo(5.75f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(10.59f) - close() - moveTo(19.5f, 2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - } - } - return _badge!! - } - -private var _badge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Balloon.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Balloon.kt deleted file mode 100644 index d6886ba3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Balloon.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Balloon: ImageVector - get() { - if (_balloon != null) { - return _balloon!! - } - _balloon = fluentIcon(name = "Regular.Balloon") { - fluentPath { - moveTo(12.02f, 5.66f) - curveToRelative(0.1f, -0.4f, 0.5f, -0.65f, 0.9f, -0.55f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 2.97f, 2.96f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.46f, 0.35f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -1.85f, -1.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.56f, -0.9f) - close() - moveTo(5.0f, 9.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, 14.0f, 0.0f) - curveToRelative(0.0f, 2.03f, -0.67f, 4.24f, -1.85f, 5.96f) - arcToRelative(6.58f, 6.58f, 0.0f, false, true, -4.4f, 2.99f) - verticalLineToRelative(0.3f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.25f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(13.5f, 20.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-0.3f) - arcToRelative(6.58f, 6.58f, 0.0f, false, true, -4.4f, -3.0f) - arcTo(10.88f, 10.88f, 0.0f, false, true, 5.0f, 9.0f) - close() - moveTo(12.0f, 3.5f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 6.5f, 9.0f) - curveToRelative(0.0f, 1.73f, 0.58f, 3.64f, 1.59f, 5.1f) - curveToRelative(1.0f, 1.47f, 2.36f, 2.4f, 3.91f, 2.4f) - curveToRelative(1.55f, 0.0f, 2.9f, -0.93f, 3.91f, -2.4f) - arcTo(9.38f, 9.38f, 0.0f, false, false, 17.5f, 9.0f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 12.0f, 3.5f) - close() - } - } - return _balloon!! - } - -private var _balloon: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BarcodeScanner.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BarcodeScanner.kt deleted file mode 100644 index 5427d8bd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BarcodeScanner.kt +++ /dev/null @@ -1,91 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BarcodeScanner: ImageVector - get() { - if (_barcodeScanner != null) { - return _barcodeScanner!! - } - _barcodeScanner = fluentIcon(name = "Regular.BarcodeScanner") { - fluentPath { - moveTo(2.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 3.0f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.5f) - close() - moveTo(17.0f, 3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 5.75f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(2.75f, 16.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 18.25f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(21.25f, 16.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 21.0f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(5.75f, 7.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(10.5f, 7.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-8.5f) - close() - moveTo(13.75f, 7.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(18.5f, 7.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-8.5f) - close() - } - } - return _barcodeScanner!! - } - -private var _barcodeScanner: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery0.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery0.kt deleted file mode 100644 index acdebaa1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery0.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Battery0: ImageVector - get() { - if (_battery0 != null) { - return _battery0!! - } - _battery0 = fluentIcon(name = "Regular.Battery0") { - fluentPath { - moveTo(17.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - lineTo(5.0f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(2.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(17.0f, 7.5f) - lineTo(5.0f, 7.5f) - curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.36f) - lineTo(3.5f, 15.0f) - curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.36f, 1.5f) - lineTo(17.0f, 16.5f) - curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) - lineTo(18.5f, 9.0f) - curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) - lineTo(17.0f, 7.5f) - close() - } - } - return _battery0!! - } - -private var _battery0: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery1.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery1.kt deleted file mode 100644 index 4337d187..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery1.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Battery1: ImageVector - get() { - if (_battery1 != null) { - return _battery1!! - } - _battery1 = fluentIcon(name = "Regular.Battery1") { - fluentPath { - moveTo(17.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - lineTo(5.0f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(2.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(17.0f, 7.5f) - lineTo(5.0f, 7.5f) - curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.36f) - lineTo(3.5f, 15.0f) - curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.36f, 1.5f) - lineTo(17.0f, 16.5f) - curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) - lineTo(18.5f, 9.0f) - curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) - lineTo(17.0f, 7.5f) - close() - moveTo(6.0f, 9.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(8.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - lineTo(6.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.99f, -0.88f) - lineTo(5.01f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) - lineTo(7.0f, 9.0f) - lineTo(6.0f, 9.0f) - close() - } - } - return _battery1!! - } - -private var _battery1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery10.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery10.kt deleted file mode 100644 index 27e2e1b6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery10.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Battery10: ImageVector - get() { - if (_battery10 != null) { - return _battery10!! - } - _battery10 = fluentIcon(name = "Regular.Battery10") { - fluentPath { - moveTo(17.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - lineTo(5.0f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(2.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(17.0f, 7.5f) - lineTo(5.0f, 7.5f) - curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.36f) - lineTo(3.5f, 15.0f) - curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.36f, 1.5f) - lineTo(17.0f, 16.5f) - curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) - lineTo(18.5f, 9.0f) - curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) - lineTo(17.0f, 7.5f) - close() - moveTo(6.0f, 9.0f) - horizontalLineToRelative(10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(17.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - lineTo(6.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - lineTo(5.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) - lineTo(16.0f, 9.0f) - lineTo(6.0f, 9.0f) - close() - } - } - return _battery10!! - } - -private var _battery10: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery2.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery2.kt deleted file mode 100644 index 8e8e640d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery2.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Battery2: ImageVector - get() { - if (_battery2 != null) { - return _battery2!! - } - _battery2 = fluentIcon(name = "Regular.Battery2") { - fluentPath { - moveTo(17.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - lineTo(5.0f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(2.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(17.0f, 7.5f) - lineTo(5.0f, 7.5f) - curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.36f) - lineTo(3.5f, 15.0f) - curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.36f, 1.5f) - lineTo(17.0f, 16.5f) - curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) - lineTo(18.5f, 9.0f) - curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) - lineTo(17.0f, 7.5f) - close() - moveTo(6.0f, 9.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(9.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - lineTo(6.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - lineTo(5.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -0.99f) - lineTo(6.0f, 9.01f) - lineTo(8.0f, 9.0f) - lineTo(6.0f, 9.0f) - close() - } - } - return _battery2!! - } - -private var _battery2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery3.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery3.kt deleted file mode 100644 index 43d60b09..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery3.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Battery3: ImageVector - get() { - if (_battery3 != null) { - return _battery3!! - } - _battery3 = fluentIcon(name = "Regular.Battery3") { - fluentPath { - moveTo(17.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - lineTo(5.0f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(2.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(17.0f, 7.5f) - lineTo(5.0f, 7.5f) - curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.36f) - lineTo(3.5f, 15.0f) - curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.36f, 1.5f) - lineTo(17.0f, 16.5f) - curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) - lineTo(18.5f, 9.0f) - curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) - lineTo(17.0f, 7.5f) - close() - moveTo(6.02f, 9.0f) - lineTo(9.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(10.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - horizontalLineToRelative(-3.1f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - lineTo(5.02f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) - lineTo(9.0f, 9.0f) - lineTo(6.02f, 9.0f) - close() - } - } - return _battery3!! - } - -private var _battery3: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery4.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery4.kt deleted file mode 100644 index 00876e7e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery4.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Battery4: ImageVector - get() { - if (_battery4 != null) { - return _battery4!! - } - _battery4 = fluentIcon(name = "Regular.Battery4") { - fluentPath { - moveTo(17.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - lineTo(5.0f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(2.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(17.0f, 7.5f) - lineTo(5.0f, 7.5f) - curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.36f) - lineTo(3.5f, 15.0f) - curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.36f, 1.5f) - lineTo(17.0f, 16.5f) - curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) - lineTo(18.5f, 9.0f) - curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) - lineTo(17.0f, 7.5f) - close() - moveTo(6.0f, 9.0f) - horizontalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(11.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - lineTo(6.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - lineTo(5.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) - lineTo(10.0f, 9.0f) - lineTo(6.0f, 9.0f) - close() - } - } - return _battery4!! - } - -private var _battery4: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery5.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery5.kt deleted file mode 100644 index c8296752..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery5.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Battery5: ImageVector - get() { - if (_battery5 != null) { - return _battery5!! - } - _battery5 = fluentIcon(name = "Regular.Battery5") { - fluentPath { - moveTo(17.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - lineTo(5.0f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(2.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(17.0f, 7.5f) - lineTo(5.0f, 7.5f) - curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.36f) - lineTo(3.5f, 15.0f) - curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.36f, 1.5f) - lineTo(17.0f, 16.5f) - curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) - lineTo(18.5f, 9.0f) - curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) - lineTo(17.0f, 7.5f) - close() - moveTo(6.0f, 9.0f) - horizontalLineToRelative(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(12.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - lineTo(6.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - lineTo(5.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) - lineTo(11.0f, 9.0f) - lineTo(6.0f, 9.0f) - close() - } - } - return _battery5!! - } - -private var _battery5: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery6.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery6.kt deleted file mode 100644 index 7a73fd31..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery6.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Battery6: ImageVector - get() { - if (_battery6 != null) { - return _battery6!! - } - _battery6 = fluentIcon(name = "Regular.Battery6") { - fluentPath { - moveTo(17.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - lineTo(5.0f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(2.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(17.0f, 7.5f) - lineTo(5.0f, 7.5f) - curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.36f) - lineTo(3.5f, 15.0f) - curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.36f, 1.5f) - lineTo(17.0f, 16.5f) - curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) - lineTo(18.5f, 9.0f) - curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) - lineTo(17.0f, 7.5f) - close() - moveTo(6.0f, 9.0f) - horizontalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(13.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - lineTo(6.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - lineTo(5.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) - lineTo(12.0f, 9.0f) - lineTo(6.0f, 9.0f) - close() - } - } - return _battery6!! - } - -private var _battery6: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery7.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery7.kt deleted file mode 100644 index d17d2a6a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery7.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Battery7: ImageVector - get() { - if (_battery7 != null) { - return _battery7!! - } - _battery7 = fluentIcon(name = "Regular.Battery7") { - fluentPath { - moveTo(17.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - lineTo(5.0f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(2.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(17.0f, 7.5f) - lineTo(5.0f, 7.5f) - curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.36f) - lineTo(3.5f, 15.0f) - curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.36f, 1.5f) - lineTo(17.0f, 16.5f) - curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) - lineTo(18.5f, 9.0f) - curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) - lineTo(17.0f, 7.5f) - close() - moveTo(6.0f, 9.0f) - horizontalLineToRelative(7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(14.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - lineTo(6.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - lineTo(5.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) - lineTo(13.0f, 9.0f) - lineTo(6.0f, 9.0f) - close() - } - } - return _battery7!! - } - -private var _battery7: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery8.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery8.kt deleted file mode 100644 index 7bfc8a7f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery8.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Battery8: ImageVector - get() { - if (_battery8 != null) { - return _battery8!! - } - _battery8 = fluentIcon(name = "Regular.Battery8") { - fluentPath { - moveTo(17.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - lineTo(5.0f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(2.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(17.0f, 7.5f) - lineTo(5.0f, 7.5f) - curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.36f) - lineTo(3.5f, 15.0f) - curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.36f, 1.5f) - lineTo(17.0f, 16.5f) - curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) - lineTo(18.5f, 9.0f) - curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) - lineTo(17.0f, 7.5f) - close() - moveTo(6.0f, 9.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(15.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - lineTo(6.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - lineTo(5.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) - lineTo(14.0f, 9.0f) - lineTo(6.0f, 9.0f) - close() - } - } - return _battery8!! - } - -private var _battery8: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery9.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery9.kt deleted file mode 100644 index 1e9d12dc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Battery9.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Battery9: ImageVector - get() { - if (_battery9 != null) { - return _battery9!! - } - _battery9 = fluentIcon(name = "Regular.Battery9") { - fluentPath { - moveTo(17.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - lineTo(5.0f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(2.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(17.0f, 7.5f) - lineTo(5.0f, 7.5f) - curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.36f) - lineTo(3.5f, 15.0f) - curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.36f, 1.5f) - lineTo(17.0f, 16.5f) - curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) - lineTo(18.5f, 9.0f) - curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) - lineTo(17.0f, 7.5f) - close() - moveTo(6.0f, 9.0f) - horizontalLineToRelative(9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(16.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) - lineTo(6.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - lineTo(5.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) - lineTo(15.0f, 9.0f) - lineTo(6.0f, 9.0f) - close() - } - } - return _battery9!! - } - -private var _battery9: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BatteryCharge.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BatteryCharge.kt deleted file mode 100644 index 91ce3b1b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BatteryCharge.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BatteryCharge: ImageVector - get() { - if (_batteryCharge != null) { - return _batteryCharge!! - } - _batteryCharge = fluentIcon(name = "Regular.BatteryCharge") { - fluentPath { - moveTo(10.75f, 6.0f) - lineTo(17.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) - lineTo(20.0f, 10.0f) - lineToRelative(1.0f, 0.02f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - verticalLineToRelative(2.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.87f, 0.99f) - lineTo(21.0f, 14.01f) - lineTo(20.0f, 14.0f) - verticalLineToRelative(1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.82f, 3.0f) - lineTo(8.0f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(17.0f, 16.5f) - curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) - lineTo(18.5f, 9.0f) - curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) - horizontalLineToRelative(-6.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(17.0f, 6.0f) - horizontalLineToRelative(-6.25f) - close() - moveTo(6.25f, 11.0f) - verticalLineToRelative(6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(4.75f, 11.0f) - horizontalLineToRelative(-1.0f) - curveTo(2.78f, 11.0f, 2.0f, 10.22f, 2.0f, 9.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(0.75f) - lineTo(3.5f, 4.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - lineTo(5.0f, 6.0f) - horizontalLineToRelative(1.0f) - lineTo(6.0f, 4.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - curveToRelative(0.38f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) - lineTo(7.49f, 6.0f) - horizontalLineToRelative(0.76f) - curveToRelative(0.42f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - curveTo(9.0f, 10.22f, 8.22f, 11.0f, 7.25f, 11.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(6.25f) - lineTo(6.25f, 11.0f) - close() - moveTo(7.5f, 7.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(1.75f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - lineTo(7.5f, 7.5f) - close() - } - } - return _batteryCharge!! - } - -private var _batteryCharge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BatteryCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BatteryCheckmark.kt deleted file mode 100644 index d31e9b3f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BatteryCheckmark.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BatteryCheckmark: ImageVector - get() { - if (_batteryCheckmark != null) { - return _batteryCheckmark!! - } - _batteryCheckmark = fluentIcon(name = "Regular.BatteryCheckmark") { - fluentPath { - moveTo(17.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - horizontalLineToRelative(-4.17f) - curveToRelative(0.11f, -0.48f, 0.17f, -0.98f, 0.17f, -1.5f) - horizontalLineToRelative(4.0f) - curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) - lineTo(18.5f, 9.0f) - curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) - lineTo(5.0f, 7.5f) - curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.36f) - verticalLineToRelative(1.87f) - curveToRelative(-0.55f, 0.29f, -1.06f, 0.65f, -1.5f, 1.08f) - lineTo(2.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(12.0f, 16.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(9.85f, 14.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineTo(5.5f, 17.79f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _batteryCheckmark!! - } - -private var _batteryCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BatterySaver.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BatterySaver.kt deleted file mode 100644 index d9cb80cb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BatterySaver.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BatterySaver: ImageVector - get() { - if (_batterySaver != null) { - return _batterySaver!! - } - _batterySaver = fluentIcon(name = "Regular.BatterySaver") { - fluentPath { - moveTo(11.0f, 11.08f) - curveToRelative(0.0f, -1.57f, -0.79f, -3.87f, -2.35f, -6.72f) - curveToRelative(-0.27f, -0.49f, -0.97f, -0.48f, -1.27f, -0.02f) - arcTo(8.81f, 8.81f, 0.0f, false, true, 5.5f, 6.32f) - lineToRelative(-0.37f, 0.3f) - lineToRelative(-0.36f, 0.26f) - lineToRelative(-0.49f, 0.38f) - curveToRelative(-1.72f, 1.37f, -2.4f, 2.6f, -2.26f, 4.4f) - curveToRelative(0.14f, 1.6f, 1.1f, 2.75f, 2.77f, 3.28f) - arcToRelative(6.03f, 6.03f, 0.0f, false, true, -2.33f, 1.62f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.58f, 1.39f) - arcToRelative(7.1f, 7.1f, 0.0f, false, false, 3.9f, -3.64f) - curveToRelative(0.3f, -0.62f, 0.52f, -1.23f, 0.7f, -1.83f) - lineToRelative(0.04f, -0.15f) - lineToRelative(0.1f, -0.42f) - lineToRelative(0.07f, -0.33f) - lineToRelative(0.04f, -0.23f) - lineToRelative(0.06f, -0.48f) - curveToRelative(0.05f, -0.38f, 0.07f, -0.75f, 0.06f, -1.12f) - verticalLineToRelative(-0.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.02f) - curveToRelative(0.02f, 1.46f, -0.28f, 2.95f, -0.89f, 4.46f) - lineToRelative(-0.03f, 0.09f) - arcToRelative(0.45f, 0.45f, 0.0f, false, false, 0.64f, 0.5f) - lineToRelative(0.11f, -0.06f) - curveToRelative(0.08f, -0.04f, 0.14f, -0.09f, 0.2f, -0.14f) - arcTo(4.83f, 4.83f, 0.0f, false, false, 11.0f, 11.08f) - close() - moveTo(17.0f, 6.0f) - horizontalLineToRelative(-5.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(5.39f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 18.5f, 9.0f) - verticalLineToRelative(6.14f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 17.0f, 16.5f) - horizontalLineTo(7.75f) - curveToRelative(-0.4f, 0.03f, -0.75f, 0.32f, -0.75f, 0.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(9.43f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 20.0f, 15.0f) - verticalLineToRelative(-1.0f) - lineToRelative(1.0f, 0.02f) - lineToRelative(0.13f, -0.01f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.87f, -1.0f) - verticalLineTo(10.9f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -0.88f) - lineTo(20.0f, 10.0f) - verticalLineTo(8.82f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 17.0f, 6.0f) - close() - } - } - return _batterySaver!! - } - -private var _batterySaver: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BatteryWarning.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BatteryWarning.kt deleted file mode 100644 index 52a5777e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BatteryWarning.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BatteryWarning: ImageVector - get() { - if (_batteryWarning != null) { - return _batteryWarning!! - } - _batteryWarning = fluentIcon(name = "Regular.BatteryWarning") { - fluentPath { - moveTo(8.24f, 11.2f) - curveToRelative(0.24f, 0.13f, 0.43f, 0.32f, 0.56f, 0.56f) - lineToRelative(4.0f, 7.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 11.5f, 21.0f) - lineTo(3.5f, 21.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.3f, -2.25f) - lineToRelative(4.0f, -7.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.05f, -0.55f) - close() - moveTo(7.5f, 18.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - close() - moveTo(17.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - horizontalLineToRelative(-3.47f) - lineToRelative(-0.86f, -1.5f) - lineTo(17.0f, 16.5f) - curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) - lineTo(18.5f, 9.0f) - curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) - lineTo(5.0f, 7.5f) - curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.36f) - verticalLineToRelative(5.59f) - lineToRelative(-1.14f, 1.98f) - arcTo(2.99f, 2.99f, 0.0f, false, true, 2.0f, 15.0f) - lineTo(2.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(7.5f, 13.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.41f) - lineTo(7.0f, 16.59f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.99f, 0.0f) - lineTo(7.99f, 13.41f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.41f) - close() - } - } - return _batteryWarning!! - } - -private var _batteryWarning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Beach.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Beach.kt deleted file mode 100644 index e8b55284..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Beach.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Beach: ImageVector - get() { - if (_beach != null) { - return _beach!! - } - _beach = fluentIcon(name = "Regular.Beach") { - fluentPath { - moveTo(9.35f, 5.32f) - arcToRelative(6.75f, 6.75f, 0.0f, false, true, 11.7f, 6.75f) - lineToRelative(-0.26f, 0.43f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.02f, 0.28f) - lineToRelative(-4.56f, -2.63f) - lineToRelative(-2.37f, 4.15f) - arcToRelative(7.75f, 7.75f, 0.0f, false, true, 4.84f, 2.61f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.3f, 0.8f) - arcTo(6.12f, 6.12f, 0.0f, false, false, 12.0f, 15.76f) - curveToRelative(-1.67f, 0.0f, -3.21f, 0.76f, -4.38f, 1.97f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.3f, -0.8f) - arcToRelative(7.76f, 7.76f, 0.0f, false, true, 4.78f, -2.61f) - lineToRelative(2.81f, -4.91f) - lineToRelative(-4.54f, -2.62f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.27f, -1.03f) - lineToRelative(0.25f, -0.43f) - close() - moveTo(10.78f, 5.86f) - lineTo(12.75f, 6.99f) - curveToRelative(0.53f, -0.82f, 1.07f, -1.49f, 1.74f, -2.1f) - curveToRelative(0.52f, -0.48f, 1.12f, -0.9f, 1.83f, -1.32f) - arcToRelative(5.25f, 5.25f, 0.0f, false, false, -5.54f, 2.29f) - close() - moveTo(16.59f, 9.21f) - curveToRelative(0.55f, -1.0f, 0.82f, -1.79f, 0.92f, -2.55f) - curveToRelative(0.07f, -0.62f, 0.04f, -1.26f, -0.07f, -2.01f) - arcToRelative(8.86f, 8.86f, 0.0f, false, false, -3.4f, 3.1f) - lineTo(16.6f, 9.2f) - close() - moveTo(17.89f, 9.96f) - lineTo(19.86f, 11.1f) - arcToRelative(5.25f, 5.25f, 0.0f, false, false, -0.85f, -6.02f) - curveToRelative(0.05f, 0.6f, 0.06f, 1.18f, -0.02f, 1.76f) - curveToRelative(-0.12f, 1.01f, -0.47f, 2.0f, -1.1f, 3.12f) - close() - moveTo(6.7f, 18.66f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.44f, 0.06f) - curveToRelative(-0.21f, 0.89f, -0.6f, 1.36f, -1.04f, 1.63f) - curveToRelative(-0.46f, 0.29f, -1.05f, 0.4f, -1.73f, 0.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - curveToRelative(0.82f, 0.0f, 1.73f, -0.13f, 2.52f, -0.63f) - curveToRelative(0.41f, -0.25f, 0.77f, -0.6f, 1.06f, -1.03f) - arcToRelative(3.81f, 3.81f, 0.0f, false, false, 5.92f, -0.02f) - arcToRelative(3.82f, 3.82f, 0.0f, false, false, 6.0f, -0.08f) - arcToRelative(4.46f, 4.46f, 0.0f, false, false, 3.5f, 1.76f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - curveToRelative(-1.18f, 0.0f, -2.38f, -0.8f, -2.78f, -2.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.43f, -0.01f) - curveToRelative(-0.79f, 2.44f, -3.81f, 2.4f, -4.58f, 0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.42f, 0.0f) - curveToRelative(-0.77f, 2.3f, -3.8f, 2.34f, -4.58f, -0.1f) - close() - } - } - return _beach!! - } - -private var _beach: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Beaker.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Beaker.kt deleted file mode 100644 index 15b83083..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Beaker.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Beaker: ImageVector - get() { - if (_beaker != null) { - return _beaker!! - } - _beaker = fluentIcon(name = "Regular.Beaker") { - fluentPath { - moveTo(8.0f, 4.5f) - horizontalLineToRelative(1.0f) - verticalLineToRelative(6.24f) - curveToRelative(0.0f, 0.37f, -0.1f, 0.74f, -0.27f, 1.07f) - lineToRelative(-3.59f, 6.6f) - arcTo(1.75f, 1.75f, 0.0f, false, false, 6.68f, 21.0f) - horizontalLineToRelative(10.64f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 1.54f, -2.59f) - lineToRelative(-3.59f, -6.6f) - curveToRelative(-0.18f, -0.33f, -0.27f, -0.7f, -0.27f, -1.07f) - lineTo(15.0f, 4.5f) - horizontalLineToRelative(1.0f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 16.0f, 3.0f) - lineTo(8.0f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(10.5f, 10.74f) - lineTo(10.5f, 4.5f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(6.24f) - curveToRelative(0.0f, 0.62f, 0.16f, 1.24f, 0.45f, 1.79f) - lineToRelative(0.8f, 1.47f) - horizontalLineToRelative(-5.5f) - lineToRelative(0.8f, -1.47f) - curveToRelative(0.3f, -0.55f, 0.45f, -1.17f, 0.45f, -1.8f) - close() - moveTo(8.43f, 15.5f) - horizontalLineToRelative(7.14f) - lineToRelative(1.97f, 3.63f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.22f, 0.37f) - lineTo(6.68f, 19.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.22f, -0.37f) - lineToRelative(1.97f, -3.63f) - close() - } - } - return _beaker!! - } - -private var _beaker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BeakerEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BeakerEdit.kt deleted file mode 100644 index 824b0285..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BeakerEdit.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BeakerEdit: ImageVector - get() { - if (_beakerEdit != null) { - return _beakerEdit!! - } - _beakerEdit = fluentIcon(name = "Regular.BeakerEdit") { - fluentPath { - moveTo(6.0f, 3.5f) - horizontalLineToRelative(1.0f) - verticalLineToRelative(6.24f) - curveToRelative(0.0f, 0.37f, -0.1f, 0.74f, -0.27f, 1.07f) - lineToRelative(-3.59f, 6.6f) - arcTo(1.75f, 1.75f, 0.0f, false, false, 4.68f, 20.0f) - horizontalLineToRelative(6.74f) - lineToRelative(0.1f, -0.42f) - curveToRelative(0.1f, -0.39f, 0.25f, -0.75f, 0.46f, -1.08f) - horizontalLineToRelative(-7.3f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.22f, -0.37f) - lineToRelative(1.97f, -3.63f) - horizontalLineToRelative(7.14f) - lineToRelative(0.8f, 1.48f) - lineToRelative(1.1f, -1.1f) - lineToRelative(-2.2f, -4.07f) - curveToRelative(-0.18f, -0.33f, -0.27f, -0.7f, -0.27f, -1.07f) - lineTo(13.0f, 3.5f) - horizontalLineToRelative(1.0f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 14.0f, 2.0f) - lineTo(6.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(8.5f, 9.74f) - lineTo(8.5f, 3.5f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(6.24f) - curveToRelative(0.0f, 0.62f, 0.16f, 1.24f, 0.45f, 1.79f) - lineToRelative(0.8f, 1.47f) - horizontalLineToRelative(-5.5f) - lineToRelative(0.8f, -1.47f) - curveToRelative(0.3f, -0.55f, 0.45f, -1.17f, 0.45f, -1.8f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _beakerEdit!! - } - -private var _beakerEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Bed.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Bed.kt deleted file mode 100644 index 356bd822..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Bed.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Bed: ImageVector - get() { - if (_bed != null) { - return _bed!! - } - _bed = fluentIcon(name = "Regular.Bed") { - fluentPath { - moveTo(6.75f, 4.0f) - horizontalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 20.0f, 6.58f) - verticalLineToRelative(3.52f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.0f, 2.46f) - verticalLineToRelative(7.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(20.5f, 18.0f) - horizontalLineToRelative(-17.0f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-7.5f) - curveToRelative(0.0f, -1.26f, 0.85f, -2.32f, 2.0f, -2.65f) - lineTo(4.0f, 6.75f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.58f, -2.74f) - lineTo(6.75f, 4.0f) - close() - moveTo(19.25f, 11.5f) - lineTo(4.75f, 11.5f) - curveToRelative(-0.65f, 0.0f, -1.18f, 0.5f, -1.24f, 1.12f) - lineToRelative(-0.01f, 0.13f) - verticalLineToRelative(3.75f) - horizontalLineToRelative(17.0f) - verticalLineToRelative(-3.75f) - curveToRelative(0.0f, -0.65f, -0.5f, -1.18f, -1.12f, -1.24f) - lineToRelative(-0.13f, -0.01f) - close() - moveTo(17.25f, 5.5f) - lineTo(6.75f, 5.5f) - curveToRelative(-0.65f, 0.0f, -1.18f, 0.5f, -1.24f, 1.12f) - lineToRelative(-0.01f, 0.13f) - lineTo(5.5f, 10.0f) - lineTo(7.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(11.0f, 10.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) - lineTo(17.0f, 10.0f) - horizontalLineToRelative(1.5f) - lineTo(18.5f, 6.75f) - curveToRelative(0.0f, -0.65f, -0.5f, -1.18f, -1.12f, -1.24f) - lineToRelative(-0.13f, -0.01f) - close() - } - } - return _bed!! - } - -private var _bed: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BinFull.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BinFull.kt deleted file mode 100644 index be0d9b28..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BinFull.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BinFull: ImageVector - get() { - if (_binFull != null) { - return _binFull!! - } - _binFull = fluentIcon(name = "Regular.BinFull") { - fluentPath { - moveTo(17.38f, 2.34f) - curveToRelative(0.22f, 0.35f, 0.12f, 0.82f, -0.22f, 1.04f) - lineTo(5.3f, 11.0f) - horizontalLineToRelative(4.2f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(3.25f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(3.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(21.0f, 11.0f) - horizontalLineToRelative(0.25f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(7.0f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(5.25f, 22.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 18.75f) - verticalLineToRelative(-7.0f) - curveToRelative(0.0f, -0.26f, 0.13f, -0.5f, 0.34f, -0.63f) - lineToRelative(14.0f, -9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.04f, 0.22f) - close() - moveTo(19.5f, 11.0f) - lineTo(19.5f, 7.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - lineTo(16.0f, 11.0f) - horizontalLineToRelative(3.5f) - close() - moveTo(14.5f, 11.0f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(-3.25f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - lineTo(11.0f, 11.0f) - horizontalLineToRelative(3.5f) - close() - moveTo(3.5f, 12.5f) - verticalLineToRelative(6.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(20.5f, 12.5f) - horizontalLineToRelative(-17.0f) - close() - } - } - return _binFull!! - } - -private var _binFull: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Bluetooth.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Bluetooth.kt deleted file mode 100644 index f861bfc0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Bluetooth.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Bluetooth: ImageVector - get() { - if (_bluetooth != null) { - return _bluetooth!! - } - _bluetooth = fluentIcon(name = "Regular.Bluetooth") { - fluentPath { - moveTo(11.46f, 2.06f) - curveToRelative(0.28f, -0.12f, 0.6f, -0.05f, 0.82f, 0.16f) - lineToRelative(5.0f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.04f, 1.1f) - lineTo(12.9f, 12.0f) - lineToRelative(4.33f, 3.68f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.04f, 1.1f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.28f, -0.53f) - verticalLineToRelative(-7.63f) - lineToRelative(-3.76f, 3.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, -1.14f) - lineTo(10.6f, 12.0f) - lineTo(6.26f, 8.32f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.98f, -1.14f) - lineToRelative(3.76f, 3.2f) - lineTo(11.0f, 2.75f) - curveToRelative(0.0f, -0.3f, 0.18f, -0.58f, 0.46f, -0.7f) - close() - moveTo(12.5f, 13.62f) - verticalLineToRelative(5.82f) - lineToRelative(3.14f, -3.15f) - lineToRelative(-3.14f, -2.67f) - close() - moveTo(12.5f, 10.38f) - lineTo(15.64f, 7.71f) - lineTo(12.5f, 4.56f) - verticalLineToRelative(5.82f) - close() - } - } - return _bluetooth!! - } - -private var _bluetooth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BluetoothConnected.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BluetoothConnected.kt deleted file mode 100644 index 6bb1f443..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BluetoothConnected.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BluetoothConnected: ImageVector - get() { - if (_bluetoothConnected != null) { - return _bluetoothConnected!! - } - _bluetoothConnected = fluentIcon(name = "Regular.BluetoothConnected") { - fluentPath { - moveTo(11.46f, 2.06f) - curveToRelative(0.28f, -0.12f, 0.6f, -0.05f, 0.82f, 0.16f) - lineToRelative(5.0f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.04f, 1.1f) - lineTo(12.9f, 12.0f) - lineToRelative(4.33f, 3.68f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.04f, 1.1f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.28f, -0.53f) - verticalLineToRelative(-7.63f) - lineToRelative(-3.76f, 3.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, -1.14f) - lineTo(10.6f, 12.0f) - lineTo(6.26f, 8.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.14f) - lineToRelative(3.76f, 3.2f) - lineTo(11.0f, 2.75f) - curveToRelative(0.0f, -0.3f, 0.18f, -0.58f, 0.46f, -0.7f) - close() - moveTo(12.5f, 13.62f) - verticalLineToRelative(5.82f) - lineToRelative(3.14f, -3.15f) - lineToRelative(-3.14f, -2.67f) - close() - moveTo(12.5f, 10.38f) - lineTo(15.64f, 7.71f) - lineTo(12.5f, 4.56f) - verticalLineToRelative(5.82f) - close() - moveTo(20.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(5.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - } - } - return _bluetoothConnected!! - } - -private var _bluetoothConnected: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BluetoothDisabled.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BluetoothDisabled.kt deleted file mode 100644 index 553ffff4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BluetoothDisabled.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BluetoothDisabled: ImageVector - get() { - if (_bluetoothDisabled != null) { - return _bluetoothDisabled!! - } - _bluetoothDisabled = fluentIcon(name = "Regular.BluetoothDisabled") { - fluentPath { - moveToRelative(16.5f, 17.56f) - lineToRelative(4.22f, 4.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(8.56f, 8.56f) - lineToRelative(-4.52f, 3.84f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.98f, 1.14f) - lineToRelative(3.76f, -3.2f) - verticalLineToRelative(7.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.28f, 0.53f) - lineToRelative(4.22f, -4.22f) - close() - moveTo(12.9f, 13.96f) - lineTo(15.44f, 16.5f) - lineTo(12.5f, 19.44f) - verticalLineToRelative(-5.82f) - lineToRelative(0.4f, 0.35f) - close() - moveTo(17.24f, 8.32f) - lineTo(14.14f, 10.96f) - lineTo(13.07f, 9.89f) - lineTo(15.64f, 7.71f) - lineTo(12.5f, 4.56f) - verticalLineToRelative(4.76f) - lineTo(11.0f, 7.82f) - lineTo(11.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.28f, -0.53f) - lineToRelative(5.0f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.04f, 1.1f) - close() - } - } - return _bluetoothDisabled!! - } - -private var _bluetoothDisabled: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BluetoothSearching.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BluetoothSearching.kt deleted file mode 100644 index d9c661c6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BluetoothSearching.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BluetoothSearching: ImageVector - get() { - if (_bluetoothSearching != null) { - return _bluetoothSearching!! - } - _bluetoothSearching = fluentIcon(name = "Regular.BluetoothSearching") { - fluentPath { - moveTo(11.46f, 2.06f) - curveToRelative(0.28f, -0.12f, 0.6f, -0.05f, 0.82f, 0.16f) - lineToRelative(5.0f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.04f, 1.1f) - lineTo(12.9f, 12.0f) - lineToRelative(4.33f, 3.68f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.04f, 1.1f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.28f, -0.53f) - verticalLineToRelative(-7.63f) - lineToRelative(-3.76f, 3.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, -1.14f) - lineTo(10.6f, 12.0f) - lineTo(6.26f, 8.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.14f) - lineToRelative(3.76f, 3.2f) - lineTo(11.0f, 2.75f) - curveToRelative(0.0f, -0.3f, 0.18f, -0.58f, 0.46f, -0.7f) - close() - moveTo(12.5f, 13.62f) - verticalLineToRelative(5.82f) - lineToRelative(3.14f, -3.15f) - lineToRelative(-3.14f, -2.67f) - close() - moveTo(12.5f, 10.38f) - lineTo(15.64f, 7.71f) - lineTo(12.5f, 4.56f) - verticalLineToRelative(5.82f) - close() - moveTo(17.97f, 9.58f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.01f, 0.32f) - arcToRelative(4.48f, 4.48f, 0.0f, false, true, 0.0f, 4.2f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.33f, -0.7f) - arcToRelative(2.98f, 2.98f, 0.0f, false, false, 0.0f, -2.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.32f, -1.01f) - close() - moveTo(20.6f, 7.8f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.2f, 0.9f) - arcToRelative(5.47f, 5.47f, 0.0f, false, true, 0.0f, 6.6f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.2f, 0.9f) - arcToRelative(6.97f, 6.97f, 0.0f, false, false, 0.0f, -8.4f) - close() - } - } - return _bluetoothSearching!! - } - -private var _bluetoothSearching: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Blur.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Blur.kt deleted file mode 100644 index f6ed5c7f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Blur.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Blur: ImageVector - get() { - if (_blur != null) { - return _blur!! - } - _blur = fluentIcon(name = "Regular.Blur") { - fluentPath { - moveTo(3.0f, 12.0f) - arcToRelative(9.0f, 9.0f, 0.0f, false, true, 13.98f, -7.5f) - lineTo(12.0f, 4.5f) - arcToRelative(7.5f, 7.5f, 0.0f, true, false, 0.0f, 15.0f) - lineTo(12.0f, 18.0f) - horizontalLineToRelative(6.7f) - arcTo(9.0f, 9.0f, 0.0f, false, true, 3.0f, 12.0f) - close() - moveTo(18.23f, 5.5f) - lineTo(12.0f, 5.5f) - lineTo(12.0f, 7.0f) - horizontalLineToRelative(7.48f) - arcToRelative(9.05f, 9.05f, 0.0f, false, false, -1.25f, -1.5f) - close() - moveTo(12.0f, 8.0f) - horizontalLineToRelative(8.06f) - curveToRelative(0.24f, 0.48f, 0.44f, 0.98f, 0.59f, 1.5f) - lineTo(12.0f, 9.5f) - lineTo(12.0f, 8.0f) - close() - moveTo(20.88f, 10.5f) - lineTo(12.0f, 10.5f) - lineTo(12.0f, 12.0f) - horizontalLineToRelative(9.0f) - curveToRelative(0.0f, -0.51f, -0.04f, -1.01f, -0.12f, -1.5f) - close() - moveTo(12.0f, 13.0f) - horizontalLineToRelative(8.95f) - arcToRelative(8.96f, 8.96f, 0.0f, false, true, -0.3f, 1.5f) - lineTo(12.0f, 14.5f) - lineTo(12.0f, 13.0f) - close() - moveTo(20.3f, 15.5f) - lineTo(12.0f, 15.5f) - lineTo(12.0f, 17.0f) - horizontalLineToRelative(7.48f) - curveToRelative(0.32f, -0.47f, 0.6f, -0.97f, 0.81f, -1.5f) - close() - } - } - return _blur!! - } - -private var _blur: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Board.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Board.kt deleted file mode 100644 index e9dd110e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Board.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Board: ImageVector - get() { - if (_board != null) { - return _board!! - } - _board = fluentIcon(name = "Regular.Board") { - fluentPath { - moveTo(18.25f, 2.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.25f, 3.06f) - verticalLineToRelative(12.19f) - curveToRelative(0.0f, 1.8f, -1.45f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-12.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.06f) - lineTo(3.0f, 17.75f) - verticalLineToRelative(-12.0f) - curveTo(3.0f, 3.95f, 4.46f, 2.5f, 6.25f, 2.5f) - horizontalLineToRelative(12.0f) - close() - moveTo(11.5f, 9.5f) - horizontalLineToRelative(-7.0f) - verticalLineToRelative(8.41f) - curveToRelative(0.09f, 0.9f, 0.84f, 1.6f, 1.75f, 1.6f) - horizontalLineToRelative(5.25f) - lineTo(11.5f, 9.5f) - close() - moveTo(20.0f, 15.5f) - horizontalLineToRelative(-7.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(5.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(20.0f, 15.5f) - close() - moveTo(18.25f, 4.0f) - lineTo(13.0f, 4.0f) - verticalLineToRelative(10.0f) - horizontalLineToRelative(7.0f) - lineTo(20.0f, 5.59f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.75f, -1.6f) - close() - moveTo(11.5f, 4.0f) - lineTo(6.11f, 4.0f) - curveToRelative(-0.9f, 0.08f, -1.6f, 0.83f, -1.6f, 1.75f) - lineTo(4.5f, 8.0f) - horizontalLineToRelative(7.0f) - lineTo(11.5f, 4.0f) - close() - } - } - return _board!! - } - -private var _board: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoardHeart.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoardHeart.kt deleted file mode 100644 index 754d77f5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoardHeart.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BoardHeart: ImageVector - get() { - if (_boardHeart != null) { - return _boardHeart!! - } - _boardHeart = fluentIcon(name = "Regular.BoardHeart") { - fluentPath { - moveTo(21.5f, 5.56f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.25f, -3.06f) - horizontalLineToRelative(-12.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(12.19f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 6.26f, 21.0f) - horizontalLineToRelative(7.12f) - lineToRelative(-1.46f, -1.5f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.91f, 0.0f, -1.66f, -0.7f, -1.74f, -1.59f) - lineToRelative(-0.01f, -0.16f) - lineTo(4.5f, 9.5f) - horizontalLineToRelative(7.0f) - verticalLineToRelative(2.67f) - curveToRelative(0.45f, -0.41f, 0.96f, -0.71f, 1.5f, -0.9f) - lineTo(13.0f, 4.0f) - horizontalLineToRelative(5.25f) - curveToRelative(0.91f, 0.0f, 1.66f, 0.7f, 1.74f, 1.59f) - lineToRelative(0.01f, 0.16f) - verticalLineToRelative(5.28f) - curveToRelative(0.52f, 0.06f, 1.03f, 0.2f, 1.5f, 0.45f) - lineTo(21.5f, 5.56f) - close() - moveTo(6.25f, 4.0f) - horizontalLineToRelative(5.25f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(-7.0f) - lineTo(4.5f, 5.75f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.75f) - horizontalLineToRelative(0.15f) - close() - moveTo(21.98f, 13.06f) - arcToRelative(3.7f, 3.7f, 0.0f, false, true, 0.0f, 5.11f) - lineToRelative(-4.45f, 4.6f) - arcToRelative(0.74f, 0.74f, 0.0f, false, true, -1.06f, 0.0f) - lineToRelative(-4.45f, -4.6f) - arcToRelative(3.73f, 3.73f, 0.0f, false, true, 0.0f, -5.11f) - arcToRelative(3.4f, 3.4f, 0.0f, false, true, 4.94f, 0.0f) - lineToRelative(0.04f, 0.04f) - lineToRelative(0.04f, -0.04f) - arcToRelative(3.42f, 3.42f, 0.0f, false, true, 4.94f, 0.0f) - close() - } - } - return _boardHeart!! - } - -private var _boardHeart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoardSplit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoardSplit.kt deleted file mode 100644 index 1ccaba50..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoardSplit.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BoardSplit: ImageVector - get() { - if (_boardSplit != null) { - return _boardSplit!! - } - _boardSplit = fluentIcon(name = "Regular.BoardSplit") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(4.5f, 12.5f) - verticalLineToRelative(5.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(14.0f, 19.5f) - verticalLineToRelative(-7.0f) - lineTo(4.5f, 12.5f) - close() - moveTo(14.0f, 11.0f) - lineTo(14.0f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 11.0f) - lineTo(14.0f, 11.0f) - close() - moveTo(19.5f, 9.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-5.0f) - close() - moveTo(19.5f, 16.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(3.5f) - horizontalLineToRelative(2.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 16.0f) - close() - moveTo(19.5f, 8.0f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(15.5f, 4.5f) - lineTo(15.5f, 8.0f) - horizontalLineToRelative(4.0f) - close() - } - } - return _boardSplit!! - } - -private var _boardSplit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Book.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Book.kt deleted file mode 100644 index 507e0fe3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Book.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Book: ImageVector - get() { - if (_book != null) { - return _book!! - } - _book = fluentIcon(name = "Regular.Book") { - fluentPath { - moveTo(7.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - lineTo(8.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(7.0f, 6.0f) - close() - moveTo(8.5f, 7.5f) - horizontalLineToRelative(7.0f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(-7.0f) - verticalLineToRelative(1.0f) - close() - moveTo(4.0f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) - lineTo(18.0f, 2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) - verticalLineToRelative(14.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(5.5f, 19.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(6.5f, 22.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) - verticalLineToRelative(-15.0f) - close() - moveTo(5.5f, 18.0f) - lineTo(19.0f, 18.0f) - lineTo(19.0f, 4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(6.5f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - lineTo(5.5f, 18.0f) - close() - } - } - return _book!! - } - -private var _book: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookAdd.kt deleted file mode 100644 index 8218b7f6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookAdd.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BookAdd: ImageVector - get() { - if (_bookAdd != null) { - return _bookAdd!! - } - _bookAdd = fluentIcon(name = "Regular.BookAdd") { - fluentPath { - moveTo(3.0f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 5.5f, 2.0f) - lineTo(17.0f, 2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) - verticalLineToRelative(6.81f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, -1.5f, -0.3f) - lineTo(18.0f, 4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(5.5f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - lineTo(4.5f, 18.0f) - horizontalLineToRelative(6.52f) - curveToRelative(0.04f, 0.52f, 0.14f, 1.02f, 0.3f, 1.5f) - lineTo(4.5f, 19.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(6.23f) - curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) - lineTo(5.5f, 22.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 3.0f, 19.5f) - verticalLineToRelative(-15.0f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(18.0f, 20.5f) - lineTo(18.0f, 18.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) - lineTo(18.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -1.0f, 0.0f) - lineTo(17.0f, 17.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - lineTo(17.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) - close() - moveTo(6.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - lineTo(7.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(6.0f, 6.0f) - close() - moveTo(7.5f, 7.5f) - horizontalLineToRelative(7.0f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(-7.0f) - verticalLineToRelative(1.0f) - close() - } - } - return _bookAdd!! - } - -private var _bookAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookArrowClockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookArrowClockwise.kt deleted file mode 100644 index b30a2ca3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookArrowClockwise.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BookArrowClockwise: ImageVector - get() { - if (_bookArrowClockwise != null) { - return _bookArrowClockwise!! - } - _bookArrowClockwise = fluentIcon(name = "Regular.BookArrowClockwise") { - fluentPath { - moveTo(21.25f, 5.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineTo(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(0.63f) - arcTo(6.0f, 6.0f, 0.0f, true, false, 23.0f, 7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, true, true, -1.67f, -3.5f) - horizontalLineTo(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.75f) - close() - moveTo(6.5f, 2.0f) - horizontalLineToRelative(5.6f) - curveToRelative(-0.45f, 0.44f, -0.84f, 0.95f, -1.16f, 1.5f) - horizontalLineTo(6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineTo(18.0f) - horizontalLineTo(19.0f) - verticalLineToRelative(-4.29f) - arcToRelative(6.96f, 6.96f, 0.0f, false, false, 1.5f, -0.65f) - verticalLineToRelative(5.69f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineTo(5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineTo(6.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) - verticalLineToRelative(-15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) - close() - } - } - return _bookArrowClockwise!! - } - -private var _bookArrowClockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookClock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookClock.kt deleted file mode 100644 index 3f63b6a1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookClock.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BookClock: ImageVector - get() { - if (_bookClock != null) { - return _bookClock!! - } - _bookClock = fluentIcon(name = "Regular.BookClock") { - fluentPath { - moveTo(13.0f, 9.13f) - verticalLineToRelative(1.62f) - horizontalLineToRelative(0.75f) - arcToRelative(0.62f, 0.62f, 0.0f, true, true, 0.0f, 1.25f) - horizontalLineToRelative(-1.37f) - arcToRelative(0.62f, 0.62f, 0.0f, false, true, -0.63f, -0.63f) - lineTo(11.75f, 9.13f) - arcToRelative(0.62f, 0.62f, 0.0f, true, true, 1.25f, 0.0f) - close() - moveTo(12.37f, 6.0f) - arcToRelative(4.75f, 4.75f, 0.0f, true, false, 0.0f, 9.5f) - arcToRelative(4.75f, 4.75f, 0.0f, false, false, 0.0f, -9.5f) - close() - moveTo(8.87f, 10.75f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 7.0f, 0.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -7.0f, 0.0f) - close() - moveTo(6.5f, 2.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) - verticalLineToRelative(15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(6.5f, 20.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - horizontalLineToRelative(14.25f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(20.5f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) - lineTo(6.5f, 2.0f) - close() - moveTo(19.0f, 18.0f) - lineTo(5.5f, 18.0f) - lineTo(5.5f, 4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - lineTo(18.0f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - lineTo(19.0f, 18.0f) - close() - } - } - return _bookClock!! - } - -private var _bookClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookCoins.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookCoins.kt deleted file mode 100644 index 2d0bfd56..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookCoins.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BookCoins: ImageVector - get() { - if (_bookCoins != null) { - return _bookCoins!! - } - _bookCoins = fluentIcon(name = "Regular.BookCoins") { - fluentPath { - moveTo(10.2f, 7.46f) - curveToRelative(0.62f, -0.3f, 1.43f, -0.46f, 2.3f, -0.46f) - curveToRelative(0.87f, 0.0f, 1.68f, 0.17f, 2.3f, 0.46f) - curveToRelative(0.58f, 0.28f, 1.2f, 0.78f, 1.2f, 1.54f) - reflectiveCurveToRelative(-0.62f, 1.26f, -1.2f, 1.54f) - curveToRelative(-0.62f, 0.3f, -1.43f, 0.46f, -2.3f, 0.46f) - curveToRelative(-0.87f, 0.0f, -1.68f, -0.17f, -2.3f, -0.46f) - curveTo(9.62f, 10.26f, 9.0f, 9.76f, 9.0f, 9.0f) - reflectiveCurveToRelative(0.62f, -1.26f, 1.2f, -1.54f) - close() - moveTo(10.74f, 8.59f) - curveToRelative(-0.47f, 0.22f, -0.49f, 0.41f, -0.49f, 0.41f) - reflectiveCurveToRelative(0.02f, 0.19f, 0.49f, 0.4f) - curveToRelative(0.42f, 0.2f, 1.04f, 0.35f, 1.76f, 0.35f) - reflectiveCurveToRelative(1.34f, -0.14f, 1.76f, -0.34f) - curveToRelative(0.47f, -0.22f, 0.49f, -0.41f, 0.49f, -0.41f) - reflectiveCurveToRelative(-0.02f, -0.19f, -0.49f, -0.4f) - arcToRelative(4.23f, 4.23f, 0.0f, false, false, -1.76f, -0.35f) - curveToRelative(-0.72f, 0.0f, -1.34f, 0.14f, -1.76f, 0.34f) - close() - moveTo(12.5f, 12.0f) - curveToRelative(1.41f, 0.0f, 2.67f, -0.43f, 3.5f, -1.11f) - lineTo(16.0f, 11.0f) - curveToRelative(0.0f, 1.1f, -1.57f, 2.0f, -3.5f, 2.0f) - reflectiveCurveTo(9.0f, 12.1f, 9.0f, 11.0f) - verticalLineToRelative(-0.11f) - arcTo(5.58f, 5.58f, 0.0f, false, false, 12.5f, 12.0f) - close() - moveTo(12.5f, 14.0f) - curveToRelative(1.41f, 0.0f, 2.67f, -0.43f, 3.5f, -1.11f) - lineTo(16.0f, 13.0f) - curveToRelative(0.0f, 1.1f, -1.57f, 2.0f, -3.5f, 2.0f) - reflectiveCurveTo(9.0f, 14.1f, 9.0f, 13.0f) - verticalLineToRelative(-0.11f) - arcTo(5.58f, 5.58f, 0.0f, false, false, 12.5f, 14.0f) - close() - moveTo(6.5f, 2.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) - verticalLineToRelative(15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(6.5f, 20.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - horizontalLineToRelative(14.25f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(20.5f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) - lineTo(6.5f, 2.0f) - close() - moveTo(19.0f, 18.0f) - lineTo(5.5f, 18.0f) - lineTo(5.5f, 4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - lineTo(18.0f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - lineTo(19.0f, 18.0f) - close() - } - } - return _bookCoins!! - } - -private var _bookCoins: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookCompass.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookCompass.kt deleted file mode 100644 index 74a4a8dd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookCompass.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BookCompass: ImageVector - get() { - if (_bookCompass != null) { - return _bookCompass!! - } - _bookCompass = fluentIcon(name = "Regular.BookCompass") { - fluentPath { - moveTo(13.0f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.6f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 10.35f, 12.0f) - lineToRelative(-1.3f, 3.23f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.4f, 0.56f) - lineToRelative(1.23f, -3.09f) - arcToRelative(2.76f, 2.76f, 0.0f, false, false, 1.14f, 0.0f) - lineToRelative(1.23f, 3.09f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.4f, -0.56f) - lineTo(14.15f, 12.0f) - arcTo(2.74f, 2.74f, 0.0f, false, false, 13.0f, 7.35f) - verticalLineToRelative(-1.6f) - close() - moveTo(11.0f, 10.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) - close() - moveTo(6.5f, 2.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) - verticalLineToRelative(15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - horizontalLineToRelative(14.25f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineTo(4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) - horizontalLineTo(6.5f) - close() - moveTo(19.0f, 18.0f) - horizontalLineTo(5.5f) - verticalLineTo(4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineTo(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineTo(18.0f) - close() - } - } - return _bookCompass!! - } - -private var _bookCompass: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookContacts.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookContacts.kt deleted file mode 100644 index 72818aea..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookContacts.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BookContacts: ImageVector - get() { - if (_bookContacts != null) { - return _bookContacts!! - } - _bookContacts = fluentIcon(name = "Regular.BookContacts") { - fluentPath { - moveTo(15.5f, 12.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 1.0f, 1.38f, 1.75f, 3.25f, 1.75f) - reflectiveCurveToRelative(3.25f, -0.75f, 3.25f, -1.75f) - verticalLineToRelative(-0.5f) - close() - moveTo(14.0f, 8.75f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, -3.5f, 0.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 3.5f, 0.0f) - close() - moveTo(4.0f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) - lineTo(18.0f, 2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) - verticalLineToRelative(14.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(5.5f, 19.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(6.5f, 22.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) - verticalLineToRelative(-15.0f) - close() - moveTo(5.5f, 4.5f) - lineTo(5.5f, 18.0f) - lineTo(19.0f, 18.0f) - lineTo(19.0f, 4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(6.5f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - close() - } - } - return _bookContacts!! - } - -private var _bookContacts: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookDatabase.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookDatabase.kt deleted file mode 100644 index 3697cc5c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookDatabase.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BookDatabase: ImageVector - get() { - if (_bookDatabase != null) { - return _bookDatabase!! - } - _bookDatabase = fluentIcon(name = "Regular.BookDatabase") { - fluentPath { - moveTo(16.5f, 9.0f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.9f, -0.66f, 1.53f, -1.35f, 1.9f) - arcToRelative(5.7f, 5.7f, 0.0f, false, true, -2.65f, 0.6f) - curveToRelative(-1.0f, 0.0f, -1.94f, -0.22f, -2.65f, -0.6f) - curveToRelative(-0.7f, -0.37f, -1.35f, -1.0f, -1.35f, -1.9f) - lineTo(8.5f, 9.0f) - curveToRelative(0.0f, -0.9f, 0.66f, -1.53f, 1.35f, -1.9f) - arcToRelative(5.7f, 5.7f, 0.0f, false, true, 2.65f, -0.6f) - curveToRelative(1.0f, 0.0f, 1.94f, 0.22f, 2.65f, 0.6f) - curveToRelative(0.7f, 0.37f, 1.35f, 1.0f, 1.35f, 1.9f) - close() - moveTo(10.56f, 8.42f) - curveToRelative(-0.5f, 0.27f, -0.56f, 0.5f, -0.56f, 0.58f) - curveToRelative(0.0f, 0.08f, 0.07f, 0.31f, 0.56f, 0.58f) - curveToRelative(0.46f, 0.24f, 1.14f, 0.42f, 1.94f, 0.42f) - reflectiveCurveToRelative(1.48f, -0.18f, 1.94f, -0.42f) - curveToRelative(0.5f, -0.27f, 0.56f, -0.5f, 0.56f, -0.58f) - curveToRelative(0.0f, -0.08f, -0.07f, -0.31f, -0.56f, -0.58f) - arcTo(4.21f, 4.21f, 0.0f, false, false, 12.5f, 8.0f) - curveToRelative(-0.8f, 0.0f, -1.48f, 0.18f, -1.94f, 0.42f) - close() - moveTo(15.0f, 10.98f) - curveToRelative(-0.7f, 0.33f, -1.57f, 0.52f, -2.5f, 0.52f) - curveToRelative(-0.93f, 0.0f, -1.8f, -0.19f, -2.5f, -0.52f) - lineTo(10.0f, 13.0f) - curveToRelative(0.0f, 0.08f, 0.07f, 0.31f, 0.56f, 0.58f) - curveToRelative(0.46f, 0.24f, 1.14f, 0.42f, 1.94f, 0.42f) - reflectiveCurveToRelative(1.48f, -0.18f, 1.94f, -0.42f) - curveToRelative(0.5f, -0.27f, 0.56f, -0.5f, 0.56f, -0.58f) - verticalLineToRelative(-2.02f) - close() - moveTo(4.0f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) - lineTo(18.0f, 2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) - verticalLineToRelative(14.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(5.5f, 19.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(6.5f, 22.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) - verticalLineToRelative(-15.0f) - close() - moveTo(5.5f, 18.0f) - lineTo(19.0f, 18.0f) - lineTo(19.0f, 4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(6.5f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - lineTo(5.5f, 18.0f) - close() - } - } - return _bookDatabase!! - } - -private var _bookDatabase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookExclamationMark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookExclamationMark.kt deleted file mode 100644 index cfe3c262..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookExclamationMark.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BookExclamationMark: ImageVector - get() { - if (_bookExclamationMark != null) { - return _bookExclamationMark!! - } - _bookExclamationMark = fluentIcon(name = "Regular.BookExclamationMark") { - fluentPath { - moveTo(13.25f, 14.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(11.5f, 6.75f) - verticalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - close() - moveTo(4.0f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) - horizontalLineTo(18.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) - verticalLineToRelative(14.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineTo(5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineTo(6.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) - verticalLineToRelative(-15.0f) - close() - moveTo(19.0f, 18.0f) - verticalLineTo(4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineTo(6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineTo(18.0f) - horizontalLineTo(19.0f) - close() - } - } - return _bookExclamationMark!! - } - -private var _bookExclamationMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookGlobe.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookGlobe.kt deleted file mode 100644 index 82d4c3f0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookGlobe.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BookGlobe: ImageVector - get() { - if (_bookGlobe != null) { - return _bookGlobe!! - } - _bookGlobe = fluentIcon(name = "Regular.BookGlobe") { - fluentPath { - moveTo(12.04f, 6.02f) - arcToRelative(4.75f, 4.75f, 0.0f, true, false, 0.34f, -0.02f) - horizontalLineToRelative(-0.01f) - arcToRelative(1.35f, 1.35f, 0.0f, false, false, -0.33f, 0.02f) - close() - moveTo(10.42f, 7.85f) - curveToRelative(-0.23f, 0.68f, -0.37f, 1.5f, -0.4f, 2.4f) - horizontalLineToRelative(-1.1f) - curveToRelative(0.14f, -1.0f, 0.7f, -1.86f, 1.5f, -2.4f) - close() - moveTo(10.04f, 11.75f) - curveToRelative(0.07f, 0.7f, 0.2f, 1.36f, 0.38f, 1.91f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -1.4f, -1.91f) - horizontalLineToRelative(1.02f) - close() - moveTo(14.01f, 13.85f) - curveToRelative(0.22f, -0.6f, 0.38f, -1.31f, 0.45f, -2.1f) - horizontalLineToRelative(1.27f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -1.72f, 2.1f) - close() - moveTo(12.95f, 11.75f) - arcToRelative(6.49f, 6.49f, 0.0f, false, true, -0.34f, 1.57f) - arcToRelative(2.06f, 2.06f, 0.0f, false, true, -0.36f, 0.64f) - lineToRelative(-0.02f, -0.02f) - curveToRelative(-0.1f, -0.11f, -0.22f, -0.31f, -0.34f, -0.62f) - arcToRelative(6.49f, 6.49f, 0.0f, false, true, -0.34f, -1.57f) - horizontalLineToRelative(1.4f) - close() - moveTo(12.99f, 10.25f) - lineTo(11.5f, 10.25f) - arcToRelative(7.1f, 7.1f, 0.0f, false, true, 0.38f, -2.07f) - arcToRelative(2.06f, 2.06f, 0.0f, false, true, 0.36f, -0.64f) - lineToRelative(0.02f, 0.02f) - curveToRelative(0.1f, 0.11f, 0.22f, 0.31f, 0.34f, 0.62f) - curveToRelative(0.2f, 0.52f, 0.34f, 1.24f, 0.38f, 2.07f) - close() - moveTo(14.49f, 10.25f) - arcTo(8.65f, 8.65f, 0.0f, false, false, 14.0f, 7.66f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 1.83f, 2.59f) - horizontalLineToRelative(-1.35f) - close() - moveTo(12.3f, 7.49f) - close() - moveTo(12.18f, 7.49f) - close() - moveTo(6.5f, 2.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) - verticalLineToRelative(15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(6.5f, 20.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - horizontalLineToRelative(14.25f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(20.5f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) - lineTo(6.5f, 2.0f) - close() - moveTo(19.0f, 4.5f) - lineTo(19.0f, 18.0f) - lineTo(5.5f, 18.0f) - lineTo(5.5f, 4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - lineTo(18.0f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - close() - moveTo(12.3f, 14.0f) - verticalLineToRelative(0.01f) - close() - } - } - return _bookGlobe!! - } - -private var _bookGlobe: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookInformation.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookInformation.kt deleted file mode 100644 index 45714a1f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookInformation.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BookInformation: ImageVector - get() { - if (_bookInformation != null) { - return _bookInformation!! - } - _bookInformation = fluentIcon(name = "Regular.BookInformation") { - fluentPath { - moveTo(13.25f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(11.5f, 9.75f) - verticalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - close() - moveTo(4.0f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) - horizontalLineTo(18.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) - verticalLineToRelative(14.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineTo(5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineTo(6.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) - verticalLineToRelative(-15.0f) - close() - moveTo(19.0f, 18.0f) - verticalLineTo(4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineTo(6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineTo(18.0f) - horizontalLineTo(19.0f) - close() - } - } - return _bookInformation!! - } - -private var _bookInformation: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookLetter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookLetter.kt deleted file mode 100644 index 24540918..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookLetter.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BookLetter: ImageVector - get() { - if (_bookLetter != null) { - return _bookLetter!! - } - _bookLetter = fluentIcon(name = "Regular.BookLetter") { - fluentPath { - moveTo(12.5f, 6.0f) - curveToRelative(-0.3f, 0.0f, -0.58f, 0.18f, -0.7f, 0.47f) - lineToRelative(-3.24f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.38f, 0.56f) - lineToRelative(0.83f, -2.03f) - horizontalLineToRelative(3.46f) - lineToRelative(0.83f, 2.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.38f, -0.56f) - lineToRelative(-3.25f, -8.0f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 12.5f, 6.0f) - close() - moveTo(11.38f, 11.5f) - lineTo(12.5f, 8.74f) - lineTo(13.62f, 11.5f) - horizontalLineToRelative(-2.24f) - close() - moveTo(4.0f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) - lineTo(18.0f, 2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) - verticalLineToRelative(14.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(5.5f, 19.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(6.5f, 22.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) - verticalLineToRelative(-15.0f) - close() - moveTo(5.5f, 18.0f) - lineTo(19.0f, 18.0f) - lineTo(19.0f, 4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(6.5f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - lineTo(5.5f, 18.0f) - close() - } - } - return _bookLetter!! - } - -private var _bookLetter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookNumber.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookNumber.kt deleted file mode 100644 index 36e375f7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookNumber.kt +++ /dev/null @@ -1,99 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BookNumber: ImageVector - get() { - if (_bookNumber != null) { - return _bookNumber!! - } - _bookNumber = fluentIcon(name = "Regular.BookNumber") { - fluentPath { - moveToRelative(11.02f, 7.57f) - lineToRelative(-0.22f, 0.91f) - lineTo(9.63f, 8.48f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - verticalLineToRelative(0.1f) - curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) - horizontalLineToRelative(0.7f) - lineToRelative(-0.38f, 1.59f) - horizontalLineToRelative(-0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - verticalLineToRelative(0.1f) - curveToRelative(0.06f, 0.36f, 0.37f, 0.65f, 0.75f, 0.65f) - horizontalLineToRelative(0.43f) - lineToRelative(-0.12f, 0.5f) - lineToRelative(-0.02f, 0.1f) - curveToRelative(-0.04f, 0.37f, 0.2f, 0.72f, 0.57f, 0.81f) - lineToRelative(0.1f, 0.02f) - curveToRelative(0.36f, 0.04f, 0.71f, -0.2f, 0.8f, -0.57f) - lineToRelative(0.21f, -0.86f) - horizontalLineToRelative(1.54f) - lineToRelative(-0.12f, 0.51f) - lineToRelative(-0.01f, 0.1f) - curveToRelative(-0.04f, 0.37f, 0.2f, 0.72f, 0.58f, 0.8f) - lineToRelative(0.1f, 0.02f) - curveToRelative(0.37f, 0.03f, 0.71f, -0.21f, 0.8f, -0.58f) - lineToRelative(0.2f, -0.85f) - horizontalLineToRelative(0.93f) - lineToRelative(0.1f, -0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.74f) - verticalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) - horizontalLineToRelative(-0.6f) - lineToRelative(0.37f, -1.59f) - horizontalLineToRelative(0.82f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - verticalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) - horizontalLineToRelative(-0.38f) - lineToRelative(0.13f, -0.56f) - lineToRelative(0.02f, -0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.58f, -0.8f) - lineToRelative(-0.1f, -0.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.8f, 0.58f) - lineToRelative(-0.2f, 0.9f) - horizontalLineToRelative(-1.48f) - lineToRelative(0.14f, -0.55f) - lineToRelative(0.02f, -0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.48f, -0.26f) - close() - moveTo(11.98f, 9.98f) - horizontalLineToRelative(1.49f) - lineToRelative(-0.36f, 1.59f) - horizontalLineToRelative(-1.52f) - lineToRelative(0.39f, -1.59f) - close() - moveTo(6.5f, 2.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) - verticalLineToRelative(15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(6.5f, 20.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - horizontalLineToRelative(14.25f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(20.5f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) - lineTo(6.5f, 2.0f) - close() - moveTo(19.0f, 18.0f) - lineTo(5.5f, 18.0f) - lineTo(5.5f, 4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - lineTo(18.0f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - lineTo(19.0f, 18.0f) - close() - } - } - return _bookNumber!! - } - -private var _bookNumber: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookOpen.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookOpen.kt deleted file mode 100644 index 2cab0075..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookOpen.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BookOpen: ImageVector - get() { - if (_bookOpen != null) { - return _bookOpen!! - } - _bookOpen = fluentIcon(name = "Regular.BookOpen") { - fluentPath { - moveTo(12.0f, 19.14f) - curveToRelative(-0.5f, 0.53f, -1.21f, 0.86f, -2.0f, 0.86f) - lineTo(3.75f, 20.0f) - curveTo(2.78f, 20.0f, 2.0f, 19.22f, 2.0f, 18.25f) - lineTo(2.0f, 5.75f) - curveTo(2.0f, 4.78f, 2.78f, 4.0f, 3.75f, 4.0f) - lineTo(10.0f, 4.0f) - curveToRelative(0.79f, 0.0f, 1.5f, 0.33f, 2.0f, 0.86f) - curveToRelative(0.5f, -0.53f, 1.21f, -0.86f, 2.0f, -0.86f) - horizontalLineToRelative(6.25f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(14.0f, 20.0f) - curveToRelative(-0.79f, 0.0f, -1.5f, -0.33f, -2.0f, -0.86f) - close() - moveTo(3.5f, 5.75f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - lineTo(10.0f, 18.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - lineTo(11.25f, 6.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(3.75f, 5.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - close() - moveTo(12.75f, 17.25f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(6.25f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - lineTo(20.5f, 5.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - lineTo(14.0f, 5.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(10.5f) - close() - } - } - return _bookOpen!! - } - -private var _bookOpen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookOpenGlobe.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookOpenGlobe.kt deleted file mode 100644 index a8457f0d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookOpenGlobe.kt +++ /dev/null @@ -1,105 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BookOpenGlobe: ImageVector - get() { - if (_bookOpenGlobe != null) { - return _bookOpenGlobe!! - } - _bookOpenGlobe = fluentIcon(name = "Regular.BookOpenGlobe") { - fluentPath { - moveTo(3.5f, 5.75f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineTo(10.0f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(8.96f) - curveToRelative(0.29f, -1.0f, 0.8f, -1.9f, 1.5f, -2.65f) - verticalLineTo(6.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(6.25f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(5.98f) - curveToRelative(0.55f, 0.29f, 1.06f, 0.65f, 1.5f, 1.08f) - verticalLineTo(5.75f) - curveTo(22.0f, 4.78f, 21.22f, 4.0f, 20.25f, 4.0f) - horizontalLineTo(14.0f) - curveToRelative(-0.79f, 0.0f, -1.5f, 0.33f, -2.0f, 0.86f) - arcTo(2.74f, 2.74f, 0.0f, false, false, 10.0f, 4.0f) - horizontalLineTo(3.75f) - curveTo(2.78f, 4.0f, 2.0f, 4.78f, 2.0f, 5.75f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineTo(10.0f) - curveToRelative(0.5f, 0.0f, 0.96f, -0.13f, 1.36f, -0.36f) - arcToRelative(6.47f, 6.47f, 0.0f, false, true, -0.34f, -1.66f) - curveToRelative(-0.23f, 0.31f, -0.6f, 0.52f, -1.02f, 0.52f) - horizontalLineTo(3.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineTo(5.75f) - close() - } - fluentPath { - moveTo(16.0f, 17.0f) - curveToRelative(0.05f, -1.41f, 0.25f, -2.67f, 0.56f, -3.58f) - curveToRelative(0.17f, -0.52f, 0.36f, -0.9f, 0.55f, -1.14f) - curveToRelative(0.2f, -0.25f, 0.33f, -0.28f, 0.39f, -0.28f) - reflectiveCurveToRelative(0.2f, 0.03f, 0.39f, 0.28f) - curveToRelative(0.19f, 0.24f, 0.38f, 0.62f, 0.55f, 1.14f) - curveToRelative(0.3f, 0.91f, 0.51f, 2.17f, 0.55f, 3.58f) - horizontalLineToRelative(-2.98f) - close() - } - fluentPath { - moveTo(15.61f, 13.1f) - curveToRelative(0.1f, -0.32f, 0.23f, -0.62f, 0.37f, -0.89f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 12.02f, 17.0f) - horizontalLineToRelative(2.99f) - curveToRelative(0.04f, -1.5f, 0.26f, -2.87f, 0.6f, -3.9f) - close() - } - fluentPath { - moveTo(19.39f, 13.1f) - curveToRelative(-0.1f, -0.32f, -0.23f, -0.62f, -0.37f, -0.89f) - arcTo(5.5f, 5.5f, 0.0f, false, true, 22.98f, 17.0f) - horizontalLineToRelative(-2.99f) - curveToRelative(-0.04f, -1.5f, -0.26f, -2.87f, -0.6f, -3.9f) - close() - } - fluentPath { - moveTo(20.0f, 18.0f) - horizontalLineToRelative(2.98f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, -3.96f, 4.79f) - curveToRelative(0.14f, -0.27f, 0.26f, -0.57f, 0.37f, -0.89f) - curveToRelative(0.34f, -1.03f, 0.56f, -2.4f, 0.6f, -3.9f) - close() - } - fluentPath { - moveTo(17.89f, 22.72f) - curveToRelative(-0.2f, 0.25f, -0.33f, 0.28f, -0.39f, 0.28f) - reflectiveCurveToRelative(-0.2f, -0.03f, -0.39f, -0.28f) - arcToRelative(3.84f, 3.84f, 0.0f, false, true, -0.55f, -1.14f) - curveToRelative(-0.3f, -0.91f, -0.51f, -2.17f, -0.55f, -3.58f) - horizontalLineToRelative(2.98f) - arcToRelative(12.91f, 12.91f, 0.0f, false, true, -0.55f, 3.58f) - curveToRelative(-0.17f, 0.52f, -0.36f, 0.9f, -0.55f, 1.14f) - close() - } - fluentPath { - moveTo(12.02f, 18.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 3.96f, 4.79f) - arcToRelative(6.13f, 6.13f, 0.0f, false, true, -0.37f, -0.89f) - curveToRelative(-0.34f, -1.03f, -0.56f, -2.4f, -0.6f, -3.9f) - horizontalLineToRelative(-2.99f) - close() - } - } - return _bookOpenGlobe!! - } - -private var _bookOpenGlobe: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookOpenMicrophone.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookOpenMicrophone.kt deleted file mode 100644 index e39289e4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookOpenMicrophone.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BookOpenMicrophone: ImageVector - get() { - if (_bookOpenMicrophone != null) { - return _bookOpenMicrophone!! - } - _bookOpenMicrophone = fluentIcon(name = "Regular.BookOpenMicrophone") { - fluentPath { - moveTo(12.0f, 19.14f) - curveToRelative(-0.5f, 0.53f, -1.21f, 0.86f, -2.0f, 0.86f) - lineTo(3.75f, 20.0f) - curveTo(2.78f, 20.0f, 2.0f, 19.22f, 2.0f, 18.25f) - lineTo(2.0f, 5.75f) - curveTo(2.0f, 4.78f, 2.78f, 4.0f, 3.75f, 4.0f) - lineTo(10.0f, 4.0f) - curveToRelative(0.79f, 0.0f, 1.5f, 0.33f, 2.0f, 0.86f) - curveToRelative(0.5f, -0.53f, 1.21f, -0.86f, 2.0f, -0.86f) - horizontalLineToRelative(6.25f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(8.75f) - arcToRelative(3.53f, 3.53f, 0.0f, false, false, -1.5f, -2.87f) - lineTo(20.5f, 5.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - lineTo(14.0f, 5.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.3f, 0.1f, 0.58f, 0.28f, 0.8f) - arcToRelative(4.49f, 4.49f, 0.0f, false, false, 0.72f, 1.94f) - arcToRelative(2.74f, 2.74f, 0.0f, false, true, -1.75f, -0.85f) - close() - moveTo(3.5f, 5.75f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - lineTo(10.0f, 18.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - lineTo(11.25f, 6.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(3.75f, 5.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - close() - moveTo(20.51f, 19.98f) - curveToRelative(0.9f, -0.52f, 1.49f, -1.4f, 1.49f, -2.48f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - curveToRelative(0.0f, 2.0f, -1.75f, 3.72f, -4.0f, 3.97f) - verticalLineToRelative(1.03f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-1.03f) - arcTo(4.77f, 4.77f, 0.0f, false, true, 15.02f, 20.0f) - arcToRelative(3.96f, 3.96f, 0.0f, false, true, -0.87f, -1.5f) - curveToRelative(-0.1f, -0.32f, -0.15f, -0.66f, -0.15f, -1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 0.72f, 1.86f) - curveToRelative(0.22f, 0.25f, 0.5f, 0.47f, 0.8f, 0.64f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 1.98f, 0.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 2.01f, -0.52f) - close() - moveTo(18.5f, 19.5f) - curveToRelative(-0.86f, 0.0f, -1.56f, -0.41f, -2.0f, -1.0f) - curveToRelative(-0.32f, -0.44f, -0.5f, -0.97f, -0.5f, -1.5f) - verticalLineToRelative(-2.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - lineTo(21.0f, 17.0f) - curveToRelative(0.0f, 1.25f, -1.0f, 2.5f, -2.5f, 2.5f) - close() - } - } - return _bookOpenMicrophone!! - } - -private var _bookOpenMicrophone: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookPulse.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookPulse.kt deleted file mode 100644 index 777b4ce6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookPulse.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BookPulse: ImageVector - get() { - if (_bookPulse != null) { - return _bookPulse!! - } - _bookPulse = fluentIcon(name = "Regular.BookPulse") { - fluentPath { - moveTo(11.7f, 7.46f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.37f, -0.05f) - lineTo(8.79f, 10.5f) - horizontalLineTo(7.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.5f) - curveToRelative(0.28f, 0.0f, 0.54f, -0.16f, 0.67f, -0.41f) - lineToRelative(1.02f, -2.05f) - lineToRelative(2.12f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.34f, 0.09f) - lineTo(15.93f, 12.0f) - horizontalLineToRelative(0.82f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.37f) - lineToRelative(-1.0f, 1.7f) - lineToRelative(-2.16f, -5.11f) - close() - moveTo(6.5f, 2.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) - verticalLineToRelative(15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - horizontalLineToRelative(14.25f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineTo(4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) - horizontalLineTo(6.5f) - close() - moveTo(19.0f, 18.0f) - horizontalLineTo(5.5f) - verticalLineTo(4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineTo(18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineTo(18.0f) - close() - } - } - return _bookPulse!! - } - -private var _bookPulse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookQuestionMark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookQuestionMark.kt deleted file mode 100644 index 6ac9e3dd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookQuestionMark.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BookQuestionMark: ImageVector - get() { - if (_bookQuestionMark != null) { - return _bookQuestionMark!! - } - _bookQuestionMark = fluentIcon(name = "Regular.BookQuestionMark") { - fluentPath { - moveTo(11.0f, 8.02f) - curveToRelative(0.0f, 0.4f, -0.34f, 0.73f, -0.75f, 0.73f) - curveTo(9.5f, 8.75f, 9.5f, 8.0f, 9.5f, 8.0f) - verticalLineToRelative(-0.01f) - arcToRelative(1.4f, 1.4f, 0.0f, false, true, 0.0f, -0.13f) - lineToRelative(0.06f, -0.28f) - curveToRelative(0.05f, -0.22f, 0.16f, -0.5f, 0.37f, -0.8f) - curveToRelative(0.45f, -0.6f, 1.27f, -1.05f, 2.58f, -1.03f) - curveToRelative(0.95f, 0.02f, 1.8f, 0.41f, 2.32f, 1.07f) - curveToRelative(0.54f, 0.67f, 0.72f, 1.57f, 0.37f, 2.46f) - curveToRelative(-0.37f, 0.9f, -1.19f, 1.26f, -1.66f, 1.47f) - lineToRelative(-0.05f, 0.02f) - curveToRelative(-0.28f, 0.13f, -0.4f, 0.19f, -0.49f, 0.25f) - verticalLineToRelative(0.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(11.5f, 11.0f) - curveToRelative(0.0f, -0.52f, 0.25f, -0.9f, 0.56f, -1.15f) - curveToRelative(0.25f, -0.2f, 0.57f, -0.34f, 0.79f, -0.43f) - lineToRelative(0.04f, -0.02f) - curveToRelative(0.54f, -0.24f, 0.8f, -0.39f, 0.91f, -0.68f) - arcToRelative(0.92f, 0.92f, 0.0f, false, false, -0.13f, -0.96f) - curveToRelative(-0.23f, -0.27f, -0.63f, -0.5f, -1.18f, -0.51f) - curveToRelative(-0.94f, -0.02f, -1.25f, 0.29f, -1.36f, 0.43f) - arcToRelative(0.72f, 0.72f, 0.0f, false, false, -0.13f, 0.33f) - close() - moveTo(12.25f, 15.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(4.0f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) - lineTo(18.0f, 2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) - verticalLineToRelative(14.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(5.5f, 19.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(6.5f, 22.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) - verticalLineToRelative(-15.0f) - close() - moveTo(5.5f, 4.5f) - lineTo(5.5f, 18.0f) - lineTo(19.0f, 18.0f) - lineTo(19.0f, 4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(6.5f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - close() - } - } - return _bookQuestionMark!! - } - -private var _bookQuestionMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookQuestionMarkRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookQuestionMarkRtl.kt deleted file mode 100644 index 308caf73..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookQuestionMarkRtl.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BookQuestionMarkRtl: ImageVector - get() { - if (_bookQuestionMarkRtl != null) { - return _bookQuestionMarkRtl!! - } - _bookQuestionMarkRtl = fluentIcon(name = "Regular.BookQuestionMarkRtl") { - fluentPath { - moveTo(14.5f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.73f) - lineToRelative(-0.01f, -0.08f) - arcToRelative(0.72f, 0.72f, 0.0f, false, false, -0.12f, -0.26f) - curveToRelative(-0.11f, -0.15f, -0.42f, -0.45f, -1.36f, -0.43f) - curveToRelative(-0.55f, 0.0f, -0.95f, 0.24f, -1.18f, 0.51f) - arcToRelative(0.92f, 0.92f, 0.0f, false, false, -0.13f, 0.96f) - curveToRelative(0.11f, 0.3f, 0.37f, 0.44f, 0.91f, 0.68f) - lineToRelative(0.04f, 0.02f) - curveToRelative(0.22f, 0.1f, 0.54f, 0.23f, 0.79f, 0.43f) - curveToRelative(0.3f, 0.25f, 0.56f, 0.63f, 0.56f, 1.15f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - verticalLineToRelative(-0.73f) - arcToRelative(2.49f, 2.49f, 0.0f, false, false, -0.5f, -0.25f) - lineToRelative(-0.04f, -0.02f) - curveToRelative(-0.47f, -0.2f, -1.3f, -0.57f, -1.66f, -1.47f) - curveToRelative(-0.35f, -0.89f, -0.17f, -1.8f, 0.37f, -2.46f) - arcToRelative(3.02f, 3.02f, 0.0f, false, true, 2.32f, -1.07f) - curveToRelative(1.31f, -0.02f, 2.13f, 0.43f, 2.58f, 1.04f) - arcToRelative(2.22f, 2.22f, 0.0f, false, true, 0.43f, 1.2f) - reflectiveCurveToRelative(0.0f, 0.76f, -0.75f, 0.76f) - close() - moveTo(11.5f, 14.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) - close() - moveTo(6.5f, 2.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) - verticalLineToRelative(15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(6.5f, 20.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - horizontalLineToRelative(14.25f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(20.5f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) - lineTo(6.5f, 2.0f) - close() - moveTo(5.5f, 18.0f) - lineTo(5.5f, 4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - lineTo(18.0f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - lineTo(19.0f, 18.0f) - lineTo(5.5f, 18.0f) - close() - } - } - return _bookQuestionMarkRtl!! - } - -private var _bookQuestionMarkRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookSearch.kt deleted file mode 100644 index 0e08fc5a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookSearch.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BookSearch: ImageVector - get() { - if (_bookSearch != null) { - return _bookSearch!! - } - _bookSearch = fluentIcon(name = "Regular.BookSearch") { - fluentPath { - moveTo(14.82f, 11.8f) - arcToRelative(3.72f, 3.72f, 0.0f, true, false, -1.02f, 1.02f) - lineToRelative(2.47f, 2.47f) - lineToRelative(0.07f, 0.06f) - arcToRelative(0.72f, 0.72f, 0.0f, false, false, 0.95f, -1.09f) - lineToRelative(-2.47f, -2.46f) - close() - moveTo(11.72f, 7.45f) - arcToRelative(2.28f, 2.28f, 0.0f, true, true, 0.0f, 4.55f) - arcToRelative(2.28f, 2.28f, 0.0f, false, true, 0.0f, -4.55f) - close() - moveTo(6.5f, 2.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) - verticalLineToRelative(15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(6.5f, 20.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - horizontalLineToRelative(14.25f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(20.5f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) - lineTo(6.5f, 2.0f) - close() - moveTo(19.0f, 18.0f) - lineTo(5.5f, 18.0f) - lineTo(5.5f, 4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - lineTo(18.0f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - lineTo(19.0f, 18.0f) - close() - } - } - return _bookSearch!! - } - -private var _bookSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookStar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookStar.kt deleted file mode 100644 index 151a82bd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookStar.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BookStar: ImageVector - get() { - if (_bookStar != null) { - return _bookStar!! - } - _bookStar = fluentIcon(name = "Regular.BookStar") { - fluentPath { - moveToRelative(10.54f, 8.6f) - lineToRelative(1.1f, -2.22f) - curveToRelative(0.25f, -0.5f, 0.97f, -0.5f, 1.22f, 0.0f) - lineToRelative(1.1f, 2.23f) - lineToRelative(2.46f, 0.36f) - curveToRelative(0.56f, 0.08f, 0.78f, 0.76f, 0.37f, 1.15f) - lineToRelative(-1.78f, 1.74f) - lineToRelative(0.42f, 2.45f) - curveToRelative(0.1f, 0.55f, -0.48f, 0.97f, -0.98f, 0.71f) - lineToRelative(-2.2f, -1.15f) - lineToRelative(-2.2f, 1.15f) - arcToRelative(0.68f, 0.68f, 0.0f, false, true, -0.98f, -0.71f) - lineToRelative(0.42f, -2.45f) - lineToRelative(-1.78f, -1.74f) - arcToRelative(0.68f, 0.68f, 0.0f, false, true, 0.37f, -1.15f) - lineToRelative(2.46f, -0.36f) - close() - moveTo(11.6f, 9.53f) - curveToRelative(-0.1f, 0.2f, -0.29f, 0.34f, -0.51f, 0.37f) - lineToRelative(-1.45f, 0.21f) - lineToRelative(1.05f, 1.02f) - curveToRelative(0.16f, 0.16f, 0.23f, 0.39f, 0.2f, 0.6f) - lineToRelative(-0.26f, 1.45f) - lineToRelative(1.3f, -0.68f) - curveToRelative(0.2f, -0.1f, 0.44f, -0.1f, 0.64f, 0.0f) - lineToRelative(1.3f, 0.68f) - lineToRelative(-0.25f, -1.44f) - arcToRelative(0.68f, 0.68f, 0.0f, false, true, 0.2f, -0.6f) - lineToRelative(1.04f, -1.03f) - lineToRelative(-1.45f, -0.21f) - arcToRelative(0.68f, 0.68f, 0.0f, false, true, -0.51f, -0.37f) - lineToRelative(-0.65f, -1.32f) - lineToRelative(-0.65f, 1.32f) - close() - moveTo(6.5f, 2.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) - verticalLineToRelative(15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(6.5f, 20.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - horizontalLineToRelative(14.25f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(20.5f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) - lineTo(6.5f, 2.0f) - close() - moveTo(19.0f, 18.0f) - lineTo(5.5f, 18.0f) - lineTo(5.5f, 4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - lineTo(18.0f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - lineTo(19.0f, 18.0f) - close() - } - } - return _bookStar!! - } - -private var _bookStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookTheta.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookTheta.kt deleted file mode 100644 index 4a70477e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookTheta.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BookTheta: ImageVector - get() { - if (_bookTheta != null) { - return _bookTheta!! - } - _bookTheta = fluentIcon(name = "Regular.BookTheta") { - fluentPath { - moveTo(12.5f, 16.5f) - curveToRelative(2.2f, 0.0f, 4.0f, -2.46f, 4.0f, -5.5f) - reflectiveCurveToRelative(-1.8f, -5.5f, -4.0f, -5.5f) - reflectiveCurveToRelative(-4.0f, 2.46f, -4.0f, 5.5f) - reflectiveCurveToRelative(1.8f, 5.5f, 4.0f, 5.5f) - close() - moveTo(14.12f, 14.0f) - curveToRelative(-0.52f, 0.72f, -1.11f, 1.0f, -1.62f, 1.0f) - curveToRelative(-0.5f, 0.0f, -1.1f, -0.28f, -1.62f, -1.0f) - arcToRelative(4.79f, 4.79f, 0.0f, false, true, -0.8f, -2.0f) - horizontalLineToRelative(4.84f) - curveToRelative(-0.14f, 0.8f, -0.43f, 1.5f, -0.8f, 2.0f) - close() - moveTo(14.12f, 8.0f) - curveToRelative(0.44f, 0.6f, 0.78f, 1.48f, 0.86f, 2.5f) - horizontalLineToRelative(-4.96f) - curveToRelative(0.08f, -1.02f, 0.42f, -1.9f, 0.86f, -2.5f) - curveToRelative(0.52f, -0.72f, 1.11f, -1.0f, 1.62f, -1.0f) - curveToRelative(0.5f, 0.0f, 1.1f, 0.28f, 1.62f, 1.0f) - close() - moveTo(6.5f, 2.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) - verticalLineToRelative(15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(6.5f, 20.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - horizontalLineToRelative(14.25f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(20.5f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) - lineTo(6.5f, 2.0f) - close() - moveTo(19.0f, 18.0f) - lineTo(5.5f, 18.0f) - lineTo(5.5f, 4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - lineTo(18.0f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - lineTo(19.0f, 18.0f) - close() - } - } - return _bookTheta!! - } - -private var _bookTheta: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookToolbox.kt deleted file mode 100644 index 42a52ffa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookToolbox.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BookToolbox: ImageVector - get() { - if (_bookToolbox != null) { - return _bookToolbox!! - } - _bookToolbox = fluentIcon(name = "Regular.BookToolbox") { - fluentPath { - moveTo(14.0f, 4.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - lineTo(12.0f, 7.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(16.0f, 7.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(20.5f, 7.0f) - lineTo(23.0f, 7.0f) - lineTo(23.0f, 5.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(21.0f, 4.0f) - lineTo(21.0f, 3.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.5f) - curveTo(14.78f, 1.25f, 14.0f, 2.03f, 14.0f, 3.0f) - verticalLineToRelative(1.0f) - close() - moveTo(15.5f, 3.0f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-4.0f) - lineTo(15.5f, 3.0f) - close() - moveTo(12.0f, 10.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(16.0f, 8.5f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(20.5f, 8.5f) - lineTo(23.0f, 8.5f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - close() - moveTo(13.0f, 3.05f) - curveToRelative(-0.37f, 0.08f, -0.71f, 0.23f, -1.0f, 0.45f) - lineTo(6.5f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - lineTo(5.5f, 18.0f) - lineTo(19.0f, 18.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(1.5f) - verticalLineToRelative(5.75f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(5.5f, 19.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(6.5f, 22.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) - verticalLineToRelative(-15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) - horizontalLineToRelative(6.69f) - curveToRelative(-0.12f, 0.31f, -0.19f, 0.65f, -0.19f, 1.0f) - verticalLineToRelative(0.05f) - close() - } - } - return _bookToolbox!! - } - -private var _bookToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Bookmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Bookmark.kt deleted file mode 100644 index 0617344f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Bookmark.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Bookmark: ImageVector - get() { - if (_bookmark != null) { - return _bookmark!! - } - _bookmark = fluentIcon(name = "Regular.Bookmark") { - fluentPath { - moveTo(6.2f, 21.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.2f, -0.6f) - verticalLineToRelative(-15.0f) - curveTo(5.0f, 4.45f, 6.46f, 3.0f, 8.25f, 3.0f) - horizontalLineToRelative(7.5f) - curveTo(17.55f, 3.0f, 19.0f, 4.46f, 19.0f, 6.25f) - verticalLineToRelative(15.0f) - curveToRelative(0.0f, 0.6f, -0.7f, 0.96f, -1.19f, 0.6f) - lineToRelative(-5.8f, -4.18f) - lineToRelative(-5.82f, 4.18f) - close() - moveTo(17.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-7.5f) - curveToRelative(-0.96f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(13.53f) - lineToRelative(5.06f, -3.64f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.88f, 0.0f) - lineToRelative(5.06f, 3.64f) - lineTo(17.5f, 6.25f) - close() - } - } - return _bookmark!! - } - -private var _bookmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookmarkAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookmarkAdd.kt deleted file mode 100644 index 32c7568b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookmarkAdd.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BookmarkAdd: ImageVector - get() { - if (_bookmarkAdd != null) { - return _bookmarkAdd!! - } - _bookmarkAdd = fluentIcon(name = "Regular.BookmarkAdd") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 7.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 7.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 6.0f) - lineTo(17.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - lineTo(18.0f, 6.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 7.0f) - close() - moveTo(17.5f, 19.78f) - lineTo(17.5f, 13.0f) - curveToRelative(0.52f, 0.0f, 1.02f, -0.06f, 1.5f, -0.17f) - verticalLineToRelative(8.42f) - curveToRelative(0.0f, 0.6f, -0.7f, 0.96f, -1.19f, 0.6f) - lineToRelative(-5.8f, -4.18f) - lineToRelative(-5.82f, 4.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.19f, -0.6f) - verticalLineToRelative(-15.0f) - curveTo(5.0f, 4.45f, 6.46f, 3.0f, 8.25f, 3.0f) - horizontalLineToRelative(3.77f) - curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) - lineTo(8.24f, 4.5f) - curveToRelative(-0.96f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(13.53f) - lineToRelative(5.06f, -3.64f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.88f, 0.0f) - lineToRelative(5.06f, 3.64f) - close() - } - } - return _bookmarkAdd!! - } - -private var _bookmarkAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookmarkMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookmarkMultiple.kt deleted file mode 100644 index 65371632..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookmarkMultiple.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BookmarkMultiple: ImageVector - get() { - if (_bookmarkMultiple != null) { - return _bookmarkMultiple!! - } - _bookmarkMultiple = fluentIcon(name = "Regular.BookmarkMultiple") { - fluentPath { - moveTo(4.0f, 6.75f) - curveTo(4.0f, 5.5f, 5.0f, 4.5f, 6.25f, 4.5f) - horizontalLineToRelative(9.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, 0.65f) - lineToRelative(-5.62f, -3.28f) - lineToRelative(-5.62f, 3.28f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 4.0f, 21.25f) - lineTo(4.0f, 6.75f) - close() - moveTo(6.25f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(13.2f) - lineToRelative(4.87f, -2.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.76f, 0.0f) - lineTo(16.0f, 19.94f) - lineTo(16.0f, 6.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.74f) - horizontalLineToRelative(-9.0f) - close() - moveTo(15.25f, 2.0f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 20.0f, 6.75f) - verticalLineToRelative(11.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(18.5f, 6.75f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - lineTo(6.64f, 3.5f) - reflectiveCurveToRelative(0.11f, -0.56f, 0.8f, -1.08f) - curveTo(8.0f, 2.0f, 8.6f, 2.0f, 8.6f, 2.0f) - horizontalLineToRelative(6.65f) - close() - } - } - return _bookmarkMultiple!! - } - -private var _bookmarkMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookmarkOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookmarkOff.kt deleted file mode 100644 index 6cbf3be8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookmarkOff.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BookmarkOff: ImageVector - get() { - if (_bookmarkOff != null) { - return _bookmarkOff!! - } - _bookmarkOff = fluentIcon(name = "Regular.BookmarkOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(2.79f, 2.79f) - verticalLineToRelative(15.18f) - curveToRelative(0.0f, 0.6f, 0.68f, 0.96f, 1.18f, 0.6f) - lineTo(12.0f, 17.67f) - lineToRelative(5.81f, 4.18f) - curveToRelative(0.5f, 0.36f, 1.2f, 0.0f, 1.2f, -0.6f) - verticalLineToRelative(-1.19f) - lineToRelative(1.7f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.07f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(17.5f, 18.56f) - verticalLineToRelative(1.22f) - lineToRelative(-5.06f, -3.64f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.88f, 0.0f) - lineTo(6.5f, 19.78f) - lineTo(6.5f, 7.56f) - lineToRelative(11.0f, 11.0f) - close() - moveTo(17.5f, 6.25f) - verticalLineToRelative(8.07f) - lineToRelative(1.5f, 1.5f) - lineTo(19.0f, 6.25f) - curveTo(19.0f, 4.45f, 17.55f, 3.0f, 15.75f, 3.0f) - horizontalLineToRelative(-7.5f) - curveToRelative(-0.6f, 0.0f, -1.15f, 0.16f, -1.63f, 0.44f) - lineToRelative(1.13f, 1.13f) - curveToRelative(0.16f, -0.05f, 0.33f, -0.07f, 0.5f, -0.07f) - horizontalLineToRelative(7.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - close() - } - } - return _bookmarkOff!! - } - -private var _bookmarkOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookmarkSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookmarkSearch.kt deleted file mode 100644 index 5452a46a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BookmarkSearch.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BookmarkSearch: ImageVector - get() { - if (_bookmarkSearch != null) { - return _bookmarkSearch!! - } - _bookmarkSearch = fluentIcon(name = "Regular.BookmarkSearch") { - fluentPath { - moveTo(19.1f, 9.17f) - arcToRelative(4.5f, 4.5f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(2.62f, 2.61f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(19.1f, 9.17f) - close() - moveTo(19.5f, 5.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, -6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 6.0f, 0.0f) - close() - moveTo(19.0f, 10.48f) - verticalLineToRelative(10.76f) - curveToRelative(0.0f, 0.62f, -0.7f, 0.97f, -1.19f, 0.61f) - lineToRelative(-5.8f, -4.18f) - lineToRelative(-5.82f, 4.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.19f, -0.6f) - verticalLineToRelative(-15.0f) - curveTo(5.0f, 4.45f, 6.46f, 3.0f, 8.25f, 3.0f) - horizontalLineToRelative(3.35f) - curveToRelative(-0.24f, 0.46f, -0.41f, 0.97f, -0.51f, 1.5f) - lineTo(8.25f, 4.5f) - curveToRelative(-0.96f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(13.53f) - lineToRelative(5.06f, -3.64f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.88f, 0.0f) - lineToRelative(5.06f, 3.64f) - verticalLineToRelative(-8.87f) - curveToRelative(0.51f, -0.1f, 1.0f, -0.26f, 1.45f, -0.48f) - lineToRelative(0.05f, 0.05f) - close() - } - } - return _bookmarkSearch!! - } - -private var _bookmarkSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderAll.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderAll.kt deleted file mode 100644 index db2f121f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderAll.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BorderAll: ImageVector - get() { - if (_borderAll != null) { - return _borderAll!! - } - _borderAll = fluentIcon(name = "Regular.BorderAll") { - fluentPath { - moveTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) - lineTo(5.75f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - close() - moveTo(12.75f, 19.5f) - horizontalLineToRelative(5.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-5.5f) - horizontalLineToRelative(-6.75f) - verticalLineToRelative(6.75f) - close() - moveTo(11.25f, 12.75f) - lineTo(4.5f, 12.75f) - verticalLineToRelative(5.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(5.5f) - verticalLineToRelative(-6.75f) - close() - moveTo(12.75f, 11.25f) - horizontalLineToRelative(6.75f) - verticalLineToRelative(-5.5f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-5.5f) - verticalLineToRelative(6.75f) - close() - moveTo(11.25f, 4.5f) - horizontalLineToRelative(-5.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(5.5f) - horizontalLineToRelative(6.75f) - lineTo(11.25f, 4.5f) - close() - } - } - return _borderAll!! - } - -private var _borderAll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderBottom.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderBottom.kt deleted file mode 100644 index ce9083a5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderBottom.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BorderBottom: ImageVector - get() { - if (_borderBottom != null) { - return _borderBottom!! - } - _borderBottom = fluentIcon(name = "Regular.BorderBottom") { - fluentPath { - moveTo(6.25f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(0.5f) - close() - moveTo(17.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) - horizontalLineToRelative(-0.5f) - close() - moveTo(3.75f, 10.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(19.5f, 10.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - close() - moveTo(14.0f, 3.75f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(3.0f, 17.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(12.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) - lineTo(5.75f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - verticalLineToRelative(-0.5f) - close() - } - } - return _borderBottom!! - } - -private var _borderBottom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderBottomDouble.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderBottomDouble.kt deleted file mode 100644 index d0377069..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderBottomDouble.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BorderBottomDouble: ImageVector - get() { - if (_borderBottomDouble != null) { - return _borderBottomDouble!! - } - _borderBottomDouble = fluentIcon(name = "Regular.BorderBottomDouble") { - fluentPath { - moveTo(13.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.5f) - close() - moveTo(3.75f, 10.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(20.25f, 10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(3.75f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(3.75f, 21.0f) - close() - moveTo(3.0f, 17.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(7.0f, 3.75f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 6.25f, 3.0f) - horizontalLineToRelative(-0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(0.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - close() - moveTo(17.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) - horizontalLineToRelative(-0.5f) - close() - } - } - return _borderBottomDouble!! - } - -private var _borderBottomDouble: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderBottomThick.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderBottomThick.kt deleted file mode 100644 index 6b9e2f16..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderBottomThick.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BorderBottomThick: ImageVector - get() { - if (_borderBottomThick != null) { - return _borderBottomThick!! - } - _borderBottomThick = fluentIcon(name = "Regular.BorderBottomThick") { - fluentPath { - moveTo(14.0f, 3.75f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(4.5f, 10.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.5f) - close() - moveTo(19.5f, 10.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - close() - moveTo(6.25f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(0.5f) - close() - moveTo(17.0f, 3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(3.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - lineTo(6.0f, 21.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - close() - } - } - return _borderBottomThick!! - } - -private var _borderBottomThick: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderLeft.kt deleted file mode 100644 index 205f198a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderLeft.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BorderLeft: ImageVector - get() { - if (_borderLeft != null) { - return _borderLeft!! - } - _borderLeft = fluentIcon(name = "Regular.BorderLeft") { - fluentPath { - moveTo(6.25f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(0.5f) - close() - moveTo(13.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.5f) - close() - moveTo(19.5f, 10.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - close() - moveTo(14.0f, 20.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(17.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) - horizontalLineToRelative(-0.5f) - close() - moveTo(17.0f, 20.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) - verticalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - } - } - return _borderLeft!! - } - -private var _borderLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderLeftRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderLeftRight.kt deleted file mode 100644 index 8ed2f63a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderLeftRight.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BorderLeftRight: ImageVector - get() { - if (_borderLeftRight != null) { - return _borderLeftRight!! - } - _borderLeftRight = fluentIcon(name = "Regular.BorderLeftRight") { - fluentPath { - moveTo(17.0f, 3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - lineTo(19.5f, 5.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(13.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.5f) - close() - moveTo(13.25f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.5f) - close() - moveTo(6.25f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(0.5f) - close() - } - } - return _borderLeftRight!! - } - -private var _borderLeftRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderNone.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderNone.kt deleted file mode 100644 index c9447ded..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderNone.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BorderNone: ImageVector - get() { - if (_borderNone != null) { - return _borderNone!! - } - _borderNone = fluentIcon(name = "Regular.BorderNone") { - fluentPath { - moveTo(14.0f, 3.75f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(4.5f, 10.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.5f) - close() - moveTo(19.5f, 10.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - close() - moveTo(13.25f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.5f) - close() - moveTo(7.0f, 3.75f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 6.25f, 3.0f) - horizontalLineToRelative(-0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(0.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - close() - moveTo(17.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) - horizontalLineToRelative(-0.5f) - close() - moveTo(7.0f, 20.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - verticalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(0.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(17.75f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) - horizontalLineToRelative(-0.5f) - close() - } - } - return _borderNone!! - } - -private var _borderNone: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderOutside.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderOutside.kt deleted file mode 100644 index 2bb09a66..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderOutside.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BorderOutside: ImageVector - get() { - if (_borderOutside != null) { - return _borderOutside!! - } - _borderOutside = fluentIcon(name = "Regular.BorderOutside") { - fluentPath { - moveTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) - horizontalLineTo(5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - verticalLineTo(5.75f) - close() - moveTo(5.75f, 4.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(12.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineTo(5.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineTo(5.75f) - close() - } - } - return _borderOutside!! - } - -private var _borderOutside: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderOutsideThick.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderOutsideThick.kt deleted file mode 100644 index dc1df0cb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderOutsideThick.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BorderOutsideThick: ImageVector - get() { - if (_borderOutsideThick != null) { - return _borderOutsideThick!! - } - _borderOutsideThick = fluentIcon(name = "Regular.BorderOutsideThick") { - fluentPath { - moveTo(3.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - lineTo(6.0f, 21.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(3.0f, 6.0f) - close() - moveTo(6.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - lineTo(19.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(6.0f, 5.0f) - close() - } - } - return _borderOutsideThick!! - } - -private var _borderOutsideThick: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderRight.kt deleted file mode 100644 index 06aeae8a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderRight.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BorderRight: ImageVector - get() { - if (_borderRight != null) { - return _borderRight!! - } - _borderRight = fluentIcon(name = "Regular.BorderRight") { - fluentPath { - moveTo(13.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.5f) - close() - moveTo(4.5f, 10.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.5f) - close() - moveTo(14.0f, 20.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(6.25f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(0.5f) - close() - moveTo(7.0f, 20.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - verticalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(0.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(17.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) - lineTo(21.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) - horizontalLineToRelative(-0.5f) - close() - } - } - return _borderRight!! - } - -private var _borderRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderTop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderTop.kt deleted file mode 100644 index 5627cff2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderTop.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BorderTop: ImageVector - get() { - if (_borderTop != null) { - return _borderTop!! - } - _borderTop = fluentIcon(name = "Regular.BorderTop") { - fluentPath { - moveTo(3.0f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(12.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) - lineTo(5.75f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(0.5f) - close() - moveTo(4.5f, 10.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.5f) - close() - moveTo(19.5f, 10.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - close() - moveTo(14.0f, 20.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(6.25f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - verticalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) - horizontalLineToRelative(0.5f) - close() - moveTo(17.0f, 20.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) - verticalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - } - } - return _borderTop!! - } - -private var _borderTop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderTopBottom.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderTopBottom.kt deleted file mode 100644 index f66079a6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderTopBottom.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BorderTopBottom: ImageVector - get() { - if (_borderTopBottom != null) { - return _borderTopBottom!! - } - _borderTopBottom = fluentIcon(name = "Regular.BorderTopBottom") { - fluentPath { - moveTo(3.75f, 7.0f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 6.25f) - verticalLineToRelative(-0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(5.75f, 4.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - close() - moveTo(4.5f, 10.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.5f) - close() - moveTo(19.5f, 10.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - close() - moveTo(3.0f, 17.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(12.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) - lineTo(5.75f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - verticalLineToRelative(-0.5f) - close() - } - } - return _borderTopBottom!! - } - -private var _borderTopBottom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderTopBottomDouble.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderTopBottomDouble.kt deleted file mode 100644 index 2bc0220b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderTopBottomDouble.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BorderTopBottomDouble: ImageVector - get() { - if (_borderTopBottomDouble != null) { - return _borderTopBottomDouble!! - } - _borderTopBottomDouble = fluentIcon(name = "Regular.BorderTopBottomDouble") { - fluentPath { - moveTo(3.0f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(12.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) - lineTo(5.75f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(0.5f) - close() - moveTo(3.75f, 10.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(20.25f, 10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(3.0f, 20.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(3.75f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(3.75f, 18.5f) - close() - } - } - return _borderTopBottomDouble!! - } - -private var _borderTopBottomDouble: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderTopBottomThick.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderTopBottomThick.kt deleted file mode 100644 index 09155a37..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BorderTopBottomThick.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BorderTopBottomThick: ImageVector - get() { - if (_borderTopBottomThick != null) { - return _borderTopBottomThick!! - } - _borderTopBottomThick = fluentIcon(name = "Regular.BorderTopBottomThick") { - fluentPath { - moveTo(3.0f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(12.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) - lineTo(5.75f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(0.5f) - close() - moveTo(4.5f, 10.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.5f) - close() - moveTo(19.5f, 10.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - close() - moveTo(4.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) - horizontalLineToRelative(12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - lineTo(6.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - } - } - return _borderTopBottomThick!! - } - -private var _borderTopBottomThick: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Bot.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Bot.kt deleted file mode 100644 index b42d2264..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Bot.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Bot: ImageVector - get() { - if (_bot != null) { - return _bot!! - } - _bot = fluentIcon(name = "Regular.Bot") { - fluentPath { - moveTo(17.75f, 14.0f) - curveTo(19.0f, 14.0f, 20.0f, 15.0f, 20.0f, 16.25f) - verticalLineToRelative(0.9f) - curveToRelative(0.0f, 1.1f, -0.47f, 2.14f, -1.3f, 2.85f) - curveToRelative(-1.57f, 1.34f, -3.81f, 2.0f, -6.7f, 2.0f) - reflectiveCurveToRelative(-5.13f, -0.66f, -6.7f, -2.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 4.0f, 17.16f) - verticalLineToRelative(-0.91f) - curveTo(4.0f, 15.0f, 5.01f, 14.0f, 6.25f, 14.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.75f, 15.5f) - lineTo(6.25f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.9f) - curveToRelative(0.0f, 0.66f, 0.29f, 1.29f, 0.79f, 1.71f) - curveTo(7.55f, 19.94f, 9.44f, 20.5f, 12.0f, 20.5f) - reflectiveCurveToRelative(4.46f, -0.56f, 5.72f, -1.64f) - curveToRelative(0.5f, -0.43f, 0.78f, -1.05f, 0.78f, -1.7f) - verticalLineToRelative(-0.91f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(11.9f, 2.0f) - horizontalLineToRelative(0.1f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(3.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 1.25f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-8.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineTo(12.0f, 2.0f) - horizontalLineToRelative(-0.1f) - close() - moveTo(16.25f, 5.0f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(8.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) - verticalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(9.75f, 6.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(14.25f, 6.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - } - } - return _bot!! - } - -private var _bot: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BotAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BotAdd.kt deleted file mode 100644 index fd1e4f94..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BotAdd.kt +++ /dev/null @@ -1,106 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BotAdd: ImageVector - get() { - if (_botAdd != null) { - return _botAdd!! - } - _botAdd = fluentIcon(name = "Regular.BotAdd") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(12.02f, 14.0f) - curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) - lineTo(4.24f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.9f) - curveToRelative(0.0f, 0.66f, 0.29f, 1.29f, 0.79f, 1.71f) - curveTo(5.55f, 19.94f, 7.44f, 20.5f, 10.0f, 20.5f) - curveToRelative(0.6f, 0.0f, 1.16f, -0.03f, 1.69f, -0.09f) - curveToRelative(0.25f, 0.5f, 0.56f, 0.96f, 0.93f, 1.38f) - curveToRelative(-0.8f, 0.14f, -1.68f, 0.21f, -2.62f, 0.21f) - curveToRelative(-2.89f, 0.0f, -5.13f, -0.66f, -6.7f, -2.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 2.0f, 17.16f) - verticalLineToRelative(-0.91f) - curveTo(2.0f, 15.0f, 3.01f, 14.0f, 4.25f, 14.0f) - horizontalLineToRelative(7.77f) - close() - moveTo(17.5f, 14.0f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) - lineToRelative(-0.01f, 0.1f) - lineTo(17.0f, 17.0f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(0.18f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) - lineToRelative(0.1f, 0.01f) - lineTo(17.0f, 18.0f) - verticalLineToRelative(2.6f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - horizontalLineToRelative(0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) - lineToRelative(0.01f, -0.1f) - lineTo(18.0f, 18.0f) - horizontalLineToRelative(2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - verticalLineToRelative(-0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) - lineToRelative(-0.1f, -0.01f) - lineTo(18.0f, 17.0f) - verticalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) - horizontalLineToRelative(-0.09f) - close() - moveTo(10.0f, 2.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(3.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.3f, -0.06f, 0.6f, -0.17f, 0.86f) - curveToRelative(-1.12f, 0.2f, -2.15f, 0.7f, -2.99f, 1.4f) - lineTo(5.75f, 12.51f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.01f, -2.25f, -2.26f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.35f, 0.23f, -0.64f, 0.55f, -0.72f) - lineTo(9.9f, 2.0f) - lineTo(10.0f, 2.0f) - close() - moveTo(14.25f, 5.0f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(8.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) - verticalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(7.75f, 6.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(12.25f, 6.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - } - } - return _botAdd!! - } - -private var _botAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BotSparkle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BotSparkle.kt deleted file mode 100644 index 1b280bdb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BotSparkle.kt +++ /dev/null @@ -1,121 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BotSparkle: ImageVector - get() { - if (_botSparkle != null) { - return _botSparkle!! - } - _botSparkle = fluentIcon(name = "Regular.BotSparkle") { - fluentPath { - moveTo(18.5f, 10.25f) - verticalLineToRelative(0.14f) - arcToRelative(1.54f, 1.54f, 0.0f, false, false, -1.5f, -0.32f) - lineTo(17.0f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(8.28f) - lineToRelative(-0.01f, 0.03f) - verticalLineToRelative(0.01f) - lineToRelative(-0.46f, 1.39f) - verticalLineToRelative(0.02f) - lineToRelative(-0.03f, 0.05f) - lineTo(7.75f, 12.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineTo(12.0f, 2.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(3.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(4.5f) - close() - moveTo(13.04f, 14.04f) - lineTo(13.16f, 14.0f) - horizontalLineToRelative(-6.9f) - curveTo(5.0f, 14.0f, 4.0f, 15.0f, 4.0f, 16.25f) - verticalLineToRelative(0.9f) - curveToRelative(0.0f, 1.1f, 0.48f, 2.14f, 1.3f, 2.85f) - curveToRelative(1.57f, 1.34f, 3.81f, 2.0f, 6.7f, 2.0f) - curveToRelative(2.08f, 0.0f, 3.82f, -0.34f, 5.21f, -1.03f) - arcToRelative(1.55f, 1.55f, 0.0f, false, true, -1.17f, -1.0f) - verticalLineToRelative(-0.01f) - lineToRelative(-0.03f, -0.1f) - arcToRelative(11.1f, 11.1f, 0.0f, false, true, -4.01f, 0.64f) - curveToRelative(-2.56f, 0.0f, -4.45f, -0.55f, -5.71f, -1.64f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.79f, -1.7f) - verticalLineToRelative(-0.91f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - lineTo(12.0f, 15.5f) - arcToRelative(1.54f, 1.54f, 0.0f, false, true, 1.03f, -1.46f) - horizontalLineToRelative(0.01f) - close() - moveTo(11.0f, 7.74f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) - close() - moveTo(14.24f, 6.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(16.09f, 17.41f) - arcToRelative(2.83f, 2.83f, 0.0f, false, false, -1.35f, -0.95f) - lineTo(13.36f, 16.0f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, -1.03f) - lineToRelative(1.38f, -0.44f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.76f, -1.77f) - lineToRelative(0.01f, -0.03f) - lineToRelative(0.45f, -1.38f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, 1.03f, 0.0f) - lineToRelative(0.44f, 1.38f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.8f, 1.8f) - lineToRelative(1.38f, 0.44f) - lineToRelative(0.03f, 0.01f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, 1.03f) - lineToRelative(-1.38f, 0.44f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.8f, 1.8f) - lineToRelative(-0.45f, 1.38f) - arcToRelative(0.55f, 0.55f, 0.0f, false, true, -0.2f, 0.26f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, -0.82f, -0.26f) - lineToRelative(-0.45f, -1.38f) - curveToRelative(-0.1f, -0.3f, -0.25f, -0.6f, -0.45f, -0.85f) - close() - moveTo(23.79f, 21.21f) - lineTo(23.02f, 20.96f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, -1.0f, -1.0f) - lineToRelative(-0.25f, -0.76f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, -0.57f, 0.0f) - lineToRelative(-0.25f, 0.77f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, -0.98f, 1.0f) - lineToRelative(-0.77f, 0.24f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.77f, 0.25f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, 1.0f) - lineToRelative(0.25f, 0.77f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.57f, 0.0f) - lineToRelative(0.24f, -0.77f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, -1.0f) - lineToRelative(0.77f, -0.24f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, -0.57f) - horizontalLineToRelative(-0.02f) - close() - } - } - return _botSparkle!! - } - -private var _botSparkle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BowlChopsticks.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BowlChopsticks.kt deleted file mode 100644 index 11a1f2e3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BowlChopsticks.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BowlChopsticks: ImageVector - get() { - if (_bowlChopsticks != null) { - return _bowlChopsticks!! - } - _bowlChopsticks = fluentIcon(name = "Regular.BowlChopsticks") { - fluentPath { - moveTo(6.4f, 2.38f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.3f, 0.74f) - lineTo(9.63f, 11.0f) - horizontalLineTo(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineTo(12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 20.0f, 0.0f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-5.88f) - lineTo(10.4f, 2.38f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.3f, 0.74f) - lineTo(13.63f, 11.0f) - horizontalLineToRelative(-2.26f) - lineTo(6.4f, 2.38f) - close() - moveTo(4.79f, 16.5f) - horizontalLineTo(19.2f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, -14.42f, 0.0f) - close() - moveTo(4.04f, 15.0f) - arcToRelative(8.46f, 8.46f, 0.0f, false, true, -0.53f, -2.5f) - horizontalLineTo(20.5f) - arcToRelative(8.46f, 8.46f, 0.0f, false, true, -0.53f, 2.5f) - horizontalLineTo(4.04f) - close() - } - } - return _bowlChopsticks!! - } - -private var _bowlChopsticks: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BowlSalad.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BowlSalad.kt deleted file mode 100644 index bb11f65c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BowlSalad.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BowlSalad: ImageVector - get() { - if (_bowlSalad != null) { - return _bowlSalad!! - } - _bowlSalad = fluentIcon(name = "Regular.BowlSalad") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -5.14f, 3.53f) - arcTo(12.95f, 12.95f, 0.0f, false, false, 3.56f, 5.0f) - arcToRelative(12.05f, 12.05f, 0.0f, false, false, -0.78f, 0.0f) - horizontalLineToRelative(-0.04f) - arcToRelative(0.76f, 0.76f, 0.0f, false, false, -0.73f, 0.7f) - verticalLineToRelative(0.07f) - arcToRelative(7.84f, 7.84f, 0.0f, false, false, 0.0f, 0.79f) - curveToRelative(0.02f, 0.51f, 0.08f, 1.23f, 0.22f, 2.03f) - curveToRelative(0.14f, 0.74f, 0.35f, 1.57f, 0.7f, 2.4f) - horizontalLineToRelative(-0.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(2.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 20.0f, 0.0f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(21.0f, 11.0f) - verticalLineToRelative(-0.13f) - arcToRelative(4.88f, 4.88f, 0.0f, false, false, -3.67f, -4.72f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 12.0f, 2.0f) - close() - moveTo(8.27f, 6.04f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 7.45f, -0.02f) - arcToRelative(4.88f, 4.88f, 0.0f, false, false, -4.03f, 2.82f) - arcToRelative(7.61f, 7.61f, 0.0f, false, false, -3.42f, -2.8f) - close() - moveTo(19.5f, 10.87f) - lineTo(19.5f, 11.0f) - horizontalLineToRelative(-6.73f) - lineToRelative(-0.02f, -0.05f) - verticalLineToRelative(-0.07f) - arcToRelative(3.37f, 3.37f, 0.0f, true, true, 6.75f, 0.0f) - close() - moveTo(9.72f, 8.79f) - curveToRelative(0.64f, 0.65f, 1.1f, 1.42f, 1.44f, 2.22f) - horizontalLineToRelative(-2.1f) - lineTo(7.28f, 9.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(0.72f, 0.72f) - lineTo(4.57f, 11.0f) - curveToRelative(-0.44f, -0.88f, -0.7f, -1.81f, -0.86f, -2.67f) - curveToRelative(-0.13f, -0.72f, -0.18f, -1.36f, -0.2f, -1.82f) - curveToRelative(0.46f, 0.02f, 1.1f, 0.07f, 1.82f, 0.2f) - curveToRelative(1.46f, 0.27f, 3.16f, 0.85f, 4.39f, 2.07f) - close() - moveTo(4.79f, 16.5f) - lineTo(19.2f, 16.5f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, -14.42f, 0.0f) - close() - moveTo(3.51f, 12.5f) - lineTo(20.5f, 12.5f) - arcToRelative(8.46f, 8.46f, 0.0f, false, true, -0.53f, 2.5f) - lineTo(4.04f, 15.0f) - arcToRelative(8.46f, 8.46f, 0.0f, false, true, -0.53f, -2.5f) - close() - moveTo(2.71f, 5.0f) - horizontalLineToRelative(0.03f) - horizontalLineToRelative(-0.02f) - close() - } - } - return _bowlSalad!! - } - -private var _bowlSalad: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Box.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Box.kt deleted file mode 100644 index 8b5a9bd8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Box.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Box: ImageVector - get() { - if (_box != null) { - return _box!! - } - _box = fluentIcon(name = "Regular.Box") { - fluentPath { - moveTo(10.6f, 2.51f) - curveToRelative(0.9f, -0.36f, 1.9f, -0.36f, 2.8f, 0.0f) - lineToRelative(7.5f, 3.04f) - curveToRelative(0.67f, 0.27f, 1.1f, 0.91f, 1.1f, 1.62f) - verticalLineToRelative(9.66f) - curveToRelative(0.0f, 0.71f, -0.43f, 1.35f, -1.1f, 1.62f) - lineToRelative(-7.5f, 3.04f) - curveToRelative(-0.9f, 0.37f, -1.9f, 0.37f, -2.8f, 0.0f) - lineToRelative(-7.5f, -3.04f) - curveToRelative(-0.67f, -0.27f, -1.1f, -0.91f, -1.1f, -1.62f) - lineTo(2.0f, 7.17f) - curveToRelative(0.0f, -0.7f, 0.43f, -1.35f, 1.1f, -1.62f) - lineToRelative(7.5f, -3.04f) - close() - moveTo(12.85f, 3.91f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.7f, 0.0f) - lineToRelative(-1.9f, 0.77f) - lineToRelative(7.52f, 2.93f) - lineToRelative(2.67f, -1.03f) - lineToRelative(-6.6f, -2.68f) - close() - moveTo(14.69f, 8.41f) - lineTo(7.21f, 5.5f) - lineTo(4.6f, 6.56f) - lineTo(12.0f, 9.45f) - lineToRelative(2.7f, -1.04f) - close() - moveTo(3.5f, 16.83f) - curveToRelative(0.0f, 0.1f, 0.06f, 0.2f, 0.16f, 0.23f) - lineToRelative(7.5f, 3.04f) - lineToRelative(0.09f, 0.04f) - verticalLineToRelative(-9.38f) - lineTo(3.5f, 7.75f) - verticalLineToRelative(9.08f) - close() - moveTo(12.85f, 20.1f) - lineTo(20.35f, 17.06f) - curveToRelative(0.09f, -0.04f, 0.15f, -0.13f, 0.15f, -0.23f) - lineTo(20.5f, 7.77f) - lineToRelative(-7.75f, 3.0f) - verticalLineToRelative(9.37f) - lineToRelative(0.1f, -0.04f) - close() - } - } - return _box!! - } - -private var _box: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxArrowLeft.kt deleted file mode 100644 index f153b0e4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxArrowLeft.kt +++ /dev/null @@ -1,97 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BoxArrowLeft: ImageVector - get() { - if (_boxArrowLeft != null) { - return _boxArrowLeft!! - } - _boxArrowLeft = fluentIcon(name = "Regular.BoxArrowLeft") { - fluentPath { - moveTo(10.6f, 2.51f) - curveToRelative(0.9f, -0.36f, 1.9f, -0.36f, 2.8f, 0.0f) - lineToRelative(7.5f, 3.04f) - curveToRelative(0.67f, 0.27f, 1.1f, 0.91f, 1.1f, 1.62f) - verticalLineToRelative(5.64f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) - lineTo(20.5f, 7.77f) - lineToRelative(-7.75f, 3.0f) - verticalLineToRelative(2.3f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.5f, 2.64f) - verticalLineToRelative(-4.95f) - lineTo(3.5f, 7.75f) - verticalLineToRelative(9.08f) - curveToRelative(0.0f, 0.1f, 0.06f, 0.2f, 0.16f, 0.23f) - lineToRelative(7.5f, 3.04f) - lineToRelative(0.09f, 0.04f) - lineToRelative(0.19f, 0.07f) - lineToRelative(0.18f, 0.06f) - curveToRelative(0.25f, 0.53f, 0.56f, 1.01f, 0.94f, 1.45f) - curveToRelative(-0.66f, 0.1f, -1.34f, 0.02f, -1.97f, -0.23f) - lineToRelative(-7.5f, -3.04f) - curveTo(2.43f, 18.18f, 2.0f, 17.54f, 2.0f, 16.83f) - lineTo(2.0f, 7.17f) - curveToRelative(0.0f, -0.7f, 0.43f, -1.35f, 1.1f, -1.62f) - lineToRelative(7.5f, -3.04f) - close() - moveTo(12.85f, 3.91f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.7f, 0.0f) - lineToRelative(-1.9f, 0.77f) - lineToRelative(7.52f, 2.93f) - lineToRelative(2.67f, -1.03f) - lineToRelative(-6.6f, -2.68f) - close() - moveTo(4.59f, 6.55f) - lineTo(12.0f, 9.45f) - lineToRelative(2.7f, -1.04f) - lineTo(7.21f, 5.5f) - lineTo(4.59f, 6.56f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, -11.0f) - close() - moveTo(14.0f, 17.46f) - lineToRelative(0.02f, -0.09f) - lineToRelative(0.02f, -0.06f) - lineToRelative(0.03f, -0.07f) - lineToRelative(0.03f, -0.04f) - lineToRelative(2.55f, -2.55f) - lineToRelative(0.07f, -0.06f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, 0.7f) - lineToRelative(-0.07f, 0.06f) - lineTo(15.71f, 17.0f) - horizontalLineToRelative(5.38f) - curveToRelative(0.2f, 0.05f, 0.36f, 0.2f, 0.4f, 0.41f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(0.08f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.41f, 0.4f) - lineTo(21.0f, 18.0f) - horizontalLineToRelative(-5.3f) - lineToRelative(1.65f, 1.65f) - lineToRelative(0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 0.57f) - lineToRelative(-0.06f, 0.06f) - lineToRelative(-0.07f, 0.06f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.56f, 0.0f) - lineToRelative(-0.07f, -0.06f) - lineToRelative(-2.52f, -2.5f) - lineToRelative(-0.04f, -0.06f) - lineToRelative(-0.04f, -0.08f) - lineToRelative(-0.03f, -0.08f) - lineToRelative(-0.01f, -0.06f) - lineToRelative(-0.01f, -0.06f) - verticalLineToRelative(-0.05f) - close() - } - } - return _boxArrowLeft!! - } - -private var _boxArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxArrowUp.kt deleted file mode 100644 index 7fba82fb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxArrowUp.kt +++ /dev/null @@ -1,96 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BoxArrowUp: ImageVector - get() { - if (_boxArrowUp != null) { - return _boxArrowUp!! - } - _boxArrowUp = fluentIcon(name = "Regular.BoxArrowUp") { - fluentPath { - moveTo(10.6f, 2.51f) - curveToRelative(0.9f, -0.36f, 1.9f, -0.36f, 2.8f, 0.0f) - lineToRelative(7.5f, 3.04f) - curveToRelative(0.67f, 0.27f, 1.1f, 0.91f, 1.1f, 1.62f) - verticalLineToRelative(5.64f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) - lineTo(20.5f, 7.77f) - lineToRelative(-7.75f, 3.0f) - verticalLineToRelative(2.3f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.5f, 2.64f) - verticalLineToRelative(-4.95f) - lineTo(3.5f, 7.75f) - verticalLineToRelative(9.08f) - curveToRelative(0.0f, 0.1f, 0.06f, 0.2f, 0.16f, 0.23f) - lineToRelative(7.5f, 3.04f) - lineToRelative(0.09f, 0.04f) - lineToRelative(0.19f, 0.07f) - lineToRelative(0.18f, 0.06f) - curveToRelative(0.25f, 0.53f, 0.56f, 1.01f, 0.94f, 1.45f) - curveToRelative(-0.66f, 0.1f, -1.34f, 0.02f, -1.97f, -0.23f) - lineToRelative(-7.5f, -3.04f) - curveTo(2.43f, 18.18f, 2.0f, 17.54f, 2.0f, 16.83f) - lineTo(2.0f, 7.17f) - curveToRelative(0.0f, -0.7f, 0.43f, -1.35f, 1.1f, -1.62f) - lineToRelative(7.5f, -3.04f) - close() - moveTo(12.85f, 3.91f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.7f, 0.0f) - lineToRelative(-1.9f, 0.77f) - lineToRelative(7.52f, 2.93f) - lineToRelative(2.67f, -1.03f) - lineToRelative(-6.6f, -2.68f) - close() - moveTo(4.59f, 6.55f) - lineTo(12.0f, 9.45f) - lineToRelative(2.7f, -1.04f) - lineTo(7.21f, 5.5f) - lineTo(4.59f, 6.56f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(17.54f, 14.0f) - lineToRelative(0.09f, 0.02f) - lineToRelative(0.06f, 0.02f) - lineToRelative(0.07f, 0.03f) - lineToRelative(0.05f, 0.04f) - lineToRelative(2.54f, 2.54f) - lineToRelative(0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.7f) - lineToRelative(-0.06f, -0.07f) - lineTo(18.0f, 15.71f) - verticalLineToRelative(5.38f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.41f, 0.4f) - lineToRelative(-0.09f, 0.01f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, -0.4f) - lineTo(17.0f, 21.0f) - verticalLineToRelative(-5.3f) - lineToRelative(-1.65f, 1.65f) - lineToRelative(-0.07f, 0.06f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.56f, 0.0f) - lineToRelative(-0.07f, -0.06f) - lineToRelative(-0.06f, -0.06f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -0.57f) - lineToRelative(0.06f, -0.07f) - lineToRelative(2.5f, -2.51f) - lineToRelative(0.07f, -0.05f) - lineToRelative(0.07f, -0.04f) - lineToRelative(0.08f, -0.03f) - lineToRelative(0.06f, -0.01f) - horizontalLineToRelative(0.11f) - close() - } - } - return _boxArrowUp!! - } - -private var _boxArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxCheckmark.kt deleted file mode 100644 index e441a7b3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxCheckmark.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BoxCheckmark: ImageVector - get() { - if (_boxCheckmark != null) { - return _boxCheckmark!! - } - _boxCheckmark = fluentIcon(name = "Regular.BoxCheckmark") { - fluentPath { - moveTo(10.6f, 2.51f) - curveToRelative(0.9f, -0.36f, 1.9f, -0.36f, 2.8f, 0.0f) - lineToRelative(7.5f, 3.04f) - curveToRelative(0.67f, 0.27f, 1.1f, 0.91f, 1.1f, 1.62f) - verticalLineToRelative(5.64f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) - lineTo(20.5f, 7.77f) - lineToRelative(-7.75f, 3.0f) - verticalLineToRelative(2.3f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.5f, 2.64f) - verticalLineToRelative(-4.95f) - lineTo(3.5f, 7.75f) - verticalLineToRelative(9.08f) - curveToRelative(0.0f, 0.1f, 0.06f, 0.2f, 0.16f, 0.23f) - lineToRelative(7.5f, 3.04f) - lineToRelative(0.09f, 0.04f) - lineToRelative(0.19f, 0.07f) - lineToRelative(0.18f, 0.06f) - curveToRelative(0.25f, 0.53f, 0.56f, 1.01f, 0.94f, 1.45f) - curveToRelative(-0.66f, 0.1f, -1.34f, 0.02f, -1.97f, -0.23f) - lineToRelative(-7.5f, -3.04f) - curveTo(2.43f, 18.18f, 2.0f, 17.54f, 2.0f, 16.83f) - lineTo(2.0f, 7.17f) - curveToRelative(0.0f, -0.7f, 0.43f, -1.35f, 1.1f, -1.62f) - lineToRelative(7.5f, -3.04f) - close() - moveTo(12.85f, 3.91f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.7f, 0.0f) - lineToRelative(-1.9f, 0.77f) - lineToRelative(7.52f, 2.93f) - lineToRelative(2.67f, -1.03f) - lineToRelative(-6.6f, -2.68f) - close() - moveTo(4.59f, 6.55f) - lineTo(12.0f, 9.45f) - lineToRelative(2.7f, -1.04f) - lineTo(7.21f, 5.5f) - lineTo(4.59f, 6.56f) - close() - moveTo(17.5f, 23.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) - close() - moveTo(16.5f, 18.8f) - lineTo(20.15f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, 0.7f) - lineToRelative(-4.0f, 4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.0f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, -0.7f) - lineToRelative(1.65f, 1.64f) - close() - } - } - return _boxCheckmark!! - } - -private var _boxCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxDismiss.kt deleted file mode 100644 index 5d88ec88..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxDismiss.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BoxDismiss: ImageVector - get() { - if (_boxDismiss != null) { - return _boxDismiss!! - } - _boxDismiss = fluentIcon(name = "Regular.BoxDismiss") { - fluentPath { - moveTo(10.6f, 2.51f) - curveToRelative(0.9f, -0.36f, 1.9f, -0.36f, 2.8f, 0.0f) - lineToRelative(7.5f, 3.04f) - curveToRelative(0.67f, 0.27f, 1.1f, 0.91f, 1.1f, 1.62f) - verticalLineToRelative(5.64f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) - lineTo(20.5f, 7.77f) - lineToRelative(-7.75f, 3.0f) - verticalLineToRelative(2.3f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.5f, 2.64f) - verticalLineToRelative(-4.95f) - lineTo(3.5f, 7.75f) - verticalLineToRelative(9.08f) - curveToRelative(0.0f, 0.1f, 0.06f, 0.2f, 0.16f, 0.23f) - lineToRelative(7.5f, 3.04f) - lineToRelative(0.09f, 0.04f) - verticalLineToRelative(-0.85f) - curveToRelative(0.26f, 0.91f, 0.71f, 1.73f, 1.3f, 2.43f) - curveToRelative(-0.65f, 0.1f, -1.33f, 0.02f, -1.96f, -0.23f) - lineToRelative(-7.5f, -3.04f) - curveTo(2.43f, 18.18f, 2.0f, 17.54f, 2.0f, 16.83f) - lineTo(2.0f, 7.17f) - curveToRelative(0.0f, -0.7f, 0.43f, -1.35f, 1.1f, -1.62f) - lineToRelative(7.5f, -3.04f) - close() - moveTo(12.85f, 3.91f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.7f, 0.0f) - lineToRelative(-1.9f, 0.77f) - lineToRelative(7.52f, 2.93f) - lineToRelative(2.67f, -1.03f) - lineToRelative(-6.6f, -2.68f) - close() - moveTo(14.69f, 8.41f) - lineTo(7.21f, 5.5f) - lineTo(4.6f, 6.56f) - lineTo(12.0f, 9.45f) - lineToRelative(2.7f, -1.04f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 15.14f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-1.64f, -1.65f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.65f, 1.64f) - lineToRelative(-1.65f, -1.64f) - close() - } - } - return _boxDismiss!! - } - -private var _boxDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxEdit.kt deleted file mode 100644 index dc890975..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxEdit.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BoxEdit: ImageVector - get() { - if (_boxEdit != null) { - return _boxEdit!! - } - _boxEdit = fluentIcon(name = "Regular.BoxEdit") { - fluentPath { - moveTo(13.4f, 2.51f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.8f, 0.0f) - lineTo(3.1f, 5.55f) - curveToRelative(-0.67f, 0.27f, -1.1f, 0.91f, -1.1f, 1.62f) - verticalLineToRelative(9.66f) - curveToRelative(0.0f, 0.71f, 0.43f, 1.35f, 1.1f, 1.62f) - lineToRelative(7.5f, 3.04f) - curveToRelative(0.13f, 0.06f, 0.27f, 0.1f, 0.42f, 0.14f) - lineToRelative(0.04f, -0.22f) - lineToRelative(0.46f, -1.83f) - curveToRelative(0.16f, -0.65f, 0.5f, -1.24f, 0.97f, -1.71f) - lineToRelative(0.26f, -0.26f) - verticalLineToRelative(-6.84f) - lineToRelative(7.75f, -3.0f) - verticalLineToRelative(3.24f) - arcToRelative(3.3f, 3.3f, 0.0f, false, true, 1.5f, 0.25f) - lineTo(22.0f, 7.17f) - curveToRelative(0.0f, -0.7f, -0.43f, -1.35f, -1.1f, -1.62f) - lineToRelative(-7.5f, -3.04f) - close() - moveTo(11.15f, 3.91f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 1.7f, 0.0f) - lineToRelative(6.59f, 2.67f) - lineToRelative(-2.67f, 1.03f) - lineToRelative(-7.53f, -2.93f) - lineToRelative(1.91f, -0.78f) - close() - moveTo(7.21f, 5.5f) - lineToRelative(7.48f, 2.9f) - lineTo(12.0f, 9.46f) - lineTo(4.6f, 6.56f) - lineTo(7.21f, 5.5f) - close() - moveTo(3.5f, 7.75f) - lineToRelative(7.75f, 3.01f) - verticalLineToRelative(9.38f) - arcToRelative(2.13f, 2.13f, 0.0f, false, true, -0.1f, -0.04f) - lineToRelative(-7.5f, -3.04f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.15f, -0.23f) - lineTo(3.5f, 7.75f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _boxEdit!! - } - -private var _boxEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxMultiple.kt deleted file mode 100644 index a63f48fb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxMultiple.kt +++ /dev/null @@ -1,94 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BoxMultiple: ImageVector - get() { - if (_boxMultiple != null) { - return _boxMultiple!! - } - _boxMultiple = fluentIcon(name = "Regular.BoxMultiple") { - fluentPath { - moveTo(15.78f, 3.74f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.56f, 0.0f) - lineToRelative(-4.3f, 1.59f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.17f, 0.23f) - verticalLineToRelative(2.8f) - curveToRelative(-0.5f, -0.08f, -1.0f, -0.08f, -1.5f, 0.0f) - verticalLineToRelative(-2.8f) - curveToRelative(0.0f, -0.73f, 0.46f, -1.38f, 1.14f, -1.64f) - lineToRelative(4.31f, -1.59f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.6f, 0.0f) - lineToRelative(4.3f, 1.6f) - curveToRelative(0.7f, 0.25f, 1.15f, 0.9f, 1.15f, 1.63f) - verticalLineToRelative(10.67f) - curveToRelative(0.0f, 0.74f, -0.46f, 1.4f, -1.14f, 1.64f) - lineToRelative(-4.02f, 1.49f) - curveToRelative(0.1f, -0.3f, 0.16f, -0.6f, 0.16f, -0.93f) - verticalLineToRelative(-0.73f) - lineToRelative(3.34f, -1.23f) - curveToRelative(0.1f, -0.04f, 0.16f, -0.13f, 0.16f, -0.24f) - lineTo(20.25f, 5.56f) - curveToRelative(0.0f, -0.1f, -0.07f, -0.2f, -0.16f, -0.23f) - lineToRelative(-4.31f, -1.6f) - close() - moveTo(11.77f, 7.67f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.49f, -1.42f) - lineToRelative(2.66f, 0.92f) - curveToRelative(0.05f, 0.02f, 0.1f, 0.02f, 0.16f, 0.0f) - lineToRelative(2.65f, -0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.5f, 1.42f) - lineToRelative(-2.66f, 0.92f) - curveToRelative(-0.37f, 0.12f, -0.77f, 0.12f, -1.14f, 0.0f) - lineToRelative(-2.66f, -0.92f) - close() - moveTo(5.77f, 14.67f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.49f, -1.42f) - lineTo(9.0f, 14.2f) - lineToRelative(2.73f, -0.95f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.5f, 1.42f) - lineToRelative(-2.48f, 0.85f) - verticalLineToRelative(2.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.7f) - lineToRelative(-2.48f, -0.85f) - close() - moveTo(10.3f, 9.53f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.6f, 0.0f) - lineToRelative(-4.3f, 1.6f) - curveToRelative(-0.7f, 0.24f, -1.15f, 0.9f, -1.15f, 1.63f) - verticalLineToRelative(5.67f) - curveToRelative(0.0f, 0.73f, 0.46f, 1.39f, 1.14f, 1.64f) - lineToRelative(4.31f, 1.6f) - curveToRelative(0.84f, 0.3f, 1.76f, 0.3f, 2.6f, 0.0f) - lineToRelative(4.3f, -1.6f) - curveToRelative(0.7f, -0.25f, 1.15f, -0.9f, 1.15f, -1.64f) - verticalLineToRelative(-5.67f) - curveToRelative(0.0f, -0.73f, -0.46f, -1.39f, -1.14f, -1.64f) - lineToRelative(-4.31f, -1.6f) - close() - moveTo(8.22f, 10.93f) - curveToRelative(0.5f, -0.18f, 1.06f, -0.18f, 1.56f, 0.0f) - lineToRelative(4.3f, 1.6f) - curveToRelative(0.1f, 0.03f, 0.17f, 0.13f, 0.17f, 0.23f) - verticalLineToRelative(5.67f) - curveToRelative(0.0f, 0.1f, -0.07f, 0.2f, -0.16f, 0.24f) - lineToRelative(-4.31f, 1.59f) - curveToRelative(-0.5f, 0.18f, -1.06f, 0.18f, -1.56f, 0.0f) - lineToRelative(-4.3f, -1.6f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.17f, -0.23f) - verticalLineToRelative(-5.67f) - curveToRelative(0.0f, -0.1f, 0.07f, -0.2f, 0.16f, -0.23f) - lineToRelative(4.31f, -1.6f) - close() - } - } - return _boxMultiple!! - } - -private var _boxMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxMultipleArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxMultipleArrowLeft.kt deleted file mode 100644 index a6159c3a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxMultipleArrowLeft.kt +++ /dev/null @@ -1,101 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BoxMultipleArrowLeft: ImageVector - get() { - if (_boxMultipleArrowLeft != null) { - return _boxMultipleArrowLeft!! - } - _boxMultipleArrowLeft = fluentIcon(name = "Regular.BoxMultipleArrowLeft") { - fluentPath { - moveTo(15.78f, 3.74f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.56f, 0.0f) - lineToRelative(-4.3f, 1.59f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.17f, 0.23f) - verticalLineToRelative(2.8f) - curveToRelative(-0.5f, -0.08f, -1.0f, -0.08f, -1.5f, 0.0f) - verticalLineToRelative(-2.8f) - curveToRelative(0.0f, -0.73f, 0.46f, -1.38f, 1.14f, -1.64f) - lineToRelative(4.31f, -1.59f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.6f, 0.0f) - lineToRelative(4.3f, 1.6f) - curveToRelative(0.7f, 0.25f, 1.15f, 0.9f, 1.15f, 1.63f) - verticalLineToRelative(7.02f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.5f, -0.97f) - lineTo(20.25f, 5.56f) - curveToRelative(0.0f, -0.1f, -0.07f, -0.2f, -0.16f, -0.23f) - lineToRelative(-4.31f, -1.6f) - close() - moveTo(14.61f, 11.12f) - curveToRelative(0.2f, 0.08f, 0.38f, 0.18f, 0.53f, 0.32f) - curveToRelative(-0.57f, 0.22f, -1.1f, 0.52f, -1.58f, 0.9f) - lineToRelative(-3.78f, -1.4f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.56f, 0.0f) - lineToRelative(-4.3f, 1.59f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.17f, 0.23f) - verticalLineToRelative(5.67f) - curveToRelative(0.0f, 0.1f, 0.07f, 0.2f, 0.16f, 0.24f) - lineToRelative(4.31f, 1.59f) - curveToRelative(0.5f, 0.18f, 1.06f, 0.18f, 1.56f, 0.0f) - lineToRelative(1.6f, -0.59f) - curveToRelative(0.16f, 0.48f, 0.39f, 0.93f, 0.66f, 1.35f) - lineToRelative(-1.74f, 0.65f) - curveToRelative(-0.84f, 0.3f, -1.76f, 0.3f, -2.6f, 0.0f) - lineToRelative(-4.3f, -1.6f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.15f, -1.64f) - verticalLineToRelative(-5.67f) - curveToRelative(0.0f, -0.73f, 0.46f, -1.39f, 1.14f, -1.64f) - lineToRelative(4.31f, -1.6f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.6f, 0.0f) - lineToRelative(4.3f, 1.6f) - close() - moveTo(11.73f, 13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.73f, 0.14f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -0.92f, 1.51f) - lineToRelative(-1.79f, 0.62f) - verticalLineToRelative(2.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.7f) - lineToRelative(-2.48f, -0.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.49f, -1.42f) - lineTo(9.0f, 14.2f) - lineToRelative(2.73f, -0.95f) - close() - moveTo(11.77f, 7.67f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.49f, -1.42f) - lineToRelative(2.66f, 0.92f) - curveToRelative(0.05f, 0.02f, 0.1f, 0.02f, 0.16f, 0.0f) - lineToRelative(2.65f, -0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.5f, 1.42f) - lineToRelative(-2.66f, 0.92f) - curveToRelative(-0.37f, 0.12f, -0.77f, 0.12f, -1.14f, 0.0f) - lineToRelative(-2.66f, -0.92f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.5f, 18.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) - horizontalLineToRelative(-4.8f) - lineToRelative(1.65f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineTo(15.71f, 18.0f) - horizontalLineToRelative(4.79f) - close() - } - } - return _boxMultipleArrowLeft!! - } - -private var _boxMultipleArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxMultipleArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxMultipleArrowRight.kt deleted file mode 100644 index 0861d3b9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxMultipleArrowRight.kt +++ /dev/null @@ -1,101 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BoxMultipleArrowRight: ImageVector - get() { - if (_boxMultipleArrowRight != null) { - return _boxMultipleArrowRight!! - } - _boxMultipleArrowRight = fluentIcon(name = "Regular.BoxMultipleArrowRight") { - fluentPath { - moveTo(15.78f, 3.74f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.56f, 0.0f) - lineToRelative(-4.3f, 1.59f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.17f, 0.23f) - verticalLineToRelative(2.8f) - curveToRelative(-0.5f, -0.08f, -1.0f, -0.08f, -1.5f, 0.0f) - verticalLineToRelative(-2.8f) - curveToRelative(0.0f, -0.73f, 0.46f, -1.38f, 1.14f, -1.64f) - lineToRelative(4.31f, -1.59f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.6f, 0.0f) - lineToRelative(4.3f, 1.6f) - curveToRelative(0.7f, 0.25f, 1.15f, 0.9f, 1.15f, 1.63f) - verticalLineToRelative(7.02f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.5f, -0.97f) - lineTo(20.25f, 5.56f) - curveToRelative(0.0f, -0.1f, -0.07f, -0.2f, -0.16f, -0.23f) - lineToRelative(-4.31f, -1.6f) - close() - moveTo(14.61f, 11.12f) - curveToRelative(0.2f, 0.08f, 0.38f, 0.18f, 0.53f, 0.32f) - curveToRelative(-0.57f, 0.22f, -1.1f, 0.52f, -1.58f, 0.9f) - lineToRelative(-3.78f, -1.4f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.56f, 0.0f) - lineToRelative(-4.3f, 1.59f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.17f, 0.23f) - verticalLineToRelative(5.67f) - curveToRelative(0.0f, 0.1f, 0.07f, 0.2f, 0.16f, 0.24f) - lineToRelative(4.31f, 1.59f) - curveToRelative(0.5f, 0.18f, 1.06f, 0.18f, 1.56f, 0.0f) - lineToRelative(1.6f, -0.59f) - curveToRelative(0.16f, 0.48f, 0.39f, 0.93f, 0.66f, 1.35f) - lineToRelative(-1.74f, 0.65f) - curveToRelative(-0.84f, 0.3f, -1.76f, 0.3f, -2.6f, 0.0f) - lineToRelative(-4.3f, -1.6f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.15f, -1.64f) - verticalLineToRelative(-5.67f) - curveToRelative(0.0f, -0.73f, 0.46f, -1.39f, 1.14f, -1.64f) - lineToRelative(4.31f, -1.6f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.6f, 0.0f) - lineToRelative(4.3f, 1.6f) - close() - moveTo(11.73f, 13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.73f, 0.14f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -0.92f, 1.51f) - lineToRelative(-1.79f, 0.62f) - verticalLineToRelative(2.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.7f) - lineToRelative(-2.48f, -0.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.49f, -1.42f) - lineTo(9.0f, 14.2f) - lineToRelative(2.73f, -0.95f) - close() - moveTo(11.77f, 7.67f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.49f, -1.42f) - lineToRelative(2.66f, 0.92f) - curveToRelative(0.05f, 0.02f, 0.1f, 0.02f, 0.16f, 0.0f) - lineToRelative(2.65f, -0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.5f, 1.42f) - lineToRelative(-2.66f, 0.92f) - curveToRelative(-0.37f, 0.12f, -0.77f, 0.12f, -1.14f, 0.0f) - lineToRelative(-2.66f, -0.92f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(19.29f, 17.0f) - lineTo(14.5f, 17.0f) - close() - } - } - return _boxMultipleArrowRight!! - } - -private var _boxMultipleArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxMultipleCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxMultipleCheckmark.kt deleted file mode 100644 index d86d9bf7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxMultipleCheckmark.kt +++ /dev/null @@ -1,99 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BoxMultipleCheckmark: ImageVector - get() { - if (_boxMultipleCheckmark != null) { - return _boxMultipleCheckmark!! - } - _boxMultipleCheckmark = fluentIcon(name = "Regular.BoxMultipleCheckmark") { - fluentPath { - moveTo(15.78f, 3.74f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.56f, 0.0f) - lineToRelative(-4.3f, 1.59f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.17f, 0.23f) - verticalLineToRelative(2.8f) - curveToRelative(-0.5f, -0.08f, -1.0f, -0.08f, -1.5f, 0.0f) - verticalLineToRelative(-2.8f) - curveToRelative(0.0f, -0.73f, 0.46f, -1.38f, 1.14f, -1.64f) - lineToRelative(4.31f, -1.59f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.6f, 0.0f) - lineToRelative(4.3f, 1.6f) - curveToRelative(0.7f, 0.25f, 1.15f, 0.9f, 1.15f, 1.63f) - verticalLineToRelative(7.02f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.5f, -0.97f) - lineTo(20.25f, 5.56f) - curveToRelative(0.0f, -0.1f, -0.07f, -0.2f, -0.16f, -0.23f) - lineToRelative(-4.31f, -1.6f) - close() - moveTo(14.61f, 11.12f) - curveToRelative(0.2f, 0.08f, 0.38f, 0.18f, 0.53f, 0.32f) - curveToRelative(-0.57f, 0.22f, -1.1f, 0.52f, -1.58f, 0.9f) - lineToRelative(-3.78f, -1.4f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.56f, 0.0f) - lineToRelative(-4.3f, 1.59f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.17f, 0.23f) - verticalLineToRelative(5.67f) - curveToRelative(0.0f, 0.1f, 0.07f, 0.2f, 0.16f, 0.24f) - lineToRelative(4.31f, 1.59f) - curveToRelative(0.5f, 0.18f, 1.06f, 0.18f, 1.56f, 0.0f) - lineToRelative(1.6f, -0.59f) - curveToRelative(0.16f, 0.48f, 0.39f, 0.93f, 0.66f, 1.35f) - lineToRelative(-1.74f, 0.65f) - curveToRelative(-0.84f, 0.3f, -1.76f, 0.3f, -2.6f, 0.0f) - lineToRelative(-4.3f, -1.6f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.15f, -1.64f) - verticalLineToRelative(-5.67f) - curveToRelative(0.0f, -0.73f, 0.46f, -1.39f, 1.14f, -1.64f) - lineToRelative(4.31f, -1.6f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.6f, 0.0f) - lineToRelative(4.3f, 1.6f) - close() - moveTo(11.73f, 13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.73f, 0.14f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -0.92f, 1.51f) - lineToRelative(-1.79f, 0.62f) - verticalLineToRelative(2.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.7f) - lineToRelative(-2.48f, -0.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.49f, -1.42f) - lineTo(9.0f, 14.2f) - lineToRelative(2.73f, -0.95f) - close() - moveTo(11.77f, 7.67f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.49f, -1.42f) - lineToRelative(2.66f, 0.92f) - curveToRelative(0.05f, 0.02f, 0.1f, 0.02f, 0.16f, 0.0f) - lineToRelative(2.65f, -0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.5f, 1.42f) - lineToRelative(-2.66f, 0.92f) - curveToRelative(-0.37f, 0.12f, -0.77f, 0.12f, -1.14f, 0.0f) - lineToRelative(-2.66f, -0.92f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-3.65f, 3.64f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _boxMultipleCheckmark!! - } - -private var _boxMultipleCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxMultipleSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxMultipleSearch.kt deleted file mode 100644 index 72401b11..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxMultipleSearch.kt +++ /dev/null @@ -1,96 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BoxMultipleSearch: ImageVector - get() { - if (_boxMultipleSearch != null) { - return _boxMultipleSearch!! - } - _boxMultipleSearch = fluentIcon(name = "Regular.BoxMultipleSearch") { - fluentPath { - moveTo(14.22f, 3.74f) - curveToRelative(0.5f, -0.19f, 1.06f, -0.19f, 1.56f, 0.0f) - lineToRelative(4.3f, 1.59f) - curveToRelative(0.1f, 0.04f, 0.17f, 0.13f, 0.17f, 0.23f) - verticalLineToRelative(6.92f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 1.5f, 2.37f) - lineTo(21.75f, 5.56f) - curveToRelative(0.0f, -0.73f, -0.46f, -1.38f, -1.14f, -1.64f) - lineTo(16.3f, 2.33f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.6f, 0.0f) - lineToRelative(-4.3f, 1.6f) - curveToRelative(-0.7f, 0.25f, -1.15f, 0.9f, -1.15f, 1.63f) - verticalLineToRelative(2.8f) - curveToRelative(0.5f, -0.08f, 1.0f, -0.08f, 1.5f, 0.0f) - verticalLineToRelative(-2.8f) - curveToRelative(0.0f, -0.1f, 0.07f, -0.2f, 0.16f, -0.23f) - lineToRelative(4.31f, -1.6f) - close() - moveTo(14.87f, 11.24f) - arcToRelative(1.74f, 1.74f, 0.0f, false, false, -0.26f, -0.12f) - lineToRelative(-4.31f, -1.6f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.6f, 0.0f) - lineToRelative(-4.3f, 1.6f) - curveToRelative(-0.7f, 0.25f, -1.15f, 0.91f, -1.15f, 1.64f) - verticalLineToRelative(5.67f) - curveToRelative(0.0f, 0.73f, 0.46f, 1.39f, 1.14f, 1.64f) - lineToRelative(4.31f, 1.6f) - curveToRelative(0.84f, 0.3f, 1.76f, 0.3f, 2.6f, 0.0f) - lineToRelative(2.64f, -0.98f) - curveToRelative(-0.41f, -0.35f, -0.77f, -0.75f, -1.06f, -1.2f) - lineToRelative(-2.1f, 0.77f) - curveToRelative(-0.5f, 0.18f, -1.06f, 0.18f, -1.56f, 0.0f) - lineToRelative(-4.3f, -1.6f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.17f, -0.23f) - verticalLineToRelative(-5.67f) - curveToRelative(0.0f, -0.1f, 0.07f, -0.2f, 0.16f, -0.23f) - lineToRelative(4.31f, -1.6f) - curveToRelative(0.5f, -0.18f, 1.06f, -0.18f, 1.56f, 0.0f) - lineToRelative(3.33f, 1.24f) - curveToRelative(0.52f, -0.41f, 1.12f, -0.73f, 1.76f, -0.93f) - close() - moveTo(12.09f, 13.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.36f, 0.03f) - lineTo(9.0f, 14.2f) - lineToRelative(-2.74f, -0.95f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.5f, 1.42f) - lineToRelative(2.49f, 0.85f) - verticalLineToRelative(2.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.7f) - lineToRelative(1.45f, -0.5f) - curveToRelative(0.18f, -0.66f, 0.49f, -1.27f, 0.89f, -1.8f) - close() - moveTo(11.31f, 6.72f) - curveToRelative(-0.14f, 0.38f, 0.07f, 0.81f, 0.46f, 0.95f) - lineToRelative(2.66f, 0.92f) - curveToRelative(0.37f, 0.12f, 0.77f, 0.12f, 1.14f, 0.0f) - lineToRelative(2.65f, -0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.49f, -1.42f) - lineToRelative(-2.65f, 0.92f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.16f, 0.0f) - lineToRelative(-2.66f, -0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.95f, 0.46f) - close() - moveTo(20.17f, 19.11f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(2.61f, 2.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.05f) - lineToRelative(-2.61f, -2.61f) - close() - moveTo(19.5f, 16.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) - close() - } - } - return _boxMultipleSearch!! - } - -private var _boxMultipleSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxSearch.kt deleted file mode 100644 index 82e5b59e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxSearch.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BoxSearch: ImageVector - get() { - if (_boxSearch != null) { - return _boxSearch!! - } - _boxSearch = fluentIcon(name = "Regular.BoxSearch") { - fluentPath { - moveTo(13.4f, 2.51f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.8f, 0.0f) - lineTo(3.1f, 5.55f) - curveToRelative(-0.67f, 0.27f, -1.1f, 0.91f, -1.1f, 1.62f) - verticalLineToRelative(4.43f) - curveToRelative(0.47f, -0.24f, 0.97f, -0.41f, 1.5f, -0.5f) - lineTo(3.5f, 7.74f) - lineToRelative(7.75f, 3.01f) - verticalLineToRelative(10.02f) - lineToRelative(0.24f, 0.23f) - curveToRelative(0.21f, 0.22f, 0.36f, 0.48f, 0.44f, 0.75f) - curveToRelative(0.5f, 0.01f, 1.0f, -0.08f, 1.48f, -0.27f) - lineToRelative(7.5f, -3.04f) - curveToRelative(0.66f, -0.27f, 1.09f, -0.91f, 1.09f, -1.62f) - lineTo(22.0f, 7.17f) - curveToRelative(0.0f, -0.7f, -0.43f, -1.35f, -1.1f, -1.62f) - lineToRelative(-7.5f, -3.04f) - close() - moveTo(11.15f, 3.91f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 1.7f, 0.0f) - lineToRelative(6.59f, 2.66f) - lineToRelative(-2.67f, 1.04f) - lineToRelative(-7.53f, -2.93f) - lineToRelative(1.91f, -0.78f) - close() - moveTo(7.21f, 5.5f) - lineToRelative(7.48f, 2.9f) - lineTo(12.0f, 9.46f) - lineTo(4.6f, 6.56f) - lineTo(7.21f, 5.5f) - close() - moveTo(20.34f, 17.06f) - lineTo(12.84f, 20.1f) - lineTo(12.75f, 20.13f) - verticalLineToRelative(-9.37f) - lineToRelative(7.75f, -2.99f) - verticalLineToRelative(9.06f) - curveToRelative(0.0f, 0.1f, -0.06f, 0.19f, -0.16f, 0.23f) - close() - moveTo(4.5f, 21.0f) - curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) - lineToRelative(2.62f, 2.61f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.61f, -2.61f) - arcTo(4.5f, 4.5f, 0.0f, true, false, 4.5f, 21.0f) - close() - moveTo(4.5f, 19.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) - close() - } - } - return _boxSearch!! - } - -private var _boxSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxToolbox.kt deleted file mode 100644 index c4961498..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BoxToolbox.kt +++ /dev/null @@ -1,104 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BoxToolbox: ImageVector - get() { - if (_boxToolbox != null) { - return _boxToolbox!! - } - _boxToolbox = fluentIcon(name = "Regular.BoxToolbox") { - fluentPath { - moveTo(13.4f, 2.51f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.8f, 0.0f) - lineTo(3.1f, 5.55f) - curveToRelative(-0.67f, 0.27f, -1.1f, 0.91f, -1.1f, 1.62f) - verticalLineToRelative(9.66f) - curveToRelative(0.0f, 0.71f, 0.43f, 1.35f, 1.1f, 1.62f) - lineToRelative(7.5f, 3.04f) - lineToRelative(0.4f, 0.14f) - lineTo(11.0f, 20.04f) - lineToRelative(-7.34f, -2.98f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.16f, -0.23f) - lineTo(3.5f, 7.75f) - lineToRelative(7.75f, 3.01f) - verticalLineToRelative(4.65f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 1.5f, -1.3f) - verticalLineToRelative(-3.34f) - lineToRelative(7.75f, -3.0f) - verticalLineToRelative(3.78f) - curveTo(21.39f, 12.0f, 22.0f, 12.93f, 22.0f, 14.0f) - lineTo(22.0f, 7.17f) - curveToRelative(0.0f, -0.7f, -0.43f, -1.35f, -1.1f, -1.62f) - lineToRelative(-7.5f, -3.04f) - close() - moveTo(11.15f, 3.91f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 1.7f, 0.0f) - lineToRelative(6.59f, 2.67f) - lineToRelative(-2.67f, 1.03f) - lineToRelative(-7.53f, -2.93f) - lineToRelative(1.91f, -0.78f) - close() - moveTo(7.21f, 5.5f) - lineToRelative(7.48f, 2.9f) - lineTo(12.0f, 9.46f) - lineTo(4.6f, 6.56f) - lineTo(7.21f, 5.5f) - close() - moveTo(14.0f, 15.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - lineTo(12.0f, 18.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(16.0f, 18.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(20.5f, 18.0f) - lineTo(23.0f, 18.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(21.0f, 15.0f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(1.0f) - close() - moveTo(15.5f, 14.0f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(12.0f, 21.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - lineTo(23.0f, 19.5f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - close() - } - } - return _boxToolbox!! - } - -private var _boxToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Braces.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Braces.kt deleted file mode 100644 index bd34165e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Braces.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Braces: ImageVector - get() { - if (_braces != null) { - return _braces!! - } - _braces = fluentIcon(name = "Regular.Braces") { - fluentPath { - moveTo(4.5f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 7.25f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - curveTo(6.56f, 4.5f, 6.0f, 5.06f, 6.0f, 5.75f) - verticalLineToRelative(4.3f) - curveToRelative(0.0f, 0.75f, -0.3f, 1.45f, -0.8f, 1.95f) - curveToRelative(0.5f, 0.5f, 0.8f, 1.2f, 0.8f, 1.94f) - verticalLineToRelative(4.31f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, -2.75f) - verticalLineToRelative(-4.3f) - curveToRelative(0.0f, -0.55f, -0.34f, -1.02f, -0.85f, -1.2f) - lineToRelative(-0.14f, -0.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.42f) - lineToRelative(0.14f, -0.05f) - curveToRelative(0.5f, -0.17f, 0.85f, -0.64f, 0.85f, -1.18f) - lineTo(4.5f, 5.75f) - close() - moveTo(19.5f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 16.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(4.3f) - curveToRelative(0.0f, 0.75f, 0.3f, 1.45f, 0.8f, 1.95f) - curveToRelative(-0.5f, 0.5f, -0.8f, 1.2f, -0.8f, 1.94f) - verticalLineToRelative(4.31f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, -2.75f) - verticalLineToRelative(-4.3f) - curveToRelative(0.0f, -0.55f, 0.34f, -1.02f, 0.85f, -1.2f) - lineToRelative(0.14f, -0.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.42f) - lineToRelative(-0.14f, -0.05f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.85f, -1.18f) - lineTo(19.5f, 5.75f) - close() - } - } - return _braces!! - } - -private var _braces: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BracesVariable.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BracesVariable.kt deleted file mode 100644 index 1ab47c95..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BracesVariable.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BracesVariable: ImageVector - get() { - if (_bracesVariable != null) { - return _bracesVariable!! - } - _bracesVariable = fluentIcon(name = "Regular.BracesVariable") { - fluentPath { - moveTo(3.5f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 6.25f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - curveTo(5.56f, 4.5f, 5.0f, 5.06f, 5.0f, 5.75f) - verticalLineToRelative(4.3f) - curveToRelative(0.0f, 0.75f, -0.3f, 1.45f, -0.8f, 1.95f) - curveToRelative(0.5f, 0.5f, 0.8f, 1.2f, 0.8f, 1.94f) - verticalLineToRelative(4.31f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, -2.75f) - verticalLineToRelative(-4.3f) - curveToRelative(0.0f, -0.55f, -0.34f, -1.02f, -0.85f, -1.2f) - lineToRelative(-0.14f, -0.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.42f) - lineToRelative(0.14f, -0.05f) - curveToRelative(0.5f, -0.17f, 0.85f, -0.64f, 0.85f, -1.18f) - lineTo(3.5f, 5.75f) - close() - moveTo(20.5f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 17.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(4.3f) - curveToRelative(0.0f, 0.75f, 0.3f, 1.45f, 0.8f, 1.95f) - curveToRelative(-0.5f, 0.5f, -0.8f, 1.2f, -0.8f, 1.94f) - verticalLineToRelative(4.31f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, -2.75f) - verticalLineToRelative(-4.3f) - curveToRelative(0.0f, -0.55f, 0.34f, -1.02f, 0.85f, -1.2f) - lineToRelative(0.14f, -0.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.42f) - lineToRelative(-0.14f, -0.05f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.85f, -1.18f) - lineTo(20.5f, 5.75f) - close() - moveTo(9.1f, 7.04f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.2f, 0.92f) - lineTo(11.06f, 12.0f) - lineToRelative(-3.14f, 4.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.18f, 0.92f) - lineTo(12.0f, 13.22f) - lineToRelative(2.9f, 3.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.2f, -0.92f) - lineTo(12.94f, 12.0f) - lineToRelative(3.14f, -4.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.18f, -0.92f) - lineTo(12.0f, 10.78f) - lineTo(9.1f, 7.04f) - close() - } - } - return _bracesVariable!! - } - -private var _bracesVariable: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BrainCircuit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BrainCircuit.kt deleted file mode 100644 index bb982608..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BrainCircuit.kt +++ /dev/null @@ -1,132 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BrainCircuit: ImageVector - get() { - if (_brainCircuit != null) { - return _brainCircuit!! - } - _brainCircuit = fluentIcon(name = "Regular.BrainCircuit") { - fluentPath { - moveTo(7.15f, 3.01f) - curveToRelative(0.83f, -0.65f, 1.92f, -1.0f, 3.0f, -1.0f) - arcToRelative(2.3f, 2.3f, 0.0f, false, true, 1.86f, 0.88f) - arcTo(2.3f, 2.3f, 0.0f, false, true, 13.86f, 2.0f) - curveToRelative(1.08f, 0.0f, 2.17f, 0.35f, 3.0f, 1.0f) - curveToRelative(0.65f, 0.5f, 1.16f, 1.2f, 1.35f, 2.04f) - curveToRelative(0.42f, 0.07f, 0.8f, 0.28f, 1.1f, 0.57f) - curveToRelative(0.48f, 0.45f, 0.82f, 1.1f, 1.04f, 1.77f) - curveToRelative(0.22f, 0.68f, 0.33f, 1.45f, 0.3f, 2.18f) - arcToRelative(4.9f, 4.9f, 0.0f, false, true, -0.18f, 1.13f) - lineToRelative(0.06f, 0.03f) - curveToRelative(0.37f, 0.17f, 0.67f, 0.45f, 0.9f, 0.8f) - curveToRelative(0.42f, 0.7f, 0.57f, 1.68f, 0.57f, 2.94f) - curveToRelative(0.0f, 1.44f, -0.55f, 2.42f, -1.26f, 3.03f) - curveToRelative(-0.41f, 0.35f, -0.87f, 0.57f, -1.27f, 0.7f) - curveToRelative(-0.14f, 0.68f, -0.49f, 1.46f, -1.02f, 2.13f) - arcTo(4.24f, 4.24f, 0.0f, false, true, 15.09f, 22.0f) - arcToRelative(3.9f, 3.9f, 0.0f, false, true, -2.77f, -1.31f) - arcToRelative(5.36f, 5.36f, 0.0f, false, true, -0.31f, -0.36f) - lineToRelative(-0.31f, 0.36f) - arcToRelative(3.9f, 3.9f, 0.0f, false, true, -2.78f, 1.3f) - arcToRelative(4.24f, 4.24f, 0.0f, false, true, -3.36f, -1.66f) - arcToRelative(5.17f, 5.17f, 0.0f, false, true, -1.01f, -2.14f) - curveToRelative(-0.4f, -0.12f, -0.86f, -0.34f, -1.27f, -0.69f) - arcTo(3.83f, 3.83f, 0.0f, false, true, 2.0f, 14.47f) - curveToRelative(0.0f, -1.26f, 0.15f, -2.25f, 0.58f, -2.93f) - arcToRelative(2.1f, 2.1f, 0.0f, false, true, 0.96f, -0.84f) - arcToRelative(4.9f, 4.9f, 0.0f, false, true, -0.18f, -1.13f) - curveToRelative(-0.03f, -0.73f, 0.08f, -1.5f, 0.3f, -2.18f) - arcTo(4.2f, 4.2f, 0.0f, false, true, 4.7f, 5.62f) - curveToRelative(0.3f, -0.29f, 0.68f, -0.5f, 1.1f, -0.57f) - curveTo(6.0f, 4.2f, 6.5f, 3.52f, 7.15f, 3.0f) - close() - moveTo(8.07f, 4.2f) - curveToRelative(-0.54f, 0.42f, -0.86f, 0.99f, -0.86f, 1.64f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.99f, 0.7f) - curveToRelative(-0.14f, -0.04f, -0.28f, -0.03f, -0.49f, 0.17f) - curveToRelative(-0.23f, 0.22f, -0.47f, 0.61f, -0.64f, 1.14f) - curveToRelative(-0.16f, 0.52f, -0.25f, 1.1f, -0.22f, 1.65f) - curveToRelative(0.02f, 0.56f, 0.16f, 1.02f, 0.37f, 1.33f) - lineToRelative(0.08f, 0.17f) - lineTo(6.4f, 11.0f) - curveToRelative(1.5f, 0.0f, 2.74f, 1.17f, 2.84f, 2.64f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -1.5f, 0.01f) - arcTo(1.35f, 1.35f, 0.0f, false, false, 6.4f, 12.5f) - lineTo(3.78f, 12.5f) - curveToRelative(-0.15f, 0.35f, -0.27f, 0.95f, -0.27f, 1.97f) - reflectiveCurveToRelative(0.38f, 1.58f, 0.74f, 1.9f) - curveToRelative(0.4f, 0.34f, 0.85f, 0.43f, 0.98f, 0.43f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.33f, 0.75f, 0.75f) - reflectiveCurveToRelative(0.23f, 1.18f, 0.76f, 1.84f) - curveToRelative(0.5f, 0.64f, 1.23f, 1.1f, 2.18f, 1.1f) - curveToRelative(0.64f, 0.0f, 1.23f, -0.35f, 1.7f, -0.84f) - arcToRelative(3.7f, 3.7f, 0.0f, false, false, 0.63f, -0.92f) - lineTo(11.25f, 9.25f) - horizontalLineToRelative(-0.9f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(0.9f) - lineTo(11.25f, 5.22f) - arcToRelative(2.06f, 2.06f, 0.0f, false, false, -0.02f, -0.3f) - curveToRelative(-0.03f, -0.19f, -0.07f, -0.43f, -0.16f, -0.67f) - curveToRelative(-0.1f, -0.24f, -0.2f, -0.43f, -0.35f, -0.55f) - arcToRelative(0.8f, 0.8f, 0.0f, false, false, -0.57f, -0.2f) - curveToRelative(-0.76f, 0.0f, -1.52f, 0.26f, -2.08f, 0.7f) - close() - moveTo(12.77f, 17.0f) - verticalLineToRelative(1.73f) - lineToRelative(0.11f, 0.23f) - curveToRelative(0.12f, 0.2f, 0.3f, 0.45f, 0.52f, 0.69f) - curveToRelative(0.47f, 0.49f, 1.06f, 0.85f, 1.7f, 0.85f) - curveToRelative(0.95f, 0.0f, 1.67f, -0.47f, 2.18f, -1.1f) - curveToRelative(0.53f, -0.67f, 0.76f, -1.43f, 0.76f, -1.85f) - curveToRelative(0.0f, -0.42f, 0.33f, -0.75f, 0.75f, -0.75f) - curveToRelative(0.13f, 0.0f, 0.57f, -0.1f, 0.97f, -0.44f) - curveToRelative(0.37f, -0.31f, 0.74f, -0.87f, 0.74f, -1.9f) - curveToRelative(0.0f, -1.2f, -0.16f, -1.82f, -0.35f, -2.13f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.26f, -0.25f) - curveToRelative(-0.1f, -0.04f, -0.25f, -0.08f, -0.49f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.62f, -1.17f) - curveToRelative(0.2f, -0.3f, 0.34f, -0.77f, 0.36f, -1.33f) - arcToRelative(4.84f, 4.84f, 0.0f, false, false, -0.22f, -1.65f) - curveToRelative(-0.17f, -0.53f, -0.4f, -0.92f, -0.64f, -1.14f) - curveToRelative(-0.2f, -0.2f, -0.35f, -0.2f, -0.49f, -0.16f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, -0.71f) - curveToRelative(0.0f, -0.65f, -0.32f, -1.22f, -0.87f, -1.64f) - arcToRelative(3.45f, 3.45f, 0.0f, false, false, -2.08f, -0.7f) - arcToRelative(0.8f, 0.8f, 0.0f, false, false, -0.57f, 0.2f) - curveToRelative(-0.14f, 0.12f, -0.25f, 0.31f, -0.34f, 0.55f) - arcToRelative(3.06f, 3.06f, 0.0f, false, false, -0.19f, 0.96f) - lineTo(12.76f, 15.5f) - horizontalLineToRelative(0.64f) - curveToRelative(0.75f, 0.0f, 1.35f, -0.6f, 1.35f, -1.35f) - verticalLineToRelative(-1.8f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 1.5f, 0.0f) - verticalLineToRelative(1.8f) - arcTo(2.85f, 2.85f, 0.0f, false, true, 13.4f, 17.0f) - horizontalLineToRelative(-0.64f) - close() - moveTo(8.5f, 8.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - close() - moveTo(8.0f, 15.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - close() - moveTo(15.0f, 10.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - close() - } - } - return _brainCircuit!! - } - -private var _brainCircuit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Branch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Branch.kt deleted file mode 100644 index f2944c45..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Branch.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Branch: ImageVector - get() { - if (_branch != null) { - return _branch!! - } - _branch = fluentIcon(name = "Regular.Branch") { - fluentPath { - moveTo(4.0f, 5.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 4.49f, 3.36f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 5.26f, 3.89f) - horizontalLineToRelative(0.33f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.33f) - arcToRelative(6.99f, 6.99f, 0.0f, false, true, -5.5f, -2.67f) - verticalLineToRelative(3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, -1.5f, 0.0f) - lineTo(6.75f, 8.92f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 4.0f, 5.5f) - close() - moveTo(7.5f, 3.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, -4.0f) - close() - moveTo(7.5f, 16.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, -4.0f) - close() - moveTo(15.5f, 13.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -4.0f, 0.0f) - close() - } - } - return _branch!! - } - -private var _branch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BranchCompare.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BranchCompare.kt deleted file mode 100644 index c133104c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BranchCompare.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BranchCompare: ImageVector - get() { - if (_branchCompare != null) { - return _branchCompare!! - } - _branchCompare = fluentIcon(name = "Regular.BranchCompare") { - fluentPath { - moveTo(9.0f, 5.5f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.0f, 3.46f) - lineTo(6.0f, 15.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) - horizontalLineToRelative(2.69f) - lineToRelative(-0.97f, -0.97f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(2.25f, 2.25f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-2.25f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(0.97f, -0.97f) - lineTo(9.0f, 19.5f) - arcTo(4.5f, 4.5f, 0.0f, false, true, 4.5f, 15.0f) - lineTo(4.5f, 8.86f) - arcTo(3.5f, 3.5f, 0.0f, true, true, 9.0f, 5.5f) - close() - moveTo(7.5f, 5.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 4.0f, 0.0f) - close() - moveTo(22.0f, 18.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, -4.0f, -3.46f) - lineTo(18.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - horizontalLineToRelative(-1.94f) - lineToRelative(0.97f, 0.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineToRelative(-2.25f, -2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(2.25f, -2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-0.97f, 0.97f) - lineTo(15.0f, 4.5f) - arcTo(4.5f, 4.5f, 0.0f, false, true, 19.5f, 9.0f) - verticalLineToRelative(6.14f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 22.0f, 18.5f) - close() - moveTo(20.5f, 18.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 4.0f, 0.0f) - close() - } - } - return _branchCompare!! - } - -private var _branchCompare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BranchFork.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BranchFork.kt deleted file mode 100644 index f9d55111..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BranchFork.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BranchFork: ImageVector - get() { - if (_branchFork != null) { - return _branchFork!! - } - _branchFork = fluentIcon(name = "Regular.BranchFork") { - fluentPath { - moveTo(11.0f, 5.5f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.0f, 3.46f) - verticalLineToRelative(2.54f) - horizontalLineToRelative(6.25f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-0.4f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 1.5f, 0.11f) - verticalLineToRelative(0.29f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 14.25f, 13.0f) - lineTo(8.0f, 13.0f) - verticalLineToRelative(2.04f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, -1.5f, 0.1f) - lineTo(6.5f, 8.86f) - arcTo(3.5f, 3.5f, 0.0f, true, true, 11.0f, 5.5f) - close() - moveTo(7.5f, 7.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) - close() - moveTo(17.5f, 7.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) - close() - moveTo(9.5f, 18.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 4.0f, 0.0f) - close() - } - } - return _branchFork!! - } - -private var _branchFork: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BranchForkHint.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BranchForkHint.kt deleted file mode 100644 index a21e50d4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BranchForkHint.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BranchForkHint: ImageVector - get() { - if (_branchForkHint != null) { - return _branchForkHint!! - } - _branchForkHint = fluentIcon(name = "Regular.BranchForkHint") { - fluentPath { - moveTo(6.5f, 2.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -1.0f, 6.86f) - verticalLineToRelative(5.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(7.0f, 13.0f) - horizontalLineToRelative(6.25f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 17.0f, 9.25f) - verticalLineToRelative(-0.29f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, -1.5f, -0.1f) - verticalLineToRelative(0.39f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(7.0f, 11.5f) - lineTo(7.0f, 8.96f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 6.5f, 2.0f) - close() - moveTo(4.5f, 5.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -4.0f, 0.0f) - close() - moveTo(16.5f, 3.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) - close() - moveTo(5.34f, 16.88f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.87f, -1.22f) - arcToRelative(3.52f, 3.52f, 0.0f, false, false, -1.23f, 1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.4f, 0.53f) - arcToRelative(1.99f, 1.99f, 0.0f, false, true, 0.7f, -0.9f) - close() - moveTo(8.54f, 15.66f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.88f, 1.22f) - arcToRelative(2.01f, 2.01f, 0.0f, false, true, 0.7f, 0.91f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.4f, -0.54f) - arcToRelative(3.49f, 3.49f, 0.0f, false, false, -1.23f, -1.59f) - close() - moveTo(4.78f, 19.52f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.3f, 0.76f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 1.48f, 1.37f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.66f, -1.35f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.84f, -0.78f) - close() - moveTo(9.52f, 20.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.3f, -0.76f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.84f, 0.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.66f, 1.35f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 1.48f, -1.37f) - close() - } - } - return _branchForkHint!! - } - -private var _branchForkHint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BranchForkLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BranchForkLink.kt deleted file mode 100644 index c2a749af..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BranchForkLink.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BranchForkLink: ImageVector - get() { - if (_branchForkLink != null) { - return _branchForkLink!! - } - _branchForkLink = fluentIcon(name = "Regular.BranchForkLink") { - fluentPath { - moveTo(6.0f, 8.96f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, -1.5f, -0.1f) - verticalLineToRelative(6.28f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 1.5f, -0.1f) - lineTo(6.0f, 13.0f) - horizontalLineToRelative(6.25f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 16.0f, 9.25f) - verticalLineToRelative(-0.29f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, -1.5f, -0.1f) - verticalLineToRelative(0.39f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(6.0f, 11.5f) - lineTo(6.0f, 8.96f) - close() - moveTo(7.5f, 5.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(17.5f, 5.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(5.5f, 16.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) - close() - moveTo(23.0f, 18.75f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 19.25f, 15.0f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - verticalLineToRelative(-0.01f) - horizontalLineToRelative(0.2f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 18.74f) - close() - moveTo(16.5f, 15.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-0.2f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(20.0f, 18.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - } - } - return _branchForkLink!! - } - -private var _branchForkLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BreakoutRoom.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BreakoutRoom.kt deleted file mode 100644 index 7625065f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BreakoutRoom.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BreakoutRoom: ImageVector - get() { - if (_breakoutRoom != null) { - return _breakoutRoom!! - } - _breakoutRoom = fluentIcon(name = "Regular.BreakoutRoom") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-3.54f) - curveToRelative(0.41f, -0.43f, 0.74f, -0.94f, 0.96f, -1.5f) - horizontalLineToRelative(2.58f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineTo(6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineTo(6.25f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(2.58f) - curveToRelative(-0.56f, 0.22f, -1.07f, 0.55f, -1.5f, 0.96f) - verticalLineTo(6.25f) - close() - moveTo(13.49f, 19.5f) - curveToRelative(-0.58f, 0.9f, -1.59f, 1.5f, -2.74f, 1.5f) - horizontalLineToRelative(-4.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - verticalLineToRelative(-4.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 6.25f, 10.0f) - horizontalLineToRelative(4.5f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.64f, -0.19f, 1.24f, -0.51f, 1.75f) - close() - moveTo(4.5f, 13.25f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(4.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - close() - } - } - return _breakoutRoom!! - } - -private var _breakoutRoom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Briefcase.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Briefcase.kt deleted file mode 100644 index de123dc7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Briefcase.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Briefcase: ImageVector - get() { - if (_briefcase != null) { - return _briefcase!! - } - _briefcase = fluentIcon(name = "Regular.Briefcase") { - fluentPath { - moveTo(8.75f, 3.0f) - horizontalLineToRelative(6.5f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - lineTo(16.0f, 7.0f) - horizontalLineToRelative(1.75f) - curveTo(19.55f, 7.0f, 21.0f, 8.46f, 21.0f, 10.25f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 16.75f) - verticalLineToRelative(-6.5f) - curveTo(3.0f, 8.45f, 4.46f, 7.0f, 6.25f, 7.0f) - lineTo(8.0f, 7.0f) - lineTo(8.0f, 3.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(6.5f) - horizontalLineToRelative(-6.5f) - close() - moveTo(17.75f, 8.5f) - lineTo(6.25f, 8.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-6.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(14.5f, 4.5f) - horizontalLineToRelative(-5.0f) - lineTo(9.5f, 7.0f) - horizontalLineToRelative(5.0f) - lineTo(14.5f, 4.5f) - close() - } - } - return _briefcase!! - } - -private var _briefcase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BriefcaseMedical.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BriefcaseMedical.kt deleted file mode 100644 index 63f825ac..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BriefcaseMedical.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BriefcaseMedical: ImageVector - get() { - if (_briefcaseMedical != null) { - return _briefcaseMedical!! - } - _briefcaseMedical = fluentIcon(name = "Regular.BriefcaseMedical") { - fluentPath { - moveTo(11.5f, 12.5f) - verticalLineToRelative(-1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(1.75f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(13.0f, 14.0f) - verticalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(11.5f, 14.0f) - lineTo(9.75f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.75f) - close() - moveTo(8.75f, 3.0f) - horizontalLineToRelative(6.5f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - lineTo(16.0f, 7.0f) - horizontalLineToRelative(1.75f) - curveTo(19.55f, 7.0f, 21.0f, 8.46f, 21.0f, 10.25f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 16.75f) - verticalLineToRelative(-6.5f) - curveTo(3.0f, 8.45f, 4.46f, 7.0f, 6.25f, 7.0f) - lineTo(8.0f, 7.0f) - lineTo(8.0f, 3.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - close() - moveTo(17.75f, 8.5f) - lineTo(6.25f, 8.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-6.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(14.5f, 4.5f) - horizontalLineToRelative(-5.0f) - lineTo(9.5f, 7.0f) - horizontalLineToRelative(5.0f) - lineTo(14.5f, 4.5f) - close() - } - } - return _briefcaseMedical!! - } - -private var _briefcaseMedical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BriefcaseOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BriefcaseOff.kt deleted file mode 100644 index 9dedc908..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BriefcaseOff.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BriefcaseOff: ImageVector - get() { - if (_briefcaseOff != null) { - return _briefcaseOff!! - } - _briefcaseOff = fluentIcon(name = "Regular.BriefcaseOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(3.73f, 3.73f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 10.25f) - verticalLineToRelative(6.5f) - curveTo(3.0f, 18.55f, 4.46f, 20.0f, 6.25f, 20.0f) - horizontalLineToRelative(11.5f) - curveToRelative(0.36f, 0.0f, 0.7f, -0.06f, 1.02f, -0.16f) - lineToRelative(1.95f, 1.94f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(17.44f, 18.5f) - lineTo(6.25f, 18.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-6.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(1.19f) - lineToRelative(10.0f, 10.0f) - close() - moveTo(19.5f, 10.25f) - verticalLineToRelative(6.07f) - lineToRelative(1.36f, 1.36f) - curveToRelative(0.1f, -0.3f, 0.14f, -0.6f, 0.14f, -0.93f) - verticalLineToRelative(-6.5f) - curveTo(21.0f, 8.45f, 19.55f, 7.0f, 17.75f, 7.0f) - lineTo(16.0f, 7.0f) - lineTo(16.0f, 3.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) - horizontalLineToRelative(-6.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - verticalLineToRelative(1.07f) - lineToRelative(1.5f, 1.5f) - lineTo(9.5f, 4.5f) - horizontalLineToRelative(5.0f) - lineTo(14.5f, 7.0f) - horizontalLineToRelative(-4.32f) - lineToRelative(1.5f, 1.5f) - horizontalLineToRelative(6.07f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - close() - } - } - return _briefcaseOff!! - } - -private var _briefcaseOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BrightnessHigh.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BrightnessHigh.kt deleted file mode 100644 index d2771265..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BrightnessHigh.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BrightnessHigh: ImageVector - get() { - if (_brightnessHigh != null) { - return _brightnessHigh!! - } - _brightnessHigh = fluentIcon(name = "Regular.BrightnessHigh") { - fluentPath { - moveTo(12.0f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(12.0f, 17.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, false, 0.0f, -10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 0.0f, 10.0f) - close() - moveTo(12.0f, 15.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 0.0f, -7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 0.0f, 7.0f) - close() - moveTo(21.25f, 12.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.5f) - close() - moveTo(12.0f, 19.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(4.25f, 12.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.5f) - close() - moveTo(4.22f, 4.22f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(1.5f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineToRelative(-1.5f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - moveTo(5.28f, 19.78f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(1.5f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-1.5f, 1.5f) - close() - moveTo(19.78f, 4.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineToRelative(1.5f, -1.5f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - close() - moveTo(18.72f, 19.78f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-1.5f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.5f, 1.5f) - close() - } - } - return _brightnessHigh!! - } - -private var _brightnessHigh: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BrightnessLow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BrightnessLow.kt deleted file mode 100644 index b83f4d21..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BrightnessLow.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BrightnessLow: ImageVector - get() { - if (_brightnessLow != null) { - return _brightnessLow!! - } - _brightnessLow = fluentIcon(name = "Regular.BrightnessLow") { - fluentPath { - moveTo(12.0f, 3.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(12.0f, 17.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, false, 0.0f, -10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 0.0f, 10.0f) - close() - moveTo(12.0f, 15.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 0.0f, -7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 0.0f, 7.0f) - close() - moveTo(19.75f, 12.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.0f) - close() - moveTo(12.0f, 18.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(5.25f, 12.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.0f) - close() - moveTo(6.22f, 6.22f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(0.5f, 0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineToRelative(-0.5f, -0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - moveTo(7.28f, 17.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(0.5f, -0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) - lineToRelative(-0.5f, 0.5f) - close() - moveTo(17.78f, 6.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-0.5f, 0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineToRelative(0.5f, -0.5f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - close() - moveTo(16.72f, 17.78f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-0.5f, -0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(0.5f, 0.5f) - close() - } - } - return _brightnessLow!! - } - -private var _brightnessLow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BroadActivityFeed.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BroadActivityFeed.kt deleted file mode 100644 index 4ebc6db3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BroadActivityFeed.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BroadActivityFeed: ImageVector - get() { - if (_broadActivityFeed != null) { - return _broadActivityFeed!! - } - _broadActivityFeed = fluentIcon(name = "Regular.BroadActivityFeed") { - fluentPath { - moveTo(9.25f, 14.0f) - curveToRelative(0.97f, 0.0f, 1.76f, 0.79f, 1.76f, 1.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.76f, 1.75f) - horizontalLineToRelative(-5.5f) - curveTo(2.78f, 21.0f, 2.0f, 20.22f, 2.0f, 19.25f) - verticalLineToRelative(-3.5f) - curveTo(2.0f, 14.8f, 2.78f, 14.0f, 3.75f, 14.0f) - horizontalLineToRelative(5.5f) - close() - moveTo(20.25f, 14.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.79f, 1.75f, 1.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-5.5f) - curveToRelative(-0.97f, 0.0f, -1.76f, -0.78f, -1.76f, -1.75f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.96f, 0.79f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(5.51f) - close() - moveTo(9.25f, 15.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(5.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.1f, 0.25f, -0.25f) - verticalLineToRelative(-3.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(20.25f, 15.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.26f, 0.25f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.14f, 0.12f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(5.51f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.1f, 0.25f, -0.25f) - verticalLineToRelative(-3.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(20.25f, 3.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(5.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(3.75f, 12.0f) - curveTo(2.78f, 12.0f, 2.0f, 11.22f, 2.0f, 10.25f) - verticalLineToRelative(-5.5f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) - lineTo(3.76f, 3.0f) - horizontalLineToRelative(16.5f) - close() - moveTo(20.25f, 4.5f) - lineTo(3.69f, 4.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.19f, 0.25f) - verticalLineToRelative(5.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(16.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-5.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - } - } - return _broadActivityFeed!! - } - -private var _broadActivityFeed: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Broom.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Broom.kt deleted file mode 100644 index 8ade0eb7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Broom.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Broom: ImageVector - get() { - if (_broom != null) { - return _broom!! - } - _broom = fluentIcon(name = "Regular.Broom") { - fluentPath { - moveTo(22.45f, 1.92f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-6.93f, 6.93f) - arcToRelative(5.75f, 5.75f, 0.0f, false, true, -0.5f, 7.57f) - lineToRelative(-0.82f, 0.83f) - lineToRelative(-2.79f, 4.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.15f, 0.12f) - lineToRelative(-8.49f, -8.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.11f, -1.15f) - lineToRelative(4.19f, -2.8f) - lineToRelative(0.83f, -0.82f) - arcToRelative(5.75f, 5.75f, 0.0f, false, true, 7.56f, -0.5f) - lineToRelative(6.93f, -6.93f) - curveToRelative(0.3f, -0.29f, 0.77f, -0.29f, 1.06f, 0.0f) - close() - moveTo(7.6f, 10.76f) - lineToRelative(6.01f, 6.01f) - lineToRelative(0.36f, -0.35f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, -6.01f, -6.01f) - lineToRelative(-0.36f, 0.35f) - close() - moveTo(6.45f, 11.73f) - lineTo(3.48f, 13.7f) - lineToRelative(7.19f, 7.19f) - lineToRelative(1.98f, -2.97f) - lineToRelative(-6.2f, -6.2f) - close() - } - } - return _broom!! - } - -private var _broom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Bug.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Bug.kt deleted file mode 100644 index 20c8a438..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Bug.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Bug: ImageVector - get() { - if (_bug != null) { - return _bug!! - } - _bug = fluentIcon(name = "Regular.Bug") { - fluentPath { - moveTo(10.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.64f, 0.2f, 1.22f, 0.53f, 1.7f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.52f, 3.3f) - horizontalLineToRelative(-0.25f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 4.5f, 6.22f) - lineTo(4.5f, 4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, -0.01f) - verticalLineToRelative(1.49f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 3.74f, 3.76f) - lineTo(7.0f, 9.99f) - verticalLineToRelative(1.51f) - lineTo(2.75f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(7.0f, 13.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-0.25f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 3.0f, 18.75f) - verticalLineToRelative(1.48f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.49f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.24f, -2.26f) - horizontalLineToRelative(0.48f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 9.54f, 0.0f) - horizontalLineToRelative(0.47f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 2.25f, 2.26f) - verticalLineToRelative(1.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.48f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.74f, -3.77f) - lineTo(17.0f, 14.98f) - lineTo(17.0f, 13.0f) - horizontalLineToRelative(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(17.0f, 11.5f) - lineTo(17.0f, 10.0f) - horizontalLineToRelative(0.25f) - curveTo(19.32f, 9.97f, 21.0f, 8.3f, 21.0f, 6.22f) - lineTo(21.0f, 4.74f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 1.23f, -1.0f, 2.25f, -2.24f, 2.25f) - horizontalLineToRelative(-0.26f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.52f, -3.28f) - curveToRelative(0.33f, -0.49f, 0.53f, -1.07f, 0.53f, -1.7f) - verticalLineToRelative(-0.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(0.75f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - verticalLineToRelative(-0.75f) - close() - moveTo(8.5f, 8.75f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(2.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.01f, 2.25f, 2.25f) - lineTo(15.5f, 15.0f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, -7.0f, 0.0f) - lineTo(8.5f, 8.75f) - close() - } - } - return _bug!! - } - -private var _bug: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Building.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Building.kt deleted file mode 100644 index e2b3bdeb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Building.kt +++ /dev/null @@ -1,93 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Building: ImageVector - get() { - if (_building != null) { - return _building!! - } - _building = fluentIcon(name = "Regular.Building") { - fluentPath { - moveTo(6.25f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(5.5f, 20.5f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(-2.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(6.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(2.75f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(-8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-8.0f) - close() - moveTo(9.0f, 18.0f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(2.25f) - lineTo(11.25f, 18.0f) - lineTo(9.0f, 18.0f) - close() - moveTo(12.75f, 18.0f) - verticalLineToRelative(2.5f) - lineTo(15.0f, 20.5f) - lineTo(15.0f, 18.0f) - horizontalLineToRelative(-2.25f) - close() - moveTo(19.25f, 22.0f) - lineTo(4.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-17.0f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(8.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - lineTo(16.5f, 9.5f) - horizontalLineToRelative(1.25f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - close() - moveTo(7.5f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - close() - moveTo(8.5f, 12.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(8.5f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(12.0f, 5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(12.0f, 12.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(15.5f, 12.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(12.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - } - } - return _building!! - } - -private var _building: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingBank.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingBank.kt deleted file mode 100644 index 352c250a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingBank.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BuildingBank: ImageVector - get() { - if (_buildingBank != null) { - return _buildingBank!! - } - _buildingBank = fluentIcon(name = "Regular.BuildingBank") { - fluentPath { - moveTo(13.0f, 6.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(13.03f, 2.32f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.06f, 0.0f) - lineTo(3.55f, 7.74f) - curveToRelative(-0.98f, 0.71f, -0.48f, 2.26f, 0.73f, 2.26f) - horizontalLineToRelative(0.22f) - verticalLineToRelative(5.8f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 18.25f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(16.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -1.07f, -0.61f, -2.0f, -1.5f, -2.45f) - lineTo(19.5f, 10.0f) - horizontalLineToRelative(0.22f) - curveToRelative(1.2f, 0.0f, 1.71f, -1.55f, 0.73f, -2.26f) - lineToRelative(-7.42f, -5.42f) - close() - moveTo(11.85f, 3.54f) - curveToRelative(0.09f, -0.07f, 0.21f, -0.07f, 0.3f, 0.0f) - lineToRelative(6.8f, 4.96f) - lineTo(5.05f, 8.5f) - lineToRelative(6.8f, -4.96f) - close() - moveTo(18.0f, 10.0f) - verticalLineToRelative(5.5f) - horizontalLineToRelative(-2.0f) - lineTo(16.0f, 10.0f) - horizontalLineToRelative(2.0f) - close() - moveTo(14.5f, 10.0f) - verticalLineToRelative(5.5f) - horizontalLineToRelative(-1.75f) - lineTo(12.75f, 10.0f) - horizontalLineToRelative(1.75f) - close() - moveTo(11.25f, 10.0f) - verticalLineToRelative(5.5f) - lineTo(9.5f, 15.5f) - lineTo(9.5f, 10.0f) - horizontalLineToRelative(1.75f) - close() - moveTo(5.75f, 17.0f) - horizontalLineToRelative(12.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - lineTo(19.5f, 19.0f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - close() - moveTo(6.0f, 15.5f) - lineTo(6.0f, 10.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(5.5f) - lineTo(6.0f, 15.5f) - close() - } - } - return _buildingBank!! - } - -private var _buildingBank: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingBankLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingBankLink.kt deleted file mode 100644 index 0757f6ad..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingBankLink.kt +++ /dev/null @@ -1,105 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BuildingBankLink: ImageVector - get() { - if (_buildingBankLink != null) { - return _buildingBankLink!! - } - _buildingBankLink = fluentIcon(name = "Regular.BuildingBankLink") { - fluentPath { - moveTo(13.0f, 6.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(13.03f, 2.32f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.06f, 0.0f) - lineTo(3.55f, 7.74f) - curveToRelative(-0.98f, 0.71f, -0.48f, 2.26f, 0.73f, 2.26f) - horizontalLineToRelative(0.22f) - verticalLineToRelative(5.8f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 18.25f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(7.42f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 11.0f, 19.0f) - lineTo(4.5f, 19.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(5.82f) - curveToRelative(0.31f, -0.58f, 0.74f, -1.1f, 1.26f, -1.5f) - horizontalLineToRelative(-0.08f) - lineTo(12.75f, 10.0f) - horizontalLineToRelative(1.75f) - verticalLineToRelative(4.67f) - curveToRelative(0.4f, -0.11f, 0.82f, -0.17f, 1.25f, -0.17f) - lineTo(16.0f, 14.5f) - lineTo(16.0f, 10.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(4.5f) - horizontalLineToRelative(1.5f) - lineTo(19.5f, 10.0f) - horizontalLineToRelative(0.22f) - curveToRelative(1.2f, 0.0f, 1.71f, -1.55f, 0.73f, -2.26f) - lineToRelative(-7.42f, -5.42f) - close() - moveTo(11.85f, 3.54f) - curveToRelative(0.09f, -0.07f, 0.21f, -0.07f, 0.3f, 0.0f) - lineToRelative(6.8f, 4.96f) - lineTo(5.05f, 8.5f) - lineToRelative(6.8f, -4.96f) - close() - moveTo(11.25f, 10.0f) - verticalLineToRelative(5.5f) - lineTo(9.5f, 15.5f) - lineTo(9.5f, 10.0f) - horizontalLineToRelative(1.75f) - close() - moveTo(6.0f, 15.5f) - lineTo(6.0f, 10.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(5.5f) - lineTo(6.0f, 15.5f) - close() - moveTo(23.0f, 19.25f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.75f, -3.75f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - lineTo(19.25f, 23.0f) - horizontalLineToRelative(0.2f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 19.25f) - close() - moveTo(16.5f, 16.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-0.2f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(20.0f, 19.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - } - } - return _buildingBankLink!! - } - -private var _buildingBankLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingBankToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingBankToolbox.kt deleted file mode 100644 index 414b5d47..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingBankToolbox.kt +++ /dev/null @@ -1,121 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BuildingBankToolbox: ImageVector - get() { - if (_buildingBankToolbox != null) { - return _buildingBankToolbox!! - } - _buildingBankToolbox = fluentIcon(name = "Regular.BuildingBankToolbox") { - fluentPath { - moveTo(13.0f, 6.26f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(13.03f, 2.34f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.06f, 0.0f) - lineToRelative(-7.42f, 5.4f) - curveToRelative(-0.98f, 0.72f, -0.48f, 2.27f, 0.73f, 2.27f) - horizontalLineToRelative(0.22f) - verticalLineToRelative(5.8f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 18.24f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(11.0f, 20.49f) - lineTo(11.0f, 19.0f) - lineTo(4.5f, 19.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - lineTo(11.0f, 17.0f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -0.35f, 0.07f, -0.7f, 0.2f, -1.0f) - lineTo(9.5f, 15.5f) - lineTo(9.5f, 10.0f) - horizontalLineToRelative(1.75f) - verticalLineToRelative(5.4f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 1.5f, -1.29f) - verticalLineToRelative(-4.1f) - horizontalLineToRelative(1.75f) - verticalLineToRelative(1.54f) - curveToRelative(0.38f, -0.2f, 0.8f, -0.3f, 1.25f, -0.3f) - lineTo(16.0f, 11.25f) - verticalLineToRelative(-1.24f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(1.24f) - horizontalLineToRelative(1.25f) - lineToRelative(0.25f, 0.01f) - verticalLineToRelative(-1.25f) - horizontalLineToRelative(0.22f) - curveToRelative(1.2f, 0.0f, 1.71f, -1.55f, 0.73f, -2.26f) - lineToRelative(-7.42f, -5.41f) - close() - moveTo(11.85f, 3.54f) - curveToRelative(0.09f, -0.06f, 0.21f, -0.06f, 0.3f, 0.0f) - lineToRelative(6.8f, 4.97f) - lineTo(5.05f, 8.51f) - lineToRelative(6.8f, -4.96f) - close() - moveTo(6.0f, 15.5f) - lineTo(6.0f, 10.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(5.5f) - lineTo(6.0f, 15.5f) - close() - moveTo(14.0f, 15.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - lineTo(12.0f, 18.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(16.0f, 18.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(20.5f, 18.0f) - lineTo(23.0f, 18.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(21.0f, 15.0f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(1.0f) - close() - moveTo(15.5f, 14.0f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(13.5f, 23.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - lineTo(23.0f, 19.5f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-8.0f) - close() - } - } - return _buildingBankToolbox!! - } - -private var _buildingBankToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingDesktop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingDesktop.kt deleted file mode 100644 index 0b14c036..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingDesktop.kt +++ /dev/null @@ -1,107 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BuildingDesktop: ImageVector - get() { - if (_buildingDesktop != null) { - return _buildingDesktop!! - } - _buildingDesktop = fluentIcon(name = "Regular.BuildingDesktop") { - fluentPath { - moveTo(3.75f, 3.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - lineTo(8.5f, 16.5f) - verticalLineToRelative(0.25f) - curveToRelative(0.0f, 0.42f, 0.07f, 0.85f, 0.21f, 1.25f) - lineTo(3.75f, 18.0f) - curveTo(2.78f, 18.0f, 2.0f, 17.22f, 2.0f, 16.25f) - lineTo(2.0f, 3.75f) - curveTo(2.0f, 2.78f, 2.78f, 2.0f, 3.75f, 2.0f) - horizontalLineToRelative(5.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(1.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(14.0f, 9.0f) - horizontalLineToRelative(-1.5f) - verticalLineToRelative(-0.25f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-1.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-3.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-5.5f) - close() - moveTo(6.0f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(5.25f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(6.0f, 11.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(7.75f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(8.5f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(7.75f, 12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(9.5f, 12.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 12.25f, 10.0f) - horizontalLineToRelative(7.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 12.75f) - verticalLineToRelative(4.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) - lineTo(18.0f, 19.5f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.25f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(-1.25f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, -2.75f) - verticalLineToRelative(-4.0f) - close() - moveTo(15.0f, 19.5f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.5f) - verticalLineToRelative(-1.0f) - lineTo(15.0f, 19.5f) - close() - moveTo(12.25f, 11.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(7.0f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-7.0f) - close() - } - } - return _buildingDesktop!! - } - -private var _buildingDesktop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingFactory.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingFactory.kt deleted file mode 100644 index 4f204892..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingFactory.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BuildingFactory: ImageVector - get() { - if (_buildingFactory != null) { - return _buildingFactory!! - } - _buildingFactory = fluentIcon(name = "Regular.BuildingFactory") { - fluentPath { - moveTo(5.17f, 2.0f) - curveToRelative(-1.2f, 0.0f, -2.18f, 0.93f, -2.25f, 2.13f) - lineToRelative(-0.83f, 15.5f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 4.33f, 22.0f) - horizontalLineToRelative(2.84f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.24f, -2.37f) - lineToRelative(-0.84f, -15.5f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 6.33f, 2.0f) - lineTo(5.17f, 2.0f) - close() - moveTo(4.42f, 4.21f) - curveToRelative(0.02f, -0.4f, 0.35f, -0.71f, 0.75f, -0.71f) - horizontalLineToRelative(1.16f) - curveToRelative(0.4f, 0.0f, 0.73f, 0.31f, 0.75f, 0.71f) - lineToRelative(0.83f, 15.5f) - curveToRelative(0.03f, 0.43f, -0.31f, 0.79f, -0.74f, 0.79f) - lineTo(4.33f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.8f) - lineToRelative(0.84f, -15.49f) - close() - moveTo(9.52f, 22.0f) - curveToRelative(0.39f, -0.41f, 0.67f, -0.93f, 0.8f, -1.5f) - horizontalLineToRelative(1.18f) - verticalLineToRelative(-4.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(4.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.25f) - horizontalLineToRelative(0.75f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(20.5f, 7.71f) - lineToRelative(-5.24f, 4.84f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 14.0f, 12.0f) - lineTo(14.0f, 7.71f) - lineToRelative(-4.03f, 3.72f) - lineToRelative(-0.1f, -1.94f) - lineToRelative(4.37f, -4.04f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 15.5f, 6.0f) - verticalLineToRelative(4.29f) - lineToRelative(5.24f, -4.84f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 22.0f, 6.0f) - verticalLineToRelative(13.75f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(9.5f, 22.0f) - close() - moveTo(13.0f, 16.25f) - verticalLineToRelative(4.25f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(-4.25f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - close() - } - } - return _buildingFactory!! - } - -private var _buildingFactory: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingGovernment.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingGovernment.kt deleted file mode 100644 index 780c6ff8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingGovernment.kt +++ /dev/null @@ -1,102 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BuildingGovernment: ImageVector - get() { - if (_buildingGovernment != null) { - return _buildingGovernment!! - } - _buildingGovernment = fluentIcon(name = "Regular.BuildingGovernment") { - fluentPath { - moveTo(15.5f, 11.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(11.75f, 11.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(9.5f, 11.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(5.75f, 15.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(19.0f, 16.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.5f) - close() - moveTo(11.75f, 2.0f) - horizontalLineToRelative(3.75f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - verticalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(1.02f) - arcTo(7.0f, 7.0f, 0.0f, false, true, 19.0f, 13.0f) - horizontalLineToRelative(0.75f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(2.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-6.0f) - curveTo(2.0f, 14.01f, 3.0f, 13.0f, 4.25f, 13.0f) - lineTo(5.0f, 13.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, 6.0f, -6.93f) - lineTo(11.0f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(12.0f, 7.5f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 6.5f, 13.0f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(5.25f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(-2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.75f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(-5.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(17.5f, 13.0f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 12.0f, 7.5f) - close() - moveTo(13.0f, 18.5f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(-2.0f) - close() - } - } - return _buildingGovernment!! - } - -private var _buildingGovernment: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingHome.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingHome.kt deleted file mode 100644 index 7b3e31db..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingHome.kt +++ /dev/null @@ -1,106 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BuildingHome: ImageVector - get() { - if (_buildingHome != null) { - return _buildingHome!! - } - _buildingHome = fluentIcon(name = "Regular.BuildingHome") { - fluentPath { - moveTo(3.75f, 3.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - lineTo(9.0f, 16.5f) - lineTo(9.0f, 18.0f) - lineTo(3.75f, 18.0f) - curveTo(2.78f, 18.0f, 2.0f, 17.22f, 2.0f, 16.25f) - lineTo(2.0f, 3.75f) - curveTo(2.0f, 2.78f, 2.78f, 2.0f, 3.75f, 2.0f) - horizontalLineToRelative(5.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(1.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(0.07f) - lineToRelative(-1.5f, 1.4f) - lineTo(12.5f, 8.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-1.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-3.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-5.5f) - close() - moveTo(6.0f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(5.25f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(6.0f, 11.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(7.75f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(8.5f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(7.75f, 12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(17.19f, 9.44f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.38f, 0.0f) - lineToRelative(-4.25f, 3.97f) - curveToRelative(-0.36f, 0.33f, -0.56f, 0.79f, -0.56f, 1.27f) - verticalLineToRelative(5.82f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(2.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - lineTo(15.0f, 18.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(2.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-5.82f) - curveToRelative(0.0f, -0.48f, -0.2f, -0.94f, -0.56f, -1.27f) - lineTo(17.2f, 9.44f) - close() - moveTo(15.83f, 10.54f) - curveToRelative(0.1f, -0.1f, 0.24f, -0.1f, 0.34f, 0.0f) - lineToRelative(4.25f, 3.96f) - curveToRelative(0.05f, 0.05f, 0.08f, 0.12f, 0.08f, 0.18f) - verticalLineToRelative(5.82f) - horizontalLineToRelative(-2.0f) - lineTo(18.5f, 18.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - horizontalLineToRelative(-2.0f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-5.82f) - curveToRelative(0.0f, -0.06f, 0.03f, -0.13f, 0.08f, -0.18f) - lineToRelative(4.25f, -3.96f) - close() - } - } - return _buildingHome!! - } - -private var _buildingHome: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingMultiple.kt deleted file mode 100644 index 9d4d70bd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingMultiple.kt +++ /dev/null @@ -1,110 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BuildingMultiple: ImageVector - get() { - if (_buildingMultiple != null) { - return _buildingMultiple!! - } - _buildingMultiple = fluentIcon(name = "Regular.BuildingMultiple") { - fluentPath { - moveTo(8.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(7.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(8.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(8.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(7.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(14.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(17.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(17.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(15.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(17.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(15.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(14.0f, 5.0f) - verticalLineToRelative(-0.75f) - curveTo(14.0f, 3.01f, 13.0f, 2.0f, 11.75f, 2.0f) - horizontalLineToRelative(-6.5f) - curveTo(4.01f, 2.0f, 3.0f, 3.0f, 3.0f, 4.25f) - verticalLineToRelative(16.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(16.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(21.0f, 7.25f) - curveTo(21.0f, 6.01f, 20.0f, 5.0f, 18.75f, 5.0f) - lineTo(14.0f, 5.0f) - close() - moveTo(4.5f, 4.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(12.5f, 5.0f) - horizontalLineToRelative(-0.25f) - curveTo(11.01f, 5.0f, 10.0f, 6.0f, 10.0f, 7.25f) - lineTo(10.0f, 20.0f) - lineTo(4.5f, 20.0f) - lineTo(4.5f, 4.25f) - close() - moveTo(14.5f, 20.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(2.0f) - lineTo(16.5f, 20.0f) - horizontalLineToRelative(-2.0f) - close() - moveTo(18.0f, 17.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(13.0f, 20.0f) - horizontalLineToRelative(-1.5f) - lineTo(11.5f, 7.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(19.5f, 20.0f) - lineTo(18.0f, 20.0f) - verticalLineToRelative(-2.25f) - close() - } - } - return _buildingMultiple!! - } - -private var _buildingMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingPeople.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingPeople.kt deleted file mode 100644 index a68bcbe9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingPeople.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BuildingPeople: ImageVector - get() { - if (_buildingPeople != null) { - return _buildingPeople!! - } - _buildingPeople = fluentIcon(name = "Regular.BuildingPeople") { - fluentPath { - moveTo(7.5f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - close() - moveTo(8.5f, 12.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(7.5f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - close() - moveTo(12.0f, 5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(11.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - close() - moveTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(8.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - lineTo(16.5f, 9.5f) - horizontalLineToRelative(1.25f) - curveToRelative(1.25f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(1.35f) - curveToRelative(-0.44f, 0.13f, -0.83f, 0.36f, -1.15f, 0.66f) - curveToRelative(-0.09f, -0.26f, -0.2f, -0.5f, -0.35f, -0.74f) - verticalLineToRelative(-1.27f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(5.5f, 20.0f) - lineTo(11.0f, 20.0f) - curveToRelative(0.02f, 0.5f, 0.12f, 1.02f, 0.32f, 1.5f) - lineTo(4.75f, 21.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(4.0f, 4.25f) - close() - moveTo(18.0f, 14.75f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.5f, 0.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.5f, 0.0f) - close() - moveTo(19.5f, 19.88f) - curveToRelative(0.0f, 1.55f, -1.07f, 3.12f, -3.75f, 3.12f) - curveToRelative(-2.68f, 0.0f, -3.75f, -1.56f, -3.75f, -3.13f) - curveToRelative(0.0f, -1.03f, 0.72f, -1.87f, 1.6f, -1.87f) - horizontalLineToRelative(4.3f) - curveToRelative(0.88f, 0.0f, 1.6f, 0.84f, 1.6f, 1.88f) - close() - moveTo(20.75f, 17.5f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, -3.5f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, 3.5f) - close() - moveTo(20.5f, 19.88f) - curveToRelative(0.0f, 0.71f, -0.18f, 1.46f, -0.58f, 2.12f) - lineTo(20.0f, 22.0f) - curveToRelative(2.15f, 0.0f, 3.0f, -1.1f, 3.0f, -2.19f) - arcToRelative(1.3f, 1.3f, 0.0f, false, false, -1.28f, -1.31f) - horizontalLineToRelative(-1.54f) - curveToRelative(0.2f, 0.42f, 0.32f, 0.9f, 0.32f, 1.38f) - close() - } - } - return _buildingPeople!! - } - -private var _buildingPeople: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingRetail.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingRetail.kt deleted file mode 100644 index 0dc5a774..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingRetail.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BuildingRetail: ImageVector - get() { - if (_buildingRetail != null) { - return _buildingRetail!! - } - _buildingRetail = fluentIcon(name = "Regular.BuildingRetail") { - fluentPath { - moveTo(6.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(10.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(6.75f, 8.0f) - close() - moveTo(7.5f, 11.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(9.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-9.0f) - close() - moveTo(13.75f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.5f) - close() - moveTo(14.5f, 16.5f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-2.0f) - close() - moveTo(4.0f, 3.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.0f, 3.73f) - verticalLineToRelative(13.52f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(16.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(21.0f, 6.73f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 20.0f, 3.0f) - lineTo(4.0f, 3.0f) - close() - moveTo(19.5f, 7.0f) - verticalLineToRelative(12.5f) - horizontalLineToRelative(-8.0f) - verticalLineToRelative(-4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.75f) - lineTo(4.5f, 19.5f) - lineTo(4.5f, 7.0f) - horizontalLineToRelative(15.0f) - close() - moveTo(3.5f, 5.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(16.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(4.0f, 5.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - moveTo(10.0f, 19.5f) - lineTo(7.5f, 19.5f) - verticalLineToRelative(-4.0f) - lineTo(10.0f, 15.5f) - verticalLineToRelative(4.0f) - close() - } - } - return _buildingRetail!! - } - -private var _buildingRetail: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingRetailMoney.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingRetailMoney.kt deleted file mode 100644 index a506a85e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingRetailMoney.kt +++ /dev/null @@ -1,119 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BuildingRetailMoney: ImageVector - get() { - if (_buildingRetailMoney != null) { - return _buildingRetailMoney!! - } - _buildingRetailMoney = fluentIcon(name = "Regular.BuildingRetailMoney") { - fluentPath { - moveTo(6.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(10.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(6.75f, 8.0f) - close() - moveTo(7.5f, 11.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(9.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-9.0f) - close() - moveTo(13.75f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.3f) - curveToRelative(0.16f, -0.03f, 0.33f, -0.05f, 0.5f, -0.05f) - lineTo(18.0f, 15.0f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.5f) - close() - moveTo(11.5f, 14.75f) - lineTo(11.5f, 16.0f) - curveToRelative(-0.31f, 0.42f, -0.5f, 0.94f, -0.5f, 1.5f) - lineTo(11.0f, 21.0f) - lineTo(3.75f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(3.0f, 6.73f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 4.0f, 3.0f) - horizontalLineToRelative(16.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.0f, 3.73f) - lineTo(21.0f, 15.0f) - horizontalLineToRelative(-1.5f) - lineTo(19.5f, 7.0f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(12.5f) - lineTo(6.0f, 19.5f) - verticalLineToRelative(-4.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(3.5f, 5.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(16.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - lineTo(4.0f, 4.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - close() - moveTo(10.0f, 19.5f) - verticalLineToRelative(-4.0f) - lineTo(7.5f, 15.5f) - verticalLineToRelative(4.0f) - lineTo(10.0f, 19.5f) - close() - moveTo(12.0f, 17.5f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(8.0f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - verticalLineToRelative(-4.0f) - close() - moveTo(22.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - horizontalLineToRelative(-1.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(22.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(14.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - verticalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - horizontalLineToRelative(-1.0f) - close() - moveTo(15.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - verticalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - horizontalLineToRelative(1.0f) - close() - moveTo(19.25f, 19.5f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, -3.5f, 0.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 3.5f, 0.0f) - close() - } - } - return _buildingRetailMoney!! - } - -private var _buildingRetailMoney: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingRetailMore.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingRetailMore.kt deleted file mode 100644 index 23f4c0d9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingRetailMore.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BuildingRetailMore: ImageVector - get() { - if (_buildingRetailMore != null) { - return _buildingRetailMore!! - } - _buildingRetailMore = fluentIcon(name = "Regular.BuildingRetailMore") { - fluentPath { - moveTo(7.75f, 16.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - moveTo(13.25f, 14.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(16.25f, 16.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - moveTo(4.87f, 3.63f) - curveToRelative(0.34f, -0.4f, 0.83f, -0.63f, 1.35f, -0.63f) - horizontalLineToRelative(11.56f) - curveToRelative(0.52f, 0.0f, 1.02f, 0.23f, 1.35f, 0.63f) - lineToRelative(3.58f, 4.32f) - curveToRelative(0.67f, 0.82f, 0.1f, 2.05f, -0.96f, 2.05f) - lineTo(21.0f, 10.0f) - verticalLineToRelative(8.75f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.5f, 2.5f) - horizontalLineToRelative(-13.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.5f, -2.5f) - lineTo(3.0f, 10.0f) - horizontalLineToRelative(-0.75f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.96f, -2.05f) - lineToRelative(3.58f, -4.32f) - close() - moveTo(6.22f, 4.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.2f, 0.09f) - lineTo(2.8f, 8.5f) - lineTo(21.2f, 8.5f) - lineToRelative(-3.24f, -3.91f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.19f, -0.09f) - lineTo(6.22f, 4.5f) - close() - moveTo(4.5f, 10.0f) - verticalLineToRelative(8.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - lineTo(19.5f, 10.0f) - horizontalLineToRelative(-15.0f) - close() - } - } - return _buildingRetailMore!! - } - -private var _buildingRetailMore: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingRetailShield.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingRetailShield.kt deleted file mode 100644 index 4ad3b587..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingRetailShield.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BuildingRetailShield: ImageVector - get() { - if (_buildingRetailShield != null) { - return _buildingRetailShield!! - } - _buildingRetailShield = fluentIcon(name = "Regular.BuildingRetailShield") { - fluentPath { - moveTo(11.5f, 19.5f) - horizontalLineToRelative(0.97f) - curveToRelative(0.22f, 0.56f, 0.51f, 1.06f, 0.85f, 1.5f) - lineTo(3.75f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(3.0f, 6.73f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 4.0f, 3.0f) - horizontalLineToRelative(16.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.0f, 3.73f) - verticalLineToRelative(4.84f) - curveToRelative(-0.6f, -0.25f, -1.1f, -0.57f, -1.5f, -0.86f) - lineTo(19.5f, 7.0f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(12.5f) - lineTo(6.0f, 19.5f) - verticalLineToRelative(-4.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(4.75f) - close() - moveTo(3.5f, 5.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(16.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - lineTo(4.0f, 4.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - close() - moveTo(7.5f, 15.5f) - verticalLineToRelative(4.0f) - lineTo(10.0f, 19.5f) - verticalLineToRelative(-4.0f) - lineTo(7.5f, 15.5f) - close() - moveTo(6.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(5.33f) - curveToRelative(0.2f, -0.58f, 0.75f, -0.97f, 1.33f, -1.02f) - arcToRelative(5.49f, 5.49f, 0.0f, false, false, 1.76f, -0.48f) - lineTo(7.5f, 11.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(9.0f) - verticalLineToRelative(1.21f) - curveToRelative(0.18f, -0.13f, 0.34f, -0.25f, 0.46f, -0.36f) - curveToRelative(0.3f, -0.26f, 0.67f, -0.38f, 1.04f, -0.38f) - lineTo(18.0f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(6.75f, 8.0f) - close() - moveTo(18.39f, 11.1f) - arcToRelative(7.7f, 7.7f, 0.0f, false, false, 4.11f, 1.88f) - curveToRelative(0.28f, 0.02f, 0.5f, 0.24f, 0.5f, 0.52f) - lineTo(23.0f, 17.0f) - curveToRelative(0.0f, 4.22f, -4.1f, 5.72f, -4.87f, 5.96f) - arcToRelative(0.42f, 0.42f, 0.0f, false, true, -0.26f, 0.0f) - curveTo(17.1f, 22.72f, 13.0f, 21.22f, 13.0f, 17.0f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.52f) - arcToRelative(7.71f, 7.71f, 0.0f, false, false, 4.12f, -1.87f) - arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.77f, 0.0f) - close() - } - } - return _buildingRetailShield!! - } - -private var _buildingRetailShield: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingRetailToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingRetailToolbox.kt deleted file mode 100644 index 84900ce0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingRetailToolbox.kt +++ /dev/null @@ -1,117 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BuildingRetailToolbox: ImageVector - get() { - if (_buildingRetailToolbox != null) { - return _buildingRetailToolbox!! - } - _buildingRetailToolbox = fluentIcon(name = "Regular.BuildingRetailToolbox") { - fluentPath { - moveTo(6.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(6.44f) - curveToRelative(0.26f, -0.66f, 0.77f, -1.2f, 1.41f, -1.5f) - lineTo(7.5f, 11.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(9.0f) - verticalLineToRelative(1.75f) - lineTo(18.0f, 11.25f) - verticalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(6.75f, 8.0f) - close() - moveTo(11.5f, 14.75f) - lineTo(11.5f, 15.0f) - curveToRelative(-0.31f, 0.42f, -0.5f, 0.94f, -0.5f, 1.5f) - lineTo(11.0f, 21.0f) - lineTo(3.75f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(3.0f, 6.73f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 4.0f, 3.0f) - horizontalLineToRelative(16.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.0f, 3.73f) - verticalLineToRelative(5.15f) - arcToRelative(2.74f, 2.74f, 0.0f, false, false, -1.5f, -0.62f) - lineTo(19.5f, 7.0f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(12.5f) - lineTo(6.0f, 19.5f) - verticalLineToRelative(-4.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(3.5f, 5.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(16.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - lineTo(4.0f, 4.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - close() - moveTo(10.0f, 19.5f) - verticalLineToRelative(-4.0f) - lineTo(7.5f, 15.5f) - verticalLineToRelative(4.0f) - lineTo(10.0f, 19.5f) - close() - moveTo(14.0f, 15.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - lineTo(12.0f, 18.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(16.0f, 18.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(20.5f, 18.0f) - lineTo(23.0f, 18.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(21.0f, 15.0f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(1.0f) - close() - moveTo(15.5f, 14.0f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(12.0f, 21.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - lineTo(23.0f, 19.5f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - close() - } - } - return _buildingRetailToolbox!! - } - -private var _buildingRetailToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingShop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingShop.kt deleted file mode 100644 index ba675df8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingShop.kt +++ /dev/null @@ -1,151 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BuildingShop: ImageVector - get() { - if (_buildingShop != null) { - return _buildingShop!! - } - _buildingShop = fluentIcon(name = "Regular.BuildingShop") { - fluentPath { - moveTo(18.0f, 2.0f) - curveToRelative(0.17f, 0.0f, 0.34f, 0.06f, 0.47f, 0.17f) - lineToRelative(0.08f, 0.07f) - lineToRelative(3.27f, 3.53f) - lineToRelative(0.03f, 0.04f) - curveToRelative(0.1f, 0.13f, 0.15f, 0.29f, 0.15f, 0.44f) - verticalLineToRelative(1.92f) - curveToRelative(0.0f, 1.0f, -0.38f, 1.9f, -1.0f, 2.58f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(3.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - verticalLineToRelative(-10.6f) - arcToRelative(3.82f, 3.82f, 0.0f, false, true, -1.0f, -2.36f) - lineTo(2.01f, 6.3f) - curveToRelative(-0.02f, -0.14f, 0.01f, -0.28f, 0.09f, -0.4f) - lineToRelative(0.06f, -0.1f) - lineToRelative(0.04f, -0.05f) - lineToRelative(3.25f, -3.5f) - curveToRelative(0.12f, -0.13f, 0.28f, -0.2f, 0.45f, -0.23f) - lineTo(6.0f, 2.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(15.08f, 10.44f) - lineTo(15.07f, 10.46f) - arcToRelative(3.83f, 3.83f, 0.0f, false, true, -6.15f, -0.02f) - arcToRelative(3.82f, 3.82f, 0.0f, false, true, -4.42f, 1.32f) - verticalLineToRelative(8.74f) - lineTo(6.0f, 20.5f) - verticalLineToRelative(-6.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - horizontalLineToRelative(4.6f) - curveToRelative(0.38f, 0.0f, 0.69f, 0.27f, 0.74f, 0.64f) - verticalLineToRelative(6.85f) - horizontalLineToRelative(7.5f) - verticalLineToRelative(-8.74f) - arcToRelative(3.82f, 3.82f, 0.0f, false, true, -4.4f, -1.32f) - close() - moveTo(10.5f, 14.5f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(6.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-6.0f) - close() - moveTo(17.26f, 13.0f) - curveToRelative(0.37f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) - verticalLineToRelative(3.6f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.64f, 0.75f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.65f) - verticalLineToRelative(-3.6f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.64f, -0.74f) - horizontalLineToRelative(3.6f) - close() - moveTo(16.5f, 14.5f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(8.17f, 7.0f) - lineTo(3.5f, 7.0f) - lineTo(3.5f, 8.34f) - lineToRelative(0.04f, 0.23f) - lineToRelative(0.03f, 0.16f) - lineToRelative(0.05f, 0.17f) - lineToRelative(0.05f, 0.15f) - lineToRelative(0.04f, 0.09f) - lineToRelative(0.1f, 0.2f) - lineToRelative(0.1f, 0.16f) - lineToRelative(0.06f, 0.07f) - lineToRelative(0.13f, 0.16f) - lineToRelative(0.14f, 0.14f) - lineToRelative(0.1f, 0.09f) - lineToRelative(0.04f, 0.03f) - curveToRelative(0.32f, 0.25f, 0.7f, 0.42f, 1.11f, 0.48f) - lineToRelative(0.18f, 0.02f) - horizontalLineToRelative(0.16f) - curveToRelative(1.24f, 0.0f, 2.25f, -0.95f, 2.33f, -2.16f) - lineTo(8.16f, 7.0f) - close() - moveTo(14.33f, 7.0f) - lineTo(9.67f, 7.0f) - verticalLineToRelative(1.17f) - curveToRelative(0.0f, 1.18f, 0.87f, 2.15f, 2.01f, 2.3f) - lineToRelative(0.16f, 0.02f) - lineTo(12.0f, 10.49f) - curveToRelative(1.23f, 0.0f, 2.24f, -0.95f, 2.33f, -2.16f) - lineTo(14.33f, 7.0f) - close() - moveTo(20.5f, 7.0f) - horizontalLineToRelative(-4.67f) - verticalLineToRelative(1.17f) - curveToRelative(0.0f, 1.18f, 0.88f, 2.15f, 2.02f, 2.3f) - lineToRelative(0.16f, 0.02f) - horizontalLineToRelative(0.16f) - curveToRelative(0.56f, 0.0f, 1.08f, -0.2f, 1.48f, -0.52f) - lineToRelative(0.1f, -0.08f) - lineToRelative(0.1f, -0.12f) - lineToRelative(0.15f, -0.17f) - curveToRelative(0.06f, -0.06f, 0.1f, -0.14f, 0.15f, -0.21f) - lineToRelative(0.1f, -0.19f) - lineToRelative(0.07f, -0.14f) - lineToRelative(0.06f, -0.15f) - lineToRelative(0.03f, -0.1f) - lineToRelative(0.04f, -0.15f) - lineToRelative(0.03f, -0.16f) - lineToRelative(0.01f, -0.16f) - lineTo(20.49f, 7.0f) - close() - moveTo(9.06f, 3.5f) - lineTo(6.33f, 3.5f) - lineToRelative(-1.86f, 2.0f) - horizontalLineToRelative(3.98f) - lineToRelative(0.61f, -2.0f) - close() - moveTo(13.36f, 3.5f) - horizontalLineToRelative(-2.73f) - lineToRelative(-0.62f, 2.0f) - horizontalLineToRelative(3.97f) - lineToRelative(-0.61f, -2.0f) - close() - moveTo(17.67f, 3.5f) - horizontalLineToRelative(-2.73f) - lineToRelative(0.61f, 2.0f) - horizontalLineToRelative(3.98f) - lineToRelative(-1.86f, -2.0f) - close() - } - } - return _buildingShop!! - } - -private var _buildingShop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingSkyscraper.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingSkyscraper.kt deleted file mode 100644 index 5774cd5b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingSkyscraper.kt +++ /dev/null @@ -1,105 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BuildingSkyscraper: ImageVector - get() { - if (_buildingSkyscraper != null) { - return _buildingSkyscraper!! - } - _buildingSkyscraper = fluentIcon(name = "Regular.BuildingSkyscraper") { - fluentPath { - moveTo(12.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(11.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(9.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(8.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(18.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(17.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(8.25f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(7.5f, 5.0f) - lineTo(6.25f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(5.5f, 7.8f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.0f, 10.25f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(15.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -3.1f, -2.45f, -5.62f, -5.51f, -5.74f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -1.49f, -2.2f) - lineTo(13.5f, 5.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(11.5f, 4.99f) - lineTo(11.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.5f) - close() - moveTo(12.0f, 7.5f) - lineTo(7.0f, 7.5f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(1.0f) - close() - moveTo(13.5f, 20.0f) - lineTo(12.0f, 20.0f) - verticalLineToRelative(-2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(7.0f, 20.0f) - lineTo(5.5f, 20.0f) - verticalLineToRelative(-9.75f) - curveTo(5.5f, 9.56f, 6.06f, 9.0f, 6.75f, 9.0f) - horizontalLineToRelative(5.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - lineTo(13.5f, 20.0f) - close() - moveTo(8.5f, 20.0f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-2.0f) - close() - moveTo(15.0f, 20.0f) - verticalLineToRelative(-8.5f) - curveToRelative(2.23f, 0.14f, 4.0f, 1.99f, 4.0f, 4.25f) - lineTo(19.0f, 20.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(10.0f, 5.0f) - lineTo(9.0f, 5.0f) - lineTo(9.0f, 3.5f) - horizontalLineToRelative(1.0f) - lineTo(10.0f, 5.0f) - close() - } - } - return _buildingSkyscraper!! - } - -private var _buildingSkyscraper: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingTownhouse.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingTownhouse.kt deleted file mode 100644 index db84479a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/BuildingTownhouse.kt +++ /dev/null @@ -1,95 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.BuildingTownhouse: ImageVector - get() { - if (_buildingTownhouse != null) { - return _buildingTownhouse!! - } - _buildingTownhouse = fluentIcon(name = "Regular.BuildingTownhouse") { - fluentPath { - moveToRelative(8.04f, 4.58f) - lineToRelative(2.95f, 2.55f) - curveToRelative(0.17f, 0.15f, 0.26f, 0.35f, 0.26f, 0.57f) - verticalLineToRelative(7.8f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.25f) - lineTo(4.75f, 19.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - lineTo(4.5f, 7.7f) - curveToRelative(0.0f, -0.22f, 0.1f, -0.42f, 0.26f, -0.57f) - lineTo(7.7f, 4.58f) - curveToRelative(0.1f, -0.08f, 0.23f, -0.08f, 0.33f, 0.0f) - close() - moveTo(11.25f, 17.0f) - verticalLineToRelative(2.5f) - lineTo(9.5f, 19.5f) - lineTo(9.5f, 17.0f) - horizontalLineToRelative(1.75f) - close() - moveTo(12.75f, 17.0f) - horizontalLineToRelative(1.75f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(-1.75f) - lineTo(12.75f, 17.0f) - close() - moveTo(16.0f, 19.5f) - verticalLineToRelative(-3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.5f) - lineTo(12.75f, 7.7f) - curveToRelative(0.0f, -0.22f, 0.1f, -0.42f, 0.26f, -0.57f) - lineToRelative(2.95f, -2.55f) - curveToRelative(0.1f, -0.08f, 0.23f, -0.08f, 0.33f, 0.0f) - lineToRelative(2.95f, 2.55f) - curveToRelative(0.17f, 0.15f, 0.26f, 0.35f, 0.26f, 0.57f) - verticalLineToRelative(11.55f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - lineTo(16.0f, 19.5f) - close() - moveTo(4.75f, 21.0f) - horizontalLineToRelative(14.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(21.0f, 7.7f) - curveToRelative(0.0f, -0.65f, -0.28f, -1.27f, -0.78f, -1.7f) - lineToRelative(-2.95f, -2.56f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.3f, 0.0f) - lineTo(12.04f, 6.0f) - lineToRelative(-0.03f, 0.02f) - lineToRelative(-0.03f, -0.02f) - lineToRelative(-2.95f, -2.56f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.3f, 0.0f) - lineTo(3.79f, 6.0f) - curveTo(3.28f, 6.43f, 3.0f, 7.05f, 3.0f, 7.7f) - verticalLineToRelative(11.55f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - close() - moveTo(8.88f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(7.88f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(16.12f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - close() - moveTo(15.12f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) - close() - } - } - return _buildingTownhouse!! - } - -private var _buildingTownhouse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Calculator.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Calculator.kt deleted file mode 100644 index be5ed7fd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Calculator.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Calculator: ImageVector - get() { - if (_calculator != null) { - return _calculator!! - } - _calculator = fluentIcon(name = "Regular.Calculator") { - fluentPath { - moveTo(7.0f, 7.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - verticalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - lineTo(9.0f, 10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(7.0f, 7.0f) - close() - moveTo(9.0f, 6.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(15.5f, 7.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - lineTo(9.0f, 6.5f) - close() - moveTo(8.25f, 14.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - moveTo(9.5f, 17.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(15.75f, 14.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - moveTo(17.0f, 17.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(12.0f, 14.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - moveTo(13.25f, 17.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(7.25f, 2.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 4.0f, 5.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.55f, 5.46f, 22.0f, 7.25f, 22.0f) - horizontalLineToRelative(9.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(20.0f, 5.25f) - curveTo(20.0f, 3.45f, 18.54f, 2.0f, 16.75f, 2.0f) - horizontalLineToRelative(-9.5f) - close() - moveTo(5.5f, 5.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(9.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-9.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(5.5f, 5.25f) - close() - } - } - return _calculator!! - } - -private var _calculator: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalculatorArrowClockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalculatorArrowClockwise.kt deleted file mode 100644 index 45018cf5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalculatorArrowClockwise.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalculatorArrowClockwise: ImageVector - get() { - if (_calculatorArrowClockwise != null) { - return _calculatorArrowClockwise!! - } - _calculatorArrowClockwise = fluentIcon(name = "Regular.CalculatorArrowClockwise") { - fluentPath { - moveTo(7.0f, 7.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - verticalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - lineTo(9.0f, 10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(7.0f, 7.0f) - close() - moveTo(9.0f, 6.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(15.5f, 7.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - lineTo(9.0f, 6.5f) - close() - moveTo(8.25f, 14.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - moveTo(9.5f, 17.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(7.25f, 22.0f) - horizontalLineToRelative(4.85f) - arcToRelative(7.03f, 7.03f, 0.0f, false, true, -1.16f, -1.5f) - lineTo(7.25f, 20.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(5.5f, 5.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(9.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.91f) - curveToRelative(0.44f, 0.1f, 0.86f, 0.23f, 1.27f, 0.4f) - arcToRelative(1.76f, 1.76f, 0.0f, false, true, 0.23f, -0.28f) - lineTo(20.0f, 5.25f) - curveTo(20.0f, 3.45f, 18.54f, 2.0f, 16.75f, 2.0f) - horizontalLineToRelative(-9.5f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 4.0f, 5.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.55f, 5.46f, 22.0f, 7.25f, 22.0f) - close() - moveTo(21.25f, 15.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(22.0f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(0.63f) - arcTo(6.0f, 6.0f, 0.0f, true, false, 23.0f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, true, true, -1.69f, -3.51f) - horizontalLineToRelative(0.01f) - verticalLineToRelative(0.01f) - lineTo(18.5f, 13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.75f) - close() - } - } - return _calculatorArrowClockwise!! - } - -private var _calculatorArrowClockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalculatorMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalculatorMultiple.kt deleted file mode 100644 index cbd618f4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalculatorMultiple.kt +++ /dev/null @@ -1,98 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalculatorMultiple: ImageVector - get() { - if (_calculatorMultiple != null) { - return _calculatorMultiple!! - } - _calculatorMultiple = fluentIcon(name = "Regular.CalculatorMultiple") { - fluentPath { - moveTo(7.75f, 5.0f) - curveTo(6.78f, 5.0f, 6.0f, 5.78f, 6.0f, 6.75f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(5.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-1.0f) - curveTo(15.0f, 5.78f, 14.22f, 5.0f, 13.25f, 5.0f) - horizontalLineToRelative(-5.5f) - close() - moveTo(7.5f, 6.75f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(5.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-1.0f) - close() - moveTo(10.5f, 10.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(9.25f, 15.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) - close() - moveTo(7.0f, 10.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(5.75f, 15.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) - close() - moveTo(14.0f, 10.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(12.75f, 15.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) - close() - moveTo(6.14f, 2.0f) - arcTo(3.14f, 3.14f, 0.0f, false, false, 3.0f, 5.14f) - verticalLineToRelative(11.22f) - curveToRelative(0.0f, 1.74f, 1.4f, 3.14f, 3.14f, 3.14f) - horizontalLineToRelative(8.72f) - curveToRelative(1.74f, 0.0f, 3.14f, -1.4f, 3.14f, -3.14f) - lineTo(18.0f, 5.14f) - curveTo(18.0f, 3.4f, 16.6f, 2.0f, 14.86f, 2.0f) - lineTo(6.14f, 2.0f) - close() - moveTo(4.5f, 5.14f) - curveToRelative(0.0f, -0.9f, 0.73f, -1.64f, 1.64f, -1.64f) - horizontalLineToRelative(8.72f) - curveToRelative(0.9f, 0.0f, 1.64f, 0.73f, 1.64f, 1.64f) - verticalLineToRelative(11.22f) - curveToRelative(0.0f, 0.9f, -0.73f, 1.64f, -1.64f, 1.64f) - lineTo(6.14f, 18.0f) - curveToRelative(-0.9f, 0.0f, -1.64f, -0.73f, -1.64f, -1.64f) - lineTo(4.5f, 5.14f) - close() - moveTo(5.8f, 20.49f) - curveToRelative(0.45f, 0.9f, 1.38f, 1.51f, 2.46f, 1.51f) - horizontalLineToRelative(6.99f) - curveToRelative(2.9f, 0.0f, 5.25f, -2.35f, 5.25f, -5.25f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -1.07f, -0.62f, -2.0f, -1.51f, -2.46f) - lineToRelative(0.01f, 0.35f) - lineTo(19.0f, 16.75f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.75f, 3.75f) - lineTo(6.14f, 20.5f) - lineToRelative(-0.34f, -0.01f) - close() - } - } - return _calculatorMultiple!! - } - -private var _calculatorMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Calendar3Day.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Calendar3Day.kt deleted file mode 100644 index 638779b5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Calendar3Day.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Calendar3Day: ImageVector - get() { - if (_calendar3Day != null) { - return _calendar3Day!! - } - _calendar3Day = fluentIcon(name = "Regular.Calendar3Day") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(7.75f, 7.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-8.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(16.25f, 7.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-8.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(12.0f, 7.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-8.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _calendar3Day!! - } - -private var _calendar3Day: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarAdd.kt deleted file mode 100644 index c4e03406..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarAdd.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarAdd: ImageVector - get() { - if (_calendarAdd != null) { - return _calendarAdd!! - } - _calendarAdd = fluentIcon(name = "Regular.CalendarAdd") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(5.77f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 8.5f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(9.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(5.06f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.5f, 14.0f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - lineToRelative(-0.01f, 0.09f) - lineTo(17.0f, 17.0f) - horizontalLineToRelative(-2.59f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - lineToRelative(-0.01f, 0.09f) - verticalLineToRelative(0.09f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - lineToRelative(0.09f, 0.01f) - lineTo(17.0f, 18.0f) - verticalLineToRelative(2.59f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - lineToRelative(0.09f, 0.01f) - horizontalLineToRelative(0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - lineToRelative(0.01f, -0.09f) - lineTo(18.0f, 18.0f) - horizontalLineToRelative(2.59f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - lineToRelative(0.01f, -0.09f) - verticalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) - lineTo(20.5f, 17.0f) - lineTo(18.0f, 17.0f) - verticalLineToRelative(-2.59f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) - lineTo(17.5f, 14.0f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 7.0f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - } - } - return _calendarAdd!! - } - -private var _calendarAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarAgenda.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarAgenda.kt deleted file mode 100644 index f4b3d151..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarAgenda.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarAgenda: ImageVector - get() { - if (_calendarAgenda != null) { - return _calendarAgenda!! - } - _calendarAgenda = fluentIcon(name = "Regular.CalendarAgenda") { - fluentPath { - moveTo(21.0f, 17.75f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - close() - moveTo(19.5f, 17.75f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - close() - moveTo(17.0f, 7.75f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(8.6f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(17.0f, 16.25f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(8.6f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(17.0f, 12.0f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(8.6f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - } - } - return _calendarAgenda!! - } - -private var _calendarAgenda: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarArrowCounterclockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarArrowCounterclockwise.kt deleted file mode 100644 index 3db582ef..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarArrowCounterclockwise.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarArrowCounterclockwise: ImageVector - get() { - if (_calendarArrowCounterclockwise != null) { - return _calendarArrowCounterclockwise!! - } - _calendarArrowCounterclockwise = fluentIcon(name = - "Regular.CalendarArrowCounterclockwise") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(2.69f) - lineToRelative(-0.72f, -0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineToRelative(-0.72f, 0.72f) - lineTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(19.5f, 7.0f) - lineTo(5.9f, 7.0f) - arcToRelative(1.74f, 1.74f, 0.0f, false, true, 1.58f, 1.5f) - lineTo(19.5f, 8.5f) - verticalLineToRelative(9.25f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(4.0f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(7.75f, 14.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(12.0f, 14.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(7.75f, 10.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(12.0f, 10.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(16.25f, 10.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - } - } - return _calendarArrowCounterclockwise!! - } - -private var _calendarArrowCounterclockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarArrowDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarArrowDown.kt deleted file mode 100644 index 3b88b3dc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarArrowDown.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarArrowDown: ImageVector - get() { - if (_calendarArrowDown != null) { - return _calendarArrowDown!! - } - _calendarArrowDown = fluentIcon(name = "Regular.CalendarArrowDown") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(5.77f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 8.5f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(9.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(5.06f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 7.0f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(18.0f, 14.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(4.8f) - lineToRelative(-1.65f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.5f, 2.5f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineTo(18.0f, 19.29f) - lineTo(18.0f, 14.5f) - close() - } - } - return _calendarArrowDown!! - } - -private var _calendarArrowDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarArrowRight.kt deleted file mode 100644 index 61a016ff..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarArrowRight.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarArrowRight: ImageVector - get() { - if (_calendarArrowRight != null) { - return _calendarArrowRight!! - } - _calendarArrowRight = fluentIcon(name = "Regular.CalendarArrowRight") { - fluentPath { - moveTo(21.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - lineTo(6.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) - horizontalLineToRelative(6.02f) - curveToRelative(-0.3f, -0.46f, -0.53f, -0.97f, -0.7f, -1.5f) - lineTo(6.0f, 19.5f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 4.5f, 18.0f) - lineTo(4.5f, 8.5f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(2.81f) - curveToRelative(0.53f, 0.18f, 1.04f, 0.42f, 1.5f, 0.71f) - lineTo(21.0f, 6.0f) - close() - moveTo(6.0f, 4.5f) - horizontalLineToRelative(12.0f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-15.0f) - lineTo(4.5f, 6.0f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(17.65f, 15.35f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, -0.7f) - lineToRelative(2.5f, 2.5f) - curveToRelative(0.2f, 0.2f, 0.2f, 0.5f, 0.0f, 0.7f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, -0.7f) - lineTo(19.29f, 18.0f) - lineTo(14.5f, 18.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, -1.65f) - close() - } - } - return _calendarArrowRight!! - } - -private var _calendarArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarAssistant.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarAssistant.kt deleted file mode 100644 index 3f1f5995..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarAssistant.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarAssistant: ImageVector - get() { - if (_calendarAssistant != null) { - return _calendarAssistant!! - } - _calendarAssistant = fluentIcon(name = "Regular.CalendarAssistant") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(5.77f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 8.5f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(9.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(5.06f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 7.0f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(17.5f, 23.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) - close() - moveTo(17.1f, 14.0f) - horizontalLineToRelative(1.43f) - curveToRelative(0.35f, 0.0f, 0.59f, 0.35f, 0.47f, 0.68f) - lineTo(18.5f, 16.0f) - horizontalLineToRelative(0.63f) - curveToRelative(0.38f, 0.0f, 0.6f, 0.41f, 0.4f, 0.73f) - lineToRelative(-2.63f, 4.03f) - arcToRelative(0.52f, 0.52f, 0.0f, false, true, -0.92f, -0.44f) - lineToRelative(0.77f, -2.32f) - horizontalLineToRelative(-0.78f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.47f, -0.68f) - lineToRelative(1.13f, -3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.47f, -0.32f) - close() - } - } - return _calendarAssistant!! - } - -private var _calendarAssistant: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarCancel.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarCancel.kt deleted file mode 100644 index 420eb26f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarCancel.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarCancel: ImageVector - get() { - if (_calendarCancel != null) { - return _calendarCancel!! - } - _calendarCancel = fluentIcon(name = "Regular.CalendarCancel") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(15.02f, 15.02f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.71f) - lineToRelative(1.77f, 1.77f) - lineToRelative(-1.76f, 1.77f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, 0.7f) - lineToRelative(1.77f, -1.76f) - lineToRelative(1.77f, 1.77f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, -0.71f) - lineToRelative(-1.76f, -1.77f) - lineToRelative(1.77f, -1.77f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.78f, 1.76f) - lineToRelative(-1.77f, -1.77f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - close() - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(5.77f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 8.5f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(9.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(5.06f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 7.0f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - } - } - return _calendarCancel!! - } - -private var _calendarCancel: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarChat.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarChat.kt deleted file mode 100644 index 8ce162d8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarChat.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarChat: ImageVector - get() { - if (_calendarChat != null) { - return _calendarChat!! - } - _calendarChat = fluentIcon(name = "Regular.CalendarChat") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(5.77f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 8.5f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(9.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(5.06f) - curveToRelative(0.09f, 0.26f, 0.19f, 0.52f, 0.3f, 0.76f) - lineToRelative(-0.22f, 0.74f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 7.0f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(19.5f, 12.37f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -4.67f, 9.94f) - lineToRelative(-2.18f, 0.67f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.63f, -0.62f) - lineToRelative(0.67f, -2.2f) - arcTo(5.5f, 5.5f, 0.0f, false, true, 17.48f, 12.0f) - lineToRelative(0.02f, 0.01f) - curveToRelative(0.7f, 0.0f, 1.38f, 0.13f, 2.0f, 0.37f) - close() - moveTo(19.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) - horizontalLineToRelative(4.0f) - close() - moveTo(15.5f, 19.0f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) - close() - } - } - return _calendarChat!! - } - -private var _calendarChat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarCheckmark.kt deleted file mode 100644 index 26c037bd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarCheckmark.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarCheckmark: ImageVector - get() { - if (_calendarCheckmark != null) { - return _calendarCheckmark!! - } - _calendarCheckmark = fluentIcon(name = "Regular.CalendarCheckmark") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(5.77f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 8.5f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(9.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(5.06f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 7.0f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-3.65f, 3.64f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _calendarCheckmark!! - } - -private var _calendarCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarClock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarClock.kt deleted file mode 100644 index 1d736614..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarClock.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarClock: ImageVector - get() { - if (_calendarClock != null) { - return _calendarClock!! - } - _calendarClock = fluentIcon(name = "Regular.CalendarClock") { - fluentPath { - moveTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(5.77f) - curveToRelative(-0.3f, -0.46f, -0.53f, -0.97f, -0.7f, -1.5f) - lineTo(6.24f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.49f, 8.5f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(2.81f) - curveToRelative(0.53f, 0.18f, 1.04f, 0.42f, 1.5f, 0.71f) - lineTo(20.99f, 6.25f) - close() - moveTo(6.25f, 4.5f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(19.5f, 7.0f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(17.5f, 17.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(17.0f, 18.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - verticalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - verticalLineToRelative(2.5f) - close() - } - } - return _calendarClock!! - } - -private var _calendarClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarDataBar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarDataBar.kt deleted file mode 100644 index d039c203..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarDataBar.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarDataBar: ImageVector - get() { - if (_calendarDataBar != null) { - return _calendarDataBar!! - } - _calendarDataBar = fluentIcon(name = "Regular.CalendarDataBar") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(6.8f) - curveToRelative(-0.37f, 0.07f, -0.7f, 0.23f, -1.0f, 0.45f) - curveToRelative(0.0f, -0.56f, -0.19f, -1.08f, -0.5f, -1.5f) - lineTo(19.5f, 8.5f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(9.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(11.0f, 19.5f) - lineTo(11.0f, 21.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 7.0f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(17.5f, 12.0f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) - verticalLineToRelative(-8.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - close() - moveTo(13.5f, 16.0f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(4.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - close() - moveTo(20.0f, 15.5f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - verticalLineToRelative(6.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - verticalLineToRelative(-6.0f) - close() - } - } - return _calendarDataBar!! - } - -private var _calendarDataBar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarDay.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarDay.kt deleted file mode 100644 index 4e60a18b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarDay.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarDay: ImageVector - get() { - if (_calendarDay != null) { - return _calendarDay!! - } - _calendarDay = fluentIcon(name = "Regular.CalendarDay") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(16.25f, 11.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(8.5f) - close() - moveTo(15.5f, 12.5f) - horizontalLineToRelative(-7.0f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(7.0f) - verticalLineToRelative(-3.0f) - close() - moveTo(7.75f, 7.25f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-8.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(8.6f) - horizontalLineToRelative(-8.5f) - close() - } - } - return _calendarDay!! - } - -private var _calendarDay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarEdit.kt deleted file mode 100644 index 7ae11dde..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarEdit.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarEdit: ImageVector - get() { - if (_calendarEdit != null) { - return _calendarEdit!! - } - _calendarEdit = fluentIcon(name = "Regular.CalendarEdit") { - fluentPath { - moveTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.45f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(4.91f) - lineToRelative(0.36f, -1.42f) - lineToRelative(0.02f, -0.08f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 8.5f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(2.73f) - curveToRelative(0.48f, -0.19f, 1.0f, -0.26f, 1.5f, -0.22f) - lineTo(21.0f, 6.25f) - close() - moveTo(6.25f, 4.5f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(19.5f, 7.0f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.34f, -0.6f, 0.78f, -0.71f, 1.25f) - lineToRelative(-0.46f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _calendarEdit!! - } - -private var _calendarEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarEmpty.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarEmpty.kt deleted file mode 100644 index 3514ef13..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarEmpty.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarEmpty: ImageVector - get() { - if (_calendarEmpty != null) { - return _calendarEmpty!! - } - _calendarEmpty = fluentIcon(name = "Regular.CalendarEmpty") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(19.5f, 8.5f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(9.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 8.5f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 7.0f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - } - } - return _calendarEmpty!! - } - -private var _calendarEmpty: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarError.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarError.kt deleted file mode 100644 index 38c56bc5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarError.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarError: ImageVector - get() { - if (_calendarError != null) { - return _calendarError!! - } - _calendarError = fluentIcon(name = "Regular.CalendarError") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(5.77f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 8.5f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(9.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(5.06f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 7.0f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(17.5f, 14.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(17.5f, 21.13f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.25f) - close() - } - } - return _calendarError!! - } - -private var _calendarError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarLock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarLock.kt deleted file mode 100644 index 7430b50f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarLock.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarLock: ImageVector - get() { - if (_calendarLock != null) { - return _calendarLock!! - } - _calendarLock = fluentIcon(name = "Regular.CalendarLock") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(5.3f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -1.5f, -0.9f) - lineTo(19.5f, 8.5f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(9.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(13.0f, 19.5f) - lineTo(13.0f, 21.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 7.0f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(16.0f, 15.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(6.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(21.0f, 15.0f) - verticalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) - verticalLineToRelative(1.0f) - close() - moveTo(17.5f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(19.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - } - } - return _calendarLock!! - } - -private var _calendarLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarMonth.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarMonth.kt deleted file mode 100644 index 9b049ea2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarMonth.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarMonth: ImageVector - get() { - if (_calendarMonth != null) { - return _calendarMonth!! - } - _calendarMonth = fluentIcon(name = "Regular.CalendarMonth") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(7.75f, 13.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(12.0f, 13.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(7.75f, 8.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(12.0f, 8.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(16.25f, 8.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - } - } - return _calendarMonth!! - } - -private var _calendarMonth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarMultiple.kt deleted file mode 100644 index 4d53bff4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarMultiple.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarMultiple: ImageVector - get() { - if (_calendarMultiple != null) { - return _calendarMultiple!! - } - _calendarMultiple = fluentIcon(name = "Regular.CalendarMultiple") { - fluentPath { - moveTo(20.0f, 5.0f) - verticalLineToRelative(11.35f) - arcTo(3.65f, 3.65f, 0.0f, false, true, 16.35f, 20.0f) - lineTo(5.01f, 20.0f) - curveToRelative(0.57f, 0.9f, 1.59f, 1.5f, 2.74f, 1.5f) - horizontalLineToRelative(8.6f) - curveToRelative(2.84f, 0.0f, 5.15f, -2.3f, 5.15f, -5.15f) - verticalLineToRelative(-8.6f) - curveToRelative(0.0f, -1.15f, -0.6f, -2.17f, -1.5f, -2.74f) - close() - moveTo(5.24f, 2.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) - verticalLineToRelative(10.5f) - curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) - horizontalLineToRelative(10.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(19.0f, 5.25f) - curveTo(19.0f, 3.45f, 17.54f, 2.0f, 15.75f, 2.0f) - lineTo(5.25f, 2.0f) - close() - moveTo(3.5f, 7.5f) - horizontalLineToRelative(14.0f) - verticalLineToRelative(8.25f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(5.25f, 17.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(3.5f, 7.5f) - close() - moveTo(5.25f, 3.5f) - horizontalLineToRelative(10.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(17.5f, 6.0f) - horizontalLineToRelative(-14.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - close() - } - } - return _calendarMultiple!! - } - -private var _calendarMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarPerson.kt deleted file mode 100644 index f4ce7ccb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarPerson.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarPerson: ImageVector - get() { - if (_calendarPerson != null) { - return _calendarPerson!! - } - _calendarPerson = fluentIcon(name = "Regular.CalendarPerson") { - fluentPath { - moveTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(6.92f) - arcToRelative(3.74f, 3.74f, 0.0f, false, true, -0.17f, -1.13f) - verticalLineToRelative(-0.1f) - lineToRelative(0.01f, -0.27f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 8.5f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(2.64f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 1.5f, 0.91f) - verticalLineToRelative(-5.8f) - close() - moveTo(6.25f, 4.5f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(19.5f, 7.0f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - close() - moveTo(21.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(23.0f, 19.88f) - curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) - reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _calendarPerson!! - } - -private var _calendarPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarPlay.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarPlay.kt deleted file mode 100644 index 048d42d7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarPlay.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarPlay: ImageVector - get() { - if (_calendarPlay != null) { - return _calendarPlay!! - } - _calendarPlay = fluentIcon(name = "Regular.CalendarPlay") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(5.77f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 8.5f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(9.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(5.06f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 7.0f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(17.5f, 23.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) - close() - moveTo(16.6f, 15.0f) - curveToRelative(0.11f, 0.0f, 0.22f, 0.03f, 0.31f, 0.1f) - lineToRelative(2.81f, 1.84f) - arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.28f, 0.52f) - arcToRelative(0.65f, 0.65f, 0.0f, false, true, -0.11f, 0.36f) - arcToRelative(0.56f, 0.56f, 0.0f, false, true, -0.16f, 0.16f) - lineToRelative(-2.8f, 1.92f) - arcToRelative(0.66f, 0.66f, 0.0f, false, true, -0.17f, 0.07f) - arcToRelative(0.55f, 0.55f, 0.0f, false, true, -0.4f, -0.02f) - arcToRelative(0.7f, 0.7f, 0.0f, false, true, -0.18f, -0.13f) - arcToRelative(0.61f, 0.61f, 0.0f, false, true, -0.18f, -0.44f) - verticalLineToRelative(-3.76f) - arcToRelative(0.62f, 0.62f, 0.0f, false, true, 0.37f, -0.57f) - arcToRelative(0.53f, 0.53f, 0.0f, false, true, 0.23f, -0.05f) - close() - } - } - return _calendarPlay!! - } - -private var _calendarPlay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarQuestionMark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarQuestionMark.kt deleted file mode 100644 index caf86c0f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarQuestionMark.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarQuestionMark: ImageVector - get() { - if (_calendarQuestionMark != null) { - return _calendarQuestionMark!! - } - _calendarQuestionMark = fluentIcon(name = "Regular.CalendarQuestionMark") { - fluentPath { - moveTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(5.77f) - curveToRelative(-0.3f, -0.46f, -0.53f, -0.97f, -0.7f, -1.5f) - lineTo(6.24f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.49f, 8.5f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(2.81f) - curveToRelative(0.53f, 0.18f, 1.04f, 0.42f, 1.5f, 0.71f) - lineTo(20.99f, 6.25f) - close() - moveTo(6.25f, 4.5f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(19.5f, 7.0f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(16.88f, 20.38f) - arcToRelative(0.62f, 0.62f, 0.0f, true, true, 1.24f, 0.0f) - arcToRelative(0.62f, 0.62f, 0.0f, false, true, -1.24f, 0.0f) - close() - moveTo(15.65f, 15.83f) - curveToRelative(-0.01f, -1.14f, 0.8f, -1.96f, 1.85f, -1.96f) - curveToRelative(1.03f, 0.0f, 1.85f, 0.85f, 1.85f, 1.95f) - curveToRelative(0.0f, 0.51f, -0.15f, 0.85f, -0.52f, 1.3f) - lineToRelative(-0.14f, 0.15f) - lineToRelative(-0.27f, 0.3f) - lineToRelative(-0.1f, 0.1f) - lineToRelative(-0.08f, 0.11f) - curveToRelative(-0.18f, 0.23f, -0.24f, 0.39f, -0.24f, 0.6f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - curveToRelative(0.0f, -0.53f, 0.15f, -0.86f, 0.53f, -1.32f) - lineToRelative(0.14f, -0.16f) - lineToRelative(0.27f, -0.29f) - lineToRelative(0.1f, -0.1f) - lineToRelative(0.09f, -0.12f) - curveToRelative(0.17f, -0.22f, 0.22f, -0.37f, 0.22f, -0.57f) - curveToRelative(0.0f, -0.55f, -0.38f, -0.95f, -0.85f, -0.95f) - curveToRelative(-0.5f, 0.0f, -0.86f, 0.37f, -0.85f, 0.95f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - close() - } - } - return _calendarQuestionMark!! - } - -private var _calendarQuestionMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarReply.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarReply.kt deleted file mode 100644 index 9e42d307..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarReply.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarReply: ImageVector - get() { - if (_calendarReply != null) { - return _calendarReply!! - } - _calendarReply = fluentIcon(name = "Regular.CalendarReply") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(5.77f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 8.5f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(9.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(5.06f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 7.0f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(16.35f, 15.35f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(1.5f, 1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-0.64f, -0.65f) - horizontalLineToRelative(2.04f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(0.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-0.25f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-2.04f) - lineToRelative(0.64f, -0.65f) - close() - } - } - return _calendarReply!! - } - -private var _calendarReply: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarRtl.kt deleted file mode 100644 index b2501b06..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarRtl.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarRtl: ImageVector - get() { - if (_calendarRtl != null) { - return _calendarRtl!! - } - _calendarRtl = fluentIcon(name = "Regular.CalendarRtl") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(4.5f, 8.5f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(9.25f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 8.5f) - close() - moveTo(16.25f, 14.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(12.0f, 14.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(16.25f, 10.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(12.0f, 10.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(7.75f, 10.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(6.25f, 4.5f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(19.5f, 7.0f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - close() - } - } - return _calendarRtl!! - } - -private var _calendarRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarSettings.kt deleted file mode 100644 index 76d279f2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarSettings.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarSettings: ImageVector - get() { - if (_calendarSettings != null) { - return _calendarSettings!! - } - _calendarSettings = fluentIcon(name = "Regular.CalendarSettings") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(5.77f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 8.5f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(9.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(5.06f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 7.0f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(14.28f, 13.98f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.58f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) - lineToRelative(0.54f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) - lineToRelative(-0.18f, 0.64f) - curveToRelative(0.43f, 0.38f, 0.93f, 0.7f, 1.48f, 0.92f) - lineToRelative(0.5f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.47f, -0.9f) - lineToRelative(-0.2f, -0.7f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, -2.5f) - lineToRelative(0.58f, -0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, -1.8f) - lineToRelative(-0.55f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.2f, -0.63f) - curveToRelative(-0.45f, -0.39f, -0.95f, -0.7f, -1.5f, -0.93f) - lineToRelative(-0.49f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.91f) - lineToRelative(0.2f, 0.69f) - close() - moveTo(17.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) - close() - } - } - return _calendarSettings!! - } - -private var _calendarSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarShield.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarShield.kt deleted file mode 100644 index f8064ae7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarShield.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarShield: ImageVector - get() { - if (_calendarShield != null) { - return _calendarShield!! - } - _calendarShield = fluentIcon(name = "Regular.CalendarShield") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(6.36f) - arcToRelative(3.16f, 3.16f, 0.0f, false, true, -1.5f, -0.72f) - lineTo(19.5f, 8.5f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(9.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(7.32f) - arcToRelative(5.89f, 5.89f, 0.0f, false, false, 0.97f, 1.5f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(14.69f, 19.5f) - curveToRelative(0.32f, 0.58f, 0.76f, 1.08f, 1.31f, 1.5f) - curveToRelative(0.52f, 0.4f, 1.15f, 0.73f, 1.87f, 0.98f) - curveToRelative(0.09f, 0.03f, 0.18f, 0.03f, 0.26f, 0.0f) - curveToRelative(2.56f, -0.89f, 3.87f, -2.71f, 3.87f, -5.4f) - lineTo(22.0f, 14.0f) - arcToRelative(0.4f, 0.4f, 0.0f, false, false, -0.4f, -0.33f) - arcToRelative(4.21f, 4.21f, 0.0f, false, true, -2.1f, -0.57f) - arcToRelative(5.55f, 5.55f, 0.0f, false, true, -1.22f, -0.98f) - arcToRelative(0.39f, 0.39f, 0.0f, false, false, -0.56f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -3.32f, 1.55f) - arcToRelative(0.4f, 0.4f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(2.77f) - curveToRelative(0.04f, 1.01f, 0.27f, 1.9f, 0.69f, 2.65f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 7.0f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - } - } - return _calendarShield!! - } - -private var _calendarShield: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarStar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarStar.kt deleted file mode 100644 index 4d9f5c97..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarStar.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarStar: ImageVector - get() { - if (_calendarStar != null) { - return _calendarStar!! - } - _calendarStar = fluentIcon(name = "Regular.CalendarStar") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(5.77f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 8.5f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(9.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(5.06f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(16.98f, 14.05f) - lineTo(16.94f, 14.15f) - lineTo(16.39f, 15.93f) - horizontalLineToRelative(-1.8f) - curveToRelative(-0.54f, 0.0f, -0.78f, 0.67f, -0.42f, 1.04f) - lineToRelative(0.07f, 0.06f) - lineToRelative(1.46f, 1.1f) - lineToRelative(-0.56f, 1.8f) - curveToRelative(-0.16f, 0.52f, 0.38f, 0.97f, 0.82f, 0.72f) - lineToRelative(0.08f, -0.05f) - lineToRelative(1.46f, -1.1f) - lineToRelative(1.46f, 1.1f) - curveToRelative(0.43f, 0.33f, 1.0f, -0.07f, 0.92f, -0.58f) - lineToRelative(-0.02f, -0.1f) - lineToRelative(-0.56f, -1.78f) - lineToRelative(1.46f, -1.1f) - curveToRelative(0.43f, -0.33f, 0.25f, -1.02f, -0.25f, -1.1f) - lineTo(18.61f, 15.94f) - lineToRelative(-0.55f, -1.8f) - arcToRelative(0.58f, 0.58f, 0.0f, false, false, -1.08f, -0.1f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 7.0f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - } - } - return _calendarStar!! - } - -private var _calendarStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarSync.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarSync.kt deleted file mode 100644 index e4e4bba2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarSync.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarSync: ImageVector - get() { - if (_calendarSync != null) { - return _calendarSync!! - } - _calendarSync = fluentIcon(name = "Regular.CalendarSync") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(5.77f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 8.5f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(9.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(5.06f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 7.0f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) - close() - moveTo(20.5f, 14.0f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - verticalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.8f, -0.59f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) - verticalLineToRelative(-0.55f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - close() - moveTo(15.0f, 19.95f) - verticalLineToRelative(0.55f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.77f, 0.65f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) - close() - } - } - return _calendarSync!! - } - -private var _calendarSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarToday.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarToday.kt deleted file mode 100644 index c17f3434..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarToday.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarToday: ImageVector - get() { - if (_calendarToday != null) { - return _calendarToday!! - } - _calendarToday = fluentIcon(name = "Regular.CalendarToday") { - fluentPath { - moveTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(-4.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 8.5f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(9.25f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-4.0f) - lineTo(13.75f, 21.0f) - horizontalLineToRelative(4.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - close() - moveTo(6.25f, 4.5f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(19.5f, 7.0f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - close() - moveTo(13.25f, 11.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(13.75f, 18.31f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.0f, -1.12f) - lineToRelative(-2.25f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, 0.0f) - lineToRelative(-2.25f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.0f, 1.12f) - lineToRelative(1.0f, -0.89f) - verticalLineToRelative(3.83f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) - verticalLineToRelative(-3.83f) - lineToRelative(1.0f, 0.9f) - close() - } - } - return _calendarToday!! - } - -private var _calendarToday: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarToolbox.kt deleted file mode 100644 index 0921ad90..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarToolbox.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarToolbox: ImageVector - get() { - if (_calendarToolbox != null) { - return _calendarToolbox!! - } - _calendarToolbox = fluentIcon(name = "Regular.CalendarToolbox") { - fluentPath { - moveTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - lineTo(11.0f, 21.0f) - verticalLineToRelative(-1.5f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 8.5f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(2.76f) - curveToRelative(0.57f, 0.05f, 1.08f, 0.28f, 1.5f, 0.62f) - lineTo(21.0f, 6.25f) - close() - moveTo(6.25f, 4.5f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(19.5f, 7.0f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - close() - moveTo(14.0f, 15.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - lineTo(12.0f, 18.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(16.0f, 18.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(20.5f, 18.0f) - lineTo(23.0f, 18.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(21.0f, 15.0f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(1.0f) - close() - moveTo(15.5f, 14.0f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(12.0f, 21.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - lineTo(23.0f, 19.5f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - close() - } - } - return _calendarToolbox!! - } - -private var _calendarToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarWeekNumbers.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarWeekNumbers.kt deleted file mode 100644 index 6fa6c785..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarWeekNumbers.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarWeekNumbers: ImageVector - get() { - if (_calendarWeekNumbers != null) { - return _calendarWeekNumbers!! - } - _calendarWeekNumbers = fluentIcon(name = "Regular.CalendarWeekNumbers") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(7.75f, 7.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-1.1f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(8.49f, 15.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.49f, 0.1f) - verticalLineToRelative(1.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - verticalLineToRelative(-1.1f) - close() - moveTo(8.5f, 11.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - verticalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - verticalLineToRelative(-1.25f) - close() - } - } - return _calendarWeekNumbers!! - } - -private var _calendarWeekNumbers: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarWeekStart.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarWeekStart.kt deleted file mode 100644 index 87129723..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarWeekStart.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarWeekStart: ImageVector - get() { - if (_calendarWeekStart != null) { - return _calendarWeekStart!! - } - _calendarWeekStart = fluentIcon(name = "Regular.CalendarWeekStart") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(7.75f, 7.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-8.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _calendarWeekStart!! - } - -private var _calendarWeekStart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarWorkWeek.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarWorkWeek.kt deleted file mode 100644 index be5f99d4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalendarWorkWeek.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalendarWorkWeek: ImageVector - get() { - if (_calendarWorkWeek != null) { - return _calendarWorkWeek!! - } - _calendarWorkWeek = fluentIcon(name = "Regular.CalendarWorkWeek") { - fluentPath { - moveTo(7.75f, 7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(8.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-8.5f) - close() - moveTo(8.5f, 11.0f) - lineTo(8.5f, 8.5f) - horizontalLineToRelative(7.0f) - lineTo(15.5f, 11.0f) - horizontalLineToRelative(-7.0f) - close() - moveTo(17.75f, 21.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(19.5f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - close() - } - } - return _calendarWorkWeek!! - } - -private var _calendarWorkWeek: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Call.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Call.kt deleted file mode 100644 index c901f1fa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Call.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Call: ImageVector - get() { - if (_call != null) { - return _call!! - } - _call = fluentIcon(name = "Regular.Call") { - fluentPath { - moveToRelative(7.06f, 2.42f) - lineToRelative(1.16f, -0.35f) - curveToRelative(1.33f, -0.4f, 2.74f, 0.24f, 3.3f, 1.5f) - lineToRelative(0.9f, 2.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.63f, 3.15f) - lineTo(10.3f, 10.1f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.08f, 0.16f) - curveToRelative(-0.04f, 0.4f, 0.23f, 1.17f, 0.85f, 2.24f) - curveToRelative(0.45f, 0.78f, 0.86f, 1.33f, 1.2f, 1.64f) - curveToRelative(0.25f, 0.21f, 0.38f, 0.26f, 0.44f, 0.24f) - lineToRelative(2.0f, -0.61f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 3.04f, 1.02f) - lineToRelative(1.28f, 1.77f) - curveToRelative(0.8f, 1.12f, 0.66f, 2.66f, -0.34f, 3.6f) - lineToRelative(-0.88f, 0.85f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.59f, 0.89f) - curveToRelative(-2.75f, -0.77f, -5.22f, -3.1f, -7.44f, -6.93f) - curveToRelative(-2.21f, -3.83f, -2.99f, -7.14f, -2.27f, -9.91f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.55f, -2.65f) - close() - moveTo(7.49f, 3.85f) - curveToRelative(-0.75f, 0.23f, -1.33f, 0.83f, -1.53f, 1.6f) - curveToRelative(-0.6f, 2.33f, 0.09f, 5.26f, 2.12f, 8.78f) - curveToRelative(2.04f, 3.53f, 4.23f, 5.59f, 6.54f, 6.23f) - curveToRelative(0.76f, 0.21f, 1.58f, 0.01f, 2.15f, -0.53f) - lineToRelative(0.9f, -0.84f) - curveToRelative(0.45f, -0.43f, 0.51f, -1.13f, 0.15f, -1.64f) - lineToRelative(-1.29f, -1.77f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.37f, -0.47f) - lineToRelative(-2.02f, 0.62f) - curveToRelative(-1.17f, 0.35f, -2.23f, -0.6f, -3.37f, -2.57f) - curveTo(9.0f, 11.93f, 8.64f, 10.9f, 8.73f, 10.1f) - curveToRelative(0.05f, -0.42f, 0.24f, -0.8f, 0.55f, -1.09f) - lineToRelative(1.5f, -1.39f) - curveToRelative(0.38f, -0.37f, 0.5f, -0.94f, 0.28f, -1.43f) - lineToRelative(-0.9f, -2.0f) - curveToRelative(-0.26f, -0.58f, -0.9f, -0.87f, -1.5f, -0.69f) - lineToRelative(-1.17f, 0.35f) - close() - } - } - return _call!! - } - -private var _call: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallAdd.kt deleted file mode 100644 index 7eff7026..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallAdd.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CallAdd: ImageVector - get() { - if (_callAdd != null) { - return _callAdd!! - } - _callAdd = fluentIcon(name = "Regular.CallAdd") { - fluentPath { - moveToRelative(9.53f, 3.57f) - lineToRelative(0.9f, 2.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.64f, 3.15f) - lineTo(8.3f, 10.1f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.08f, 0.16f) - curveToRelative(-0.04f, 0.4f, 0.23f, 1.17f, 0.85f, 2.24f) - curveToRelative(0.45f, 0.78f, 0.86f, 1.33f, 1.2f, 1.64f) - curveToRelative(0.25f, 0.21f, 0.38f, 0.26f, 0.44f, 0.24f) - lineToRelative(2.0f, -0.61f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 3.04f, 1.02f) - lineToRelative(1.28f, 1.77f) - curveToRelative(0.8f, 1.12f, 0.66f, 2.66f, -0.34f, 3.6f) - lineToRelative(-0.88f, 0.85f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.6f, 0.89f) - curveToRelative(-2.74f, -0.77f, -5.21f, -3.1f, -7.43f, -6.93f) - curveToRelative(-2.21f, -3.83f, -2.99f, -7.14f, -2.27f, -9.91f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.55f, -2.65f) - lineToRelative(1.16f, -0.35f) - curveToRelative(1.33f, -0.4f, 2.74f, 0.24f, 3.3f, 1.5f) - close() - moveTo(6.66f, 3.5f) - lineToRelative(-1.17f, 0.35f) - curveToRelative(-0.75f, 0.23f, -1.33f, 0.83f, -1.53f, 1.6f) - curveToRelative(-0.6f, 2.33f, 0.09f, 5.26f, 2.12f, 8.78f) - curveToRelative(2.04f, 3.53f, 4.23f, 5.59f, 6.54f, 6.23f) - curveToRelative(0.76f, 0.21f, 1.58f, 0.01f, 2.15f, -0.53f) - lineToRelative(0.9f, -0.84f) - curveToRelative(0.45f, -0.43f, 0.51f, -1.13f, 0.15f, -1.64f) - lineToRelative(-1.29f, -1.77f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.37f, -0.47f) - lineToRelative(-2.02f, 0.62f) - curveToRelative(-1.17f, 0.35f, -2.23f, -0.6f, -3.37f, -2.57f) - curveTo(7.0f, 11.93f, 6.64f, 10.9f, 6.73f, 10.1f) - curveToRelative(0.05f, -0.42f, 0.24f, -0.8f, 0.55f, -1.09f) - lineToRelative(1.5f, -1.39f) - curveToRelative(0.38f, -0.37f, 0.5f, -0.94f, 0.28f, -1.43f) - lineToRelative(-0.9f, -2.0f) - curveToRelative(-0.26f, -0.58f, -0.9f, -0.87f, -1.5f, -0.69f) - close() - moveTo(17.15f, 2.0f) - horizontalLineToRelative(0.1f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineTo(6.0f) - horizontalLineToRelative(3.25f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.75f, 0.65f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.75f) - horizontalLineTo(18.0f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - verticalLineToRelative(-0.1f) - lineTo(16.5f, 7.5f) - horizontalLineToRelative(-3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - horizontalLineToRelative(3.35f) - verticalLineTo(2.74f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.75f) - horizontalLineToRelative(0.1f) - horizontalLineToRelative(-0.1f) - close() - } - } - return _callAdd!! - } - -private var _callAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallCheckmark.kt deleted file mode 100644 index e7eb8928..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallCheckmark.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CallCheckmark: ImageVector - get() { - if (_callCheckmark != null) { - return _callCheckmark!! - } - _callCheckmark = fluentIcon(name = "Regular.CallCheckmark") { - fluentPath { - moveToRelative(6.22f, 2.07f) - lineToRelative(-1.16f, 0.35f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 2.5f, 5.07f) - curveToRelative(-0.72f, 2.77f, 0.06f, 6.08f, 2.27f, 9.91f) - curveToRelative(2.22f, 3.83f, 4.69f, 6.16f, 7.44f, 6.93f) - curveToRelative(1.27f, 0.35f, 2.63f, 0.01f, 3.59f, -0.9f) - lineToRelative(0.88f, -0.83f) - curveToRelative(1.0f, -0.95f, 1.15f, -2.49f, 0.34f, -3.6f) - lineToRelative(-1.28f, -1.78f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -3.03f, -1.02f) - lineToRelative(-2.01f, 0.61f) - curveToRelative(-0.06f, 0.02f, -0.2f, -0.03f, -0.44f, -0.24f) - curveToRelative(-0.34f, -0.31f, -0.75f, -0.86f, -1.2f, -1.64f) - curveToRelative(-0.62f, -1.07f, -0.9f, -1.85f, -0.85f, -2.24f) - curveToRelative(0.0f, -0.06f, 0.04f, -0.12f, 0.08f, -0.16f) - lineToRelative(1.5f, -1.4f) - curveToRelative(0.86f, -0.8f, 1.11f, -2.06f, 0.63f, -3.13f) - lineToRelative(-0.9f, -2.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -3.3f, -1.51f) - close() - moveTo(3.96f, 5.45f) - curveToRelative(0.2f, -0.77f, 0.78f, -1.37f, 1.53f, -1.6f) - lineToRelative(1.17f, -0.35f) - curveToRelative(0.6f, -0.18f, 1.24f, 0.11f, 1.5f, 0.69f) - lineToRelative(0.9f, 2.0f) - curveToRelative(0.22f, 0.5f, 0.1f, 1.06f, -0.29f, 1.43f) - lineToRelative(-1.5f, 1.4f) - curveToRelative(-0.3f, 0.28f, -0.5f, 0.66f, -0.54f, 1.08f) - curveToRelative(-0.09f, 0.8f, 0.27f, 1.83f, 1.04f, 3.16f) - curveToRelative(1.14f, 1.97f, 2.2f, 2.92f, 3.37f, 2.57f) - lineToRelative(2.02f, -0.62f) - curveToRelative(0.5f, -0.16f, 1.06f, 0.03f, 1.37f, 0.47f) - lineToRelative(1.29f, 1.77f) - curveToRelative(0.36f, 0.5f, 0.3f, 1.2f, -0.16f, 1.64f) - lineToRelative(-0.89f, 0.84f) - curveToRelative(-0.57f, 0.54f, -1.39f, 0.74f, -2.15f, 0.53f) - curveToRelative(-2.31f, -0.64f, -4.5f, -2.7f, -6.54f, -6.23f) - curveToRelative(-2.03f, -3.52f, -2.72f, -6.45f, -2.12f, -8.78f) - close() - moveTo(21.78f, 3.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineTo(15.0f, 7.94f) - lineToRelative(-1.87f, -1.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(2.4f, 2.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 0.0f) - lineToRelative(6.25f, -6.25f) - close() - } - } - return _callCheckmark!! - } - -private var _callCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallDismiss.kt deleted file mode 100644 index b5247713..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallDismiss.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CallDismiss: ImageVector - get() { - if (_callDismiss != null) { - return _callDismiss!! - } - _callDismiss = fluentIcon(name = "Regular.CallDismiss") { - fluentPath { - moveToRelative(9.53f, 3.57f) - lineToRelative(0.9f, 2.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.64f, 3.15f) - lineTo(8.3f, 10.1f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.08f, 0.16f) - curveToRelative(-0.04f, 0.4f, 0.23f, 1.17f, 0.85f, 2.24f) - curveToRelative(0.45f, 0.78f, 0.86f, 1.33f, 1.2f, 1.64f) - curveToRelative(0.25f, 0.21f, 0.38f, 0.26f, 0.44f, 0.24f) - lineToRelative(2.0f, -0.61f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 3.04f, 1.02f) - lineToRelative(1.28f, 1.77f) - curveToRelative(0.8f, 1.12f, 0.66f, 2.66f, -0.34f, 3.6f) - lineToRelative(-0.88f, 0.85f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.6f, 0.89f) - curveToRelative(-2.74f, -0.77f, -5.21f, -3.1f, -7.43f, -6.93f) - curveToRelative(-2.21f, -3.83f, -2.99f, -7.14f, -2.27f, -9.91f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.34f, -2.58f) - lineToRelative(0.2f, -0.07f) - lineToRelative(1.17f, -0.35f) - curveToRelative(1.33f, -0.4f, 2.74f, 0.24f, 3.3f, 1.5f) - close() - moveTo(6.66f, 3.5f) - lineToRelative(-1.17f, 0.35f) - lineToRelative(-0.16f, 0.06f) - curveToRelative(-0.67f, 0.26f, -1.19f, 0.83f, -1.37f, 1.54f) - curveToRelative(-0.6f, 2.33f, 0.09f, 5.26f, 2.12f, 8.78f) - curveToRelative(2.04f, 3.53f, 4.23f, 5.59f, 6.54f, 6.23f) - curveToRelative(0.76f, 0.21f, 1.58f, 0.01f, 2.15f, -0.53f) - lineToRelative(0.9f, -0.84f) - curveToRelative(0.45f, -0.43f, 0.51f, -1.13f, 0.15f, -1.64f) - lineToRelative(-1.29f, -1.77f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.37f, -0.47f) - lineToRelative(-2.02f, 0.62f) - curveToRelative(-1.17f, 0.35f, -2.23f, -0.6f, -3.37f, -2.57f) - curveTo(7.0f, 11.93f, 6.64f, 10.9f, 6.73f, 10.1f) - curveToRelative(0.05f, -0.42f, 0.24f, -0.8f, 0.55f, -1.09f) - lineToRelative(1.5f, -1.39f) - curveToRelative(0.38f, -0.37f, 0.5f, -0.94f, 0.28f, -1.43f) - lineToRelative(-0.9f, -2.0f) - curveToRelative(-0.26f, -0.58f, -0.9f, -0.87f, -1.5f, -0.69f) - close() - moveTo(21.78f, 2.22f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineTo(18.56f, 6.5f) - lineToRelative(3.22f, 3.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(17.5f, 7.56f) - lineToRelative(-3.22f, 3.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(3.22f, -3.22f) - lineToRelative(-3.22f, -3.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineToRelative(3.22f, 3.22f) - lineToRelative(3.22f, -3.22f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - } - } - return _callDismiss!! - } - -private var _callDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallEnd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallEnd.kt deleted file mode 100644 index 46bb9926..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallEnd.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CallEnd: ImageVector - get() { - if (_callEnd != null) { - return _callEnd!! - } - _callEnd = fluentIcon(name = "Regular.CallEnd") { - fluentPath { - moveToRelative(21.9f, 13.2f) - lineToRelative(-0.19f, 0.82f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.95f, 2.1f) - lineTo(17.0f, 15.96f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.4f, -2.12f) - lineToRelative(-0.39f, -1.69f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.11f, -0.15f) - arcToRelative(4.66f, 4.66f, 0.0f, false, false, -2.1f, -0.32f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.79f, 0.19f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.3f, 0.11f) - lineToRelative(-0.09f, 0.05f) - lineToRelative(-0.01f, 0.04f) - lineToRelative(-0.41f, 1.77f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 7.0f, 15.95f) - lineToRelative(-1.75f, 0.18f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.95f, -2.1f) - lineToRelative(-0.2f, -0.82f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 1.13f, -3.65f) - curveTo(5.13f, 7.84f, 8.06f, 7.0f, 12.0f, 7.0f) - curveToRelative(3.94f, 0.0f, 6.88f, 0.84f, 8.78f, 2.57f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 1.17f, 3.41f) - lineToRelative(-0.05f, 0.22f) - close() - moveTo(20.48f, 12.69f) - curveToRelative(0.11f, -0.74f, -0.15f, -1.5f, -0.71f, -2.01f) - curveTo(18.18f, 9.24f, 15.6f, 8.5f, 12.0f, 8.5f) - curveToRelative(-3.6f, 0.0f, -6.18f, 0.74f, -7.76f, 2.17f) - curveToRelative(-0.6f, 0.55f, -0.87f, 1.4f, -0.68f, 2.2f) - lineToRelative(0.2f, 0.81f) - curveToRelative(0.14f, 0.6f, 0.72f, 1.02f, 1.34f, 0.95f) - lineToRelative(1.75f, -0.17f) - curveToRelative(0.53f, -0.06f, 0.97f, -0.45f, 1.09f, -0.97f) - lineToRelative(0.42f, -1.82f) - lineToRelative(0.04f, -0.13f) - curveToRelative(0.38f, -1.0f, 1.6f, -1.37f, 3.6f, -1.37f) - curveToRelative(1.32f, 0.0f, 2.27f, 0.16f, 2.88f, 0.54f) - curveToRelative(0.4f, 0.24f, 0.69f, 0.64f, 0.8f, 1.1f) - lineToRelative(0.38f, 1.68f) - curveToRelative(0.12f, 0.52f, 0.56f, 0.91f, 1.1f, 0.96f) - lineToRelative(1.75f, 0.18f) - curveToRelative(0.62f, 0.07f, 1.2f, -0.34f, 1.34f, -0.95f) - lineToRelative(0.2f, -0.82f) - lineToRelative(0.03f, -0.17f) - close() - } - } - return _callEnd!! - } - -private var _callEnd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallForward.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallForward.kt deleted file mode 100644 index 5209f848..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallForward.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CallForward: ImageVector - get() { - if (_callForward != null) { - return _callForward!! - } - _callForward = fluentIcon(name = "Regular.CallForward") { - fluentPath { - moveToRelative(9.98f, 2.05f) - lineToRelative(0.22f, 0.05f) - lineToRelative(0.82f, 0.2f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.1f, 2.95f) - lineTo(12.95f, 7.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.12f, 2.4f) - lineToRelative(-1.69f, 0.4f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.15f, 0.1f) - curveToRelative(-0.2f, 0.33f, -0.32f, 1.04f, -0.32f, 2.1f) - curveToRelative(0.0f, 0.79f, 0.06f, 1.39f, 0.19f, 1.79f) - curveToRelative(0.04f, 0.14f, 0.08f, 0.24f, 0.11f, 0.3f) - lineToRelative(0.05f, 0.09f) - lineToRelative(0.04f, 0.01f) - lineToRelative(1.77f, 0.41f) - curveToRelative(1.15f, 0.27f, 2.0f, 1.23f, 2.12f, 2.4f) - lineToRelative(0.17f, 1.75f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.1f, 2.95f) - lineToRelative(-0.8f, 0.2f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.66f, -1.13f) - curveTo(4.84f, 18.87f, 4.0f, 15.94f, 4.0f, 12.0f) - curveToRelative(0.0f, -3.94f, 0.84f, -6.87f, 2.57f, -8.77f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 3.41f, -1.18f) - close() - moveTo(7.68f, 4.24f) - curveTo(6.24f, 5.82f, 5.5f, 8.4f, 5.5f, 12.0f) - curveToRelative(0.0f, 3.6f, 0.74f, 6.18f, 2.17f, 7.76f) - curveToRelative(0.55f, 0.6f, 1.4f, 0.87f, 2.2f, 0.68f) - lineToRelative(0.8f, -0.2f) - curveToRelative(0.62f, -0.14f, 1.03f, -0.72f, 0.96f, -1.34f) - lineToRelative(-0.18f, -1.74f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -0.96f, -1.1f) - lineToRelative(-1.82f, -0.42f) - lineToRelative(-0.13f, -0.04f) - curveToRelative(-1.0f, -0.38f, -1.37f, -1.6f, -1.37f, -3.6f) - curveToRelative(0.0f, -1.32f, 0.16f, -2.26f, 0.54f, -2.88f) - curveToRelative(0.24f, -0.4f, 0.64f, -0.68f, 1.1f, -0.79f) - lineToRelative(1.68f, -0.39f) - curveToRelative(0.52f, -0.12f, 0.91f, -0.56f, 0.96f, -1.1f) - lineToRelative(0.18f, -1.75f) - curveToRelative(0.07f, -0.62f, -0.34f, -1.2f, -0.96f, -1.34f) - lineToRelative(-0.81f, -0.19f) - lineToRelative(-0.17f, -0.03f) - curveToRelative(-0.74f, -0.12f, -1.5f, 0.15f, -2.01f, 0.7f) - close() - moveTo(15.65f, 7.3f) - lineTo(15.72f, 7.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - lineToRelative(4.0f, 4.0f) - curveToRelative(0.26f, 0.26f, 0.29f, 0.68f, 0.07f, 0.97f) - lineToRelative(-0.07f, 0.09f) - lineToRelative(-4.0f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.97f) - lineToRelative(0.07f, -0.09f) - lineToRelative(2.71f, -2.71f) - lineTo(12.0f, 12.51f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.38f, 0.27f, -0.7f, 0.64f, -0.75f) - horizontalLineToRelative(6.54f) - lineToRelative(-2.72f, -2.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(-0.07f, 0.08f) - close() - } - } - return _callForward!! - } - -private var _callForward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallInbound.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallInbound.kt deleted file mode 100644 index 1c5db83c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallInbound.kt +++ /dev/null @@ -1,88 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CallInbound: ImageVector - get() { - if (_callInbound != null) { - return _callInbound!! - } - _callInbound = fluentIcon(name = "Regular.CallInbound") { - fluentPath { - moveToRelative(9.53f, 3.57f) - lineToRelative(0.9f, 2.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.64f, 3.15f) - lineTo(8.3f, 10.1f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.08f, 0.16f) - curveToRelative(-0.04f, 0.4f, 0.23f, 1.17f, 0.85f, 2.24f) - curveToRelative(0.45f, 0.78f, 0.86f, 1.33f, 1.2f, 1.64f) - curveToRelative(0.25f, 0.21f, 0.38f, 0.26f, 0.44f, 0.24f) - lineToRelative(2.0f, -0.61f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 3.04f, 1.02f) - lineToRelative(1.28f, 1.77f) - curveToRelative(0.8f, 1.12f, 0.66f, 2.66f, -0.34f, 3.6f) - lineToRelative(-0.88f, 0.85f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.6f, 0.89f) - curveToRelative(-2.74f, -0.77f, -5.21f, -3.1f, -7.43f, -6.93f) - curveToRelative(-2.21f, -3.83f, -2.99f, -7.14f, -2.27f, -9.91f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.34f, -2.58f) - lineToRelative(0.2f, -0.07f) - lineToRelative(1.17f, -0.35f) - curveToRelative(1.33f, -0.4f, 2.74f, 0.24f, 3.3f, 1.5f) - close() - moveTo(6.66f, 3.5f) - lineToRelative(-1.17f, 0.35f) - lineToRelative(-0.16f, 0.06f) - curveToRelative(-0.67f, 0.26f, -1.19f, 0.83f, -1.37f, 1.54f) - curveToRelative(-0.6f, 2.33f, 0.09f, 5.26f, 2.12f, 8.78f) - curveToRelative(2.04f, 3.53f, 4.23f, 5.59f, 6.54f, 6.23f) - curveToRelative(0.76f, 0.21f, 1.58f, 0.01f, 2.15f, -0.53f) - lineToRelative(0.9f, -0.84f) - curveToRelative(0.45f, -0.43f, 0.51f, -1.13f, 0.15f, -1.64f) - lineToRelative(-1.29f, -1.77f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.37f, -0.47f) - lineToRelative(-2.02f, 0.62f) - curveToRelative(-1.17f, 0.35f, -2.23f, -0.6f, -3.37f, -2.57f) - curveTo(7.0f, 11.93f, 6.64f, 10.9f, 6.73f, 10.1f) - curveToRelative(0.05f, -0.42f, 0.24f, -0.8f, 0.55f, -1.09f) - lineToRelative(1.5f, -1.39f) - curveToRelative(0.38f, -0.37f, 0.5f, -0.94f, 0.28f, -1.43f) - lineToRelative(-0.9f, -2.0f) - curveToRelative(-0.26f, -0.58f, -0.9f, -0.87f, -1.5f, -0.69f) - close() - moveTo(20.25f, 11.0f) - horizontalLineTo(13.7f) - lineToRelative(-0.1f, -0.02f) - lineToRelative(-0.1f, -0.02f) - lineToRelative(-0.05f, -0.02f) - arcToRelative(0.72f, 0.72f, 0.0f, false, true, -0.34f, -0.3f) - lineToRelative(-0.05f, -0.1f) - lineToRelative(-0.03f, -0.06f) - lineToRelative(-0.02f, -0.1f) - lineToRelative(-0.01f, -0.1f) - verticalLineTo(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(4.79f) - lineToRelative(6.22f, -6.22f) - curveToRelative(0.27f, -0.27f, 0.68f, -0.3f, 0.98f, -0.08f) - lineToRelative(0.08f, 0.08f) - curveToRelative(0.27f, 0.26f, 0.29f, 0.68f, 0.07f, 0.97f) - lineToRelative(-0.07f, 0.09f) - lineToRelative(-6.22f, 6.22f) - horizontalLineToRelative(4.69f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - horizontalLineToRelative(-0.1f) - close() - } - } - return _callInbound!! - } - -private var _callInbound: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallMissed.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallMissed.kt deleted file mode 100644 index 3e2fd7e5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallMissed.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CallMissed: ImageVector - get() { - if (_callMissed != null) { - return _callMissed!! - } - _callMissed = fluentIcon(name = "Regular.CallMissed") { - fluentPath { - moveTo(12.01f, 2.5f) - curveToRelative(3.95f, 0.0f, 6.88f, 0.84f, 8.78f, 2.57f) - curveToRelative(0.95f, 0.86f, 1.4f, 2.16f, 1.17f, 3.42f) - lineToRelative(-0.04f, 0.2f) - lineToRelative(-0.2f, 0.82f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.95f, 2.11f) - lineToRelative(-1.75f, -0.18f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.4f, -2.11f) - lineToRelative(-0.4f, -1.69f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.1f, -0.16f) - arcToRelative(4.66f, 4.66f, 0.0f, false, false, -2.1f, -0.32f) - curveToRelative(-1.47f, 0.0f, -2.16f, 0.23f, -2.2f, 0.4f) - lineToRelative(-0.4f, 1.77f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.4f, 2.11f) - lineToRelative(-1.75f, 0.18f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.96f, -2.1f) - lineToRelative(-0.2f, -0.81f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 1.14f, -3.65f) - curveTo(5.15f, 3.34f, 8.08f, 2.5f, 12.0f, 2.5f) - close() - moveTo(12.01f, 4.0f) - curveToRelative(-3.6f, 0.0f, -6.17f, 0.73f, -7.75f, 2.17f) - curveToRelative(-0.61f, 0.55f, -0.87f, 1.39f, -0.68f, 2.19f) - lineToRelative(0.2f, 0.82f) - curveToRelative(0.14f, 0.6f, 0.71f, 1.01f, 1.34f, 0.95f) - lineToRelative(1.74f, -0.18f) - curveToRelative(0.53f, -0.05f, 0.97f, -0.44f, 1.1f, -0.96f) - lineToRelative(0.4f, -1.78f) - curveToRelative(0.27f, -1.13f, 1.53f, -1.55f, 3.65f, -1.55f) - curveToRelative(1.32f, 0.0f, 2.27f, 0.17f, 2.88f, 0.54f) - curveToRelative(0.4f, 0.25f, 0.7f, 0.64f, 0.8f, 1.1f) - lineTo(16.08f, 9.0f) - curveToRelative(0.12f, 0.52f, 0.56f, 0.9f, 1.09f, 0.96f) - lineToRelative(1.75f, 0.18f) - curveToRelative(0.63f, 0.06f, 1.2f, -0.35f, 1.35f, -0.96f) - lineToRelative(0.19f, -0.82f) - lineToRelative(0.03f, -0.17f) - curveToRelative(0.12f, -0.74f, -0.15f, -1.5f, -0.7f, -2.0f) - curveTo(18.18f, 4.74f, 15.61f, 4.0f, 12.0f, 4.0f) - close() - moveTo(12.5f, 14.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(-1.75f) - close() - moveTo(6.5f, 16.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, -11.0f, 0.0f) - close() - moveTo(12.0f, 12.5f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) - close() - } - } - return _callMissed!! - } - -private var _callMissed: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallOutbound.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallOutbound.kt deleted file mode 100644 index 19e86210..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallOutbound.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CallOutbound: ImageVector - get() { - if (_callOutbound != null) { - return _callOutbound!! - } - _callOutbound = fluentIcon(name = "Regular.CallOutbound") { - fluentPath { - moveToRelative(9.53f, 3.57f) - lineToRelative(0.9f, 2.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.64f, 3.15f) - lineTo(8.3f, 10.1f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.08f, 0.16f) - curveToRelative(-0.04f, 0.4f, 0.23f, 1.17f, 0.85f, 2.24f) - curveToRelative(0.45f, 0.78f, 0.86f, 1.33f, 1.2f, 1.64f) - curveToRelative(0.25f, 0.21f, 0.38f, 0.26f, 0.44f, 0.24f) - lineToRelative(2.0f, -0.61f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 3.04f, 1.02f) - lineToRelative(1.28f, 1.77f) - curveToRelative(0.8f, 1.12f, 0.66f, 2.66f, -0.34f, 3.6f) - lineToRelative(-0.88f, 0.85f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.6f, 0.89f) - curveToRelative(-2.74f, -0.77f, -5.21f, -3.1f, -7.43f, -6.93f) - curveToRelative(-2.21f, -3.83f, -2.99f, -7.14f, -2.27f, -9.91f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.34f, -2.58f) - lineToRelative(0.2f, -0.07f) - lineToRelative(1.17f, -0.35f) - curveToRelative(1.33f, -0.4f, 2.74f, 0.24f, 3.3f, 1.5f) - close() - moveTo(6.66f, 3.5f) - lineToRelative(-1.17f, 0.35f) - lineToRelative(-0.16f, 0.06f) - curveToRelative(-0.67f, 0.26f, -1.19f, 0.83f, -1.37f, 1.54f) - curveToRelative(-0.6f, 2.33f, 0.09f, 5.26f, 2.12f, 8.78f) - curveToRelative(2.04f, 3.53f, 4.23f, 5.59f, 6.54f, 6.23f) - curveToRelative(0.76f, 0.21f, 1.58f, 0.01f, 2.15f, -0.53f) - lineToRelative(0.9f, -0.84f) - curveToRelative(0.45f, -0.43f, 0.51f, -1.13f, 0.15f, -1.64f) - lineToRelative(-1.29f, -1.77f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.37f, -0.47f) - lineToRelative(-2.02f, 0.62f) - curveToRelative(-1.17f, 0.35f, -2.23f, -0.6f, -3.37f, -2.57f) - curveTo(7.0f, 11.93f, 6.64f, 10.9f, 6.73f, 10.1f) - curveToRelative(0.05f, -0.42f, 0.24f, -0.8f, 0.55f, -1.09f) - lineToRelative(1.5f, -1.39f) - curveToRelative(0.38f, -0.37f, 0.5f, -0.94f, 0.28f, -1.43f) - lineToRelative(-0.9f, -2.0f) - curveToRelative(-0.26f, -0.58f, -0.9f, -0.87f, -1.5f, -0.69f) - close() - moveTo(14.75f, 2.0f) - horizontalLineToRelative(6.51f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.08f, 0.0f) - lineToRelative(0.06f, 0.02f) - lineToRelative(0.1f, 0.02f) - lineToRelative(0.09f, 0.04f) - lineToRelative(0.06f, 0.04f) - arcToRelative(0.68f, 0.68f, 0.0f, false, true, 0.23f, 0.22f) - lineToRelative(0.04f, 0.08f) - lineToRelative(0.04f, 0.1f) - lineToRelative(0.03f, 0.1f) - verticalLineToRelative(0.1f) - lineTo(22.0f, 9.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-4.8f) - lineToRelative(-6.22f, 6.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.08f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.09f) - lineToRelative(6.22f, -6.22f) - horizontalLineToRelative(-4.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.73f, -0.65f) - lineToRelative(-0.01f, -0.1f) - curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _callOutbound!! - } - -private var _callOutbound: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallPark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallPark.kt deleted file mode 100644 index 9e116d32..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallPark.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CallPark: ImageVector - get() { - if (_callPark != null) { - return _callPark!! - } - _callPark = fluentIcon(name = "Regular.CallPark") { - fluentPath { - moveToRelative(9.53f, 3.57f) - lineToRelative(0.9f, 2.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.64f, 3.15f) - lineTo(8.3f, 10.1f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.08f, 0.16f) - curveToRelative(-0.04f, 0.4f, 0.23f, 1.17f, 0.85f, 2.24f) - curveToRelative(0.45f, 0.78f, 0.86f, 1.33f, 1.2f, 1.64f) - curveToRelative(0.25f, 0.21f, 0.38f, 0.26f, 0.44f, 0.24f) - lineToRelative(2.0f, -0.61f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 3.04f, 1.02f) - lineToRelative(1.28f, 1.77f) - curveToRelative(0.8f, 1.12f, 0.66f, 2.66f, -0.34f, 3.6f) - lineToRelative(-0.88f, 0.85f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.6f, 0.89f) - curveToRelative(-2.74f, -0.77f, -5.21f, -3.1f, -7.43f, -6.93f) - curveToRelative(-2.21f, -3.83f, -2.99f, -7.14f, -2.27f, -9.91f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.55f, -2.65f) - lineToRelative(1.16f, -0.35f) - curveToRelative(1.33f, -0.4f, 2.74f, 0.24f, 3.3f, 1.5f) - close() - moveTo(6.66f, 3.5f) - lineToRelative(-1.17f, 0.35f) - curveToRelative(-0.75f, 0.23f, -1.33f, 0.83f, -1.53f, 1.6f) - curveToRelative(-0.6f, 2.33f, 0.09f, 5.26f, 2.12f, 8.78f) - curveToRelative(2.04f, 3.53f, 4.23f, 5.59f, 6.54f, 6.23f) - curveToRelative(0.76f, 0.21f, 1.58f, 0.01f, 2.15f, -0.53f) - lineToRelative(0.9f, -0.84f) - curveToRelative(0.45f, -0.43f, 0.51f, -1.13f, 0.15f, -1.64f) - lineToRelative(-1.29f, -1.77f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.37f, -0.47f) - lineToRelative(-2.02f, 0.62f) - curveToRelative(-1.17f, 0.35f, -2.23f, -0.6f, -3.37f, -2.57f) - curveTo(7.0f, 11.93f, 6.64f, 10.9f, 6.73f, 10.1f) - curveToRelative(0.05f, -0.42f, 0.24f, -0.8f, 0.55f, -1.09f) - lineToRelative(1.5f, -1.39f) - curveToRelative(0.38f, -0.37f, 0.5f, -0.94f, 0.28f, -1.43f) - lineToRelative(-0.9f, -2.0f) - curveToRelative(-0.26f, -0.58f, -0.9f, -0.87f, -1.5f, -0.69f) - close() - moveTo(14.75f, 2.0f) - horizontalLineToRelative(2.5f) - curveTo(19.64f, 2.0f, 21.0f, 3.14f, 21.0f, 5.25f) - curveToRelative(0.0f, 2.04f, -1.28f, 3.17f, -3.52f, 3.24f) - lineTo(15.5f, 8.49f) - verticalLineToRelative(2.77f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(14.0f, 2.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(2.5f) - horizontalLineToRelative(-2.5f) - close() - moveTo(17.25f, 3.5f) - lineTo(15.5f, 3.5f) - lineTo(15.5f, 7.0f) - horizontalLineToRelative(1.75f) - curveToRelative(1.61f, 0.0f, 2.25f, -0.53f, 2.25f, -1.75f) - curveToRelative(0.0f, -1.17f, -0.59f, -1.7f, -2.06f, -1.75f) - horizontalLineToRelative(-0.2f) - close() - } - } - return _callPark!! - } - -private var _callPark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallPause.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallPause.kt deleted file mode 100644 index efc57131..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallPause.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CallPause: ImageVector - get() { - if (_callPause != null) { - return _callPause!! - } - _callPause = fluentIcon(name = "Regular.CallPause") { - fluentPath { - moveTo(15.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-7.5f) - close() - moveTo(19.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-7.5f) - close() - moveTo(10.43f, 5.63f) - lineTo(9.53f, 3.63f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -3.3f, -1.51f) - lineToRelative(-1.17f, 0.35f) - lineToRelative(-0.2f, 0.07f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 2.5f, 5.12f) - curveToRelative(-0.72f, 2.77f, 0.06f, 6.08f, 2.27f, 9.91f) - curveToRelative(2.22f, 3.83f, 4.69f, 6.16f, 7.44f, 6.93f) - curveToRelative(1.27f, 0.35f, 2.63f, 0.01f, 3.59f, -0.9f) - lineToRelative(0.88f, -0.83f) - curveToRelative(1.0f, -0.95f, 1.15f, -2.49f, 0.34f, -3.6f) - lineToRelative(-1.28f, -1.78f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -3.03f, -1.02f) - lineToRelative(-2.01f, 0.61f) - curveToRelative(-0.06f, 0.02f, -0.2f, -0.03f, -0.44f, -0.24f) - curveToRelative(-0.34f, -0.31f, -0.75f, -0.86f, -1.2f, -1.64f) - curveToRelative(-0.62f, -1.07f, -0.9f, -1.85f, -0.85f, -2.24f) - curveToRelative(0.0f, -0.06f, 0.04f, -0.12f, 0.08f, -0.16f) - lineToRelative(1.5f, -1.4f) - curveToRelative(0.86f, -0.8f, 1.11f, -2.06f, 0.63f, -3.13f) - close() - moveTo(5.49f, 3.9f) - lineToRelative(1.17f, -0.36f) - curveToRelative(0.6f, -0.18f, 1.24f, 0.12f, 1.5f, 0.69f) - lineToRelative(0.9f, 2.0f) - curveToRelative(0.22f, 0.5f, 0.1f, 1.07f, -0.29f, 1.43f) - lineToRelative(-1.5f, 1.4f) - curveToRelative(-0.3f, 0.28f, -0.5f, 0.66f, -0.54f, 1.08f) - curveToRelative(-0.09f, 0.8f, 0.27f, 1.83f, 1.04f, 3.16f) - curveToRelative(1.14f, 1.98f, 2.2f, 2.92f, 3.37f, 2.57f) - lineToRelative(2.02f, -0.62f) - curveToRelative(0.5f, -0.15f, 1.06f, 0.03f, 1.37f, 0.47f) - lineToRelative(1.29f, 1.77f) - curveToRelative(0.36f, 0.5f, 0.3f, 1.2f, -0.16f, 1.64f) - lineToRelative(-0.89f, 0.84f) - curveToRelative(-0.57f, 0.54f, -1.39f, 0.75f, -2.15f, 0.53f) - curveToRelative(-2.31f, -0.64f, -4.5f, -2.7f, -6.54f, -6.23f) - curveToRelative(-2.03f, -3.52f, -2.72f, -6.45f, -2.12f, -8.78f) - curveToRelative(0.18f, -0.71f, 0.7f, -1.28f, 1.37f, -1.54f) - lineToRelative(0.16f, -0.05f) - close() - } - } - return _callPause!! - } - -private var _callPause: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallProhibited.kt deleted file mode 100644 index 5baa1c4a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallProhibited.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CallProhibited: ImageVector - get() { - if (_callProhibited != null) { - return _callProhibited!! - } - _callProhibited = fluentIcon(name = "Regular.CallProhibited") { - fluentPath { - moveTo(12.01f, 2.5f) - curveToRelative(3.95f, 0.0f, 6.88f, 0.84f, 8.78f, 2.57f) - curveToRelative(0.95f, 0.86f, 1.4f, 2.16f, 1.17f, 3.42f) - lineToRelative(-0.04f, 0.2f) - lineToRelative(-0.2f, 0.82f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.95f, 2.11f) - lineToRelative(-1.75f, -0.18f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.4f, -2.11f) - lineToRelative(-0.4f, -1.69f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.1f, -0.16f) - arcToRelative(4.66f, 4.66f, 0.0f, false, false, -2.1f, -0.32f) - curveToRelative(-1.47f, 0.0f, -2.16f, 0.23f, -2.2f, 0.4f) - lineToRelative(-0.4f, 1.77f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.4f, 2.11f) - lineToRelative(-1.75f, 0.18f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.96f, -2.1f) - lineToRelative(-0.2f, -0.81f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 1.14f, -3.65f) - curveTo(5.15f, 3.34f, 8.08f, 2.5f, 12.0f, 2.5f) - close() - moveTo(12.01f, 4.0f) - curveToRelative(-3.6f, 0.0f, -6.17f, 0.73f, -7.75f, 2.17f) - curveToRelative(-0.61f, 0.55f, -0.87f, 1.39f, -0.68f, 2.19f) - lineToRelative(0.2f, 0.82f) - curveToRelative(0.14f, 0.6f, 0.71f, 1.01f, 1.34f, 0.95f) - lineToRelative(1.74f, -0.18f) - curveToRelative(0.53f, -0.05f, 0.97f, -0.44f, 1.1f, -0.96f) - lineToRelative(0.4f, -1.78f) - curveToRelative(0.27f, -1.13f, 1.53f, -1.55f, 3.65f, -1.55f) - curveToRelative(1.32f, 0.0f, 2.27f, 0.17f, 2.88f, 0.54f) - curveToRelative(0.4f, 0.25f, 0.7f, 0.64f, 0.8f, 1.1f) - lineTo(16.08f, 9.0f) - curveToRelative(0.12f, 0.52f, 0.56f, 0.9f, 1.09f, 0.96f) - lineToRelative(1.75f, 0.18f) - curveToRelative(0.63f, 0.06f, 1.2f, -0.35f, 1.35f, -0.96f) - lineToRelative(0.19f, -0.82f) - lineToRelative(0.03f, -0.17f) - curveToRelative(0.12f, -0.74f, -0.15f, -1.5f, -0.7f, -2.0f) - curveTo(18.18f, 4.74f, 15.61f, 4.0f, 12.0f, 4.0f) - close() - moveTo(12.0f, 22.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, 11.0f) - close() - moveTo(12.0f, 20.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) - lineToRelative(-5.55f, 5.56f) - curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) - close() - moveTo(8.7f, 18.75f) - lineTo(14.25f, 13.19f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -5.56f, 5.56f) - close() - } - } - return _callProhibited!! - } - -private var _callProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallTransfer.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallTransfer.kt deleted file mode 100644 index 622b949c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CallTransfer.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CallTransfer: ImageVector - get() { - if (_callTransfer != null) { - return _callTransfer!! - } - _callTransfer = fluentIcon(name = "Regular.CallTransfer") { - fluentPath { - moveToRelative(6.22f, 2.07f) - lineToRelative(-1.16f, 0.35f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 2.5f, 5.07f) - curveToRelative(-0.72f, 2.77f, 0.06f, 6.08f, 2.27f, 9.91f) - curveToRelative(2.22f, 3.83f, 4.69f, 6.16f, 7.44f, 6.93f) - curveToRelative(1.27f, 0.35f, 2.63f, 0.01f, 3.59f, -0.9f) - lineToRelative(0.88f, -0.83f) - curveToRelative(1.0f, -0.95f, 1.15f, -2.49f, 0.34f, -3.6f) - lineToRelative(-1.28f, -1.78f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -3.03f, -1.02f) - lineToRelative(-2.01f, 0.61f) - curveToRelative(-0.06f, 0.02f, -0.2f, -0.03f, -0.44f, -0.24f) - curveToRelative(-0.34f, -0.31f, -0.75f, -0.86f, -1.2f, -1.64f) - curveToRelative(-0.62f, -1.07f, -0.9f, -1.85f, -0.85f, -2.24f) - curveToRelative(0.0f, -0.06f, 0.04f, -0.12f, 0.08f, -0.16f) - lineToRelative(1.5f, -1.4f) - curveToRelative(0.86f, -0.8f, 1.11f, -2.06f, 0.63f, -3.13f) - lineToRelative(-0.9f, -2.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -3.3f, -1.51f) - close() - moveTo(3.96f, 5.45f) - curveToRelative(0.2f, -0.77f, 0.78f, -1.37f, 1.53f, -1.6f) - lineToRelative(1.17f, -0.35f) - curveToRelative(0.6f, -0.18f, 1.24f, 0.11f, 1.5f, 0.69f) - lineToRelative(0.9f, 2.0f) - curveToRelative(0.22f, 0.5f, 0.1f, 1.06f, -0.29f, 1.43f) - lineToRelative(-1.5f, 1.4f) - curveToRelative(-0.3f, 0.28f, -0.5f, 0.66f, -0.54f, 1.08f) - curveToRelative(-0.09f, 0.8f, 0.27f, 1.83f, 1.04f, 3.16f) - curveToRelative(1.14f, 1.97f, 2.2f, 2.92f, 3.37f, 2.57f) - lineToRelative(2.02f, -0.62f) - curveToRelative(0.5f, -0.16f, 1.06f, 0.03f, 1.37f, 0.47f) - lineToRelative(1.29f, 1.77f) - curveToRelative(0.36f, 0.5f, 0.3f, 1.2f, -0.16f, 1.64f) - lineToRelative(-0.89f, 0.84f) - curveToRelative(-0.57f, 0.54f, -1.39f, 0.74f, -2.15f, 0.53f) - curveToRelative(-2.31f, -0.64f, -4.5f, -2.7f, -6.54f, -6.23f) - curveToRelative(-2.03f, -3.52f, -2.72f, -6.45f, -2.12f, -8.78f) - close() - moveTo(14.0f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(20.5f, 4.56f) - lineToRelative(-3.97f, 3.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(3.97f, -3.97f) - horizontalLineToRelative(-4.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(14.0f, 10.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(12.75f, 12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - } - } - return _callTransfer!! - } - -private var _callTransfer: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalligraphyPen.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalligraphyPen.kt deleted file mode 100644 index 7ec640c7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CalligraphyPen.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CalligraphyPen: ImageVector - get() { - if (_calligraphyPen != null) { - return _calligraphyPen!! - } - _calligraphyPen = fluentIcon(name = "Regular.CalligraphyPen") { - fluentPath { - moveTo(7.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.9f, 0.67f, 1.64f, 1.54f, 1.74f) - lineToRelative(-1.01f, 2.5f) - curveToRelative(-0.41f, 1.0f, -0.37f, 2.19f, 0.12f, 3.15f) - lineToRelative(3.99f, 7.95f) - curveToRelative(0.28f, 0.56f, 0.8f, 0.91f, 1.36f, 0.91f) - reflectiveCurveToRelative(1.08f, -0.35f, 1.36f, -0.91f) - lineToRelative(4.0f, -7.95f) - curveToRelative(0.48f, -0.96f, 0.52f, -2.14f, 0.11f, -3.15f) - lineToRelative(-1.01f, -2.5f) - curveToRelative(0.87f, -0.1f, 1.54f, -0.84f, 1.54f, -1.74f) - verticalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-3.0f) - close() - moveTo(14.84f, 7.5f) - lineTo(16.08f, 10.56f) - curveToRelative(0.25f, 0.6f, 0.22f, 1.33f, -0.07f, 1.9f) - lineToRelative(-3.26f, 6.5f) - lineTo(12.75f, 12.3f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, -1.5f, 0.0f) - verticalLineToRelative(6.67f) - lineToRelative(-3.26f, -6.5f) - arcToRelative(2.37f, 2.37f, 0.0f, false, true, -0.07f, -1.91f) - lineTo(9.16f, 7.5f) - horizontalLineToRelative(5.68f) - close() - } - } - return _calligraphyPen!! - } - -private var _calligraphyPen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Camera.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Camera.kt deleted file mode 100644 index 87348f13..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Camera.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Camera: ImageVector - get() { - if (_camera != null) { - return _camera!! - } - _camera = fluentIcon(name = "Regular.Camera") { - fluentPath { - moveTo(13.92f, 2.5f) - curveToRelative(0.8f, 0.0f, 1.54f, 0.43f, 1.94f, 1.11f) - lineToRelative(0.82f, 1.4f) - horizontalLineToRelative(2.07f) - curveTo(20.55f, 5.0f, 22.0f, 6.45f, 22.0f, 8.24f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(5.25f, 20.99f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 17.75f) - verticalLineToRelative(-9.5f) - curveTo(2.0f, 6.45f, 3.46f, 5.0f, 5.25f, 5.0f) - horizontalLineToRelative(2.08f) - lineToRelative(0.88f, -1.42f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 1.91f, -1.08f) - horizontalLineToRelative(3.8f) - close() - moveTo(13.92f, 4.0f) - horizontalLineToRelative(-3.8f) - curveToRelative(-0.22f, 0.0f, -0.43f, 0.1f, -0.57f, 0.27f) - lineToRelative(-0.07f, 0.1f) - lineToRelative(-1.1f, 1.77f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.63f, 0.36f) - horizontalLineToRelative(-2.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.37f) - lineToRelative(-1.03f, -1.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, -0.37f) - close() - moveTo(12.0f, 8.0f) - arcToRelative(4.5f, 4.5f, 0.0f, true, true, 0.0f, 9.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 0.0f, -9.0f) - close() - moveTo(12.0f, 9.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - } - } - return _camera!! - } - -private var _camera: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CameraAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CameraAdd.kt deleted file mode 100644 index 7e4f0883..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CameraAdd.kt +++ /dev/null @@ -1,93 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CameraAdd: ImageVector - get() { - if (_cameraAdd != null) { - return _cameraAdd!! - } - _cameraAdd = fluentIcon(name = "Regular.CameraAdd") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(17.5f, 14.0f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - lineToRelative(-0.01f, 0.09f) - lineTo(17.0f, 17.0f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(0.18f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.37f, 0.4f, 0.4f) - lineToRelative(0.1f, 0.01f) - lineTo(17.0f, 18.0f) - verticalLineToRelative(2.6f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - horizontalLineToRelative(0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) - lineToRelative(0.01f, -0.1f) - lineTo(18.0f, 18.0f) - horizontalLineToRelative(2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) - verticalLineToRelative(-0.19f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) - horizontalLineToRelative(-0.1f) - lineTo(18.0f, 17.0f) - verticalLineToRelative(-2.59f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) - lineTo(17.5f, 14.0f) - close() - moveTo(13.92f, 2.5f) - curveToRelative(0.8f, 0.0f, 1.54f, 0.43f, 1.94f, 1.11f) - lineToRelative(0.82f, 1.4f) - horizontalLineToRelative(2.07f) - curveTo(20.55f, 5.0f, 22.0f, 6.45f, 22.0f, 8.24f) - verticalLineToRelative(4.56f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) - lineTo(20.5f, 8.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.37f) - lineToRelative(-1.03f, -1.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, -0.37f) - horizontalLineToRelative(-3.8f) - curveToRelative(-0.22f, 0.0f, -0.43f, 0.1f, -0.57f, 0.27f) - lineToRelative(-0.07f, 0.1f) - lineToRelative(-1.1f, 1.77f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.63f, 0.36f) - horizontalLineToRelative(-2.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(6.06f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(5.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 17.75f) - verticalLineToRelative(-9.5f) - curveTo(2.0f, 6.45f, 3.46f, 5.0f, 5.25f, 5.0f) - horizontalLineToRelative(2.08f) - lineToRelative(0.88f, -1.42f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 1.91f, -1.08f) - horizontalLineToRelative(3.8f) - close() - moveTo(12.0f, 8.0f) - curveToRelative(2.0f, 0.0f, 3.7f, 1.3f, 4.28f, 3.12f) - curveToRelative(-0.5f, 0.09f, -0.98f, 0.24f, -1.43f, 0.44f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, -3.51f, 3.87f) - curveToRelative(-0.16f, 0.46f, -0.27f, 0.96f, -0.31f, 1.47f) - arcTo(4.5f, 4.5f, 0.0f, false, true, 12.0f, 8.0f) - close() - } - } - return _cameraAdd!! - } - -private var _cameraAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CameraDome.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CameraDome.kt deleted file mode 100644 index fa673c2a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CameraDome.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CameraDome: ImageVector - get() { - if (_cameraDome != null) { - return _cameraDome!! - } - _cameraDome = fluentIcon(name = "Regular.CameraDome") { - fluentPath { - moveTo(12.0f, 16.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) - close() - moveTo(12.0f, 8.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, -11.0f) - close() - moveTo(8.0f, 13.5f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, 8.0f, 0.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -8.0f, 0.0f) - close() - moveTo(2.0f, 3.75f) - curveTo(2.0f, 2.78f, 2.78f, 2.0f, 3.75f, 2.0f) - horizontalLineToRelative(16.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.7f, -0.4f, 1.3f, -1.0f, 1.58f) - lineTo(21.0f, 13.0f) - arcToRelative(9.0f, 9.0f, 0.0f, true, true, -18.0f, 0.0f) - lineTo(3.0f, 6.83f) - curveToRelative(-0.6f, -0.28f, -1.0f, -0.88f, -1.0f, -1.58f) - verticalLineToRelative(-1.5f) - close() - moveTo(4.5f, 7.0f) - verticalLineToRelative(6.0f) - arcToRelative(7.5f, 7.5f, 0.0f, true, false, 15.0f, 0.0f) - lineTo(19.5f, 7.0f) - horizontalLineToRelative(-15.0f) - close() - moveTo(3.75f, 3.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(16.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-1.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - lineTo(3.75f, 3.5f) - close() - } - } - return _cameraDome!! - } - -private var _cameraDome: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CameraOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CameraOff.kt deleted file mode 100644 index fee5a716..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CameraOff.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CameraOff: ImageVector - get() { - if (_cameraOff != null) { - return _cameraOff!! - } - _cameraOff = fluentIcon(name = "Regular.CameraOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(4.14f, 5.2f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 8.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 19.55f, 3.46f, 21.0f, 5.25f, 21.0f) - horizontalLineToRelative(13.5f) - curveToRelative(0.36f, 0.0f, 0.7f, -0.06f, 1.02f, -0.16f) - lineToRelative(0.95f, 0.94f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(18.44f, 19.5f) - lineTo(5.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(0.19f) - lineToRelative(3.11f, 3.11f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 6.34f, 6.34f) - lineToRelative(3.55f, 3.55f) - close() - moveTo(9.62f, 10.68f) - lineTo(13.82f, 14.88f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -4.2f, -4.2f) - close() - moveTo(11.24f, 8.06f) - lineTo(12.8f, 9.6f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.1f, 2.11f) - lineToRelative(1.55f, 1.55f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, -5.2f, -5.2f) - close() - moveTo(20.5f, 8.25f) - verticalLineToRelative(9.07f) - lineToRelative(1.36f, 1.36f) - curveToRelative(0.1f, -0.3f, 0.14f, -0.6f, 0.14f, -0.93f) - verticalLineToRelative(-9.5f) - curveTo(22.0f, 6.45f, 20.54f, 5.0f, 18.75f, 5.0f) - horizontalLineToRelative(-2.07f) - lineToRelative(-0.82f, -1.39f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.94f, -1.1f) - horizontalLineToRelative(-3.8f) - curveToRelative(-0.78f, 0.0f, -1.5f, 0.4f, -1.91f, 1.07f) - lineToRelative(-0.56f, 0.9f) - lineToRelative(1.1f, 1.08f) - lineToRelative(0.73f, -1.2f) - lineToRelative(0.07f, -0.09f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.57f, -0.27f) - horizontalLineToRelative(3.8f) - curveToRelative(0.27f, 0.0f, 0.52f, 0.14f, 0.65f, 0.37f) - lineToRelative(1.03f, 1.76f) - curveToRelative(0.14f, 0.23f, 0.38f, 0.37f, 0.65f, 0.37f) - horizontalLineToRelative(2.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - close() - } - } - return _cameraOff!! - } - -private var _cameraOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CameraSparkles.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CameraSparkles.kt deleted file mode 100644 index 5ee1a2ae..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CameraSparkles.kt +++ /dev/null @@ -1,101 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CameraSparkles: ImageVector - get() { - if (_cameraSparkles != null) { - return _cameraSparkles!! - } - _cameraSparkles = fluentIcon(name = "Regular.CameraSparkles") { - fluentPath { - moveTo(15.85f, 6.15f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, 0.69f, 1.11f) - lineToRelative(0.45f, 1.38f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 1.02f, 0.0f) - lineToRelative(0.45f, -1.38f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, 1.8f, -1.8f) - lineToRelative(1.38f, -0.44f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, -1.03f) - horizontalLineToRelative(-0.03f) - lineToRelative(-1.38f, -0.45f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.8f, -1.8f) - lineTo(18.0f, 0.36f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, -1.03f, 0.0f) - lineToRelative(-0.45f, 1.38f) - lineToRelative(-0.01f, 0.03f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.76f, 1.77f) - lineToRelative(-1.38f, 0.44f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, 1.03f) - lineToRelative(1.38f, 0.45f) - curveToRelative(0.42f, 0.14f, 0.8f, 0.37f, 1.11f, 0.69f) - close() - moveTo(23.02f, 9.96f) - lineTo(23.78f, 10.21f) - horizontalLineToRelative(0.02f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, 0.47f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, 0.1f) - lineToRelative(-0.77f, 0.26f) - arcToRelative(1.58f, 1.58f, 0.0f, false, false, -1.0f, 1.0f) - lineToRelative(-0.24f, 0.76f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.58f, 0.0f) - lineToRelative(-0.24f, -0.77f) - arcToRelative(1.57f, 1.57f, 0.0f, false, false, -1.0f, -1.0f) - lineToRelative(-0.77f, -0.25f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, -0.46f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, -0.1f) - lineToRelative(0.77f, -0.26f) - arcToRelative(1.58f, 1.58f, 0.0f, false, false, 0.98f, -1.0f) - lineToRelative(0.25f, -0.76f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.57f, 0.0f) - lineToRelative(0.25f, 0.77f) - arcToRelative(1.57f, 1.57f, 0.0f, false, false, 1.0f, 1.0f) - close() - moveTo(10.12f, 4.0f) - horizontalLineToRelative(1.96f) - arcToRelative(1.55f, 1.55f, 0.0f, false, true, 0.95f, -0.96f) - lineToRelative(1.4f, -0.45f) - lineToRelative(0.04f, -0.02f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.55f, -0.07f) - horizontalLineToRelative(-3.8f) - curveToRelative(-0.78f, 0.0f, -1.5f, 0.4f, -1.91f, 1.08f) - lineTo(7.33f, 5.0f) - lineTo(5.25f, 5.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 8.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 19.55f, 3.46f, 21.0f, 5.25f, 21.0f) - horizontalLineToRelative(13.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(22.0f, 13.9f) - arcToRelative(1.33f, 1.33f, 0.0f, false, true, -1.5f, -0.37f) - verticalLineToRelative(4.22f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(5.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.26f, 0.0f, 0.5f, -0.14f, 0.64f, -0.36f) - lineToRelative(1.1f, -1.78f) - lineToRelative(0.06f, -0.09f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.57f, -0.27f) - close() - moveTo(16.5f, 12.5f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, -9.0f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 9.0f, 0.0f) - close() - moveTo(9.0f, 12.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.0f) - close() - } - } - return _cameraSparkles!! - } - -private var _cameraSparkles: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CameraSwitch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CameraSwitch.kt deleted file mode 100644 index 7e8ef400..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CameraSwitch.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CameraSwitch: ImageVector - get() { - if (_cameraSwitch != null) { - return _cameraSwitch!! - } - _cameraSwitch = fluentIcon(name = "Regular.CameraSwitch") { - fluentPath { - moveTo(21.25f, 7.5f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(8.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(6.06f, 20.0f) - lineToRelative(0.72f, 0.72f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-2.0f, -2.0f) - lineToRelative(-0.06f, -0.07f) - lineToRelative(-0.01f, -0.01f) - lineToRelative(0.07f, 0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-0.72f, 0.72f) - horizontalLineToRelative(12.69f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(18.2f, 2.15f) - lineToRelative(0.08f, 0.07f) - lineToRelative(2.0f, 2.0f) - lineToRelative(0.07f, 0.08f) - lineToRelative(-0.07f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.06f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(0.72f, -0.72f) - lineTo(5.25f, 5.5f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - lineToRelative(-0.01f, 0.15f) - verticalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-8.6f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(5.25f, 4.0f) - horizontalLineToRelative(12.69f) - lineToRelative(-0.72f, -0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - close() - moveTo(12.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, 0.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, -8.0f) - close() - moveTo(12.0f, 9.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, -5.0f) - close() - } - } - return _cameraSwitch!! - } - -private var _cameraSwitch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cart.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cart.kt deleted file mode 100644 index af5f23ca..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cart.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Cart: ImageVector - get() { - if (_cart != null) { - return _cart!! - } - _cart = fluentIcon(name = "Regular.Cart") { - fluentPath { - moveTo(2.5f, 4.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(0.56f) - curveToRelative(0.95f, 0.0f, 1.52f, 0.64f, 1.84f, 1.23f) - curveToRelative(0.22f, 0.4f, 0.38f, 0.86f, 0.5f, 1.27f) - horizontalLineToRelative(12.6f) - curveToRelative(0.83f, 0.0f, 1.43f, 0.8f, 1.2f, 1.6f) - lineTo(18.12f, 14.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.64f, 2.0f) - lineTo(9.53f, 16.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.65f, -2.02f) - lineToRelative(-0.76f, -2.78f) - lineToRelative(-1.26f, -4.24f) - verticalLineToRelative(-0.01f) - curveToRelative(-0.16f, -0.57f, -0.3f, -1.1f, -0.52f, -1.5f) - curveTo(4.13f, 5.07f, 3.96f, 5.0f, 3.8f, 5.0f) - horizontalLineToRelative(-0.56f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(7.57f, 10.84f) - lineTo(8.32f, 13.58f) - curveToRelative(0.15f, 0.54f, 0.65f, 0.92f, 1.21f, 0.92f) - horizontalLineToRelative(5.95f) - curveToRelative(0.56f, 0.0f, 1.05f, -0.37f, 1.2f, -0.9f) - lineToRelative(1.74f, -6.1f) - lineTo(6.59f, 7.5f) - lineToRelative(0.97f, 3.29f) - lineToRelative(0.01f, 0.05f) - close() - moveTo(11.0f, 19.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(9.5f, 19.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -1.0f, 0.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - close() - moveTo(18.0f, 19.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(16.5f, 19.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -1.0f, 0.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - close() - } - } - return _cart!! - } - -private var _cart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cast.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cast.kt deleted file mode 100644 index f801acdd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cast.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Cast: ImageVector - get() { - if (_cast != null) { - return _cast!! - } - _cast = fluentIcon(name = "Regular.Cast") { - fluentPath { - moveTo(2.0f, 6.25f) - curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) - horizontalLineToRelative(15.5f) - curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(4.25f, 20.0f) - curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) - lineTo(2.0f, 6.25f) - close() - moveTo(4.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(15.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(20.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(4.25f, 5.5f) - close() - moveTo(7.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(5.0f, 12.75f) - curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.75f, -0.75f) - curveToRelative(2.34f, 0.0f, 4.24f, 1.9f, 4.24f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.74f, -2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(5.0f, 9.75f) - curveToRelative(0.0f, -0.42f, 0.33f, -0.76f, 0.75f, -0.76f) - curveToRelative(4.0f, 0.0f, 7.25f, 3.25f, 7.25f, 7.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - arcToRelative(5.75f, 5.75f, 0.0f, false, false, -5.75f, -5.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _cast!! - } - -private var _cast: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CatchUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CatchUp.kt deleted file mode 100644 index 27d00338..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CatchUp.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CatchUp: ImageVector - get() { - if (_catchUp != null) { - return _catchUp!! - } - _catchUp = fluentIcon(name = "Regular.CatchUp") { - fluentPath { - moveTo(9.28f, 8.16f) - curveToRelative(0.08f, -0.2f, 0.37f, -0.21f, 0.46f, 0.0f) - lineToRelative(3.24f, 7.76f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 3.17f, 0.12f) - lineToRelative(1.6f, -3.13f) - curveToRelative(0.13f, -0.25f, 0.39f, -0.41f, 0.67f, -0.41f) - horizontalLineToRelative(0.64f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.2f, -1.5f) - horizontalLineToRelative(-0.84f) - curveToRelative(-0.85f, 0.0f, -1.62f, 0.47f, -2.0f, 1.23f) - lineToRelative(-1.6f, 3.13f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.46f, -0.01f) - lineToRelative(-3.24f, -7.77f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -3.23f, 0.01f) - lineToRelative(-1.2f, 2.94f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, 0.47f) - horizontalLineTo(4.73f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.2f, 1.5f) - horizontalLineTo(6.0f) - curveToRelative(0.92f, 0.0f, 1.74f, -0.55f, 2.09f, -1.4f) - lineToRelative(1.2f, -2.94f) - close() - } - } - return _catchUp!! - } - -private var _catchUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cellular3G.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cellular3G.kt deleted file mode 100644 index c093b651..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cellular3G.kt +++ /dev/null @@ -1,128 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Cellular3G: ImageVector - get() { - if (_cellular3G != null) { - return _cellular3G!! - } - _cellular3G = fluentIcon(name = "Regular.Cellular3G") { - fluentPath { - moveTo(12.9f, 3.62f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.28f, 0.79f) - lineToRelative(-0.02f, -0.02f) - arcToRelative(0.64f, 0.64f, 0.0f, false, false, -0.15f, -0.12f) - curveToRelative(-0.15f, -0.08f, -0.47f, -0.2f, -1.06f, -0.09f) - curveToRelative(-0.41f, 0.08f, -0.62f, 0.33f, -0.75f, 0.67f) - arcToRelative(2.1f, 2.1f, 0.0f, false, false, -0.14f, 0.65f) - verticalLineToRelative(1.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(0.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.97f, -0.75f) - horizontalLineToRelative(-0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.25f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.5f, 2.5f) - horizontalLineToRelative(-0.25f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 8.0f, 6.75f) - verticalLineTo(5.46f) - arcToRelative(2.57f, 2.57f, 0.0f, false, true, 0.03f, -0.34f) - curveToRelative(0.03f, -0.22f, 0.09f, -0.5f, 0.2f, -0.82f) - curveToRelative(0.25f, -0.62f, 0.8f, -1.4f, 1.88f, -1.6f) - curveToRelative(0.92f, -0.16f, 1.6f, 0.0f, 2.07f, 0.26f) - arcToRelative(2.13f, 2.13f, 0.0f, false, true, 0.7f, 0.64f) - lineToRelative(0.01f, 0.01f) - close() - } - fluentPath { - moveToRelative(4.5f, 4.57f) - lineToRelative(-0.06f, 0.04f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.88f, -1.22f) - curveToRelative(-0.07f, 0.06f, 0.64f, -0.64f, 1.69f, -0.64f) - curveToRelative(1.06f, 0.0f, 1.74f, 0.72f, 1.94f, 1.5f) - arcTo(2.07f, 2.07f, 0.0f, false, true, 6.86f, 6.0f) - curveToRelative(0.3f, 0.4f, 0.42f, 0.9f, 0.4f, 1.35f) - curveToRelative(-0.07f, 0.91f, -0.75f, 1.9f, -2.01f, 1.9f) - curveToRelative(-0.54f, 0.0f, -0.97f, -0.17f, -1.27f, -0.34f) - curveToRelative(-0.29f, -0.17f, -0.48f, -0.35f, -0.47f, -0.34f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.14f) - lineToRelative(0.01f, 0.01f) - curveToRelative(0.08f, 0.07f, 0.34f, 0.31f, 0.75f, 0.31f) - curveToRelative(0.18f, 0.0f, 0.29f, -0.06f, 0.36f, -0.14f) - arcToRelative(0.59f, 0.59f, 0.0f, false, false, 0.15f, -0.36f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.1f, -0.36f) - curveToRelative(-0.05f, -0.06f, -0.16f, -0.14f, -0.41f, -0.14f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - curveToRelative(0.28f, 0.0f, 0.38f, -0.1f, 0.43f, -0.18f) - curveToRelative(0.07f, -0.1f, 0.1f, -0.26f, 0.06f, -0.44f) - arcToRelative(0.53f, 0.53f, 0.0f, false, false, -0.17f, -0.28f) - arcToRelative(0.47f, 0.47f, 0.0f, false, false, -0.32f, -0.1f) - arcToRelative(1.06f, 1.06f, 0.0f, false, false, -0.68f, 0.25f) - arcToRelative(1.1f, 1.1f, 0.0f, false, false, -0.04f, 0.04f) - lineToRelative(-0.02f, 0.01f) - lineToRelative(-0.02f, 0.02f) - close() - } - fluentPath { - moveTo(11.75f, 12.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-7.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - fluentPath { - moveTo(15.75f, 9.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineTo(9.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - fluentPath { - moveTo(3.75f, 18.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-1.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - fluentPath { - moveTo(19.74f, 6.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.75f, 0.64f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.12f) - verticalLineTo(6.76f) - curveToRelative(0.0f, -0.42f, 0.33f, -0.76f, 0.74f, -0.76f) - close() - } - fluentPath { - moveTo(7.75f, 15.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-4.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _cellular3G!! - } - -private var _cellular3G: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cellular4G.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cellular4G.kt deleted file mode 100644 index 041d20f6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cellular4G.kt +++ /dev/null @@ -1,119 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Cellular4G: ImageVector - get() { - if (_cellular4G != null) { - return _cellular4G!! - } - _cellular4G = fluentIcon(name = "Regular.Cellular4G") { - fluentPath { - moveTo(12.9f, 3.62f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.28f, 0.79f) - lineToRelative(-0.02f, -0.02f) - arcToRelative(0.64f, 0.64f, 0.0f, false, false, -0.15f, -0.12f) - curveToRelative(-0.15f, -0.08f, -0.47f, -0.2f, -1.06f, -0.09f) - curveToRelative(-0.41f, 0.08f, -0.62f, 0.33f, -0.75f, 0.67f) - arcToRelative(2.1f, 2.1f, 0.0f, false, false, -0.14f, 0.65f) - verticalLineToRelative(1.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(0.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.97f, -0.75f) - horizontalLineToRelative(-0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(1.25f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.5f, 2.5f) - horizontalLineToRelative(-0.25f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 8.0f, 6.75f) - verticalLineTo(5.46f) - arcToRelative(2.6f, 2.6f, 0.0f, false, true, 0.03f, -0.34f) - curveToRelative(0.03f, -0.22f, 0.09f, -0.5f, 0.2f, -0.82f) - curveToRelative(0.25f, -0.62f, 0.8f, -1.4f, 1.88f, -1.6f) - curveToRelative(0.92f, -0.16f, 1.6f, 0.0f, 2.07f, 0.26f) - arcToRelative(2.13f, 2.13f, 0.0f, false, true, 0.7f, 0.64f) - lineToRelative(0.01f, 0.01f) - close() - } - fluentPath { - moveTo(4.73f, 3.06f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.77f, 0.64f) - verticalLineToRelative(2.8f) - horizontalLineToRelative(0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineTo(6.5f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - verticalLineTo(8.0f) - horizontalLineTo(3.2f) - arcToRelative(1.2f, 1.2f, 0.0f, false, true, -0.92f, -1.96f) - lineToRelative(2.45f, -2.98f) - close() - moveTo(5.0f, 6.5f) - verticalLineTo(5.09f) - lineTo(3.84f, 6.5f) - horizontalLineTo(5.0f) - close() - } - fluentPath { - moveTo(11.75f, 12.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-7.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - fluentPath { - moveTo(15.75f, 9.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineTo(9.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - fluentPath { - moveTo(3.75f, 18.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-1.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - fluentPath { - moveTo(19.74f, 6.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.75f, 0.64f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.12f) - verticalLineTo(6.76f) - curveToRelative(0.0f, -0.42f, 0.33f, -0.76f, 0.74f, -0.76f) - close() - } - fluentPath { - moveTo(7.75f, 15.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-4.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _cellular4G!! - } - -private var _cellular4G: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cellular5G.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cellular5G.kt deleted file mode 100644 index a37217f5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cellular5G.kt +++ /dev/null @@ -1,121 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Cellular5G: ImageVector - get() { - if (_cellular5G != null) { - return _cellular5G!! - } - _cellular5G = fluentIcon(name = "Regular.Cellular5G") { - fluentPath { - moveTo(12.9f, 3.62f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.28f, 0.79f) - lineToRelative(-0.02f, -0.02f) - arcToRelative(0.64f, 0.64f, 0.0f, false, false, -0.15f, -0.12f) - curveToRelative(-0.15f, -0.08f, -0.47f, -0.2f, -1.06f, -0.09f) - curveToRelative(-0.41f, 0.08f, -0.62f, 0.33f, -0.75f, 0.67f) - arcToRelative(2.1f, 2.1f, 0.0f, false, false, -0.14f, 0.65f) - verticalLineToRelative(1.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(0.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.97f, -0.75f) - horizontalLineToRelative(-0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.25f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.5f, 2.5f) - horizontalLineToRelative(-0.25f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 8.0f, 6.75f) - verticalLineTo(5.46f) - arcToRelative(2.57f, 2.57f, 0.0f, false, true, 0.03f, -0.34f) - curveToRelative(0.03f, -0.22f, 0.09f, -0.5f, 0.2f, -0.82f) - curveToRelative(0.25f, -0.62f, 0.8f, -1.4f, 1.88f, -1.6f) - curveToRelative(0.92f, -0.16f, 1.6f, 0.0f, 2.07f, 0.26f) - arcToRelative(2.13f, 2.13f, 0.0f, false, true, 0.7f, 0.64f) - lineToRelative(0.01f, 0.01f) - close() - } - fluentPath { - moveTo(3.25f, 3.42f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 4.0f, 2.75f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineTo(4.67f) - lineToRelative(-0.06f, 0.58f) - horizontalLineToRelative(0.01f) - arcToRelative(2.23f, 2.23f, 0.0f, true, true, 0.4f, 4.42f) - horizontalLineTo(4.8f) - curveToRelative(-0.75f, 0.0f, -1.45f, -0.38f, -1.87f, -1.0f) - lineToRelative(-0.05f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.24f, -0.84f) - lineToRelative(0.06f, 0.09f) - curveToRelative(0.14f, 0.2f, 0.37f, 0.33f, 0.62f, 0.33f) - horizontalLineToRelative(0.22f) - arcTo(0.73f, 0.73f, 0.0f, true, false, 4.9f, 6.3f) - lineToRelative(-1.0f, 0.19f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 5.67f) - lineToRelative(0.25f, -2.25f) - close() - } - fluentPath { - moveTo(11.75f, 12.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-7.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - fluentPath { - moveTo(15.75f, 9.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineTo(9.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - fluentPath { - moveTo(3.75f, 18.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-1.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - fluentPath { - moveTo(19.74f, 6.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.75f, 0.64f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.12f) - verticalLineTo(6.76f) - curveToRelative(0.0f, -0.42f, 0.33f, -0.76f, 0.74f, -0.76f) - close() - } - fluentPath { - moveTo(7.75f, 15.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-4.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _cellular5G!! - } - -private var _cellular5G: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CellularData1.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CellularData1.kt deleted file mode 100644 index e5f74700..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CellularData1.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CellularData1: ImageVector - get() { - if (_cellularData1 != null) { - return _cellularData1!! - } - _cellularData1 = fluentIcon(name = "Regular.CellularData1") { - fluentPath { - moveTo(3.75f, 17.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-1.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(11.75f, 11.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-7.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(15.75f, 8.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(15.0f, 8.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(19.75f, 5.0f) - curveToRelative(0.37f, 0.0f, 0.69f, 0.28f, 0.74f, 0.64f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.12f) - lineTo(19.0f, 5.76f) - curveToRelative(0.0f, -0.42f, 0.33f, -0.76f, 0.74f, -0.76f) - close() - moveTo(7.75f, 14.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-4.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _cellularData1!! - } - -private var _cellularData1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CellularData2.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CellularData2.kt deleted file mode 100644 index 3a4c53a9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CellularData2.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CellularData2: ImageVector - get() { - if (_cellularData2 != null) { - return _cellularData2!! - } - _cellularData2 = fluentIcon(name = "Regular.CellularData2") { - fluentPath { - moveTo(3.75f, 17.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-1.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(11.75f, 11.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-7.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(15.75f, 8.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(15.0f, 8.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(7.75f, 14.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-4.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _cellularData2!! - } - -private var _cellularData2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CellularData3.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CellularData3.kt deleted file mode 100644 index 38e275de..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CellularData3.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CellularData3: ImageVector - get() { - if (_cellularData3 != null) { - return _cellularData3!! - } - _cellularData3 = fluentIcon(name = "Regular.CellularData3") { - fluentPath { - moveTo(3.75f, 17.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-1.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(11.75f, 11.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-7.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(7.75f, 14.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-4.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _cellularData3!! - } - -private var _cellularData3: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CellularData4.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CellularData4.kt deleted file mode 100644 index 2de609d0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CellularData4.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CellularData4: ImageVector - get() { - if (_cellularData4 != null) { - return _cellularData4!! - } - _cellularData4 = fluentIcon(name = "Regular.CellularData4") { - fluentPath { - moveTo(3.75f, 17.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-1.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(7.75f, 14.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-4.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _cellularData4!! - } - -private var _cellularData4: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CellularData5.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CellularData5.kt deleted file mode 100644 index fa1b5246..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CellularData5.kt +++ /dev/null @@ -1,28 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CellularData5: ImageVector - get() { - if (_cellularData5 != null) { - return _cellularData5!! - } - _cellularData5 = fluentIcon(name = "Regular.CellularData5") { - fluentPath { - moveTo(3.0f, 17.75f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - close() - } - } - return _cellularData5!! - } - -private var _cellularData5: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CellularOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CellularOff.kt deleted file mode 100644 index ca5162e9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CellularOff.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CellularOff: ImageVector - get() { - if (_cellularOff != null) { - return _cellularOff!! - } - _cellularOff = fluentIcon(name = "Regular.CellularOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(11.0f, 12.06f) - verticalLineToRelative(7.29f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - verticalLineToRelative(-5.69f) - lineToRelative(2.5f, 2.5f) - verticalLineToRelative(3.29f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - verticalLineToRelative(-1.69f) - lineToRelative(4.22f, 4.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(19.0f, 15.82f) - lineToRelative(1.5f, 1.5f) - lineTo(20.5f, 5.64f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.12f) - verticalLineToRelative(10.06f) - close() - moveTo(15.0f, 11.82f) - lineTo(16.5f, 13.32f) - lineTo(16.5f, 8.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - verticalLineToRelative(3.07f) - close() - moveTo(3.75f, 17.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-1.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(7.75f, 14.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-4.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _cellularOff!! - } - -private var _cellularOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CellularWarning.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CellularWarning.kt deleted file mode 100644 index 2ff05866..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CellularWarning.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CellularWarning: ImageVector - get() { - if (_cellularWarning != null) { - return _cellularWarning!! - } - _cellularWarning = fluentIcon(name = "Regular.CellularWarning") { - fluentPath { - moveTo(3.75f, 18.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-1.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(11.75f, 12.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(5.16f) - lineToRelative(-1.23f, 2.47f) - curveToRelative(-0.05f, 0.1f, -0.1f, 0.2f, -0.13f, 0.3f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.13f, -0.33f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-7.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(15.26f, 12.38f) - curveToRelative(0.29f, -0.57f, 0.73f, -0.96f, 1.24f, -1.18f) - lineTo(16.5f, 9.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - verticalLineToRelative(3.16f) - lineToRelative(0.26f, -0.53f) - close() - moveTo(19.74f, 12.38f) - lineTo(20.49f, 13.9f) - lineTo(20.49f, 6.74f) - lineToRelative(-0.02f, -0.1f) - arcToRelative(0.74f, 0.74f, 0.0f, false, false, -0.74f, -0.64f) - curveToRelative(-0.4f, 0.0f, -0.73f, 0.34f, -0.73f, 0.76f) - verticalLineToRelative(4.74f) - curveToRelative(0.3f, 0.22f, 0.55f, 0.51f, 0.74f, 0.88f) - close() - moveTo(7.75f, 15.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-4.6f) - curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(16.15f, 12.83f) - lineTo(12.16f, 20.83f) - arcTo(1.5f, 1.5f, 0.0f, false, false, 13.5f, 23.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.34f, -2.17f) - lineToRelative(-4.0f, -8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.68f, 0.0f) - close() - moveTo(18.0f, 15.49f) - verticalLineToRelative(3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - verticalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - close() - moveTo(17.5f, 20.99f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - close() - } - } - return _cellularWarning!! - } - -private var _cellularWarning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CenterHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CenterHorizontal.kt deleted file mode 100644 index 14a72f15..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CenterHorizontal.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CenterHorizontal: ImageVector - get() { - if (_centerHorizontal != null) { - return _centerHorizontal!! - } - _centerHorizontal = fluentIcon(name = "Regular.CenterHorizontal") { - fluentPath { - moveTo(4.5f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(4.5f, 3.75f) - close() - moveTo(19.5f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(19.5f, 3.75f) - close() - moveTo(10.25f, 5.0f) - curveTo(9.01f, 5.0f, 8.0f, 6.0f, 8.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(8.0f, 17.99f, 9.0f, 19.0f, 10.25f, 19.0f) - horizontalLineToRelative(3.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-9.5f) - curveTo(16.0f, 6.01f, 15.0f, 5.0f, 13.75f, 5.0f) - horizontalLineToRelative(-3.5f) - close() - moveTo(9.5f, 7.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-9.5f) - close() - } - } - return _centerHorizontal!! - } - -private var _centerHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CenterVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CenterVertical.kt deleted file mode 100644 index 1a2e093b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CenterVertical.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CenterVertical: ImageVector - get() { - if (_centerVertical != null) { - return _centerVertical!! - } - _centerVertical = fluentIcon(name = "Regular.CenterVertical") { - fluentPath { - moveTo(21.0f, 3.75f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(3.75f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(16.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(21.0f, 20.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(3.75f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(16.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(7.25f, 8.0f) - curveTo(6.01f, 8.0f, 5.0f, 9.0f, 5.0f, 10.25f) - verticalLineToRelative(3.5f) - curveTo(5.0f, 14.99f, 6.0f, 16.0f, 7.25f, 16.0f) - horizontalLineToRelative(9.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-3.5f) - curveTo(19.0f, 9.01f, 18.0f, 8.0f, 16.75f, 8.0f) - horizontalLineToRelative(-9.5f) - close() - moveTo(6.5f, 10.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(9.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-3.5f) - close() - } - } - return _centerVertical!! - } - -private var _centerVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Certificate.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Certificate.kt deleted file mode 100644 index c7b54f37..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Certificate.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Certificate: ImageVector - get() { - if (_certificate != null) { - return _certificate!! - } - _certificate = fluentIcon(name = "Regular.Certificate") { - fluentPath { - moveTo(2.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 3.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 5.75f) - verticalLineToRelative(9.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 18.0f) - lineTo(10.0f, 18.0f) - verticalLineToRelative(-1.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 0.33f, -0.5f) - horizontalLineToRelative(8.92f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(4.75f, 4.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(3.92f) - curveToRelative(-0.59f, 0.34f, -1.1f, 0.8f, -1.5f, 1.33f) - lineTo(2.0f, 5.75f) - close() - moveTo(6.75f, 7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(6.75f, 7.0f) - close() - moveTo(12.75f, 12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - close() - moveTo(6.0f, 10.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) - close() - moveTo(9.0f, 18.0f) - arcToRelative(4.98f, 4.98f, 0.0f, false, true, -6.0f, 0.0f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 0.57f, 0.6f, 0.92f, 1.09f, 0.67f) - lineToRelative(0.09f, -0.06f) - lineTo(6.0f, 20.6f) - lineToRelative(1.82f, 1.27f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.17f, -0.5f) - verticalLineToRelative(-0.11f) - lineTo(9.0f, 18.0f) - close() - } - } - return _certificate!! - } - -private var _certificate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Channel.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Channel.kt deleted file mode 100644 index 432cc25c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Channel.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Channel: ImageVector - get() { - if (_channel != null) { - return _channel!! - } - _channel = fluentIcon(name = "Regular.Channel") { - fluentPath { - moveTo(17.75f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 21.0f, 6.07f) - verticalLineToRelative(11.68f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(6.25f, 21.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(3.0f, 17.75f) - lineTo(3.0f, 9.37f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(8.38f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(11.5f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.92f, -0.7f, -1.67f, -1.6f, -1.74f) - lineToRelative(-0.15f, -0.01f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.6f, 0.0f, -1.13f, 0.3f, -1.44f, 0.76f) - arcToRelative(2.23f, 2.23f, 0.0f, false, false, -1.59f, -0.2f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.85f, -2.05f) - lineTo(6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(13.25f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - horizontalLineToRelative(4.6f) - close() - moveTo(15.25f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.49f) - horizontalLineToRelative(-6.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - horizontalLineToRelative(6.6f) - close() - moveTo(3.75f, 6.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - } - } - return _channel!! - } - -private var _channel: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChannelAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChannelAdd.kt deleted file mode 100644 index 2a7501f3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChannelAdd.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChannelAdd: ImageVector - get() { - if (_channelAdd != null) { - return _channelAdd!! - } - _channelAdd = fluentIcon(name = "Regular.ChannelAdd") { - fluentPath { - moveTo(17.75f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 21.0f, 6.07f) - lineTo(21.0f, 12.02f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 6.24f) - curveToRelative(0.0f, -0.92f, -0.7f, -1.67f, -1.6f, -1.74f) - lineToRelative(-0.15f, -0.01f) - lineTo(6.25f, 4.49f) - curveToRelative(-0.6f, 0.0f, -1.13f, 0.3f, -1.44f, 0.76f) - arcToRelative(2.23f, 2.23f, 0.0f, false, false, -1.59f, -0.2f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.85f, -2.05f) - lineTo(6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(11.31f, 19.5f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(6.25f, 21.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(3.0f, 17.75f) - lineTo(3.0f, 9.37f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(8.38f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(5.06f) - close() - moveTo(11.73f, 14.5f) - curveToRelative(0.29f, -0.55f, 0.65f, -1.05f, 1.08f, -1.5f) - lineTo(8.75f, 13.0f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(2.98f) - close() - moveTo(15.25f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.49f) - horizontalLineToRelative(-6.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - horizontalLineToRelative(6.6f) - close() - moveTo(3.75f, 6.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _channelAdd!! - } - -private var _channelAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChannelAlert.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChannelAlert.kt deleted file mode 100644 index 27417f3f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChannelAlert.kt +++ /dev/null @@ -1,88 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChannelAlert: ImageVector - get() { - if (_channelAlert != null) { - return _channelAlert!! - } - _channelAlert = fluentIcon(name = "Regular.ChannelAlert") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(4.5f, 9.37f) - verticalLineToRelative(8.38f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(5.06f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(6.25f, 21.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(3.0f, 17.75f) - lineTo(3.0f, 9.37f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 1.5f, 0.0f) - close() - moveTo(18.5f, 20.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(0.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) - close() - moveTo(17.5f, 14.0f) - horizontalLineToRelative(-0.16f) - curveToRelative(-0.94f, 0.1f, -1.67f, 0.77f, -1.81f, 1.64f) - lineToRelative(-0.02f, 0.16f) - verticalLineToRelative(1.5f) - lineToRelative(-0.86f, 0.85f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.26f, 0.84f) - lineTo(15.0f, 19.0f) - horizontalLineToRelative(5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.41f, -0.79f) - lineToRelative(-0.06f, -0.06f) - lineToRelative(-0.85f, -0.85f) - verticalLineToRelative(-1.5f) - arcToRelative(1.98f, 1.98f, 0.0f, false, false, -2.0f, -1.8f) - close() - moveTo(12.8f, 13.0f) - curveToRelative(-0.42f, 0.45f, -0.78f, 0.95f, -1.07f, 1.5f) - lineTo(8.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - lineTo(12.8f, 13.01f) - close() - moveTo(17.75f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 21.0f, 6.07f) - lineTo(21.0f, 12.02f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 6.24f) - curveToRelative(0.0f, -0.92f, -0.7f, -1.67f, -1.6f, -1.74f) - lineToRelative(-0.15f, -0.01f) - lineTo(6.25f, 4.49f) - curveToRelative(-0.6f, 0.0f, -1.13f, 0.3f, -1.44f, 0.76f) - arcToRelative(2.23f, 2.23f, 0.0f, false, false, -1.59f, -0.2f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.85f, -2.05f) - lineTo(6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(15.25f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.49f) - horizontalLineToRelative(-6.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - horizontalLineToRelative(6.6f) - close() - moveTo(3.75f, 6.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - } - } - return _channelAlert!! - } - -private var _channelAlert: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChannelArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChannelArrowLeft.kt deleted file mode 100644 index e263d721..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChannelArrowLeft.kt +++ /dev/null @@ -1,94 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChannelArrowLeft: ImageVector - get() { - if (_channelArrowLeft != null) { - return _channelArrowLeft!! - } - _channelArrowLeft = fluentIcon(name = "Regular.ChannelArrowLeft") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(4.5f, 9.37f) - verticalLineToRelative(8.38f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(5.06f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(6.25f, 21.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(3.0f, 17.75f) - lineTo(3.0f, 9.37f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 1.5f, 0.0f) - close() - moveTo(16.72f, 14.59f) - lineTo(16.65f, 14.65f) - lineTo(14.13f, 17.16f) - lineTo(14.09f, 17.21f) - lineTo(14.05f, 17.29f) - lineTo(14.03f, 17.35f) - lineTo(14.01f, 17.43f) - verticalLineToRelative(0.11f) - lineToRelative(0.01f, 0.09f) - lineToRelative(0.03f, 0.08f) - lineToRelative(0.03f, 0.06f) - lineToRelative(0.05f, 0.07f) - lineToRelative(2.52f, 2.51f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.77f, -0.63f) - lineToRelative(-0.06f, -0.07f) - lineTo(15.7f, 18.0f) - horizontalLineToRelative(4.79f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.41f) - verticalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.5f) - horizontalLineToRelative(-4.88f) - lineToRelative(1.65f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.05f, -0.63f) - lineToRelative(-0.05f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.64f, -0.06f) - close() - moveTo(12.8f, 13.0f) - curveToRelative(-0.43f, 0.45f, -0.8f, 0.95f, -1.08f, 1.5f) - lineTo(8.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - lineTo(12.8f, 13.01f) - close() - moveTo(17.74f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 21.0f, 6.07f) - lineTo(21.0f, 12.02f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 6.24f) - curveToRelative(0.0f, -0.92f, -0.7f, -1.67f, -1.6f, -1.74f) - lineToRelative(-0.15f, -0.01f) - lineTo(6.25f, 4.49f) - curveToRelative(-0.6f, 0.0f, -1.13f, 0.3f, -1.44f, 0.76f) - arcToRelative(2.23f, 2.23f, 0.0f, false, false, -1.59f, -0.2f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.85f, -2.05f) - lineTo(6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(15.24f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.49f) - horizontalLineToRelative(-6.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - horizontalLineToRelative(6.6f) - close() - moveTo(3.75f, 6.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - } - } - return _channelArrowLeft!! - } - -private var _channelArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChannelDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChannelDismiss.kt deleted file mode 100644 index 02276073..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChannelDismiss.kt +++ /dev/null @@ -1,103 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChannelDismiss: ImageVector - get() { - if (_channelDismiss != null) { - return _channelDismiss!! - } - _channelDismiss = fluentIcon(name = "Regular.ChannelDismiss") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(4.5f, 9.37f) - verticalLineToRelative(8.38f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(5.06f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(6.25f, 21.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(3.0f, 17.75f) - lineTo(3.0f, 9.37f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 1.5f, 0.0f) - close() - moveTo(15.1f, 14.97f) - lineTo(15.02f, 15.02f) - lineTo(14.97f, 15.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.05f, 0.07f) - lineToRelative(1.77f, 1.77f) - lineToRelative(-1.76f, 1.77f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.06f, 0.06f) - lineToRelative(0.07f, 0.06f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) - lineToRelative(0.07f, -0.06f) - lineToRelative(1.77f, -1.76f) - lineToRelative(1.77f, 1.77f) - lineToRelative(0.07f, 0.05f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.57f, 0.0f) - lineToRelative(0.07f, -0.05f) - lineToRelative(0.05f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) - lineToRelative(-0.05f, -0.07f) - lineToRelative(-1.77f, -1.77f) - lineToRelative(1.77f, -1.77f) - lineToRelative(0.06f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) - lineToRelative(-0.06f, -0.07f) - lineToRelative(-0.07f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) - lineToRelative(-0.07f, 0.05f) - lineToRelative(-1.77f, 1.77f) - lineToRelative(-1.77f, -1.77f) - lineToRelative(-0.07f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.05f) - lineToRelative(-0.07f, 0.05f) - close() - moveTo(12.8f, 13.0f) - curveToRelative(-0.42f, 0.45f, -0.78f, 0.95f, -1.07f, 1.5f) - lineTo(8.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - lineTo(12.8f, 13.01f) - close() - moveTo(17.75f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 21.0f, 6.07f) - lineTo(21.0f, 12.02f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 6.24f) - curveToRelative(0.0f, -0.92f, -0.7f, -1.67f, -1.6f, -1.74f) - lineToRelative(-0.15f, -0.01f) - lineTo(6.25f, 4.49f) - curveToRelative(-0.6f, 0.0f, -1.13f, 0.3f, -1.44f, 0.76f) - arcToRelative(2.23f, 2.23f, 0.0f, false, false, -1.59f, -0.2f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.85f, -2.05f) - lineTo(6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(15.25f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.49f) - horizontalLineToRelative(-6.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - horizontalLineToRelative(6.6f) - close() - moveTo(3.75f, 6.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - } - } - return _channelDismiss!! - } - -private var _channelDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChannelShare.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChannelShare.kt deleted file mode 100644 index d857a209..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChannelShare.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChannelShare: ImageVector - get() { - if (_channelShare != null) { - return _channelShare!! - } - _channelShare = fluentIcon(name = "Regular.ChannelShare") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(6.0f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-6.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(5.85f) - arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, 1.5f) - lineTo(6.25f, 15.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 12.25f) - verticalLineToRelative(-6.0f) - close() - moveTo(13.5f, 14.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.5f, 0.0f) - close() - moveTo(17.75f, 10.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-6.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(6.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-6.0f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - lineTo(11.9f, 8.5f) - arcToRelative(2.75f, 2.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(5.85f) - close() - moveTo(9.25f, 8.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - } - } - return _channelShare!! - } - -private var _channelShare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChannelSubtract.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChannelSubtract.kt deleted file mode 100644 index e2a8e27f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChannelSubtract.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChannelSubtract: ImageVector - get() { - if (_channelSubtract != null) { - return _channelSubtract!! - } - _channelSubtract = fluentIcon(name = "Regular.ChannelSubtract") { - fluentPath { - moveTo(21.0f, 6.07f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 17.75f, 3.0f) - lineTo(6.07f, 3.0f) - curveToRelative(-1.3f, 0.08f, -2.4f, 0.9f, -2.85f, 2.06f) - arcToRelative(2.26f, 2.26f, 0.0f, false, true, 1.59f, 0.2f) - curveToRelative(0.31f, -0.46f, 0.84f, -0.76f, 1.44f, -0.76f) - horizontalLineToRelative(11.64f) - curveToRelative(0.9f, 0.08f, 1.61f, 0.83f, 1.61f, 1.75f) - verticalLineToRelative(5.06f) - curveToRelative(0.53f, 0.18f, 1.04f, 0.42f, 1.5f, 0.71f) - lineTo(21.0f, 6.07f) - close() - moveTo(12.02f, 21.0f) - curveToRelative(-0.3f, -0.46f, -0.53f, -0.97f, -0.7f, -1.5f) - lineTo(6.1f, 19.5f) - curveToRelative(-0.9f, -0.08f, -1.61f, -0.83f, -1.61f, -1.75f) - lineTo(4.49f, 9.37f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(8.56f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 6.26f, 21.0f) - horizontalLineToRelative(5.77f) - close() - moveTo(11.73f, 14.5f) - curveToRelative(0.29f, -0.55f, 0.65f, -1.05f, 1.08f, -1.5f) - lineTo(8.75f, 13.0f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(2.98f) - close() - moveTo(16.0f, 10.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-6.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(6.5f) - lineToRelative(0.1f, -0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.74f) - close() - moveTo(5.0f, 7.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(20.5f, 18.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(6.0f) - close() - } - } - return _channelSubtract!! - } - -private var _channelSubtract: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChartMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChartMultiple.kt deleted file mode 100644 index 07e27bd1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChartMultiple.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChartMultiple: ImageVector - get() { - if (_chartMultiple != null) { - return _chartMultiple!! - } - _chartMultiple = fluentIcon(name = "Regular.ChartMultiple") { - fluentPath { - moveTo(13.0f, 11.75f) - horizontalLineToRelative(6.71f) - curveToRelative(0.34f, -0.35f, 0.79f, -0.6f, 1.28f, -0.7f) - arcTo(9.5f, 9.5f, 0.0f, true, false, 11.0f, 21.0f) - verticalLineToRelative(-1.51f) - arcToRelative(8.0f, 8.0f, 0.0f, false, true, 0.25f, -15.98f) - lineTo(11.25f, 10.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - close() - moveTo(13.0f, 10.25f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - lineTo(12.75f, 3.6f) - arcToRelative(8.0f, 8.0f, 0.0f, false, true, 6.65f, 6.65f) - lineTo(13.0f, 10.25f) - close() - moveTo(21.5f, 12.0f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) - verticalLineToRelative(-8.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - close() - moveTo(13.5f, 18.0f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(2.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - close() - moveTo(16.0f, 16.5f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - verticalLineToRelative(5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - verticalLineToRelative(-5.0f) - close() - } - } - return _chartMultiple!! - } - -private var _chartMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChartPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChartPerson.kt deleted file mode 100644 index d471697f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChartPerson.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChartPerson: ImageVector - get() { - if (_chartPerson != null) { - return _chartPerson!! - } - _chartPerson = fluentIcon(name = "Regular.ChartPerson") { - fluentPath { - moveTo(12.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - lineTo(11.0f, 3.0f) - lineTo(5.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 6.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) - horizontalLineToRelative(2.4f) - lineToRelative(-1.48f, 1.77f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.16f, 0.96f) - lineTo(9.6f, 19.0f) - horizontalLineToRelative(3.5f) - curveToRelative(0.19f, -0.61f, 0.57f, -1.14f, 1.08f, -1.5f) - lineTo(5.25f, 17.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(5.38f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 22.0f, 14.5f) - lineTo(22.0f, 6.25f) - curveTo(22.0f, 4.45f, 20.54f, 3.0f, 18.75f, 3.0f) - lineTo(12.5f, 3.0f) - verticalLineToRelative(-0.25f) - close() - moveTo(6.0f, 7.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.0f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 6.0f, 7.75f) - close() - moveTo(6.75f, 10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.5f) - close() - moveTo(6.0f, 13.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(21.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(23.0f, 19.88f) - curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) - reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _chartPerson!! - } - -private var _chartPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Chat.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Chat.kt deleted file mode 100644 index fdec8d15..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Chat.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Chat: ImageVector - get() { - if (_chat != null) { - return _chat!! - } - _chat = fluentIcon(name = "Regular.Chat") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, -4.59f, 18.89f) - lineTo(3.6f, 21.96f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.54f, -1.54f) - lineToRelative(1.06f, -3.83f) - arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 2.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, -7.43f, 12.64f) - lineToRelative(0.15f, 0.27f) - lineToRelative(-1.1f, 3.98f) - lineToRelative(3.98f, -1.11f) - lineToRelative(0.27f, 0.15f) - arcTo(8.5f, 8.5f, 0.0f, true, false, 12.0f, 3.5f) - close() - moveTo(8.75f, 13.0f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(4.6f) - horizontalLineToRelative(-4.5f) - close() - moveTo(8.75f, 9.5f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-6.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(6.6f) - horizontalLineToRelative(-6.5f) - close() - } - } - return _chat!! - } - -private var _chat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatAdd.kt deleted file mode 100644 index bff12b60..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatAdd.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChatAdd: ImageVector - get() { - if (_chatAdd != null) { - return _chatAdd!! - } - _chatAdd = fluentIcon(name = "Regular.ChatAdd") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 9.97f, 10.78f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.47f, -1.05f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, -15.93f, 4.4f) - lineToRelative(0.15f, 0.28f) - lineToRelative(-1.1f, 3.98f) - lineToRelative(3.98f, -1.11f) - lineToRelative(0.27f, 0.15f) - arcToRelative(8.45f, 8.45f, 0.0f, false, false, 3.86f, 1.07f) - curveToRelative(0.28f, 0.54f, 0.64f, 1.03f, 1.05f, 1.47f) - arcToRelative(10.14f, 10.14f, 0.0f, false, true, -5.37f, -1.08f) - lineTo(3.6f, 21.96f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.54f, -1.54f) - lineToRelative(1.06f, -3.83f) - arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 2.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _chatAdd!! - } - -private var _chatAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatBubblesQuestion.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatBubblesQuestion.kt deleted file mode 100644 index 2af6f5a0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatBubblesQuestion.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChatBubblesQuestion: ImageVector - get() { - if (_chatBubblesQuestion != null) { - return _chatBubblesQuestion!! - } - _chatBubblesQuestion = fluentIcon(name = "Regular.ChatBubblesQuestion") { - fluentPath { - moveTo(8.14f, 6.3f) - arcToRelative(2.83f, 2.83f, 0.0f, false, true, 2.99f, 0.28f) - curveToRelative(0.52f, 0.42f, 0.87f, 1.07f, 0.87f, 1.92f) - curveToRelative(0.0f, 0.97f, -0.69f, 1.5f, -1.08f, 1.8f) - lineToRelative(-0.08f, 0.07f) - curveToRelative(-0.43f, 0.33f, -0.6f, 0.51f, -0.6f, 0.88f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - curveToRelative(0.0f, -1.13f, 0.72f, -1.7f, 1.17f, -2.06f) - curveToRelative(0.51f, -0.4f, 0.59f, -0.5f, 0.59f, -0.69f) - curveToRelative(0.0f, -0.4f, -0.15f, -0.62f, -0.32f, -0.76f) - curveToRelative(-0.2f, -0.16f, -0.46f, -0.24f, -0.68f, -0.24f) - curveToRelative(-0.3f, 0.0f, -0.5f, 0.05f, -0.65f, 0.13f) - curveToRelative(-0.14f, 0.08f, -0.3f, 0.21f, -0.44f, 0.48f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.32f, -0.71f) - curveToRelative(0.26f, -0.49f, 0.61f, -0.86f, 1.05f, -1.1f) - close() - moveTo(9.5f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(9.5f, 3.0f) - arcToRelative(7.5f, 7.5f, 0.0f, false, false, -6.8f, 10.67f) - lineToRelative(-0.72f, 2.84f) - curveToRelative(-0.24f, 0.92f, 0.59f, 1.75f, 1.5f, 1.53f) - lineToRelative(2.93f, -0.7f) - arcTo(7.5f, 7.5f, 0.0f, true, false, 9.5f, 3.0f) - close() - moveTo(3.5f, 10.5f) - arcToRelative(6.0f, 6.0f, 0.0f, true, true, 3.33f, 5.37f) - lineToRelative(-0.24f, -0.12f) - lineToRelative(-0.27f, 0.07f) - lineToRelative(-2.79f, 0.66f) - lineToRelative(0.7f, -2.7f) - lineToRelative(0.06f, -0.28f) - lineToRelative(-0.13f, -0.25f) - arcToRelative(5.97f, 5.97f, 0.0f, false, true, -0.66f, -2.75f) - close() - moveTo(14.5f, 21.0f) - arcToRelative(7.47f, 7.47f, 0.0f, false, true, -5.1f, -2.0f) - arcToRelative(8.28f, 8.28f, 0.0f, false, false, 2.18f, -0.26f) - arcToRelative(5.97f, 5.97f, 0.0f, false, false, 5.59f, 0.13f) - lineToRelative(0.24f, -0.12f) - lineToRelative(0.27f, 0.07f) - curveToRelative(0.92f, 0.22f, 1.96f, 0.44f, 2.74f, 0.6f) - curveToRelative(-0.18f, -0.74f, -0.42f, -1.75f, -0.65f, -2.64f) - lineToRelative(-0.07f, -0.28f) - lineToRelative(0.14f, -0.25f) - arcToRelative(5.97f, 5.97f, 0.0f, false, false, -2.09f, -7.8f) - arcToRelative(8.44f, 8.44f, 0.0f, false, false, -0.8f, -2.04f) - arcToRelative(7.5f, 7.5f, 0.0f, false, true, 4.35f, 10.26f) - lineToRelative(0.67f, 2.8f) - curveToRelative(0.2f, 0.9f, -0.58f, 1.7f, -1.47f, 1.5f) - curveToRelative(-0.73f, -0.15f, -1.87f, -0.39f, -2.91f, -0.63f) - curveToRelative(-0.95f, 0.42f, -2.0f, 0.66f, -3.1f, 0.66f) - close() - } - } - return _chatBubblesQuestion!! - } - -private var _chatBubblesQuestion: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatCursor.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatCursor.kt deleted file mode 100644 index a84ffa13..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatCursor.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChatCursor: ImageVector - get() { - if (_chatCursor != null) { - return _chatCursor!! - } - _chatCursor = fluentIcon(name = "Regular.ChatCursor") { - fluentPath { - moveTo(10.0f, 1.0f) - arcToRelative(8.0f, 8.0f, 0.0f, false, true, 7.48f, 10.86f) - lineToRelative(-0.84f, -0.63f) - arcToRelative(7.0f, 7.0f, 0.0f, true, false, -12.75f, 1.2f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.07f, 0.27f) - lineToRelative(-0.02f, 0.1f) - lineToRelative(-0.75f, 3.01f) - lineToRelative(3.02f, -0.75f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.19f, -0.01f) - lineToRelative(0.09f, 0.02f) - lineToRelative(0.09f, 0.04f) - arcToRelative(6.97f, 6.97f, 0.0f, false, false, 4.42f, 0.82f) - verticalLineToRelative(1.0f) - arcToRelative(8.07f, 8.07f, 0.0f, false, true, -4.61f, -0.8f) - lineToRelative(-0.12f, -0.05f) - lineToRelative(-3.65f, 0.9f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.62f, -0.44f) - verticalLineToRelative(-0.08f) - lineToRelative(0.01f, -0.08f) - lineToRelative(0.92f, -3.64f) - lineToRelative(-0.07f, -0.12f) - arcToRelative(7.95f, 7.95f, 0.0f, false, true, -0.83f, -2.9f) - lineToRelative(-0.02f, -0.37f) - lineTo(2.0f, 9.0f) - arcToRelative(8.0f, 8.0f, 0.0f, false, true, 8.0f, -8.0f) - close() - moveTo(21.6f, 16.2f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 21.0f, 18.0f) - horizontalLineToRelative(-4.4f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.88f, 0.53f) - lineToRelative(-1.84f, 3.44f) - curveToRelative(-0.49f, 0.92f, -1.88f, 0.57f, -1.88f, -0.47f) - lineTo(12.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.6f, -0.8f) - lineToRelative(8.0f, 6.0f) - close() - } - } - return _chatCursor!! - } - -private var _chatCursor: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatDismiss.kt deleted file mode 100644 index 4c33789c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatDismiss.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChatDismiss: ImageVector - get() { - if (_chatDismiss != null) { - return _chatDismiss!! - } - _chatDismiss = fluentIcon(name = "Regular.ChatDismiss") { - fluentPath { - moveTo(9.28f, 8.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineTo(10.94f, 12.0f) - lineToRelative(-2.72f, 2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineTo(12.0f, 13.06f) - lineToRelative(2.72f, 2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineTo(13.06f, 12.0f) - lineToRelative(2.72f, -2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineTo(12.0f, 10.94f) - lineTo(9.28f, 8.22f) - close() - moveTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -18.89f, 4.6f) - lineToRelative(-1.06f, 3.82f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 1.54f, 1.54f) - lineToRelative(3.82f, -1.07f) - arcTo(10.0f, 10.0f, 0.0f, false, false, 22.0f, 12.0f) - close() - moveTo(3.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 4.37f, 7.43f) - lineToRelative(-0.27f, -0.15f) - lineToRelative(-3.99f, 1.11f) - lineToRelative(1.11f, -3.98f) - lineToRelative(-0.15f, -0.27f) - arcTo(8.46f, 8.46f, 0.0f, false, true, 3.5f, 12.0f) - close() - } - } - return _chatDismiss!! - } - -private var _chatDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatEmpty.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatEmpty.kt deleted file mode 100644 index a0118c48..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatEmpty.kt +++ /dev/null @@ -1,37 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChatEmpty: ImageVector - get() { - if (_chatEmpty != null) { - return _chatEmpty!! - } - _chatEmpty = fluentIcon(name = "Regular.ChatEmpty") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, -4.59f, 18.89f) - lineTo(3.6f, 21.96f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.54f, -1.54f) - lineToRelative(1.06f, -3.83f) - arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 2.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, -7.43f, 12.64f) - lineToRelative(0.15f, 0.27f) - lineToRelative(-1.1f, 3.98f) - lineToRelative(3.98f, -1.11f) - lineToRelative(0.27f, 0.15f) - arcTo(8.5f, 8.5f, 0.0f, true, false, 12.0f, 3.5f) - close() - } - } - return _chatEmpty!! - } - -private var _chatEmpty: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatHelp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatHelp.kt deleted file mode 100644 index 36ddd4df..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatHelp.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChatHelp: ImageVector - get() { - if (_chatHelp != null) { - return _chatHelp!! - } - _chatHelp = fluentIcon(name = "Regular.ChatHelp") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, -4.59f, 18.89f) - lineTo(3.6f, 21.96f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.54f, -1.54f) - lineToRelative(1.06f, -3.83f) - arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 2.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, -7.43f, 12.64f) - lineToRelative(0.15f, 0.27f) - lineToRelative(-1.1f, 3.98f) - lineToRelative(3.98f, -1.11f) - lineToRelative(0.27f, 0.15f) - arcTo(8.5f, 8.5f, 0.0f, true, false, 12.0f, 3.5f) - close() - moveTo(12.0f, 15.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(12.0f, 6.75f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.75f) - curveToRelative(0.0f, 1.01f, -0.3f, 1.57f, -1.05f, 2.36f) - lineToRelative(-0.17f, 0.17f) - curveToRelative(-0.62f, 0.62f, -0.78f, 0.89f, -0.78f, 1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - curveToRelative(0.0f, -1.01f, 0.3f, -1.57f, 1.05f, -2.36f) - lineToRelative(0.17f, -0.17f) - curveToRelative(0.62f, -0.62f, 0.78f, -0.89f, 0.78f, -1.47f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.5f, -0.13f) - verticalLineToRelative(0.13f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 12.0f, 6.75f) - close() - } - } - return _chatHelp!! - } - -private var _chatHelp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatMultiple.kt deleted file mode 100644 index 3af77c1b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatMultiple.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChatMultiple: ImageVector - get() { - if (_chatMultiple != null) { - return _chatMultiple!! - } - _chatMultiple = fluentIcon(name = "Regular.ChatMultiple") { - fluentPath { - moveTo(9.56f, 3.0f) - arcToRelative(7.5f, 7.5f, 0.0f, false, false, -6.8f, 10.67f) - lineToRelative(-0.72f, 2.84f) - curveToRelative(-0.23f, 0.92f, 0.59f, 1.75f, 1.5f, 1.53f) - lineToRelative(2.93f, -0.7f) - arcTo(7.5f, 7.5f, 0.0f, true, false, 9.56f, 3.0f) - close() - moveTo(3.56f, 10.5f) - arcToRelative(6.0f, 6.0f, 0.0f, true, true, 3.33f, 5.37f) - lineToRelative(-0.24f, -0.12f) - lineToRelative(-0.27f, 0.07f) - lineToRelative(-2.78f, 0.66f) - lineToRelative(0.69f, -2.7f) - lineToRelative(0.07f, -0.28f) - lineToRelative(-0.13f, -0.25f) - arcToRelative(5.97f, 5.97f, 0.0f, false, true, -0.67f, -2.75f) - close() - moveTo(14.56f, 21.0f) - arcToRelative(7.47f, 7.47f, 0.0f, false, true, -5.1f, -2.0f) - arcToRelative(8.28f, 8.28f, 0.0f, false, false, 2.18f, -0.26f) - arcToRelative(5.97f, 5.97f, 0.0f, false, false, 5.6f, 0.13f) - lineToRelative(0.24f, -0.12f) - lineToRelative(0.26f, 0.07f) - curveToRelative(0.92f, 0.22f, 1.96f, 0.44f, 2.74f, 0.6f) - curveToRelative(-0.18f, -0.74f, -0.41f, -1.75f, -0.64f, -2.64f) - lineToRelative(-0.07f, -0.28f) - lineToRelative(0.13f, -0.25f) - arcToRelative(5.97f, 5.97f, 0.0f, false, false, -2.09f, -7.8f) - arcToRelative(8.44f, 8.44f, 0.0f, false, false, -0.8f, -2.04f) - arcToRelative(7.5f, 7.5f, 0.0f, false, true, 4.35f, 10.26f) - lineToRelative(0.67f, 2.8f) - curveToRelative(0.2f, 0.9f, -0.57f, 1.7f, -1.47f, 1.5f) - curveToRelative(-0.72f, -0.15f, -1.87f, -0.39f, -2.91f, -0.63f) - curveToRelative(-0.94f, 0.42f, -1.99f, 0.66f, -3.09f, 0.66f) - close() - } - } - return _chatMultiple!! - } - -private var _chatMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatMultipleHeart.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatMultipleHeart.kt deleted file mode 100644 index 280e1422..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatMultipleHeart.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChatMultipleHeart: ImageVector - get() { - if (_chatMultipleHeart != null) { - return _chatMultipleHeart!! - } - _chatMultipleHeart = fluentIcon(name = "Regular.ChatMultipleHeart") { - fluentPath { - moveTo(6.34f, 8.34f) - curveToRelative(0.8f, -0.79f, 2.08f, -0.79f, 2.87f, 0.0f) - lineToRelative(0.29f, 0.3f) - lineToRelative(0.28f, -0.29f) - arcToRelative(2.03f, 2.03f, 0.0f, false, true, 2.88f, 2.88f) - lineToRelative(-2.93f, 2.93f) - arcToRelative(0.31f, 0.31f, 0.0f, false, true, -0.44f, 0.0f) - lineTo(6.35f, 11.2f) - curveToRelative(-0.8f, -0.8f, -0.8f, -2.08f, 0.0f, -2.87f) - close() - moveTo(2.06f, 10.5f) - arcToRelative(7.5f, 7.5f, 0.0f, true, true, 4.41f, 6.84f) - lineToRelative(-2.93f, 0.7f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.5f, -1.53f) - lineToRelative(0.72f, -2.84f) - arcToRelative(7.47f, 7.47f, 0.0f, false, true, -0.7f, -3.17f) - close() - moveTo(9.56f, 4.5f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, -5.33f, 8.75f) - lineToRelative(0.13f, 0.25f) - lineToRelative(-0.07f, 0.28f) - lineToRelative(-0.7f, 2.7f) - lineToRelative(2.8f, -0.66f) - lineToRelative(0.26f, -0.07f) - lineToRelative(0.24f, 0.12f) - arcTo(6.0f, 6.0f, 0.0f, true, false, 9.56f, 4.5f) - close() - moveTo(9.46f, 19.0f) - arcToRelative(7.47f, 7.47f, 0.0f, false, false, 8.19f, 1.34f) - curveToRelative(1.04f, 0.24f, 2.19f, 0.48f, 2.91f, 0.64f) - curveToRelative(0.9f, 0.18f, 1.67f, -0.62f, 1.47f, -1.5f) - curveToRelative(-0.16f, -0.7f, -0.42f, -1.8f, -0.67f, -2.8f) - arcToRelative(7.5f, 7.5f, 0.0f, false, false, -4.34f, -10.26f) - curveToRelative(0.35f, 0.63f, 0.62f, 1.31f, 0.8f, 2.04f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 2.08f, 7.79f) - lineToRelative(-0.13f, 0.25f) - lineToRelative(0.07f, 0.28f) - curveToRelative(0.23f, 0.9f, 0.46f, 1.9f, 0.64f, 2.65f) - lineToRelative(-2.74f, -0.61f) - lineToRelative(-0.26f, -0.07f) - lineToRelative(-0.25f, 0.12f) - arcToRelative(5.97f, 5.97f, 0.0f, false, true, -5.59f, -0.13f) - arcToRelative(8.52f, 8.52f, 0.0f, false, true, -2.18f, 0.26f) - close() - } - } - return _chatMultipleHeart!! - } - -private var _chatMultipleHeart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatOff.kt deleted file mode 100644 index d8f32d8c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatOff.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChatOff: ImageVector - get() { - if (_chatOff != null) { - return _chatOff!! - } - _chatOff = fluentIcon(name = "Regular.ChatOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(2.2f, 2.2f) - arcToRelative(9.96f, 9.96f, 0.0f, false, false, -1.3f, 11.11f) - lineToRelative(-1.07f, 3.83f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 1.54f, 1.54f) - lineToRelative(3.82f, -1.07f) - arcToRelative(9.96f, 9.96f, 0.0f, false, false, 11.11f, -1.3f) - lineToRelative(2.2f, 2.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(17.46f, 18.52f) - arcToRelative(8.47f, 8.47f, 0.0f, false, true, -9.6f, 0.91f) - lineToRelative(-0.26f, -0.15f) - lineToRelative(-3.99f, 1.11f) - lineToRelative(1.11f, -3.98f) - lineToRelative(-0.15f, -0.27f) - arcToRelative(8.46f, 8.46f, 0.0f, false, true, 0.91f, -9.6f) - lineToRelative(3.0f, 3.0f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 8.76f, 11.0f) - horizontalLineToRelative(1.19f) - lineToRelative(2.0f, 2.0f) - lineTo(8.65f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(4.6f) - lineToRelative(0.07f, -0.02f) - lineToRelative(4.04f, 4.04f) - close() - } - fluentPath { - moveTo(15.25f, 9.5f) - horizontalLineToRelative(-2.57f) - lineToRelative(1.5f, 1.5f) - horizontalLineTo(15.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - } - fluentPath { - moveTo(20.5f, 12.0f) - curveToRelative(0.0f, 1.53f, -0.4f, 2.97f, -1.11f, 4.2f) - lineToRelative(1.1f, 1.1f) - arcTo(10.0f, 10.0f, 0.0f, false, false, 6.7f, 3.52f) - lineToRelative(1.08f, 1.1f) - arcTo(8.5f, 8.5f, 0.0f, false, true, 20.5f, 12.0f) - close() - } - } - return _chatOff!! - } - -private var _chatOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatSettings.kt deleted file mode 100644 index cc0e55f9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatSettings.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChatSettings: ImageVector - get() { - if (_chatSettings != null) { - return _chatSettings!! - } - _chatSettings = fluentIcon(name = "Regular.ChatSettings") { - fluentPath { - moveTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -18.89f, 4.6f) - lineToRelative(-1.06f, 3.82f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 1.54f, 1.54f) - lineToRelative(3.82f, -1.07f) - arcToRelative(9.96f, 9.96f, 0.0f, false, false, 5.37f, 1.08f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.05f, -1.47f) - arcToRelative(8.45f, 8.45f, 0.0f, false, true, -3.86f, -1.07f) - lineToRelative(-0.27f, -0.15f) - lineToRelative(-3.99f, 1.11f) - lineToRelative(1.11f, -3.98f) - lineToRelative(-0.15f, -0.27f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 15.92f, -4.4f) - curveToRelative(0.55f, 0.27f, 1.04f, 0.63f, 1.48f, 1.04f) - lineTo(22.0f, 12.0f) - close() - moveTo(12.84f, 16.47f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.44f, -2.5f) - lineToRelative(-0.2f, -0.68f) - curveToRelative(0.44f, -0.38f, 0.94f, -0.7f, 1.48f, -0.91f) - lineToRelative(0.5f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.9f, 0.0f) - lineToRelative(0.5f, -0.52f) - curveToRelative(0.54f, 0.23f, 1.04f, 0.54f, 1.48f, 0.93f) - lineToRelative(-0.19f, 0.63f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.45f, 2.5f) - lineToRelative(0.54f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, true, 0.0f, 1.8f) - lineToRelative(-0.58f, 0.15f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.44f, 2.5f) - lineToRelative(0.2f, 0.68f) - curveToRelative(-0.44f, 0.38f, -0.94f, 0.7f, -1.48f, 0.91f) - lineToRelative(-0.5f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.9f, 0.0f) - lineToRelative(-0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, true, -1.48f, -0.92f) - lineToRelative(0.19f, -0.64f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.45f, -2.5f) - lineToRelative(-0.54f, -0.14f) - arcToRelative(5.72f, 5.72f, 0.0f, false, true, 0.0f, -1.8f) - lineToRelative(0.58f, -0.15f) - close() - moveTo(18.95f, 17.5f) - curveToRelative(0.0f, -0.83f, -0.65f, -1.5f, -1.45f, -1.5f) - curveToRelative(-0.8f, 0.0f, -1.45f, 0.67f, -1.45f, 1.5f) - reflectiveCurveTo(16.7f, 19.0f, 17.5f, 19.0f) - curveToRelative(0.8f, 0.0f, 1.45f, -0.67f, 1.45f, -1.5f) - close() - } - } - return _chatSettings!! - } - -private var _chatSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatSparkle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatSparkle.kt deleted file mode 100644 index 925694b6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatSparkle.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChatSparkle: ImageVector - get() { - if (_chatSparkle != null) { - return _chatSparkle!! - } - _chatSparkle = fluentIcon(name = "Regular.ChatSparkle") { - fluentPath { - moveTo(16.09f, 6.41f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.35f, -0.95f) - lineTo(13.36f, 5.0f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, -1.03f) - lineToRelative(1.38f, -0.44f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.76f, -1.77f) - lineToRelative(0.01f, -0.03f) - lineToRelative(0.45f, -1.38f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, 1.03f, 0.0f) - lineToRelative(0.44f, 1.38f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.8f, 1.8f) - lineToRelative(1.38f, 0.44f) - lineToRelative(0.03f, 0.01f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, 1.03f) - lineToRelative(-1.38f, 0.44f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.8f, 1.8f) - lineToRelative(-0.45f, 1.38f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, -1.03f, 0.0f) - lineToRelative(-0.44f, -1.38f) - curveToRelative(-0.1f, -0.3f, -0.25f, -0.6f, -0.45f, -0.85f) - close() - moveTo(23.79f, 10.21f) - lineTo(23.02f, 9.96f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, -1.0f, -1.0f) - lineToRelative(-0.25f, -0.76f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, -0.57f, 0.0f) - lineToRelative(-0.25f, 0.77f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, -0.98f, 1.0f) - lineToRelative(-0.77f, 0.24f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.77f, 0.25f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, 1.0f) - lineToRelative(0.24f, 0.77f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.58f, 0.0f) - lineToRelative(0.24f, -0.77f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, -1.0f) - lineToRelative(0.77f, -0.24f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, -0.57f) - horizontalLineToRelative(-0.02f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 2.76f, 0.39f) - curveToRelative(-0.12f, 0.07f, -0.24f, 0.13f, -0.37f, 0.17f) - lineTo(13.05f, 3.0f) - curveToRelative(-0.28f, 0.1f, -0.53f, 0.28f, -0.72f, 0.5f) - lineTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, -7.43f, 12.64f) - lineToRelative(0.15f, 0.27f) - lineToRelative(-1.1f, 3.98f) - lineToRelative(3.98f, -1.11f) - lineToRelative(0.27f, 0.15f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 12.5f, -5.96f) - curveToRelative(0.1f, 0.13f, 0.2f, 0.24f, 0.34f, 0.34f) - arcToRelative(1.29f, 1.29f, 0.0f, false, false, 1.09f, 0.2f) - arcTo(10.0f, 10.0f, 0.0f, false, true, 7.4f, 20.88f) - lineTo(3.6f, 21.96f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.54f, -1.54f) - lineToRelative(1.06f, -3.83f) - arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 2.0f) - close() - } - } - return _chatSparkle!! - } - -private var _chatSparkle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatVideo.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatVideo.kt deleted file mode 100644 index 5ab912ca..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatVideo.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChatVideo: ImageVector - get() { - if (_chatVideo != null) { - return _chatVideo!! - } - _chatVideo = fluentIcon(name = "Regular.ChatVideo") { - fluentPath { - moveTo(12.0f, 8.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - verticalLineToRelative(4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - lineTo(9.0f, 16.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(3.0f) - close() - moveTo(15.0f, 13.16f) - verticalLineToRelative(-2.32f) - lineToRelative(1.73f, -1.64f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.27f, 0.54f) - verticalLineToRelative(4.52f) - curveToRelative(0.0f, 0.66f, -0.79f, 1.0f, -1.27f, 0.54f) - lineTo(15.0f, 13.16f) - close() - moveTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -18.89f, 4.6f) - lineToRelative(-1.06f, 3.82f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 1.54f, 1.54f) - lineToRelative(3.82f, -1.07f) - arcTo(10.0f, 10.0f, 0.0f, false, false, 22.0f, 12.0f) - close() - moveTo(3.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 4.37f, 7.43f) - lineToRelative(-0.27f, -0.15f) - lineToRelative(-3.99f, 1.11f) - lineToRelative(1.11f, -3.98f) - lineToRelative(-0.15f, -0.27f) - arcTo(8.46f, 8.46f, 0.0f, false, true, 3.5f, 12.0f) - close() - } - } - return _chatVideo!! - } - -private var _chatVideo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatWarning.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatWarning.kt deleted file mode 100644 index b7575eaf..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChatWarning.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChatWarning: ImageVector - get() { - if (_chatWarning != null) { - return _chatWarning!! - } - _chatWarning = fluentIcon(name = "Regular.ChatWarning") { - fluentPath { - moveTo(12.0f, 6.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(11.25f, 7.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, -4.59f, 18.89f) - lineTo(3.6f, 21.96f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.54f, -1.54f) - lineToRelative(1.06f, -3.83f) - arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 2.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, -7.43f, 12.64f) - lineToRelative(0.15f, 0.27f) - lineToRelative(-1.1f, 3.98f) - lineToRelative(3.98f, -1.11f) - lineToRelative(0.27f, 0.15f) - arcTo(8.5f, 8.5f, 0.0f, true, false, 12.0f, 3.5f) - close() - } - } - return _chatWarning!! - } - -private var _chatWarning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Check.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Check.kt deleted file mode 100644 index 8186c11b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Check.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Check: ImageVector - get() { - if (_check != null) { - return _check!! - } - _check = fluentIcon(name = "Regular.Check") { - fluentPath { - moveTo(21.78f, 5.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineToRelative(-7.5f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(7.5f, -7.5f) - close() - moveTo(21.95f, 7.03f) - curveToRelative(0.03f, 0.17f, 0.05f, 0.34f, 0.05f, 0.52f) - verticalLineToRelative(6.9f) - curveToRelative(0.0f, 1.4f, -1.14f, 2.55f, -2.55f, 2.55f) - lineTo(4.55f, 17.0f) - arcTo(2.55f, 2.55f, 0.0f, false, true, 2.0f, 14.45f) - verticalLineToRelative(-6.9f) - curveTo(2.0f, 6.15f, 3.14f, 5.0f, 4.55f, 5.0f) - horizontalLineToRelative(14.48f) - lineToRelative(-1.5f, 1.5f) - lineTo(4.55f, 6.5f) - curveToRelative(-0.58f, 0.0f, -1.05f, 0.47f, -1.05f, 1.05f) - verticalLineToRelative(6.9f) - curveToRelative(0.0f, 0.58f, 0.47f, 1.05f, 1.05f, 1.05f) - horizontalLineToRelative(14.9f) - curveToRelative(0.58f, 0.0f, 1.05f, -0.47f, 1.05f, -1.05f) - lineTo(20.5f, 8.47f) - lineToRelative(1.45f, -1.44f) - close() - moveTo(4.5f, 9.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(4.5f, 12.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _check!! - } - -private var _check: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Checkbox1.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Checkbox1.kt deleted file mode 100644 index 4cd3d4f5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Checkbox1.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Checkbox1: ImageVector - get() { - if (_checkbox1 != null) { - return _checkbox1!! - } - _checkbox1 = fluentIcon(name = "Regular.Checkbox1") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(0.64f, 0.0f, 1.24f, -0.19f, 1.75f, -0.51f) - verticalLineToRelative(-1.66f) - curveToRelative(-0.16f, 0.08f, -0.33f, 0.13f, -0.5f, 0.15f) - curveToRelative(-0.33f, 0.32f, -0.76f, 0.52f, -1.25f, 0.52f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(8.16f) - lineToRelative(0.66f, -0.53f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.84f, -0.36f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(17.28f, 9.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineTo(10.0f, 14.44f) - lineToRelative(-2.22f, -2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(2.75f, 2.75f) - curveToRelative(0.29f, 0.29f, 0.76f, 0.29f, 1.06f, 0.0f) - lineToRelative(6.75f, -6.75f) - close() - moveTo(21.0f, 14.54f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.22f, 0.12f) - lineToRelative(-2.5f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.94f, 1.18f) - lineToRelative(1.28f, -1.03f) - verticalLineToRelative(4.44f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, -0.7f) - close() - } - } - return _checkbox1!! - } - -private var _checkbox1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Checkbox2.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Checkbox2.kt deleted file mode 100644 index e6e1bce6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Checkbox2.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Checkbox2: ImageVector - get() { - if (_checkbox2 != null) { - return _checkbox2!! - } - _checkbox2 = fluentIcon(name = "Regular.Checkbox2") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(10.0f) - curveToRelative(0.04f, -0.58f, 0.19f, -1.08f, 0.4f, -1.5f) - lineTo(6.24f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.49f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(7.25f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 1.5f, 0.35f) - verticalLineToRelative(-7.6f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(17.81f, 19.5f) - arcToRelative(2.86f, 2.86f, 0.0f, false, false, -0.56f, 1.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.06f) - arcToRelative(3.45f, 3.45f, 0.0f, false, true, 1.09f, -1.0f) - lineToRelative(0.04f, -0.03f) - curveToRelative(0.22f, -0.16f, 0.47f, -0.34f, 0.72f, -0.56f) - curveToRelative(0.5f, -0.46f, 0.96f, -1.08f, 0.96f, -2.0f) - curveToRelative(0.0f, -0.63f, -0.17f, -1.18f, -0.5f, -1.6f) - arcToRelative(2.05f, 2.05f, 0.0f, false, false, -1.27f, -0.76f) - arcToRelative(2.82f, 2.82f, 0.0f, false, false, -2.54f, 0.86f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.12f, 1.0f) - arcToRelative(1.32f, 1.32f, 0.0f, false, true, 1.13f, -0.4f) - curveToRelative(0.17f, 0.04f, 0.3f, 0.12f, 0.38f, 0.22f) - curveToRelative(0.09f, 0.11f, 0.18f, 0.31f, 0.18f, 0.68f) - curveToRelative(0.0f, 0.45f, -0.23f, 0.72f, -0.77f, 1.13f) - curveToRelative(-0.13f, 0.1f, -0.26f, 0.2f, -0.42f, 0.3f) - curveToRelative(-0.4f, 0.3f, -0.88f, 0.65f, -1.25f, 1.16f) - close() - moveTo(17.28f, 9.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineTo(10.0f, 14.44f) - lineToRelative(-2.22f, -2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(2.75f, 2.75f) - curveToRelative(0.29f, 0.29f, 0.76f, 0.29f, 1.06f, 0.0f) - lineToRelative(6.75f, -6.75f) - close() - } - } - return _checkbox2!! - } - -private var _checkbox2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckboxArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckboxArrowRight.kt deleted file mode 100644 index a4b52c44..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckboxArrowRight.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CheckboxArrowRight: ImageVector - get() { - if (_checkboxArrowRight != null) { - return _checkboxArrowRight!! - } - _checkboxArrowRight = fluentIcon(name = "Regular.CheckboxArrowRight") { - fluentPath { - moveTo(5.25f, 2.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) - verticalLineToRelative(11.5f) - curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) - horizontalLineToRelative(6.25f) - curveToRelative(-0.2f, -0.47f, -0.34f, -0.98f, -0.42f, -1.5f) - lineTo(5.25f, 18.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(3.5f, 5.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(5.83f) - curveToRelative(0.52f, 0.08f, 1.03f, 0.22f, 1.5f, 0.42f) - lineTo(20.0f, 5.25f) - curveTo(20.0f, 3.45f, 18.54f, 2.0f, 16.75f, 2.0f) - lineTo(5.25f, 2.0f) - close() - moveTo(16.28f, 8.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineTo(9.0f, 13.44f) - lineToRelative(-2.22f, -2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(2.75f, 2.75f) - curveToRelative(0.29f, 0.29f, 0.76f, 0.29f, 1.06f, 0.0f) - lineToRelative(6.75f, -6.75f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(14.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(19.29f, 17.0f) - lineTo(14.5f, 17.0f) - close() - } - } - return _checkboxArrowRight!! - } - -private var _checkboxArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckboxChecked.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckboxChecked.kt deleted file mode 100644 index 0857a654..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckboxChecked.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CheckboxChecked: ImageVector - get() { - if (_checkboxChecked != null) { - return _checkboxChecked!! - } - _checkboxChecked = fluentIcon(name = "Regular.CheckboxChecked") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 6.25f) - close() - moveTo(17.28f, 9.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineTo(10.0f, 14.44f) - lineToRelative(-2.22f, -2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(2.75f, 2.75f) - curveToRelative(0.29f, 0.29f, 0.76f, 0.29f, 1.06f, 0.0f) - lineToRelative(6.75f, -6.75f) - close() - } - } - return _checkboxChecked!! - } - -private var _checkboxChecked: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckboxIndeterminate.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckboxIndeterminate.kt deleted file mode 100644 index 3bb759ba..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckboxIndeterminate.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CheckboxIndeterminate: ImageVector - get() { - if (_checkboxIndeterminate != null) { - return _checkboxIndeterminate!! - } - _checkboxIndeterminate = fluentIcon(name = "Regular.CheckboxIndeterminate") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineTo(6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - horizontalLineTo(6.25f) - close() - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineTo(6.25f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineTo(6.25f) - close() - moveTo(7.25f, 6.0f) - curveTo(6.56f, 6.0f, 6.0f, 6.56f, 6.0f, 7.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(9.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-9.5f) - curveTo(18.0f, 6.56f, 17.44f, 6.0f, 16.75f, 6.0f) - horizontalLineToRelative(-9.5f) - close() - } - } - return _checkboxIndeterminate!! - } - -private var _checkboxIndeterminate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckboxPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckboxPerson.kt deleted file mode 100644 index 4eb44c97..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckboxPerson.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CheckboxPerson: ImageVector - get() { - if (_checkboxPerson != null) { - return _checkboxPerson!! - } - _checkboxPerson = fluentIcon(name = "Regular.CheckboxPerson") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(6.92f) - arcToRelative(3.74f, 3.74f, 0.0f, false, true, -0.17f, -1.13f) - verticalLineToRelative(-0.1f) - lineToRelative(0.01f, -0.27f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.9f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 1.5f, 0.9f) - verticalLineToRelative(-5.8f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(17.28f, 9.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineTo(10.0f, 14.44f) - lineToRelative(-2.22f, -2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(2.75f, 2.75f) - curveToRelative(0.29f, 0.29f, 0.76f, 0.29f, 1.06f, 0.0f) - lineToRelative(6.75f, -6.75f) - close() - moveTo(21.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(23.0f, 19.88f) - curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) - reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _checkboxPerson!! - } - -private var _checkboxPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckboxUnchecked.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckboxUnchecked.kt deleted file mode 100644 index f59cddd2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckboxUnchecked.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CheckboxUnchecked: ImageVector - get() { - if (_checkboxUnchecked != null) { - return _checkboxUnchecked!! - } - _checkboxUnchecked = fluentIcon(name = "Regular.CheckboxUnchecked") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineTo(6.25f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - verticalLineTo(6.25f) - close() - moveTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineTo(6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineTo(6.25f) - close() - } - } - return _checkboxUnchecked!! - } - -private var _checkboxUnchecked: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckboxWarning.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckboxWarning.kt deleted file mode 100644 index 6b7e7035..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckboxWarning.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CheckboxWarning: ImageVector - get() { - if (_checkboxWarning != null) { - return _checkboxWarning!! - } - _checkboxWarning = fluentIcon(name = "Regular.CheckboxWarning") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(4.8f) - curveToRelative(0.05f, -0.2f, 0.12f, -0.42f, 0.22f, -0.62f) - lineToRelative(0.44f, -0.88f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(5.74f) - curveToRelative(0.09f, 0.12f, 0.17f, 0.25f, 0.24f, 0.4f) - lineTo(21.0f, 14.9f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(17.28f, 9.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineTo(10.0f, 14.44f) - lineToRelative(-2.22f, -2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(2.75f, 2.75f) - curveToRelative(0.29f, 0.29f, 0.76f, 0.29f, 1.06f, 0.0f) - lineToRelative(6.75f, -6.75f) - close() - moveTo(16.16f, 12.83f) - lineTo(12.16f, 20.83f) - arcTo(1.5f, 1.5f, 0.0f, false, false, 13.51f, 23.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.33f, -2.17f) - lineToRelative(-4.0f, -8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.68f, 0.0f) - close() - moveTo(18.0f, 15.5f) - verticalLineToRelative(3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - close() - moveTo(17.5f, 21.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - close() - } - } - return _checkboxWarning!! - } - -private var _checkboxWarning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckmarkCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckmarkCircle.kt deleted file mode 100644 index c55dd4b5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckmarkCircle.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CheckmarkCircle: ImageVector - get() { - if (_checkmarkCircle != null) { - return _checkmarkCircle!! - } - _checkmarkCircle = fluentIcon(name = "Regular.CheckmarkCircle") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) - close() - moveTo(10.75f, 13.44f) - lineTo(15.22f, 8.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) - lineToRelative(0.08f, 0.07f) - lineToRelative(1.97f, 1.97f) - lineToRelative(4.47f, -4.47f) - lineToRelative(-4.47f, 4.47f) - close() - } - } - return _checkmarkCircle!! - } - -private var _checkmarkCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckmarkLock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckmarkLock.kt deleted file mode 100644 index fc38354b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckmarkLock.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CheckmarkLock: ImageVector - get() { - if (_checkmarkLock != null) { - return _checkmarkLock!! - } - _checkmarkLock = fluentIcon(name = "Regular.CheckmarkLock") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 9.92f, 11.26f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -1.47f, -2.17f) - arcTo(8.5f, 8.5f, 0.0f, true, false, 13.0f, 20.44f) - verticalLineToRelative(1.06f) - curveToRelative(0.0f, 0.15f, 0.01f, 0.3f, 0.04f, 0.45f) - arcTo(10.0f, 10.0f, 0.0f, true, true, 12.0f, 2.0f) - close() - moveTo(20.49f, 12.48f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 16.0f, 14.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(5.0f) - lineToRelative(0.03f, 0.3f) - curveToRelative(0.14f, 0.68f, 0.74f, 1.2f, 1.47f, 1.2f) - horizontalLineToRelative(6.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -1.5f, -1.5f) - lineTo(21.0f, 15.0f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.57f, -0.2f, -1.1f, -0.51f, -1.52f) - close() - moveTo(18.11f, 19.92f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.78f, -1.84f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.78f, 1.84f) - close() - moveTo(17.5f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(10.75f, 13.44f) - lineTo(15.22f, 8.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) - lineToRelative(0.08f, 0.07f) - lineToRelative(1.97f, 1.97f) - close() - } - } - return _checkmarkLock!! - } - -private var _checkmarkLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckmarkSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckmarkSquare.kt deleted file mode 100644 index e0e3da7e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckmarkSquare.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CheckmarkSquare: ImageVector - get() { - if (_checkmarkSquare != null) { - return _checkmarkSquare!! - } - _checkmarkSquare = fluentIcon(name = "Regular.CheckmarkSquare") { - fluentPath { - moveTo(16.28f, 9.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineToRelative(-4.47f, 4.47f) - lineToRelative(-1.47f, -1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(5.0f, -5.0f) - close() - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineTo(6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - horizontalLineTo(6.25f) - close() - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineTo(6.25f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineTo(6.25f) - close() - } - } - return _checkmarkSquare!! - } - -private var _checkmarkSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckmarkStarburst.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckmarkStarburst.kt deleted file mode 100644 index 2f7cae43..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CheckmarkStarburst.kt +++ /dev/null @@ -1,114 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CheckmarkStarburst: ImageVector - get() { - if (_checkmarkStarburst != null) { - return _checkmarkStarburst!! - } - _checkmarkStarburst = fluentIcon(name = "Regular.CheckmarkStarburst") { - fluentPath { - moveToRelative(9.84f, 2.03f) - lineToRelative(0.32f, 0.14f) - lineToRelative(1.29f, 0.63f) - curveToRelative(0.35f, 0.17f, 0.75f, 0.17f, 1.1f, 0.0f) - lineToRelative(1.28f, -0.63f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 3.69f, 1.25f) - lineToRelative(0.07f, 0.17f) - lineToRelative(0.06f, 0.16f) - lineToRelative(0.46f, 1.36f) - curveToRelative(0.13f, 0.36f, 0.42f, 0.65f, 0.78f, 0.78f) - lineToRelative(1.36f, 0.46f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 1.58f, 3.81f) - lineToRelative(-0.63f, 1.29f) - curveToRelative(-0.17f, 0.35f, -0.17f, 0.75f, 0.0f, 1.1f) - lineToRelative(0.63f, 1.28f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -1.58f, 3.82f) - lineToRelative(-1.36f, 0.46f) - curveToRelative(-0.36f, 0.13f, -0.65f, 0.42f, -0.78f, 0.78f) - lineToRelative(-0.46f, 1.36f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -3.82f, 1.58f) - lineToRelative(-1.28f, -0.63f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.1f, 0.0f) - lineToRelative(-1.29f, 0.63f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -3.81f, -1.58f) - lineToRelative(-0.46f, -1.36f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -0.78f, -0.78f) - lineToRelative(-1.36f, -0.46f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -1.58f, -3.82f) - lineToRelative(0.63f, -1.28f) - curveToRelative(0.17f, -0.35f, 0.17f, -0.75f, 0.0f, -1.1f) - lineToRelative(-0.63f, -1.29f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 1.58f, -3.81f) - lineToRelative(1.36f, -0.46f) - curveToRelative(0.36f, -0.13f, 0.65f, -0.42f, 0.78f, -0.78f) - lineToRelative(0.46f, -1.36f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 3.49f, -1.72f) - close() - moveTo(7.77f, 4.23f) - lineTo(7.3f, 5.6f) - curveToRelative(-0.28f, 0.8f, -0.91f, 1.44f, -1.72f, 1.72f) - lineToRelative(-1.36f, 0.46f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -0.71f, 1.73f) - lineToRelative(0.63f, 1.29f) - curveToRelative(0.37f, 0.76f, 0.37f, 1.66f, 0.0f, 2.42f) - lineToRelative(-0.63f, 1.29f) - lineToRelative(-0.07f, 0.15f) - curveToRelative(-0.22f, 0.65f, 0.13f, 1.36f, 0.78f, 1.58f) - lineToRelative(1.36f, 0.46f) - curveToRelative(0.8f, 0.28f, 1.44f, 0.91f, 1.72f, 1.72f) - lineToRelative(0.46f, 1.35f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 1.73f, 0.72f) - lineToRelative(1.29f, -0.63f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.42f, 0.0f) - lineToRelative(1.29f, 0.63f) - lineToRelative(0.15f, 0.07f) - curveToRelative(0.65f, 0.22f, 1.36f, -0.13f, 1.58f, -0.79f) - lineToRelative(0.46f, -1.35f) - curveToRelative(0.28f, -0.8f, 0.91f, -1.44f, 1.72f, -1.72f) - lineToRelative(1.35f, -0.46f) - curveToRelative(0.06f, -0.01f, 0.1f, -0.04f, 0.15f, -0.06f) - curveToRelative(0.62f, -0.3f, 0.88f, -1.05f, 0.57f, -1.67f) - lineToRelative(-0.63f, -1.29f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.0f, -2.42f) - lineToRelative(0.63f, -1.29f) - lineToRelative(0.07f, -0.15f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -0.79f, -1.58f) - lineToRelative(-1.35f, -0.46f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -1.72f, -1.72f) - lineToRelative(-0.46f, -1.36f) - lineToRelative(-0.03f, -0.07f) - lineToRelative(-0.03f, -0.07f) - lineToRelative(-0.06f, -0.12f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.61f, -0.45f) - lineToRelative(-1.29f, 0.63f) - curveToRelative(-0.76f, 0.37f, -1.66f, 0.37f, -2.42f, 0.0f) - lineTo(9.5f, 3.52f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.73f, 0.71f) - close() - moveTo(10.05f, 14.39f) - lineTo(15.47f, 8.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-6.0f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.03f, 0.03f) - lineToRelative(-0.08f, -0.08f) - lineToRelative(-2.5f, -3.0f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 11.94f) - lineToRelative(0.08f, 0.08f) - lineToRelative(1.97f, 2.37f) - lineToRelative(5.42f, -5.42f) - lineToRelative(-5.42f, 5.42f) - close() - } - } - return _checkmarkStarburst!! - } - -private var _checkmarkStarburst: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChevronCircleDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChevronCircleDown.kt deleted file mode 100644 index 1ecb07fa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChevronCircleDown.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChevronCircleDown: ImageVector - get() { - if (_chevronCircleDown != null) { - return _chevronCircleDown!! - } - _chevronCircleDown = fluentIcon(name = "Regular.ChevronCircleDown") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) - close() - moveTo(7.47f, 9.97f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineTo(12.0f, 13.44f) - lineToRelative(3.47f, -3.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-4.0f, 4.0f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-4.0f, -4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - } - } - return _chevronCircleDown!! - } - -private var _chevronCircleDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChevronCircleLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChevronCircleLeft.kt deleted file mode 100644 index 76c3970e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChevronCircleLeft.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChevronCircleLeft: ImageVector - get() { - if (_chevronCircleLeft != null) { - return _chevronCircleLeft!! - } - _chevronCircleLeft = fluentIcon(name = "Regular.ChevronCircleLeft") { - fluentPath { - moveTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 20.0f, 0.0f) - close() - moveTo(20.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, -17.0f, 0.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, 17.0f, 0.0f) - close() - moveTo(14.03f, 16.53f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineTo(10.56f, 12.0f) - lineToRelative(3.47f, -3.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineToRelative(-4.0f, 4.0f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(4.0f, 4.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - close() - } - } - return _chevronCircleLeft!! - } - -private var _chevronCircleLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChevronCircleRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChevronCircleRight.kt deleted file mode 100644 index ac52558e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChevronCircleRight.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChevronCircleRight: ImageVector - get() { - if (_chevronCircleRight != null) { - return _chevronCircleRight!! - } - _chevronCircleRight = fluentIcon(name = "Regular.ChevronCircleRight") { - fluentPath { - moveTo(2.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) - close() - moveTo(3.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, 17.0f, 0.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, -17.0f, 0.0f) - close() - moveTo(9.97f, 16.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineTo(13.44f, 12.0f) - lineTo(9.97f, 8.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineToRelative(4.0f, 4.0f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-4.0f, 4.0f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - close() - } - } - return _chevronCircleRight!! - } - -private var _chevronCircleRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChevronCircleUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChevronCircleUp.kt deleted file mode 100644 index 5a411399..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChevronCircleUp.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChevronCircleUp: ImageVector - get() { - if (_chevronCircleUp != null) { - return _chevronCircleUp!! - } - _chevronCircleUp = fluentIcon(name = "Regular.ChevronCircleUp") { - fluentPath { - moveTo(12.0f, 22.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) - close() - moveTo(12.0f, 20.5f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 0.0f, -17.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, 0.0f, 17.0f) - close() - moveTo(7.47f, 14.03f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineTo(12.0f, 10.56f) - lineToRelative(3.47f, 3.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-4.0f, -4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-4.0f, 4.0f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - close() - } - } - return _chevronCircleUp!! - } - -private var _chevronCircleUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChevronUpDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChevronUpDown.kt deleted file mode 100644 index 8e3b4fc2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ChevronUpDown.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ChevronUpDown: ImageVector - get() { - if (_chevronUpDown != null) { - return _chevronUpDown!! - } - _chevronUpDown = fluentIcon(name = "Regular.ChevronUpDown") { - fluentPath { - moveTo(12.54f, 2.23f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.08f, 0.0f) - lineTo(5.2f, 8.73f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.08f, 1.04f) - lineTo(12.0f, 3.83f) - lineToRelative(5.7f, 5.94f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.1f, -1.04f) - lineToRelative(-6.26f, -6.5f) - close() - moveTo(12.54f, 21.77f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.08f, 0.0f) - lineToRelative(-6.25f, -6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.08f, -1.04f) - lineTo(12.0f, 20.17f) - lineToRelative(5.7f, -5.94f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.1f, 1.04f) - lineToRelative(-6.26f, 6.5f) - close() - } - } - return _chevronUpDown!! - } - -private var _chevronUpDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Circle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Circle.kt deleted file mode 100644 index 3c7f412e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Circle.kt +++ /dev/null @@ -1,30 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Circle: ImageVector - get() { - if (_circle != null) { - return _circle!! - } - _circle = fluentIcon(name = "Regular.Circle") { - fluentPath { - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) - close() - moveTo(2.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) - close() - } - } - return _circle!! - } - -private var _circle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CircleEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CircleEdit.kt deleted file mode 100644 index c438d507..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CircleEdit.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CircleEdit: ImageVector - get() { - if (_circleEdit != null) { - return _circleEdit!! - } - _circleEdit = fluentIcon(name = "Regular.CircleEdit") { - fluentPath { - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, -0.7f, 16.97f) - lineToRelative(-0.24f, 0.94f) - curveToRelative(-0.04f, 0.18f, -0.07f, 0.36f, -0.06f, 0.54f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 10.97f, -10.7f) - arcToRelative(3.29f, 3.29f, 0.0f, false, false, -1.53f, -0.24f) - arcTo(8.5f, 8.5f, 0.0f, false, false, 12.0f, 3.5f) - close() - } - fluentPath { - moveTo(20.72f, 12.0f) - curveToRelative(-0.6f, 0.0f, -1.18f, 0.22f, -1.62f, 0.67f) - lineToRelative(-5.9f, 5.9f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.71f, 1.25f) - lineToRelative(-0.46f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcTo(2.29f, 2.29f, 0.0f, false, false, 20.72f, 12.0f) - close() - } - } - return _circleEdit!! - } - -private var _circleEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CircleHalfFill.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CircleHalfFill.kt deleted file mode 100644 index 8f4b620f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CircleHalfFill.kt +++ /dev/null @@ -1,35 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CircleHalfFill: ImageVector - get() { - if (_circleHalfFill != null) { - return _circleHalfFill!! - } - _circleHalfFill = fluentIcon(name = "Regular.CircleHalfFill") { - fluentPath { - moveTo(2.03f, 11.25f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 19.94f, 0.0f) - horizontalLineTo(22.0f) - verticalLineTo(12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(0.03f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, -8.47f, 7.75f) - horizontalLineToRelative(16.94f) - arcTo(8.5f, 8.5f, 0.0f, false, false, 12.0f, 3.5f) - close() - } - } - return _circleHalfFill!! - } - -private var _circleHalfFill: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CircleImage.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CircleImage.kt deleted file mode 100644 index 7d799773..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CircleImage.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CircleImage: ImageVector - get() { - if (_circleImage != null) { - return _circleImage!! - } - _circleImage = fluentIcon(name = "Regular.CircleImage") { - fluentPath { - moveTo(9.0f, 3.5f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -1.0f, 10.9f) - verticalLineToRelative(1.53f) - arcTo(7.0f, 7.0f, 0.0f, true, true, 15.93f, 8.0f) - lineTo(14.4f, 8.0f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 9.0f, 3.5f) - close() - moveTo(14.8f, 17.27f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) - lineToRelative(3.14f, 3.13f) - curveToRelative(-0.19f, 0.06f, -0.38f, 0.1f, -0.59f, 0.1f) - horizontalLineToRelative(-6.5f) - curveToRelative(-0.2f, 0.0f, -0.4f, -0.04f, -0.59f, -0.1f) - lineToRelative(3.13f, -3.13f) - close() - moveTo(10.6f, 19.34f) - curveToRelative(-0.06f, -0.19f, -0.1f, -0.38f, -0.1f, -0.59f) - verticalLineToRelative(-6.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(6.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 0.2f, -0.04f, 0.4f, -0.1f, 0.59f) - lineToRelative(-3.13f, -3.13f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -3.54f, 0.0f) - lineToRelative(-3.13f, 3.13f) - close() - moveTo(19.25f, 13.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(12.25f, 9.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 9.0f, 12.25f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(6.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-6.5f) - curveTo(22.0f, 10.45f, 20.54f, 9.0f, 18.75f, 9.0f) - horizontalLineToRelative(-6.5f) - close() - } - } - return _circleImage!! - } - -private var _circleImage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CircleLine.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CircleLine.kt deleted file mode 100644 index 531cad0f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CircleLine.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CircleLine: ImageVector - get() { - if (_circleLine != null) { - return _circleLine!! - } - _circleLine = fluentIcon(name = "Regular.CircleLine") { - fluentPath { - moveTo(3.53f, 11.25f) - horizontalLineToRelative(16.94f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, -16.94f, 0.0f) - close() - moveTo(20.47f, 12.75f) - lineTo(3.53f, 12.75f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 16.94f, 0.0f) - close() - moveTo(2.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) - close() - } - } - return _circleLine!! - } - -private var _circleLine: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CircleSmall.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CircleSmall.kt deleted file mode 100644 index 7ef8fb5a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CircleSmall.kt +++ /dev/null @@ -1,30 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CircleSmall: ImageVector - get() { - if (_circleSmall != null) { - return _circleSmall!! - } - _circleSmall = fluentIcon(name = "Regular.CircleSmall") { - fluentPath { - moveTo(12.0f, 9.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, -5.0f) - close() - moveTo(8.0f, 12.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, 8.0f, 0.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -8.0f, 0.0f) - close() - } - } - return _circleSmall!! - } - -private var _circleSmall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/City.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/City.kt deleted file mode 100644 index 152cfedf..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/City.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.City: ImageVector - get() { - if (_city != null) { - return _city!! - } - _city = fluentIcon(name = "Regular.City") { - fluentPath { - moveTo(12.0f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.33f, 0.75f, 0.75f) - lineTo(12.75f, 4.0f) - horizontalLineToRelative(2.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(16.5f, 11.0f) - horizontalLineToRelative(2.25f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(5.25f, 22.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-8.43f) - curveToRelative(0.0f, -0.62f, 0.33f, -1.2f, 0.86f, -1.5f) - lineTo(7.5f, 8.45f) - lineTo(7.5f, 5.75f) - curveTo(7.5f, 4.78f, 8.28f, 4.0f, 9.25f, 4.0f) - horizontalLineToRelative(2.0f) - lineTo(11.25f, 2.75f) - curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(9.0f, 8.02f) - curveToRelative(0.81f, 0.12f, 1.5f, 0.8f, 1.5f, 1.73f) - lineTo(10.5f, 20.5f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-7.75f) - curveToRelative(0.0f, -0.88f, 0.65f, -1.61f, 1.5f, -1.73f) - lineTo(15.0f, 5.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(2.27f) - close() - moveTo(15.25f, 12.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(7.75f) - horizontalLineToRelative(3.75f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-7.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-3.5f) - close() - moveTo(8.62f, 9.54f) - lineToRelative(-3.5f, 2.06f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.12f, 0.22f) - verticalLineToRelative(8.43f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - lineTo(9.0f, 20.5f) - lineTo(9.0f, 9.75f) - curveToRelative(0.0f, -0.2f, -0.21f, -0.31f, -0.38f, -0.21f) - close() - } - } - return _city!! - } - -private var _city: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Class.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Class.kt deleted file mode 100644 index 7d5db0c3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Class.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Class: ImageVector - get() { - if (_class != null) { - return _class!! - } - _class = fluentIcon(name = "Regular.Class") { - fluentPath { - moveTo(17.25f, 2.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 20.0f, 4.75f) - verticalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 17.25f, 22.0f) - lineTo(6.75f, 22.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.0f, 19.25f) - lineTo(4.0f, 4.75f) - curveToRelative(0.0f, -1.26f, 0.85f, -2.32f, 2.0f, -2.65f) - verticalLineToRelative(1.65f) - curveToRelative(-0.3f, 0.23f, -0.5f, 0.6f, -0.5f, 1.0f) - verticalLineToRelative(14.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(10.5f) - curveToRelative(0.7f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - lineTo(18.5f, 4.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(15.0f, 3.5f) - lineTo(15.0f, 2.0f) - horizontalLineToRelative(2.25f) - close() - moveTo(14.0f, 2.0f) - verticalLineToRelative(8.14f) - curveToRelative(0.0f, 0.75f, -0.8f, 1.03f, -1.29f, 0.76f) - lineToRelative(-0.08f, -0.05f) - lineToRelative(-2.13f, -1.28f) - lineToRelative(-2.08f, 1.25f) - curveToRelative(-0.5f, 0.36f, -1.33f, 0.14f, -1.41f, -0.56f) - lineTo(7.0f, 10.14f) - lineTo(7.0f, 2.0f) - horizontalLineToRelative(7.0f) - close() - moveTo(12.5f, 3.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(5.52f) - lineToRelative(1.57f, -0.95f) - arcToRelative(0.92f, 0.92f, 0.0f, false, true, 0.82f, -0.02f) - lineToRelative(1.61f, 0.97f) - lineTo(12.5f, 3.5f) - close() - } - } - return _class!! - } - -private var _class: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Classification.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Classification.kt deleted file mode 100644 index fa8a017d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Classification.kt +++ /dev/null @@ -1,115 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Classification: ImageVector - get() { - if (_classification != null) { - return _classification!! - } - _classification = fluentIcon(name = "Regular.Classification") { - fluentPath { - moveToRelative(9.02f, 6.0f) - lineToRelative(-1.5f, 1.5f) - lineTo(4.26f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.76f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.4f, 0.34f, 0.74f, 0.75f, 0.74f) - horizontalLineToRelative(11.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-3.28f) - lineToRelative(1.5f, -1.49f) - verticalLineToRelative(4.77f) - curveTo(18.0f, 21.0f, 17.0f, 22.0f, 15.75f, 22.0f) - lineTo(4.25f, 22.0f) - curveTo(3.01f, 22.0f, 2.0f, 21.0f, 2.0f, 19.75f) - lineTo(2.0f, 8.25f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.24f, 2.25f, -2.24f) - horizontalLineToRelative(4.77f) - close() - moveTo(5.22f, 12.22f) - lineTo(7.22f, 10.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - lineToRelative(5.5f, 5.5f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-5.5f, -5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(2.0f, -2.0f) - lineToRelative(-2.0f, 2.0f) - close() - moveTo(7.75f, 11.82f) - lineTo(6.81f, 12.75f) - lineTo(11.25f, 17.19f) - lineTo(12.19f, 16.25f) - lineTo(7.75f, 11.81f) - close() - moveTo(21.28f, 2.72f) - arcToRelative(2.58f, 2.58f, 0.0f, false, true, -0.47f, 4.02f) - lineToRelative(-0.14f, 0.08f) - lineToRelative(-1.17f, 0.62f) - lineToRelative(0.51f, 0.51f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.14f, 4.45f) - lineToRelative(-0.14f, 0.15f) - lineToRelative(-1.23f, 1.23f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-0.47f, -0.47f) - lineToRelative(-1.47f, 1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-5.5f, -5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(1.47f, -1.47f) - lineToRelative(-0.47f, -0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(1.23f, -1.23f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 4.45f, -0.14f) - lineToRelative(0.15f, 0.14f) - lineToRelative(0.51f, 0.51f) - lineToRelative(0.62f, -1.16f) - curveToRelative(0.09f, -0.17f, 0.2f, -0.33f, 0.32f, -0.48f) - lineToRelative(0.13f, -0.14f) - curveToRelative(1.01f, -1.0f, 2.64f, -1.0f, 3.65f, 0.0f) - close() - moveTo(11.75f, 7.82f) - lineTo(10.81f, 8.75f) - lineTo(15.25f, 13.19f) - lineTo(16.19f, 12.25f) - lineTo(11.75f, 7.81f) - close() - moveTo(12.64f, 4.94f) - lineTo(12.51f, 5.05f) - lineTo(11.81f, 5.75f) - lineTo(18.25f, 12.19f) - lineTo(18.95f, 11.49f) - curveToRelative(0.68f, -0.68f, 0.69f, -1.77f, 0.02f, -2.46f) - lineToRelative(-3.98f, -3.98f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.35f, -0.11f) - close() - moveTo(18.69f, 3.78f) - curveToRelative(-0.05f, 0.05f, -0.1f, 0.1f, -0.13f, 0.17f) - lineToRelative(-0.06f, 0.09f) - lineToRelative(-0.83f, 1.57f) - lineToRelative(0.72f, 0.72f) - lineToRelative(1.57f, -0.84f) - arcToRelative(1.08f, 1.08f, 0.0f, true, false, -1.27f, -1.7f) - close() - } - } - return _classification!! - } - -private var _classification: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClearFormatting.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClearFormatting.kt deleted file mode 100644 index 096ef3f3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClearFormatting.kt +++ /dev/null @@ -1,94 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClearFormatting: ImageVector - get() { - if (_clearFormatting != null) { - return _clearFormatting!! - } - _clearFormatting = fluentIcon(name = "Regular.ClearFormatting") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(11.31f, 19.5f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(2.75f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(8.66f) - close() - moveTo(15.09f, 14.97f) - lineTo(15.02f, 15.02f) - lineTo(14.97f, 15.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.05f, 0.07f) - lineToRelative(1.77f, 1.77f) - lineToRelative(-1.76f, 1.77f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.06f, 0.06f) - lineToRelative(0.07f, 0.06f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) - lineToRelative(0.07f, -0.06f) - lineToRelative(1.77f, -1.76f) - lineToRelative(1.77f, 1.77f) - lineToRelative(0.07f, 0.05f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.57f, 0.0f) - lineToRelative(0.07f, -0.05f) - lineToRelative(0.05f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) - lineToRelative(-0.05f, -0.07f) - lineToRelative(-1.77f, -1.77f) - lineToRelative(1.77f, -1.77f) - lineToRelative(0.06f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) - lineToRelative(-0.06f, -0.07f) - lineToRelative(-0.07f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) - lineToRelative(-0.07f, 0.05f) - lineToRelative(-1.77f, 1.77f) - lineToRelative(-1.77f, -1.77f) - lineToRelative(-0.07f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.05f) - lineToRelative(-0.07f, 0.05f) - close() - moveTo(15.75f, 3.5f) - curveToRelative(0.43f, 0.0f, 0.76f, 0.36f, 0.75f, 0.77f) - lineToRelative(-0.01f, 0.1f) - lineToRelative(-0.25f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, -0.14f) - lineToRelative(0.01f, -0.1f) - lineToRelative(0.1f, -0.63f) - horizontalLineToRelative(-3.85f) - lineTo(9.0f, 16.5f) - horizontalLineToRelative(0.74f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.83f) - lineToRelative(2.0f, -11.5f) - horizontalLineToRelative(-4.1f) - lineToRelative(-0.14f, 0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, -0.14f) - lineToRelative(0.01f, -0.1f) - lineToRelative(0.25f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.63f, -0.62f) - lineToRelative(0.11f, -0.01f) - horizontalLineToRelative(11.0f) - close() - } - } - return _clearFormatting!! - } - -private var _clearFormatting: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Clipboard.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Clipboard.kt deleted file mode 100644 index 1eb75c9f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Clipboard.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Clipboard: ImageVector - get() { - if (_clipboard != null) { - return _clipboard!! - } - _clipboard = fluentIcon(name = "Regular.Clipboard") { - fluentPath { - moveTo(13.75f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - lineToRelative(-0.01f, -0.25f) - horizontalLineToRelative(1.76f) - curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 6.25f) - curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(1.76f) - verticalLineToRelative(0.18f) - lineTo(8.0f, 4.25f) - curveTo(8.0f, 3.01f, 9.0f, 2.0f, 10.25f, 2.0f) - horizontalLineToRelative(3.5f) - close() - moveTo(13.75f, 6.5f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.8f, 0.0f, -1.5f, -0.41f, -1.9f, -1.03f) - lineToRelative(0.03f, 0.03f) - lineTo(6.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(18.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.13f) - lineToRelative(0.02f, -0.03f) - curveToRelative(-0.4f, 0.62f, -1.1f, 1.03f, -1.89f, 1.03f) - close() - moveTo(13.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - } - } - return _clipboard!! - } - -private var _clipboard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Clipboard3Day.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Clipboard3Day.kt deleted file mode 100644 index 89b06f89..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Clipboard3Day.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Clipboard3Day: ImageVector - get() { - if (_clipboard3Day != null) { - return _clipboard3Day!! - } - _clipboard3Day = fluentIcon(name = "Regular.Clipboard3Day") { - fluentPath { - moveTo(8.0f, 17.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(7.5f) - close() - moveTo(15.25f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - close() - moveTo(11.25f, 17.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(7.5f) - close() - moveTo(15.99f, 4.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) - lineTo(6.25f, 4.0f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 6.25f) - curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) - horizontalLineToRelative(-1.76f) - close() - moveTo(15.99f, 4.1f) - lineTo(16.0f, 4.25f) - lineTo(16.0f, 4.1f) - close() - moveTo(10.25f, 6.5f) - horizontalLineToRelative(3.5f) - curveToRelative(0.78f, 0.0f, 1.47f, -0.4f, 1.87f, -1.0f) - horizontalLineToRelative(2.13f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(6.25f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(5.5f, 6.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.13f) - curveToRelative(0.4f, 0.6f, 1.09f, 1.0f, 1.87f, 1.0f) - close() - moveTo(10.25f, 3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - } - } - return _clipboard3Day!! - } - -private var _clipboard3Day: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardArrowRight.kt deleted file mode 100644 index 0666a902..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardArrowRight.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClipboardArrowRight: ImageVector - get() { - if (_clipboardArrowRight != null) { - return _clipboardArrowRight!! - } - _clipboardArrowRight = fluentIcon(name = "Regular.ClipboardArrowRight") { - fluentPath { - moveTo(13.75f, 2.0f) - curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) - horizontalLineToRelative(1.76f) - curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) - verticalLineToRelative(5.25f) - curveToRelative(-0.47f, -0.2f, -0.98f, -0.34f, -1.5f, -0.42f) - lineTo(18.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.13f) - curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.78f, 0.0f, -1.47f, -0.4f, -1.87f, -1.0f) - lineTo(6.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(5.48f) - curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 6.25f) - curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(1.76f) - curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) - horizontalLineToRelative(3.5f) - close() - moveTo(15.99f, 4.1f) - lineTo(16.0f, 4.25f) - lineTo(16.0f, 4.1f) - close() - moveTo(13.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(19.29f, 17.0f) - lineTo(14.5f, 17.0f) - close() - } - } - return _clipboardArrowRight!! - } - -private var _clipboardArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardCheckmark.kt deleted file mode 100644 index 7fa42483..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardCheckmark.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClipboardCheckmark: ImageVector - get() { - if (_clipboardCheckmark != null) { - return _clipboardCheckmark!! - } - _clipboardCheckmark = fluentIcon(name = "Regular.ClipboardCheckmark") { - fluentPath { - moveTo(13.75f, 2.0f) - curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) - horizontalLineToRelative(1.76f) - curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) - verticalLineToRelative(5.25f) - curveToRelative(-0.47f, -0.2f, -0.98f, -0.34f, -1.5f, -0.42f) - lineTo(18.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.13f) - curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.78f, 0.0f, -1.47f, -0.4f, -1.87f, -1.0f) - lineTo(6.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(5.48f) - curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 6.25f) - curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(1.76f) - curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) - horizontalLineToRelative(3.5f) - close() - moveTo(15.99f, 4.1f) - lineTo(16.0f, 4.25f) - lineTo(16.0f, 4.1f) - close() - moveTo(13.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-3.65f, 3.64f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _clipboardCheckmark!! - } - -private var _clipboardCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardClock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardClock.kt deleted file mode 100644 index f74616e4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardClock.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClipboardClock: ImageVector - get() { - if (_clipboardClock != null) { - return _clipboardClock!! - } - _clipboardClock = fluentIcon(name = "Regular.ClipboardClock") { - fluentPath { - moveTo(12.63f, 13.0f) - verticalLineToRelative(-1.63f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, -1.26f, 0.0f) - verticalLineToRelative(2.25f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.7f, 0.62f) - horizontalLineToRelative(1.31f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.24f) - horizontalLineToRelative(-0.76f) - close() - moveTo(7.25f, 13.0f) - arcToRelative(4.75f, 4.75f, 0.0f, true, true, 9.5f, 0.0f) - arcToRelative(4.75f, 4.75f, 0.0f, false, true, -9.5f, 0.0f) - close() - moveTo(12.0f, 9.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - moveTo(16.0f, 4.08f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 13.74f, 2.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) - lineTo(6.25f, 4.0f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 6.25f) - curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) - horizontalLineToRelative(-1.76f) - verticalLineToRelative(0.08f) - close() - moveTo(16.0f, 4.1f) - verticalLineToRelative(0.15f) - verticalLineToRelative(-0.15f) - close() - moveTo(10.25f, 6.5f) - horizontalLineToRelative(3.5f) - curveToRelative(0.78f, 0.0f, 1.47f, -0.4f, 1.87f, -1.0f) - horizontalLineToRelative(2.13f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(6.25f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(5.5f, 6.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.13f) - curveToRelative(0.4f, 0.6f, 1.09f, 1.0f, 1.87f, 1.0f) - close() - moveTo(10.25f, 3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - } - } - return _clipboardClock!! - } - -private var _clipboardClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardCode.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardCode.kt deleted file mode 100644 index 6e3711dc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardCode.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClipboardCode: ImageVector - get() { - if (_clipboardCode != null) { - return _clipboardCode!! - } - _clipboardCode = fluentIcon(name = "Regular.ClipboardCode") { - fluentPath { - moveTo(13.75f, 2.0f) - curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) - horizontalLineToRelative(1.76f) - curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) - verticalLineToRelative(7.46f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.5f, -1.7f) - lineTo(18.5f, 6.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.13f) - curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.78f, 0.0f, -1.47f, -0.4f, -1.87f, -1.0f) - lineTo(6.25f, 5.51f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(5.38f) - lineToRelative(0.81f, 0.91f) - curveToRelative(0.35f, 0.39f, 0.82f, 0.59f, 1.3f, 0.59f) - lineTo(6.25f, 22.01f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 6.25f) - curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(1.76f) - curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) - horizontalLineToRelative(3.5f) - close() - moveTo(15.99f, 4.1f) - lineTo(16.0f, 4.25f) - lineTo(16.0f, 4.1f) - close() - moveTo(13.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(19.0f, 13.75f) - lineToRelative(-0.03f, 0.21f) - lineToRelative(-2.5f, 8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.44f, -0.42f) - lineToRelative(2.5f, -8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.47f, 0.21f) - close() - moveTo(11.19f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.0f) - lineToRelative(2.0f, -2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.12f, 1.0f) - lineTo(12.75f, 18.0f) - lineToRelative(1.56f, 1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.12f, 1.0f) - lineToRelative(-2.0f, -2.25f) - close() - moveTo(19.75f, 20.81f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.06f, -1.06f) - lineTo(21.25f, 18.0f) - lineToRelative(-1.56f, -1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.12f, -1.0f) - lineToRelative(2.0f, 2.25f) - curveToRelative(0.25f, 0.29f, 0.25f, 0.71f, 0.0f, 1.0f) - lineToRelative(-2.0f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 0.06f) - close() - } - } - return _clipboardCode!! - } - -private var _clipboardCode: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardDataBar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardDataBar.kt deleted file mode 100644 index 9207b46b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardDataBar.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClipboardDataBar: ImageVector - get() { - if (_clipboardDataBar != null) { - return _clipboardDataBar!! - } - _clipboardDataBar = fluentIcon(name = "Regular.ClipboardDataBar") { - fluentPath { - moveTo(15.99f, 4.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) - lineTo(6.25f, 4.0f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 6.25f) - curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) - horizontalLineToRelative(-1.76f) - close() - moveTo(15.99f, 4.1f) - lineTo(16.0f, 4.25f) - lineTo(16.0f, 4.1f) - close() - moveTo(10.25f, 6.5f) - horizontalLineToRelative(3.5f) - curveToRelative(0.78f, 0.0f, 1.47f, -0.4f, 1.87f, -1.0f) - horizontalLineToRelative(2.13f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(6.25f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(5.5f, 6.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.13f) - curveToRelative(0.4f, 0.6f, 1.09f, 1.0f, 1.87f, 1.0f) - close() - moveTo(10.25f, 3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(16.5f, 14.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-3.0f) - close() - moveTo(12.0f, 11.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-5.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(9.0f, 9.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-7.5f) - close() - } - } - return _clipboardDataBar!! - } - -private var _clipboardDataBar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardDay.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardDay.kt deleted file mode 100644 index c7e246a2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardDay.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClipboardDay: ImageVector - get() { - if (_clipboardDay != null) { - return _clipboardDay!! - } - _clipboardDay = fluentIcon(name = "Regular.ClipboardDay") { - fluentPath { - moveTo(8.0f, 9.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 9.75f) - close() - moveTo(9.75f, 12.0f) - curveTo(8.78f, 12.0f, 8.0f, 12.78f, 8.0f, 13.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(4.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-4.5f) - close() - moveTo(9.5f, 13.75f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(4.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-2.5f) - close() - moveTo(13.75f, 2.0f) - curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) - horizontalLineToRelative(1.76f) - curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 6.25f) - curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(1.76f) - curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) - horizontalLineToRelative(3.5f) - close() - moveTo(15.99f, 4.1f) - lineTo(16.0f, 4.25f) - lineTo(16.0f, 4.1f) - close() - moveTo(13.75f, 6.5f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.78f, 0.0f, -1.47f, -0.4f, -1.87f, -1.0f) - lineTo(6.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(18.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.13f) - curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) - close() - moveTo(13.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - } - } - return _clipboardDay!! - } - -private var _clipboardDay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardError.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardError.kt deleted file mode 100644 index afd6e6a5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardError.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClipboardError: ImageVector - get() { - if (_clipboardError != null) { - return _clipboardError!! - } - _clipboardError = fluentIcon(name = "Regular.ClipboardError") { - fluentPath { - moveTo(13.75f, 2.0f) - curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) - horizontalLineToRelative(1.76f) - curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) - verticalLineToRelative(5.25f) - curveToRelative(-0.47f, -0.2f, -0.98f, -0.34f, -1.5f, -0.42f) - lineTo(18.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.13f) - curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.78f, 0.0f, -1.47f, -0.4f, -1.87f, -1.0f) - lineTo(6.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(5.48f) - curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 6.25f) - curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(1.76f) - curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) - horizontalLineToRelative(3.5f) - close() - moveTo(15.99f, 4.1f) - lineTo(16.0f, 4.25f) - lineTo(16.0f, 4.1f) - close() - moveTo(13.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(17.5f, 14.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(17.5f, 21.13f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.25f) - close() - } - } - return _clipboardError!! - } - -private var _clipboardError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardHeart.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardHeart.kt deleted file mode 100644 index 8901726c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardHeart.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClipboardHeart: ImageVector - get() { - if (_clipboardHeart != null) { - return _clipboardHeart!! - } - _clipboardHeart = fluentIcon(name = "Regular.ClipboardHeart") { - fluentPath { - moveTo(20.0f, 6.25f) - verticalLineToRelative(4.98f) - curveToRelative(-0.5f, -0.05f, -1.0f, -0.03f, -1.5f, 0.09f) - lineTo(18.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.13f) - curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.78f, 0.0f, -1.47f, -0.4f, -1.87f, -1.0f) - lineTo(6.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(6.79f) - lineToRelative(1.5f, 1.5f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 6.25f) - curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(1.76f) - curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) - horizontalLineToRelative(3.5f) - curveToRelative(1.16f, 0.0f, 2.11f, 0.87f, 2.24f, 2.0f) - horizontalLineToRelative(1.76f) - curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) - close() - moveTo(16.0f, 4.1f) - verticalLineToRelative(0.15f) - verticalLineToRelative(-0.15f) - close() - moveTo(10.25f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - close() - moveTo(16.48f, 22.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 0.0f) - lineToRelative(4.41f, -4.4f) - arcToRelative(3.47f, 3.47f, 0.0f, true, false, -4.9f, -4.91f) - lineToRelative(-0.04f, 0.04f) - lineToRelative(-0.03f, -0.04f) - arcToRelative(3.47f, 3.47f, 0.0f, true, false, -4.9f, 4.9f) - lineToRelative(4.4f, 4.41f) - close() - } - } - return _clipboardHeart!! - } - -private var _clipboardHeart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardImage.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardImage.kt deleted file mode 100644 index fe9db8fc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardImage.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClipboardImage: ImageVector - get() { - if (_clipboardImage != null) { - return _clipboardImage!! - } - _clipboardImage = fluentIcon(name = "Regular.ClipboardImage") { - fluentPath { - moveTo(13.75f, 2.0f) - curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) - horizontalLineToRelative(1.76f) - curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) - lineTo(20.0f, 11.0f) - horizontalLineToRelative(-1.5f) - lineTo(18.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.13f) - curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.78f, 0.0f, -1.47f, -0.4f, -1.87f, -1.0f) - lineTo(6.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.78f) - curveToRelative(0.07f, 0.54f, 0.24f, 1.05f, 0.5f, 1.5f) - lineTo(6.26f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 6.25f) - curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(1.76f) - curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) - horizontalLineToRelative(3.5f) - close() - moveTo(15.99f, 4.1f) - lineTo(16.0f, 4.25f) - lineTo(16.0f, 4.1f) - close() - moveTo(13.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(15.0f, 12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.56f, 0.15f, 1.08f, 0.42f, 1.52f) - lineToRelative(3.49f, -3.49f) - curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.0f) - lineToRelative(3.5f, 3.5f) - curveToRelative(0.26f, -0.45f, 0.41f, -0.97f, 0.41f, -1.53f) - verticalLineToRelative(-5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - horizontalLineToRelative(-5.0f) - close() - moveTo(15.0f, 23.0f) - curveToRelative(-0.56f, 0.0f, -1.08f, -0.15f, -1.52f, -0.42f) - lineToRelative(3.49f, -3.49f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(3.5f, 3.5f) - curveToRelative(-0.45f, 0.26f, -0.97f, 0.41f, -1.53f, 0.41f) - horizontalLineToRelative(-5.0f) - close() - moveTo(20.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - close() - } - } - return _clipboardImage!! - } - -private var _clipboardImage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardLetter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardLetter.kt deleted file mode 100644 index f7898442..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardLetter.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClipboardLetter: ImageVector - get() { - if (_clipboardLetter != null) { - return _clipboardLetter!! - } - _clipboardLetter = fluentIcon(name = "Regular.ClipboardLetter") { - fluentPath { - moveTo(13.75f, 2.0f) - curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) - horizontalLineToRelative(1.76f) - curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) - verticalLineToRelative(8.27f) - lineToRelative(-1.5f, -3.33f) - lineTo(18.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.13f) - curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.78f, 0.0f, -1.47f, -0.4f, -1.87f, -1.0f) - lineTo(6.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(5.05f) - lineToRelative(-0.17f, 0.38f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -0.05f, 1.12f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 6.25f) - curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(1.76f) - curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) - horizontalLineToRelative(3.5f) - close() - moveTo(15.99f, 4.1f) - lineTo(16.0f, 4.25f) - lineTo(16.0f, 4.1f) - close() - moveTo(13.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(17.45f, 11.3f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.91f, 0.0f) - lineToRelative(-2.7f, 5.99f) - verticalLineToRelative(0.02f) - lineToRelative(-1.8f, 3.98f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.91f, 0.42f) - lineTo(14.62f, 18.0f) - horizontalLineToRelative(4.75f) - lineToRelative(1.67f, 3.7f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.92f, -0.4f) - lineToRelative(-1.8f, -4.0f) - lineToRelative(-0.01f, -0.02f) - lineToRelative(-2.7f, -5.99f) - close() - moveTo(18.92f, 17.0f) - horizontalLineToRelative(-3.85f) - lineToRelative(1.92f, -4.28f) - lineTo(18.92f, 17.0f) - close() - } - } - return _clipboardLetter!! - } - -private var _clipboardLetter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardLink.kt deleted file mode 100644 index a790b3c0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardLink.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClipboardLink: ImageVector - get() { - if (_clipboardLink != null) { - return _clipboardLink!! - } - _clipboardLink = fluentIcon(name = "Regular.ClipboardLink") { - fluentPath { - moveTo(15.99f, 4.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) - lineTo(6.25f, 4.0f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - lineTo(11.0f, 22.0f) - curveToRelative(-0.34f, -0.45f, -0.6f, -0.95f, -0.77f, -1.5f) - lineTo(6.25f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(5.5f, 6.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.13f) - curveToRelative(0.4f, 0.6f, 1.09f, 1.0f, 1.87f, 1.0f) - horizontalLineToRelative(3.5f) - curveToRelative(0.78f, 0.0f, 1.46f, -0.4f, 1.87f, -1.0f) - horizontalLineToRelative(2.13f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(18.5f, 14.0f) - lineTo(20.0f, 14.0f) - lineTo(20.0f, 6.25f) - curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) - horizontalLineToRelative(-1.76f) - close() - moveTo(10.25f, 3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(19.0f, 15.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.2f, 8.0f) - lineTo(19.0f, 23.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.16f, -5.0f) - lineTo(19.0f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(15.0f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(15.0f, 16.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -0.16f, 5.0f) - lineTo(15.0f, 21.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(15.0f, 23.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -0.2f, -8.0f) - horizontalLineToRelative(0.2f) - close() - moveTo(15.25f, 18.25f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - } - } - return _clipboardLink!! - } - -private var _clipboardLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardMonth.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardMonth.kt deleted file mode 100644 index 83bdb515..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardMonth.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClipboardMonth: ImageVector - get() { - if (_clipboardMonth != null) { - return _clipboardMonth!! - } - _clipboardMonth = fluentIcon(name = "Regular.ClipboardMonth") { - fluentPath { - moveTo(8.25f, 12.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - moveTo(8.25f, 16.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - moveTo(17.5f, 11.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(12.25f, 12.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - moveTo(13.5f, 15.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(16.0f, 4.08f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 13.74f, 2.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) - lineTo(6.25f, 4.0f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 6.25f) - curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) - horizontalLineToRelative(-1.76f) - verticalLineToRelative(0.08f) - close() - moveTo(16.0f, 4.1f) - verticalLineToRelative(0.15f) - verticalLineToRelative(-0.15f) - close() - moveTo(10.25f, 6.5f) - horizontalLineToRelative(3.5f) - curveToRelative(0.78f, 0.0f, 1.47f, -0.4f, 1.87f, -1.0f) - horizontalLineToRelative(2.13f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(6.25f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(5.5f, 6.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.13f) - curveToRelative(0.4f, 0.6f, 1.09f, 1.0f, 1.87f, 1.0f) - close() - moveTo(10.25f, 3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - } - } - return _clipboardMonth!! - } - -private var _clipboardMonth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardMore.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardMore.kt deleted file mode 100644 index 6278c46b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardMore.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClipboardMore: ImageVector - get() { - if (_clipboardMore != null) { - return _clipboardMore!! - } - _clipboardMore = fluentIcon(name = "Regular.ClipboardMore") { - fluentPath { - moveTo(15.99f, 4.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) - lineTo(6.25f, 4.0f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - lineTo(8.5f, 22.0f) - curveToRelative(-0.31f, -0.42f, -0.5f, -0.94f, -0.5f, -1.5f) - lineTo(6.25f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(5.5f, 6.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.13f) - curveToRelative(0.4f, 0.6f, 1.09f, 1.0f, 1.87f, 1.0f) - horizontalLineToRelative(3.5f) - curveToRelative(0.78f, 0.0f, 1.47f, -0.4f, 1.87f, -1.0f) - horizontalLineToRelative(2.13f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(18.5f, 19.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 1.5f, -0.95f) - lineTo(20.0f, 6.25f) - curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) - horizontalLineToRelative(-1.76f) - close() - moveTo(15.99f, 4.1f) - lineTo(16.0f, 4.25f) - lineTo(16.0f, 4.1f) - close() - moveTo(10.25f, 3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(12.0f, 20.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - moveTo(15.5f, 22.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - close() - moveTo(20.5f, 22.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - close() - } - } - return _clipboardMore!! - } - -private var _clipboardMore: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardPulse.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardPulse.kt deleted file mode 100644 index bbb21585..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardPulse.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClipboardPulse: ImageVector - get() { - if (_clipboardPulse != null) { - return _clipboardPulse!! - } - _clipboardPulse = fluentIcon(name = "Regular.ClipboardPulse") { - fluentPath { - moveTo(13.75f, 2.0f) - curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) - horizontalLineToRelative(1.76f) - curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) - lineTo(20.0f, 13.0f) - horizontalLineToRelative(-1.5f) - lineTo(18.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.13f) - curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.78f, 0.0f, -1.47f, -0.4f, -1.87f, -1.0f) - lineTo(6.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(5.5f, 13.0f) - lineTo(4.0f, 13.0f) - lineTo(4.0f, 6.25f) - curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(1.76f) - curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) - horizontalLineToRelative(3.5f) - close() - moveTo(15.99f, 4.1f) - lineTo(16.0f, 4.25f) - lineTo(16.0f, 4.1f) - close() - moveTo(13.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(18.5f, 16.5f) - lineTo(20.0f, 16.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 16.5f) - horizontalLineToRelative(1.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(18.5f, 16.5f) - close() - moveTo(10.97f, 8.54f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.4f, -0.13f) - lineTo(6.8f, 14.0f) - lineTo(2.75f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.5f) - curveToRelative(0.28f, 0.0f, 0.54f, -0.16f, 0.67f, -0.41f) - lineToRelative(2.15f, -4.3f) - lineToRelative(1.96f, 6.67f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.4f, 0.13f) - lineToRelative(1.88f, -3.78f) - lineToRelative(0.8f, 1.33f) - curveToRelative(0.13f, 0.22f, 0.38f, 0.36f, 0.64f, 0.36f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.08f) - lineToRelative(-1.28f, -2.14f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.31f, 0.05f) - lineToRelative(-1.65f, 3.3f) - lineToRelative(-1.96f, -6.67f) - close() - } - } - return _clipboardPulse!! - } - -private var _clipboardPulse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardSearch.kt deleted file mode 100644 index 18b622d1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardSearch.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClipboardSearch: ImageVector - get() { - if (_clipboardSearch != null) { - return _clipboardSearch!! - } - _clipboardSearch = fluentIcon(name = "Regular.ClipboardSearch") { - fluentPath { - moveTo(15.99f, 4.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) - lineTo(6.25f, 4.0f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) - verticalLineToRelative(3.85f) - curveToRelative(0.47f, -0.24f, 0.97f, -0.41f, 1.5f, -0.5f) - lineTo(5.5f, 6.24f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.13f) - curveToRelative(0.4f, 0.6f, 1.09f, 1.0f, 1.87f, 1.0f) - horizontalLineToRelative(3.5f) - curveToRelative(0.78f, 0.0f, 1.47f, -0.4f, 1.87f, -1.0f) - horizontalLineToRelative(2.13f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-3.92f) - curveToRelative(0.23f, 0.47f, 0.23f, 1.03f, 0.0f, 1.5f) - horizontalLineToRelative(3.92f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 6.25f) - curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) - horizontalLineToRelative(-1.76f) - close() - moveTo(15.99f, 4.1f) - lineTo(16.0f, 4.25f) - lineTo(16.0f, 4.1f) - close() - moveTo(10.25f, 3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(9.95f, 17.89f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, -1.15f, 0.98f) - lineToRelative(2.92f, 2.91f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.83f, -2.83f) - close() - moveTo(6.5f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) - close() - } - } - return _clipboardSearch!! - } - -private var _clipboardSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardSettings.kt deleted file mode 100644 index c9a0cd7c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardSettings.kt +++ /dev/null @@ -1,95 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClipboardSettings: ImageVector - get() { - if (_clipboardSettings != null) { - return _clipboardSettings!! - } - _clipboardSettings = fluentIcon(name = "Regular.ClipboardSettings") { - fluentPath { - moveTo(13.75f, 2.0f) - curveToRelative(1.16f, 0.0f, 2.11f, 0.87f, 2.24f, 2.0f) - horizontalLineToRelative(1.76f) - curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) - verticalLineToRelative(5.25f) - curveToRelative(-0.47f, -0.2f, -0.98f, -0.34f, -1.5f, -0.42f) - lineTo(18.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.13f) - curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.78f, 0.0f, -1.47f, -0.4f, -1.87f, -1.0f) - lineTo(6.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(5.48f) - curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 6.25f) - curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(1.76f) - curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) - horizontalLineToRelative(3.5f) - close() - moveTo(15.99f, 4.03f) - lineTo(15.99f, 4.0f) - verticalLineToRelative(0.03f) - close() - moveTo(15.99f, 4.1f) - lineTo(16.0f, 4.25f) - verticalLineToRelative(-0.17f) - verticalLineToRelative(0.02f) - close() - moveTo(13.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(14.28f, 13.98f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.59f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) - lineToRelative(0.55f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) - lineToRelative(-0.19f, 0.64f) - curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) - lineToRelative(0.49f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) - lineToRelative(-0.2f, -0.69f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) - lineToRelative(0.59f, -0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, -1.8f) - lineToRelative(-0.55f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.19f, -0.63f) - curveToRelative(-0.44f, -0.4f, -0.94f, -0.7f, -1.49f, -0.93f) - lineToRelative(-0.49f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) - lineToRelative(0.2f, 0.7f) - close() - moveTo(17.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) - close() - } - } - return _clipboardSettings!! - } - -private var _clipboardSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardTask.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardTask.kt deleted file mode 100644 index a215fd3a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardTask.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClipboardTask: ImageVector - get() { - if (_clipboardTask != null) { - return _clipboardTask!! - } - _clipboardTask = fluentIcon(name = "Regular.ClipboardTask") { - fluentPath { - moveTo(17.03f, 11.03f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineTo(11.0f, 14.94f) - lineToRelative(-1.97f, -1.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(2.5f, 2.5f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(5.5f, -5.5f) - close() - moveTo(15.99f, 4.08f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 13.75f, 2.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) - lineTo(6.25f, 4.0f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 6.25f) - curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) - horizontalLineToRelative(-1.76f) - verticalLineToRelative(0.08f) - close() - moveTo(15.99f, 4.1f) - lineTo(16.0f, 4.25f) - lineTo(16.0f, 4.1f) - close() - moveTo(10.25f, 6.5f) - horizontalLineToRelative(3.5f) - curveToRelative(0.78f, 0.0f, 1.47f, -0.4f, 1.87f, -1.0f) - horizontalLineToRelative(2.13f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(6.25f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(5.5f, 6.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.13f) - curveToRelative(0.4f, 0.6f, 1.09f, 1.0f, 1.87f, 1.0f) - close() - moveTo(10.25f, 3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - } - } - return _clipboardTask!! - } - -private var _clipboardTask: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardTaskAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardTaskAdd.kt deleted file mode 100644 index 29c2d17f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardTaskAdd.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClipboardTaskAdd: ImageVector - get() { - if (_clipboardTaskAdd != null) { - return _clipboardTaskAdd!! - } - _clipboardTaskAdd = fluentIcon(name = "Regular.ClipboardTaskAdd") { - fluentPath { - moveTo(13.99f, 4.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) - lineTo(4.25f, 4.0f) - curveTo(3.01f, 4.0f, 2.0f, 5.0f, 2.0f, 6.25f) - verticalLineToRelative(13.5f) - curveTo(2.0f, 20.99f, 3.0f, 22.0f, 4.25f, 22.0f) - horizontalLineToRelative(8.56f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, -1.5f) - lineTo(4.25f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(3.5f, 6.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.13f) - curveToRelative(0.4f, 0.6f, 1.09f, 1.0f, 1.87f, 1.0f) - horizontalLineToRelative(3.5f) - curveToRelative(0.78f, 0.0f, 1.47f, -0.4f, 1.87f, -1.0f) - horizontalLineToRelative(2.13f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(4.83f) - arcToRelative(6.55f, 6.55f, 0.0f, false, true, 1.5f, -0.06f) - lineTo(18.0f, 6.25f) - curveTo(18.0f, 5.01f, 17.0f, 4.0f, 15.75f, 4.0f) - horizontalLineToRelative(-1.76f) - close() - moveTo(13.99f, 4.1f) - lineTo(14.0f, 4.25f) - lineTo(14.0f, 4.1f) - close() - moveTo(8.25f, 3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(11.95f, 14.1f) - arcToRelative(6.54f, 6.54f, 0.0f, false, true, 2.15f, -2.14f) - lineToRelative(0.93f, -0.93f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineTo(9.0f, 14.94f) - lineToRelative(-1.97f, -1.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(2.5f, 2.5f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.43f, -2.43f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _clipboardTaskAdd!! - } - -private var _clipboardTaskAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardTaskListLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardTaskListLtr.kt deleted file mode 100644 index 71f6e963..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardTaskListLtr.kt +++ /dev/null @@ -1,93 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClipboardTaskListLtr: ImageVector - get() { - if (_clipboardTaskListLtr != null) { - return _clipboardTaskListLtr!! - } - _clipboardTaskListLtr = fluentIcon(name = "Regular.ClipboardTaskListLtr") { - fluentPath { - moveTo(12.5f, 10.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(13.25f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - close() - moveTo(10.78f, 9.78f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-1.47f, 1.47f) - lineToRelative(-0.47f, -0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(1.0f, 1.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.0f, -2.0f) - close() - moveTo(10.78f, 14.22f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-2.0f, 2.0f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-1.0f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(0.47f, 0.47f) - lineToRelative(1.47f, -1.47f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(15.99f, 4.08f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 13.75f, 2.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) - lineTo(6.25f, 4.0f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 6.25f) - curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) - horizontalLineToRelative(-1.76f) - verticalLineToRelative(0.08f) - close() - moveTo(15.99f, 4.1f) - lineTo(16.0f, 4.25f) - lineTo(16.0f, 4.1f) - close() - moveTo(10.25f, 6.5f) - horizontalLineToRelative(3.5f) - curveToRelative(0.78f, 0.0f, 1.47f, -0.4f, 1.87f, -1.0f) - horizontalLineToRelative(2.13f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(6.25f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(5.5f, 6.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.13f) - curveToRelative(0.4f, 0.6f, 1.09f, 1.0f, 1.87f, 1.0f) - close() - moveTo(10.25f, 3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - } - } - return _clipboardTaskListLtr!! - } - -private var _clipboardTaskListLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardTaskListRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardTaskListRtl.kt deleted file mode 100644 index 62c9c0ae..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardTaskListRtl.kt +++ /dev/null @@ -1,88 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClipboardTaskListRtl: ImageVector - get() { - if (_clipboardTaskListRtl != null) { - return _clipboardTaskListRtl!! - } - _clipboardTaskListRtl = fluentIcon(name = "Regular.ClipboardTaskListRtl") { - fluentPath { - moveTo(17.28f, 8.72f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-2.0f, 2.0f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-1.0f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(0.47f, 0.47f) - lineToRelative(1.47f, -1.47f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(17.28f, 15.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-1.47f, 1.47f) - lineToRelative(-0.47f, -0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.0f, 1.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.0f, -2.0f) - close() - moveTo(7.0f, 10.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(7.75f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - close() - moveTo(15.99f, 4.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) - lineTo(6.25f, 4.0f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 6.25f) - curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) - horizontalLineToRelative(-1.76f) - close() - moveTo(10.25f, 6.5f) - horizontalLineToRelative(3.5f) - curveToRelative(0.78f, 0.0f, 1.47f, -0.4f, 1.87f, -1.0f) - horizontalLineToRelative(2.13f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(6.25f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(5.5f, 6.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.13f) - curveToRelative(0.4f, 0.6f, 1.09f, 1.0f, 1.87f, 1.0f) - close() - moveTo(10.25f, 3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - } - } - return _clipboardTaskListRtl!! - } - -private var _clipboardTaskListRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardTextEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardTextEdit.kt deleted file mode 100644 index 7c408f15..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardTextEdit.kt +++ /dev/null @@ -1,88 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClipboardTextEdit: ImageVector - get() { - if (_clipboardTextEdit != null) { - return _clipboardTextEdit!! - } - _clipboardTextEdit = fluentIcon(name = "Regular.ClipboardTextEdit") { - fluentPath { - moveTo(15.99f, 4.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) - lineTo(6.25f, 4.0f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - lineTo(11.0f, 22.0f) - curveToRelative(0.0f, -0.2f, 0.01f, -0.4f, 0.06f, -0.6f) - lineToRelative(0.23f, -0.9f) - lineTo(6.25f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(5.5f, 6.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.13f) - curveToRelative(0.4f, 0.6f, 1.09f, 1.0f, 1.87f, 1.0f) - horizontalLineToRelative(3.5f) - curveToRelative(0.78f, 0.0f, 1.47f, -0.4f, 1.87f, -1.0f) - horizontalLineToRelative(2.13f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(5.61f) - curveToRelative(0.44f, -0.4f, 0.96f, -0.66f, 1.5f, -0.78f) - lineTo(20.0f, 6.25f) - curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) - horizontalLineToRelative(-1.76f) - close() - moveTo(15.99f, 4.1f) - lineTo(16.0f, 4.25f) - lineTo(16.0f, 4.1f) - close() - moveTo(10.25f, 3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(13.35f, 17.0f) - lineTo(8.0f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.98f) - curveToRelative(0.15f, -0.23f, 0.32f, -0.44f, 0.51f, -0.64f) - lineToRelative(0.87f, -0.86f) - close() - moveTo(12.0f, 14.5f) - lineTo(8.0f, 14.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 13.0f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(16.0f, 10.5f) - lineTo(8.0f, 10.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 9.0f) - horizontalLineToRelative(8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _clipboardTextEdit!! - } - -private var _clipboardTextEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardTextLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardTextLtr.kt deleted file mode 100644 index d234588e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardTextLtr.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClipboardTextLtr: ImageVector - get() { - if (_clipboardTextLtr != null) { - return _clipboardTextLtr!! - } - _clipboardTextLtr = fluentIcon(name = "Regular.ClipboardTextLtr") { - fluentPath { - moveTo(13.75f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - lineToRelative(-0.01f, -0.25f) - horizontalLineToRelative(1.76f) - curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 6.25f) - curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(1.76f) - verticalLineToRelative(0.18f) - lineTo(8.0f, 4.25f) - curveTo(8.0f, 3.01f, 9.0f, 2.0f, 10.25f, 2.0f) - horizontalLineToRelative(3.5f) - close() - moveTo(13.75f, 6.5f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.8f, 0.0f, -1.5f, -0.41f, -1.9f, -1.03f) - lineToRelative(0.03f, 0.03f) - lineTo(6.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(18.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.13f) - lineToRelative(0.02f, -0.03f) - curveToRelative(-0.4f, 0.62f, -1.1f, 1.03f, -1.89f, 1.03f) - close() - moveTo(13.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(8.0f, 14.5f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(8.0f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(8.0f, 10.5f) - horizontalLineToRelative(8.0f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 16.0f, 9.0f) - lineTo(8.0f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(8.0f, 18.5f) - horizontalLineToRelative(6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(8.0f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - } - } - return _clipboardTextLtr!! - } - -private var _clipboardTextLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardTextRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardTextRtl.kt deleted file mode 100644 index d4381614..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClipboardTextRtl.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClipboardTextRtl: ImageVector - get() { - if (_clipboardTextRtl != null) { - return _clipboardTextRtl!! - } - _clipboardTextRtl = fluentIcon(name = "Regular.ClipboardTextRtl") { - fluentPath { - moveTo(8.0f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.0f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 16.0f, 9.0f) - horizontalLineTo(8.0f) - close() - } - fluentPath { - moveTo(11.25f, 13.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - fluentPath { - moveTo(10.0f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.0f) - close() - } - fluentPath { - moveTo(15.99f, 4.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) - lineTo(6.25f, 4.0f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 6.25f) - curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) - horizontalLineToRelative(-1.76f) - close() - moveTo(15.99f, 4.1f) - lineTo(16.0f, 4.25f) - lineTo(16.0f, 4.1f) - close() - moveTo(10.25f, 6.5f) - horizontalLineToRelative(3.5f) - curveToRelative(0.78f, 0.0f, 1.47f, -0.4f, 1.87f, -1.0f) - horizontalLineToRelative(2.13f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(6.25f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(5.5f, 6.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.13f) - curveToRelative(0.4f, 0.6f, 1.09f, 1.0f, 1.87f, 1.0f) - close() - moveTo(10.25f, 3.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - } - } - return _clipboardTextRtl!! - } - -private var _clipboardTextRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClockAlarm.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClockAlarm.kt deleted file mode 100644 index dd5a7960..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClockAlarm.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClockAlarm: ImageVector - get() { - if (_clockAlarm != null) { - return _clockAlarm!! - } - _clockAlarm = fluentIcon(name = "Regular.ClockAlarm") { - fluentPath { - moveTo(12.0f, 7.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(12.0f, 12.0f) - lineTo(12.0f, 7.75f) - close() - moveTo(3.48f, 9.1f) - arcTo(4.0f, 4.0f, 0.0f, true, true, 9.1f, 3.48f) - arcToRelative(8.99f, 8.99f, 0.0f, false, true, 5.8f, 0.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, 5.62f, 5.62f) - arcToRelative(8.99f, 8.99f, 0.0f, false, true, -1.65f, 8.71f) - lineToRelative(1.91f, 1.91f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-1.9f, -1.9f) - arcToRelative(8.96f, 8.96f, 0.0f, false, true, -11.63f, 0.0f) - lineToRelative(-1.91f, 1.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(1.9f, -1.9f) - arcTo(8.96f, 8.96f, 0.0f, false, true, 3.49f, 9.1f) - close() - moveTo(3.5f, 6.0f) - curveToRelative(0.0f, 0.63f, 0.23f, 1.2f, 0.62f, 1.65f) - arcToRelative(9.04f, 9.04f, 0.0f, false, true, 3.53f, -3.53f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 3.5f, 6.0f) - close() - moveTo(19.88f, 7.65f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -3.53f, -3.53f) - arcToRelative(9.04f, 9.04f, 0.0f, false, true, 3.53f, 3.53f) - close() - moveTo(4.5f, 12.0f) - arcToRelative(7.5f, 7.5f, 0.0f, true, false, 15.0f, 0.0f) - arcToRelative(7.5f, 7.5f, 0.0f, false, false, -15.0f, 0.0f) - close() - } - } - return _clockAlarm!! - } - -private var _clockAlarm: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClockArrowDownload.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClockArrowDownload.kt deleted file mode 100644 index 32cdf766..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClockArrowDownload.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClockArrowDownload: ImageVector - get() { - if (_clockArrowDownload != null) { - return _clockArrowDownload!! - } - _clockArrowDownload = fluentIcon(name = "Regular.ClockArrowDownload") { - fluentPath { - moveTo(4.5f, 11.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 8.19f, 8.5f) - curveToRelative(-0.17f, 0.51f, -0.4f, 1.0f, -0.68f, 1.45f) - arcTo(10.0f, 10.0f, 0.0f, true, false, 3.05f, 12.0f) - curveToRelative(0.45f, -0.28f, 0.94f, -0.51f, 1.46f, -0.68f) - lineTo(4.5f, 11.0f) - close() - moveTo(13.0f, 5.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - verticalLineToRelative(6.1f) - curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) - horizontalLineToRelative(4.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - lineTo(13.0f, 11.0f) - lineTo(13.0f, 5.65f) - close() - moveTo(1.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 5.0f, -5.48f) - verticalLineToRelative(5.77f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.5f, 2.5f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineTo(7.0f, 17.79f) - verticalLineToRelative(-5.77f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -6.0f, 5.48f) - close() - moveTo(9.5f, 20.5f) - arcTo(0.5f, 0.5f, 0.0f, false, false, 9.0f, 20.0f) - lineTo(4.0f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - close() - } - } - return _clockArrowDownload!! - } - -private var _clockArrowDownload: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClockDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClockDismiss.kt deleted file mode 100644 index 77587cbb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClockDismiss.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClockDismiss: ImageVector - get() { - if (_clockDismiss != null) { - return _clockDismiss!! - } - _clockDismiss = fluentIcon(name = "Regular.ClockDismiss") { - fluentPath { - moveTo(4.5f, 11.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 8.19f, 8.5f) - curveToRelative(-0.17f, 0.51f, -0.4f, 1.0f, -0.68f, 1.45f) - arcTo(10.0f, 10.0f, 0.0f, true, false, 3.05f, 12.0f) - curveToRelative(0.45f, -0.28f, 0.94f, -0.51f, 1.46f, -0.68f) - lineTo(4.5f, 11.0f) - close() - moveTo(13.0f, 5.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - verticalLineToRelative(6.1f) - curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) - horizontalLineToRelative(4.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - lineTo(13.0f, 11.0f) - lineTo(13.0f, 5.65f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(6.5f, 16.8f) - lineTo(4.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineTo(7.21f, 17.5f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineTo(6.5f, 16.79f) - close() - } - } - return _clockDismiss!! - } - -private var _clockDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClockLock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClockLock.kt deleted file mode 100644 index c02b6294..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClockLock.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClockLock: ImageVector - get() { - if (_clockLock != null) { - return _clockLock!! - } - _clockLock = fluentIcon(name = "Regular.ClockLock") { - fluentPath { - moveTo(11.0f, 21.5f) - verticalLineToRelative(-1.06f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, -7.45f, -9.35f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -1.47f, 2.17f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 8.88f, 8.69f) - curveToRelative(0.03f, -0.15f, 0.04f, -0.3f, 0.04f, -0.45f) - close() - moveTo(12.0f, 6.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - verticalLineToRelative(6.1f) - curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) - horizontalLineToRelative(4.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - lineTo(12.0f, 12.0f) - lineTo(12.0f, 6.65f) - close() - moveTo(3.0f, 15.0f) - verticalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(0.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-6.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 1.0f, 21.5f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - lineTo(3.0f, 15.0f) - close() - moveTo(4.5f, 14.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - close() - moveTo(6.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - } - } - return _clockLock!! - } - -private var _clockLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClockPause.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClockPause.kt deleted file mode 100644 index ca331c9c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClockPause.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClockPause: ImageVector - get() { - if (_clockPause != null) { - return _clockPause!! - } - _clockPause = fluentIcon(name = "Regular.ClockPause") { - fluentPath { - moveTo(4.5f, 11.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 8.19f, 8.5f) - curveToRelative(-0.17f, 0.51f, -0.4f, 1.0f, -0.68f, 1.45f) - arcTo(10.0f, 10.0f, 0.0f, true, false, 3.05f, 12.0f) - curveToRelative(0.45f, -0.28f, 0.94f, -0.51f, 1.46f, -0.68f) - lineTo(4.5f, 11.0f) - close() - moveTo(13.0f, 5.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - verticalLineToRelative(6.1f) - curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) - horizontalLineToRelative(4.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - lineTo(13.0f, 11.0f) - lineTo(13.0f, 5.65f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(4.5f, 20.5f) - arcTo(0.5f, 0.5f, 0.0f, false, false, 5.0f, 20.0f) - verticalLineToRelative(-5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - close() - moveTo(8.5f, 20.5f) - arcTo(0.5f, 0.5f, 0.0f, false, false, 9.0f, 20.0f) - verticalLineToRelative(-5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - close() - } - } - return _clockPause!! - } - -private var _clockPause: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClockToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClockToolbox.kt deleted file mode 100644 index f01752e9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClockToolbox.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClockToolbox: ImageVector - get() { - if (_clockToolbox != null) { - return _clockToolbox!! - } - _clockToolbox = fluentIcon(name = "Regular.ClockToolbox") { - fluentPath { - moveTo(4.5f, 11.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 8.5f, 8.5f) - lineTo(13.0f, 21.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -9.98f, -9.39f) - curveToRelative(0.41f, -0.33f, 0.92f, -0.55f, 1.48f, -0.6f) - lineTo(4.5f, 11.0f) - close() - moveTo(13.0f, 5.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - verticalLineToRelative(6.1f) - curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) - horizontalLineToRelative(4.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - lineTo(13.0f, 11.0f) - lineTo(13.0f, 5.65f) - close() - moveTo(8.24f, 13.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - lineTo(4.49f, 15.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-1.25f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(3.0f, 15.0f) - verticalLineToRelative(-1.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(3.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(10.0f, 15.0f) - horizontalLineToRelative(0.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - lineTo(12.0f, 18.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(0.5f) - lineTo(4.0f, 18.0f) - verticalLineToRelative(-0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(0.5f) - lineTo(1.0f, 18.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - lineTo(3.0f, 15.0f) - close() - moveTo(9.0f, 19.5f) - lineTo(9.0f, 19.0f) - lineTo(4.0f, 19.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - lineTo(3.0f, 19.0f) - lineTo(1.0f, 19.0f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(8.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - lineTo(12.0f, 19.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - close() - } - } - return _clockToolbox!! - } - -private var _clockToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClosedCaption.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClosedCaption.kt deleted file mode 100644 index ef897374..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClosedCaption.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClosedCaption: ImageVector - get() { - if (_closedCaption != null) { - return _closedCaption!! - } - _closedCaption = fluentIcon(name = "Regular.ClosedCaption") { - fluentPath { - moveTo(18.75f, 4.0f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(5.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(5.25f, 4.0f) - horizontalLineToRelative(13.5f) - close() - moveTo(18.75f, 5.5f) - lineTo(5.11f, 5.5f) - curveToRelative(-0.9f, 0.08f, -1.61f, 0.83f, -1.61f, 1.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(5.5f, 12.0f) - curveToRelative(0.0f, -3.15f, 2.71f, -4.78f, 5.12f, -3.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 1.3f) - curveTo(8.48f, 9.1f, 7.0f, 10.0f, 7.0f, 12.0f) - reflectiveCurveToRelative(1.48f, 2.9f, 2.88f, 2.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.74f, 1.3f) - curveToRelative(-2.4f, 1.37f, -5.12f, -0.26f, -5.12f, -3.4f) - close() - moveTo(13.0f, 12.0f) - curveToRelative(0.0f, -3.15f, 2.71f, -4.78f, 5.12f, -3.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 1.3f) - curveToRelative(-1.4f, -0.8f, -2.88f, 0.1f, -2.88f, 2.1f) - reflectiveCurveToRelative(1.48f, 2.9f, 2.88f, 2.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.74f, 1.3f) - curveTo(15.72f, 16.78f, 13.0f, 15.15f, 13.0f, 12.0f) - close() - } - } - return _closedCaption!! - } - -private var _closedCaption: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClosedCaptionOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClosedCaptionOff.kt deleted file mode 100644 index 0ae093a6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ClosedCaptionOff.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ClosedCaptionOff: ImageVector - get() { - if (_closedCaptionOff != null) { - return _closedCaptionOff!! - } - _closedCaptionOff = fluentIcon(name = "Regular.ClosedCaptionOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(1.25f, 1.25f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) - horizontalLineToRelative(13.69f) - lineToRelative(1.78f, 1.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(17.44f, 18.5f) - lineTo(5.25f, 18.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.73f, 0.44f, -1.35f, 1.07f, -1.61f) - lineTo(7.4f, 8.46f) - curveTo(6.3f, 9.04f, 5.5f, 10.3f, 5.5f, 12.0f) - curveToRelative(0.0f, 3.14f, 2.72f, 4.77f, 5.12f, 3.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.74f, -1.3f) - curveTo(8.48f, 14.9f, 7.0f, 14.0f, 7.0f, 12.0f) - curveToRelative(0.0f, -1.37f, 0.69f, -2.22f, 1.57f, -2.37f) - lineToRelative(8.87f, 8.87f) - close() - moveTo(20.43f, 17.25f) - curveToRelative(0.05f, -0.16f, 0.07f, -0.32f, 0.07f, -0.5f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(8.68f, 5.5f) - lineTo(7.18f, 4.0f) - horizontalLineToRelative(11.57f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.6f, -0.16f, 1.15f, -0.44f, 1.63f) - lineToRelative(-1.13f, -1.13f) - close() - moveTo(14.55f, 11.37f) - lineTo(13.35f, 10.17f) - arcToRelative(3.26f, 3.26f, 0.0f, false, true, 4.77f, -1.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 1.3f) - curveToRelative(-1.24f, -0.7f, -2.55f, -0.08f, -2.83f, 1.47f) - close() - } - } - return _closedCaptionOff!! - } - -private var _closedCaptionOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudAdd.kt deleted file mode 100644 index 1b093cc4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudAdd.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CloudAdd: ImageVector - get() { - if (_cloudAdd != null) { - return _cloudAdd!! - } - _cloudAdd = fluentIcon(name = "Regular.CloudAdd") { - fluentPath { - moveTo(12.0f, 4.5f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.5f, 4.29f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 0.71f) - lineTo(6.5f, 9.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - horizontalLineToRelative(3.58f) - arcToRelative(6.55f, 6.55f, 0.0f, false, false, -0.06f, 1.5f) - lineTo(6.5f, 17.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.05f, 4.97f) - arcToRelative(6.53f, 6.53f, 0.0f, false, false, -1.8f, -1.85f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 17.5f, 9.5f) - horizontalLineToRelative(-0.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.71f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 4.5f) - close() - moveTo(22.0f, 16.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(17.0f, 17.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(16.0f, 17.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(16.0f, 16.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(17.0f, 16.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(17.0f, 17.0f) - close() - } - } - return _cloudAdd!! - } - -private var _cloudAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudArchive.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudArchive.kt deleted file mode 100644 index 391f6130..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudArchive.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CloudArchive: ImageVector - get() { - if (_cloudArchive != null) { - return _cloudArchive!! - } - _cloudArchive = fluentIcon(name = "Regular.CloudArchive") { - fluentPath { - moveTo(12.0f, 5.5f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.5f, 4.29f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 0.71f) - lineTo(6.5f, 10.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - horizontalLineToRelative(5.18f) - curveToRelative(0.1f, 0.09f, 0.2f, 0.17f, 0.32f, 0.23f) - lineTo(12.0f, 18.0f) - lineTo(6.5f, 18.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) - arcTo(4.5f, 4.5f, 0.0f, false, true, 21.74f, 12.0f) - lineTo(20.1f, 12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -2.6f, -1.5f) - horizontalLineToRelative(-0.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.71f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 5.5f) - close() - moveTo(13.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineToRelative(-9.0f) - close() - moveTo(20.0f, 23.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-9.0f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(15.5f, 18.5f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - } - } - return _cloudArchive!! - } - -private var _cloudArchive: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudArrowDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudArrowDown.kt deleted file mode 100644 index 1abfa26a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudArrowDown.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CloudArrowDown: ImageVector - get() { - if (_cloudArrowDown != null) { - return _cloudArrowDown!! - } - _cloudArrowDown = fluentIcon(name = "Regular.CloudArrowDown") { - fluentPath { - moveTo(12.0f, 4.5f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.5f, 4.29f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 0.71f) - lineTo(6.5f, 9.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - horizontalLineToRelative(3.58f) - arcToRelative(6.55f, 6.55f, 0.0f, false, false, -0.06f, 1.5f) - lineTo(6.5f, 17.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.05f, 4.97f) - arcToRelative(6.53f, 6.53f, 0.0f, false, false, -1.8f, -1.85f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 17.5f, 9.5f) - horizontalLineToRelative(-0.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.71f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 4.5f) - close() - moveTo(22.0f, 16.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(17.0f, 13.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(4.8f) - lineToRelative(-1.65f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.5f, 2.5f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineTo(17.0f, 18.29f) - lineTo(17.0f, 13.5f) - close() - } - } - return _cloudArrowDown!! - } - -private var _cloudArrowDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudArrowUp.kt deleted file mode 100644 index b46b2f81..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudArrowUp.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CloudArrowUp: ImageVector - get() { - if (_cloudArrowUp != null) { - return _cloudArrowUp!! - } - _cloudArrowUp = fluentIcon(name = "Regular.CloudArrowUp") { - fluentPath { - moveTo(12.0f, 4.5f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.5f, 4.29f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 0.71f) - lineTo(6.5f, 9.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - horizontalLineToRelative(3.58f) - arcToRelative(6.55f, 6.55f, 0.0f, false, false, -0.06f, 1.5f) - lineTo(6.5f, 17.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.05f, 4.97f) - arcToRelative(6.53f, 6.53f, 0.0f, false, false, -1.8f, -1.85f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 17.5f, 9.5f) - horizontalLineToRelative(-0.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.71f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 4.5f) - close() - moveTo(22.0f, 16.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(16.0f, 19.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-4.8f) - lineToRelative(1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineTo(16.0f, 14.71f) - verticalLineToRelative(4.79f) - close() - } - } - return _cloudArrowUp!! - } - -private var _cloudArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudCheckmark.kt deleted file mode 100644 index 2fbdc474..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudCheckmark.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CloudCheckmark: ImageVector - get() { - if (_cloudCheckmark != null) { - return _cloudCheckmark!! - } - _cloudCheckmark = fluentIcon(name = "Regular.CloudCheckmark") { - fluentPath { - moveTo(12.0f, 4.5f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.5f, 4.29f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 0.71f) - lineTo(6.5f, 9.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - horizontalLineToRelative(3.58f) - arcToRelative(6.55f, 6.55f, 0.0f, false, false, -0.06f, 1.5f) - lineTo(6.5f, 17.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.05f, 4.97f) - arcToRelative(6.53f, 6.53f, 0.0f, false, false, -1.8f, -1.85f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 17.5f, 9.5f) - horizontalLineToRelative(-0.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.71f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 4.5f) - close() - moveTo(22.0f, 16.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(19.85f, 14.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-3.65f, 3.64f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _cloudCheckmark!! - } - -private var _cloudCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudDismiss.kt deleted file mode 100644 index c591b0af..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudDismiss.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CloudDismiss: ImageVector - get() { - if (_cloudDismiss != null) { - return _cloudDismiss!! - } - _cloudDismiss = fluentIcon(name = "Regular.CloudDismiss") { - fluentPath { - moveTo(12.0f, 4.5f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.5f, 4.29f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 0.71f) - lineTo(6.5f, 9.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - horizontalLineToRelative(3.58f) - arcToRelative(6.55f, 6.55f, 0.0f, false, false, -0.06f, 1.5f) - lineTo(6.5f, 17.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.05f, 4.97f) - arcToRelative(6.53f, 6.53f, 0.0f, false, false, -1.8f, -1.85f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 17.5f, 9.5f) - horizontalLineToRelative(-0.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.71f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 4.5f) - close() - moveTo(22.0f, 16.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.85f, 14.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-1.64f, -1.65f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.65f, 1.64f) - lineToRelative(-1.65f, -1.64f) - close() - } - } - return _cloudDismiss!! - } - -private var _cloudDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudEdit.kt deleted file mode 100644 index 1ca23e6a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudEdit.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CloudEdit: ImageVector - get() { - if (_cloudEdit != null) { - return _cloudEdit!! - } - _cloudEdit = fluentIcon(name = "Regular.CloudEdit") { - fluentPath { - moveTo(12.0f, 5.5f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.5f, 4.29f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 0.71f) - lineTo(6.5f, 10.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - horizontalLineToRelative(6.36f) - lineToRelative(-0.37f, 0.36f) - curveToRelative(-0.33f, 0.33f, -0.59f, 0.72f, -0.77f, 1.14f) - lineTo(6.5f, 18.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) - curveToRelative(0.92f, 0.08f, 1.76f, 0.45f, 2.43f, 1.0f) - curveToRelative(-0.6f, 0.07f, -1.2f, 0.3f, -1.7f, 0.7f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -1.15f, -0.22f) - horizontalLineToRelative(-0.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.71f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 5.5f) - close() - moveTo(19.1f, 11.67f) - lineTo(13.2f, 17.57f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _cloudEdit!! - } - -private var _cloudEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudError.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudError.kt deleted file mode 100644 index 2c862090..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudError.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CloudError: ImageVector - get() { - if (_cloudError != null) { - return _cloudError!! - } - _cloudError = fluentIcon(name = "Regular.CloudError") { - fluentPath { - moveTo(12.0f, 4.5f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.5f, 4.29f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 0.71f) - lineTo(6.5f, 9.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - horizontalLineToRelative(3.58f) - arcToRelative(6.55f, 6.55f, 0.0f, false, false, -0.06f, 1.5f) - lineTo(6.5f, 17.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.05f, 4.97f) - arcToRelative(6.53f, 6.53f, 0.0f, false, false, -1.8f, -1.85f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 17.5f, 9.5f) - horizontalLineToRelative(-0.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.71f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 4.5f) - close() - moveTo(22.0f, 16.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(16.5f, 13.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(16.5f, 20.13f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.25f) - close() - } - } - return _cloudError!! - } - -private var _cloudError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudFlow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudFlow.kt deleted file mode 100644 index 68366691..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudFlow.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CloudFlow: ImageVector - get() { - if (_cloudFlow != null) { - return _cloudFlow!! - } - _cloudFlow = fluentIcon(name = "Regular.CloudFlow") { - fluentPath { - moveTo(7.5f, 7.79f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 9.0f, 0.0f) - curveToRelative(0.01f, 0.4f, 0.34f, 0.71f, 0.74f, 0.71f) - horizontalLineToRelative(0.26f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.99f, 2.7f) - curveToRelative(0.56f, 0.2f, 1.06f, 0.53f, 1.46f, 0.95f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.03f, -5.13f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, -11.84f, 0.0f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 6.5f, 16.0f) - horizontalLineToRelative(6.68f) - lineToRelative(0.13f, -0.5f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.47f, -1.0f) - lineTo(6.5f, 14.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) - horizontalLineToRelative(0.26f) - curveToRelative(0.4f, 0.0f, 0.73f, -0.31f, 0.75f, -0.71f) - close() - moveTo(19.25f, 13.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(16.22f, 15.75f) - horizontalLineToRelative(0.47f) - arcToRelative(2.75f, 2.75f, 0.0f, true, false, -0.14f, -1.5f) - horizontalLineToRelative(-0.33f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.94f, 1.5f) - lineToRelative(-1.01f, 3.88f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.49f, 0.37f) - horizontalLineToRelative(-0.8f) - arcToRelative(2.75f, 2.75f, 0.0f, true, false, -0.28f, 1.5f) - horizontalLineToRelative(1.08f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.94f, -1.5f) - lineToRelative(1.01f, -3.88f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.49f, -0.37f) - close() - moveTo(8.0f, 20.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) - close() - } - } - return _cloudFlow!! - } - -private var _cloudFlow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudLink.kt deleted file mode 100644 index a097871b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudLink.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CloudLink: ImageVector - get() { - if (_cloudLink != null) { - return _cloudLink!! - } - _cloudLink = fluentIcon(name = "Regular.CloudLink") { - fluentPath { - moveTo(12.0f, 5.5f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.5f, 4.29f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 0.71f) - lineTo(6.5f, 10.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - lineTo(10.0f, 16.5f) - curveToRelative(0.03f, 0.53f, 0.15f, 1.03f, 0.33f, 1.5f) - lineTo(6.5f, 18.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) - curveToRelative(2.23f, 0.2f, 4.0f, 2.04f, 4.08f, 4.31f) - arcToRelative(4.76f, 4.76f, 0.0f, false, false, -2.0f, -1.5f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -2.5f, -1.33f) - horizontalLineToRelative(-0.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.71f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 5.5f) - close() - moveTo(22.0f, 16.25f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.75f, -3.75f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - lineTo(18.25f, 20.0f) - horizontalLineToRelative(0.2f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 22.0f, 16.24f) - close() - moveTo(15.5f, 13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-0.2f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(19.0f, 16.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - } - } - return _cloudLink!! - } - -private var _cloudLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudOff.kt deleted file mode 100644 index f7a9690b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudOff.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CloudOff: ImageVector - get() { - if (_cloudOff != null) { - return _cloudOff!! - } - _cloudOff = fluentIcon(name = "Regular.CloudOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(4.63f, 4.63f) - arcToRelative(5.96f, 5.96f, 0.0f, false, false, -0.77f, 2.1f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 6.5f, 19.0f) - horizontalLineToRelative(11.0f) - curveToRelative(0.14f, 0.0f, 0.28f, 0.0f, 0.42f, -0.02f) - lineToRelative(2.8f, 2.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(16.44f, 17.5f) - lineTo(6.5f, 17.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) - horizontalLineToRelative(0.26f) - curveToRelative(0.4f, 0.0f, 0.73f, -0.31f, 0.75f, -0.71f) - curveToRelative(0.02f, -0.64f, 0.18f, -1.23f, 0.45f, -1.77f) - lineToRelative(8.48f, 8.48f) - close() - moveTo(20.5f, 14.5f) - curveToRelative(0.0f, 0.78f, -0.3f, 1.5f, -0.79f, 2.03f) - lineToRelative(1.06f, 1.06f) - arcToRelative(4.48f, 4.48f, 0.0f, false, false, -2.85f, -7.57f) - arcTo(6.0f, 6.0f, 0.0f, false, false, 8.99f, 5.8f) - lineToRelative(1.11f, 1.1f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 6.4f, 3.87f) - curveToRelative(0.01f, 0.4f, 0.34f, 0.72f, 0.74f, 0.72f) - horizontalLineToRelative(0.26f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - close() - } - } - return _cloudOff!! - } - -private var _cloudOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudSwap.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudSwap.kt deleted file mode 100644 index 2698c0f4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudSwap.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CloudSwap: ImageVector - get() { - if (_cloudSwap != null) { - return _cloudSwap!! - } - _cloudSwap = fluentIcon(name = "Regular.CloudSwap") { - fluentPath { - moveTo(12.0f, 5.5f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.5f, 4.29f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 0.71f) - lineTo(6.5f, 10.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - horizontalLineToRelative(2.67f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(6.5f, 18.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 3.75f, 6.18f) - lineToRelative(-1.2f, -1.21f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -2.96f, -3.49f) - horizontalLineToRelative(-0.27f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.71f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 5.5f) - close() - moveTo(13.78f, 15.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-2.5f, 2.5f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineTo(12.56f, 18.0f) - horizontalLineToRelative(6.88f) - lineToRelative(-1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(2.5f, -2.5f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.22f, 1.22f) - horizontalLineToRelative(-6.88f) - lineToRelative(1.22f, -1.22f) - close() - } - } - return _cloudSwap!! - } - -private var _cloudSwap: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudSync.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudSync.kt deleted file mode 100644 index a61a7256..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudSync.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CloudSync: ImageVector - get() { - if (_cloudSync != null) { - return _cloudSync!! - } - _cloudSync = fluentIcon(name = "Regular.CloudSync") { - fluentPath { - moveTo(12.0f, 4.5f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.5f, 4.29f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 0.71f) - lineTo(6.5f, 9.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - horizontalLineToRelative(3.58f) - arcToRelative(6.55f, 6.55f, 0.0f, false, false, -0.06f, 1.5f) - lineTo(6.5f, 17.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.05f, 4.97f) - arcToRelative(6.53f, 6.53f, 0.0f, false, false, -1.8f, -1.85f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 17.5f, 9.5f) - horizontalLineToRelative(-0.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.71f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 4.5f) - close() - moveTo(16.5f, 22.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) - close() - moveTo(18.5f, 15.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -3.86f, -0.17f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.75f, -0.66f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.11f, -0.12f) - verticalLineToRelative(-0.55f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - verticalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineToRelative(1.0f) - close() - moveTo(13.0f, 17.5f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.86f, 0.17f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.75f, 0.66f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.11f, 0.12f) - verticalLineToRelative(0.55f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-2.0f) - close() - } - } - return _cloudSync!! - } - -private var _cloudSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudWords.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudWords.kt deleted file mode 100644 index ae88b0e4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CloudWords.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CloudWords: ImageVector - get() { - if (_cloudWords != null) { - return _cloudWords!! - } - _cloudWords = fluentIcon(name = "Regular.CloudWords") { - fluentPath { - moveTo(7.5f, 10.79f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 9.0f, 0.0f) - curveToRelative(0.01f, 0.4f, 0.34f, 0.71f, 0.74f, 0.71f) - horizontalLineToRelative(0.26f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) - horizontalLineToRelative(-11.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) - horizontalLineToRelative(0.26f) - curveToRelative(0.4f, 0.0f, 0.73f, -0.31f, 0.75f, -0.71f) - close() - moveTo(12.0f, 5.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, -5.92f, 5.02f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 6.5f, 19.0f) - horizontalLineToRelative(11.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 0.42f, -8.98f) - arcTo(6.0f, 6.0f, 0.0f, false, false, 12.0f, 5.0f) - close() - moveTo(10.0f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.0f) - close() - moveTo(5.5f, 14.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(13.75f, 13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.0f) - close() - } - } - return _cloudWords!! - } - -private var _cloudWords: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Clover.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Clover.kt deleted file mode 100644 index 55271e8b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Clover.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Clover: ImageVector - get() { - if (_clover != null) { - return _clover!! - } - _clover = fluentIcon(name = "Regular.Clover") { - fluentPath { - moveTo(6.75f, 2.0f) - arcToRelative(4.75f, 4.75f, 0.0f, false, false, 0.0f, 9.5f) - horizontalLineToRelative(4.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-4.0f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 6.75f, 2.0f) - close() - moveTo(3.5f, 6.75f) - arcToRelative(3.25f, 3.25f, 0.0f, true, true, 6.5f, 0.0f) - lineTo(10.0f, 10.0f) - lineTo(6.75f, 10.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.5f, 6.75f) - close() - moveTo(6.75f, 22.0f) - arcToRelative(4.75f, 4.75f, 0.0f, true, true, 0.0f, -9.5f) - horizontalLineToRelative(4.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(4.0f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 6.75f, 22.0f) - close() - moveTo(3.5f, 17.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 6.5f, 0.0f) - lineTo(10.0f, 14.0f) - lineTo(6.75f, 14.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.25f, 3.25f) - close() - moveTo(22.0f, 6.75f) - arcToRelative(4.75f, 4.75f, 0.0f, true, false, -9.5f, 0.0f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.0f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 22.0f, 6.75f) - close() - moveTo(17.25f, 3.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, 6.5f) - lineTo(14.0f, 10.0f) - lineTo(14.0f, 6.75f) - curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) - close() - moveTo(17.25f, 22.0f) - arcToRelative(4.75f, 4.75f, 0.0f, true, false, 0.0f, -9.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.0f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 17.25f, 22.0f) - close() - moveTo(20.5f, 17.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.5f, 0.0f) - lineTo(14.0f, 14.0f) - horizontalLineToRelative(3.25f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - close() - } - } - return _clover!! - } - -private var _clover: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Code.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Code.kt deleted file mode 100644 index 34c443f4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Code.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Code: ImageVector - get() { - if (_code != null) { - return _code!! - } - _code = fluentIcon(name = "Regular.Code") { - fluentPath { - moveToRelative(8.07f, 18.94f) - lineToRelative(6.5f, -14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.4f, 0.52f) - lineToRelative(-0.04f, 0.1f) - lineToRelative(-6.5f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.4f, -0.52f) - lineToRelative(0.04f, -0.1f) - lineToRelative(6.5f, -14.5f) - lineToRelative(-6.5f, 14.5f) - close() - moveTo(2.22f, 11.47f) - lineTo(6.47f, 7.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineTo(3.81f, 12.0f) - lineToRelative(3.72f, 3.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-4.25f, -4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(4.25f, -4.25f) - lineToRelative(-4.25f, 4.25f) - close() - moveTo(16.47f, 7.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - lineToRelative(4.25f, 4.25f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-4.25f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineTo(20.19f, 12.0f) - lineToRelative(-3.72f, -3.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - } - } - return _code!! - } - -private var _code: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CodeBlock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CodeBlock.kt deleted file mode 100644 index d285de3a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CodeBlock.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CodeBlock: ImageVector - get() { - if (_codeBlock != null) { - return _codeBlock!! - } - _codeBlock = fluentIcon(name = "Regular.CodeBlock") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 6.25f) - close() - moveTo(10.53f, 9.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-3.25f, 3.25f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(3.25f, 3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineTo(7.81f, 12.0f) - lineToRelative(2.72f, -2.72f) - close() - moveTo(14.53f, 8.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(16.19f, 12.0f) - lineToRelative(-2.72f, 2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(3.25f, -3.25f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-3.25f, -3.25f) - close() - } - } - return _codeBlock!! - } - -private var _codeBlock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Collections.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Collections.kt deleted file mode 100644 index b0a73647..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Collections.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Collections: ImageVector - get() { - if (_collections != null) { - return _collections!! - } - _collections = fluentIcon(name = "Regular.Collections") { - fluentPath { - moveTo(11.07f, 8.0f) - horizontalLineToRelative(7.68f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.24f, 3.06f) - lineToRelative(0.01f, 0.19f) - verticalLineToRelative(7.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - horizontalLineToRelative(-7.68f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.06f) - lineTo(8.0f, 18.75f) - verticalLineToRelative(-7.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 11.07f, 8.0f) - close() - moveTo(18.75f, 9.5f) - horizontalLineToRelative(-7.5f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - lineToRelative(-0.01f, 0.15f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - horizontalLineToRelative(7.65f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.14f) - verticalLineToRelative(-7.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(15.0f, 11.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(15.58f, 4.23f) - lineTo(15.63f, 4.41f) - lineTo(16.33f, 7.0f) - horizontalLineToRelative(-1.56f) - lineToRelative(-0.58f, -2.2f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.15f, -1.24f) - lineTo(4.8f, 5.5f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.27f, 2.0f) - lineToRelative(0.03f, 0.14f) - lineTo(5.5f, 14.9f) - curveToRelative(0.2f, 0.72f, 0.8f, 1.21f, 1.5f, 1.29f) - verticalLineToRelative(1.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -2.9f, -2.23f) - lineToRelative(-0.05f, -0.17f) - lineToRelative(-1.94f, -7.25f) - curveToRelative(-0.45f, -1.67f, 0.5f, -3.39f, 2.12f, -3.92f) - lineToRelative(0.18f, -0.06f) - lineToRelative(7.24f, -1.94f) - curveToRelative(1.68f, -0.45f, 3.4f, 0.5f, 3.93f, 2.12f) - close() - } - } - return _collections!! - } - -private var _collections: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CollectionsAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CollectionsAdd.kt deleted file mode 100644 index 72eae902..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CollectionsAdd.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CollectionsAdd: ImageVector - get() { - if (_collectionsAdd != null) { - return _collectionsAdd!! - } - _collectionsAdd = fluentIcon(name = "Regular.CollectionsAdd") { - fluentPath { - moveTo(11.07f, 8.0f) - horizontalLineToRelative(7.68f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.24f, 3.06f) - lineToRelative(0.01f, 0.19f) - verticalLineToRelative(1.56f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) - verticalLineToRelative(-0.48f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-7.5f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - lineToRelative(-0.01f, 0.15f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - horizontalLineToRelative(0.63f) - curveToRelative(0.29f, 0.56f, 0.65f, 1.06f, 1.08f, 1.5f) - horizontalLineToRelative(-1.56f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.06f) - lineTo(8.0f, 18.75f) - verticalLineToRelative(-7.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 11.07f, 8.0f) - close() - moveTo(15.58f, 4.23f) - lineTo(15.63f, 4.41f) - lineTo(16.33f, 7.0f) - horizontalLineToRelative(-1.56f) - lineToRelative(-0.58f, -2.2f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.15f, -1.24f) - lineTo(4.8f, 5.5f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.27f, 2.0f) - lineToRelative(0.03f, 0.14f) - lineTo(5.5f, 14.9f) - curveToRelative(0.2f, 0.72f, 0.8f, 1.21f, 1.5f, 1.29f) - verticalLineToRelative(1.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -2.9f, -2.23f) - lineToRelative(-0.05f, -0.17f) - lineToRelative(-1.94f, -7.25f) - curveToRelative(-0.45f, -1.67f, 0.5f, -3.39f, 2.12f, -3.92f) - lineToRelative(0.18f, -0.06f) - lineToRelative(7.24f, -1.94f) - curveToRelative(1.68f, -0.45f, 3.4f, 0.5f, 3.93f, 2.12f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(17.41f, 14.0f) - horizontalLineToRelative(0.18f) - curveToRelative(0.2f, 0.04f, 0.36f, 0.2f, 0.4f, 0.4f) - lineToRelative(0.01f, 0.1f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.6f) - curveToRelative(0.2f, 0.05f, 0.36f, 0.2f, 0.4f, 0.41f) - verticalLineToRelative(0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, 0.4f) - lineToRelative(-0.1f, 0.01f) - lineTo(18.0f, 18.0f) - verticalLineToRelative(2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, 0.4f) - horizontalLineToRelative(-0.19f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, -0.4f) - lineTo(17.01f, 18.0f) - lineTo(14.4f, 18.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, -0.41f) - verticalLineToRelative(-0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.4f, -0.4f) - lineToRelative(0.1f, -0.01f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.41f, -0.4f) - close() - } - } - return _collectionsAdd!! - } - -private var _collectionsAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Color.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Color.kt deleted file mode 100644 index 40bff714..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Color.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Color: ImageVector - get() { - if (_color != null) { - return _color!! - } - _color = fluentIcon(name = "Regular.Color") { - fluentPath { - moveTo(3.84f, 5.86f) - curveTo(6.78f, 1.94f, 12.87f, 0.8f, 17.2f, 3.5f) - curveToRelative(4.28f, 2.66f, 5.86f, 7.77f, 4.1f, 12.57f) - curveToRelative(-1.65f, 4.54f, -6.01f, 6.33f, -9.16f, 4.05f) - curveToRelative(-1.17f, -0.85f, -1.63f, -1.92f, -1.85f, -3.66f) - lineToRelative(-0.1f, -0.99f) - lineToRelative(-0.05f, -0.4f) - curveToRelative(-0.12f, -0.93f, -0.31f, -1.35f, -0.7f, -1.57f) - curveToRelative(-0.54f, -0.3f, -0.9f, -0.3f, -1.6f, -0.03f) - lineToRelative(-0.35f, 0.14f) - lineToRelative(-0.18f, 0.08f) - curveToRelative(-1.01f, 0.44f, -1.69f, 0.6f, -2.54f, 0.42f) - lineToRelative(-0.2f, -0.05f) - lineToRelative(-0.17f, -0.04f) - curveToRelative(-2.78f, -0.87f, -3.2f, -4.65f, -0.56f, -8.16f) - close() - moveTo(4.82f, 12.57f) - lineTo(4.95f, 12.61f) - lineTo(5.08f, 12.64f) - curveToRelative(0.44f, 0.09f, 0.81f, 0.02f, 1.44f, -0.24f) - lineToRelative(0.6f, -0.26f) - curveToRelative(1.2f, -0.5f, 1.98f, -0.54f, 3.04f, 0.05f) - curveToRelative(0.92f, 0.51f, 1.28f, 1.3f, 1.46f, 2.66f) - lineToRelative(0.06f, 0.46f) - lineToRelative(0.05f, 0.53f) - lineToRelative(0.05f, 0.43f) - curveToRelative(0.17f, 1.36f, 0.48f, 2.09f, 1.24f, 2.64f) - curveToRelative(2.28f, 1.65f, 5.54f, 0.3f, 6.87f, -3.35f) - curveToRelative(1.52f, -4.15f, 0.18f, -8.51f, -3.48f, -10.79f) - curveToRelative(-3.67f, -2.28f, -8.9f, -1.3f, -11.37f, 1.99f) - curveToRelative(-2.08f, 2.76f, -1.82f, 5.28f, -0.22f, 5.81f) - close() - moveTo(16.05f, 10.58f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.41f, -0.65f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.41f, 0.65f) - close() - moveTo(16.55f, 14.07f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.4f, -0.65f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.4f, 0.65f) - close() - moveTo(14.07f, 7.57f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.41f, -0.64f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.41f, 0.65f) - close() - moveTo(14.04f, 16.57f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.42f, -0.64f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.42f, 0.65f) - close() - moveTo(10.54f, 6.61f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.42f, -0.65f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.42f, 0.65f) - close() - } - } - return _color!! - } - -private var _color: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ColorBackground.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ColorBackground.kt deleted file mode 100644 index 6d9ce9fa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ColorBackground.kt +++ /dev/null @@ -1,94 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ColorBackground: ImageVector - get() { - if (_colorBackground != null) { - return _colorBackground!! - } - _colorBackground = fluentIcon(name = "Regular.ColorBackground") { - fluentPath { - moveTo(11.34f, 13.0f) - curveToRelative(-0.19f, 0.4f, -0.34f, 0.88f, -0.34f, 1.38f) - curveToRelative(0.0f, 0.73f, 0.29f, 1.42f, 0.77f, 1.9f) - arcToRelative(2.4f, 2.4f, 0.0f, false, false, 1.73f, 0.72f) - curveToRelative(1.47f, 0.0f, 2.5f, -1.23f, 2.5f, -2.62f) - curveToRelative(0.0f, -0.5f, -0.15f, -0.98f, -0.34f, -1.39f) - curveToRelative(-0.2f, -0.41f, -0.44f, -0.8f, -0.68f, -1.13f) - curveToRelative(-0.23f, -0.33f, -0.47f, -0.61f, -0.64f, -0.81f) - lineToRelative(-0.31f, -0.33f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-0.3f, 0.33f) - arcTo(6.98f, 6.98f, 0.0f, false, false, 11.34f, 13.0f) - close() - moveTo(13.77f, 12.73f) - curveToRelative(0.2f, 0.29f, 0.39f, 0.59f, 0.52f, 0.89f) - curveToRelative(0.15f, 0.3f, 0.21f, 0.56f, 0.21f, 0.76f) - curveToRelative(0.0f, 0.69f, -0.48f, 1.12f, -1.0f, 1.12f) - curveToRelative(-0.25f, 0.0f, -0.5f, -0.1f, -0.68f, -0.28f) - curveToRelative(-0.2f, -0.2f, -0.32f, -0.49f, -0.32f, -0.84f) - curveToRelative(0.0f, -0.2f, 0.06f, -0.45f, 0.2f, -0.76f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.8f, -1.24f) - lineToRelative(0.27f, 0.35f) - close() - moveTo(6.75f, 1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(1.76f) - lineToRelative(-0.1f, 0.08f) - lineToRelative(-4.24f, 4.25f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 2.82f) - lineTo(5.2f, 14.2f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.83f, 0.0f) - lineToRelative(4.24f, -4.24f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, -2.83f) - lineTo(8.73f, 3.59f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.23f, -0.57f) - lineTo(7.5f, 1.75f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 6.75f, 1.0f) - close() - moveTo(6.0f, 5.62f) - verticalLineToRelative(0.63f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) - lineTo(7.5f, 4.54f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.17f, 0.11f) - lineToRelative(3.54f, 3.54f) - curveToRelative(0.09f, 0.09f, 0.13f, 0.2f, 0.14f, 0.31f) - lineTo(3.12f, 8.5f) - lineTo(6.0f, 5.62f) - close() - moveTo(6.26f, 13.14f) - lineTo(3.13f, 10.0f) - horizontalLineToRelative(6.97f) - lineToRelative(-3.13f, 3.13f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.71f, 0.0f) - close() - moveTo(2.0f, 17.5f) - verticalLineToRelative(-5.09f) - lineToRelative(1.5f, 1.5f) - verticalLineToRelative(3.59f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineToRelative(-11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineToRelative(-7.44f) - lineTo(10.56f, 4.0f) - horizontalLineToRelative(8.94f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 22.0f, 6.5f) - verticalLineToRelative(11.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.5f, 2.5f) - horizontalLineToRelative(-15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 2.0f, 17.5f) - close() - } - } - return _colorBackground!! - } - -private var _colorBackground: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ColorFill.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ColorFill.kt deleted file mode 100644 index e00b681e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ColorFill.kt +++ /dev/null @@ -1,95 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ColorFill: ImageVector - get() { - if (_colorFill != null) { - return _colorFill!! - } - _colorFill = fluentIcon(name = "Regular.ColorFill") { - fluentPath { - moveTo(9.0f, 1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(1.27f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.24f, 0.57f) - lineToRelative(3.53f, 3.54f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, 2.83f) - lineToRelative(-4.24f, 4.24f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.83f, 0.0f) - lineToRelative(-3.54f, -3.54f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -2.82f) - lineToRelative(4.25f, -4.25f) - lineToRelative(0.09f, -0.08f) - lineTo(9.0f, 1.75f) - close() - moveTo(9.0f, 6.25f) - verticalLineToRelative(-0.63f) - lineToRelative(-2.89f, 2.9f) - horizontalLineToRelative(8.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.15f, -0.33f) - lineToRelative(-3.54f, -3.54f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.17f, -0.11f) - verticalLineToRelative(1.71f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - close() - moveTo(6.13f, 10.01f) - lineTo(9.26f, 13.14f) - curveToRelative(0.2f, 0.2f, 0.51f, 0.2f, 0.7f, 0.0f) - lineTo(13.1f, 10.0f) - lineTo(6.13f, 10.0f) - close() - moveTo(6.6f, 14.0f) - lineTo(4.5f, 14.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 2.0f, 16.5f) - verticalLineToRelative(3.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.5f, 22.0f) - horizontalLineToRelative(15.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) - verticalLineToRelative(-3.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.02f, -2.45f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -0.17f, 1.5f) - curveToRelative(0.4f, 0.13f, 0.69f, 0.5f, 0.69f, 0.95f) - verticalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(3.83f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.84f, -0.6f) - lineToRelative(-0.9f, -0.9f) - close() - moveTo(14.01f, 14.38f) - curveToRelative(0.0f, -0.5f, 0.15f, -0.98f, 0.34f, -1.39f) - curveToRelative(0.2f, -0.41f, 0.44f, -0.8f, 0.68f, -1.13f) - curveToRelative(0.23f, -0.33f, 0.47f, -0.61f, 0.64f, -0.81f) - lineToRelative(0.3f, -0.32f) - lineToRelative(0.01f, -0.01f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(0.3f, 0.33f) - arcTo(6.98f, 6.98f, 0.0f, false, true, 18.66f, 13.0f) - curveToRelative(0.2f, 0.4f, 0.35f, 0.88f, 0.35f, 1.38f) - curveToRelative(0.0f, 1.39f, -1.03f, 2.62f, -2.5f, 2.62f) - reflectiveCurveTo(14.0f, 15.77f, 14.0f, 14.37f) - close() - moveTo(16.78f, 12.73f) - arcToRelative(8.42f, 8.42f, 0.0f, false, false, -0.27f, -0.35f) - arcToRelative(8.42f, 8.42f, 0.0f, false, false, -0.8f, 1.24f) - curveToRelative(-0.14f, 0.3f, -0.2f, 0.56f, -0.2f, 0.76f) - curveToRelative(0.0f, 0.69f, 0.48f, 1.12f, 1.0f, 1.12f) - reflectiveCurveToRelative(1.0f, -0.43f, 1.0f, -1.13f) - curveToRelative(0.0f, -0.19f, -0.06f, -0.44f, -0.2f, -0.75f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -0.53f, -0.89f) - close() - } - } - return _colorFill!! - } - -private var _colorFill: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ColorLine.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ColorLine.kt deleted file mode 100644 index 6d0f3981..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ColorLine.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ColorLine: ImageVector - get() { - if (_colorLine != null) { - return _colorLine!! - } - _colorLine = fluentIcon(name = "Regular.ColorLine") { - fluentPath { - moveTo(4.38f, 14.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 2.0f, 16.5f) - verticalLineToRelative(3.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.5f, 22.0f) - horizontalLineToRelative(15.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) - verticalLineToRelative(-3.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.5f, -2.5f) - horizontalLineToRelative(-5.95f) - lineToRelative(-1.32f, 1.31f) - lineToRelative(-0.2f, 0.19f) - horizontalLineToRelative(7.47f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -0.37f, 0.2f, -0.7f, 0.5f, -0.87f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.1f, -0.74f) - lineToRelative(0.28f, -0.89f) - close() - moveTo(18.65f, 2.94f) - arcToRelative(3.22f, 3.22f, 0.0f, false, true, 0.0f, 4.56f) - lineToRelative(-7.13f, 7.1f) - curveToRelative(-0.26f, 0.27f, -0.58f, 0.46f, -0.94f, 0.57f) - lineToRelative(-4.3f, 1.29f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.23f, -1.27f) - lineToRelative(1.36f, -4.22f) - curveToRelative(0.1f, -0.35f, 0.3f, -0.65f, 0.55f, -0.9f) - lineToRelative(7.13f, -7.13f) - arcToRelative(3.22f, 3.22f, 0.0f, false, true, 4.56f, 0.0f) - close() - moveTo(15.15f, 4.0f) - lineToRelative(-7.13f, 7.12f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.18f, 0.3f) - lineToRelative(-1.07f, 3.33f) - lineToRelative(3.38f, -1.02f) - curveToRelative(0.12f, -0.03f, 0.23f, -0.1f, 0.31f, -0.19f) - lineToRelative(7.13f, -7.1f) - arcTo(1.72f, 1.72f, 0.0f, true, false, 15.15f, 4.0f) - close() - } - } - return _colorLine!! - } - -private var _colorLine: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ColumnEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ColumnEdit.kt deleted file mode 100644 index 9a445d7c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ColumnEdit.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ColumnEdit: ImageVector - get() { - if (_columnEdit != null) { - return _columnEdit!! - } - _columnEdit = fluentIcon(name = "Regular.ColumnEdit") { - fluentPath { - moveTo(5.25f, 5.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(4.0f, 3.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.0f, 21.0f) - horizontalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(4.0f, 19.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - lineTo(5.25f, 5.75f) - close() - moveTo(10.75f, 4.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(0.8f) - lineToRelative(-0.03f, 0.08f) - lineToRelative(-0.35f, 1.42f) - horizontalLineToRelative(-0.42f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 8.0f, 18.25f) - lineTo(8.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 10.75f, 3.0f) - horizontalLineToRelative(2.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 16.0f, 5.75f) - verticalLineToRelative(8.6f) - lineToRelative(-1.5f, 1.5f) - lineTo(14.5f, 5.76f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-2.5f) - close() - moveTo(19.0f, 5.75f) - verticalLineToRelative(5.73f) - curveToRelative(-0.22f, 0.14f, -0.42f, 0.3f, -0.6f, 0.48f) - lineToRelative(-0.9f, 0.9f) - lineTo(17.5f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 20.25f, 3.0f) - lineTo(21.0f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.75f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _columnEdit!! - } - -private var _columnEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ColumnTriple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ColumnTriple.kt deleted file mode 100644 index 9f27804f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ColumnTriple.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ColumnTriple: ImageVector - get() { - if (_columnTriple != null) { - return _columnTriple!! - } - _columnTriple = fluentIcon(name = "Regular.ColumnTriple") { - fluentPath { - moveTo(6.24f, 3.0f) - curveToRelative(0.96f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(14.5f) - curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(1.99f, 4.75f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) - horizontalLineToRelative(2.65f) - close() - moveTo(20.26f, 3.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(14.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.5f) - curveToRelative(-0.96f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(16.01f, 4.75f) - curveToRelative(0.0f, -0.97f, 0.79f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.5f) - close() - moveTo(13.24f, 3.0f) - curveToRelative(0.96f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(14.5f) - curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(8.99f, 4.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.5f) - close() - moveTo(6.24f, 4.5f) - lineTo(3.68f, 4.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.2f, 0.25f) - verticalLineToRelative(14.5f) - curveToRelative(0.0f, 0.14f, 0.12f, 0.25f, 0.26f, 0.25f) - horizontalLineToRelative(2.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - lineTo(6.49f, 4.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(20.26f, 4.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(14.5f) - curveToRelative(0.0f, 0.14f, 0.12f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(2.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - lineTo(20.51f, 4.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(13.24f, 4.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(14.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(2.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - lineTo(13.49f, 4.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - } - } - return _columnTriple!! - } - -private var _columnTriple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ColumnTripleEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ColumnTripleEdit.kt deleted file mode 100644 index 3b36ea71..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ColumnTripleEdit.kt +++ /dev/null @@ -1,95 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ColumnTripleEdit: ImageVector - get() { - if (_columnTripleEdit != null) { - return _columnTripleEdit!! - } - _columnTripleEdit = fluentIcon(name = "Regular.ColumnTripleEdit") { - fluentPath { - moveTo(6.24f, 3.0f) - curveToRelative(0.96f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(14.5f) - curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(1.99f, 4.75f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) - horizontalLineToRelative(2.65f) - close() - moveTo(6.24f, 4.5f) - lineTo(3.68f, 4.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.2f, 0.25f) - verticalLineToRelative(14.5f) - curveToRelative(0.0f, 0.14f, 0.12f, 0.25f, 0.26f, 0.25f) - horizontalLineToRelative(2.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - lineTo(6.49f, 4.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(20.26f, 3.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(6.52f) - curveToRelative(-0.47f, -0.2f, -0.99f, -0.3f, -1.5f, -0.26f) - lineTo(20.51f, 4.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(8.1f) - lineToRelative(-1.5f, 1.5f) - verticalLineToRelative(-9.6f) - curveToRelative(0.0f, -0.97f, 0.79f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.5f) - close() - moveTo(20.51f, 19.14f) - lineTo(22.01f, 17.64f) - verticalLineToRelative(1.61f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-1.61f) - lineToRelative(1.5f, -1.5f) - horizontalLineToRelative(0.11f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-0.11f) - close() - moveTo(15.0f, 4.75f) - verticalLineToRelative(10.62f) - lineToRelative(-1.5f, 1.5f) - lineTo(13.5f, 4.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(14.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(0.8f) - lineToRelative(-0.02f, 0.08f) - lineToRelative(-0.35f, 1.42f) - horizontalLineToRelative(-0.43f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(9.0f, 4.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.96f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - close() - moveTo(19.11f, 12.67f) - lineTo(13.21f, 18.57f) - curveToRelative(-0.35f, 0.35f, -0.59f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.48f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _columnTripleEdit!! - } - -private var _columnTripleEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Comma.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Comma.kt deleted file mode 100644 index 4215473a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Comma.kt +++ /dev/null @@ -1,30 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Comma: ImageVector - get() { - if (_comma != null) { - return _comma!! - } - _comma = fluentIcon(name = "Regular.Comma") { - fluentPath { - moveTo(14.62f, 12.02f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, 1.35f, -3.48f) - curveToRelative(0.36f, 1.81f, 0.36f, 3.97f, -0.46f, 5.9f) - curveToRelative(-0.86f, 2.04f, -2.6f, 3.76f, -5.57f, 4.54f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.38f, -1.46f) - curveToRelative(2.53f, -0.66f, 3.9f, -2.06f, 4.57f, -3.66f) - curveToRelative(0.24f, -0.59f, 0.4f, -1.2f, 0.49f, -1.84f) - close() - } - } - return _comma!! - } - -private var _comma: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Comment.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Comment.kt deleted file mode 100644 index 0117f87c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Comment.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Comment: ImageVector - get() { - if (_comment != null) { - return _comment!! - } - _comment = fluentIcon(name = "Regular.Comment") { - fluentPath { - moveTo(5.25f, 18.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) - verticalLineToRelative(-8.5f) - curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(13.5f) - curveTo(20.55f, 3.0f, 22.0f, 4.46f, 22.0f, 6.25f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-5.74f) - lineTo(8.0f, 21.75f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.0f, -1.0f) - lineTo(6.0f, 18.0f) - horizontalLineToRelative(-0.75f) - close() - moveTo(12.51f, 16.5f) - horizontalLineToRelative(6.24f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(5.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(7.5f, 16.5f) - verticalLineToRelative(3.75f) - lineToRelative(5.01f, -3.75f) - close() - } - } - return _comment!! - } - -private var _comment: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentAdd.kt deleted file mode 100644 index e8d9a780..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentAdd.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CommentAdd: ImageVector - get() { - if (_commentAdd != null) { - return _commentAdd!! - } - _commentAdd = fluentIcon(name = "Regular.CommentAdd") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 7.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 7.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 6.0f) - lineTo(17.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - lineTo(18.0f, 6.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 7.0f) - close() - moveTo(20.5f, 14.75f) - verticalLineToRelative(-2.48f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(3.56f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-5.74f) - lineTo(8.0f, 21.75f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.0f, -1.0f) - lineTo(6.0f, 18.0f) - horizontalLineToRelative(-0.75f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) - verticalLineToRelative(-8.5f) - curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(6.77f) - curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) - lineTo(5.24f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(7.5f, 16.5f) - verticalLineToRelative(3.75f) - lineToRelative(5.01f, -3.75f) - horizontalLineToRelative(6.24f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - close() - } - } - return _commentAdd!! - } - -private var _commentAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentArrowLeft.kt deleted file mode 100644 index 8a06f794..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentArrowLeft.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CommentArrowLeft: ImageVector - get() { - if (_commentArrowLeft != null) { - return _commentArrowLeft!! - } - _commentArrowLeft = fluentIcon(name = "Regular.CommentArrowLeft") { - fluentPath { - moveTo(12.02f, 3.0f) - curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) - lineTo(5.24f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(7.5f, 16.5f) - verticalLineToRelative(3.75f) - lineToRelative(5.01f, -3.75f) - horizontalLineToRelative(6.24f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-2.48f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(3.56f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-5.74f) - lineTo(8.0f, 21.75f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.0f, -1.0f) - lineTo(6.0f, 18.0f) - horizontalLineToRelative(-0.75f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) - verticalLineToRelative(-8.5f) - curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(6.77f) - close() - moveTo(17.5f, 1.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(17.72f, 3.59f) - lineTo(17.65f, 3.65f) - lineTo(17.59f, 3.72f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) - lineToRelative(0.06f, 0.07f) - lineTo(19.29f, 6.0f) - horizontalLineToRelative(-5.38f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - lineToRelative(-0.01f, 0.09f) - verticalLineToRelative(0.09f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - lineTo(14.0f, 7.0f) - horizontalLineToRelative(5.3f) - lineToRelative(-1.65f, 1.65f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(0.06f, -0.07f) - lineToRelative(2.54f, -2.54f) - lineToRelative(0.04f, -0.05f) - lineToRelative(0.03f, -0.07f) - lineToRelative(0.02f, -0.06f) - lineToRelative(0.02f, -0.08f) - verticalLineToRelative(-0.1f) - lineToRelative(-0.02f, -0.08f) - lineToRelative(-0.03f, -0.08f) - lineToRelative(-0.04f, -0.07f) - lineToRelative(-0.04f, -0.06f) - lineToRelative(-2.52f, -2.51f) - lineToRelative(-0.07f, -0.06f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.56f, 0.0f) - close() - } - } - return _commentArrowLeft!! - } - -private var _commentArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentArrowRight.kt deleted file mode 100644 index 9fb073ac..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentArrowRight.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CommentArrowRight: ImageVector - get() { - if (_commentArrowRight != null) { - return _commentArrowRight!! - } - _commentArrowRight = fluentIcon(name = "Regular.CommentArrowRight") { - fluentPath { - moveTo(12.02f, 3.0f) - curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) - lineTo(5.24f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(7.5f, 16.5f) - verticalLineToRelative(3.75f) - lineToRelative(5.01f, -3.75f) - horizontalLineToRelative(6.24f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-2.48f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(3.56f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-5.74f) - lineTo(8.0f, 21.75f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.0f, -1.0f) - lineTo(6.0f, 18.0f) - horizontalLineToRelative(-0.75f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) - verticalLineToRelative(-8.5f) - curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(6.77f) - close() - moveTo(17.5f, 1.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(16.22f, 3.59f) - lineTo(16.15f, 3.65f) - lineTo(13.62f, 6.18f) - lineTo(13.59f, 6.22f) - lineTo(13.55f, 6.29f) - lineTo(13.52f, 6.37f) - lineTo(13.5f, 6.45f) - verticalLineToRelative(0.14f) - lineToRelative(0.02f, 0.06f) - lineToRelative(0.03f, 0.06f) - lineToRelative(0.03f, 0.06f) - lineToRelative(0.04f, 0.05f) - lineToRelative(2.53f, 2.53f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.76f, -0.63f) - lineToRelative(-0.06f, -0.07f) - lineTo(15.21f, 7.0f) - horizontalLineToRelative(5.29f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.41f) - lineTo(21.0f, 6.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.5f) - lineTo(15.2f, 6.0f) - lineToRelative(1.65f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.06f, -0.63f) - lineToRelative(-0.06f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.63f, -0.06f) - close() - } - } - return _commentArrowRight!! - } - -private var _commentArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentCheckmark.kt deleted file mode 100644 index 415240e2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentCheckmark.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CommentCheckmark: ImageVector - get() { - if (_commentCheckmark != null) { - return _commentCheckmark!! - } - _commentCheckmark = fluentIcon(name = "Regular.CommentCheckmark") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.15f, 4.15f) - lineTo(16.5f, 7.79f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - close() - moveTo(20.5f, 14.75f) - verticalLineToRelative(-2.48f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(3.56f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-5.74f) - lineTo(8.0f, 21.75f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.0f, -1.0f) - lineTo(6.0f, 18.0f) - horizontalLineToRelative(-0.75f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) - verticalLineToRelative(-8.5f) - curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(6.77f) - curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) - lineTo(5.24f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(7.5f, 16.5f) - verticalLineToRelative(3.75f) - lineToRelative(5.01f, -3.75f) - horizontalLineToRelative(6.24f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - close() - } - } - return _commentCheckmark!! - } - -private var _commentCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentDismiss.kt deleted file mode 100644 index 1f7c1811..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentDismiss.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CommentDismiss: ImageVector - get() { - if (_commentDismiss != null) { - return _commentDismiss!! - } - _commentDismiss = fluentIcon(name = "Regular.CommentDismiss") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 4.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineTo(18.21f, 6.5f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineTo(17.5f, 5.79f) - lineToRelative(-1.65f, -1.64f) - close() - moveTo(20.5f, 14.75f) - verticalLineToRelative(-2.48f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(3.56f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-5.74f) - lineTo(8.0f, 21.75f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.0f, -1.0f) - lineTo(6.0f, 18.0f) - horizontalLineToRelative(-0.75f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) - verticalLineToRelative(-8.5f) - curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(6.77f) - curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) - lineTo(5.24f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(7.5f, 16.5f) - verticalLineToRelative(3.75f) - lineToRelative(5.01f, -3.75f) - horizontalLineToRelative(6.24f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - close() - } - } - return _commentDismiss!! - } - -private var _commentDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentEdit.kt deleted file mode 100644 index e08ec446..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentEdit.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CommentEdit: ImageVector - get() { - if (_commentEdit != null) { - return _commentEdit!! - } - _commentEdit = fluentIcon(name = "Regular.CommentEdit") { - fluentPath { - moveTo(2.0f, 14.75f) - curveTo(2.0f, 16.55f, 3.46f, 18.0f, 5.25f, 18.0f) - lineTo(6.0f, 18.0f) - verticalLineToRelative(2.75f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.0f, 1.0f) - lineToRelative(2.12f, -1.59f) - lineToRelative(0.4f, -1.58f) - curveToRelative(0.07f, -0.29f, 0.18f, -0.56f, 0.31f, -0.82f) - lineToRelative(-3.33f, 2.5f) - lineTo(7.5f, 16.5f) - lineTo(5.25f, 16.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(3.84f) - curveToRelative(0.55f, 0.14f, 1.07f, 0.42f, 1.5f, 0.83f) - lineTo(22.0f, 6.25f) - curveTo(22.0f, 4.45f, 20.54f, 3.0f, 18.75f, 3.0f) - lineTo(5.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 6.25f) - verticalLineToRelative(8.5f) - close() - moveTo(18.1f, 11.67f) - lineTo(12.2f, 17.57f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.71f, 1.25f) - lineToRelative(-0.46f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, true, false, -3.23f, -3.24f) - close() - } - } - return _commentEdit!! - } - -private var _commentEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentError.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentError.kt deleted file mode 100644 index 708f6bfb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentError.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CommentError: ImageVector - get() { - if (_commentError != null) { - return _commentError!! - } - _commentError = fluentIcon(name = "Regular.CommentError") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(17.5f, 3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(17.5f, 10.13f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.24f) - close() - moveTo(20.5f, 14.75f) - verticalLineToRelative(-2.48f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(3.56f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-5.74f) - lineTo(8.0f, 21.75f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.0f, -1.0f) - lineTo(6.0f, 18.0f) - horizontalLineToRelative(-0.75f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) - verticalLineToRelative(-8.5f) - curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(6.77f) - curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) - lineTo(5.24f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(7.5f, 16.5f) - verticalLineToRelative(3.75f) - lineToRelative(5.01f, -3.75f) - horizontalLineToRelative(6.24f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - close() - } - } - return _commentError!! - } - -private var _commentError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentLightning.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentLightning.kt deleted file mode 100644 index 03906ac5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentLightning.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CommentLightning: ImageVector - get() { - if (_commentLightning != null) { - return _commentLightning!! - } - _commentLightning = fluentIcon(name = "Regular.CommentLightning") { - fluentPath { - moveTo(16.32f, 1.0f) - horizontalLineToRelative(4.82f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.44f, 0.75f) - lineTo(19.75f, 5.0f) - horizontalLineToRelative(1.5f) - curveToRelative(0.64f, 0.0f, 0.98f, 0.76f, 0.56f, 1.24f) - lineToRelative(-4.82f, 5.51f) - curveToRelative(-0.5f, 0.58f, -1.45f, 0.09f, -1.26f, -0.66f) - lineTo(16.5f, 8.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.46f, -0.71f) - lineToRelative(2.82f, -6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.46f, -0.29f) - close() - moveTo(5.25f, 3.0f) - horizontalLineToRelative(8.7f) - lineToRelative(-0.7f, 1.5f) - horizontalLineToRelative(-8.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineTo(7.5f) - verticalLineToRelative(3.75f) - lineToRelative(5.01f, -3.75f) - horizontalLineToRelative(6.24f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-5.5f) - lineToRelative(1.5f, -1.7f) - verticalLineToRelative(7.2f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-5.74f) - lineTo(8.0f, 21.75f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.0f, -1.0f) - verticalLineTo(18.0f) - horizontalLineToRelative(-0.75f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) - verticalLineToRelative(-8.5f) - curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) - close() - } - } - return _commentLightning!! - } - -private var _commentLightning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentLink.kt deleted file mode 100644 index 72c610d6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentLink.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CommentLink: ImageVector - get() { - if (_commentLink != null) { - return _commentLink!! - } - _commentLink = fluentIcon(name = "Regular.CommentLink") { - fluentPath { - moveTo(23.0f, 5.75f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 19.25f, 2.0f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - lineTo(19.25f, 9.5f) - horizontalLineToRelative(0.2f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 5.74f) - close() - moveTo(16.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-0.2f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(20.0f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(5.25f, 3.0f) - horizontalLineToRelative(6.63f) - curveToRelative(-0.32f, 0.45f, -0.57f, 0.95f, -0.71f, 1.5f) - lineTo(5.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(7.5f, 16.5f) - verticalLineToRelative(3.75f) - lineToRelative(5.01f, -3.75f) - horizontalLineToRelative(6.24f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-4.42f) - curveToRelative(0.55f, -0.14f, 1.05f, -0.39f, 1.5f, -0.7f) - verticalLineToRelative(5.12f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-5.74f) - lineTo(8.0f, 21.75f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.0f, -1.0f) - lineTo(6.0f, 18.0f) - horizontalLineToRelative(-0.75f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) - verticalLineToRelative(-8.5f) - curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) - close() - } - } - return _commentLink!! - } - -private var _commentLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentMention.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentMention.kt deleted file mode 100644 index d2433d0a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentMention.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CommentMention: ImageVector - get() { - if (_commentMention != null) { - return _commentMention!! - } - _commentMention = fluentIcon(name = "Regular.CommentMention") { - fluentPath { - moveTo(18.0f, 2.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 2.22f, 7.34f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.56f, 0.83f) - arcTo(5.0f, 5.0f, 0.0f, true, true, 23.0f, 6.0f) - verticalLineToRelative(0.75f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -3.2f, 0.98f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 15.5f, 6.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 4.0f, -2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - verticalLineToRelative(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(22.0f, 6.0f) - arcTo(4.0f, 4.0f, 0.0f, false, false, 18.0f, 2.0f) - close() - moveTo(16.5f, 6.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) - close() - moveTo(22.0f, 14.75f) - verticalLineToRelative(-4.28f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, -1.5f, 0.99f) - verticalLineToRelative(3.29f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-6.24f) - lineTo(7.5f, 20.25f) - lineTo(7.5f, 16.5f) - lineTo(5.25f, 16.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(6.94f) - curveToRelative(0.14f, -0.53f, 0.34f, -1.04f, 0.61f, -1.5f) - lineTo(5.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 6.25f) - verticalLineToRelative(8.5f) - curveTo(2.0f, 16.55f, 3.46f, 18.0f, 5.25f, 18.0f) - lineTo(6.0f, 18.0f) - verticalLineToRelative(2.75f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.0f, 1.0f) - lineTo(13.0f, 18.0f) - horizontalLineToRelative(5.74f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.45f, 3.25f, -3.25f) - close() - } - } - return _commentMention!! - } - -private var _commentMention: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentMultiple.kt deleted file mode 100644 index 7b622663..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentMultiple.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CommentMultiple: ImageVector - get() { - if (_commentMultiple != null) { - return _commentMultiple!! - } - _commentMultiple = fluentIcon(name = "Regular.CommentMultiple") { - fluentPath { - moveTo(5.0f, 5.0f) - curveToRelative(0.13f, -1.67f, 1.54f, -3.0f, 3.25f, -3.0f) - horizontalLineToRelative(9.0f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 22.0f, 6.75f) - verticalLineToRelative(6.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.0f, 3.24f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 15.74f, 19.0f) - horizontalLineToRelative(-5.08f) - lineTo(7.0f, 21.75f) - curveToRelative(-0.82f, 0.62f, -2.0f, 0.03f, -2.0f, -1.0f) - verticalLineToRelative(-1.76f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.0f, -3.24f) - verticalLineToRelative(-7.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.0f, -3.24f) - close() - moveTo(6.52f, 5.0f) - horizontalLineToRelative(9.23f) - curveTo(17.55f, 5.0f, 19.0f, 6.46f, 19.0f, 8.25f) - verticalLineToRelative(6.23f) - curveToRelative(0.85f, -0.12f, 1.5f, -0.85f, 1.5f, -1.73f) - verticalLineToRelative(-6.0f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-9.0f) - curveToRelative(-0.88f, 0.0f, -1.61f, 0.65f, -1.73f, 1.5f) - close() - moveTo(5.25f, 17.5f) - lineTo(6.5f, 17.5f) - verticalLineToRelative(2.75f) - lineToRelative(3.67f, -2.75f) - horizontalLineToRelative(5.58f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-7.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(5.25f, 6.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - close() - } - } - return _commentMultiple!! - } - -private var _commentMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentMultipleCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentMultipleCheckmark.kt deleted file mode 100644 index 9b8d7ee1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentMultipleCheckmark.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CommentMultipleCheckmark: ImageVector - get() { - if (_commentMultipleCheckmark != null) { - return _commentMultipleCheckmark!! - } - _commentMultipleCheckmark = fluentIcon(name = "Regular.CommentMultipleCheckmark") { - fluentPath { - moveTo(5.0f, 5.0f) - curveToRelative(0.13f, -1.67f, 1.54f, -3.0f, 3.25f, -3.0f) - horizontalLineToRelative(9.0f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 22.0f, 6.75f) - verticalLineToRelative(6.06f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) - lineTo(20.5f, 6.75f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-9.0f) - curveToRelative(-0.88f, 0.0f, -1.61f, 0.65f, -1.73f, 1.5f) - horizontalLineToRelative(9.23f) - curveTo(17.55f, 5.0f, 19.0f, 6.46f, 19.0f, 8.25f) - verticalLineToRelative(2.92f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -0.17f) - lineTo(17.5f, 8.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(5.25f, 6.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(6.5f, 17.5f) - verticalLineToRelative(2.75f) - lineToRelative(3.67f, -2.75f) - lineTo(11.0f, 17.5f) - curveToRelative(0.0f, 0.52f, 0.06f, 1.02f, 0.17f, 1.5f) - horizontalLineToRelative(-0.5f) - lineTo(7.0f, 21.75f) - curveToRelative(-0.82f, 0.62f, -2.0f, 0.03f, -2.0f, -1.0f) - verticalLineToRelative(-1.76f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.0f, -3.24f) - verticalLineToRelative(-7.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.0f, -3.24f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(20.85f, 15.15f) - curveToRelative(0.2f, 0.2f, 0.2f, 0.5f, 0.0f, 0.7f) - lineToRelative(-4.0f, 4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.0f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, -0.7f) - lineToRelative(1.65f, 1.64f) - lineToRelative(3.65f, -3.64f) - curveToRelative(0.2f, -0.2f, 0.5f, -0.2f, 0.7f, 0.0f) - close() - } - } - return _commentMultipleCheckmark!! - } - -private var _commentMultipleCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentMultipleLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentMultipleLink.kt deleted file mode 100644 index dd688010..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentMultipleLink.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CommentMultipleLink: ImageVector - get() { - if (_commentMultipleLink != null) { - return _commentMultipleLink!! - } - _commentMultipleLink = fluentIcon(name = "Regular.CommentMultipleLink") { - fluentPath { - moveTo(5.0f, 5.0f) - curveToRelative(0.13f, -1.67f, 1.54f, -3.0f, 3.25f, -3.0f) - horizontalLineToRelative(9.0f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 22.0f, 6.75f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.35f, -0.06f, 0.7f, -0.16f, 1.02f) - arcToRelative(4.73f, 4.73f, 0.0f, false, false, -1.39f, -0.62f) - curveToRelative(0.03f, -0.13f, 0.05f, -0.26f, 0.05f, -0.4f) - verticalLineToRelative(-6.0f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-9.0f) - curveToRelative(-0.88f, 0.0f, -1.61f, 0.65f, -1.73f, 1.5f) - horizontalLineToRelative(9.23f) - curveTo(17.55f, 5.0f, 19.0f, 6.46f, 19.0f, 8.25f) - lineTo(19.0f, 13.0f) - horizontalLineToRelative(-1.5f) - lineTo(17.5f, 8.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(5.25f, 6.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(6.5f, 17.5f) - verticalLineToRelative(2.75f) - lineToRelative(3.67f, -2.75f) - lineTo(11.0f, 17.5f) - arcToRelative(4.82f, 4.82f, 0.0f, false, false, 0.16f, 1.5f) - horizontalLineToRelative(-0.5f) - lineTo(7.0f, 21.75f) - curveToRelative(-0.82f, 0.62f, -2.0f, 0.03f, -2.0f, -1.0f) - verticalLineToRelative(-1.76f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.0f, -3.24f) - verticalLineToRelative(-7.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.0f, -3.24f) - close() - moveTo(23.0f, 17.75f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 19.25f, 14.0f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - verticalLineToRelative(-0.01f) - horizontalLineToRelative(0.2f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 17.74f) - close() - moveTo(16.5f, 14.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-0.2f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(20.0f, 17.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - } - } - return _commentMultipleLink!! - } - -private var _commentMultipleLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentNote.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentNote.kt deleted file mode 100644 index c01cc765..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentNote.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CommentNote: ImageVector - get() { - if (_commentNote != null) { - return _commentNote!! - } - _commentNote = fluentIcon(name = "Regular.CommentNote") { - fluentPath { - moveTo(12.0f, 3.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - verticalLineToRelative(6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(12.0f, 3.0f) - close() - moveTo(14.5f, 4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - horizontalLineToRelative(-6.0f) - close() - moveTo(14.5f, 7.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - horizontalLineToRelative(-6.0f) - close() - } - fluentPath { - moveTo(5.25f, 3.0f) - horizontalLineTo(11.0f) - verticalLineToRelative(1.5f) - horizontalLineTo(5.25f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineTo(7.5f) - verticalLineToRelative(3.75f) - lineToRelative(5.01f, -3.75f) - horizontalLineToRelative(6.24f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineTo(12.0f) - horizontalLineToRelative(0.5f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 1.0f, -0.17f) - verticalLineToRelative(2.92f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-5.74f) - lineTo(8.0f, 21.75f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.0f, -1.0f) - verticalLineTo(18.0f) - horizontalLineToRelative(-0.75f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) - verticalLineToRelative(-8.5f) - curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) - close() - } - } - return _commentNote!! - } - -private var _commentNote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentOff.kt deleted file mode 100644 index 138b18ef..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommentOff.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CommentOff: ImageVector - get() { - if (_commentOff != null) { - return _commentOff!! - } - _commentOff = fluentIcon(name = "Regular.CommentOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(0.7f, 0.7f) - arcTo(3.24f, 3.24f, 0.0f, false, false, 2.0f, 6.25f) - verticalLineToRelative(8.5f) - curveTo(2.0f, 16.55f, 3.46f, 18.0f, 5.25f, 18.0f) - lineTo(6.0f, 18.0f) - verticalLineToRelative(2.75f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.0f, 1.0f) - lineTo(13.0f, 18.0f) - horizontalLineToRelative(3.93f) - lineToRelative(3.78f, 3.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(15.44f, 16.5f) - lineTo(12.5f, 16.5f) - lineTo(7.5f, 20.25f) - lineTo(7.5f, 16.5f) - lineTo(5.25f, 16.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.47f, 0.18f, -0.9f, 0.48f, -1.2f) - lineTo(15.44f, 16.5f) - close() - moveTo(20.5f, 14.75f) - curveToRelative(0.0f, 0.7f, -0.4f, 1.3f, -1.0f, 1.58f) - lineToRelative(1.1f, 1.1f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 1.4f, -2.68f) - verticalLineToRelative(-8.5f) - curveTo(22.0f, 4.45f, 20.54f, 3.0f, 18.75f, 3.0f) - lineTo(6.18f, 3.0f) - lineToRelative(1.5f, 1.5f) - horizontalLineToRelative(11.07f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(8.5f) - close() - } - } - return _commentOff!! - } - -private var _commentOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Communication.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Communication.kt deleted file mode 100644 index 26637a1c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Communication.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Communication: ImageVector - get() { - if (_communication != null) { - return _communication!! - } - _communication = fluentIcon(name = "Regular.Communication") { - fluentPath { - moveTo(12.0f, 4.5f) - arcTo(8.5f, 8.5f, 0.0f, false, false, 5.98f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 14.15f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.05f, -1.05f) - arcTo(8.5f, 8.5f, 0.0f, false, false, 12.0f, 4.5f) - close() - moveTo(12.0f, 8.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, -3.53f, 8.54f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - arcToRelative(6.5f, 6.5f, 0.0f, true, true, 9.19f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.07f, -1.06f) - arcTo(5.0f, 5.0f, 0.0f, false, false, 12.0f, 8.0f) - close() - moveTo(12.0f, 10.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, -5.0f) - close() - moveTo(11.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - close() - } - } - return _communication!! - } - -private var _communication: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommunicationPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommunicationPerson.kt deleted file mode 100644 index bdaefc3f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CommunicationPerson.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CommunicationPerson: ImageVector - get() { - if (_communicationPerson != null) { - return _communicationPerson!! - } - _communicationPerson = fluentIcon(name = "Regular.CommunicationPerson") { - fluentPath { - moveTo(3.5f, 13.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, 16.88f, -1.46f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 1.58f, 2.4f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -17.03f, 6.12f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.05f, -1.05f) - arcTo(8.47f, 8.47f, 0.0f, false, true, 3.5f, 13.0f) - close() - moveTo(18.2f, 11.01f) - arcTo(6.5f, 6.5f, 0.0f, true, false, 7.4f, 17.6f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.07f, -1.06f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 8.3f, -5.07f) - curveToRelative(0.42f, -0.25f, 0.9f, -0.41f, 1.42f, -0.46f) - close() - moveTo(9.5f, 13.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) - close() - moveTo(12.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(21.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(23.0f, 19.88f) - curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) - reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _communicationPerson!! - } - -private var _communicationPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CompassNorthwest.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CompassNorthwest.kt deleted file mode 100644 index 28c027d4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CompassNorthwest.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CompassNorthwest: ImageVector - get() { - if (_compassNorthwest != null) { - return _compassNorthwest!! - } - _compassNorthwest = fluentIcon(name = "Regular.CompassNorthwest") { - fluentPath { - moveTo(3.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 17.0f, 0.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, -17.0f, 0.0f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) - close() - moveTo(7.08f, 8.7f) - curveToRelative(-0.4f, -1.01f, 0.6f, -2.02f, 1.63f, -1.62f) - lineToRelative(4.03f, 1.6f) - arcToRelative(4.75f, 4.75f, 0.0f, false, true, 2.6f, 2.55f) - lineToRelative(1.86f, 4.33f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.64f, 1.64f) - lineToRelative(-4.33f, -1.86f) - arcToRelative(4.75f, 4.75f, 0.0f, false, true, -2.54f, -2.6f) - lineTo(7.09f, 8.7f) - close() - moveTo(8.69f, 8.7f) - lineTo(10.09f, 12.18f) - curveToRelative(0.31f, 0.8f, 0.94f, 1.44f, 1.73f, 1.78f) - lineToRelative(3.75f, 1.61f) - lineToRelative(-1.6f, -3.75f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -1.79f, -1.74f) - lineTo(8.69f, 8.7f) - close() - } - } - return _compassNorthwest!! - } - -private var _compassNorthwest: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Component2DoubleTapSwipeDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Component2DoubleTapSwipeDown.kt deleted file mode 100644 index c07a642f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Component2DoubleTapSwipeDown.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Component2DoubleTapSwipeDown: ImageVector - get() { - if (_component2DoubleTapSwipeDown != null) { - return _component2DoubleTapSwipeDown!! - } - _component2DoubleTapSwipeDown = fluentIcon(name = "Regular.Component2DoubleTapSwipeDown") { - fluentPath { - moveTo(12.0f, 8.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(10.7f) - lineToRelative(2.22f, -2.21f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.08f) - lineToRelative(0.08f, 0.08f) - curveToRelative(0.27f, 0.26f, 0.3f, 0.68f, 0.07f, 0.97f) - lineToRelative(-0.07f, 0.09f) - lineToRelative(-3.5f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-3.5f, -3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.14f) - lineToRelative(0.08f, 0.08f) - lineToRelative(2.22f, 2.21f) - lineTo(11.25f, 8.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, 1.75f, 13.78f) - verticalLineToRelative(-1.56f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -3.5f, 0.0f) - verticalLineToRelative(1.56f) - arcTo(7.0f, 7.0f, 0.0f, false, true, 12.0f, 2.0f) - close() - moveTo(12.0f, 4.5f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 1.75f, 8.65f) - verticalLineToRelative(-1.71f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, -3.5f, 0.0f) - verticalLineToRelative(1.7f) - arcTo(4.5f, 4.5f, 0.0f, false, true, 12.0f, 4.5f) - close() - } - } - return _component2DoubleTapSwipeDown!! - } - -private var _component2DoubleTapSwipeDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Component2DoubleTapSwipeUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Component2DoubleTapSwipeUp.kt deleted file mode 100644 index a961bb7d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Component2DoubleTapSwipeUp.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Component2DoubleTapSwipeUp: ImageVector - get() { - if (_component2DoubleTapSwipeUp != null) { - return _component2DoubleTapSwipeUp!! - } - _component2DoubleTapSwipeUp = fluentIcon(name = "Regular.Component2DoubleTapSwipeUp") { - fluentPath { - moveTo(12.0f, 16.02f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.29f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - lineTo(12.75f, 4.57f) - lineToRelative(2.22f, 2.21f) - curveToRelative(0.27f, 0.27f, 0.68f, 0.3f, 0.98f, 0.07f) - lineToRelative(0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.07f, -0.98f) - lineToRelative(-0.07f, -0.08f) - lineToRelative(-3.5f, -3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, -0.07f) - lineToRelative(-0.08f, 0.07f) - lineToRelative(-3.5f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) - lineToRelative(0.08f, -0.07f) - lineToRelative(2.22f, -2.22f) - verticalLineToRelative(10.7f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.76f, 0.75f, 0.76f) - close() - moveTo(12.0f, 22.02f) - arcToRelative(7.0f, 7.0f, 0.0f, false, false, 1.75f, -13.78f) - lineTo(13.75f, 9.8f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -3.5f, 0.0f) - lineTo(10.25f, 8.24f) - arcTo(7.0f, 7.0f, 0.0f, false, false, 12.0f, 22.02f) - close() - moveTo(12.0f, 19.52f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 1.75f, -8.65f) - verticalLineToRelative(1.71f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, -3.5f, 0.0f) - verticalLineToRelative(-1.71f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 19.52f) - close() - } - } - return _component2DoubleTapSwipeUp!! - } - -private var _component2DoubleTapSwipeUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Compose.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Compose.kt deleted file mode 100644 index 04a3c043..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Compose.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Compose: ImageVector - get() { - if (_compose != null) { - return _compose!! - } - _compose = fluentIcon(name = "Regular.Compose") { - fluentPath { - moveTo(21.78f, 3.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-10.0f, 10.0f) - lineToRelative(-0.47f, 1.53f) - lineToRelative(1.53f, -0.47f) - lineToRelative(10.0f, -10.0f) - close() - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(8.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineTo(6.25f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineTo(6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-8.0f) - close() - } - } - return _compose!! - } - -private var _compose: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ConferenceRoom.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ConferenceRoom.kt deleted file mode 100644 index d9ebb1b6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ConferenceRoom.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ConferenceRoom: ImageVector - get() { - if (_conferenceRoom != null) { - return _conferenceRoom!! - } - _conferenceRoom = fluentIcon(name = "Regular.ConferenceRoom") { - fluentPath { - moveToRelative(10.82f, 2.0f) - lineToRelative(0.1f, 0.02f) - lineToRelative(8.5f, 2.0f) - curveToRelative(0.3f, 0.07f, 0.53f, 0.32f, 0.57f, 0.63f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(14.5f) - curveToRelative(0.0f, 0.31f, -0.2f, 0.59f, -0.48f, 0.7f) - lineToRelative(-0.1f, 0.03f) - lineToRelative(-8.5f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.91f, -0.63f) - lineToRelative(-0.01f, -0.1f) - lineTo(10.0f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.33f, -0.74f, 0.72f, -0.75f) - horizontalLineToRelative(0.1f) - close() - moveTo(11.5f, 3.7f) - verticalLineToRelative(16.6f) - lineToRelative(7.0f, -1.64f) - lineTo(18.5f, 5.34f) - lineToRelative(-7.0f, -1.64f) - close() - moveTo(9.0f, 4.0f) - verticalLineToRelative(1.5f) - lineTo(5.5f, 5.5f) - verticalLineToRelative(13.0f) - lineTo(9.0f, 18.5f) - lineTo(9.0f, 20.0f) - lineTo(4.75f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - lineTo(4.0f, 4.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - lineTo(9.0f, 4.0f) - close() - moveTo(14.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - } - } - return _conferenceRoom!! - } - -private var _conferenceRoom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Connector.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Connector.kt deleted file mode 100644 index 69721344..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Connector.kt +++ /dev/null @@ -1,103 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Connector: ImageVector - get() { - if (_connector != null) { - return _connector!! - } - _connector = fluentIcon(name = "Regular.Connector") { - fluentPath { - moveTo(8.25f, 4.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(2.77f) - lineToRelative(1.88f, 2.82f) - curveToRelative(0.06f, 0.1f, 0.1f, 0.2f, 0.11f, 0.3f) - lineToRelative(0.01f, 0.11f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(9.0f, 16.0f) - verticalLineToRelative(3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(7.5f, 16.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(3.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, 0.1f) - lineTo(4.01f, 16.0f) - lineTo(2.74f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - verticalLineToRelative(-4.6f) - curveToRelative(0.0f, -0.1f, 0.02f, -0.22f, 0.07f, -0.32f) - lineToRelative(0.05f, -0.1f) - lineTo(4.0f, 7.54f) - lineTo(4.0f, 4.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(3.1f) - curveToRelative(0.0f, 0.11f, -0.02f, 0.22f, -0.07f, 0.32f) - lineToRelative(-0.05f, 0.1f) - lineToRelative(-1.88f, 2.81f) - verticalLineToRelative(3.52f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(-3.52f) - lineTo(7.63f, 8.17f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.12f, -0.31f) - lineTo(7.51f, 4.75f) - curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.74f, -0.75f) - close() - moveTo(15.25f, 4.0f) - horizontalLineToRelative(4.5f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - lineTo(20.5f, 8.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.1f, -0.02f, 0.22f, -0.07f, 0.32f) - lineToRelative(-0.05f, 0.1f) - lineToRelative(-1.88f, 2.8f) - verticalLineToRelative(2.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-3.1f) - curveToRelative(0.0f, -0.11f, 0.03f, -0.22f, 0.07f, -0.32f) - lineToRelative(0.06f, -0.1f) - lineToRelative(1.87f, -2.81f) - lineTo(20.5f, 9.5f) - horizontalLineToRelative(-6.0f) - verticalLineToRelative(3.52f) - lineToRelative(1.88f, 2.81f) - curveToRelative(0.06f, 0.1f, 0.1f, 0.2f, 0.12f, 0.31f) - verticalLineToRelative(3.11f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, 0.1f) - verticalLineToRelative(-2.87f) - lineToRelative(-1.88f, -2.82f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.12f, -0.3f) - lineTo(13.01f, 8.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.64f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(0.76f) - lineTo(14.51f, 4.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.64f, -0.74f) - horizontalLineToRelative(4.6f) - horizontalLineToRelative(-4.5f) - close() - moveTo(19.0f, 5.5f) - horizontalLineToRelative(-3.0f) - lineTo(16.0f, 8.0f) - horizontalLineToRelative(3.0f) - lineTo(19.0f, 5.5f) - close() - } - } - return _connector!! - } - -private var _connector: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ContactCard.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ContactCard.kt deleted file mode 100644 index f3afe057..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ContactCard.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ContactCard: ImageVector - get() { - if (_contactCard != null) { - return _contactCard!! - } - _contactCard = fluentIcon(name = "Regular.ContactCard") { - fluentPath { - moveTo(19.75f, 4.0f) - curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(22.0f, 19.0f, 21.0f, 20.0f, 19.75f, 20.0f) - lineTo(4.25f, 20.0f) - curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) - lineTo(2.0f, 6.25f) - curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) - horizontalLineToRelative(15.5f) - close() - moveTo(19.75f, 5.5f) - lineTo(4.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(15.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) - lineTo(20.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(9.75f, 12.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.6f) - curveToRelative(-0.17f, 1.11f, -1.1f, 1.65f, -2.5f, 1.65f) - reflectiveCurveToRelative(-2.33f, -0.54f, -2.5f, -1.65f) - verticalLineToRelative(-0.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - close() - moveTo(13.25f, 13.0f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.49f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - horizontalLineToRelative(4.6f) - horizontalLineToRelative(-4.5f) - close() - moveTo(8.0f, 8.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(13.25f, 9.5f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(4.6f) - horizontalLineToRelative(-4.5f) - close() - } - } - return _contactCard!! - } - -private var _contactCard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ContactCardGroup.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ContactCardGroup.kt deleted file mode 100644 index 3fd32139..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ContactCardGroup.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ContactCardGroup: ImageVector - get() { - if (_contactCardGroup != null) { - return _contactCardGroup!! - } - _contactCardGroup = fluentIcon(name = "Regular.ContactCardGroup") { - fluentPath { - moveTo(18.75f, 4.0f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(5.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(5.25f, 4.0f) - horizontalLineToRelative(13.5f) - close() - moveTo(18.75f, 5.5f) - lineTo(5.11f, 5.5f) - curveToRelative(-0.9f, 0.08f, -1.61f, 0.83f, -1.61f, 1.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(9.25f, 12.5f) - curveToRelative(0.42f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.58f) - curveToRelative(0.0f, 1.27f, -0.97f, 1.92f, -2.5f, 1.92f) - reflectiveCurveTo(5.0f, 15.1f, 5.0f, 13.83f) - verticalLineToRelative(-0.58f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - close() - moveTo(10.83f, 12.5f) - horizontalLineToRelative(1.42f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.33f) - curveToRelative(0.0f, 0.97f, -0.77f, 1.42f, -1.88f, 1.42f) - curveToRelative(-0.11f, 0.0f, -0.22f, 0.0f, -0.33f, -0.02f) - curveToRelative(0.11f, -0.26f, 0.18f, -0.56f, 0.2f, -0.9f) - lineToRelative(0.01f, -0.25f) - verticalLineToRelative(-0.58f) - curveToRelative(0.0f, -0.27f, -0.06f, -0.52f, -0.17f, -0.75f) - close() - moveTo(15.25f, 12.5f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-3.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(3.1f) - horizontalLineToRelative(-3.0f) - close() - moveTo(7.5f, 8.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(11.37f, 9.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(15.25f, 9.5f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-3.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(3.1f) - horizontalLineToRelative(-3.0f) - close() - } - } - return _contactCardGroup!! - } - -private var _contactCardGroup: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ContactCardRibbon.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ContactCardRibbon.kt deleted file mode 100644 index a48fcf98..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ContactCardRibbon.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ContactCardRibbon: ImageVector - get() { - if (_contactCardRibbon != null) { - return _contactCardRibbon!! - } - _contactCardRibbon = fluentIcon(name = "Regular.ContactCardRibbon") { - fluentPath { - moveTo(19.75f, 4.0f) - curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) - verticalLineToRelative(5.5f) - curveToRelative(-0.45f, -0.3f, -0.96f, -0.52f, -1.5f, -0.64f) - lineTo(20.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(4.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(16.0f, 18.5f) - lineTo(16.0f, 20.0f) - lineTo(4.25f, 20.0f) - curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) - lineTo(2.0f, 6.25f) - curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) - horizontalLineToRelative(15.5f) - close() - moveTo(13.25f, 13.0f) - horizontalLineToRelative(2.51f) - curveToRelative(-0.3f, 0.45f, -0.52f, 0.95f, -0.65f, 1.5f) - horizontalLineToRelative(-1.86f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(9.75f, 12.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.6f) - curveToRelative(-0.17f, 1.11f, -1.1f, 1.65f, -2.5f, 1.65f) - reflectiveCurveToRelative(-2.33f, -0.54f, -2.5f, -1.65f) - verticalLineToRelative(-0.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - close() - moveTo(8.0f, 8.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(13.25f, 9.5f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(23.0f, 15.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, -7.0f, 0.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 7.0f, 0.0f) - close() - moveTo(17.0f, 19.24f) - verticalLineToRelative(3.05f) - curveToRelative(0.0f, 0.63f, 0.76f, 0.95f, 1.21f, 0.5f) - lineToRelative(1.29f, -1.29f) - lineToRelative(1.29f, 1.29f) - arcToRelative(0.71f, 0.71f, 0.0f, false, false, 1.21f, -0.5f) - verticalLineToRelative(-3.05f) - arcToRelative(4.48f, 4.48f, 0.0f, false, true, -5.0f, 0.0f) - close() - } - } - return _contactCardRibbon!! - } - -private var _contactCardRibbon: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ContentSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ContentSettings.kt deleted file mode 100644 index 5874e16c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ContentSettings.kt +++ /dev/null @@ -1,109 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ContentSettings: ImageVector - get() { - if (_contentSettings != null) { - return _contentSettings!! - } - _contentSettings = fluentIcon(name = "Regular.ContentSettings") { - fluentPath { - moveTo(17.75f, 3.0f) - horizontalLineToRelative(0.19f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 21.0f, 6.08f) - lineTo(21.0f, 12.02f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 8.0f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(9.75f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(5.06f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(6.25f, 21.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(3.0f, 17.75f) - lineTo(3.0f, 6.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(0.25f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(-0.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(10.25f, 9.5f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(7.0f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-7.0f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(3.5f) - close() - moveTo(9.5f, 11.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(5.5f) - horizontalLineToRelative(2.0f) - lineTo(9.5f, 11.0f) - close() - moveTo(18.0f, 10.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(14.28f, 13.98f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.59f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.01f, 1.8f) - lineToRelative(0.54f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) - lineToRelative(-0.19f, 0.63f) - curveToRelative(0.44f, 0.39f, 0.94f, 0.7f, 1.49f, 0.93f) - lineToRelative(0.5f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.89f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) - lineToRelative(-0.2f, -0.69f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) - lineToRelative(0.59f, -0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, -1.8f) - lineToRelative(-0.55f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.19f, -0.63f) - curveToRelative(-0.44f, -0.4f, -0.94f, -0.7f, -1.49f, -0.93f) - lineToRelative(-0.49f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) - lineToRelative(0.2f, 0.7f) - close() - moveTo(17.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) - close() - } - } - return _contentSettings!! - } - -private var _contentSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ContentView.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ContentView.kt deleted file mode 100644 index 04195827..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ContentView.kt +++ /dev/null @@ -1,95 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ContentView: ImageVector - get() { - if (_contentView != null) { - return _contentView!! - } - _contentView = fluentIcon(name = "Regular.ContentView") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(6.25f, 4.5f) - close() - moveTo(6.0f, 8.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(8.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-8.5f) - curveTo(6.78f, 11.5f, 6.0f, 10.72f, 6.0f, 9.75f) - verticalLineToRelative(-1.5f) - close() - moveTo(7.75f, 8.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(8.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-1.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-8.5f) - close() - moveTo(6.75f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - close() - moveTo(6.0f, 16.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(15.25f, 13.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(1.0f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-1.0f) - close() - moveTo(15.0f, 14.75f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(1.0f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-1.0f) - close() - } - } - return _contentView!! - } - -private var _contentView: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ContentViewGallery.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ContentViewGallery.kt deleted file mode 100644 index 836288d6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ContentViewGallery.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ContentViewGallery: ImageVector - get() { - if (_contentViewGallery != null) { - return _contentViewGallery!! - } - _contentViewGallery = fluentIcon(name = "Regular.ContentViewGallery") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(7.25f) - verticalLineToRelative(-15.0f) - lineTo(6.25f, 4.5f) - close() - moveTo(17.75f, 19.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 16.0f) - lineTo(15.0f, 16.0f) - verticalLineToRelative(3.5f) - horizontalLineToRelative(2.75f) - close() - moveTo(19.5f, 14.5f) - verticalLineToRelative(-5.0f) - lineTo(15.0f, 9.5f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(4.5f) - close() - moveTo(19.5f, 8.0f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(15.0f, 4.5f) - lineTo(15.0f, 8.0f) - horizontalLineToRelative(4.5f) - close() - moveTo(6.0f, 13.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(7.25f, 6.5f) - curveTo(6.56f, 6.5f, 6.0f, 7.06f, 6.0f, 7.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-3.5f) - close() - moveTo(7.5f, 10.0f) - lineTo(7.5f, 8.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-3.0f) - close() - moveTo(6.0f, 16.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _contentViewGallery!! - } - -private var _contentViewGallery: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ContractDownLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ContractDownLeft.kt deleted file mode 100644 index 12d16d44..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ContractDownLeft.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ContractDownLeft: ImageVector - get() { - if (_contractDownLeft != null) { - return _contractDownLeft!! - } - _contractDownLeft = fluentIcon(name = "Regular.ContractDownLeft") { - fluentPath { - moveTo(4.5f, 6.25f) - lineTo(4.5f, 12.0f) - horizontalLineToRelative(4.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 12.0f, 14.75f) - verticalLineToRelative(4.75f) - horizontalLineToRelative(5.75f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - close() - moveTo(4.5f, 13.5f) - verticalLineToRelative(4.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(4.25f) - verticalLineToRelative(-4.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(4.5f, 13.5f) - close() - moveTo(15.56f, 9.5f) - horizontalLineToRelative(4.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(4.69f) - lineToRelative(5.22f, -5.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineTo(15.56f, 9.5f) - close() - } - } - return _contractDownLeft!! - } - -private var _contractDownLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ControlButton.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ControlButton.kt deleted file mode 100644 index cdf50242..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ControlButton.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ControlButton: ImageVector - get() { - if (_controlButton != null) { - return _controlButton!! - } - _controlButton = fluentIcon(name = "Regular.ControlButton") { - fluentPath { - moveTo(7.75f, 8.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 5.0f, 10.75f) - verticalLineToRelative(2.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 7.75f, 16.0f) - horizontalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.5f) - close() - moveTo(11.5f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - lineTo(10.0f, 11.0f) - horizontalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(10.0f, 12.5f) - lineTo(10.0f, 14.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(12.0f, 14.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.75f) - lineTo(11.5f, 8.75f) - close() - moveTo(19.5f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-6.5f) - close() - moveTo(15.5f, 13.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(16.0f, 11.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(15.5f, 13.0f) - close() - moveTo(5.25f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) - horizontalLineToRelative(13.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-9.5f) - curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) - lineTo(5.25f, 4.0f) - close() - moveTo(3.5f, 7.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(5.25f, 18.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-9.5f) - close() - } - } - return _controlButton!! - } - -private var _controlButton: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ConvertRange.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ConvertRange.kt deleted file mode 100644 index a1b18f4a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ConvertRange.kt +++ /dev/null @@ -1,95 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ConvertRange: ImageVector - get() { - if (_convertRange != null) { - return _convertRange!! - } - _convertRange = fluentIcon(name = "Regular.ConvertRange") { - fluentPath { - moveTo(6.25f, 3.0f) - curveTo(5.01f, 3.0f, 4.0f, 4.0f, 4.0f, 5.25f) - verticalLineToRelative(2.5f) - curveTo(4.0f, 8.99f, 5.0f, 10.0f, 6.25f, 10.0f) - horizontalLineToRelative(9.5f) - curveTo(16.99f, 10.0f, 18.0f, 9.0f, 18.0f, 7.75f) - verticalLineToRelative(-2.5f) - curveTo(18.0f, 4.01f, 17.0f, 3.0f, 15.75f, 3.0f) - horizontalLineToRelative(-9.5f) - close() - moveTo(5.5f, 5.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(9.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-2.5f) - close() - moveTo(8.7f, 16.0f) - curveToRelative(-0.39f, 0.0f, -0.7f, 0.34f, -0.7f, 0.75f) - reflectiveCurveToRelative(0.31f, 0.75f, 0.7f, 0.75f) - horizontalLineToRelative(4.6f) - curveToRelative(0.39f, 0.0f, 0.7f, -0.34f, 0.7f, -0.75f) - reflectiveCurveToRelative(-0.31f, -0.75f, -0.7f, -0.75f) - lineTo(8.7f, 16.0f) - close() - moveTo(17.35f, 16.45f) - lineTo(17.28f, 16.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-0.72f, 0.72f) - horizontalLineToRelative(1.5f) - curveToRelative(0.65f, 0.0f, 1.18f, -0.5f, 1.24f, -1.12f) - lineToRelative(0.01f, -0.13f) - lineTo(19.31f, 9.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - lineTo(20.81f, 12.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.58f, 2.74f) - lineToRelative(-0.17f, 0.01f) - horizontalLineToRelative(-1.5f) - lineToRelative(0.72f, 0.72f) - curveToRelative(0.27f, 0.26f, 0.3f, 0.68f, 0.07f, 0.98f) - close() - moveTo(18.0f, 19.25f) - verticalLineToRelative(-2.03f) - lineToRelative(-0.01f, 0.02f) - curveToRelative(-0.4f, 0.4f, -0.96f, 0.57f, -1.49f, 0.5f) - verticalLineToRelative(1.51f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.82f) - curveToRelative(0.06f, -0.2f, 0.15f, -0.38f, 0.27f, -0.54f) - lineToRelative(0.03f, -0.03f) - lineToRelative(0.12f, -0.14f) - lineToRelative(0.78f, -0.79f) - lineTo(6.25f, 12.0f) - curveTo(5.01f, 12.0f, 4.0f, 13.0f, 4.0f, 14.25f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(9.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - close() - } - } - return _convertRange!! - } - -private var _convertRange: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cookies.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cookies.kt deleted file mode 100644 index 555d996d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cookies.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Cookies: ImageVector - get() { - if (_cookies != null) { - return _cookies!! - } - _cookies = fluentIcon(name = "Regular.Cookies") { - fluentPath { - moveTo(12.0f, 2.0f) - curveToRelative(0.71f, 0.0f, 1.42f, 0.07f, 2.1f, 0.22f) - curveToRelative(0.59f, 0.13f, 0.8f, 0.84f, 0.38f, 1.27f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 1.2f, 4.2f) - curveToRelative(0.38f, 0.08f, 0.62f, 0.43f, 0.58f, 0.8f) - lineToRelative(-0.01f, 0.26f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 4.37f, 1.66f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.31f, 0.4f) - arcTo(10.0f, 10.0f, 0.0f, true, true, 12.0f, 2.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, 8.47f, 9.26f) - lineToRelative(0.02f, -0.25f) - verticalLineToRelative(-0.16f) - lineToRelative(-0.2f, 0.09f) - curveToRelative(-0.32f, 0.14f, -0.67f, 0.23f, -1.04f, 0.28f) - lineToRelative(-0.27f, 0.02f) - lineToRelative(-0.23f, 0.01f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -3.96f, -3.4f) - lineToRelative(-0.02f, -0.2f) - lineToRelative(-0.01f, -0.19f) - lineToRelative(-0.15f, -0.06f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -2.34f, -3.23f) - lineToRelative(-0.02f, -0.22f) - verticalLineToRelative(-0.2f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.21f, -1.3f) - lineToRelative(0.1f, -0.23f) - lineToRelative(0.08f, -0.2f) - lineToRelative(-0.28f, -0.01f) - lineTo(12.0f, 3.5f) - close() - moveTo(15.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(8.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(12.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(7.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - } - } - return _cookies!! - } - -private var _cookies: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CopyAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CopyAdd.kt deleted file mode 100644 index 6b1d34e7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CopyAdd.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CopyAdd: ImageVector - get() { - if (_copyAdd != null) { - return _copyAdd!! - } - _copyAdd = fluentIcon(name = "Regular.CopyAdd") { - fluentPath { - moveTo(5.5f, 4.63f) - lineTo(5.5f, 17.25f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(1.98f) - curveToRelative(0.3f, 0.56f, 0.66f, 1.06f, 1.08f, 1.5f) - lineTo(8.75f, 22.0f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 4.0f, 17.25f) - lineTo(4.0f, 6.75f) - curveToRelative(0.0f, -0.98f, 0.63f, -1.81f, 1.5f, -2.12f) - close() - moveTo(20.0f, 4.25f) - verticalLineToRelative(7.77f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(18.5f, 4.24f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(13.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(1.27f) - curveToRelative(0.04f, 0.52f, 0.14f, 1.02f, 0.3f, 1.5f) - lineTo(8.74f, 19.49f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-13.0f) - curveTo(6.5f, 3.01f, 7.5f, 2.0f, 8.75f, 2.0f) - horizontalLineToRelative(9.0f) - curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) - close() - moveTo(22.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(17.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(16.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(16.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(17.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(17.0f, 18.0f) - close() - } - } - return _copyAdd!! - } - -private var _copyAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CopyArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CopyArrowRight.kt deleted file mode 100644 index 7f7147d8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CopyArrowRight.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CopyArrowRight: ImageVector - get() { - if (_copyArrowRight != null) { - return _copyArrowRight!! - } - _copyArrowRight = fluentIcon(name = "Regular.CopyArrowRight") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(5.5f, 4.63f) - lineTo(5.5f, 17.25f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(2.98f) - curveToRelative(0.3f, 0.56f, 0.66f, 1.06f, 1.08f, 1.5f) - lineTo(8.75f, 22.0f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 4.0f, 17.25f) - lineTo(4.0f, 6.75f) - curveToRelative(0.0f, -0.98f, 0.63f, -1.81f, 1.5f, -2.12f) - close() - moveTo(18.28f, 14.59f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.56f, 0.0f) - lineToRelative(-0.07f, 0.06f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) - lineToRelative(0.06f, 0.07f) - lineTo(19.29f, 17.0f) - lineTo(14.4f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(0.18f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(0.06f, -0.07f) - lineToRelative(2.53f, -2.53f) - lineToRelative(0.04f, -0.05f) - lineToRelative(0.04f, -0.08f) - lineToRelative(0.03f, -0.08f) - lineTo(20.99f, 17.39f) - lineToRelative(-0.01f, -0.04f) - lineToRelative(-0.04f, -0.08f) - lineToRelative(-0.02f, -0.04f) - lineToRelative(-0.04f, -0.05f) - lineToRelative(-2.53f, -2.53f) - lineToRelative(-0.07f, -0.06f) - close() - moveTo(17.75f, 2.0f) - curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) - verticalLineToRelative(7.25f) - curveToRelative(-0.47f, -0.2f, -0.98f, -0.34f, -1.5f, -0.42f) - lineTo(18.5f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(13.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(2.27f) - curveToRelative(0.04f, 0.52f, 0.14f, 1.02f, 0.3f, 1.5f) - lineTo(8.74f, 19.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-13.0f) - curveTo(6.5f, 3.01f, 7.5f, 2.0f, 8.75f, 2.0f) - horizontalLineToRelative(9.0f) - close() - } - } - return _copyArrowRight!! - } - -private var _copyArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CopySelect.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CopySelect.kt deleted file mode 100644 index d38e724c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CopySelect.kt +++ /dev/null @@ -1,102 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CopySelect: ImageVector - get() { - if (_copySelect != null) { - return _copySelect!! - } - _copySelect = fluentIcon(name = "Regular.CopySelect") { - fluentPath { - moveTo(9.25f, 3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.0f) - curveTo(6.0f, 3.45f, 7.46f, 2.0f, 9.25f, 2.0f) - horizontalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.0f) - close() - moveTo(12.0f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(12.75f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.5f) - close() - moveTo(6.75f, 8.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(22.0f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.5f) - close() - moveTo(18.75f, 16.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.0f) - close() - moveTo(20.5f, 5.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.0f) - curveTo(20.55f, 2.0f, 22.0f, 3.46f, 22.0f, 5.25f) - verticalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(9.25f, 16.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.0f) - curveTo(6.0f, 16.55f, 7.46f, 18.0f, 9.25f, 18.0f) - horizontalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.0f) - close() - moveTo(2.0f, 9.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.0f, -3.24f) - verticalLineToRelative(1.5f) - curveToRelative(-0.85f, 0.13f, -1.5f, 0.86f, -1.5f, 1.74f) - verticalLineToRelative(7.0f) - curveToRelative(0.0f, 2.35f, 1.9f, 4.25f, 4.25f, 4.25f) - horizontalLineToRelative(7.0f) - curveToRelative(0.88f, 0.0f, 1.61f, -0.65f, 1.73f, -1.5f) - lineTo(18.0f, 19.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, 3.0f) - horizontalLineToRelative(-7.0f) - arcTo(5.75f, 5.75f, 0.0f, false, true, 2.0f, 16.25f) - verticalLineToRelative(-7.0f) - close() - } - } - return _copySelect!! - } - -private var _copySelect: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Couch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Couch.kt deleted file mode 100644 index bb59f7ab..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Couch.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Couch: ImageVector - get() { - if (_couch != null) { - return _couch!! - } - _couch = fluentIcon(name = "Regular.Couch") { - fluentPath { - moveTo(7.25f, 4.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.5f, 6.75f) - verticalLineToRelative(1.34f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 11.25f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 1.43f, 1.1f, 2.61f, 2.5f, 2.74f) - verticalLineToRelative(1.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(6.0f, 17.0f) - horizontalLineToRelative(12.0f) - verticalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.26f) - curveToRelative(1.4f, -0.13f, 2.5f, -1.3f, 2.5f, -2.74f) - verticalLineToRelative(-3.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -2.5f, -3.16f) - lineTo(19.5f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 16.75f, 4.0f) - horizontalLineToRelative(-9.5f) - close() - moveTo(19.25f, 15.5f) - lineTo(4.75f, 15.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - verticalLineToRelative(-3.0f) - arcToRelative(1.75f, 1.75f, 0.0f, true, true, 3.5f, 0.0f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(8.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-0.5f) - arcToRelative(1.75f, 1.75f, 0.0f, true, true, 3.5f, 0.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - close() - moveTo(18.0f, 8.09f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 15.5f, 11.0f) - horizontalLineToRelative(-7.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 6.0f, 8.09f) - lineTo(6.0f, 6.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(9.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(1.34f) - close() - } - } - return _couch!! - } - -private var _couch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CreditCardClock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CreditCardClock.kt deleted file mode 100644 index b92ef2b7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CreditCardClock.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CreditCardClock: ImageVector - get() { - if (_creditCardClock != null) { - return _creditCardClock!! - } - _creditCardClock = fluentIcon(name = "Regular.CreditCardClock") { - fluentPath { - moveTo(5.25f, 5.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 8.25f) - verticalLineToRelative(7.5f) - curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) - horizontalLineToRelative(5.92f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -0.17f, -1.5f) - lineTo(5.25f, 17.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(3.5f, 11.0f) - lineTo(22.0f, 11.0f) - lineTo(22.0f, 8.25f) - curveTo(22.0f, 6.45f, 20.54f, 5.0f, 18.75f, 5.0f) - lineTo(5.25f, 5.0f) - close() - moveTo(20.5f, 8.25f) - lineTo(20.5f, 9.5f) - horizontalLineToRelative(-17.0f) - lineTo(3.5f, 8.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(19.5f, 17.5f) - horizontalLineToRelative(-2.0f) - lineTo(17.5f, 15.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - close() - } - } - return _creditCardClock!! - } - -private var _creditCardClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CreditCardPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CreditCardPerson.kt deleted file mode 100644 index 65ee6a9a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CreditCardPerson.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CreditCardPerson: ImageVector - get() { - if (_creditCardPerson != null) { - return _creditCardPerson!! - } - _creditCardPerson = fluentIcon(name = "Regular.CreditCardPerson") { - fluentPath { - moveTo(5.25f, 5.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 8.25f) - verticalLineToRelative(7.5f) - curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) - horizontalLineToRelative(7.86f) - curveToRelative(0.18f, -0.61f, 0.56f, -1.14f, 1.07f, -1.5f) - lineTo(5.25f, 17.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(3.5f, 11.0f) - lineTo(22.0f, 11.0f) - lineTo(22.0f, 8.25f) - curveTo(22.0f, 6.45f, 20.54f, 5.0f, 18.75f, 5.0f) - lineTo(5.25f, 5.0f) - close() - moveTo(20.5f, 8.25f) - lineTo(20.5f, 9.5f) - horizontalLineToRelative(-17.0f) - lineTo(3.5f, 8.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - close() - moveTo(21.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(23.0f, 19.88f) - curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) - reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _creditCardPerson!! - } - -private var _creditCardPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CreditCardToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CreditCardToolbox.kt deleted file mode 100644 index 17176b4a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CreditCardToolbox.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CreditCardToolbox: ImageVector - get() { - if (_creditCardToolbox != null) { - return _creditCardToolbox!! - } - _creditCardToolbox = fluentIcon(name = "Regular.CreditCardToolbox") { - fluentPath { - moveTo(5.25f, 5.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 8.25f) - verticalLineToRelative(7.5f) - curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) - lineTo(11.0f, 19.0f) - verticalLineToRelative(-1.5f) - lineTo(5.25f, 17.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(3.5f, 11.0f) - lineTo(22.0f, 11.0f) - lineTo(22.0f, 8.25f) - curveTo(22.0f, 6.45f, 20.54f, 5.0f, 18.75f, 5.0f) - lineTo(5.25f, 5.0f) - close() - moveTo(20.5f, 8.25f) - lineTo(20.5f, 9.5f) - horizontalLineToRelative(-17.0f) - lineTo(3.5f, 8.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - close() - moveTo(13.5f, 14.75f) - horizontalLineToRelative(0.5f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(3.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(0.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - lineTo(23.0f, 18.0f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(-0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(0.5f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(-0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(0.5f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(-1.75f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - close() - moveTo(15.75f, 13.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-1.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-3.5f) - close() - moveTo(19.0f, 19.5f) - lineTo(19.0f, 19.0f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - lineTo(15.0f, 19.0f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(8.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - lineTo(23.0f, 19.0f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - close() - } - } - return _creditCardToolbox!! - } - -private var _creditCardToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Crop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Crop.kt deleted file mode 100644 index 61422d3a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Crop.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Crop: ImageVector - get() { - if (_crop != null) { - return _crop!! - } - _crop = fluentIcon(name = "Regular.Crop") { - fluentPath { - moveTo(21.25f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineTo(18.5f) - verticalLineToRelative(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineTo(18.5f) - horizontalLineTo(8.75f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineToRelative(-0.01f, -0.18f) - verticalLineTo(7.0f) - horizontalLineTo(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineTo(5.5f) - verticalLineTo(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(12.6f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(12.5f) - close() - moveTo(8.0f, 5.5f) - horizontalLineToRelative(7.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.24f, 3.07f) - lineToRelative(0.01f, 0.18f) - verticalLineTo(16.0f) - horizontalLineTo(17.0f) - verticalLineTo(8.75f) - curveToRelative(0.0f, -0.92f, -0.7f, -1.67f, -1.6f, -1.74f) - lineTo(15.24f, 7.0f) - horizontalLineTo(8.0f) - verticalLineTo(5.5f) - close() - } - } - return _crop!! - } - -private var _crop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CropInterim.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CropInterim.kt deleted file mode 100644 index 3738438e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CropInterim.kt +++ /dev/null @@ -1,139 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CropInterim: ImageVector - get() { - if (_cropInterim != null) { - return _cropInterim!! - } - _cropInterim = fluentIcon(name = "Regular.CropInterim") { - fluentPath { - moveTo(16.67f, 9.1f) - arcToRelative(6.5f, 6.5f, 0.0f, true, true, -5.17f, 11.52f) - verticalLineToRelative(0.63f) - curveToRelative(0.0f, 0.38f, -0.29f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.65f) - verticalLineToRelative(-2.6f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.64f, -0.74f) - horizontalLineToRelative(2.61f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.48f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-0.74f) - arcToRelative(4.98f, 4.98f, 0.0f, false, false, 8.0f, -4.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, -3.6f, -4.8f) - lineToRelative(-0.24f, -1.6f) - close() - moveTo(14.5f, 3.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.97f, 4.8f) - lineToRelative(0.82f, 5.32f) - arcTo(2.5f, 2.5f, 0.0f, true, true, 13.5f, 17.0f) - lineTo(6.5f, 17.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -2.78f, -3.88f) - lineToRelative(0.82f, -5.3f) - arcTo(2.5f, 2.5f, 0.0f, true, true, 7.5f, 4.0f) - horizontalLineToRelative(4.99f) - curveToRelative(0.46f, -0.6f, 1.18f, -1.0f, 2.0f, -1.0f) - close() - moveTo(4.5f, 14.5f) - horizontalLineToRelative(-0.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(0.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -0.88f) - verticalLineToRelative(-0.24f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.52f, -0.76f) - lineToRelative(-0.11f, -0.05f) - lineToRelative(-0.13f, -0.04f) - lineToRelative(-0.08f, -0.02f) - lineToRelative(-0.16f, -0.01f) - close() - moveTo(15.2f, 14.55f) - lineTo(15.14f, 14.57f) - lineTo(15.08f, 14.6f) - lineTo(14.98f, 14.65f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.4f, 1.84f) - lineToRelative(0.12f, 0.01f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, -2.0f) - horizontalLineToRelative(-0.12f) - lineToRelative(-0.16f, 0.01f) - lineToRelative(-0.15f, 0.04f) - close() - moveTo(11.98f, 5.5f) - lineTo(8.0f, 5.5f) - curveToRelative(0.0f, 1.2f, -0.84f, 2.2f, -1.96f, 2.45f) - lineToRelative(-0.8f, 5.16f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 7.0f, 15.31f) - lineToRelative(0.01f, 0.19f) - horizontalLineToRelative(6.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 1.76f, -2.39f) - lineToRelative(-0.8f, -5.16f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 12.0f, 5.67f) - lineTo(12.0f, 5.5f) - close() - moveTo(13.75f, 6.2f) - lineTo(13.78f, 6.22f) - lineTo(13.9f, 6.32f) - lineTo(13.98f, 6.37f) - lineTo(14.08f, 6.42f) - lineTo(14.18f, 6.46f) - lineTo(14.28f, 6.48f) - lineTo(14.35f, 6.5f) - horizontalLineToRelative(0.25f) - lineToRelative(0.17f, -0.04f) - lineToRelative(0.12f, -0.05f) - lineToRelative(0.09f, -0.04f) - lineToRelative(0.1f, -0.06f) - lineToRelative(0.1f, -0.1f) - lineToRelative(0.08f, -0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.3f, -1.5f) - lineToRelative(-0.1f, -0.05f) - lineToRelative(-0.15f, -0.05f) - lineToRelative(-0.08f, -0.01f) - arcToRelative(0.99f, 0.99f, 0.0f, false, false, -0.15f, -0.02f) - lineToRelative(-0.12f, 0.01f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.6f, 1.69f) - close() - moveTo(4.5f, 5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.22f, 0.63f) - lineToRelative(0.07f, 0.07f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.19f, 0.16f) - lineToRelative(0.1f, 0.05f) - lineToRelative(0.1f, 0.04f) - lineToRelative(0.09f, 0.03f) - lineToRelative(0.1f, 0.02f) - horizontalLineToRelative(0.13f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.17f, -0.01f) - lineToRelative(0.07f, -0.02f) - lineToRelative(0.11f, -0.03f) - lineToRelative(0.06f, -0.02f) - lineToRelative(0.15f, -0.09f) - lineToRelative(0.08f, -0.06f) - lineToRelative(0.06f, -0.05f) - lineToRelative(0.08f, -0.1f) - lineToRelative(0.06f, -0.08f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.15f, -0.42f) - lineToRelative(0.01f, -0.12f) - verticalLineToRelative(-0.12f) - lineToRelative(-0.03f, -0.1f) - lineToRelative(-0.01f, -0.07f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.84f, -0.7f) - lineTo(5.5f, 4.51f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.17f, 0.0f) - lineToRelative(-0.08f, 0.02f) - lineToRelative(-0.09f, 0.03f) - lineToRelative(-0.05f, 0.02f) - lineToRelative(-0.1f, 0.05f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.51f, 0.87f) - close() - } - } - return _cropInterim!! - } - -private var _cropInterim: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CropInterimOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CropInterimOff.kt deleted file mode 100644 index 96648755..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CropInterimOff.kt +++ /dev/null @@ -1,108 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CropInterimOff: ImageVector - get() { - if (_cropInterimOff != null) { - return _cropInterimOff!! - } - _cropInterimOff = fluentIcon(name = "Regular.CropInterimOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.06f, 1.06f) - arcToRelative(2.49f, 2.49f, 0.0f, false, false, 1.26f, 3.47f) - lineToRelative(-0.82f, 5.31f) - arcTo(2.5f, 2.5f, 0.0f, true, false, 6.5f, 17.0f) - horizontalLineToRelative(7.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.16f, 0.72f) - lineToRelative(1.8f, 1.8f) - arcToRelative(4.98f, 4.98f, 0.0f, false, true, -5.95f, -0.02f) - horizontalLineToRelative(0.84f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - verticalLineToRelative(2.6f) - curveToRelative(0.05f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - verticalLineToRelative(-0.63f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, 8.04f, -0.02f) - lineToRelative(1.18f, 1.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(13.28f, 14.35f) - curveToRelative(-0.17f, 0.34f, -0.28f, 0.73f, -0.28f, 1.15f) - lineTo(7.0f, 15.5f) - verticalLineToRelative(-0.19f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -1.76f, -2.2f) - lineToRelative(0.8f, -5.16f) - curveToRelative(0.22f, -0.05f, 0.43f, -0.13f, 0.62f, -0.23f) - lineToRelative(6.63f, 6.63f) - close() - moveTo(4.5f, 14.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.16f, 0.01f) - lineToRelative(0.08f, 0.02f) - lineToRelative(0.13f, 0.04f) - lineToRelative(0.1f, 0.05f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.52f, 0.76f) - lineToRelative(0.01f, 0.12f) - verticalLineToRelative(0.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 0.88f) - horizontalLineToRelative(-0.12f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - horizontalLineToRelative(0.12f) - close() - moveTo(7.18f, 4.0f) - lineToRelative(1.5f, 1.5f) - horizontalLineToRelative(3.3f) - lineToRelative(0.01f, 0.17f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 1.97f, 2.28f) - lineToRelative(0.52f, 3.35f) - lineToRelative(1.8f, 1.8f) - lineToRelative(-0.82f, -5.3f) - arcTo(2.5f, 2.5f, 0.0f, true, false, 12.5f, 4.0f) - horizontalLineToRelative(-5.3f) - close() - moveTo(13.76f, 6.2f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.61f, -1.69f) - horizontalLineToRelative(0.27f) - lineToRelative(0.08f, 0.02f) - lineToRelative(0.15f, 0.05f) - lineToRelative(0.1f, 0.06f) - verticalLineToRelative(-0.01f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.3f, 1.5f) - lineToRelative(-0.08f, 0.08f) - lineToRelative(-0.1f, 0.1f) - lineToRelative(-0.1f, 0.06f) - lineToRelative(-0.09f, 0.04f) - lineToRelative(-0.12f, 0.05f) - lineToRelative(-0.17f, 0.04f) - horizontalLineToRelative(-0.25f) - lineToRelative(-0.08f, -0.02f) - lineToRelative(-0.09f, -0.02f) - lineToRelative(-0.1f, -0.04f) - lineToRelative(-0.1f, -0.05f) - lineToRelative(-0.08f, -0.05f) - lineToRelative(-0.12f, -0.1f) - lineToRelative(-0.03f, -0.02f) - close() - moveTo(20.26f, 17.07f) - lineTo(21.41f, 18.23f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -4.74f, -9.12f) - lineToRelative(0.25f, 1.6f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 3.33f, 6.36f) - close() - } - } - return _cropInterimOff!! - } - -private var _cropInterimOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cube.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cube.kt deleted file mode 100644 index ca76da36..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cube.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Cube: ImageVector - get() { - if (_cube != null) { - return _cube!! - } - _cube = fluentIcon(name = "Regular.Cube") { - fluentPath { - moveTo(6.05f, 7.98f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -0.43f) - lineTo(12.0f, 9.44f) - lineToRelative(4.98f, -1.9f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.54f, 1.41f) - lineToRelative(-4.77f, 1.8f) - verticalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - verticalLineToRelative(-5.5f) - lineToRelative(-4.77f, -1.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.43f, -0.97f) - close() - moveTo(10.59f, 2.51f) - curveToRelative(0.9f, -0.37f, 1.92f, -0.37f, 2.82f, 0.0f) - lineToRelative(7.5f, 3.04f) - curveToRelative(0.66f, 0.27f, 1.09f, 0.91f, 1.09f, 1.62f) - verticalLineToRelative(9.66f) - curveToRelative(0.0f, 0.7f, -0.43f, 1.35f, -1.1f, 1.62f) - lineToRelative(-7.5f, 3.04f) - curveToRelative(-0.9f, 0.36f, -1.9f, 0.36f, -2.8f, 0.0f) - lineToRelative(-7.5f, -3.04f) - curveToRelative(-0.67f, -0.27f, -1.1f, -0.91f, -1.1f, -1.62f) - lineTo(2.0f, 7.17f) - curveToRelative(0.0f, -0.71f, 0.43f, -1.35f, 1.1f, -1.62f) - lineToRelative(7.5f, -3.04f) - close() - moveTo(12.85f, 3.91f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.7f, 0.0f) - lineToRelative(-7.5f, 3.03f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.15f, 0.23f) - verticalLineToRelative(9.66f) - curveToRelative(0.0f, 0.1f, 0.06f, 0.19f, 0.16f, 0.23f) - lineToRelative(7.5f, 3.04f) - curveToRelative(0.54f, 0.22f, 1.14f, 0.22f, 1.69f, 0.0f) - lineToRelative(7.5f, -3.04f) - curveToRelative(0.09f, -0.04f, 0.15f, -0.13f, 0.15f, -0.23f) - lineTo(20.5f, 7.17f) - curveToRelative(0.0f, -0.1f, -0.06f, -0.2f, -0.16f, -0.23f) - lineToRelative(-7.5f, -3.04f) - close() - } - } - return _cube!! - } - -private var _cube: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CubeMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CubeMultiple.kt deleted file mode 100644 index 14353aa9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CubeMultiple.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CubeMultiple: ImageVector - get() { - if (_cubeMultiple != null) { - return _cubeMultiple!! - } - _cubeMultiple = fluentIcon(name = "Regular.CubeMultiple") { - fluentPath { - moveTo(10.52f, 4.25f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 3.07f, 0.04f) - lineToRelative(5.91f, 2.1f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 1.0f, 0.59f) - verticalLineToRelative(-0.42f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.33f, -1.88f) - lineTo(14.0f, 2.85f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, -4.02f, 0.0f) - lineTo(4.83f, 4.68f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 3.5f, 6.56f) - verticalLineToRelative(0.42f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 1.0f, -0.6f) - lineToRelative(5.91f, -2.1f) - curveToRelative(0.04f, 0.0f, 0.07f, -0.02f, 0.1f, -0.03f) - close() - moveTo(6.45f, 10.11f) - curveToRelative(0.14f, -0.39f, 0.57f, -0.6f, 0.96f, -0.45f) - lineTo(12.0f, 11.28f) - lineToRelative(4.6f, -1.62f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.5f, 1.4f) - lineToRelative(-4.35f, 1.55f) - verticalLineToRelative(4.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-4.72f) - lineToRelative(-4.34f, -1.54f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.46f, -0.96f) - close() - moveTo(10.75f, 5.23f) - curveToRelative(0.8f, -0.29f, 1.7f, -0.29f, 2.5f, 0.0f) - lineToRelative(5.92f, 2.1f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 20.5f, 9.2f) - verticalLineToRelative(8.24f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.33f, 1.88f) - lineToRelative(-5.92f, 2.1f) - curveToRelative(-0.8f, 0.29f, -1.7f, 0.29f, -2.5f, 0.0f) - lineToRelative(-5.92f, -2.1f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.33f, -1.88f) - lineTo(3.5f, 9.2f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.33f, -1.88f) - lineToRelative(5.92f, -2.1f) - close() - moveTo(12.75f, 6.64f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.5f, 0.0f) - lineToRelative(-5.92f, 2.1f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.33f, 0.47f) - verticalLineToRelative(8.24f) - curveToRelative(0.0f, 0.2f, 0.13f, 0.4f, 0.33f, 0.47f) - lineToRelative(5.92f, 2.1f) - curveToRelative(0.48f, 0.17f, 1.02f, 0.17f, 1.5f, 0.0f) - lineToRelative(5.92f, -2.1f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.33f, -0.47f) - lineTo(19.0f, 9.2f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.33f, -0.47f) - lineToRelative(-5.92f, -2.1f) - close() - } - } - return _cubeMultiple!! - } - -private var _cubeMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CubeQuick.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CubeQuick.kt deleted file mode 100644 index dc904c2e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CubeQuick.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CubeQuick: ImageVector - get() { - if (_cubeQuick != null) { - return _cubeQuick!! - } - _cubeQuick = fluentIcon(name = "Regular.CubeQuick") { - fluentPath { - moveTo(16.27f, 7.55f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.46f, 0.0f) - lineToRelative(3.5f, 1.77f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.27f, 0.45f) - verticalLineToRelative(4.46f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.27f, 0.45f) - lineToRelative(-3.5f, 1.77f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.46f, 0.0f) - lineToRelative(-3.5f, -1.77f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.27f, -0.45f) - lineTo(12.5f, 9.77f) - curveToRelative(0.0f, -0.19f, 0.1f, -0.36f, 0.27f, -0.45f) - lineToRelative(3.5f, -1.77f) - close() - moveTo(17.4f, 6.22f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.8f, 0.0f) - lineToRelative(-3.5f, 1.76f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 11.0f, 9.77f) - verticalLineToRelative(4.46f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.1f, 1.79f) - lineToRelative(3.5f, 1.77f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.8f, 0.0f) - lineToRelative(3.5f, -1.77f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.1f, -1.79f) - lineTo(22.0f, 9.77f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.1f, -1.79f) - lineToRelative(-3.5f, -1.76f) - close() - moveTo(4.0f, 7.74f) - curveToRelative(0.0f, -0.4f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 4.0f, 7.74f) - close() - moveTo(2.0f, 11.74f) - curveToRelative(0.0f, -0.4f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(4.75f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - close() - moveTo(13.58f, 10.41f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.01f, -0.32f) - lineToRelative(1.91f, 0.97f) - lineToRelative(1.91f, -0.97f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.68f, 1.33f) - lineToRelative(-1.84f, 0.94f) - verticalLineToRelative(1.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.9f) - lineToRelative(-1.84f, -0.94f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.33f, -1.0f) - close() - } - } - return _cubeQuick!! - } - -private var _cubeQuick: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CubeSync.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CubeSync.kt deleted file mode 100644 index cd2fb31c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CubeSync.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CubeSync: ImageVector - get() { - if (_cubeSync != null) { - return _cubeSync!! - } - _cubeSync = fluentIcon(name = "Regular.CubeSync") { - fluentPath { - moveTo(6.05f, 7.99f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -0.44f) - lineTo(12.0f, 9.45f) - lineToRelative(4.98f, -1.9f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.54f, 1.4f) - lineToRelative(-4.77f, 1.81f) - verticalLineToRelative(2.3f) - arcToRelative(6.49f, 6.49f, 0.0f, false, false, -1.5f, 2.65f) - verticalLineToRelative(-4.95f) - lineToRelative(-4.77f, -1.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.43f, -0.97f) - close() - moveTo(20.5f, 7.17f) - verticalLineToRelative(4.56f) - curveToRelative(0.55f, 0.29f, 1.06f, 0.65f, 1.5f, 1.08f) - lineTo(22.0f, 7.17f) - curveToRelative(0.0f, -0.7f, -0.43f, -1.35f, -1.1f, -1.62f) - lineToRelative(-7.5f, -3.04f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.8f, 0.0f) - lineTo(3.1f, 5.55f) - curveToRelative(-0.67f, 0.27f, -1.1f, 0.91f, -1.1f, 1.62f) - verticalLineToRelative(9.66f) - curveToRelative(0.0f, 0.71f, 0.43f, 1.35f, 1.1f, 1.62f) - lineToRelative(7.5f, 3.04f) - curveToRelative(0.62f, 0.25f, 1.3f, 0.33f, 1.96f, 0.23f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, -0.96f, -1.5f) - curveToRelative(-0.15f, -0.02f, -0.3f, -0.06f, -0.45f, -0.12f) - lineToRelative(-7.5f, -3.04f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.15f, -0.23f) - lineTo(3.5f, 7.17f) - curveToRelative(0.0f, -0.1f, 0.06f, -0.19f, 0.16f, -0.23f) - lineToRelative(7.5f, -3.04f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 1.69f, 0.0f) - lineToRelative(7.5f, 3.04f) - curveToRelative(0.09f, 0.04f, 0.15f, 0.13f, 0.15f, 0.23f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) - close() - moveTo(20.5f, 14.0f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - verticalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.8f, -0.59f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) - verticalLineToRelative(-0.55f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - close() - moveTo(15.0f, 19.95f) - verticalLineToRelative(0.55f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.77f, 0.65f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) - close() - } - } - return _cubeSync!! - } - -private var _cubeSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CubeTree.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CubeTree.kt deleted file mode 100644 index 35e21750..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CubeTree.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CubeTree: ImageVector - get() { - if (_cubeTree != null) { - return _cubeTree!! - } - _cubeTree = fluentIcon(name = "Regular.CubeTree") { - fluentPath { - moveTo(9.79f, 5.51f) - curveToRelative(0.13f, -0.39f, 0.55f, -0.6f, 0.95f, -0.47f) - lineToRelative(1.26f, 0.42f) - lineToRelative(1.26f, -0.42f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.48f, 1.42f) - lineToRelative(-0.99f, 0.33f) - verticalLineToRelative(0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.96f) - lineToRelative(-0.99f, -0.33f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.47f, -0.95f) - close() - moveTo(12.24f, 2.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.48f, 0.0f) - lineTo(8.01f, 3.29f) - curveToRelative(-0.3f, 0.1f, -0.51f, 0.39f, -0.51f, 0.71f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.32f, 0.2f, 0.6f, 0.51f, 0.71f) - lineToRelative(3.24f, 1.08f) - lineTo(11.25f, 13.0f) - lineTo(9.5f, 13.0f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(0.84f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 1.5f, 0.0f) - verticalLineToRelative(-0.84f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.84f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 1.5f, 0.0f) - verticalLineToRelative(-0.84f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-1.75f) - verticalLineToRelative(-2.2f) - lineToRelative(3.24f, -1.09f) - curveToRelative(0.3f, -0.1f, 0.51f, -0.39f, 0.51f, -0.71f) - lineTo(16.5f, 4.0f) - curveToRelative(0.0f, -0.32f, -0.2f, -0.6f, -0.51f, -0.71f) - lineToRelative(-3.75f, -1.25f) - close() - moveTo(9.0f, 8.46f) - lineTo(9.0f, 4.54f) - lineToRelative(3.0f, -1.0f) - lineToRelative(3.0f, 1.0f) - verticalLineToRelative(3.92f) - lineToRelative(-3.0f, 1.0f) - lineToRelative(-3.0f, -1.0f) - close() - moveTo(8.0f, 17.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(14.5f, 19.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - } - } - return _cubeTree!! - } - -private var _cubeTree: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CurrencyDollarEuro.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CurrencyDollarEuro.kt deleted file mode 100644 index 5ddff5f2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CurrencyDollarEuro.kt +++ /dev/null @@ -1,96 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CurrencyDollarEuro: ImageVector - get() { - if (_currencyDollarEuro != null) { - return _currencyDollarEuro!! - } - _currencyDollarEuro = fluentIcon(name = "Regular.CurrencyDollarEuro") { - fluentPath { - moveTo(6.25f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.32f) - arcTo(4.25f, 4.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(0.54f) - arcToRelative(4.75f, 4.75f, 0.0f, false, false, 2.67f, 4.27f) - lineToRelative(0.83f, 0.4f) - verticalLineToRelative(6.92f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.0f, -2.65f) - verticalLineToRelative(-0.98f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(0.98f) - curveToRelative(0.0f, 2.1f, 1.51f, 3.83f, 3.5f, 4.18f) - verticalLineToRelative(0.34f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.34f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, 3.5f, -4.18f) - verticalLineToRelative(-0.53f) - arcToRelative(4.75f, 4.75f, 0.0f, false, false, -2.67f, -4.27f) - lineToRelative(-0.83f, -0.4f) - verticalLineTo(4.6f) - curveToRelative(1.16f, 0.33f, 2.0f, 1.4f, 2.0f, 2.65f) - verticalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -2.1f, -1.51f, -3.83f, -3.5f, -4.18f) - verticalLineToRelative(-0.32f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 6.25f, 2.0f) - close() - moveTo(3.5f, 7.25f) - curveToRelative(0.0f, -1.26f, 0.85f, -2.32f, 2.0f, -2.65f) - verticalLineToRelative(6.2f) - lineToRelative(-0.17f, -0.09f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.5f, 7.8f) - verticalLineToRelative(-0.54f) - close() - moveTo(7.0f, 19.37f) - verticalLineTo(13.2f) - lineToRelative(0.17f, 0.08f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 9.0f, 16.2f) - verticalLineToRelative(0.53f) - curveToRelative(0.0f, 1.26f, -0.84f, 2.32f, -2.0f, 2.64f) - close() - moveTo(14.5f, 12.0f) - lineToRelative(0.01f, -0.5f) - horizontalLineToRelative(1.74f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.57f) - arcToRelative(8.8f, 8.8f, 0.0f, false, true, 1.37f, -3.4f) - curveToRelative(0.94f, -1.36f, 2.18f, -2.1f, 3.45f, -2.1f) - curveToRelative(0.47f, 0.0f, 0.97f, 0.14f, 1.34f, 0.38f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.82f, -1.26f) - arcTo(4.03f, 4.03f, 0.0f, false, false, 19.5f, 3.0f) - curveToRelative(-1.9f, 0.0f, -3.54f, 1.1f, -4.68f, 2.74f) - arcTo(10.39f, 10.39f, 0.0f, false, false, 13.16f, 10.0f) - horizontalLineToRelative(-1.4f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.01f, 1.5f) - horizontalLineToRelative(1.26f) - arcToRelative(12.65f, 12.65f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(-1.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.41f) - curveToRelative(0.26f, 1.62f, 0.84f, 3.1f, 1.66f, 4.26f) - curveTo(15.96f, 19.9f, 17.6f, 21.0f, 19.5f, 21.0f) - curveToRelative(0.7f, 0.0f, 1.52f, -0.17f, 2.18f, -0.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.85f, -1.23f) - arcToRelative(2.4f, 2.4f, 0.0f, false, true, -1.33f, 0.36f) - curveToRelative(-1.27f, 0.0f, -2.5f, -0.74f, -3.45f, -2.1f) - arcToRelative(8.8f, 8.8f, 0.0f, false, true, -1.37f, -3.4f) - horizontalLineToRelative(1.57f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineTo(14.5f) - lineToRelative(-0.01f, -0.5f) - close() - } - } - return _currencyDollarEuro!! - } - -private var _currencyDollarEuro: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CurrencyDollarRupee.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CurrencyDollarRupee.kt deleted file mode 100644 index 40694a85..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CurrencyDollarRupee.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CurrencyDollarRupee: ImageVector - get() { - if (_currencyDollarRupee != null) { - return _currencyDollarRupee!! - } - _currencyDollarRupee = fluentIcon(name = "Regular.CurrencyDollarRupee") { - fluentPath { - moveTo(7.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) - verticalLineToRelative(0.32f) - arcTo(4.25f, 4.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(0.54f) - arcToRelative(4.75f, 4.75f, 0.0f, false, false, 2.67f, 4.27f) - lineToRelative(0.83f, 0.4f) - verticalLineToRelative(6.92f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.0f, -2.65f) - verticalLineToRelative(-0.98f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(0.98f) - curveToRelative(0.0f, 2.1f, 1.51f, 3.83f, 3.5f, 4.18f) - verticalLineToRelative(0.34f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.34f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, 3.5f, -4.18f) - verticalLineToRelative(-0.53f) - arcToRelative(4.75f, 4.75f, 0.0f, false, false, -2.67f, -4.27f) - lineToRelative(-0.83f, -0.4f) - verticalLineTo(4.6f) - curveToRelative(1.16f, 0.33f, 2.0f, 1.4f, 2.0f, 2.65f) - verticalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -2.1f, -1.51f, -3.83f, -3.5f, -4.18f) - verticalLineToRelative(-0.32f) - close() - moveTo(5.5f, 4.6f) - verticalLineToRelative(6.2f) - lineToRelative(-0.17f, -0.09f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.5f, 7.8f) - verticalLineToRelative(-0.54f) - curveToRelative(0.0f, -1.26f, 0.85f, -2.32f, 2.0f, -2.65f) - close() - moveTo(7.0f, 13.2f) - lineToRelative(0.17f, 0.08f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 9.0f, 16.2f) - verticalLineToRelative(0.53f) - curveToRelative(0.0f, 1.26f, -0.84f, 2.32f, -2.0f, 2.64f) - verticalLineTo(13.2f) - close() - moveTo(12.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineTo(15.0f) - curveToRelative(1.07f, 0.0f, 2.0f, 0.6f, 2.45f, 1.5f) - horizontalLineToRelative(-4.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.99f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 15.0f, 10.0f) - horizontalLineToRelative(-2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.61f, 1.19f) - lineToRelative(7.5f, 10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.22f, -0.88f) - lineToRelative(-6.65f, -9.31f) - horizontalLineTo(15.0f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, 4.24f, -4.0f) - horizontalLineToRelative(2.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.19f) - arcToRelative(4.24f, 4.24f, 0.0f, false, false, -0.82f, -1.5f) - horizontalLineToRelative(3.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-8.5f) - close() - } - } - return _currencyDollarRupee!! - } - -private var _currencyDollarRupee: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cursor.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cursor.kt deleted file mode 100644 index e941801c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Cursor.kt +++ /dev/null @@ -1,39 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Cursor: ImageVector - get() { - if (_cursor != null) { - return _cursor!! - } - _cursor = fluentIcon(name = "Regular.Cursor") { - fluentPath { - moveTo(5.5f, 3.48f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 7.92f, 2.3f) - lineTo(21.44f, 12.8f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -0.93f, 2.69f) - horizontalLineToRelative(-6.85f) - curveToRelative(-0.5f, 0.0f, -0.98f, 0.23f, -1.3f, 0.62f) - lineToRelative(-4.18f, 5.3f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.68f, -0.93f) - verticalLineToRelative(-17.0f) - close() - moveTo(20.51f, 14.0f) - lineTo(7.0f, 3.48f) - verticalLineTo(20.5f) - lineToRelative(4.2f, -5.3f) - curveToRelative(0.59f, -0.75f, 1.5f, -1.2f, 2.46f, -1.2f) - horizontalLineToRelative(6.85f) - close() - } - } - return _cursor!! - } - -private var _cursor: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CursorClick.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CursorClick.kt deleted file mode 100644 index ffc1535f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CursorClick.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CursorClick: ImageVector - get() { - if (_cursorClick != null) { - return _cursorClick!! - } - _cursorClick = fluentIcon(name = "Regular.CursorClick") { - fluentPath { - moveTo(9.25f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(4.47f, 3.97f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(1.75f, 1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(4.47f, 5.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - moveTo(14.03f, 3.97f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-1.75f, 1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(1.75f, -1.75f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(2.5f, 8.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(10.68f, 8.49f) - arcToRelative(1.32f, 1.32f, 0.0f, false, false, -2.18f, 1.0f) - verticalLineToRelative(11.27f) - curveToRelative(0.0f, 1.21f, 1.5f, 1.78f, 2.3f, 0.88f) - lineToRelative(2.62f, -2.92f) - curveToRelative(0.27f, -0.31f, 0.66f, -0.5f, 1.07f, -0.5f) - lineToRelative(3.84f, -0.16f) - arcToRelative(1.32f, 1.32f, 0.0f, false, false, 0.8f, -2.32f) - lineToRelative(-8.45f, -7.25f) - close() - moveTo(10.0f, 20.29f) - lineTo(10.0f, 9.89f) - lineToRelative(7.81f, 6.69f) - lineToRelative(-3.38f, 0.13f) - curveToRelative(-0.82f, 0.03f, -1.59f, 0.4f, -2.13f, 1.0f) - lineTo(10.0f, 20.3f) - close() - } - } - return _cursorClick!! - } - -private var _cursorClick: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CursorHover.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CursorHover.kt deleted file mode 100644 index ff68ac39..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CursorHover.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CursorHover: ImageVector - get() { - if (_cursorHover != null) { - return _cursorHover!! - } - _cursorHover = fluentIcon(name = "Regular.CursorHover") { - fluentPath { - moveTo(19.5f, 5.5f) - horizontalLineToRelative(-15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - lineTo(9.0f, 16.5f) - lineTo(9.0f, 18.0f) - lineTo(4.5f, 18.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 2.0f, 15.5f) - verticalLineToRelative(-9.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.5f, 4.0f) - horizontalLineToRelative(15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 22.0f, 6.5f) - verticalLineToRelative(9.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.02f, 2.45f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -0.7f, -1.11f) - lineToRelative(-0.33f, -0.34f) - horizontalLineToRelative(0.55f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineToRelative(-9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - moveTo(11.28f, 10.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.28f, 0.53f) - verticalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.37f, 0.42f) - lineToRelative(2.46f, -3.58f) - lineToRelative(4.27f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.68f, -1.27f) - lineToRelative(-7.5f, -7.5f) - close() - moveTo(11.5f, 18.84f) - verticalLineToRelative(-6.28f) - lineTo(15.94f, 17.0f) - lineToRelative(-2.29f, -0.48f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.77f, 0.3f) - lineToRelative(-1.38f, 2.02f) - close() - } - } - return _cursorHover!! - } - -private var _cursorHover: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CursorHoverOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CursorHoverOff.kt deleted file mode 100644 index 55ef4604..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/CursorHoverOff.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.CursorHoverOff: ImageVector - get() { - if (_cursorHoverOff != null) { - return _cursorHoverOff!! - } - _cursorHoverOff = fluentIcon(name = "Regular.CursorHoverOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.05f, 1.05f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 2.0f, 6.5f) - verticalLineToRelative(9.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.5f, 18.0f) - lineTo(9.0f, 18.0f) - verticalLineToRelative(-1.5f) - lineTo(4.5f, 16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineToRelative(-9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.94f, -1.0f) - lineTo(10.0f, 11.06f) - verticalLineToRelative(10.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.37f, 0.42f) - lineToRelative(2.46f, -3.58f) - lineToRelative(4.05f, 0.85f) - lineToRelative(2.84f, 2.84f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(11.5f, 12.56f) - lineTo(15.94f, 17.0f) - lineToRelative(-2.29f, -0.48f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.77f, 0.3f) - lineToRelative(-1.38f, 2.02f) - verticalLineToRelative(-6.28f) - close() - moveTo(20.5f, 15.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.83f, 0.99f) - lineToRelative(1.14f, 1.14f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 22.0f, 15.5f) - verticalLineToRelative(-9.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 19.5f, 4.0f) - lineTo(7.18f, 4.0f) - lineToRelative(1.5f, 1.5f) - lineTo(19.5f, 5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(9.0f) - close() - } - } - return _cursorHoverOff!! - } - -private var _cursorHoverOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DarkTheme.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DarkTheme.kt deleted file mode 100644 index 6c6c0a45..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DarkTheme.kt +++ /dev/null @@ -1,30 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DarkTheme: ImageVector - get() { - if (_darkTheme != null) { - return _darkTheme!! - } - _darkTheme = fluentIcon(name = "Regular.DarkTheme") { - fluentPath { - moveTo(12.0f, 22.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) - close() - moveTo(12.0f, 20.5f) - verticalLineToRelative(-17.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, 0.0f, 17.0f) - close() - } - } - return _darkTheme!! - } - -private var _darkTheme: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataArea.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataArea.kt deleted file mode 100644 index 1566eb71..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataArea.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DataArea: ImageVector - get() { - if (_dataArea != null) { - return _dataArea!! - } - _dataArea = fluentIcon(name = "Regular.DataArea") { - fluentPath { - moveTo(3.0f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(6.26f) - lineToRelative(3.65f, -1.92f) - curveToRelative(0.23f, -0.12f, 0.5f, -0.12f, 0.73f, 0.01f) - lineToRelative(3.82f, 2.25f) - lineToRelative(5.6f, -4.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.2f, 0.6f) - lineTo(19.5f, 19.5f) - horizontalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(3.75f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(3.0f, 3.75f) - close() - moveTo(4.5f, 11.7f) - verticalLineToRelative(7.8f) - lineTo(18.0f, 19.5f) - lineTo(18.0f, 8.25f) - lineToRelative(-4.8f, 3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.83f, 0.05f) - lineTo(8.48f, 9.6f) - lineTo(4.5f, 11.7f) - close() - } - } - return _dataArea!! - } - -private var _dataArea: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataBarHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataBarHorizontal.kt deleted file mode 100644 index a2a138d6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataBarHorizontal.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DataBarHorizontal: ImageVector - get() { - if (_dataBarHorizontal != null) { - return _dataBarHorizontal!! - } - _dataBarHorizontal = fluentIcon(name = "Regular.DataBarHorizontal") { - fluentPath { - moveTo(21.0f, 18.25f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - lineTo(5.25f, 16.0f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, 4.5f) - horizontalLineToRelative(13.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - close() - moveTo(17.0f, 11.75f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-9.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, 4.5f) - horizontalLineToRelative(9.5f) - curveTo(16.0f, 14.0f, 17.0f, 13.0f, 17.0f, 11.75f) - close() - moveTo(13.0f, 5.25f) - curveTo(13.0f, 4.01f, 12.0f, 3.0f, 10.75f, 3.0f) - horizontalLineToRelative(-5.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) - horizontalLineToRelative(5.5f) - curveTo(12.0f, 7.5f, 13.0f, 6.5f, 13.0f, 5.25f) - close() - moveTo(19.5f, 18.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(5.25f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(13.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(15.5f, 11.75f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(9.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(11.5f, 5.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(5.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - } - } - return _dataBarHorizontal!! - } - -private var _dataBarHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataBarVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataBarVertical.kt deleted file mode 100644 index ee821357..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataBarVertical.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DataBarVertical: ImageVector - get() { - if (_dataBarVertical != null) { - return _dataBarVertical!! - } - _dataBarVertical = fluentIcon(name = "Regular.DataBarVertical") { - fluentPath { - moveTo(5.75f, 3.0f) - curveTo(6.99f, 3.0f, 8.0f, 4.0f, 8.0f, 5.25f) - verticalLineToRelative(13.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.5f, 0.0f) - lineTo(3.5f, 5.25f) - curveTo(3.5f, 4.0f, 4.5f, 3.0f, 5.75f, 3.0f) - close() - moveTo(12.25f, 7.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(9.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.5f, 0.0f) - verticalLineToRelative(-9.5f) - curveTo(10.0f, 8.0f, 11.0f, 7.0f, 12.25f, 7.0f) - close() - moveTo(18.75f, 11.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(5.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.5f, 0.0f) - verticalLineToRelative(-5.5f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - close() - moveTo(5.75f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(6.5f, 5.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(12.25f, 8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(18.75f, 12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - } - } - return _dataBarVertical!! - } - -private var _dataBarVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataBarVerticalAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataBarVerticalAdd.kt deleted file mode 100644 index 001067ea..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataBarVerticalAdd.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DataBarVerticalAdd: ImageVector - get() { - if (_dataBarVerticalAdd != null) { - return _dataBarVerticalAdd!! - } - _dataBarVerticalAdd = fluentIcon(name = "Regular.DataBarVerticalAdd") { - fluentPath { - moveTo(18.25f, 3.0f) - curveTo(17.0f, 3.0f, 16.0f, 4.0f, 16.0f, 5.25f) - verticalLineToRelative(5.92f) - curveToRelative(0.48f, -0.11f, 0.98f, -0.17f, 1.5f, -0.17f) - lineTo(17.5f, 5.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(5.92f) - curveToRelative(0.53f, 0.13f, 1.03f, 0.32f, 1.5f, 0.56f) - lineTo(20.5f, 5.25f) - curveTo(20.5f, 4.0f, 19.5f, 3.0f, 18.25f, 3.0f) - close() - moveTo(14.0f, 9.25f) - verticalLineToRelative(2.77f) - curveToRelative(-0.57f, 0.36f, -1.07f, 0.81f, -1.5f, 1.33f) - verticalLineToRelative(-4.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(8.1f) - arcToRelative(6.75f, 6.75f, 0.0f, false, false, 0.0f, 0.3f) - verticalLineToRelative(1.1f) - curveToRelative(0.0f, 0.23f, 0.1f, 0.43f, 0.25f, 0.56f) - curveToRelative(0.18f, 0.6f, 0.43f, 1.16f, 0.76f, 1.68f) - lineToRelative(-0.26f, 0.01f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-9.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) - close() - moveTo(3.0f, 13.25f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) - verticalLineToRelative(5.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.5f, 0.0f) - verticalLineToRelative(-5.5f) - close() - moveTo(6.0f, 13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-5.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _dataBarVerticalAdd!! - } - -private var _dataBarVerticalAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataBarVerticalStar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataBarVerticalStar.kt deleted file mode 100644 index dee8bd2f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataBarVerticalStar.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DataBarVerticalStar: ImageVector - get() { - if (_dataBarVerticalStar != null) { - return _dataBarVerticalStar!! - } - _dataBarVerticalStar = fluentIcon(name = "Regular.DataBarVerticalStar") { - fluentPath { - moveTo(18.25f, 3.0f) - curveTo(17.01f, 3.0f, 16.0f, 4.0f, 16.0f, 5.25f) - verticalLineToRelative(5.92f) - curveToRelative(0.48f, -0.11f, 0.98f, -0.17f, 1.5f, -0.17f) - lineTo(17.5f, 5.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - verticalLineToRelative(5.92f) - curveToRelative(0.53f, 0.13f, 1.03f, 0.32f, 1.5f, 0.56f) - lineTo(20.5f, 5.25f) - curveTo(20.5f, 4.0f, 19.5f, 3.0f, 18.25f, 3.0f) - close() - moveTo(14.0f, 9.25f) - verticalLineToRelative(2.77f) - curveToRelative(-0.57f, 0.36f, -1.07f, 0.81f, -1.5f, 1.33f) - verticalLineToRelative(-4.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(8.09f) - arcToRelative(6.62f, 6.62f, 0.0f, false, false, 0.0f, 0.32f) - verticalLineToRelative(1.1f) - curveToRelative(0.0f, 0.21f, 0.1f, 0.42f, 0.26f, 0.55f) - curveToRelative(0.17f, 0.6f, 0.43f, 1.16f, 0.75f, 1.68f) - lineToRelative(-0.26f, 0.01f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-9.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) - close() - moveTo(3.0f, 13.25f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) - verticalLineToRelative(5.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.5f, 0.0f) - verticalLineToRelative(-5.5f) - close() - moveTo(6.0f, 13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-5.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(18.06f, 14.42f) - arcToRelative(0.58f, 0.58f, 0.0f, false, false, -1.12f, 0.0f) - lineToRelative(-0.55f, 1.79f) - horizontalLineToRelative(-1.8f) - curveToRelative(-0.57f, 0.0f, -0.8f, 0.75f, -0.35f, 1.1f) - lineToRelative(1.46f, 1.1f) - lineToRelative(-0.56f, 1.79f) - curveToRelative(-0.17f, 0.56f, 0.44f, 1.03f, 0.9f, 0.68f) - lineToRelative(1.46f, -1.1f) - lineToRelative(1.46f, 1.1f) - curveToRelative(0.46f, 0.35f, 1.07f, -0.12f, 0.9f, -0.68f) - lineToRelative(-0.56f, -1.79f) - lineToRelative(1.46f, -1.1f) - curveToRelative(0.46f, -0.35f, 0.22f, -1.1f, -0.35f, -1.1f) - horizontalLineToRelative(-1.8f) - lineToRelative(-0.55f, -1.79f) - close() - } - } - return _dataBarVerticalStar!! - } - -private var _dataBarVerticalStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataFunnel.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataFunnel.kt deleted file mode 100644 index abce7fe6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataFunnel.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DataFunnel: ImageVector - get() { - if (_dataFunnel != null) { - return _dataFunnel!! - } - _dataFunnel = fluentIcon(name = "Regular.DataFunnel") { - fluentPath { - moveTo(22.0f, 4.75f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) - lineTo(4.75f, 7.5f) - arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, -5.5f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 4.75f) - close() - moveTo(20.0f, 11.75f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) - lineTo(6.75f, 14.5f) - arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, -5.5f) - horizontalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 20.0f, 11.75f) - close() - moveTo(17.0f, 18.75f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) - horizontalLineToRelative(-4.5f) - arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, -5.5f) - horizontalLineToRelative(4.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 17.0f, 18.75f) - close() - moveTo(20.5f, 4.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(4.75f, 3.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - horizontalLineToRelative(14.5f) - curveToRelative(0.7f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - close() - moveTo(18.5f, 11.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(6.75f, 10.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - horizontalLineToRelative(10.5f) - curveToRelative(0.7f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - close() - moveTo(15.5f, 18.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-4.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - horizontalLineToRelative(4.5f) - curveToRelative(0.7f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - close() - } - } - return _dataFunnel!! - } - -private var _dataFunnel: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataHistogram.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataHistogram.kt deleted file mode 100644 index 15213d51..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataHistogram.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DataHistogram: ImageVector - get() { - if (_dataHistogram != null) { - return _dataHistogram!! - } - _dataHistogram = fluentIcon(name = "Regular.DataHistogram") { - fluentPath { - moveTo(8.5f, 5.23f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(2.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - lineTo(15.5f, 7.0f) - horizontalLineToRelative(3.25f) - curveTo(19.99f, 7.0f, 21.0f, 8.0f, 21.0f, 9.25f) - verticalLineToRelative(11.0f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(3.75f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-8.0f) - curveTo(3.0f, 11.01f, 4.0f, 10.0f, 5.25f, 10.0f) - lineTo(8.5f, 10.0f) - lineTo(8.5f, 5.23f) - close() - moveTo(10.0f, 19.5f) - horizontalLineToRelative(4.0f) - lineTo(14.0f, 5.23f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(10.0f, 19.5f) - close() - moveTo(8.5f, 11.5f) - lineTo(5.25f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(7.25f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-8.0f) - close() - moveTo(15.5f, 19.5f) - horizontalLineToRelative(4.0f) - lineTo(19.5f, 9.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(15.5f, 8.5f) - verticalLineToRelative(11.0f) - close() - } - } - return _dataHistogram!! - } - -private var _dataHistogram: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataLine.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataLine.kt deleted file mode 100644 index 089d7309..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataLine.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DataLine: ImageVector - get() { - if (_dataLine != null) { - return _dataLine!! - } - _dataLine = fluentIcon(name = "Regular.DataLine") { - fluentPath { - moveTo(19.0f, 4.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(16.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 2.52f, 2.96f) - lineToRelative(-2.03f, 3.36f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -4.75f, 3.65f) - lineTo(8.0f, 17.84f) - lineTo(8.0f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, -0.47f, -1.6f) - lineToRelative(3.54f, -1.77f) - arcTo(3.01f, 3.01f, 0.0f, false, true, 14.0f, 11.0f) - curveToRelative(0.48f, 0.0f, 0.94f, 0.11f, 1.34f, 0.32f) - lineToRelative(1.8f, -2.97f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 16.0f, 6.0f) - close() - moveTo(14.0f, 12.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(5.0f, 16.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - } - } - return _dataLine!! - } - -private var _dataLine: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataPie.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataPie.kt deleted file mode 100644 index 691c7258..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataPie.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DataPie: ImageVector - get() { - if (_dataPie != null) { - return _dataPie!! - } - _dataPie = fluentIcon(name = "Regular.DataPie") { - fluentPath { - moveTo(10.25f, 4.25f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(8.0f) - horizontalLineToRelative(8.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - curveToRelative(0.0f, 4.97f, -4.03f, 8.5f, -9.0f, 8.5f) - arcToRelative(9.0f, 9.0f, 0.0f, false, true, -9.0f, -9.0f) - curveToRelative(0.0f, -4.97f, 3.53f, -9.0f, 8.5f, -9.0f) - close() - moveTo(9.5f, 5.79f) - lineToRelative(-0.2f, 0.02f) - curveToRelative(-3.7f, 0.47f, -6.05f, 3.62f, -6.05f, 7.44f) - arcToRelative(7.5f, 7.5f, 0.0f, false, false, 7.5f, 7.5f) - curveToRelative(3.82f, 0.0f, 6.97f, -2.35f, 7.44f, -6.04f) - lineToRelative(0.02f, -0.21f) - horizontalLineToRelative(-7.96f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - lineTo(9.5f, 5.79f) - close() - moveTo(13.25f, 1.75f) - arcToRelative(9.0f, 9.0f, 0.0f, false, true, 9.0f, 9.0f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-8.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(12.5f, 2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(14.0f, 3.29f) - lineTo(14.0f, 10.0f) - horizontalLineToRelative(6.71f) - lineToRelative(-0.02f, -0.2f) - arcTo(7.5f, 7.5f, 0.0f, false, false, 14.2f, 3.3f) - lineTo(14.0f, 3.3f) - close() - } - } - return _dataPie!! - } - -private var _dataPie: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataScatter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataScatter.kt deleted file mode 100644 index 6cd324da..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataScatter.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DataScatter: ImageVector - get() { - if (_dataScatter != null) { - return _dataScatter!! - } - _dataScatter = fluentIcon(name = "Regular.DataScatter") { - fluentPath { - moveTo(3.0f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(4.5f, 19.5f) - horizontalLineToRelative(15.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(3.75f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(3.0f, 3.75f) - close() - moveTo(17.0f, 4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - moveTo(15.5f, 7.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - moveTo(6.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.0f) - close() - moveTo(9.0f, 7.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(15.0f, 12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - moveTo(13.5f, 15.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - } - } - return _dataScatter!! - } - -private var _dataScatter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataSunburst.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataSunburst.kt deleted file mode 100644 index 9e65fd24..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataSunburst.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DataSunburst: ImageVector - get() { - if (_dataSunburst != null) { - return _dataSunburst!! - } - _dataSunburst = fluentIcon(name = "Regular.DataSunburst") { - fluentPath { - moveTo(15.5f, 4.25f) - arcToRelative(0.82f, 0.82f, 0.0f, false, true, -0.5f, -0.74f) - curveToRelative(0.0f, -0.52f, 0.5f, -0.9f, 0.99f, -0.68f) - curveToRelative(2.31f, 1.0f, 4.18f, 2.87f, 5.18f, 5.18f) - curveToRelative(0.21f, 0.48f, -0.16f, 1.0f, -0.68f, 1.0f) - curveToRelative(-0.32f, 0.0f, -0.6f, -0.21f, -0.74f, -0.5f) - arcToRelative(8.53f, 8.53f, 0.0f, false, false, -4.26f, -4.26f) - close() - moveTo(9.0f, 3.5f) - curveToRelative(0.0f, -0.52f, -0.5f, -0.9f, -0.99f, -0.68f) - curveTo(5.7f, 3.83f, 3.83f, 5.7f, 2.83f, 8.0f) - curveToRelative(-0.21f, 0.48f, 0.16f, 1.0f, 0.68f, 1.0f) - curveToRelative(0.32f, 0.0f, 0.6f, -0.21f, 0.74f, -0.5f) - arcTo(8.53f, 8.53f, 0.0f, false, true, 8.5f, 4.25f) - curveToRelative(0.29f, -0.13f, 0.49f, -0.42f, 0.49f, -0.74f) - close() - moveTo(15.5f, 19.74f) - curveToRelative(-0.3f, 0.13f, -0.5f, 0.42f, -0.5f, 0.74f) - curveToRelative(0.0f, 0.52f, 0.5f, 0.9f, 0.99f, 0.68f) - curveToRelative(2.31f, -1.0f, 4.18f, -2.87f, 5.18f, -5.18f) - curveToRelative(0.21f, -0.48f, -0.16f, -0.99f, -0.68f, -0.99f) - curveToRelative(-0.32f, 0.0f, -0.6f, 0.2f, -0.74f, 0.5f) - arcToRelative(8.53f, 8.53f, 0.0f, false, true, -4.26f, 4.25f) - close() - moveTo(3.5f, 15.0f) - curveToRelative(0.32f, 0.0f, 0.6f, 0.2f, 0.74f, 0.5f) - arcToRelative(8.53f, 8.53f, 0.0f, false, false, 4.26f, 4.25f) - curveToRelative(0.29f, 0.13f, 0.49f, 0.42f, 0.49f, 0.74f) - curveToRelative(0.0f, 0.52f, -0.5f, 0.9f, -0.99f, 0.68f) - curveToRelative(-2.31f, -1.0f, -4.18f, -2.87f, -5.18f, -5.18f) - curveToRelative(-0.21f, -0.48f, 0.16f, -0.99f, 0.68f, -0.99f) - close() - moveTo(12.0f, 6.5f) - curveToRelative(-0.2f, 0.0f, -0.38f, 0.01f, -0.57f, 0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.16f, -1.5f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, 7.55f, 5.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.46f, 0.35f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 12.0f, 6.5f) - close() - moveTo(9.12f, 6.4f) - curveToRelative(0.23f, 0.34f, 0.14f, 0.81f, -0.2f, 1.04f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -1.48f, 7.64f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.24f, 0.84f) - arcTo(6.97f, 6.97f, 0.0f, false, true, 8.08f, 6.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.04f, 0.2f) - close() - moveTo(18.23f, 12.9f) - curveToRelative(0.4f, 0.11f, 0.64f, 0.52f, 0.53f, 0.92f) - arcTo(7.0f, 7.0f, 0.0f, false, true, 8.75f, 18.2f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.7f, -1.33f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 7.86f, -3.44f) - curveToRelative(0.1f, -0.4f, 0.52f, -0.63f, 0.92f, -0.52f) - close() - moveTo(12.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) - close() - moveTo(9.5f, 12.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) - close() - } - } - return _dataSunburst!! - } - -private var _dataSunburst: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataTreemap.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataTreemap.kt deleted file mode 100644 index 4225fa32..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataTreemap.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DataTreemap: ImageVector - get() { - if (_dataTreemap != null) { - return _dataTreemap!! - } - _dataTreemap = fluentIcon(name = "Regular.DataTreemap") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(9.0f, 19.5f) - verticalLineToRelative(-15.0f) - lineTo(6.25f, 4.5f) - close() - moveTo(10.5f, 4.5f) - lineTo(10.5f, 14.0f) - horizontalLineToRelative(9.0f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(10.5f, 4.5f) - close() - moveTo(19.5f, 15.5f) - horizontalLineToRelative(-9.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(7.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 15.5f) - close() - } - } - return _dataTreemap!! - } - -private var _dataTreemap: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataTrending.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataTrending.kt deleted file mode 100644 index 0ff2dace..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataTrending.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DataTrending: ImageVector - get() { - if (_dataTrending != null) { - return _dataTrending!! - } - _dataTrending = fluentIcon(name = "Regular.DataTrending") { - fluentPath { - moveTo(4.5f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(14.0f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-14.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-14.0f) - close() - moveTo(14.75f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.19f) - lineToRelative(-4.69f, 4.69f) - lineToRelative(-1.97f, -1.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-3.75f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(3.22f, -3.22f) - lineToRelative(1.97f, 1.97f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineTo(19.0f, 8.56f) - verticalLineToRelative(3.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineTo(6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-5.0f) - close() - } - } - return _dataTrending!! - } - -private var _dataTrending: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataUsage.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataUsage.kt deleted file mode 100644 index ae69eeb3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataUsage.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DataUsage: ImageVector - get() { - if (_dataUsage != null) { - return _dataUsage!! - } - _dataUsage = fluentIcon(name = "Regular.DataUsage") { - fluentPath { - moveTo(18.25f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) - lineTo(5.75f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(12.5f) - close() - moveTo(18.25f, 4.5f) - lineTo(5.75f, 4.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(12.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - lineTo(19.5f, 5.75f) - curveToRelative(0.0f, -0.7f, -0.56f, -1.25f, -1.25f, -1.25f) - close() - moveTo(7.75f, 9.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.64f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(6.51f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-6.6f) - curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(16.25f, 7.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.27f, 0.74f, 0.63f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(8.54f) - curveToRelative(0.0f, 0.4f, -0.34f, 0.73f, -0.75f, 0.73f) - arcToRelative(0.74f, 0.74f, 0.0f, false, true, -0.74f, -0.63f) - lineToRelative(-0.01f, -0.1f) - lineTo(15.5f, 7.73f) - curveToRelative(0.0f, -0.4f, 0.34f, -0.73f, 0.75f, -0.73f) - close() - moveTo(11.98f, 12.0f) - curveToRelative(0.37f, 0.0f, 0.67f, 0.26f, 0.73f, 0.62f) - verticalLineToRelative(0.1f) - lineToRelative(0.04f, 3.54f) - curveToRelative(0.0f, 0.4f, -0.32f, 0.73f, -0.73f, 0.74f) - arcToRelative(0.73f, 0.73f, 0.0f, false, true, -0.73f, -0.62f) - verticalLineToRelative(-0.1f) - lineToRelative(-0.04f, -3.55f) - curveToRelative(0.0f, -0.4f, 0.32f, -0.73f, 0.73f, -0.73f) - close() - } - } - return _dataUsage!! - } - -private var _dataUsage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataUsageEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataUsageEdit.kt deleted file mode 100644 index 92adda48..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataUsageEdit.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DataUsageEdit: ImageVector - get() { - if (_dataUsageEdit != null) { - return _dataUsageEdit!! - } - _dataUsageEdit = fluentIcon(name = "Regular.DataUsageEdit") { - fluentPath { - moveTo(20.0f, 4.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 17.25f, 2.0f) - lineTo(4.75f, 2.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 4.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 20.0f) - horizontalLineToRelative(6.67f) - lineToRelative(0.1f, -0.42f) - curveToRelative(0.1f, -0.39f, 0.25f, -0.75f, 0.46f, -1.08f) - lineTo(4.75f, 18.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - lineTo(3.5f, 4.75f) - curveToRelative(0.0f, -0.7f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(12.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(7.1f) - curveToRelative(0.44f, -0.4f, 0.96f, -0.65f, 1.5f, -0.77f) - lineTo(20.0f, 4.75f) - close() - moveTo(16.0f, 14.35f) - lineTo(16.0f, 6.63f) - arcToRelative(0.74f, 0.74f, 0.0f, false, false, -0.75f, -0.63f) - arcToRelative(0.74f, 0.74f, 0.0f, false, false, -0.75f, 0.73f) - lineTo(14.5f, 15.37f) - curveToRelative(0.02f, 0.12f, 0.07f, 0.24f, 0.15f, 0.34f) - lineTo(16.0f, 14.35f) - close() - moveTo(7.5f, 8.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - verticalLineToRelative(6.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - verticalLineToRelative(-6.6f) - close() - moveTo(11.7f, 11.62f) - arcToRelative(0.73f, 0.73f, 0.0f, false, false, -0.72f, -0.62f) - curveToRelative(-0.4f, 0.0f, -0.73f, 0.33f, -0.73f, 0.73f) - lineToRelative(0.04f, 3.55f) - verticalLineToRelative(0.1f) - curveToRelative(0.06f, 0.35f, 0.36f, 0.62f, 0.73f, 0.62f) - curveToRelative(0.4f, 0.0f, 0.73f, -0.34f, 0.73f, -0.74f) - lineToRelative(-0.04f, -3.54f) - verticalLineToRelative(-0.1f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _dataUsageEdit!! - } - -private var _dataUsageEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataUsageToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataUsageToolbox.kt deleted file mode 100644 index a0b04bbb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataUsageToolbox.kt +++ /dev/null @@ -1,115 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DataUsageToolbox: ImageVector - get() { - if (_dataUsageToolbox != null) { - return _dataUsageToolbox!! - } - _dataUsageToolbox = fluentIcon(name = "Regular.DataUsageToolbox") { - fluentPath { - moveTo(17.25f, 2.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 20.0f, 4.75f) - verticalLineToRelative(6.6f) - curveToRelative(-0.24f, -0.06f, -0.49f, -0.1f, -0.75f, -0.1f) - horizontalLineToRelative(-0.75f) - verticalLineToRelative(-6.5f) - curveToRelative(0.0f, -0.7f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(4.75f, 3.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - lineTo(11.0f, 18.5f) - lineTo(11.0f, 20.0f) - lineTo(4.75f, 20.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) - lineTo(2.0f, 4.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 2.0f) - horizontalLineToRelative(12.5f) - close() - moveTo(16.0f, 6.73f) - verticalLineToRelative(4.52f) - horizontalLineToRelative(-0.25f) - curveToRelative(-0.45f, 0.0f, -0.88f, 0.1f, -1.25f, 0.3f) - lineTo(14.5f, 6.73f) - curveToRelative(0.0f, -0.4f, 0.34f, -0.73f, 0.75f, -0.73f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.27f, 0.74f, 0.63f) - lineToRelative(0.01f, 0.1f) - close() - moveTo(11.71f, 11.72f) - lineTo(11.74f, 14.72f) - curveToRelative(-0.34f, 0.34f, -0.59f, 0.78f, -0.69f, 1.28f) - horizontalLineToRelative(-0.03f) - arcToRelative(0.73f, 0.73f, 0.0f, false, true, -0.73f, -0.62f) - verticalLineToRelative(-0.1f) - lineToRelative(-0.04f, -3.55f) - curveToRelative(0.0f, -0.4f, 0.32f, -0.73f, 0.73f, -0.73f) - curveToRelative(0.37f, 0.0f, 0.67f, 0.26f, 0.73f, 0.62f) - verticalLineToRelative(0.1f) - close() - moveTo(6.75f, 8.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.64f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(6.51f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-6.6f) - curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(14.0f, 15.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - lineTo(12.0f, 18.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(16.0f, 18.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(20.5f, 18.0f) - lineTo(23.0f, 18.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(21.0f, 15.0f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(1.0f) - close() - moveTo(15.5f, 14.0f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(12.0f, 21.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - lineTo(23.0f, 19.5f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - close() - } - } - return _dataUsageToolbox!! - } - -private var _dataUsageToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataWaterfall.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataWaterfall.kt deleted file mode 100644 index d93e61d2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataWaterfall.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DataWaterfall: ImageVector - get() { - if (_dataWaterfall != null) { - return _dataWaterfall!! - } - _dataWaterfall = fluentIcon(name = "Regular.DataWaterfall") { - fluentPath { - moveTo(2.0f, 3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineTo(11.0f) - horizontalLineToRelative(6.25f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(6.25f) - horizontalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineTo(12.5f) - horizontalLineTo(6.25f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineTo(4.5f) - horizontalLineTo(2.75f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 2.0f, 3.75f) - close() - moveTo(18.5f, 19.5f) - verticalLineToRelative(-6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineTo(14.0f) - verticalLineToRelative(6.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.75f) - close() - moveTo(10.0f, 5.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineTo(5.5f) - verticalLineToRelative(5.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineTo(10.0f) - verticalLineTo(5.25f) - close() - } - } - return _dataWaterfall!! - } - -private var _dataWaterfall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataWhisker.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataWhisker.kt deleted file mode 100644 index db84e125..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DataWhisker.kt +++ /dev/null @@ -1,106 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DataWhisker: ImageVector - get() { - if (_dataWhisker != null) { - return _dataWhisker!! - } - _dataWhisker = fluentIcon(name = "Regular.DataWhisker") { - fluentPath { - moveTo(14.75f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.0f) - lineTo(15.75f, 7.0f) - horizontalLineToRelative(-0.5f) - curveTo(14.01f, 7.0f, 13.0f, 8.0f, 13.0f, 9.25f) - verticalLineToRelative(7.0f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(0.5f) - lineTo(15.75f, 20.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(0.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-7.0f) - curveTo(20.0f, 8.01f, 19.0f, 7.0f, 17.75f, 7.0f) - horizontalLineToRelative(-0.5f) - lineTo(17.25f, 5.5f) - horizontalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - close() - moveTo(14.5f, 9.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(18.5f, 11.0f) - horizontalLineToRelative(-4.0f) - lineTo(14.5f, 9.25f) - close() - moveTo(14.5f, 12.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(3.75f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(14.5f, 12.5f) - close() - moveTo(5.75f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.0f) - lineTo(6.75f, 5.0f) - horizontalLineToRelative(-0.5f) - curveTo(5.01f, 5.0f, 4.0f, 6.0f, 4.0f, 7.25f) - verticalLineToRelative(7.0f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(0.5f) - lineTo(6.75f, 18.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(0.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-7.0f) - curveTo(11.0f, 6.01f, 10.0f, 5.0f, 8.75f, 5.0f) - horizontalLineToRelative(-0.5f) - lineTo(8.25f, 3.5f) - horizontalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - close() - moveTo(6.25f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(5.5f, 12.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(1.75f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-2.5f) - close() - moveTo(9.5f, 11.0f) - horizontalLineToRelative(-4.0f) - lineTo(5.5f, 7.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(9.5f, 11.0f) - close() - } - } - return _dataWhisker!! - } - -private var _dataWhisker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Database.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Database.kt deleted file mode 100644 index 581f9866..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Database.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Database: ImageVector - get() { - if (_database != null) { - return _database!! - } - _database = fluentIcon(name = "Regular.Database") { - fluentPath { - moveTo(4.0f, 6.0f) - curveToRelative(0.0f, -0.7f, 0.32f, -1.3f, 0.77f, -1.78f) - arcToRelative(5.61f, 5.61f, 0.0f, false, true, 1.8f, -1.2f) - arcTo(13.65f, 13.65f, 0.0f, false, true, 12.0f, 2.0f) - curveToRelative(2.08f, 0.0f, 4.0f, 0.38f, 5.43f, 1.02f) - curveToRelative(0.72f, 0.32f, 1.34f, 0.72f, 1.8f, 1.2f) - curveToRelative(0.45f, 0.49f, 0.77f, 1.09f, 0.77f, 1.78f) - verticalLineToRelative(12.0f) - curveToRelative(0.0f, 0.7f, -0.32f, 1.3f, -0.77f, 1.78f) - curveToRelative(-0.46f, 0.48f, -1.08f, 0.88f, -1.8f, 1.2f) - arcTo(13.65f, 13.65f, 0.0f, false, true, 12.0f, 22.0f) - curveToRelative(-2.08f, 0.0f, -4.0f, -0.38f, -5.43f, -1.02f) - arcToRelative(5.61f, 5.61f, 0.0f, false, true, -1.8f, -1.2f) - arcTo(2.6f, 2.6f, 0.0f, false, true, 4.0f, 18.0f) - lineTo(4.0f, 6.0f) - close() - moveTo(5.5f, 6.0f) - curveToRelative(0.0f, 0.2f, 0.09f, 0.46f, 0.37f, 0.75f) - curveToRelative(0.27f, 0.3f, 0.71f, 0.6f, 1.31f, 0.86f) - curveToRelative(1.2f, 0.54f, 2.9f, 0.89f, 4.82f, 0.89f) - curveToRelative(1.92f, 0.0f, 3.62f, -0.35f, 4.82f, -0.89f) - curveToRelative(0.6f, -0.26f, 1.04f, -0.56f, 1.31f, -0.86f) - curveToRelative(0.28f, -0.3f, 0.37f, -0.54f, 0.37f, -0.75f) - curveToRelative(0.0f, -0.2f, -0.09f, -0.46f, -0.37f, -0.75f) - curveToRelative(-0.27f, -0.3f, -0.71f, -0.6f, -1.31f, -0.86f) - curveToRelative(-1.2f, -0.54f, -2.9f, -0.89f, -4.82f, -0.89f) - curveToRelative(-1.92f, 0.0f, -3.62f, 0.35f, -4.82f, 0.89f) - curveToRelative(-0.6f, 0.26f, -1.04f, 0.56f, -1.31f, 0.86f) - curveToRelative(-0.28f, 0.3f, -0.37f, 0.54f, -0.37f, 0.75f) - close() - moveTo(18.5f, 8.4f) - arcToRelative(6.8f, 6.8f, 0.0f, false, true, -1.07f, 0.58f) - arcTo(13.65f, 13.65f, 0.0f, false, true, 12.0f, 10.0f) - curveToRelative(-2.08f, 0.0f, -4.0f, -0.38f, -5.43f, -1.02f) - arcTo(6.8f, 6.8f, 0.0f, false, true, 5.5f, 8.4f) - lineTo(5.5f, 18.0f) - curveToRelative(0.0f, 0.2f, 0.09f, 0.46f, 0.37f, 0.75f) - curveToRelative(0.27f, 0.3f, 0.71f, 0.6f, 1.31f, 0.86f) - curveToRelative(1.2f, 0.54f, 2.9f, 0.89f, 4.82f, 0.89f) - curveToRelative(1.92f, 0.0f, 3.62f, -0.35f, 4.82f, -0.89f) - curveToRelative(0.6f, -0.26f, 1.04f, -0.56f, 1.31f, -0.86f) - curveToRelative(0.28f, -0.3f, 0.37f, -0.54f, 0.37f, -0.75f) - lineTo(18.5f, 8.4f) - close() - } - } - return _database!! - } - -private var _database: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DatabaseArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DatabaseArrowRight.kt deleted file mode 100644 index f133d4c0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DatabaseArrowRight.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DatabaseArrowRight: ImageVector - get() { - if (_databaseArrowRight != null) { - return _databaseArrowRight!! - } - _databaseArrowRight = fluentIcon(name = "Regular.DatabaseArrowRight") { - fluentPath { - moveTo(4.0f, 6.0f) - curveToRelative(0.0f, -0.7f, 0.32f, -1.3f, 0.77f, -1.78f) - arcToRelative(5.61f, 5.61f, 0.0f, false, true, 1.8f, -1.2f) - arcTo(13.65f, 13.65f, 0.0f, false, true, 12.0f, 2.0f) - curveToRelative(2.08f, 0.0f, 4.0f, 0.38f, 5.43f, 1.02f) - curveToRelative(0.72f, 0.32f, 1.34f, 0.72f, 1.8f, 1.2f) - curveToRelative(0.45f, 0.49f, 0.77f, 1.09f, 0.77f, 1.78f) - verticalLineToRelative(5.5f) - curveToRelative(-0.47f, -0.2f, -0.98f, -0.34f, -1.5f, -0.42f) - lineTo(18.5f, 8.39f) - arcToRelative(6.8f, 6.8f, 0.0f, false, true, -1.07f, 0.6f) - arcTo(13.65f, 13.65f, 0.0f, false, true, 12.0f, 10.0f) - curveToRelative(-2.08f, 0.0f, -4.0f, -0.38f, -5.43f, -1.02f) - arcTo(6.8f, 6.8f, 0.0f, false, true, 5.5f, 8.4f) - lineTo(5.5f, 18.0f) - curveToRelative(0.0f, 0.2f, 0.09f, 0.46f, 0.37f, 0.75f) - curveToRelative(0.27f, 0.3f, 0.71f, 0.6f, 1.31f, 0.86f) - curveToRelative(1.14f, 0.51f, 2.74f, 0.86f, 4.55f, 0.89f) - curveToRelative(0.28f, 0.54f, 0.64f, 1.04f, 1.06f, 1.48f) - lineTo(12.0f, 22.0f) - curveToRelative(-2.08f, 0.0f, -4.0f, -0.38f, -5.43f, -1.02f) - arcToRelative(5.61f, 5.61f, 0.0f, false, true, -1.8f, -1.2f) - arcTo(2.6f, 2.6f, 0.0f, false, true, 4.0f, 18.0f) - lineTo(4.0f, 6.0f) - close() - moveTo(5.5f, 6.0f) - curveToRelative(0.0f, 0.2f, 0.09f, 0.46f, 0.37f, 0.75f) - curveToRelative(0.27f, 0.3f, 0.71f, 0.6f, 1.31f, 0.86f) - curveToRelative(1.2f, 0.54f, 2.9f, 0.89f, 4.82f, 0.89f) - curveToRelative(1.92f, 0.0f, 3.62f, -0.35f, 4.82f, -0.89f) - curveToRelative(0.6f, -0.26f, 1.04f, -0.56f, 1.31f, -0.86f) - curveToRelative(0.28f, -0.3f, 0.37f, -0.54f, 0.37f, -0.75f) - curveToRelative(0.0f, -0.2f, -0.09f, -0.46f, -0.37f, -0.75f) - curveToRelative(-0.27f, -0.3f, -0.71f, -0.6f, -1.31f, -0.86f) - curveToRelative(-1.2f, -0.54f, -2.9f, -0.89f, -4.82f, -0.89f) - curveToRelative(-1.92f, 0.0f, -3.62f, 0.35f, -4.82f, 0.89f) - curveToRelative(-0.6f, 0.26f, -1.04f, 0.56f, -1.31f, 0.86f) - curveToRelative(-0.28f, 0.3f, -0.37f, 0.54f, -0.37f, 0.75f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(14.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(19.29f, 17.0f) - lineTo(14.5f, 17.0f) - close() - } - } - return _databaseArrowRight!! - } - -private var _databaseArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DatabaseLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DatabaseLink.kt deleted file mode 100644 index 6b829b3c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DatabaseLink.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DatabaseLink: ImageVector - get() { - if (_databaseLink != null) { - return _databaseLink!! - } - _databaseLink = fluentIcon(name = "Regular.DatabaseLink") { - fluentPath { - moveTo(4.0f, 6.0f) - verticalLineToRelative(12.0f) - curveToRelative(0.0f, 0.7f, 0.32f, 1.3f, 0.77f, 1.78f) - curveToRelative(0.46f, 0.48f, 1.08f, 0.88f, 1.8f, 1.2f) - curveTo(8.0f, 21.62f, 9.92f, 22.0f, 12.0f, 22.0f) - curveToRelative(0.51f, 0.0f, 1.01f, -0.02f, 1.5f, -0.07f) - arcToRelative(4.77f, 4.77f, 0.0f, false, true, -1.62f, -1.43f) - arcToRelative(12.09f, 12.09f, 0.0f, false, true, -4.7f, -0.89f) - arcToRelative(4.14f, 4.14f, 0.0f, false, true, -1.31f, -0.86f) - curveToRelative(-0.28f, -0.3f, -0.37f, -0.54f, -0.37f, -0.75f) - lineTo(5.5f, 8.4f) - curveToRelative(0.32f, 0.21f, 0.68f, 0.4f, 1.07f, 0.58f) - curveTo(8.0f, 9.62f, 9.92f, 10.0f, 12.0f, 10.0f) - curveToRelative(2.08f, 0.0f, 4.0f, -0.38f, 5.43f, -1.02f) - arcToRelative(6.8f, 6.8f, 0.0f, false, false, 1.07f, -0.59f) - lineTo(18.5f, 13.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.26f, 0.0f, 0.5f, 0.02f, 0.75f, 0.06f) - lineTo(20.0f, 6.0f) - curveToRelative(0.0f, -0.7f, -0.32f, -1.3f, -0.77f, -1.78f) - arcToRelative(5.61f, 5.61f, 0.0f, false, false, -1.8f, -1.2f) - arcTo(13.65f, 13.65f, 0.0f, false, false, 12.0f, 2.0f) - curveToRelative(-2.08f, 0.0f, -4.0f, 0.38f, -5.43f, 1.02f) - curveToRelative(-0.72f, 0.32f, -1.34f, 0.72f, -1.8f, 1.2f) - arcTo(2.6f, 2.6f, 0.0f, false, false, 4.0f, 6.0f) - close() - moveTo(5.5f, 6.0f) - curveToRelative(0.0f, -0.2f, 0.09f, -0.46f, 0.37f, -0.75f) - curveToRelative(0.27f, -0.3f, 0.71f, -0.6f, 1.31f, -0.86f) - curveToRelative(1.2f, -0.54f, 2.9f, -0.89f, 4.82f, -0.89f) - curveToRelative(1.92f, 0.0f, 3.62f, 0.35f, 4.82f, 0.89f) - curveToRelative(0.6f, 0.26f, 1.04f, 0.56f, 1.31f, 0.86f) - curveToRelative(0.28f, 0.3f, 0.37f, 0.54f, 0.37f, 0.75f) - curveToRelative(0.0f, 0.2f, -0.09f, 0.46f, -0.37f, 0.75f) - curveToRelative(-0.27f, 0.3f, -0.71f, 0.6f, -1.31f, 0.86f) - curveToRelative(-1.2f, 0.54f, -2.9f, 0.89f, -4.82f, 0.89f) - curveToRelative(-1.92f, 0.0f, -3.62f, -0.35f, -4.82f, -0.89f) - arcToRelative(4.14f, 4.14f, 0.0f, false, true, -1.31f, -0.86f) - curveToRelative(-0.28f, -0.3f, -0.37f, -0.54f, -0.37f, -0.75f) - close() - moveTo(23.0f, 17.75f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 19.25f, 14.0f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - verticalLineToRelative(-0.01f) - horizontalLineToRelative(0.2f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 17.74f) - close() - moveTo(16.5f, 14.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-0.2f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(20.0f, 17.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - } - } - return _databaseLink!! - } - -private var _databaseLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DatabasePerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DatabasePerson.kt deleted file mode 100644 index 1830084f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DatabasePerson.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DatabasePerson: ImageVector - get() { - if (_databasePerson != null) { - return _databasePerson!! - } - _databasePerson = fluentIcon(name = "Regular.DatabasePerson") { - fluentPath { - moveTo(4.0f, 6.5f) - curveToRelative(0.0f, -0.7f, 0.32f, -1.3f, 0.77f, -1.78f) - arcToRelative(5.61f, 5.61f, 0.0f, false, true, 1.8f, -1.2f) - arcTo(13.65f, 13.65f, 0.0f, false, true, 12.0f, 2.5f) - curveToRelative(2.08f, 0.0f, 4.0f, 0.38f, 5.43f, 1.02f) - curveToRelative(0.72f, 0.32f, 1.34f, 0.72f, 1.8f, 1.2f) - curveToRelative(0.45f, 0.49f, 0.77f, 1.09f, 0.77f, 1.78f) - verticalLineToRelative(5.34f) - arcToRelative(3.49f, 3.49f, 0.0f, false, false, -1.5f, -0.34f) - lineTo(18.5f, 8.9f) - arcToRelative(6.8f, 6.8f, 0.0f, false, true, -1.07f, 0.58f) - arcTo(13.65f, 13.65f, 0.0f, false, true, 12.0f, 10.5f) - curveToRelative(-2.08f, 0.0f, -4.0f, -0.38f, -5.43f, -1.02f) - arcTo(6.8f, 6.8f, 0.0f, false, true, 5.5f, 8.9f) - verticalLineToRelative(9.61f) - curveToRelative(0.0f, 0.2f, 0.09f, 0.46f, 0.37f, 0.75f) - curveToRelative(0.27f, 0.3f, 0.71f, 0.6f, 1.31f, 0.86f) - curveToRelative(1.2f, 0.54f, 2.9f, 0.89f, 4.82f, 0.89f) - curveToRelative(0.36f, 0.0f, 0.7f, -0.01f, 1.05f, -0.04f) - curveToRelative(0.08f, 0.51f, 0.26f, 1.01f, 0.56f, 1.46f) - curveToRelative(-0.52f, 0.05f, -1.06f, 0.08f, -1.61f, 0.08f) - curveToRelative(-2.08f, 0.0f, -4.0f, -0.38f, -5.43f, -1.02f) - arcToRelative(5.61f, 5.61f, 0.0f, false, true, -1.8f, -1.2f) - arcTo(2.6f, 2.6f, 0.0f, false, true, 4.0f, 18.5f) - verticalLineToRelative(-12.0f) - close() - moveTo(5.5f, 6.5f) - curveToRelative(0.0f, 0.2f, 0.09f, 0.46f, 0.37f, 0.75f) - curveToRelative(0.27f, 0.3f, 0.71f, 0.6f, 1.31f, 0.86f) - curveToRelative(1.2f, 0.54f, 2.9f, 0.89f, 4.82f, 0.89f) - curveToRelative(1.92f, 0.0f, 3.62f, -0.35f, 4.82f, -0.89f) - curveToRelative(0.6f, -0.26f, 1.04f, -0.56f, 1.31f, -0.86f) - curveToRelative(0.28f, -0.3f, 0.37f, -0.54f, 0.37f, -0.75f) - curveToRelative(0.0f, -0.2f, -0.09f, -0.46f, -0.37f, -0.75f) - curveToRelative(-0.27f, -0.3f, -0.71f, -0.6f, -1.31f, -0.86f) - curveTo(15.62f, 4.35f, 13.92f, 4.0f, 12.0f, 4.0f) - curveToRelative(-1.92f, 0.0f, -3.62f, 0.35f, -4.82f, 0.89f) - curveToRelative(-0.6f, 0.26f, -1.04f, 0.56f, -1.31f, 0.86f) - curveToRelative(-0.28f, 0.3f, -0.37f, 0.54f, -0.37f, 0.75f) - close() - moveTo(21.0f, 15.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(23.0f, 20.38f) - curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) - reflectiveCurveTo(14.0f, 21.94f, 14.0f, 20.37f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _databasePerson!! - } - -private var _databasePerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DatabaseSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DatabaseSearch.kt deleted file mode 100644 index 674aa15c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DatabaseSearch.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DatabaseSearch: ImageVector - get() { - if (_databaseSearch != null) { - return _databaseSearch!! - } - _databaseSearch = fluentIcon(name = "Regular.DatabaseSearch") { - fluentPath { - moveTo(4.0f, 6.0f) - curveToRelative(0.0f, -0.7f, 0.32f, -1.3f, 0.77f, -1.78f) - arcToRelative(5.61f, 5.61f, 0.0f, false, true, 1.8f, -1.2f) - arcTo(13.65f, 13.65f, 0.0f, false, true, 12.0f, 2.0f) - curveToRelative(2.08f, 0.0f, 4.0f, 0.38f, 5.43f, 1.02f) - curveToRelative(0.72f, 0.32f, 1.34f, 0.72f, 1.8f, 1.2f) - curveToRelative(0.45f, 0.49f, 0.77f, 1.09f, 0.77f, 1.78f) - verticalLineToRelative(6.26f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -1.5f, -0.89f) - lineTo(18.5f, 8.4f) - arcToRelative(6.8f, 6.8f, 0.0f, false, true, -1.07f, 0.6f) - arcTo(13.65f, 13.65f, 0.0f, false, true, 12.0f, 10.0f) - curveToRelative(-2.08f, 0.0f, -4.0f, -0.38f, -5.43f, -1.02f) - arcTo(6.8f, 6.8f, 0.0f, false, true, 5.5f, 8.4f) - lineTo(5.5f, 18.0f) - curveToRelative(0.0f, 0.2f, 0.09f, 0.46f, 0.37f, 0.75f) - curveToRelative(0.27f, 0.3f, 0.71f, 0.6f, 1.31f, 0.86f) - arcToRelative(12.18f, 12.18f, 0.0f, false, false, 5.53f, 0.87f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 2.15f, 1.27f) - curveToRelative(-0.9f, 0.16f, -1.86f, 0.25f, -2.86f, 0.25f) - curveToRelative(-2.08f, 0.0f, -4.0f, -0.38f, -5.43f, -1.02f) - arcToRelative(5.61f, 5.61f, 0.0f, false, true, -1.8f, -1.2f) - arcTo(2.6f, 2.6f, 0.0f, false, true, 4.0f, 18.0f) - lineTo(4.0f, 6.0f) - close() - moveTo(5.5f, 6.0f) - curveToRelative(0.0f, 0.2f, 0.09f, 0.46f, 0.37f, 0.75f) - curveToRelative(0.27f, 0.3f, 0.71f, 0.6f, 1.31f, 0.86f) - curveToRelative(1.2f, 0.54f, 2.9f, 0.89f, 4.82f, 0.89f) - curveToRelative(1.92f, 0.0f, 3.62f, -0.35f, 4.82f, -0.89f) - curveToRelative(0.6f, -0.26f, 1.04f, -0.56f, 1.31f, -0.86f) - curveToRelative(0.28f, -0.3f, 0.37f, -0.54f, 0.37f, -0.75f) - curveToRelative(0.0f, -0.2f, -0.09f, -0.46f, -0.37f, -0.75f) - curveToRelative(-0.27f, -0.3f, -0.71f, -0.6f, -1.31f, -0.86f) - curveToRelative(-1.2f, -0.54f, -2.9f, -0.89f, -4.82f, -0.89f) - curveToRelative(-1.92f, 0.0f, -3.62f, 0.35f, -4.82f, 0.89f) - curveToRelative(-0.6f, 0.26f, -1.04f, 0.56f, -1.31f, 0.86f) - curveToRelative(-0.28f, 0.3f, -0.37f, 0.54f, -0.37f, 0.75f) - close() - moveTo(16.5f, 21.0f) - curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) - lineToRelative(2.62f, 2.61f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.61f, -2.61f) - arcTo(4.5f, 4.5f, 0.0f, true, false, 16.5f, 21.0f) - close() - moveTo(16.5f, 19.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) - close() - } - } - return _databaseSearch!! - } - -private var _databaseSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DecimalArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DecimalArrowLeft.kt deleted file mode 100644 index da252f68..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DecimalArrowLeft.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DecimalArrowLeft: ImageVector - get() { - if (_decimalArrowLeft != null) { - return _decimalArrowLeft!! - } - _decimalArrowLeft = fluentIcon(name = "Regular.DecimalArrowLeft") { - fluentPath { - moveTo(10.0f, 4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 6.0f, 0.0f) - lineTo(13.0f, 7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - close() - moveTo(11.5f, 11.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - lineTo(8.5f, 7.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - verticalLineToRelative(4.0f) - close() - moveTo(5.0f, 12.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - moveTo(19.5f, 7.0f) - verticalLineToRelative(4.0f) - lineToRelative(-0.03f, 0.3f) - curveToRelative(0.49f, 0.16f, 0.95f, 0.37f, 1.38f, 0.63f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 21.0f, 11.0f) - lineTo(21.0f, 7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, -6.0f, 0.0f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.16f, 0.01f, 0.33f, 0.04f, 0.48f) - curveToRelative(0.46f, -0.19f, 0.95f, -0.33f, 1.46f, -0.4f) - lineTo(16.5f, 7.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.5f, 18.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - horizontalLineToRelative(-4.8f) - lineToRelative(1.65f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineTo(15.71f, 18.0f) - horizontalLineToRelative(4.79f) - close() - } - } - return _decimalArrowLeft!! - } - -private var _decimalArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DecimalArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DecimalArrowRight.kt deleted file mode 100644 index 59f951f5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DecimalArrowRight.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DecimalArrowRight: ImageVector - get() { - if (_decimalArrowRight != null) { - return _decimalArrowRight!! - } - _decimalArrowRight = fluentIcon(name = "Regular.DecimalArrowRight") { - fluentPath { - moveTo(10.0f, 4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 6.0f, 0.0f) - lineTo(13.0f, 7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - close() - moveTo(11.5f, 11.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - lineTo(8.5f, 7.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - verticalLineToRelative(4.0f) - close() - moveTo(5.0f, 12.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - moveTo(19.5f, 7.0f) - verticalLineToRelative(4.0f) - lineToRelative(-0.03f, 0.3f) - curveToRelative(0.49f, 0.16f, 0.95f, 0.37f, 1.38f, 0.63f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 21.0f, 11.0f) - lineTo(21.0f, 7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, -6.0f, 0.0f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.16f, 0.01f, 0.33f, 0.04f, 0.48f) - curveToRelative(0.46f, -0.19f, 0.95f, -0.33f, 1.46f, -0.4f) - lineTo(16.5f, 7.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(19.29f, 17.0f) - lineTo(14.5f, 17.0f) - close() - } - } - return _decimalArrowRight!! - } - -private var _decimalArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DeleteDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DeleteDismiss.kt deleted file mode 100644 index 1dfbe6b1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DeleteDismiss.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DeleteDismiss: ImageVector - get() { - if (_deleteDismiss != null) { - return _deleteDismiss!! - } - _deleteDismiss = fluentIcon(name = "Regular.DeleteDismiss") { - fluentPath { - moveTo(14.0f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, -4.0f, 0.0f) - horizontalLineToRelative(4.0f) - close() - moveTo(8.5f, 5.0f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 7.0f, 0.0f) - horizontalLineToRelative(5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.32f) - lineToRelative(-0.5f, 5.2f) - curveToRelative(-0.46f, -0.24f, -0.95f, -0.41f, -1.46f, -0.53f) - lineToRelative(0.45f, -4.67f) - lineTo(5.58f, 6.5f) - lineToRelative(1.15f, 11.97f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.24f, 2.03f) - horizontalLineToRelative(1.76f) - curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) - lineTo(8.97f, 22.0f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.73f, -3.39f) - lineTo(4.07f, 6.5f) - lineTo(2.75f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(8.5f, 5.0f) - close() - moveTo(22.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-1.64f, -1.65f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.65f, 1.64f) - lineToRelative(-1.65f, -1.64f) - close() - } - } - return _deleteDismiss!! - } - -private var _deleteDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DeleteOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DeleteOff.kt deleted file mode 100644 index e697857e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DeleteOff.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DeleteOff: ImageVector - get() { - if (_deleteOff != null) { - return _deleteOff!! - } - _deleteOff = fluentIcon(name = "Regular.DeleteOff") { - fluentPath { - moveTo(3.94f, 5.0f) - lineTo(2.22f, 3.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(18.5f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineToRelative(-2.2f, -2.19f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.5f, 2.41f) - lineTo(8.98f, 22.0f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.73f, -3.39f) - lineTo(4.07f, 6.5f) - lineTo(2.75f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.19f) - close() - moveTo(17.28f, 18.34f) - lineTo(15.0f, 16.06f) - verticalLineToRelative(1.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.69f) - lineToRelative(-3.0f, -3.0f) - verticalLineToRelative(5.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-7.19f) - lineToRelative(-3.4f, -3.4f) - lineToRelative(1.13f, 11.8f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.24f, 2.04f) - horizontalLineToRelative(6.06f) - curveToRelative(1.15f, 0.0f, 2.12f, -0.88f, 2.24f, -2.03f) - verticalLineToRelative(-0.13f) - close() - moveTo(13.5f, 10.32f) - lineTo(15.0f, 11.82f) - lineTo(15.0f, 9.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(0.57f) - close() - moveTo(18.42f, 6.5f) - lineTo(17.65f, 14.47f) - lineTo(19.03f, 15.85f) - lineTo(19.93f, 6.5f) - horizontalLineToRelative(1.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(15.5f, 5.0f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, -7.0f, 0.0f) - horizontalLineToRelative(-0.32f) - lineToRelative(1.5f, 1.5f) - horizontalLineToRelative(8.74f) - close() - moveTo(14.0f, 5.0f) - horizontalLineToRelative(-4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) - close() - } - } - return _deleteOff!! - } - -private var _deleteOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Dentist.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Dentist.kt deleted file mode 100644 index 26c7c74d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Dentist.kt +++ /dev/null @@ -1,109 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Dentist: ImageVector - get() { - if (_dentist != null) { - return _dentist!! - } - _dentist = fluentIcon(name = "Regular.Dentist") { - fluentPath { - moveTo(15.75f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - curveToRelative(0.71f, 0.0f, 1.25f, 0.54f, 1.25f, 1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - curveTo(18.5f, 7.21f, 17.3f, 6.0f, 15.75f, 6.0f) - close() - moveTo(7.75f, 3.0f) - curveToRelative(-1.1f, 0.0f, -2.4f, 0.55f, -3.4f, 1.39f) - arcTo(4.74f, 4.74f, 0.0f, false, false, 2.5f, 7.95f) - verticalLineToRelative(0.02f) - curveToRelative(0.0f, 0.71f, 0.0f, 2.3f, 1.21f, 3.74f) - curveToRelative(0.13f, 0.15f, 0.21f, 0.25f, 0.27f, 0.35f) - curveToRelative(0.31f, 0.55f, 0.52f, 1.16f, 0.52f, 1.7f) - curveToRelative(0.01f, 1.9f, 0.35f, 3.52f, 0.96f, 4.7f) - curveToRelative(0.6f, 1.17f, 1.55f, 2.04f, 2.79f, 2.04f) - curveToRelative(0.37f, 0.0f, 0.72f, -0.09f, 1.02f, -0.3f) - curveToRelative(0.3f, -0.2f, 0.5f, -0.48f, 0.62f, -0.76f) - curveToRelative(0.24f, -0.53f, 0.3f, -1.21f, 0.33f, -1.83f) - lineToRelative(0.03f, -0.46f) - curveToRelative(0.06f, -1.2f, 0.13f, -2.46f, 0.67f, -3.57f) - curveToRelative(0.19f, -0.37f, 0.52f, -0.58f, 0.83f, -0.58f) - horizontalLineToRelative(0.5f) - curveToRelative(0.3f, 0.0f, 0.63f, 0.2f, 0.81f, 0.55f) - curveToRelative(0.4f, 1.04f, 0.52f, 2.19f, 0.63f, 3.3f) - lineToRelative(0.09f, 0.8f) - curveToRelative(0.07f, 0.63f, 0.18f, 1.29f, 0.41f, 1.8f) - curveToRelative(0.13f, 0.27f, 0.31f, 0.54f, 0.58f, 0.74f) - curveToRelative(0.29f, 0.2f, 0.62f, 0.31f, 0.98f, 0.31f) - curveToRelative(1.11f, 0.0f, 2.05f, -0.9f, 2.67f, -2.02f) - curveToRelative(0.64f, -1.17f, 1.07f, -2.8f, 1.08f, -4.73f) - curveToRelative(0.0f, -0.59f, 0.26f, -1.28f, 0.63f, -1.86f) - arcToRelative(5.64f, 5.64f, 0.0f, false, false, 1.37f, -3.94f) - curveToRelative(0.0f, -1.48f, -0.85f, -2.72f, -1.85f, -3.56f) - arcTo(5.66f, 5.66f, 0.0f, false, false, 16.25f, 3.0f) - arcToRelative(5.4f, 5.4f, 0.0f, false, false, -2.1f, 0.37f) - curveToRelative(-0.57f, 0.23f, -0.96f, 0.55f, -1.26f, 0.84f) - lineToRelative(-0.35f, 0.37f) - lineToRelative(-0.03f, 0.03f) - curveToRelative(-0.1f, 0.12f, -0.19f, 0.2f, -0.26f, 0.27f) - curveToRelative(-0.12f, 0.1f, -0.18f, 0.12f, -0.25f, 0.12f) - reflectiveCurveToRelative(-0.13f, -0.01f, -0.25f, -0.12f) - arcToRelative(3.83f, 3.83f, 0.0f, false, true, -0.26f, -0.27f) - lineToRelative(-0.03f, -0.03f) - lineToRelative(-0.35f, -0.37f) - curveToRelative(-0.3f, -0.3f, -0.7f, -0.6f, -1.25f, -0.84f) - arcTo(5.4f, 5.4f, 0.0f, false, false, 7.75f, 3.0f) - close() - moveTo(4.0f, 7.95f) - curveToRelative(0.0f, -0.89f, 0.52f, -1.74f, 1.32f, -2.41f) - arcTo(4.2f, 4.2f, 0.0f, false, true, 7.75f, 4.5f) - curveToRelative(0.7f, 0.0f, 1.19f, 0.11f, 1.53f, 0.25f) - curveToRelative(0.34f, 0.15f, 0.57f, 0.33f, 0.78f, 0.54f) - lineToRelative(0.3f, 0.3f) - lineToRelative(0.02f, 0.03f) - curveToRelative(0.1f, 0.12f, 0.23f, 0.26f, 0.37f, 0.38f) - curveToRelative(0.3f, 0.26f, 0.7f, 0.5f, 1.25f, 0.5f) - reflectiveCurveToRelative(0.95f, -0.24f, 1.25f, -0.5f) - curveToRelative(0.14f, -0.12f, 0.26f, -0.26f, 0.37f, -0.38f) - lineToRelative(0.03f, -0.03f) - lineToRelative(0.29f, -0.3f) - curveToRelative(0.2f, -0.2f, 0.44f, -0.4f, 0.78f, -0.54f) - reflectiveCurveToRelative(0.82f, -0.25f, 1.53f, -0.25f) - curveToRelative(0.67f, 0.0f, 1.63f, 0.36f, 2.43f, 1.04f) - curveToRelative(0.8f, 0.67f, 1.32f, 1.52f, 1.32f, 2.4f) - verticalLineToRelative(0.01f) - curveToRelative(0.0f, 0.68f, 0.0f, 1.77f, -1.05f, 3.0f) - arcToRelative(5.26f, 5.26f, 0.0f, false, false, -0.95f, 2.8f) - curveToRelative(0.0f, 1.72f, -0.4f, 3.09f, -0.9f, 4.0f) - curveToRelative(-0.53f, 0.98f, -1.08f, 1.25f, -1.35f, 1.25f) - curveToRelative(-0.06f, 0.0f, -0.08f, -0.01f, -0.08f, -0.02f) - arcToRelative(0.45f, 0.45f, 0.0f, false, true, -0.12f, -0.17f) - curveToRelative(-0.12f, -0.26f, -0.2f, -0.7f, -0.28f, -1.34f) - arcToRelative(41.8f, 41.8f, 0.0f, false, true, -0.08f, -0.7f) - arcToRelative(14.82f, 14.82f, 0.0f, false, false, -0.77f, -3.85f) - arcToRelative(2.45f, 2.45f, 0.0f, false, false, -2.17f, -1.42f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.99f, 0.0f, -1.79f, 0.63f, -2.17f, 1.42f) - curveToRelative(-0.7f, 1.4f, -0.77f, 2.99f, -0.83f, 4.16f) - lineToRelative(-0.03f, 0.44f) - curveToRelative(-0.04f, 0.66f, -0.1f, 1.07f, -0.2f, 1.31f) - curveToRelative(-0.05f, 0.1f, -0.08f, 0.13f, -0.1f, 0.14f) - curveToRelative(0.0f, 0.0f, -0.04f, 0.03f, -0.17f, 0.03f) - curveToRelative(-0.44f, 0.0f, -0.98f, -0.3f, -1.46f, -1.23f) - arcTo(9.15f, 9.15f, 0.0f, false, true, 6.0f, 13.75f) - arcToRelative(5.1f, 5.1f, 0.0f, false, false, -1.13f, -3.0f) - curveTo(4.0f, 9.73f, 4.0f, 8.62f, 4.0f, 7.94f) - close() - } - } - return _dentist!! - } - -private var _dentist: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesignIdeas.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesignIdeas.kt deleted file mode 100644 index 51de6877..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesignIdeas.kt +++ /dev/null @@ -1,97 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DesignIdeas: ImageVector - get() { - if (_designIdeas != null) { - return _designIdeas!! - } - _designIdeas = fluentIcon(name = "Regular.DesignIdeas") { - fluentPath { - moveTo(5.57f, 2.07f) - curveToRelative(0.26f, 0.13f, 0.43f, 0.4f, 0.43f, 0.68f) - curveToRelative(0.0f, 0.83f, 0.31f, 1.3f, 0.7f, 1.89f) - lineToRelative(0.03f, 0.04f) - curveToRelative(0.33f, 0.5f, 0.77f, 1.14f, 0.77f, 2.07f) - curveToRelative(0.0f, 0.95f, -0.48f, 1.78f, -1.2f, 2.27f) - curveToRelative(0.19f, 0.16f, 0.36f, 0.36f, 0.5f, 0.6f) - curveToRelative(0.48f, 0.77f, 0.7f, 1.94f, 0.7f, 3.63f) - curveToRelative(0.0f, 1.72f, -0.23f, 3.77f, -0.6f, 5.41f) - curveToRelative(-0.2f, 0.82f, -0.42f, 1.57f, -0.7f, 2.14f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.5f, 0.77f) - curveToRelative(-0.21f, 0.21f, -0.53f, 0.43f, -0.95f, 0.43f) - curveToRelative(-0.42f, 0.0f, -0.74f, -0.22f, -0.94f, -0.43f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.51f, -0.77f) - curveToRelative(-0.28f, -0.57f, -0.5f, -1.32f, -0.7f, -2.14f) - curveToRelative(-0.37f, -1.64f, -0.6f, -3.7f, -0.6f, -5.4f) - curveToRelative(0.0f, -1.7f, 0.22f, -2.87f, 0.7f, -3.64f) - curveToRelative(0.14f, -0.24f, 0.31f, -0.44f, 0.5f, -0.6f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 6.75f) - curveToRelative(0.0f, -0.37f, 0.0f, -1.0f, 0.38f, -1.82f) - arcToRelative(8.1f, 8.1f, 0.0f, false, true, 2.4f, -2.77f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.8f, -0.09f) - close() - moveTo(3.5f, 6.75f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) - curveToRelative(0.0f, -0.44f, -0.18f, -0.74f, -0.54f, -1.27f) - lineToRelative(-0.01f, -0.02f) - curveToRelative(-0.23f, -0.34f, -0.5f, -0.74f, -0.7f, -1.26f) - arcToRelative(5.07f, 5.07f, 0.0f, false, false, -1.0f, 1.37f) - curveToRelative(-0.25f, 0.51f, -0.25f, 0.88f, -0.25f, 1.18f) - close() - moveTo(3.97f, 10.41f) - curveToRelative(-0.24f, 0.4f, -0.47f, 1.22f, -0.47f, 2.84f) - curveToRelative(0.0f, 1.6f, 0.22f, 3.55f, 0.57f, 5.08f) - arcToRelative(8.91f, 8.91f, 0.0f, false, false, 0.68f, 2.0f) - curveToRelative(0.03f, -0.05f, 0.07f, -0.11f, 0.1f, -0.19f) - curveToRelative(0.2f, -0.41f, 0.4f, -1.04f, 0.58f, -1.8f) - curveToRelative(0.35f, -1.54f, 0.57f, -3.48f, 0.57f, -5.09f) - curveToRelative(0.0f, -1.62f, -0.23f, -2.44f, -0.47f, -2.84f) - arcToRelative(0.79f, 0.79f, 0.0f, false, false, -0.33f, -0.32f) - curveToRelative(-0.1f, -0.05f, -0.25f, -0.09f, -0.45f, -0.09f) - reflectiveCurveToRelative(-0.34f, 0.04f, -0.45f, 0.09f) - arcToRelative(0.79f, 0.79f, 0.0f, false, false, -0.33f, 0.32f) - close() - moveTo(10.0f, 14.9f) - arcToRelative(5.96f, 5.96f, 0.0f, false, true, -1.53f, -0.47f) - arcToRelative(23.1f, 23.1f, 0.0f, false, false, 0.02f, -1.7f) - curveToRelative(0.45f, 0.3f, 0.96f, 0.52f, 1.51f, 0.65f) - lineTo(10.0f, 10.5f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(4.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, -7.23f, -3.57f) - curveToRelative(-0.2f, -0.56f, -0.49f, -0.98f, -0.69f, -1.27f) - lineToRelative(-0.04f, -0.06f) - arcTo(6.0f, 6.0f, 0.0f, false, true, 17.0f, 9.0f) - horizontalLineToRelative(3.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-9.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - verticalLineToRelative(-4.58f) - close() - moveTo(11.5f, 14.97f) - verticalLineToRelative(4.52f) - horizontalLineToRelative(9.0f) - verticalLineToRelative(-9.0f) - horizontalLineToRelative(-3.69f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, -5.31f, 4.48f) - close() - moveTo(15.24f, 10.49f) - lineTo(11.5f, 10.49f) - verticalLineToRelative(2.97f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 3.74f, -2.97f) - close() - } - } - return _designIdeas!! - } - -private var _designIdeas: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Desktop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Desktop.kt deleted file mode 100644 index 2479c86a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Desktop.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Desktop: ImageVector - get() { - if (_desktop != null) { - return _desktop!! - } - _desktop = fluentIcon(name = "Regular.Desktop") { - fluentPath { - moveTo(6.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(8.5f, 20.5f) - lineTo(8.5f, 18.0f) - lineTo(4.25f, 18.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) - lineTo(2.0f, 15.76f) - lineTo(2.0f, 5.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 3.0f) - horizontalLineToRelative(15.5f) - curveToRelative(1.19f, 0.0f, 2.16f, 0.93f, 2.24f, 2.1f) - verticalLineToRelative(10.65f) - curveToRelative(0.0f, 1.2f, -0.92f, 2.17f, -2.09f, 2.25f) - horizontalLineToRelative(-4.4f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 22.0f) - close() - moveTo(14.0f, 18.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(4.0f) - lineTo(14.0f, 18.0f) - close() - moveTo(19.75f, 4.5f) - lineTo(4.25f, 4.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.75f) - horizontalLineToRelative(15.6f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineTo(20.49f, 5.25f) - curveToRelative(0.0f, -0.38f, -0.27f, -0.7f, -0.64f, -0.74f) - lineToRelative(-0.1f, -0.01f) - close() - } - } - return _desktop!! - } - -private var _desktop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopArrowRight.kt deleted file mode 100644 index 39dd3a47..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopArrowRight.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DesktopArrowRight: ImageVector - get() { - if (_desktopArrowRight != null) { - return _desktopArrowRight!! - } - _desktopArrowRight = fluentIcon(name = "Regular.DesktopArrowRight") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.5f, 6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(19.29f, 6.0f) - lineTo(14.5f, 6.0f) - close() - moveTo(20.5f, 15.75f) - verticalLineToRelative(-3.48f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(4.56f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.25f) - horizontalLineToRelative(-4.4f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(8.5f, 20.5f) - lineTo(8.5f, 18.0f) - lineTo(4.25f, 18.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) - lineTo(2.0f, 15.76f) - lineTo(2.0f, 5.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.25f) - horizontalLineToRelative(7.92f) - curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) - lineTo(4.24f, 4.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.75f) - horizontalLineToRelative(15.6f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - verticalLineToRelative(-0.1f) - close() - moveTo(14.0f, 18.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(4.0f) - lineTo(14.0f, 18.0f) - close() - } - } - return _desktopArrowRight!! - } - -private var _desktopArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopCheckmark.kt deleted file mode 100644 index 2ff719e3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopCheckmark.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DesktopCheckmark: ImageVector - get() { - if (_desktopCheckmark != null) { - return _desktopCheckmark!! - } - _desktopCheckmark = fluentIcon(name = "Regular.DesktopCheckmark") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.85f, 4.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineTo(16.5f, 7.79f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - moveTo(20.5f, 15.75f) - verticalLineToRelative(-3.48f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(4.56f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.25f) - horizontalLineToRelative(-4.4f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(8.5f, 20.5f) - lineTo(8.5f, 18.0f) - lineTo(4.25f, 18.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) - lineTo(2.0f, 15.76f) - lineTo(2.0f, 5.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.25f) - horizontalLineToRelative(7.92f) - curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) - lineTo(4.24f, 4.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(15.5f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - verticalLineToRelative(-0.1f) - close() - moveTo(14.0f, 18.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(4.0f) - lineTo(14.0f, 18.0f) - close() - } - } - return _desktopCheckmark!! - } - -private var _desktopCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopCursor.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopCursor.kt deleted file mode 100644 index 38e73dd3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopCursor.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DesktopCursor: ImageVector - get() { - if (_desktopCursor != null) { - return _desktopCursor!! - } - _desktopCursor = fluentIcon(name = "Regular.DesktopCursor") { - fluentPath { - moveTo(6.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(8.5f, 20.5f) - lineTo(8.5f, 18.0f) - lineTo(4.25f, 18.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) - lineTo(2.0f, 15.76f) - lineTo(2.0f, 5.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 3.0f) - horizontalLineToRelative(15.5f) - curveToRelative(1.19f, 0.0f, 2.16f, 0.93f, 2.24f, 2.1f) - verticalLineToRelative(10.65f) - curveToRelative(0.0f, 0.37f, -0.08f, 0.72f, -0.24f, 1.03f) - lineTo(20.5f, 15.4f) - lineTo(20.5f, 5.25f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - lineTo(4.25f, 4.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.75f) - lineTo(14.0f, 16.5f) - lineTo(14.0f, 18.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(4.0f) - lineTo(14.0f, 22.0f) - lineTo(6.75f, 22.0f) - close() - moveTo(15.49f, 12.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.82f, 0.2f) - lineToRelative(6.37f, 7.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 1.23f) - lineToRelative(-3.54f, -0.88f) - lineToRelative(-2.03f, 3.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.37f, -0.42f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.31f, 0.2f, -0.59f, 0.49f, -0.7f) - close() - } - } - return _desktopCursor!! - } - -private var _desktopCursor: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopEdit.kt deleted file mode 100644 index 87d8a6ae..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopEdit.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DesktopEdit: ImageVector - get() { - if (_desktopEdit != null) { - return _desktopEdit!! - } - _desktopEdit = fluentIcon(name = "Regular.DesktopEdit") { - fluentPath { - moveToRelative(19.1f, 1.67f) - lineToRelative(-5.9f, 5.9f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - moveTo(4.25f, 3.0f) - horizontalLineToRelative(12.1f) - lineToRelative(-1.5f, 1.5f) - horizontalLineTo(4.26f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(15.5f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - verticalLineTo(8.15f) - lineToRelative(1.5f, -1.5f) - verticalLineToRelative(9.1f) - curveToRelative(0.0f, 1.2f, -0.92f, 2.17f, -2.09f, 2.25f) - horizontalLineToRelative(-4.4f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineTo(6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineTo(8.5f) - verticalLineTo(18.0f) - horizontalLineTo(4.25f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) - lineTo(2.0f, 15.76f) - verticalLineTo(5.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.25f) - horizontalLineToRelative(0.15f) - close() - moveTo(14.0f, 18.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(4.0f) - verticalLineTo(18.0f) - close() - } - } - return _desktopEdit!! - } - -private var _desktopEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopFlow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopFlow.kt deleted file mode 100644 index 4c75317d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopFlow.kt +++ /dev/null @@ -1,99 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DesktopFlow: ImageVector - get() { - if (_desktopFlow != null) { - return _desktopFlow!! - } - _desktopFlow = fluentIcon(name = "Regular.DesktopFlow") { - fluentPath { - moveTo(16.67f, 3.0f) - lineTo(4.1f, 3.0f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 5.26f) - verticalLineToRelative(10.66f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 18.0f) - lineTo(8.5f, 18.0f) - verticalLineToRelative(2.49f) - lineTo(6.65f, 20.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(10.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - lineTo(15.5f, 20.49f) - lineTo(15.5f, 18.0f) - horizontalLineToRelative(4.4f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.1f, -2.25f) - lineTo(22.0f, 9.5f) - horizontalLineToRelative(-1.5f) - verticalLineToRelative(6.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, 0.65f) - lineTo(4.15f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) - lineTo(3.5f, 5.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) - lineTo(16.5f, 4.5f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.27f, 0.06f, -0.52f, 0.17f, -0.75f) - close() - moveTo(10.0f, 18.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(-4.0f) - lineTo(10.0f, 18.0f) - close() - moveTo(17.5f, 3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(17.5f, 7.0f) - horizontalLineToRelative(-0.32f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, -0.51f, 0.37f) - lineToRelative(-0.92f, 2.74f) - arcToRelative(2.04f, 2.04f, 0.0f, false, true, -1.93f, 1.39f) - lineTo(13.0f, 11.5f) - verticalLineToRelative(1.75f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(13.0f, 10.0f) - horizontalLineToRelative(0.82f) - curveToRelative(0.23f, 0.0f, 0.44f, -0.15f, 0.51f, -0.37f) - lineToRelative(0.92f, -2.74f) - arcToRelative(2.04f, 2.04f, 0.0f, false, true, 1.93f, -1.39f) - horizontalLineToRelative(0.32f) - lineTo(17.5f, 3.75f) - close() - moveTo(19.0f, 6.27f) - lineTo(19.0f, 7.0f) - horizontalLineToRelative(2.5f) - lineTo(21.5f, 4.5f) - lineTo(19.0f, 4.5f) - verticalLineToRelative(1.73f) - arcToRelative(1.07f, 1.07f, 0.0f, false, true, 0.0f, 0.04f) - close() - moveTo(9.0f, 10.0f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(2.5f) - lineTo(11.5f, 10.0f) - lineTo(9.0f, 10.0f) - close() - } - } - return _desktopFlow!! - } - -private var _desktopFlow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopKeyboard.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopKeyboard.kt deleted file mode 100644 index f34c1b3b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopKeyboard.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DesktopKeyboard: ImageVector - get() { - if (_desktopKeyboard != null) { - return _desktopKeyboard!! - } - _desktopKeyboard = fluentIcon(name = "Regular.DesktopKeyboard") { - fluentPath { - moveTo(6.72f, 22.0f) - horizontalLineToRelative(2.53f) - curveToRelative(-0.16f, -0.38f, -0.25f, -0.8f, -0.25f, -1.25f) - lineTo(9.0f, 16.5f) - lineTo(4.15f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) - lineTo(3.5f, 5.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) - horizontalLineToRelative(15.6f) - curveToRelative(0.37f, 0.06f, 0.65f, 0.37f, 0.65f, 0.75f) - lineTo(20.5f, 12.0f) - horizontalLineToRelative(0.25f) - curveToRelative(0.44f, 0.0f, 0.86f, 0.09f, 1.25f, 0.25f) - lineTo(22.0f, 5.1f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 19.74f, 3.0f) - lineTo(4.1f, 3.0f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 5.26f) - verticalLineToRelative(10.66f) - curveToRelative(0.08f, 1.13f, 1.0f, 2.04f, 2.15f, 2.09f) - lineTo(4.0f, 18.01f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(2.5f) - lineTo(5.65f, 20.51f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.07f, 1.5f) - horizontalLineToRelative(1.0f) - close() - moveTo(10.0f, 15.25f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(8.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(5.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-8.5f) - curveTo(11.01f, 23.0f, 10.0f, 22.0f, 10.0f, 20.75f) - verticalLineToRelative(-5.5f) - close() - moveTo(14.0f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - close() - moveTo(17.5f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - close() - moveTo(20.0f, 16.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(19.25f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - close() - moveTo(15.0f, 18.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(13.0f, 20.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - } - } - return _desktopKeyboard!! - } - -private var _desktopKeyboard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopMac.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopMac.kt deleted file mode 100644 index ac7ffac0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopMac.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DesktopMac: ImageVector - get() { - if (_desktopMac != null) { - return _desktopMac!! - } - _desktopMac = fluentIcon(name = "Regular.DesktopMac") { - fluentPath { - moveTo(4.25f, 3.0f) - curveTo(3.01f, 3.0f, 2.0f, 4.0f, 2.0f, 5.25f) - verticalLineToRelative(10.5f) - curveTo(2.0f, 16.99f, 3.0f, 18.0f, 4.25f, 18.0f) - lineTo(9.5f, 18.0f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - lineTo(14.5f, 18.0f) - horizontalLineToRelative(5.25f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(22.0f, 5.25f) - curveTo(22.0f, 4.01f, 21.0f, 3.0f, 19.75f, 3.0f) - lineTo(4.25f, 3.0f) - close() - moveTo(13.0f, 18.0f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.45f, 0.1f, 0.88f, 0.3f, 1.25f) - horizontalLineToRelative(-2.6f) - curveToRelative(0.2f, -0.38f, 0.3f, -0.8f, 0.3f, -1.25f) - lineTo(11.0f, 18.0f) - horizontalLineToRelative(2.0f) - close() - moveTo(3.5f, 5.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(15.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(20.5f, 13.0f) - horizontalLineToRelative(-17.0f) - lineTo(3.5f, 5.25f) - close() - moveTo(3.5f, 14.5f) - horizontalLineToRelative(17.0f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(4.25f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(3.5f, 14.5f) - close() - } - } - return _desktopMac!! - } - -private var _desktopMac: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopPulse.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopPulse.kt deleted file mode 100644 index 906f0755..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopPulse.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DesktopPulse: ImageVector - get() { - if (_desktopPulse != null) { - return _desktopPulse!! - } - _desktopPulse = fluentIcon(name = "Regular.DesktopPulse") { - fluentPath { - moveTo(6.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(8.5f, 20.5f) - lineTo(8.5f, 18.0f) - lineTo(4.25f, 18.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) - lineTo(2.0f, 15.76f) - lineTo(2.0f, 13.0f) - horizontalLineToRelative(1.5f) - verticalLineToRelative(2.75f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.75f) - horizontalLineToRelative(15.6f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineTo(20.49f, 13.0f) - lineTo(22.0f, 13.0f) - verticalLineToRelative(2.75f) - curveToRelative(0.0f, 1.2f, -0.92f, 2.17f, -2.09f, 2.25f) - horizontalLineToRelative(-4.4f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 22.0f) - close() - moveTo(14.0f, 18.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(4.0f) - lineTo(14.0f, 18.0f) - close() - moveTo(3.5f, 9.5f) - lineTo(2.0f, 9.5f) - lineTo(2.0f, 5.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 3.0f) - horizontalLineToRelative(15.5f) - curveToRelative(1.19f, 0.0f, 2.16f, 0.93f, 2.24f, 2.1f) - verticalLineToRelative(4.4f) - horizontalLineToRelative(-1.5f) - lineTo(20.49f, 5.25f) - curveToRelative(0.0f, -0.38f, -0.27f, -0.7f, -0.64f, -0.74f) - lineToRelative(-0.1f, -0.01f) - lineTo(4.25f, 4.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - lineTo(3.5f, 9.5f) - close() - moveTo(9.7f, 6.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.38f, -0.03f) - lineTo(6.49f, 10.5f) - lineTo(2.75f, 10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.23f) - curveToRelative(0.3f, 0.0f, 0.56f, -0.17f, 0.68f, -0.44f) - lineToRelative(1.3f, -2.89f) - lineToRelative(2.34f, 5.86f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.35f, 0.1f) - lineToRelative(2.65f, -4.5f) - lineToRelative(1.09f, 1.55f) - curveToRelative(0.14f, 0.2f, 0.37f, 0.32f, 0.61f, 0.32f) - horizontalLineToRelative(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.86f) - lineToRelative(-1.53f, -2.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.26f, 0.05f) - lineToRelative(-2.47f, 4.19f) - lineTo(9.7f, 6.47f) - close() - } - } - return _desktopPulse!! - } - -private var _desktopPulse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopSignal.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopSignal.kt deleted file mode 100644 index 55662b4b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopSignal.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DesktopSignal: ImageVector - get() { - if (_desktopSignal != null) { - return _desktopSignal!! - } - _desktopSignal = fluentIcon(name = "Regular.DesktopSignal") { - fluentPath { - moveTo(15.0f, 1.5f) - curveToRelative(-0.18f, 0.0f, -0.37f, 0.0f, -0.55f, 0.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - curveTo(14.7f, 3.0f, 14.85f, 3.0f, 15.0f, 3.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, 6.99f, 7.45f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.1f) - lineToRelative(0.01f, -0.55f) - curveToRelative(0.0f, -4.7f, -3.8f, -8.5f, -8.5f, -8.5f) - close() - moveTo(15.0f, 4.0f) - curveToRelative(-0.2f, 0.0f, -0.38f, 0.0f, -0.57f, 0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.14f, 1.49f) - lineTo(15.0f, 5.5f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.48f, 4.93f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.14f) - lineTo(21.0f, 10.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, -6.0f, -6.0f) - close() - moveTo(15.0f, 6.5f) - curveToRelative(-0.22f, 0.0f, -0.43f, 0.02f, -0.64f, 0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.28f, 1.47f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.33f, 2.33f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.47f, 0.28f) - arcTo(3.51f, 3.51f, 0.0f, false, false, 15.0f, 6.5f) - close() - moveTo(12.91f, 3.0f) - lineTo(4.1f, 3.0f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 5.26f) - verticalLineToRelative(10.66f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 18.0f) - lineTo(8.5f, 18.0f) - verticalLineToRelative(2.49f) - lineTo(6.65f, 20.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(10.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - lineTo(15.5f, 20.49f) - lineTo(15.5f, 18.0f) - horizontalLineToRelative(4.4f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.1f, -2.25f) - lineTo(22.0f, 12.1f) - curveToRelative(-0.2f, -0.1f, -0.37f, -0.22f, -0.52f, -0.37f) - curveToRelative(-0.26f, 0.27f, -0.6f, 0.45f, -0.98f, 0.51f) - verticalLineToRelative(3.62f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, 0.65f) - lineTo(4.15f, 16.51f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) - lineTo(3.5f, 5.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) - horizontalLineToRelative(8.52f) - curveToRelative(0.06f, -0.38f, 0.24f, -0.72f, 0.5f, -0.98f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.36f, -0.52f) - close() - moveTo(14.0f, 18.0f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(-4.0f) - lineTo(10.0f, 18.0f) - horizontalLineToRelative(4.0f) - close() - moveTo(16.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - } - } - return _desktopSignal!! - } - -private var _desktopSignal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopSpeaker.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopSpeaker.kt deleted file mode 100644 index fb01fe48..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopSpeaker.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DesktopSpeaker: ImageVector - get() { - if (_desktopSpeaker != null) { - return _desktopSpeaker!! - } - _desktopSpeaker = fluentIcon(name = "Regular.DesktopSpeaker") { - fluentPath { - moveTo(6.0f, 21.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(8.93f) - curveToRelative(-0.25f, -0.09f, -0.5f, -0.24f, -0.7f, -0.46f) - lineTo(14.0f, 20.5f) - horizontalLineToRelative(-4.0f) - lineTo(10.0f, 18.0f) - horizontalLineToRelative(1.0f) - verticalLineToRelative(-1.5f) - lineTo(4.15f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) - lineTo(3.5f, 5.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) - horizontalLineToRelative(15.6f) - curveToRelative(0.37f, 0.06f, 0.65f, 0.37f, 0.65f, 0.75f) - verticalLineToRelative(6.77f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 1.5f, 0.5f) - lineTo(22.0f, 5.1f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 19.74f, 3.0f) - lineTo(4.1f, 3.0f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 5.26f) - verticalLineToRelative(10.66f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 18.0f) - lineTo(8.5f, 18.0f) - verticalLineToRelative(2.49f) - lineTo(6.65f, 20.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - close() - moveTo(22.14f, 14.3f) - arcToRelative(4.53f, 4.53f, 0.0f, false, false, -0.91f, -1.13f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.96f, 1.16f) - curveToRelative(0.13f, 0.1f, 0.35f, 0.35f, 0.59f, 0.74f) - curveToRelative(0.4f, 0.67f, 0.64f, 1.48f, 0.64f, 2.43f) - curveToRelative(0.0f, 0.95f, -0.24f, 1.76f, -0.64f, 2.43f) - curveToRelative(-0.24f, 0.39f, -0.46f, 0.64f, -0.59f, 0.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.96f, 1.16f) - curveToRelative(0.25f, -0.21f, 0.59f, -0.58f, 0.91f, -1.13f) - curveToRelative(0.54f, -0.9f, 0.86f, -1.96f, 0.86f, -3.2f) - curveToRelative(0.0f, -1.24f, -0.32f, -2.3f, -0.86f, -3.2f) - close() - moveTo(19.87f, 15.4f) - curveToRelative(-0.23f, -0.36f, -0.48f, -0.6f, -0.67f, -0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 1.2f) - arcToRelative(2.24f, 2.24f, 0.0f, false, true, 0.7f, 1.65f) - arcToRelative(2.24f, 2.24f, 0.0f, false, true, -0.7f, 1.65f) - lineToRelative(-0.08f, 0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) - arcToRelative(3.73f, 3.73f, 0.0f, false, false, 1.3f, -2.85f) - curveToRelative(0.0f, -0.81f, -0.23f, -1.52f, -0.63f, -2.1f) - close() - moveTo(17.0f, 14.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.31f, -0.5f) - lineTo(14.16f, 16.0f) - horizontalLineToRelative(-1.41f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(1.41f) - lineToRelative(1.53f, 1.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.31f, -0.49f) - verticalLineToRelative(-5.5f) - close() - moveTo(16.8f, 22.0f) - horizontalLineToRelative(0.45f) - close() - } - } - return _desktopSpeaker!! - } - -private var _desktopSpeaker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopSpeakerOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopSpeakerOff.kt deleted file mode 100644 index ee35600d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopSpeakerOff.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DesktopSpeakerOff: ImageVector - get() { - if (_desktopSpeakerOff != null) { - return _desktopSpeakerOff!! - } - _desktopSpeakerOff = fluentIcon(name = "Regular.DesktopSpeakerOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(0.4f, 0.4f) - curveTo(2.25f, 4.1f, 2.0f, 4.65f, 2.0f, 5.26f) - verticalLineToRelative(10.66f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 18.0f) - lineTo(8.5f, 18.0f) - verticalLineToRelative(2.49f) - lineTo(6.65f, 20.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(8.93f) - curveToRelative(-0.25f, -0.09f, -0.5f, -0.24f, -0.7f, -0.46f) - lineTo(14.0f, 20.5f) - horizontalLineToRelative(-4.0f) - lineTo(10.0f, 18.0f) - horizontalLineToRelative(1.0f) - verticalLineToRelative(-1.5f) - lineTo(4.15f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) - lineTo(3.5f, 5.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.19f, -0.4f) - lineToRelative(10.83f, 10.83f) - lineToRelative(-0.36f, 0.42f) - horizontalLineToRelative(-1.41f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(1.41f) - lineToRelative(1.53f, 1.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.31f, -0.49f) - verticalLineToRelative(-2.19f) - lineToRelative(3.72f, 3.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(20.5f, 17.32f) - lineTo(18.08f, 14.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.12f, -0.25f) - arcToRelative(3.71f, 3.71f, 0.0f, false, true, 1.3f, 2.66f) - close() - moveTo(22.69f, 19.51f) - lineTo(21.45f, 18.26f) - curveToRelative(0.03f, -0.24f, 0.05f, -0.5f, 0.05f, -0.76f) - curveToRelative(0.0f, -0.95f, -0.24f, -1.76f, -0.64f, -2.43f) - curveToRelative(-0.24f, -0.39f, -0.46f, -0.64f, -0.59f, -0.74f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.96f, -1.16f) - curveToRelative(0.25f, 0.21f, 0.59f, 0.58f, 0.91f, 1.13f) - arcToRelative(6.39f, 6.39f, 0.0f, false, true, 0.55f, 5.2f) - close() - moveTo(7.69f, 4.5f) - lineTo(6.18f, 3.0f) - horizontalLineToRelative(13.56f) - curveToRelative(1.19f, 0.0f, 2.16f, 0.92f, 2.24f, 2.1f) - verticalLineToRelative(7.42f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.5f, -0.5f) - lineTo(20.48f, 5.25f) - curveToRelative(0.0f, -0.38f, -0.27f, -0.7f, -0.64f, -0.74f) - lineToRelative(-0.1f, -0.01f) - lineTo(7.68f, 4.5f) - close() - } - } - return _desktopSpeakerOff!! - } - -private var _desktopSpeakerOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopSync.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopSync.kt deleted file mode 100644 index 192e187e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopSync.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DesktopSync: ImageVector - get() { - if (_desktopSync != null) { - return _desktopSync!! - } - _desktopSync = fluentIcon(name = "Regular.DesktopSync") { - fluentPath { - moveTo(12.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) - close() - moveTo(20.5f, 3.0f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - verticalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.8f, -0.59f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) - lineTo(20.0f, 3.5f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - close() - moveTo(15.0f, 8.95f) - verticalLineToRelative(0.55f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.77f, 0.65f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) - close() - moveTo(20.5f, 15.75f) - verticalLineToRelative(-3.48f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(4.56f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.25f) - horizontalLineToRelative(-4.4f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(8.5f, 20.5f) - lineTo(8.5f, 18.0f) - lineTo(4.25f, 18.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) - lineTo(2.0f, 15.76f) - lineTo(2.0f, 5.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.25f) - horizontalLineToRelative(7.92f) - curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) - lineTo(4.24f, 4.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(15.5f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - verticalLineToRelative(-0.1f) - close() - moveTo(14.0f, 18.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(4.0f) - lineTo(14.0f, 18.0f) - close() - } - } - return _desktopSync!! - } - -private var _desktopSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopToolbox.kt deleted file mode 100644 index 9a3286bb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DesktopToolbox.kt +++ /dev/null @@ -1,99 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DesktopToolbox: ImageVector - get() { - if (_desktopToolbox != null) { - return _desktopToolbox!! - } - _desktopToolbox = fluentIcon(name = "Regular.DesktopToolbox") { - fluentPath { - moveTo(6.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(8.5f, 20.5f) - lineTo(8.5f, 18.0f) - lineTo(4.25f, 18.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) - lineTo(2.0f, 15.76f) - lineTo(2.0f, 5.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 3.0f) - horizontalLineToRelative(15.5f) - curveToRelative(1.19f, 0.0f, 2.16f, 0.93f, 2.24f, 2.1f) - verticalLineToRelative(8.82f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -1.5f, -2.37f) - verticalLineToRelative(-6.3f) - curveToRelative(0.0f, -0.38f, -0.27f, -0.7f, -0.64f, -0.74f) - lineToRelative(-0.1f, -0.01f) - lineTo(4.25f, 4.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.75f) - lineTo(11.0f, 16.5f) - lineTo(11.0f, 18.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(1.0f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 0.17f, 0.02f, 0.34f, 0.05f, 0.5f) - horizontalLineToRelative(-4.3f) - close() - moveTo(14.0f, 15.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - lineTo(12.0f, 18.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(16.0f, 18.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(20.5f, 18.0f) - lineTo(23.0f, 18.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(21.0f, 15.0f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(1.0f) - close() - moveTo(15.5f, 14.0f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(12.0f, 21.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - lineTo(23.0f, 19.5f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - close() - } - } - return _desktopToolbox!! - } - -private var _desktopToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DeveloperBoard.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DeveloperBoard.kt deleted file mode 100644 index a36d2f3b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DeveloperBoard.kt +++ /dev/null @@ -1,115 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DeveloperBoard: ImageVector - get() { - if (_developerBoard != null) { - return _developerBoard!! - } - _developerBoard = fluentIcon(name = "Regular.DeveloperBoard") { - fluentPath { - moveTo(15.25f, 2.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(2.33f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 18.93f, 8.0f) - horizontalLineToRelative(2.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(19.0f, 9.5f) - verticalLineToRelative(1.75f) - horizontalLineToRelative(2.25f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(19.0f, 12.75f) - verticalLineToRelative(1.75f) - horizontalLineToRelative(2.25f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-2.33f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 16.0f, 18.92f) - verticalLineToRelative(2.33f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(14.5f, 19.0f) - horizontalLineToRelative(-1.75f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineTo(12.0f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - lineTo(11.25f, 19.0f) - lineTo(9.5f, 19.0f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-2.32f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 5.08f, 16.0f) - lineTo(2.75f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(5.0f, 14.5f) - verticalLineToRelative(-1.75f) - lineTo(2.75f, 12.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineTo(2.0f, 12.0f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - lineTo(5.0f, 11.25f) - lineTo(5.0f, 9.5f) - lineTo(2.75f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineTo(2.0f, 8.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(2.33f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 8.0f, 5.07f) - lineTo(8.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - lineTo(9.5f, 5.0f) - horizontalLineToRelative(1.75f) - lineTo(11.25f, 2.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineTo(12.0f, 2.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - lineTo(12.75f, 5.0f) - horizontalLineToRelative(1.75f) - lineTo(14.5f, 2.75f) - curveToRelative(0.0f, -0.35f, 0.23f, -0.64f, 0.55f, -0.72f) - lineToRelative(0.1f, -0.02f) - lineToRelative(0.1f, -0.01f) - close() - moveTo(15.25f, 6.5f) - horizontalLineToRelative(-6.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(6.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-6.5f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - close() - moveTo(12.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) - close() - moveTo(12.0f, 10.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - } - } - return _developerBoard!! - } - -private var _developerBoard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DeveloperBoardSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DeveloperBoardSearch.kt deleted file mode 100644 index 89fbdedb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DeveloperBoardSearch.kt +++ /dev/null @@ -1,106 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DeveloperBoardSearch: ImageVector - get() { - if (_developerBoardSearch != null) { - return _developerBoardSearch!! - } - _developerBoardSearch = fluentIcon(name = "Regular.DeveloperBoardSearch") { - fluentPath { - moveTo(17.0f, 1.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) - horizontalLineToRelative(-0.1f) - lineToRelative(-0.1f, 0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.55f, 0.72f) - lineTo(15.5f, 4.0f) - horizontalLineToRelative(-1.75f) - lineTo(13.75f, 1.65f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 13.0f, 1.0f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - lineTo(12.25f, 4.0f) - lineTo(10.5f, 4.0f) - lineTo(10.5f, 1.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - verticalLineToRelative(2.32f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 6.08f, 7.0f) - lineTo(3.65f, 7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - verticalLineToRelative(0.1f) - curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) - lineTo(6.0f, 8.5f) - verticalLineToRelative(1.75f) - lineTo(3.65f, 10.25f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 3.0f, 11.0f) - verticalLineToRelative(0.1f) - curveToRelative(0.03f, 0.16f, 0.1f, 0.3f, 0.2f, 0.4f) - arcToRelative(5.48f, 5.48f, 0.0f, false, true, 4.3f, -0.13f) - lineTo(7.5f, 7.75f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(6.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(11.0f, 16.5f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, -0.2f, 1.5f) - horizontalLineToRelative(1.45f) - verticalLineToRelative(2.35f) - curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - lineTo(13.75f, 18.0f) - horizontalLineToRelative(1.75f) - verticalLineToRelative(2.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - verticalLineToRelative(-2.33f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 19.92f, 15.0f) - horizontalLineToRelative(2.43f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - verticalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) - lineTo(20.0f, 13.5f) - verticalLineToRelative(-1.75f) - horizontalLineToRelative(2.35f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 23.0f, 11.0f) - verticalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) - lineTo(20.0f, 10.25f) - lineTo(20.0f, 8.5f) - horizontalLineToRelative(2.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-2.32f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 17.0f, 4.08f) - lineTo(17.0f, 1.65f) - close() - moveTo(16.0f, 11.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, -6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 6.0f, 0.0f) - close() - moveTo(11.5f, 11.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - moveTo(5.5f, 21.0f) - curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) - lineToRelative(2.62f, 2.61f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.61f, -2.61f) - arcTo(4.5f, 4.5f, 0.0f, true, false, 5.5f, 21.0f) - close() - moveTo(5.5f, 19.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) - close() - } - } - return _developerBoardSearch!! - } - -private var _developerBoardSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DeviceEq.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DeviceEq.kt deleted file mode 100644 index dd287b30..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DeviceEq.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DeviceEq: ImageVector - get() { - if (_deviceEq != null) { - return _deviceEq!! - } - _deviceEq = fluentIcon(name = "Regular.DeviceEq") { - fluentPath { - moveTo(12.0f, 3.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(11.25f, 3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(8.25f, 6.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.75f, 0.65f) - verticalLineToRelative(10.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, 0.1f) - lineTo(7.51f, 6.75f) - curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.74f, -0.75f) - close() - moveTo(15.75f, 6.0f) - curveToRelative(0.37f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) - verticalLineToRelative(10.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, 0.1f) - lineTo(15.0f, 6.75f) - curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.74f, -0.75f) - close() - moveTo(4.75f, 9.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-4.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(19.25f, 9.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.75f, 0.65f) - verticalLineToRelative(4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-4.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _deviceEq!! - } - -private var _deviceEq: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DeviceMeetingRoom.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DeviceMeetingRoom.kt deleted file mode 100644 index 5d7b40ff..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DeviceMeetingRoom.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DeviceMeetingRoom: ImageVector - get() { - if (_deviceMeetingRoom != null) { - return _deviceMeetingRoom!! - } - _deviceMeetingRoom = fluentIcon(name = "Regular.DeviceMeetingRoom") { - fluentPath { - moveTo(7.07f, 3.0f) - curveToRelative(-1.42f, 0.0f, -2.65f, 0.97f, -2.98f, 2.35f) - lineTo(2.1f, 13.62f) - arcTo(3.55f, 3.55f, 0.0f, false, false, 5.55f, 18.0f) - horizontalLineToRelative(12.9f) - curveToRelative(2.29f, 0.0f, 3.98f, -2.15f, 3.44f, -4.38f) - lineTo(19.9f, 5.35f) - arcTo(3.06f, 3.06f, 0.0f, false, false, 16.93f, 3.0f) - horizontalLineTo(7.07f) - close() - moveTo(5.55f, 5.7f) - curveToRelative(0.17f, -0.7f, 0.8f, -1.2f, 1.52f, -1.2f) - horizontalLineToRelative(9.86f) - curveToRelative(0.72f, 0.0f, 1.35f, 0.5f, 1.51f, 1.2f) - lineToRelative(2.0f, 8.27f) - arcToRelative(2.05f, 2.05f, 0.0f, false, true, -2.0f, 2.53f) - horizontalLineTo(5.55f) - arcToRelative(2.05f, 2.05f, 0.0f, false, true, -2.0f, -2.53f) - lineToRelative(2.0f, -8.27f) - close() - moveTo(6.75f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(6.75f) - close() - } - } - return _deviceMeetingRoom!! - } - -private var _deviceMeetingRoom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DeviceMeetingRoomRemote.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DeviceMeetingRoomRemote.kt deleted file mode 100644 index 2b7f90f6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DeviceMeetingRoomRemote.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DeviceMeetingRoomRemote: ImageVector - get() { - if (_deviceMeetingRoomRemote != null) { - return _deviceMeetingRoomRemote!! - } - _deviceMeetingRoomRemote = fluentIcon(name = "Regular.DeviceMeetingRoomRemote") { - fluentPath { - moveTo(4.1f, 5.35f) - arcTo(3.06f, 3.06f, 0.0f, false, true, 7.06f, 3.0f) - horizontalLineToRelative(9.86f) - curveToRelative(1.42f, 0.0f, 2.65f, 0.97f, 2.98f, 2.35f) - lineToRelative(1.99f, 8.27f) - arcTo(3.55f, 3.55f, 0.0f, false, true, 18.45f, 18.0f) - lineTo(10.5f, 18.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(7.95f) - curveToRelative(1.32f, 0.0f, 2.3f, -1.24f, 2.0f, -2.53f) - lineToRelative(-2.0f, -8.27f) - curveToRelative(-0.17f, -0.7f, -0.8f, -1.2f, -1.52f, -1.2f) - lineTo(7.07f, 4.5f) - curveToRelative(-0.72f, 0.0f, -1.35f, 0.5f, -1.52f, 1.2f) - lineToRelative(-0.67f, 2.8f) - lineTo(3.75f, 8.5f) - curveToRelative(-0.14f, 0.0f, -0.29f, 0.01f, -0.42f, 0.03f) - lineToRelative(0.76f, -3.18f) - close() - moveTo(10.49f, 20.5f) - horizontalLineToRelative(6.76f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - lineTo(10.5f, 19.0f) - verticalLineToRelative(1.25f) - lineToRelative(-0.01f, 0.25f) - close() - moveTo(5.75f, 14.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - moveTo(2.0f, 11.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(4.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-4.0f) - curveTo(2.78f, 22.0f, 2.0f, 21.22f, 2.0f, 20.25f) - verticalLineToRelative(-9.0f) - close() - moveTo(3.75f, 11.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(4.0f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-9.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-4.0f) - close() - } - } - return _deviceMeetingRoomRemote!! - } - -private var _deviceMeetingRoomRemote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Diagram.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Diagram.kt deleted file mode 100644 index 1d3cb224..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Diagram.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Diagram: ImageVector - get() { - if (_diagram != null) { - return _diagram!! - } - _diagram = fluentIcon(name = "Regular.Diagram") { - fluentPath { - moveTo(2.0f, 5.25f) - curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) - horizontalLineToRelative(10.5f) - curveTo(17.55f, 2.0f, 19.0f, 3.46f, 19.0f, 5.25f) - verticalLineToRelative(6.03f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -1.22f, -0.28f) - horizontalLineToRelative(-0.28f) - lineTo(17.5f, 5.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(5.25f, 3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(3.37f) - lineTo(7.36f, 20.0f) - lineTo(5.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - lineTo(2.0f, 5.25f) - close() - moveTo(6.75f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-7.5f) - close() - moveTo(7.07f, 12.43f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.68f, -0.43f) - horizontalLineToRelative(10.03f) - curveToRelative(0.52f, 0.0f, 1.01f, 0.23f, 1.34f, 0.62f) - lineToRelative(3.7f, 4.4f) - curveToRelative(0.24f, 0.28f, 0.24f, 0.68f, 0.0f, 0.96f) - lineToRelative(-3.7f, 4.4f) - curveToRelative(-0.33f, 0.4f, -0.82f, 0.62f, -1.34f, 0.62f) - lineTo(7.75f, 23.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.57f, -1.23f) - lineToRelative(3.59f, -4.27f) - lineToRelative(-3.6f, -4.27f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -0.8f) - close() - moveTo(9.37f, 13.5f) - lineTo(12.32f, 17.02f) - curveToRelative(0.24f, 0.28f, 0.24f, 0.68f, 0.0f, 0.96f) - lineTo(9.36f, 21.5f) - horizontalLineToRelative(8.42f) - curveToRelative(0.08f, 0.0f, 0.15f, -0.03f, 0.2f, -0.09f) - lineToRelative(3.29f, -3.91f) - lineToRelative(-3.3f, -3.91f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.19f, -0.09f) - lineTo(9.36f, 13.5f) - close() - moveTo(6.74f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - close() - } - } - return _diagram!! - } - -private var _diagram: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Dialpad.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Dialpad.kt deleted file mode 100644 index 16b79cec..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Dialpad.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Dialpad: ImageVector - get() { - if (_dialpad != null) { - return _dialpad!! - } - _dialpad = fluentIcon(name = "Regular.Dialpad") { - fluentPath { - moveTo(12.0f, 17.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(12.0f, 12.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(17.0f, 12.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(7.0f, 12.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(12.0f, 7.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(17.0f, 7.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(7.0f, 7.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(12.0f, 2.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(17.0f, 2.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(7.0f, 2.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - } - } - return _dialpad!! - } - -private var _dialpad: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DialpadOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DialpadOff.kt deleted file mode 100644 index 5d3f7069..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DialpadOff.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DialpadOff: ImageVector - get() { - if (_dialpadOff != null) { - return _dialpadOff!! - } - _dialpadOff = fluentIcon(name = "Regular.DialpadOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(4.5f, 4.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 1.5f, 1.5f) - lineToRelative(3.5f, 3.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 1.5f, 1.5f) - lineToRelative(7.5f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(18.25f, 14.0f) - curveToRelative(0.0f, 0.3f, -0.1f, 0.57f, -0.28f, 0.79f) - lineToRelative(-1.76f, -1.76f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.04f, 0.97f) - close() - moveTo(13.25f, 9.0f) - curveToRelative(0.0f, 0.3f, -0.1f, 0.57f, -0.28f, 0.79f) - lineToRelative(-1.76f, -1.76f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.04f, 0.97f) - close() - moveTo(8.25f, 4.0f) - curveToRelative(0.0f, 0.3f, -0.1f, 0.58f, -0.28f, 0.79f) - lineTo(6.21f, 3.03f) - curveToRelative(0.22f, -0.17f, 0.5f, -0.28f, 0.8f, -0.28f) - curveToRelative(0.68f, 0.0f, 1.24f, 0.56f, 1.24f, 1.25f) - close() - moveTo(12.0f, 17.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(7.0f, 12.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(17.0f, 7.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(12.0f, 2.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(17.0f, 2.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - } - } - return _dialpadOff!! - } - -private var _dialpadOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Diamond.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Diamond.kt deleted file mode 100644 index b944ce07..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Diamond.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Diamond: ImageVector - get() { - if (_diamond != null) { - return _diamond!! - } - _diamond = fluentIcon(name = "Regular.Diamond") { - fluentPath { - moveTo(2.66f, 13.6f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -3.19f) - lineToRelative(7.75f, -7.75f) - curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.0f) - lineToRelative(7.75f, 7.75f) - curveToRelative(0.88f, 0.88f, 0.88f, 2.3f, 0.0f, 3.18f) - lineToRelative(-7.75f, 7.75f) - curveToRelative(-0.88f, 0.88f, -2.3f, 0.88f, -3.18f, 0.0f) - lineTo(2.66f, 13.6f) - close() - moveTo(3.72f, 11.47f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(7.75f, 7.75f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(7.75f, -7.75f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-7.75f, -7.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-7.75f, 7.75f) - close() - } - } - return _diamond!! - } - -private var _diamond: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Directions.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Directions.kt deleted file mode 100644 index 86d767f7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Directions.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Directions: ImageVector - get() { - if (_directions != null) { - return _directions!! - } - _directions = fluentIcon(name = "Regular.Directions") { - fluentPath { - moveToRelative(14.3f, 2.99f) - lineToRelative(6.72f, 6.71f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, 4.6f) - lineToRelative(-6.72f, 6.72f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -4.6f, 0.0f) - lineTo(2.98f, 14.3f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.6f) - lineTo(9.7f, 3.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 4.6f, 0.0f) - close() - moveTo(10.76f, 4.05f) - lineTo(4.04f, 10.76f) - curveToRelative(-0.68f, 0.69f, -0.68f, 1.8f, 0.0f, 2.48f) - lineToRelative(6.72f, 6.72f) - curveToRelative(0.69f, 0.68f, 1.8f, 0.68f, 2.48f, 0.0f) - lineToRelative(6.71f, -6.72f) - curveToRelative(0.69f, -0.69f, 0.69f, -1.8f, 0.0f, -2.48f) - lineToRelative(-6.71f, -6.71f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.48f, 0.0f) - close() - moveTo(12.46f, 7.31f) - lineTo(12.53f, 7.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.97f) - lineToRelative(0.07f, -0.09f) - lineToRelative(0.72f, -0.72f) - horizontalLineToRelative(-1.5f) - curveToRelative(-0.65f, 0.0f, -1.18f, 0.5f, -1.24f, 1.12f) - lineToRelative(-0.01f, 0.13f) - lineTo(10.5f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-3.35f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.58f, -2.74f) - horizontalLineToRelative(0.17f) - lineToRelative(1.5f, -0.01f) - lineToRelative(-0.72f, -0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.97f) - lineToRelative(0.07f, -0.09f) - lineToRelative(-0.07f, 0.09f) - close() - } - } - return _directions!! - } - -private var _directions: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Dishwasher.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Dishwasher.kt deleted file mode 100644 index 772ee98a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Dishwasher.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Dishwasher: ImageVector - get() { - if (_dishwasher != null) { - return _dishwasher!! - } - _dishwasher = fluentIcon(name = "Regular.Dishwasher") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - lineTo(3.0f, 10.0f) - horizontalLineToRelative(1.5f) - verticalLineToRelative(-0.5f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(8.25f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(7.0f, 19.5f) - verticalLineToRelative(0.02f) - curveToRelative(0.77f, 0.1f, 1.37f, 0.71f, 1.48f, 1.48f) - horizontalLineToRelative(9.27f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(19.5f, 8.0f) - horizontalLineToRelative(-15.0f) - lineTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(19.5f, 8.0f) - close() - moveTo(9.0f, 6.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(12.75f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - close() - moveTo(2.0f, 11.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 6.0f, 16.91f) - verticalLineToRelative(3.59f) - horizontalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.75f) - verticalLineToRelative(-3.59f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 13.75f) - verticalLineToRelative(-2.0f) - close() - } - } - return _dishwasher!! - } - -private var _dishwasher: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DismissCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DismissCircle.kt deleted file mode 100644 index 9f4aaa74..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DismissCircle.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DismissCircle: ImageVector - get() { - if (_dismissCircle != null) { - return _dismissCircle!! - } - _dismissCircle = fluentIcon(name = "Regular.DismissCircle") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) - close() - moveTo(15.45f, 8.4f) - lineTo(15.53f, 8.47f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineTo(13.06f, 12.0f) - lineToRelative(2.47f, 2.47f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineTo(12.0f, 13.06f) - lineToRelative(-2.47f, 2.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineTo(10.94f, 12.0f) - lineTo(8.47f, 9.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - lineTo(12.0f, 10.94f) - lineToRelative(2.47f, -2.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - close() - } - } - return _dismissCircle!! - } - -private var _dismissCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DismissSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DismissSquare.kt deleted file mode 100644 index 431e2d5e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DismissSquare.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DismissSquare: ImageVector - get() { - if (_dismissSquare != null) { - return _dismissSquare!! - } - _dismissSquare = fluentIcon(name = "Regular.DismissSquare") { - fluentPath { - moveTo(8.22f, 8.22f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineTo(12.0f, 10.94f) - lineToRelative(2.72f, -2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineTo(13.06f, 12.0f) - lineToRelative(2.72f, 2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(12.0f, 13.06f) - lineToRelative(-2.72f, 2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineTo(10.94f, 12.0f) - lineTo(8.22f, 9.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineTo(6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - horizontalLineTo(6.25f) - close() - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineTo(6.25f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineTo(6.25f) - close() - } - } - return _dismissSquare!! - } - -private var _dismissSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Diversity.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Diversity.kt deleted file mode 100644 index fd228c5f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Diversity.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Diversity: ImageVector - get() { - if (_diversity != null) { - return _diversity!! - } - _diversity = fluentIcon(name = "Regular.Diversity") { - fluentPath { - moveTo(13.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(2.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(2.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(13.0f, 6.0f) - close() - moveTo(5.55f, 3.9f) - curveToRelative(0.6f, -1.2f, 2.3f, -1.2f, 2.9f, 0.0f) - lineToRelative(2.37f, 4.71f) - arcTo(1.64f, 1.64f, 0.0f, false, true, 9.37f, 11.0f) - lineTo(4.63f, 11.0f) - curveToRelative(-1.22f, 0.0f, -2.0f, -1.3f, -1.45f, -2.39f) - lineTo(5.55f, 3.9f) - close() - moveTo(6.94f, 4.52f) - curveToRelative(-0.01f, 0.0f, -0.03f, 0.01f, -0.05f, 0.05f) - lineTo(4.52f, 9.3f) - arcToRelative(0.14f, 0.14f, 0.0f, false, false, -0.02f, 0.07f) - arcToRelative(0.16f, 0.16f, 0.0f, false, false, 0.07f, 0.13f) - arcToRelative(0.1f, 0.1f, 0.0f, false, false, 0.06f, 0.01f) - horizontalLineToRelative(4.74f) - arcToRelative(0.1f, 0.1f, 0.0f, false, false, 0.06f, -0.01f) - lineToRelative(0.05f, -0.05f) - arcToRelative(0.16f, 0.16f, 0.0f, false, false, 0.02f, -0.08f) - curveToRelative(0.0f, -0.01f, 0.0f, -0.04f, -0.02f, -0.07f) - lineTo(7.11f, 4.57f) - curveToRelative(-0.02f, -0.04f, -0.04f, -0.05f, -0.05f, -0.05f) - arcTo(0.13f, 0.13f, 0.0f, false, false, 7.0f, 4.5f) - curveToRelative(-0.03f, 0.0f, -0.05f, 0.0f, -0.06f, 0.02f) - close() - moveTo(11.0f, 17.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, -8.0f, 0.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 8.0f, 0.0f) - close() - moveTo(9.5f, 17.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -3.66f, -2.22f) - lineToRelative(3.38f, 3.38f) - curveToRelative(0.18f, -0.35f, 0.28f, -0.74f, 0.28f, -1.16f) - close() - moveTo(7.0f, 19.5f) - curveToRelative(0.42f, 0.0f, 0.81f, -0.1f, 1.16f, -0.28f) - lineToRelative(-3.38f, -3.38f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 7.0f, 19.5f) - close() - moveTo(16.52f, 13.12f) - curveToRelative(0.3f, -0.16f, 0.66f, -0.16f, 0.96f, 0.0f) - lineToRelative(2.97f, 1.53f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.55f, 0.89f) - verticalLineToRelative(2.92f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.55f, 0.89f) - lineToRelative(-2.97f, 1.53f) - curveToRelative(-0.3f, 0.16f, -0.66f, 0.16f, -0.96f, 0.0f) - lineToRelative(-2.97f, -1.53f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.55f, -0.89f) - verticalLineToRelative(-2.92f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.55f, -0.89f) - lineToRelative(2.97f, -1.53f) - close() - moveTo(14.5f, 15.85f) - verticalLineToRelative(2.3f) - lineToRelative(2.5f, 1.3f) - lineToRelative(2.5f, -1.3f) - verticalLineToRelative(-2.3f) - lineToRelative(-2.5f, -1.3f) - lineToRelative(-2.5f, 1.3f) - close() - } - } - return _diversity!! - } - -private var _diversity: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DividerShort.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DividerShort.kt deleted file mode 100644 index 68ae321e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DividerShort.kt +++ /dev/null @@ -1,28 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DividerShort: ImageVector - get() { - if (_dividerShort != null) { - return _dividerShort!! - } - _dividerShort = fluentIcon(name = "Regular.DividerShort") { - fluentPath { - moveTo(11.25f, 4.75f) - verticalLineToRelative(14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineTo(4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - close() - } - } - return _dividerShort!! - } - -private var _dividerShort: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DividerTall.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DividerTall.kt deleted file mode 100644 index 5ef5c23a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DividerTall.kt +++ /dev/null @@ -1,28 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DividerTall: ImageVector - get() { - if (_dividerTall != null) { - return _dividerTall!! - } - _dividerTall = fluentIcon(name = "Regular.DividerTall") { - fluentPath { - moveTo(11.25f, 2.75f) - verticalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineTo(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - close() - } - } - return _dividerTall!! - } - -private var _dividerTall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Dock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Dock.kt deleted file mode 100644 index 005339c1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Dock.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Dock: ImageVector - get() { - if (_dock != null) { - return _dock!! - } - _dock = fluentIcon(name = "Regular.Dock") { - fluentPath { - moveTo(4.8f, 10.0f) - horizontalLineToRelative(4.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.49f) - lineTo(4.8f, 11.49f) - curveToRelative(-0.68f, 0.0f, -1.2f, 0.46f, -1.27f, 1.0f) - verticalLineToRelative(0.12f) - lineToRelative(-0.03f, 4.78f) - curveToRelative(0.0f, 0.56f, 0.49f, 1.04f, 1.14f, 1.1f) - lineTo(19.23f, 18.49f) - curveToRelative(0.67f, 0.0f, 1.2f, -0.44f, 1.26f, -1.0f) - lineToRelative(0.01f, -0.1f) - lineToRelative(0.02f, -4.78f) - curveToRelative(0.0f, -0.56f, -0.49f, -1.05f, -1.14f, -1.1f) - lineToRelative(-0.13f, -0.01f) - horizontalLineToRelative(-4.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(4.8f) - arcToRelative(2.7f, 2.7f, 0.0f, false, true, 2.77f, 2.44f) - verticalLineToRelative(0.17f) - lineTo(22.0f, 17.39f) - curveToRelative(0.0f, 1.4f, -1.16f, 2.52f, -2.6f, 2.6f) - lineTo(4.77f, 19.99f) - arcToRelative(2.7f, 2.7f, 0.0f, false, true, -2.76f, -2.44f) - lineTo(2.0f, 17.38f) - lineToRelative(0.02f, -4.77f) - curveToRelative(0.0f, -1.4f, 1.16f, -2.52f, 2.6f, -2.6f) - lineToRelative(0.17f, -0.01f) - horizontalLineToRelative(4.7f) - horizontalLineToRelative(-4.7f) - close() - moveTo(12.45f, 3.15f) - lineTo(12.53f, 3.22f) - lineTo(16.46f, 7.14f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.14f) - lineToRelative(-0.09f, -0.07f) - lineToRelative(-2.65f, -2.66f) - verticalLineToRelative(9.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(11.24f, 5.57f) - lineTo(8.61f, 8.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.09f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.09f) - lineToRelative(3.93f, -3.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - close() - } - } - return _dock!! - } - -private var _dock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DockRow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DockRow.kt deleted file mode 100644 index 79b57c70..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DockRow.kt +++ /dev/null @@ -1,142 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DockRow: ImageVector - get() { - if (_dockRow != null) { - return _dockRow!! - } - _dockRow = fluentIcon(name = "Regular.DockRow") { - fluentPath { - moveTo(20.25f, 12.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.74f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.96f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.5f) - close() - moveTo(6.25f, 12.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.74f) - verticalLineToRelative(2.5f) - curveTo(8.0f, 17.21f, 7.22f, 18.0f, 6.25f, 18.0f) - horizontalLineToRelative(-2.5f) - curveTo(2.78f, 18.0f, 2.0f, 17.21f, 2.0f, 16.24f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.96f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.5f) - close() - moveTo(13.25f, 12.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.74f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.5f) - curveTo(9.78f, 18.0f, 9.0f, 17.21f, 9.0f, 16.24f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.96f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.5f) - close() - moveTo(20.25f, 13.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.24f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(2.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(6.25f, 13.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.24f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(2.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(13.25f, 13.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.24f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(2.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(13.25f, 5.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.74f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.5f) - curveTo(9.78f, 11.0f, 9.0f, 10.21f, 9.0f, 9.24f) - verticalLineToRelative(-2.5f) - curveTo(9.0f, 5.78f, 9.78f, 5.0f, 10.75f, 5.0f) - horizontalLineToRelative(2.5f) - close() - moveTo(20.25f, 5.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.74f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.96f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.5f) - close() - moveTo(6.25f, 5.0f) - curveTo(7.22f, 5.0f, 8.0f, 5.77f, 8.0f, 6.73f) - verticalLineToRelative(2.5f) - curveTo(8.0f, 10.21f, 7.22f, 11.0f, 6.25f, 11.0f) - horizontalLineToRelative(-2.5f) - curveTo(2.78f, 11.0f, 2.0f, 10.21f, 2.0f, 9.24f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) - horizontalLineToRelative(2.65f) - close() - moveTo(13.25f, 6.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.24f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(2.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(20.25f, 6.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.24f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(2.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(6.25f, 6.5f) - lineTo(3.69f, 6.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.19f, 0.24f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(2.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - } - } - return _dockRow!! - } - -private var _dockRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Doctor.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Doctor.kt deleted file mode 100644 index 417c9cff..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Doctor.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Doctor: ImageVector - get() { - if (_doctor != null) { - return _doctor!! - } - _doctor = fluentIcon(name = "Regular.Doctor") { - fluentPath { - moveTo(9.75f, 4.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(4.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(4.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.0f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-4.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-4.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-4.5f) - close() - moveTo(8.0f, 4.75f) - curveTo(8.0f, 3.78f, 8.78f, 3.0f, 9.75f, 3.0f) - horizontalLineToRelative(4.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineTo(8.0f) - horizontalLineToRelative(3.25f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineTo(16.0f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-4.5f) - curveTo(8.78f, 21.0f, 8.0f, 20.22f, 8.0f, 19.25f) - verticalLineTo(16.0f) - horizontalLineTo(4.75f) - curveTo(3.78f, 16.0f, 3.0f, 15.22f, 3.0f, 14.25f) - verticalLineToRelative(-4.5f) - curveTo(3.0f, 8.78f, 3.78f, 8.0f, 4.75f, 8.0f) - horizontalLineTo(8.0f) - verticalLineTo(4.75f) - close() - } - } - return _doctor!! - } - -private var _doctor: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Document100.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Document100.kt deleted file mode 100644 index 616df213..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Document100.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Document100: ImageVector - get() { - if (_document100 != null) { - return _document100!! - } - _document100 = fluentIcon(name = "Regular.Document100") { - fluentPath { - moveTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.17f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.42f, 0.59f) - lineTo(19.4f, 8.4f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 20.0f, 9.83f) - lineTo(20.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-2.05f) - curveToRelative(0.42f, -0.41f, 0.73f, -0.92f, 0.9f, -1.5f) - lineTo(18.0f, 20.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(18.5f, 10.0f) - lineTo(14.0f, 10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(12.0f, 3.5f) - lineTo(6.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(10.63f) - curveToRelative(-0.24f, 0.16f, -0.45f, 0.35f, -0.64f, 0.57f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.86f, -0.97f) - lineTo(4.0f, 4.0f) - close() - moveTo(13.5f, 4.62f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(3.38f) - lineTo(13.5f, 4.62f) - close() - moveTo(4.0f, 15.94f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.74f, -0.95f) - curveToRelative(-0.31f, -0.09f, -0.8f, -0.06f, -1.11f, 0.37f) - curveToRelative(-0.32f, 0.44f, -0.76f, 0.94f, -1.28f, 1.24f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.76f, 1.3f) - curveToRelative(0.32f, -0.2f, 0.61f, -0.43f, 0.87f, -0.67f) - verticalLineToRelative(4.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-5.31f) - close() - moveTo(5.0f, 17.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - verticalLineToRelative(2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(7.5f, 16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - close() - moveTo(13.5f, 15.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.5f, 2.5f) - verticalLineToRelative(2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 5.0f, 0.0f) - verticalLineToRelative(-2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.5f, -2.5f) - close() - moveTo(12.5f, 17.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-2.0f) - close() - } - } - return _document100!! - } - -private var _document100: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentAdd.kt deleted file mode 100644 index b8a592eb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentAdd.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentAdd: ImageVector - get() { - if (_documentAdd != null) { - return _documentAdd!! - } - _documentAdd = fluentIcon(name = "Regular.DocumentAdd") { - fluentPath { - moveTo(18.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-5.73f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, 1.5f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(13.6f, 2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.5f) - curveToRelative(0.47f, -0.2f, 0.98f, -0.34f, 1.5f, -0.42f) - lineTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - close() - moveTo(13.5f, 4.62f) - lineTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(7.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(6.0f, 18.0f) - lineTo(3.5f, 18.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(6.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(7.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(7.0f, 18.0f) - close() - } - } - return _documentAdd!! - } - -private var _documentAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentArrowLeft.kt deleted file mode 100644 index c8f0f5d1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentArrowLeft.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentArrowLeft: ImageVector - get() { - if (_documentArrowLeft != null) { - return _documentArrowLeft!! - } - _documentArrowLeft = fluentIcon(name = "Regular.DocumentArrowLeft") { - fluentPath { - moveTo(18.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-5.73f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, 1.5f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(13.6f, 2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.5f) - curveToRelative(0.47f, -0.2f, 0.98f, -0.34f, 1.5f, -0.42f) - lineTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - close() - moveTo(13.5f, 4.62f) - lineTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(9.5f, 18.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - lineTo(4.7f, 17.0f) - lineToRelative(1.65f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineTo(4.71f, 18.0f) - lineTo(9.5f, 18.0f) - close() - } - } - return _documentArrowLeft!! - } - -private var _documentArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentArrowRight.kt deleted file mode 100644 index da4e501c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentArrowRight.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentArrowRight: ImageVector - get() { - if (_documentArrowRight != null) { - return _documentArrowRight!! - } - _documentArrowRight = fluentIcon(name = "Regular.DocumentArrowRight") { - fluentPath { - moveTo(18.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-5.73f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, 1.5f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(13.6f, 2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.5f) - curveToRelative(0.47f, -0.2f, 0.98f, -0.34f, 1.5f, -0.42f) - lineTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - close() - moveTo(13.5f, 4.62f) - lineTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - close() - } - fluentPath { - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(3.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(8.29f, 17.0f) - horizontalLineTo(3.5f) - close() - } - } - return _documentArrowRight!! - } - -private var _documentArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentBorder.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentBorder.kt deleted file mode 100644 index a3f8e79e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentBorder.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentBorder: ImageVector - get() { - if (_documentBorder != null) { - return _documentBorder!! - } - _documentBorder = fluentIcon(name = "Regular.DocumentBorder") { - fluentPath { - moveTo(7.25f, 2.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 4.0f, 5.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.55f, 5.46f, 22.0f, 7.25f, 22.0f) - horizontalLineToRelative(9.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(20.0f, 5.25f) - curveTo(20.0f, 3.45f, 18.54f, 2.0f, 16.75f, 2.0f) - horizontalLineToRelative(-9.5f) - close() - moveTo(5.5f, 5.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(9.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-9.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(5.5f, 5.25f) - close() - moveTo(8.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - lineTo(17.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(8.0f, 5.0f) - close() - moveTo(8.5f, 17.5f) - verticalLineToRelative(-11.0f) - horizontalLineToRelative(7.0f) - verticalLineToRelative(11.0f) - horizontalLineToRelative(-7.0f) - close() - } - } - return _documentBorder!! - } - -private var _documentBorder: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentBorderPrint.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentBorderPrint.kt deleted file mode 100644 index c76dc7d4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentBorderPrint.kt +++ /dev/null @@ -1,99 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentBorderPrint: ImageVector - get() { - if (_documentBorderPrint != null) { - return _documentBorderPrint!! - } - _documentBorderPrint = fluentIcon(name = "Regular.DocumentBorderPrint") { - fluentPath { - moveTo(7.25f, 2.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 4.0f, 5.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.55f, 5.46f, 22.0f, 7.25f, 22.0f) - horizontalLineToRelative(5.85f) - arcToRelative(2.74f, 2.74f, 0.0f, false, true, -0.09f, -0.5f) - lineTo(13.0f, 21.5f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.73f, -1.0f) - lineTo(7.25f, 20.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(5.5f, 5.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(9.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(18.5f, 11.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.26f, 0.0f, 0.51f, 0.04f, 0.75f, 0.1f) - lineTo(20.0f, 5.25f) - curveTo(20.0f, 3.45f, 18.54f, 2.0f, 16.75f, 2.0f) - horizontalLineToRelative(-9.5f) - close() - moveTo(17.0f, 6.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(-1.25f) - lineToRelative(-0.25f, 0.01f) - lineTo(15.5f, 6.5f) - horizontalLineToRelative(-7.0f) - verticalLineToRelative(11.0f) - lineTo(11.0f, 17.5f) - lineTo(11.0f, 19.0f) - lineTo(8.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(7.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - close() - moveTo(14.0f, 13.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(3.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(0.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(12.0f, 16.0f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(0.5f) - verticalLineToRelative(-0.75f) - close() - moveTo(19.5f, 13.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-0.75f) - close() - moveTo(15.5f, 19.25f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-2.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - close() - } - } - return _documentBorderPrint!! - } - -private var _documentBorderPrint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentBriefcase.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentBriefcase.kt deleted file mode 100644 index 93c054ee..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentBriefcase.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentBriefcase: ImageVector - get() { - if (_documentBriefcase != null) { - return _documentBriefcase!! - } - _documentBriefcase = fluentIcon(name = "Regular.DocumentBriefcase") { - fluentPath { - moveTo(18.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 0.17f, -0.02f, 0.34f, -0.05f, 0.5f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(13.6f, 2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.1f) - curveToRelative(0.24f, -0.06f, 0.49f, -0.1f, 0.75f, -0.1f) - horizontalLineToRelative(0.75f) - lineTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - close() - moveTo(13.5f, 4.62f) - lineTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - close() - moveTo(3.0f, 15.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(8.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(10.0f, 15.0f) - verticalLineToRelative(-1.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.5f) - curveTo(3.78f, 12.0f, 3.0f, 12.78f, 3.0f, 13.75f) - lineTo(3.0f, 15.0f) - close() - moveTo(4.5f, 13.75f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - lineTo(8.5f, 15.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-1.25f) - close() - } - } - return _documentBriefcase!! - } - -private var _documentBriefcase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentBulletList.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentBulletList.kt deleted file mode 100644 index b788d281..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentBulletList.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentBulletList: ImageVector - get() { - if (_documentBulletList != null) { - return _documentBulletList!! - } - _documentBulletList = fluentIcon(name = "Regular.DocumentBulletList") { - fluentPath { - moveTo(7.0f, 12.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(7.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(7.0f, 18.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(10.75f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.5f) - close() - moveTo(10.0f, 15.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(10.75f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.5f) - close() - moveTo(19.41f, 8.41f) - lineTo(13.6f, 2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(16.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - close() - moveTo(18.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - lineTo(6.0f, 20.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - close() - moveTo(13.5f, 4.62f) - lineTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - close() - } - } - return _documentBulletList!! - } - -private var _documentBulletList: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentBulletListArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentBulletListArrowLeft.kt deleted file mode 100644 index ced8f468..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentBulletListArrowLeft.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentBulletListArrowLeft: ImageVector - get() { - if (_documentBulletListArrowLeft != null) { - return _documentBulletListArrowLeft!! - } - _documentBulletListArrowLeft = fluentIcon(name = "Regular.DocumentBulletListArrowLeft") { - fluentPath { - moveTo(10.75f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.72f, 0.54f) - curveToRelative(0.42f, 0.28f, 0.81f, 0.6f, 1.16f, 0.96f) - horizontalLineToRelative(5.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.5f) - close() - moveTo(5.5f, 4.0f) - verticalLineToRelative(7.08f) - curveToRelative(-0.52f, 0.08f, -1.03f, 0.22f, -1.5f, 0.42f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.17f) - arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.08f, 0.0f) - lineToRelative(0.06f, 0.01f) - curveToRelative(0.22f, 0.02f, 0.43f, 0.06f, 0.63f, 0.14f) - lineToRelative(0.16f, 0.09f) - curveToRelative(0.02f, 0.0f, 0.04f, 0.02f, 0.05f, 0.03f) - lineToRelative(0.05f, 0.02f) - lineToRelative(0.08f, 0.05f) - arcToRelative(2.07f, 2.07f, 0.0f, false, true, 0.3f, 0.25f) - lineToRelative(5.83f, 5.82f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 20.0f, 9.83f) - lineTo(20.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-6.81f) - curveToRelative(0.43f, -0.44f, 0.8f, -0.95f, 1.08f, -1.5f) - lineTo(18.0f, 20.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(18.5f, 10.0f) - lineTo(14.0f, 10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(12.0f, 3.5f) - lineTo(6.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - close() - moveTo(16.25f, 19.0f) - horizontalLineToRelative(-3.42f) - curveToRelative(0.11f, -0.48f, 0.17f, -0.98f, 0.17f, -1.5f) - horizontalLineToRelative(3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(16.25f, 16.0f) - horizontalLineToRelative(-3.42f) - arcToRelative(6.46f, 6.46f, 0.0f, false, false, -0.56f, -1.5f) - horizontalLineToRelative(3.98f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(13.5f, 4.62f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(3.38f) - lineTo(13.5f, 4.62f) - close() - moveTo(6.5f, 23.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, 11.0f) - close() - moveTo(9.5f, 18.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - lineTo(4.7f, 17.0f) - lineToRelative(1.65f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineTo(4.71f, 18.0f) - lineTo(9.5f, 18.0f) - close() - } - } - return _documentBulletListArrowLeft!! - } - -private var _documentBulletListArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentBulletListClock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentBulletListClock.kt deleted file mode 100644 index c856a1db..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentBulletListClock.kt +++ /dev/null @@ -1,101 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentBulletListClock: ImageVector - get() { - if (_documentBulletListClock != null) { - return _documentBulletListClock!! - } - _documentBulletListClock = fluentIcon(name = "Regular.DocumentBulletListClock") { - fluentPath { - moveTo(19.41f, 8.41f) - lineTo(13.6f, 2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(16.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(6.81f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, -1.5f) - lineTo(6.0f, 20.51f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(1.08f) - curveToRelative(0.52f, 0.08f, 1.03f, 0.22f, 1.5f, 0.42f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - close() - moveTo(13.5f, 4.62f) - lineToRelative(3.88f, 3.88f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - close() - moveTo(10.75f, 17.5f) - lineTo(11.0f, 17.5f) - curveToRelative(0.0f, 0.52f, 0.06f, 1.02f, 0.17f, 1.5f) - horizontalLineToRelative(-0.42f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(11.17f, 16.0f) - curveToRelative(0.13f, -0.53f, 0.32f, -1.03f, 0.56f, -1.5f) - horizontalLineToRelative(-0.98f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.42f) - close() - moveTo(12.81f, 13.0f) - arcTo(6.51f, 6.51f, 0.0f, false, true, 15.0f, 11.5f) - horizontalLineToRelative(-4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.06f) - close() - moveTo(7.75f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(7.0f, 15.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(7.0f, 18.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(17.22f, 17.92f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.22f, -0.5f) - lineTo(17.0f, 13.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-2.94f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.34f, -0.08f) - close() - } - } - return _documentBulletListClock!! - } - -private var _documentBulletListClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentBulletListCube.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentBulletListCube.kt deleted file mode 100644 index 22718977..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentBulletListCube.kt +++ /dev/null @@ -1,106 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentBulletListCube: ImageVector - get() { - if (_documentBulletListCube != null) { - return _documentBulletListCube!! - } - _documentBulletListCube = fluentIcon(name = "Regular.DocumentBulletListCube") { - fluentPath { - moveToRelative(10.52f, 12.96f) - lineToRelative(-0.2f, -0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.43f, -1.36f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.23f, -0.04f) - close() - moveTo(12.0f, 16.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.26f, -0.04f, -0.51f, -0.12f, -0.75f) - horizontalLineToRelative(4.37f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(12.0f, 16.0f) - close() - moveTo(12.0f, 19.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(12.0f, 19.0f) - close() - moveTo(5.5f, 11.05f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -0.62f, 0.21f) - lineTo(4.0f, 11.7f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.17f) - arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.08f, 0.0f) - lineToRelative(0.06f, 0.01f) - curveToRelative(0.22f, 0.02f, 0.43f, 0.06f, 0.63f, 0.14f) - lineToRelative(0.16f, 0.09f) - curveToRelative(0.02f, 0.0f, 0.04f, 0.02f, 0.05f, 0.03f) - lineToRelative(0.05f, 0.02f) - lineToRelative(0.08f, 0.05f) - arcToRelative(2.07f, 2.07f, 0.0f, false, true, 0.3f, 0.25f) - lineToRelative(5.83f, 5.82f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 20.0f, 9.83f) - lineTo(20.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-7.4f) - lineToRelative(0.02f, -0.01f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 1.27f, -1.49f) - lineTo(18.0f, 20.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(18.5f, 10.0f) - lineTo(14.0f, 10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(12.0f, 3.5f) - lineTo(6.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(7.05f) - close() - moveTo(17.38f, 8.5f) - lineTo(13.5f, 4.62f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(3.38f) - close() - moveTo(10.18f, 13.9f) - lineTo(6.68f, 12.16f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -1.35f, 0.0f) - lineToRelative(-3.5f, 1.75f) - curveToRelative(-0.5f, 0.25f, -0.83f, 0.77f, -0.83f, 1.34f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.57f, 0.32f, 1.09f, 0.83f, 1.34f) - lineToRelative(3.5f, 1.75f) - curveToRelative(0.42f, 0.22f, 0.92f, 0.22f, 1.34f, 0.0f) - lineToRelative(3.5f, -1.75f) - curveToRelative(0.5f, -0.25f, 0.83f, -0.77f, 0.83f, -1.34f) - verticalLineToRelative(-4.5f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -0.83f, -1.34f) - close() - moveTo(2.55f, 15.28f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.67f, -0.23f) - lineTo(6.0f, 16.45f) - lineToRelative(2.78f, -1.4f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.44f, 0.9f) - lineTo(6.5f, 17.3f) - verticalLineToRelative(3.19f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - verticalLineToRelative(-3.2f) - lineToRelative(-2.72f, -1.35f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.23f, -0.67f) - close() - } - } - return _documentBulletListCube!! - } - -private var _documentBulletListCube: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentBulletListMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentBulletListMultiple.kt deleted file mode 100644 index 84f64d6e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentBulletListMultiple.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentBulletListMultiple: ImageVector - get() { - if (_documentBulletListMultiple != null) { - return _documentBulletListMultiple!! - } - _documentBulletListMultiple = fluentIcon(name = "Regular.DocumentBulletListMultiple") { - fluentPath { - moveTo(7.75f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(7.0f, 15.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(10.0f, 12.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(10.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.05f) - close() - moveTo(6.25f, 2.0f) - curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) - verticalLineToRelative(13.0f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(9.0f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(17.5f, 8.87f) - curveToRelative(0.0f, -0.6f, -0.24f, -1.17f, -0.66f, -1.6f) - lineToRelative(-4.62f, -4.61f) - curveToRelative(-0.42f, -0.42f, -1.0f, -0.66f, -1.59f, -0.66f) - lineTo(6.25f, 2.0f) - close() - moveTo(5.5f, 4.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.25f) - verticalLineToRelative(3.25f) - curveTo(10.5f, 7.99f, 11.51f, 9.0f, 12.75f, 9.0f) - lineTo(16.0f, 9.0f) - verticalLineToRelative(8.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-13.0f) - close() - moveTo(12.0f, 6.75f) - lineTo(12.0f, 4.56f) - lineToRelative(2.94f, 2.94f) - horizontalLineToRelative(-2.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(8.75f, 22.0f) - curveToRelative(-0.98f, 0.0f, -1.81f, -0.63f, -2.12f, -1.5f) - horizontalLineToRelative(8.62f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(18.5f, 8.94f) - lineToRelative(0.84f, 0.84f) - curveToRelative(0.42f, 0.42f, 0.66f, 1.0f, 0.66f, 1.59f) - verticalLineToRelative(5.88f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 15.25f, 22.0f) - horizontalLineToRelative(-6.5f) - close() - } - } - return _documentBulletListMultiple!! - } - -private var _documentBulletListMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentBulletListOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentBulletListOff.kt deleted file mode 100644 index 1c5b0205..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentBulletListOff.kt +++ /dev/null @@ -1,102 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentBulletListOff: ImageVector - get() { - if (_documentBulletListOff != null) { - return _documentBulletListOff!! - } - _documentBulletListOff = fluentIcon(name = "Regular.DocumentBulletListOff") { - fluentPath { - moveTo(7.0f, 12.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(7.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(7.0f, 18.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(4.0f, 5.06f) - lineTo(2.22f, 3.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(18.5f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineToRelative(-0.92f, -0.92f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 18.0f, 22.0f) - lineTo(6.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(4.0f, 5.06f) - close() - moveTo(18.5f, 19.56f) - lineTo(16.97f, 18.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.72f, 0.97f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(5.5f) - curveToRelative(0.08f, 0.0f, 0.15f, 0.01f, 0.22f, 0.03f) - lineTo(14.94f, 16.0f) - horizontalLineToRelative(-4.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.69f) - lineToRelative(-1.5f, -1.5f) - horizontalLineToRelative(-1.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.26f, -1.45f) - lineTo(5.5f, 6.56f) - lineTo(5.5f, 20.0f) - curveToRelative(0.0f, 0.27f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(12.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-0.44f) - close() - moveTo(12.0f, 8.0f) - curveToRelative(0.0f, 0.5f, 0.18f, 0.94f, 0.47f, 1.3f) - lineToRelative(0.24f, 0.23f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 14.0f, 10.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(5.32f) - lineToRelative(1.5f, 1.5f) - verticalLineToRelative(-7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.4f) - lineTo(13.6f, 2.58f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 1.99f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.7f, 0.12f) - lineTo(6.69f, 3.5f) - lineTo(12.0f, 3.5f) - lineTo(12.0f, 8.0f) - close() - moveTo(13.5f, 4.62f) - lineTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - close() - moveTo(16.25f, 11.5f) - horizontalLineToRelative(-1.57f) - lineToRelative(1.5f, 1.5f) - horizontalLineToRelative(0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - } - } - return _documentBulletListOff!! - } - -private var _documentBulletListOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentCatchUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentCatchUp.kt deleted file mode 100644 index a24e7004..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentCatchUp.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentCatchUp: ImageVector - get() { - if (_documentCatchUp != null) { - return _documentCatchUp!! - } - _documentCatchUp = fluentIcon(name = "Regular.DocumentCatchUp") { - fluentPath { - moveTo(18.0f, 20.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(18.5f, 10.0f) - lineTo(14.0f, 10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(12.0f, 3.5f) - lineTo(6.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(5.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.17f) - arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.08f, 0.0f) - lineToRelative(0.06f, 0.01f) - curveToRelative(0.22f, 0.02f, 0.43f, 0.06f, 0.63f, 0.14f) - lineToRelative(0.16f, 0.09f) - curveToRelative(0.02f, 0.0f, 0.04f, 0.02f, 0.05f, 0.03f) - lineToRelative(0.05f, 0.02f) - lineToRelative(0.08f, 0.05f) - arcToRelative(2.07f, 2.07f, 0.0f, false, true, 0.3f, 0.25f) - lineToRelative(5.83f, 5.82f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 20.0f, 9.83f) - lineTo(20.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - lineTo(6.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - verticalLineToRelative(-3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(5.5f, 20.0f) - curveToRelative(0.0f, 0.27f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(12.0f) - close() - moveTo(17.38f, 8.5f) - lineTo(13.5f, 4.62f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(3.38f) - close() - moveTo(2.75f, 13.0f) - horizontalLineToRelative(2.5f) - lineToRelative(1.56f, -3.55f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.33f, -0.1f) - verticalLineToRelative(0.02f) - lineToRelative(0.05f, 0.1f) - lineToRelative(2.42f, 6.03f) - lineToRelative(1.42f, -2.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.55f, -0.4f) - horizontalLineToRelative(2.11f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.12f, 1.5f) - lineTo(13.14f, 14.5f) - lineToRelative(-1.98f, 3.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.3f, 0.03f) - lineToRelative(-0.06f, -0.1f) - lineToRelative(-2.33f, -5.84f) - lineToRelative(-1.04f, 2.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.56f, 0.44f) - horizontalLineToRelative(-0.01f) - lineToRelative(-0.11f, 0.01f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.11f, -1.5f) - horizontalLineToRelative(0.11f) - close() - } - } - return _documentCatchUp!! - } - -private var _documentCatchUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentCheckmark.kt deleted file mode 100644 index 68731ab9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentCheckmark.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentCheckmark: ImageVector - get() { - if (_documentCheckmark != null) { - return _documentCheckmark!! - } - _documentCheckmark = fluentIcon(name = "Regular.DocumentCheckmark") { - fluentPath { - moveTo(18.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-5.73f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, 1.5f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(13.6f, 2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.5f) - curveToRelative(0.47f, -0.2f, 0.98f, -0.34f, 1.5f, -0.42f) - lineTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - close() - moveTo(13.5f, 4.62f) - lineTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - close() - } - fluentPath { - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(9.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineTo(5.5f, 18.79f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _documentCheckmark!! - } - -private var _documentCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentChevronDouble.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentChevronDouble.kt deleted file mode 100644 index 0fa5db5f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentChevronDouble.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentChevronDouble: ImageVector - get() { - if (_documentChevronDouble != null) { - return _documentChevronDouble!! - } - _documentChevronDouble = fluentIcon(name = "Regular.DocumentChevronDouble") { - fluentPath { - moveTo(18.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-5.73f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, 1.5f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(13.6f, 2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.5f) - curveToRelative(0.47f, -0.2f, 0.98f, -0.34f, 1.5f, -0.42f) - lineTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - close() - moveTo(13.5f, 4.62f) - lineTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - close() - moveTo(6.5f, 23.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, 11.0f) - close() - moveTo(5.35f, 15.35f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineTo(3.21f, 17.5f) - lineToRelative(2.14f, -2.15f) - close() - moveTo(7.65f, 14.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(2.14f, 2.15f) - lineToRelative(-2.14f, 2.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - close() - } - } - return _documentChevronDouble!! - } - -private var _documentChevronDouble: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentCopy.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentCopy.kt deleted file mode 100644 index c5f9e66d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentCopy.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentCopy: ImageVector - get() { - if (_documentCopy != null) { - return _documentCopy!! - } - _documentCopy = fluentIcon(name = "Regular.DocumentCopy") { - fluentPath { - moveTo(5.5f, 4.63f) - lineTo(5.5f, 17.25f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(8.62f) - curveToRelative(-0.31f, 0.88f, -1.15f, 1.5f, -2.13f, 1.5f) - lineTo(8.75f, 22.0f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 4.0f, 17.25f) - lineTo(4.0f, 6.75f) - curveToRelative(0.0f, -0.98f, 0.63f, -1.81f, 1.5f, -2.12f) - close() - moveTo(13.13f, 2.0f) - curveToRelative(0.6f, 0.0f, 1.17f, 0.24f, 1.59f, 0.66f) - lineToRelative(4.62f, 4.62f) - curveToRelative(0.42f, 0.42f, 0.66f, 1.0f, 0.66f, 1.6f) - verticalLineToRelative(8.37f) - curveToRelative(0.0f, 1.25f, -1.01f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-9.0f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-13.0f) - curveTo(6.5f, 3.01f, 7.51f, 2.0f, 8.75f, 2.0f) - horizontalLineToRelative(4.38f) - close() - moveTo(13.0f, 3.5f) - lineTo(8.75f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(13.0f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(9.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) - lineTo(18.5f, 9.0f) - horizontalLineToRelative(-3.25f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) - lineTo(13.0f, 6.76f) - lineTo(13.0f, 3.5f) - close() - moveTo(14.5f, 4.56f) - verticalLineToRelative(2.2f) - curveToRelative(0.0f, 0.37f, 0.28f, 0.69f, 0.65f, 0.74f) - horizontalLineToRelative(2.29f) - lineTo(14.5f, 4.56f) - close() - } - } - return _documentCopy!! - } - -private var _documentCopy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentCss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentCss.kt deleted file mode 100644 index d8888e05..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentCss.kt +++ /dev/null @@ -1,137 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentCss: ImageVector - get() { - if (_documentCss != null) { - return _documentCss!! - } - _documentCss = fluentIcon(name = "Regular.DocumentCss") { - fluentPath { - moveTo(18.0f, 20.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(18.5f, 10.0f) - lineTo(14.0f, 10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(12.0f, 3.5f) - lineTo(6.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(10.63f) - curveToRelative(-0.44f, -0.3f, -0.95f, -0.52f, -1.5f, -0.6f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.17f) - arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.08f, 0.0f) - lineToRelative(0.06f, 0.01f) - curveToRelative(0.22f, 0.02f, 0.43f, 0.06f, 0.63f, 0.14f) - lineToRelative(0.16f, 0.09f) - curveToRelative(0.02f, 0.0f, 0.04f, 0.02f, 0.05f, 0.03f) - lineToRelative(0.05f, 0.02f) - lineToRelative(0.08f, 0.05f) - arcToRelative(2.07f, 2.07f, 0.0f, false, true, 0.3f, 0.25f) - lineToRelative(5.83f, 5.82f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 20.0f, 9.83f) - lineTo(20.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-1.74f) - curveToRelative(0.37f, -0.41f, 0.62f, -0.93f, 0.7f, -1.5f) - lineTo(18.0f, 20.5f) - close() - moveTo(17.38f, 8.5f) - lineTo(13.5f, 4.62f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(3.38f) - close() - moveTo(12.05f, 20.5f) - curveToRelative(0.2f, 0.86f, 0.98f, 1.5f, 1.9f, 1.5f) - horizontalLineToRelative(0.1f) - arcTo(1.95f, 1.95f, 0.0f, false, false, 16.0f, 20.05f) - verticalLineToRelative(-0.23f) - curveToRelative(0.0f, -0.62f, -0.32f, -1.19f, -0.85f, -1.5f) - lineToRelative(-1.53f, -0.92f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.12f, -0.22f) - verticalLineToRelative(-0.23f) - curveToRelative(0.0f, -0.25f, 0.2f, -0.45f, 0.45f, -0.45f) - horizontalLineToRelative(0.1f) - curveToRelative(0.25f, 0.0f, 0.45f, 0.2f, 0.45f, 0.45f) - lineTo(14.5f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.05f) - curveToRelative(0.0f, -1.08f, -0.87f, -1.95f, -1.95f, -1.95f) - horizontalLineToRelative(-0.1f) - curveToRelative(-1.08f, 0.0f, -1.95f, 0.87f, -1.95f, 1.95f) - verticalLineToRelative(0.23f) - curveToRelative(0.0f, 0.62f, 0.32f, 1.19f, 0.85f, 1.5f) - lineToRelative(1.53f, 0.92f) - curveToRelative(0.07f, 0.05f, 0.12f, 0.13f, 0.12f, 0.22f) - verticalLineToRelative(0.23f) - curveToRelative(0.0f, 0.25f, -0.2f, 0.45f, -0.45f, 0.45f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.45f, 0.45f, 0.0f, false, true, -0.45f, -0.45f) - lineTo(13.5f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(0.05f) - curveToRelative(0.0f, 0.15f, 0.02f, 0.3f, 0.05f, 0.45f) - close() - moveTo(5.95f, 22.0f) - lineToRelative(0.05f, -0.05f) - lineTo(6.0f, 22.0f) - horizontalLineToRelative(-0.05f) - close() - moveTo(7.25f, 21.0f) - arcToRelative(1.94f, 1.94f, 0.0f, false, true, -0.25f, -0.95f) - lineTo(7.0f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(0.05f) - curveToRelative(0.0f, 0.25f, 0.2f, 0.45f, 0.45f, 0.45f) - horizontalLineToRelative(0.1f) - curveToRelative(0.25f, 0.0f, 0.45f, -0.2f, 0.45f, -0.45f) - verticalLineToRelative(-0.23f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.12f, -0.22f) - lineToRelative(-1.53f, -0.92f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.85f, -1.5f) - verticalLineToRelative(-0.23f) - curveTo(7.0f, 15.87f, 7.87f, 15.0f, 8.95f, 15.0f) - horizontalLineToRelative(0.1f) - curveToRelative(1.08f, 0.0f, 1.95f, 0.87f, 1.95f, 1.95f) - lineTo(11.0f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.05f) - curveToRelative(0.0f, -0.25f, -0.2f, -0.45f, -0.45f, -0.45f) - horizontalLineToRelative(-0.1f) - curveToRelative(-0.25f, 0.0f, -0.45f, 0.2f, -0.45f, 0.45f) - verticalLineToRelative(0.23f) - curveToRelative(0.0f, 0.1f, 0.05f, 0.17f, 0.12f, 0.22f) - lineToRelative(1.53f, 0.92f) - curveToRelative(0.53f, 0.31f, 0.85f, 0.88f, 0.85f, 1.5f) - verticalLineToRelative(0.23f) - arcTo(1.96f, 1.96f, 0.0f, false, true, 9.05f, 22.0f) - horizontalLineToRelative(-0.1f) - curveToRelative(-0.73f, 0.0f, -1.37f, -0.4f, -1.7f, -1.0f) - close() - moveTo(5.81f, 20.46f) - curveToRelative(0.12f, -0.3f, 0.19f, -0.62f, 0.19f, -0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, 0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, -0.75f) - arcTo(2.49f, 2.49f, 0.0f, false, false, 3.5f, 15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 1.0f, 17.5f) - verticalLineToRelative(2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 4.8f, 0.96f) - close() - } - } - return _documentCss!! - } - -private var _documentCss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentData.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentData.kt deleted file mode 100644 index c34baf8d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentData.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentData: ImageVector - get() { - if (_documentData != null) { - return _documentData!! - } - _documentData = fluentIcon(name = "Regular.DocumentData") { - fluentPath { - moveTo(9.5f, 16.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.5f) - close() - moveTo(12.0f, 12.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-5.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(16.0f, 14.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-3.5f) - close() - moveTo(13.59f, 2.59f) - lineTo(19.4f, 8.4f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 20.0f, 9.83f) - lineTo(20.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - lineTo(6.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.17f) - arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.08f, 0.0f) - lineToRelative(0.06f, 0.01f) - curveToRelative(0.22f, 0.02f, 0.43f, 0.06f, 0.63f, 0.14f) - lineToRelative(0.16f, 0.09f) - curveToRelative(0.02f, 0.0f, 0.04f, 0.02f, 0.05f, 0.03f) - lineToRelative(0.05f, 0.02f) - lineToRelative(0.08f, 0.05f) - arcToRelative(2.07f, 2.07f, 0.0f, false, true, 0.3f, 0.25f) - close() - moveTo(18.0f, 20.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(18.5f, 10.0f) - lineTo(14.0f, 10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(12.0f, 3.5f) - lineTo(6.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(16.0f) - curveToRelative(0.0f, 0.27f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(12.0f) - close() - moveTo(17.38f, 8.5f) - lineTo(13.5f, 4.62f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(3.38f) - close() - } - } - return _documentData!! - } - -private var _documentData: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentDataLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentDataLink.kt deleted file mode 100644 index d9bec2d7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentDataLink.kt +++ /dev/null @@ -1,101 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentDataLink: ImageVector - get() { - if (_documentDataLink != null) { - return _documentDataLink!! - } - _documentDataLink = fluentIcon(name = "Regular.DocumentDataLink") { - fluentPath { - moveTo(12.0f, 12.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(4.98f) - arcToRelative(4.76f, 4.76f, 0.0f, false, false, -1.5f, -2.16f) - verticalLineToRelative(-2.82f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(18.0f, 20.5f) - horizontalLineToRelative(-5.17f) - curveToRelative(-0.14f, 0.55f, -0.39f, 1.05f, -0.7f, 1.5f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(13.6f, 2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(10.56f) - curveToRelative(0.24f, -0.04f, 0.5f, -0.06f, 0.75f, -0.06f) - horizontalLineToRelative(0.75f) - lineTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - close() - moveTo(16.0f, 14.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-3.5f) - close() - moveTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - lineToRelative(3.88f, 3.88f) - close() - moveTo(12.0f, 19.25f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.75f, -3.75f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - lineTo(8.25f, 23.0f) - horizontalLineToRelative(0.2f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 12.0f, 19.24f) - close() - moveTo(5.5f, 16.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-0.2f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - lineTo(4.6f, 21.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(9.0f, 19.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - } - } - return _documentDataLink!! - } - -private var _documentDataLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentDatabase.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentDatabase.kt deleted file mode 100644 index 7b85cfbf..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentDatabase.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentDatabase: ImageVector - get() { - if (_documentDatabase != null) { - return _documentDatabase!! - } - _documentDatabase = fluentIcon(name = "Regular.DocumentDatabase") { - fluentPath { - moveTo(18.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-6.0f) - curveToRelative(0.0f, 0.58f, -0.2f, 1.08f, -0.53f, 1.5f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(13.6f, 2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.19f) - curveToRelative(0.48f, -0.1f, 0.98f, -0.16f, 1.5f, -0.18f) - lineTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - close() - moveTo(13.5f, 4.62f) - lineTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - close() - moveTo(10.4f, 21.68f) - curveTo(9.57f, 22.47f, 7.9f, 23.0f, 6.0f, 23.0f) - curveToRelative(-2.05f, 0.0f, -3.81f, -0.62f, -4.58f, -1.5f) - curveToRelative(-0.27f, -0.3f, -0.42f, -0.64f, -0.42f, -1.0f) - verticalLineToRelative(-4.0f) - curveToRelative(0.31f, 0.26f, 0.66f, 0.49f, 1.02f, 0.66f) - arcTo(9.1f, 9.1f, 0.0f, false, false, 6.0f, 18.0f) - arcToRelative(10.76f, 10.76f, 0.0f, false, false, 3.0f, -0.44f) - curveToRelative(0.35f, -0.11f, 0.68f, -0.25f, 0.98f, -0.4f) - curveToRelative(0.36f, -0.17f, 0.71f, -0.4f, 1.02f, -0.67f) - verticalLineToRelative(4.01f) - curveToRelative(0.0f, 0.43f, -0.21f, 0.83f, -0.6f, 1.18f) - close() - moveTo(5.5f, 12.01f) - arcToRelative(10.17f, 10.17f, 0.0f, false, true, 2.0f, 0.1f) - curveToRelative(0.55f, 0.09f, 1.05f, 0.22f, 1.5f, 0.39f) - curveToRelative(1.21f, 0.46f, 2.0f, 1.18f, 2.0f, 2.0f) - curveToRelative(0.0f, 0.82f, -0.79f, 1.54f, -2.0f, 2.0f) - curveToRelative(-0.45f, 0.17f, -0.95f, 0.3f, -1.5f, 0.39f) - arcTo(9.7f, 9.7f, 0.0f, false, true, 6.0f, 17.0f) - curveToRelative(-2.76f, 0.0f, -5.0f, -1.12f, -5.0f, -2.5f) - curveToRelative(0.0f, -1.03f, 1.23f, -1.9f, 3.0f, -2.3f) - curveToRelative(0.47f, -0.1f, 0.97f, -0.16f, 1.5f, -0.19f) - close() - } - } - return _documentDatabase!! - } - -private var _documentDatabase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentDismiss.kt deleted file mode 100644 index a38d2262..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentDismiss.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentDismiss: ImageVector - get() { - if (_documentDismiss != null) { - return _documentDismiss!! - } - _documentDismiss = fluentIcon(name = "Regular.DocumentDismiss") { - fluentPath { - moveTo(6.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(12.13f, 2.0f) - curveToRelative(0.6f, 0.0f, 1.17f, 0.24f, 1.59f, 0.66f) - lineToRelative(2.81f, 2.8f) - lineToRelative(2.8f, 2.82f) - curveToRelative(0.43f, 0.42f, 0.67f, 1.0f, 0.67f, 1.6f) - verticalLineToRelative(9.87f) - curveToRelative(0.0f, 1.24f, -1.01f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-6.56f) - curveToRelative(0.43f, -0.44f, 0.79f, -0.95f, 1.08f, -1.5f) - horizontalLineToRelative(5.48f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(18.5f, 10.0f) - horizontalLineToRelative(-4.25f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) - lineTo(12.0f, 7.76f) - lineTo(12.0f, 3.5f) - lineTo(6.25f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.83f) - curveToRelative(-0.52f, 0.08f, -1.03f, 0.22f, -1.5f, 0.42f) - lineTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(5.88f) - close() - moveTo(4.09f, 14.97f) - lineToRelative(-0.07f, 0.05f) - lineToRelative(-0.05f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.05f, 0.07f) - lineTo(5.8f, 17.5f) - lineToRelative(-1.76f, 1.77f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.06f, 0.06f) - lineToRelative(0.07f, 0.06f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) - lineToRelative(0.07f, -0.06f) - lineToRelative(1.77f, -1.76f) - lineToRelative(1.77f, 1.77f) - lineToRelative(0.07f, 0.05f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.57f, 0.0f) - lineToRelative(0.07f, -0.05f) - lineToRelative(0.05f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) - lineToRelative(-0.05f, -0.07f) - lineTo(7.2f, 17.5f) - lineToRelative(1.77f, -1.77f) - lineToRelative(0.06f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) - lineToRelative(-0.06f, -0.07f) - lineToRelative(-0.07f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) - lineToRelative(-0.07f, 0.05f) - lineTo(6.5f, 16.8f) - lineToRelative(-1.77f, -1.77f) - lineToRelative(-0.07f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) - close() - moveTo(13.49f, 4.56f) - lineTo(13.5f, 7.76f) - curveToRelative(0.0f, 0.37f, 0.28f, 0.69f, 0.65f, 0.74f) - lineTo(17.45f, 8.5f) - lineTo(13.5f, 4.56f) - close() - } - } - return _documentDismiss!! - } - -private var _documentDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentEdit.kt deleted file mode 100644 index 241b4d23..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentEdit.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentEdit: ImageVector - get() { - if (_documentEdit != null) { - return _documentEdit!! - } - _documentEdit = fluentIcon(name = "Regular.DocumentEdit") { - fluentPath { - moveTo(6.25f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.78f) - curveToRelative(-0.1f, 0.55f, 0.0f, 1.07f, 0.27f, 1.5f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(6.09f) - curveToRelative(0.46f, 0.0f, 0.9f, 0.18f, 1.23f, 0.51f) - lineToRelative(5.92f, 5.92f) - curveToRelative(0.33f, 0.32f, 0.51f, 0.77f, 0.51f, 1.23f) - lineTo(20.0f, 10.0f) - horizontalLineToRelative(-6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(12.0f, 3.5f) - lineTo(6.25f, 3.5f) - close() - moveTo(13.5f, 4.56f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(3.44f) - lineTo(13.5f, 4.56f) - close() - moveTo(19.71f, 11.0f) - arcToRelative(2.28f, 2.28f, 0.0f, false, true, 1.62f, 3.9f) - lineToRelative(-5.9f, 5.9f) - curveToRelative(-0.35f, 0.35f, -0.78f, 0.6f, -1.25f, 0.71f) - lineToRelative(-1.83f, 0.46f) - curveToRelative(-0.8f, 0.2f, -1.52f, -0.52f, -1.32f, -1.32f) - lineToRelative(0.46f, -1.83f) - curveToRelative(0.12f, -0.47f, 0.36f, -0.9f, 0.7f, -1.25f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.28f, 2.28f, 0.0f, false, true, 1.62f, -0.67f) - close() - } - } - return _documentEdit!! - } - -private var _documentEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentEndnote.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentEndnote.kt deleted file mode 100644 index 98f050e2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentEndnote.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentEndnote: ImageVector - get() { - if (_documentEndnote != null) { - return _documentEndnote!! - } - _documentEndnote = fluentIcon(name = "Regular.DocumentEndnote") { - fluentPath { - moveTo(5.5f, 4.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - lineTo(12.0f, 3.5f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(9.75f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(13.0f, 20.5f) - lineTo(13.0f, 22.0f) - horizontalLineToRelative(4.75f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 9.66f) - curveToRelative(0.0f, -0.46f, -0.18f, -0.9f, -0.51f, -1.23f) - lineTo(13.57f, 2.5f) - arcTo(1.75f, 1.75f, 0.0f, false, false, 12.34f, 2.0f) - lineTo(6.25f, 2.0f) - curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) - lineTo(4.0f, 12.0f) - horizontalLineToRelative(1.5f) - lineTo(5.5f, 4.25f) - close() - moveTo(13.5f, 8.0f) - lineTo(13.5f, 4.56f) - lineToRelative(3.94f, 3.94f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - moveTo(4.5f, 13.75f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(2.5f, 14.5f) - verticalLineToRelative(7.0f) - horizontalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(2.5f, 23.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 1.0f, 21.5f) - verticalLineToRelative(-7.0f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(1.25f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(9.25f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.25f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(7.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - lineTo(9.25f, 23.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.25f) - verticalLineToRelative(-7.0f) - lineTo(9.25f, 14.5f) - close() - moveTo(6.5f, 16.75f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(7.25f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(6.5f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - } - } - return _documentEndnote!! - } - -private var _documentEndnote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentError.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentError.kt deleted file mode 100644 index 8627ac24..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentError.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentError: ImageVector - get() { - if (_documentError != null) { - return _documentError!! - } - _documentError = fluentIcon(name = "Regular.DocumentError") { - fluentPath { - moveTo(18.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-5.73f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, 1.5f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(13.6f, 2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.5f) - curveToRelative(0.47f, -0.2f, 0.98f, -0.34f, 1.5f, -0.42f) - lineTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - close() - moveTo(13.5f, 4.62f) - lineTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(6.5f, 14.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(6.5f, 21.13f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.25f) - close() - } - } - return _documentError!! - } - -private var _documentError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentFit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentFit.kt deleted file mode 100644 index efe7d082..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentFit.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentFit: ImageVector - get() { - if (_documentFit != null) { - return _documentFit!! - } - _documentFit = fluentIcon(name = "Regular.DocumentFit") { - fluentPath { - moveTo(6.25f, 2.0f) - curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) - verticalLineToRelative(15.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 4.25f) - curveTo(20.0f, 3.01f, 19.0f, 2.0f, 17.75f, 2.0f) - lineTo(6.25f, 2.0f) - close() - moveTo(5.5f, 4.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(6.25f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(5.5f, 4.25f) - close() - moveTo(9.0f, 6.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(7.0f, 7.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(9.0f, 6.5f) - close() - moveTo(9.0f, 17.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - verticalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - lineTo(7.0f, 17.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(9.0f, 17.5f) - close() - moveTo(15.5f, 7.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - horizontalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(15.0f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - verticalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(15.5f, 7.0f) - close() - moveTo(15.0f, 17.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(17.0f, 17.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(15.0f, 17.5f) - close() - } - } - return _documentFit!! - } - -private var _documentFit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentFlowchart.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentFlowchart.kt deleted file mode 100644 index ce17bdd5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentFlowchart.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentFlowchart: ImageVector - get() { - if (_documentFlowchart != null) { - return _documentFlowchart!! - } - _documentFlowchart = fluentIcon(name = "Regular.DocumentFlowchart") { - fluentPath { - moveTo(6.5f, 8.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-0.5f) - verticalLineToRelative(2.69f) - lineToRelative(1.56f, 1.56f) - horizontalLineToRelative(2.69f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-0.5f) - horizontalLineToRelative(-2.69f) - lineToRelative(-1.78f, 1.78f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(1.78f, -1.78f) - lineTo(7.75f, 11.5f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-2.5f) - close() - moveTo(19.41f, 8.41f) - lineTo(13.6f, 2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(16.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - close() - moveTo(18.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - lineTo(6.0f, 20.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - close() - moveTo(13.5f, 4.62f) - lineTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - close() - } - } - return _documentFlowchart!! - } - -private var _documentFlowchart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentFolder.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentFolder.kt deleted file mode 100644 index f92919dd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentFolder.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentFolder: ImageVector - get() { - if (_documentFolder != null) { - return _documentFolder!! - } - _documentFolder = fluentIcon(name = "Regular.DocumentFolder") { - fluentPath { - moveTo(18.5f, 4.63f) - lineTo(18.5f, 15.0f) - horizontalLineToRelative(-1.0f) - lineTo(17.5f, 4.25f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-9.0f) - curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) - verticalLineToRelative(4.13f) - curveToRelative(-0.6f, 0.4f, -1.0f, 1.09f, -1.0f, 1.87f) - verticalLineToRelative(8.5f) - curveTo(3.0f, 20.55f, 4.46f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.78f, -0.4f, -1.47f, -1.0f, -1.87f) - lineTo(20.0f, 6.75f) - curveToRelative(0.0f, -0.98f, -0.63f, -1.81f, -1.5f, -2.12f) - close() - moveTo(5.5f, 8.0f) - lineTo(5.5f, 4.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(9.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(16.0f, 15.0f) - horizontalLineToRelative(-0.1f) - curveToRelative(-0.2f, 0.0f, -0.4f, -0.09f, -0.55f, -0.24f) - lineToRelative(-5.6f, -6.04f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 8.1f, 8.0f) - lineTo(5.5f, 8.0f) - close() - moveTo(4.5f, 10.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - lineTo(8.1f, 9.5f) - curveToRelative(0.2f, 0.0f, 0.4f, 0.09f, 0.55f, 0.24f) - lineToRelative(5.6f, 6.04f) - curveToRelative(0.43f, 0.46f, 1.03f, 0.72f, 1.65f, 0.72f) - horizontalLineToRelative(2.85f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(6.25f, 20.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-8.5f) - close() - } - } - return _documentFolder!! - } - -private var _documentFolder: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentFooter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentFooter.kt deleted file mode 100644 index ac5b1d7f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentFooter.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentFooter: ImageVector - get() { - if (_documentFooter != null) { - return _documentFooter!! - } - _documentFooter = fluentIcon(name = "Regular.DocumentFooter") { - fluentPath { - moveTo(8.5f, 16.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - horizontalLineToRelative(7.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - horizontalLineToRelative(-7.0f) - close() - moveTo(20.0f, 4.1f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 17.74f, 2.0f) - horizontalLineTo(6.09f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 4.0f, 4.25f) - verticalLineToRelative(15.5f) - lineToRelative(0.01f, 0.15f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - lineToRelative(0.15f, -0.01f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.1f, -2.25f) - verticalLineTo(4.1f) - close() - moveTo(6.24f, 3.5f) - horizontalLineToRelative(11.6f) - curveToRelative(0.36f, 0.05f, 0.65f, 0.37f, 0.65f, 0.75f) - verticalLineToRelative(15.5f) - lineToRelative(-0.01f, 0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 0.64f) - horizontalLineTo(6.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) - verticalLineTo(4.14f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.64f) - close() - } - } - return _documentFooter!! - } - -private var _documentFooter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentFooterDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentFooterDismiss.kt deleted file mode 100644 index 61d3465f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentFooterDismiss.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentFooterDismiss: ImageVector - get() { - if (_documentFooterDismiss != null) { - return _documentFooterDismiss!! - } - _documentFooterDismiss = fluentIcon(name = "Regular.DocumentFooterDismiss") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 4.15f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, -0.7f) - lineTo(18.21f, 6.5f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.7f, -0.7f) - lineTo(17.5f, 5.79f) - lineToRelative(-1.65f, -1.64f) - close() - moveTo(18.5f, 19.75f) - verticalLineToRelative(-6.83f) - arcToRelative(6.46f, 6.46f, 0.0f, false, false, 1.5f, -0.42f) - verticalLineToRelative(7.24f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.25f) - lineTo(6.25f, 21.99f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.25f, -2.1f) - lineTo(4.0f, 4.25f) - curveTo(4.0f, 3.06f, 4.92f, 2.09f, 6.1f, 2.0f) - horizontalLineToRelative(6.71f) - curveToRelative(-0.42f, 0.44f, -0.79f, 0.94f, -1.07f, 1.5f) - horizontalLineToRelative(-5.5f) - curveToRelative(-0.37f, 0.0f, -0.69f, 0.28f, -0.74f, 0.64f) - verticalLineToRelative(15.6f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.64f, 0.75f) - horizontalLineToRelative(11.6f) - curveToRelative(0.39f, 0.0f, 0.7f, -0.28f, 0.75f, -0.64f) - verticalLineToRelative(-0.1f) - close() - moveTo(8.5f, 16.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - horizontalLineToRelative(7.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - horizontalLineToRelative(-7.0f) - close() - } - } - return _documentFooterDismiss!! - } - -private var _documentFooterDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentHeader.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentHeader.kt deleted file mode 100644 index 8b124d58..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentHeader.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentHeader: ImageVector - get() { - if (_documentHeader != null) { - return _documentHeader!! - } - _documentHeader = fluentIcon(name = "Regular.DocumentHeader") { - fluentPath { - moveTo(8.5f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - horizontalLineToRelative(7.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - horizontalLineToRelative(-7.0f) - close() - moveTo(20.0f, 4.1f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 17.74f, 2.0f) - horizontalLineTo(6.1f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 4.0f, 4.26f) - verticalLineTo(19.9f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 6.26f, 22.0f) - horizontalLineTo(17.9f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.1f, -2.25f) - verticalLineTo(4.1f) - close() - moveTo(6.24f, 3.5f) - horizontalLineToRelative(11.6f) - curveToRelative(0.37f, 0.06f, 0.65f, 0.37f, 0.65f, 0.75f) - verticalLineToRelative(15.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, 0.65f) - horizontalLineTo(6.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) - verticalLineTo(4.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) - close() - } - } - return _documentHeader!! - } - -private var _documentHeader: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentHeaderArrowDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentHeaderArrowDown.kt deleted file mode 100644 index 77d3d981..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentHeaderArrowDown.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentHeaderArrowDown: ImageVector - get() { - if (_documentHeaderArrowDown != null) { - return _documentHeaderArrowDown!! - } - _documentHeaderArrowDown = fluentIcon(name = "Regular.DocumentHeaderArrowDown") { - fluentPath { - moveTo(8.5f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - horizontalLineToRelative(7.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - horizontalLineToRelative(-7.0f) - close() - moveTo(20.0f, 4.1f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 17.74f, 2.0f) - lineTo(6.1f, 2.0f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 4.0f, 4.26f) - lineTo(4.0f, 19.9f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 6.26f, 22.0f) - horizontalLineToRelative(6.56f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, -1.5f) - lineTo(6.15f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) - lineTo(5.5f, 4.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) - horizontalLineToRelative(11.6f) - curveToRelative(0.37f, 0.06f, 0.65f, 0.37f, 0.65f, 0.75f) - verticalLineToRelative(6.83f) - curveToRelative(0.52f, 0.08f, 1.03f, 0.22f, 1.5f, 0.42f) - lineTo(20.0f, 4.1f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(18.0f, 14.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(4.8f) - lineToRelative(-1.65f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.5f, 2.5f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineTo(18.0f, 19.29f) - lineTo(18.0f, 14.5f) - close() - } - } - return _documentHeaderArrowDown!! - } - -private var _documentHeaderArrowDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentHeaderDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentHeaderDismiss.kt deleted file mode 100644 index 82391612..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentHeaderDismiss.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentHeaderDismiss: ImageVector - get() { - if (_documentHeaderDismiss != null) { - return _documentHeaderDismiss!! - } - _documentHeaderDismiss = fluentIcon(name = "Regular.DocumentHeaderDismiss") { - fluentPath { - moveTo(17.75f, 2.0f) - curveToRelative(1.19f, 0.0f, 2.16f, 0.92f, 2.24f, 2.1f) - verticalLineToRelative(7.4f) - curveToRelative(-0.47f, -0.2f, -0.97f, -0.34f, -1.5f, -0.42f) - lineTo(18.49f, 4.25f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.64f, -0.74f) - lineToRelative(-0.1f, -0.01f) - lineTo(6.25f, 3.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.37f, 0.28f, 0.69f, 0.65f, 0.74f) - horizontalLineToRelative(5.58f) - curveToRelative(0.29f, 0.56f, 0.65f, 1.06f, 1.08f, 1.5f) - lineTo(6.25f, 21.99f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) - lineTo(4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveToRelative(0.0f, -1.2f, 0.92f, -2.17f, 2.1f, -2.24f) - lineTo(6.25f, 2.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(8.5f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - horizontalLineToRelative(7.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - horizontalLineToRelative(-7.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-1.64f, -1.65f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.65f, 1.64f) - lineToRelative(-1.65f, -1.64f) - close() - } - } - return _documentHeaderDismiss!! - } - -private var _documentHeaderDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentHeaderFooter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentHeaderFooter.kt deleted file mode 100644 index 9e688ce3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentHeaderFooter.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentHeaderFooter: ImageVector - get() { - if (_documentHeaderFooter != null) { - return _documentHeaderFooter!! - } - _documentHeaderFooter = fluentIcon(name = "Regular.DocumentHeaderFooter") { - fluentPath { - moveTo(7.0f, 6.5f) - curveTo(7.0f, 5.68f, 7.69f, 5.0f, 8.5f, 5.0f) - horizontalLineToRelative(7.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) - horizontalLineToRelative(-7.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 7.0f, 6.5f) - close() - moveTo(7.0f, 17.5f) - curveToRelative(0.0f, -0.82f, 0.68f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(7.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - horizontalLineToRelative(-7.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 7.0f, 17.5f) - close() - moveTo(20.0f, 4.1f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 17.74f, 2.0f) - lineTo(6.1f, 2.0f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 4.0f, 4.26f) - lineTo(4.0f, 19.9f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 6.26f, 22.0f) - lineTo(17.9f, 22.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.1f, -2.25f) - lineTo(20.0f, 4.1f) - close() - moveTo(6.24f, 3.5f) - horizontalLineToRelative(11.6f) - curveToRelative(0.37f, 0.06f, 0.65f, 0.37f, 0.65f, 0.75f) - verticalLineToRelative(15.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, 0.65f) - lineTo(6.15f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) - lineTo(5.5f, 4.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) - close() - } - } - return _documentHeaderFooter!! - } - -private var _documentHeaderFooter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentHeart.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentHeart.kt deleted file mode 100644 index 93dbbd8e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentHeart.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentHeart: ImageVector - get() { - if (_documentHeart != null) { - return _documentHeart!! - } - _documentHeart = fluentIcon(name = "Regular.DocumentHeart") { - fluentPath { - moveTo(18.0f, 20.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(18.5f, 10.0f) - lineTo(14.0f, 10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(12.0f, 3.5f) - lineTo(6.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(7.31f) - curveToRelative(-0.5f, -0.1f, -1.0f, -0.13f, -1.5f, -0.08f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.17f) - arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.08f, 0.0f) - lineToRelative(0.06f, 0.01f) - curveToRelative(0.22f, 0.02f, 0.43f, 0.06f, 0.63f, 0.14f) - lineToRelative(0.16f, 0.09f) - curveToRelative(0.02f, 0.0f, 0.04f, 0.02f, 0.05f, 0.03f) - lineToRelative(0.05f, 0.02f) - lineToRelative(0.08f, 0.05f) - curveToRelative(0.08f, 0.05f, 0.15f, 0.11f, 0.22f, 0.18f) - lineToRelative(0.04f, 0.03f) - lineToRelative(0.05f, 0.04f) - lineTo(19.4f, 8.4f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 20.0f, 9.83f) - lineTo(20.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - lineTo(9.49f, 22.0f) - lineToRelative(1.5f, -1.5f) - lineTo(18.0f, 20.5f) - close() - moveTo(17.38f, 8.5f) - lineTo(13.5f, 4.62f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(3.38f) - close() - moveTo(6.48f, 22.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 0.0f) - lineToRelative(4.41f, -4.4f) - arcToRelative(3.47f, 3.47f, 0.0f, true, false, -4.9f, -4.91f) - lineToRelative(-0.04f, 0.04f) - lineToRelative(-0.03f, -0.04f) - arcToRelative(3.47f, 3.47f, 0.0f, true, false, -4.9f, 4.9f) - lineToRelative(4.4f, 4.41f) - close() - } - } - return _documentHeart!! - } - -private var _documentHeart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentHeartPulse.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentHeartPulse.kt deleted file mode 100644 index 5db07e00..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentHeartPulse.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentHeartPulse: ImageVector - get() { - if (_documentHeartPulse != null) { - return _documentHeartPulse!! - } - _documentHeartPulse = fluentIcon(name = "Regular.DocumentHeartPulse") { - fluentPath { - moveTo(5.5f, 4.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - lineTo(12.0f, 3.5f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(9.75f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-6.52f) - lineTo(9.73f, 22.0f) - horizontalLineToRelative(8.02f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 9.66f) - curveToRelative(0.0f, -0.46f, -0.18f, -0.9f, -0.51f, -1.23f) - lineTo(13.57f, 2.5f) - arcTo(1.75f, 1.75f, 0.0f, false, false, 12.34f, 2.0f) - lineTo(6.25f, 2.0f) - curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) - verticalLineToRelative(6.95f) - curveToRelative(0.5f, -0.07f, 1.0f, -0.05f, 1.5f, 0.05f) - verticalLineToRelative(-7.0f) - close() - moveTo(17.44f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.56f) - lineToRelative(3.94f, 3.94f) - close() - moveTo(3.12f, 14.28f) - arcToRelative(2.1f, 2.1f, 0.0f, false, true, 2.98f, 0.0f) - lineToRelative(0.4f, 0.4f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(0.37f, -0.37f) - arcTo(2.1f, 2.1f, 0.0f, false, true, 11.5f, 16.0f) - horizontalLineToRelative(1.5f) - arcToRelative(3.6f, 3.6f, 0.0f, false, false, -5.98f, -2.9f) - arcTo(3.6f, 3.6f, 0.0f, false, false, 1.01f, 16.0f) - horizontalLineToRelative(1.5f) - arcToRelative(2.1f, 2.1f, 0.0f, false, true, 0.61f, -1.72f) - close() - moveTo(5.37f, 19.5f) - lineTo(3.25f, 19.5f) - lineToRelative(3.25f, 3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 0.0f) - lineToRelative(3.26f, -3.25f) - lineTo(8.69f, 19.5f) - lineToRelative(-1.66f, 1.66f) - lineToRelative(-1.66f, -1.66f) - close() - moveTo(5.62f, 15.33f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.3f, 0.08f) - lineTo(3.55f, 17.0f) - lineTo(1.75f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(4.0f, 18.5f) - curveToRelative(0.28f, 0.0f, 0.54f, -0.16f, 0.67f, -0.41f) - lineToRelative(0.42f, -0.85f) - lineToRelative(1.29f, 1.93f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.18f, 0.08f) - lineToRelative(1.46f, -1.65f) - lineToRelative(0.69f, 0.72f) - curveToRelative(0.15f, 0.15f, 0.35f, 0.23f, 0.56f, 0.23f) - lineToRelative(2.0f, -0.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.04f, -1.5f) - lineToRelative(-1.67f, 0.04f) - lineToRelative(-1.02f, -1.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.1f, 0.02f) - lineToRelative(-1.35f, 1.53f) - lineToRelative(-1.47f, -2.2f) - close() - } - } - return _documentHeartPulse!! - } - -private var _documentHeartPulse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentJavascript.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentJavascript.kt deleted file mode 100644 index f89625bb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentJavascript.kt +++ /dev/null @@ -1,98 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentJavascript: ImageVector - get() { - if (_documentJavascript != null) { - return _documentJavascript!! - } - _documentJavascript = fluentIcon(name = "Regular.DocumentJavascript") { - fluentPath { - moveTo(18.0f, 20.5f) - horizontalLineToRelative(-7.03f) - arcToRelative(2.94f, 2.94f, 0.0f, false, true, -0.7f, 1.5f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(13.6f, 2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(10.02f) - arcToRelative(1.76f, 1.76f, 0.0f, false, true, 1.5f, 0.5f) - lineTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - close() - moveTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - lineToRelative(3.88f, 3.88f) - close() - moveTo(4.25f, 15.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(5.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(2.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-4.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(7.95f, 15.0f) - curveTo(6.87f, 15.0f, 6.0f, 15.87f, 6.0f, 16.95f) - verticalLineToRelative(0.23f) - curveToRelative(0.0f, 0.62f, 0.32f, 1.19f, 0.85f, 1.5f) - lineToRelative(1.53f, 0.92f) - curveToRelative(0.07f, 0.05f, 0.12f, 0.13f, 0.12f, 0.22f) - verticalLineToRelative(0.23f) - curveToRelative(0.0f, 0.25f, -0.2f, 0.45f, -0.45f, 0.45f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.45f, 0.45f, 0.0f, false, true, -0.45f, -0.45f) - lineTo(7.5f, 20.0f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 6.0f, 20.0f) - verticalLineToRelative(0.05f) - curveTo(6.0f, 21.13f, 6.87f, 22.0f, 7.95f, 22.0f) - horizontalLineToRelative(0.1f) - curveToRelative(1.08f, 0.0f, 1.95f, -0.87f, 1.95f, -1.95f) - verticalLineToRelative(-0.23f) - curveToRelative(0.0f, -0.62f, -0.32f, -1.19f, -0.85f, -1.5f) - lineToRelative(-1.53f, -0.92f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.12f, -0.22f) - verticalLineToRelative(-0.23f) - curveToRelative(0.0f, -0.25f, 0.2f, -0.45f, 0.45f, -0.45f) - horizontalLineToRelative(0.1f) - curveToRelative(0.25f, 0.0f, 0.45f, 0.2f, 0.45f, 0.45f) - lineTo(8.5f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.05f) - curveTo(10.0f, 15.87f, 9.13f, 15.0f, 8.05f, 15.0f) - horizontalLineToRelative(-0.1f) - close() - } - } - return _documentJavascript!! - } - -private var _documentJavascript: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentLandscape.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentLandscape.kt deleted file mode 100644 index 2410bf27..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentLandscape.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentLandscape: ImageVector - get() { - if (_documentLandscape != null) { - return _documentLandscape!! - } - _documentLandscape = fluentIcon(name = "Regular.DocumentLandscape") { - fluentPath { - moveTo(4.0f, 5.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(12.0f) - curveToRelative(0.0f, 0.28f, 0.23f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(16.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-6.0f) - lineTo(16.0f, 12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(14.0f, 5.5f) - lineTo(4.0f, 5.5f) - close() - moveTo(19.38f, 10.5f) - lineTo(15.5f, 6.62f) - lineTo(15.5f, 10.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(3.38f) - close() - moveTo(15.58f, 4.59f) - lineTo(21.41f, 10.41f) - lineTo(21.48f, 10.5f) - curveToRelative(0.07f, 0.07f, 0.13f, 0.14f, 0.18f, 0.22f) - lineToRelative(0.07f, 0.13f) - lineToRelative(0.12f, 0.21f) - curveToRelative(0.08f, 0.2f, 0.12f, 0.41f, 0.14f, 0.63f) - lineToRelative(0.01f, 0.14f) - lineTo(22.0f, 18.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - lineTo(4.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(2.0f, 6.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(10.17f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.42f, 0.59f) - close() - } - } - return _documentLandscape!! - } - -private var _documentLandscape: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentLandscapeData.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentLandscapeData.kt deleted file mode 100644 index c141e48f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentLandscapeData.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentLandscapeData: ImageVector - get() { - if (_documentLandscapeData != null) { - return _documentLandscapeData!! - } - _documentLandscapeData = fluentIcon(name = "Regular.DocumentLandscapeData") { - fluentPath { - moveTo(10.0f, 9.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) - verticalLineToRelative(6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - lineTo(10.0f, 9.0f) - close() - moveTo(12.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - lineTo(12.5f, 9.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(5.0f, 14.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) - verticalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(7.5f, 14.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(17.0f, 10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(3.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 4.0f, 0.0f) - verticalLineToRelative(-3.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - close() - moveTo(17.5f, 12.0f) - verticalLineToRelative(3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - close() - moveTo(2.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) - verticalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) - lineTo(4.75f, 20.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) - lineTo(2.0f, 6.75f) - close() - moveTo(4.75f, 5.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(14.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - lineTo(20.5f, 6.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(4.75f, 5.5f) - close() - } - } - return _documentLandscapeData!! - } - -private var _documentLandscapeData: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentLandscapeSplit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentLandscapeSplit.kt deleted file mode 100644 index 45e9fbdc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentLandscapeSplit.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentLandscapeSplit: ImageVector - get() { - if (_documentLandscapeSplit != null) { - return _documentLandscapeSplit!! - } - _documentLandscapeSplit = fluentIcon(name = "Regular.DocumentLandscapeSplit") { - fluentPath { - moveTo(3.5f, 6.0f) - curveToRelative(0.0f, -0.28f, 0.23f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.5f) - verticalLineToRelative(13.0f) - lineTo(4.0f, 18.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(3.5f, 6.0f) - close() - moveTo(12.0f, 18.5f) - verticalLineToRelative(-13.0f) - horizontalLineToRelative(2.0f) - lineTo(14.0f, 10.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-8.0f) - close() - moveTo(15.5f, 6.62f) - lineTo(19.38f, 10.5f) - lineTo(16.0f, 10.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(15.5f, 6.62f) - close() - moveTo(21.41f, 10.42f) - lineTo(15.6f, 4.58f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 14.17f, 4.0f) - lineTo(4.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(12.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(16.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - verticalLineToRelative(-6.17f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, 0.0f, -0.08f) - lineToRelative(-0.01f, -0.06f) - arcToRelative(1.98f, 1.98f, 0.0f, false, false, -0.14f, -0.63f) - lineToRelative(-0.09f, -0.16f) - arcToRelative(4.26f, 4.26f, 0.0f, false, true, -0.1f, -0.18f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.2f, -0.26f) - lineToRelative(-0.05f, -0.05f) - close() - } - } - return _documentLandscapeSplit!! - } - -private var _documentLandscapeSplit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentLandscapeSplitHint.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentLandscapeSplitHint.kt deleted file mode 100644 index 3b25826f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentLandscapeSplitHint.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentLandscapeSplitHint: ImageVector - get() { - if (_documentLandscapeSplitHint != null) { - return _documentLandscapeSplitHint!! - } - _documentLandscapeSplitHint = fluentIcon(name = "Regular.DocumentLandscapeSplitHint") { - fluentPath { - moveTo(7.0f, 4.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 4.75f) - close() - moveTo(2.75f, 9.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(7.75f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.5f) - close() - moveTo(2.0f, 6.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(4.0f, 5.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(2.0f, 6.0f) - close() - moveTo(4.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - verticalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(3.5f, 18.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(4.0f, 20.0f) - close() - moveTo(10.5f, 5.25f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(2.59f) - curveToRelative(0.46f, 0.0f, 0.9f, 0.18f, 1.23f, 0.51f) - lineToRelative(5.92f, 5.92f) - curveToRelative(0.33f, 0.33f, 0.51f, 0.77f, 0.51f, 1.23f) - lineTo(22.0f, 18.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-8.25f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - lineTo(10.5f, 5.25f) - close() - moveTo(12.0f, 5.5f) - verticalLineToRelative(13.0f) - horizontalLineToRelative(8.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-6.0f) - lineTo(16.0f, 12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(14.0f, 5.5f) - horizontalLineToRelative(-2.0f) - close() - moveTo(15.5f, 6.56f) - lineTo(15.5f, 10.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(3.44f) - lineTo(15.5f, 6.56f) - close() - } - } - return _documentLandscapeSplitHint!! - } - -private var _documentLandscapeSplitHint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentLink.kt deleted file mode 100644 index ec0ea7e8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentLink.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentLink: ImageVector - get() { - if (_documentLink != null) { - return _documentLink!! - } - _documentLink = fluentIcon(name = "Regular.DocumentLink") { - fluentPath { - moveTo(18.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-4.23f) - arcTo(4.99f, 4.99f, 0.0f, false, true, 13.0f, 22.0f) - horizontalLineToRelative(5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(13.6f, 2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(10.0f) - horizontalLineToRelative(1.5f) - lineTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - close() - moveTo(13.5f, 4.62f) - lineTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - close() - moveTo(5.75f, 15.75f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 5.0f, 15.0f) - horizontalLineToRelative(-0.2f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.2f, 8.0f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-0.16f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.16f, -5.0f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(13.0f, 19.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, -4.0f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(0.16f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -0.16f, 5.0f) - horizontalLineToRelative(-0.1f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 9.0f, 23.0f) - horizontalLineToRelative(0.2f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.8f, -4.0f) - close() - moveTo(8.75f, 18.25f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - } - } - return _documentLink!! - } - -private var _documentLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentLock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentLock.kt deleted file mode 100644 index c1b94288..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentLock.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentLock: ImageVector - get() { - if (_documentLock != null) { - return _documentLock!! - } - _documentLock = fluentIcon(name = "Regular.DocumentLock") { - fluentPath { - moveTo(18.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-6.0f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 0.17f, -0.02f, 0.34f, -0.05f, 0.5f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(13.6f, 2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.55f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 1.5f, -0.9f) - lineTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - close() - moveTo(13.5f, 4.62f) - lineTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - close() - moveTo(4.0f, 15.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(6.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(9.0f, 15.0f) - verticalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) - verticalLineToRelative(1.0f) - close() - moveTo(5.5f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(7.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - } - } - return _documentLock!! - } - -private var _documentLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentMargins.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentMargins.kt deleted file mode 100644 index f042a0d1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentMargins.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentMargins: ImageVector - get() { - if (_documentMargins != null) { - return _documentMargins!! - } - _documentMargins = fluentIcon(name = "Regular.DocumentMargins") { - fluentPath { - moveTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(11.5f) - curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 4.25f) - close() - moveTo(17.0f, 20.5f) - horizontalLineToRelative(0.75f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(18.5f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(17.0f, 3.5f) - verticalLineToRelative(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(15.5f, 3.5f) - horizontalLineToRelative(-7.0f) - verticalLineToRelative(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(7.0f, 3.5f) - horizontalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(7.0f, 20.5f) - verticalLineToRelative(-2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(2.75f) - horizontalLineToRelative(7.0f) - verticalLineToRelative(-2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(2.75f) - close() - moveTo(7.75f, 8.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-5.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(17.0f, 9.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-5.5f) - close() - } - } - return _documentMargins!! - } - -private var _documentMargins: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentMention.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentMention.kt deleted file mode 100644 index d0ed2111..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentMention.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentMention: ImageVector - get() { - if (_documentMention != null) { - return _documentMention!! - } - _documentMention = fluentIcon(name = "Regular.DocumentMention") { - fluentPath { - moveTo(18.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-5.97f) - curveToRelative(-0.54f, 0.56f, -1.25f, 0.95f, -2.08f, 1.04f) - curveToRelative(0.05f, 0.15f, 0.07f, 0.3f, 0.07f, 0.46f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(13.6f, 2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.28f) - curveToRelative(0.48f, -0.19f, 0.98f, -0.33f, 1.5f, -0.4f) - lineTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - close() - moveTo(13.5f, 4.62f) - lineTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - close() - moveTo(4.0f, 14.15f) - arcToRelative(4.16f, 4.16f, 0.0f, false, true, 2.5f, -0.83f) - curveToRelative(2.3f, 0.0f, 4.18f, 1.87f, 4.18f, 4.18f) - curveToRelative(0.0f, 0.9f, -0.55f, 1.54f, -1.1f, 1.54f) - curveToRelative(-0.41f, 0.0f, -0.66f, -0.45f, -0.66f, -1.54f) - verticalLineToRelative(-2.29f) - arcToRelative(0.66f, 0.66f, 0.0f, false, false, -1.23f, -0.24f) - arcToRelative(2.2f, 2.2f, 0.0f, false, false, -1.19f, -0.33f) - curveToRelative(-1.49f, 0.0f, -2.42f, 1.33f, -2.42f, 2.86f) - curveToRelative(0.0f, 0.87f, 0.3f, 1.67f, 0.83f, 2.2f) - arcToRelative(2.22f, 2.22f, 0.0f, false, false, 1.59f, 0.65f) - curveToRelative(0.67f, 0.01f, 1.23f, -0.26f, 1.64f, -0.7f) - curveToRelative(0.32f, 0.45f, 0.8f, 0.71f, 1.44f, 0.71f) - curveToRelative(1.33f, 0.0f, 2.42f, -1.27f, 2.42f, -2.86f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -3.84f, 5.24f) - lineToRelative(0.23f, -0.07f) - lineToRelative(0.08f, -0.04f) - arcToRelative(0.66f, 0.66f, 0.0f, false, false, -0.53f, -1.2f) - lineToRelative(-0.17f, 0.06f) - lineToRelative(-0.25f, 0.06f) - arcTo(4.2f, 4.2f, 0.0f, false, true, 4.0f, 14.15f) - close() - moveTo(5.5f, 18.17f) - arcToRelative(2.18f, 2.18f, 0.0f, false, true, 0.0f, -1.33f) - curveToRelative(0.17f, -0.53f, 0.54f, -0.88f, 1.0f, -0.88f) - curveToRelative(0.64f, 0.0f, 1.1f, 0.66f, 1.1f, 1.54f) - reflectiveCurveToRelative(-0.46f, 1.54f, -1.1f, 1.54f) - curveToRelative(-0.46f, 0.0f, -0.83f, -0.35f, -1.0f, -0.87f) - close() - } - } - return _documentMention!! - } - -private var _documentMention: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentMultiple.kt deleted file mode 100644 index 7a7629ab..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentMultiple.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentMultiple: ImageVector - get() { - if (_documentMultiple != null) { - return _documentMultiple!! - } - _documentMultiple = fluentIcon(name = "Regular.DocumentMultiple") { - fluentPath { - moveTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(4.38f) - curveToRelative(0.6f, 0.0f, 1.17f, 0.24f, 1.6f, 0.66f) - lineToRelative(4.61f, 4.62f) - curveToRelative(0.42f, 0.42f, 0.66f, 1.0f, 0.66f, 1.59f) - verticalLineToRelative(8.38f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-9.0f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-13.0f) - close() - moveTo(6.25f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(13.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(9.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(16.0f, 9.0f) - horizontalLineToRelative(-3.25f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.01f, -2.25f, -2.25f) - lineTo(10.5f, 3.5f) - lineTo(6.25f, 3.5f) - close() - moveTo(12.0f, 4.56f) - verticalLineToRelative(2.19f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(2.19f) - lineTo(12.0f, 4.56f) - close() - } - fluentPath { - moveTo(6.63f, 20.5f) - curveToRelative(0.3f, 0.87f, 1.14f, 1.5f, 2.12f, 1.5f) - horizontalLineToRelative(6.5f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 20.0f, 17.25f) - verticalLineToRelative(-5.88f) - curveToRelative(0.0f, -0.6f, -0.24f, -1.17f, -0.66f, -1.6f) - lineToRelative(-0.84f, -0.83f) - verticalLineToRelative(8.31f) - curveToRelative(0.0f, 1.8f, -1.45f, 3.25f, -3.25f, 3.25f) - horizontalLineTo(6.63f) - close() - } - } - return _documentMultiple!! - } - -private var _documentMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentMultiplePercent.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentMultiplePercent.kt deleted file mode 100644 index 3609e6e3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentMultiplePercent.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentMultiplePercent: ImageVector - get() { - if (_documentMultiplePercent != null) { - return _documentMultiplePercent!! - } - _documentMultiplePercent = fluentIcon(name = "Regular.DocumentMultiplePercent") { - fluentPath { - moveTo(6.25f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(7.38f) - curveToRelative(-0.44f, -0.3f, -0.95f, -0.52f, -1.5f, -0.6f) - lineTo(4.0f, 4.26f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(4.38f) - curveToRelative(0.6f, 0.0f, 1.17f, 0.24f, 1.6f, 0.66f) - lineToRelative(4.61f, 4.62f) - curveToRelative(0.42f, 0.42f, 0.66f, 1.0f, 0.66f, 1.59f) - verticalLineToRelative(8.38f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-2.4f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -0.9f, -1.5f) - horizontalLineToRelative(3.3f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(16.0f, 9.0f) - horizontalLineToRelative(-3.25f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.01f, -2.25f, -2.25f) - lineTo(10.5f, 3.5f) - lineTo(6.25f, 3.5f) - close() - moveTo(12.0f, 4.56f) - verticalLineToRelative(2.19f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(2.19f) - lineTo(12.0f, 4.56f) - close() - moveTo(15.25f, 22.0f) - horizontalLineToRelative(-2.59f) - curveToRelative(0.22f, -0.45f, 0.34f, -0.96f, 0.34f, -1.5f) - horizontalLineToRelative(2.25f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(18.5f, 8.94f) - lineToRelative(0.84f, 0.84f) - curveToRelative(0.42f, 0.42f, 0.66f, 1.0f, 0.66f, 1.59f) - verticalLineToRelative(5.88f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 15.25f, 22.0f) - close() - moveTo(3.5f, 17.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) - close() - moveTo(3.5f, 13.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(9.5f, 23.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) - close() - moveTo(9.5f, 19.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(10.78f, 14.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-7.5f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(7.5f, -7.5f) - close() - } - } - return _documentMultiplePercent!! - } - -private var _documentMultiplePercent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentMultipleProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentMultipleProhibited.kt deleted file mode 100644 index 47b06f69..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentMultipleProhibited.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentMultipleProhibited: ImageVector - get() { - if (_documentMultipleProhibited != null) { - return _documentMultipleProhibited!! - } - _documentMultipleProhibited = fluentIcon(name = "Regular.DocumentMultipleProhibited") { - fluentPath { - moveTo(5.5f, 4.63f) - verticalLineToRelative(6.45f) - curveToRelative(-0.52f, 0.08f, -1.03f, 0.22f, -1.5f, 0.42f) - lineTo(4.0f, 6.75f) - curveToRelative(0.0f, -0.98f, 0.63f, -1.81f, 1.5f, -2.12f) - close() - moveTo(17.75f, 19.5f) - horizontalLineToRelative(-5.06f) - curveToRelative(0.15f, -0.47f, 0.25f, -0.98f, 0.3f, -1.5f) - horizontalLineToRelative(4.76f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) - lineTo(18.5f, 9.0f) - horizontalLineToRelative(-3.25f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) - lineTo(13.0f, 6.76f) - lineTo(13.0f, 3.5f) - lineTo(8.75f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.92f) - arcTo(6.52f, 6.52f, 0.0f, false, false, 6.5f, 11.0f) - lineTo(6.5f, 4.25f) - curveTo(6.5f, 3.01f, 7.51f, 2.0f, 8.75f, 2.0f) - horizontalLineToRelative(4.38f) - curveToRelative(0.6f, 0.0f, 1.17f, 0.24f, 1.59f, 0.66f) - lineToRelative(4.62f, 4.62f) - curveToRelative(0.42f, 0.42f, 0.66f, 1.0f, 0.66f, 1.6f) - verticalLineToRelative(8.37f) - curveToRelative(0.0f, 1.25f, -1.01f, 2.25f, -2.25f, 2.25f) - close() - moveTo(14.5f, 4.56f) - verticalLineToRelative(2.2f) - curveToRelative(0.0f, 0.37f, 0.28f, 0.69f, 0.65f, 0.74f) - horizontalLineToRelative(2.29f) - lineTo(14.5f, 4.56f) - close() - moveTo(11.19f, 22.0f) - curveToRelative(0.42f, -0.44f, 0.79f, -0.94f, 1.08f, -1.5f) - horizontalLineToRelative(5.1f) - curveToRelative(-0.31f, 0.88f, -1.15f, 1.5f, -2.13f, 1.5f) - lineTo(11.2f, 22.0f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(2.5f, 17.5f) - curveToRelative(0.0f, 0.83f, 0.25f, 1.6f, 0.7f, 2.25f) - lineToRelative(5.55f, -5.56f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) - close() - moveTo(6.5f, 21.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) - lineToRelative(-5.55f, 5.56f) - curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) - close() - } - } - return _documentMultipleProhibited!! - } - -private var _documentMultipleProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentOnePage.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentOnePage.kt deleted file mode 100644 index 8f9a07b1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentOnePage.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentOnePage: ImageVector - get() { - if (_documentOnePage != null) { - return _documentOnePage!! - } - _documentOnePage = fluentIcon(name = "Regular.DocumentOnePage") { - fluentPath { - moveTo(6.25f, 2.0f) - curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) - verticalLineToRelative(15.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineTo(4.25f) - curveTo(20.0f, 3.01f, 19.0f, 2.0f, 17.75f, 2.0f) - horizontalLineTo(6.25f) - close() - moveTo(5.5f, 4.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineTo(6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineTo(4.25f) - close() - moveTo(7.75f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-8.5f) - close() - moveTo(7.0f, 16.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(7.75f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-8.5f) - close() - } - } - return _documentOnePage!! - } - -private var _documentOnePage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentOnePageAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentOnePageAdd.kt deleted file mode 100644 index a816b92e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentOnePageAdd.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentOnePageAdd: ImageVector - get() { - if (_documentOnePageAdd != null) { - return _documentOnePageAdd!! - } - _documentOnePageAdd = fluentIcon(name = "Regular.DocumentOnePageAdd") { - fluentPath { - moveTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(11.5f) - curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) - verticalLineToRelative(7.25f) - curveToRelative(-0.47f, -0.2f, -0.98f, -0.34f, -1.5f, -0.42f) - lineTo(18.5f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(6.25f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(5.48f) - curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 4.25f) - close() - moveTo(16.25f, 11.0f) - curveToRelative(0.11f, 0.0f, 0.22f, 0.02f, 0.31f, 0.07f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, -3.21f, 1.43f) - horizontalLineToRelative(-5.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(8.5f) - close() - moveTo(7.75f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-8.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _documentOnePageAdd!! - } - -private var _documentOnePageAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentOnePageColumns.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentOnePageColumns.kt deleted file mode 100644 index 2dde3caa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentOnePageColumns.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentOnePageColumns: ImageVector - get() { - if (_documentOnePageColumns != null) { - return _documentOnePageColumns!! - } - _documentOnePageColumns = fluentIcon(name = "Regular.DocumentOnePageColumns") { - fluentPath { - moveTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(11.5f) - curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 4.25f) - close() - moveTo(6.25f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(18.5f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(6.25f, 3.5f) - close() - moveTo(9.25f, 5.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(8.5f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(15.5f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(15.5f, 5.75f) - close() - } - } - return _documentOnePageColumns!! - } - -private var _documentOnePageColumns: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentOnePageLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentOnePageLink.kt deleted file mode 100644 index 7ce08946..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentOnePageLink.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentOnePageLink: ImageVector - get() { - if (_documentOnePageLink != null) { - return _documentOnePageLink!! - } - _documentOnePageLink = fluentIcon(name = "Regular.DocumentOnePageLink") { - fluentPath { - moveTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(11.5f) - curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) - verticalLineToRelative(9.58f) - curveToRelative(-0.47f, -0.18f, -0.97f, -0.3f, -1.5f, -0.32f) - lineTo(18.5f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(6.25f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.32f) - curveToRelative(0.31f, 0.58f, 0.74f, 1.1f, 1.26f, 1.5f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 4.25f) - close() - moveTo(7.75f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-8.5f) - close() - moveTo(7.0f, 11.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(22.0f, 18.25f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.75f, -3.75f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - lineTo(18.25f, 22.0f) - horizontalLineToRelative(0.2f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 22.0f, 18.24f) - close() - moveTo(15.5f, 15.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-0.2f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(19.0f, 18.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - } - } - return _documentOnePageLink!! - } - -private var _documentOnePageLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPageBottomCenter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPageBottomCenter.kt deleted file mode 100644 index 7e0bf610..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPageBottomCenter.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentPageBottomCenter: ImageVector - get() { - if (_documentPageBottomCenter != null) { - return _documentPageBottomCenter!! - } - _documentPageBottomCenter = fluentIcon(name = "Regular.DocumentPageBottomCenter") { - fluentPath { - moveTo(17.74f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.92f, 2.25f, 2.1f) - verticalLineToRelative(15.65f) - curveToRelative(0.0f, 1.18f, -0.92f, 2.16f, -2.1f, 2.24f) - lineTo(6.25f, 21.99f) - curveToRelative(-1.19f, 0.0f, -2.16f, -0.92f, -2.24f, -2.1f) - lineTo(4.01f, 4.25f) - curveTo(4.0f, 3.07f, 4.91f, 2.09f, 6.08f, 2.0f) - horizontalLineToRelative(11.65f) - close() - moveTo(17.74f, 3.5f) - lineTo(6.24f, 3.5f) - curveToRelative(-0.38f, 0.0f, -0.69f, 0.28f, -0.74f, 0.64f) - verticalLineToRelative(15.6f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.64f, 0.75f) - horizontalLineToRelative(11.6f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.64f) - lineTo(18.49f, 4.25f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.64f, -0.75f) - horizontalLineToRelative(-0.1f) - close() - moveTo(13.02f, 19.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.63f, -0.86f) - lineToRelative(0.1f, -0.66f) - horizontalLineToRelative(-1.47f) - lineToRelative(-0.14f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, -0.24f) - lineToRelative(0.1f, -0.66f) - horizontalLineToRelative(-0.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.99f) - lineToRelative(0.23f, -1.5f) - horizontalLineToRelative(-0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.96f) - lineToRelative(0.2f, -1.26f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.48f, 0.24f) - lineToRelative(-0.16f, 1.02f) - horizontalLineToRelative(1.48f) - lineToRelative(0.2f, -1.26f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.48f, 0.24f) - lineToRelative(-0.16f, 1.02f) - horizontalLineToRelative(0.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.76f) - lineToRelative(-0.23f, 1.5f) - horizontalLineToRelative(0.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.73f) - lineToRelative(-0.14f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.86f, 0.62f) - close() - moveTo(11.49f, 15.38f) - lineTo(11.26f, 16.88f) - horizontalLineToRelative(1.48f) - lineToRelative(0.23f, -1.5f) - lineTo(11.5f, 15.38f) - close() - } - } - return _documentPageBottomCenter!! - } - -private var _documentPageBottomCenter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPageBottomLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPageBottomLeft.kt deleted file mode 100644 index 65179299..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPageBottomLeft.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentPageBottomLeft: ImageVector - get() { - if (_documentPageBottomLeft != null) { - return _documentPageBottomLeft!! - } - _documentPageBottomLeft = fluentIcon(name = "Regular.DocumentPageBottomLeft") { - fluentPath { - moveTo(17.74f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.92f, 2.25f, 2.1f) - verticalLineToRelative(15.65f) - curveToRelative(0.0f, 1.18f, -0.92f, 2.16f, -2.1f, 2.24f) - lineTo(6.25f, 21.99f) - curveToRelative(-1.19f, 0.0f, -2.16f, -0.92f, -2.24f, -2.1f) - lineTo(4.01f, 4.25f) - curveTo(4.0f, 3.07f, 4.91f, 2.09f, 6.08f, 2.0f) - horizontalLineToRelative(11.65f) - close() - moveTo(17.74f, 3.5f) - lineTo(6.24f, 3.5f) - curveToRelative(-0.38f, 0.0f, -0.69f, 0.28f, -0.74f, 0.64f) - verticalLineToRelative(15.6f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.64f, 0.75f) - horizontalLineToRelative(11.6f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.64f) - lineTo(18.49f, 4.25f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.64f, -0.75f) - horizontalLineToRelative(-0.1f) - close() - moveTo(11.02f, 19.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.63f, -0.86f) - lineToRelative(0.1f, -0.66f) - lineTo(9.03f, 18.38f) - lineToRelative(-0.14f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, -0.24f) - lineToRelative(0.1f, -0.66f) - horizontalLineToRelative(-0.74f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(0.99f) - lineToRelative(0.23f, -1.5f) - horizontalLineToRelative(-0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(0.96f) - lineToRelative(0.2f, -1.26f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.48f, 0.24f) - lineToRelative(-0.16f, 1.02f) - horizontalLineToRelative(1.48f) - lineToRelative(0.2f, -1.26f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.48f, 0.24f) - lineToRelative(-0.16f, 1.02f) - horizontalLineToRelative(0.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.76f) - lineToRelative(-0.23f, 1.5f) - horizontalLineToRelative(0.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.73f) - lineToRelative(-0.14f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.86f, 0.62f) - close() - moveTo(9.49f, 15.38f) - lineTo(9.26f, 16.88f) - horizontalLineToRelative(1.48f) - lineToRelative(0.23f, -1.5f) - lineTo(9.5f, 15.38f) - close() - } - } - return _documentPageBottomLeft!! - } - -private var _documentPageBottomLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPageBottomRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPageBottomRight.kt deleted file mode 100644 index 34795e39..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPageBottomRight.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentPageBottomRight: ImageVector - get() { - if (_documentPageBottomRight != null) { - return _documentPageBottomRight!! - } - _documentPageBottomRight = fluentIcon(name = "Regular.DocumentPageBottomRight") { - fluentPath { - moveTo(17.74f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.92f, 2.25f, 2.1f) - verticalLineToRelative(15.65f) - curveToRelative(0.0f, 1.18f, -0.92f, 2.16f, -2.1f, 2.24f) - lineTo(6.25f, 21.99f) - curveToRelative(-1.19f, 0.0f, -2.16f, -0.92f, -2.24f, -2.1f) - lineTo(4.01f, 4.25f) - curveTo(4.0f, 3.07f, 4.91f, 2.09f, 6.08f, 2.0f) - horizontalLineToRelative(11.65f) - close() - moveTo(17.74f, 3.5f) - lineTo(6.24f, 3.5f) - curveToRelative(-0.38f, 0.0f, -0.69f, 0.28f, -0.74f, 0.64f) - verticalLineToRelative(15.6f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.64f, 0.75f) - horizontalLineToRelative(11.6f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.64f) - lineTo(18.49f, 4.25f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.64f, -0.75f) - horizontalLineToRelative(-0.1f) - close() - moveTo(15.02f, 19.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.63f, -0.86f) - lineToRelative(0.1f, -0.66f) - horizontalLineToRelative(-1.47f) - lineToRelative(-0.14f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, -0.24f) - lineToRelative(0.1f, -0.66f) - horizontalLineToRelative(-0.74f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(0.99f) - lineToRelative(0.23f, -1.5f) - horizontalLineToRelative(-0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(0.96f) - lineToRelative(0.2f, -1.26f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.48f, 0.24f) - lineToRelative(-0.16f, 1.02f) - horizontalLineToRelative(1.48f) - lineToRelative(0.2f, -1.26f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.48f, 0.24f) - lineToRelative(-0.16f, 1.02f) - horizontalLineToRelative(0.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.76f) - lineToRelative(-0.23f, 1.5f) - horizontalLineToRelative(0.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.73f) - lineToRelative(-0.14f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.86f, 0.62f) - close() - moveTo(13.49f, 15.38f) - lineTo(13.26f, 16.88f) - horizontalLineToRelative(1.48f) - lineToRelative(0.23f, -1.5f) - lineTo(13.5f, 15.38f) - close() - } - } - return _documentPageBottomRight!! - } - -private var _documentPageBottomRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPageBreak.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPageBreak.kt deleted file mode 100644 index 42404dc4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPageBreak.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentPageBreak: ImageVector - get() { - if (_documentPageBreak != null) { - return _documentPageBreak!! - } - _documentPageBreak = fluentIcon(name = "Regular.DocumentPageBreak") { - fluentPath { - moveTo(2.5f, 12.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 2.5f, 12.0f) - close() - moveTo(6.5f, 12.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 6.5f, 12.0f) - close() - moveTo(10.5f, 12.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(14.5f, 12.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(18.5f, 12.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(4.75f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(4.0f, 7.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - lineTo(18.5f, 7.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - lineTo(6.0f, 7.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(5.5f, 2.75f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 4.75f, 2.0f) - close() - moveTo(19.25f, 22.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(20.0f, 17.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - lineTo(6.0f, 15.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(5.5f, 17.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(12.0f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.23f, 0.5f, 0.5f) - verticalLineToRelative(4.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - close() - } - } - return _documentPageBreak!! - } - -private var _documentPageBreak: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPageNumber.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPageNumber.kt deleted file mode 100644 index 4e143ee1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPageNumber.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentPageNumber: ImageVector - get() { - if (_documentPageNumber != null) { - return _documentPageNumber!! - } - _documentPageNumber = fluentIcon(name = "Regular.DocumentPageNumber") { - fluentPath { - moveTo(17.74f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.92f, 2.25f, 2.1f) - verticalLineToRelative(15.65f) - curveToRelative(0.0f, 1.18f, -0.92f, 2.16f, -2.1f, 2.24f) - lineTo(6.25f, 21.99f) - curveToRelative(-1.19f, 0.0f, -2.16f, -0.92f, -2.24f, -2.1f) - lineTo(4.01f, 4.25f) - curveTo(4.0f, 3.07f, 4.91f, 2.09f, 6.08f, 2.0f) - horizontalLineToRelative(11.65f) - close() - moveTo(17.74f, 3.5f) - lineTo(6.24f, 3.5f) - curveToRelative(-0.38f, 0.0f, -0.69f, 0.28f, -0.74f, 0.64f) - verticalLineToRelative(15.6f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.64f, 0.75f) - horizontalLineToRelative(11.6f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.64f) - lineTo(18.49f, 4.25f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.64f, -0.75f) - horizontalLineToRelative(-0.1f) - close() - moveTo(13.02f, 16.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.63f, -0.86f) - lineToRelative(0.1f, -0.66f) - horizontalLineToRelative(-1.47f) - lineToRelative(-0.14f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.49f, -0.24f) - lineToRelative(0.1f, -0.66f) - horizontalLineToRelative(-0.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.99f) - lineToRelative(0.23f, -1.5f) - horizontalLineToRelative(-0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.96f) - lineToRelative(0.2f, -1.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.48f, 0.24f) - lineTo(11.73f, 10.0f) - horizontalLineToRelative(1.48f) - lineToRelative(0.2f, -1.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.48f, 0.24f) - lineTo(14.73f, 10.0f) - horizontalLineToRelative(0.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.76f) - lineToRelative(-0.23f, 1.5f) - horizontalLineToRelative(0.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.73f) - lineToRelative(-0.14f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.86f, 0.62f) - close() - moveTo(11.49f, 11.5f) - lineTo(11.26f, 13.0f) - horizontalLineToRelative(1.48f) - lineToRelative(0.23f, -1.5f) - lineTo(11.5f, 11.5f) - close() - } - } - return _documentPageNumber!! - } - -private var _documentPageNumber: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPageTopCenter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPageTopCenter.kt deleted file mode 100644 index 84190891..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPageTopCenter.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentPageTopCenter: ImageVector - get() { - if (_documentPageTopCenter != null) { - return _documentPageTopCenter!! - } - _documentPageTopCenter = fluentIcon(name = "Regular.DocumentPageTopCenter") { - fluentPath { - moveTo(17.74f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.92f, 2.25f, 2.1f) - verticalLineToRelative(15.65f) - curveToRelative(0.0f, 1.18f, -0.92f, 2.16f, -2.1f, 2.24f) - lineTo(6.25f, 21.99f) - curveToRelative(-1.19f, 0.0f, -2.16f, -0.92f, -2.24f, -2.1f) - lineTo(4.01f, 4.25f) - curveTo(4.0f, 3.07f, 4.91f, 2.09f, 6.08f, 2.0f) - horizontalLineToRelative(11.65f) - close() - moveTo(17.74f, 3.5f) - lineTo(6.24f, 3.5f) - curveToRelative(-0.38f, 0.0f, -0.69f, 0.28f, -0.74f, 0.64f) - verticalLineToRelative(15.6f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.64f, 0.75f) - horizontalLineToRelative(11.6f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.64f) - lineTo(18.49f, 4.25f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.64f, -0.75f) - horizontalLineToRelative(-0.1f) - close() - moveTo(13.02f, 12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.63f, -0.86f) - lineToRelative(0.1f, -0.66f) - horizontalLineToRelative(-1.47f) - lineToRelative(-0.14f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.49f, -0.24f) - lineToRelative(0.1f, -0.66f) - horizontalLineToRelative(-0.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.99f) - lineToRelative(0.23f, -1.5f) - horizontalLineToRelative(-0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(0.96f) - lineToRelative(0.2f, -1.26f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.48f, 0.24f) - lineToRelative(-0.16f, 1.02f) - horizontalLineToRelative(1.48f) - lineToRelative(0.2f, -1.26f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.48f, 0.24f) - lineToRelative(-0.16f, 1.02f) - horizontalLineToRelative(0.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.76f) - lineToRelative(-0.23f, 1.5f) - horizontalLineToRelative(0.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.73f) - lineToRelative(-0.14f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.86f, 0.62f) - close() - moveTo(11.49f, 7.48f) - lineTo(11.26f, 8.98f) - horizontalLineToRelative(1.48f) - lineToRelative(0.23f, -1.5f) - lineTo(11.5f, 7.48f) - close() - } - } - return _documentPageTopCenter!! - } - -private var _documentPageTopCenter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPageTopLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPageTopLeft.kt deleted file mode 100644 index fc7eba73..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPageTopLeft.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentPageTopLeft: ImageVector - get() { - if (_documentPageTopLeft != null) { - return _documentPageTopLeft!! - } - _documentPageTopLeft = fluentIcon(name = "Regular.DocumentPageTopLeft") { - fluentPath { - moveTo(17.74f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.92f, 2.25f, 2.1f) - verticalLineToRelative(15.65f) - curveToRelative(0.0f, 1.18f, -0.92f, 2.16f, -2.1f, 2.24f) - lineTo(6.25f, 21.99f) - curveToRelative(-1.19f, 0.0f, -2.16f, -0.92f, -2.24f, -2.1f) - lineTo(4.01f, 4.25f) - curveTo(4.0f, 3.07f, 4.91f, 2.09f, 6.08f, 2.0f) - horizontalLineToRelative(11.65f) - close() - moveTo(17.74f, 3.5f) - lineTo(6.24f, 3.5f) - curveToRelative(-0.38f, 0.0f, -0.69f, 0.28f, -0.74f, 0.64f) - verticalLineToRelative(15.6f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.64f, 0.75f) - horizontalLineToRelative(11.6f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.64f) - lineTo(18.49f, 4.25f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.64f, -0.75f) - horizontalLineToRelative(-0.1f) - close() - moveTo(11.02f, 12.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.63f, -0.86f) - lineToRelative(0.1f, -0.66f) - lineTo(9.03f, 10.5f) - lineToRelative(-0.14f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, -0.24f) - lineToRelative(0.1f, -0.66f) - horizontalLineToRelative(-0.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.99f) - lineToRelative(0.23f, -1.5f) - horizontalLineToRelative(-0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(0.96f) - lineToRelative(0.2f, -1.26f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.48f, 0.24f) - lineTo(9.73f, 6.0f) - horizontalLineToRelative(1.48f) - lineToRelative(0.2f, -1.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.48f, 0.24f) - lineTo(12.73f, 6.0f) - horizontalLineToRelative(0.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.76f) - lineTo(12.26f, 9.0f) - horizontalLineToRelative(0.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.73f) - lineToRelative(-0.14f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.86f, 0.62f) - close() - moveTo(9.49f, 7.5f) - lineTo(9.26f, 9.0f) - horizontalLineToRelative(1.48f) - lineToRelative(0.23f, -1.5f) - lineTo(9.5f, 7.5f) - close() - } - } - return _documentPageTopLeft!! - } - -private var _documentPageTopLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPageTopRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPageTopRight.kt deleted file mode 100644 index 630d5fab..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPageTopRight.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentPageTopRight: ImageVector - get() { - if (_documentPageTopRight != null) { - return _documentPageTopRight!! - } - _documentPageTopRight = fluentIcon(name = "Regular.DocumentPageTopRight") { - fluentPath { - moveTo(17.74f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.92f, 2.25f, 2.1f) - verticalLineToRelative(15.65f) - curveToRelative(0.0f, 1.18f, -0.92f, 2.16f, -2.1f, 2.24f) - lineTo(6.25f, 21.99f) - curveToRelative(-1.19f, 0.0f, -2.16f, -0.92f, -2.24f, -2.1f) - lineTo(4.01f, 4.25f) - curveTo(4.0f, 3.07f, 4.91f, 2.09f, 6.08f, 2.0f) - horizontalLineToRelative(11.65f) - close() - moveTo(17.74f, 3.5f) - lineTo(6.24f, 3.5f) - curveToRelative(-0.38f, 0.0f, -0.69f, 0.28f, -0.74f, 0.64f) - verticalLineToRelative(15.6f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.64f, 0.75f) - horizontalLineToRelative(11.6f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.64f) - lineTo(18.49f, 4.25f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.64f, -0.75f) - horizontalLineToRelative(-0.1f) - close() - moveTo(15.02f, 12.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.63f, -0.86f) - lineToRelative(0.1f, -0.66f) - horizontalLineToRelative(-1.47f) - lineToRelative(-0.14f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, -0.24f) - lineToRelative(0.1f, -0.66f) - horizontalLineToRelative(-0.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.99f) - lineToRelative(0.23f, -1.5f) - horizontalLineToRelative(-0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.96f) - lineToRelative(0.2f, -1.26f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.48f, 0.24f) - lineTo(13.73f, 6.0f) - horizontalLineToRelative(1.48f) - lineToRelative(0.2f, -1.26f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.48f, 0.24f) - lineTo(16.73f, 6.0f) - horizontalLineToRelative(0.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.76f) - lineTo(16.26f, 9.0f) - horizontalLineToRelative(0.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.73f) - lineToRelative(-0.14f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.86f, 0.62f) - close() - moveTo(13.49f, 7.5f) - lineTo(13.26f, 9.0f) - horizontalLineToRelative(1.48f) - lineToRelative(0.23f, -1.5f) - lineTo(13.5f, 7.5f) - close() - } - } - return _documentPageTopRight!! - } - -private var _documentPageTopRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPdf.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPdf.kt deleted file mode 100644 index f30e03a5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPdf.kt +++ /dev/null @@ -1,123 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentPdf: ImageVector - get() { - if (_documentPdf != null) { - return _documentPdf!! - } - _documentPdf = fluentIcon(name = "Regular.DocumentPdf") { - fluentPath { - moveTo(7.5f, 13.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - lineTo(8.0f, 16.0f) - horizontalLineToRelative(0.5f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - horizontalLineToRelative(-1.0f) - close() - moveTo(8.5f, 15.0f) - lineTo(8.0f, 15.0f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - close() - moveTo(15.0f, 13.5f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - lineTo(17.0f, 13.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-3.0f) - close() - moveTo(11.5f, 13.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(0.5f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, -4.0f) - horizontalLineToRelative(-0.5f) - close() - moveTo(12.0f, 16.0f) - verticalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - close() - moveTo(20.0f, 20.0f) - verticalLineToRelative(-1.16f) - curveToRelative(0.6f, -0.29f, 1.0f, -0.89f, 1.0f, -1.59f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.7f, -0.4f, -1.3f, -1.0f, -1.58f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(13.6f, 2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.17f) - curveToRelative(-0.6f, 0.28f, -1.0f, 0.88f, -1.0f, 1.58f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.7f, 0.4f, 1.3f, 1.0f, 1.59f) - lineTo(4.0f, 20.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - close() - moveTo(18.0f, 20.5f) - lineTo(6.0f, 20.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(13.0f) - verticalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - close() - moveTo(18.5f, 10.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-13.0f) - lineTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - close() - moveTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - lineToRelative(3.88f, 3.88f) - close() - moveTo(4.75f, 12.5f) - horizontalLineToRelative(14.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - lineTo(4.75f, 17.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - close() - } - } - return _documentPdf!! - } - -private var _documentPdf: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPercent.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPercent.kt deleted file mode 100644 index aaaa97a2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPercent.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentPercent: ImageVector - get() { - if (_documentPercent != null) { - return _documentPercent!! - } - _documentPercent = fluentIcon(name = "Regular.DocumentPercent") { - fluentPath { - moveTo(18.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-5.0f) - curveToRelative(0.0f, 0.54f, -0.12f, 1.05f, -0.34f, 1.5f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(13.6f, 2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.04f) - curveToRelative(0.55f, 0.07f, 1.06f, 0.28f, 1.5f, 0.59f) - lineTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - close() - moveTo(13.5f, 4.62f) - lineTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - close() - moveTo(6.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(4.5f, 14.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(12.0f, 20.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(10.5f, 20.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(10.78f, 13.22f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-7.5f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(7.5f, -7.5f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - } - } - return _documentPercent!! - } - -private var _documentPercent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPill.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPill.kt deleted file mode 100644 index 9e75f84e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPill.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentPill: ImageVector - get() { - if (_documentPill != null) { - return _documentPill!! - } - _documentPill = fluentIcon(name = "Regular.DocumentPill") { - fluentPath { - moveTo(5.5f, 4.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - lineTo(12.0f, 3.5f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(1.43f) - curveToRelative(0.48f, -0.2f, 0.99f, -0.3f, 1.5f, -0.3f) - lineTo(20.0f, 9.66f) - curveToRelative(0.0f, -0.46f, -0.18f, -0.9f, -0.51f, -1.23f) - lineTo(13.57f, 2.5f) - arcTo(1.75f, 1.75f, 0.0f, false, false, 12.34f, 2.0f) - lineTo(6.25f, 2.0f) - curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) - verticalLineToRelative(15.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(5.43f) - arcToRelative(3.86f, 3.86f, 0.0f, false, true, -0.52f, -1.5f) - lineTo(6.25f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(5.5f, 4.25f) - close() - moveTo(17.44f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.56f) - lineToRelative(3.94f, 3.94f) - close() - moveTo(22.03f, 12.97f) - arcToRelative(2.87f, 2.87f, 0.0f, false, false, -4.06f, 0.0f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(2.87f, 2.87f, 0.0f, true, false, 4.06f, 4.06f) - lineToRelative(5.0f, -5.0f) - arcToRelative(2.87f, 2.87f, 0.0f, false, false, 0.0f, -4.06f) - close() - moveTo(19.03f, 14.03f) - arcToRelative(1.37f, 1.37f, 0.0f, true, true, 1.94f, 1.94f) - lineTo(19.0f, 17.94f) - lineTo(17.06f, 16.0f) - lineToRelative(1.97f, -1.97f) - close() - moveTo(17.03f, 18.97f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-1.0f, 1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(1.0f, -1.0f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - } - } - return _documentPill!! - } - -private var _documentPill: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPrint.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPrint.kt deleted file mode 100644 index c6409f7b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentPrint.kt +++ /dev/null @@ -1,100 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentPrint: ImageVector - get() { - if (_documentPrint != null) { - return _documentPrint!! - } - _documentPrint = fluentIcon(name = "Regular.DocumentPrint") { - fluentPath { - moveTo(18.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-5.27f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.73f, 1.0f) - horizontalLineToRelative(-0.01f) - curveToRelative(-0.02f, 0.17f, -0.05f, 0.34f, -0.1f, 0.5f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(13.6f, 2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.1f) - curveToRelative(0.24f, -0.06f, 0.49f, -0.1f, 0.75f, -0.1f) - horizontalLineToRelative(0.75f) - lineTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - close() - moveTo(13.5f, 4.62f) - lineTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - close() - moveTo(3.0f, 13.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(3.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(0.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-3.5f) - curveTo(3.78f, 23.0f, 3.0f, 22.22f, 3.0f, 21.25f) - verticalLineToRelative(-0.75f) - lineTo(2.0f, 20.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(1.0f, 16.0f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - lineTo(3.0f, 14.5f) - verticalLineToRelative(-0.75f) - close() - moveTo(8.5f, 13.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-0.75f) - close() - moveTo(4.5f, 19.25f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-2.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - close() - } - } - return _documentPrint!! - } - -private var _documentPrint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentProhibited.kt deleted file mode 100644 index 27783d26..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentProhibited.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentProhibited: ImageVector - get() { - if (_documentProhibited != null) { - return _documentProhibited!! - } - _documentProhibited = fluentIcon(name = "Regular.DocumentProhibited") { - fluentPath { - moveTo(18.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-5.73f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, 1.5f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(13.6f, 2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.5f) - curveToRelative(0.47f, -0.2f, 0.98f, -0.34f, 1.5f, -0.42f) - lineTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - close() - moveTo(13.5f, 4.62f) - lineTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(2.5f, 17.5f) - curveToRelative(0.0f, 0.83f, 0.25f, 1.6f, 0.7f, 2.25f) - lineToRelative(5.55f, -5.56f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) - close() - moveTo(6.5f, 21.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) - lineToRelative(-5.55f, 5.56f) - curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) - close() - } - } - return _documentProhibited!! - } - -private var _documentProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentQuestionMark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentQuestionMark.kt deleted file mode 100644 index dd2201c9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentQuestionMark.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentQuestionMark: ImageVector - get() { - if (_documentQuestionMark != null) { - return _documentQuestionMark!! - } - _documentQuestionMark = fluentIcon(name = "Regular.DocumentQuestionMark") { - fluentPath { - moveTo(18.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-5.73f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, 1.5f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(13.6f, 2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.5f) - curveToRelative(0.47f, -0.2f, 0.98f, -0.34f, 1.5f, -0.42f) - lineTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - close() - moveTo(13.5f, 4.62f) - lineTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - close() - moveTo(1.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) - close() - moveTo(5.75f, 20.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(4.5f, 16.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) - curveToRelative(0.0f, 0.73f, -0.21f, 1.14f, -0.75f, 1.7f) - lineToRelative(-0.27f, 0.28f) - lineToRelative(-0.11f, 0.12f) - curveToRelative(-0.29f, 0.32f, -0.37f, 0.53f, -0.37f, 0.9f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - curveToRelative(0.0f, -0.73f, 0.21f, -1.14f, 0.75f, -1.7f) - lineToRelative(0.27f, -0.28f) - lineToRelative(0.11f, -0.12f) - curveToRelative(0.29f, -0.32f, 0.37f, -0.53f, 0.37f, -0.9f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - close() - } - } - return _documentQuestionMark!! - } - -private var _documentQuestionMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentQueue.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentQueue.kt deleted file mode 100644 index f0dc520e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentQueue.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentQueue: ImageVector - get() { - if (_documentQueue != null) { - return _documentQueue!! - } - _documentQueue = fluentIcon(name = "Regular.DocumentQueue") { - fluentPath { - moveTo(8.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.5f) - close() - moveTo(8.0f, 8.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 8.75f) - close() - moveTo(8.75f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.5f) - close() - moveTo(5.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.23f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.42f, 0.59f) - lineToRelative(3.76f, 3.76f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 19.0f, 7.77f) - lineTo(19.0f, 17.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - lineTo(7.0f, 19.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(5.0f, 4.0f) - close() - moveTo(7.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(13.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(10.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(17.5f, 8.5f) - horizontalLineToRelative(-3.25f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(12.5f, 3.5f) - lineTo(7.0f, 3.5f) - close() - moveTo(14.0f, 4.06f) - verticalLineToRelative(2.69f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(2.69f) - lineTo(14.0f, 4.06f) - close() - moveTo(3.5f, 15.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.75f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 6.5f, 22.0f) - horizontalLineToRelative(11.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 4.5f, -4.5f) - verticalLineToRelative(-1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.75f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - horizontalLineToRelative(-11.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - verticalLineToRelative(-1.75f) - close() - } - } - return _documentQueue!! - } - -private var _documentQueue: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentQueueAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentQueueAdd.kt deleted file mode 100644 index 1014cdad..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentQueueAdd.kt +++ /dev/null @@ -1,97 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentQueueAdd: ImageVector - get() { - if (_documentQueueAdd != null) { - return _documentQueueAdd!! - } - _documentQueueAdd = fluentIcon(name = "Regular.DocumentQueueAdd") { - fluentPath { - moveTo(7.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(13.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.17f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -0.17f, -1.5f) - lineTo(7.0f, 17.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(6.5f, 4.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(5.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(3.25f) - lineTo(17.5f, 11.0f) - curveToRelative(0.52f, 0.0f, 1.02f, 0.06f, 1.5f, 0.17f) - verticalLineToRelative(-3.4f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(14.65f, 2.6f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 13.23f, 2.0f) - lineTo(7.0f, 2.0f) - close() - moveTo(14.0f, 6.75f) - lineTo(14.0f, 4.06f) - lineTo(16.94f, 7.0f) - horizontalLineToRelative(-2.69f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - close() - moveTo(6.5f, 20.5f) - horizontalLineToRelative(5.23f) - curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) - lineTo(6.5f, 22.0f) - arcTo(4.5f, 4.5f, 0.0f, false, true, 2.0f, 17.5f) - verticalLineToRelative(-1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(1.75f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) - close() - moveTo(8.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 5.75f) - close() - moveTo(8.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.5f) - close() - moveTo(8.75f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _documentQueueAdd!! - } - -private var _documentQueueAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentQueueMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentQueueMultiple.kt deleted file mode 100644 index 362ffa4c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentQueueMultiple.kt +++ /dev/null @@ -1,101 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentQueueMultiple: ImageVector - get() { - if (_documentQueueMultiple != null) { - return _documentQueueMultiple!! - } - _documentQueueMultiple = fluentIcon(name = "Regular.DocumentQueueMultiple") { - fluentPath { - moveTo(17.35f, 6.16f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.07f, 0.08f) - lineTo(19.0f, 7.82f) - lineTo(19.0f, 6.5f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(16.7f, 3.4f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 13.35f, 2.0f) - lineTo(7.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(0.13f) - curveToRelative(0.57f, -0.4f, 1.26f, -0.63f, 2.0f, -0.63f) - horizontalLineToRelative(6.35f) - curveToRelative(0.86f, 0.0f, 1.68f, 0.34f, 2.29f, 0.95f) - lineToRelative(1.71f, 1.7f) - close() - moveTo(2.75f, 15.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.75f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) - horizontalLineToRelative(11.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) - verticalLineToRelative(-1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(1.75f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -4.5f, 4.5f) - horizontalLineToRelative(-11.0f) - arcTo(4.5f, 4.5f, 0.0f, false, true, 2.0f, 17.5f) - verticalLineToRelative(-1.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(8.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.5f) - close() - moveTo(8.0f, 11.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(8.75f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.5f) - close() - moveTo(7.0f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(10.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - verticalLineToRelative(-6.23f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(14.65f, 5.6f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 13.23f, 5.0f) - lineTo(7.0f, 5.0f) - close() - moveTo(6.5f, 7.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(5.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(3.25f) - lineTo(17.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - lineTo(7.0f, 17.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(6.5f, 7.0f) - close() - moveTo(14.0f, 9.75f) - lineTo(14.0f, 7.06f) - lineTo(16.94f, 10.0f) - horizontalLineToRelative(-2.69f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - close() - } - } - return _documentQueueMultiple!! - } - -private var _documentQueueMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentRibbon.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentRibbon.kt deleted file mode 100644 index 63e3f1d1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentRibbon.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentRibbon: ImageVector - get() { - if (_documentRibbon != null) { - return _documentRibbon!! - } - _documentRibbon = fluentIcon(name = "Regular.DocumentRibbon") { - fluentPath { - moveTo(18.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - lineTo(9.0f, 20.5f) - lineTo(9.0f, 22.0f) - horizontalLineToRelative(9.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(13.6f, 2.6f) - arcToRelative(0.49f, 0.49f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.26f) - arcTo(4.5f, 4.5f, 0.0f, false, true, 5.5f, 11.0f) - lineTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - close() - moveTo(13.5f, 4.62f) - lineTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - close() - moveTo(9.0f, 15.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, -7.0f, 0.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 7.0f, 0.0f) - close() - moveTo(3.0f, 19.24f) - verticalLineToRelative(3.05f) - curveToRelative(0.0f, 0.63f, 0.76f, 0.95f, 1.21f, 0.5f) - lineTo(5.5f, 21.5f) - lineToRelative(1.29f, 1.3f) - arcTo(0.71f, 0.71f, 0.0f, false, false, 8.0f, 22.28f) - verticalLineToRelative(-3.05f) - arcToRelative(4.48f, 4.48f, 0.0f, false, true, -5.0f, 0.0f) - close() - } - } - return _documentRibbon!! - } - -private var _documentRibbon: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentSave.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentSave.kt deleted file mode 100644 index 0e46764e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentSave.kt +++ /dev/null @@ -1,94 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentSave: ImageVector - get() { - if (_documentSave != null) { - return _documentSave!! - } - _documentSave = fluentIcon(name = "Regular.DocumentSave") { - fluentPath { - moveTo(18.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 0.17f, -0.02f, 0.34f, -0.05f, 0.5f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(13.6f, 2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.0f) - horizontalLineToRelative(1.5f) - lineTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - close() - moveTo(13.5f, 4.62f) - lineTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - close() - moveTo(5.0f, 12.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(2.0f) - lineTo(5.0f, 14.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(2.5f, 12.0f) - lineTo(4.0f, 12.0f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(9.0f, 12.0f) - horizontalLineToRelative(0.38f) - curveToRelative(0.4f, 0.0f, 0.78f, 0.16f, 1.06f, 0.44f) - lineToRelative(1.12f, 1.12f) - curveToRelative(0.28f, 0.28f, 0.44f, 0.66f, 0.44f, 1.06f) - verticalLineToRelative(6.88f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - lineTo(10.0f, 23.0f) - verticalLineToRelative(-5.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - horizontalLineToRelative(-6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - lineTo(3.0f, 23.0f) - horizontalLineToRelative(-0.5f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 1.0f, 21.5f) - verticalLineToRelative(-8.0f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - close() - moveTo(9.0f, 18.0f) - verticalLineToRelative(5.0f) - lineTo(4.0f, 23.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(5.0f) - close() - } - } - return _documentSave!! - } - -private var _documentSave: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentSearch.kt deleted file mode 100644 index 96c6964d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentSearch.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentSearch: ImageVector - get() { - if (_documentSearch != null) { - return _documentSearch!! - } - _documentSearch = fluentIcon(name = "Regular.DocumentSearch") { - fluentPath { - moveTo(11.4f, 10.95f) - arcToRelative(4.93f, 4.93f, 0.0f, false, true, 0.55f, 6.32f) - lineToRelative(-0.14f, 0.2f) - lineToRelative(4.22f, 4.21f) - lineToRelative(0.07f, 0.09f) - arcToRelative(0.77f, 0.77f, 0.0f, false, true, -1.08f, 1.08f) - lineToRelative(-0.09f, -0.08f) - lineToRelative(-4.25f, -4.25f) - arcToRelative(4.93f, 4.93f, 0.0f, true, true, 0.73f, -7.57f) - close() - moveTo(13.14f, 2.0f) - curveToRelative(0.6f, 0.0f, 1.17f, 0.24f, 1.59f, 0.66f) - lineToRelative(2.81f, 2.8f) - lineToRelative(2.8f, 2.82f) - curveToRelative(0.43f, 0.42f, 0.67f, 1.0f, 0.67f, 1.6f) - verticalLineToRelative(9.87f) - curveToRelative(0.0f, 1.24f, -1.01f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-1.51f) - curveToRelative(-0.04f, -0.3f, -0.15f, -0.58f, -0.34f, -0.83f) - lineToRelative(-0.12f, -0.14f) - lineToRelative(-0.52f, -0.53f) - horizontalLineToRelative(2.49f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(19.51f, 10.0f) - horizontalLineToRelative(-4.25f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) - lineTo(13.0f, 7.76f) - lineTo(13.0f, 3.5f) - lineTo(7.25f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.42f) - arcToRelative(5.9f, 5.9f, 0.0f, false, false, -1.5f, 0.58f) - verticalLineToRelative(-5.0f) - curveTo(5.0f, 3.01f, 6.0f, 2.0f, 7.25f, 2.0f) - horizontalLineToRelative(5.88f) - close() - moveTo(5.54f, 12.04f) - arcToRelative(3.38f, 3.38f, 0.0f, true, false, 4.79f, 4.78f) - arcToRelative(3.38f, 3.38f, 0.0f, false, false, -4.78f, -4.78f) - close() - moveTo(14.51f, 4.56f) - verticalLineToRelative(3.2f) - curveToRelative(0.0f, 0.37f, 0.28f, 0.69f, 0.65f, 0.74f) - lineTo(18.45f, 8.5f) - lineTo(14.5f, 4.56f) - close() - } - } - return _documentSearch!! - } - -private var _documentSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentSplitHint.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentSplitHint.kt deleted file mode 100644 index 68c1bd84..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentSplitHint.kt +++ /dev/null @@ -1,94 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentSplitHint: ImageVector - get() { - if (_documentSplitHint != null) { - return _documentSplitHint!! - } - _documentSplitHint = fluentIcon(name = "Regular.DocumentSplitHint") { - fluentPath { - moveTo(20.0f, 11.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(18.5f, 10.0f) - lineTo(14.0f, 10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(12.0f, 3.5f) - lineTo(6.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(7.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.17f) - arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.08f, 0.0f) - lineToRelative(0.06f, 0.01f) - curveToRelative(0.22f, 0.02f, 0.43f, 0.06f, 0.63f, 0.14f) - lineToRelative(0.16f, 0.09f) - curveToRelative(0.02f, 0.0f, 0.04f, 0.02f, 0.05f, 0.03f) - lineToRelative(0.05f, 0.02f) - lineToRelative(0.08f, 0.05f) - arcToRelative(2.07f, 2.07f, 0.0f, false, true, 0.3f, 0.25f) - lineToRelative(5.83f, 5.82f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 20.0f, 9.75f) - verticalLineToRelative(1.5f) - close() - moveTo(13.5f, 4.62f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(3.38f) - lineTo(13.5f, 4.62f) - close() - moveTo(4.75f, 13.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(20.0f, 13.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.5f) - close() - moveTo(9.5f, 21.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(5.5f, 19.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - lineTo(4.0f, 20.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(6.0f, 20.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - verticalLineToRelative(-0.75f) - close() - moveTo(19.25f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(18.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - verticalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - } - } - return _documentSplitHint!! - } - -private var _documentSplitHint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentSplitHintOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentSplitHintOff.kt deleted file mode 100644 index 4b55eeeb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentSplitHintOff.kt +++ /dev/null @@ -1,104 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentSplitHintOff: ImageVector - get() { - if (_documentSplitHintOff != null) { - return _documentSplitHintOff!! - } - _documentSplitHintOff = fluentIcon(name = "Regular.DocumentSplitHintOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineTo(4.0f, 5.06f) - verticalLineToRelative(6.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(5.5f, 6.56f) - lineToRelative(13.0f, 13.0f) - lineTo(18.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.8f, -1.14f) - lineToRelative(0.92f, 0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineToRelative(-1.99f, -1.99f) - arcToRelative(0.8f, 0.8f, 0.0f, false, false, -0.02f, -0.02f) - lineTo(3.28f, 2.22f) - close() - moveTo(12.0f, 8.0f) - curveToRelative(0.0f, 0.5f, 0.18f, 0.94f, 0.47f, 1.3f) - lineToRelative(0.24f, 0.23f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 14.0f, 10.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.5f) - lineToRelative(-0.01f, -0.12f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.58f, -1.22f) - lineTo(13.6f, 2.6f) - lineToRelative(-0.05f, -0.04f) - lineToRelative(-0.04f, -0.03f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.3f, -0.23f) - lineToRelative(-0.05f, -0.02f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.7f, 0.12f) - lineTo(6.69f, 3.5f) - lineTo(12.0f, 3.5f) - lineTo(12.0f, 8.0f) - close() - moveTo(13.5f, 4.62f) - lineTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - close() - moveTo(18.5f, 15.32f) - lineTo(19.86f, 16.68f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.14f, -0.44f) - verticalLineToRelative(-2.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.57f) - close() - moveTo(4.75f, 13.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(10.25f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - close() - moveTo(4.75f, 18.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(5.5f, 20.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(6.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _documentSplitHintOff!! - } - -private var _documentSplitHintOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentSync.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentSync.kt deleted file mode 100644 index 57ac207e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentSync.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentSync: ImageVector - get() { - if (_documentSync != null) { - return _documentSync!! - } - _documentSync = fluentIcon(name = "Regular.DocumentSync") { - fluentPath { - moveTo(18.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-5.73f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, 1.5f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(13.6f, 2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.5f) - curveToRelative(0.47f, -0.2f, 0.98f, -0.34f, 1.5f, -0.42f) - lineTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - close() - moveTo(13.5f, 4.62f) - lineTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - close() - moveTo(1.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) - close() - moveTo(9.5f, 14.0f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - verticalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -0.8f, -0.59f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) - verticalLineToRelative(-0.55f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - close() - moveTo(4.0f, 19.95f) - verticalLineToRelative(0.55f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.77f, 0.65f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) - close() - } - } - return _documentSync!! - } - -private var _documentSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTable.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTable.kt deleted file mode 100644 index f73c1316..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTable.kt +++ /dev/null @@ -1,97 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentTable: ImageVector - get() { - if (_documentTable != null) { - return _documentTable!! - } - _documentTable = fluentIcon(name = "Regular.DocumentTable") { - fluentPath { - moveTo(8.75f, 11.5f) - horizontalLineToRelative(6.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-6.5f) - curveTo(7.78f, 19.0f, 7.0f, 18.22f, 7.0f, 17.25f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - close() - moveTo(8.5f, 13.25f) - verticalLineToRelative(1.25f) - lineTo(10.0f, 14.5f) - lineTo(10.0f, 13.0f) - lineTo(8.75f, 13.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - close() - moveTo(8.5f, 16.0f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - lineTo(10.0f, 17.5f) - lineTo(10.0f, 16.0f) - lineTo(8.5f, 16.0f) - close() - moveTo(11.5f, 16.0f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(3.75f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - lineTo(15.5f, 16.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(15.5f, 14.5f) - verticalLineToRelative(-1.25f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - lineTo(11.5f, 13.0f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(4.0f) - close() - moveTo(13.59f, 2.59f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(16.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(13.6f, 2.6f) - close() - moveTo(18.0f, 20.5f) - lineTo(6.0f, 20.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - close() - moveTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - lineToRelative(3.88f, 3.88f) - close() - } - } - return _documentTable!! - } - -private var _documentTable: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTableArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTableArrowRight.kt deleted file mode 100644 index 8ad60220..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTableArrowRight.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentTableArrowRight: ImageVector - get() { - if (_documentTableArrowRight != null) { - return _documentTableArrowRight!! - } - _documentTableArrowRight = fluentIcon(name = "Regular.DocumentTableArrowRight") { - fluentPath { - moveTo(18.0f, 20.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(18.5f, 10.0f) - lineTo(14.0f, 10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(12.0f, 3.5f) - lineTo(6.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(7.08f) - curveToRelative(-0.52f, 0.08f, -1.03f, 0.22f, -1.5f, 0.42f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.17f) - arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.08f, 0.0f) - lineToRelative(0.06f, 0.01f) - curveToRelative(0.22f, 0.02f, 0.43f, 0.06f, 0.63f, 0.14f) - lineToRelative(0.16f, 0.09f) - curveToRelative(0.02f, 0.0f, 0.04f, 0.02f, 0.05f, 0.03f) - lineToRelative(0.05f, 0.02f) - lineToRelative(0.08f, 0.05f) - arcToRelative(2.07f, 2.07f, 0.0f, false, true, 0.3f, 0.25f) - lineToRelative(5.83f, 5.82f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 20.0f, 9.83f) - lineTo(20.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-6.81f) - curveToRelative(0.43f, -0.44f, 0.8f, -0.95f, 1.08f, -1.5f) - lineTo(18.0f, 20.5f) - close() - moveTo(17.38f, 8.5f) - lineTo(13.5f, 4.62f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(3.38f) - close() - moveTo(13.0f, 17.5f) - curveToRelative(0.0f, 0.52f, -0.06f, 1.02f, -0.17f, 1.5f) - horizontalLineToRelative(2.42f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(9.0f, 11.5f) - curveToRelative(0.98f, 0.4f, 1.83f, 1.05f, 2.5f, 1.85f) - lineTo(11.5f, 13.0f) - horizontalLineToRelative(3.75f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.25f) - horizontalLineToRelative(-3.23f) - curveToRelative(0.24f, 0.47f, 0.43f, 0.97f, 0.56f, 1.5f) - horizontalLineToRelative(2.67f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - lineTo(13.0f, 17.5f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(3.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(8.29f, 17.0f) - lineTo(3.5f, 17.0f) - close() - } - } - return _documentTableArrowRight!! - } - -private var _documentTableArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTableCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTableCheckmark.kt deleted file mode 100644 index 3e355c06..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTableCheckmark.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentTableCheckmark: ImageVector - get() { - if (_documentTableCheckmark != null) { - return _documentTableCheckmark!! - } - _documentTableCheckmark = fluentIcon(name = "Regular.DocumentTableCheckmark") { - fluentPath { - moveTo(18.0f, 20.5f) - horizontalLineToRelative(-5.73f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, 1.5f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(13.6f, 2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.5f) - curveToRelative(0.47f, -0.2f, 0.98f, -0.34f, 1.5f, -0.42f) - lineTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - close() - moveTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - lineToRelative(3.88f, 3.88f) - close() - moveTo(13.0f, 17.5f) - curveToRelative(0.0f, 0.52f, -0.06f, 1.02f, -0.17f, 1.5f) - horizontalLineToRelative(2.42f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(9.0f, 11.5f) - curveToRelative(0.98f, 0.4f, 1.83f, 1.05f, 2.5f, 1.85f) - lineTo(11.5f, 13.0f) - horizontalLineToRelative(3.75f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.25f) - horizontalLineToRelative(-3.23f) - curveToRelative(0.24f, 0.47f, 0.43f, 0.97f, 0.56f, 1.5f) - horizontalLineToRelative(2.67f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - lineTo(13.0f, 17.5f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(9.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineTo(5.5f, 18.79f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _documentTableCheckmark!! - } - -private var _documentTableCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTableCube.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTableCube.kt deleted file mode 100644 index 64b2d7c2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTableCube.kt +++ /dev/null @@ -1,110 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentTableCube: ImageVector - get() { - if (_documentTableCube != null) { - return _documentTableCube!! - } - _documentTableCube = fluentIcon(name = "Regular.DocumentTableCube") { - fluentPath { - moveTo(17.0f, 13.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-6.5f) - curveToRelative(-0.42f, 0.0f, -0.8f, 0.15f, -1.1f, 0.4f) - lineTo(9.86f, 13.0f) - lineTo(10.0f, 13.0f) - verticalLineToRelative(0.07f) - lineToRelative(0.6f, 0.3f) - curveToRelative(0.36f, 0.18f, 0.67f, 0.44f, 0.9f, 0.76f) - lineTo(11.5f, 13.0f) - horizontalLineToRelative(3.75f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.25f) - horizontalLineToRelative(-3.78f) - curveToRelative(0.17f, 0.34f, 0.26f, 0.71f, 0.26f, 1.1f) - verticalLineToRelative(0.4f) - horizontalLineToRelative(3.52f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-3.27f) - lineTo(11.98f, 19.0f) - horizontalLineToRelative(3.27f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-4.0f) - close() - moveTo(11.87f, 20.5f) - lineTo(18.0f, 20.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(18.5f, 10.0f) - lineTo(14.0f, 10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(12.0f, 3.5f) - lineTo(6.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(7.4f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -0.64f, 0.22f) - lineToRelative(-0.86f, 0.43f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.17f) - arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.08f, 0.0f) - lineToRelative(0.06f, 0.01f) - curveToRelative(0.22f, 0.02f, 0.43f, 0.06f, 0.63f, 0.14f) - lineToRelative(0.16f, 0.09f) - curveToRelative(0.02f, 0.0f, 0.04f, 0.02f, 0.05f, 0.03f) - lineToRelative(0.05f, 0.02f) - lineToRelative(0.08f, 0.05f) - arcToRelative(2.07f, 2.07f, 0.0f, false, true, 0.3f, 0.25f) - lineToRelative(5.83f, 5.82f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 20.0f, 9.83f) - lineTo(20.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-7.43f) - lineToRelative(0.03f, -0.02f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 1.27f, -1.48f) - close() - moveTo(14.0f, 8.5f) - horizontalLineToRelative(3.38f) - lineTo(13.5f, 4.62f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - close() - moveTo(0.98f, 19.75f) - lineTo(0.98f, 15.6f) - curveToRelative(0.0f, -0.57f, 0.32f, -1.08f, 0.83f, -1.34f) - lineToRelative(3.5f, -1.75f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 1.34f, 0.0f) - lineToRelative(3.5f, 1.75f) - curveToRelative(0.5f, 0.26f, 0.83f, 0.77f, 0.83f, 1.34f) - verticalLineToRelative(4.15f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -0.83f, 1.34f) - lineToRelative(-3.5f, 1.75f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.34f, 0.0f) - lineToRelative(-3.5f, -1.75f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -0.83f, -1.34f) - close() - moveTo(2.53f, 15.7f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.23f, 0.67f) - lineToRelative(2.72f, 1.36f) - verticalLineToRelative(2.95f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-2.95f) - lineToRelative(2.72f, -1.36f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.44f, -0.9f) - lineToRelative(-2.78f, 1.4f) - lineToRelative(-2.78f, -1.4f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.67f, 0.23f) - close() - } - } - return _documentTableCube!! - } - -private var _documentTableCube: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTableSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTableSearch.kt deleted file mode 100644 index d751c756..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTableSearch.kt +++ /dev/null @@ -1,96 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentTableSearch: ImageVector - get() { - if (_documentTableSearch != null) { - return _documentTableSearch!! - } - _documentTableSearch = fluentIcon(name = "Regular.DocumentTableSearch") { - fluentPath { - moveTo(15.25f, 12.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-4.78f) - lineToRelative(-0.04f, -0.05f) - arcToRelative(5.48f, 5.48f, 0.0f, false, false, -0.43f, -5.61f) - verticalLineToRelative(-0.34f) - horizontalLineToRelative(-0.26f) - arcToRelative(5.52f, 5.52f, 0.0f, false, false, -1.67f, -1.36f) - curveToRelative(0.21f, -0.1f, 0.44f, -0.14f, 0.68f, -0.14f) - horizontalLineToRelative(6.5f) - close() - moveTo(11.5f, 16.5f) - lineTo(11.5f, 18.0f) - horizontalLineToRelative(3.75f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - lineTo(15.5f, 16.5f) - horizontalLineToRelative(-4.0f) - close() - moveTo(15.5f, 15.0f) - verticalLineToRelative(-1.25f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - lineTo(11.5f, 13.5f) - lineTo(11.5f, 15.0f) - horizontalLineToRelative(4.0f) - close() - moveTo(18.0f, 21.0f) - horizontalLineToRelative(-6.03f) - lineToRelative(0.52f, 0.51f) - curveToRelative(0.28f, 0.28f, 0.44f, 0.63f, 0.5f, 0.99f) - lineTo(18.0f, 22.5f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 10.33f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(13.6f, 3.1f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.51f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.2f) - curveToRelative(0.48f, -0.13f, 0.98f, -0.2f, 1.5f, -0.2f) - verticalLineToRelative(-7.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - close() - moveTo(17.38f, 9.0f) - lineTo(14.0f, 9.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 5.12f) - lineTo(17.38f, 9.0f) - close() - moveTo(5.5f, 21.5f) - curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) - lineToRelative(2.62f, 2.61f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.61f, -2.61f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, -3.67f, 1.9f) - close() - moveTo(5.5f, 20.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) - close() - } - } - return _documentTableSearch!! - } - -private var _documentTableSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTableTruck.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTableTruck.kt deleted file mode 100644 index 2674465f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTableTruck.kt +++ /dev/null @@ -1,110 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentTableTruck: ImageVector - get() { - if (_documentTableTruck != null) { - return _documentTableTruck!! - } - _documentTableTruck = fluentIcon(name = "Regular.DocumentTableTruck") { - fluentPath { - moveTo(18.0f, 20.5f) - horizontalLineToRelative(-5.01f) - curveToRelative(-0.06f, 0.6f, -0.34f, 1.12f, -0.76f, 1.5f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(13.6f, 2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.0f) - horizontalLineToRelative(1.5f) - lineTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - close() - moveTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - lineToRelative(3.88f, 3.88f) - close() - moveTo(13.0f, 17.5f) - lineTo(13.0f, 19.0f) - horizontalLineToRelative(2.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(9.18f, 11.5f) - curveToRelative(0.47f, 0.34f, 0.81f, 0.83f, 0.97f, 1.4f) - curveToRelative(0.54f, 0.13f, 1.02f, 0.44f, 1.35f, 0.88f) - lineTo(11.5f, 13.0f) - horizontalLineToRelative(3.75f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.25f) - horizontalLineToRelative(-3.6f) - lineToRelative(0.75f, 1.5f) - horizontalLineToRelative(2.85f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - lineTo(13.0f, 17.5f) - close() - moveTo(2.6f, 12.0f) - curveToRelative(-0.88f, 0.0f, -1.6f, 0.72f, -1.6f, 1.6f) - verticalLineToRelative(6.42f) - curveToRelative(0.0f, 0.65f, 0.39f, 1.21f, 0.94f, 1.46f) - arcToRelative(1.83f, 1.83f, 0.0f, false, false, 3.59f, 0.14f) - horizontalLineToRelative(1.03f) - arcToRelative(1.83f, 1.83f, 0.0f, false, false, 3.55f, 0.0f) - horizontalLineToRelative(0.52f) - curveToRelative(0.75f, 0.0f, 1.37f, -0.61f, 1.37f, -1.37f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -0.2f, -0.05f, -0.42f, -0.15f, -0.6f) - lineToRelative(-1.02f, -2.06f) - curveToRelative(-0.23f, -0.46f, -0.7f, -0.76f, -1.23f, -0.76f) - horizontalLineToRelative(-0.35f) - verticalLineToRelative(-0.23f) - curveToRelative(0.0f, -0.88f, -0.72f, -1.6f, -1.6f, -1.6f) - lineTo(2.6f, 12.0f) - close() - moveTo(9.25f, 16.58f) - verticalLineToRelative(-1.83f) - horizontalLineToRelative(0.35f) - curveToRelative(0.17f, 0.0f, 0.33f, 0.1f, 0.41f, 0.25f) - lineToRelative(0.79f, 1.58f) - lineTo(9.25f, 16.58f) - close() - moveTo(2.83f, 21.17f) - arcToRelative(0.92f, 0.92f, 0.0f, true, true, 1.84f, 0.0f) - arcToRelative(0.92f, 0.92f, 0.0f, false, true, -1.84f, 0.0f) - close() - moveTo(8.33f, 22.08f) - arcToRelative(0.92f, 0.92f, 0.0f, true, true, 0.0f, -1.83f) - arcToRelative(0.92f, 0.92f, 0.0f, false, true, 0.0f, 1.83f) - close() - } - } - return _documentTableTruck!! - } - -private var _documentTableTruck: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentText.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentText.kt deleted file mode 100644 index 72f2db73..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentText.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentText: ImageVector - get() { - if (_documentText != null) { - return _documentText!! - } - _documentText = fluentIcon(name = "Regular.DocumentText") { - fluentPath { - moveTo(8.75f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.5f) - close() - moveTo(8.75f, 14.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.5f) - close() - moveTo(8.75f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.5f) - close() - moveTo(13.59f, 2.59f) - lineTo(19.4f, 8.4f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 20.0f, 9.83f) - lineTo(20.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - lineTo(6.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.17f) - arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.08f, 0.0f) - lineToRelative(0.06f, 0.01f) - curveToRelative(0.22f, 0.02f, 0.43f, 0.06f, 0.63f, 0.14f) - lineToRelative(0.16f, 0.09f) - curveToRelative(0.02f, 0.0f, 0.04f, 0.02f, 0.05f, 0.03f) - lineToRelative(0.05f, 0.02f) - lineToRelative(0.08f, 0.05f) - arcToRelative(2.07f, 2.07f, 0.0f, false, true, 0.3f, 0.25f) - close() - moveTo(18.0f, 20.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(18.5f, 10.0f) - lineTo(14.0f, 10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(12.0f, 3.5f) - lineTo(6.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(16.0f) - curveToRelative(0.0f, 0.27f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(12.0f) - close() - moveTo(17.38f, 8.5f) - lineTo(13.5f, 4.62f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(3.38f) - close() - } - } - return _documentText!! - } - -private var _documentText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTextClock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTextClock.kt deleted file mode 100644 index 690205e0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTextClock.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentTextClock: ImageVector - get() { - if (_documentTextClock != null) { - return _documentTextClock!! - } - _documentTextClock = fluentIcon(name = "Regular.DocumentTextClock") { - fluentPath { - moveTo(11.19f, 13.0f) - arcTo(6.51f, 6.51f, 0.0f, false, false, 9.0f, 11.5f) - horizontalLineToRelative(6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.06f) - close() - moveTo(12.13f, 14.25f) - curveToRelative(0.27f, 0.47f, 0.48f, 0.97f, 0.63f, 1.5f) - horizontalLineToRelative(2.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.12f) - close() - moveTo(13.0f, 17.5f) - curveToRelative(0.0f, 0.34f, -0.03f, 0.67f, -0.08f, 1.0f) - horizontalLineToRelative(2.33f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.27f) - lineToRelative(0.02f, 0.5f) - close() - moveTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-5.73f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, 1.5f) - lineTo(18.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(13.6f, 2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.5f) - curveToRelative(0.47f, -0.2f, 0.98f, -0.34f, 1.5f, -0.42f) - lineTo(5.5f, 4.0f) - close() - moveTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - lineToRelative(3.88f, 3.88f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(6.5f, 17.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - lineTo(6.0f, 18.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - verticalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - verticalLineToRelative(2.5f) - close() - } - } - return _documentTextClock!! - } - -private var _documentTextClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTextExtract.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTextExtract.kt deleted file mode 100644 index d866464f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTextExtract.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentTextExtract: ImageVector - get() { - if (_documentTextExtract != null) { - return _documentTextExtract!! - } - _documentTextExtract = fluentIcon(name = "Regular.DocumentTextExtract") { - fluentPath { - moveTo(18.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - lineTo(6.0f, 20.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - verticalLineToRelative(-3.0f) - lineTo(4.0f, 17.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(20.0f, 9.83f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(13.6f, 2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.16f, -0.09f) - curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) - lineTo(6.0f, 2.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(9.0f) - horizontalLineToRelative(1.5f) - lineTo(5.5f, 4.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(6.0f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(10.0f) - close() - moveTo(13.5f, 4.62f) - lineTo(17.38f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.62f) - close() - moveTo(8.75f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.5f) - close() - moveTo(2.75f, 14.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.5f) - close() - moveTo(8.75f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.5f) - close() - } - } - return _documentTextExtract!! - } - -private var _documentTextExtract: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTextLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTextLink.kt deleted file mode 100644 index a065f026..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTextLink.kt +++ /dev/null @@ -1,106 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentTextLink: ImageVector - get() { - if (_documentTextLink != null) { - return _documentTextLink!! - } - _documentTextLink = fluentIcon(name = "Regular.DocumentTextLink") { - fluentPath { - moveTo(18.0f, 20.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(18.5f, 10.0f) - lineTo(14.0f, 10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(12.0f, 3.5f) - lineTo(6.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(10.0f) - horizontalLineToRelative(-0.75f) - curveToRelative(-0.26f, 0.0f, -0.5f, 0.02f, -0.75f, 0.06f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.17f) - arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.08f, 0.0f) - lineToRelative(0.06f, 0.01f) - curveToRelative(0.22f, 0.02f, 0.43f, 0.06f, 0.63f, 0.14f) - lineToRelative(0.16f, 0.09f) - curveToRelative(0.02f, 0.0f, 0.04f, 0.02f, 0.05f, 0.03f) - lineToRelative(0.05f, 0.02f) - lineToRelative(0.08f, 0.05f) - arcToRelative(2.07f, 2.07f, 0.0f, false, true, 0.3f, 0.25f) - lineToRelative(5.83f, 5.82f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 20.0f, 9.83f) - lineTo(20.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-6.29f) - curveToRelative(0.41f, -0.43f, 0.74f, -0.94f, 0.96f, -1.5f) - lineTo(18.0f, 20.5f) - close() - moveTo(17.38f, 8.5f) - lineTo(13.5f, 4.62f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(3.38f) - close() - moveTo(9.78f, 14.25f) - curveToRelative(0.85f, 0.29f, 1.6f, 0.82f, 2.15f, 1.5f) - horizontalLineToRelative(3.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(9.77f, 14.25f) - close() - moveTo(12.66f, 17.0f) - curveToRelative(0.18f, 0.47f, 0.3f, 0.97f, 0.32f, 1.5f) - horizontalLineToRelative(2.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.58f) - close() - moveTo(8.74f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.5f) - close() - moveTo(12.0f, 18.75f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 8.25f, 15.0f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - verticalLineToRelative(-0.01f) - horizontalLineToRelative(0.2f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 12.0f, 18.74f) - close() - moveTo(5.5f, 15.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-0.2f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - lineTo(4.6f, 21.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(9.0f, 18.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - } - } - return _documentTextLink!! - } - -private var _documentTextLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTextToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTextToolbox.kt deleted file mode 100644 index 53b23eb5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentTextToolbox.kt +++ /dev/null @@ -1,123 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentTextToolbox: ImageVector - get() { - if (_documentTextToolbox != null) { - return _documentTextToolbox!! - } - _documentTextToolbox = fluentIcon(name = "Regular.DocumentTextToolbox") { - fluentPath { - moveTo(10.81f, 13.0f) - arcToRelative(2.76f, 2.76f, 0.0f, false, false, -1.41f, -1.5f) - horizontalLineToRelative(5.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.44f) - close() - moveTo(11.59f, 14.25f) - curveToRelative(0.61f, 0.3f, 1.09f, 0.84f, 1.3f, 1.5f) - horizontalLineToRelative(2.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.66f) - close() - moveTo(15.25f, 17.0f) - lineTo(13.0f, 17.0f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(5.5f, 4.0f) - verticalLineToRelative(7.25f) - horizontalLineToRelative(-0.75f) - curveToRelative(-0.26f, 0.0f, -0.51f, 0.04f, -0.75f, 0.1f) - lineTo(4.0f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(6.17f) - arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.08f, 0.0f) - lineToRelative(0.06f, 0.01f) - curveToRelative(0.22f, 0.02f, 0.43f, 0.06f, 0.63f, 0.14f) - lineToRelative(0.16f, 0.09f) - curveToRelative(0.02f, 0.0f, 0.04f, 0.02f, 0.05f, 0.03f) - lineToRelative(0.05f, 0.02f) - lineToRelative(0.08f, 0.05f) - arcToRelative(2.07f, 2.07f, 0.0f, false, true, 0.3f, 0.25f) - lineToRelative(5.83f, 5.82f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 20.0f, 9.83f) - lineTo(20.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-5.05f) - curveToRelative(0.03f, -0.16f, 0.05f, -0.33f, 0.05f, -0.5f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(18.5f, 10.0f) - lineTo(14.0f, 10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(12.0f, 3.5f) - lineTo(6.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - close() - moveTo(17.38f, 8.5f) - lineTo(13.5f, 4.62f) - lineTo(13.5f, 8.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(3.38f) - close() - moveTo(3.0f, 15.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - lineTo(1.0f, 18.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(5.0f, 18.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(9.5f, 18.0f) - lineTo(12.0f, 18.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(10.0f, 15.0f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.5f) - curveTo(3.78f, 12.25f, 3.0f, 13.03f, 3.0f, 14.0f) - verticalLineToRelative(1.0f) - close() - moveTo(4.5f, 14.0f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(1.0f, 21.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - lineTo(12.0f, 19.5f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-8.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 1.0f, 21.5f) - close() - } - } - return _documentTextToolbox!! - } - -private var _documentTextToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentToolbox.kt deleted file mode 100644 index 7e2c0a9e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentToolbox.kt +++ /dev/null @@ -1,97 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentToolbox: ImageVector - get() { - if (_documentToolbox != null) { - return _documentToolbox!! - } - _documentToolbox = fluentIcon(name = "Regular.DocumentToolbox") { - fluentPath { - moveTo(5.5f, 4.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - lineTo(12.0f, 3.5f) - lineTo(12.0f, 8.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(9.75f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(13.0f, 20.5f) - lineTo(13.0f, 22.0f) - horizontalLineToRelative(4.75f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 9.66f) - curveToRelative(0.0f, -0.46f, -0.18f, -0.9f, -0.51f, -1.23f) - lineTo(13.57f, 2.5f) - arcTo(1.75f, 1.75f, 0.0f, false, false, 12.34f, 2.0f) - lineTo(6.25f, 2.0f) - curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) - verticalLineToRelative(8.02f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 5.0f, 12.0f) - horizontalLineToRelative(0.5f) - lineTo(5.5f, 4.25f) - close() - moveTo(17.44f, 8.5f) - lineTo(14.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(13.5f, 4.56f) - lineToRelative(3.94f, 3.94f) - close() - moveTo(4.0f, 16.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(2.0f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - lineTo(9.0f, 16.0f) - horizontalLineToRelative(1.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - lineTo(12.0f, 19.0f) - lineTo(9.0f, 19.0f) - verticalLineToRelative(-0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(0.5f) - lineTo(5.0f, 19.0f) - verticalLineToRelative(-0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(0.5f) - lineTo(1.0f, 19.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - lineTo(4.0f, 16.0f) - close() - moveTo(5.0f, 14.5f) - lineTo(5.0f, 16.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - close() - moveTo(9.0f, 20.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-8.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 1.0f, 21.5f) - lineTo(1.0f, 20.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - lineTo(5.0f, 20.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - lineTo(9.0f, 20.0f) - close() - } - } - return _documentToolbox!! - } - -private var _documentToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentWidth.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentWidth.kt deleted file mode 100644 index 480f780b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DocumentWidth.kt +++ /dev/null @@ -1,105 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DocumentWidth: ImageVector - get() { - if (_documentWidth != null) { - return _documentWidth!! - } - _documentWidth = fluentIcon(name = "Regular.DocumentWidth") { - fluentPath { - moveToRelative(18.5f, 15.72f) - lineToRelative(0.01f, 0.02f) - curveToRelative(0.4f, 0.4f, 0.95f, 0.57f, 1.49f, 0.48f) - verticalLineToRelative(3.53f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - lineTo(6.25f, 22.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(4.0f, 19.75f) - verticalLineToRelative(-3.53f) - curveToRelative(0.49f, 0.08f, 0.98f, -0.05f, 1.36f, -0.37f) - lineToRelative(0.14f, -0.13f) - verticalLineToRelative(4.03f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(11.5f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - verticalLineToRelative(-4.03f) - close() - moveTo(4.78f, 8.97f) - curveToRelative(0.27f, 0.26f, 0.3f, 0.68f, 0.07f, 0.97f) - lineToRelative(-0.07f, 0.09f) - lineToRelative(-1.22f, 1.22f) - horizontalLineToRelative(3.78f) - curveToRelative(0.37f, 0.0f, 0.66f, 0.33f, 0.66f, 0.75f) - curveToRelative(0.0f, 0.38f, -0.25f, 0.7f, -0.57f, 0.74f) - lineTo(3.56f, 12.74f) - lineToRelative(1.22f, 1.23f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-2.37f, -2.37f) - arcTo(0.77f, 0.77f, 0.0f, false, true, 1.0f, 12.0f) - curveToRelative(0.0f, -0.29f, 0.14f, -0.54f, 0.35f, -0.66f) - lineToRelative(2.37f, -2.37f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(19.22f, 8.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.08f) - lineToRelative(0.08f, 0.08f) - lineToRelative(2.37f, 2.36f) - curveToRelative(0.2f, 0.13f, 0.35f, 0.38f, 0.35f, 0.67f) - curveToRelative(0.0f, 0.25f, -0.1f, 0.47f, -0.28f, 0.6f) - lineToRelative(-0.07f, 0.06f) - lineToRelative(-2.37f, 2.37f) - lineToRelative(-0.08f, 0.07f) - curveToRelative(-0.27f, 0.2f, -0.62f, 0.2f, -0.89f, 0.0f) - lineToRelative(-0.1f, -0.07f) - lineToRelative(-0.06f, -0.09f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.01f, -0.88f) - lineToRelative(0.08f, -0.1f) - lineToRelative(1.22f, -1.21f) - horizontalLineToRelative(-3.78f) - lineToRelative(-0.1f, -0.01f) - curveToRelative(-0.31f, -0.05f, -0.56f, -0.37f, -0.56f, -0.74f) - curveToRelative(0.0f, -0.38f, 0.25f, -0.7f, 0.57f, -0.75f) - lineTo(20.44f, 11.25f) - lineToRelative(-1.22f, -1.22f) - lineToRelative(-0.07f, -0.09f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.07f, -0.97f) - close() - moveTo(17.75f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(3.52f) - curveToRelative(-0.47f, -0.07f, -0.97f, 0.06f, -1.36f, 0.38f) - lineToRelative(-0.14f, 0.12f) - lineTo(18.5f, 4.25f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - lineTo(6.25f, 3.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(4.02f) - horizontalLineToRelative(-0.01f) - curveToRelative(-0.4f, -0.41f, -0.96f, -0.58f, -1.5f, -0.5f) - lineTo(4.0f, 4.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(6.25f, 2.0f) - horizontalLineToRelative(11.5f) - close() - } - } - return _documentWidth!! - } - -private var _documentWidth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DoorArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DoorArrowLeft.kt deleted file mode 100644 index 9239fdd9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DoorArrowLeft.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DoorArrowLeft: ImageVector - get() { - if (_doorArrowLeft != null) { - return _doorArrowLeft!! - } - _doorArrowLeft = fluentIcon(name = "Regular.DoorArrowLeft") { - fluentPath { - moveTo(6.25f, 2.0f) - curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) - verticalLineToRelative(15.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(6.56f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, -1.5f) - lineTo(6.25f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(5.5f, 4.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(6.83f) - curveToRelative(0.52f, 0.08f, 1.03f, 0.22f, 1.5f, 0.42f) - lineTo(20.0f, 4.25f) - curveTo(20.0f, 3.01f, 19.0f, 2.0f, 17.75f, 2.0f) - lineTo(6.25f, 2.0f) - close() - moveTo(17.5f, 23.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) - close() - moveTo(21.0f, 17.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-4.8f) - lineToRelative(1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, 0.7f) - lineTo(15.71f, 17.0f) - horizontalLineToRelative(4.79f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - close() - moveTo(8.5f, 13.25f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - close() - } - } - return _doorArrowLeft!! - } - -private var _doorArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DoorTag.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DoorTag.kt deleted file mode 100644 index f97fca9e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DoorTag.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DoorTag: ImageVector - get() { - if (_doorTag != null) { - return _doorTag!! - } - _doorTag = fluentIcon(name = "Regular.DoorTag") { - fluentPath { - moveTo(9.75f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - close() - moveTo(10.8f, 7.1f) - arcTo(1.5f, 1.5f, 0.0f, true, true, 12.0f, 9.5f) - horizontalLineTo(8.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineTo(20.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(8.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - verticalLineTo(8.0f) - arcTo(6.0f, 6.0f, 0.0f, false, false, 7.2f, 4.4f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 3.6f, 2.7f) - close() - moveTo(12.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -2.4f, 1.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.2f, -0.9f) - arcTo(4.5f, 4.5f, 0.0f, false, true, 16.5f, 8.0f) - verticalLineToRelative(12.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineTo(8.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) - close() - } - } - return _doorTag!! - } - -private var _doorTag: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DoubleSwipeDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DoubleSwipeDown.kt deleted file mode 100644 index ef673ead..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DoubleSwipeDown.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DoubleSwipeDown: ImageVector - get() { - if (_doubleSwipeDown != null) { - return _doubleSwipeDown!! - } - _doubleSwipeDown = fluentIcon(name = "Regular.DoubleSwipeDown") { - fluentPath { - moveTo(6.75f, 6.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(12.69f) - lineToRelative(2.22f, -2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-3.5f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-3.5f, -3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) - lineToRelative(0.08f, 0.07f) - lineTo(6.0f, 19.44f) - lineTo(6.0f, 6.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(17.25f, 6.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - verticalLineToRelative(12.79f) - lineToRelative(2.23f, -2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -0.07f) - lineToRelative(0.09f, 0.07f) - curveToRelative(0.26f, 0.27f, 0.29f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-3.5f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-3.5f, -3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -1.13f) - lineToRelative(0.09f, 0.07f) - lineToRelative(2.22f, 2.22f) - lineTo(16.5f, 6.75f) - curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.75f, -0.75f) - close() - moveTo(6.75f, 2.0f) - arcToRelative(4.75f, 4.75f, 0.0f, false, true, 1.75f, 9.17f) - lineTo(8.5f, 9.49f) - arcToRelative(3.25f, 3.25f, 0.0f, true, false, -3.5f, 0.0f) - verticalLineToRelative(1.68f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 6.75f, 2.0f) - close() - moveTo(17.25f, 2.0f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 19.0f, 11.17f) - lineTo(19.0f, 9.49f) - arcToRelative(3.25f, 3.25f, 0.0f, true, false, -3.5f, 0.0f) - verticalLineToRelative(1.68f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 17.25f, 2.0f) - close() - } - } - return _doubleSwipeDown!! - } - -private var _doubleSwipeDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DoubleSwipeUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DoubleSwipeUp.kt deleted file mode 100644 index ecb67387..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DoubleSwipeUp.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DoubleSwipeUp: ImageVector - get() { - if (_doubleSwipeUp != null) { - return _doubleSwipeUp!! - } - _doubleSwipeUp = fluentIcon(name = "Regular.DoubleSwipeUp") { - fluentPath { - moveTo(6.75f, 18.0f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - lineTo(7.5f, 4.56f) - lineToRelative(2.22f, 2.22f) - curveToRelative(0.27f, 0.27f, 0.68f, 0.3f, 0.98f, 0.07f) - lineToRelative(0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.07f, -0.98f) - lineToRelative(-0.07f, -0.08f) - lineToRelative(-3.5f, -3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, -0.07f) - lineToRelative(-0.08f, 0.07f) - lineToRelative(-3.5f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) - lineToRelative(0.08f, -0.07f) - lineTo(6.0f, 4.56f) - verticalLineToRelative(12.69f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - close() - moveTo(17.25f, 18.0f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineTo(17.99f, 4.56f) - lineToRelative(2.23f, 2.22f) - curveToRelative(0.26f, 0.27f, 0.68f, 0.3f, 0.97f, 0.07f) - lineToRelative(0.09f, -0.07f) - curveToRelative(0.26f, -0.27f, 0.29f, -0.68f, 0.07f, -0.98f) - lineToRelative(-0.07f, -0.08f) - lineToRelative(-3.5f, -3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, -0.07f) - lineToRelative(-0.08f, 0.07f) - lineToRelative(-3.5f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.97f, 1.13f) - lineToRelative(0.09f, -0.07f) - lineToRelative(2.22f, -2.22f) - verticalLineToRelative(12.69f) - curveToRelative(0.0f, 0.41f, 0.33f, 0.75f, 0.75f, 0.75f) - close() - moveTo(6.75f, 22.0f) - arcToRelative(4.75f, 4.75f, 0.0f, false, false, 1.75f, -9.17f) - verticalLineToRelative(1.68f) - arcToRelative(3.25f, 3.25f, 0.0f, true, true, -3.5f, 0.0f) - verticalLineToRelative(-1.68f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 6.75f, 22.0f) - close() - moveTo(17.25f, 22.0f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 19.0f, 12.83f) - verticalLineToRelative(1.68f) - arcToRelative(3.25f, 3.25f, 0.0f, true, true, -3.5f, 0.0f) - verticalLineToRelative(-1.68f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 17.25f, 22.0f) - close() - } - } - return _doubleSwipeUp!! - } - -private var _doubleSwipeUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DoubleTapSwipeDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DoubleTapSwipeDown.kt deleted file mode 100644 index 3961a82b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DoubleTapSwipeDown.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DoubleTapSwipeDown: ImageVector - get() { - if (_doubleTapSwipeDown != null) { - return _doubleTapSwipeDown!! - } - _doubleTapSwipeDown = fluentIcon(name = "Regular.DoubleTapSwipeDown") { - fluentPath { - moveTo(12.53f, 21.78f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-3.5f, -3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(2.22f, 2.22f) - lineTo(11.25f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(10.69f) - lineToRelative(2.22f, -2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-3.5f, 3.5f) - close() - moveTo(5.0f, 9.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, false, 5.25f, 6.78f) - verticalLineToRelative(-1.56f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 3.5f, 0.0f) - verticalLineToRelative(1.56f) - arcTo(7.0f, 7.0f, 0.0f, true, false, 5.0f, 9.0f) - close() - moveTo(7.5f, 9.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 2.75f, 4.15f) - verticalLineToRelative(-1.71f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 3.5f, 0.0f) - verticalLineToRelative(1.7f) - arcTo(4.5f, 4.5f, 0.0f, true, false, 7.5f, 9.0f) - close() - } - } - return _doubleTapSwipeDown!! - } - -private var _doubleTapSwipeDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DoubleTapSwipeUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DoubleTapSwipeUp.kt deleted file mode 100644 index 3ce5d313..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DoubleTapSwipeUp.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DoubleTapSwipeUp: ImageVector - get() { - if (_doubleTapSwipeUp != null) { - return _doubleTapSwipeUp!! - } - _doubleTapSwipeUp = fluentIcon(name = "Regular.DoubleTapSwipeUp") { - fluentPath { - moveTo(12.53f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-3.5f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineToRelative(2.22f, -2.22f) - verticalLineToRelative(10.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(12.75f, 4.56f) - lineToRelative(2.22f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-3.5f, -3.5f) - close() - moveTo(5.0f, 15.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, 5.25f, -6.78f) - verticalLineToRelative(1.56f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 3.5f, 0.0f) - lineTo(13.75f, 8.22f) - arcTo(7.0f, 7.0f, 0.0f, true, true, 5.0f, 15.0f) - close() - moveTo(7.5f, 15.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 2.75f, -4.15f) - verticalLineToRelative(1.71f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 3.5f, 0.0f) - verticalLineToRelative(-1.7f) - arcTo(4.5f, 4.5f, 0.0f, true, true, 7.5f, 15.0f) - close() - } - } - return _doubleTapSwipeUp!! - } - -private var _doubleTapSwipeUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Drafts.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Drafts.kt deleted file mode 100644 index 8ad45bf8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Drafts.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Drafts: ImageVector - get() { - if (_drafts != null) { - return _drafts!! - } - _drafts = fluentIcon(name = "Regular.Drafts") { - fluentPath { - moveToRelative(20.88f, 2.83f) - lineToRelative(0.15f, 0.14f) - lineToRelative(0.15f, 0.15f) - arcToRelative(3.58f, 3.58f, 0.0f, false, true, -0.15f, 4.91f) - lineTo(9.06f, 20.0f) - curveToRelative(-0.27f, 0.28f, -0.62f, 0.48f, -1.0f, 0.58f) - lineToRelative(-5.11f, 1.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.92f, -0.93f) - lineToRelative(1.4f, -5.11f) - curveToRelative(0.1f, -0.38f, 0.3f, -0.72f, 0.57f, -1.0f) - lineTo(15.97f, 2.97f) - arcToRelative(3.58f, 3.58f, 0.0f, false, true, 4.9f, -0.14f) - close() - moveTo(15.0f, 6.06f) - lineTo(5.06f, 16.0f) - curveToRelative(-0.09f, 0.1f, -0.16f, 0.2f, -0.19f, 0.33f) - lineToRelative(-1.05f, 3.85f) - lineToRelative(3.85f, -1.05f) - curveToRelative(0.13f, -0.03f, 0.24f, -0.1f, 0.33f, -0.2f) - lineTo(17.94f, 9.0f) - lineTo(15.0f, 6.06f) - close() - moveTo(6.53f, 11.0f) - lineToRelative(-1.5f, 1.5f) - lineTo(2.75f, 12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.78f) - close() - moveTo(10.53f, 7.0f) - lineTo(9.03f, 8.5f) - lineTo(2.75f, 8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(7.78f) - close() - moveTo(17.03f, 4.03f) - lineTo(16.06f, 5.0f) - lineTo(19.0f, 7.94f) - lineToRelative(0.97f, -0.97f) - arcToRelative(2.08f, 2.08f, 0.0f, true, false, -2.94f, -2.94f) - close() - moveTo(14.53f, 3.0f) - lineToRelative(-1.5f, 1.5f) - lineTo(2.75f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(11.78f) - close() - } - } - return _drafts!! - } - -private var _drafts: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Drag.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Drag.kt deleted file mode 100644 index 88859ccf..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Drag.kt +++ /dev/null @@ -1,152 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Drag: ImageVector - get() { - if (_drag != null) { - return _drag!! - } - _drag = fluentIcon(name = "Regular.Drag") { - fluentPath { - moveTo(12.0f, 16.5f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(2.19f) - lineToRelative(0.72f, -0.72f) - curveToRelative(0.27f, -0.27f, 0.68f, -0.3f, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-2.0f, 2.0f) - lineToRelative(-0.04f, 0.04f) - lineToRelative(-0.07f, 0.05f) - lineToRelative(-0.1f, 0.06f) - lineToRelative(-0.08f, 0.03f) - lineToRelative(-0.1f, 0.03f) - horizontalLineToRelative(-0.19f) - lineToRelative(-0.12f, -0.01f) - lineToRelative(-0.07f, -0.02f) - lineToRelative(-0.06f, -0.02f) - lineToRelative(-0.07f, -0.04f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.03f, -0.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.08f, -0.07f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) - lineToRelative(0.08f, 0.07f) - lineToRelative(0.72f, 0.72f) - verticalLineToRelative(-2.19f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - close() - moveTo(12.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) - close() - moveTo(18.72f, 9.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - lineToRelative(2.0f, 2.0f) - lineToRelative(0.04f, 0.04f) - lineToRelative(0.05f, 0.07f) - lineToRelative(0.06f, 0.1f) - lineToRelative(0.03f, 0.08f) - lineToRelative(0.03f, 0.1f) - verticalLineToRelative(0.31f) - lineToRelative(-0.03f, 0.07f) - lineToRelative(-0.02f, 0.06f) - lineToRelative(-0.04f, 0.07f) - lineToRelative(-0.03f, 0.05f) - lineToRelative(-0.03f, 0.04f) - lineToRelative(-0.06f, 0.07f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(0.72f, -0.72f) - horizontalLineToRelative(-2.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineTo(16.51f, 12.0f) - curveToRelative(0.0f, -0.38f, 0.27f, -0.7f, 0.64f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(2.19f) - lineToRelative(-0.72f, -0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - close() - moveTo(4.22f, 9.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-0.72f, 0.72f) - horizontalLineToRelative(2.2f) - curveToRelative(0.37f, 0.0f, 0.68f, 0.28f, 0.73f, 0.65f) - lineToRelative(0.01f, 0.1f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(4.56f, 12.75f) - lineToRelative(0.72f, 0.72f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-2.0f, -2.0f) - lineToRelative(-0.1f, -0.11f) - lineToRelative(-0.05f, -0.1f) - lineToRelative(-0.03f, -0.08f) - lineToRelative(-0.03f, -0.1f) - verticalLineToRelative(-0.19f) - lineToRelative(0.01f, -0.12f) - lineToRelative(0.02f, -0.07f) - lineToRelative(0.02f, -0.06f) - lineToRelative(0.04f, -0.07f) - lineToRelative(0.03f, -0.05f) - lineToRelative(0.02f, -0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.07f, -0.08f) - lineToRelative(2.0f, -2.0f) - close() - moveTo(12.0f, 10.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(11.86f, 2.01f) - horizontalLineToRelative(0.07f) - lineToRelative(0.09f, -0.01f) - horizontalLineToRelative(0.06f) - lineToRelative(0.1f, 0.02f) - lineToRelative(0.06f, 0.02f) - lineToRelative(0.06f, 0.02f) - lineToRelative(0.07f, 0.04f) - lineToRelative(0.05f, 0.03f) - lineToRelative(0.04f, 0.03f) - lineToRelative(0.07f, 0.06f) - lineToRelative(2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-0.72f, -0.72f) - verticalLineToRelative(2.19f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineTo(11.26f, 4.56f) - lineToRelative(-0.73f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(2.0f, -2.0f) - lineToRelative(0.11f, -0.1f) - lineToRelative(0.1f, -0.05f) - lineToRelative(0.08f, -0.03f) - lineToRelative(0.1f, -0.03f) - close() - } - } - return _drag!! - } - -private var _drag: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrawImage.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrawImage.kt deleted file mode 100644 index c49aef61..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrawImage.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DrawImage: ImageVector - get() { - if (_drawImage != null) { - return _drawImage!! - } - _drawImage = fluentIcon(name = "Regular.DrawImage") { - fluentPath { - moveTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(12.28f) - curveToRelative(0.0f, 1.3f, 1.57f, 1.96f, 2.5f, 1.05f) - lineToRelative(4.03f, -3.96f) - lineToRelative(0.02f, -0.02f) - lineToRelative(1.92f, -1.89f) - lineToRelative(0.09f, -0.07f) - curveToRelative(0.29f, -0.2f, 0.7f, -0.18f, 0.96f, 0.07f) - lineToRelative(2.08f, 2.04f) - lineToRelative(1.06f, -1.06f) - lineToRelative(-2.09f, -2.05f) - lineToRelative(-0.12f, -0.11f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.02f, 0.11f) - lineTo(5.97f, 17.0f) - horizontalLineToRelative(0.01f) - lineTo(4.5f, 18.46f) - lineTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.98f) - curveToRelative(0.48f, -0.19f, 1.0f, -0.26f, 1.5f, -0.22f) - lineTo(21.0f, 6.25f) - close() - moveTo(17.5f, 8.75f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, -4.5f, 0.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) - close() - moveTo(14.5f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(13.2f, 18.57f) - lineTo(19.1f, 12.67f) - arcToRelative(2.29f, 2.29f, 0.0f, true, true, 3.23f, 3.23f) - lineToRelative(-5.9f, 5.9f) - curveToRelative(-0.34f, 0.35f, -0.78f, 0.6f, -1.25f, 0.71f) - lineToRelative(-1.83f, 0.46f) - lineToRelative(-0.15f, 0.03f) - curveToRelative(-0.59f, 0.2f, -2.98f, 0.57f, -3.82f, -0.1f) - curveToRelative(-0.58f, -0.44f, -0.47f, -1.33f, -0.22f, -1.81f) - curveToRelative(0.04f, -0.08f, -0.02f, -0.18f, -0.1f, -0.17f) - curveToRelative(-0.67f, 0.1f, -1.25f, 0.45f, -1.83f, 0.8f) - curveToRelative(-0.79f, 0.47f, -1.57f, 0.94f, -2.55f, 0.82f) - arcToRelative(2.08f, 2.08f, 0.0f, false, true, -1.71f, -1.26f) - curveToRelative(-0.1f, -0.21f, 0.18f, -0.4f, 0.38f, -0.29f) - curveToRelative(0.47f, 0.26f, 1.11f, 0.5f, 1.64f, 0.38f) - curveToRelative(0.37f, -0.08f, 0.9f, -0.45f, 1.5f, -0.87f) - curveToRelative(1.06f, -0.76f, 2.33f, -1.65f, 3.28f, -1.27f) - curveToRelative(0.84f, 0.34f, 1.46f, 1.15f, 1.03f, 2.11f) - curveToRelative(-0.05f, 0.12f, 0.0f, 0.27f, 0.13f, 0.3f) - curveToRelative(0.42f, 0.1f, 0.78f, 0.06f, 1.13f, -0.1f) - lineToRelative(0.43f, -1.72f) - curveToRelative(0.12f, -0.47f, 0.36f, -0.9f, 0.7f, -1.25f) - close() - } - } - return _drawImage!! - } - -private var _drawImage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrawShape.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrawShape.kt deleted file mode 100644 index dff60685..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrawShape.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DrawShape: ImageVector - get() { - if (_drawShape != null) { - return _drawShape!! - } - _drawShape = fluentIcon(name = "Regular.DrawShape") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-13.0f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.98f) - curveToRelative(0.48f, -0.19f, 1.0f, -0.26f, 1.5f, -0.22f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(13.2f, 18.57f) - lineTo(19.1f, 12.67f) - arcToRelative(2.29f, 2.29f, 0.0f, true, true, 3.23f, 3.23f) - lineToRelative(-5.9f, 5.9f) - curveToRelative(-0.34f, 0.35f, -0.78f, 0.6f, -1.25f, 0.71f) - lineToRelative(-1.83f, 0.46f) - lineToRelative(-0.15f, 0.03f) - curveToRelative(-0.59f, 0.2f, -2.98f, 0.57f, -3.82f, -0.1f) - curveToRelative(-0.58f, -0.44f, -0.47f, -1.33f, -0.22f, -1.81f) - curveToRelative(0.04f, -0.08f, -0.02f, -0.18f, -0.1f, -0.17f) - curveToRelative(-0.67f, 0.1f, -1.25f, 0.45f, -1.83f, 0.8f) - curveToRelative(-0.79f, 0.47f, -1.57f, 0.94f, -2.55f, 0.82f) - arcToRelative(2.08f, 2.08f, 0.0f, false, true, -1.71f, -1.26f) - curveToRelative(-0.1f, -0.21f, 0.18f, -0.4f, 0.38f, -0.29f) - curveToRelative(0.47f, 0.26f, 1.11f, 0.5f, 1.64f, 0.38f) - curveToRelative(0.37f, -0.08f, 0.9f, -0.45f, 1.5f, -0.87f) - curveToRelative(1.06f, -0.76f, 2.33f, -1.65f, 3.28f, -1.27f) - curveToRelative(0.84f, 0.34f, 1.46f, 1.15f, 1.03f, 2.11f) - curveToRelative(-0.05f, 0.12f, 0.0f, 0.27f, 0.13f, 0.3f) - curveToRelative(0.42f, 0.1f, 0.78f, 0.06f, 1.13f, -0.1f) - lineToRelative(0.43f, -1.72f) - curveToRelative(0.12f, -0.47f, 0.36f, -0.9f, 0.7f, -1.25f) - close() - } - } - return _drawShape!! - } - -private var _drawShape: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrawText.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrawText.kt deleted file mode 100644 index fc75c8c6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrawText.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DrawText: ImageVector - get() { - if (_drawText != null) { - return _drawText!! - } - _drawText = fluentIcon(name = "Regular.DrawText") { - fluentPath { - moveTo(10.0f, 5.71f) - lineTo(7.23f, 13.5f) - horizontalLineToRelative(5.53f) - lineTo(10.0f, 5.71f) - close() - moveTo(13.57f, 15.78f) - lineTo(13.3f, 15.0f) - lineTo(6.7f, 15.0f) - lineToRelative(-1.24f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.42f, -0.5f) - lineTo(9.16f, 3.6f) - arcToRelative(0.89f, 0.89f, 0.0f, false, true, 1.68f, 0.0f) - lineToRelative(3.9f, 11.0f) - lineToRelative(-1.17f, 1.18f) - close() - moveTo(5.0f, 20.38f) - curveToRelative(-0.53f, 0.11f, -1.17f, -0.13f, -1.64f, -0.39f) - curveToRelative(-0.2f, -0.1f, -0.48f, 0.08f, -0.38f, 0.3f) - curveToRelative(0.24f, 0.52f, 0.73f, 1.12f, 1.7f, 1.25f) - curveToRelative(0.99f, 0.12f, 1.77f, -0.35f, 2.56f, -0.82f) - curveToRelative(0.58f, -0.35f, 1.16f, -0.7f, 1.82f, -0.8f) - curveToRelative(0.09f, -0.01f, 0.15f, 0.1f, 0.1f, 0.17f) - curveToRelative(-0.24f, 0.48f, -0.35f, 1.37f, 0.22f, 1.82f) - curveToRelative(0.85f, 0.66f, 3.24f, 0.29f, 3.83f, 0.09f) - lineToRelative(0.15f, -0.03f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - lineToRelative(-5.9f, 5.9f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.44f, 1.71f) - curveToRelative(-0.35f, 0.17f, -0.7f, 0.2f, -1.13f, 0.1f) - curveToRelative(-0.13f, -0.02f, -0.18f, -0.17f, -0.13f, -0.29f) - curveToRelative(0.43f, -0.96f, -0.19f, -1.77f, -1.03f, -2.11f) - curveToRelative(-0.95f, -0.38f, -2.22f, 0.51f, -3.29f, 1.27f) - curveToRelative(-0.6f, 0.42f, -1.12f, 0.8f, -1.5f, 0.87f) - close() - } - } - return _drawText!! - } - -private var _drawText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrawerAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrawerAdd.kt deleted file mode 100644 index 3f3dab2d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrawerAdd.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DrawerAdd: ImageVector - get() { - if (_drawerAdd != null) { - return _drawerAdd!! - } - _drawerAdd = fluentIcon(name = "Regular.DrawerAdd") { - fluentPath { - moveTo(22.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(17.0f, 7.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(16.0f, 7.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(16.0f, 6.0f) - lineTo(16.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - lineTo(17.0f, 6.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(17.0f, 7.0f) - close() - moveTo(21.0f, 11.19f) - curveToRelative(-0.44f, 0.43f, -0.95f, 0.8f, -1.5f, 1.08f) - lineTo(19.5f, 14.0f) - horizontalLineToRelative(-4.56f) - arcToRelative(0.7f, 0.7f, 0.0f, false, false, -0.69f, 0.7f) - verticalLineToRelative(0.05f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) - verticalLineToRelative(-0.06f) - arcToRelative(0.7f, 0.7f, 0.0f, false, false, -0.7f, -0.69f) - lineTo(4.5f, 14.0f) - lineTo(4.5f, 9.5f) - horizontalLineToRelative(6.23f) - arcToRelative(6.46f, 6.46f, 0.0f, false, true, -0.56f, -1.5f) - lineTo(4.5f, 8.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(3.83f) - curveToRelative(0.08f, -0.52f, 0.22f, -1.03f, 0.42f, -1.5f) - lineTo(6.25f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 7.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 20.55f, 4.46f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-7.56f) - close() - moveTo(19.5f, 15.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(6.25f, 20.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 15.5f) - horizontalLineToRelative(3.83f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 7.35f, 0.0f) - horizontalLineToRelative(3.82f) - close() - } - } - return _drawerAdd!! - } - -private var _drawerAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrawerArrowDownload.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrawerArrowDownload.kt deleted file mode 100644 index c61ef1f0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrawerArrowDownload.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DrawerArrowDownload: ImageVector - get() { - if (_drawerArrowDownload != null) { - return _drawerArrowDownload!! - } - _drawerArrowDownload = fluentIcon(name = "Regular.DrawerArrowDownload") { - fluentPath { - moveTo(11.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 5.0f, -5.48f) - lineTo(16.0f, 6.8f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.5f, 2.5f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineTo(17.0f, 6.79f) - lineTo(17.0f, 1.02f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -6.0f, 5.48f) - close() - moveTo(19.5f, 9.5f) - arcTo(0.5f, 0.5f, 0.0f, false, false, 19.0f, 9.0f) - horizontalLineToRelative(-5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - close() - moveTo(21.0f, 11.2f) - curveToRelative(-0.44f, 0.42f, -0.95f, 0.78f, -1.5f, 1.07f) - lineTo(19.5f, 14.0f) - horizontalLineToRelative(-4.56f) - arcToRelative(0.7f, 0.7f, 0.0f, false, false, -0.69f, 0.7f) - verticalLineToRelative(0.05f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) - verticalLineToRelative(-0.06f) - arcToRelative(0.7f, 0.7f, 0.0f, false, false, -0.7f, -0.69f) - lineTo(4.5f, 14.0f) - lineTo(4.5f, 9.5f) - horizontalLineToRelative(6.23f) - arcToRelative(6.46f, 6.46f, 0.0f, false, true, -0.56f, -1.5f) - lineTo(4.5f, 8.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(3.83f) - curveToRelative(0.08f, -0.52f, 0.22f, -1.02f, 0.42f, -1.5f) - lineTo(6.25f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 7.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 20.55f, 4.46f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.45f, 3.25f, -3.25f) - lineTo(21.0f, 11.2f) - close() - moveTo(19.5f, 15.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(6.25f, 20.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 15.5f) - horizontalLineToRelative(3.83f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 7.35f, 0.0f) - horizontalLineToRelative(3.82f) - close() - } - } - return _drawerArrowDownload!! - } - -private var _drawerArrowDownload: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrawerDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrawerDismiss.kt deleted file mode 100644 index 880b95d6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrawerDismiss.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DrawerDismiss: ImageVector - get() { - if (_drawerDismiss != null) { - return _drawerDismiss!! - } - _drawerDismiss = fluentIcon(name = "Regular.DrawerDismiss") { - fluentPath { - moveTo(22.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.85f, 4.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineTo(17.21f, 6.5f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineTo(16.5f, 5.79f) - lineToRelative(-1.65f, -1.64f) - close() - moveTo(21.0f, 11.19f) - curveToRelative(-0.44f, 0.43f, -0.95f, 0.8f, -1.5f, 1.08f) - lineTo(19.5f, 14.0f) - horizontalLineToRelative(-4.56f) - arcToRelative(0.7f, 0.7f, 0.0f, false, false, -0.69f, 0.7f) - verticalLineToRelative(0.05f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) - verticalLineToRelative(-0.06f) - arcToRelative(0.7f, 0.7f, 0.0f, false, false, -0.7f, -0.69f) - lineTo(4.5f, 14.0f) - lineTo(4.5f, 9.5f) - horizontalLineToRelative(6.23f) - arcToRelative(6.46f, 6.46f, 0.0f, false, true, -0.56f, -1.5f) - lineTo(4.5f, 8.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(3.83f) - curveToRelative(0.08f, -0.52f, 0.22f, -1.03f, 0.42f, -1.5f) - lineTo(6.25f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 7.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 20.55f, 4.46f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-7.56f) - close() - moveTo(19.5f, 15.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(6.25f, 20.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 15.5f) - horizontalLineToRelative(3.83f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 7.35f, 0.0f) - horizontalLineToRelative(3.82f) - close() - } - } - return _drawerDismiss!! - } - -private var _drawerDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrawerPlay.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrawerPlay.kt deleted file mode 100644 index 4dd46f9e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrawerPlay.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DrawerPlay: ImageVector - get() { - if (_drawerPlay != null) { - return _drawerPlay!! - } - _drawerPlay = fluentIcon(name = "Regular.DrawerPlay") { - fluentPath { - moveTo(22.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.0f, 8.61f) - curveToRelative(0.0f, 0.4f, 0.42f, 0.63f, 0.76f, 0.43f) - lineToRelative(3.53f, -2.11f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.86f) - lineToRelative(-3.53f, -2.12f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.76f, 0.43f) - verticalLineToRelative(4.23f) - close() - moveTo(21.0f, 11.19f) - curveToRelative(-0.44f, 0.43f, -0.95f, 0.8f, -1.5f, 1.08f) - lineTo(19.5f, 14.0f) - horizontalLineToRelative(-4.56f) - arcToRelative(0.7f, 0.7f, 0.0f, false, false, -0.69f, 0.7f) - verticalLineToRelative(0.05f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) - verticalLineToRelative(-0.06f) - arcToRelative(0.7f, 0.7f, 0.0f, false, false, -0.7f, -0.69f) - lineTo(4.5f, 14.0f) - lineTo(4.5f, 9.5f) - horizontalLineToRelative(6.23f) - arcToRelative(6.46f, 6.46f, 0.0f, false, true, -0.56f, -1.5f) - lineTo(4.5f, 8.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(3.83f) - curveToRelative(0.08f, -0.52f, 0.22f, -1.03f, 0.42f, -1.5f) - lineTo(6.25f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 7.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 20.55f, 4.46f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-7.56f) - close() - moveTo(19.5f, 15.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(6.25f, 20.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 15.5f) - horizontalLineToRelative(3.83f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 7.35f, 0.0f) - horizontalLineToRelative(3.82f) - close() - } - } - return _drawerPlay!! - } - -private var _drawerPlay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrawerSubtract.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrawerSubtract.kt deleted file mode 100644 index 3587d6c0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrawerSubtract.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DrawerSubtract: ImageVector - get() { - if (_drawerSubtract != null) { - return _drawerSubtract!! - } - _drawerSubtract = fluentIcon(name = "Regular.DrawerSubtract") { - fluentPath { - moveTo(22.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(13.5f, 7.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineToRelative(6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-6.0f) - close() - moveTo(21.0f, 11.19f) - curveToRelative(-0.44f, 0.43f, -0.95f, 0.8f, -1.5f, 1.08f) - lineTo(19.5f, 14.0f) - horizontalLineToRelative(-4.56f) - arcToRelative(0.7f, 0.7f, 0.0f, false, false, -0.69f, 0.7f) - verticalLineToRelative(0.05f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) - verticalLineToRelative(-0.06f) - arcToRelative(0.7f, 0.7f, 0.0f, false, false, -0.7f, -0.69f) - lineTo(4.5f, 14.0f) - lineTo(4.5f, 9.5f) - horizontalLineToRelative(6.23f) - arcToRelative(6.46f, 6.46f, 0.0f, false, true, -0.56f, -1.5f) - lineTo(4.5f, 8.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(3.83f) - curveToRelative(0.08f, -0.52f, 0.22f, -1.03f, 0.42f, -1.5f) - lineTo(6.25f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 7.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 20.55f, 4.46f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-7.56f) - close() - moveTo(19.5f, 15.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(6.25f, 20.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 15.5f) - horizontalLineToRelative(3.83f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 7.35f, 0.0f) - horizontalLineToRelative(3.82f) - close() - } - } - return _drawerSubtract!! - } - -private var _drawerSubtract: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrinkBeer.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrinkBeer.kt deleted file mode 100644 index e6a74e99..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrinkBeer.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DrinkBeer: ImageVector - get() { - if (_drinkBeer != null) { - return _drinkBeer!! - } - _drinkBeer = fluentIcon(name = "Regular.DrinkBeer") { - fluentPath { - moveTo(8.5f, 10.0f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 7.0f, 10.0f) - verticalLineToRelative(7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-7.0f) - close() - moveTo(11.5f, 10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-7.0f) - close() - moveTo(14.5f, 10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-7.0f) - close() - moveTo(4.0f, 5.25f) - curveTo(4.0f, 3.45f, 5.46f, 2.0f, 7.25f, 2.0f) - horizontalLineToRelative(7.0f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - lineTo(17.5f, 6.0f) - horizontalLineToRelative(1.25f) - curveTo(20.55f, 6.0f, 22.0f, 7.46f, 22.0f, 9.25f) - verticalLineToRelative(5.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(17.5f, 18.0f) - verticalLineToRelative(1.75f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-9.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 5.25f) - close() - moveTo(16.0f, 7.5f) - lineTo(5.5f, 7.5f) - verticalLineToRelative(12.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(9.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(16.0f, 7.5f) - close() - moveTo(17.5f, 16.5f) - horizontalLineToRelative(1.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-5.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(17.5f, 7.5f) - verticalLineToRelative(9.0f) - close() - moveTo(16.0f, 5.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-7.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(5.5f, 6.0f) - lineTo(16.0f, 6.0f) - verticalLineToRelative(-0.75f) - close() - } - } - return _drinkBeer!! - } - -private var _drinkBeer: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrinkCoffee.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrinkCoffee.kt deleted file mode 100644 index 6552172a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrinkCoffee.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DrinkCoffee: ImageVector - get() { - if (_drinkCoffee != null) { - return _drinkCoffee!! - } - _drinkCoffee = fluentIcon(name = "Regular.DrinkCoffee") { - fluentPath { - moveTo(5.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - curveToRelative(0.0f, 1.27f, 0.93f, 1.92f, 1.5f, 2.32f) - lineToRelative(0.07f, 0.04f) - curveToRelative(0.68f, 0.48f, 0.93f, 0.7f, 0.93f, 1.14f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - curveToRelative(0.0f, -1.27f, -0.93f, -1.92f, -1.5f, -2.32f) - lineToRelative(-0.07f, -0.04f) - curveToRelative(-0.68f, -0.48f, -0.93f, -0.7f, -0.93f, -1.14f) - close() - moveTo(3.0f, 9.82f) - curveTo(3.0f, 8.82f, 3.82f, 8.0f, 4.82f, 8.0f) - horizontalLineToRelative(12.36f) - curveToRelative(1.0f, 0.0f, 1.82f, 0.82f, 1.82f, 1.82f) - verticalLineToRelative(0.68f) - horizontalLineToRelative(0.75f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, 6.5f) - horizontalLineToRelative(-1.33f) - arcTo(8.0f, 8.0f, 0.0f, false, true, 3.0f, 14.0f) - lineTo(3.0f, 9.82f) - close() - moveTo(17.5f, 9.82f) - arcToRelative(0.32f, 0.32f, 0.0f, false, false, -0.32f, -0.32f) - lineTo(4.82f, 9.5f) - arcToRelative(0.32f, 0.32f, 0.0f, false, false, -0.32f, 0.32f) - lineTo(4.5f, 14.0f) - arcToRelative(6.5f, 6.5f, 0.0f, true, false, 13.0f, 0.0f) - lineTo(17.5f, 9.82f) - close() - moveTo(19.75f, 12.0f) - lineTo(19.0f, 12.0f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.51f, -0.05f, 1.01f, -0.14f, 1.5f) - horizontalLineToRelative(0.89f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, -3.5f) - close() - moveTo(8.75f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - curveToRelative(0.0f, 0.43f, 0.25f, 0.66f, 0.93f, 1.14f) - lineToRelative(0.06f, 0.04f) - curveToRelative(0.58f, 0.4f, 1.51f, 1.05f, 1.51f, 2.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - curveToRelative(0.0f, -0.43f, -0.25f, -0.66f, -0.93f, -1.14f) - lineToRelative(-0.06f, -0.04f) - curveTo(8.93f, 4.67f, 8.0f, 4.02f, 8.0f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(13.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - curveToRelative(0.0f, 1.27f, 0.93f, 1.92f, 1.5f, 2.32f) - lineToRelative(0.07f, 0.04f) - curveToRelative(0.68f, 0.48f, 0.93f, 0.7f, 0.93f, 1.14f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - curveToRelative(0.0f, -1.27f, -0.93f, -1.92f, -1.5f, -2.32f) - lineToRelative(-0.07f, -0.04f) - curveToRelative(-0.68f, -0.48f, -0.93f, -0.7f, -0.93f, -1.14f) - close() - } - } - return _drinkCoffee!! - } - -private var _drinkCoffee: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrinkMargarita.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrinkMargarita.kt deleted file mode 100644 index ac4ee3ad..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrinkMargarita.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DrinkMargarita: ImageVector - get() { - if (_drinkMargarita != null) { - return _drinkMargarita!! - } - _drinkMargarita = fluentIcon(name = "Regular.DrinkMargarita") { - fluentPath { - moveTo(19.87f, 3.49f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.24f, -1.48f) - lineToRelative(-6.0f, 1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.62f, 0.6f) - lineTo(12.73f, 5.0f) - lineTo(5.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 3.0f, 3.24f) - verticalLineToRelative(0.51f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.25f, 3.93f) - verticalLineToRelative(3.07f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.5f) - verticalLineToRelative(-3.07f) - arcTo(4.0f, 4.0f, 0.0f, false, false, 16.0f, 13.5f) - lineTo(16.0f, 13.0f) - curveToRelative(1.68f, -0.14f, 3.0f, -1.54f, 3.0f, -3.25f) - verticalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.99f) - lineToRelative(0.12f, -0.6f) - lineToRelative(5.5f, -0.91f) - close() - moveTo(17.5f, 8.0f) - horizontalLineToRelative(-3.84f) - lineToRelative(0.3f, -1.5f) - horizontalLineToRelative(3.54f) - lineTo(17.5f, 8.0f) - close() - moveTo(13.36f, 9.5f) - horizontalLineToRelative(4.14f) - verticalLineToRelative(0.25f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(1.25f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) - verticalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(6.5f, 9.5f) - horizontalLineToRelative(5.34f) - lineTo(11.0f, 13.6f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.48f, 0.3f) - lineToRelative(0.87f, -4.4f) - close() - moveTo(12.14f, 8.0f) - lineTo(6.5f, 8.0f) - lineTo(6.5f, 6.5f) - horizontalLineToRelative(5.94f) - lineToRelative(-0.3f, 1.5f) - close() - } - } - return _drinkMargarita!! - } - -private var _drinkMargarita: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrinkToGo.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrinkToGo.kt deleted file mode 100644 index a0cd58bb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrinkToGo.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DrinkToGo: ImageVector - get() { - if (_drinkToGo != null) { - return _drinkToGo!! - } - _drinkToGo = fluentIcon(name = "Regular.DrinkToGo") { - fluentPath { - moveTo(15.72f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) - lineTo(15.56f, 4.5f) - horizontalLineToRelative(2.2f) - curveToRelative(0.3f, 0.0f, 0.59f, 0.2f, 0.7f, 0.5f) - lineToRelative(1.25f, 3.5f) - curveToRelative(0.17f, 0.49f, -0.2f, 1.0f, -0.7f, 1.0f) - horizontalLineToRelative(-1.05f) - lineToRelative(-1.6f, 10.05f) - arcTo(2.89f, 2.89f, 0.0f, false, true, 13.4f, 22.0f) - horizontalLineToRelative(-2.8f) - curveToRelative(-1.5f, 0.0f, -2.76f, -0.99f, -2.97f, -2.44f) - lineTo(6.05f, 9.5f) - lineTo(5.0f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, -1.0f) - lineTo(5.53f, 5.0f) - curveToRelative(0.11f, -0.3f, 0.4f, -0.5f, 0.71f, -0.5f) - horizontalLineToRelative(7.19f) - lineToRelative(2.28f, -2.28f) - close() - moveTo(16.44f, 9.5f) - lineTo(7.56f, 9.5f) - lineToRelative(1.56f, 9.84f) - curveToRelative(0.1f, 0.7f, 0.69f, 1.16f, 1.48f, 1.16f) - horizontalLineToRelative(2.8f) - curveToRelative(0.8f, 0.0f, 1.38f, -0.47f, 1.49f, -1.17f) - lineToRelative(1.55f, -9.83f) - close() - moveTo(17.22f, 6.0f) - lineTo(6.78f, 6.0f) - lineToRelative(-0.72f, 2.0f) - horizontalLineToRelative(11.88f) - lineToRelative(-0.72f, -2.0f) - close() - } - } - return _drinkToGo!! - } - -private var _drinkToGo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrinkWine.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrinkWine.kt deleted file mode 100644 index fe52ed20..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DrinkWine.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DrinkWine: ImageVector - get() { - if (_drinkWine != null) { - return _drinkWine!! - } - _drinkWine = fluentIcon(name = "Regular.DrinkWine") { - fluentPath { - moveTo(15.93f, 9.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.47f, -0.28f) - arcToRelative(2.48f, 2.48f, 0.0f, false, true, -1.95f, 1.98f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.31f, 1.47f) - arcToRelative(3.98f, 3.98f, 0.0f, false, false, 3.1f, -3.17f) - close() - moveTo(6.0f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(10.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 3.2f, -2.4f, 5.83f, -5.5f, 6.2f) - verticalLineToRelative(5.06f) - lineToRelative(2.75f, -0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineToRelative(-3.5f, 0.01f) - lineToRelative(-3.0f, -0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(11.0f, 20.5f) - verticalLineToRelative(-5.05f) - arcToRelative(5.75f, 5.75f, 0.0f, false, true, -5.0f, -5.7f) - verticalLineToRelative(-7.0f) - close() - moveTo(7.5f, 3.5f) - verticalLineToRelative(2.75f) - horizontalLineToRelative(9.0f) - lineTo(16.5f, 3.5f) - horizontalLineToRelative(-9.0f) - close() - moveTo(7.5f, 9.75f) - curveTo(7.5f, 12.1f, 9.4f, 14.0f, 11.75f, 14.0f) - arcToRelative(4.75f, 4.75f, 0.0f, false, false, 4.75f, -4.75f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(-9.0f) - verticalLineToRelative(2.0f) - close() - } - } - return _drinkWine!! - } - -private var _drinkWine: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DriveTrain.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DriveTrain.kt deleted file mode 100644 index 11fddfbb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DriveTrain.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DriveTrain: ImageVector - get() { - if (_driveTrain != null) { - return _driveTrain!! - } - _driveTrain = fluentIcon(name = "Regular.DriveTrain") { - fluentPath { - moveTo(5.5f, 3.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 3.0f, 5.5f) - verticalLineToRelative(3.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 5.0f, 0.0f) - lineTo(8.0f, 8.0f) - horizontalLineToRelative(2.27f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.98f, 0.85f) - verticalLineToRelative(6.3f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.98f, 0.85f) - lineTo(8.0f, 16.0f) - verticalLineToRelative(-0.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) - verticalLineToRelative(3.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 5.0f, 0.0f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(2.06f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 3.88f, 0.0f) - lineTo(16.0f, 17.5f) - verticalLineToRelative(1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 5.0f, 0.0f) - verticalLineToRelative(-3.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) - verticalLineToRelative(0.5f) - horizontalLineToRelative(-2.27f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.98f, -0.85f) - verticalLineToRelative(-6.3f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.98f, -0.85f) - lineTo(16.0f, 8.0f) - verticalLineToRelative(0.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 5.0f, 0.0f) - verticalLineToRelative(-3.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-2.06f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -3.88f, 0.0f) - lineTo(8.0f, 6.5f) - verticalLineToRelative(-1.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 5.5f, 3.0f) - close() - moveTo(4.5f, 5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - verticalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - verticalLineToRelative(-3.0f) - close() - moveTo(5.5f, 14.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(17.5f, 5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-3.0f) - close() - moveTo(18.5f, 14.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - verticalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - } - } - return _driveTrain!! - } - -private var _driveTrain: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Drop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Drop.kt deleted file mode 100644 index bfe2fdc7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Drop.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Drop: ImageVector - get() { - if (_drop != null) { - return _drop!! - } - _drop = fluentIcon(name = "Regular.Drop") { - fluentPath { - moveTo(11.47f, 2.22f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - curveToRelative(0.4f, 0.4f, 2.0f, 2.13f, 3.5f, 4.36f) - curveTo(17.5f, 8.78f, 19.0f, 11.63f, 19.0f, 14.25f) - curveToRelative(0.0f, 2.52f, -0.75f, 4.48f, -2.04f, 5.8f) - arcTo(6.78f, 6.78f, 0.0f, false, true, 12.0f, 22.0f) - arcToRelative(6.78f, 6.78f, 0.0f, false, true, -4.96f, -1.94f) - curveTo(5.74f, 18.73f, 5.0f, 16.77f, 5.0f, 14.25f) - curveToRelative(0.0f, -2.62f, 1.5f, -5.46f, 2.97f, -7.67f) - curveToRelative(1.5f, -2.23f, 3.1f, -3.96f, 3.5f, -4.36f) - close() - moveTo(9.22f, 7.42f) - curveToRelative(-1.46f, 2.17f, -2.72f, 4.7f, -2.72f, 6.83f) - curveToRelative(0.0f, 2.23f, 0.65f, 3.77f, 1.62f, 4.76f) - curveToRelative(0.96f, 0.98f, 2.32f, 1.49f, 3.88f, 1.49f) - reflectiveCurveToRelative(2.92f, -0.5f, 3.88f, -1.5f) - curveToRelative(0.97f, -0.98f, 1.62f, -2.52f, 1.62f, -4.75f) - curveToRelative(0.0f, -2.13f, -1.26f, -4.66f, -2.72f, -6.83f) - arcTo(33.36f, 33.36f, 0.0f, false, false, 12.0f, 3.85f) - curveToRelative(-0.65f, 0.73f, -1.74f, 2.02f, -2.78f, 3.57f) - close() - } - } - return _drop!! - } - -private var _drop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreen.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreen.kt deleted file mode 100644 index a7abe3ad..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreen.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DualScreen: ImageVector - get() { - if (_dualScreen != null) { - return _dualScreen!! - } - _dualScreen = fluentIcon(name = "Regular.DualScreen") { - fluentPath { - moveTo(12.75f, 4.0f) - horizontalLineToRelative(7.5f) - curveTo(21.2f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.96f, -0.79f, 1.75f, -1.75f, 1.75f) - lineTo(3.75f, 20.0f) - curveTo(2.78f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) - lineTo(2.0f, 5.75f) - curveTo(2.0f, 4.78f, 2.78f, 4.0f, 3.75f, 4.0f) - horizontalLineToRelative(9.0f) - close() - moveTo(20.25f, 5.5f) - horizontalLineToRelative(-7.5f) - verticalLineToRelative(13.0f) - horizontalLineToRelative(7.5f) - curveToRelative(0.13f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - lineTo(20.5f, 5.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(11.25f, 5.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.13f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(7.5f) - verticalLineToRelative(-13.0f) - close() - moveTo(14.74f, 15.5f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(1.6f) - horizontalLineToRelative(-1.5f) - close() - moveTo(7.74f, 15.5f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(1.6f) - horizontalLineToRelative(-1.5f) - close() - } - } - return _dualScreen!! - } - -private var _dualScreen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenAdd.kt deleted file mode 100644 index 59d1863b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenAdd.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DualScreenAdd: ImageVector - get() { - if (_dualScreenAdd != null) { - return _dualScreenAdd!! - } - _dualScreenAdd = fluentIcon(name = "Regular.DualScreenAdd") { - fluentPath { - moveTo(10.02f, 6.0f) - arcToRelative(6.63f, 6.63f, 0.0f, false, false, 0.06f, 1.5f) - lineTo(3.75f, 7.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.13f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(7.5f) - lineTo(11.25f, 10.33f) - curveToRelative(0.41f, 0.57f, 0.92f, 1.07f, 1.5f, 1.48f) - verticalLineToRelative(8.69f) - horizontalLineToRelative(7.5f) - curveToRelative(0.13f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-8.62f) - arcTo(6.53f, 6.53f, 0.0f, false, false, 22.0f, 9.97f) - verticalLineToRelative(10.28f) - curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) - lineTo(3.75f, 22.0f) - curveTo(2.78f, 22.0f, 2.0f, 21.2f, 2.0f, 20.25f) - lineTo(2.0f, 7.75f) - curveTo(2.0f, 6.78f, 2.78f, 6.0f, 3.75f, 6.0f) - horizontalLineToRelative(6.27f) - close() - moveTo(16.24f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(1.6f) - close() - moveTo(9.24f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(1.6f) - close() - moveTo(16.5f, 1.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(16.5f, 3.0f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) - lineToRelative(-0.01f, 0.1f) - lineTo(16.0f, 6.0f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(0.18f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) - lineToRelative(0.1f, 0.01f) - lineTo(16.0f, 7.0f) - verticalLineToRelative(2.6f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - horizontalLineToRelative(0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) - lineToRelative(0.01f, -0.1f) - lineTo(17.0f, 7.0f) - horizontalLineToRelative(2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - verticalLineToRelative(-0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) - lineTo(19.5f, 6.0f) - lineTo(17.0f, 6.0f) - lineTo(17.0f, 3.4f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.4f) - close() - } - } - return _dualScreenAdd!! - } - -private var _dualScreenAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenArrowRight.kt deleted file mode 100644 index 7b3793ae..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenArrowRight.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DualScreenArrowRight: ImageVector - get() { - if (_dualScreenArrowRight != null) { - return _dualScreenArrowRight!! - } - _dualScreenArrowRight = fluentIcon(name = "Regular.DualScreenArrowRight") { - fluentPath { - moveTo(10.02f, 6.0f) - arcToRelative(6.63f, 6.63f, 0.0f, false, false, 0.06f, 1.5f) - lineTo(3.75f, 7.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.13f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(7.5f) - lineTo(11.25f, 10.33f) - curveToRelative(0.41f, 0.57f, 0.92f, 1.07f, 1.5f, 1.48f) - verticalLineToRelative(8.69f) - horizontalLineToRelative(7.5f) - curveToRelative(0.13f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-8.62f) - arcTo(6.53f, 6.53f, 0.0f, false, false, 22.0f, 9.97f) - verticalLineToRelative(10.28f) - curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) - lineTo(3.75f, 22.0f) - curveTo(2.78f, 22.0f, 2.0f, 21.2f, 2.0f, 20.25f) - lineTo(2.0f, 7.75f) - curveTo(2.0f, 6.78f, 2.78f, 6.0f, 3.75f, 6.0f) - horizontalLineToRelative(6.27f) - close() - moveTo(16.24f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(1.6f) - close() - moveTo(9.24f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(1.6f) - close() - moveTo(16.5f, 1.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(16.8f, 3.55f) - lineTo(16.72f, 3.59f) - lineTo(16.65f, 3.65f) - lineTo(16.59f, 3.72f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) - lineToRelative(0.06f, 0.07f) - lineTo(18.29f, 6.0f) - lineTo(13.4f, 6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(0.18f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(0.06f, -0.07f) - lineToRelative(2.53f, -2.53f) - lineToRelative(0.04f, -0.05f) - lineToRelative(0.04f, -0.08f) - lineToRelative(0.03f, -0.08f) - lineTo(19.99f, 6.39f) - lineToRelative(-0.03f, -0.08f) - lineToRelative(-0.04f, -0.08f) - lineToRelative(-0.04f, -0.05f) - lineToRelative(-2.53f, -2.53f) - lineToRelative(-0.07f, -0.06f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.49f, -0.04f) - close() - } - } - return _dualScreenArrowRight!! - } - -private var _dualScreenArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenArrowUp.kt deleted file mode 100644 index 96ce79d7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenArrowUp.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DualScreenArrowUp: ImageVector - get() { - if (_dualScreenArrowUp != null) { - return _dualScreenArrowUp!! - } - _dualScreenArrowUp = fluentIcon(name = "Regular.DualScreenArrowUp") { - fluentPath { - moveTo(22.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(16.0f, 4.7f) - verticalLineToRelative(4.8f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - lineTo(17.0f, 4.7f) - lineToRelative(1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineTo(16.0f, 4.71f) - close() - moveTo(10.0f, 6.5f) - curveToRelative(0.0f, -0.17f, 0.0f, -0.33f, 0.02f, -0.5f) - lineTo(3.75f, 6.0f) - curveTo(2.78f, 6.0f, 2.0f, 6.78f, 2.0f, 7.75f) - verticalLineToRelative(12.5f) - curveTo(2.0f, 21.2f, 2.78f, 22.0f, 3.75f, 22.0f) - horizontalLineToRelative(16.5f) - curveToRelative(0.96f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(22.0f, 9.97f) - curveToRelative(-0.4f, 0.64f, -0.91f, 1.2f, -1.5f, 1.66f) - verticalLineToRelative(8.62f) - curveToRelative(0.0f, 0.14f, -0.12f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-7.5f) - verticalLineToRelative(-8.7f) - curveToRelative(-0.58f, -0.4f, -1.09f, -0.9f, -1.5f, -1.47f) - lineTo(11.25f, 20.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - lineTo(3.5f, 7.75f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(6.33f) - arcToRelative(6.55f, 6.55f, 0.0f, false, true, -0.08f, -1.0f) - close() - moveTo(16.99f, 18.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(9.99f, 18.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - } - } - return _dualScreenArrowUp!! - } - -private var _dualScreenArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenClock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenClock.kt deleted file mode 100644 index 37762b86..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenClock.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DualScreenClock: ImageVector - get() { - if (_dualScreenClock != null) { - return _dualScreenClock!! - } - _dualScreenClock = fluentIcon(name = "Regular.DualScreenClock") { - fluentPath { - moveTo(10.02f, 6.0f) - arcToRelative(6.63f, 6.63f, 0.0f, false, false, 0.06f, 1.5f) - lineTo(3.75f, 7.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.13f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(7.5f) - lineTo(11.25f, 10.33f) - curveToRelative(0.41f, 0.57f, 0.92f, 1.07f, 1.5f, 1.48f) - verticalLineToRelative(8.69f) - horizontalLineToRelative(7.5f) - curveToRelative(0.13f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-8.62f) - arcTo(6.53f, 6.53f, 0.0f, false, false, 22.0f, 9.97f) - verticalLineToRelative(10.28f) - curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) - lineTo(3.75f, 22.0f) - curveTo(2.78f, 22.0f, 2.0f, 21.2f, 2.0f, 20.25f) - lineTo(2.0f, 7.75f) - curveTo(2.0f, 6.78f, 2.78f, 6.0f, 3.75f, 6.0f) - horizontalLineToRelative(6.27f) - close() - moveTo(16.24f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(1.6f) - close() - moveTo(9.24f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(1.6f) - close() - moveTo(16.5f, 1.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(15.5f, 3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - lineTo(16.0f, 7.0f) - lineTo(16.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - } - } - return _dualScreenClock!! - } - -private var _dualScreenClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenClosedAlert.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenClosedAlert.kt deleted file mode 100644 index 5cc4d4b7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenClosedAlert.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DualScreenClosedAlert: ImageVector - get() { - if (_dualScreenClosedAlert != null) { - return _dualScreenClosedAlert!! - } - _dualScreenClosedAlert = fluentIcon(name = "Regular.DualScreenClosedAlert") { - fluentPath { - moveTo(16.5f, 2.0f) - arcToRelative(4.01f, 4.01f, 0.0f, false, true, 4.0f, 4.0f) - verticalLineToRelative(2.52f) - lineToRelative(1.38f, 1.66f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.38f, 0.82f) - horizontalLineToRelative(-10.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.38f, -0.82f) - lineToRelative(1.38f, -1.66f) - lineTo(12.5f, 6.0f) - arcToRelative(4.01f, 4.01f, 0.0f, false, true, 4.0f, -4.0f) - close() - moveTo(5.75f, 5.0f) - horizontalLineToRelative(5.85f) - curveToRelative(-0.06f, 0.33f, -0.1f, 0.66f, -0.1f, 1.0f) - verticalLineToRelative(0.5f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(13.0f) - horizontalLineToRelative(8.25f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-4.92f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 1.5f, 0.13f) - verticalLineToRelative(4.79f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(5.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(15.5f, 12.73f) - curveToRelative(-0.3f, -0.17f, -0.55f, -0.43f, -0.72f, -0.73f) - horizontalLineToRelative(3.44f) - arcToRelative(1.98f, 1.98f, 0.0f, false, true, -2.72f, 0.73f) - close() - } - } - return _dualScreenClosedAlert!! - } - -private var _dualScreenClosedAlert: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenDesktop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenDesktop.kt deleted file mode 100644 index da6eed4a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenDesktop.kt +++ /dev/null @@ -1,99 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DualScreenDesktop: ImageVector - get() { - if (_dualScreenDesktop != null) { - return _dualScreenDesktop!! - } - _dualScreenDesktop = fluentIcon(name = "Regular.DualScreenDesktop") { - fluentPath { - moveTo(12.25f, 10.0f) - curveToRelative(0.92f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.92f, -0.7f, 1.67f, -1.6f, 1.74f) - lineToRelative(-0.15f, 0.01f) - horizontalLineToRelative(-8.5f) - curveToRelative(-0.92f, 0.0f, -1.67f, -0.7f, -1.74f, -1.6f) - lineTo(2.0f, 20.24f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) - lineToRelative(0.15f, -0.01f) - horizontalLineToRelative(8.5f) - close() - moveTo(7.5f, 11.5f) - lineTo(3.75f, 11.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.24f, 0.2f) - lineToRelative(-0.01f, 0.05f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.12f, 0.08f, 0.22f, 0.2f, 0.24f) - lineToRelative(0.05f, 0.01f) - lineTo(7.5f, 20.5f) - verticalLineToRelative(-9.0f) - close() - moveTo(12.25f, 11.5f) - lineTo(8.5f, 11.5f) - verticalLineToRelative(9.0f) - horizontalLineToRelative(3.75f) - curveToRelative(0.12f, 0.0f, 0.22f, -0.08f, 0.24f, -0.2f) - lineToRelative(0.01f, -0.05f) - verticalLineToRelative(-8.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.2f, -0.24f) - lineToRelative(-0.05f, -0.01f) - close() - moveTo(10.62f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-0.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.6f) - close() - moveTo(5.88f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-0.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.6f) - close() - moveTo(19.74f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - lineTo(17.0f, 15.5f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(15.0f, 19.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(0.5f) - verticalLineToRelative(-2.0f) - lineTo(15.0f, 15.5f) - lineTo(15.0f, 14.0f) - horizontalLineToRelative(4.75f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(6.25f, 3.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - lineTo(5.5f, 9.0f) - lineTo(4.0f, 9.0f) - lineTo(4.0f, 4.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(6.25f, 2.0f) - horizontalLineToRelative(13.5f) - close() - } - } - return _dualScreenDesktop!! - } - -private var _dualScreenDesktop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenDismiss.kt deleted file mode 100644 index e35a6a1e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenDismiss.kt +++ /dev/null @@ -1,95 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DualScreenDismiss: ImageVector - get() { - if (_dualScreenDismiss != null) { - return _dualScreenDismiss!! - } - _dualScreenDismiss = fluentIcon(name = "Regular.DualScreenDismiss") { - fluentPath { - moveTo(10.0f, 6.5f) - curveToRelative(0.0f, 0.34f, 0.03f, 0.68f, 0.08f, 1.0f) - lineTo(3.75f, 7.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.13f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(7.5f) - lineTo(11.25f, 10.33f) - curveToRelative(0.41f, 0.57f, 0.92f, 1.07f, 1.5f, 1.48f) - verticalLineToRelative(8.69f) - horizontalLineToRelative(7.5f) - curveToRelative(0.13f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-8.62f) - arcTo(6.53f, 6.53f, 0.0f, false, false, 22.0f, 9.97f) - verticalLineToRelative(10.28f) - curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) - lineTo(3.75f, 22.0f) - curveTo(2.78f, 22.0f, 2.0f, 21.2f, 2.0f, 20.25f) - lineTo(2.0f, 7.75f) - curveTo(2.0f, 6.78f, 2.78f, 6.0f, 3.75f, 6.0f) - horizontalLineToRelative(6.27f) - lineToRelative(-0.02f, 0.5f) - close() - moveTo(16.24f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(1.6f) - close() - moveTo(9.24f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(1.6f) - close() - moveTo(16.5f, 1.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(14.66f, 3.97f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) - lineToRelative(-0.07f, 0.05f) - lineToRelative(-0.05f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.05f, 0.07f) - lineTo(15.8f, 6.5f) - lineToRelative(-1.76f, 1.77f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.06f, 0.06f) - lineToRelative(0.07f, 0.06f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) - lineToRelative(0.07f, -0.06f) - lineToRelative(1.77f, -1.76f) - lineToRelative(1.77f, 1.77f) - lineToRelative(0.07f, 0.05f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.57f, 0.0f) - lineToRelative(0.07f, -0.05f) - lineToRelative(0.05f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) - lineToRelative(-0.05f, -0.07f) - lineTo(17.2f, 6.5f) - lineToRelative(1.77f, -1.77f) - lineToRelative(0.06f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) - lineToRelative(-0.06f, -0.07f) - lineToRelative(-0.07f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) - lineToRelative(-0.07f, 0.05f) - lineTo(16.5f, 5.8f) - lineToRelative(-1.77f, -1.77f) - lineToRelative(-0.07f, -0.05f) - close() - } - } - return _dualScreenDismiss!! - } - -private var _dualScreenDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenGroup.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenGroup.kt deleted file mode 100644 index 12b725ca..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenGroup.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DualScreenGroup: ImageVector - get() { - if (_dualScreenGroup != null) { - return _dualScreenGroup!! - } - _dualScreenGroup = fluentIcon(name = "Regular.DualScreenGroup") { - fluentPath { - moveTo(12.76f, 4.0f) - horizontalLineToRelative(7.5f) - curveTo(21.21f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(3.75f, 20.0f) - curveToRelative(-0.96f, 0.0f, -1.74f, -0.79f, -1.74f, -1.75f) - lineTo(2.01f, 5.75f) - curveTo(2.0f, 4.8f, 2.79f, 4.0f, 3.76f, 4.0f) - horizontalLineToRelative(9.0f) - close() - moveTo(20.26f, 5.5f) - horizontalLineToRelative(-7.5f) - verticalLineToRelative(13.0f) - horizontalLineToRelative(7.5f) - curveToRelative(0.13f, 0.0f, 0.24f, -0.11f, 0.24f, -0.25f) - lineTo(20.5f, 5.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(11.26f, 5.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(7.5f) - verticalLineToRelative(-13.0f) - close() - } - } - return _dualScreenGroup!! - } - -private var _dualScreenGroup: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenHeader.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenHeader.kt deleted file mode 100644 index c9f75cc1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenHeader.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DualScreenHeader: ImageVector - get() { - if (_dualScreenHeader != null) { - return _dualScreenHeader!! - } - _dualScreenHeader = fluentIcon(name = "Regular.DualScreenHeader") { - fluentPath { - moveTo(12.75f, 4.0f) - horizontalLineToRelative(7.5f) - curveTo(21.2f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) - lineTo(3.75f, 20.0f) - curveTo(2.78f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) - lineTo(2.0f, 5.75f) - curveTo(2.0f, 4.8f, 2.78f, 4.0f, 3.75f, 4.0f) - horizontalLineToRelative(9.0f) - close() - moveTo(20.5f, 7.0f) - horizontalLineToRelative(-7.75f) - verticalLineToRelative(11.5f) - horizontalLineToRelative(7.5f) - curveToRelative(0.13f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - lineTo(20.5f, 7.0f) - close() - moveTo(11.25f, 7.0f) - lineTo(3.5f, 7.0f) - verticalLineToRelative(11.25f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(7.5f) - lineTo(11.25f, 7.0f) - close() - } - } - return _dualScreenHeader!! - } - -private var _dualScreenHeader: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenLock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenLock.kt deleted file mode 100644 index df4a811c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenLock.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DualScreenLock: ImageVector - get() { - if (_dualScreenLock != null) { - return _dualScreenLock!! - } - _dualScreenLock = fluentIcon(name = "Regular.DualScreenLock") { - fluentPath { - moveTo(17.0f, 5.0f) - lineTo(17.0f, 4.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(0.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-6.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - verticalLineToRelative(-5.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 16.5f, 5.0f) - horizontalLineToRelative(0.5f) - close() - moveTo(18.5f, 4.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(2.0f) - lineTo(20.5f, 4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - close() - moveTo(20.5f, 8.9f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 0.2f) - arcToRelative(0.98f, 0.98f, 0.0f, false, false, 0.0f, -0.2f) - close() - moveTo(7.74f, 17.5f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(12.74f, 6.0f) - horizontalLineToRelative(1.3f) - curveToRelative(-0.02f, 0.16f, -0.04f, 0.33f, -0.04f, 0.5f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-1.25f) - verticalLineToRelative(13.0f) - horizontalLineToRelative(7.5f) - curveToRelative(0.13f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - lineTo(20.5f, 14.0f) - lineTo(22.0f, 14.0f) - verticalLineToRelative(6.25f) - curveToRelative(0.0f, 0.96f, -0.79f, 1.75f, -1.75f, 1.75f) - lineTo(3.75f, 22.0f) - curveTo(2.78f, 22.0f, 2.0f, 21.2f, 2.0f, 20.25f) - lineTo(2.0f, 7.75f) - curveTo(2.0f, 6.78f, 2.78f, 6.0f, 3.75f, 6.0f) - horizontalLineToRelative(9.0f) - close() - moveTo(11.24f, 7.5f) - lineTo(3.76f, 7.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.13f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(7.5f) - verticalLineToRelative(-13.0f) - close() - moveTo(14.74f, 17.5f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - } - } - return _dualScreenLock!! - } - -private var _dualScreenLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenMirror.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenMirror.kt deleted file mode 100644 index 920436a0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenMirror.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DualScreenMirror: ImageVector - get() { - if (_dualScreenMirror != null) { - return _dualScreenMirror!! - } - _dualScreenMirror = fluentIcon(name = "Regular.DualScreenMirror") { - fluentPath { - moveTo(17.17f, 9.42f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.34f, 0.0f) - lineToRelative(-2.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.67f, 1.08f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.67f, -1.08f) - lineToRelative(-2.25f, -4.5f) - close() - moveTo(15.47f, 13.5f) - lineTo(16.5f, 11.43f) - lineTo(17.54f, 13.5f) - horizontalLineToRelative(-2.08f) - close() - moveTo(7.5f, 9.0f) - curveToRelative(0.28f, 0.0f, 0.54f, 0.16f, 0.67f, 0.42f) - lineToRelative(2.25f, 4.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 9.75f, 15.0f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.67f, -1.08f) - lineToRelative(2.25f, -4.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 7.5f, 9.0f) - close() - moveTo(7.5f, 11.43f) - lineTo(6.46f, 13.5f) - horizontalLineToRelative(2.08f) - lineTo(7.5f, 11.43f) - close() - moveTo(12.76f, 4.0f) - horizontalLineToRelative(7.5f) - curveTo(21.21f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(3.75f, 20.0f) - curveToRelative(-0.96f, 0.0f, -1.74f, -0.79f, -1.74f, -1.75f) - lineTo(2.01f, 5.75f) - curveTo(2.0f, 4.8f, 2.79f, 4.0f, 3.76f, 4.0f) - horizontalLineToRelative(9.0f) - close() - moveTo(20.26f, 5.5f) - horizontalLineToRelative(-7.5f) - verticalLineToRelative(13.0f) - horizontalLineToRelative(7.5f) - curveToRelative(0.13f, 0.0f, 0.24f, -0.11f, 0.24f, -0.25f) - lineTo(20.5f, 5.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(11.26f, 5.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(7.5f) - verticalLineToRelative(-13.0f) - close() - } - } - return _dualScreenMirror!! - } - -private var _dualScreenMirror: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenPagination.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenPagination.kt deleted file mode 100644 index f7a217ea..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenPagination.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DualScreenPagination: ImageVector - get() { - if (_dualScreenPagination != null) { - return _dualScreenPagination!! - } - _dualScreenPagination = fluentIcon(name = "Regular.DualScreenPagination") { - fluentPath { - moveTo(12.75f, 4.0f) - horizontalLineToRelative(7.5f) - curveTo(21.2f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) - lineTo(3.75f, 20.0f) - curveTo(2.78f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) - lineTo(2.0f, 5.75f) - curveTo(2.0f, 4.8f, 2.78f, 4.0f, 3.75f, 4.0f) - horizontalLineToRelative(9.0f) - close() - moveTo(20.25f, 5.5f) - horizontalLineToRelative(-7.5f) - verticalLineToRelative(13.0f) - horizontalLineToRelative(7.5f) - curveToRelative(0.13f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - lineTo(20.5f, 5.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(11.25f, 5.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(7.5f) - verticalLineToRelative(-13.0f) - close() - moveTo(16.63f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(19.13f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(14.13f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - } - } - return _dualScreenPagination!! - } - -private var _dualScreenPagination: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenSettings.kt deleted file mode 100644 index 6c446591..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenSettings.kt +++ /dev/null @@ -1,91 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DualScreenSettings: ImageVector - get() { - if (_dualScreenSettings != null) { - return _dualScreenSettings!! - } - _dualScreenSettings = fluentIcon(name = "Regular.DualScreenSettings") { - fluentPath { - moveTo(13.28f, 2.98f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.59f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.01f, 1.8f) - lineToRelative(0.54f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) - lineToRelative(-0.19f, 0.64f) - curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) - lineToRelative(0.5f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.47f, -0.9f) - lineToRelative(-0.2f, -0.7f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, -2.5f) - lineToRelative(0.58f, -0.14f) - arcToRelative(5.72f, 5.72f, 0.0f, false, false, 0.0f, -1.8f) - lineToRelative(-0.54f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.18f, -0.63f) - curveToRelative(-0.44f, -0.39f, -0.94f, -0.7f, -1.48f, -0.93f) - lineToRelative(-0.5f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.91f) - lineToRelative(0.2f, 0.69f) - close() - moveTo(16.5f, 8.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(15.7f, 5.0f, 16.5f, 5.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(17.3f, 8.0f, 16.5f, 8.0f) - close() - moveTo(10.0f, 6.5f) - curveToRelative(0.0f, -0.17f, 0.0f, -0.33f, 0.02f, -0.5f) - lineTo(3.75f, 6.0f) - curveTo(2.78f, 6.0f, 2.0f, 6.78f, 2.0f, 7.75f) - verticalLineToRelative(12.5f) - curveTo(2.0f, 21.2f, 2.78f, 22.0f, 3.75f, 22.0f) - horizontalLineToRelative(16.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(22.0f, 9.97f) - curveToRelative(-0.4f, 0.64f, -0.91f, 1.2f, -1.5f, 1.66f) - verticalLineToRelative(8.62f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-7.5f) - verticalLineToRelative(-8.7f) - curveToRelative(-0.58f, -0.4f, -1.08f, -0.9f, -1.5f, -1.47f) - lineTo(11.25f, 20.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - lineTo(3.5f, 7.75f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(6.33f) - arcToRelative(6.54f, 6.54f, 0.0f, false, true, -0.08f, -1.0f) - close() - moveTo(17.0f, 18.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.76f, -0.75f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(10.0f, 18.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.76f, -0.75f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - } - } - return _dualScreenSettings!! - } - -private var _dualScreenSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenSpan.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenSpan.kt deleted file mode 100644 index 8306be29..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenSpan.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DualScreenSpan: ImageVector - get() { - if (_dualScreenSpan != null) { - return _dualScreenSpan!! - } - _dualScreenSpan = fluentIcon(name = "Regular.DualScreenSpan") { - fluentPath { - moveTo(8.31f, 10.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.12f, -1.0f) - lineToRelative(-2.0f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.0f) - lineToRelative(2.0f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.12f, -1.0f) - lineToRelative(-0.89f, -1.0f) - horizontalLineToRelative(9.16f) - lineToRelative(-0.89f, 1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.12f, 1.0f) - lineToRelative(2.0f, -2.25f) - lineToRelative(0.01f, -0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.01f, -0.99f) - lineToRelative(-2.0f, -2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.12f, 1.0f) - lineToRelative(0.9f, 1.0f) - lineTo(7.41f, 11.25f) - lineToRelative(0.9f, -1.0f) - close() - moveTo(12.76f, 4.0f) - horizontalLineToRelative(7.5f) - curveTo(21.21f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(3.75f, 20.0f) - curveToRelative(-0.96f, 0.0f, -1.74f, -0.79f, -1.74f, -1.75f) - lineTo(2.01f, 5.75f) - curveTo(2.0f, 4.8f, 2.79f, 4.0f, 3.76f, 4.0f) - horizontalLineToRelative(9.0f) - close() - moveTo(20.26f, 5.5f) - horizontalLineToRelative(-7.5f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(-1.5f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(7.5f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(1.5f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(7.5f) - curveToRelative(0.13f, 0.0f, 0.24f, -0.11f, 0.24f, -0.25f) - lineTo(20.5f, 5.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - } - } - return _dualScreenSpan!! - } - -private var _dualScreenSpan: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenSpeaker.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenSpeaker.kt deleted file mode 100644 index 09d22a55..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenSpeaker.kt +++ /dev/null @@ -1,103 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DualScreenSpeaker: ImageVector - get() { - if (_dualScreenSpeaker != null) { - return _dualScreenSpeaker!! - } - _dualScreenSpeaker = fluentIcon(name = "Regular.DualScreenSpeaker") { - fluentPath { - moveTo(22.14f, 3.3f) - arcToRelative(4.53f, 4.53f, 0.0f, false, false, -0.9f, -1.13f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, 1.16f) - curveToRelative(0.13f, 0.1f, 0.35f, 0.35f, 0.59f, 0.74f) - curveToRelative(0.4f, 0.67f, 0.64f, 1.48f, 0.64f, 2.43f) - curveToRelative(0.0f, 0.95f, -0.24f, 1.76f, -0.64f, 2.43f) - curveToRelative(-0.24f, 0.39f, -0.46f, 0.64f, -0.59f, 0.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.96f, 1.16f) - curveToRelative(0.25f, -0.21f, 0.59f, -0.58f, 0.91f, -1.13f) - curveToRelative(0.54f, -0.9f, 0.86f, -1.96f, 0.86f, -3.2f) - curveToRelative(0.0f, -1.24f, -0.32f, -2.3f, -0.86f, -3.2f) - close() - } - fluentPath { - moveTo(19.87f, 4.4f) - curveToRelative(-0.23f, -0.36f, -0.48f, -0.6f, -0.67f, -0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 1.2f) - arcTo(2.24f, 2.24f, 0.0f, false, true, 19.0f, 6.5f) - arcToRelative(2.24f, 2.24f, 0.0f, false, true, -0.7f, 1.65f) - lineToRelative(-0.08f, 0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) - arcToRelative(3.73f, 3.73f, 0.0f, false, false, 1.3f, -2.85f) - curveToRelative(0.0f, -0.81f, -0.23f, -1.52f, -0.63f, -2.1f) - close() - } - fluentPath { - moveTo(17.0f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.31f, -0.5f) - lineTo(14.16f, 5.0f) - horizontalLineToRelative(-1.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.76f, 0.75f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(1.41f) - lineToRelative(1.53f, 1.74f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 17.0f, 9.25f) - verticalLineToRelative(-5.5f) - close() - } - fluentPath { - moveTo(11.95f, 4.0f) - horizontalLineToRelative(-8.2f) - curveToRelative(-0.96f, 0.0f, -1.74f, 0.78f, -1.74f, 1.75f) - verticalLineToRelative(12.5f) - curveTo(2.0f, 19.2f, 2.79f, 20.0f, 3.76f, 20.0f) - horizontalLineToRelative(16.5f) - curveToRelative(0.96f, 0.0f, 1.74f, -0.79f, 1.74f, -1.75f) - verticalLineToRelative(-6.77f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.5f, 0.5f) - verticalLineToRelative(6.27f) - curveToRelative(0.0f, 0.14f, -0.1f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-7.5f) - verticalLineTo(9.0f) - horizontalLineTo(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.74f, -0.33f) - verticalLineToRelative(9.83f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineTo(5.75f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineTo(11.0f) - verticalLineTo(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.95f, -1.0f) - close() - } - fluentPath { - moveTo(16.25f, 15.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - } - fluentPath { - moveTo(7.75f, 15.5f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - } - } - return _dualScreenSpeaker!! - } - -private var _dualScreenSpeaker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenStatusBar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenStatusBar.kt deleted file mode 100644 index 1b9976ae..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenStatusBar.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DualScreenStatusBar: ImageVector - get() { - if (_dualScreenStatusBar != null) { - return _dualScreenStatusBar!! - } - _dualScreenStatusBar = fluentIcon(name = "Regular.DualScreenStatusBar") { - fluentPath { - moveTo(12.75f, 4.0f) - horizontalLineToRelative(7.5f) - curveTo(21.2f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) - lineTo(3.75f, 20.0f) - curveTo(2.78f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) - lineTo(2.0f, 5.75f) - curveTo(2.0f, 4.8f, 2.78f, 4.0f, 3.75f, 4.0f) - horizontalLineToRelative(9.0f) - close() - moveTo(20.25f, 5.5f) - horizontalLineToRelative(-7.5f) - verticalLineToRelative(13.0f) - horizontalLineToRelative(7.5f) - curveToRelative(0.13f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - lineTo(20.5f, 5.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(11.25f, 5.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(7.5f) - verticalLineToRelative(-13.0f) - close() - moveTo(18.75f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(4.5f) - close() - } - } - return _dualScreenStatusBar!! - } - -private var _dualScreenStatusBar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenTablet.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenTablet.kt deleted file mode 100644 index 22bb74be..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenTablet.kt +++ /dev/null @@ -1,97 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DualScreenTablet: ImageVector - get() { - if (_dualScreenTablet != null) { - return _dualScreenTablet!! - } - _dualScreenTablet = fluentIcon(name = "Regular.DualScreenTablet") { - fluentPath { - moveTo(12.25f, 9.0f) - curveToRelative(0.92f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.92f, -0.7f, 1.67f, -1.6f, 1.74f) - lineToRelative(-0.15f, 0.01f) - horizontalLineToRelative(-8.5f) - curveToRelative(-0.92f, 0.0f, -1.67f, -0.7f, -1.74f, -1.6f) - lineTo(2.0f, 19.24f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) - lineTo(3.76f, 9.0f) - horizontalLineToRelative(8.5f) - close() - moveTo(7.5f, 10.5f) - lineTo(3.75f, 10.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.24f, 0.2f) - lineToRelative(-0.01f, 0.05f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.12f, 0.08f, 0.22f, 0.2f, 0.24f) - lineToRelative(0.05f, 0.01f) - lineTo(7.5f, 19.5f) - verticalLineToRelative(-9.0f) - close() - moveTo(12.25f, 10.5f) - lineTo(8.5f, 10.5f) - verticalLineToRelative(9.0f) - horizontalLineToRelative(3.75f) - curveToRelative(0.12f, 0.0f, 0.22f, -0.08f, 0.24f, -0.2f) - lineToRelative(0.01f, -0.05f) - verticalLineToRelative(-8.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.2f, -0.24f) - lineToRelative(-0.05f, -0.01f) - close() - moveTo(10.62f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-0.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.6f) - close() - moveTo(5.88f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-0.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.6f) - close() - moveTo(19.74f, 3.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - lineTo(15.0f, 16.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(4.75f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - verticalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(8.25f, 4.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - lineTo(7.5f, 8.0f) - lineTo(6.0f, 8.0f) - lineTo(6.0f, 5.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(8.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(16.24f, 12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(15.0f, 13.5f) - lineTo(15.0f, 12.0f) - horizontalLineToRelative(1.25f) - close() - } - } - return _dualScreenTablet!! - } - -private var _dualScreenTablet: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenUpdate.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenUpdate.kt deleted file mode 100644 index 25e82cab..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenUpdate.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DualScreenUpdate: ImageVector - get() { - if (_dualScreenUpdate != null) { - return _dualScreenUpdate!! - } - _dualScreenUpdate = fluentIcon(name = "Regular.DualScreenUpdate") { - fluentPath { - moveTo(12.75f, 4.0f) - horizontalLineToRelative(7.5f) - curveTo(21.2f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) - lineTo(3.75f, 20.0f) - curveTo(2.78f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) - lineTo(2.0f, 5.75f) - curveTo(2.0f, 4.8f, 2.78f, 4.0f, 3.75f, 4.0f) - horizontalLineToRelative(9.0f) - close() - moveTo(20.25f, 5.5f) - horizontalLineToRelative(-7.5f) - verticalLineToRelative(13.0f) - horizontalLineToRelative(7.5f) - curveToRelative(0.13f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - lineTo(20.5f, 5.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(11.25f, 5.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(7.5f) - verticalLineToRelative(-13.0f) - close() - moveTo(16.5f, 7.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.75f, 0.65f) - verticalLineToRelative(6.8f) - lineToRelative(0.97f, -0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.08f) - lineToRelative(0.08f, 0.08f) - curveToRelative(0.27f, 0.26f, 0.3f, 0.68f, 0.07f, 0.97f) - lineToRelative(-0.07f, 0.09f) - lineToRelative(-2.25f, 2.23f) - lineToRelative(-0.04f, 0.04f) - lineToRelative(-0.06f, 0.05f) - lineToRelative(-0.07f, 0.04f) - lineToRelative(-0.06f, 0.03f) - lineToRelative(-0.1f, 0.03f) - lineToRelative(-0.06f, 0.02f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-0.09f) - lineToRelative(-0.09f, -0.01f) - lineToRelative(-0.1f, -0.03f) - lineToRelative(-0.1f, -0.04f) - lineToRelative(-0.08f, -0.05f) - lineToRelative(-0.11f, -0.09f) - lineToRelative(-2.25f, -2.23f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.08f) - lineToRelative(0.08f, 0.08f) - lineToRelative(0.97f, 0.96f) - verticalLineToRelative(-6.7f) - curveToRelative(0.0f, -0.35f, 0.23f, -0.64f, 0.55f, -0.72f) - lineToRelative(0.1f, -0.02f) - horizontalLineToRelative(0.1f) - close() - } - } - return _dualScreenUpdate!! - } - -private var _dualScreenUpdate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenVerticalScroll.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenVerticalScroll.kt deleted file mode 100644 index 4cbc686d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenVerticalScroll.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DualScreenVerticalScroll: ImageVector - get() { - if (_dualScreenVerticalScroll != null) { - return _dualScreenVerticalScroll!! - } - _dualScreenVerticalScroll = fluentIcon(name = "Regular.DualScreenVerticalScroll") { - fluentPath { - moveTo(12.75f, 4.0f) - horizontalLineToRelative(7.5f) - curveTo(21.2f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) - lineTo(3.75f, 20.0f) - curveTo(2.78f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) - lineTo(2.0f, 5.75f) - curveTo(2.0f, 4.8f, 2.78f, 4.0f, 3.75f, 4.0f) - horizontalLineToRelative(9.0f) - close() - moveTo(20.25f, 5.5f) - horizontalLineToRelative(-7.5f) - verticalLineToRelative(13.0f) - horizontalLineToRelative(7.5f) - curveToRelative(0.13f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - lineTo(20.5f, 5.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(11.25f, 5.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(7.5f) - verticalLineToRelative(-13.0f) - close() - moveTo(14.7f, 13.4f) - lineTo(14.79f, 13.48f) - lineTo(16.5f, 15.23f) - lineTo(18.22f, 13.48f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.14f, 0.96f) - lineToRelative(-0.07f, 0.09f) - lineToRelative(-2.25f, 2.3f) - curveToRelative(-0.27f, 0.26f, -0.7f, 0.29f, -0.99f, 0.07f) - lineToRelative(-0.08f, -0.08f) - lineToRelative(-2.26f, -2.3f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.0f, -1.12f) - close() - moveTo(17.04f, 7.23f) - lineTo(19.29f, 9.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.07f, 1.04f) - lineTo(16.5f, 8.82f) - lineToRelative(-1.71f, 1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.08f, -1.05f) - lineToRelative(2.26f, -2.3f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.07f, 0.0f) - close() - } - } - return _dualScreenVerticalScroll!! - } - -private var _dualScreenVerticalScroll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenVibrate.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenVibrate.kt deleted file mode 100644 index da6f2dd1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/DualScreenVibrate.kt +++ /dev/null @@ -1,108 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.DualScreenVibrate: ImageVector - get() { - if (_dualScreenVibrate != null) { - return _dualScreenVibrate!! - } - _dualScreenVibrate = fluentIcon(name = "Regular.DualScreenVibrate") { - fluentPath { - moveTo(16.75f, 6.0f) - curveToRelative(0.92f, 0.0f, 1.67f, 0.7f, 1.75f, 1.6f) - verticalLineToRelative(9.65f) - curveToRelative(0.0f, 0.92f, -0.7f, 1.67f, -1.6f, 1.74f) - lineToRelative(-0.15f, 0.01f) - horizontalLineToRelative(-9.5f) - curveToRelative(-0.92f, 0.0f, -1.67f, -0.7f, -1.74f, -1.6f) - lineToRelative(-0.01f, -0.15f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.68f, 1.6f, -1.75f) - horizontalLineToRelative(9.65f) - close() - moveTo(11.5f, 7.5f) - lineTo(7.25f, 7.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.24f, 0.19f) - lineTo(7.0f, 7.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.12f, 0.08f, 0.22f, 0.2f, 0.24f) - lineToRelative(0.05f, 0.01f) - horizontalLineToRelative(4.25f) - verticalLineToRelative(-10.0f) - close() - moveTo(16.75f, 7.5f) - lineTo(12.5f, 7.5f) - verticalLineToRelative(10.0f) - horizontalLineToRelative(4.25f) - curveToRelative(0.12f, 0.0f, 0.22f, -0.08f, 0.24f, -0.2f) - lineToRelative(0.01f, -0.05f) - verticalLineToRelative(-9.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.2f, -0.25f) - horizontalLineToRelative(-0.05f) - close() - moveTo(15.25f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-1.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - horizontalLineToRelative(1.1f) - close() - moveTo(9.75f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-1.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - horizontalLineToRelative(1.1f) - close() - moveTo(21.12f, 8.04f) - lineTo(21.18f, 8.13f) - lineTo(21.22f, 8.23f) - lineTo(21.8f, 9.68f) - curveToRelative(0.34f, 0.83f, 0.24f, 1.77f, -0.24f, 2.51f) - lineToRelative(-0.11f, 0.16f) - lineToRelative(-0.15f, 0.2f) - curveToRelative(-0.23f, 0.31f, -0.3f, 0.7f, -0.2f, 1.08f) - lineToRelative(0.04f, 0.13f) - lineToRelative(0.58f, 1.46f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.65f) - lineToRelative(-0.04f, -0.1f) - lineToRelative(-0.58f, -1.45f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.24f, -2.51f) - lineToRelative(0.1f, -0.16f) - lineToRelative(0.16f, -0.2f) - curveToRelative(0.23f, -0.31f, 0.3f, -0.71f, 0.2f, -1.08f) - lineToRelative(-0.04f, -0.14f) - lineToRelative(-0.58f, -1.45f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.29f, -0.74f) - close() - moveTo(3.57f, 8.04f) - lineTo(3.63f, 8.13f) - lineTo(3.67f, 8.23f) - lineTo(4.25f, 9.68f) - curveToRelative(0.34f, 0.83f, 0.24f, 1.77f, -0.24f, 2.51f) - lineToRelative(-0.1f, 0.16f) - lineToRelative(-0.16f, 0.2f) - curveToRelative(-0.23f, 0.31f, -0.3f, 0.7f, -0.2f, 1.08f) - lineToRelative(0.04f, 0.13f) - lineToRelative(0.58f, 1.46f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.65f) - lineToRelative(-0.04f, -0.1f) - lineToRelative(-0.58f, -1.45f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.24f, -2.51f) - lineToRelative(0.11f, -0.16f) - lineToRelative(0.15f, -0.2f) - curveToRelative(0.23f, -0.31f, 0.3f, -0.71f, 0.2f, -1.08f) - lineToRelative(-0.04f, -0.14f) - lineToRelative(-0.58f, -1.45f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.29f, -0.74f) - close() - } - } - return _dualScreenVibrate!! - } - -private var _dualScreenVibrate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Dumbbell.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Dumbbell.kt deleted file mode 100644 index 57dadeea..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Dumbbell.kt +++ /dev/null @@ -1,103 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Dumbbell: ImageVector - get() { - if (_dumbbell != null) { - return _dumbbell!! - } - _dumbbell = fluentIcon(name = "Regular.Dumbbell") { - fluentPath { - moveTo(17.77f, 7.8f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.07f, 1.06f) - lineTo(15.14f, 7.3f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(1.57f, 1.57f) - close() - moveTo(9.39f, 17.24f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.07f) - lineTo(7.82f, 14.6f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.07f) - lineToRelative(1.57f, 1.57f) - curveToRelative(0.3f, 0.29f, 0.77f, 0.29f, 1.06f, 0.0f) - close() - moveTo(20.94f, 3.08f) - arcToRelative(1.94f, 1.94f, 0.0f, false, false, -2.75f, 0.0f) - lineToRelative(-0.67f, 0.68f) - lineToRelative(-0.2f, -0.21f) - arcToRelative(2.41f, 2.41f, 0.0f, false, false, -3.67f, 0.29f) - arcToRelative(2.93f, 2.93f, 0.0f, false, false, -2.61f, 4.96f) - lineToRelative(0.72f, 0.72f) - lineToRelative(-2.24f, 2.24f) - lineToRelative(-0.72f, -0.72f) - arcToRelative(2.94f, 2.94f, 0.0f, false, false, -4.96f, 2.61f) - lineToRelative(-0.3f, 0.25f) - arcToRelative(2.41f, 2.41f, 0.0f, false, false, 0.0f, 3.42f) - lineToRelative(0.21f, 0.2f) - lineToRelative(-0.69f, 0.7f) - arcToRelative(1.94f, 1.94f, 0.0f, false, false, 2.75f, 2.74f) - lineToRelative(0.69f, -0.7f) - lineToRelative(0.2f, 0.22f) - arcToRelative(2.41f, 2.41f, 0.0f, false, false, 3.67f, -0.3f) - arcToRelative(2.93f, 2.93f, 0.0f, false, false, 2.61f, -4.96f) - lineToRelative(-0.72f, -0.72f) - lineToRelative(2.24f, -2.24f) - lineToRelative(0.72f, 0.72f) - arcToRelative(2.94f, 2.94f, 0.0f, false, false, 4.96f, -2.61f) - arcToRelative(2.42f, 2.42f, 0.0f, false, false, 0.3f, -3.66f) - lineToRelative(-0.21f, -0.21f) - lineToRelative(0.67f, -0.67f) - curveToRelative(0.75f, -0.76f, 0.75f, -1.99f, 0.0f, -2.75f) - close() - moveTo(19.2f, 5.44f) - lineToRelative(-0.63f, -0.62f) - lineToRelative(0.67f, -0.68f) - arcToRelative(0.44f, 0.44f, 0.0f, true, true, 0.63f, 0.63f) - lineToRelative(-0.67f, 0.67f) - close() - moveTo(13.43f, 11.2f) - lineTo(11.19f, 13.44f) - lineTo(10.57f, 12.82f) - lineTo(12.81f, 10.58f) - lineTo(13.43f, 11.2f) - close() - moveTo(5.43f, 19.2f) - lineTo(4.73f, 19.9f) - arcToRelative(0.44f, 0.44f, 0.0f, false, true, -0.62f, -0.62f) - lineToRelative(0.7f, -0.7f) - lineToRelative(0.62f, 0.63f) - close() - moveTo(14.95f, 4.6f) - arcToRelative(0.91f, 0.91f, 0.0f, false, true, 1.3f, 0.0f) - lineToRelative(3.15f, 3.17f) - arcToRelative(0.91f, 0.91f, 0.0f, false, true, -0.36f, 1.51f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.45f, 1.03f) - arcToRelative(1.44f, 1.44f, 0.0f, false, true, -2.32f, 1.61f) - lineTo(12.1f, 7.74f) - arcToRelative(1.44f, 1.44f, 0.0f, false, true, 1.61f, -2.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.03f, -0.45f) - arcToRelative(0.9f, 0.9f, 0.0f, false, true, 0.22f, -0.36f) - close() - moveTo(5.7f, 12.1f) - arcToRelative(1.44f, 1.44f, 0.0f, false, true, 2.03f, 0.0f) - lineToRelative(4.18f, 4.18f) - arcToRelative(1.44f, 1.44f, 0.0f, false, true, -1.61f, 2.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.03f, 0.45f) - arcToRelative(0.91f, 0.91f, 0.0f, false, true, -1.51f, 0.36f) - lineTo(4.6f, 16.25f) - arcToRelative(0.91f, 0.91f, 0.0f, false, true, 0.36f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.45f, -1.03f) - arcToRelative(1.44f, 1.44f, 0.0f, false, true, 0.29f, -1.62f) - close() - } - } - return _dumbbell!! - } - -private var _dumbbell: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Earth.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Earth.kt deleted file mode 100644 index bb4c492e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Earth.kt +++ /dev/null @@ -1,110 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Earth: ImageVector - get() { - if (_earth != null) { - return _earth!! - } - _earth = fluentIcon(name = "Regular.Earth") { - fluentPath { - moveTo(10.95f, 2.05f) - arcTo(10.0f, 10.0f, 0.0f, true, true, 4.1f, 18.13f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 6.83f, -16.08f) - horizontalLineToRelative(0.02f) - close() - moveTo(12.0f, 3.5f) - horizontalLineToRelative(-0.16f) - curveToRelative(0.12f, 0.25f, 0.26f, 0.53f, 0.37f, 0.85f) - curveToRelative(0.35f, 0.92f, 0.67f, 2.28f, 0.1f, 3.49f) - curveToRelative(-0.52f, 1.11f, -1.42f, 1.4f, -2.09f, 1.57f) - lineToRelative(-0.08f, 0.02f) - curveToRelative(-0.66f, 0.17f, -0.9f, 0.24f, -1.1f, 0.52f) - curveToRelative(-0.16f, 0.25f, -0.14f, 0.58f, 0.07f, 1.25f) - lineToRelative(0.04f, 0.14f) - curveToRelative(0.09f, 0.26f, 0.18f, 0.57f, 0.23f, 0.87f) - curveToRelative(0.07f, 0.36f, 0.09f, 0.82f, -0.15f, 1.27f) - curveToRelative(-0.23f, 0.45f, -0.54f, 0.75f, -0.9f, 0.95f) - curveToRelative(-0.34f, 0.18f, -0.7f, 0.25f, -0.96f, 0.3f) - lineToRelative(-0.09f, 0.02f) - curveToRelative(-0.51f, 0.09f, -0.76f, 0.13f, -1.0f, 0.39f) - curveToRelative(-0.19f, 0.2f, -0.3f, 0.55f, -0.38f, 1.07f) - lineToRelative(-0.06f, 0.65f) - verticalLineToRelative(0.12f) - curveToRelative(-0.03f, 0.24f, -0.05f, 0.52f, -0.1f, 0.76f) - arcToRelative(8.48f, 8.48f, 0.0f, false, false, 10.58f, 1.58f) - lineToRelative(-0.31f, -0.35f) - curveToRelative(-0.34f, -0.43f, -0.79f, -1.16f, -0.63f, -2.03f) - curveToRelative(0.07f, -0.42f, 0.3f, -0.77f, 0.51f, -1.04f) - curveToRelative(0.22f, -0.27f, 0.49f, -0.52f, 0.72f, -0.74f) - lineToRelative(0.16f, -0.14f) - curveToRelative(0.18f, -0.17f, 0.33f, -0.3f, 0.46f, -0.44f) - curveToRelative(0.17f, -0.18f, 0.21f, -0.26f, 0.21f, -0.27f) - curveToRelative(0.07f, -0.22f, -0.01f, -0.38f, -0.1f, -0.45f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, -0.2f, -0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.4f, 0.14f) - arcToRelative(0.91f, 0.91f, 0.0f, false, true, -0.83f, 0.08f) - curveToRelative(-0.27f, -0.1f, -0.41f, -0.31f, -0.49f, -0.43f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.27f, -0.77f) - lineToRelative(-0.12f, -0.55f) - lineToRelative(-0.04f, -0.21f) - arcToRelative(4.1f, 4.1f, 0.0f, false, false, -0.13f, -0.54f) - lineToRelative(-0.02f, -0.04f) - arcToRelative(6.23f, 6.23f, 0.0f, false, false, -0.3f, -0.42f) - lineToRelative(-0.1f, -0.14f) - curveToRelative(-0.16f, -0.21f, -0.36f, -0.47f, -0.52f, -0.71f) - curveToRelative(-0.2f, -0.3f, -0.42f, -0.7f, -0.49f, -1.1f) - arcToRelative(1.39f, 1.39f, 0.0f, false, true, 0.54f, -1.38f) - arcToRelative(13.0f, 13.0f, 0.0f, false, false, 1.83f, -1.97f) - curveToRelative(0.29f, -0.36f, 0.54f, -0.7f, 0.73f, -0.95f) - arcTo(8.46f, 8.46f, 0.0f, false, false, 12.0f, 3.5f) - close() - moveTo(17.73f, 5.72f) - lineTo(16.97f, 6.7f) - curveToRelative(-0.6f, 0.75f, -1.4f, 1.68f, -2.05f, 2.19f) - curveToRelative(0.03f, 0.1f, 0.1f, 0.26f, 0.26f, 0.5f) - arcToRelative(10.73f, 10.73f, 0.0f, false, false, 0.56f, 0.77f) - curveToRelative(0.18f, 0.23f, 0.42f, 0.54f, 0.52f, 0.84f) - curveToRelative(0.1f, 0.23f, 0.15f, 0.52f, 0.2f, 0.76f) - lineToRelative(0.05f, 0.25f) - lineToRelative(0.08f, 0.37f) - curveToRelative(0.6f, -0.17f, 1.2f, -0.07f, 1.67f, 0.3f) - curveToRelative(0.6f, 0.46f, 0.86f, 1.28f, 0.62f, 2.07f) - curveToRelative(-0.11f, 0.36f, -0.36f, 0.66f, -0.56f, 0.87f) - lineToRelative(-0.56f, 0.53f) - lineToRelative(-0.13f, 0.12f) - curveToRelative(-0.23f, 0.2f, -0.42f, 0.4f, -0.57f, 0.57f) - arcToRelative(0.9f, 0.9f, 0.0f, false, false, -0.2f, 0.36f) - curveToRelative(-0.04f, 0.22f, 0.06f, 0.51f, 0.32f, 0.84f) - arcToRelative(3.14f, 3.14f, 0.0f, false, false, 0.38f, 0.4f) - arcToRelative(8.48f, 8.48f, 0.0f, false, false, 0.17f, -12.72f) - close() - moveTo(3.5f, 12.0f) - curveToRelative(0.0f, 1.4f, 0.34f, 2.72f, 0.94f, 3.88f) - curveToRelative(0.08f, -0.56f, 0.26f, -1.25f, 0.74f, -1.77f) - arcToRelative(2.91f, 2.91f, 0.0f, false, true, 1.93f, -0.86f) - curveToRelative(0.25f, -0.04f, 0.4f, -0.08f, 0.5f, -0.14f) - arcToRelative(0.7f, 0.7f, 0.0f, false, false, 0.3f, -0.32f) - curveToRelative(0.0f, -0.03f, 0.03f, -0.1f, 0.0f, -0.33f) - curveToRelative(-0.04f, -0.18f, -0.1f, -0.38f, -0.18f, -0.63f) - lineToRelative(-0.06f, -0.2f) - curveToRelative(-0.18f, -0.6f, -0.48f, -1.6f, 0.12f, -2.5f) - curveToRelative(0.53f, -0.8f, 1.36f, -1.0f, 1.9f, -1.13f) - lineToRelative(0.16f, -0.04f) - curveToRelative(0.56f, -0.15f, 0.88f, -0.28f, 1.1f, -0.76f) - curveToRelative(0.3f, -0.63f, 0.18f, -1.48f, -0.14f, -2.32f) - arcToRelative(7.61f, 7.61f, 0.0f, false, false, -0.58f, -1.2f) - arcTo(8.5f, 8.5f, 0.0f, false, false, 3.5f, 12.0f) - close() - } - } - return _earth!! - } - -private var _earth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EarthLeaf.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EarthLeaf.kt deleted file mode 100644 index dea402fd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EarthLeaf.kt +++ /dev/null @@ -1,104 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.EarthLeaf: ImageVector - get() { - if (_earthLeaf != null) { - return _earthLeaf!! - } - _earthLeaf = fluentIcon(name = "Regular.EarthLeaf") { - fluentPath { - moveTo(10.95f, 2.05f) - horizontalLineToRelative(-0.02f) - arcTo(10.0f, 10.0f, 0.0f, false, false, 4.1f, 18.15f) - arcToRelative(9.99f, 9.99f, 0.0f, false, false, 6.92f, 3.81f) - curveToRelative(0.05f, -0.47f, 0.17f, -0.97f, 0.34f, -1.47f) - arcToRelative(8.48f, 8.48f, 0.0f, false, true, -5.63f, -2.74f) - curveToRelative(0.06f, -0.24f, 0.08f, -0.52f, 0.1f, -0.76f) - lineToRelative(0.01f, -0.12f) - lineToRelative(0.06f, -0.65f) - curveToRelative(0.07f, -0.52f, 0.2f, -0.87f, 0.38f, -1.07f) - curveToRelative(0.24f, -0.26f, 0.49f, -0.3f, 1.0f, -0.4f) - lineToRelative(0.1f, -0.01f) - curveToRelative(0.26f, -0.05f, 0.61f, -0.12f, 0.95f, -0.3f) - curveToRelative(0.36f, -0.2f, 0.67f, -0.5f, 0.9f, -0.95f) - curveToRelative(0.24f, -0.45f, 0.22f, -0.9f, 0.15f, -1.27f) - arcToRelative(7.0f, 7.0f, 0.0f, false, false, -0.27f, -1.01f) - curveToRelative(-0.2f, -0.67f, -0.23f, -1.0f, -0.06f, -1.25f) - curveToRelative(0.18f, -0.28f, 0.43f, -0.35f, 1.09f, -0.52f) - lineToRelative(0.08f, -0.02f) - curveToRelative(0.67f, -0.17f, 1.57f, -0.46f, 2.1f, -1.57f) - curveToRelative(0.56f, -1.2f, 0.24f, -2.57f, -0.1f, -3.49f) - curveToRelative(-0.13f, -0.32f, -0.26f, -0.6f, -0.38f, -0.85f) - horizontalLineTo(12.0f) - curveToRelative(1.67f, 0.0f, 3.22f, 0.48f, 4.53f, 1.3f) - curveToRelative(-0.19f, 0.26f, -0.44f, 0.6f, -0.73f, 0.96f) - arcToRelative(13.0f, 13.0f, 0.0f, false, true, -1.82f, 1.96f) - arcToRelative(1.39f, 1.39f, 0.0f, false, false, -0.55f, 1.38f) - curveToRelative(0.07f, 0.42f, 0.3f, 0.8f, 0.5f, 1.1f) - curveToRelative(0.15f, 0.25f, 0.35f, 0.5f, 0.5f, 0.72f) - lineToRelative(0.12f, 0.14f) - arcToRelative(6.23f, 6.23f, 0.0f, false, true, 0.29f, 0.42f) - lineToRelative(0.02f, 0.04f) - arcToRelative(4.1f, 4.1f, 0.0f, false, true, 0.15f, 0.65f) - curveToRelative(0.45f, -0.2f, 0.93f, -0.35f, 1.44f, -0.45f) - curveToRelative(-0.04f, -0.23f, -0.1f, -0.5f, -0.19f, -0.72f) - arcToRelative(3.69f, 3.69f, 0.0f, false, false, -0.65f, -1.01f) - curveToRelative(-0.15f, -0.21f, -0.3f, -0.4f, -0.43f, -0.6f) - curveToRelative(-0.16f, -0.24f, -0.23f, -0.4f, -0.26f, -0.5f) - arcToRelative(14.6f, 14.6f, 0.0f, false, false, 2.05f, -2.2f) - curveToRelative(0.3f, -0.36f, 0.56f, -0.7f, 0.76f, -0.97f) - arcToRelative(8.48f, 8.48f, 0.0f, false, true, 2.76f, 5.82f) - curveToRelative(0.58f, 0.04f, 1.08f, 0.12f, 1.5f, 0.2f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, -11.04f, -9.69f) - close() - moveTo(4.44f, 15.88f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, 5.8f, -12.2f) - arcToRelative(7.41f, 7.41f, 0.0f, false, true, 0.57f, 1.2f) - curveToRelative(0.31f, 0.84f, 0.44f, 1.7f, 0.15f, 2.32f) - curveToRelative(-0.23f, 0.48f, -0.55f, 0.61f, -1.11f, 0.76f) - lineTo(9.69f, 8.0f) - curveToRelative(-0.54f, 0.13f, -1.37f, 0.33f, -1.9f, 1.12f) - curveToRelative(-0.6f, 0.91f, -0.3f, 1.91f, -0.12f, 2.52f) - lineToRelative(0.06f, 0.19f) - curveToRelative(0.08f, 0.25f, 0.14f, 0.45f, 0.18f, 0.63f) - curveToRelative(0.03f, 0.22f, 0.0f, 0.3f, 0.0f, 0.33f) - arcToRelative(0.7f, 0.7f, 0.0f, false, true, -0.3f, 0.32f) - curveToRelative(-0.1f, 0.06f, -0.25f, 0.1f, -0.5f, 0.14f) - lineToRelative(-0.13f, 0.02f) - curveToRelative(-0.46f, 0.08f, -1.2f, 0.2f, -1.8f, 0.84f) - arcToRelative(3.27f, 3.27f, 0.0f, false, false, -0.74f, 1.77f) - close() - moveTo(12.0f, 22.2f) - curveToRelative(0.06f, -0.96f, 0.5f, -2.14f, 1.23f, -3.25f) - arcToRelative(8.9f, 8.9f, 0.0f, false, true, 5.38f, -3.97f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.24f, -0.97f) - arcToRelative(9.9f, 9.9f, 0.0f, false, false, -5.73f, 4.0f) - curveToRelative(-0.1f, -0.3f, -0.15f, -0.63f, -0.15f, -1.01f) - curveToRelative(0.0f, -0.92f, 0.47f, -1.91f, 1.2f, -2.7f) - arcToRelative(5.33f, 5.33f, 0.0f, false, true, 3.2f, -1.64f) - arcToRelative(13.5f, 13.5f, 0.0f, false, true, 5.56f, 0.23f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.22f, 1.35f) - arcToRelative(0.91f, 0.91f, 0.0f, false, false, -0.26f, 0.34f) - curveToRelative(-0.11f, 0.2f, -0.22f, 0.48f, -0.32f, 0.82f) - curveToRelative(-0.1f, 0.29f, -0.17f, 0.6f, -0.26f, 0.93f) - lineToRelative(-0.06f, 0.21f) - curveToRelative(-0.11f, 0.41f, -0.24f, 0.85f, -0.38f, 1.29f) - curveToRelative(-0.3f, 0.86f, -0.7f, 1.78f, -1.4f, 2.48f) - arcToRelative(4.02f, 4.02f, 0.0f, false, true, -3.0f, 1.2f) - arcToRelative(3.82f, 3.82f, 0.0f, false, true, -2.85f, -1.16f) - curveToRelative(-0.4f, 0.74f, -0.61f, 1.43f, -0.65f, 1.95f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, -0.1f) - close() - } - } - return _earthLeaf!! - } - -private var _earthLeaf: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EditOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EditOff.kt deleted file mode 100644 index f1710ae9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EditOff.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.EditOff: ImageVector - get() { - if (_editOff != null) { - return _editOff!! - } - _editOff = fluentIcon(name = "Regular.EditOff") { - fluentPath { - moveTo(8.94f, 10.0f) - lineTo(2.22f, 3.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(18.5f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineTo(14.0f, 15.06f) - lineToRelative(-5.0f, 5.0f) - curveToRelative(-0.4f, 0.4f, -0.92f, 0.7f, -1.48f, 0.83f) - lineToRelative(-4.6f, 1.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.9f, -0.91f) - lineToRelative(1.1f, -4.6f) - arcTo(3.1f, 3.1f, 0.0f, false, true, 3.94f, 15.0f) - lineToRelative(5.0f, -5.0f) - close() - moveTo(12.94f, 14.0f) - lineTo(10.0f, 11.06f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(1.6f, 1.6f, 0.0f, false, false, -0.42f, 0.76f) - lineToRelative(-0.82f, 3.42f) - lineToRelative(3.42f, -0.81f) - curveToRelative(0.29f, -0.07f, 0.55f, -0.22f, 0.76f, -0.43f) - lineToRelative(5.0f, -5.0f) - close() - moveTo(17.94f, 9.0f) - lineTo(15.06f, 11.88f) - lineTo(16.12f, 12.94f) - lineTo(20.95f, 8.11f) - arcToRelative(3.58f, 3.58f, 0.0f, false, false, -5.06f, -5.06f) - lineToRelative(-4.83f, 4.83f) - lineToRelative(1.06f, 1.06f) - lineTo(15.0f, 6.06f) - lineTo(17.94f, 9.0f) - close() - moveTo(16.95f, 4.1f) - arcToRelative(2.08f, 2.08f, 0.0f, true, true, 2.94f, 2.95f) - lineToRelative(-0.89f, 0.89f) - lineTo(16.06f, 5.0f) - lineToRelative(0.9f, -0.9f) - close() - } - } - return _editOff!! - } - -private var _editOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EditProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EditProhibited.kt deleted file mode 100644 index a14f01ca..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EditProhibited.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.EditProhibited: ImageVector - get() { - if (_editProhibited != null) { - return _editProhibited!! - } - _editProhibited = fluentIcon(name = "Regular.EditProhibited") { - fluentPath { - moveTo(20.95f, 3.05f) - arcToRelative(3.58f, 3.58f, 0.0f, false, false, -5.06f, 0.0f) - lineTo(3.94f, 15.0f) - curveToRelative(-0.4f, 0.4f, -0.7f, 0.92f, -0.82f, 1.48f) - lineToRelative(-1.1f, 4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.9f, 0.9f) - lineToRelative(4.6f, -1.1f) - arcTo(3.1f, 3.1f, 0.0f, false, false, 9.0f, 20.07f) - lineToRelative(1.15f, -1.15f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(7.94f, 19.0f) - arcToRelative(1.6f, 1.6f, 0.0f, false, true, -0.76f, 0.43f) - lineToRelative(-3.42f, 0.8f) - lineToRelative(0.82f, -3.4f) - curveToRelative(0.06f, -0.3f, 0.21f, -0.56f, 0.42f, -0.77f) - lineToRelative(10.0f, -10.0f) - lineTo(17.94f, 9.0f) - lineToRelative(-2.03f, 2.03f) - arcToRelative(6.57f, 6.57f, 0.0f, false, true, 2.0f, 0.12f) - lineToRelative(3.04f, -3.04f) - arcToRelative(3.58f, 3.58f, 0.0f, false, false, 0.0f, -5.06f) - close() - moveTo(16.95f, 4.11f) - arcToRelative(2.08f, 2.08f, 0.0f, true, true, 2.94f, 2.94f) - lineToRelative(-0.89f, 0.89f) - lineTo(16.06f, 5.0f) - lineToRelative(0.9f, -0.9f) - close() - moveTo(22.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(12.5f, 17.5f) - curveToRelative(0.0f, 0.83f, 0.26f, 1.6f, 0.7f, 2.25f) - lineToRelative(5.55f, -5.56f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) - close() - moveTo(16.5f, 21.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) - lineToRelative(-5.55f, 5.56f) - curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) - close() - } - } - return _editProhibited!! - } - -private var _editProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EditSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EditSettings.kt deleted file mode 100644 index 65db7015..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EditSettings.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.EditSettings: ImageVector - get() { - if (_editSettings != null) { - return _editSettings!! - } - _editSettings = fluentIcon(name = "Regular.EditSettings") { - fluentPath { - moveTo(20.95f, 3.05f) - arcToRelative(3.58f, 3.58f, 0.0f, false, false, -5.06f, 0.0f) - lineTo(3.94f, 15.0f) - curveToRelative(-0.4f, 0.4f, -0.7f, 0.92f, -0.82f, 1.48f) - lineToRelative(-1.1f, 4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.9f, 0.9f) - lineToRelative(4.6f, -1.1f) - arcTo(3.1f, 3.1f, 0.0f, false, false, 9.0f, 20.07f) - lineToRelative(1.15f, -1.15f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -0.12f, -2.0f) - lineTo(7.94f, 19.0f) - arcToRelative(1.6f, 1.6f, 0.0f, false, true, -0.76f, 0.43f) - lineToRelative(-3.42f, 0.8f) - lineToRelative(0.82f, -3.4f) - curveToRelative(0.06f, -0.3f, 0.21f, -0.56f, 0.42f, -0.77f) - lineToRelative(10.0f, -10.0f) - lineTo(17.94f, 9.0f) - lineToRelative(-2.03f, 2.03f) - arcToRelative(6.57f, 6.57f, 0.0f, false, true, 2.0f, 0.12f) - lineToRelative(3.04f, -3.04f) - arcToRelative(3.58f, 3.58f, 0.0f, false, false, 0.0f, -5.06f) - close() - moveTo(16.95f, 4.11f) - arcToRelative(2.08f, 2.08f, 0.0f, true, true, 2.94f, 2.94f) - lineToRelative(-0.89f, 0.89f) - lineTo(16.06f, 5.0f) - lineToRelative(0.9f, -0.9f) - close() - moveTo(13.28f, 13.98f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.59f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) - lineToRelative(0.55f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) - lineToRelative(-0.19f, 0.64f) - curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) - lineToRelative(0.49f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.9f) - lineToRelative(-0.2f, -0.7f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) - lineToRelative(0.59f, -0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, -0.01f, -1.8f) - lineToRelative(-0.54f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.19f, -0.63f) - curveToRelative(-0.44f, -0.39f, -0.94f, -0.7f, -1.49f, -0.93f) - lineToRelative(-0.49f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.91f) - lineToRelative(0.2f, 0.69f) - close() - moveTo(16.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(15.7f, 16.0f, 16.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(17.3f, 19.0f, 16.5f, 19.0f) - close() - } - } - return _editSettings!! - } - -private var _editSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Elevator.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Elevator.kt deleted file mode 100644 index 63bcd993..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Elevator.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Elevator: ImageVector - get() { - if (_elevator != null) { - return _elevator!! - } - _elevator = fluentIcon(name = "Regular.Elevator") { - fluentPath { - moveTo(8.03f, 8.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-1.75f, 1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(0.47f, -0.47f) - verticalLineToRelative(2.94f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.94f) - lineToRelative(0.47f, 0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(8.03f, 8.97f) - close() - moveTo(14.22f, 13.03f) - lineTo(15.97f, 14.78f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(1.75f, -1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-0.47f, 0.47f) - lineTo(17.25f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.94f) - lineToRelative(-0.47f, -0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - close() - moveTo(5.25f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) - horizontalLineToRelative(13.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-9.5f) - curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) - lineTo(5.25f, 4.0f) - close() - moveTo(3.5f, 7.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(13.0f) - horizontalLineToRelative(-6.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-9.5f) - close() - moveTo(12.75f, 5.5f) - horizontalLineToRelative(6.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-6.0f) - verticalLineToRelative(-13.0f) - close() - } - } - return _elevator!! - } - -private var _elevator: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Emoji.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Emoji.kt deleted file mode 100644 index 0c22a966..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Emoji.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Emoji: ImageVector - get() { - if (_emoji != null) { - return _emoji!! - } - _emoji = fluentIcon(name = "Regular.Emoji") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) - close() - moveTo(8.46f, 14.78f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 7.07f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.18f, 0.94f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, -9.43f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.18f, -0.94f) - close() - moveTo(9.0f, 8.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(15.0f, 8.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - } - } - return _emoji!! - } - -private var _emoji: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiAdd.kt deleted file mode 100644 index 4c37a6f3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiAdd.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.EmojiAdd: ImageVector - get() { - if (_emojiAdd != null) { - return _emojiAdd!! - } - _emojiAdd = fluentIcon(name = "Regular.EmojiAdd") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 9.97f, 10.78f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.47f, -1.05f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, -8.77f, 8.77f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, 1.05f, 1.47f) - lineTo(12.0f, 22.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, -20.0f) - close() - moveTo(17.5f, 14.0f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) - lineToRelative(-0.01f, 0.1f) - lineTo(17.0f, 17.0f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) - verticalLineToRelative(0.19f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) - lineTo(17.0f, 17.99f) - verticalLineToRelative(2.61f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - horizontalLineToRelative(0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) - lineToRelative(0.01f, -0.1f) - lineTo(18.0f, 18.0f) - horizontalLineToRelative(2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - verticalLineToRelative(-0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) - lineToRelative(-0.1f, -0.01f) - lineTo(18.0f, 17.0f) - verticalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) - horizontalLineToRelative(-0.09f) - close() - moveTo(8.46f, 14.78f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 2.63f, 1.63f) - arcToRelative(6.46f, 6.46f, 0.0f, false, false, -0.08f, 1.5f) - arcToRelative(5.98f, 5.98f, 0.0f, false, true, -3.73f, -2.2f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.18f, -0.93f) - close() - moveTo(9.0f, 8.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(15.0f, 8.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - } - } - return _emojiAdd!! - } - -private var _emojiAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiAngry.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiAngry.kt deleted file mode 100644 index 843442f2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiAngry.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.EmojiAngry: ImageVector - get() { - if (_emojiAngry != null) { - return _emojiAngry!! - } - _emojiAngry = fluentIcon(name = "Regular.EmojiAngry") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) - close() - moveTo(12.0f, 13.5f) - curveToRelative(1.63f, 0.0f, 3.16f, 0.65f, 4.28f, 1.8f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.07f, 1.04f) - arcToRelative(4.48f, 4.48f, 0.0f, false, false, -6.43f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.07f, -1.04f) - arcTo(5.98f, 5.98f, 0.0f, false, true, 12.0f, 13.5f) - close() - moveTo(7.16f, 6.78f) - curveToRelative(0.24f, -0.3f, 0.65f, -0.36f, 0.97f, -0.18f) - lineToRelative(0.09f, 0.06f) - lineToRelative(2.5f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.47f, 1.34f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -1.71f, -1.16f) - lineToRelative(-1.26f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.12f, -1.06f) - close() - moveTo(13.28f, 8.66f) - lineTo(15.78f, 6.66f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.02f, 1.1f) - lineToRelative(-0.08f, 0.07f) - lineToRelative(-1.26f, 1.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -1.7f, 1.3f) - lineTo(13.76f, 10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.55f, -1.26f) - lineToRelative(0.07f, -0.08f) - lineToRelative(2.5f, -2.0f) - lineToRelative(-2.5f, 2.0f) - close() - } - } - return _emojiAngry!! - } - -private var _emojiAngry: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiEdit.kt deleted file mode 100644 index 58057d85..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiEdit.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.EmojiEdit: ImageVector - get() { - if (_emojiEdit != null) { - return _emojiEdit!! - } - _emojiEdit = fluentIcon(name = "Regular.EmojiEdit") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 9.97f, 9.25f) - arcToRelative(3.3f, 3.3f, 0.0f, false, false, -1.53f, -0.24f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, -9.14f, 9.46f) - lineToRelative(-0.24f, 0.94f) - curveToRelative(-0.04f, 0.18f, -0.06f, 0.36f, -0.06f, 0.54f) - arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 2.0f) - close() - moveTo(12.0f, 16.5f) - curveToRelative(1.12f, 0.0f, 2.17f, -0.41f, 2.98f, -1.13f) - lineToRelative(-2.49f, 2.5f) - lineToRelative(-0.12f, 0.12f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, -5.09f, -2.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.18f, -0.93f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 16.5f) - close() - moveTo(9.0f, 8.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(15.0f, 8.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _emojiEdit!! - } - -private var _emojiEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiHand.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiHand.kt deleted file mode 100644 index 28931718..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiHand.kt +++ /dev/null @@ -1,110 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.EmojiHand: ImageVector - get() { - if (_emojiHand != null) { - return _emojiHand!! - } - _emojiHand = fluentIcon(name = "Regular.EmojiHand") { - fluentPath { - moveTo(9.24f, 1.82f) - curveToRelative(0.15f, -0.04f, 0.33f, -0.07f, 0.51f, -0.07f) - curveToRelative(1.1f, 0.0f, 1.75f, 0.9f, 1.75f, 1.75f) - verticalLineToRelative(3.67f) - curveToRelative(0.29f, -0.1f, 0.63f, -0.17f, 1.0f, -0.17f) - curveTo(13.9f, 7.0f, 15.0f, 8.03f, 15.0f, 9.5f) - curveToRelative(0.0f, 0.24f, -0.12f, 0.47f, -0.31f, 0.61f) - lineToRelative(-1.72f, 1.23f) - lineToRelative(-0.96f, 0.83f) - curveToRelative(-0.63f, 0.56f, -1.2f, 1.19f, -1.7f, 1.87f) - lineToRelative(-0.6f, 0.83f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 7.48f, 16.0f) - lineTo(5.84f, 16.0f) - curveToRelative(-0.93f, 0.0f, -1.82f, -0.47f, -2.3f, -1.31f) - arcToRelative(20.7f, 20.7f, 0.0f, false, true, -0.98f, -1.9f) - arcTo(5.58f, 5.58f, 0.0f, false, true, 2.0f, 10.75f) - verticalLineToRelative(-6.0f) - arcToRelative(1.74f, 1.74f, 0.0f, false, true, 2.07f, -1.72f) - curveToRelative(0.19f, -0.69f, 0.79f, -1.28f, 1.68f, -1.28f) - curveToRelative(0.18f, 0.0f, 0.35f, 0.03f, 0.51f, 0.07f) - curveToRelative(0.3f, -0.47f, 0.8f, -0.82f, 1.49f, -0.82f) - curveToRelative(0.68f, 0.0f, 1.2f, 0.35f, 1.49f, 0.82f) - close() - moveTo(7.57f, 2.57f) - arcToRelative(0.27f, 0.27f, 0.0f, false, false, -0.07f, 0.18f) - verticalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-3.8f) - arcToRelative(0.22f, 0.22f, 0.0f, false, false, -0.06f, -0.12f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.19f, -0.08f) - curveToRelative(-0.1f, 0.0f, -0.15f, 0.03f, -0.18f, 0.07f) - arcToRelative(0.27f, 0.27f, 0.0f, false, false, -0.07f, 0.18f) - verticalLineToRelative(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-3.0f) - arcToRelative(0.27f, 0.27f, 0.0f, false, false, -0.07f, -0.18f) - curveToRelative(-0.03f, -0.04f, -0.09f, -0.07f, -0.18f, -0.07f) - curveToRelative(-0.1f, 0.0f, -0.15f, 0.03f, -0.18f, 0.07f) - arcToRelative(0.27f, 0.27f, 0.0f, false, false, -0.07f, 0.18f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.28f, 0.15f, 0.79f, 0.43f, 1.43f) - curveToRelative(0.27f, 0.62f, 0.62f, 1.26f, 0.9f, 1.76f) - curveToRelative(0.2f, 0.34f, 0.58f, 0.56f, 1.01f, 0.56f) - horizontalLineToRelative(1.64f) - curveToRelative(0.4f, 0.0f, 0.78f, -0.2f, 1.01f, -0.52f) - lineToRelative(0.6f, -0.82f) - curveToRelative(0.56f, -0.78f, 1.21f, -1.49f, 1.94f, -2.12f) - lineToRelative(0.98f, -0.86f) - arcToRelative(0.78f, 0.78f, 0.0f, false, true, 0.06f, -0.04f) - lineToRelative(1.38f, -0.99f) - curveToRelative(-0.12f, -0.4f, -0.48f, -0.65f, -0.95f, -0.65f) - curveToRelative(-0.63f, 0.0f, -1.09f, 0.4f, -1.24f, 0.53f) - lineToRelative(-0.03f, 0.03f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 10.0f, 8.5f) - lineTo(10.0f, 3.5f) - arcToRelative(0.28f, 0.28f, 0.0f, false, false, -0.07f, -0.18f) - curveToRelative(-0.04f, -0.04f, -0.09f, -0.07f, -0.18f, -0.07f) - curveToRelative(-0.1f, 0.0f, -0.15f, 0.03f, -0.18f, 0.07f) - arcToRelative(0.27f, 0.27f, 0.0f, false, false, -0.07f, 0.18f) - verticalLineToRelative(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-4.5f) - arcToRelative(0.27f, 0.27f, 0.0f, false, false, -0.07f, -0.18f) - curveToRelative(-0.03f, -0.04f, -0.09f, -0.07f, -0.18f, -0.07f) - curveToRelative(-0.1f, 0.0f, -0.15f, 0.03f, -0.18f, 0.07f) - close() - moveTo(13.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(17.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(15.0f, 22.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, -6.73f, -5.08f) - curveToRelative(0.5f, -0.11f, 0.97f, -0.32f, 1.39f, -0.62f) - arcTo(5.5f, 5.5f, 0.0f, true, false, 16.0f, 9.6f) - lineTo(16.0f, 9.5f) - curveToRelative(0.0f, -0.53f, -0.1f, -1.03f, -0.3f, -1.47f) - arcTo(7.0f, 7.0f, 0.0f, false, true, 15.0f, 22.0f) - close() - moveTo(13.2f, 16.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.08f, 1.04f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 5.76f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.08f, -1.04f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -3.6f, 0.0f) - close() - } - } - return _emojiHand!! - } - -private var _emojiHand: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiLaugh.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiLaugh.kt deleted file mode 100644 index 70e127fe..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiLaugh.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.EmojiLaugh: ImageVector - get() { - if (_emojiLaugh != null) { - return _emojiLaugh!! - } - _emojiLaugh = fluentIcon(name = "Regular.EmojiLaugh") { - fluentPath { - moveTo(6.75f, 12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.82f) - curveToRelative(0.28f, 3.07f, 2.55f, 5.68f, 6.0f, 5.68f) - reflectiveCurveToRelative(5.72f, -2.6f, 6.0f, -5.68f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.82f) - lineTo(6.75f, 12.0f) - close() - moveTo(12.0f, 17.0f) - arcToRelative(4.4f, 4.4f, 0.0f, false, true, -4.37f, -3.5f) - horizontalLineToRelative(8.74f) - arcTo(4.4f, 4.4f, 0.0f, false, true, 12.0f, 17.0f) - close() - moveTo(15.25f, 8.75f) - curveToRelative(-0.4f, 0.0f, -0.71f, 0.29f, -0.76f, 0.61f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.48f, -0.22f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 2.24f, -1.89f) - curveToRelative(1.12f, 0.0f, 2.08f, 0.8f, 2.24f, 1.89f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.48f, 0.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.76f, -0.61f) - close() - moveTo(7.99f, 9.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.76f, -0.61f) - curveToRelative(0.4f, 0.0f, 0.71f, 0.29f, 0.76f, 0.61f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.48f, -0.22f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -1.89f) - curveToRelative(-1.12f, 0.0f, -2.08f, 0.8f, -2.24f, 1.89f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.48f, 0.22f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) - close() - moveTo(3.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 17.0f, 0.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, -17.0f, 0.0f) - close() - } - } - return _emojiLaugh!! - } - -private var _emojiLaugh: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiMeh.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiMeh.kt deleted file mode 100644 index 1d061f95..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiMeh.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.EmojiMeh: ImageVector - get() { - if (_emojiMeh != null) { - return _emojiMeh!! - } - _emojiMeh = fluentIcon(name = "Regular.EmojiMeh") { - fluentPath { - moveTo(9.0f, 8.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(15.0f, 8.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(8.25f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-7.5f) - close() - moveTo(2.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) - close() - } - } - return _emojiMeh!! - } - -private var _emojiMeh: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiMultiple.kt deleted file mode 100644 index b2158267..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiMultiple.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.EmojiMultiple: ImageVector - get() { - if (_emojiMultiple != null) { - return _emojiMultiple!! - } - _emojiMultiple = fluentIcon(name = "Regular.EmojiMultiple") { - fluentPath { - moveTo(8.5f, 2.0f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, 6.31f, 4.94f) - curveToRelative(-0.51f, 0.01f, -1.02f, 0.07f, -1.5f, 0.17f) - arcToRelative(5.0f, 5.0f, 0.0f, true, false, -6.2f, 6.2f) - curveToRelative(-0.1f, 0.48f, -0.16f, 0.99f, -0.17f, 1.5f) - arcTo(6.5f, 6.5f, 0.0f, false, true, 8.5f, 2.0f) - close() - moveTo(8.66f, 10.0f) - curveToRelative(0.36f, -0.45f, 0.76f, -0.86f, 1.2f, -1.22f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -4.02f, 0.95f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.14f, 0.97f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.68f, -0.7f) - close() - moveTo(7.5f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(11.5f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(12.5f, 14.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(17.96f, 16.54f) - curveToRelative(0.31f, 0.27f, 0.35f, 0.74f, 0.08f, 1.06f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -6.08f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.14f, -0.97f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.8f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -0.09f) - close() - moveTo(17.5f, 14.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(15.0f, 22.0f) - arcToRelative(7.0f, 7.0f, 0.0f, true, false, 0.0f, -14.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, false, 0.0f, 14.0f) - close() - moveTo(15.0f, 20.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, 11.0f) - close() - } - } - return _emojiMultiple!! - } - -private var _emojiMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiSad.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiSad.kt deleted file mode 100644 index 391ebd71..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiSad.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.EmojiSad: ImageVector - get() { - if (_emojiSad != null) { - return _emojiSad!! - } - _emojiSad = fluentIcon(name = "Regular.EmojiSad") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) - close() - moveTo(12.0f, 13.5f) - curveToRelative(1.63f, 0.0f, 3.16f, 0.65f, 4.28f, 1.8f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.07f, 1.04f) - arcToRelative(4.48f, 4.48f, 0.0f, false, false, -6.43f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.07f, -1.04f) - arcTo(5.98f, 5.98f, 0.0f, false, true, 12.0f, 13.5f) - close() - moveTo(9.0f, 8.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(15.0f, 8.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - } - } - return _emojiSad!! - } - -private var _emojiSad: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiSadSlight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiSadSlight.kt deleted file mode 100644 index 0dff4627..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiSadSlight.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.EmojiSadSlight: ImageVector - get() { - if (_emojiSadSlight != null) { - return _emojiSadSlight!! - } - _emojiSadSlight = fluentIcon(name = "Regular.EmojiSadSlight") { - fluentPath { - moveTo(10.25f, 10.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) - close() - moveTo(16.25f, 10.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) - close() - moveTo(15.75f, 14.0f) - arcToRelative(7.24f, 7.24f, 0.0f, false, false, -4.53f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - curveToRelative(0.27f, -0.28f, 0.8f, -0.6f, 1.47f, -0.86f) - arcToRelative(5.75f, 5.75f, 0.0f, false, true, 2.0f, -0.42f) - horizontalLineToRelative(0.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.6f) - close() - moveTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 20.0f, 0.0f) - close() - moveTo(3.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 17.0f, 0.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, -17.0f, 0.0f) - close() - } - } - return _emojiSadSlight!! - } - -private var _emojiSadSlight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiSmileSlight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiSmileSlight.kt deleted file mode 100644 index 8b832492..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiSmileSlight.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.EmojiSmileSlight: ImageVector - get() { - if (_emojiSmileSlight != null) { - return _emojiSmileSlight!! - } - _emojiSmileSlight = fluentIcon(name = "Regular.EmojiSmileSlight") { - fluentPath { - moveTo(10.25f, 10.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) - close() - moveTo(16.25f, 10.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) - close() - moveTo(10.14f, 15.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.78f, 1.3f) - arcToRelative(5.2f, 5.2f, 0.0f, false, false, 2.64f, 0.66f) - curveToRelative(0.92f, 0.0f, 1.87f, -0.2f, 2.64f, -0.67f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.78f, -1.28f) - curveToRelative(-0.48f, 0.29f, -1.15f, 0.45f, -1.86f, 0.45f) - curveToRelative(-0.7f, 0.0f, -1.38f, -0.16f, -1.86f, -0.45f) - close() - moveTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 20.0f, 0.0f) - close() - moveTo(3.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 17.0f, 0.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, -17.0f, 0.0f) - close() - } - } - return _emojiSmileSlight!! - } - -private var _emojiSmileSlight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiSparkle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiSparkle.kt deleted file mode 100644 index 63a582a8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiSparkle.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.EmojiSparkle: ImageVector - get() { - if (_emojiSparkle != null) { - return _emojiSparkle!! - } - _emojiSparkle = fluentIcon(name = "Regular.EmojiSparkle") { - fluentPath { - moveTo(16.09f, 6.41f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.35f, -0.95f) - lineTo(13.36f, 5.0f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, -1.03f) - lineToRelative(0.71f, -0.23f) - lineToRelative(0.67f, -0.22f) - arcToRelative(2.82f, 2.82f, 0.0f, false, false, 1.76f, -1.76f) - lineToRelative(0.01f, -0.03f) - lineToRelative(0.45f, -1.38f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, 1.03f, 0.0f) - lineToRelative(0.44f, 1.38f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.8f, 1.8f) - lineToRelative(1.38f, 0.44f) - lineToRelative(0.03f, 0.01f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, 1.03f) - lineToRelative(-1.38f, 0.44f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.57f, 1.3f) - curveToRelative(-0.1f, 0.15f, -0.17f, 0.32f, -0.23f, 0.5f) - lineToRelative(-0.45f, 1.38f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, -1.03f, 0.0f) - lineToRelative(-0.44f, -1.38f) - curveToRelative(-0.1f, -0.3f, -0.25f, -0.6f, -0.45f, -0.85f) - close() - moveTo(23.79f, 10.21f) - lineTo(23.02f, 9.96f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, -1.0f, -1.0f) - lineToRelative(-0.25f, -0.76f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, -0.57f, 0.0f) - lineToRelative(-0.25f, 0.77f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, -0.72f, 0.88f) - lineToRelative(-0.26f, 0.11f) - lineToRelative(-0.77f, 0.25f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.77f, 0.25f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, 1.0f) - lineToRelative(0.24f, 0.77f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.12f, 0.14f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.46f, -0.14f) - lineToRelative(0.24f, -0.77f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, -1.0f) - lineToRelative(0.77f, -0.24f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, -0.57f) - horizontalLineToRelative(-0.02f) - close() - moveTo(20.75f, 13.76f) - curveToRelative(-0.15f, -0.1f, -0.27f, -0.23f, -0.36f, -0.38f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, -8.03f, -9.87f) - curveToRelative(0.18f, -0.22f, 0.42f, -0.39f, 0.7f, -0.48f) - lineToRelative(1.35f, -0.44f) - curveToRelative(0.14f, -0.05f, 0.28f, -0.11f, 0.4f, -0.2f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 7.0f, 11.58f) - arcToRelative(1.3f, 1.3f, 0.0f, false, true, -1.06f, -0.2f) - close() - moveTo(12.0f, 16.5f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -3.54f, -1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.18f, 0.93f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, 9.43f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.18f, -0.92f) - arcTo(4.5f, 4.5f, 0.0f, false, true, 12.0f, 16.5f) - close() - moveTo(10.25f, 10.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) - close() - moveTo(16.25f, 10.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) - close() - } - } - return _emojiSparkle!! - } - -private var _emojiSparkle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiSurprise.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiSurprise.kt deleted file mode 100644 index eee54b74..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EmojiSurprise.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.EmojiSurprise: ImageVector - get() { - if (_emojiSurprise != null) { - return _emojiSurprise!! - } - _emojiSurprise = fluentIcon(name = "Regular.EmojiSurprise") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) - close() - moveTo(12.0f, 13.0f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -4.5f) - close() - moveTo(9.0f, 8.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(15.0f, 8.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - } - } - return _emojiSurprise!! - } - -private var _emojiSurprise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Engine.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Engine.kt deleted file mode 100644 index 8449e6b9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Engine.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Engine: ImageVector - get() { - if (_engine != null) { - return _engine!! - } - _engine = fluentIcon(name = "Regular.Engine") { - fluentPath { - moveTo(9.75f, 9.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(0.75f) - lineTo(12.5f, 9.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(3.75f) - horizontalLineToRelative(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 9.0f, 12.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(9.75f, 3.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(10.5f, 5.0f) - horizontalLineToRelative(2.0f) - lineTo(12.5f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(14.0f, 5.0f) - horizontalLineToRelative(2.75f) - curveToRelative(0.3f, 0.0f, 0.58f, 0.19f, 0.7f, 0.47f) - lineToRelative(0.8f, 2.03f) - horizontalLineToRelative(1.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 10.25f) - verticalLineToRelative(5.5f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) - horizontalLineToRelative(-1.0f) - lineToRelative(-0.8f, 2.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, 0.47f) - horizontalLineToRelative(-7.5f) - curveToRelative(-0.2f, 0.0f, -0.4f, -0.09f, -0.55f, -0.24f) - lineTo(5.74f, 17.6f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.0f, 15.7f) - lineTo(5.0f, 12.5f) - lineTo(3.5f, 12.5f) - verticalLineToRelative(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(3.5f, 11.0f) - lineTo(5.0f, 11.0f) - lineTo(5.0f, 7.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 7.75f, 5.0f) - lineTo(9.0f, 5.0f) - lineTo(9.0f, 3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(7.75f, 6.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(7.96f) - curveToRelative(0.0f, 0.32f, 0.12f, 0.62f, 0.34f, 0.85f) - lineToRelative(2.74f, 2.94f) - horizontalLineToRelative(6.66f) - lineToRelative(0.81f, -2.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.7f, -0.47f) - horizontalLineToRelative(1.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-5.5f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, -0.47f) - lineToRelative(-0.8f, -2.03f) - horizontalLineToRelative(-8.5f) - close() - } - } - return _engine!! - } - -private var _engine: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EqualCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EqualCircle.kt deleted file mode 100644 index ae487b73..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EqualCircle.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.EqualCircle: ImageVector - get() { - if (_equalCircle != null) { - return _equalCircle!! - } - _equalCircle = fluentIcon(name = "Regular.EqualCircle") { - fluentPath { - moveTo(16.26f, 10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(7.77f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.49f) - close() - moveTo(16.26f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(7.77f, 13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.49f) - close() - moveTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 20.0f, 0.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 0.0f, 17.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, 0.0f, -17.0f) - close() - } - } - return _equalCircle!! - } - -private var _equalCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EqualOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EqualOff.kt deleted file mode 100644 index a549eaab..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EqualOff.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.EqualOff: ImageVector - get() { - if (_equalOff != null) { - return _equalOff!! - } - _equalOff = fluentIcon(name = "Regular.EqualOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(6.94f, 8.0f) - horizontalLineTo(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.69f) - lineToRelative(5.0f, 5.0f) - horizontalLineTo(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(11.19f) - lineToRelative(5.78f, 5.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(20.25f, 14.5f) - horizontalLineToRelative(-2.57f) - lineToRelative(1.5f, 1.5f) - horizontalLineToRelative(1.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(11.18f, 8.0f) - lineToRelative(1.5f, 1.5f) - horizontalLineToRelative(7.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-9.07f) - close() - } - } - return _equalOff!! - } - -private var _equalOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Eraser.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Eraser.kt deleted file mode 100644 index fe50f485..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Eraser.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Eraser: ImageVector - get() { - if (_eraser != null) { - return _eraser!! - } - _eraser = fluentIcon(name = "Regular.Eraser") { - fluentPath { - moveToRelative(15.87f, 2.67f) - lineToRelative(4.97f, 4.97f) - curveToRelative(0.88f, 0.88f, 0.88f, 2.3f, 0.0f, 3.18f) - lineToRelative(-8.68f, 8.68f) - horizontalLineToRelative(6.1f) - curveToRelative(0.37f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.64f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(9.83f, 21.0f) - arcToRelative(2.24f, 2.24f, 0.0f, false, true, -1.71f, -0.65f) - lineToRelative(-4.97f, -4.97f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -3.18f) - lineToRelative(9.53f, -9.53f) - curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.0f) - close() - moveTo(5.71f, 11.77f) - lineTo(4.22f, 13.26f) - curveToRelative(-0.3f, 0.29f, -0.3f, 0.76f, 0.0f, 1.06f) - lineToRelative(4.97f, 4.96f) - curveToRelative(0.15f, 0.15f, 0.34f, 0.22f, 0.53f, 0.22f) - horizontalLineToRelative(0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.46f, -0.22f) - lineToRelative(1.49f, -1.48f) - lineToRelative(-6.03f, -6.03f) - close() - moveTo(13.75f, 3.73f) - lineTo(6.77f, 10.7f) - lineToRelative(6.03f, 6.03f) - lineToRelative(6.98f, -6.98f) - curveToRelative(0.29f, -0.3f, 0.29f, -0.77f, 0.0f, -1.06f) - lineTo(14.8f, 3.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - close() - } - } - return _eraser!! - } - -private var _eraser: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EraserMedium.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EraserMedium.kt deleted file mode 100644 index ab963189..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EraserMedium.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.EraserMedium: ImageVector - get() { - if (_eraserMedium != null) { - return _eraserMedium!! - } - _eraserMedium = fluentIcon(name = "Regular.EraserMedium") { - fluentPath { - moveTo(15.84f, 2.66f) - curveToRelative(-0.87f, -0.89f, -2.3f, -0.9f, -3.19f, -0.02f) - lineToRelative(-9.6f, 9.5f) - curveToRelative(-0.89f, 0.89f, -0.89f, 2.33f, 0.0f, 3.21f) - lineToRelative(5.1f, 5.0f) - curveToRelative(0.9f, 0.88f, 2.31f, 0.87f, 3.18f, -0.01f) - lineToRelative(0.22f, -0.22f) - arcToRelative(6.45f, 6.45f, 0.0f, false, true, -0.48f, -1.65f) - lineToRelative(-0.8f, 0.81f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-5.1f, -5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.07f) - lineToRelative(1.53f, -1.51f) - lineTo(11.0f, 17.07f) - curveToRelative(0.04f, -0.6f, 0.17f, -1.2f, 0.37f, -1.75f) - lineTo(6.7f, 10.64f) - lineToRelative(7.0f, -6.94f) - curveToRelative(0.3f, -0.29f, 0.78f, -0.29f, 1.07f, 0.01f) - lineToRelative(4.91f, 5.01f) - curveToRelative(0.29f, 0.3f, 0.29f, 0.76f, 0.0f, 1.05f) - lineToRelative(-1.28f, 1.3f) - curveToRelative(0.58f, 0.07f, 1.14f, 0.23f, 1.66f, 0.45f) - lineToRelative(0.68f, -0.7f) - curveToRelative(0.87f, -0.87f, 0.87f, -2.27f, 0.01f, -3.15f) - lineToRelative(-4.9f, -5.0f) - close() - } - fluentPath { - moveTo(19.29f, 12.3f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -1.82f, -0.3f) - } - fluentPath { - moveTo(17.5f, 12.0f) - curveToRelative(0.63f, 0.0f, 1.23f, 0.1f, 1.79f, 0.3f) - close() - } - fluentPath { - moveTo(17.5f, 12.0f) - horizontalLineToRelative(-0.03f) - close() - } - } - return _eraserMedium!! - } - -private var _eraserMedium: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EraserSegment.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EraserSegment.kt deleted file mode 100644 index 7a815512..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EraserSegment.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.EraserSegment: ImageVector - get() { - if (_eraserSegment != null) { - return _eraserSegment!! - } - _eraserSegment = fluentIcon(name = "Regular.EraserSegment") { - fluentPath { - moveTo(15.84f, 2.66f) - curveToRelative(-0.87f, -0.89f, -2.3f, -0.9f, -3.19f, -0.02f) - lineToRelative(-9.6f, 9.5f) - curveToRelative(-0.89f, 0.89f, -0.89f, 2.33f, 0.01f, 3.21f) - lineToRelative(5.1f, 5.0f) - curveToRelative(0.47f, 0.47f, 1.08f, 0.68f, 1.69f, 0.65f) - horizontalLineToRelative(6.26f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.95f) - lineToRelative(8.58f, -8.67f) - curveToRelative(0.87f, -0.88f, 0.87f, -2.28f, 0.01f, -3.16f) - lineToRelative(-4.9f, -5.0f) - close() - moveTo(9.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, -0.21f) - lineToRelative(-5.1f, -5.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.07f) - lineToRelative(1.53f, -1.51f) - lineToRelative(6.1f, 6.1f) - lineToRelative(-1.47f, 1.48f) - curveToRelative(-0.13f, 0.13f, -0.3f, 0.2f, -0.47f, 0.22f) - horizontalLineToRelative(-0.05f) - close() - moveTo(13.71f, 3.7f) - curveToRelative(0.3f, -0.29f, 0.77f, -0.29f, 1.06f, 0.01f) - lineToRelative(4.91f, 5.01f) - curveToRelative(0.29f, 0.3f, 0.29f, 0.76f, 0.0f, 1.05f) - lineToRelative(-6.89f, 6.96f) - lineToRelative(-6.09f, -6.09f) - lineToRelative(7.0f, -6.94f) - close() - } - } - return _eraserSegment!! - } - -private var _eraserSegment: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EraserSmall.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EraserSmall.kt deleted file mode 100644 index 5f460506..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EraserSmall.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.EraserSmall: ImageVector - get() { - if (_eraserSmall != null) { - return _eraserSmall!! - } - _eraserSmall = fluentIcon(name = "Regular.EraserSmall") { - fluentPath { - moveTo(15.84f, 2.66f) - curveToRelative(-0.87f, -0.89f, -2.3f, -0.9f, -3.19f, -0.02f) - lineToRelative(-9.6f, 9.5f) - curveToRelative(-0.89f, 0.89f, -0.89f, 2.33f, 0.0f, 3.21f) - lineToRelative(5.1f, 5.0f) - curveToRelative(0.9f, 0.88f, 2.31f, 0.87f, 3.18f, -0.01f) - lineToRelative(1.79f, -1.8f) - arcToRelative(4.51f, 4.51f, 0.0f, false, true, 0.02f, -2.16f) - lineToRelative(-0.35f, 0.35f) - lineToRelative(-6.09f, -6.09f) - lineToRelative(7.0f, -6.94f) - curveToRelative(0.3f, -0.29f, 0.78f, -0.29f, 1.07f, 0.01f) - lineToRelative(4.91f, 5.01f) - curveToRelative(0.29f, 0.3f, 0.29f, 0.76f, 0.0f, 1.05f) - lineToRelative(-3.35f, 3.38f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 2.16f, -0.04f) - lineToRelative(2.25f, -2.28f) - curveToRelative(0.87f, -0.88f, 0.87f, -2.28f, 0.01f, -3.16f) - lineToRelative(-4.9f, -5.0f) - close() - moveTo(5.64f, 11.7f) - lineToRelative(6.1f, 6.1f) - lineToRelative(-1.47f, 1.48f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-5.1f, -5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.07f) - lineToRelative(1.53f, -1.51f) - close() - moveTo(17.6f, 14.0f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, -3.6f, 3.51f) - verticalLineToRelative(-0.01f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 3.6f, -3.5f) - close() - } - } - return _eraserSmall!! - } - -private var _eraserSmall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EraserTool.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EraserTool.kt deleted file mode 100644 index ccdaf91f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EraserTool.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.EraserTool: ImageVector - get() { - if (_eraserTool != null) { - return _eraserTool!! - } - _eraserTool = fluentIcon(name = "Regular.EraserTool") { - fluentPath { - moveTo(3.75f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(4.5f, 7.0f) - horizontalLineToRelative(15.0f) - lineTo(19.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(14.5f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 16.25f, 22.0f) - horizontalLineToRelative(-8.5f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 3.0f, 17.25f) - lineTo(3.0f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(19.5f, 8.5f) - horizontalLineToRelative(-15.0f) - lineTo(4.5f, 12.0f) - horizontalLineToRelative(15.0f) - lineTo(19.5f, 8.5f) - close() - moveTo(4.5f, 17.25f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(8.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(19.5f, 13.5f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(3.75f) - close() - } - } - return _eraserTool!! - } - -private var _eraserTool: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ExpandUpLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ExpandUpLeft.kt deleted file mode 100644 index 55b9a187..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ExpandUpLeft.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ExpandUpLeft: ImageVector - get() { - if (_expandUpLeft != null) { - return _expandUpLeft!! - } - _expandUpLeft = fluentIcon(name = "Regular.ExpandUpLeft") { - fluentPath { - moveTo(11.0f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(4.5f, 5.56f) - lineToRelative(5.22f, 5.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(5.56f, 4.5f) - horizontalLineToRelative(4.69f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - close() - moveTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(4.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - verticalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(12.0f, 19.5f) - verticalLineToRelative(-4.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 14.75f, 12.0f) - horizontalLineToRelative(4.75f) - lineTo(19.5f, 6.25f) - close() - moveTo(19.5f, 13.5f) - horizontalLineToRelative(-4.75f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(4.75f) - horizontalLineToRelative(4.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 13.5f) - close() - } - } - return _expandUpLeft!! - } - -private var _expandUpLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ExpandUpRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ExpandUpRight.kt deleted file mode 100644 index f85c6463..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ExpandUpRight.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ExpandUpRight: ImageVector - get() { - if (_expandUpRight != null) { - return _expandUpRight!! - } - _expandUpRight = fluentIcon(name = "Regular.ExpandUpRight") { - fluentPath { - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(12.0f, 19.5f) - verticalLineToRelative(-4.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 9.25f, 12.0f) - lineTo(4.5f, 12.0f) - lineTo(4.5f, 6.25f) - close() - moveTo(4.5f, 13.5f) - horizontalLineToRelative(4.75f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(4.75f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 13.5f) - close() - moveTo(13.0f, 3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(19.5f, 5.56f) - lineToRelative(-5.22f, 5.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(5.22f, -5.22f) - horizontalLineToRelative(-4.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _expandUpRight!! - } - -private var _expandUpRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ExtendedDock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ExtendedDock.kt deleted file mode 100644 index e53618cd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ExtendedDock.kt +++ /dev/null @@ -1,96 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ExtendedDock: ImageVector - get() { - if (_extendedDock != null) { - return _extendedDock!! - } - _extendedDock = fluentIcon(name = "Regular.ExtendedDock") { - fluentPath { - moveTo(6.25f, 11.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(2.5f) - curveTo(8.0f, 16.2f, 7.22f, 17.0f, 6.25f, 17.0f) - horizontalLineToRelative(-2.5f) - curveTo(2.78f, 17.0f, 2.0f, 16.2f, 2.0f, 15.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.5f) - close() - moveTo(13.25f, 11.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.96f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.5f) - curveTo(9.78f, 17.0f, 9.0f, 16.2f, 9.0f, 15.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.5f) - close() - moveTo(20.25f, 11.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.96f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.79f, -1.75f, -1.75f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.5f) - close() - moveTo(6.25f, 12.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(2.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(13.25f, 12.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(2.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(20.25f, 12.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(2.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(7.97f, 7.72f) - lineToRelative(3.5f, -3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -0.08f) - lineToRelative(0.08f, 0.07f) - lineToRelative(3.6f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.95f, 1.15f) - lineToRelative(-0.09f, -0.07f) - lineToRelative(-3.07f, -2.99f) - lineToRelative(-2.98f, 2.98f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 7.9f, 7.8f) - lineToRelative(0.07f, -0.08f) - lineToRelative(3.5f, -3.5f) - lineToRelative(-3.5f, 3.5f) - close() - } - } - return _extendedDock!! - } - -private var _extendedDock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EyeLines.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EyeLines.kt deleted file mode 100644 index 5b81b658..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EyeLines.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.EyeLines: ImageVector - get() { - if (_eyeLines != null) { - return _eyeLines!! - } - _eyeLines = fluentIcon(name = "Regular.EyeLines") { - fluentPath { - moveTo(9.35f, 12.5f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(-7.0f) - curveToRelative(-0.06f, 0.3f, -0.1f, 0.55f, -0.1f, 0.75f) - curveToRelative(0.0f, 0.2f, 0.04f, 0.46f, 0.1f, 0.75f) - horizontalLineToRelative(7.0f) - close() - moveTo(12.0f, 18.5f) - lineTo(6.68f, 18.5f) - arcTo(9.65f, 9.65f, 0.0f, false, false, 12.0f, 20.0f) - curveToRelative(3.64f, 0.0f, 6.1f, -1.7f, 7.61f, -3.56f) - curveToRelative(0.76f, -0.92f, 1.29f, -1.88f, 1.63f, -2.7f) - curveToRelative(0.33f, -0.8f, 0.51f, -1.53f, 0.51f, -1.99f) - curveToRelative(0.0f, -0.46f, -0.18f, -1.2f, -0.51f, -1.99f) - curveToRelative(-0.34f, -0.82f, -0.87f, -1.78f, -1.63f, -2.7f) - arcToRelative(9.51f, 9.51f, 0.0f, false, false, -7.6f, -3.56f) - lineTo(12.0f, 3.5f) - curveToRelative(-2.18f, 0.0f, -3.94f, 0.61f, -5.32f, 1.5f) - lineTo(12.0f, 5.0f) - curveToRelative(3.11f, 0.0f, 5.16f, 1.43f, 6.45f, 3.0f) - curveToRelative(0.65f, 0.8f, 1.1f, 1.64f, 1.4f, 2.34f) - curveToRelative(0.3f, 0.73f, 0.4f, 1.24f, 0.4f, 1.41f) - curveToRelative(0.0f, 0.17f, -0.1f, 0.68f, -0.4f, 1.41f) - curveToRelative(-0.3f, 0.7f, -0.75f, 1.54f, -1.4f, 2.33f) - arcTo(8.02f, 8.02f, 0.0f, false, true, 12.0f, 18.5f) - close() - moveTo(5.38f, 6.0f) - arcToRelative(10.21f, 10.21f, 0.0f, false, false, -1.34f, 1.5f) - lineTo(12.0f, 7.5f) - lineTo(12.0f, 6.0f) - lineTo(5.38f, 6.0f) - close() - moveTo(12.0f, 8.5f) - lineTo(3.4f, 8.5f) - arcToRelative(10.8f, 10.8f, 0.0f, false, false, -0.73f, 1.5f) - horizontalLineToRelative(7.2f) - arcToRelative(2.74f, 2.74f, 0.0f, true, true, 0.0f, 3.5f) - horizontalLineToRelative(-7.2f) - arcToRelative(9.7f, 9.7f, 0.0f, false, false, 0.72f, 1.5f) - lineTo(12.0f, 15.0f) - verticalLineToRelative(1.0f) - arcToRelative(4.25f, 4.25f, 0.0f, true, false, 0.0f, -8.5f) - verticalLineToRelative(1.0f) - close() - moveTo(12.0f, 16.0f) - lineTo(4.04f, 16.0f) - arcToRelative(10.72f, 10.72f, 0.0f, false, false, 1.34f, 1.5f) - lineTo(12.0f, 17.5f) - lineTo(12.0f, 16.0f) - close() - } - } - return _eyeLines!! - } - -private var _eyeLines: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EyeOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EyeOff.kt deleted file mode 100644 index d3d81abd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EyeOff.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.EyeOff: ImageVector - get() { - if (_eyeOff != null) { - return _eyeOff!! - } - _eyeOff = fluentIcon(name = "Regular.EyeOff") { - fluentPath { - moveTo(2.22f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.98f) - lineToRelative(0.07f, 0.08f) - lineToRelative(4.03f, 4.03f) - arcToRelative(9.99f, 9.99f, 0.0f, false, false, -3.95f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.45f, 0.37f) - arcToRelative(8.49f, 8.49f, 0.0f, false, true, 3.58f, -5.04f) - lineToRelative(1.81f, 1.81f) - arcTo(3.99f, 3.99f, 0.0f, false, false, 12.0f, 17.0f) - curveToRelative(1.09f, 0.0f, 2.08f, -0.43f, 2.8f, -1.14f) - lineToRelative(5.92f, 5.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, -0.98f) - lineToRelative(-0.07f, -0.08f) - lineToRelative(-6.11f, -6.11f) - lineToRelative(-1.2f, -1.2f) - lineToRelative(-2.87f, -2.87f) - lineToRelative(-2.88f, -2.88f) - lineToRelative(-1.13f, -1.13f) - lineToRelative(-4.31f, -4.31f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - close() - moveTo(10.2f, 11.27f) - lineTo(13.74f, 14.8f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 9.5f, 13.0f) - curveToRelative(0.0f, -0.67f, 0.27f, -1.28f, 0.7f, -1.73f) - close() - moveTo(12.0f, 5.5f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, -2.89f, 0.42f) - lineToRelative(1.24f, 1.24f) - arcToRelative(8.52f, 8.52f, 0.0f, false, true, 9.9f, 6.27f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.45f, -0.36f) - arcTo(10.0f, 10.0f, 0.0f, false, false, 12.0f, 5.5f) - close() - moveTo(12.2f, 9.0f) - lineTo(16.0f, 12.81f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -3.8f, -3.8f) - close() - } - } - return _eyeOff!! - } - -private var _eyeOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EyeTracking.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EyeTracking.kt deleted file mode 100644 index 57ec50b0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EyeTracking.kt +++ /dev/null @@ -1,94 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.EyeTracking: ImageVector - get() { - if (_eyeTracking != null) { - return _eyeTracking!! - } - _eyeTracking = fluentIcon(name = "Regular.EyeTracking") { - fluentPath { - moveTo(8.25f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-3.6f) - curveToRelative(-0.65f, 0.0f, -1.18f, 0.5f, -1.25f, 1.12f) - verticalLineToRelative(3.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-3.6f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.58f, -2.74f) - lineTo(4.75f, 2.0f) - horizontalLineToRelative(3.5f) - close() - moveTo(3.49f, 15.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.49f, 0.0f) - lineTo(2.0f, 19.43f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.58f, 22.0f) - horizontalLineToRelative(3.77f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(4.62f, 20.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.12f, -1.12f) - verticalLineToRelative(-3.63f) - lineToRelative(-0.01f, -0.1f) - close() - moveTo(21.99f, 15.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - verticalLineToRelative(3.63f) - curveToRelative(-0.06f, 0.63f, -0.6f, 1.12f, -1.24f, 1.12f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.66f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 19.25f) - verticalLineToRelative(-3.5f) - lineToRelative(-0.01f, -0.1f) - close() - moveTo(19.41f, 2.0f) - lineTo(19.25f, 2.0f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.72f) - curveToRelative(0.6f, 0.07f, 1.06f, 0.53f, 1.12f, 1.12f) - verticalLineToRelative(3.63f) - lineToRelative(0.01f, 0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.49f, 0.0f) - lineTo(21.99f, 4.58f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 19.41f, 2.0f) - close() - moveTo(6.21f, 11.75f) - verticalLineToRelative(-0.02f) - lineToRelative(0.04f, -0.1f) - lineToRelative(0.21f, -0.39f) - arcToRelative(6.07f, 6.07f, 0.0f, false, true, 5.54f, -3.0f) - arcToRelative(6.24f, 6.24f, 0.0f, false, true, 5.54f, 3.0f) - arcToRelative(4.78f, 4.78f, 0.0f, false, true, 0.25f, 0.5f) - verticalLineToRelative(0.01f) - curveToRelative(0.16f, 0.38f, 0.59f, 0.59f, 0.97f, 0.44f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.44f, -0.96f) - verticalLineToRelative(-0.03f) - arcToRelative(3.2f, 3.2f, 0.0f, false, false, -0.1f, -0.2f) - arcTo(7.57f, 7.57f, 0.0f, false, false, 12.0f, 6.75f) - arcToRelative(7.73f, 7.73f, 0.0f, false, false, -6.84f, 3.75f) - arcToRelative(6.26f, 6.26f, 0.0f, false, false, -0.35f, 0.71f) - verticalLineToRelative(0.02f) - curveToRelative(-0.01f, 0.0f, -0.17f, 0.75f, 0.43f, 0.97f) - curveToRelative(0.38f, 0.15f, 0.81f, -0.05f, 0.96f, -0.43f) - close() - moveTo(12.0f, 10.0f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - moveTo(10.0f, 13.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -4.0f, 0.0f) - close() - } - } - return _eyeTracking!! - } - -private var _eyeTracking: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EyeTrackingOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EyeTrackingOff.kt deleted file mode 100644 index a31f1768..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EyeTrackingOff.kt +++ /dev/null @@ -1,105 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.EyeTrackingOff: ImageVector - get() { - if (_eyeTrackingOff != null) { - return _eyeTrackingOff!! - } - _eyeTrackingOff = fluentIcon(name = "Regular.EyeTrackingOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(0.13f, 0.13f) - curveToRelative(-0.23f, 0.4f, -0.35f, 0.85f, -0.35f, 1.34f) - verticalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - lineTo(3.5f, 4.62f) - lineToRelative(0.01f, -0.05f) - lineToRelative(3.68f, 3.68f) - arcTo(7.44f, 7.44f, 0.0f, false, false, 4.8f, 11.2f) - verticalLineToRelative(0.02f) - curveToRelative(-0.01f, 0.0f, -0.17f, 0.75f, 0.43f, 0.97f) - curveToRelative(0.38f, 0.15f, 0.81f, -0.05f, 0.96f, -0.43f) - lineToRelative(0.01f, -0.03f) - arcToRelative(2.85f, 2.85f, 0.0f, false, true, 0.25f, -0.49f) - arcToRelative(6.07f, 6.07f, 0.0f, false, true, 1.8f, -1.93f) - lineToRelative(1.5f, 1.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 4.92f, 4.93f) - lineToRelative(4.75f, 4.74f) - lineToRelative(-0.18f, 0.01f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.66f) - curveToRelative(0.43f, -0.03f, 0.83f, -0.15f, 1.18f, -0.35f) - lineToRelative(0.13f, 0.13f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(13.62f, 14.68f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -2.8f, -2.8f) - lineToRelative(2.8f, 2.8f) - close() - moveTo(11.45f, 8.27f) - lineTo(10.12f, 6.94f) - curveToRelative(0.57f, -0.12f, 1.2f, -0.19f, 1.88f, -0.19f) - arcToRelative(7.73f, 7.73f, 0.0f, false, true, 6.84f, 3.75f) - arcToRelative(6.3f, 6.3f, 0.0f, false, true, 0.33f, 0.67f) - lineToRelative(0.02f, 0.04f) - verticalLineToRelative(0.02f) - horizontalLineToRelative(0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.4f, 0.53f) - lineToRelative(-0.01f, -0.02f) - lineToRelative(-0.04f, -0.1f) - lineToRelative(-0.21f, -0.39f) - arcToRelative(6.07f, 6.07f, 0.0f, false, false, -5.54f, -3.0f) - curveToRelative(-0.19f, 0.0f, -0.37f, 0.0f, -0.55f, 0.02f) - close() - moveTo(22.0f, 18.82f) - lineToRelative(-1.5f, -1.5f) - verticalLineToRelative(-1.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.49f, -0.1f) - verticalLineToRelative(3.17f) - close() - moveTo(6.68f, 3.5f) - lineTo(5.18f, 2.0f) - horizontalLineToRelative(3.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.68f, 3.5f) - close() - moveTo(2.75f, 15.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - verticalLineToRelative(3.6f) - lineToRelative(0.01f, 0.13f) - curveToRelative(0.06f, 0.59f, 0.53f, 1.06f, 1.12f, 1.12f) - horizontalLineToRelative(3.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(4.58f, 22.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 19.43f) - lineTo(2.0f, 15.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) - close() - moveTo(19.25f, 2.0f) - horizontalLineToRelative(0.16f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 4.59f) - verticalLineToRelative(3.77f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, 0.0f) - lineTo(20.51f, 4.62f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.13f, -1.11f) - lineToRelative(-0.12f, -0.01f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.6f) - close() - } - } - return _eyeTrackingOff!! - } - -private var _eyeTrackingOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Eyedropper.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Eyedropper.kt deleted file mode 100644 index b27bf26b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Eyedropper.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Eyedropper: ImageVector - get() { - if (_eyedropper != null) { - return _eyedropper!! - } - _eyedropper = fluentIcon(name = "Regular.Eyedropper") { - fluentPath { - moveTo(21.03f, 2.97f) - arcToRelative(3.58f, 3.58f, 0.0f, false, false, -5.06f, 0.0f) - lineTo(14.0f, 4.94f) - lineToRelative(-0.01f, -0.01f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.48f, 0.0f) - lineToRelative(-0.58f, 0.58f) - curveToRelative(-0.69f, 0.69f, -0.69f, 1.8f, 0.0f, 2.48f) - lineTo(10.93f, 8.0f) - lineToRelative(-6.77f, 6.78f) - curveToRelative(-0.42f, 0.42f, -0.66f, 1.0f, -0.66f, 1.6f) - verticalLineToRelative(0.68f) - lineTo(2.22f, 19.4f) - curveToRelative(-0.84f, 1.53f, 0.84f, 3.2f, 2.37f, 2.37f) - lineToRelative(2.35f, -1.28f) - horizontalLineToRelative(0.69f) - curveToRelative(0.6f, 0.0f, 1.17f, -0.24f, 1.59f, -0.66f) - lineTo(16.0f, 13.06f) - lineToRelative(0.01f, 0.01f) - curveToRelative(0.69f, 0.69f, 1.8f, 0.69f, 2.48f, 0.0f) - lineToRelative(0.58f, -0.58f) - curveToRelative(0.69f, -0.69f, 0.69f, -1.8f, 0.0f, -2.48f) - lineTo(19.07f, 10.0f) - lineToRelative(1.96f, -1.97f) - arcToRelative(3.58f, 3.58f, 0.0f, false, false, 0.0f, -5.06f) - close() - moveTo(17.03f, 4.03f) - arcToRelative(2.08f, 2.08f, 0.0f, false, true, 2.94f, 2.94f) - lineToRelative(-2.5f, 2.5f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(0.54f, 0.54f) - curveToRelative(0.1f, 0.1f, 0.1f, 0.26f, 0.0f, 0.36f) - lineToRelative(-0.58f, 0.58f) - curveToRelative(-0.1f, 0.1f, -0.26f, 0.1f, -0.36f, 0.0f) - lineTo(12.0f, 6.93f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, 0.0f, -0.36f) - lineToRelative(0.58f, -0.58f) - curveToRelative(0.1f, -0.1f, 0.26f, -0.1f, 0.36f, 0.0f) - lineToRelative(0.54f, 0.54f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.5f, -2.5f) - close() - moveTo(14.93f, 12.0f) - lineToRelative(-6.77f, 6.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.53f, 0.22f) - horizontalLineToRelative(-0.88f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.36f, 0.1f) - lineToRelative(-2.51f, 1.36f) - arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.16f, 0.04f) - arcToRelative(0.26f, 0.26f, 0.0f, false, true, -0.14f, -0.08f) - arcToRelative(0.26f, 0.26f, 0.0f, false, true, -0.08f, -0.14f) - curveToRelative(0.0f, -0.03f, 0.0f, -0.09f, 0.04f, -0.16f) - lineToRelative(1.37f, -2.51f) - curveToRelative(0.06f, -0.11f, 0.09f, -0.23f, 0.09f, -0.36f) - verticalLineToRelative(-0.88f) - curveToRelative(0.0f, -0.2f, 0.08f, -0.39f, 0.22f, -0.53f) - lineTo(12.0f, 9.06f) - lineTo(14.94f, 12.0f) - close() - } - } - return _eyedropper!! - } - -private var _eyedropper: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EyedropperOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EyedropperOff.kt deleted file mode 100644 index 531378ea..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/EyedropperOff.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.EyedropperOff: ImageVector - get() { - if (_eyedropperOff != null) { - return _eyedropperOff!! - } - _eyedropperOff = fluentIcon(name = "Regular.EyedropperOff") { - fluentPath { - moveTo(8.94f, 10.0f) - lineTo(2.22f, 3.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineToRelative(18.5f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineTo(14.0f, 15.06f) - lineToRelative(-4.78f, 4.78f) - curveToRelative(-0.42f, 0.42f, -1.0f, 0.66f, -1.59f, 0.66f) - horizontalLineToRelative(-0.69f) - lineTo(4.6f, 21.78f) - curveToRelative(-1.54f, 0.84f, -3.22f, -0.84f, -2.38f, -2.37f) - lineToRelative(1.28f, -2.35f) - verticalLineToRelative(-0.69f) - curveToRelative(0.0f, -0.6f, 0.24f, -1.17f, 0.66f, -1.59f) - lineTo(8.94f, 10.0f) - close() - moveTo(12.94f, 14.0f) - lineTo(10.0f, 11.06f) - lineToRelative(-4.78f, 4.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.22f, 0.53f) - verticalLineToRelative(0.88f) - curveToRelative(0.0f, 0.13f, -0.03f, 0.25f, -0.09f, 0.36f) - lineToRelative(-1.37f, 2.51f) - arcToRelative(0.23f, 0.23f, 0.0f, false, false, -0.03f, 0.16f) - curveToRelative(0.0f, 0.05f, 0.03f, 0.1f, 0.07f, 0.14f) - curveToRelative(0.04f, 0.04f, 0.1f, 0.07f, 0.14f, 0.08f) - curveToRelative(0.04f, 0.0f, 0.09f, 0.0f, 0.16f, -0.04f) - lineToRelative(2.51f, -1.37f) - curveToRelative(0.11f, -0.06f, 0.24f, -0.09f, 0.36f, -0.09f) - horizontalLineToRelative(0.88f) - curveToRelative(0.2f, 0.0f, 0.39f, -0.08f, 0.53f, -0.22f) - lineTo(12.94f, 14.0f) - close() - moveTo(18.49f, 13.07f) - curveToRelative(-0.5f, 0.5f, -1.2f, 0.63f, -1.82f, 0.42f) - lineToRelative(-6.16f, -6.16f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.42f, -1.82f) - lineToRelative(0.58f, -0.58f) - curveToRelative(0.69f, -0.69f, 1.8f, -0.69f, 2.48f, 0.0f) - lineToRelative(0.01f, 0.01f) - lineToRelative(1.97f, -1.97f) - arcToRelative(3.58f, 3.58f, 0.0f, false, true, 5.06f, 5.06f) - lineTo(19.06f, 10.0f) - lineToRelative(0.01f, 0.01f) - curveToRelative(0.69f, 0.69f, 0.69f, 1.8f, 0.0f, 2.48f) - lineToRelative(-0.58f, 0.58f) - close() - moveTo(17.03f, 4.03f) - lineTo(14.53f, 6.53f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineTo(12.93f, 6.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.36f, 0.0f) - lineToRelative(-0.58f, 0.58f) - curveToRelative(-0.1f, 0.1f, -0.1f, 0.26f, 0.0f, 0.36f) - lineTo(17.07f, 12.0f) - curveToRelative(0.1f, 0.1f, 0.26f, 0.1f, 0.36f, 0.0f) - lineToRelative(0.58f, -0.58f) - curveToRelative(0.1f, -0.1f, 0.1f, -0.26f, 0.0f, -0.36f) - lineToRelative(-0.54f, -0.54f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(2.5f, -2.5f) - arcToRelative(2.08f, 2.08f, 0.0f, true, false, -2.94f, -2.94f) - close() - } - } - return _eyedropperOff!! - } - -private var _eyedropperOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FStop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FStop.kt deleted file mode 100644 index 77fbdfb1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FStop.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FStop: ImageVector - get() { - if (_fStop != null) { - return _fStop!! - } - _fStop = fluentIcon(name = "Regular.FStop") { - fluentPath { - moveTo(13.2f, 6.53f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 17.46f, 4.0f) - lineToRelative(0.6f, 0.2f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.49f, -1.4f) - lineToRelative(-0.6f, -0.21f) - arcToRelative(4.75f, 4.75f, 0.0f, false, false, -6.23f, 3.69f) - lineTo(11.0f, 10.5f) - horizontalLineTo(6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.99f) - lineToRelative(-0.78f, 4.58f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -4.77f, 2.3f) - lineToRelative(-0.08f, -0.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.72f, 1.32f) - lineToRelative(0.07f, 0.04f) - arcToRelative(4.75f, 4.75f, 0.0f, false, false, 6.98f, -3.36f) - lineToRelative(0.82f, -4.84f) - horizontalLineToRelative(3.99f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.73f) - lineToRelative(0.68f, -3.97f) - close() - } - } - return _fStop!! - } - -private var _fStop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FastAcceleration.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FastAcceleration.kt deleted file mode 100644 index b2203534..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FastAcceleration.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FastAcceleration: ImageVector - get() { - if (_fastAcceleration != null) { - return _fastAcceleration!! - } - _fastAcceleration = fluentIcon(name = "Regular.FastAcceleration") { - fluentPath { - moveTo(13.5f, 4.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, -4.82f, 15.5f) - lineTo(1.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(7.02f, 18.0f) - curveToRelative(-0.4f, -0.46f, -0.73f, -0.96f, -1.02f, -1.5f) - lineTo(3.75f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(5.37f, 15.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, 1.65f, -8.0f) - lineTo(2.75f, 7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(8.68f, 5.5f) - arcTo(8.46f, 8.46f, 0.0f, false, true, 13.5f, 4.0f) - close() - moveTo(13.5f, 5.5f) - arcToRelative(7.0f, 7.0f, 0.0f, true, false, 0.0f, 14.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, false, 0.0f, -14.0f) - close() - moveTo(13.5f, 7.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(14.65f, 14.72f) - arcToRelative(2.49f, 2.49f, 0.0f, false, true, -2.3f, 0.0f) - lineToRelative(-1.09f, 1.1f) - arcToRelative(3.98f, 3.98f, 0.0f, false, false, 4.5f, 0.0f) - lineToRelative(-1.1f, -1.1f) - close() - moveTo(9.5f, 12.5f) - curveToRelative(0.0f, 0.84f, 0.26f, 1.62f, 0.7f, 2.26f) - lineToRelative(1.09f, -1.1f) - arcToRelative(2.49f, 2.49f, 0.0f, false, true, 0.0f, -2.32f) - lineToRelative(-1.1f, -1.09f) - curveToRelative(-0.43f, 0.65f, -0.69f, 1.42f, -0.69f, 2.25f) - close() - moveTo(16.82f, 10.26f) - lineTo(15.72f, 11.36f) - arcToRelative(2.49f, 2.49f, 0.0f, false, true, 0.0f, 2.3f) - lineToRelative(1.1f, 1.1f) - arcToRelative(3.98f, 3.98f, 0.0f, false, false, 0.0f, -4.5f) - close() - moveTo(13.5f, 11.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(13.5f, 8.5f) - curveToRelative(-0.83f, 0.0f, -1.6f, 0.26f, -2.25f, 0.7f) - lineToRelative(1.1f, 1.08f) - arcToRelative(2.49f, 2.49f, 0.0f, false, true, 2.32f, 0.0f) - lineToRelative(1.09f, -1.08f) - arcToRelative(3.98f, 3.98f, 0.0f, false, false, -2.26f, -0.7f) - close() - } - } - return _fastAcceleration!! - } - -private var _fastAcceleration: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FastForward.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FastForward.kt deleted file mode 100644 index 1ad43ed8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FastForward.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FastForward: ImageVector - get() { - if (_fastForward != null) { - return _fastForward!! - } - _fastForward = fluentIcon(name = "Regular.FastForward") { - fluentPath { - moveTo(11.5f, 5.5f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.47f, -1.14f) - lineToRelative(7.41f, 6.3f) - curveToRelative(0.82f, 0.7f, 0.82f, 1.97f, 0.0f, 2.67f) - lineToRelative(-7.4f, 6.3f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.48f, -1.13f) - verticalLineToRelative(-4.0f) - lineToRelative(-6.03f, 5.14f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 3.0f, 18.5f) - verticalLineToRelative(-13.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.47f, -1.14f) - lineTo(11.5f, 9.5f) - lineTo(11.5f, 5.5f) - close() - moveTo(11.5f, 11.46f) - lineTo(4.5f, 5.5f) - verticalLineToRelative(13.0f) - lineToRelative(7.0f, -5.96f) - verticalLineToRelative(-1.08f) - close() - moveTo(20.41f, 11.81f) - lineTo(13.0f, 5.5f) - lineTo(13.0f, 18.5f) - lineToRelative(7.41f, -6.31f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.0f, -0.38f) - close() - } - } - return _fastForward!! - } - -private var _fastForward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Feed.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Feed.kt deleted file mode 100644 index ba1280c6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Feed.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Feed: ImageVector - get() { - if (_feed != null) { - return _feed!! - } - _feed = fluentIcon(name = "Regular.Feed") { - fluentPath { - moveTo(6.53f, 7.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(5.78f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.0f) - close() - moveTo(5.03f, 11.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(15.0f, 21.0f) - curveToRelative(0.94f, 0.0f, 1.75f, -0.67f, 1.93f, -1.6f) - lineToRelative(0.48f, -2.4f) - horizontalLineToRelative(2.84f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(22.0f, 9.26f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.26f) - lineTo(14.5f, 7.0f) - lineTo(14.5f, 5.25f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-8.0f) - curveTo(3.01f, 3.0f, 2.0f, 4.0f, 2.0f, 5.25f) - verticalLineToRelative(12.5f) - curveTo(2.0f, 19.55f, 3.46f, 21.0f, 5.25f, 21.0f) - lineTo(15.0f, 21.0f) - close() - moveTo(3.5f, 5.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(8.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(13.76f) - curveToRelative(0.0f, 0.17f, 0.02f, 0.33f, 0.06f, 0.49f) - lineTo(5.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(3.5f, 5.25f) - close() - moveTo(14.5f, 8.5f) - horizontalLineToRelative(3.11f) - curveToRelative(-0.04f, 0.1f, -0.07f, 0.2f, -0.09f, 0.32f) - lineTo(15.46f, 19.1f) - arcToRelative(0.49f, 0.49f, 0.0f, false, true, -0.96f, -0.1f) - lineTo(14.5f, 8.5f) - close() - moveTo(19.0f, 9.11f) - arcToRelative(0.76f, 0.76f, 0.0f, false, true, 1.5f, 0.15f) - verticalLineToRelative(5.99f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-2.54f) - lineTo(19.0f, 9.11f) - close() - } - } - return _feed!! - } - -private var _feed: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Filmstrip.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Filmstrip.kt deleted file mode 100644 index 283d4553..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Filmstrip.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Filmstrip: ImageVector - get() { - if (_filmstrip != null) { - return _filmstrip!! - } - _filmstrip = fluentIcon(name = "Regular.Filmstrip") { - fluentPath { - moveTo(2.0f, 7.25f) - curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) - horizontalLineToRelative(13.5f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(5.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - close() - moveTo(5.25f, 5.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(5.25f, 5.5f) - close() - moveTo(17.5f, 7.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.5f) - close() - moveTo(18.25f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(17.5f, 11.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.5f) - close() - moveTo(5.75f, 7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 5.75f, 7.0f) - close() - moveTo(5.0f, 15.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.5f) - close() - moveTo(5.75f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - } - } - return _filmstrip!! - } - -private var _filmstrip: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FilmstripPlay.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FilmstripPlay.kt deleted file mode 100644 index 6a66e3ff..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FilmstripPlay.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FilmstripPlay: ImageVector - get() { - if (_filmstripPlay != null) { - return _filmstripPlay!! - } - _filmstripPlay = fluentIcon(name = "Regular.FilmstripPlay") { - fluentPath { - moveTo(5.25f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) - horizontalLineToRelative(13.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-9.5f) - curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) - lineTo(5.25f, 4.0f) - close() - moveTo(3.5f, 7.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(5.25f, 18.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-9.5f) - close() - moveTo(18.25f, 7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(17.5f, 15.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.5f) - close() - moveTo(18.25f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(5.0f, 7.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.5f) - close() - moveTo(5.75f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(5.0f, 11.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.5f) - close() - moveTo(10.0f, 9.75f) - curveToRelative(0.0f, -0.58f, 0.58f, -0.94f, 1.03f, -0.65f) - lineToRelative(3.68f, 2.35f) - curveToRelative(0.39f, 0.24f, 0.39f, 0.86f, 0.0f, 1.1f) - lineToRelative(-3.68f, 2.35f) - curveToRelative(-0.45f, 0.29f, -1.03f, -0.07f, -1.03f, -0.65f) - verticalLineToRelative(-4.5f) - close() - } - } - return _filmstripPlay!! - } - -private var _filmstripPlay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FilterDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FilterDismiss.kt deleted file mode 100644 index 6d9960a2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FilterDismiss.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FilterDismiss: ImageVector - get() { - if (_filterDismiss != null) { - return _filterDismiss!! - } - _filterDismiss = fluentIcon(name = "Regular.FilterDismiss") { - fluentPath { - moveTo(23.0f, 7.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 5.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineTo(18.21f, 7.5f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineTo(17.5f, 6.79f) - lineToRelative(-1.65f, -1.64f) - close() - } - fluentPath { - moveTo(13.35f, 12.5f) - arcToRelative(6.54f, 6.54f, 0.0f, false, true, -1.33f, -1.5f) - horizontalLineTo(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.85f) - close() - } - fluentPath { - moveTo(11.0f, 7.5f) - curveToRelative(0.0f, -0.52f, 0.06f, -1.02f, 0.17f, -1.5f) - horizontalLineTo(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineTo(11.0f) - close() - } - fluentPath { - moveTo(13.5f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.0f) - close() - } - } - return _filterDismiss!! - } - -private var _filterDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FilterSync.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FilterSync.kt deleted file mode 100644 index c00c7a4c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FilterSync.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FilterSync: ImageVector - get() { - if (_filterSync != null) { - return _filterSync!! - } - _filterSync = fluentIcon(name = "Regular.FilterSync") { - fluentPath { - moveTo(12.0f, 7.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) - close() - moveTo(20.5f, 4.0f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - verticalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.8f, -0.59f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) - lineTo(20.0f, 4.5f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - close() - moveTo(15.0f, 9.95f) - verticalLineToRelative(0.55f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.77f, 0.65f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) - close() - moveTo(7.5f, 12.5f) - horizontalLineToRelative(5.85f) - arcToRelative(6.54f, 6.54f, 0.0f, false, true, -1.33f, -1.5f) - lineTo(7.5f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(11.0f, 7.5f) - curveToRelative(0.0f, -0.52f, 0.06f, -1.02f, 0.17f, -1.5f) - lineTo(4.5f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(11.0f, 7.5f) - close() - moveTo(13.5f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.0f) - close() - } - } - return _filterSync!! - } - -private var _filterSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fingerprint.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fingerprint.kt deleted file mode 100644 index fee104c8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fingerprint.kt +++ /dev/null @@ -1,108 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Fingerprint: ImageVector - get() { - if (_fingerprint != null) { - return _fingerprint!! - } - _fingerprint = fluentIcon(name = "Regular.Fingerprint") { - fluentPath { - moveTo(14.86f, 12.16f) - curveToRelative(0.56f, 0.57f, 0.87f, 1.27f, 1.1f, 2.23f) - lineToRelative(0.1f, 0.45f) - lineToRelative(0.18f, 0.95f) - curveToRelative(0.1f, 0.44f, 0.16f, 0.7f, 0.26f, 0.9f) - curveToRelative(0.3f, 0.68f, 0.83f, 1.37f, 1.6f, 2.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.02f, 1.1f) - arcToRelative(7.94f, 7.94f, 0.0f, false, true, -1.95f, -2.55f) - arcToRelative(5.24f, 5.24f, 0.0f, false, true, -0.35f, -1.18f) - lineToRelative(-0.21f, -1.1f) - lineToRelative(-0.01f, -0.06f) - curveToRelative(-0.18f, -0.85f, -0.4f, -1.39f, -0.78f, -1.76f) - curveToRelative(-0.7f, -0.73f, -2.35f, -0.54f, -2.8f, 0.15f) - curveToRelative(-0.55f, 0.9f, -0.7f, 2.4f, -0.25f, 3.92f) - curveToRelative(0.34f, 1.17f, 0.8f, 2.33f, 1.37f, 3.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, 0.67f) - arcToRelative(22.28f, 22.28f, 0.0f, false, true, -1.47f, -3.72f) - curveToRelative(-0.56f, -1.91f, -0.38f, -3.86f, 0.43f, -5.14f) - curveToRelative(0.95f, -1.5f, 3.74f, -1.83f, 5.14f, -0.4f) - close() - moveTo(12.49f, 14.47f) - curveToRelative(0.42f, -0.01f, 0.76f, 0.31f, 0.78f, 0.73f) - arcToRelative(7.93f, 7.93f, 0.0f, false, false, 1.44f, 4.3f) - lineToRelative(0.2f, 0.27f) - lineToRelative(0.3f, 0.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.12f, 1.0f) - lineToRelative(-0.07f, -0.09f) - lineToRelative(-0.3f, -0.39f) - arcToRelative(9.43f, 9.43f, 0.0f, false, true, -1.95f, -5.43f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.72f, -0.78f) - close() - moveTo(8.8f, 9.4f) - arcToRelative(6.02f, 6.02f, 0.0f, false, true, 6.73f, -0.28f) - curveToRelative(0.93f, 0.6f, 1.63f, 1.3f, 2.1f, 2.09f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.3f, 0.76f) - arcToRelative(4.87f, 4.87f, 0.0f, false, false, -1.62f, -1.6f) - arcToRelative(4.53f, 4.53f, 0.0f, false, false, -5.02f, 0.24f) - curveToRelative(-1.64f, 1.2f, -2.33f, 3.29f, -2.13f, 5.48f) - arcToRelative(10.5f, 10.5f, 0.0f, false, false, 1.12f, 3.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.67f) - arcToRelative(11.99f, 11.99f, 0.0f, false, true, -1.26f, -4.25f) - curveToRelative(-0.25f, -2.67f, 0.61f, -5.26f, 2.72f, -6.83f) - close() - moveTo(17.97f, 13.7f) - curveToRelative(0.42f, -0.02f, 0.77f, 0.3f, 0.79f, 0.71f) - curveToRelative(0.03f, 0.6f, 0.18f, 1.1f, 0.44f, 1.5f) - curveToRelative(0.22f, 0.33f, 0.42f, 0.52f, 0.57f, 0.6f) - lineToRelative(0.06f, 0.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.44f, 1.43f) - curveToRelative(-0.54f, -0.16f, -1.01f, -0.58f, -1.44f, -1.23f) - arcToRelative(4.41f, 4.41f, 0.0f, false, true, -0.69f, -2.24f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.71f, -0.79f) - close() - moveTo(10.51f, 6.1f) - curveToRelative(0.17f, 0.38f, 0.0f, 0.82f, -0.38f, 1.0f) - curveToRelative(-1.84f, 0.82f, -3.19f, 2.0f, -4.08f, 3.54f) - arcToRelative(9.82f, 9.82f, 0.0f, false, false, -1.16f, 6.08f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.2f) - curveToRelative(-0.28f, -2.2f, 0.06f, -4.78f, 1.36f, -7.03f) - arcToRelative(10.1f, 10.1f, 0.0f, false, true, 4.77f, -4.16f) - curveToRelative(0.38f, -0.17f, 0.82f, 0.0f, 1.0f, 0.37f) - close() - moveTo(12.85f, 5.31f) - curveToRelative(1.83f, 0.04f, 3.66f, 0.88f, 5.46f, 2.5f) - arcToRelative(10.34f, 10.34f, 0.0f, false, true, 3.3f, 6.57f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.49f, 0.2f) - arcToRelative(8.85f, 8.85f, 0.0f, false, false, -2.8f, -5.66f) - curveToRelative(-1.56f, -1.39f, -3.06f, -2.08f, -4.5f, -2.1f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.03f, -1.5f) - close() - moveTo(5.98f, 5.33f) - curveToRelative(0.28f, 0.3f, 0.25f, 0.78f, -0.06f, 1.06f) - arcToRelative(7.46f, 7.46f, 0.0f, false, false, -1.69f, 2.07f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.3f, -0.75f) - arcToRelative(8.91f, 8.91f, 0.0f, false, true, 2.0f, -2.44f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, 0.06f) - close() - moveTo(12.57f, 2.36f) - curveToRelative(2.2f, 0.1f, 4.03f, 0.7f, 5.53f, 1.86f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.92f, 1.2f) - arcToRelative(8.02f, 8.02f, 0.0f, false, false, -4.68f, -1.56f) - arcToRelative(8.71f, 8.71f, 0.0f, false, false, -4.72f, 0.98f) - curveToRelative(-0.38f, 0.21f, -0.81f, 0.1f, -1.03f, -0.25f) - arcTo(0.74f, 0.74f, 0.0f, false, true, 7.0f, 3.56f) - arcToRelative(9.84f, 9.84f, 0.0f, false, true, 5.57f, -1.2f) - close() - } - } - return _fingerprint!! - } - -private var _fingerprint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fire.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fire.kt deleted file mode 100644 index 5221dd40..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fire.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Fire: ImageVector - get() { - if (_fire != null) { - return _fire!! - } - _fire = fluentIcon(name = "Regular.Fire") { - fluentPath { - moveTo(12.54f, 4.3f) - curveToRelative(0.32f, -0.25f, 0.64f, -0.44f, 0.93f, -0.57f) - curveToRelative(0.09f, 2.13f, 1.13f, 3.73f, 2.13f, 5.14f) - lineToRelative(0.27f, 0.38f) - curveToRelative(1.08f, 1.52f, 2.01f, 2.82f, 2.11f, 4.54f) - arcToRelative(6.86f, 6.86f, 0.0f, false, true, -1.33f, 4.83f) - arcToRelative(5.43f, 5.43f, 0.0f, false, true, -4.4f, 1.88f) - curveToRelative(-2.06f, 0.0f, -3.61f, -0.53f, -4.7f, -1.42f) - arcToRelative(5.83f, 5.83f, 0.0f, false, true, -1.98f, -3.87f) - arcToRelative(5.56f, 5.56f, 0.0f, false, true, 0.86f, -4.0f) - lineToRelative(0.32f, 0.6f) - arcToRelative(2.2f, 2.2f, 0.0f, false, false, 2.9f, 0.96f) - curveToRelative(1.3f, -0.62f, 1.58f, -2.21f, 1.17f, -3.33f) - arcToRelative(3.94f, 3.94f, 0.0f, false, true, -0.11f, -2.7f) - arcToRelative(5.32f, 5.32f, 0.0f, false, true, 1.83f, -2.45f) - close() - moveTo(6.16f, 9.31f) - horizontalLineToRelative(-0.01f) - lineToRelative(-0.01f, 0.02f) - arcToRelative(1.94f, 1.94f, 0.0f, false, false, -0.13f, 0.1f) - curveToRelative(-0.07f, 0.07f, -0.18f, 0.16f, -0.3f, 0.3f) - curveToRelative(-0.24f, 0.24f, -0.55f, 0.62f, -0.83f, 1.12f) - arcToRelative(7.06f, 7.06f, 0.0f, false, false, -0.8f, 4.55f) - curveToRelative(0.27f, 2.0f, 1.1f, 3.67f, 2.53f, 4.83f) - curveTo(8.02f, 21.4f, 9.94f, 22.0f, 12.25f, 22.0f) - curveToRelative(2.39f, 0.0f, 4.3f, -0.9f, 5.55f, -2.43f) - arcToRelative(8.35f, 8.35f, 0.0f, false, false, 1.68f, -5.86f) - curveToRelative(-0.13f, -2.18f, -1.31f, -3.83f, -2.36f, -5.29f) - lineToRelative(-0.3f, -0.42f) - curveTo(15.68f, 6.4f, 14.78f, 4.9f, 15.0f, 2.83f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.83f) - curveToRelative(-0.38f, 0.0f, -0.82f, 0.12f, -1.24f, 0.3f) - arcToRelative(6.82f, 6.82f, 0.0f, false, false, -3.72f, 3.96f) - curveToRelative(-0.49f, 1.4f, -0.24f, 2.73f, 0.12f, 3.7f) - curveToRelative(0.24f, 0.64f, -0.02f, 1.27f, -0.4f, 1.46f) - arcToRelative(0.7f, 0.7f, 0.0f, false, true, -0.93f, -0.31f) - lineToRelative(-0.81f, -1.54f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.11f, -0.25f) - close() - } - } - return _fire!! - } - -private var _fire: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fireplace.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fireplace.kt deleted file mode 100644 index 0e79d2a5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fireplace.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Fireplace: ImageVector - get() { - if (_fireplace != null) { - return _fireplace!! - } - _fireplace = fluentIcon(name = "Regular.Fireplace") { - fluentPath { - moveTo(3.0f, 11.0f) - arcToRelative(9.0f, 9.0f, 0.0f, false, true, 18.0f, 0.0f) - verticalLineToRelative(6.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(3.75f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(3.0f, 11.0f) - close() - moveTo(12.0f, 3.5f) - arcTo(7.5f, 7.5f, 0.0f, false, false, 4.5f, 11.0f) - verticalLineToRelative(5.5f) - horizontalLineToRelative(4.3f) - arcToRelative(4.14f, 4.14f, 0.0f, false, true, -1.3f, -3.01f) - arcToRelative(5.57f, 5.57f, 0.0f, false, true, 1.46f, -3.76f) - lineToRelative(0.02f, -0.02f) - lineTo(9.0f, 9.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 0.03f) - verticalLineToRelative(-0.05f) - lineToRelative(0.02f, -0.16f) - curveToRelative(0.05f, -0.52f, 0.13f, -1.27f, 0.47f, -1.94f) - arcToRelative(2.9f, 2.9f, 0.0f, false, true, 2.04f, -1.56f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.92f, 0.73f) - curveToRelative(0.0f, 1.34f, 0.59f, 2.1f, 1.33f, 3.0f) - lineToRelative(0.07f, 0.08f) - curveToRelative(0.73f, 0.88f, 1.6f, 1.93f, 1.6f, 3.66f) - curveToRelative(0.0f, 1.17f, -0.5f, 2.24f, -1.3f, 3.01f) - horizontalLineToRelative(4.3f) - lineTo(19.51f, 11.0f) - arcTo(7.5f, 7.5f, 0.0f, false, false, 12.0f, 3.5f) - close() - moveTo(9.53f, 11.46f) - arcTo(4.07f, 4.07f, 0.0f, false, false, 9.0f, 13.49f) - curveToRelative(0.0f, 1.47f, 1.23f, 2.76f, 3.0f, 2.76f) - reflectiveCurveToRelative(3.0f, -1.31f, 3.0f, -2.76f) - curveToRelative(0.0f, -1.19f, -0.56f, -1.87f, -1.32f, -2.79f) - arcToRelative(6.46f, 6.46f, 0.0f, false, true, -1.56f, -2.8f) - curveToRelative(-0.1f, 0.11f, -0.17f, 0.23f, -0.24f, 0.35f) - curveToRelative(-0.2f, 0.4f, -0.27f, 0.89f, -0.32f, 1.42f) - lineToRelative(-0.01f, 0.13f) - lineToRelative(-0.07f, 0.62f) - curveToRelative(-0.04f, 0.19f, -0.1f, 0.56f, -0.37f, 0.83f) - arcToRelative(0.99f, 0.99f, 0.0f, false, true, -0.62f, 0.3f) - arcToRelative(1.2f, 1.2f, 0.0f, false, true, -0.57f, -0.1f) - lineToRelative(-0.3f, -0.16f) - lineToRelative(-0.1f, 0.17f) - close() - moveTo(2.0f, 20.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(2.75f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _fireplace!! - } - -private var _fireplace: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FixedWidth.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FixedWidth.kt deleted file mode 100644 index fcd29660..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FixedWidth.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FixedWidth: ImageVector - get() { - if (_fixedWidth != null) { - return _fixedWidth!! - } - _fixedWidth = fluentIcon(name = "Regular.FixedWidth") { - fluentPath { - moveTo(4.5f, 4.69f) - curveToRelative(0.0f, -0.38f, -0.34f, -0.69f, -0.75f, -0.69f) - reflectiveCurveTo(3.0f, 4.3f, 3.0f, 4.69f) - lineTo(3.0f, 8.8f) - curveToRelative(0.0f, 0.38f, 0.34f, 0.69f, 0.75f, 0.69f) - reflectiveCurveToRelative(0.75f, -0.3f, 0.75f, -0.69f) - lineTo(4.5f, 7.5f) - horizontalLineToRelative(6.75f) - verticalLineToRelative(1.31f) - curveToRelative(0.0f, 0.38f, 0.34f, 0.69f, 0.75f, 0.69f) - reflectiveCurveToRelative(0.75f, -0.3f, 0.75f, -0.69f) - lineTo(12.75f, 7.5f) - horizontalLineToRelative(6.75f) - verticalLineToRelative(1.31f) - curveToRelative(0.0f, 0.38f, 0.34f, 0.69f, 0.75f, 0.69f) - reflectiveCurveToRelative(0.75f, -0.3f, 0.75f, -0.69f) - lineTo(21.0f, 4.7f) - curveToRelative(0.0f, -0.38f, -0.34f, -0.69f, -0.75f, -0.69f) - reflectiveCurveToRelative(-0.75f, 0.3f, -0.75f, 0.69f) - lineTo(19.5f, 6.0f) - horizontalLineToRelative(-6.75f) - lineTo(12.75f, 4.69f) - curveToRelative(0.0f, -0.38f, -0.34f, -0.69f, -0.75f, -0.69f) - reflectiveCurveToRelative(-0.75f, 0.3f, -0.75f, 0.69f) - lineTo(11.25f, 6.0f) - lineTo(4.5f, 6.0f) - lineTo(4.5f, 4.69f) - close() - moveTo(5.75f, 11.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 13.75f) - verticalLineToRelative(4.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, 2.75f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 17.75f) - verticalLineToRelative(-4.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 11.0f) - lineTo(5.75f, 11.0f) - close() - moveTo(11.25f, 12.5f) - lineTo(11.25f, 19.0f) - horizontalLineToRelative(-5.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(5.5f) - close() - moveTo(12.75f, 19.0f) - verticalLineToRelative(-6.5f) - horizontalLineToRelative(5.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineToRelative(-5.5f) - close() - } - } - return _fixedWidth!! - } - -private var _fixedWidth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlagClock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlagClock.kt deleted file mode 100644 index 0a791365..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlagClock.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FlagClock: ImageVector - get() { - if (_flagClock != null) { - return _flagClock!! - } - _flagClock = fluentIcon(name = "Regular.FlagClock") { - fluentPath { - moveTo(3.0f, 3.75f) - curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(16.5f) - curveToRelative(0.62f, 0.0f, 0.98f, 0.7f, 0.6f, 1.2f) - lineTo(16.7f, 9.75f) - lineToRelative(0.94f, 1.25f) - arcToRelative(6.15f, 6.15f, 0.0f, false, false, -1.73f, 0.2f) - lineToRelative(-0.75f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -0.9f) - lineToRelative(3.6f, -4.8f) - lineTo(4.5f, 4.5f) - lineTo(4.5f, 15.0f) - horizontalLineToRelative(7.0f) - curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) - lineTo(4.5f, 16.5f) - verticalLineToRelative(4.75f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - lineTo(3.0f, 3.75f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(19.5f, 17.5f) - horizontalLineToRelative(-2.0f) - lineTo(17.5f, 15.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - close() - } - } - return _flagClock!! - } - -private var _flagClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlagOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlagOff.kt deleted file mode 100644 index c2817b2f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlagOff.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FlagOff: ImageVector - get() { - if (_flagOff != null) { - return _flagOff!! - } - _flagOff = fluentIcon(name = "Regular.FlagOff") { - fluentPath { - moveToRelative(2.5f, 2.5f) - lineToRelative(18.0f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineToRelative(-5.06f, -5.06f) - lineTo(4.5f, 16.5f) - verticalLineToRelative(4.75f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - lineTo(3.0f, 5.12f) - lineTo(1.44f, 3.56f) - arcTo(0.75f, 0.75f, 0.0f, true, true, 2.5f, 2.5f) - close() - moveTo(5.12f, 3.0f) - horizontalLineToRelative(15.13f) - curveToRelative(0.62f, 0.0f, 0.98f, 0.7f, 0.6f, 1.2f) - lineTo(16.7f, 9.75f) - lineToRelative(4.16f, 5.55f) - curveToRelative(0.38f, 0.5f, 0.02f, 1.2f, -0.6f, 1.2f) - horizontalLineToRelative(-1.63f) - lineToRelative(-1.5f, -1.5f) - horizontalLineToRelative(1.63f) - lineToRelative(-3.6f, -4.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -0.9f) - lineToRelative(3.6f, -4.8f) - lineTo(6.62f, 4.5f) - lineTo(5.12f, 3.0f) - close() - moveTo(4.5f, 6.62f) - lineTo(4.5f, 15.0f) - horizontalLineToRelative(8.38f) - lineTo(4.5f, 6.62f) - close() - } - } - return _flagOff!! - } - -private var _flagOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlashAuto.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlashAuto.kt deleted file mode 100644 index 8e2553e9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlashAuto.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FlashAuto: ImageVector - get() { - if (_flashAuto != null) { - return _flashAuto!! - } - _flashAuto = fluentIcon(name = "Regular.FlashAuto") { - fluentPath { - moveTo(7.42f, 2.83f) - curveTo(7.6f, 2.33f, 8.07f, 2.0f, 8.6f, 2.0f) - horizontalLineToRelative(6.46f) - curveToRelative(0.85f, 0.0f, 1.45f, 0.84f, 1.18f, 1.65f) - lineTo(14.8f, 8.0f) - horizontalLineToRelative(3.96f) - curveToRelative(1.1f, 0.0f, 1.66f, 1.33f, 0.9f, 2.12f) - lineToRelative(-0.67f, 0.7f) - curveToRelative(-0.3f, -0.5f, -0.8f, -0.76f, -1.32f, -0.81f) - lineToRelative(0.5f, -0.51f) - horizontalLineToRelative(-4.41f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.71f, -0.99f) - lineTo(14.7f, 3.5f) - lineTo(8.78f, 3.5f) - lineToRelative(-3.26f, 9.16f) - curveToRelative(-0.06f, 0.16f, 0.06f, 0.33f, 0.23f, 0.33f) - lineToRelative(2.5f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.73f, 0.91f) - lineTo(7.51f, 20.5f) - lineToRelative(7.86f, -8.1f) - lineToRelative(-1.44f, 3.63f) - lineToRelative(-5.34f, 5.52f) - curveToRelative(-1.06f, 1.08f, -2.88f, 0.1f, -2.55f, -1.38f) - lineToRelative(1.27f, -5.66f) - lineToRelative(-1.57f, -0.01f) - curveToRelative(-1.2f, 0.0f, -2.04f, -1.2f, -1.64f, -2.34f) - lineToRelative(3.32f, -9.32f) - close() - moveTo(18.19f, 11.47f) - lineTo(21.94f, 20.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.64f) - lineToRelative(-0.04f, -0.09f) - lineToRelative(-1.0f, -2.52f) - horizontalLineToRelative(-4.1f) - lineToRelative(-1.0f, 2.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.88f, 0.45f) - lineToRelative(-0.1f, -0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.45f, -0.87f) - lineToRelative(0.03f, -0.1f) - lineToRelative(3.75f, -9.5f) - arcToRelative(0.73f, 0.73f, 0.0f, false, true, 0.45f, -0.43f) - arcToRelative(0.77f, 0.77f, 0.0f, false, true, 0.55f, 0.02f) - curveToRelative(0.14f, 0.06f, 0.26f, 0.16f, 0.34f, 0.3f) - lineToRelative(0.05f, 0.11f) - close() - moveTo(16.03f, 17.5f) - horizontalLineToRelative(2.93f) - lineToRelative(-1.46f, -3.7f) - lineToRelative(-1.47f, 3.7f) - close() - } - } - return _flashAuto!! - } - -private var _flashAuto: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlashCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlashCheckmark.kt deleted file mode 100644 index e8ec0d34..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlashCheckmark.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FlashCheckmark: ImageVector - get() { - if (_flashCheckmark != null) { - return _flashCheckmark!! - } - _flashCheckmark = fluentIcon(name = "Regular.FlashCheckmark") { - fluentPath { - moveTo(7.42f, 2.83f) - curveTo(7.6f, 2.33f, 8.07f, 2.0f, 8.6f, 2.0f) - horizontalLineToRelative(6.46f) - curveToRelative(0.85f, 0.0f, 1.45f, 0.84f, 1.18f, 1.65f) - lineTo(14.8f, 8.0f) - horizontalLineToRelative(3.96f) - curveToRelative(1.1f, 0.0f, 1.66f, 1.33f, 0.9f, 2.12f) - lineToRelative(-0.96f, 0.99f) - arcToRelative(6.53f, 6.53f, 0.0f, false, false, -2.04f, -0.06f) - lineToRelative(1.5f, -1.55f) - horizontalLineToRelative(-4.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.71f, -0.99f) - lineTo(14.7f, 3.5f) - lineTo(8.78f, 3.5f) - lineToRelative(-3.26f, 9.16f) - curveToRelative(-0.06f, 0.16f, 0.06f, 0.33f, 0.23f, 0.33f) - lineToRelative(2.5f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.73f, 0.91f) - lineTo(7.51f, 20.5f) - lineToRelative(3.52f, -3.63f) - arcToRelative(6.57f, 6.57f, 0.0f, false, false, 0.12f, 2.03f) - lineToRelative(-2.56f, 2.65f) - curveToRelative(-1.06f, 1.08f, -2.88f, 0.1f, -2.55f, -1.38f) - lineToRelative(1.27f, -5.66f) - lineToRelative(-1.57f, -0.01f) - curveToRelative(-1.2f, 0.0f, -2.04f, -1.2f, -1.64f, -2.34f) - lineToRelative(3.32f, -9.32f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-3.65f, 3.64f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _flashCheckmark!! - } - -private var _flashCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlashFlow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlashFlow.kt deleted file mode 100644 index 0c5aec92..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlashFlow.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FlashFlow: ImageVector - get() { - if (_flashFlow != null) { - return _flashFlow!! - } - _flashFlow = fluentIcon(name = "Regular.FlashFlow") { - fluentPath { - moveTo(7.43f, 2.83f) - curveTo(7.6f, 2.33f, 8.07f, 2.0f, 8.6f, 2.0f) - horizontalLineToRelative(6.46f) - curveToRelative(0.85f, 0.0f, 1.45f, 0.84f, 1.18f, 1.65f) - lineTo(14.8f, 8.0f) - horizontalLineToRelative(3.96f) - curveToRelative(1.1f, 0.0f, 1.67f, 1.33f, 0.9f, 2.12f) - lineToRelative(-3.18f, 3.29f) - arcToRelative(12.41f, 12.41f, 0.0f, false, false, -0.57f, -1.57f) - lineToRelative(2.26f, -2.34f) - horizontalLineToRelative(-4.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.72f, -0.99f) - lineTo(14.7f, 3.5f) - lineTo(8.78f, 3.5f) - lineToRelative(-3.26f, 9.16f) - curveToRelative(-0.06f, 0.16f, 0.06f, 0.33f, 0.23f, 0.33f) - horizontalLineToRelative(0.96f) - arcToRelative(3.76f, 3.76f, 0.0f, false, false, 2.0f, 2.18f) - lineToRelative(-1.2f, 5.32f) - lineToRelative(5.67f, -5.85f) - arcToRelative(52.28f, 52.28f, 0.0f, false, true, 0.43f, 1.71f) - lineToRelative(-5.02f, 5.19f) - curveToRelative(-1.06f, 1.08f, -2.87f, 0.1f, -2.54f, -1.38f) - lineToRelative(1.27f, -5.66f) - lineToRelative(-1.57f, -0.01f) - curveToRelative(-1.21f, 0.0f, -2.05f, -1.2f, -1.65f, -2.34f) - lineToRelative(3.33f, -9.32f) - close() - moveTo(12.81f, 12.75f) - arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.14f, -1.5f) - horizontalLineToRelative(0.3f) - curveToRelative(0.38f, 0.0f, 0.79f, 0.1f, 1.15f, 0.36f) - curveToRelative(0.37f, 0.26f, 0.64f, 0.64f, 0.8f, 1.13f) - curveToRelative(0.2f, 0.48f, 0.45f, 1.46f, 0.65f, 2.27f) - arcToRelative(89.58f, 89.58f, 0.0f, false, true, 0.35f, 1.44f) - lineToRelative(0.02f, 0.1f) - curveToRelative(0.08f, 0.22f, 0.18f, 0.32f, 0.25f, 0.37f) - curveToRelative(0.07f, 0.05f, 0.16f, 0.08f, 0.28f, 0.08f) - horizontalLineToRelative(0.76f) - arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.29f, 1.5f) - horizontalLineToRelative(-1.05f) - curveToRelative(-0.38f, 0.0f, -0.79f, -0.1f, -1.15f, -0.36f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.83f, -1.22f) - verticalLineToRelative(-0.03f) - lineToRelative(-0.03f, -0.1f) - arcToRelative(88.51f, 88.51f, 0.0f, false, false, -0.34f, -1.42f) - arcToRelative(22.53f, 22.53f, 0.0f, false, false, -0.61f, -2.13f) - curveToRelative(-0.09f, -0.26f, -0.19f, -0.36f, -0.26f, -0.41f) - arcToRelative(0.47f, 0.47f, 0.0f, false, false, -0.28f, -0.08f) - horizontalLineToRelative(-0.44f) - close() - moveTo(11.5f, 11.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) - close() - moveTo(20.25f, 18.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - } - } - return _flashFlow!! - } - -private var _flashFlow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlashOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlashOff.kt deleted file mode 100644 index c2944aa1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlashOff.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FlashOff: ImageVector - get() { - if (_flashOff != null) { - return _flashOff!! - } - _flashOff = fluentIcon(name = "Regular.FlashOff") { - fluentPath { - moveTo(5.94f, 7.0f) - lineTo(2.22f, 3.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(18.5f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineToRelative(-6.28f, -6.28f) - lineToRelative(-5.85f, 6.04f) - curveToRelative(-1.06f, 1.08f, -2.88f, 0.1f, -2.55f, -1.38f) - lineToRelative(1.27f, -5.66f) - lineToRelative(-1.57f, -0.01f) - curveToRelative(-1.2f, 0.0f, -2.04f, -1.2f, -1.64f, -2.34f) - lineTo(5.94f, 7.0f) - close() - moveTo(13.38f, 14.44f) - lineTo(7.1f, 8.17f) - lineToRelative(-1.6f, 4.49f) - curveToRelative(-0.05f, 0.16f, 0.07f, 0.33f, 0.24f, 0.33f) - lineToRelative(2.5f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.73f, 0.91f) - lineTo(7.51f, 20.5f) - lineToRelative(5.87f, -6.05f) - close() - moveTo(18.16f, 9.5f) - lineTo(15.46f, 12.28f) - lineTo(16.52f, 13.34f) - lineTo(19.65f, 10.12f) - curveToRelative(0.76f, -0.8f, 0.2f, -2.12f, -0.9f, -2.12f) - horizontalLineToRelative(-3.96f) - lineToRelative(1.45f, -4.35f) - curveToRelative(0.27f, -0.81f, -0.33f, -1.65f, -1.18f, -1.65f) - lineTo(8.6f, 2.0f) - curveToRelative(-0.53f, 0.0f, -1.0f, 0.33f, -1.18f, 0.83f) - lineToRelative(-0.37f, 1.04f) - lineToRelative(1.18f, 1.18f) - lineToRelative(0.55f, -1.55f) - horizontalLineToRelative(5.93f) - lineToRelative(-1.67f, 5.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.7f, 0.99f) - horizontalLineToRelative(4.42f) - close() - } - } - return _flashOff!! - } - -private var _flashOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlashSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlashSettings.kt deleted file mode 100644 index 291a9254..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlashSettings.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FlashSettings: ImageVector - get() { - if (_flashSettings != null) { - return _flashSettings!! - } - _flashSettings = fluentIcon(name = "Regular.FlashSettings") { - fluentPath { - moveTo(7.42f, 2.83f) - curveTo(7.6f, 2.33f, 8.07f, 2.0f, 8.6f, 2.0f) - horizontalLineToRelative(6.46f) - curveToRelative(0.85f, 0.0f, 1.45f, 0.84f, 1.18f, 1.65f) - lineTo(14.8f, 8.0f) - horizontalLineToRelative(3.96f) - curveToRelative(1.1f, 0.0f, 1.66f, 1.33f, 0.9f, 2.12f) - lineToRelative(-0.96f, 0.99f) - arcToRelative(6.53f, 6.53f, 0.0f, false, false, -2.04f, -0.06f) - lineToRelative(1.5f, -1.55f) - horizontalLineToRelative(-4.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.71f, -0.99f) - lineTo(14.7f, 3.5f) - lineTo(8.78f, 3.5f) - lineToRelative(-3.26f, 9.16f) - curveToRelative(-0.06f, 0.16f, 0.06f, 0.33f, 0.23f, 0.33f) - lineToRelative(2.5f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.73f, 0.91f) - lineTo(7.51f, 20.5f) - lineToRelative(3.52f, -3.63f) - arcToRelative(6.57f, 6.57f, 0.0f, false, false, 0.12f, 2.03f) - lineToRelative(-2.56f, 2.65f) - curveToRelative(-1.06f, 1.08f, -2.88f, 0.1f, -2.55f, -1.38f) - lineToRelative(1.27f, -5.66f) - lineToRelative(-1.57f, -0.01f) - curveToRelative(-1.2f, 0.0f, -2.04f, -1.2f, -1.64f, -2.34f) - lineToRelative(3.32f, -9.32f) - close() - moveTo(14.28f, 13.98f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.59f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) - lineToRelative(0.55f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) - lineToRelative(-0.19f, 0.64f) - curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) - lineToRelative(0.49f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.9f) - lineToRelative(-0.2f, -0.7f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) - lineToRelative(0.59f, -0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, -0.01f, -1.8f) - lineToRelative(-0.54f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.19f, -0.63f) - curveToRelative(-0.44f, -0.39f, -0.94f, -0.7f, -1.49f, -0.93f) - lineToRelative(-0.49f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.91f) - lineToRelative(0.2f, 0.69f) - close() - moveTo(17.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) - close() - } - } - return _flashSettings!! - } - -private var _flashSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Flashlight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Flashlight.kt deleted file mode 100644 index b3d49005..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Flashlight.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Flashlight: ImageVector - get() { - if (_flashlight != null) { - return _flashlight!! - } - _flashlight = fluentIcon(name = "Regular.Flashlight") { - fluentPath { - moveTo(17.5f, 2.0f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 16.0f, 2.0f) - verticalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(17.5f, 2.0f) - close() - moveTo(21.53f, 2.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(2.0f, -2.0f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - close() - moveTo(8.03f, 17.03f) - lineToRelative(1.5f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - close() - moveTo(8.25f, 6.0f) - verticalLineToRelative(4.69f) - lineTo(3.03f, 15.9f) - curveToRelative(-0.88f, 0.88f, -0.88f, 2.3f, 0.0f, 3.18f) - lineToRelative(1.88f, 1.88f) - curveToRelative(0.88f, 0.88f, 2.3f, 0.88f, 3.18f, 0.0f) - lineToRelative(5.22f, -5.22f) - lineTo(18.0f, 15.74f) - curveToRelative(0.2f, 0.0f, 0.39f, -0.08f, 0.53f, -0.22f) - lineToRelative(1.94f, -1.94f) - curveToRelative(0.88f, -0.88f, 0.88f, -2.3f, 0.0f, -3.18f) - lineToRelative(-6.88f, -6.88f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.18f, 0.0f) - lineTo(8.47f, 5.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.22f, 0.53f) - close() - moveTo(11.47f, 4.6f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(6.88f, 6.87f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineTo(18.0f, 13.93f) - lineTo(10.06f, 6.0f) - lineToRelative(1.4f, -1.4f) - close() - moveTo(9.75f, 7.8f) - lineToRelative(6.44f, 6.44f) - lineTo(13.3f, 14.24f) - lineToRelative(-3.56f, -3.56f) - lineTo(9.74f, 7.8f) - close() - moveTo(9.0f, 12.06f) - lineTo(11.94f, 15.0f) - lineToRelative(-4.91f, 4.9f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-1.88f, -1.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineTo(9.0f, 12.07f) - close() - moveTo(21.0f, 8.0f) - horizontalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.0f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 21.0f, 8.0f) - close() - } - } - return _flashlight!! - } - -private var _flashlight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlashlightOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlashlightOff.kt deleted file mode 100644 index 43c47611..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlashlightOff.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FlashlightOff: ImageVector - get() { - if (_flashlightOff != null) { - return _flashlightOff!! - } - _flashlightOff = fluentIcon(name = "Regular.FlashlightOff") { - fluentPath { - moveTo(9.53f, 14.47f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(1.5f, -1.5f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(6.03f, 6.03f) - verticalLineToRelative(1.38f) - lineTo(3.03f, 15.9f) - curveToRelative(-0.88f, 0.88f, -0.88f, 2.3f, 0.0f, 3.18f) - lineToRelative(1.88f, 1.88f) - curveToRelative(0.88f, 0.88f, 2.3f, 0.88f, 3.18f, 0.0f) - lineToRelative(5.22f, -5.22f) - horizontalLineToRelative(1.38f) - lineToRelative(6.03f, 6.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(9.0f, 12.06f) - lineTo(11.94f, 15.0f) - lineToRelative(-4.91f, 4.9f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-1.88f, -1.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineTo(9.0f, 12.07f) - close() - moveTo(17.84f, 14.09f) - lineTo(19.41f, 12.53f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-6.88f, -6.88f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineTo(9.9f, 6.16f) - lineTo(8.84f, 5.09f) - lineToRelative(1.57f, -1.56f) - curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.0f) - lineToRelative(6.88f, 6.88f) - curveToRelative(0.88f, 0.88f, 0.88f, 2.3f, 0.0f, 3.18f) - lineToRelative(-1.57f, 1.57f) - lineToRelative(-1.06f, -1.07f) - close() - } - } - return _flashlightOff!! - } - -private var _flashlightOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlipHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlipHorizontal.kt deleted file mode 100644 index 36997c90..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlipHorizontal.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FlipHorizontal: ImageVector - get() { - if (_flipHorizontal != null) { - return _flipHorizontal!! - } - _flipHorizontal = fluentIcon(name = "Regular.FlipHorizontal") { - fluentPath { - moveTo(21.88f, 19.66f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.63f, 0.34f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineTo(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.43f, -0.31f) - lineToRelative(7.5f, 16.5f) - curveToRelative(0.1f, 0.23f, 0.09f, 0.5f, -0.05f, 0.72f) - close() - moveTo(14.5f, 6.2f) - verticalLineTo(18.5f) - horizontalLineToRelative(5.59f) - lineTo(14.5f, 6.21f) - close() - moveTo(2.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.45f, -0.71f) - lineToRelative(8.0f, -17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.95f, 0.21f) - verticalLineToRelative(17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-8.0f) - close() - } - } - return _flipHorizontal!! - } - -private var _flipHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlipVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlipVertical.kt deleted file mode 100644 index aee827fa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlipVertical.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FlipVertical: ImageVector - get() { - if (_flipVertical != null) { - return _flipVertical!! - } - _flipVertical = fluentIcon(name = "Regular.FlipVertical") { - fluentPath { - moveTo(19.66f, 2.12f) - curveToRelative(0.21f, 0.14f, 0.34f, 0.38f, 0.34f, 0.63f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineTo(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.31f, -1.43f) - lineToRelative(16.5f, -7.5f) - curveToRelative(0.23f, -0.1f, 0.5f, -0.09f, 0.72f, 0.05f) - close() - moveTo(6.2f, 9.5f) - horizontalLineTo(18.5f) - verticalLineTo(3.91f) - lineTo(6.21f, 9.5f) - close() - moveTo(20.0f, 21.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.71f, 0.45f) - lineToRelative(-17.0f, -8.0f) - arcTo(0.5f, 0.5f, 0.0f, false, true, 2.5f, 13.0f) - horizontalLineToRelative(17.0f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - verticalLineToRelative(8.0f) - close() - } - } - return _flipVertical!! - } - -private var _flipVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Flowchart.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Flowchart.kt deleted file mode 100644 index e673d180..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Flowchart.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Flowchart: ImageVector - get() { - if (_flowchart != null) { - return _flowchart!! - } - _flowchart = fluentIcon(name = "Regular.Flowchart") { - fluentPath { - moveTo(5.25f, 3.0f) - curveTo(4.0f, 3.0f, 3.0f, 4.0f, 3.0f, 5.25f) - verticalLineToRelative(2.5f) - curveTo(3.0f, 9.0f, 4.0f, 10.0f, 5.25f, 10.0f) - horizontalLineToRelative(0.5f) - verticalLineToRelative(3.71f) - curveToRelative(-0.05f, 0.03f, -0.1f, 0.07f, -0.13f, 0.12f) - lineToRelative(-2.8f, 2.79f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 1.77f) - lineToRelative(2.8f, 2.79f) - curveToRelative(0.48f, 0.49f, 1.28f, 0.49f, 1.76f, 0.0f) - lineToRelative(2.8f, -2.8f) - lineToRelative(0.11f, -0.13f) - lineTo(14.0f, 18.25f) - verticalLineToRelative(0.5f) - curveTo(14.0f, 20.0f, 15.01f, 21.0f, 16.25f, 21.0f) - horizontalLineToRelative(2.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-2.5f) - curveTo(15.01f, 14.0f, 14.0f, 15.0f, 14.0f, 16.25f) - verticalLineToRelative(0.5f) - lineTo(10.3f, 16.75f) - curveToRelative(-0.03f, -0.05f, -0.07f, -0.09f, -0.12f, -0.13f) - lineToRelative(-2.79f, -2.8f) - arcToRelative(1.26f, 1.26f, 0.0f, false, false, -0.13f, -0.11f) - verticalLineToRelative(-3.7f) - horizontalLineToRelative(0.5f) - curveTo(9.0f, 10.0f, 10.0f, 9.0f, 10.0f, 7.74f) - verticalLineToRelative(-2.5f) - curveTo(10.0f, 4.0f, 9.0f, 3.0f, 7.75f, 3.0f) - horizontalLineToRelative(-2.5f) - close() - moveTo(4.5f, 5.25f) - curveToRelative(0.0f, -0.42f, 0.33f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.42f, 0.0f, 0.75f, 0.33f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.42f, -0.33f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-2.5f) - close() - moveTo(4.06f, 17.5f) - lineToRelative(2.44f, -2.44f) - lineToRelative(2.44f, 2.44f) - lineToRelative(-2.44f, 2.44f) - lineToRelative(-2.44f, -2.44f) - close() - moveTo(16.26f, 15.5f) - horizontalLineToRelative(2.49f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.42f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _flowchart!! - } - -private var _flowchart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlowchartCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlowchartCircle.kt deleted file mode 100644 index 673931a4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FlowchartCircle.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FlowchartCircle: ImageVector - get() { - if (_flowchartCircle != null) { - return _flowchartCircle!! - } - _flowchartCircle = fluentIcon(name = "Regular.FlowchartCircle") { - fluentPath { - moveTo(7.25f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(0.5f) - verticalLineToRelative(2.69f) - lineToRelative(-1.78f, 1.78f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(1.78f, -1.78f) - horizontalLineToRelative(2.69f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.5f) - horizontalLineToRelative(-2.69f) - lineToRelative(-1.56f, -1.56f) - lineTo(9.25f, 10.5f) - horizontalLineToRelative(0.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.5f) - close() - moveTo(2.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) - close() - } - } - return _flowchartCircle!! - } - -private var _flowchartCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fluent.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fluent.kt deleted file mode 100644 index c035f80b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fluent.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Fluent: ImageVector - get() { - if (_fluent != null) { - return _fluent!! - } - _fluent = fluentIcon(name = "Regular.Fluent") { - fluentPath { - moveTo(12.41f, 2.5f) - horizontalLineToRelative(0.13f) - lineToRelative(0.11f, 0.02f) - lineToRelative(0.07f, 0.03f) - lineToRelative(6.0f, 3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 0.9f) - lineTo(13.62f, 9.0f) - lineToRelative(5.1f, 2.55f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 0.9f) - lineToRelative(-5.76f, 2.84f) - lineToRelative(0.04f, 5.7f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.75f, 0.44f) - lineToRelative(-6.0f, -3.5f) - arcTo(0.5f, 0.5f, 0.0f, false, true, 6.0f, 17.5f) - lineTo(6.0f, 5.96f) - lineToRelative(0.02f, -0.1f) - lineToRelative(0.02f, -0.06f) - lineToRelative(0.01f, -0.03f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.06f, -0.09f) - lineToRelative(0.07f, -0.06f) - lineToRelative(0.07f, -0.05f) - lineToRelative(6.08f, -3.04f) - lineToRelative(0.08f, -0.02f) - close() - moveTo(7.0f, 12.82f) - verticalLineToRelative(4.4f) - lineToRelative(5.0f, 2.92f) - lineToRelative(-0.04f, -4.82f) - lineTo(7.0f, 12.81f) - close() - moveTo(7.62f, 12.02f) - lineTo(12.0f, 14.2f) - lineTo(12.0f, 9.83f) - lineTo(7.61f, 12.0f) - close() - moveTo(12.99f, 9.82f) - verticalLineToRelative(4.34f) - lineTo(17.39f, 12.0f) - lineToRelative(-4.39f, -2.2f) - close() - moveTo(7.0f, 11.19f) - lineToRelative(4.37f, -2.17f) - lineTo(7.0f, 6.82f) - verticalLineToRelative(4.37f) - close() - moveTo(12.0f, 3.81f) - lineTo(7.62f, 6.01f) - lineTo(11.99f, 8.21f) - verticalLineToRelative(-4.4f) - close() - moveTo(13.0f, 8.19f) - lineTo(17.37f, 6.0f) - lineTo(13.0f, 3.8f) - verticalLineToRelative(4.4f) - close() - } - } - return _fluent!! - } - -private var _fluent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fluid.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fluid.kt deleted file mode 100644 index d04bacbb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fluid.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Fluid: ImageVector - get() { - if (_fluid != null) { - return _fluid!! - } - _fluid = fluentIcon(name = "Regular.Fluid") { - fluentPath { - moveTo(11.0f, 5.0f) - horizontalLineToRelative(5.75f) - curveTo(17.98f, 5.0f, 19.0f, 6.0f, 19.0f, 7.25f) - lineTo(19.0f, 11.0f) - horizontalLineToRelative(-1.5f) - lineTo(17.5f, 7.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(11.0f, 6.5f) - lineTo(11.0f, 5.0f) - close() - moveTo(6.5f, 11.0f) - verticalLineToRelative(5.75f) - curveToRelative(0.0f, 0.4f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(11.0f, 17.5f) - lineTo(11.0f, 19.0f) - lineTo(7.25f, 19.0f) - curveTo(6.01f, 19.0f, 5.0f, 17.98f, 5.0f, 16.75f) - lineTo(5.0f, 11.0f) - horizontalLineToRelative(1.5f) - close() - moveTo(2.0f, 4.25f) - curveTo(2.0f, 3.01f, 3.0f, 2.0f, 4.25f, 2.0f) - horizontalLineToRelative(3.5f) - curveTo(8.99f, 2.0f, 10.0f, 3.0f, 10.0f, 4.25f) - verticalLineToRelative(3.5f) - curveTo(10.0f, 8.99f, 9.0f, 10.0f, 7.75f, 10.0f) - horizontalLineToRelative(-3.5f) - curveTo(3.01f, 10.0f, 2.0f, 9.0f, 2.0f, 7.75f) - verticalLineToRelative(-3.5f) - close() - moveTo(4.25f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.5f) - close() - moveTo(12.0f, 14.25f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(5.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(5.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-5.5f) - curveTo(13.01f, 22.0f, 12.0f, 21.0f, 12.0f, 19.75f) - verticalLineToRelative(-5.5f) - close() - moveTo(14.25f, 13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(5.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(5.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-5.5f) - close() - } - } - return _fluid!! - } - -private var _fluid: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderAdd.kt deleted file mode 100644 index a8958eb0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderAdd.kt +++ /dev/null @@ -1,97 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FolderAdd: ImageVector - get() { - if (_folderAdd != null) { - return _folderAdd!! - } - _folderAdd = fluentIcon(name = "Regular.FolderAdd") { - fluentPath { - moveTo(17.5f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(17.5f, 13.0f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) - lineToRelative(-0.01f, 0.1f) - lineTo(17.0f, 16.0f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(0.18f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) - lineToRelative(0.1f, 0.01f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(2.6f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - horizontalLineToRelative(0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) - lineToRelative(0.01f, -0.1f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - verticalLineToRelative(-0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) - lineToRelative(-0.1f, -0.01f) - lineTo(18.0f, 16.0f) - verticalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) - horizontalLineToRelative(-0.09f) - close() - moveTo(8.2f, 4.0f) - curveToRelative(0.47f, 0.0f, 0.92f, 0.14f, 1.3f, 0.4f) - lineToRelative(0.15f, 0.12f) - lineToRelative(2.37f, 1.98f) - horizontalLineToRelative(7.73f) - curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) - lineToRelative(0.01f, 0.16f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(3.06f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) - lineTo(20.5f, 8.75f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-7.73f) - lineTo(9.65f, 9.98f) - curveToRelative(-0.36f, 0.3f, -0.8f, 0.47f, -1.25f, 0.51f) - lineToRelative(-0.2f, 0.01f) - lineTo(3.5f, 10.5f) - verticalLineToRelative(7.25f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(7.06f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(4.25f, 20.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(2.0f, 17.75f) - lineTo(2.0f, 6.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 4.0f) - horizontalLineToRelative(3.96f) - close() - moveTo(8.2f, 5.5f) - lineTo(4.26f, 5.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - lineTo(3.51f, 9.0f) - horizontalLineToRelative(4.7f) - curveToRelative(0.15f, 0.0f, 0.28f, -0.04f, 0.4f, -0.11f) - lineToRelative(0.09f, -0.06f) - lineToRelative(1.89f, -1.58f) - lineToRelative(-1.9f, -1.58f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.37f, -0.16f) - lineToRelative(-0.1f, -0.01f) - close() - } - } - return _folderAdd!! - } - -private var _folderAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderArrowLeft.kt deleted file mode 100644 index 1d1575c0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderArrowLeft.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FolderArrowLeft: ImageVector - get() { - if (_folderArrowLeft != null) { - return _folderArrowLeft!! - } - _folderArrowLeft = fluentIcon(name = "Regular.FolderArrowLeft") { - fluentPath { - moveTo(9.5f, 4.4f) - curveToRelative(-0.38f, -0.26f, -0.83f, -0.4f, -1.3f, -0.4f) - lineTo(4.1f, 4.0f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 6.26f) - lineTo(2.0f, 17.9f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 20.0f) - horizontalLineToRelative(7.77f) - curveToRelative(-0.3f, -0.46f, -0.53f, -0.97f, -0.7f, -1.5f) - lineTo(4.14f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) - lineTo(3.49f, 10.5f) - horizontalLineToRelative(4.9f) - curveToRelative(0.46f, -0.05f, 0.9f, -0.23f, 1.25f, -0.52f) - lineTo(12.02f, 8.0f) - horizontalLineToRelative(7.83f) - curveToRelative(0.37f, 0.06f, 0.65f, 0.37f, 0.65f, 0.75f) - verticalLineToRelative(1.98f) - curveToRelative(0.55f, 0.29f, 1.06f, 0.65f, 1.5f, 1.08f) - lineTo(22.0f, 8.6f) - lineToRelative(-0.02f, -0.16f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.23f, -1.94f) - horizontalLineToRelative(-7.73f) - lineTo(9.65f, 4.52f) - lineToRelative(-0.16f, -0.12f) - close() - moveTo(4.24f, 5.5f) - horizontalLineToRelative(4.06f) - curveToRelative(0.14f, 0.03f, 0.27f, 0.08f, 0.38f, 0.17f) - lineToRelative(1.89f, 1.58f) - lineToRelative(-1.9f, 1.58f) - lineToRelative(-0.08f, 0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.4f, 0.11f) - lineTo(3.5f, 9.0f) - lineTo(3.5f, 6.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) - close() - moveTo(17.5f, 22.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, 11.0f) - close() - moveTo(20.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - horizontalLineToRelative(-4.8f) - lineToRelative(1.65f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineTo(15.71f, 17.0f) - horizontalLineToRelative(4.79f) - close() - } - } - return _folderArrowLeft!! - } - -private var _folderArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderArrowRight.kt deleted file mode 100644 index 473a1a4b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderArrowRight.kt +++ /dev/null @@ -1,102 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FolderArrowRight: ImageVector - get() { - if (_folderArrowRight != null) { - return _folderArrowRight!! - } - _folderArrowRight = fluentIcon(name = "Regular.FolderArrowRight") { - fluentPath { - moveTo(17.5f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(8.2f, 4.0f) - curveToRelative(0.47f, 0.0f, 0.92f, 0.14f, 1.3f, 0.4f) - lineToRelative(0.15f, 0.12f) - lineToRelative(2.37f, 1.98f) - horizontalLineToRelative(7.73f) - curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) - lineToRelative(0.01f, 0.16f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(3.06f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) - lineTo(20.5f, 8.75f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-7.73f) - lineTo(9.65f, 9.98f) - curveToRelative(-0.36f, 0.3f, -0.8f, 0.47f, -1.25f, 0.51f) - lineToRelative(-0.2f, 0.01f) - lineTo(3.5f, 10.5f) - verticalLineToRelative(7.25f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(7.06f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(4.25f, 20.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(2.0f, 17.75f) - lineTo(2.0f, 6.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 4.0f) - horizontalLineToRelative(3.96f) - close() - moveTo(17.8f, 13.55f) - lineTo(17.72f, 13.59f) - lineTo(17.65f, 13.65f) - lineTo(17.59f, 13.72f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) - lineToRelative(0.06f, 0.07f) - lineTo(19.29f, 16.0f) - horizontalLineToRelative(-5.38f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - lineToRelative(-0.01f, 0.09f) - verticalLineToRelative(0.09f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - lineTo(14.0f, 17.0f) - horizontalLineToRelative(5.3f) - lineToRelative(-1.65f, 1.65f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(0.06f, -0.07f) - lineToRelative(2.53f, -2.53f) - lineToRelative(0.05f, -0.06f) - lineToRelative(0.03f, -0.07f) - lineToRelative(0.02f, -0.06f) - lineToRelative(0.02f, -0.08f) - verticalLineToRelative(-0.1f) - lineToRelative(-0.02f, -0.08f) - lineToRelative(-0.03f, -0.08f) - lineToRelative(-0.04f, -0.07f) - lineToRelative(-0.04f, -0.06f) - lineToRelative(-2.52f, -2.51f) - lineToRelative(-0.07f, -0.06f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.49f, -0.04f) - close() - moveTo(8.2f, 5.5f) - lineTo(4.26f, 5.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - lineTo(3.51f, 9.0f) - horizontalLineToRelative(4.7f) - curveToRelative(0.15f, 0.0f, 0.28f, -0.04f, 0.4f, -0.11f) - lineToRelative(0.09f, -0.06f) - lineToRelative(1.89f, -1.58f) - lineToRelative(-1.9f, -1.58f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.37f, -0.16f) - lineToRelative(-0.1f, -0.01f) - close() - } - } - return _folderArrowRight!! - } - -private var _folderArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderArrowUp.kt deleted file mode 100644 index 32d346dd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderArrowUp.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FolderArrowUp: ImageVector - get() { - if (_folderArrowUp != null) { - return _folderArrowUp!! - } - _folderArrowUp = fluentIcon(name = "Regular.FolderArrowUp") { - fluentPath { - moveTo(8.2f, 4.0f) - curveToRelative(0.47f, 0.0f, 0.92f, 0.14f, 1.3f, 0.4f) - lineToRelative(0.15f, 0.12f) - lineToRelative(2.37f, 1.98f) - horizontalLineToRelative(7.73f) - curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) - lineToRelative(0.01f, 0.16f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(3.06f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) - lineTo(20.5f, 8.75f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-7.73f) - lineTo(9.65f, 9.98f) - curveToRelative(-0.36f, 0.3f, -0.8f, 0.47f, -1.25f, 0.51f) - lineToRelative(-0.2f, 0.01f) - lineTo(3.5f, 10.5f) - verticalLineToRelative(7.25f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(7.06f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(4.25f, 20.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(2.0f, 17.75f) - lineTo(2.0f, 6.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 4.0f) - horizontalLineToRelative(3.96f) - close() - moveTo(8.2f, 5.5f) - lineTo(4.26f, 5.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - lineTo(3.51f, 9.0f) - horizontalLineToRelative(4.7f) - curveToRelative(0.15f, 0.0f, 0.28f, -0.04f, 0.4f, -0.11f) - lineToRelative(0.09f, -0.06f) - lineToRelative(1.89f, -1.58f) - lineToRelative(-1.9f, -1.58f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.37f, -0.16f) - lineToRelative(-0.1f, -0.01f) - close() - moveTo(23.0f, 16.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(17.0f, 14.7f) - verticalLineToRelative(4.8f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-4.8f) - lineToRelative(1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineTo(17.0f, 14.71f) - close() - } - } - return _folderArrowUp!! - } - -private var _folderArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderLink.kt deleted file mode 100644 index 85d22b56..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderLink.kt +++ /dev/null @@ -1,93 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FolderLink: ImageVector - get() { - if (_folderLink != null) { - return _folderLink!! - } - _folderLink = fluentIcon(name = "Regular.FolderLink") { - fluentPath { - moveTo(18.25f, 14.5f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 0.2f, 7.5f) - horizontalLineToRelative(-1.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - horizontalLineToRelative(0.1f) - lineToRelative(1.0f, -0.01f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.15f, -4.5f) - horizontalLineToRelative(-1.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(1.1f) - close() - moveTo(13.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-1.1f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.15f, 4.5f) - horizontalLineToRelative(1.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-1.1f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.2f, -7.5f) - horizontalLineToRelative(1.2f) - close() - moveTo(8.21f, 4.0f) - curveToRelative(0.46f, 0.0f, 0.9f, 0.14f, 1.28f, 0.4f) - lineToRelative(0.16f, 0.12f) - lineToRelative(2.37f, 1.98f) - horizontalLineToRelative(7.73f) - curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) - lineToRelative(0.01f, 0.16f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(6.59f) - curveToRelative(-0.4f, -0.53f, -0.91f, -0.96f, -1.5f, -1.27f) - lineTo(20.5f, 8.75f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-7.73f) - lineTo(9.65f, 9.98f) - curveToRelative(-0.36f, 0.3f, -0.8f, 0.47f, -1.25f, 0.51f) - lineToRelative(-0.2f, 0.01f) - lineTo(3.5f, 10.5f) - verticalLineToRelative(7.25f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(3.76f) - curveToRelative(0.02f, 0.53f, 0.14f, 1.03f, 0.32f, 1.5f) - lineTo(4.25f, 20.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(2.0f, 17.75f) - lineTo(2.0f, 6.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 4.0f) - horizontalLineToRelative(3.96f) - close() - moveTo(18.25f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-5.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(5.6f) - close() - moveTo(8.21f, 5.5f) - lineTo(4.25f, 5.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - lineTo(3.5f, 9.0f) - horizontalLineToRelative(4.7f) - curveToRelative(0.15f, 0.0f, 0.28f, -0.04f, 0.4f, -0.11f) - lineToRelative(0.09f, -0.06f) - lineToRelative(1.89f, -1.58f) - lineToRelative(-1.9f, -1.58f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.37f, -0.16f) - lineToRelative(-0.1f, -0.01f) - close() - } - } - return _folderLink!! - } - -private var _folderLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderMail.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderMail.kt deleted file mode 100644 index dbb9b849..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderMail.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FolderMail: ImageVector - get() { - if (_folderMail != null) { - return _folderMail!! - } - _folderMail = fluentIcon(name = "Regular.FolderMail") { - fluentPath { - moveTo(9.5f, 4.4f) - curveToRelative(-0.38f, -0.26f, -0.83f, -0.4f, -1.3f, -0.4f) - lineTo(4.1f, 4.0f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 6.26f) - lineTo(2.0f, 17.9f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 20.0f) - lineTo(11.0f, 20.0f) - verticalLineToRelative(-1.5f) - lineTo(4.15f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) - lineTo(3.5f, 10.5f) - horizontalLineToRelative(4.9f) - curveToRelative(0.46f, -0.05f, 0.9f, -0.23f, 1.25f, -0.52f) - lineTo(12.02f, 8.0f) - horizontalLineToRelative(7.83f) - curveToRelative(0.37f, 0.06f, 0.65f, 0.37f, 0.65f, 0.75f) - lineTo(20.5f, 13.0f) - horizontalLineToRelative(0.5f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 1.0f, 0.17f) - lineTo(22.0f, 8.6f) - lineToRelative(-0.02f, -0.16f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.23f, -1.94f) - horizontalLineToRelative(-7.73f) - lineTo(9.65f, 4.52f) - lineToRelative(-0.16f, -0.12f) - close() - moveTo(4.24f, 5.5f) - horizontalLineToRelative(4.06f) - curveToRelative(0.14f, 0.03f, 0.27f, 0.08f, 0.38f, 0.17f) - lineToRelative(1.89f, 1.58f) - lineToRelative(-1.9f, 1.58f) - lineToRelative(-0.08f, 0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.4f, 0.11f) - lineTo(3.5f, 9.0f) - lineTo(3.5f, 6.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) - close() - moveTo(17.5f, 18.93f) - lineTo(12.0f, 15.73f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 14.0f, 14.0f) - horizontalLineToRelative(7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 1.97f) - lineToRelative(-5.49f, 2.96f) - close() - moveTo(17.73f, 19.94f) - lineTo(23.0f, 17.11f) - lineTo(23.0f, 21.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - verticalLineToRelative(-4.13f) - lineToRelative(5.25f, 3.06f) - curveToRelative(0.15f, 0.09f, 0.33f, 0.1f, 0.49f, 0.01f) - close() - } - } - return _folderMail!! - } - -private var _folderMail: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderOpen.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderOpen.kt deleted file mode 100644 index 1651c887..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderOpen.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FolderOpen: ImageVector - get() { - if (_folderOpen != null) { - return _folderOpen!! - } - _folderOpen = fluentIcon(name = "Regular.FolderOpen") { - fluentPath { - moveTo(20.0f, 9.5f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-5.72f) - lineTo(9.64f, 4.52f) - curveToRelative(-0.4f, -0.34f, -0.9f, -0.52f, -1.43f, -0.52f) - lineTo(4.25f, 4.0f) - curveTo(3.01f, 4.0f, 2.0f, 5.0f, 2.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(2.0f, 18.99f, 3.0f, 20.0f, 4.25f, 20.0f) - lineTo(18.47f, 20.0f) - curveToRelative(0.8f, 0.0f, 1.5f, -0.55f, 1.7f, -1.33f) - lineToRelative(1.75f, -7.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.7f, -2.17f) - lineTo(20.0f, 9.5f) - close() - moveTo(4.25f, 5.5f) - horizontalLineToRelative(3.96f) - curveToRelative(0.17f, 0.0f, 0.34f, 0.06f, 0.48f, 0.17f) - lineToRelative(2.58f, 2.16f) - curveToRelative(0.14f, 0.1f, 0.3f, 0.17f, 0.48f, 0.17f) - horizontalLineToRelative(6.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.75f) - lineTo(6.42f, 9.5f) - curveToRelative(-1.03f, 0.0f, -1.93f, 0.7f, -2.18f, 1.7f) - lineToRelative(-0.74f, 2.98f) - lineTo(3.5f, 6.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(5.7f, 11.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.72f, -0.57f) - horizontalLineToRelative(13.8f) - curveToRelative(0.16f, 0.0f, 0.28f, 0.15f, 0.24f, 0.31f) - lineToRelative(-1.75f, 7.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.24f, 0.19f) - lineTo(4.28f, 18.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.24f, -0.31f) - lineToRelative(1.66f, -6.62f) - close() - } - } - return _folderOpen!! - } - -private var _folderOpen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderPeople.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderPeople.kt deleted file mode 100644 index cb8aff3d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderPeople.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FolderPeople: ImageVector - get() { - if (_folderPeople != null) { - return _folderPeople!! - } - _folderPeople = fluentIcon(name = "Regular.FolderPeople") { - fluentPath { - moveTo(8.2f, 4.0f) - curveToRelative(0.47f, 0.0f, 0.92f, 0.14f, 1.3f, 0.4f) - lineToRelative(0.15f, 0.12f) - lineToRelative(2.37f, 1.98f) - horizontalLineToRelative(7.73f) - curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) - lineToRelative(0.01f, 0.16f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(4.55f) - arcToRelative(2.74f, 2.74f, 0.0f, false, false, -1.5f, -0.29f) - lineTo(20.5f, 8.75f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-7.73f) - lineTo(9.65f, 9.98f) - curveToRelative(-0.36f, 0.3f, -0.8f, 0.47f, -1.25f, 0.51f) - lineToRelative(-0.2f, 0.01f) - lineTo(3.5f, 10.5f) - verticalLineToRelative(7.25f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(7.08f) - arcTo(3.02f, 3.02f, 0.0f, false, false, 11.0f, 20.0f) - lineTo(4.25f, 20.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(2.0f, 17.75f) - lineTo(2.0f, 6.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 4.0f) - horizontalLineToRelative(3.96f) - close() - moveTo(8.2f, 5.5f) - lineTo(4.26f, 5.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - lineTo(3.51f, 9.0f) - horizontalLineToRelative(4.7f) - curveToRelative(0.15f, 0.0f, 0.28f, -0.04f, 0.4f, -0.11f) - lineToRelative(0.09f, -0.06f) - lineToRelative(1.89f, -1.58f) - lineToRelative(-1.9f, -1.58f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.37f, -0.16f) - lineToRelative(-0.1f, -0.01f) - close() - moveTo(15.76f, 17.0f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, -4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) - close() - moveTo(15.76f, 23.0f) - curveToRelative(2.68f, 0.0f, 3.75f, -1.57f, 3.75f, -3.13f) - curveToRelative(0.0f, -1.03f, -0.72f, -1.87f, -1.6f, -1.87f) - horizontalLineToRelative(-4.3f) - curveToRelative(-0.88f, 0.0f, -1.6f, 0.84f, -1.6f, 1.88f) - curveToRelative(0.0f, 1.56f, 1.07f, 3.12f, 3.75f, 3.12f) - close() - moveTo(22.51f, 15.75f) - arcToRelative(1.75f, 1.75f, 0.0f, true, true, -3.5f, 0.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 3.5f, 0.0f) - close() - moveTo(19.92f, 22.0f) - curveToRelative(0.4f, -0.66f, 0.58f, -1.4f, 0.58f, -2.13f) - curveToRelative(0.0f, -0.47f, -0.11f, -0.95f, -0.32f, -1.37f) - horizontalLineToRelative(1.54f) - curveToRelative(0.7f, 0.0f, 1.28f, 0.59f, 1.28f, 1.31f) - curveToRelative(0.0f, 1.1f, -0.85f, 2.19f, -3.0f, 2.19f) - horizontalLineToRelative(-0.08f) - close() - } - } - return _folderPeople!! - } - -private var _folderPeople: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderProhibited.kt deleted file mode 100644 index 67db1ff8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderProhibited.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FolderProhibited: ImageVector - get() { - if (_folderProhibited != null) { - return _folderProhibited!! - } - _folderProhibited = fluentIcon(name = "Regular.FolderProhibited") { - fluentPath { - moveTo(17.5f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(20.8f, 14.25f) - lineTo(15.25f, 19.81f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 5.56f, -5.56f) - close() - moveTo(8.2f, 4.0f) - curveToRelative(0.47f, 0.0f, 0.92f, 0.14f, 1.3f, 0.4f) - lineToRelative(0.15f, 0.12f) - lineToRelative(2.37f, 1.98f) - horizontalLineToRelative(7.73f) - curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) - lineToRelative(0.01f, 0.16f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(3.06f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) - lineTo(20.5f, 8.75f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-7.73f) - lineTo(9.65f, 9.98f) - curveToRelative(-0.36f, 0.3f, -0.8f, 0.47f, -1.25f, 0.51f) - lineToRelative(-0.2f, 0.01f) - lineTo(3.5f, 10.5f) - verticalLineToRelative(7.25f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(7.06f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(4.25f, 20.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(2.0f, 17.75f) - lineTo(2.0f, 6.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 4.0f) - horizontalLineToRelative(3.96f) - close() - moveTo(17.5f, 12.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -3.3f, 6.25f) - lineToRelative(5.55f, -5.56f) - arcToRelative(3.98f, 3.98f, 0.0f, false, false, -2.25f, -0.69f) - close() - moveTo(8.2f, 5.5f) - lineTo(4.26f, 5.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - lineTo(3.51f, 9.0f) - horizontalLineToRelative(4.7f) - curveToRelative(0.15f, 0.0f, 0.28f, -0.04f, 0.4f, -0.11f) - lineToRelative(0.09f, -0.06f) - lineToRelative(1.89f, -1.58f) - lineToRelative(-1.9f, -1.58f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.37f, -0.16f) - lineToRelative(-0.1f, -0.01f) - close() - } - } - return _folderProhibited!! - } - -private var _folderProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderSwap.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderSwap.kt deleted file mode 100644 index 5f78a1f0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderSwap.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FolderSwap: ImageVector - get() { - if (_folderSwap != null) { - return _folderSwap!! - } - _folderSwap = fluentIcon(name = "Regular.FolderSwap") { - fluentPath { - moveTo(8.2f, 4.0f) - curveToRelative(0.47f, 0.0f, 0.92f, 0.14f, 1.3f, 0.4f) - lineToRelative(0.15f, 0.12f) - lineToRelative(2.37f, 1.98f) - horizontalLineToRelative(7.73f) - curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) - lineToRelative(0.01f, 0.16f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(8.28f) - lineToRelative(-1.5f, -1.5f) - lineTo(20.5f, 8.75f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-7.73f) - lineTo(9.65f, 9.98f) - curveToRelative(-0.36f, 0.3f, -0.8f, 0.47f, -1.25f, 0.51f) - lineToRelative(-0.2f, 0.01f) - lineTo(3.5f, 10.5f) - verticalLineToRelative(7.25f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(4.77f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.5f, 1.5f) - lineTo(4.25f, 20.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(2.0f, 17.75f) - lineTo(2.0f, 6.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 4.0f) - horizontalLineToRelative(3.96f) - close() - moveTo(8.2f, 5.5f) - lineTo(4.26f, 5.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - lineTo(3.51f, 9.0f) - horizontalLineToRelative(4.7f) - curveToRelative(0.15f, 0.0f, 0.28f, -0.04f, 0.4f, -0.11f) - lineToRelative(0.09f, -0.06f) - lineToRelative(1.89f, -1.58f) - lineToRelative(-1.9f, -1.58f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.37f, -0.16f) - lineToRelative(-0.1f, -0.01f) - close() - moveTo(13.78f, 16.79f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.06f) - lineToRelative(2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.07f) - lineToRelative(-1.22f, -1.22f) - horizontalLineToRelative(6.88f) - lineToRelative(-1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.06f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineTo(19.44f, 18.0f) - horizontalLineToRelative(-6.87f) - lineToRelative(1.21f, -1.21f) - close() - } - } - return _folderSwap!! - } - -private var _folderSwap: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderSync.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderSync.kt deleted file mode 100644 index e03bcdbe..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderSync.kt +++ /dev/null @@ -1,95 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FolderSync: ImageVector - get() { - if (_folderSync != null) { - return _folderSync!! - } - _folderSync = fluentIcon(name = "Regular.FolderSync") { - fluentPath { - moveTo(8.2f, 4.0f) - curveToRelative(0.47f, 0.0f, 0.92f, 0.14f, 1.3f, 0.4f) - lineToRelative(0.15f, 0.12f) - lineToRelative(2.37f, 1.98f) - horizontalLineToRelative(7.73f) - curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) - lineToRelative(0.01f, 0.16f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(3.06f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) - lineTo(20.5f, 8.75f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-7.73f) - lineTo(9.65f, 9.98f) - curveToRelative(-0.36f, 0.3f, -0.8f, 0.47f, -1.25f, 0.51f) - lineToRelative(-0.2f, 0.01f) - lineTo(3.5f, 10.5f) - verticalLineToRelative(7.25f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(7.06f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(4.25f, 20.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(2.0f, 17.75f) - lineTo(2.0f, 6.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 4.0f) - horizontalLineToRelative(3.96f) - close() - moveTo(8.2f, 5.5f) - lineTo(4.26f, 5.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - lineTo(3.51f, 9.0f) - horizontalLineToRelative(4.7f) - curveToRelative(0.15f, 0.0f, 0.28f, -0.04f, 0.4f, -0.11f) - lineToRelative(0.09f, -0.06f) - lineToRelative(1.89f, -1.58f) - lineToRelative(-1.9f, -1.58f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.37f, -0.16f) - lineToRelative(-0.1f, -0.01f) - close() - moveTo(12.0f, 16.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) - close() - moveTo(20.5f, 13.0f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - verticalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.8f, -0.59f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) - verticalLineToRelative(-0.55f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - close() - moveTo(15.0f, 18.95f) - verticalLineToRelative(0.55f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.77f, 0.65f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) - close() - } - } - return _folderSync!! - } - -private var _folderSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderZip.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderZip.kt deleted file mode 100644 index fcde3b2f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FolderZip.kt +++ /dev/null @@ -1,94 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FolderZip: ImageVector - get() { - if (_folderZip != null) { - return _folderZip!! - } - _folderZip = fluentIcon(name = "Regular.FolderZip") { - fluentPath { - moveTo(9.5f, 4.4f) - curveToRelative(-0.38f, -0.26f, -0.83f, -0.4f, -1.3f, -0.4f) - lineTo(4.1f, 4.0f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 6.26f) - lineTo(2.0f, 17.9f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 20.0f) - lineTo(19.9f, 20.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.1f, -2.25f) - lineTo(22.0f, 8.6f) - lineToRelative(-0.02f, -0.16f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.23f, -1.94f) - horizontalLineToRelative(-7.73f) - lineTo(9.65f, 4.52f) - lineToRelative(-0.16f, -0.12f) - close() - moveTo(13.5f, 8.0f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.4f, 0.33f, 0.75f, 0.75f, 0.75f) - lineTo(15.0f, 11.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(15.0f, 13.5f) - lineTo(15.0f, 15.0f) - horizontalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(15.0f, 16.5f) - verticalLineToRelative(2.0f) - lineTo(4.15f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) - lineTo(3.5f, 10.5f) - horizontalLineToRelative(4.9f) - curveToRelative(0.46f, -0.05f, 0.9f, -0.23f, 1.25f, -0.52f) - lineTo(12.02f, 8.0f) - horizontalLineToRelative(1.48f) - close() - moveTo(16.5f, 18.0f) - horizontalLineToRelative(0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.25f) - lineTo(16.5f, 15.0f) - horizontalLineToRelative(0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.25f) - lineTo(16.5f, 11.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(18.0f, 8.0f) - horizontalLineToRelative(1.85f) - curveToRelative(0.37f, 0.06f, 0.65f, 0.37f, 0.65f, 0.75f) - verticalLineToRelative(9.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, 0.65f) - lineTo(16.5f, 18.5f) - lineTo(16.5f, 18.0f) - close() - moveTo(16.5f, 8.0f) - verticalLineToRelative(1.5f) - lineTo(15.0f, 9.5f) - lineTo(15.0f, 8.0f) - horizontalLineToRelative(1.5f) - close() - moveTo(4.25f, 5.5f) - horizontalLineToRelative(4.06f) - curveToRelative(0.14f, 0.03f, 0.27f, 0.08f, 0.38f, 0.17f) - lineToRelative(1.89f, 1.58f) - lineToRelative(-1.9f, 1.58f) - lineToRelative(-0.08f, 0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.4f, 0.11f) - lineTo(3.5f, 9.0f) - lineTo(3.5f, 6.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) - close() - } - } - return _folderZip!! - } - -private var _folderZip: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FontDecrease.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FontDecrease.kt deleted file mode 100644 index fdd434bd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FontDecrease.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FontDecrease: ImageVector - get() { - if (_fontDecrease != null) { - return _fontDecrease!! - } - _fontDecrease = fluentIcon(name = "Regular.FontDecrease") { - fluentPath { - moveTo(16.25f, 2.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, 1.1f) - lineTo(18.0f, 5.8f) - curveToRelative(0.28f, 0.26f, 0.72f, 0.26f, 1.0f, 0.0f) - lineToRelative(2.75f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.0f, -1.1f) - lineTo(18.5f, 4.24f) - lineTo(16.25f, 2.2f) - close() - moveTo(12.0f, 4.0f) - curveToRelative(0.3f, 0.0f, 0.58f, 0.19f, 0.7f, 0.47f) - lineToRelative(5.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.4f, 0.56f) - lineTo(15.25f, 15.0f) - horizontalLineToRelative(-6.5f) - lineToRelative(-1.8f, 4.53f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.4f, -0.56f) - lineToRelative(5.75f, -14.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 12.0f, 4.0f) - close() - moveTo(12.0f, 6.78f) - lineTo(9.34f, 13.5f) - horizontalLineToRelative(5.32f) - lineTo(12.0f, 6.78f) - close() - } - } - return _fontDecrease!! - } - -private var _fontDecrease: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FontIncrease.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FontIncrease.kt deleted file mode 100644 index fb6cbeab..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FontIncrease.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FontIncrease: ImageVector - get() { - if (_fontIncrease != null) { - return _fontIncrease!! - } - _fontIncrease = fluentIcon(name = "Regular.FontIncrease") { - fluentPath { - moveTo(15.2f, 5.75f) - curveToRelative(0.27f, 0.31f, 0.75f, 0.33f, 1.05f, 0.05f) - lineToRelative(2.25f, -2.04f) - lineToRelative(2.25f, 2.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.0f, -1.1f) - lineTo(19.0f, 2.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, 0.0f) - lineToRelative(-2.75f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.05f, 1.05f) - close() - moveTo(12.0f, 4.0f) - curveToRelative(0.3f, 0.0f, 0.58f, 0.19f, 0.7f, 0.47f) - lineToRelative(5.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.4f, 0.56f) - lineTo(15.25f, 15.0f) - horizontalLineToRelative(-6.5f) - lineToRelative(-1.8f, 4.53f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.4f, -0.56f) - lineToRelative(5.75f, -14.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 12.0f, 4.0f) - close() - moveTo(9.34f, 13.5f) - horizontalLineToRelative(5.32f) - lineTo(12.0f, 6.78f) - lineTo(9.34f, 13.5f) - close() - } - } - return _fontIncrease!! - } - -private var _fontIncrease: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FontSpaceTrackingIn.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FontSpaceTrackingIn.kt deleted file mode 100644 index a2e5b5a5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FontSpaceTrackingIn.kt +++ /dev/null @@ -1,99 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FontSpaceTrackingIn: ImageVector - get() { - if (_fontSpaceTrackingIn != null) { - return _fontSpaceTrackingIn!! - } - _fontSpaceTrackingIn = fluentIcon(name = "Regular.FontSpaceTrackingIn") { - fluentPath { - moveToRelative(8.45f, 16.15f) - lineToRelative(0.08f, 0.07f) - lineToRelative(2.25f, 2.25f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-2.25f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(0.97f, -0.97f) - lineTo(3.75f, 19.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(4.79f) - lineToRelative(-0.97f, -0.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - close() - moveTo(15.55f, 16.15f) - curveToRelative(0.26f, -0.2f, 0.62f, -0.2f, 0.89f, -0.01f) - lineToRelative(0.09f, 0.08f) - lineToRelative(0.07f, 0.08f) - curveToRelative(0.2f, 0.26f, 0.2f, 0.62f, 0.01f, 0.89f) - lineToRelative(-0.08f, 0.09f) - lineToRelative(-0.97f, 0.97f) - horizontalLineToRelative(4.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-4.79f) - lineToRelative(0.97f, 0.97f) - lineToRelative(0.07f, 0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.05f, 1.05f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-2.25f, -2.25f) - lineToRelative(-0.07f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.01f, -0.89f) - lineToRelative(0.08f, -0.09f) - lineToRelative(2.25f, -2.25f) - lineToRelative(0.08f, -0.07f) - close() - moveTo(8.84f, 2.28f) - lineToRelative(0.06f, 0.1f) - lineToRelative(0.05f, 0.1f) - lineToRelative(4.5f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.64f) - lineToRelative(-0.05f, -0.1f) - lineToRelative(-1.23f, -3.15f) - lineTo(5.68f, 11.37f) - lineToRelative(-1.23f, 3.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.88f, 0.46f) - lineToRelative(-0.1f, -0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.45f, -0.88f) - lineToRelative(0.03f, -0.1f) - lineToRelative(4.5f, -11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.29f, -0.2f) - close() - moveTo(19.6f, 2.38f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.38f, 0.55f) - lineToRelative(-0.03f, 0.1f) - lineToRelative(-4.5f, 11.5f) - lineToRelative(-0.05f, 0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.3f, 0.0f) - lineToRelative(-0.05f, -0.1f) - lineToRelative(-4.5f, -11.5f) - lineToRelative(-0.03f, -0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.36f, -0.83f) - lineToRelative(0.1f, -0.05f) - lineToRelative(0.1f, -0.03f) - curveToRelative(0.32f, -0.08f, 0.65f, 0.07f, 0.82f, 0.36f) - lineToRelative(0.05f, 0.1f) - lineToRelative(3.8f, 9.71f) - lineToRelative(3.8f, -9.71f) - lineToRelative(0.05f, -0.1f) - close() - moveTo(8.25f, 4.81f) - lineTo(6.27f, 9.87f) - horizontalLineToRelative(3.96f) - lineTo(8.25f, 4.8f) - close() - } - } - return _fontSpaceTrackingIn!! - } - -private var _fontSpaceTrackingIn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FontSpaceTrackingOut.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FontSpaceTrackingOut.kt deleted file mode 100644 index fe48ccc7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FontSpaceTrackingOut.kt +++ /dev/null @@ -1,93 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FontSpaceTrackingOut: ImageVector - get() { - if (_fontSpaceTrackingOut != null) { - return _fontSpaceTrackingOut!! - } - _fontSpaceTrackingOut = fluentIcon(name = "Regular.FontSpaceTrackingOut") { - fluentPath { - moveToRelative(19.45f, 16.15f) - lineToRelative(0.08f, 0.07f) - lineToRelative(2.25f, 2.25f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-2.25f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(0.97f, -0.97f) - lineTo(4.56f, 19.75f) - lineToRelative(0.97f, 0.97f) - lineToRelative(0.07f, 0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.05f, 1.05f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-2.25f, -2.25f) - lineToRelative(-0.07f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.01f, -0.89f) - lineToRelative(0.08f, -0.09f) - lineToRelative(2.25f, -2.25f) - lineToRelative(0.08f, -0.07f) - curveToRelative(0.26f, -0.2f, 0.62f, -0.2f, 0.89f, -0.01f) - lineToRelative(0.1f, 0.08f) - lineToRelative(0.06f, 0.08f) - curveToRelative(0.2f, 0.26f, 0.2f, 0.62f, 0.01f, 0.89f) - lineToRelative(-0.08f, 0.09f) - lineToRelative(-0.97f, 0.97f) - horizontalLineToRelative(14.88f) - lineToRelative(-0.97f, -0.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - close() - moveTo(7.84f, 2.28f) - lineToRelative(0.06f, 0.1f) - lineToRelative(0.05f, 0.1f) - lineToRelative(4.5f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.64f) - lineToRelative(-0.05f, -0.1f) - lineToRelative(-1.23f, -3.15f) - lineTo(4.68f, 11.37f) - lineToRelative(-1.23f, 3.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.88f, 0.46f) - lineToRelative(-0.1f, -0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.45f, -0.88f) - lineToRelative(0.03f, -0.1f) - lineToRelative(4.5f, -11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.29f, -0.2f) - close() - moveTo(20.6f, 2.38f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.38f, 0.55f) - lineToRelative(-0.03f, 0.1f) - lineToRelative(-4.5f, 11.5f) - lineToRelative(-0.05f, 0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.3f, 0.0f) - lineToRelative(-0.05f, -0.1f) - lineToRelative(-4.5f, -11.5f) - lineToRelative(-0.03f, -0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.36f, -0.83f) - lineToRelative(0.1f, -0.05f) - lineToRelative(0.1f, -0.03f) - curveToRelative(0.32f, -0.08f, 0.65f, 0.07f, 0.82f, 0.36f) - lineToRelative(0.05f, 0.1f) - lineToRelative(3.8f, 9.71f) - lineToRelative(3.8f, -9.71f) - lineToRelative(0.05f, -0.1f) - close() - moveTo(7.25f, 4.81f) - lineTo(5.27f, 9.87f) - horizontalLineToRelative(3.96f) - lineTo(7.25f, 4.8f) - close() - } - } - return _fontSpaceTrackingOut!! - } - -private var _fontSpaceTrackingOut: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Food.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Food.kt deleted file mode 100644 index 4f2249f3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Food.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Food: ImageVector - get() { - if (_food != null) { - return _food!! - } - _food = fluentIcon(name = "Regular.Food") { - fluentPath { - moveTo(18.25f, 3.25f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineTo(19.0f, 4.0f) - verticalLineToRelative(16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(17.5f, 15.0f) - horizontalLineToRelative(-2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - lineTo(14.5f, 7.0f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 3.75f, -3.75f) - close() - moveTo(12.25f, 3.25f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineTo(13.0f, 4.0f) - verticalLineToRelative(4.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -3.25f, 3.93f) - lineTo(9.75f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-8.17f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -3.24f, -3.72f) - lineTo(5.0f, 8.0f) - lineTo(5.0f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - lineTo(6.5f, 8.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 1.75f, 2.39f) - lineTo(8.25f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - lineTo(9.75f, 10.39f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 1.74f, -2.2f) - lineTo(11.5f, 8.0f) - lineTo(11.5f, 4.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(17.5f, 13.5f) - lineTo(17.5f, 4.88f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 16.0f, 6.83f) - verticalLineToRelative(6.67f) - horizontalLineToRelative(1.5f) - lineTo(17.5f, 4.88f) - verticalLineToRelative(8.62f) - close() - } - } - return _food!! - } - -private var _food: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FoodApple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FoodApple.kt deleted file mode 100644 index 47d63321..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FoodApple.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FoodApple: ImageVector - get() { - if (_foodApple != null) { - return _foodApple!! - } - _foodApple = fluentIcon(name = "Regular.FoodApple") { - fluentPath { - moveTo(8.4f, 11.23f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.3f, -1.47f) - arcToRelative(2.7f, 2.7f, 0.0f, false, false, -1.95f, 1.66f) - arcToRelative(4.74f, 4.74f, 0.0f, false, false, -0.13f, 3.01f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.46f, -0.36f) - arcTo(3.27f, 3.27f, 0.0f, false, true, 7.53f, 12.0f) - curveToRelative(0.2f, -0.46f, 0.52f, -0.7f, 0.87f, -0.78f) - close() - moveTo(5.47f, 3.42f) - arcTo(5.18f, 5.18f, 0.0f, false, false, 6.9f, 7.3f) - arcToRelative(5.12f, 5.12f, 0.0f, false, false, -3.66f, 4.22f) - curveToRelative(-0.33f, 2.35f, 0.15f, 4.75f, 1.37f, 6.8f) - lineToRelative(0.35f, 0.58f) - lineToRelative(0.04f, 0.07f) - lineToRelative(1.42f, 1.9f) - arcToRelative(3.46f, 3.46f, 0.0f, false, false, 5.28f, 0.34f) - arcToRelative(0.44f, 0.44f, 0.0f, false, true, 0.62f, 0.0f) - arcToRelative(3.46f, 3.46f, 0.0f, false, false, 5.28f, -0.34f) - lineToRelative(1.42f, -1.9f) - arcToRelative(0.74f, 0.74f, 0.0f, false, false, 0.04f, -0.07f) - lineToRelative(0.35f, -0.59f) - arcToRelative(10.46f, 10.46f, 0.0f, false, false, 1.37f, -6.8f) - arcToRelative(5.12f, 5.12f, 0.0f, false, false, -6.1f, -4.3f) - lineToRelative(-1.9f, 0.4f) - horizontalLineToRelative(-0.01f) - arcToRelative(8.7f, 8.7f, 0.0f, false, true, 0.39f, -2.34f) - curveToRelative(0.29f, -0.87f, 0.7f, -1.4f, 1.14f, -1.58f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.58f, -1.38f) - curveToRelative(-1.05f, 0.44f, -1.65f, 1.48f, -1.98f, 2.48f) - lineToRelative(-0.05f, 0.15f) - arcToRelative(5.19f, 5.19f, 0.0f, false, false, -4.92f, -2.8f) - curveToRelative(-0.7f, 0.04f, -1.25f, 0.59f, -1.29f, 1.28f) - close() - moveTo(6.97f, 3.62f) - arcToRelative(3.68f, 3.68f, 0.0f, false, true, 3.79f, 3.8f) - curveToRelative(-0.19f, 0.0f, -0.37f, 0.0f, -0.55f, -0.03f) - lineToRelative(-0.61f, -0.12f) - arcToRelative(3.67f, 3.67f, 0.0f, false, true, -2.64f, -3.64f) - close() - moveTo(9.03f, 8.68f) - lineTo(9.23f, 8.72f) - curveToRelative(0.25f, 0.07f, 0.49f, 0.12f, 0.73f, 0.15f) - lineToRelative(0.97f, 0.2f) - curveToRelative(0.7f, 0.15f, 1.43f, 0.15f, 2.14f, 0.0f) - lineToRelative(1.9f, -0.39f) - arcToRelative(3.62f, 3.62f, 0.0f, false, true, 4.32f, 3.04f) - arcToRelative(8.96f, 8.96f, 0.0f, false, true, -1.18f, 5.83f) - lineToRelative(-0.33f, 0.55f) - lineToRelative(-1.4f, 1.88f) - arcToRelative(1.96f, 1.96f, 0.0f, false, true, -2.98f, 0.19f) - curveToRelative(-0.77f, -0.8f, -2.03f, -0.8f, -2.8f, 0.0f) - curveToRelative(-0.84f, 0.87f, -2.26f, 0.78f, -2.99f, -0.2f) - lineTo(6.22f, 18.1f) - lineToRelative(-0.33f, -0.55f) - arcToRelative(8.96f, 8.96f, 0.0f, false, true, -1.18f, -5.83f) - arcToRelative(3.62f, 3.62f, 0.0f, false, true, 4.32f, -3.04f) - close() - } - } - return _foodApple!! - } - -private var _foodApple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FoodCake.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FoodCake.kt deleted file mode 100644 index 1a75840d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FoodCake.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FoodCake: ImageVector - get() { - if (_foodCake != null) { - return _foodCake!! - } - _foodCake = fluentIcon(name = "Regular.FoodCake") { - fluentPath { - moveTo(12.0f, 1.0f) - curveToRelative(-0.95f, 0.0f, -1.59f, 0.68f, -1.94f, 1.28f) - arcToRelative(4.15f, 4.15f, 0.0f, false, false, -0.56f, 1.97f) - curveToRelative(0.0f, 0.5f, 0.06f, 1.17f, 0.43f, 1.75f) - curveToRelative(0.41f, 0.63f, 1.1f, 1.0f, 2.07f, 1.0f) - curveToRelative(0.96f, 0.0f, 1.66f, -0.37f, 2.07f, -1.0f) - curveToRelative(0.37f, -0.58f, 0.43f, -1.26f, 0.43f, -1.75f) - curveToRelative(0.0f, -0.6f, -0.2f, -1.35f, -0.56f, -1.97f) - curveTo(13.59f, 1.68f, 12.95f, 1.0f, 12.0f, 1.0f) - close() - moveTo(11.0f, 4.25f) - curveToRelative(0.0f, -0.3f, 0.12f, -0.8f, 0.36f, -1.21f) - curveToRelative(0.25f, -0.42f, 0.49f, -0.54f, 0.64f, -0.54f) - curveToRelative(0.15f, 0.0f, 0.4f, 0.12f, 0.64f, 0.54f) - curveToRelative(0.24f, 0.4f, 0.36f, 0.9f, 0.36f, 1.21f) - curveToRelative(0.0f, 0.41f, -0.06f, 0.73f, -0.2f, 0.93f) - curveToRelative(-0.08f, 0.14f, -0.26f, 0.32f, -0.8f, 0.32f) - reflectiveCurveToRelative(-0.72f, -0.18f, -0.8f, -0.32f) - curveToRelative(-0.14f, -0.2f, -0.2f, -0.52f, -0.2f, -0.93f) - close() - moveTo(20.5f, 10.25f) - verticalLineToRelative(8.25f) - horizontalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(2.75f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.75f) - verticalLineToRelative(-8.25f) - curveTo(3.5f, 9.01f, 4.5f, 8.0f, 5.75f, 8.0f) - horizontalLineToRelative(12.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - close() - moveTo(5.0f, 10.25f) - verticalLineToRelative(2.1f) - lineToRelative(2.45f, 1.57f) - curveToRelative(0.41f, 0.27f, 0.94f, 0.27f, 1.35f, 0.0f) - lineToRelative(1.75f, -1.13f) - curveToRelative(0.88f, -0.56f, 2.0f, -0.58f, 2.9f, -0.05f) - lineToRelative(2.0f, 1.2f) - curveToRelative(0.43f, 0.25f, 0.96f, 0.23f, 1.37f, -0.05f) - lineTo(19.0f, 12.36f) - verticalLineToRelative(-2.11f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(5.75f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(17.68f, 15.12f) - curveToRelative(-0.89f, 0.62f, -2.06f, 0.67f, -2.99f, 0.11f) - lineToRelative(-2.0f, -1.2f) - curveToRelative(-0.42f, -0.24f, -0.93f, -0.23f, -1.33f, 0.02f) - lineToRelative(-1.74f, 1.13f) - curveToRelative(-0.91f, 0.59f, -2.08f, 0.59f, -2.99f, 0.0f) - lineTo(5.0f, 14.13f) - verticalLineToRelative(4.37f) - horizontalLineToRelative(14.0f) - verticalLineToRelative(-4.3f) - lineToRelative(-1.32f, 0.92f) - close() - } - } - return _foodCake!! - } - -private var _foodCake: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FoodCarrot.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FoodCarrot.kt deleted file mode 100644 index 799343aa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FoodCarrot.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FoodCarrot: ImageVector - get() { - if (_foodCarrot != null) { - return _foodCarrot!! - } - _foodCarrot = fluentIcon(name = "Regular.FoodCarrot") { - fluentPath { - moveTo(17.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(4.01f) - arcToRelative(4.56f, 4.56f, 0.0f, false, false, -6.3f, 1.22f) - lineToRelative(-7.34f, 10.8f) - curveToRelative(-0.56f, 0.82f, -0.45f, 1.92f, 0.25f, 2.61f) - curveToRelative(0.71f, 0.71f, 1.84f, 0.8f, 2.67f, 0.23f) - lineToRelative(10.79f, -7.46f) - arcTo(4.45f, 4.45f, 0.0f, false, false, 17.24f, 8.0f) - horizontalLineToRelative(4.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.69f) - lineToRelative(3.22f, -3.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineTo(17.5f, 5.44f) - lineTo(17.5f, 2.75f) - close() - moveTo(10.96f, 8.81f) - arcToRelative(3.04f, 3.04f, 0.0f, false, true, 4.65f, -0.44f) - arcToRelative(2.97f, 2.97f, 0.0f, false, true, -0.4f, 4.56f) - lineTo(4.4f, 20.4f) - arcToRelative(0.58f, 0.58f, 0.0f, false, true, -0.73f, -0.06f) - arcToRelative(0.56f, 0.56f, 0.0f, false, true, -0.07f, -0.72f) - lineToRelative(7.35f, -10.8f) - close() - } - } - return _foodCarrot!! - } - -private var _foodCarrot: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FoodChickenLeg.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FoodChickenLeg.kt deleted file mode 100644 index d0e204bf..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FoodChickenLeg.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FoodChickenLeg: ImageVector - get() { - if (_foodChickenLeg != null) { - return _foodChickenLeg!! - } - _foodChickenLeg = fluentIcon(name = "Regular.FoodChickenLeg") { - fluentPath { - moveTo(22.0f, 8.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, -11.9f, -1.1f) - arcToRelative(15.12f, 15.12f, 0.0f, false, true, -1.36f, 3.3f) - lineToRelative(-2.52f, 2.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.28f, 1.24f) - lineTo(4.46f, 16.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -1.42f, 4.53f) - curveToRelative(0.17f, 0.12f, 0.31f, 0.26f, 0.43f, 0.43f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 8.0f, 19.53f) - lineToRelative(2.04f, -2.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.24f, 0.29f) - lineToRelative(2.52f, -2.52f) - curveToRelative(0.48f, -0.29f, 1.48f, -0.8f, 3.32f, -1.36f) - arcTo(6.0f, 6.0f, 0.0f, false, false, 22.0f, 8.0f) - close() - moveTo(10.0f, 15.41f) - lineTo(6.88f, 18.53f) - curveToRelative(-0.29f, 0.3f, -0.38f, 0.67f, -0.38f, 0.97f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.81f, 0.58f) - curveToRelative(-0.21f, -0.3f, -0.48f, -0.56f, -0.77f, -0.77f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.58f, -1.81f) - curveToRelative(0.3f, 0.0f, 0.67f, -0.09f, 0.96f, -0.38f) - lineTo(8.58f, 14.0f) - lineTo(10.0f, 14.0f) - verticalLineToRelative(1.41f) - close() - moveTo(16.0f, 3.5f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 0.72f, 8.95f) - arcToRelative(16.28f, 16.28f, 0.0f, false, false, -3.91f, 1.68f) - lineToRelative(-1.31f, 1.3f) - verticalLineToRelative(-2.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(8.56f, 12.5f) - lineToRelative(1.3f, -1.3f) - arcToRelative(16.12f, 16.12f, 0.0f, false, false, 1.71f, -4.0f) - arcTo(4.5f, 4.5f, 0.0f, false, true, 16.0f, 3.5f) - close() - } - } - return _foodChickenLeg!! - } - -private var _foodChickenLeg: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FoodEgg.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FoodEgg.kt deleted file mode 100644 index f059346f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FoodEgg.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FoodEgg: ImageVector - get() { - if (_foodEgg != null) { - return _foodEgg!! - } - _foodEgg = fluentIcon(name = "Regular.FoodEgg") { - fluentPath { - moveTo(11.5f, 12.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - curveTo(11.01f, 10.0f, 10.0f, 11.0f, 10.0f, 12.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - close() - moveTo(7.0f, 12.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, -11.0f, 0.0f) - close() - moveTo(12.5f, 8.5f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) - close() - moveTo(6.21f, 6.5f) - arcTo(8.38f, 8.38f, 0.0f, false, true, 13.5f, 2.0f) - curveToRelative(4.76f, 0.0f, 8.5f, 4.22f, 8.5f, 9.28f) - curveToRelative(0.0f, 0.56f, -0.05f, 1.12f, -0.14f, 1.66f) - curveToRelative(-0.05f, 0.34f, -0.04f, 0.7f, 0.03f, 1.08f) - arcToRelative(6.75f, 6.75f, 0.0f, false, true, -9.62f, 7.3f) - arcToRelative(4.4f, 4.4f, 0.0f, false, false, -2.57f, -0.4f) - curveToRelative(-0.3f, 0.06f, -0.63f, 0.08f, -0.95f, 0.08f) - curveTo(4.97f, 21.0f, 2.0f, 17.7f, 2.0f, 13.75f) - arcToRelative(7.38f, 7.38f, 0.0f, false, true, 3.16f, -6.14f) - curveToRelative(0.45f, -0.3f, 0.81f, -0.68f, 1.05f, -1.12f) - close() - moveTo(13.5f, 3.5f) - arcToRelative(6.88f, 6.88f, 0.0f, false, false, -5.97f, 3.72f) - arcTo(4.8f, 4.8f, 0.0f, false, true, 6.0f, 8.85f) - arcToRelative(5.88f, 5.88f, 0.0f, false, false, -2.5f, 4.9f) - curveToRelative(0.0f, 3.23f, 2.4f, 5.75f, 5.25f, 5.75f) - curveToRelative(0.25f, 0.0f, 0.5f, -0.02f, 0.73f, -0.05f) - arcToRelative(5.9f, 5.9f, 0.0f, false, true, 3.45f, 0.51f) - arcToRelative(5.25f, 5.25f, 0.0f, false, false, 7.48f, -5.67f) - arcToRelative(4.64f, 4.64f, 0.0f, false, true, -0.03f, -1.6f) - curveToRelative(0.08f, -0.46f, 0.12f, -0.93f, 0.12f, -1.41f) - curveToRelative(0.0f, -4.37f, -3.2f, -7.78f, -7.0f, -7.78f) - close() - } - } - return _foodEgg!! - } - -private var _foodEgg: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FoodFish.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FoodFish.kt deleted file mode 100644 index ccf8c0c8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FoodFish.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FoodFish: ImageVector - get() { - if (_foodFish != null) { - return _foodFish!! - } - _foodFish = fluentIcon(name = "Regular.FoodFish") { - fluentPath { - moveTo(9.51f, 11.72f) - curveToRelative(0.0f, -1.13f, 0.1f, -2.4f, 0.4f, -3.58f) - arcToRelative(6.3f, 6.3f, 0.0f, false, true, 1.5f, -2.98f) - arcToRelative(5.93f, 5.93f, 0.0f, false, true, 3.26f, -1.5f) - arcToRelative(14.2f, 14.2f, 0.0f, false, true, 3.69f, -0.08f) - curveToRelative(1.1f, 0.11f, 1.95f, 0.96f, 2.06f, 2.07f) - curveToRelative(0.1f, 1.09f, 0.14f, 2.42f, -0.08f, 3.69f) - arcToRelative(5.93f, 5.93f, 0.0f, false, true, -1.5f, 3.25f) - arcToRelative(6.3f, 6.3f, 0.0f, false, true, -2.97f, 1.52f) - curveToRelative(-1.19f, 0.3f, -2.46f, 0.38f, -3.6f, 0.38f) - curveToRelative(-1.0f, 0.0f, -1.81f, 0.82f, -1.82f, 1.82f) - curveToRelative(0.0f, 1.7f, -0.22f, 3.66f, -0.93f, 5.17f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.08f, -0.14f) - curveToRelative(-0.2f, -0.82f, -0.46f, -1.8f, -0.77f, -2.66f) - curveToRelative(-0.15f, -0.44f, -0.32f, -0.86f, -0.5f, -1.22f) - reflectiveCurveToRelative(-0.4f, -0.71f, -0.66f, -0.97f) - arcToRelative(3.76f, 3.76f, 0.0f, false, false, -0.97f, -0.65f) - curveToRelative(-0.36f, -0.19f, -0.78f, -0.36f, -1.22f, -0.5f) - curveToRelative(-0.87f, -0.32f, -1.85f, -0.58f, -2.66f, -0.78f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.14f, -0.08f) - curveToRelative(1.51f, -0.71f, 3.48f, -0.92f, 5.18f, -0.93f) - curveToRelative(1.0f, 0.0f, 1.82f, -0.82f, 1.81f, -1.83f) - close() - moveTo(10.36f, 4.1f) - curveToRelative(-1.0f, 1.0f, -1.58f, 2.34f, -1.91f, 3.68f) - arcTo(16.66f, 16.66f, 0.0f, false, false, 8.0f, 11.73f) - curveToRelative(0.0f, 0.17f, -0.14f, 0.32f, -0.32f, 0.32f) - curveToRelative(-1.77f, 0.0f, -4.01f, 0.22f, -5.83f, 1.09f) - curveToRelative(-0.68f, 0.32f, -0.97f, 1.0f, -0.82f, 1.63f) - curveToRelative(0.13f, 0.6f, 0.61f, 1.09f, 1.26f, 1.25f) - curveToRelative(0.8f, 0.19f, 1.72f, 0.44f, 2.52f, 0.72f) - curveToRelative(0.4f, 0.15f, 0.76f, 0.3f, 1.05f, 0.44f) - curveToRelative(0.3f, 0.15f, 0.49f, 0.28f, 0.58f, 0.37f) - curveToRelative(0.1f, 0.1f, 0.22f, 0.28f, 0.37f, 0.58f) - curveToRelative(0.15f, 0.29f, 0.3f, 0.65f, 0.44f, 1.05f) - curveToRelative(0.28f, 0.8f, 0.53f, 1.72f, 0.72f, 2.52f) - curveToRelative(0.16f, 0.65f, 0.65f, 1.13f, 1.25f, 1.26f) - curveToRelative(0.64f, 0.14f, 1.3f, -0.14f, 1.63f, -0.82f) - curveToRelative(0.87f, -1.82f, 1.08f, -4.06f, 1.1f, -5.82f) - curveToRelative(0.0f, -0.18f, 0.14f, -0.33f, 0.32f, -0.33f) - curveToRelative(1.2f, 0.0f, 2.6f, -0.1f, 3.95f, -0.43f) - arcToRelative(7.78f, 7.78f, 0.0f, false, false, 3.67f, -1.91f) - arcToRelative(7.4f, 7.4f, 0.0f, false, false, 1.92f, -4.06f) - curveToRelative(0.25f, -1.45f, 0.2f, -2.92f, 0.1f, -4.09f) - arcToRelative(3.77f, 3.77f, 0.0f, false, false, -3.41f, -3.4f) - arcToRelative(15.68f, 15.68f, 0.0f, false, false, -4.1f, 0.09f) - arcToRelative(7.4f, 7.4f, 0.0f, false, false, -4.05f, 1.91f) - close() - moveTo(16.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - } - } - return _foodFish!! - } - -private var _foodFish: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FoodGrains.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FoodGrains.kt deleted file mode 100644 index 0d9d2620..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FoodGrains.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FoodGrains: ImageVector - get() { - if (_foodGrains != null) { - return _foodGrains!! - } - _foodGrains = fluentIcon(name = "Regular.FoodGrains") { - fluentPath { - moveTo(11.39f, 2.29f) - arcToRelative(7.23f, 7.23f, 0.0f, false, false, -2.37f, 6.78f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, -5.13f, -0.98f) - arcToRelative(0.96f, 0.96f, 0.0f, false, false, -0.87f, 1.04f) - arcToRelative(8.97f, 8.97f, 0.0f, false, false, 2.06f, 4.78f) - curveToRelative(-0.41f, 0.0f, -0.83f, 0.02f, -1.25f, 0.07f) - curveToRelative(-0.5f, 0.07f, -0.85f, 0.5f, -0.81f, 1.0f) - arcTo(7.6f, 7.6f, 0.0f, false, false, 10.59f, 22.0f) - lineTo(13.4f, 22.0f) - arcToRelative(7.6f, 7.6f, 0.0f, false, false, 7.57f, -7.01f) - arcToRelative(0.94f, 0.94f, 0.0f, false, false, -0.81f, -1.0f) - arcToRelative(8.8f, 8.8f, 0.0f, false, false, -1.23f, -0.08f) - arcTo(8.97f, 8.97f, 0.0f, false, false, 21.0f, 9.13f) - arcToRelative(0.96f, 0.96f, 0.0f, false, false, -0.88f, -1.04f) - arcToRelative(8.55f, 8.55f, 0.0f, false, false, -5.14f, 0.98f) - arcTo(7.23f, 7.23f, 0.0f, false, false, 12.6f, 2.3f) - arcToRelative(0.93f, 0.93f, 0.0f, false, false, -1.22f, 0.0f) - close() - moveTo(12.0f, 11.73f) - arcToRelative(5.74f, 5.74f, 0.0f, false, true, 0.0f, -7.96f) - arcToRelative(5.74f, 5.74f, 0.0f, false, true, 0.0f, 7.96f) - close() - moveTo(12.0f, 17.33f) - arcToRelative(9.02f, 9.02f, 0.0f, false, false, -4.23f, -2.97f) - arcToRelative(7.75f, 7.75f, 0.0f, false, true, -3.18f, -4.8f) - arcToRelative(6.43f, 6.43f, 0.0f, false, true, 4.67f, 1.51f) - curveToRelative(1.03f, 0.87f, 1.48f, 1.93f, 1.82f, 2.72f) - lineToRelative(0.25f, 0.55f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.34f, 0.0f) - lineToRelative(0.25f, -0.55f) - arcToRelative(6.8f, 6.8f, 0.0f, false, true, 1.81f, -2.72f) - arcToRelative(6.46f, 6.46f, 0.0f, false, true, 4.7f, -1.52f) - arcToRelative(7.75f, 7.75f, 0.0f, false, true, -3.17f, 4.8f) - arcTo(9.02f, 9.02f, 0.0f, false, false, 12.0f, 17.33f) - close() - moveTo(12.64f, 19.04f) - curveToRelative(1.4f, -2.33f, 4.0f, -3.78f, 6.78f, -3.62f) - arcToRelative(6.1f, 6.1f, 0.0f, false, true, -6.01f, 5.08f) - lineTo(10.59f, 20.5f) - arcToRelative(6.1f, 6.1f, 0.0f, false, true, -6.01f, -5.08f) - arcToRelative(7.45f, 7.45f, 0.0f, false, true, 6.78f, 3.62f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.28f, 0.0f) - close() - } - } - return _foodGrains!! - } - -private var _foodGrains: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FoodPizza.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FoodPizza.kt deleted file mode 100644 index 1707c647..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FoodPizza.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FoodPizza: ImageVector - get() { - if (_foodPizza != null) { - return _foodPizza!! - } - _foodPizza = fluentIcon(name = "Regular.FoodPizza") { - fluentPath { - moveTo(9.0f, 10.99f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(14.0f, 12.99f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(9.0f, 16.99f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(5.0f, 4.66f) - arcToRelative(2.6f, 2.6f, 0.0f, false, true, 2.82f, -2.65f) - arcToRelative(20.78f, 20.78f, 0.0f, false, true, 13.44f, 6.83f) - arcToRelative(2.6f, 2.6f, 0.0f, false, true, -0.48f, 3.85f) - lineToRelative(-5.28f, 3.83f) - lineTo(15.5f, 18.24f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -2.06f, 1.72f) - curveToRelative(-0.2f, 0.83f, -0.93f, 1.53f, -1.94f, 1.53f) - curveToRelative(-0.7f, 0.0f, -1.26f, -0.34f, -1.61f, -0.82f) - lineToRelative(-1.33f, 0.96f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 5.0f, 19.81f) - lineTo(5.0f, 4.66f) - close() - moveTo(7.67f, 3.51f) - curveToRelative(-0.6f, -0.06f, -1.17f, 0.44f, -1.17f, 1.15f) - verticalLineToRelative(0.52f) - curveToRelative(5.25f, 0.22f, 9.91f, 2.75f, 12.98f, 6.6f) - lineToRelative(0.42f, -0.3f) - curveToRelative(0.58f, -0.43f, 0.65f, -1.18f, 0.25f, -1.64f) - arcTo(19.28f, 19.28f, 0.0f, false, false, 7.66f, 3.51f) - close() - moveTo(6.5f, 19.8f) - curveToRelative(0.0f, 0.6f, 0.69f, 0.96f, 1.19f, 0.6f) - curveToRelative(0.72f, -0.52f, 1.5f, -1.07f, 2.12f, -1.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.2f, 0.6f) - curveToRelative(0.0f, 0.28f, 0.2f, 0.5f, 0.49f, 0.5f) - curveToRelative(0.3f, 0.0f, 0.5f, -0.22f, 0.5f, -0.5f) - verticalLineToRelative(-1.24f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - arcToRelative(0.25f, 0.25f, 0.0f, true, false, 0.5f, 0.0f) - verticalLineToRelative(-2.12f) - curveToRelative(0.0f, -0.23f, 0.12f, -0.45f, 0.31f, -0.6f) - lineToRelative(3.96f, -2.86f) - arcTo(16.04f, 16.04f, 0.0f, false, false, 6.5f, 6.68f) - verticalLineToRelative(13.13f) - close() - } - } - return _foodPizza!! - } - -private var _foodPizza: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FoodToast.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FoodToast.kt deleted file mode 100644 index 0c08c718..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FoodToast.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FoodToast: ImageVector - get() { - if (_foodToast != null) { - return _foodToast!! - } - _foodToast = fluentIcon(name = "Regular.FoodToast") { - fluentPath { - moveTo(8.25f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-4.5f) - close() - moveTo(9.0f, 13.5f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(3.0f) - horizontalLineTo(9.0f) - close() - moveTo(2.0f, 7.75f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 6.75f, 3.0f) - horizontalLineToRelative(10.5f) - arcToRelative(4.75f, 4.75f, 0.0f, false, true, 3.5f, 7.96f) - verticalLineToRelative(7.79f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-13.0f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-7.79f) - arcTo(4.74f, 4.74f, 0.0f, false, true, 2.0f, 7.75f) - close() - moveTo(6.75f, 4.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -2.23f, 5.61f) - curveToRelative(0.15f, 0.14f, 0.23f, 0.34f, 0.23f, 0.54f) - verticalLineToRelative(8.1f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(10.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-7.7f) - curveToRelative(0.0f, -0.24f, 0.12f, -0.47f, 0.33f, -0.61f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -1.83f, -5.94f) - horizontalLineToRelative(-8.0f) - close() - moveTo(19.5f, 7.75f) - curveToRelative(0.0f, 1.49f, -0.68f, 2.81f, -1.75f, 3.68f) - verticalLineToRelative(7.32f) - curveToRelative(0.0f, 0.26f, -0.05f, 0.52f, -0.13f, 0.75f) - horizontalLineToRelative(0.88f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-8.1f) - curveToRelative(0.0f, -0.2f, 0.08f, -0.4f, 0.23f, -0.54f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, -1.08f, -5.4f) - curveToRelative(0.69f, 0.82f, 1.1f, 1.88f, 1.1f, 3.04f) - close() - } - } - return _foodToast!! - } - -private var _foodToast: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Form.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Form.kt deleted file mode 100644 index c77ca76a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Form.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Form: ImageVector - get() { - if (_form != null) { - return _form!! - } - _form = fluentIcon(name = "Regular.Form") { - fluentPath { - moveTo(6.0f, 10.75f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) - close() - moveTo(8.25f, 10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(8.25f, 14.0f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, 4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, -4.5f) - close() - moveTo(7.5f, 16.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(12.0f, 10.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(12.75f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - close() - moveTo(6.0f, 6.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(6.75f, 7.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 6.0f, 6.75f) - close() - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 6.25f) - close() - } - } - return _form!! - } - -private var _form: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FormMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FormMultiple.kt deleted file mode 100644 index 0577eb42..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FormMultiple.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FormMultiple: ImageVector - get() { - if (_formMultiple != null) { - return _formMultiple!! - } - _formMultiple = fluentIcon(name = "Regular.FormMultiple") { - fluentPath { - moveTo(6.0f, 12.25f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) - close() - moveTo(8.25f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - } - fluentPath { - moveTo(11.5f, 12.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - fluentPath { - moveTo(6.0f, 7.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-8.0f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 6.0f, 7.75f) - close() - } - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(9.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-9.0f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-9.0f) - close() - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(9.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(9.0f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 15.25f, 17.0f) - horizontalLineToRelative(-9.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.75f, -1.75f) - verticalLineToRelative(-9.0f) - close() - } - fluentPath { - moveTo(8.75f, 21.0f) - curveToRelative(-1.15f, 0.0f, -2.16f, -0.6f, -2.74f, -1.5f) - horizontalLineToRelative(9.74f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 3.75f, -3.75f) - verticalLineTo(6.01f) - curveToRelative(0.9f, 0.58f, 1.5f, 1.59f, 1.5f, 2.74f) - verticalLineToRelative(7.0f) - curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) - horizontalLineToRelative(-7.0f) - close() - } - } - return _formMultiple!! - } - -private var _formMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FormNew.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FormNew.kt deleted file mode 100644 index 2d525171..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FormNew.kt +++ /dev/null @@ -1,88 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FormNew: ImageVector - get() { - if (_formNew != null) { - return _formNew!! - } - _formNew = fluentIcon(name = "Regular.FormNew") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(5.77f) - curveToRelative(-0.3f, -0.46f, -0.53f, -0.97f, -0.7f, -1.5f) - lineTo(6.24f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.49f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(5.06f) - curveToRelative(0.53f, 0.18f, 1.04f, 0.42f, 1.5f, 0.71f) - lineTo(20.99f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(17.5f, 11.0f) - curveToRelative(0.15f, 0.0f, 0.3f, 0.0f, 0.45f, 0.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.7f, -1.02f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(15.0f, 11.5f) - curveToRelative(0.77f, -0.32f, 1.61f, -0.5f, 2.5f, -0.5f) - close() - moveTo(6.75f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(6.75f, 6.0f) - close() - moveTo(6.0f, 10.75f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) - close() - moveTo(8.25f, 10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(8.25f, 14.0f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, 4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, -4.5f) - close() - moveTo(7.5f, 16.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _formNew!! - } - -private var _formNew: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fps1.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fps1.kt deleted file mode 100644 index 3318f80e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fps1.kt +++ /dev/null @@ -1,120 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Fps1: ImageVector - get() { - if (_fps1 != null) { - return _fps1!! - } - _fps1 = fluentIcon(name = "Regular.Fps1") { - fluentPath { - moveTo(6.0f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.36f, -0.44f) - lineToRelative(-0.02f, 0.02f) - arcToRelative(6.36f, 6.36f, 0.0f, false, true, -0.18f, 0.25f) - curveToRelative(-0.13f, 0.16f, -0.31f, 0.4f, -0.54f, 0.64f) - arcToRelative(7.3f, 7.3f, 0.0f, false, true, -1.54f, 1.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.78f, 1.28f) - curveToRelative(0.48f, -0.29f, 0.95f, -0.7f, 1.36f, -1.1f) - verticalLineToRelative(6.46f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-8.5f) - close() - moveTo(9.49f, 5.39f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 5.13f) - lineTo(8.0f, 5.1f) - arcTo(1.36f, 1.36f, 0.0f, false, true, 8.04f, 5.0f) - lineToRelative(0.08f, -0.26f) - curveToRelative(0.08f, -0.2f, 0.21f, -0.46f, 0.43f, -0.72f) - arcTo(3.04f, 3.04f, 0.0f, false, true, 11.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - curveToRelative(0.0f, 1.02f, -0.36f, 1.78f, -0.9f, 2.36f) - curveToRelative(-0.47f, 0.52f, -1.09f, 0.9f, -1.6f, 1.23f) - lineToRelative(-0.1f, 0.06f) - curveToRelative(-0.58f, 0.36f, -1.04f, 0.67f, -1.37f, 1.06f) - curveToRelative(-0.19f, 0.22f, -0.34f, 0.47f, -0.43f, 0.79f) - horizontalLineToRelative(3.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - curveToRelative(0.0f, -1.07f, 0.35f, -1.88f, 0.88f, -2.5f) - curveToRelative(0.5f, -0.6f, 1.17f, -1.03f, 1.72f, -1.37f) - lineToRelative(0.03f, -0.02f) - curveToRelative(0.58f, -0.36f, 1.03f, -0.65f, 1.36f, -1.0f) - curveToRelative(0.3f, -0.34f, 0.51f, -0.74f, 0.51f, -1.36f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - curveToRelative(-0.78f, 0.0f, -1.13f, 0.28f, -1.3f, 0.48f) - arcToRelative(1.12f, 1.12f, 0.0f, false, false, -0.21f, 0.4f) - close() - moveTo(17.99f, 3.0f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 15.0f, 6.0f) - verticalLineToRelative(4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 6.0f, 0.0f) - lineTo(21.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - close() - moveTo(16.5f, 6.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - lineTo(16.5f, 6.0f) - close() - moveTo(4.0f, 15.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(5.5f, 16.5f) - lineTo(5.5f, 18.0f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(5.5f, 19.5f) - verticalLineToRelative(1.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-5.48f) - close() - moveTo(10.25f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(11.0f, 19.5f) - horizontalLineToRelative(0.75f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, -4.5f) - horizontalLineToRelative(-1.5f) - close() - moveTo(11.75f, 18.0f) - lineTo(11.0f, 18.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(15.25f, 17.12f) - curveToRelative(0.0f, -1.17f, 0.95f, -2.12f, 2.13f, -2.12f) - lineTo(18.0f, 15.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - horizontalLineToRelative(-0.63f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, 1.25f) - horizontalLineToRelative(0.5f) - arcToRelative(2.13f, 2.13f, 0.0f, false, true, 0.0f, 4.25f) - horizontalLineToRelative(-0.62f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(0.63f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) - horizontalLineToRelative(-0.5f) - arcToRelative(2.13f, 2.13f, 0.0f, false, true, -2.13f, -2.13f) - close() - } - } - return _fps1!! - } - -private var _fps1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fps120.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fps120.kt deleted file mode 100644 index 2144bb49..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fps120.kt +++ /dev/null @@ -1,120 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Fps120: ImageVector - get() { - if (_fps120 != null) { - return _fps120!! - } - _fps120 = fluentIcon(name = "Regular.Fps120") { - fluentPath { - moveTo(6.0f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.36f, -0.44f) - lineToRelative(-0.02f, 0.02f) - arcToRelative(6.36f, 6.36f, 0.0f, false, true, -0.18f, 0.25f) - curveToRelative(-0.13f, 0.16f, -0.31f, 0.4f, -0.54f, 0.64f) - arcToRelative(7.3f, 7.3f, 0.0f, false, true, -1.54f, 1.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.78f, 1.28f) - curveToRelative(0.48f, -0.29f, 0.95f, -0.7f, 1.36f, -1.1f) - verticalLineToRelative(6.46f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-8.5f) - close() - moveTo(9.49f, 5.39f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 5.13f) - lineTo(8.0f, 5.1f) - arcTo(1.36f, 1.36f, 0.0f, false, true, 8.04f, 5.0f) - lineToRelative(0.08f, -0.26f) - curveToRelative(0.08f, -0.2f, 0.21f, -0.46f, 0.43f, -0.72f) - arcTo(3.04f, 3.04f, 0.0f, false, true, 11.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - curveToRelative(0.0f, 1.02f, -0.36f, 1.78f, -0.9f, 2.36f) - curveToRelative(-0.47f, 0.52f, -1.09f, 0.9f, -1.6f, 1.23f) - lineToRelative(-0.1f, 0.06f) - curveToRelative(-0.58f, 0.36f, -1.04f, 0.67f, -1.37f, 1.06f) - curveToRelative(-0.19f, 0.22f, -0.34f, 0.47f, -0.43f, 0.79f) - horizontalLineToRelative(3.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - curveToRelative(0.0f, -1.07f, 0.35f, -1.88f, 0.88f, -2.5f) - curveToRelative(0.5f, -0.6f, 1.17f, -1.03f, 1.72f, -1.37f) - lineToRelative(0.03f, -0.02f) - curveToRelative(0.58f, -0.36f, 1.03f, -0.65f, 1.36f, -1.0f) - curveToRelative(0.3f, -0.34f, 0.51f, -0.74f, 0.51f, -1.36f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - curveToRelative(-0.78f, 0.0f, -1.13f, 0.28f, -1.3f, 0.48f) - arcToRelative(1.12f, 1.12f, 0.0f, false, false, -0.21f, 0.4f) - close() - moveTo(17.99f, 3.0f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 15.0f, 6.0f) - verticalLineToRelative(4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 6.0f, 0.0f) - lineTo(21.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - close() - moveTo(16.5f, 6.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - lineTo(16.5f, 6.0f) - close() - moveTo(4.0f, 15.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(5.5f, 16.5f) - lineTo(5.5f, 18.0f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(5.5f, 19.5f) - verticalLineToRelative(1.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-5.48f) - close() - moveTo(10.25f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(11.0f, 19.5f) - horizontalLineToRelative(0.75f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, -4.5f) - horizontalLineToRelative(-1.5f) - close() - moveTo(11.75f, 18.0f) - lineTo(11.0f, 18.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(15.25f, 17.12f) - curveToRelative(0.0f, -1.17f, 0.95f, -2.12f, 2.13f, -2.12f) - lineTo(18.0f, 15.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - horizontalLineToRelative(-0.63f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, 1.25f) - horizontalLineToRelative(0.5f) - arcToRelative(2.13f, 2.13f, 0.0f, false, true, 0.0f, 4.25f) - horizontalLineToRelative(-0.62f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(0.63f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) - horizontalLineToRelative(-0.5f) - arcToRelative(2.13f, 2.13f, 0.0f, false, true, -2.13f, -2.13f) - close() - } - } - return _fps120!! - } - -private var _fps120: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fps2.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fps2.kt deleted file mode 100644 index 0edd9193..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fps2.kt +++ /dev/null @@ -1,125 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Fps2: ImageVector - get() { - if (_fps2 != null) { - return _fps2!! - } - _fps2 = fluentIcon(name = "Regular.Fps2") { - fluentPath { - moveTo(3.0f, 4.09f) - verticalLineToRelative(-0.03f) - lineToRelative(0.04f, -0.12f) - curveToRelative(0.04f, -0.11f, 0.1f, -0.25f, 0.2f, -0.39f) - curveToRelative(0.2f, -0.26f, 0.55f, -0.55f, 1.26f, -0.55f) - curveToRelative(0.64f, 0.0f, 1.04f, 0.2f, 1.27f, 0.5f) - curveToRelative(0.23f, 0.3f, 0.35f, 0.76f, 0.24f, 1.42f) - curveToRelative(-0.07f, 0.38f, -0.26f, 0.61f, -0.57f, 0.8f) - curveToRelative(-0.24f, 0.16f, -0.52f, 0.28f, -0.85f, 0.41f) - lineToRelative(-0.43f, 0.18f) - curveToRelative(-0.5f, 0.21f, -1.05f, 0.5f, -1.47f, 1.0f) - arcTo(3.27f, 3.27f, 0.0f, false, false, 2.0f, 9.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, 0.5f) - horizontalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - lineTo(3.03f, 9.0f) - curveToRelative(0.07f, -0.49f, 0.23f, -0.81f, 0.43f, -1.05f) - curveToRelative(0.26f, -0.32f, 0.64f, -0.52f, 1.1f, -0.72f) - curveToRelative(0.1f, -0.05f, 0.2f, -0.1f, 0.32f, -0.14f) - curveToRelative(0.36f, -0.14f, 0.77f, -0.3f, 1.1f, -0.52f) - curveToRelative(0.49f, -0.31f, 0.89f, -0.76f, 1.01f, -1.49f) - curveToRelative(0.15f, -0.84f, 0.02f, -1.62f, -0.44f, -2.2f) - curveTo(6.1f, 2.29f, 5.36f, 2.0f, 4.5f, 2.0f) - arcToRelative(2.44f, 2.44f, 0.0f, false, false, -2.49f, 1.88f) - verticalLineToRelative(0.03f) - reflectiveCurveTo(2.0f, 4.0f, 2.0f, 3.92f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.98f, 0.18f) - close() - moveTo(13.0f, 4.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - verticalLineToRelative(3.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) - verticalLineToRelative(-3.0f) - close() - moveTo(17.0f, 7.5f) - verticalLineToRelative(-3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) - verticalLineToRelative(3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) - close() - moveTo(3.0f, 12.5f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(4.0f, 13.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(4.0f, 16.0f) - verticalLineToRelative(1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-5.0f) - close() - moveTo(8.0f, 12.5f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - lineTo(10.0f, 12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) - lineTo(9.0f, 16.0f) - verticalLineToRelative(1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-5.0f) - close() - moveTo(9.0f, 15.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(9.0f, 13.0f) - verticalLineToRelative(2.0f) - close() - moveTo(14.75f, 12.0f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, 3.5f) - horizontalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.76f) - arcToRelative(0.49f, 0.49f, 0.0f, false, true, -0.49f, -0.49f) - verticalLineToRelative(-0.01f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(0.01f) - curveToRelative(0.0f, 0.82f, 0.67f, 1.49f, 1.49f, 1.49f) - horizontalLineToRelative(0.76f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, -3.5f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.76f) - curveToRelative(0.27f, 0.0f, 0.49f, 0.22f, 0.49f, 0.49f) - verticalLineToRelative(0.01f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-0.01f) - curveToRelative(0.0f, -0.82f, -0.67f, -1.49f, -1.49f, -1.49f) - horizontalLineToRelative(-0.76f) - close() - moveTo(9.0f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, 0.5f) - lineTo(11.0f, 7.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-7.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - lineTo(11.0f, 6.0f) - lineTo(9.0f, 6.0f) - lineTo(9.0f, 2.5f) - close() - } - } - return _fps2!! - } - -private var _fps2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fps240.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fps240.kt deleted file mode 100644 index 4822c6b1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fps240.kt +++ /dev/null @@ -1,122 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Fps240: ImageVector - get() { - if (_fps240 != null) { - return _fps240!! - } - _fps240 = fluentIcon(name = "Regular.Fps240") { - fluentPath { - moveTo(2.63f, 5.99f) - curveToRelative(0.4f, 0.07f, 0.78f, -0.2f, 0.86f, -0.6f) - verticalLineToRelative(-0.01f) - lineToRelative(0.03f, -0.1f) - curveToRelative(0.03f, -0.07f, 0.09f, -0.19f, 0.18f, -0.3f) - curveToRelative(0.17f, -0.2f, 0.52f, -0.48f, 1.3f, -0.48f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - curveToRelative(0.0f, 0.62f, -0.2f, 1.02f, -0.5f, 1.35f) - curveToRelative(-0.34f, 0.36f, -0.8f, 0.65f, -1.37f, 1.01f) - lineToRelative(-0.03f, 0.02f) - curveToRelative(-0.55f, 0.34f, -1.21f, 0.76f, -1.72f, 1.36f) - arcTo(3.72f, 3.72f, 0.0f, false, false, 2.0f, 12.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.6f, 11.5f) - curveToRelative(0.09f, -0.32f, 0.24f, -0.57f, 0.43f, -0.79f) - curveToRelative(0.33f, -0.4f, 0.8f, -0.7f, 1.37f, -1.06f) - lineToRelative(0.1f, -0.06f) - curveToRelative(0.51f, -0.32f, 1.12f, -0.7f, 1.6f, -1.23f) - curveToRelative(0.54f, -0.58f, 0.9f, -1.34f, 0.9f, -2.36f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - curveToRelative(-1.22f, 0.0f, -2.0f, 0.47f, -2.45f, 1.02f) - arcTo(2.62f, 2.62f, 0.0f, false, false, 2.0f, 5.11f) - verticalLineToRelative(0.01f) - curveToRelative(-0.07f, 0.41f, 0.2f, 0.8f, 0.62f, 0.87f) - close() - moveTo(16.0f, 5.99f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) - verticalLineToRelative(4.02f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.0f) - lineTo(16.0f, 6.0f) - close() - moveTo(19.0f, 4.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(4.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 3.0f, 0.0f) - lineTo(20.5f, 6.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - close() - moveTo(4.74f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(5.48f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(5.49f, 19.5f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(5.5f, 18.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.0f) - close() - moveTo(9.49f, 15.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 4.5f) - lineTo(11.0f, 19.5f) - verticalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-5.5f) - close() - moveTo(11.0f, 18.0f) - horizontalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - lineTo(11.0f, 16.5f) - lineTo(11.0f, 18.0f) - close() - moveTo(17.38f, 15.0f) - arcToRelative(2.13f, 2.13f, 0.0f, false, false, 0.0f, 4.25f) - horizontalLineToRelative(0.5f) - arcToRelative(0.62f, 0.62f, 0.0f, true, true, 0.0f, 1.25f) - horizontalLineToRelative(-0.63f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(0.63f) - arcToRelative(2.13f, 2.13f, 0.0f, false, false, 0.0f, -4.25f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.62f, 0.62f, 0.0f, true, true, 0.0f, -1.25f) - lineTo(18.0f, 16.5f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - horizontalLineToRelative(-0.63f) - close() - moveTo(14.25f, 3.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(13.5f, 9.0f) - lineTo(9.75f, 9.0f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 9.0f, 8.25f) - verticalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - lineTo(10.5f, 7.5f) - horizontalLineToRelative(3.0f) - lineTo(13.5f, 3.75f) - curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _fps240!! - } - -private var _fps240: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fps30.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fps30.kt deleted file mode 100644 index abd77d8e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fps30.kt +++ /dev/null @@ -1,118 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Fps30: ImageVector - get() { - if (_fps30 != null) { - return _fps30!! - } - _fps30 = fluentIcon(name = "Regular.Fps30") { - fluentPath { - moveTo(8.13f, 4.5f) - horizontalLineToRelative(-0.25f) - curveToRelative(-0.45f, 0.0f, -0.85f, 0.22f, -1.1f, 0.55f) - curveToRelative(-0.18f, 0.24f, -0.44f, 0.45f, -0.74f, 0.45f) - curveToRelative(-0.54f, 0.0f, -0.96f, -0.49f, -0.7f, -0.97f) - arcTo(2.87f, 2.87f, 0.0f, false, true, 7.87f, 3.0f) - horizontalLineToRelative(0.25f) - arcToRelative(2.88f, 2.88f, 0.0f, false, true, 1.93f, 5.0f) - arcToRelative(2.87f, 2.87f, 0.0f, false, true, -1.93f, 5.0f) - horizontalLineToRelative(-0.25f) - curveToRelative(-1.1f, 0.0f, -2.07f, -0.62f, -2.55f, -1.53f) - curveToRelative(-0.25f, -0.48f, 0.17f, -0.97f, 0.71f, -0.97f) - curveToRelative(0.3f, 0.0f, 0.56f, 0.21f, 0.74f, 0.45f) - curveToRelative(0.25f, 0.34f, 0.65f, 0.55f, 1.1f, 0.55f) - horizontalLineToRelative(0.25f) - arcToRelative(1.37f, 1.37f, 0.0f, true, false, 0.0f, -2.75f) - lineTo(8.0f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.13f) - arcToRelative(1.38f, 1.38f, 0.0f, false, false, 0.0f, -2.75f) - close() - moveTo(14.0f, 17.25f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - verticalLineToRelative(5.6f) - curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - lineTo(11.0f, 19.5f) - horizontalLineToRelative(0.9f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.1f, -2.25f) - close() - moveTo(11.0f, 16.5f) - horizontalLineToRelative(0.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, 1.5f) - lineTo(11.0f, 18.0f) - verticalLineToRelative(-1.5f) - close() - moveTo(20.0f, 17.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - horizontalLineToRelative(-0.78f) - arcToRelative(2.13f, 2.13f, 0.0f, false, false, 0.16f, 4.25f) - horizontalLineToRelative(0.59f) - arcToRelative(0.63f, 0.63f, 0.0f, false, true, -0.1f, 1.25f) - horizontalLineToRelative(-0.71f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.41f, -0.5f) - verticalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(0.78f) - arcToRelative(2.13f, 2.13f, 0.0f, false, false, -0.16f, -4.25f) - horizontalLineToRelative(-0.59f) - arcToRelative(0.63f, 0.63f, 0.0f, false, true, 0.1f, -1.25f) - horizontalLineToRelative(0.71f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.41f, 0.5f) - verticalLineToRelative(0.1f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 20.0f, 17.0f) - close() - moveTo(8.5f, 15.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - verticalLineToRelative(5.58f) - curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - lineTo(5.5f, 19.5f) - horizontalLineToRelative(1.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - lineTo(5.5f, 18.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(2.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(18.0f, 5.82f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 15.0f, 3.0f) - horizontalLineToRelative(-0.18f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 12.0f, 6.0f) - verticalLineToRelative(4.18f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 14.83f, 13.0f) - lineTo(15.0f, 13.0f) - horizontalLineToRelative(0.17f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 18.0f, 10.0f) - lineTo(18.0f, 5.83f) - close() - moveTo(15.0f, 4.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(4.15f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.35f, 1.34f) - lineToRelative(-0.16f, 0.01f) - horizontalLineToRelative(-0.14f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 13.5f, 10.0f) - lineTo(13.5f, 5.86f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 15.0f, 4.5f) - close() - } - } - return _fps30!! - } - -private var _fps30: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fps60.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fps60.kt deleted file mode 100644 index 2cce67d0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fps60.kt +++ /dev/null @@ -1,117 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Fps60: ImageVector - get() { - if (_fps60 != null) { - return _fps60!! - } - _fps60 = fluentIcon(name = "Regular.Fps60") { - fluentPath { - moveTo(11.75f, 15.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, 4.5f) - lineTo(11.0f, 19.5f) - verticalLineToRelative(1.75f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-5.5f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(1.5f) - close() - moveTo(18.0f, 15.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(18.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.5f) - horizontalLineToRelative(-0.72f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, -0.09f, 1.24f) - horizontalLineToRelative(0.6f) - arcToRelative(2.13f, 2.13f, 0.0f, false, true, 0.15f, 4.25f) - horizontalLineToRelative(-0.78f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 0.25f, 0.18f, 0.46f, 0.41f, 0.5f) - horizontalLineToRelative(0.72f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.09f, -1.23f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-0.5f) - arcToRelative(2.13f, 2.13f, 0.0f, false, true, -0.15f, -4.25f) - lineTo(18.0f, 15.0f) - close() - moveTo(7.75f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(5.5f, 16.5f) - lineTo(5.5f, 18.0f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(5.5f, 19.5f) - verticalLineToRelative(1.73f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-5.48f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(3.0f) - close() - moveTo(11.75f, 16.5f) - lineTo(11.0f, 16.5f) - lineTo(11.0f, 18.0f) - horizontalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(8.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) - verticalLineToRelative(0.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(9.5f, 5.85f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) - lineTo(6.5f, 7.4f) - arcTo(3.0f, 3.0f, 0.0f, true, true, 5.0f, 10.18f) - lineTo(5.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - close() - moveTo(15.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) - lineTo(18.0f, 10.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.82f, 3.0f) - horizontalLineToRelative(-0.37f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.8f, -2.82f) - lineTo(12.0f, 10.0f) - lineTo(12.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.82f, -3.0f) - lineTo(15.0f, 3.0f) - close() - moveTo(8.0f, 8.5f) - curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.35f) - lineTo(6.5f, 10.0f) - arcTo(1.5f, 1.5f, 0.0f, true, false, 8.0f, 8.5f) - close() - moveTo(15.0f, 4.5f) - curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.35f) - lineTo(13.5f, 10.0f) - curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.35f, 1.5f) - lineTo(15.15f, 11.5f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.34f, -1.35f) - lineToRelative(0.01f, -0.15f) - lineTo(16.5f, 6.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - close() - } - } - return _fps60!! - } - -private var _fps60: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fps960.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fps960.kt deleted file mode 100644 index be06a2ce..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Fps960.kt +++ /dev/null @@ -1,133 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Fps960: ImageVector - get() { - if (_fps960 != null) { - return _fps960!! - } - _fps960 = fluentIcon(name = "Regular.Fps960") { - fluentPath { - moveTo(11.75f, 15.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, 4.5f) - lineTo(11.0f, 19.5f) - verticalLineToRelative(1.75f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-5.5f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(1.5f) - close() - moveTo(18.0f, 15.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(18.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.5f) - horizontalLineToRelative(-0.72f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, -0.09f, 1.24f) - horizontalLineToRelative(0.6f) - arcToRelative(2.13f, 2.13f, 0.0f, false, true, 0.15f, 4.25f) - horizontalLineToRelative(-0.78f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 0.25f, 0.18f, 0.46f, 0.41f, 0.5f) - horizontalLineToRelative(0.72f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.09f, -1.23f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-0.5f) - arcToRelative(2.13f, 2.13f, 0.0f, false, true, -0.15f, -4.25f) - lineTo(18.0f, 15.0f) - close() - moveTo(7.75f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(5.5f, 16.5f) - lineTo(5.5f, 18.0f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(5.5f, 19.5f) - verticalLineToRelative(1.73f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-5.48f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(3.0f) - close() - moveTo(11.75f, 16.5f) - lineTo(11.0f, 16.5f) - lineTo(11.0f, 18.0f) - horizontalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(12.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) - verticalLineToRelative(0.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(13.5f, 5.85f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) - lineTo(10.5f, 7.4f) - arcTo(3.0f, 3.0f, 0.0f, true, true, 9.0f, 10.18f) - lineTo(9.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - close() - moveTo(5.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) - lineTo(8.0f, 10.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.17f) - verticalLineToRelative(-0.34f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - lineTo(3.5f, 10.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.14f) - lineTo(6.5f, 8.6f) - arcTo(3.0f, 3.0f, 0.0f, true, true, 5.0f, 3.0f) - close() - moveTo(19.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) - lineTo(22.0f, 10.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.82f, 3.0f) - horizontalLineToRelative(-0.37f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.8f, -2.82f) - lineTo(16.0f, 10.0f) - lineTo(16.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.82f, -3.0f) - lineTo(19.0f, 3.0f) - close() - moveTo(12.0f, 8.5f) - curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.35f) - lineTo(10.5f, 10.0f) - arcTo(1.5f, 1.5f, 0.0f, true, false, 12.0f, 8.5f) - close() - moveTo(19.0f, 4.5f) - curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.35f) - lineTo(17.5f, 10.0f) - curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.35f, 1.5f) - lineTo(19.15f, 11.5f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.34f, -1.35f) - lineToRelative(0.01f, -0.15f) - lineTo(20.5f, 6.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - close() - moveTo(5.0f, 4.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 1.5f, 1.65f) - lineTo(6.5f, 6.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - close() - } - } - return _fps960!! - } - -private var _fps960: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FullScreenMaximize.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FullScreenMaximize.kt deleted file mode 100644 index 0c00b619..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FullScreenMaximize.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FullScreenMaximize: ImageVector - get() { - if (_fullScreenMaximize != null) { - return _fullScreenMaximize!! - } - _fullScreenMaximize = fluentIcon(name = "Regular.FullScreenMaximize") { - fluentPath { - moveTo(4.5f, 5.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(4.5f, 18.25f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - verticalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(2.0f) - close() - moveTo(18.25f, 4.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.0f) - close() - moveTo(19.5f, 18.25f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) - verticalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.0f) - close() - } - } - return _fullScreenMaximize!! - } - -private var _fullScreenMaximize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FullScreenMinimize.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FullScreenMinimize.kt deleted file mode 100644 index e74047af..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/FullScreenMinimize.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.FullScreenMinimize: ImageVector - get() { - if (_fullScreenMinimize != null) { - return _fullScreenMinimize!! - } - _fullScreenMinimize = fluentIcon(name = "Regular.FullScreenMinimize") { - fluentPath { - moveTo(8.5f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-2.5f) - close() - moveTo(8.5f, 20.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(2.5f) - close() - moveTo(16.25f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(15.5f, 20.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(2.5f) - close() - } - } - return _fullScreenMinimize!! - } - -private var _fullScreenMinimize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Games.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Games.kt deleted file mode 100644 index 40da7169..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Games.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Games: ImageVector - get() { - if (_games != null) { - return _games!! - } - _games = fluentIcon(name = "Regular.Games") { - fluentPath { - moveTo(15.0f, 5.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, 0.24f, 14.0f) - lineTo(9.0f, 19.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, -0.24f, -14.0f) - lineTo(15.0f, 5.0f) - close() - moveTo(15.0f, 6.5f) - lineTo(9.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -0.22f, 11.0f) - lineTo(15.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.22f, -11.0f) - lineTo(15.0f, 6.5f) - close() - moveTo(8.0f, 9.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.5f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(1.5f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(14.75f, 12.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(16.75f, 9.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - } - } - return _games!! - } - -private var _games: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GanttChart.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GanttChart.kt deleted file mode 100644 index ea5754ad..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GanttChart.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.GanttChart: ImageVector - get() { - if (_ganttChart != null) { - return _ganttChart!! - } - _ganttChart = fluentIcon(name = "Regular.GanttChart") { - fluentPath { - moveTo(6.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - horizontalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - lineTo(6.0f, 8.0f) - close() - moveTo(11.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - horizontalLineToRelative(-4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - close() - moveTo(15.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - horizontalLineToRelative(-3.0f) - close() - moveTo(5.25f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) - horizontalLineToRelative(13.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-9.5f) - curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) - lineTo(5.25f, 4.0f) - close() - moveTo(8.0f, 5.5f) - lineTo(8.0f, 7.0f) - horizontalLineToRelative(1.5f) - lineTo(9.5f, 5.5f) - horizontalLineToRelative(5.0f) - lineTo(14.5f, 10.0f) - lineTo(16.0f, 10.0f) - lineTo(16.0f, 5.5f) - horizontalLineToRelative(2.75f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(16.0f, 18.5f) - lineTo(16.0f, 17.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.5f, -0.06f) - verticalLineToRelative(1.56f) - horizontalLineToRelative(-5.0f) - lineTo(9.5f, 11.0f) - lineTo(8.0f, 11.0f) - verticalLineToRelative(7.5f) - lineTo(5.25f, 18.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - lineTo(8.0f, 5.5f) - close() - } - } - return _ganttChart!! - } - -private var _ganttChart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Gas.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Gas.kt deleted file mode 100644 index d6197c18..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Gas.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Gas: ImageVector - get() { - if (_gas != null) { - return _gas!! - } - _gas = fluentIcon(name = "Regular.Gas") { - fluentPath { - moveTo(8.22f, 10.22f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineTo(12.0f, 12.94f) - lineToRelative(2.72f, -2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineTo(13.06f, 14.0f) - lineToRelative(0.47f, 0.47f) - lineToRelative(2.0f, 2.0f) - lineToRelative(0.25f, 0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-0.25f, -0.25f) - lineToRelative(-2.0f, -2.0f) - lineToRelative(-0.47f, -0.47f) - lineToRelative(-2.72f, 2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineTo(10.94f, 14.0f) - lineToRelative(-2.72f, -2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - moveTo(13.75f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.6f, 0.3f) - lineTo(10.44f, 6.0f) - lineTo(9.0f, 6.0f) - verticalLineToRelative(-0.25f) - curveTo(9.0f, 3.95f, 7.54f, 2.5f, 5.75f, 2.5f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(7.5f, 6.0f) - horizontalLineToRelative(-0.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.0f, 8.75f) - verticalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 6.75f, 22.0f) - horizontalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 20.0f, 19.25f) - lineTo(20.0f, 8.75f) - curveToRelative(0.0f, -0.86f, -0.4f, -1.63f, -1.01f, -2.13f) - lineTo(19.0f, 6.5f) - lineTo(19.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-4.5f) - close() - moveTo(17.5f, 6.01f) - lineTo(17.25f, 6.0f) - lineTo(12.3f, 6.0f) - lineToRelative(1.83f, -2.5f) - horizontalLineToRelative(3.37f) - verticalLineToRelative(2.51f) - close() - moveTo(6.75f, 7.5f) - horizontalLineToRelative(10.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - lineTo(6.75f, 20.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - lineTo(5.5f, 8.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - close() - } - } - return _gas!! - } - -private var _gas: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GasPump.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GasPump.kt deleted file mode 100644 index fc43d202..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GasPump.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.GasPump: ImageVector - get() { - if (_gasPump != null) { - return _gasPump!! - } - _gasPump = fluentIcon(name = "Regular.GasPump") { - fluentPath { - moveTo(7.75f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(5.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-5.5f) - close() - moveTo(8.5f, 10.5f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(6.75f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.0f, 5.75f) - lineTo(4.0f, 20.5f) - horizontalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(17.0f, 20.5f) - verticalLineToRelative(-1.8f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 4.0f, -2.44f) - verticalLineToRelative(-5.84f) - curveToRelative(0.0f, -0.6f, -0.2f, -1.18f, -0.55f, -1.65f) - lineToRelative(-1.1f, -1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.2f, 0.9f) - lineToRelative(1.1f, 1.47f) - curveToRelative(0.16f, 0.21f, 0.25f, 0.48f, 0.25f, 0.75f) - verticalLineToRelative(5.83f) - arcToRelative(1.24f, 1.24f, 0.0f, true, true, -2.49f, 0.0f) - lineTo(17.01f, 14.5f) - lineToRelative(-0.01f, -0.12f) - lineTo(17.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 14.25f, 3.0f) - horizontalLineToRelative(-7.5f) - close() - moveTo(15.5f, 20.5f) - horizontalLineToRelative(-10.0f) - lineTo(5.5f, 5.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(7.5f) - curveToRelative(0.7f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - lineTo(15.5f, 20.5f) - close() - } - } - return _gasPump!! - } - -private var _gasPump: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Gauge.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Gauge.kt deleted file mode 100644 index 4f8d9ebf..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Gauge.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Gauge: ImageVector - get() { - if (_gauge != null) { - return _gauge!! - } - _gauge = fluentIcon(name = "Regular.Gauge") { - fluentPath { - moveTo(7.93f, 16.07f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - arcToRelative(7.25f, 7.25f, 0.0f, false, true, 6.8f, -12.19f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.34f, 1.46f) - arcToRelative(5.75f, 5.75f, 0.0f, false, false, -5.4f, 9.67f) - close() - moveTo(17.89f, 9.14f) - curveToRelative(0.39f, -0.14f, 0.82f, 0.07f, 0.95f, 0.46f) - arcToRelative(7.25f, 7.25f, 0.0f, false, true, -1.71f, 7.53f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - arcToRelative(5.75f, 5.75f, 0.0f, false, false, 1.36f, -5.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.46f, -0.96f) - close() - moveTo(15.88f, 6.67f) - arcToRelative(0.63f, 0.63f, 0.0f, false, true, 0.96f, 0.76f) - lineToRelative(-0.13f, 0.25f) - arcToRelative(354.7f, 354.7f, 0.0f, false, true, -3.02f, 5.67f) - curveToRelative(-0.12f, 0.2f, -0.24f, 0.4f, -0.32f, 0.5f) - arcToRelative(1.88f, 1.88f, 0.0f, false, true, -2.94f, -2.33f) - arcToRelative(37.2f, 37.2f, 0.0f, false, true, 1.1f, -1.05f) - arcToRelative(154.39f, 154.39f, 0.0f, false, true, 4.14f, -3.62f) - lineToRelative(0.2f, -0.18f) - close() - moveTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, -20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 20.0f, 0.0f) - close() - moveTo(3.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, 17.0f, 0.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, -17.0f, 0.0f) - close() - } - } - return _gauge!! - } - -private var _gauge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Gavel.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Gavel.kt deleted file mode 100644 index 78b8425b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Gavel.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Gavel: ImageVector - get() { - if (_gavel != null) { - return _gavel!! - } - _gavel = fluentIcon(name = "Regular.Gavel") { - fluentPath { - moveTo(14.14f, 2.98f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.41f, -0.27f) - lineTo(7.26f, 6.18f) - curveToRelative(-1.0f, 1.0f, -0.83f, 2.67f, 0.35f, 3.46f) - lineToRelative(2.0f, 1.34f) - lineToRelative(-6.87f, 6.74f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 3.53f, 3.57f) - lineToRelative(6.88f, -6.88f) - lineToRelative(1.21f, 1.92f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 3.5f, 0.38f) - lineToRelative(3.43f, -3.44f) - curveToRelative(0.98f, -0.98f, 0.85f, -2.6f, -0.27f, -3.4f) - lineToRelative(-3.89f, -2.84f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.16f, -0.16f) - lineToRelative(-2.83f, -3.9f) - close() - moveTo(11.79f, 3.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.14f, 0.08f) - lineToRelative(0.46f, 0.63f) - lineToRelative(-4.32f, 4.32f) - lineToRelative(-0.63f, -0.42f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.12f, -1.15f) - lineToRelative(3.47f, -3.47f) - close() - moveTo(10.34f, 9.66f) - lineTo(14.28f, 5.72f) - lineTo(15.75f, 7.75f) - curveToRelative(0.14f, 0.2f, 0.31f, 0.36f, 0.5f, 0.5f) - lineToRelative(1.96f, 1.42f) - lineToRelative(-3.85f, 3.85f) - lineToRelative(-1.06f, -1.65f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.65f, -0.67f) - lineToRelative(-2.3f, -1.54f) - close() - moveTo(15.18f, 14.82f) - lineTo(19.44f, 10.56f) - lineTo(20.14f, 11.07f) - curveToRelative(0.37f, 0.28f, 0.41f, 0.82f, 0.09f, 1.14f) - lineToRelative(-3.44f, 3.44f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.16f, -0.13f) - lineToRelative(-0.45f, -0.7f) - close() - moveTo(12.32f, 13.12f) - lineTo(5.22f, 20.22f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.43f, -1.43f) - lineToRelative(7.1f, -6.96f) - lineToRelative(0.93f, 0.62f) - curveToRelative(0.09f, 0.06f, 0.16f, 0.13f, 0.22f, 0.22f) - lineToRelative(0.28f, 0.45f) - close() - moveTo(14.75f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - close() - } - } - return _gavel!! - } - -private var _gavel: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Gesture.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Gesture.kt deleted file mode 100644 index 6d6a5e1f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Gesture.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Gesture: ImageVector - get() { - if (_gesture != null) { - return _gesture!! - } - _gesture = fluentIcon(name = "Regular.Gesture") { - fluentPath { - moveTo(3.75f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(6.75f, 4.0f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-6.6f) - lineToRelative(9.77f, 3.8f) - curveToRelative(0.57f, 0.22f, 0.64f, 0.98f, 0.16f, 1.31f) - lineToRelative(-0.1f, 0.06f) - lineTo(6.1f, 17.93f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.76f, -1.3f) - lineToRelative(0.09f, -0.04f) - lineToRelative(12.97f, -6.5f) - lineTo(6.48f, 5.45f) - curveToRelative(-0.74f, -0.28f, -0.58f, -1.35f, 0.16f, -1.44f) - horizontalLineToRelative(10.61f) - horizontalLineToRelative(-10.5f) - close() - moveTo(19.75f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - } - } - return _gesture!! - } - -private var _gesture: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Gif.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Gif.kt deleted file mode 100644 index 0f8e7343..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Gif.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Gif: ImageVector - get() { - if (_gif != null) { - return _gif!! - } - _gif = fluentIcon(name = "Regular.Gif") { - fluentPath { - moveTo(18.75f, 3.5f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(5.25f, 20.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 17.25f) - lineTo(2.0f, 6.75f) - curveTo(2.0f, 4.95f, 3.46f, 3.5f, 5.25f, 3.5f) - horizontalLineToRelative(13.5f) - close() - moveTo(18.75f, 5.0f) - lineTo(5.25f, 5.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(20.5f, 6.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(8.01f, 8.87f) - curveToRelative(0.6f, 0.0f, 1.02f, 0.08f, 1.5f, 0.31f) - arcToRelative(0.62f, 0.62f, 0.0f, true, true, -0.53f, 1.13f) - curveToRelative(-0.3f, -0.14f, -0.54f, -0.19f, -0.97f, -0.19f) - curveToRelative(-0.86f, 0.0f, -1.5f, 0.8f, -1.5f, 1.87f) - curveToRelative(0.0f, 1.08f, 0.64f, 1.88f, 1.5f, 1.88f) - curveToRelative(0.43f, 0.0f, 0.8f, -0.18f, 0.98f, -0.5f) - lineToRelative(0.01f, -0.02f) - verticalLineToRelative(-0.73f) - horizontalLineToRelative(-0.37f) - arcTo(0.63f, 0.63f, 0.0f, false, true, 8.0f, 12.1f) - lineToRelative(-0.01f, -0.1f) - curveToRelative(0.0f, -0.3f, 0.23f, -0.57f, 0.53f, -0.61f) - horizontalLineToRelative(1.1f) - curveToRelative(0.31f, 0.0f, 0.57f, 0.22f, 0.61f, 0.52f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.6f) - lineToRelative(-0.03f, 0.09f) - lineToRelative(-0.02f, 0.05f) - arcToRelative(2.3f, 2.3f, 0.0f, false, true, -2.19f, 1.38f) - curveToRelative(-1.62f, 0.0f, -2.75f, -1.41f, -2.75f, -3.13f) - curveToRelative(0.0f, -1.7f, 1.13f, -3.12f, 2.75f, -3.12f) - close() - moveTo(12.63f, 8.99f) - curveToRelative(0.31f, 0.0f, 0.57f, 0.23f, 0.62f, 0.54f) - verticalLineToRelative(4.85f) - arcToRelative(0.62f, 0.62f, 0.0f, false, true, -1.24f, 0.1f) - lineTo(12.01f, 9.61f) - curveToRelative(0.0f, -0.35f, 0.27f, -0.63f, 0.62f, -0.63f) - close() - moveTo(15.63f, 8.99f) - lineTo(17.63f, 9.0f) - arcToRelative(0.63f, 0.63f, 0.0f, false, true, 0.08f, 1.24f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-1.36f) - lineTo(16.25f, 12.0f) - horizontalLineToRelative(1.12f) - curveToRelative(0.31f, 0.0f, 0.57f, 0.23f, 0.62f, 0.53f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 0.3f, -0.23f, 0.57f, -0.53f, 0.61f) - lineToRelative(-0.09f, 0.01f) - horizontalLineToRelative(-1.12f) - verticalLineToRelative(1.11f) - curveToRelative(0.0f, 0.32f, -0.23f, 0.58f, -0.54f, 0.62f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.63f, 0.63f, 0.0f, false, true, -0.62f, -0.52f) - lineTo(15.0f, 9.62f) - curveToRelative(0.0f, -0.32f, 0.23f, -0.58f, 0.53f, -0.62f) - horizontalLineToRelative(0.1f) - close() - } - } - return _gif!! - } - -private var _gif: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Gift.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Gift.kt deleted file mode 100644 index 30f506b7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Gift.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Gift: ImageVector - get() { - if (_gift != null) { - return _gift!! - } - _gift = fluentIcon(name = "Regular.Gift") { - fluentPath { - moveTo(14.5f, 2.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.74f, 5.0f) - horizontalLineToRelative(2.51f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.6f, -0.43f, 1.1f, -1.0f, 1.22f) - verticalLineToRelative(5.78f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - horizontalLineToRelative(-9.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(4.0f, 18.75f) - verticalLineToRelative(-5.78f) - curveToRelative(-0.57f, -0.11f, -1.0f, -0.62f, -1.0f, -1.22f) - verticalLineToRelative(-3.5f) - curveTo(3.0f, 7.56f, 3.56f, 7.0f, 4.25f, 7.0f) - horizontalLineToRelative(2.51f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 12.0f, 3.17f) - curveTo(12.6f, 2.46f, 13.5f, 2.0f, 14.5f, 2.0f) - close() - moveTo(11.25f, 13.0f) - lineTo(5.5f, 13.0f) - verticalLineToRelative(5.75f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(4.0f) - lineTo(11.25f, 13.0f) - close() - moveTo(18.5f, 13.0f) - horizontalLineToRelative(-5.75f) - verticalLineToRelative(7.5f) - horizontalLineToRelative(4.0f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - lineTo(18.5f, 13.0f) - close() - moveTo(11.25f, 8.5f) - lineTo(4.5f, 8.5f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(6.75f) - verticalLineToRelative(-3.0f) - close() - moveTo(19.5f, 11.5f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(-6.75f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(6.75f) - close() - moveTo(14.5f, 3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(12.75f, 7.0f) - lineTo(14.64f, 7.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -0.14f, -3.5f) - close() - moveTo(9.5f, 3.5f) - arcTo(1.75f, 1.75f, 0.0f, false, false, 9.36f, 7.0f) - lineTo(11.25f, 7.0f) - lineTo(11.25f, 5.1f) - curveToRelative(-0.08f, -0.9f, -0.83f, -1.61f, -1.75f, -1.61f) - close() - } - } - return _gift!! - } - -private var _gift: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GiftCard.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GiftCard.kt deleted file mode 100644 index cc5f2f35..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GiftCard.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.GiftCard: ImageVector - get() { - if (_giftCard != null) { - return _giftCard!! - } - _giftCard = fluentIcon(name = "Regular.GiftCard") { - fluentPath { - moveTo(5.25f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(8.5f) - curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) - horizontalLineToRelative(13.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-8.5f) - curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) - lineTo(5.25f, 4.0f) - close() - moveTo(3.5f, 7.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - lineTo(8.0f, 5.5f) - verticalLineToRelative(1.2f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.5f, 9.0f) - curveToRelative(0.0f, 0.36f, 0.07f, 0.7f, 0.2f, 1.0f) - lineTo(3.5f, 10.0f) - lineTo(3.5f, 7.25f) - close() - moveTo(9.5f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - lineTo(9.5f, 9.0f) - close() - moveTo(8.0f, 10.0f) - lineTo(7.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.0f, -1.0f) - verticalLineToRelative(1.0f) - close() - moveTo(8.0f, 12.56f) - verticalLineToRelative(4.94f) - lineTo(5.25f, 17.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(3.5f, 11.5f) - horizontalLineToRelative(3.44f) - lineToRelative(-1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineTo(8.0f, 12.56f) - close() - moveTo(9.5f, 17.5f) - verticalLineToRelative(-4.94f) - lineToRelative(1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-1.72f, -1.72f) - horizontalLineToRelative(9.94f) - verticalLineToRelative(4.25f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(9.5f, 17.5f) - close() - moveTo(9.5f, 6.7f) - lineTo(9.5f, 5.5f) - horizontalLineToRelative(9.25f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(20.5f, 10.0f) - horizontalLineToRelative(-7.7f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.3f, -3.5f) - curveToRelative(-0.36f, 0.0f, -0.7f, 0.07f, -1.0f, 0.2f) - close() - } - } - return _giftCard!! - } - -private var _giftCard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GiftCardAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GiftCardAdd.kt deleted file mode 100644 index c043bf30..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GiftCardAdd.kt +++ /dev/null @@ -1,96 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.GiftCardAdd: ImageVector - get() { - if (_giftCardAdd != null) { - return _giftCardAdd!! - } - _giftCardAdd = fluentIcon(name = "Regular.GiftCardAdd") { - fluentPath { - moveTo(2.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(14.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(7.81f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) - lineTo(20.5f, 9.5f) - horizontalLineToRelative(-9.94f) - lineToRelative(1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(9.5f, 10.56f) - verticalLineToRelative(4.94f) - horizontalLineToRelative(1.81f) - curveToRelative(-0.15f, 0.48f, -0.25f, 0.98f, -0.3f, 1.5f) - lineTo(5.0f, 17.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(2.0f, 5.0f) - close() - moveTo(5.0f, 3.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(1.2f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 7.0f, 4.5f) - curveToRelative(0.36f, 0.0f, 0.7f, 0.07f, 1.0f, 0.2f) - lineTo(8.0f, 3.5f) - lineTo(5.0f, 3.5f) - close() - moveTo(9.5f, 3.5f) - verticalLineToRelative(1.2f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 13.0f, 7.0f) - curveToRelative(0.0f, 0.36f, -0.07f, 0.7f, -0.2f, 1.0f) - horizontalLineToRelative(7.7f) - lineTo(20.5f, 5.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(9.5f, 3.5f) - close() - moveTo(8.0f, 15.5f) - verticalLineToRelative(-4.94f) - lineToRelative(-1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineTo(6.94f, 9.5f) - lineTo(3.5f, 9.5f) - lineTo(3.5f, 14.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(3.0f) - close() - moveTo(10.5f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.0f, -1.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - close() - moveTo(8.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.0f, 1.0f) - horizontalLineToRelative(1.0f) - lineTo(8.0f, 7.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _giftCardAdd!! - } - -private var _giftCardAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GiftCardArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GiftCardArrowRight.kt deleted file mode 100644 index 228e2cf1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GiftCardArrowRight.kt +++ /dev/null @@ -1,94 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.GiftCardArrowRight: ImageVector - get() { - if (_giftCardArrowRight != null) { - return _giftCardArrowRight!! - } - _giftCardArrowRight = fluentIcon(name = "Regular.GiftCardArrowRight") { - fluentPath { - moveTo(2.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(14.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(7.81f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) - lineTo(20.5f, 9.5f) - horizontalLineToRelative(-9.94f) - lineToRelative(1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(9.5f, 10.56f) - verticalLineToRelative(4.94f) - horizontalLineToRelative(1.81f) - curveToRelative(-0.15f, 0.48f, -0.25f, 0.98f, -0.3f, 1.5f) - lineTo(5.0f, 17.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(2.0f, 5.0f) - close() - moveTo(5.0f, 3.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(1.2f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 7.0f, 4.5f) - curveToRelative(0.36f, 0.0f, 0.7f, 0.07f, 1.0f, 0.2f) - lineTo(8.0f, 3.5f) - lineTo(5.0f, 3.5f) - close() - moveTo(9.5f, 3.5f) - verticalLineToRelative(1.2f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 13.0f, 7.0f) - curveToRelative(0.0f, 0.36f, -0.07f, 0.7f, -0.2f, 1.0f) - horizontalLineToRelative(7.7f) - lineTo(20.5f, 5.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(9.5f, 3.5f) - close() - moveTo(8.0f, 15.5f) - verticalLineToRelative(-4.94f) - lineToRelative(-1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineTo(6.94f, 9.5f) - lineTo(3.5f, 9.5f) - lineTo(3.5f, 14.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(3.0f) - close() - moveTo(10.5f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.0f, -1.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - close() - moveTo(8.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.0f, 1.0f) - horizontalLineToRelative(1.0f) - lineTo(8.0f, 7.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(19.29f, 17.0f) - lineTo(14.5f, 17.0f) - close() - } - } - return _giftCardArrowRight!! - } - -private var _giftCardArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GiftCardMoney.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GiftCardMoney.kt deleted file mode 100644 index bb74bc58..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GiftCardMoney.kt +++ /dev/null @@ -1,118 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.GiftCardMoney: ImageVector - get() { - if (_giftCardMoney != null) { - return _giftCardMoney!! - } - _giftCardMoney = fluentIcon(name = "Regular.GiftCardMoney") { - fluentPath { - moveTo(2.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(14.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(9.05f) - arcToRelative(2.51f, 2.51f, 0.0f, false, false, -0.5f, -0.05f) - horizontalLineToRelative(-1.0f) - lineTo(20.5f, 9.5f) - horizontalLineToRelative(-9.94f) - lineToRelative(1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(9.5f, 10.56f) - verticalLineToRelative(4.94f) - horizontalLineToRelative(1.7f) - curveToRelative(-0.13f, 0.3f, -0.2f, 0.64f, -0.2f, 1.0f) - verticalLineToRelative(0.5f) - lineTo(5.0f, 17.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(2.0f, 5.0f) - close() - moveTo(5.0f, 3.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(1.2f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 7.0f, 4.5f) - curveToRelative(0.36f, 0.0f, 0.7f, 0.07f, 1.0f, 0.2f) - lineTo(8.0f, 3.5f) - lineTo(5.0f, 3.5f) - close() - moveTo(9.5f, 3.5f) - verticalLineToRelative(1.2f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 13.0f, 7.0f) - curveToRelative(0.0f, 0.36f, -0.07f, 0.7f, -0.2f, 1.0f) - horizontalLineToRelative(7.7f) - lineTo(20.5f, 5.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(9.5f, 3.5f) - close() - moveTo(8.0f, 15.5f) - verticalLineToRelative(-4.94f) - lineToRelative(-1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineTo(6.94f, 9.5f) - lineTo(3.5f, 9.5f) - lineTo(3.5f, 14.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(3.0f) - close() - moveTo(10.5f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.0f, -1.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - close() - moveTo(8.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.0f, 1.0f) - horizontalLineToRelative(1.0f) - lineTo(8.0f, 7.0f) - close() - moveTo(12.0f, 16.5f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(8.0f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - verticalLineToRelative(-4.0f) - close() - moveTo(22.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - horizontalLineToRelative(-1.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(22.0f, 19.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(14.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - verticalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - horizontalLineToRelative(-1.0f) - close() - moveTo(15.0f, 21.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - verticalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - horizontalLineToRelative(1.0f) - close() - moveTo(19.25f, 18.5f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, -3.5f, 0.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 3.5f, 0.0f) - close() - } - } - return _giftCardMoney!! - } - -private var _giftCardMoney: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GiftCardMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GiftCardMultiple.kt deleted file mode 100644 index f032702f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GiftCardMultiple.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.GiftCardMultiple: ImageVector - get() { - if (_giftCardMultiple != null) { - return _giftCardMultiple!! - } - _giftCardMultiple = fluentIcon(name = "Regular.GiftCardMultiple") { - fluentPath { - moveTo(5.0f, 4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(7.5f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) - horizontalLineToRelative(11.5f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) - lineTo(19.5f, 7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - lineTo(5.0f, 4.0f) - close() - moveTo(3.5f, 7.0f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(1.2f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.5f, 9.0f) - curveToRelative(0.0f, 0.36f, 0.07f, 0.7f, 0.2f, 1.0f) - lineTo(3.5f, 10.0f) - lineTo(3.5f, 7.0f) - close() - moveTo(9.5f, 6.7f) - lineTo(9.5f, 5.5f) - horizontalLineToRelative(7.0f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(-5.2f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.3f, -3.5f) - curveToRelative(-0.36f, 0.0f, -0.7f, 0.07f, -1.0f, 0.2f) - close() - moveTo(10.56f, 11.5f) - lineTo(18.0f, 11.5f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-7.0f) - verticalLineToRelative(-3.44f) - lineToRelative(1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-1.72f, -1.72f) - close() - moveTo(8.0f, 12.56f) - lineTo(8.0f, 16.0f) - lineTo(5.0f, 16.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(3.44f) - lineToRelative(-1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineTo(8.0f, 12.56f) - close() - moveTo(11.5f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - lineTo(9.5f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(7.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(1.0f) - lineTo(7.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - close() - moveTo(7.5f, 20.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.6f, -1.5f) - horizontalLineToRelative(11.6f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, -4.0f) - lineTo(20.5f, 6.9f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 22.0f, 9.5f) - verticalLineToRelative(5.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, -5.5f, 5.5f) - horizontalLineToRelative(-9.0f) - close() - } - } - return _giftCardMultiple!! - } - -private var _giftCardMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Glance.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Glance.kt deleted file mode 100644 index 600616d4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Glance.kt +++ /dev/null @@ -1,103 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Glance: ImageVector - get() { - if (_glance != null) { - return _glance!! - } - _glance = fluentIcon(name = "Regular.Glance") { - fluentPath { - moveTo(19.25f, 11.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.79f, 1.75f, 1.75f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-6.5f) - curveToRelative(0.0f, -0.96f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(4.5f) - close() - moveTo(9.27f, 15.01f) - curveToRelative(0.96f, 0.0f, 1.75f, 0.79f, 1.75f, 1.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.96f, -0.79f, 1.74f, -1.75f, 1.74f) - lineTo(4.75f, 21.0f) - curveTo(3.8f, 21.0f, 3.0f, 20.22f, 3.0f, 19.25f) - verticalLineToRelative(-2.49f) - curveToRelative(0.0f, -0.96f, 0.79f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(4.52f) - close() - moveTo(19.25f, 12.51f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.24f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(4.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-6.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(9.27f, 16.51f) - lineTo(4.75f, 16.51f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.13f, 0.12f, 0.24f, 0.25f, 0.24f) - horizontalLineToRelative(4.52f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-2.49f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(9.25f, 3.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 0.92f, -0.7f, 1.67f, -1.6f, 1.74f) - lineToRelative(-0.15f, 0.01f) - horizontalLineToRelative(-4.5f) - curveTo(3.8f, 13.0f, 3.0f, 12.22f, 3.0f, 11.25f) - verticalLineToRelative(-6.5f) - curveTo(3.0f, 3.78f, 3.8f, 3.0f, 4.75f, 3.0f) - horizontalLineToRelative(4.5f) - close() - moveTo(9.25f, 4.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 0.14f, 0.12f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(4.56f) - curveToRelative(0.11f, -0.03f, 0.2f, -0.13f, 0.2f, -0.25f) - verticalLineToRelative(-6.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.26f, -0.25f) - close() - moveTo(19.25f, 3.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(2.5f) - curveTo(21.0f, 8.22f, 20.22f, 9.0f, 19.25f, 9.0f) - horizontalLineToRelative(-4.5f) - curveTo(13.78f, 9.0f, 13.0f, 8.22f, 13.0f, 7.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(4.5f) - close() - moveTo(14.75f, 4.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(4.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-4.5f) - close() - } - } - return _glance!! - } - -private var _glance: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlanceHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlanceHorizontal.kt deleted file mode 100644 index 039275ee..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlanceHorizontal.kt +++ /dev/null @@ -1,102 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.GlanceHorizontal: ImageVector - get() { - if (_glanceHorizontal != null) { - return _glanceHorizontal!! - } - _glanceHorizontal = fluentIcon(name = "Regular.GlanceHorizontal") { - fluentPath { - moveTo(13.0f, 4.75f) - curveTo(13.0f, 3.8f, 12.22f, 3.0f, 11.25f, 3.0f) - horizontalLineToRelative(-6.5f) - curveTo(3.78f, 3.0f, 3.0f, 3.8f, 3.0f, 4.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(6.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-4.5f) - close() - moveTo(9.0f, 14.73f) - curveToRelative(0.0f, -0.96f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(4.75f, 12.98f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.79f, -1.75f, 1.75f) - verticalLineToRelative(4.52f) - curveTo(3.0f, 20.2f, 3.78f, 21.0f, 4.75f, 21.0f) - horizontalLineToRelative(2.49f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.79f, 1.75f, -1.75f) - verticalLineToRelative(-4.52f) - close() - moveTo(11.51f, 4.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(6.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - close() - moveTo(7.5f, 14.73f) - verticalLineToRelative(4.52f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - lineTo(4.75f, 19.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-4.52f) - curveToRelative(0.0f, -0.13f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(2.49f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.12f, 0.25f, 0.25f) - close() - moveTo(21.01f, 14.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-6.5f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - verticalLineToRelative(4.65f) - curveToRelative(0.0f, 0.96f, 0.78f, 1.75f, 1.74f, 1.75f) - horizontalLineToRelative(6.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.79f, 1.75f, -1.75f) - verticalLineToRelative(-4.5f) - close() - moveTo(19.51f, 14.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.14f, -0.1f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-4.56f) - curveToRelative(0.04f, -0.11f, 0.13f, -0.2f, 0.25f, -0.2f) - horizontalLineToRelative(6.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.12f, 0.25f, 0.26f) - close() - moveTo(21.01f, 4.75f) - curveTo(21.0f, 3.8f, 20.22f, 3.0f, 19.25f, 3.0f) - horizontalLineToRelative(-2.5f) - curveTo(15.8f, 3.0f, 15.0f, 3.8f, 15.0f, 4.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.97f, 0.79f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-4.5f) - close() - moveTo(19.51f, 9.25f) - curveToRelative(0.0f, 0.14f, -0.1f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(2.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(4.5f) - close() - } - } - return _glanceHorizontal!! - } - -private var _glanceHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlanceHorizontalSparkles.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlanceHorizontalSparkles.kt deleted file mode 100644 index 99d5c720..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlanceHorizontalSparkles.kt +++ /dev/null @@ -1,122 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.GlanceHorizontalSparkles: ImageVector - get() { - if (_glanceHorizontalSparkles != null) { - return _glanceHorizontalSparkles!! - } - _glanceHorizontalSparkles = fluentIcon(name = "Regular.GlanceHorizontalSparkles") { - fluentPath { - moveTo(16.09f, 6.41f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.35f, -0.95f) - lineTo(13.36f, 5.0f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, -1.03f) - lineToRelative(1.38f, -0.44f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.76f, -1.77f) - lineToRelative(0.01f, -0.03f) - lineToRelative(0.45f, -1.38f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, 1.03f, 0.0f) - lineToRelative(0.44f, 1.38f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.8f, 1.8f) - lineToRelative(1.38f, 0.44f) - lineToRelative(0.03f, 0.01f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, 1.03f) - lineToRelative(-1.38f, 0.44f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.8f, 1.8f) - lineToRelative(-0.45f, 1.38f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, -1.03f, 0.0f) - lineToRelative(-0.44f, -1.38f) - curveToRelative(-0.1f, -0.3f, -0.25f, -0.6f, -0.45f, -0.85f) - close() - moveTo(23.79f, 10.21f) - lineTo(23.02f, 9.96f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, -1.0f, -1.0f) - lineToRelative(-0.25f, -0.76f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, -0.57f, 0.0f) - lineToRelative(-0.25f, 0.77f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, -0.98f, 1.0f) - lineToRelative(-0.77f, 0.24f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.77f, 0.25f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, 1.0f) - lineToRelative(0.24f, 0.77f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.58f, 0.0f) - lineToRelative(0.24f, -0.77f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, -1.0f) - lineToRelative(0.77f, -0.24f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, -0.57f) - horizontalLineToRelative(-0.02f) - close() - moveTo(10.25f, 3.01f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.74f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-5.5f) - curveTo(3.78f, 11.0f, 3.0f, 10.22f, 3.0f, 9.25f) - verticalLineToRelative(-4.5f) - curveTo(3.0f, 3.8f, 3.78f, 3.0f, 4.75f, 3.0f) - horizontalLineToRelative(5.5f) - close() - moveTo(10.5f, 9.25f) - verticalLineToRelative(-4.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(5.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - close() - moveTo(7.24f, 12.98f) - curveToRelative(0.96f, 0.0f, 1.75f, 0.79f, 1.75f, 1.75f) - verticalLineToRelative(4.52f) - curveToRelative(0.0f, 0.96f, -0.79f, 1.75f, -1.75f, 1.75f) - lineTo(4.75f, 21.0f) - curveTo(3.78f, 21.0f, 3.0f, 20.2f, 3.0f, 19.25f) - verticalLineToRelative(-4.52f) - curveToRelative(0.0f, -0.96f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.49f) - close() - moveTo(7.49f, 19.25f) - verticalLineToRelative(-4.52f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - lineTo(4.75f, 14.48f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(4.52f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(2.49f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - close() - moveTo(19.25f, 13.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.96f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-6.5f) - curveTo(11.8f, 21.0f, 11.0f, 20.2f, 11.0f, 19.25f) - lineTo(11.0f, 14.6f) - curveToRelative(0.08f, -0.9f, 0.83f, -1.6f, 1.75f, -1.6f) - horizontalLineToRelative(6.5f) - close() - moveTo(19.5f, 19.25f) - verticalLineToRelative(-4.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.24f, 0.2f) - verticalLineToRelative(4.55f) - curveToRelative(0.0f, 0.14f, 0.1f, 0.25f, 0.24f, 0.25f) - horizontalLineToRelative(6.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - close() - } - } - return _glanceHorizontalSparkles!! - } - -private var _glanceHorizontalSparkles: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Glasses.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Glasses.kt deleted file mode 100644 index c4c6ff24..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Glasses.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Glasses: ImageVector - get() { - if (_glasses != null) { - return _glasses!! - } - _glasses = fluentIcon(name = "Regular.Glasses") { - fluentPath { - moveTo(7.9f, 5.0f) - horizontalLineToRelative(1.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(7.91f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.48f, 0.17f) - lineToRelative(-0.07f, 0.07f) - lineTo(5.28f, 9.0f) - horizontalLineToRelative(3.47f) - curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) - lineTo(13.0f, 11.0f) - curveToRelative(0.13f, -1.12f, 1.08f, -2.0f, 2.24f, -2.0f) - horizontalLineToRelative(3.48f) - lineToRelative(-2.09f, -2.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.44f, -0.23f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-1.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(16.09f, 5.0f) - curveToRelative(0.57f, 0.0f, 1.11f, 0.21f, 1.52f, 0.6f) - lineToRelative(0.14f, 0.12f) - lineToRelative(3.64f, 3.95f) - lineToRelative(0.12f, 0.18f) - curveToRelative(0.3f, 0.38f, 0.49f, 0.87f, 0.49f, 1.4f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-2.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 13.0f, 14.75f) - lineTo(13.0f, 12.5f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(2.25f) - curveTo(11.0f, 16.55f, 9.54f, 18.0f, 7.75f, 18.0f) - horizontalLineToRelative(-2.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.56f, 0.2f, -1.08f, 0.55f, -1.47f) - lineToRelative(0.03f, -0.06f) - lineToRelative(0.05f, -0.05f) - lineToRelative(3.62f, -3.94f) - curveToRelative(0.39f, -0.42f, 0.91f, -0.68f, 1.47f, -0.72f) - lineTo(7.91f, 5.0f) - horizontalLineToRelative(1.34f) - lineTo(7.9f, 5.0f) - close() - moveTo(8.75f, 10.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.96f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.79f, 1.75f, -1.75f) - verticalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(19.75f, 10.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.96f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.79f, 1.75f, -1.75f) - verticalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - } - } - return _glasses!! - } - -private var _glasses: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlassesOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlassesOff.kt deleted file mode 100644 index 271b4e8e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlassesOff.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.GlassesOff: ImageVector - get() { - if (_glassesOff != null) { - return _glassesOff!! - } - _glassesOff = fluentIcon(name = "Regular.GlassesOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(3.27f, 3.27f) - lineToRelative(-2.86f, 3.12f) - lineToRelative(-0.05f, 0.05f) - lineToRelative(-0.03f, 0.06f) - curveToRelative(-0.34f, 0.4f, -0.55f, 0.9f, -0.55f, 1.47f) - verticalLineToRelative(3.5f) - curveTo(2.0f, 16.55f, 3.46f, 18.0f, 5.25f, 18.0f) - horizontalLineToRelative(2.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(11.0f, 12.5f) - horizontalLineToRelative(0.44f) - lineTo(13.0f, 14.06f) - verticalLineToRelative(0.69f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(0.69f) - lineToRelative(3.78f, 3.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(7.94f, 9.0f) - lineTo(5.28f, 9.0f) - lineToRelative(1.27f, -1.38f) - lineTo(7.94f, 9.0f) - close() - moveTo(4.25f, 10.5f) - horizontalLineToRelative(4.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.96f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.79f, -1.75f, -1.75f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(13.3f, 10.12f) - lineTo(14.5f, 11.32f) - verticalLineToRelative(-0.07f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.7f, -0.4f, 1.3f, -1.0f, 1.57f) - lineToRelative(1.1f, 1.1f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 1.4f, -2.67f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.53f, -0.18f, -1.02f, -0.49f, -1.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.12f, -0.18f) - lineToRelative(-3.64f, -3.95f) - lineToRelative(-0.14f, -0.13f) - curveTo(17.2f, 5.21f, 16.66f, 5.0f, 16.1f, 5.0f) - lineTo(14.65f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - lineTo(16.19f, 6.5f) - curveToRelative(0.18f, 0.03f, 0.34f, 0.11f, 0.45f, 0.24f) - lineTo(18.73f, 9.0f) - horizontalLineToRelative(-3.48f) - curveToRelative(-0.83f, 0.0f, -1.56f, 0.45f, -1.95f, 1.12f) - close() - } - } - return _glassesOff!! - } - -private var _glassesOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Globe.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Globe.kt deleted file mode 100644 index 20ab7af2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Globe.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Globe: ImageVector - get() { - if (_globe != null) { - return _globe!! - } - _globe = fluentIcon(name = "Regular.Globe") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(14.94f, 16.5f) - lineTo(9.06f, 16.5f) - curveToRelative(0.65f, 2.41f, 1.79f, 4.0f, 2.94f, 4.0f) - reflectiveCurveToRelative(2.29f, -1.59f, 2.94f, -4.0f) - close() - moveTo(7.51f, 16.5f) - lineTo(4.79f, 16.5f) - arcToRelative(8.53f, 8.53f, 0.0f, false, false, 4.09f, 3.41f) - curveToRelative(-0.52f, -0.82f, -0.95f, -1.85f, -1.27f, -3.02f) - lineToRelative(-0.1f, -0.39f) - close() - moveTo(19.21f, 16.5f) - lineTo(16.5f, 16.5f) - curveToRelative(-0.32f, 1.33f, -0.79f, 2.5f, -1.37f, 3.41f) - arcToRelative(8.53f, 8.53f, 0.0f, false, false, 3.9f, -3.13f) - lineToRelative(0.2f, -0.28f) - close() - moveTo(7.1f, 10.0f) - lineTo(3.74f, 10.0f) - verticalLineToRelative(0.02f) - arcToRelative(8.52f, 8.52f, 0.0f, false, false, 0.3f, 4.98f) - horizontalLineToRelative(3.18f) - arcToRelative(20.3f, 20.3f, 0.0f, false, true, -0.13f, -5.0f) - close() - moveTo(15.4f, 10.0f) - lineTo(8.6f, 10.0f) - arcToRelative(18.97f, 18.97f, 0.0f, false, false, 0.14f, 5.0f) - horizontalLineToRelative(6.52f) - arcToRelative(18.5f, 18.5f, 0.0f, false, false, 0.14f, -5.0f) - close() - moveTo(20.27f, 10.0f) - horizontalLineToRelative(-3.35f) - arcToRelative(20.85f, 20.85f, 0.0f, false, true, -0.13f, 5.0f) - horizontalLineToRelative(3.18f) - arcToRelative(8.48f, 8.48f, 0.0f, false, false, 0.3f, -5.0f) - close() - moveTo(8.88f, 4.09f) - horizontalLineToRelative(-0.02f) - arcToRelative(8.53f, 8.53f, 0.0f, false, false, -4.61f, 4.4f) - lineToRelative(3.05f, 0.01f) - curveToRelative(0.31f, -1.75f, 0.86f, -3.28f, 1.58f, -4.41f) - close() - moveTo(12.0f, 3.49f) - lineTo(11.88f, 3.5f) - curveToRelative(-1.26f, 0.12f, -2.48f, 2.12f, -3.05f, 5.0f) - horizontalLineToRelative(6.34f) - curveToRelative(-0.56f, -2.87f, -1.78f, -4.87f, -3.04f, -5.0f) - lineTo(12.0f, 3.5f) - close() - moveTo(15.12f, 4.09f) - lineTo(15.22f, 4.26f) - arcTo(12.64f, 12.64f, 0.0f, false, true, 16.7f, 8.5f) - horizontalLineToRelative(3.05f) - arcToRelative(8.53f, 8.53f, 0.0f, false, false, -4.34f, -4.29f) - lineToRelative(-0.29f, -0.12f) - close() - } - } - return _globe!! - } - -private var _globe: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlobeAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlobeAdd.kt deleted file mode 100644 index e7095041..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlobeAdd.kt +++ /dev/null @@ -1,102 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.GlobeAdd: ImageVector - get() { - if (_globeAdd != null) { - return _globeAdd!! - } - _globeAdd = fluentIcon(name = "Regular.GlobeAdd") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 9.97f, 10.78f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.47f, -1.05f) - verticalLineToRelative(0.18f) - verticalLineToRelative(-0.32f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, -0.23f, -1.59f) - lineTo(16.9f, 10.0f) - lineToRelative(0.07f, 1.02f) - curveToRelative(-0.52f, 0.04f, -1.02f, 0.14f, -1.49f, 0.3f) - curveToRelative(-0.01f, -0.45f, -0.05f, -0.9f, -0.1f, -1.32f) - lineTo(8.6f, 10.0f) - arcToRelative(18.97f, 18.97f, 0.0f, false, false, 0.14f, 5.0f) - horizontalLineToRelative(2.76f) - curveToRelative(-0.2f, 0.48f, -0.34f, 0.98f, -0.42f, 1.5f) - lineTo(9.06f, 16.5f) - curveToRelative(0.6f, 2.22f, 1.6f, 3.74f, 2.66f, 3.97f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, 1.06f, 1.5f) - arcTo(10.0f, 10.0f, 0.0f, true, true, 12.0f, 2.0f) - close() - moveTo(17.5f, 14.0f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) - lineToRelative(-0.01f, 0.1f) - lineTo(17.0f, 17.0f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(0.18f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) - lineToRelative(0.1f, 0.01f) - lineTo(17.0f, 18.0f) - verticalLineToRelative(2.6f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - horizontalLineToRelative(0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) - lineToRelative(0.01f, -0.1f) - lineTo(18.0f, 18.0f) - horizontalLineToRelative(2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - verticalLineToRelative(-0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) - lineToRelative(-0.1f, -0.01f) - lineTo(18.0f, 17.0f) - verticalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) - horizontalLineToRelative(-0.09f) - close() - moveTo(7.51f, 16.5f) - lineTo(4.79f, 16.5f) - arcToRelative(8.53f, 8.53f, 0.0f, false, false, 4.1f, 3.41f) - arcToRelative(11.41f, 11.41f, 0.0f, false, true, -1.38f, -3.4f) - close() - moveTo(3.74f, 10.0f) - verticalLineToRelative(0.02f) - arcToRelative(8.52f, 8.52f, 0.0f, false, false, 0.3f, 4.98f) - horizontalLineToRelative(3.18f) - arcToRelative(20.3f, 20.3f, 0.0f, false, true, -0.13f, -5.0f) - lineTo(3.74f, 10.0f) - close() - moveTo(8.88f, 4.1f) - horizontalLineToRelative(-0.02f) - arcToRelative(8.53f, 8.53f, 0.0f, false, false, -4.6f, 4.4f) - lineTo(7.3f, 8.5f) - curveToRelative(0.31f, -1.75f, 0.86f, -3.28f, 1.58f, -4.4f) - close() - moveTo(12.0f, 3.5f) - horizontalLineToRelative(-0.11f) - curveToRelative(-1.27f, 0.12f, -2.5f, 2.12f, -3.06f, 5.0f) - horizontalLineToRelative(6.34f) - curveToRelative(-0.58f, -2.96f, -1.86f, -5.0f, -3.17f, -5.0f) - close() - moveTo(15.12f, 4.1f) - lineTo(15.22f, 4.26f) - arcTo(12.64f, 12.64f, 0.0f, false, true, 16.7f, 8.5f) - horizontalLineToRelative(3.05f) - curveToRelative(-0.9f, -2.0f, -2.57f, -3.6f, -4.63f, -4.4f) - close() - } - } - return _globeAdd!! - } - -private var _globeAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlobeClock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlobeClock.kt deleted file mode 100644 index 4ce409a8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlobeClock.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.GlobeClock: ImageVector - get() { - if (_globeClock != null) { - return _globeClock!! - } - _globeClock = fluentIcon(name = "Regular.GlobeClock") { - fluentPath { - moveTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -9.22f, 9.97f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, -1.06f, -1.5f) - curveToRelative(-1.06f, -0.23f, -2.06f, -1.75f, -2.66f, -3.97f) - horizontalLineToRelative(2.02f) - curveToRelative(0.08f, -0.52f, 0.22f, -1.02f, 0.42f, -1.5f) - lineTo(8.74f, 15.0f) - arcToRelative(18.5f, 18.5f, 0.0f, false, true, -0.14f, -5.0f) - horizontalLineToRelative(6.8f) - curveToRelative(0.04f, 0.43f, 0.08f, 0.87f, 0.09f, 1.32f) - curveToRelative(0.47f, -0.16f, 0.97f, -0.26f, 1.5f, -0.3f) - lineTo(16.9f, 10.0f) - horizontalLineToRelative(3.36f) - curveToRelative(0.12f, 0.51f, 0.2f, 1.05f, 0.22f, 1.59f) - lineToRelative(0.01f, 0.32f) - verticalLineToRelative(-0.18f) - curveToRelative(0.54f, 0.28f, 1.03f, 0.64f, 1.47f, 1.05f) - curveToRelative(0.02f, -0.25f, 0.03f, -0.52f, 0.03f, -0.78f) - close() - moveTo(4.8f, 16.5f) - lineTo(7.5f, 16.5f) - curveToRelative(0.32f, 1.34f, 0.8f, 2.5f, 1.37f, 3.41f) - arcToRelative(8.53f, 8.53f, 0.0f, false, true, -4.1f, -3.4f) - close() - moveTo(3.74f, 10.02f) - lineTo(3.74f, 10.0f) - lineTo(7.1f, 10.0f) - arcToRelative(20.85f, 20.85f, 0.0f, false, false, 0.13f, 5.0f) - lineTo(4.04f, 15.0f) - arcToRelative(8.48f, 8.48f, 0.0f, false, true, -0.3f, -4.98f) - close() - moveTo(8.86f, 4.1f) - horizontalLineToRelative(0.02f) - arcTo(12.36f, 12.36f, 0.0f, false, false, 7.3f, 8.5f) - lineTo(4.25f, 8.5f) - curveToRelative(0.9f, -2.0f, 2.56f, -3.59f, 4.61f, -4.4f) - close() - moveTo(11.89f, 3.5f) - lineTo(12.0f, 3.5f) - curveToRelative(1.3f, 0.0f, 2.59f, 2.04f, 3.17f, 5.0f) - lineTo(8.83f, 8.5f) - curveToRelative(0.57f, -2.88f, 1.79f, -4.88f, 3.06f, -5.0f) - close() - moveTo(15.23f, 4.26f) - lineTo(15.13f, 4.09f) - arcToRelative(8.53f, 8.53f, 0.0f, false, true, 4.62f, 4.41f) - lineTo(16.7f, 8.5f) - curveToRelative(-0.3f, -1.66f, -0.8f, -3.12f, -1.47f, -4.24f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(17.5f, 17.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(17.0f, 18.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - verticalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - verticalLineToRelative(2.5f) - close() - } - } - return _globeClock!! - } - -private var _globeClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlobeDesktop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlobeDesktop.kt deleted file mode 100644 index b80fb13c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlobeDesktop.kt +++ /dev/null @@ -1,88 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.GlobeDesktop: ImageVector - get() { - if (_globeDesktop != null) { - return _globeDesktop!! - } - _globeDesktop = fluentIcon(name = "Regular.GlobeDesktop") { - fluentPath { - moveTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -11.0f, 9.95f) - verticalLineToRelative(-1.84f) - curveToRelative(-0.78f, -0.61f, -1.48f, -1.9f, -1.94f, -3.61f) - lineTo(11.0f, 16.5f) - lineTo(11.0f, 15.0f) - lineTo(8.74f, 15.0f) - arcToRelative(18.5f, 18.5f, 0.0f, false, true, -0.14f, -5.0f) - horizontalLineToRelative(6.8f) - curveToRelative(0.06f, 0.64f, 0.1f, 1.3f, 0.1f, 2.0f) - lineTo(17.0f, 12.0f) - curveToRelative(0.0f, -0.68f, -0.03f, -1.35f, -0.1f, -2.0f) - horizontalLineToRelative(3.36f) - curveToRelative(0.16f, 0.64f, 0.24f, 1.31f, 0.24f, 2.0f) - lineTo(22.0f, 12.0f) - close() - moveTo(4.8f, 16.5f) - lineTo(7.5f, 16.5f) - lineToRelative(0.1f, 0.4f) - curveToRelative(0.32f, 1.16f, 0.75f, 2.2f, 1.27f, 3.01f) - arcToRelative(8.53f, 8.53f, 0.0f, false, true, -4.1f, -3.41f) - close() - moveTo(3.74f, 10.0f) - horizontalLineToRelative(3.35f) - arcToRelative(20.85f, 20.85f, 0.0f, false, false, 0.13f, 5.0f) - lineTo(4.04f, 15.0f) - arcToRelative(8.48f, 8.48f, 0.0f, false, true, -0.3f, -4.98f) - lineTo(3.74f, 10.0f) - close() - moveTo(8.86f, 4.1f) - lineTo(8.88f, 4.09f) - arcTo(12.36f, 12.36f, 0.0f, false, false, 7.3f, 8.5f) - lineTo(4.25f, 8.5f) - curveToRelative(0.9f, -2.0f, 2.56f, -3.59f, 4.6f, -4.4f) - close() - moveTo(11.88f, 3.5f) - horizontalLineToRelative(0.25f) - curveToRelative(1.26f, 0.13f, 2.48f, 2.13f, 3.04f, 5.0f) - lineTo(8.83f, 8.5f) - curveToRelative(0.57f, -2.88f, 1.79f, -4.88f, 3.05f, -5.0f) - close() - moveTo(15.23f, 4.26f) - lineTo(15.12f, 4.09f) - lineTo(15.42f, 4.21f) - arcToRelative(8.53f, 8.53f, 0.0f, false, true, 4.33f, 4.29f) - lineTo(16.7f, 8.5f) - curveToRelative(-0.3f, -1.66f, -0.8f, -3.12f, -1.47f, -4.24f) - close() - moveTo(12.0f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) - horizontalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - lineTo(19.0f, 22.0f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineToRelative(-5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineToRelative(-9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(5.0f) - close() - } - } - return _globeDesktop!! - } - -private var _globeDesktop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlobeLocation.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlobeLocation.kt deleted file mode 100644 index 9744a751..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlobeLocation.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.GlobeLocation: ImageVector - get() { - if (_globeLocation != null) { - return _globeLocation!! - } - _globeLocation = fluentIcon(name = "Regular.GlobeLocation") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 9.94f, 11.16f) - curveToRelative(-0.42f, -0.43f, -0.9f, -0.79f, -1.44f, -1.06f) - lineTo(20.5f, 12.0f) - curveToRelative(0.0f, -0.69f, -0.08f, -1.36f, -0.24f, -2.0f) - horizontalLineToRelative(-3.35f) - curveToRelative(0.05f, 0.52f, 0.08f, 1.05f, 0.09f, 1.59f) - curveToRelative(-0.53f, 0.1f, -1.03f, 0.27f, -1.5f, 0.5f) - lineTo(15.5f, 12.0f) - curveToRelative(0.0f, -0.7f, -0.04f, -1.36f, -0.1f, -2.0f) - lineTo(8.6f, 10.0f) - arcToRelative(18.97f, 18.97f, 0.0f, false, false, 0.14f, 5.0f) - horizontalLineToRelative(4.13f) - curveToRelative(-0.18f, 0.47f, -0.3f, 0.97f, -0.35f, 1.5f) - lineTo(9.06f, 16.5f) - curveToRelative(0.65f, 2.41f, 1.79f, 4.0f, 2.94f, 4.0f) - curveToRelative(0.46f, 0.0f, 0.9f, -0.25f, 1.33f, -0.7f) - curveToRelative(0.36f, 0.62f, 0.83f, 1.23f, 1.4f, 1.83f) - arcTo(10.0f, 10.0f, 0.0f, true, true, 12.0f, 2.0f) - close() - moveTo(7.5f, 16.5f) - lineTo(4.8f, 16.5f) - arcToRelative(8.53f, 8.53f, 0.0f, false, false, 4.09f, 3.41f) - curveToRelative(-0.52f, -0.82f, -0.95f, -1.85f, -1.27f, -3.02f) - lineToRelative(-0.1f, -0.39f) - close() - moveTo(7.1f, 10.0f) - lineTo(3.73f, 10.0f) - verticalLineToRelative(0.02f) - arcToRelative(8.52f, 8.52f, 0.0f, false, false, 0.3f, 4.98f) - horizontalLineToRelative(3.18f) - arcToRelative(20.3f, 20.3f, 0.0f, false, true, -0.13f, -5.0f) - close() - moveTo(8.88f, 4.09f) - horizontalLineToRelative(-0.02f) - arcToRelative(8.53f, 8.53f, 0.0f, false, false, -4.61f, 4.4f) - lineToRelative(3.05f, 0.01f) - curveToRelative(0.31f, -1.75f, 0.86f, -3.28f, 1.58f, -4.41f) - close() - moveTo(12.0f, 3.49f) - lineTo(11.88f, 3.5f) - curveToRelative(-1.26f, 0.12f, -2.48f, 2.12f, -3.05f, 5.0f) - horizontalLineToRelative(6.34f) - curveToRelative(-0.56f, -2.87f, -1.78f, -4.87f, -3.04f, -5.0f) - lineTo(12.0f, 3.5f) - close() - moveTo(15.12f, 4.09f) - lineTo(15.22f, 4.26f) - arcTo(12.64f, 12.64f, 0.0f, false, true, 16.7f, 8.5f) - horizontalLineToRelative(3.05f) - arcToRelative(8.53f, 8.53f, 0.0f, false, false, -4.34f, -4.29f) - lineToRelative(-0.29f, -0.12f) - close() - moveTo(22.5f, 16.99f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, -9.0f, 0.0f) - curveToRelative(0.0f, 1.87f, 1.42f, 3.82f, 4.2f, 5.9f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.6f, 0.0f) - curveToRelative(2.78f, -2.08f, 4.2f, -4.03f, 4.2f, -5.9f) - close() - moveTo(16.5f, 16.99f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - } - } - return _globeLocation!! - } - -private var _globeLocation: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlobePerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlobePerson.kt deleted file mode 100644 index f4e5782a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlobePerson.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.GlobePerson: ImageVector - get() { - if (_globePerson != null) { - return _globePerson!! - } - _globePerson = fluentIcon(name = "Regular.GlobePerson") { - fluentPath { - moveTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -8.42f, 9.88f) - arcToRelative(3.68f, 3.68f, 0.0f, false, true, -0.57f, -1.78f) - curveToRelative(-0.33f, 0.26f, -0.67f, 0.4f, -1.01f, 0.4f) - curveToRelative(-1.15f, 0.0f, -2.29f, -1.59f, -2.94f, -4.0f) - horizontalLineToRelative(6.57f) - curveToRelative(-0.3f, -0.44f, -0.52f, -0.95f, -0.6f, -1.5f) - horizontalLineToRelative(-6.3f) - arcToRelative(18.5f, 18.5f, 0.0f, false, true, -0.13f, -5.0f) - horizontalLineToRelative(6.8f) - arcToRelative(18.97f, 18.97f, 0.0f, false, true, 0.09f, 2.72f) - curveToRelative(0.35f, -0.6f, 0.87f, -1.08f, 1.5f, -1.38f) - curveToRelative(-0.01f, -0.46f, -0.04f, -0.9f, -0.08f, -1.34f) - horizontalLineToRelative(3.35f) - curveToRelative(0.13f, 0.52f, 0.2f, 1.06f, 0.23f, 1.62f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 1.39f, 1.96f) - curveToRelative(0.08f, -0.52f, 0.12f, -1.04f, 0.12f, -1.58f) - close() - moveTo(4.8f, 16.5f) - lineTo(7.5f, 16.5f) - lineToRelative(0.1f, 0.4f) - curveToRelative(0.32f, 1.16f, 0.75f, 2.2f, 1.27f, 3.01f) - arcToRelative(8.53f, 8.53f, 0.0f, false, true, -4.1f, -3.41f) - close() - moveTo(3.74f, 10.0f) - horizontalLineToRelative(3.35f) - arcToRelative(20.85f, 20.85f, 0.0f, false, false, 0.13f, 5.0f) - lineTo(4.04f, 15.0f) - arcToRelative(8.48f, 8.48f, 0.0f, false, true, -0.3f, -4.98f) - lineTo(3.74f, 10.0f) - close() - moveTo(8.86f, 4.1f) - lineTo(8.88f, 4.09f) - arcTo(12.36f, 12.36f, 0.0f, false, false, 7.3f, 8.5f) - lineTo(4.25f, 8.5f) - curveToRelative(0.9f, -2.0f, 2.56f, -3.59f, 4.6f, -4.4f) - close() - moveTo(11.88f, 3.5f) - horizontalLineToRelative(0.25f) - curveToRelative(1.26f, 0.13f, 2.47f, 2.13f, 3.04f, 5.0f) - lineTo(8.83f, 8.5f) - curveToRelative(0.57f, -2.88f, 1.79f, -4.88f, 3.05f, -5.0f) - close() - moveTo(15.23f, 4.26f) - lineTo(15.12f, 4.09f) - lineTo(15.42f, 4.21f) - arcToRelative(8.53f, 8.53f, 0.0f, false, true, 4.33f, 4.29f) - lineTo(16.7f, 8.5f) - curveToRelative(-0.3f, -1.66f, -0.8f, -3.12f, -1.47f, -4.24f) - close() - moveTo(21.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(23.0f, 19.87f) - curveToRelative(0.0f, 1.56f, -1.29f, 3.13f, -4.5f, 3.13f) - reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _globePerson!! - } - -private var _globePerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlobeSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlobeSearch.kt deleted file mode 100644 index 95d5f0bb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlobeSearch.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.GlobeSearch: ImageVector - get() { - if (_globeSearch != null) { - return _globeSearch!! - } - _globeSearch = fluentIcon(name = "Regular.GlobeSearch") { - fluentPath { - moveTo(3.44f, 9.96f) - arcToRelative(4.93f, 4.93f, 0.0f, false, false, 6.23f, 7.57f) - lineToRelative(4.26f, 4.25f) - arcToRelative(0.77f, 0.77f, 0.0f, false, false, 1.17f, -1.0f) - lineToRelative(-0.08f, -0.1f) - lineToRelative(-4.21f, -4.2f) - arcToRelative(4.93f, 4.93f, 0.0f, false, false, -7.37f, -6.52f) - close() - moveTo(12.03f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, -9.76f, 7.76f) - arcToRelative(5.83f, 5.83f, 0.0f, false, true, 2.24f, -1.73f) - arcToRelative(8.52f, 8.52f, 0.0f, false, true, 4.4f, -3.94f) - lineToRelative(-0.11f, 0.17f) - curveToRelative(-0.54f, 0.9f, -0.97f, 2.01f, -1.28f, 3.28f) - curveToRelative(0.5f, 0.05f, 1.0f, 0.17f, 1.47f, 0.34f) - curveToRelative(0.63f, -2.63f, 1.82f, -4.38f, 3.04f, -4.38f) - horizontalLineToRelative(0.11f) - curveToRelative(1.27f, 0.12f, 2.49f, 2.12f, 3.06f, 5.0f) - horizontalLineToRelative(-5.0f) - arcToRelative(5.95f, 5.95f, 0.0f, false, true, 1.55f, 1.5f) - horizontalLineToRelative(3.67f) - arcToRelative(18.97f, 18.97f, 0.0f, false, true, -0.13f, 5.0f) - horizontalLineToRelative(-2.65f) - curveToRelative(-0.08f, 0.29f, -0.18f, 0.57f, -0.3f, 0.84f) - lineToRelative(-0.13f, 0.27f) - lineToRelative(-0.12f, 0.23f) - lineToRelative(0.16f, 0.16f) - horizontalLineToRelative(2.71f) - curveToRelative(-0.2f, 0.75f, -0.45f, 1.42f, -0.73f, 1.98f) - lineToRelative(1.1f, 1.11f) - curveToRelative(0.5f, -0.86f, 0.9f, -1.9f, 1.19f, -3.09f) - horizontalLineToRelative(2.72f) - arcToRelative(8.54f, 8.54f, 0.0f, false, true, -3.73f, 3.26f) - lineToRelative(0.22f, 0.22f) - lineToRelative(0.13f, 0.14f) - curveToRelative(0.22f, 0.3f, 0.34f, 0.63f, 0.37f, 0.96f) - arcTo(10.0f, 10.0f, 0.0f, false, false, 12.03f, 2.0f) - close() - moveTo(9.3f, 11.05f) - arcToRelative(3.38f, 3.38f, 0.0f, true, true, -4.78f, 4.78f) - arcToRelative(3.38f, 3.38f, 0.0f, false, true, 4.78f, -4.78f) - close() - moveTo(16.93f, 10.0f) - horizontalLineToRelative(3.36f) - verticalLineToRelative(0.03f) - arcTo(8.52f, 8.52f, 0.0f, false, true, 20.0f, 15.0f) - lineTo(16.8f, 15.0f) - arcToRelative(20.31f, 20.31f, 0.0f, false, false, 0.12f, -5.0f) - close() - moveTo(15.14f, 4.09f) - horizontalLineToRelative(0.03f) - curveToRelative(2.04f, 0.82f, 3.7f, 2.41f, 4.6f, 4.4f) - horizontalLineToRelative(-3.04f) - arcToRelative(12.36f, 12.36f, 0.0f, false, false, -1.59f, -4.4f) - close() - } - } - return _globeSearch!! - } - -private var _globeSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlobeShield.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlobeShield.kt deleted file mode 100644 index 794f2e76..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlobeShield.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.GlobeShield: ImageVector - get() { - if (_globeShield != null) { - return _globeShield!! - } - _globeShield = fluentIcon(name = "Regular.GlobeShield") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 10.0f, 9.89f) - arcToRelative(6.06f, 6.06f, 0.0f, false, true, -1.52f, -0.57f) - curveToRelative(-0.04f, -0.45f, -0.11f, -0.9f, -0.22f, -1.32f) - horizontalLineToRelative(-1.94f) - arcToRelative(1.62f, 1.62f, 0.0f, false, false, -0.64f, 0.0f) - horizontalLineToRelative(-0.77f) - lineToRelative(0.03f, 0.37f) - curveToRelative(-0.33f, 0.27f, -0.83f, 0.65f, -1.45f, 0.97f) - curveToRelative(-0.02f, -0.46f, -0.05f, -0.9f, -0.1f, -1.34f) - lineTo(8.6f, 10.0f) - arcToRelative(18.97f, 18.97f, 0.0f, false, false, 0.14f, 5.0f) - lineTo(12.0f, 15.0f) - verticalLineToRelative(1.5f) - lineTo(9.06f, 16.5f) - curveToRelative(0.65f, 2.41f, 1.79f, 4.0f, 2.94f, 4.0f) - curveToRelative(0.28f, 0.0f, 0.55f, -0.09f, 0.82f, -0.26f) - curveToRelative(0.34f, 0.6f, 0.75f, 1.12f, 1.2f, 1.56f) - arcTo(10.0f, 10.0f, 0.0f, true, true, 12.0f, 2.0f) - close() - moveTo(7.5f, 16.5f) - lineTo(4.8f, 16.5f) - arcToRelative(8.53f, 8.53f, 0.0f, false, false, 4.09f, 3.41f) - curveToRelative(-0.52f, -0.82f, -0.95f, -1.85f, -1.27f, -3.02f) - lineToRelative(-0.1f, -0.39f) - close() - moveTo(7.1f, 10.0f) - lineTo(3.73f, 10.0f) - verticalLineToRelative(0.02f) - arcToRelative(8.52f, 8.52f, 0.0f, false, false, 0.3f, 4.98f) - horizontalLineToRelative(3.18f) - arcToRelative(20.3f, 20.3f, 0.0f, false, true, -0.13f, -5.0f) - close() - moveTo(8.88f, 4.09f) - horizontalLineToRelative(-0.02f) - arcToRelative(8.53f, 8.53f, 0.0f, false, false, -4.61f, 4.4f) - lineToRelative(3.05f, 0.01f) - curveToRelative(0.31f, -1.75f, 0.86f, -3.28f, 1.58f, -4.41f) - close() - moveTo(12.0f, 3.49f) - lineTo(11.88f, 3.5f) - curveToRelative(-1.26f, 0.12f, -2.48f, 2.12f, -3.05f, 5.0f) - horizontalLineToRelative(6.34f) - curveToRelative(-0.56f, -2.87f, -1.78f, -4.87f, -3.04f, -5.0f) - lineTo(12.0f, 3.5f) - close() - moveTo(15.12f, 4.09f) - lineTo(15.22f, 4.26f) - arcTo(12.64f, 12.64f, 0.0f, false, true, 16.7f, 8.5f) - horizontalLineToRelative(3.05f) - arcToRelative(8.53f, 8.53f, 0.0f, false, false, -4.34f, -4.29f) - lineToRelative(-0.29f, -0.12f) - close() - moveTo(22.5f, 12.98f) - arcToRelative(7.7f, 7.7f, 0.0f, false, true, -4.11f, -1.87f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.77f, 0.0f) - curveToRelative(-0.69f, 0.58f, -2.21f, 1.7f, -4.12f, 1.87f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, -0.5f, 0.52f) - lineTo(13.0f, 17.0f) - curveToRelative(0.0f, 4.22f, 4.1f, 5.72f, 4.87f, 5.96f) - curveToRelative(0.09f, 0.03f, 0.17f, 0.03f, 0.26f, 0.0f) - curveTo(18.9f, 22.72f, 23.0f, 21.22f, 23.0f, 17.0f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.28f, -0.22f, -0.5f, -0.5f, -0.52f) - close() - } - } - return _globeShield!! - } - -private var _globeShield: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlobeSurface.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlobeSurface.kt deleted file mode 100644 index 570e09df..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlobeSurface.kt +++ /dev/null @@ -1,97 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.GlobeSurface: ImageVector - get() { - if (_globeSurface != null) { - return _globeSurface!! - } - _globeSurface = fluentIcon(name = "Regular.GlobeSurface") { - fluentPath { - moveTo(20.5f, 10.5f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, -17.0f, 0.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 17.0f, 0.0f) - close() - moveTo(13.47f, 15.87f) - curveToRelative(-0.66f, 1.42f, -1.29f, 1.63f, -1.47f, 1.63f) - curveToRelative(-0.18f, 0.0f, -0.8f, -0.21f, -1.47f, -1.63f) - curveToRelative(-0.3f, -0.65f, -0.57f, -1.45f, -0.75f, -2.37f) - horizontalLineToRelative(4.44f) - curveToRelative(-0.18f, 0.92f, -0.44f, 1.72f, -0.75f, 2.37f) - close() - moveTo(9.5f, 10.5f) - curveToRelative(0.0f, -0.52f, 0.02f, -1.02f, 0.07f, -1.5f) - horizontalLineToRelative(4.86f) - arcToRelative(16.42f, 16.42f, 0.0f, false, true, 0.0f, 3.0f) - lineTo(9.57f, 12.0f) - curveToRelative(-0.05f, -0.48f, -0.07f, -0.98f, -0.07f, -1.5f) - close() - moveTo(14.57f, 17.01f) - curveToRelative(0.52f, -0.93f, 0.93f, -2.13f, 1.17f, -3.51f) - horizontalLineToRelative(2.59f) - arcToRelative(7.02f, 7.02f, 0.0f, false, true, -3.76f, 3.51f) - close() - moveTo(15.94f, 12.0f) - arcToRelative(17.98f, 17.98f, 0.0f, false, false, 0.0f, -3.0f) - horizontalLineToRelative(2.9f) - arcToRelative(7.03f, 7.03f, 0.0f, false, true, 0.0f, 3.0f) - horizontalLineToRelative(-2.9f) - close() - moveTo(5.16f, 12.0f) - arcToRelative(7.03f, 7.03f, 0.0f, false, true, 0.0f, -3.0f) - horizontalLineToRelative(2.9f) - arcToRelative(17.98f, 17.98f, 0.0f, false, false, 0.0f, 3.0f) - horizontalLineToRelative(-2.9f) - close() - moveTo(8.26f, 13.5f) - curveToRelative(0.24f, 1.38f, 0.65f, 2.58f, 1.17f, 3.51f) - arcToRelative(7.02f, 7.02f, 0.0f, false, true, -3.76f, -3.51f) - horizontalLineToRelative(2.59f) - close() - moveTo(14.22f, 7.5f) - lineTo(9.78f, 7.5f) - curveToRelative(0.18f, -0.92f, 0.44f, -1.72f, 0.75f, -2.37f) - curveTo(11.19f, 3.7f, 11.82f, 3.5f, 12.0f, 3.5f) - curveToRelative(0.18f, 0.0f, 0.8f, 0.21f, 1.47f, 1.63f) - curveToRelative(0.3f, 0.65f, 0.57f, 1.45f, 0.75f, 2.37f) - close() - moveTo(18.32f, 7.5f) - horizontalLineToRelative(-2.58f) - arcToRelative(11.34f, 11.34f, 0.0f, false, false, -1.17f, -3.51f) - curveToRelative(1.65f, 0.65f, 3.0f, 1.91f, 3.76f, 3.51f) - close() - moveTo(8.26f, 7.5f) - lineTo(5.67f, 7.5f) - arcToRelative(7.02f, 7.02f, 0.0f, false, true, 3.76f, -3.51f) - curveToRelative(-0.52f, 0.93f, -0.93f, 2.13f, -1.17f, 3.51f) - close() - moveTo(4.0f, 16.0f) - horizontalLineToRelative(0.25f) - curveToRelative(0.4f, 0.55f, 0.84f, 1.05f, 1.33f, 1.5f) - lineTo(4.57f, 17.5f) - lineToRelative(-0.83f, 3.0f) - horizontalLineToRelative(16.52f) - lineToRelative(-0.83f, -3.0f) - horizontalLineToRelative(-1.0f) - curveToRelative(0.48f, -0.45f, 0.93f, -0.95f, 1.32f, -1.5f) - lineTo(20.0f, 16.0f) - curveToRelative(0.34f, 0.0f, 0.63f, 0.22f, 0.72f, 0.55f) - lineToRelative(1.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.72f, 0.95f) - lineTo(2.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.72f, -0.95f) - lineToRelative(1.25f, -4.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 4.0f, 16.0f) - close() - } - } - return _globeSurface!! - } - -private var _globeSurface: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlobeVideo.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlobeVideo.kt deleted file mode 100644 index 0bc0d8b9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GlobeVideo.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.GlobeVideo: ImageVector - get() { - if (_globeVideo != null) { - return _globeVideo!! - } - _globeVideo = fluentIcon(name = "Regular.GlobeVideo") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 9.88f, 11.57f) - lineToRelative(-0.21f, 0.12f) - lineToRelative(-0.96f, 0.64f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -0.4f, -0.55f) - arcToRelative(8.53f, 8.53f, 0.0f, false, false, -0.05f, -3.78f) - horizontalLineToRelative(-3.35f) - arcToRelative(20.85f, 20.85f, 0.0f, false, true, 0.07f, 3.0f) - horizontalLineToRelative(-1.5f) - arcToRelative(19.28f, 19.28f, 0.0f, false, false, -0.08f, -3.0f) - lineTo(8.6f, 10.0f) - arcToRelative(18.97f, 18.97f, 0.0f, false, false, 0.14f, 5.0f) - horizontalLineToRelative(2.31f) - curveToRelative(-0.03f, 0.16f, -0.05f, 0.33f, -0.05f, 0.5f) - verticalLineToRelative(1.0f) - lineTo(9.06f, 16.5f) - curveToRelative(0.46f, 1.7f, 1.16f, 3.0f, 1.94f, 3.61f) - verticalLineToRelative(1.39f) - curveToRelative(0.0f, 0.16f, 0.02f, 0.3f, 0.04f, 0.46f) - arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 2.0f) - close() - moveTo(7.5f, 16.5f) - lineTo(4.8f, 16.5f) - arcToRelative(8.53f, 8.53f, 0.0f, false, false, 4.1f, 3.41f) - curveToRelative(-0.53f, -0.82f, -0.96f, -1.84f, -1.28f, -3.01f) - lineToRelative(-0.1f, -0.4f) - close() - moveTo(7.1f, 10.0f) - lineTo(3.73f, 10.0f) - verticalLineToRelative(0.02f) - arcToRelative(8.52f, 8.52f, 0.0f, false, false, 0.3f, 4.98f) - horizontalLineToRelative(3.18f) - arcToRelative(20.3f, 20.3f, 0.0f, false, true, -0.13f, -5.0f) - close() - moveTo(8.88f, 4.1f) - horizontalLineToRelative(-0.02f) - arcToRelative(8.53f, 8.53f, 0.0f, false, false, -4.6f, 4.4f) - lineTo(7.3f, 8.5f) - curveToRelative(0.31f, -1.75f, 0.86f, -3.28f, 1.58f, -4.4f) - close() - moveTo(12.0f, 3.5f) - horizontalLineToRelative(-0.11f) - curveToRelative(-1.27f, 0.12f, -2.5f, 2.12f, -3.06f, 5.0f) - horizontalLineToRelative(6.34f) - curveToRelative(-0.56f, -2.87f, -1.78f, -4.87f, -3.04f, -5.0f) - lineTo(12.0f, 3.5f) - close() - moveTo(15.12f, 4.1f) - lineTo(15.22f, 4.26f) - arcTo(12.65f, 12.65f, 0.0f, false, true, 16.7f, 8.5f) - horizontalLineToRelative(3.05f) - arcToRelative(8.53f, 8.53f, 0.0f, false, false, -4.34f, -4.29f) - lineToRelative(-0.29f, -0.12f) - close() - moveTo(12.0f, 15.5f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(5.0f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(0.5f) - lineToRelative(2.22f, -1.48f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.78f, 0.41f) - verticalLineToRelative(7.14f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.78f, 0.41f) - lineTo(20.0f, 21.0f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - verticalLineToRelative(-6.0f) - close() - } - } - return _globeVideo!! - } - -private var _globeVideo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Grid.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Grid.kt deleted file mode 100644 index c6db22b0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Grid.kt +++ /dev/null @@ -1,102 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Grid: ImageVector - get() { - if (_grid != null) { - return _grid!! - } - _grid = fluentIcon(name = "Regular.Grid") { - fluentPath { - moveTo(8.75f, 13.0f) - curveTo(9.99f, 13.0f, 11.0f, 14.0f, 11.0f, 15.25f) - verticalLineToRelative(3.5f) - curveTo(11.0f, 19.99f, 10.0f, 21.0f, 8.75f, 21.0f) - horizontalLineToRelative(-3.5f) - curveTo(4.01f, 21.0f, 3.0f, 20.0f, 3.0f, 18.75f) - verticalLineToRelative(-3.5f) - curveTo(3.0f, 14.01f, 4.0f, 13.0f, 5.25f, 13.0f) - horizontalLineToRelative(3.5f) - close() - moveTo(18.75f, 13.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-3.5f) - curveTo(14.01f, 21.0f, 13.0f, 20.0f, 13.0f, 18.75f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(3.5f) - close() - moveTo(8.75f, 14.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(18.75f, 14.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(8.75f, 3.0f) - curveTo(9.99f, 3.0f, 11.0f, 4.0f, 11.0f, 5.25f) - verticalLineToRelative(3.5f) - curveTo(11.0f, 9.99f, 10.0f, 11.0f, 8.75f, 11.0f) - horizontalLineToRelative(-3.5f) - curveTo(4.01f, 11.0f, 3.0f, 10.0f, 3.0f, 8.75f) - verticalLineToRelative(-3.5f) - curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(3.5f) - close() - moveTo(18.75f, 3.0f) - curveTo(19.99f, 3.0f, 21.0f, 4.0f, 21.0f, 5.25f) - verticalLineToRelative(3.5f) - curveTo(21.0f, 9.99f, 20.0f, 11.0f, 18.75f, 11.0f) - horizontalLineToRelative(-3.5f) - curveTo(14.01f, 11.0f, 13.0f, 10.0f, 13.0f, 8.75f) - verticalLineToRelative(-3.5f) - curveTo(13.0f, 4.01f, 14.0f, 3.0f, 15.25f, 3.0f) - horizontalLineToRelative(3.5f) - close() - moveTo(8.75f, 4.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(18.75f, 4.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - } - } - return _grid!! - } - -private var _grid: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GridCircles.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GridCircles.kt deleted file mode 100644 index fb5e3d3b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GridCircles.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.GridCircles: ImageVector - get() { - if (_gridCircles != null) { - return _gridCircles!! - } - _gridCircles = fluentIcon(name = "Regular.GridCircles") { - fluentPath { - moveTo(11.0f, 7.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, -8.0f, 0.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 8.0f, 0.0f) - close() - moveTo(9.5f, 7.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(21.0f, 7.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, -8.0f, 0.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 8.0f, 0.0f) - close() - moveTo(19.5f, 7.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(7.0f, 21.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, 0.0f, -8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, 8.0f) - close() - moveTo(7.0f, 19.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) - close() - moveTo(21.0f, 17.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, -8.0f, 0.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 8.0f, 0.0f) - close() - moveTo(19.5f, 17.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - } - } - return _gridCircles!! - } - -private var _gridCircles: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GridDots.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GridDots.kt deleted file mode 100644 index 799a6939..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GridDots.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.GridDots: ImageVector - get() { - if (_gridDots != null) { - return _gridDots!! - } - _gridDots = fluentIcon(name = "Regular.GridDots") { - fluentPath { - moveTo(12.0f, 17.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(19.0f, 17.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(5.0f, 17.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(12.0f, 10.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(19.0f, 10.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(5.0f, 10.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(19.0f, 3.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(5.0f, 3.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - } - } - return _gridDots!! - } - -private var _gridDots: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Group.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Group.kt deleted file mode 100644 index a9b875ac..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Group.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Group: ImageVector - get() { - if (_group != null) { - return _group!! - } - _group = fluentIcon(name = "Regular.Group") { - fluentPath { - moveTo(5.0f, 7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) - close() - moveTo(19.0f, 7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) - close() - moveTo(21.0f, 19.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(5.0f, 21.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) - close() - moveTo(7.96f, 5.5f) - arcTo(3.02f, 3.02f, 0.0f, false, false, 7.83f, 4.0f) - horizontalLineToRelative(4.67f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 15.0f, 6.5f) - lineTo(15.0f, 9.0f) - horizontalLineToRelative(2.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) - verticalLineToRelative(4.67f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -1.5f, -0.13f) - lineTo(18.5f, 11.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(15.0f, 10.5f) - verticalLineToRelative(2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.5f, 2.5f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(2.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(4.54f) - arcToRelative(3.02f, 3.02f, 0.0f, false, false, 0.13f, 1.5f) - lineTo(11.5f, 20.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 9.0f, 17.5f) - lineTo(9.0f, 15.0f) - lineTo(6.5f, 15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 12.5f) - lineTo(4.0f, 7.83f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 1.5f, 0.13f) - verticalLineToRelative(4.54f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - lineTo(9.0f, 13.5f) - verticalLineToRelative(-2.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 11.5f, 9.0f) - horizontalLineToRelative(2.0f) - lineTo(13.5f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(7.96f, 5.5f) - close() - moveTo(12.5f, 13.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(2.0f) - close() - } - } - return _group!! - } - -private var _group: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GroupDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GroupDismiss.kt deleted file mode 100644 index d28e69da..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GroupDismiss.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.GroupDismiss: ImageVector - get() { - if (_groupDismiss != null) { - return _groupDismiss!! - } - _groupDismiss = fluentIcon(name = "Regular.GroupDismiss") { - fluentPath { - moveTo(7.0f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(21.0f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(7.0f, 19.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(8.0f, 5.0f) - curveToRelative(0.0f, 0.17f, -0.01f, 0.34f, -0.04f, 0.5f) - horizontalLineToRelative(4.54f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - lineTo(13.5f, 9.0f) - horizontalLineToRelative(-2.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 9.0f, 11.5f) - verticalLineToRelative(2.0f) - lineTo(6.5f, 13.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(5.5f, 7.96f) - arcTo(3.02f, 3.02f, 0.0f, false, true, 4.0f, 7.83f) - verticalLineToRelative(4.67f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 15.0f) - lineTo(9.0f, 15.0f) - verticalLineToRelative(2.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, 2.5f) - arcToRelative(6.45f, 6.45f, 0.0f, false, true, -0.44f, -1.6f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.56f, -0.9f) - verticalLineToRelative(-6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.9f, 0.56f) - curveToRelative(0.56f, 0.08f, 1.1f, 0.23f, 1.6f, 0.44f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 17.5f, 9.0f) - lineTo(15.0f, 9.0f) - lineTo(15.0f, 6.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 12.5f, 4.0f) - lineTo(7.83f, 4.0f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 8.0f, 5.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(17.5f, 16.8f) - lineTo(15.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-1.64f, -1.65f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.65f, 1.64f) - close() - } - } - return _groupDismiss!! - } - -private var _groupDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GroupList.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GroupList.kt deleted file mode 100644 index 8b159f91..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GroupList.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.GroupList: ImageVector - get() { - if (_groupList != null) { - return _groupList!! - } - _groupList = fluentIcon(name = "Regular.GroupList") { - fluentPath { - moveTo(2.75f, 12.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(3.5f, 13.5f) - lineTo(3.5f, 19.0f) - horizontalLineToRelative(1.75f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 0.38f, -0.27f, 0.7f, -0.64f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-7.0f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.75f) - horizontalLineToRelative(0.1f) - close() - moveTo(21.25f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(7.75f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(13.6f) - close() - moveTo(21.25f, 13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(7.75f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(13.6f) - close() - moveTo(2.75f, 2.5f) - lineTo(5.25f, 2.51f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(3.5f, 4.01f) - verticalLineToRelative(5.48f) - horizontalLineToRelative(1.75f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.29f, 0.74f, 0.65f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 0.38f, -0.27f, 0.7f, -0.64f, 0.75f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-7.0f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - close() - moveTo(21.25f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(7.75f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - horizontalLineToRelative(13.6f) - close() - moveTo(21.25f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(7.75f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - horizontalLineToRelative(13.6f) - close() - } - } - return _groupList!! - } - -private var _groupList: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GroupReturn.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GroupReturn.kt deleted file mode 100644 index 68edf7bd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GroupReturn.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.GroupReturn: ImageVector - get() { - if (_groupReturn != null) { - return _groupReturn!! - } - _groupReturn = fluentIcon(name = "Regular.GroupReturn") { - fluentPath { - moveTo(7.0f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(21.0f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(7.0f, 19.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(8.0f, 5.0f) - curveToRelative(0.0f, 0.17f, -0.01f, 0.34f, -0.04f, 0.5f) - horizontalLineToRelative(4.54f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - lineTo(13.5f, 9.0f) - horizontalLineToRelative(-2.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 9.0f, 11.5f) - verticalLineToRelative(2.0f) - lineTo(6.5f, 13.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(5.5f, 7.96f) - arcTo(3.02f, 3.02f, 0.0f, false, true, 4.0f, 7.83f) - verticalLineToRelative(4.67f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 15.0f) - lineTo(9.0f, 15.0f) - verticalLineToRelative(2.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, 2.5f) - arcToRelative(6.45f, 6.45f, 0.0f, false, true, -0.44f, -1.6f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.56f, -0.9f) - verticalLineToRelative(-6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.9f, 0.56f) - curveToRelative(0.56f, 0.08f, 1.1f, 0.23f, 1.6f, 0.44f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 17.5f, 9.0f) - lineTo(15.0f, 9.0f) - lineTo(15.0f, 6.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 12.5f, 4.0f) - lineTo(7.83f, 4.0f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 8.0f, 5.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.7f, 16.0f) - lineToRelative(0.65f, -0.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(1.5f, 1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-0.64f, -0.65f) - horizontalLineToRelative(2.04f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(0.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-0.25f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-2.04f) - close() - } - } - return _groupReturn!! - } - -private var _groupReturn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Guardian.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Guardian.kt deleted file mode 100644 index f8e66b23..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Guardian.kt +++ /dev/null @@ -1,97 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Guardian: ImageVector - get() { - if (_guardian != null) { - return _guardian!! - } - _guardian = fluentIcon(name = "Regular.Guardian") { - fluentPath { - moveTo(10.5f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) - close() - moveTo(9.0f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) - close() - moveTo(19.0f, 7.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(17.5f, 7.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(13.4f, 10.75f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.65f, -2.0f) - horizontalLineToRelative(-6.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 11.5f) - verticalLineToRelative(3.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.5f, 1.94f) - lineTo(4.5f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 3.25f, 1.56f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 11.0f, 20.0f) - verticalLineToRelative(-3.56f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 13.44f, 15.0f) - horizontalLineToRelative(0.06f) - verticalLineToRelative(5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 3.25f, 1.56f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 20.0f, 20.0f) - verticalLineToRelative(-2.81f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.5f, -1.94f) - lineTo(22.5f, 13.5f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.75f, -2.75f) - lineTo(13.4f, 10.75f) - close() - moveTo(11.0f, 14.5f) - lineTo(11.0f, 12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(8.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - lineTo(7.0f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(6.0f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - close() - moveTo(13.5f, 12.25f) - horizontalLineToRelative(6.25f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(1.75f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - lineTo(20.0f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - lineTo(16.0f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-0.75f) - verticalLineToRelative(-1.25f) - close() - } - } - return _guardian!! - } - -private var _guardian: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Guest.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Guest.kt deleted file mode 100644 index daf6ae51..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Guest.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Guest: ImageVector - get() { - if (_guest != null) { - return _guest!! - } - _guest = fluentIcon(name = "Regular.Guest") { - fluentPath { - moveTo(13.75f, 2.0f) - curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) - horizontalLineToRelative(1.76f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.25f) - lineTo(6.25f, 22.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) - lineTo(4.0f, 19.76f) - lineTo(4.0f, 6.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(6.25f, 4.0f) - horizontalLineToRelative(1.76f) - curveToRelative(0.13f, -1.12f, 1.08f, -2.0f, 2.24f, -2.0f) - horizontalLineToRelative(3.5f) - close() - moveTo(13.75f, 6.5f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.78f, 0.0f, -1.46f, -0.4f, -1.87f, -1.0f) - lineTo(6.25f, 5.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.75f) - horizontalLineToRelative(11.6f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.64f) - lineToRelative(0.01f, -0.1f) - lineTo(18.5f, 6.24f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-2.13f) - curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) - close() - moveTo(14.75f, 14.0f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 1.84f, -1.47f, 2.75f, -4.0f, 2.75f) - curveToRelative(-2.53f, 0.0f, -4.0f, -0.91f, -4.0f, -2.76f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -0.68f, 0.56f, -1.24f, 1.25f, -1.24f) - horizontalLineToRelative(5.5f) - close() - moveTo(14.5f, 15.5f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(0.24f) - curveToRelative(0.0f, 0.83f, 0.7f, 1.26f, 2.5f, 1.26f) - reflectiveCurveToRelative(2.5f, -0.43f, 2.5f, -1.26f) - verticalLineToRelative(-0.24f) - close() - moveTo(12.0f, 8.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - moveTo(12.0f, 9.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(13.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - close() - } - } - return _guest!! - } - -private var _guest: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GuestAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GuestAdd.kt deleted file mode 100644 index 7d122e21..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/GuestAdd.kt +++ /dev/null @@ -1,98 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.GuestAdd: ImageVector - get() { - if (_guestAdd != null) { - return _guestAdd!! - } - _guestAdd = fluentIcon(name = "Regular.GuestAdd") { - fluentPath { - moveTo(12.75f, 2.0f) - curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) - horizontalLineToRelative(1.76f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(4.92f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -0.17f) - lineTo(17.5f, 6.25f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-2.13f) - curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.78f, 0.0f, -1.46f, -0.4f, -1.87f, -1.0f) - lineTo(5.25f, 5.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.75f) - horizontalLineToRelative(6.58f) - curveToRelative(0.3f, 0.56f, 0.66f, 1.06f, 1.08f, 1.5f) - lineTo(5.25f, 22.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) - lineTo(3.0f, 19.76f) - lineTo(3.0f, 6.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(5.25f, 4.0f) - horizontalLineToRelative(1.76f) - curveToRelative(0.13f, -1.12f, 1.08f, -2.0f, 2.24f, -2.0f) - horizontalLineToRelative(3.5f) - close() - moveTo(12.75f, 3.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - close() - moveTo(8.25f, 14.0f) - horizontalLineToRelative(3.77f) - curveToRelative(-0.3f, 0.46f, -0.53f, 0.96f, -0.7f, 1.5f) - lineTo(8.5f, 15.5f) - verticalLineToRelative(0.24f) - curveToRelative(0.0f, 0.83f, 0.7f, 1.26f, 2.5f, 1.26f) - horizontalLineToRelative(0.02f) - arcToRelative(6.6f, 6.6f, 0.0f, false, false, 0.06f, 1.5f) - lineTo(11.0f, 18.5f) - curveToRelative(-2.53f, 0.0f, -4.0f, -0.91f, -4.0f, -2.76f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -0.68f, 0.56f, -1.24f, 1.25f, -1.24f) - close() - moveTo(11.0f, 8.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - moveTo(11.0f, 9.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _guestAdd!! - } - -private var _guestAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Guitar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Guitar.kt deleted file mode 100644 index 352df993..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Guitar.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Guitar: ImageVector - get() { - if (_guitar != null) { - return _guitar!! - } - _guitar = fluentIcon(name = "Regular.Guitar") { - fluentPath { - moveTo(11.63f, 14.08f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -1.76f, -1.76f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 1.76f, 1.76f) - close() - moveTo(18.15f, 2.72f) - curveToRelative(0.68f, -0.69f, 1.79f, -0.69f, 2.47f, 0.0f) - lineToRelative(0.7f, 0.7f) - curveToRelative(0.7f, 0.69f, 0.7f, 1.8f, 0.0f, 2.48f) - lineToRelative(-5.1f, 5.1f) - curveToRelative(0.92f, 1.34f, 0.47f, 3.24f, -1.04f, 4.0f) - lineToRelative(-0.84f, 0.41f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.32f, 0.67f) - lineToRelative(0.01f, 0.07f) - arcToRelative(4.7f, 4.7f, 0.0f, false, true, -1.79f, 4.69f) - arcToRelative(6.03f, 6.03f, 0.0f, false, true, -7.88f, -0.56f) - lineToRelative(-0.6f, -0.6f) - arcToRelative(6.03f, 6.03f, 0.0f, false, true, -0.55f, -7.88f) - arcToRelative(4.7f, 4.7f, 0.0f, false, true, 4.69f, -1.79f) - lineToRelative(0.07f, 0.01f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, 0.66f, -0.32f) - lineToRelative(0.42f, -0.83f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 4.0f, -1.05f) - lineToRelative(5.1f, -5.1f) - close() - moveTo(19.56f, 3.78f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.35f, 0.0f) - lineToRelative(-1.19f, 1.18f) - lineToRelative(1.06f, 1.06f) - lineToRelative(1.19f, -1.18f) - curveToRelative(0.1f, -0.1f, 0.1f, -0.26f, 0.0f, -0.36f) - lineToRelative(-0.71f, -0.7f) - close() - moveTo(18.02f, 7.08f) - lineTo(16.96f, 6.02f) - lineTo(13.61f, 9.37f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-0.16f, -0.16f) - curveToRelative(-0.6f, -0.6f, -1.62f, -0.43f, -2.0f, 0.33f) - lineToRelative(-0.42f, 0.83f) - arcToRelative(2.1f, 2.1f, 0.0f, false, true, -2.3f, 1.13f) - lineToRelative(-0.07f, -0.02f) - arcToRelative(3.2f, 3.2f, 0.0f, false, false, -3.2f, 1.22f) - arcToRelative(4.53f, 4.53f, 0.0f, false, false, 0.43f, 5.92f) - lineToRelative(0.6f, 0.6f) - arcToRelative(4.53f, 4.53f, 0.0f, false, false, 5.91f, 0.42f) - arcToRelative(3.2f, 3.2f, 0.0f, false, false, 1.22f, -3.2f) - lineToRelative(-0.01f, -0.07f) - arcToRelative(2.1f, 2.1f, 0.0f, false, true, 1.12f, -2.3f) - lineToRelative(0.84f, -0.42f) - curveToRelative(0.76f, -0.38f, 0.92f, -1.4f, 0.32f, -2.0f) - lineToRelative(-0.16f, -0.16f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(3.35f, -3.35f) - close() - } - } - return _guitar!! - } - -private var _guitar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HandDraw.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HandDraw.kt deleted file mode 100644 index c2c0bae7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HandDraw.kt +++ /dev/null @@ -1,110 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.HandDraw: ImageVector - get() { - if (_handDraw != null) { - return _handDraw!! - } - _handDraw = fluentIcon(name = "Regular.HandDraw") { - fluentPath { - moveTo(19.4f, 2.6f) - curveToRelative(0.32f, 0.25f, 0.6f, 0.63f, 0.6f, 1.15f) - curveToRelative(0.0f, 0.78f, -0.5f, 1.3f, -1.07f, 1.6f) - arcToRelative(6.1f, 6.1f, 0.0f, false, true, -2.0f, 0.53f) - curveToRelative(-1.46f, 0.18f, -3.35f, 0.17f, -5.2f, 0.15f) - horizontalLineToRelative(-0.24f) - arcToRelative(37.54f, 37.54f, 0.0f, false, false, -5.2f, 0.19f) - curveToRelative(-0.7f, 0.1f, -1.2f, 0.24f, -1.5f, 0.42f) - curveToRelative(-0.27f, 0.15f, -0.29f, 0.27f, -0.29f, 0.36f) - curveToRelative(0.0f, 0.01f, 0.02f, 0.04f, 0.08f, 0.08f) - curveToRelative(0.1f, 0.1f, 0.31f, 0.22f, 0.63f, 0.33f) - arcToRelative(11.18f, 11.18f, 0.0f, false, false, 2.79f, 0.5f) - verticalLineToRelative(1.5f) - lineToRelative(-0.45f, -0.04f) - curveToRelative(-0.98f, -0.1f, -2.02f, -0.26f, -2.84f, -0.55f) - curveToRelative(-0.4f, -0.14f, -0.8f, -0.33f, -1.12f, -0.6f) - arcTo(1.6f, 1.6f, 0.0f, false, true, 3.0f, 7.0f) - curveToRelative(0.0f, -0.78f, 0.46f, -1.32f, 1.04f, -1.66f) - curveToRelative(0.55f, -0.32f, 1.27f, -0.5f, 2.02f, -0.6f) - curveToRelative(1.52f, -0.23f, 3.53f, -0.22f, 5.45f, -0.2f) - horizontalLineToRelative(0.18f) - curveToRelative(1.9f, 0.0f, 3.7f, 0.02f, 5.04f, -0.15f) - curveToRelative(0.7f, -0.09f, 1.2f, -0.22f, 1.5f, -0.37f) - curveToRelative(0.2f, -0.1f, 0.25f, -0.18f, 0.27f, -0.23f) - lineToRelative(-0.03f, -0.02f) - curveToRelative(-0.1f, -0.08f, -0.29f, -0.18f, -0.6f, -0.28f) - curveToRelative(-0.61f, -0.2f, -1.5f, -0.32f, -2.46f, -0.4f) - curveToRelative(-1.6f, -0.12f, -3.29f, -0.1f, -4.2f, -0.1f) - lineToRelative(-0.46f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.42f) - curveToRelative(0.9f, -0.01f, 2.68f, -0.04f, 4.36f, 0.1f) - curveToRelative(1.0f, 0.08f, 2.01f, 0.21f, 2.8f, 0.46f) - curveToRelative(0.38f, 0.13f, 0.77f, 0.3f, 1.07f, 0.54f) - close() - moveTo(14.0f, 9.33f) - curveTo(13.92f, 7.97f, 13.1f, 7.0f, 11.74f, 7.0f) - curveTo(10.35f, 7.0f, 9.5f, 8.06f, 9.5f, 9.5f) - verticalLineToRelative(4.18f) - lineToRelative(-0.26f, -0.08f) - curveToRelative(-1.2f, -0.35f, -2.12f, -0.37f, -2.83f, -0.02f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 5.0f, 16.02f) - curveToRelative(0.0f, 0.28f, 0.16f, 0.53f, 0.41f, 0.66f) - lineToRelative(2.36f, 1.17f) - lineToRelative(0.1f, 0.05f) - lineToRelative(0.1f, 0.06f) - lineToRelative(1.88f, 1.26f) - lineToRelative(0.2f, 0.14f) - curveToRelative(0.43f, 0.34f, 0.78f, 0.78f, 1.02f, 1.28f) - lineToRelative(0.03f, 0.06f) - lineToRelative(0.08f, 0.16f) - curveToRelative(0.45f, 0.8f, 1.35f, 1.25f, 2.28f, 1.12f) - lineToRelative(2.42f, -0.35f) - lineToRelative(0.16f, -0.03f) - curveToRelative(0.82f, -0.18f, 1.47f, -0.8f, 1.69f, -1.61f) - lineToRelative(1.05f, -3.93f) - lineToRelative(0.04f, -0.18f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -2.6f, -3.85f) - lineToRelative(-2.22f, -0.4f) - lineTo(14.0f, 9.32f) - close() - moveTo(11.0f, 9.37f) - curveToRelative(0.04f, -0.6f, 0.29f, -0.87f, 0.75f, -0.87f) - curveToRelative(0.5f, 0.0f, 0.75f, 0.32f, 0.75f, 1.0f) - verticalLineToRelative(2.85f) - curveToRelative(0.05f, 0.32f, 0.3f, 0.58f, 0.62f, 0.64f) - lineToRelative(2.9f, 0.53f) - lineToRelative(0.07f, 0.01f) - curveToRelative(0.93f, 0.25f, 1.49f, 1.21f, 1.24f, 2.15f) - lineToRelative(-1.05f, 3.92f) - lineToRelative(-0.04f, 0.1f) - curveToRelative(-0.1f, 0.24f, -0.32f, 0.41f, -0.58f, 0.45f) - lineToRelative(-2.42f, 0.35f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.68f, -0.43f) - lineToRelative(-0.03f, -0.06f) - lineToRelative(-0.12f, -0.25f) - arcToRelative(4.96f, 4.96f, 0.0f, false, false, -1.63f, -1.79f) - lineTo(8.8f, 16.71f) - lineToRelative(-0.18f, -0.1f) - lineToRelative(-0.18f, -0.1f) - lineToRelative(-1.9f, -0.95f) - lineToRelative(0.04f, -0.12f) - curveToRelative(0.08f, -0.23f, 0.25f, -0.4f, 0.5f, -0.52f) - curveToRelative(0.44f, -0.22f, 1.42f, -0.08f, 2.88f, 0.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.04f, -0.7f) - lineTo(11.0f, 9.37f) - close() - } - } - return _handDraw!! - } - -private var _handDraw: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HandLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HandLeft.kt deleted file mode 100644 index 17cb0f35..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HandLeft.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.HandLeft: ImageVector - get() { - if (_handLeft != null) { - return _handLeft!! - } - _handLeft = fluentIcon(name = "Regular.HandLeft") { - fluentPath { - moveTo(12.0f, 4.0f) - verticalLineToRelative(6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(10.5f, 5.23f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.48f) - curveToRelative(-0.26f, 0.0f, -0.5f, 0.24f, -0.5f, 0.5f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.3f, 0.52f) - arcToRelative(1.46f, 1.46f, 0.0f, false, false, -0.12f, -0.13f) - curveToRelative(-0.1f, -0.08f, -0.23f, -0.2f, -0.4f, -0.32f) - curveToRelative(-0.36f, -0.25f, -0.81f, -0.5f, -1.3f, -0.58f) - arcToRelative(2.28f, 2.28f, 0.0f, false, false, -1.4f, 0.14f) - curveToRelative(-0.2f, 0.1f, -0.36f, 0.26f, -0.44f, 0.53f) - lineToRelative(1.66f, 1.24f) - lineToRelative(0.08f, 0.07f) - lineToRelative(2.18f, 2.18f) - curveToRelative(0.93f, 0.93f, 1.7f, 2.0f, 2.3f, 3.19f) - curveToRelative(0.28f, 0.56f, 0.85f, 0.91f, 1.47f, 0.91f) - horizontalLineToRelative(2.73f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.33f, -0.71f) - curveToRelative(0.73f, -1.26f, 1.71f, -3.29f, 1.71f, -5.04f) - lineTo(18.0f, 7.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(15.5f, 5.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(13.0f, 4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - curveToRelative(-0.29f, 0.0f, -0.5f, 0.22f, -0.5f, 0.5f) - close() - moveTo(10.01f, 3.25f) - curveToRelative(0.21f, 0.0f, 0.42f, 0.03f, 0.6f, 0.1f) - lineToRelative(-0.6f, -0.1f) - close() - moveTo(10.61f, 3.35f) - curveToRelative(0.27f, -0.77f, 0.97f, -1.35f, 1.9f, -1.35f) - curveToRelative(0.9f, 0.0f, 1.61f, 0.59f, 1.88f, 1.34f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.6f, 1.73f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 19.5f, 7.0f) - verticalLineToRelative(7.74f) - curveToRelative(0.0f, 2.18f, -1.17f, 4.51f, -1.92f, 5.8f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 14.96f, 22.0f) - horizontalLineToRelative(-2.73f) - curveToRelative(-1.19f, 0.0f, -2.28f, -0.67f, -2.81f, -1.74f) - arcToRelative(10.76f, 10.76f, 0.0f, false, false, -2.02f, -2.8f) - lineToRelative(-2.14f, -2.14f) - lineToRelative(-1.96f, -1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.3f, -0.6f) - curveToRelative(0.0f, -1.06f, 0.53f, -1.8f, 1.3f, -2.2f) - arcToRelative(3.76f, 3.76f, 0.0f, false, true, 2.33f, -0.29f) - curveToRelative(0.52f, 0.1f, 0.99f, 0.29f, 1.37f, 0.5f) - verticalLineToRelative(-6.0f) - curveToRelative(0.0f, -1.07f, 0.89f, -2.02f, 2.01f, -2.01f) - } - } - return _handLeft!! - } - -private var _handLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HandLeftChat.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HandLeftChat.kt deleted file mode 100644 index a33361ca..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HandLeftChat.kt +++ /dev/null @@ -1,94 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.HandLeftChat: ImageVector - get() { - if (_handLeftChat != null) { - return _handLeftChat!! - } - _handLeftChat = fluentIcon(name = "Regular.HandLeftChat") { - fluentPath { - moveTo(12.0f, 4.0f) - verticalLineToRelative(6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(10.5f, 5.23f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.48f) - curveToRelative(-0.26f, 0.0f, -0.5f, 0.24f, -0.5f, 0.5f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.3f, 0.52f) - arcToRelative(1.46f, 1.46f, 0.0f, false, false, -0.12f, -0.13f) - curveToRelative(-0.1f, -0.08f, -0.23f, -0.2f, -0.4f, -0.32f) - curveToRelative(-0.36f, -0.25f, -0.81f, -0.5f, -1.3f, -0.58f) - arcToRelative(2.28f, 2.28f, 0.0f, false, false, -1.4f, 0.14f) - curveToRelative(-0.2f, 0.1f, -0.36f, 0.26f, -0.44f, 0.53f) - lineToRelative(1.66f, 1.24f) - lineToRelative(0.08f, 0.07f) - lineToRelative(2.18f, 2.18f) - curveToRelative(0.93f, 0.93f, 1.7f, 2.0f, 2.3f, 3.19f) - curveToRelative(0.18f, 0.35f, 0.47f, 0.63f, 0.82f, 0.78f) - lineToRelative(-0.44f, 1.44f) - arcToRelative(3.15f, 3.15f, 0.0f, false, true, -1.72f, -1.55f) - arcToRelative(10.76f, 10.76f, 0.0f, false, false, -2.02f, -2.8f) - lineToRelative(-2.14f, -2.14f) - lineToRelative(-1.96f, -1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.3f, -0.6f) - curveToRelative(0.0f, -1.06f, 0.53f, -1.8f, 1.3f, -2.2f) - arcToRelative(3.76f, 3.76f, 0.0f, false, true, 2.33f, -0.29f) - curveToRelative(0.52f, 0.1f, 0.99f, 0.29f, 1.37f, 0.5f) - verticalLineToRelative(-6.0f) - arcToRelative(2.03f, 2.03f, 0.0f, false, true, 2.61f, -1.92f) - curveToRelative(0.27f, -0.76f, 0.97f, -1.34f, 1.9f, -1.34f) - curveToRelative(0.9f, 0.0f, 1.61f, 0.59f, 1.88f, 1.34f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.6f, 1.73f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 19.5f, 7.0f) - verticalLineToRelative(4.3f) - arcToRelative(6.48f, 6.48f, 0.0f, false, false, -1.5f, -0.3f) - verticalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.2f, -0.1f, 0.4f, -0.23f, 0.53f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -0.83f, 0.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.44f, -0.69f) - lineTo(15.5f, 5.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(13.0f, 4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - curveToRelative(-0.29f, 0.0f, -0.5f, 0.22f, -0.5f, 0.5f) - close() - moveTo(17.97f, 12.02f) - arcTo(5.48f, 5.48f, 0.0f, false, true, 23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, -8.17f, 4.81f) - lineToRelative(-2.18f, 0.67f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.63f, -0.62f) - lineToRelative(0.67f, -2.2f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 5.28f, -8.15f) - close() - moveTo(15.0f, 16.5f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - close() - moveTo(15.5f, 19.0f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) - close() - } - } - return _handLeftChat!! - } - -private var _handLeftChat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HandRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HandRight.kt deleted file mode 100644 index 646dc5aa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HandRight.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.HandRight: ImageVector - get() { - if (_handRight != null) { - return _handRight!! - } - _handRight = fluentIcon(name = "Regular.HandRight") { - fluentPath { - moveTo(12.0f, 4.0f) - verticalLineToRelative(6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(13.5f, 5.22f) - curveToRelative(0.0f, -0.24f, 0.2f, -0.47f, 0.5f, -0.48f) - curveToRelative(0.26f, 0.0f, 0.5f, 0.25f, 0.5f, 0.5f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.3f, 0.52f) - arcToRelative(2.23f, 2.23f, 0.0f, false, true, 0.12f, -0.12f) - curveToRelative(0.1f, -0.08f, 0.23f, -0.2f, 0.4f, -0.32f) - curveToRelative(0.36f, -0.25f, 0.81f, -0.5f, 1.3f, -0.58f) - curveToRelative(0.54f, -0.1f, 1.05f, -0.04f, 1.4f, 0.14f) - curveToRelative(0.2f, 0.1f, 0.36f, 0.26f, 0.44f, 0.53f) - lineToRelative(-1.66f, 1.24f) - arcToRelative(0.76f, 0.76f, 0.0f, false, false, -0.08f, 0.07f) - lineToRelative(-2.18f, 2.17f) - curveToRelative(-0.93f, 0.94f, -1.7f, 2.02f, -2.3f, 3.2f) - curveToRelative(-0.28f, 0.56f, -0.85f, 0.91f, -1.47f, 0.91f) - lineTo(9.04f, 20.5f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.33f, -0.71f) - curveTo(6.98f, 18.53f, 6.0f, 16.5f, 6.0f, 14.75f) - lineTo(6.0f, 7.0f) - curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) - curveToRelative(0.29f, 0.0f, 0.5f, 0.23f, 0.5f, 0.5f) - verticalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(8.5f, 5.25f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - curveToRelative(0.29f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - verticalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(11.0f, 4.0f) - curveToRelative(0.0f, -0.28f, 0.21f, -0.5f, 0.5f, -0.5f) - curveToRelative(0.29f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - close() - moveTo(13.99f, 3.24f) - curveToRelative(-0.21f, 0.0f, -0.42f, 0.04f, -0.6f, 0.1f) - close() - moveTo(13.39f, 3.34f) - arcTo(1.98f, 1.98f, 0.0f, false, false, 11.49f, 2.0f) - curveToRelative(-0.9f, 0.0f, -1.61f, 0.58f, -1.88f, 1.34f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.6f, 1.73f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 4.5f, 7.0f) - verticalLineToRelative(7.74f) - curveToRelative(0.0f, 2.18f, 1.17f, 4.51f, 1.92f, 5.8f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 9.04f, 22.0f) - horizontalLineToRelative(2.73f) - curveToRelative(1.19f, 0.0f, 2.28f, -0.67f, 2.81f, -1.74f) - curveToRelative(0.52f, -1.04f, 1.2f, -1.98f, 2.02f, -2.8f) - lineToRelative(2.14f, -2.14f) - lineToRelative(1.96f, -1.47f) - curveToRelative(0.19f, -0.14f, 0.3f, -0.37f, 0.3f, -0.6f) - curveToRelative(0.0f, -1.06f, -0.53f, -1.8f, -1.3f, -2.2f) - arcToRelative(3.76f, 3.76f, 0.0f, false, false, -2.33f, -0.29f) - curveToRelative(-0.52f, 0.1f, -0.99f, 0.29f, -1.37f, 0.5f) - lineTo(16.0f, 5.25f) - curveToRelative(0.0f, -1.06f, -0.89f, -2.01f, -2.01f, -2.0f) - } - } - return _handRight!! - } - -private var _handRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HandWave.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HandWave.kt deleted file mode 100644 index 08e69576..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HandWave.kt +++ /dev/null @@ -1,94 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.HandWave: ImageVector - get() { - if (_handWave != null) { - return _handWave!! - } - _handWave = fluentIcon(name = "Regular.HandWave") { - fluentPath { - moveTo(18.63f, 2.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, -0.19f) - arcToRelative(6.9f, 6.9f, 0.0f, false, true, 2.31f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.48f, -0.26f) - arcToRelative(5.4f, 5.4f, 0.0f, false, false, -0.33f, -2.82f) - curveToRelative(-0.35f, -0.9f, -0.87f, -1.6f, -1.36f, -1.93f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.19f, -1.05f) - close() - moveTo(9.59f, 2.87f) - arcTo(2.05f, 2.05f, 0.0f, false, false, 5.87f, 4.0f) - arcToRelative(2.02f, 2.02f, 0.0f, false, false, -1.93f, 2.65f) - lineToRelative(1.96f, 5.92f) - arcToRelative(4.8f, 4.8f, 0.0f, false, false, -1.79f, 0.2f) - arcToRelative(3.9f, 3.9f, 0.0f, false, false, -1.76f, 1.16f) - arcToRelative(1.4f, 1.4f, 0.0f, false, false, -0.28f, 1.42f) - curveToRelative(0.16f, 0.43f, 0.5f, 0.78f, 0.92f, 0.97f) - arcToRelative(25.2f, 25.2f, 0.0f, false, true, 6.75f, 4.48f) - arcToRelative(4.08f, 4.08f, 0.0f, false, false, 3.96f, 1.05f) - lineToRelative(2.59f, -0.78f) - arcToRelative(2.66f, 2.66f, 0.0f, false, false, 1.89f, -2.18f) - curveToRelative(0.14f, -1.05f, 0.32f, -2.64f, 0.32f, -4.14f) - curveToRelative(0.0f, -1.76f, -0.46f, -3.7f, -1.0f, -5.41f) - arcToRelative(37.43f, 37.43f, 0.0f, false, false, -1.63f, -4.15f) - arcToRelative(2.05f, 2.05f, 0.0f, false, false, -2.27f, -1.14f) - arcToRelative(2.1f, 2.1f, 0.0f, false, false, -0.78f, 0.32f) - lineToRelative(-0.16f, -0.48f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 9.6f, 2.87f) - close() - moveTo(8.43f, 3.87f) - lineTo(8.83f, 5.05f) - lineTo(8.87f, 5.15f) - lineTo(10.54f, 9.99f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.17f, 0.35f) - horizontalLineToRelative(0.01f) - curveToRelative(0.24f, -0.2f, 0.34f, -0.53f, 0.24f, -0.83f) - lineToRelative(-1.69f, -4.9f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.97f, -0.27f) - lineToRelative(0.72f, 2.27f) - lineToRelative(0.04f, 0.15f) - lineToRelative(0.87f, 2.7f) - lineToRelative(0.17f, 0.52f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.42f, -0.46f) - lineToRelative(-0.16f, -0.51f) - lineToRelative(-0.89f, -2.79f) - arcToRelative(0.61f, 0.61f, 0.0f, false, true, 0.48f, -0.7f) - curveToRelative(0.27f, -0.06f, 0.52f, 0.08f, 0.62f, 0.3f) - curveToRelative(0.41f, 0.89f, 1.04f, 2.34f, 1.56f, 3.98f) - curveToRelative(0.53f, 1.64f, 0.93f, 3.41f, 0.93f, 4.95f) - curveToRelative(0.0f, 1.4f, -0.17f, 2.9f, -0.3f, 3.93f) - curveToRelative(-0.07f, 0.45f, -0.39f, 0.82f, -0.84f, 0.95f) - lineToRelative(-2.59f, 0.78f) - curveToRelative(-0.84f, 0.25f, -1.8f, -0.02f, -2.5f, -0.69f) - arcToRelative(26.69f, 26.69f, 0.0f, false, false, -7.25f, -4.83f) - lineToRelative(-0.01f, -0.01f) - arcToRelative(2.4f, 2.4f, 0.0f, false, true, 1.06f, -0.68f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 2.24f, 0.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.9f, -0.96f) - lineToRelative(-2.35f, -7.1f) - arcToRelative(0.52f, 0.52f, 0.0f, false, true, 0.98f, -0.32f) - lineToRelative(1.44f, 4.34f) - lineToRelative(0.26f, 0.79f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.42f, -0.48f) - lineToRelative(-0.26f, -0.78f) - lineToRelative(-1.8f, -5.5f) - arcToRelative(0.55f, 0.55f, 0.0f, false, true, 1.03f, -0.36f) - close() - moveTo(18.3f, 4.24f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.1f, 1.02f) - curveToRelative(0.42f, 0.45f, 0.8f, 1.0f, 0.8f, 1.99f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - curveToRelative(0.0f, -1.5f, -0.62f, -2.39f, -1.2f, -3.01f) - close() - } - } - return _handWave!! - } - -private var _handWave: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Handshake.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Handshake.kt deleted file mode 100644 index 81997044..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Handshake.kt +++ /dev/null @@ -1,126 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Handshake: ImageVector - get() { - if (_handshake != null) { - return _handshake!! - } - _handshake = fluentIcon(name = "Regular.Handshake") { - fluentPath { - moveTo(12.24f, 2.96f) - curveToRelative(-0.23f, 0.0f, -0.44f, 0.11f, -0.58f, 0.28f) - lineToRelative(-0.06f, 0.04f) - arcToRelative(6.3f, 6.3f, 0.0f, false, false, -6.26f, 1.56f) - arcToRelative(6.2f, 6.2f, 0.0f, false, false, -1.74f, 5.5f) - lineToRelative(-0.02f, 0.02f) - lineToRelative(-0.95f, 0.95f) - arcToRelative(2.1f, 2.1f, 0.0f, false, false, 0.0f, 3.0f) - curveToRelative(0.49f, 0.48f, 1.15f, 0.68f, 1.79f, 0.6f) - arcToRelative(2.1f, 2.1f, 0.0f, false, false, 1.88f, 1.56f) - arcToRelative(2.13f, 2.13f, 0.0f, false, false, 2.02f, 1.94f) - arcToRelative(2.14f, 2.14f, 0.0f, false, false, 3.4f, 1.59f) - lineToRelative(0.4f, 0.38f) - arcToRelative(2.15f, 2.15f, 0.0f, false, false, 3.64f, -1.32f) - arcToRelative(2.13f, 2.13f, 0.0f, false, false, 1.94f, -1.93f) - arcToRelative(2.13f, 2.13f, 0.0f, false, false, 1.87f, -1.6f) - arcToRelative(2.1f, 2.1f, 0.0f, false, false, 1.76f, -3.6f) - lineToRelative(-0.83f, -0.83f) - lineToRelative(0.17f, -0.67f) - arcToRelative(6.02f, 6.02f, 0.0f, false, false, -5.83f, -7.46f) - horizontalLineToRelative(-2.6f) - close() - moveTo(15.16f, 7.91f) - lineTo(18.63f, 11.35f) - lineTo(18.65f, 11.37f) - lineTo(20.27f, 12.98f) - curveToRelative(0.25f, 0.25f, 0.25f, 0.64f, 0.0f, 0.88f) - arcToRelative(0.63f, 0.63f, 0.0f, false, true, -0.89f, 0.0f) - lineToRelative(-1.62f, -1.61f) - arcToRelative(0.76f, 0.76f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-0.02f, 0.02f) - curveToRelative(-0.3f, 0.29f, -0.3f, 0.76f, 0.0f, 1.05f) - lineToRelative(1.27f, 1.26f) - curveToRelative(0.24f, 0.24f, 0.24f, 0.64f, 0.0f, 0.88f) - arcToRelative(0.63f, 0.63f, 0.0f, false, true, -0.82f, 0.06f) - arcToRelative(0.76f, 0.76f, 0.0f, false, false, -0.99f, 0.07f) - arcToRelative(0.74f, 0.74f, 0.0f, false, false, -0.06f, 0.98f) - curveToRelative(0.19f, 0.25f, 0.17f, 0.6f, -0.06f, 0.82f) - arcToRelative(0.63f, 0.63f, 0.0f, false, true, -0.83f, 0.05f) - arcToRelative(0.76f, 0.76f, 0.0f, false, false, -1.0f, 0.06f) - curveToRelative(-0.26f, 0.27f, -0.29f, 0.7f, -0.06f, 0.99f) - curveToRelative(0.2f, 0.25f, 0.18f, 0.6f, -0.05f, 0.83f) - arcToRelative(0.64f, 0.64f, 0.0f, false, true, -0.9f, 0.0f) - lineToRelative(-0.37f, -0.37f) - lineToRelative(0.1f, -0.1f) - arcToRelative(2.1f, 2.1f, 0.0f, false, false, -1.4f, -3.61f) - arcToRelative(2.1f, 2.1f, 0.0f, false, false, -1.95f, -2.0f) - arcToRelative(2.14f, 2.14f, 0.0f, false, false, -2.41f, -1.93f) - arcToRelative(2.13f, 2.13f, 0.0f, false, false, -2.12f, -1.56f) - arcToRelative(4.77f, 4.77f, 0.0f, false, true, 4.95f, -5.23f) - lineToRelative(-1.5f, 1.13f) - arcToRelative(2.31f, 2.31f, 0.0f, false, false, -0.44f, 3.25f) - arcToRelative(2.33f, 2.33f, 0.0f, false, false, 3.26f, 0.44f) - lineToRelative(1.9f, -1.43f) - horizontalLineToRelative(1.96f) - close() - moveTo(9.4f, 6.84f) - lineToRelative(3.14f, -2.38f) - horizontalLineToRelative(0.5f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.19f, 0.01f) - horizontalLineToRelative(1.62f) - arcToRelative(4.52f, 4.52f, 0.0f, false, true, 4.43f, 5.37f) - lineToRelative(-3.21f, -3.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.54f, -0.23f) - horizontalLineToRelative(-2.58f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.45f, 0.15f) - lineToRelative(-2.1f, 1.59f) - arcToRelative(0.83f, 0.83f, 0.0f, false, true, -1.16f, -0.16f) - arcToRelative(0.81f, 0.81f, 0.0f, false, true, 0.16f, -1.15f) - close() - moveTo(6.03f, 14.8f) - arcToRelative(0.62f, 0.62f, 0.0f, false, true, 0.0f, -0.88f) - lineToRelative(0.96f, -0.95f) - arcToRelative(0.63f, 0.63f, 0.0f, false, true, 0.89f, 0.0f) - curveToRelative(0.24f, 0.24f, 0.24f, 0.62f, 0.0f, 0.87f) - lineToRelative(-0.96f, 0.96f) - arcToRelative(0.63f, 0.63f, 0.0f, false, true, -0.88f, 0.0f) - close() - moveTo(5.54f, 11.43f) - arcToRelative(0.62f, 0.62f, 0.0f, false, true, 0.0f, 0.87f) - lineToRelative(-0.96f, 0.95f) - arcToRelative(0.63f, 0.63f, 0.0f, false, true, -0.89f, 0.0f) - arcToRelative(0.62f, 0.62f, 0.0f, false, true, 0.0f, -0.88f) - lineToRelative(0.96f, -0.95f) - arcToRelative(0.63f, 0.63f, 0.0f, false, true, 0.88f, 0.0f) - horizontalLineToRelative(0.01f) - close() - moveTo(10.89f, 18.74f) - arcToRelative(0.63f, 0.63f, 0.0f, false, true, -0.89f, 0.0f) - arcToRelative(0.62f, 0.62f, 0.0f, false, true, 0.0f, -0.88f) - lineToRelative(0.96f, -0.95f) - arcToRelative(0.63f, 0.63f, 0.0f, false, true, 0.89f, 0.0f) - curveToRelative(0.24f, 0.25f, 0.24f, 0.64f, 0.0f, 0.88f) - lineToRelative(-0.96f, 0.95f) - close() - moveTo(8.87f, 16.74f) - arcToRelative(0.63f, 0.63f, 0.0f, false, true, -0.89f, 0.0f) - arcToRelative(0.62f, 0.62f, 0.0f, false, true, 0.0f, -0.88f) - lineToRelative(0.96f, -0.96f) - horizontalLineToRelative(0.01f) - arcToRelative(0.63f, 0.63f, 0.0f, false, true, 0.88f, 0.0f) - curveToRelative(0.24f, 0.25f, 0.24f, 0.64f, 0.0f, 0.88f) - lineToRelative(-0.96f, 0.96f) - close() - } - } - return _handshake!! - } - -private var _handshake: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HatGraduation.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HatGraduation.kt deleted file mode 100644 index 842b05fc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HatGraduation.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.HatGraduation: ImageVector - get() { - if (_hatGraduation != null) { - return _hatGraduation!! - } - _hatGraduation = fluentIcon(name = "Regular.HatGraduation") { - fluentPath { - moveTo(9.9f, 3.7f) - arcToRelative(3.87f, 3.87f, 0.0f, false, true, 4.2f, 0.0f) - lineToRelative(8.05f, 5.17f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.01f, 1.26f) - lineTo(19.0f, 12.19f) - verticalLineToRelative(5.56f) - curveToRelative(0.0f, 0.16f, -0.05f, 0.32f, -0.15f, 0.45f) - lineToRelative(-0.01f, 0.02f) - arcToRelative(2.23f, 2.23f, 0.0f, false, true, -0.11f, 0.13f) - arcToRelative(7.43f, 7.43f, 0.0f, false, true, -1.57f, 1.29f) - arcTo(9.7f, 9.7f, 0.0f, false, true, 12.0f, 21.0f) - arcToRelative(9.7f, 9.7f, 0.0f, false, true, -5.16f, -1.36f) - arcToRelative(7.43f, 7.43f, 0.0f, false, true, -1.69f, -1.44f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.15f, -0.45f) - lineTo(5.0f, 12.2f) - lineToRelative(-2.0f, -1.3f) - verticalLineToRelative(5.36f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - lineTo(1.5f, 9.5f) - curveToRelative(0.0f, -0.27f, 0.14f, -0.5f, 0.36f, -0.64f) - lineTo(9.9f, 3.7f) - close() - moveTo(14.12f, 15.38f) - arcToRelative(3.88f, 3.88f, 0.0f, false, true, -4.24f, 0.0f) - lineToRelative(-3.38f, -2.2f) - verticalLineToRelative(4.29f) - lineToRelative(0.13f, 0.13f) - curveToRelative(0.21f, 0.2f, 0.54f, 0.48f, 1.0f, 0.76f) - arcTo(8.2f, 8.2f, 0.0f, false, false, 12.0f, 19.5f) - arcToRelative(8.2f, 8.2f, 0.0f, false, false, 4.37f, -1.14f) - arcToRelative(5.93f, 5.93f, 0.0f, false, false, 1.13f, -0.89f) - verticalLineToRelative(-4.3f) - lineToRelative(-3.38f, 2.21f) - close() - moveTo(13.28f, 4.96f) - curveToRelative(-0.78f, -0.5f, -1.78f, -0.5f, -2.56f, 0.0f) - lineTo(3.63f, 9.51f) - lineToRelative(7.07f, 4.62f) - curveToRelative(0.79f, 0.51f, 1.81f, 0.51f, 2.6f, 0.0f) - lineToRelative(7.07f, -4.62f) - lineToRelative(-7.09f, -4.55f) - close() - } - } - return _hatGraduation!! - } - -private var _hatGraduation: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Hd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Hd.kt deleted file mode 100644 index c8b40b99..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Hd.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Hd: ImageVector - get() { - if (_hd != null) { - return _hd!! - } - _hd = fluentIcon(name = "Regular.Hd") { - fluentPath { - moveTo(7.25f, 8.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.75f) - horizontalLineToRelative(2.0f) - lineTo(10.0f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(10.0f, 13.0f) - lineTo(8.0f, 13.0f) - verticalLineToRelative(2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-6.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(13.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(1.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-1.5f) - curveTo(18.0f, 9.45f, 16.54f, 8.0f, 14.75f, 8.0f) - horizontalLineToRelative(-1.0f) - close() - moveTo(14.5f, 14.5f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(0.25f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-0.25f) - close() - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(6.25f, 4.5f) - close() - } - } - return _hd!! - } - -private var _hd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Hdr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Hdr.kt deleted file mode 100644 index fdd8a7ce..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Hdr.kt +++ /dev/null @@ -1,99 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Hdr: ImageVector - get() { - if (_hdr != null) { - return _hdr!! - } - _hdr = fluentIcon(name = "Regular.Hdr") { - fluentPath { - moveTo(18.75f, 3.5f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(5.25f, 20.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 17.25f) - lineTo(2.0f, 6.75f) - curveTo(2.0f, 4.95f, 3.46f, 3.5f, 5.25f, 3.5f) - horizontalLineToRelative(13.5f) - close() - moveTo(18.75f, 5.0f) - lineTo(5.25f, 5.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(20.5f, 6.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(8.38f, 9.0f) - curveToRelative(0.31f, 0.0f, 0.57f, 0.22f, 0.62f, 0.53f) - verticalLineToRelative(4.84f) - arcToRelative(0.62f, 0.62f, 0.0f, false, true, -1.24f, 0.1f) - verticalLineToRelative(-1.83f) - lineTo(6.26f, 12.64f) - verticalLineToRelative(1.75f) - arcToRelative(0.62f, 0.62f, 0.0f, false, true, -1.24f, 0.09f) - lineTo(5.02f, 9.63f) - arcToRelative(0.63f, 0.63f, 0.0f, false, true, 1.24f, -0.09f) - verticalLineToRelative(1.85f) - horizontalLineToRelative(1.48f) - lineTo(7.74f, 9.62f) - curveToRelative(0.0f, -0.35f, 0.28f, -0.63f, 0.63f, -0.63f) - close() - moveTo(17.2f, 9.02f) - arcToRelative(1.8f, 1.8f, 0.0f, false, true, 1.02f, 3.29f) - lineToRelative(0.74f, 1.83f) - arcToRelative(0.62f, 0.62f, 0.0f, false, true, -1.11f, 0.56f) - lineToRelative(-0.05f, -0.1f) - lineToRelative(-0.8f, -1.98f) - horizontalLineToRelative(-0.74f) - verticalLineToRelative(1.75f) - curveToRelative(0.0f, 0.76f, -1.03f, 0.83f, -1.22f, 0.22f) - lineToRelative(-0.02f, -0.1f) - lineToRelative(-0.01f, -0.11f) - lineTo(15.01f, 9.64f) - curveToRelative(0.0f, -0.31f, 0.22f, -0.57f, 0.53f, -0.62f) - lineTo(17.2f, 9.02f) - close() - moveTo(11.38f, 9.0f) - curveToRelative(1.39f, 0.0f, 2.53f, 1.08f, 2.62f, 2.45f) - verticalLineToRelative(0.91f) - curveToRelative(0.0f, 1.4f, -1.09f, 2.54f, -2.46f, 2.62f) - horizontalLineToRelative(-0.92f) - arcToRelative(0.63f, 0.63f, 0.0f, false, true, -0.61f, -0.53f) - lineToRelative(-0.01f, -0.09f) - lineTo(10.0f, 9.63f) - curveToRelative(0.0f, -0.31f, 0.23f, -0.57f, 0.53f, -0.62f) - horizontalLineToRelative(0.85f) - close() - moveTo(11.38f, 10.25f) - horizontalLineToRelative(-0.13f) - verticalLineToRelative(3.49f) - horizontalLineToRelative(0.13f) - curveToRelative(0.71f, 0.0f, 1.3f, -0.55f, 1.36f, -1.25f) - lineToRelative(0.01f, -0.13f) - verticalLineToRelative(-0.74f) - curveToRelative(0.0f, -0.71f, -0.54f, -1.3f, -1.24f, -1.37f) - horizontalLineToRelative(-0.13f) - close() - moveTo(16.25f, 10.25f) - verticalLineToRelative(1.11f) - horizontalLineToRelative(0.95f) - arcToRelative(0.55f, 0.55f, 0.0f, false, false, 0.1f, -1.1f) - horizontalLineToRelative(-1.05f) - close() - } - } - return _hdr!! - } - -private var _hdr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HdrOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HdrOff.kt deleted file mode 100644 index 5b283400..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HdrOff.kt +++ /dev/null @@ -1,98 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.HdrOff: ImageVector - get() { - if (_hdrOff != null) { - return _hdrOff!! - } - _hdrOff = fluentIcon(name = "Regular.HdrOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(0.96f, 0.96f) - curveTo(2.46f, 4.84f, 2.0f, 5.74f, 2.0f, 6.75f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(13.5f) - curveToRelative(0.22f, 0.0f, 0.43f, -0.02f, 0.63f, -0.06f) - lineToRelative(1.34f, 1.34f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(17.94f, 19.0f) - lineTo(5.25f, 19.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(3.5f, 6.75f) - curveToRelative(0.0f, -0.6f, 0.3f, -1.12f, 0.75f, -1.44f) - lineTo(8.04f, 9.1f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, -0.29f, 0.52f) - verticalLineToRelative(1.77f) - lineTo(6.27f, 11.39f) - lineTo(6.27f, 9.54f) - arcToRelative(0.63f, 0.63f, 0.0f, false, false, -1.25f, 0.1f) - verticalLineToRelative(4.84f) - arcToRelative(0.63f, 0.63f, 0.0f, false, false, 1.25f, -0.1f) - verticalLineToRelative(-1.74f) - horizontalLineToRelative(1.48f) - verticalLineToRelative(1.73f) - lineToRelative(0.01f, 0.1f) - arcToRelative(0.63f, 0.63f, 0.0f, false, false, 1.24f, -0.1f) - verticalLineToRelative(-4.3f) - lineToRelative(1.0f, 0.99f) - verticalLineToRelative(3.41f) - curveToRelative(0.05f, 0.3f, 0.31f, 0.53f, 0.62f, 0.53f) - horizontalLineToRelative(0.92f) - arcToRelative(2.62f, 2.62f, 0.0f, false, false, 1.66f, -0.74f) - lineTo(17.94f, 19.0f) - close() - moveTo(11.24f, 12.31f) - lineTo(12.32f, 13.38f) - curveToRelative(-0.25f, 0.23f, -0.58f, 0.37f, -0.94f, 0.37f) - horizontalLineToRelative(-0.13f) - lineTo(11.25f, 12.3f) - close() - moveTo(16.26f, 13.08f) - lineTo(15.0f, 11.82f) - lineTo(15.0f, 9.64f) - curveToRelative(0.0f, -0.31f, 0.22f, -0.57f, 0.53f, -0.62f) - lineTo(17.2f, 9.02f) - arcToRelative(1.8f, 1.8f, 0.0f, false, true, 1.02f, 3.29f) - lineToRelative(0.74f, 1.83f) - arcToRelative(0.63f, 0.63f, 0.0f, false, true, -0.83f, 0.8f) - lineToRelative(-0.32f, -0.31f) - verticalLineToRelative(-0.02f) - lineToRelative(-0.8f, -1.99f) - horizontalLineToRelative(-0.75f) - verticalLineToRelative(0.46f) - close() - moveTo(16.26f, 11.38f) - horizontalLineToRelative(0.94f) - arcToRelative(0.55f, 0.55f, 0.0f, false, false, 0.1f, -1.1f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-0.95f) - verticalLineToRelative(1.1f) - close() - moveTo(20.5f, 17.32f) - lineTo(20.5f, 6.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(8.18f, 5.0f) - lineToRelative(-1.5f, -1.5f) - horizontalLineToRelative(12.07f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.46f, -0.1f, 0.9f, -0.27f, 1.3f) - lineToRelative(-1.23f, -1.23f) - close() - } - } - return _hdrOff!! - } - -private var _hdrOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Headphones.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Headphones.kt deleted file mode 100644 index c63b1df8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Headphones.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Headphones: ImageVector - get() { - if (_headphones != null) { - return _headphones!! - } - _headphones = fluentIcon(name = "Regular.Headphones") { - fluentPath { - moveTo(22.0f, 12.0f) - verticalLineToRelative(7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.82f, 3.0f) - lineTo(16.0f, 22.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - lineTo(15.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) - horizontalLineToRelative(4.62f) - verticalLineToRelative(-2.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, -17.0f, 0.0f) - verticalLineToRelative(2.0f) - lineTo(8.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - lineTo(5.0f, 22.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - verticalLineToRelative(-7.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) - verticalLineToRelative(7.0f) - verticalLineToRelative(-7.0f) - close() - moveTo(7.5f, 15.5f) - horizontalLineToRelative(-4.0f) - lineTo(3.5f, 19.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(-5.0f) - close() - moveTo(20.5f, 15.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(5.0f) - lineTo(19.0f, 20.5f) - curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) - lineTo(20.5f, 15.5f) - close() - } - } - return _headphones!! - } - -private var _headphones: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HeadphonesSoundWave.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HeadphonesSoundWave.kt deleted file mode 100644 index 578e7d82..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HeadphonesSoundWave.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.HeadphonesSoundWave: ImageVector - get() { - if (_headphonesSoundWave != null) { - return _headphonesSoundWave!! - } - _headphonesSoundWave = fluentIcon(name = "Regular.HeadphonesSoundWave") { - fluentPath { - moveTo(3.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, 17.0f, 0.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(19.0f, 22.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) - verticalLineToRelative(-7.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, -20.0f, 0.0f) - verticalLineToRelative(7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(3.5f, 14.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(20.5f, 15.5f) - lineTo(20.5f, 19.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(1.5f) - close() - moveTo(3.5f, 19.0f) - verticalLineToRelative(-3.5f) - lineTo(5.0f, 15.5f) - verticalLineToRelative(5.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 3.5f, 19.0f) - close() - moveTo(12.75f, 11.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-10.5f) - close() - moveTo(8.75f, 14.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(16.0f, 14.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-4.5f) - close() - } - } - return _headphonesSoundWave!! - } - -private var _headphonesSoundWave: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Headset.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Headset.kt deleted file mode 100644 index 5e4c8eeb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Headset.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Headset: ImageVector - get() { - if (_headset != null) { - return _headset!! - } - _headset = fluentIcon(name = "Regular.Headset") { - fluentPath { - moveTo(12.0f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(17.5f, 10.0f) - lineTo(17.5f, 9.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - verticalLineToRelative(1.0f) - lineTo(9.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - lineTo(6.5f, 16.0f) - verticalLineToRelative(0.25f) - curveToRelative(0.0f, 1.2f, 0.93f, 2.17f, 2.1f, 2.24f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(1.13f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 1.5f) - lineTo(8.75f, 20.0f) - curveToRelative(-2.0f, 0.0f, -3.64f, -1.57f, -3.74f, -3.55f) - lineToRelative(-0.01f, -0.2f) - lineTo(5.0f, 9.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, 14.0f, 0.0f) - verticalLineToRelative(5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.85f, 2.0f) - lineTo(15.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - lineTo(14.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) - horizontalLineToRelative(2.62f) - close() - moveTo(8.5f, 11.5f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(-3.0f) - close() - moveTo(17.5f, 11.5f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(3.0f) - lineTo(17.0f, 14.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.41f) - lineTo(17.5f, 11.5f) - close() - } - } - return _headset!! - } - -private var _headset: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HeadsetAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HeadsetAdd.kt deleted file mode 100644 index 52fff2e4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HeadsetAdd.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.HeadsetAdd: ImageVector - get() { - if (_headsetAdd != null) { - return _headsetAdd!! - } - _headsetAdd = fluentIcon(name = "Regular.HeadsetAdd") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 7.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 7.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 6.0f) - lineTo(17.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - lineTo(18.0f, 6.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 7.0f) - close() - moveTo(17.5f, 13.0f) - curveToRelative(0.52f, 0.0f, 1.02f, -0.06f, 1.5f, -0.17f) - lineTo(19.0f, 15.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.85f, 2.0f) - lineTo(15.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) - verticalLineToRelative(-4.14f) - curveToRelative(0.46f, 0.3f, 0.97f, 0.53f, 1.5f, 0.7f) - verticalLineToRelative(2.82f) - lineTo(17.0f, 15.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.41f) - lineTo(17.5f, 13.0f) - close() - moveTo(12.02f, 3.0f) - curveToRelative(-0.3f, 0.48f, -0.55f, 1.0f, -0.72f, 1.54f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 6.5f, 10.0f) - verticalLineToRelative(1.0f) - lineTo(9.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - lineTo(6.5f, 17.0f) - verticalLineToRelative(0.25f) - curveToRelative(0.0f, 1.2f, 0.93f, 2.17f, 2.1f, 2.24f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(1.13f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 1.5f) - lineTo(8.75f, 21.0f) - curveToRelative(-2.0f, 0.0f, -3.64f, -1.57f, -3.74f, -3.55f) - lineToRelative(-0.01f, -0.2f) - lineTo(5.0f, 10.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, 7.0f, -7.0f) - horizontalLineToRelative(0.02f) - close() - moveTo(12.0f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(8.5f, 12.5f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(-3.0f) - close() - } - } - return _headsetAdd!! - } - -private var _headsetAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HeadsetVr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HeadsetVr.kt deleted file mode 100644 index 88415a12..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HeadsetVr.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.HeadsetVr: ImageVector - get() { - if (_headsetVr != null) { - return _headsetVr!! - } - _headsetVr = fluentIcon(name = "Regular.HeadsetVr") { - fluentPath { - moveTo(13.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(6.75f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.5f) - close() - moveTo(14.0f, 12.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(9.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(9.0f, 5.0f) - lineTo(6.0f, 5.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, 4.0f) - horizontalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(2.0f, 14.0f) - verticalLineToRelative(2.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, 4.0f) - horizontalLineToRelative(1.55f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 2.16f, -0.64f) - lineToRelative(2.15f, -1.38f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, 0.28f, 0.0f) - lineToRelative(2.15f, 1.38f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 2.16f, 0.64f) - lineTo(18.0f, 20.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, -4.0f) - lineTo(22.0f, 14.0f) - horizontalLineToRelative(0.25f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(22.0f, 9.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, -4.0f) - horizontalLineToRelative(-3.0f) - lineTo(15.0f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-4.5f) - close() - moveTo(6.0f, 6.5f) - horizontalLineToRelative(12.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 20.5f, 9.0f) - verticalLineToRelative(7.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 18.0f, 19.0f) - horizontalLineToRelative(-1.55f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -1.35f, -0.4f) - lineToRelative(-2.15f, -1.38f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.9f, 0.0f) - lineTo(8.9f, 18.6f) - curveToRelative(-0.4f, 0.26f, -0.88f, 0.4f, -1.35f, 0.4f) - lineTo(6.0f, 19.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.5f, -2.5f) - lineTo(3.5f, 9.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 6.0f, 6.5f) - close() - } - } - return _headsetVr!! - } - -private var _headsetVr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HeartBroken.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HeartBroken.kt deleted file mode 100644 index 8acb63f0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HeartBroken.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.HeartBroken: ImageVector - get() { - if (_heartBroken != null) { - return _heartBroken!! - } - _heartBroken = fluentIcon(name = "Regular.HeartBroken") { - fluentPath { - moveToRelative(12.0f, 5.75f) - lineToRelative(0.82f, -0.82f) - arcToRelative(5.38f, 5.38f, 0.0f, false, true, 7.61f, 7.6f) - lineToRelative(-7.9f, 7.9f) - curveToRelative(-0.3f, 0.29f, -0.77f, 0.29f, -1.06f, 0.0f) - lineToRelative(-7.9f, -7.9f) - arcToRelative(5.37f, 5.37f, 0.0f, true, true, 7.6f, -7.6f) - lineToRelative(0.83f, 0.82f) - close() - moveTo(12.0f, 18.84f) - lineTo(19.37f, 11.47f) - arcToRelative(3.88f, 3.88f, 0.0f, false, false, -5.3f, -5.66f) - lineToRelative(-1.0f, 1.0f) - lineToRelative(-0.52f, 0.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, 0.07f) - lineToRelative(-1.23f, 1.23f) - lineToRelative(2.8f, 2.67f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.01f, 1.07f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(1.96f, -1.96f) - lineToRelative(-2.8f, -2.67f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.01f, -1.07f) - lineToRelative(1.32f, -1.3f) - lineToRelative(-0.82f, -0.83f) - arcToRelative(3.88f, 3.88f, 0.0f, false, false, -5.48f, 5.48f) - lineTo(12.0f, 18.84f) - close() - } - } - return _heartBroken!! - } - -private var _heartBroken: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HeartCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HeartCircle.kt deleted file mode 100644 index 88577a07..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HeartCircle.kt +++ /dev/null @@ -1,39 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.HeartCircle: ImageVector - get() { - if (_heartCircle != null) { - return _heartCircle!! - } - _heartCircle = fluentIcon(name = "Regular.HeartCircle") { - fluentPath { - moveToRelative(11.7f, 16.86f) - lineToRelative(-4.11f, -4.8f) - arcToRelative(2.46f, 2.46f, 0.0f, false, true, 3.58f, -3.36f) - lineToRelative(0.83f, 0.8f) - lineToRelative(0.83f, -0.8f) - arcToRelative(2.46f, 2.46f, 0.0f, false, true, 3.58f, 3.36f) - lineToRelative(-4.1f, 4.8f) - arcToRelative(0.4f, 0.4f, 0.0f, false, true, -0.61f, 0.0f) - close() - moveTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, -20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 20.0f, 0.0f) - close() - moveTo(20.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, -17.0f, 0.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 17.0f, 0.0f) - close() - } - } - return _heartCircle!! - } - -private var _heartCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HeartCircleHint.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HeartCircleHint.kt deleted file mode 100644 index 2c8b9348..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HeartCircleHint.kt +++ /dev/null @@ -1,95 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.HeartCircleHint: ImageVector - get() { - if (_heartCircleHint != null) { - return _heartCircleHint!! - } - _heartCircleHint = fluentIcon(name = "Regular.HeartCircleHint") { - fluentPath { - moveTo(10.68f, 2.09f) - arcToRelative(10.09f, 10.09f, 0.0f, false, true, 2.64f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.2f, 1.48f) - arcToRelative(8.59f, 8.59f, 0.0f, false, false, -2.25f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.2f, -1.48f) - close() - moveTo(21.08f, 10.03f) - curveToRelative(0.4f, -0.05f, 0.78f, 0.24f, 0.83f, 0.65f) - arcToRelative(10.09f, 10.09f, 0.0f, false, true, 0.0f, 2.64f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.48f, -0.2f) - arcToRelative(8.57f, 8.57f, 0.0f, false, false, 0.0f, -2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.64f, -0.84f) - close() - moveTo(2.93f, 10.03f) - curveToRelative(0.4f, 0.06f, 0.7f, 0.43f, 0.64f, 0.84f) - arcToRelative(8.59f, 8.59f, 0.0f, false, false, 0.0f, 2.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.48f, 0.2f) - arcToRelative(10.09f, 10.09f, 0.0f, false, true, 0.0f, -2.65f) - curveToRelative(0.05f, -0.41f, 0.43f, -0.7f, 0.84f, -0.65f) - close() - moveTo(10.03f, 21.07f) - curveToRelative(0.06f, -0.4f, 0.43f, -0.7f, 0.84f, -0.64f) - arcToRelative(8.57f, 8.57f, 0.0f, false, false, 2.26f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.2f, 1.48f) - arcToRelative(10.09f, 10.09f, 0.0f, false, true, -2.65f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.84f) - close() - moveTo(18.07f, 4.06f) - arcToRelative(10.1f, 10.1f, 0.0f, false, true, 1.87f, 1.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.19f, 0.9f) - arcToRelative(8.58f, 8.58f, 0.0f, false, false, -1.59f, -1.58f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.91f, -1.2f) - close() - moveTo(19.81f, 17.02f) - curveToRelative(0.32f, 0.26f, 0.39f, 0.73f, 0.13f, 1.06f) - arcToRelative(10.1f, 10.1f, 0.0f, false, true, -1.87f, 1.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.9f, -1.2f) - arcToRelative(8.57f, 8.57f, 0.0f, false, false, 1.58f, -1.59f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -0.14f) - close() - moveTo(6.98f, 4.2f) - curveToRelative(0.25f, 0.33f, 0.19f, 0.8f, -0.14f, 1.06f) - arcToRelative(8.59f, 8.59f, 0.0f, false, false, -1.6f, 1.59f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.18f, -0.91f) - arcToRelative(10.09f, 10.09f, 0.0f, false, true, 1.87f, -1.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, 0.13f) - close() - moveTo(4.19f, 17.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 0.14f) - arcToRelative(8.58f, 8.58f, 0.0f, false, false, 1.59f, 1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.91f, 1.18f) - arcToRelative(10.1f, 10.1f, 0.0f, false, true, -1.87f, -1.86f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.13f, -1.06f) - close() - moveTo(13.52f, 9.84f) - arcToRelative(1.15f, 1.15f, 0.0f, false, true, 1.7f, 1.57f) - lineTo(12.0f, 15.11f) - lineToRelative(-3.22f, -3.7f) - arcToRelative(1.15f, 1.15f, 0.0f, false, true, 1.7f, -1.57f) - lineToRelative(0.99f, 1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 0.0f) - lineToRelative(1.0f, -1.0f) - close() - moveTo(16.35f, 8.91f) - arcToRelative(2.65f, 2.65f, 0.0f, false, false, -3.9f, -0.12f) - lineToRelative(-0.45f, 0.46f) - lineToRelative(-0.46f, -0.46f) - arcToRelative(2.65f, 2.65f, 0.0f, false, false, -3.89f, 3.6f) - lineToRelative(3.78f, 4.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, 0.0f) - lineToRelative(3.79f, -4.35f) - curveToRelative(0.86f, -1.0f, 0.86f, -2.48f, 0.0f, -3.48f) - close() - } - } - return _heartCircleHint!! - } - -private var _heartCircleHint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HeartPulse.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HeartPulse.kt deleted file mode 100644 index e81a2ff3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HeartPulse.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.HeartPulse: ImageVector - get() { - if (_heartPulse != null) { - return _heartPulse!! - } - _heartPulse = fluentIcon(name = "Regular.HeartPulse") { - fluentPath { - moveTo(12.82f, 5.58f) - lineTo(12.0f, 6.4f) - lineToRelative(-0.82f, -0.82f) - arcTo(5.37f, 5.37f, 0.0f, false, false, 2.25f, 11.0f) - horizontalLineToRelative(1.6f) - arcToRelative(3.88f, 3.88f, 0.0f, false, true, 6.27f, -4.36f) - lineTo(11.47f, 8.0f) - curveToRelative(0.3f, 0.3f, 0.79f, 0.29f, 1.08f, -0.02f) - lineToRelative(1.33f, -1.34f) - arcTo(3.88f, 3.88f, 0.0f, false, true, 20.15f, 11.0f) - horizontalLineToRelative(1.6f) - arcToRelative(5.37f, 5.37f, 0.0f, false, false, -8.93f, -5.42f) - close() - moveTo(11.47f, 21.08f) - lineTo(4.89f, 14.5f) - horizontalLineToRelative(2.12f) - lineTo(12.0f, 19.47f) - lineToRelative(4.99f, -4.98f) - horizontalLineToRelative(2.12f) - lineToRelative(-6.58f, 6.58f) - curveToRelative(-0.3f, 0.29f, -0.77f, 0.29f, -1.06f, 0.0f) - close() - moveTo(9.42f, 8.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.35f, 0.02f) - lineTo(6.38f, 12.0f) - lineTo(2.75f, 12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.1f) - curveToRelative(0.3f, 0.0f, 0.56f, -0.17f, 0.69f, -0.43f) - lineToRelative(1.23f, -2.6f) - lineToRelative(2.56f, 5.11f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.28f, 0.1f) - lineToRelative(2.7f, -3.73f) - lineToRelative(1.13f, 1.3f) - curveToRelative(0.14f, 0.16f, 0.34f, 0.25f, 0.56f, 0.25f) - horizontalLineToRelative(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.91f) - lineToRelative(-1.53f, -1.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.17f, 0.05f) - lineToRelative(-2.52f, 3.5f) - lineToRelative(-2.7f, -5.4f) - close() - } - } - return _heartPulse!! - } - -private var _heartPulse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Highlight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Highlight.kt deleted file mode 100644 index 6e51ae40..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Highlight.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Highlight: ImageVector - get() { - if (_highlight != null) { - return _highlight!! - } - _highlight = fluentIcon(name = "Regular.Highlight") { - fluentPath { - moveTo(20.26f, 2.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.29f, 0.74f, 0.65f) - verticalLineToRelative(4.6f) - curveToRelative(0.0f, 1.16f, -0.87f, 2.11f, -2.0f, 2.24f) - verticalLineToRelative(2.26f) - curveToRelative(0.0f, 1.19f, -0.92f, 2.16f, -2.1f, 2.24f) - horizontalLineToRelative(-0.4f) - verticalLineToRelative(2.8f) - curveToRelative(0.0f, 0.81f, -0.44f, 1.56f, -1.14f, 1.96f) - lineToRelative(-0.15f, 0.08f) - lineToRelative(-6.64f, 3.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -0.58f) - lineTo(7.51f, 14.0f) - horizontalLineToRelative(-0.26f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(5.0f, 11.75f) - lineTo(5.0f, 9.49f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 3.0f, 7.4f) - lineTo(3.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(4.6f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(13.5f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.65f) - verticalLineToRelative(-4.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.76f, -0.75f) - close() - moveTo(15.0f, 14.0f) - lineTo(9.0f, 14.0f) - verticalLineToRelative(6.07f) - lineToRelative(5.57f, -2.6f) - curveToRelative(0.23f, -0.11f, 0.39f, -0.33f, 0.42f, -0.57f) - lineToRelative(0.01f, -0.11f) - verticalLineToRelative(-2.8f) - close() - moveTo(17.5f, 9.5f) - horizontalLineToRelative(-11.0f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.69f, 0.65f, 0.74f) - horizontalLineToRelative(9.6f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.64f) - lineTo(17.5f, 9.5f) - close() - } - } - return _highlight!! - } - -private var _highlight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HistoryDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HistoryDismiss.kt deleted file mode 100644 index 1d8f0238..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HistoryDismiss.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.HistoryDismiss: ImageVector - get() { - if (_historyDismiss != null) { - return _historyDismiss!! - } - _historyDismiss = fluentIcon(name = "Regular.HistoryDismiss") { - fluentPath { - moveTo(4.5f, 12.0f) - arcToRelative(7.5f, 7.5f, 0.0f, false, false, 6.8f, 7.47f) - curveToRelative(0.18f, 0.54f, 0.42f, 1.06f, 0.72f, 1.53f) - lineTo(12.0f, 21.0f) - arcToRelative(9.0f, 9.0f, 0.0f, false, true, -8.9f, -10.38f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.76f, -0.62f) - curveToRelative(0.46f, 0.0f, 0.79f, 0.44f, 0.72f, 0.9f) - curveToRelative(-0.05f, 0.35f, -0.08f, 0.72f, -0.08f, 1.1f) - close() - moveTo(12.81f, 13.0f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, 1.88f, -1.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.44f, -0.14f) - lineTo(12.5f, 11.5f) - lineTo(12.5f, 7.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(1.06f) - close() - moveTo(21.0f, 12.02f) - curveToRelative(-0.47f, -0.3f, -0.99f, -0.54f, -1.53f, -0.72f) - arcTo(7.5f, 7.5f, 0.0f, false, false, 6.9f, 6.5f) - horizontalLineToRelative(1.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(1.04f) - arcTo(9.0f, 9.0f, 0.0f, false, true, 21.0f, 12.0f) - verticalLineToRelative(0.03f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-1.64f, -1.65f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.65f, 1.64f) - lineToRelative(-1.65f, -1.64f) - close() - } - } - return _historyDismiss!! - } - -private var _historyDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HomeAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HomeAdd.kt deleted file mode 100644 index 97b30bc6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HomeAdd.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.HomeAdd: ImageVector - get() { - if (_homeAdd != null) { - return _homeAdd!! - } - _homeAdd = fluentIcon(name = "Regular.HomeAdd") { - fluentPath { - moveTo(10.55f, 2.53f) - curveToRelative(0.84f, -0.7f, 2.06f, -0.7f, 2.9f, 0.0f) - lineToRelative(6.75f, 5.7f) - curveToRelative(0.5f, 0.42f, 0.8f, 1.05f, 0.8f, 1.71f) - verticalLineToRelative(2.08f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 9.93f) - curveToRelative(0.0f, -0.22f, -0.1f, -0.43f, -0.27f, -0.57f) - lineToRelative(-6.75f, -5.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.96f, 0.0f) - lineToRelative(-6.75f, 5.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.27f, 0.57f) - verticalLineToRelative(9.31f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(6.56f) - curveToRelative(0.18f, 0.54f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(4.75f, 20.99f) - curveTo(3.78f, 21.0f, 3.0f, 20.22f, 3.0f, 19.25f) - verticalLineToRelative(-9.3f) - curveToRelative(0.0f, -0.67f, 0.3f, -1.3f, 0.8f, -1.73f) - lineToRelative(6.75f, -5.69f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _homeAdd!! - } - -private var _homeAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HomeCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HomeCheckmark.kt deleted file mode 100644 index cf3ce804..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HomeCheckmark.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.HomeCheckmark: ImageVector - get() { - if (_homeCheckmark != null) { - return _homeCheckmark!! - } - _homeCheckmark = fluentIcon(name = "Regular.HomeCheckmark") { - fluentPath { - moveTo(13.45f, 2.53f) - curveToRelative(-0.84f, -0.7f, -2.06f, -0.7f, -2.9f, 0.0f) - lineTo(3.8f, 8.23f) - curveToRelative(-0.5f, 0.42f, -0.8f, 1.05f, -0.8f, 1.71f) - verticalLineToRelative(9.31f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(14.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-9.3f) - curveToRelative(0.0f, -0.67f, -0.3f, -1.3f, -0.8f, -1.73f) - lineToRelative(-6.75f, -5.69f) - close() - moveTo(11.52f, 3.68f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.96f, 0.0f) - lineToRelative(6.75f, 5.7f) - curveToRelative(0.17f, 0.13f, 0.27f, 0.34f, 0.27f, 0.56f) - verticalLineToRelative(9.31f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - lineTo(4.75f, 19.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-9.3f) - curveToRelative(0.0f, -0.23f, 0.1f, -0.44f, 0.27f, -0.58f) - lineToRelative(6.75f, -5.7f) - close() - moveTo(15.78f, 11.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-3.97f, 3.97f) - lineToRelative(-1.47f, -1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 0.0f) - lineToRelative(4.5f, -4.5f) - close() - } - } - return _homeCheckmark!! - } - -private var _homeCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HomeDatabase.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HomeDatabase.kt deleted file mode 100644 index 488c1223..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HomeDatabase.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.HomeDatabase: ImageVector - get() { - if (_homeDatabase != null) { - return _homeDatabase!! - } - _homeDatabase = fluentIcon(name = "Regular.HomeDatabase") { - fluentPath { - moveTo(10.55f, 2.53f) - curveToRelative(0.84f, -0.7f, 2.06f, -0.7f, 2.9f, 0.0f) - lineToRelative(6.75f, 5.7f) - curveToRelative(0.5f, 0.42f, 0.8f, 1.05f, 0.8f, 1.71f) - verticalLineToRelative(1.5f) - arcToRelative(8.99f, 8.99f, 0.0f, false, false, -1.5f, -0.34f) - lineTo(19.5f, 9.94f) - curveToRelative(0.0f, -0.22f, -0.1f, -0.43f, -0.27f, -0.57f) - lineToRelative(-6.75f, -5.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.96f, 0.0f) - lineToRelative(-6.75f, 5.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.27f, 0.57f) - verticalLineToRelative(9.31f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - lineTo(12.0f, 19.5f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 0.17f, 0.02f, 0.34f, 0.06f, 0.5f) - lineTo(4.75f, 21.0f) - curveTo(3.78f, 21.0f, 3.0f, 20.22f, 3.0f, 19.25f) - verticalLineToRelative(-9.3f) - curveToRelative(0.0f, -0.67f, 0.3f, -1.3f, 0.8f, -1.73f) - lineToRelative(6.75f, -5.69f) - close() - moveTo(21.0f, 12.5f) - curveToRelative(-0.45f, -0.17f, -0.95f, -0.3f, -1.5f, -0.39f) - arcTo(9.7f, 9.7f, 0.0f, false, false, 18.0f, 12.0f) - curveToRelative(-2.76f, 0.0f, -5.0f, 1.12f, -5.0f, 2.5f) - reflectiveCurveToRelative(2.24f, 2.5f, 5.0f, 2.5f) - arcToRelative(9.7f, 9.7f, 0.0f, false, false, 1.5f, -0.11f) - arcToRelative(7.68f, 7.68f, 0.0f, false, false, 1.5f, -0.39f) - curveToRelative(1.21f, -0.46f, 2.0f, -1.18f, 2.0f, -2.0f) - curveToRelative(0.0f, -0.82f, -0.79f, -1.54f, -2.0f, -2.0f) - close() - moveTo(21.0f, 17.56f) - arcToRelative(9.08f, 9.08f, 0.0f, false, true, -3.0f, 0.44f) - arcToRelative(9.1f, 9.1f, 0.0f, false, true, -3.98f, -0.84f) - curveToRelative(-0.36f, -0.17f, -0.71f, -0.4f, -1.02f, -0.67f) - verticalLineToRelative(4.01f) - curveToRelative(0.0f, 0.36f, 0.15f, 0.7f, 0.42f, 1.0f) - curveToRelative(0.77f, 0.88f, 2.53f, 1.5f, 4.58f, 1.5f) - curveToRelative(2.76f, 0.0f, 5.0f, -1.12f, 5.0f, -2.5f) - verticalLineToRelative(-4.0f) - curveToRelative(-0.31f, 0.26f, -0.66f, 0.49f, -1.02f, 0.66f) - curveToRelative(-0.3f, 0.15f, -0.63f, 0.29f, -0.98f, 0.4f) - close() - } - } - return _homeDatabase!! - } - -private var _homeDatabase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HomeMore.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HomeMore.kt deleted file mode 100644 index e28a58da..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HomeMore.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.HomeMore: ImageVector - get() { - if (_homeMore != null) { - return _homeMore!! - } - _homeMore = fluentIcon(name = "Regular.HomeMore") { - fluentPath { - moveTo(7.75f, 10.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(12.0f, 10.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(17.5f, 11.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) - close() - moveTo(9.0f, 15.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) - close() - moveTo(13.25f, 15.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) - close() - moveTo(16.25f, 14.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(10.54f, 2.53f) - curveToRelative(0.83f, -0.7f, 2.06f, -0.7f, 2.9f, 0.0f) - lineToRelative(6.76f, 5.7f) - curveToRelative(0.5f, 0.43f, 0.8f, 1.06f, 0.8f, 1.72f) - verticalLineToRelative(9.3f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(4.75f, 21.0f) - curveTo(3.78f, 21.0f, 3.0f, 20.22f, 3.0f, 19.25f) - verticalLineToRelative(-9.3f) - curveToRelative(0.0f, -0.66f, 0.3f, -1.3f, 0.8f, -1.72f) - lineToRelative(6.74f, -5.7f) - close() - moveTo(12.47f, 3.68f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.96f, 0.0f) - lineToRelative(-6.74f, 5.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.27f, 0.57f) - verticalLineToRelative(9.3f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(14.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-9.3f) - curveToRelative(0.0f, -0.22f, -0.1f, -0.43f, -0.27f, -0.57f) - lineToRelative(-6.76f, -5.7f) - close() - } - } - return _homeMore!! - } - -private var _homeMore: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HomePerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HomePerson.kt deleted file mode 100644 index bb7d104e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HomePerson.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.HomePerson: ImageVector - get() { - if (_homePerson != null) { - return _homePerson!! - } - _homePerson = fluentIcon(name = "Regular.HomePerson") { - fluentPath { - moveTo(13.45f, 2.53f) - curveToRelative(-0.84f, -0.7f, -2.06f, -0.7f, -2.9f, 0.0f) - lineTo(3.8f, 8.23f) - curveToRelative(-0.5f, 0.42f, -0.8f, 1.05f, -0.8f, 1.71f) - verticalLineToRelative(9.31f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(3.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.1f, 0.25f, 0.25f) - verticalLineToRelative(3.39f) - curveToRelative(0.41f, -0.34f, 0.93f, -0.57f, 1.5f, -0.63f) - verticalLineToRelative(-0.7f) - arcToRelative(3.48f, 3.48f, 0.0f, false, true, -0.29f, -3.02f) - curveToRelative(-0.3f, -0.48f, -0.85f, -0.8f, -1.46f, -0.8f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.79f, -1.75f, 1.76f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-9.3f) - curveToRelative(0.0f, -0.23f, 0.1f, -0.44f, 0.27f, -0.58f) - lineToRelative(6.75f, -5.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.96f, 0.0f) - lineToRelative(6.75f, 5.7f) - curveToRelative(0.17f, 0.14f, 0.27f, 0.35f, 0.27f, 0.57f) - verticalLineToRelative(1.2f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 1.5f, 0.91f) - verticalLineToRelative(-2.1f) - curveToRelative(0.0f, -0.67f, -0.3f, -1.3f, -0.8f, -1.73f) - lineToRelative(-6.75f, -5.69f) - close() - moveTo(21.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(23.0f, 19.88f) - curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) - reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _homePerson!! - } - -private var _homePerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HomeSplit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HomeSplit.kt deleted file mode 100644 index 711f1bcb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HomeSplit.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.HomeSplit: ImageVector - get() { - if (_homeSplit != null) { - return _homeSplit!! - } - _homeSplit = fluentIcon(name = "Regular.HomeSplit") { - fluentPath { - moveTo(13.45f, 2.53f) - curveToRelative(-0.84f, -0.7f, -2.06f, -0.7f, -2.9f, 0.0f) - lineTo(3.8f, 8.23f) - curveToRelative(-0.5f, 0.42f, -0.8f, 1.05f, -0.8f, 1.71f) - verticalLineToRelative(9.31f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(14.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-9.3f) - curveToRelative(0.0f, -0.67f, -0.3f, -1.3f, -0.8f, -1.73f) - lineToRelative(-6.75f, -5.69f) - close() - moveTo(11.52f, 3.68f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.96f, 0.0f) - lineToRelative(6.75f, 5.7f) - curveToRelative(0.17f, 0.13f, 0.27f, 0.34f, 0.27f, 0.56f) - verticalLineToRelative(9.31f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - lineTo(4.75f, 19.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-9.3f) - curveToRelative(0.0f, -0.23f, 0.1f, -0.44f, 0.27f, -0.58f) - lineToRelative(6.75f, -5.7f) - close() - moveTo(12.75f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.5f) - close() - moveTo(12.0f, 10.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(12.75f, 16.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.5f) - close() - } - } - return _homeSplit!! - } - -private var _homeSplit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Hourglass.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Hourglass.kt deleted file mode 100644 index 512a01f8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Hourglass.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Hourglass: ImageVector - get() { - if (_hourglass != null) { - return _hourglass!! - } - _hourglass = fluentIcon(name = "Regular.Hourglass") { - fluentPath { - moveTo(4.0f, 4.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 6.75f, 2.0f) - horizontalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 20.0f, 4.75f) - verticalLineToRelative(0.42f) - curveToRelative(0.0f, 2.02f, -1.06f, 3.89f, -2.8f, 4.93f) - lineToRelative(-1.8f, 1.09f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.04f, 1.26f) - lineToRelative(2.12f, 1.44f) - arcTo(5.75f, 5.75f, 0.0f, false, true, 20.0f, 18.65f) - verticalLineToRelative(0.6f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 17.25f, 22.0f) - horizontalLineTo(6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.0f, 19.25f) - verticalLineToRelative(-0.6f) - curveToRelative(0.0f, -1.9f, 0.94f, -3.69f, 2.52f, -4.76f) - lineToRelative(2.12f, -1.44f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.04f, -1.26f) - lineTo(6.8f, 10.1f) - arcTo(5.75f, 5.75f, 0.0f, false, true, 4.0f, 5.17f) - verticalLineToRelative(-0.42f) - close() - moveTo(6.75f, 3.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(0.42f) - curveToRelative(0.0f, 1.5f, 0.78f, 2.88f, 2.06f, 3.64f) - lineTo(9.37f, 9.9f) - curveToRelative(1.41f, 0.84f, 1.47f, 2.87f, 0.11f, 3.79f) - lineToRelative(-2.12f, 1.44f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, -1.86f, 3.52f) - verticalLineToRelative(0.6f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(10.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-0.6f) - curveToRelative(0.0f, -1.41f, -0.7f, -2.73f, -1.86f, -3.52f) - lineToRelative(-2.12f, -1.44f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.1f, -3.79f) - lineToRelative(1.82f, -1.09f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, 2.06f, -3.64f) - verticalLineToRelative(-0.42f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineTo(6.75f) - close() - } - } - return _hourglass!! - } - -private var _hourglass: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HourglassHalf.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HourglassHalf.kt deleted file mode 100644 index d0e53f7b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HourglassHalf.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.HourglassHalf: ImageVector - get() { - if (_hourglassHalf != null) { - return _hourglassHalf!! - } - _hourglassHalf = fluentIcon(name = "Regular.HourglassHalf") { - fluentPath { - moveTo(17.25f, 19.5f) - horizontalLineTo(6.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-0.6f) - arcTo(3.24f, 3.24f, 0.0f, false, true, 7.92f, 16.0f) - lineTo(10.0f, 14.52f) - arcTo(3.22f, 3.22f, 0.0f, false, false, 11.44f, 12.0f) - horizontalLineToRelative(1.12f) - arcTo(3.22f, 3.22f, 0.0f, false, false, 14.0f, 14.52f) - lineTo(16.08f, 16.0f) - arcToRelative(3.24f, 3.24f, 0.0f, false, true, 1.42f, 2.65f) - verticalLineToRelative(0.6f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, 0.25f) - close() - moveTo(6.75f, 2.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.0f, 4.75f) - verticalLineToRelative(0.42f) - curveToRelative(0.0f, 2.02f, 1.06f, 3.89f, 2.8f, 4.93f) - lineToRelative(1.8f, 1.09f) - curveToRelative(0.47f, 0.28f, 0.5f, 0.95f, 0.04f, 1.26f) - lineToRelative(-2.12f, 1.44f) - arcTo(5.75f, 5.75f, 0.0f, false, false, 4.0f, 18.65f) - verticalLineToRelative(0.6f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 6.75f, 22.0f) - horizontalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 20.0f, 19.25f) - verticalLineToRelative(-0.6f) - curveToRelative(0.0f, -1.9f, -0.94f, -3.69f, -2.52f, -4.76f) - lineToRelative(-2.12f, -1.44f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.04f, -1.26f) - lineToRelative(1.8f, -1.09f) - arcTo(5.75f, 5.75f, 0.0f, false, false, 20.0f, 5.17f) - verticalLineToRelative(-0.42f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 17.25f, 2.0f) - horizontalLineTo(6.75f) - close() - moveTo(5.5f, 4.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(10.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(0.42f) - curveToRelative(0.0f, 1.5f, -0.78f, 2.88f, -2.06f, 3.64f) - lineTo(14.63f, 9.9f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.11f, 3.79f) - lineToRelative(2.12f, 1.44f) - curveToRelative(1.16f, 0.8f, 1.86f, 2.1f, 1.86f, 3.52f) - verticalLineToRelative(0.6f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineTo(6.75f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - verticalLineToRelative(-0.6f) - curveToRelative(0.0f, -1.41f, 0.7f, -2.73f, 1.86f, -3.52f) - lineToRelative(2.12f, -1.44f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.1f, -3.79f) - lineTo(7.55f, 8.81f) - arcTo(4.25f, 4.25f, 0.0f, false, true, 5.5f, 5.17f) - verticalLineToRelative(-0.42f) - close() - } - } - return _hourglassHalf!! - } - -private var _hourglassHalf: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HourglassOneQuarter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HourglassOneQuarter.kt deleted file mode 100644 index f990b877..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HourglassOneQuarter.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.HourglassOneQuarter: ImageVector - get() { - if (_hourglassOneQuarter != null) { - return _hourglassOneQuarter!! - } - _hourglassOneQuarter = fluentIcon(name = "Regular.HourglassOneQuarter") { - fluentPath { - moveTo(6.88f, 17.15f) - curveToRelative(0.25f, -0.46f, 0.6f, -0.86f, 1.04f, -1.15f) - horizontalLineToRelative(8.16f) - arcToRelative(3.24f, 3.24f, 0.0f, false, true, 1.42f, 2.65f) - verticalLineToRelative(0.6f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, 0.25f) - horizontalLineTo(6.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-0.6f) - curveToRelative(0.0f, -0.52f, 0.14f, -1.04f, 0.38f, -1.5f) - close() - moveTo(6.75f, 2.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.0f, 4.75f) - verticalLineToRelative(0.42f) - curveToRelative(0.0f, 2.02f, 1.06f, 3.89f, 2.8f, 4.93f) - lineToRelative(1.8f, 1.09f) - curveToRelative(0.47f, 0.28f, 0.5f, 0.95f, 0.04f, 1.26f) - lineToRelative(-2.12f, 1.44f) - arcTo(5.75f, 5.75f, 0.0f, false, false, 4.0f, 18.65f) - verticalLineToRelative(0.6f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 6.75f, 22.0f) - horizontalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 20.0f, 19.25f) - verticalLineToRelative(-0.6f) - curveToRelative(0.0f, -1.9f, -0.94f, -3.69f, -2.52f, -4.76f) - lineToRelative(-2.12f, -1.44f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.04f, -1.26f) - lineToRelative(1.8f, -1.09f) - arcTo(5.75f, 5.75f, 0.0f, false, false, 20.0f, 5.17f) - verticalLineToRelative(-0.42f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 17.25f, 2.0f) - horizontalLineTo(6.75f) - close() - moveTo(5.5f, 4.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(10.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(0.42f) - curveToRelative(0.0f, 1.5f, -0.78f, 2.88f, -2.06f, 3.64f) - lineTo(14.63f, 9.9f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.11f, 3.79f) - lineToRelative(2.12f, 1.44f) - curveToRelative(1.16f, 0.8f, 1.86f, 2.1f, 1.86f, 3.52f) - verticalLineToRelative(0.6f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineTo(6.75f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - verticalLineToRelative(-0.6f) - curveToRelative(0.0f, -1.41f, 0.7f, -2.73f, 1.86f, -3.52f) - lineToRelative(2.12f, -1.44f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.1f, -3.79f) - lineTo(7.55f, 8.81f) - arcTo(4.25f, 4.25f, 0.0f, false, true, 5.5f, 5.17f) - verticalLineToRelative(-0.42f) - close() - } - } - return _hourglassOneQuarter!! - } - -private var _hourglassOneQuarter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HourglassThreeQuarter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HourglassThreeQuarter.kt deleted file mode 100644 index 37b78c5c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/HourglassThreeQuarter.kt +++ /dev/null @@ -1,88 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.HourglassThreeQuarter: ImageVector - get() { - if (_hourglassThreeQuarter != null) { - return _hourglassThreeQuarter!! - } - _hourglassThreeQuarter = fluentIcon(name = "Regular.HourglassThreeQuarter") { - fluentPath { - moveTo(7.92f, 8.0f) - curveToRelative(-0.39f, -0.26f, -0.7f, -0.6f, -0.95f, -1.0f) - horizontalLineToRelative(10.06f) - curveToRelative(-0.24f, 0.4f, -0.56f, 0.74f, -0.95f, 1.0f) - lineTo(14.0f, 9.48f) - curveToRelative(-0.42f, 0.28f, -0.77f, 0.65f, -1.02f, 1.09f) - arcToRelative(2.8f, 2.8f, 0.0f, false, false, 0.0f, 2.86f) - curveToRelative(0.25f, 0.44f, 0.6f, 0.81f, 1.02f, 1.09f) - lineTo(16.08f, 16.0f) - arcToRelative(3.24f, 3.24f, 0.0f, false, true, 1.42f, 2.65f) - verticalLineToRelative(0.6f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, 0.25f) - horizontalLineTo(6.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-0.6f) - arcTo(3.24f, 3.24f, 0.0f, false, true, 7.92f, 16.0f) - lineTo(10.0f, 14.52f) - curveToRelative(0.42f, -0.28f, 0.77f, -0.65f, 1.02f, -1.09f) - arcToRelative(2.8f, 2.8f, 0.0f, false, false, 0.0f, -2.86f) - curveToRelative(-0.25f, -0.44f, -0.6f, -0.81f, -1.02f, -1.09f) - lineTo(7.92f, 8.0f) - close() - moveTo(6.75f, 2.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.0f, 4.75f) - verticalLineToRelative(0.42f) - curveToRelative(0.0f, 2.02f, 1.06f, 3.89f, 2.8f, 4.93f) - lineToRelative(1.8f, 1.09f) - curveToRelative(0.47f, 0.28f, 0.5f, 0.95f, 0.04f, 1.26f) - lineToRelative(-2.12f, 1.44f) - arcTo(5.75f, 5.75f, 0.0f, false, false, 4.0f, 18.65f) - verticalLineToRelative(0.6f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 6.75f, 22.0f) - horizontalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 20.0f, 19.25f) - verticalLineToRelative(-0.6f) - curveToRelative(0.0f, -1.9f, -0.94f, -3.69f, -2.52f, -4.76f) - lineToRelative(-2.12f, -1.44f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.04f, -1.26f) - lineToRelative(1.8f, -1.09f) - arcTo(5.75f, 5.75f, 0.0f, false, false, 20.0f, 5.17f) - verticalLineToRelative(-0.42f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 17.25f, 2.0f) - horizontalLineTo(6.75f) - close() - moveTo(5.5f, 4.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(10.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(0.42f) - curveToRelative(0.0f, 1.5f, -0.78f, 2.88f, -2.06f, 3.64f) - lineTo(14.63f, 9.9f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.11f, 3.79f) - lineToRelative(2.12f, 1.44f) - curveToRelative(1.16f, 0.8f, 1.86f, 2.1f, 1.86f, 3.52f) - verticalLineToRelative(0.6f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineTo(6.75f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - verticalLineToRelative(-0.6f) - curveToRelative(0.0f, -1.41f, 0.7f, -2.73f, 1.86f, -3.52f) - lineToRelative(2.12f, -1.44f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.1f, -3.79f) - lineTo(7.55f, 8.81f) - arcTo(4.25f, 4.25f, 0.0f, false, true, 5.5f, 5.17f) - verticalLineToRelative(-0.42f) - close() - } - } - return _hourglassThreeQuarter!! - } - -private var _hourglassThreeQuarter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Icons.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Icons.kt deleted file mode 100644 index 0500d783..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Icons.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Icons: ImageVector - get() { - if (_icons != null) { - return _icons!! - } - _icons = fluentIcon(name = "Regular.Icons") { - fluentPath { - moveTo(13.0f, 3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -2.67f, 5.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.57f, 1.24f) - lineTo(3.75f, 10.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 2.9f, 2.35f, 5.25f, 5.25f, 5.25f) - horizontalLineToRelative(3.22f) - curveToRelative(0.15f, 0.1f, 0.32f, 0.2f, 0.5f, 0.25f) - curveToRelative(-0.28f, 0.41f, -0.52f, 0.83f, -0.73f, 1.25f) - lineTo(8.75f, 18.5f) - arcTo(6.75f, 6.75f, 0.0f, false, true, 2.0f, 11.75f) - verticalLineToRelative(-1.0f) - curveTo(2.0f, 9.78f, 2.78f, 9.0f, 3.75f, 9.0f) - horizontalLineToRelative(4.67f) - arcTo(4.98f, 4.98f, 0.0f, false, true, 13.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 4.58f, 3.0f) - horizontalLineToRelative(1.67f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) - horizontalLineToRelative(-0.92f) - curveToRelative(-0.14f, 0.24f, -0.29f, 0.46f, -0.46f, 0.67f) - curveToRelative(0.16f, 0.13f, 0.3f, 0.28f, 0.44f, 0.44f) - lineToRelative(-0.54f, 0.06f) - arcToRelative(7.0f, 7.0f, 0.0f, false, false, -1.32f, 0.3f) - arcToRelative(3.05f, 3.05f, 0.0f, false, false, -0.1f, -0.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.11f, -1.23f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 16.36f, 8.0f) - horizontalLineToRelative(1.89f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-2.79f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -3.46f, -3.0f) - close() - moveTo(16.9f, 11.66f) - arcToRelative(13.5f, 13.5f, 0.0f, false, true, 5.56f, 0.23f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.22f, 1.35f) - arcToRelative(0.91f, 0.91f, 0.0f, false, false, -0.26f, 0.34f) - curveToRelative(-0.11f, 0.2f, -0.22f, 0.48f, -0.32f, 0.82f) - curveToRelative(-0.1f, 0.29f, -0.17f, 0.6f, -0.27f, 0.93f) - lineToRelative(-0.05f, 0.21f) - curveToRelative(-0.11f, 0.41f, -0.24f, 0.85f, -0.38f, 1.29f) - curveToRelative(-0.3f, 0.86f, -0.7f, 1.78f, -1.4f, 2.48f) - arcToRelative(4.02f, 4.02f, 0.0f, false, true, -3.0f, 1.2f) - arcToRelative(3.83f, 3.83f, 0.0f, false, true, -2.85f, -1.16f) - curveToRelative(-0.4f, 0.74f, -0.61f, 1.43f, -0.65f, 1.95f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, -0.1f) - arcToRelative(7.4f, 7.4f, 0.0f, false, true, 1.67f, -3.84f) - arcToRelative(8.86f, 8.86f, 0.0f, false, true, 4.38f, -3.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.43f, 1.44f) - arcToRelative(7.31f, 7.31f, 0.0f, false, false, -3.45f, 2.3f) - curveToRelative(0.31f, 0.45f, 0.92f, 0.94f, 1.97f, 0.94f) - curveToRelative(0.91f, 0.0f, 1.5f, -0.3f, 1.93f, -0.74f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 1.05f, -1.92f) - curveToRelative(0.13f, -0.38f, 0.24f, -0.79f, 0.35f, -1.2f) - lineToRelative(0.05f, -0.2f) - lineToRelative(0.28f, -0.98f) - curveToRelative(0.1f, -0.3f, 0.2f, -0.58f, 0.32f, -0.85f) - curveToRelative(-0.9f, -0.13f, -2.15f, -0.19f, -3.88f, 0.04f) - arcToRelative(4.05f, 4.05f, 0.0f, false, false, -3.38f, 2.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.44f, -0.4f) - arcToRelative(5.54f, 5.54f, 0.0f, false, true, 4.62f, -3.72f) - close() - } - } - return _icons!! - } - -private var _icons: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageAdd.kt deleted file mode 100644 index a3e86553..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageAdd.kt +++ /dev/null @@ -1,91 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ImageAdd: ImageVector - get() { - if (_imageAdd != null) { - return _imageAdd!! - } - _imageAdd = fluentIcon(name = "Regular.ImageAdd") { - fluentPath { - moveTo(18.75f, 4.0f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(7.25f, 22.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 4.0f, 18.75f) - lineTo(4.0f, 12.5f) - curveToRelative(0.47f, 0.2f, 0.98f, 0.34f, 1.5f, 0.42f) - verticalLineToRelative(5.83f) - curveToRelative(0.0f, 0.2f, 0.04f, 0.4f, 0.1f, 0.6f) - lineToRelative(5.83f, -5.7f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.02f, -0.12f) - lineToRelative(0.12f, 0.11f) - lineToRelative(5.83f, 5.7f) - curveToRelative(0.06f, -0.18f, 0.1f, -0.38f, 0.1f, -0.59f) - lineTo(20.5f, 7.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-5.83f) - arcTo(6.46f, 6.46f, 0.0f, false, false, 12.5f, 4.0f) - horizontalLineToRelative(6.25f) - close() - moveTo(12.55f, 14.64f) - lineTo(12.48f, 14.71f) - lineTo(6.67f, 20.41f) - curveToRelative(0.18f, 0.06f, 0.38f, 0.09f, 0.58f, 0.09f) - horizontalLineToRelative(11.5f) - curveToRelative(0.2f, 0.0f, 0.4f, -0.03f, 0.58f, -0.1f) - lineToRelative(-5.8f, -5.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, -0.07f) - close() - moveTo(16.25f, 7.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -4.5f) - close() - moveTo(6.5f, 1.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(16.25f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(6.5f, 3.0f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) - lineTo(6.0f, 3.5f) - lineTo(6.0f, 6.0f) - lineTo(3.4f, 6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(0.18f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) - lineToRelative(0.1f, 0.01f) - lineTo(6.0f, 7.0f) - verticalLineToRelative(2.6f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - horizontalLineToRelative(0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) - lineTo(7.0f, 9.5f) - lineTo(7.0f, 7.0f) - horizontalLineToRelative(2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - verticalLineToRelative(-0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) - lineTo(9.5f, 6.0f) - lineTo(7.0f, 6.0f) - lineTo(7.0f, 3.4f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) - lineTo(6.5f, 3.0f) - close() - } - } - return _imageAdd!! - } - -private var _imageAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageAltText.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageAltText.kt deleted file mode 100644 index 248f512f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageAltText.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ImageAltText: ImageVector - get() { - if (_imageAltText != null) { - return _imageAltText!! - } - _imageAltText = fluentIcon(name = "Regular.ImageAltText") { - fluentPath { - moveTo(1.0f, 3.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - verticalLineToRelative(6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - lineTo(3.0f, 11.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(1.0f, 3.0f) - close() - moveTo(3.5f, 4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - horizontalLineToRelative(-6.0f) - close() - moveTo(3.5f, 7.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - horizontalLineToRelative(-6.0f) - close() - moveTo(4.0f, 12.0f) - horizontalLineToRelative(1.5f) - verticalLineToRelative(6.75f) - curveToRelative(0.0f, 0.2f, 0.04f, 0.4f, 0.1f, 0.6f) - lineToRelative(5.83f, -5.7f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.02f, -0.12f) - lineToRelative(0.12f, 0.11f) - lineToRelative(5.83f, 5.7f) - curveToRelative(0.06f, -0.18f, 0.1f, -0.38f, 0.1f, -0.59f) - lineTo(20.5f, 7.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(13.0f, 5.5f) - lineTo(13.0f, 4.0f) - horizontalLineToRelative(5.75f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(7.25f, 22.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 4.0f, 18.75f) - lineTo(4.0f, 12.0f) - close() - moveTo(19.33f, 20.4f) - lineTo(13.53f, 14.71f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, -0.07f) - lineToRelative(-0.08f, 0.07f) - lineToRelative(-5.81f, 5.7f) - curveToRelative(0.18f, 0.06f, 0.38f, 0.09f, 0.58f, 0.09f) - horizontalLineToRelative(11.5f) - curveToRelative(0.2f, 0.0f, 0.4f, -0.03f, 0.58f, -0.1f) - close() - moveTo(16.25f, 7.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -4.5f) - close() - moveTo(16.25f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - } - } - return _imageAltText!! - } - -private var _imageAltText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageArrowBack.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageArrowBack.kt deleted file mode 100644 index 77af3670..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageArrowBack.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ImageArrowBack: ImageVector - get() { - if (_imageArrowBack != null) { - return _imageArrowBack!! - } - _imageArrowBack = fluentIcon(name = "Regular.ImageArrowBack") { - fluentPath { - moveTo(12.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(5.35f, 4.35f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.7f, -0.7f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(1.5f, 1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, -0.7f) - lineTo(4.71f, 6.0f) - horizontalLineToRelative(2.04f) - curveTo(7.99f, 6.0f, 9.0f, 7.0f, 9.0f, 8.25f) - verticalLineToRelative(0.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-0.25f) - curveTo(10.0f, 6.45f, 8.54f, 5.0f, 6.75f, 5.0f) - lineTo(4.71f, 5.0f) - lineToRelative(0.64f, -0.65f) - close() - moveTo(3.0f, 11.98f) - curveToRelative(0.46f, 0.3f, 0.97f, 0.53f, 1.5f, 0.7f) - verticalLineToRelative(5.07f) - curveToRelative(0.0f, 0.2f, 0.04f, 0.4f, 0.1f, 0.6f) - lineToRelative(5.83f, -5.7f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.02f, -0.12f) - lineToRelative(0.12f, 0.11f) - lineToRelative(5.83f, 5.7f) - curveToRelative(0.06f, -0.18f, 0.1f, -0.38f, 0.1f, -0.59f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-5.06f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, -0.71f, -1.5f) - horizontalLineToRelative(5.77f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - verticalLineToRelative(-5.77f) - close() - moveTo(18.33f, 19.4f) - lineTo(12.53f, 13.71f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, -0.07f) - lineToRelative(-0.08f, 0.07f) - lineToRelative(-5.81f, 5.7f) - curveToRelative(0.18f, 0.06f, 0.38f, 0.09f, 0.58f, 0.09f) - horizontalLineToRelative(11.5f) - curveToRelative(0.2f, 0.0f, 0.4f, -0.03f, 0.58f, -0.1f) - close() - moveTo(15.25f, 6.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -4.5f) - close() - moveTo(15.25f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - } - } - return _imageArrowBack!! - } - -private var _imageArrowBack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageArrowCounterclockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageArrowCounterclockwise.kt deleted file mode 100644 index 99843c0e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageArrowCounterclockwise.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ImageArrowCounterclockwise: ImageVector - get() { - if (_imageArrowCounterclockwise != null) { - return _imageArrowCounterclockwise!! - } - _imageArrowCounterclockwise = fluentIcon(name = "Regular.ImageArrowCounterclockwise") { - fluentPath { - moveTo(12.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(4.0f, 3.5f) - verticalLineToRelative(0.55f) - arcToRelative(3.49f, 3.49f, 0.0f, false, true, 6.0f, 2.45f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -6.19f, 2.24f) - curveToRelative(-0.26f, -0.31f, 0.0f, -0.74f, 0.41f, -0.74f) - curveToRelative(0.18f, 0.0f, 0.34f, 0.09f, 0.46f, 0.21f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 9.0f, 6.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.5f, 5.0f) - horizontalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - verticalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - close() - moveTo(18.75f, 5.5f) - horizontalLineToRelative(-5.83f) - arcTo(6.45f, 6.45f, 0.0f, false, false, 12.5f, 4.0f) - horizontalLineToRelative(6.25f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(7.25f, 22.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 4.0f, 18.75f) - lineTo(4.0f, 12.5f) - curveToRelative(0.47f, 0.2f, 0.98f, 0.34f, 1.5f, 0.42f) - verticalLineToRelative(5.83f) - curveToRelative(0.0f, 0.2f, 0.04f, 0.4f, 0.1f, 0.6f) - lineToRelative(5.83f, -5.7f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.02f, -0.12f) - lineToRelative(0.12f, 0.11f) - lineToRelative(5.83f, 5.7f) - curveToRelative(0.06f, -0.18f, 0.1f, -0.38f, 0.1f, -0.59f) - lineTo(20.5f, 7.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(19.33f, 20.4f) - lineTo(13.53f, 14.71f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, -0.07f) - lineToRelative(-0.08f, 0.07f) - lineToRelative(-5.81f, 5.7f) - curveToRelative(0.18f, 0.06f, 0.38f, 0.09f, 0.58f, 0.09f) - horizontalLineToRelative(11.5f) - curveToRelative(0.2f, 0.0f, 0.4f, -0.03f, 0.58f, -0.1f) - close() - moveTo(16.25f, 7.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -4.5f) - close() - moveTo(16.25f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - } - } - return _imageArrowCounterclockwise!! - } - -private var _imageArrowCounterclockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageArrowForward.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageArrowForward.kt deleted file mode 100644 index 3072d9ac..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageArrowForward.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ImageArrowForward: ImageVector - get() { - if (_imageArrowForward != null) { - return _imageArrowForward!! - } - _imageArrowForward = fluentIcon(name = "Regular.ImageArrowForward") { - fluentPath { - moveTo(1.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) - close() - moveTo(7.65f, 4.35f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.7f, -0.7f) - lineToRelative(1.5f, 1.5f) - curveToRelative(0.2f, 0.2f, 0.2f, 0.5f, 0.0f, 0.7f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -0.7f, -0.7f) - lineTo(8.29f, 6.0f) - lineTo(6.25f, 6.0f) - curveTo(5.01f, 6.0f, 4.0f, 7.0f, 4.0f, 8.25f) - verticalLineToRelative(0.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-0.25f) - curveTo(3.0f, 6.45f, 4.46f, 5.0f, 6.25f, 5.0f) - horizontalLineToRelative(2.04f) - lineToRelative(-0.64f, -0.65f) - close() - moveTo(3.0f, 11.98f) - curveToRelative(0.46f, 0.3f, 0.97f, 0.53f, 1.5f, 0.7f) - verticalLineToRelative(5.07f) - curveToRelative(0.0f, 0.2f, 0.04f, 0.4f, 0.1f, 0.6f) - lineToRelative(5.83f, -5.7f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.02f, -0.12f) - lineToRelative(0.12f, 0.11f) - lineToRelative(5.83f, 5.7f) - curveToRelative(0.06f, -0.18f, 0.1f, -0.38f, 0.1f, -0.59f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-5.06f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, -0.71f, -1.5f) - horizontalLineToRelative(5.77f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - verticalLineToRelative(-5.77f) - close() - moveTo(18.33f, 19.4f) - lineTo(12.53f, 13.71f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, -0.07f) - lineToRelative(-0.08f, 0.07f) - lineToRelative(-5.81f, 5.7f) - curveToRelative(0.18f, 0.06f, 0.38f, 0.09f, 0.58f, 0.09f) - horizontalLineToRelative(11.5f) - curveToRelative(0.2f, 0.0f, 0.4f, -0.03f, 0.58f, -0.1f) - close() - moveTo(15.25f, 6.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -4.5f) - close() - moveTo(15.25f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - } - } - return _imageArrowForward!! - } - -private var _imageArrowForward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageBorder.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageBorder.kt deleted file mode 100644 index 41afc317..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageBorder.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ImageBorder: ImageVector - get() { - if (_imageBorder != null) { - return _imageBorder!! - } - _imageBorder = fluentIcon(name = "Regular.ImageBorder") { - fluentPath { - moveTo(14.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(7.25f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(9.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-9.5f) - close() - moveTo(10.41f, 12.66f) - lineTo(8.0f, 15.06f) - lineTo(8.0f, 8.0f) - horizontalLineToRelative(8.0f) - verticalLineToRelative(7.07f) - lineToRelative(-2.4f, -2.41f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.2f, 0.0f) - close() - moveTo(12.53f, 13.72f) - lineTo(14.81f, 16.0f) - lineTo(9.2f, 16.0f) - lineToRelative(2.28f, -2.28f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 6.25f) - close() - } - } - return _imageBorder!! - } - -private var _imageBorder: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageCircle.kt deleted file mode 100644 index e9c6f5eb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageCircle.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ImageCircle: ImageVector - get() { - if (_imageCircle != null) { - return _imageCircle!! - } - _imageCircle = fluentIcon(name = "Regular.ImageCircle") { - fluentPath { - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, -6.51f, 13.96f) - lineToRelative(4.93f, -4.84f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.16f, 0.0f) - lineToRelative(4.93f, 4.84f) - arcTo(8.5f, 8.5f, 0.0f, false, false, 12.0f, 3.5f) - close() - moveTo(17.45f, 18.52f) - lineTo(12.53f, 13.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-4.92f, 4.83f) - arcToRelative(8.47f, 8.47f, 0.0f, false, false, 10.9f, 0.0f) - close() - moveTo(2.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) - close() - moveTo(15.25f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(15.25f, 11.0f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, -4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) - close() - } - } - return _imageCircle!! - } - -private var _imageCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageCopy.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageCopy.kt deleted file mode 100644 index 5c6420fb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageCopy.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ImageCopy: ImageVector - get() { - if (_imageCopy != null) { - return _imageCopy!! - } - _imageCopy = fluentIcon(name = "Regular.ImageCopy") { - fluentPath { - moveTo(4.5f, 6.0f) - curveTo(3.6f, 6.59f, 3.0f, 7.6f, 3.0f, 8.76f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 2.9f, 2.35f, 5.25f, 5.25f, 5.25f) - horizontalLineToRelative(6.5f) - curveToRelative(1.15f, 0.0f, 2.17f, -0.6f, 2.74f, -1.5f) - lineTo(8.25f, 19.01f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.75f, -3.75f) - lineTo(4.5f, 6.01f) - close() - moveTo(8.75f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 5.5f, 6.25f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(8.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-8.5f) - close() - moveTo(13.43f, 12.14f) - lineTo(13.53f, 12.21f) - lineTo(17.83f, 16.41f) - curveToRelative(-0.18f, 0.06f, -0.38f, 0.09f, -0.58f, 0.09f) - horizontalLineToRelative(-8.5f) - curveToRelative(-0.2f, 0.0f, -0.4f, -0.03f, -0.58f, -0.1f) - lineToRelative(4.3f, -4.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.96f, -0.07f) - close() - moveTo(8.75f, 4.5f) - horizontalLineToRelative(8.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.2f, -0.04f, 0.4f, -0.1f, 0.6f) - lineToRelative(-4.33f, -4.21f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.0f, -0.12f) - lineToRelative(-0.14f, 0.12f) - lineToRelative(-4.33f, 4.2f) - curveToRelative(-0.06f, -0.18f, -0.1f, -0.38f, -0.1f, -0.59f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - close() - moveTo(10.5f, 6.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - } - } - return _imageCopy!! - } - -private var _imageCopy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageEdit.kt deleted file mode 100644 index 9a83a8cb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageEdit.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ImageEdit: ImageVector - get() { - if (_imageEdit != null) { - return _imageEdit!! - } - _imageEdit = fluentIcon(name = "Regular.ImageEdit") { - fluentPath { - moveTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.45f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(4.91f) - lineToRelative(0.36f, -1.42f) - lineToRelative(0.02f, -0.08f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.2f, 0.0f, -0.4f, -0.04f, -0.58f, -0.1f) - lineToRelative(5.8f, -5.69f) - lineToRelative(0.09f, -0.07f) - curveToRelative(0.29f, -0.2f, 0.7f, -0.19f, 0.96f, 0.07f) - lineToRelative(2.08f, 2.04f) - lineToRelative(1.06f, -1.06f) - lineToRelative(-2.09f, -2.05f) - lineToRelative(-0.13f, -0.11f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.01f, 0.11f) - lineToRelative(-5.83f, 5.7f) - curveToRelative(-0.06f, -0.18f, -0.1f, -0.38f, -0.1f, -0.6f) - lineTo(4.5f, 6.26f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.98f) - curveToRelative(0.48f, -0.19f, 1.0f, -0.26f, 1.5f, -0.22f) - lineTo(21.0f, 6.25f) - close() - moveTo(17.5f, 8.75f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, -4.5f, 0.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) - close() - moveTo(14.5f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.34f, -0.6f, 0.78f, -0.71f, 1.25f) - lineToRelative(-0.46f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _imageEdit!! - } - -private var _imageEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageGlobe.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageGlobe.kt deleted file mode 100644 index 8a1bfd33..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageGlobe.kt +++ /dev/null @@ -1,116 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ImageGlobe: ImageVector - get() { - if (_imageGlobe != null) { - return _imageGlobe!! - } - _imageGlobe = fluentIcon(name = "Regular.ImageGlobe") { - fluentPath { - moveTo(5.0f, 6.0f) - curveToRelative(0.05f, -1.41f, 0.25f, -2.67f, 0.56f, -3.58f) - curveToRelative(0.17f, -0.52f, 0.36f, -0.9f, 0.55f, -1.14f) - curveToRelative(0.2f, -0.25f, 0.33f, -0.28f, 0.39f, -0.28f) - reflectiveCurveToRelative(0.2f, 0.03f, 0.39f, 0.28f) - curveToRelative(0.19f, 0.24f, 0.38f, 0.62f, 0.55f, 1.14f) - curveToRelative(0.3f, 0.91f, 0.51f, 2.17f, 0.55f, 3.58f) - horizontalLineTo(5.01f) - close() - } - fluentPath { - moveTo(4.61f, 2.1f) - curveToRelative(0.1f, -0.32f, 0.23f, -0.62f, 0.37f, -0.89f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 1.02f, 6.0f) - horizontalLineToRelative(2.99f) - curveToRelative(0.04f, -1.5f, 0.26f, -2.87f, 0.6f, -3.9f) - close() - } - fluentPath { - moveTo(8.39f, 2.1f) - curveToRelative(-0.1f, -0.32f, -0.23f, -0.62f, -0.37f, -0.89f) - arcTo(5.5f, 5.5f, 0.0f, false, true, 11.98f, 6.0f) - horizontalLineTo(8.99f) - curveToRelative(-0.04f, -1.5f, -0.26f, -2.87f, -0.6f, -3.9f) - close() - } - fluentPath { - moveTo(9.0f, 7.0f) - horizontalLineToRelative(2.98f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, -3.96f, 4.79f) - curveToRelative(0.14f, -0.27f, 0.26f, -0.57f, 0.37f, -0.89f) - curveToRelative(0.34f, -1.03f, 0.56f, -2.4f, 0.6f, -3.9f) - close() - } - fluentPath { - moveTo(6.89f, 11.72f) - curveToRelative(-0.2f, 0.25f, -0.33f, 0.28f, -0.39f, 0.28f) - reflectiveCurveToRelative(-0.2f, -0.03f, -0.39f, -0.28f) - arcToRelative(3.84f, 3.84f, 0.0f, false, true, -0.55f, -1.14f) - curveToRelative(-0.3f, -0.91f, -0.51f, -2.17f, -0.55f, -3.58f) - horizontalLineToRelative(2.98f) - arcToRelative(12.92f, 12.92f, 0.0f, false, true, -0.55f, 3.58f) - curveToRelative(-0.17f, 0.52f, -0.36f, 0.9f, -0.55f, 1.14f) - close() - } - fluentPath { - moveTo(1.02f, 7.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 3.96f, 4.79f) - arcToRelative(6.13f, 6.13f, 0.0f, false, true, -0.37f, -0.89f) - curveToRelative(-0.34f, -1.03f, -0.56f, -2.4f, -0.6f, -3.9f) - horizontalLineTo(1.02f) - close() - } - fluentPath { - moveTo(17.75f, 4.5f) - horizontalLineToRelative(-5.06f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, -0.71f, -1.5f) - horizontalLineToRelative(5.77f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - verticalLineToRelative(-5.77f) - curveToRelative(0.46f, 0.3f, 0.97f, 0.53f, 1.5f, 0.7f) - verticalLineToRelative(5.07f) - curveToRelative(0.0f, 0.2f, 0.04f, 0.4f, 0.1f, 0.6f) - lineToRelative(5.83f, -5.7f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.02f, -0.12f) - lineToRelative(0.12f, 0.11f) - lineToRelative(5.83f, 5.7f) - curveToRelative(0.06f, -0.18f, 0.1f, -0.38f, 0.1f, -0.59f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(18.33f, 19.4f) - lineTo(12.53f, 13.71f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, -0.07f) - lineToRelative(-0.08f, 0.07f) - lineToRelative(-5.81f, 5.7f) - curveToRelative(0.18f, 0.06f, 0.38f, 0.09f, 0.58f, 0.09f) - horizontalLineToRelative(11.5f) - curveToRelative(0.2f, 0.0f, 0.4f, -0.03f, 0.58f, -0.1f) - close() - } - fluentPath { - moveTo(15.25f, 6.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -4.5f) - close() - moveTo(15.25f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - } - } - return _imageGlobe!! - } - -private var _imageGlobe: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageMultiple.kt deleted file mode 100644 index a010cc9c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageMultiple.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ImageMultiple: ImageVector - get() { - if (_imageMultiple != null) { - return _imageMultiple!! - } - _imageMultiple = fluentIcon(name = "Regular.ImageMultiple") { - fluentPath { - moveTo(13.75f, 9.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(9.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-9.0f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-9.0f) - close() - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(9.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 0.23f, -0.04f, 0.45f, -0.13f, 0.65f) - lineToRelative(-4.58f, -4.29f) - curveToRelative(-0.87f, -0.8f, -2.21f, -0.8f, -3.08f, 0.0f) - lineToRelative(-4.58f, 4.3f) - curveToRelative(-0.09f, -0.2f, -0.13f, -0.43f, -0.13f, -0.66f) - verticalLineToRelative(-9.0f) - close() - moveTo(11.26f, 12.71f) - lineTo(15.76f, 16.92f) - curveToRelative(-0.16f, 0.05f, -0.33f, 0.08f, -0.51f, 0.08f) - horizontalLineToRelative(-9.0f) - curveToRelative(-0.18f, 0.0f, -0.35f, -0.03f, -0.52f, -0.08f) - lineToRelative(4.5f, -4.21f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, 0.0f) - close() - moveTo(8.75f, 21.0f) - curveToRelative(-1.15f, 0.0f, -2.16f, -0.6f, -2.74f, -1.5f) - horizontalLineToRelative(9.74f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 3.75f, -3.75f) - lineTo(19.5f, 6.01f) - curveToRelative(0.9f, 0.58f, 1.5f, 1.59f, 1.5f, 2.74f) - verticalLineToRelative(7.0f) - curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) - horizontalLineToRelative(-7.0f) - close() - } - } - return _imageMultiple!! - } - -private var _imageMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageOff.kt deleted file mode 100644 index a8914025..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageOff.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ImageOff: ImageVector - get() { - if (_imageOff != null) { - return _imageOff!! - } - _imageOff = fluentIcon(name = "Regular.ImageOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.26f, 1.26f) - curveToRelative(-0.3f, 0.5f, -0.48f, 1.08f, -0.48f, 1.71f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(0.63f, 0.0f, 1.21f, -0.18f, 1.7f, -0.48f) - lineToRelative(1.27f, 1.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(12.07f, 13.12f) - lineTo(18.27f, 19.33f) - lineTo(18.33f, 19.4f) - curveToRelative(-0.18f, 0.07f, -0.38f, 0.1f, -0.58f, 0.1f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.2f, 0.0f, -0.4f, -0.03f, -0.58f, -0.1f) - lineToRelative(5.8f, -5.69f) - lineToRelative(0.6f, -0.58f) - close() - moveTo(11.12f, 12.18f) - curveToRelative(-0.25f, 0.1f, -0.49f, 0.26f, -0.7f, 0.46f) - lineToRelative(-5.82f, 5.7f) - curveToRelative(-0.06f, -0.18f, -0.1f, -0.38f, -0.1f, -0.59f) - lineTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.2f, 0.04f, -0.4f, 0.1f, -0.59f) - lineToRelative(6.52f, 6.52f) - close() - moveTo(19.5f, 16.32f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(7.68f, 4.5f) - lineTo(6.18f, 3.0f) - horizontalLineToRelative(11.57f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.57f) - lineToRelative(-1.5f, -1.5f) - close() - moveTo(15.25f, 6.5f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -4.5f) - close() - moveTo(15.25f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - } - } - return _imageOff!! - } - -private var _imageOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageProhibited.kt deleted file mode 100644 index cfd1acd5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageProhibited.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ImageProhibited: ImageVector - get() { - if (_imageProhibited != null) { - return _imageProhibited!! - } - _imageProhibited = fluentIcon(name = "Regular.ImageProhibited") { - fluentPath { - moveTo(6.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) - close() - moveTo(6.5f, 10.5f) - curveToRelative(-0.83f, 0.0f, -1.6f, -0.25f, -2.25f, -0.7f) - lineToRelative(5.56f, -5.55f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -3.3f, 6.25f) - close() - moveTo(3.2f, 8.75f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 5.56f, -5.56f) - lineTo(3.18f, 8.75f) - close() - moveTo(4.5f, 12.69f) - arcToRelative(6.47f, 6.47f, 0.0f, false, true, -1.5f, -0.71f) - verticalLineToRelative(5.77f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - horizontalLineToRelative(-5.77f) - curveToRelative(0.3f, 0.46f, 0.53f, 0.97f, 0.7f, 1.5f) - horizontalLineToRelative(5.07f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.2f, -0.04f, 0.4f, -0.1f, 0.6f) - lineToRelative(-5.83f, -5.7f) - lineToRelative(-0.12f, -0.12f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.02f, 0.11f) - lineToRelative(-5.83f, 5.7f) - curveToRelative(-0.06f, -0.18f, -0.1f, -0.38f, -0.1f, -0.59f) - verticalLineToRelative(-5.06f) - close() - moveTo(12.52f, 13.71f) - lineTo(18.33f, 19.41f) - curveToRelative(-0.18f, 0.06f, -0.38f, 0.09f, -0.58f, 0.09f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.2f, 0.0f, -0.4f, -0.03f, -0.58f, -0.1f) - lineToRelative(5.8f, -5.69f) - lineToRelative(0.09f, -0.07f) - curveToRelative(0.29f, -0.2f, 0.7f, -0.18f, 0.96f, 0.07f) - close() - moveTo(17.5f, 8.75f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, -4.5f, 0.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) - close() - moveTo(14.5f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - } - } - return _imageProhibited!! - } - -private var _imageProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageReflection.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageReflection.kt deleted file mode 100644 index 38796c49..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageReflection.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ImageReflection: ImageVector - get() { - if (_imageReflection != null) { - return _imageReflection!! - } - _imageReflection = fluentIcon(name = "Regular.ImageReflection") { - fluentPath { - moveTo(16.25f, 7.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(16.92f, 16.99f) - lineTo(16.75f, 17.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(18.5f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -1.0f, -0.46f, -1.9f, -1.17f, -2.5f) - curveToRelative(0.71f, -0.6f, 1.17f, -1.5f, 1.17f, -2.5f) - verticalLineToRelative(-9.0f) - curveTo(20.0f, 4.45f, 18.54f, 3.0f, 16.75f, 3.0f) - horizontalLineToRelative(-9.5f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 4.0f, 6.25f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 1.0f, 0.46f, 1.9f, 1.17f, 2.5f) - curveToRelative(-0.71f, 0.6f, -1.17f, 1.5f, -1.17f, 2.5f) - lineTo(4.0f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(7.08f, 17.0f) - lineToRelative(4.4f, -4.3f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.04f, 0.0f) - lineToRelative(4.4f, 4.3f) - close() - moveTo(7.25f, 4.5f) - horizontalLineToRelative(9.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 0.34f, -0.1f, 0.66f, -0.27f, 0.93f) - lineToRelative(-4.66f, -4.55f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.14f, 0.0f) - lineToRelative(-4.66f, 4.55f) - arcToRelative(1.74f, 1.74f, 0.0f, false, true, -0.27f, -0.93f) - verticalLineToRelative(-9.0f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - close() - moveTo(11.25f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.5f) - close() - } - } - return _imageReflection!! - } - -private var _imageReflection: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageSearch.kt deleted file mode 100644 index f30435ad..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageSearch.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ImageSearch: ImageVector - get() { - if (_imageSearch != null) { - return _imageSearch!! - } - _imageSearch = fluentIcon(name = "Regular.ImageSearch") { - fluentPath { - moveTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(4.5f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 1.5f, -0.88f) - lineTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.2f, -0.04f, 0.4f, -0.1f, 0.6f) - lineToRelative(-5.83f, -5.7f) - lineToRelative(-0.12f, -0.12f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.25f, -0.38f) - curveToRelative(0.26f, 0.42f, 0.46f, 0.89f, 0.6f, 1.38f) - curveToRelative(0.25f, -0.07f, 0.53f, 0.0f, 0.72f, 0.18f) - lineToRelative(5.81f, 5.7f) - curveToRelative(-0.18f, 0.06f, -0.38f, 0.09f, -0.58f, 0.09f) - horizontalLineToRelative(-4.78f) - lineToRelative(0.52f, 0.51f) - curveToRelative(0.28f, 0.28f, 0.44f, 0.63f, 0.5f, 0.99f) - horizontalLineToRelative(3.76f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - close() - moveTo(17.5f, 8.75f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, -4.5f, 0.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) - close() - moveTo(14.5f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(9.95f, 17.9f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, -1.15f, 0.98f) - lineToRelative(2.92f, 2.91f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.83f, -2.83f) - close() - moveTo(6.5f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) - close() - } - } - return _imageSearch!! - } - -private var _imageSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageShadow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageShadow.kt deleted file mode 100644 index b480737f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageShadow.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ImageShadow: ImageVector - get() { - if (_imageShadow != null) { - return _imageShadow!! - } - _imageShadow = fluentIcon(name = "Regular.ImageShadow") { - fluentPath { - moveTo(14.0f, 6.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(2.0f, 5.25f) - curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) - horizontalLineToRelative(9.0f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-9.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.25f) - verticalLineToRelative(-9.0f) - close() - moveTo(5.25f, 3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 0.23f, 0.04f, 0.45f, 0.13f, 0.65f) - lineToRelative(4.58f, -4.29f) - curveToRelative(0.87f, -0.8f, 2.21f, -0.8f, 3.08f, 0.0f) - lineToRelative(4.58f, 4.3f) - curveToRelative(0.09f, -0.2f, 0.13f, -0.43f, 0.13f, -0.66f) - verticalLineToRelative(-9.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-9.0f) - close() - moveTo(14.77f, 15.92f) - lineTo(10.27f, 11.71f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.03f, 0.0f) - lineToRelative(-4.5f, 4.21f) - curveToRelative(0.16f, 0.05f, 0.33f, 0.08f, 0.51f, 0.08f) - horizontalLineToRelative(9.0f) - curveToRelative(0.18f, 0.0f, 0.35f, -0.03f, 0.52f, -0.08f) - close() - moveTo(6.5f, 18.75f) - verticalLineToRelative(-0.25f) - horizontalLineToRelative(8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, -4.0f) - verticalLineToRelative(-8.0f) - horizontalLineToRelative(0.25f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(7.0f) - curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) - horizontalLineToRelative(-7.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.25f, -3.25f) - close() - } - } - return _imageShadow!! - } - -private var _imageShadow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageTable.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageTable.kt deleted file mode 100644 index ebb127a3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImageTable.kt +++ /dev/null @@ -1,102 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ImageTable: ImageVector - get() { - if (_imageTable != null) { - return _imageTable!! - } - _imageTable = fluentIcon(name = "Regular.ImageTable") { - fluentPath { - moveTo(14.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(0.25f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(-0.25f) - close() - moveTo(4.5f, 16.0f) - horizontalLineToRelative(2.0f) - lineTo(6.5f, 8.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(8.0f) - close() - moveTo(16.0f, 6.5f) - verticalLineToRelative(-2.0f) - lineTo(8.0f, 4.5f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(8.0f) - close() - moveTo(17.5f, 6.5f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(-0.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-0.25f) - verticalLineToRelative(2.0f) - close() - moveTo(17.5f, 8.0f) - verticalLineToRelative(8.0f) - horizontalLineToRelative(2.0f) - lineTo(19.5f, 8.0f) - horizontalLineToRelative(-2.0f) - close() - moveTo(17.5f, 17.5f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(0.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-0.25f) - horizontalLineToRelative(-2.0f) - close() - moveTo(16.0f, 17.5f) - lineTo(8.0f, 17.5f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(8.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(6.5f, 17.5f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(0.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(0.25f) - verticalLineToRelative(-2.0f) - close() - moveTo(8.0f, 15.07f) - lineToRelative(2.4f, -2.41f) - curveToRelative(0.89f, -0.88f, 2.31f, -0.88f, 3.2f, 0.0f) - lineToRelative(2.4f, 2.4f) - lineTo(16.0f, 8.0f) - lineTo(8.0f, 8.0f) - verticalLineToRelative(7.07f) - close() - moveTo(14.81f, 16.0f) - lineTo(12.53f, 13.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineTo(9.19f, 16.0f) - horizontalLineToRelative(5.62f) - close() - } - } - return _imageTable!! - } - -private var _imageTable: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImmersiveReader.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImmersiveReader.kt deleted file mode 100644 index 8cf3b42f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ImmersiveReader.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ImmersiveReader: ImageVector - get() { - if (_immersiveReader != null) { - return _immersiveReader!! - } - _immersiveReader = fluentIcon(name = "Regular.ImmersiveReader") { - fluentPath { - moveTo(11.13f, 19.5f) - lineTo(3.75f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-13.0f) - curveTo(2.0f, 3.78f, 2.78f, 3.0f, 3.75f, 3.0f) - horizontalLineToRelative(6.0f) - curveToRelative(0.79f, 0.0f, 1.5f, 0.33f, 2.0f, 0.86f) - curveToRelative(0.5f, -0.53f, 1.21f, -0.86f, 2.0f, -0.86f) - horizontalLineToRelative(6.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(7.42f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.5f, 0.0f) - lineTo(20.0f, 4.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-6.0f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - lineTo(12.5f, 15.0f) - lineTo(12.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - lineTo(11.0f, 5.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-6.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(13.0f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - lineTo(11.0f, 18.0f) - verticalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.13f, 0.5f) - close() - moveTo(21.23f, 13.17f) - curveToRelative(0.25f, 0.21f, 0.59f, 0.58f, 0.91f, 1.13f) - curveToRelative(0.54f, 0.9f, 0.86f, 1.96f, 0.86f, 3.2f) - curveToRelative(0.0f, 1.24f, -0.32f, 2.3f, -0.86f, 3.2f) - curveToRelative(-0.32f, 0.55f, -0.66f, 0.92f, -0.91f, 1.13f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.96f, -1.16f) - curveToRelative(0.13f, -0.1f, 0.35f, -0.35f, 0.59f, -0.74f) - curveToRelative(0.4f, -0.67f, 0.64f, -1.48f, 0.64f, -2.43f) - curveToRelative(0.0f, -0.95f, -0.24f, -1.76f, -0.64f, -2.43f) - curveToRelative(-0.24f, -0.39f, -0.46f, -0.64f, -0.59f, -0.74f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.96f, -1.16f) - close() - moveTo(19.2f, 14.65f) - arcToRelative(3.73f, 3.73f, 0.0f, false, true, 1.3f, 2.85f) - arcToRelative(3.73f, 3.73f, 0.0f, false, true, -1.3f, 2.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, -1.13f) - lineToRelative(0.08f, -0.07f) - arcToRelative(2.24f, 2.24f, 0.0f, false, false, 0.7f, -1.65f) - arcToRelative(2.24f, 2.24f, 0.0f, false, false, -0.7f, -1.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.9f, -1.2f) - close() - moveTo(16.51f, 14.05f) - curveToRelative(0.3f, 0.1f, 0.49f, 0.39f, 0.49f, 0.7f) - verticalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.31f, 0.5f) - lineTo(14.16f, 19.0f) - horizontalLineToRelative(-1.41f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.41f) - lineToRelative(1.53f, -1.74f) - curveToRelative(0.2f, -0.24f, 0.53f, -0.32f, 0.82f, -0.21f) - close() - } - } - return _immersiveReader!! - } - -private var _immersiveReader: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Incognito.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Incognito.kt deleted file mode 100644 index afad7340..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Incognito.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Incognito: ImageVector - get() { - if (_incognito != null) { - return _incognito!! - } - _incognito = fluentIcon(name = "Regular.Incognito") { - fluentPath { - moveTo(8.38f, 4.5f) - curveToRelative(-0.5f, 0.0f, -0.94f, 0.29f, -1.14f, 0.73f) - lineTo(6.18f, 7.56f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.36f, -0.62f) - lineToRelative(1.06f, -2.33f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 8.38f, 3.0f) - horizontalLineToRelative(7.24f) - curveToRelative(1.08f, 0.0f, 2.06f, 0.63f, 2.5f, 1.61f) - lineToRelative(1.06f, 2.33f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.36f, 0.62f) - lineToRelative(-1.06f, -2.33f) - curveToRelative(-0.2f, -0.44f, -0.65f, -0.73f, -1.14f, -0.73f) - lineTo(8.38f, 4.5f) - close() - moveTo(6.5f, 13.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - moveTo(2.0f, 16.5f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 8.97f, -0.5f) - horizontalLineToRelative(2.06f) - arcToRelative(4.5f, 4.5f, 0.0f, true, true, 0.08f, 1.5f) - lineTo(10.9f, 17.5f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -8.89f, -1.0f) - close() - moveTo(17.5f, 13.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - moveTo(2.93f, 10.97f) - curveToRelative(5.13f, -1.3f, 13.0f, -1.3f, 18.14f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.36f, -1.45f) - curveToRelative(-5.37f, -1.36f, -13.5f, -1.36f, -18.86f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.36f, 1.45f) - close() - } - } - return _incognito!! - } - -private var _incognito: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/InkStroke.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/InkStroke.kt deleted file mode 100644 index e8388b1a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/InkStroke.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.InkStroke: ImageVector - get() { - if (_inkStroke != null) { - return _inkStroke!! - } - _inkStroke = fluentIcon(name = "Regular.InkStroke") { - fluentPath { - moveTo(3.25f, 2.93f) - curveToRelative(0.04f, -0.41f, 0.4f, -0.72f, 0.82f, -0.68f) - lineToRelative(3.74f, 0.35f) - curveToRelative(2.66f, 0.27f, 5.2f, 0.58f, 7.28f, 0.94f) - curveToRelative(2.05f, 0.35f, 3.77f, 0.76f, 4.7f, 1.25f) - curveToRelative(0.23f, 0.13f, 0.47f, 0.29f, 0.65f, 0.5f) - curveToRelative(0.2f, 0.21f, 0.36f, 0.55f, 0.3f, 0.95f) - curveToRelative(-0.07f, 0.37f, -0.31f, 0.63f, -0.53f, 0.8f) - curveToRelative(-0.22f, 0.18f, -0.5f, 0.32f, -0.81f, 0.45f) - curveToRelative(-1.24f, 0.51f, -3.6f, 1.0f, -7.33f, 1.5f) - curveToRelative(-2.38f, 0.3f, -3.9f, 0.61f, -4.76f, 0.89f) - lineToRelative(0.08f, 0.02f) - curveToRelative(0.4f, 0.12f, 0.93f, 0.24f, 1.54f, 0.35f) - curveToRelative(1.23f, 0.23f, 2.77f, 0.42f, 4.4f, 0.57f) - curveToRelative(1.25f, 0.1f, 2.57f, 0.28f, 3.7f, 0.5f) - curveToRelative(0.57f, 0.12f, 1.1f, 0.24f, 1.54f, 0.38f) - curveToRelative(0.43f, 0.14f, 0.85f, 0.3f, 1.16f, 0.51f) - curveToRelative(0.15f, 0.1f, 0.33f, 0.26f, 0.45f, 0.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.03f, 0.87f) - curveToRelative(-0.12f, 0.26f, -0.32f, 0.43f, -0.5f, 0.55f) - curveToRelative(-0.17f, 0.12f, -0.39f, 0.23f, -0.63f, 0.32f) - curveToRelative(-0.92f, 0.35f, -2.6f, 0.69f, -5.23f, 1.0f) - curveToRelative(-2.62f, 0.32f, -4.22f, 0.71f, -5.11f, 1.12f) - curveToRelative(-0.45f, 0.2f, -0.65f, 0.38f, -0.73f, 0.48f) - curveToRelative(-0.05f, 0.07f, -0.05f, 0.09f, -0.04f, 0.1f) - curveToRelative(0.02f, 0.06f, 0.08f, 0.2f, 0.29f, 0.4f) - curveToRelative(0.2f, 0.19f, 0.48f, 0.39f, 0.83f, 0.6f) - curveToRelative(0.7f, 0.41f, 1.6f, 0.8f, 2.47f, 1.09f) - lineToRelative(3.24f, 1.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.46f, 1.42f) - lineToRelative(-3.26f, -1.05f) - arcToRelative(15.4f, 15.4f, 0.0f, false, true, -2.75f, -1.22f) - curveToRelative(-0.41f, -0.24f, -0.8f, -0.51f, -1.1f, -0.81f) - arcToRelative(2.4f, 2.4f, 0.0f, false, true, -0.71f, -1.1f) - curveToRelative(-0.13f, -0.48f, -0.02f, -0.97f, 0.3f, -1.39f) - curveToRelative(0.29f, -0.38f, 0.74f, -0.68f, 1.3f, -0.94f) - curveToRelative(1.1f, -0.5f, 2.9f, -0.92f, 5.55f, -1.24f) - curveToRelative(2.29f, -0.27f, 3.72f, -0.55f, 4.54f, -0.8f) - lineToRelative(-0.08f, -0.03f) - curveToRelative(-0.38f, -0.11f, -0.85f, -0.23f, -1.39f, -0.33f) - arcToRelative(35.23f, 35.23f, 0.0f, false, false, -3.54f, -0.49f) - arcToRelative(51.7f, 51.7f, 0.0f, false, true, -4.54f, -0.58f) - curveToRelative(-0.64f, -0.12f, -1.22f, -0.25f, -1.7f, -0.4f) - curveToRelative(-0.46f, -0.13f, -0.9f, -0.3f, -1.21f, -0.52f) - arcToRelative(1.3f, 1.3f, 0.0f, false, true, -0.46f, -0.54f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.06f, -0.9f) - curveToRelative(0.13f, -0.23f, 0.34f, -0.4f, 0.51f, -0.5f) - curveToRelative(0.2f, -0.12f, 0.42f, -0.22f, 0.66f, -0.31f) - curveToRelative(0.98f, -0.36f, 2.7f, -0.72f, 5.35f, -1.06f) - curveToRelative(3.75f, -0.5f, 5.92f, -0.97f, 6.95f, -1.4f) - lineToRelative(0.13f, -0.05f) - curveToRelative(-0.73f, -0.34f, -2.16f, -0.7f, -4.11f, -1.03f) - curveToRelative(-2.04f, -0.35f, -4.54f, -0.66f, -7.17f, -0.92f) - lineToRelative(-3.74f, -0.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.68f, -0.82f) - close() - } - } - return _inkStroke!! - } - -private var _inkStroke: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/InkStrokeArrowDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/InkStrokeArrowDown.kt deleted file mode 100644 index 0631f308..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/InkStrokeArrowDown.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.InkStrokeArrowDown: ImageVector - get() { - if (_inkStrokeArrowDown != null) { - return _inkStrokeArrowDown!! - } - _inkStrokeArrowDown = fluentIcon(name = "Regular.InkStrokeArrowDown") { - fluentPath { - moveTo(3.25f, 2.93f) - curveToRelative(0.04f, -0.41f, 0.4f, -0.72f, 0.82f, -0.68f) - lineToRelative(3.74f, 0.35f) - curveToRelative(2.66f, 0.27f, 5.2f, 0.58f, 7.28f, 0.94f) - curveToRelative(2.05f, 0.35f, 3.77f, 0.76f, 4.7f, 1.25f) - curveToRelative(0.23f, 0.13f, 0.47f, 0.29f, 0.65f, 0.5f) - curveToRelative(0.2f, 0.21f, 0.36f, 0.55f, 0.3f, 0.95f) - curveToRelative(-0.07f, 0.37f, -0.31f, 0.63f, -0.53f, 0.8f) - curveToRelative(-0.22f, 0.18f, -0.5f, 0.32f, -0.81f, 0.45f) - curveToRelative(-1.24f, 0.51f, -3.6f, 1.0f, -7.33f, 1.5f) - curveToRelative(-2.38f, 0.3f, -3.9f, 0.61f, -4.76f, 0.89f) - lineToRelative(0.08f, 0.02f) - curveToRelative(0.4f, 0.12f, 0.93f, 0.24f, 1.54f, 0.35f) - curveToRelative(1.23f, 0.23f, 2.77f, 0.42f, 4.4f, 0.57f) - curveToRelative(1.25f, 0.1f, 2.57f, 0.28f, 3.7f, 0.5f) - curveToRelative(0.57f, 0.12f, 1.1f, 0.24f, 1.54f, 0.38f) - curveToRelative(0.3f, 0.1f, 0.6f, 0.2f, 0.85f, 0.33f) - curveToRelative(-0.6f, 0.12f, -1.1f, 0.54f, -1.3f, 1.1f) - curveToRelative(-0.38f, -0.12f, -0.85f, -0.23f, -1.38f, -0.33f) - arcToRelative(35.23f, 35.23f, 0.0f, false, false, -3.54f, -0.49f) - arcToRelative(51.7f, 51.7f, 0.0f, false, true, -4.54f, -0.58f) - curveToRelative(-0.64f, -0.12f, -1.22f, -0.25f, -1.7f, -0.4f) - curveToRelative(-0.46f, -0.13f, -0.9f, -0.3f, -1.21f, -0.52f) - arcToRelative(1.3f, 1.3f, 0.0f, false, true, -0.46f, -0.54f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.06f, -0.9f) - curveToRelative(0.13f, -0.23f, 0.34f, -0.4f, 0.51f, -0.5f) - curveToRelative(0.2f, -0.12f, 0.42f, -0.22f, 0.66f, -0.31f) - curveToRelative(0.98f, -0.36f, 2.7f, -0.72f, 5.35f, -1.06f) - curveToRelative(3.75f, -0.5f, 5.92f, -0.97f, 6.95f, -1.4f) - lineToRelative(0.13f, -0.05f) - curveToRelative(-0.73f, -0.34f, -2.16f, -0.7f, -4.11f, -1.03f) - curveToRelative(-2.04f, -0.35f, -4.54f, -0.66f, -7.17f, -0.92f) - lineToRelative(-3.74f, -0.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.68f, -0.82f) - close() - moveTo(18.0f, 13.75f) - verticalLineToRelative(1.02f) - curveToRelative(-0.97f, 0.24f, -2.34f, 0.47f, -4.15f, 0.68f) - curveToRelative(-2.62f, 0.32f, -4.22f, 0.71f, -5.11f, 1.12f) - curveToRelative(-0.45f, 0.2f, -0.65f, 0.38f, -0.73f, 0.48f) - curveToRelative(-0.05f, 0.07f, -0.05f, 0.09f, -0.04f, 0.1f) - curveToRelative(0.02f, 0.06f, 0.08f, 0.2f, 0.29f, 0.4f) - curveToRelative(0.2f, 0.19f, 0.48f, 0.39f, 0.83f, 0.6f) - curveToRelative(0.7f, 0.41f, 1.6f, 0.8f, 2.47f, 1.09f) - lineToRelative(3.24f, 1.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.46f, 1.42f) - lineToRelative(-3.26f, -1.05f) - arcToRelative(15.4f, 15.4f, 0.0f, false, true, -2.75f, -1.22f) - curveToRelative(-0.41f, -0.24f, -0.8f, -0.51f, -1.1f, -0.81f) - arcToRelative(2.4f, 2.4f, 0.0f, false, true, -0.71f, -1.1f) - curveToRelative(-0.13f, -0.48f, -0.02f, -0.97f, 0.3f, -1.39f) - curveToRelative(0.29f, -0.38f, 0.74f, -0.68f, 1.3f, -0.94f) - curveToRelative(1.1f, -0.5f, 2.9f, -0.92f, 5.55f, -1.24f) - curveToRelative(2.17f, -0.26f, 3.58f, -0.52f, 4.42f, -0.76f) - curveToRelative(-0.06f, 0.17f, -0.09f, 0.36f, -0.09f, 0.55f) - close() - moveTo(20.5f, 13.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(6.69f) - lineToRelative(-1.22f, -1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(2.5f, 2.5f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-1.22f, 1.22f) - verticalLineToRelative(-6.69f) - close() - } - } - return _inkStrokeArrowDown!! - } - -private var _inkStrokeArrowDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/InkStrokeArrowUpDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/InkStrokeArrowUpDown.kt deleted file mode 100644 index 911030a3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/InkStrokeArrowUpDown.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.InkStrokeArrowUpDown: ImageVector - get() { - if (_inkStrokeArrowUpDown != null) { - return _inkStrokeArrowUpDown!! - } - _inkStrokeArrowUpDown = fluentIcon(name = "Regular.InkStrokeArrowUpDown") { - fluentPath { - moveTo(3.25f, 2.93f) - curveToRelative(0.04f, -0.41f, 0.4f, -0.72f, 0.82f, -0.68f) - lineToRelative(3.74f, 0.35f) - curveToRelative(2.66f, 0.27f, 5.2f, 0.58f, 7.28f, 0.94f) - curveToRelative(2.05f, 0.35f, 3.77f, 0.76f, 4.7f, 1.25f) - curveToRelative(0.23f, 0.13f, 0.47f, 0.29f, 0.65f, 0.5f) - curveToRelative(0.2f, 0.21f, 0.36f, 0.55f, 0.3f, 0.95f) - curveToRelative(-0.07f, 0.37f, -0.31f, 0.63f, -0.53f, 0.8f) - curveToRelative(-0.22f, 0.18f, -0.5f, 0.32f, -0.81f, 0.45f) - curveToRelative(-1.24f, 0.51f, -3.6f, 1.0f, -7.33f, 1.5f) - curveToRelative(-2.38f, 0.3f, -3.9f, 0.61f, -4.76f, 0.89f) - lineToRelative(0.08f, 0.02f) - curveToRelative(0.4f, 0.12f, 0.93f, 0.24f, 1.54f, 0.35f) - curveToRelative(1.23f, 0.23f, 2.77f, 0.42f, 4.4f, 0.57f) - arcToRelative(36.74f, 36.74f, 0.0f, false, true, 4.25f, 0.62f) - lineToRelative(-1.27f, 1.28f) - curveToRelative(-0.97f, -0.18f, -2.06f, -0.32f, -3.1f, -0.41f) - arcToRelative(51.7f, 51.7f, 0.0f, false, true, -4.55f, -0.58f) - curveToRelative(-0.64f, -0.12f, -1.22f, -0.25f, -1.7f, -0.4f) - curveToRelative(-0.46f, -0.13f, -0.9f, -0.3f, -1.21f, -0.52f) - arcToRelative(1.3f, 1.3f, 0.0f, false, true, -0.46f, -0.54f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.06f, -0.9f) - curveToRelative(0.13f, -0.23f, 0.34f, -0.4f, 0.51f, -0.5f) - curveToRelative(0.2f, -0.12f, 0.42f, -0.22f, 0.66f, -0.31f) - curveToRelative(0.98f, -0.36f, 2.7f, -0.72f, 5.35f, -1.06f) - curveToRelative(3.75f, -0.5f, 5.92f, -0.97f, 6.95f, -1.4f) - lineToRelative(0.13f, -0.05f) - curveToRelative(-0.73f, -0.34f, -2.16f, -0.7f, -4.11f, -1.03f) - curveToRelative(-2.04f, -0.35f, -4.54f, -0.66f, -7.17f, -0.92f) - lineToRelative(-3.74f, -0.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.68f, -0.82f) - close() - moveTo(15.6f, 13.71f) - curveToRelative(-0.16f, 0.49f, -0.1f, 1.04f, 0.19f, 1.48f) - curveToRelative(-0.58f, 0.1f, -1.22f, 0.18f, -1.93f, 0.26f) - curveToRelative(-2.62f, 0.32f, -4.22f, 0.71f, -5.11f, 1.12f) - curveToRelative(-0.45f, 0.2f, -0.65f, 0.38f, -0.73f, 0.48f) - curveToRelative(-0.05f, 0.07f, -0.05f, 0.09f, -0.04f, 0.1f) - curveToRelative(0.02f, 0.06f, 0.08f, 0.2f, 0.29f, 0.4f) - curveToRelative(0.2f, 0.19f, 0.48f, 0.39f, 0.83f, 0.6f) - curveToRelative(0.7f, 0.41f, 1.6f, 0.8f, 2.47f, 1.09f) - lineToRelative(3.24f, 1.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.46f, 1.42f) - lineToRelative(-3.26f, -1.05f) - arcToRelative(15.4f, 15.4f, 0.0f, false, true, -2.75f, -1.22f) - curveToRelative(-0.41f, -0.24f, -0.8f, -0.51f, -1.1f, -0.81f) - arcToRelative(2.4f, 2.4f, 0.0f, false, true, -0.71f, -1.1f) - curveToRelative(-0.13f, -0.48f, -0.02f, -0.97f, 0.3f, -1.39f) - curveToRelative(0.29f, -0.38f, 0.74f, -0.68f, 1.3f, -0.94f) - curveToRelative(1.1f, -0.5f, 2.9f, -0.92f, 5.55f, -1.24f) - arcToRelative(57.8f, 57.8f, 0.0f, false, false, 1.92f, -0.25f) - close() - moveTo(20.29f, 11.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineTo(19.0f, 13.56f) - verticalLineToRelative(6.88f) - lineToRelative(-1.22f, -1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(2.5f, 2.5f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-1.22f, 1.22f) - verticalLineToRelative(-6.88f) - lineToRelative(1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.5f, -2.5f) - close() - } - } - return _inkStrokeArrowUpDown!! - } - -private var _inkStrokeArrowUpDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/InkingTool.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/InkingTool.kt deleted file mode 100644 index d6788032..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/InkingTool.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.InkingTool: ImageVector - get() { - if (_inkingTool != null) { - return _inkingTool!! - } - _inkingTool = fluentIcon(name = "Regular.InkingTool") { - fluentPath { - moveTo(4.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.5f) - curveTo(3.0f, 7.22f, 3.78f, 8.0f, 4.75f, 8.0f) - horizontalLineToRelative(0.27f) - lineToRelative(4.03f, 8.97f) - curveToRelative(0.2f, 0.45f, 0.59f, 0.79f, 1.04f, 0.94f) - arcToRelative(5.79f, 5.79f, 0.0f, false, false, 0.27f, 3.01f) - curveToRelative(0.3f, 0.6f, 0.83f, 1.08f, 1.64f, 1.08f) - curveToRelative(0.8f, 0.0f, 1.35f, -0.48f, 1.64f, -1.08f) - arcToRelative(5.79f, 5.79f, 0.0f, false, false, 0.27f, -3.01f) - curveToRelative(0.45f, -0.15f, 0.83f, -0.49f, 1.04f, -0.94f) - lineTo(18.98f, 8.0f) - horizontalLineToRelative(0.27f) - curveTo(20.22f, 8.0f, 21.0f, 7.22f, 21.0f, 6.25f) - verticalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - lineTo(4.75f, 6.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-3.5f) - close() - moveTo(6.66f, 8.0f) - horizontalLineToRelative(10.68f) - lineToRelative(-3.76f, 8.35f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.23f, 0.15f) - horizontalLineToRelative(-2.7f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.23f, -0.15f) - lineTo(6.66f, 8.0f) - close() - moveTo(11.61f, 18.0f) - horizontalLineToRelative(0.78f) - curveToRelative(0.07f, 0.26f, 0.11f, 0.6f, 0.11f, 1.0f) - curveToRelative(0.0f, 0.57f, -0.08f, 1.0f, -0.21f, 1.26f) - curveToRelative(-0.1f, 0.22f, -0.2f, 0.24f, -0.29f, 0.24f) - curveToRelative(-0.1f, 0.0f, -0.18f, -0.02f, -0.29f, -0.24f) - arcTo(3.03f, 3.03f, 0.0f, false, true, 11.5f, 19.0f) - curveToRelative(0.0f, -0.4f, 0.04f, -0.74f, 0.11f, -1.0f) - close() - } - } - return _inkingTool!! - } - -private var _inkingTool: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/InprivateAccount.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/InprivateAccount.kt deleted file mode 100644 index 0b4fbd61..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/InprivateAccount.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.InprivateAccount: ImageVector - get() { - if (_inprivateAccount != null) { - return _inprivateAccount!! - } - _inprivateAccount = fluentIcon(name = "Regular.InprivateAccount") { - fluentPath { - moveTo(17.75f, 14.0f) - curveToRelative(1.21f, 0.0f, 2.2f, 0.95f, 2.25f, 2.15f) - verticalLineToRelative(0.1f) - horizontalLineToRelative(-8.0f) - verticalLineToRelative(-0.75f) - lineTo(6.25f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.58f) - curveToRelative(0.0f, 0.53f, 0.2f, 1.05f, 0.54f, 1.46f) - curveTo(7.3f, 19.76f, 9.26f, 20.5f, 12.0f, 20.5f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(6.64f) - curveTo(17.08f, 21.25f, 14.85f, 22.0f, 12.0f, 22.0f) - curveToRelative(-3.15f, 0.0f, -5.53f, -0.9f, -7.1f, -2.74f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.9f, -2.43f) - verticalLineToRelative(-0.58f) - curveTo(4.0f, 15.0f, 5.01f, 14.0f, 6.25f, 14.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(19.47f, 18.75f) - lineTo(12.0f, 18.75f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(7.98f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.51f, 1.5f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 4.0f, 2.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-0.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - lineTo(12.0f, 10.0f) - horizontalLineToRelative(4.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, -4.0f, -8.0f) - close() - moveTo(16.98f, 7.5f) - arcToRelative(4.97f, 4.97f, 0.0f, false, true, -0.4f, 1.5f) - lineTo(12.0f, 9.0f) - lineTo(12.0f, 7.5f) - horizontalLineToRelative(4.98f) - close() - moveTo(16.58f, 5.0f) - curveToRelative(0.2f, 0.47f, 0.34f, 0.97f, 0.4f, 1.5f) - lineTo(12.0f, 6.5f) - lineTo(12.0f, 5.0f) - horizontalLineToRelative(4.58f) - close() - } - } - return _inprivateAccount!! - } - -private var _inprivateAccount: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/IosArrowLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/IosArrowLtr.kt deleted file mode 100644 index 0ffa581a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/IosArrowLtr.kt +++ /dev/null @@ -1,31 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.IosArrowLtr: ImageVector - get() { - if (_iosArrowLtr != null) { - return _iosArrowLtr!! - } - _iosArrowLtr = fluentIcon(name = "Regular.IosArrowLtr") { - fluentPath { - moveToRelative(4.3f, 12.0f) - lineToRelative(8.49f, -8.73f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.08f, -1.04f) - lineToRelative(-9.0f, 9.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.04f) - lineToRelative(9.0f, 9.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.08f, -1.04f) - lineTo(4.29f, 12.0f) - close() - } - } - return _iosArrowLtr!! - } - -private var _iosArrowLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/IosArrowRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/IosArrowRtl.kt deleted file mode 100644 index 7165eb81..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/IosArrowRtl.kt +++ /dev/null @@ -1,31 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.IosArrowRtl: ImageVector - get() { - if (_iosArrowRtl != null) { - return _iosArrowRtl!! - } - _iosArrowRtl = fluentIcon(name = "Regular.IosArrowRtl") { - fluentPath { - moveToRelative(19.7f, 12.0f) - lineToRelative(-8.49f, -8.73f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.08f, -1.04f) - lineToRelative(9.0f, 9.25f) - curveToRelative(0.28f, 0.29f, 0.28f, 0.75f, 0.0f, 1.04f) - lineToRelative(-9.0f, 9.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.08f, -1.04f) - lineToRelative(8.5f, -8.73f) - close() - } - } - return _iosArrowRtl!! - } - -private var _iosArrowRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Iot.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Iot.kt deleted file mode 100644 index 31084ecb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Iot.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Iot: ImageVector - get() { - if (_iot != null) { - return _iot!! - } - _iot = fluentIcon(name = "Regular.Iot") { - fluentPath { - moveTo(19.0f, 4.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -3.01f, 2.44f) - lineTo(14.7f, 9.06f) - arcToRelative(3.99f, 3.99f, 0.0f, false, true, 1.29f, 3.0f) - lineToRelative(1.3f, 0.26f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -0.28f, 1.47f) - lineToRelative(-1.32f, -0.26f) - arcToRelative(4.02f, 4.02f, 0.0f, false, true, -1.75f, 1.96f) - lineToRelative(0.5f, 1.51f) - horizontalLineToRelative(0.05f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -1.47f, 0.48f) - lineToRelative(-0.5f, -1.51f) - arcToRelative(4.05f, 4.05f, 0.0f, false, true, -3.75f, -1.6f) - lineToRelative(-1.8f, 0.85f) - lineToRelative(0.02f, 0.28f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -0.62f, -1.65f) - lineToRelative(1.75f, -0.83f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.79f, -3.57f) - lineToRelative(-1.0f, -1.13f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.5f, 6.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 4.59f, 1.38f) - lineToRelative(0.98f, 1.12f) - arcToRelative(3.98f, 3.98f, 0.0f, false, true, 3.36f, -0.23f) - lineToRelative(1.25f, -2.06f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 1.82f, -4.22f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 19.0f, 4.5f) - close() - moveTo(17.5f, 4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(7.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(12.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) - close() - moveTo(5.5f, 15.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(15.5f, 19.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(19.5f, 14.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - } - } - return _iot!! - } - -private var _iot: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/IotAlert.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/IotAlert.kt deleted file mode 100644 index 15cc12a6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/IotAlert.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.IotAlert: ImageVector - get() { - if (_iotAlert != null) { - return _iotAlert!! - } - _iotAlert = fluentIcon(name = "Regular.IotAlert") { - fluentPath { - moveTo(19.0f, 4.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -3.01f, 2.44f) - lineTo(14.7f, 9.06f) - curveToRelative(0.32f, 0.3f, 0.6f, 0.65f, 0.8f, 1.04f) - curveToRelative(-0.5f, 0.1f, -0.98f, 0.28f, -1.42f, 0.52f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, -2.56f, 3.84f) - curveToRelative(-0.02f, 0.17f, -0.03f, 0.36f, -0.03f, 0.54f) - verticalLineToRelative(0.97f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -2.72f, -1.6f) - lineToRelative(-1.8f, 0.85f) - lineToRelative(0.02f, 0.28f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -0.62f, -1.65f) - lineToRelative(1.75f, -0.83f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.79f, -3.57f) - lineToRelative(-1.0f, -1.13f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 4.5f, 6.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 4.59f, 1.38f) - lineToRelative(0.98f, 1.12f) - arcToRelative(3.98f, 3.98f, 0.0f, false, true, 3.36f, -0.24f) - lineToRelative(1.25f, -2.06f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 16.5f, 2.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 19.0f, 4.5f) - close() - moveTo(17.5f, 4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(7.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(5.5f, 15.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(16.5f, 11.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, 4.0f) - verticalLineToRelative(3.0f) - lineToRelative(-0.95f, 0.8f) - curveToRelative(-0.3f, 0.26f, -0.46f, 0.39f, -0.5f, 0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.24f, 0.65f) - curveToRelative(0.1f, 0.05f, 0.3f, 0.05f, 0.7f, 0.05f) - horizontalLineToRelative(9.02f) - curveToRelative(0.4f, 0.0f, 0.6f, 0.0f, 0.7f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.25f, -0.66f) - curveToRelative(-0.05f, -0.1f, -0.2f, -0.23f, -0.5f, -0.49f) - lineToRelative(-0.96f, -0.8f) - verticalLineToRelative(-3.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, -4.0f) - close() - moveTo(18.0f, 21.0f) - curveToRelative(-0.22f, 0.58f, -0.8f, 1.0f, -1.5f, 1.0f) - curveToRelative(-0.69f, 0.0f, -1.28f, -0.42f, -1.5f, -1.0f) - horizontalLineToRelative(3.0f) - close() - } - } - return _iotAlert!! - } - -private var _iotAlert: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Javascript.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Javascript.kt deleted file mode 100644 index d0874f07..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Javascript.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Javascript: ImageVector - get() { - if (_javascript != null) { - return _javascript!! - } - _javascript = fluentIcon(name = "Regular.Javascript") { - fluentPath { - moveTo(14.0f, 11.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(0.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-1.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-1.5f) - close() - moveTo(12.75f, 10.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - lineTo(9.75f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(11.0f, 18.0f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-6.0f) - close() - moveTo(3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - close() - moveTo(6.25f, 4.5f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - close() - } - } - return _javascript!! - } - -private var _javascript: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyCommand.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyCommand.kt deleted file mode 100644 index fab824d7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyCommand.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.KeyCommand: ImageVector - get() { - if (_keyCommand != null) { - return _keyCommand!! - } - _keyCommand = fluentIcon(name = "Regular.KeyCommand") { - fluentPath { - moveTo(6.25f, 4.5f) - curveTo(7.22f, 4.5f, 8.0f, 5.28f, 8.0f, 6.25f) - lineTo(8.0f, 8.0f) - lineTo(6.25f, 8.0f) - arcToRelative(1.75f, 1.75f, 0.0f, true, true, 0.0f, -3.5f) - close() - moveTo(9.5f, 8.0f) - lineTo(9.5f, 6.25f) - arcTo(3.25f, 3.25f, 0.0f, true, false, 6.25f, 9.5f) - lineTo(8.0f, 9.5f) - verticalLineToRelative(5.0f) - lineTo(6.25f, 14.5f) - arcToRelative(3.25f, 3.25f, 0.0f, true, false, 3.25f, 3.25f) - lineTo(9.5f, 16.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(1.75f) - arcToRelative(3.25f, 3.25f, 0.0f, true, false, 3.25f, -3.25f) - lineTo(16.0f, 14.5f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(1.75f) - arcToRelative(3.25f, 3.25f, 0.0f, true, false, -3.25f, -3.25f) - lineTo(14.5f, 8.0f) - horizontalLineToRelative(-5.0f) - close() - moveTo(9.5f, 9.5f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(-5.0f) - close() - moveTo(16.0f, 8.0f) - lineTo(16.0f, 6.25f) - arcTo(1.75f, 1.75f, 0.0f, true, true, 17.75f, 8.0f) - lineTo(16.0f, 8.0f) - close() - moveTo(16.0f, 16.0f) - horizontalLineToRelative(1.75f) - arcTo(1.75f, 1.75f, 0.0f, true, true, 16.0f, 17.75f) - lineTo(16.0f, 16.0f) - close() - moveTo(8.0f, 16.0f) - verticalLineToRelative(1.75f) - arcTo(1.75f, 1.75f, 0.0f, true, true, 6.25f, 16.0f) - lineTo(8.0f, 16.0f) - close() - } - } - return _keyCommand!! - } - -private var _keyCommand: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyReset.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyReset.kt deleted file mode 100644 index 87c83fa4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyReset.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.KeyReset: ImageVector - get() { - if (_keyReset != null) { - return _keyReset!! - } - _keyReset = fluentIcon(name = "Regular.KeyReset") { - fluentPath { - moveTo(17.0f, 8.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - moveTo(8.95f, 8.6f) - arcToRelative(6.55f, 6.55f, 0.0f, false, true, 6.55f, -6.55f) - arcToRelative(6.47f, 6.47f, 0.0f, false, true, 5.3f, 10.3f) - arcToRelative(6.01f, 6.01f, 0.0f, false, false, -1.28f, -0.8f) - arcToRelative(4.97f, 4.97f, 0.0f, false, false, -4.02f, -8.0f) - arcToRelative(5.05f, 5.05f, 0.0f, false, false, -4.96f, 5.9f) - curveToRelative(0.1f, 0.55f, -0.07f, 1.14f, -0.49f, 1.56f) - lineToRelative(-6.23f, 6.23f) - curveToRelative(-0.24f, 0.24f, -0.37f, 0.56f, -0.37f, 0.89f) - verticalLineToRelative(2.17f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(2.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.7f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(1.75f) - lineTo(9.45f, 15.8f) - curveToRelative(0.0f, -0.65f, 0.5f, -1.18f, 1.13f, -1.24f) - lineToRelative(1.08f, 1.07f) - curveToRelative(-0.15f, 0.12f, -0.28f, 0.26f, -0.38f, 0.42f) - horizontalLineToRelative(-0.33f) - verticalLineToRelative(1.75f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - lineTo(7.95f, 19.05f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(3.7f, 22.05f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-2.17f) - curveToRelative(0.0f, -0.73f, 0.29f, -1.43f, 0.8f, -1.95f) - lineTo(9.0f, 9.95f) - arcToRelative(0.27f, 0.27f, 0.0f, false, false, 0.07f, -0.25f) - arcToRelative(6.39f, 6.39f, 0.0f, false, true, -0.11f, -1.1f) - close() - moveTo(13.78f, 11.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-2.0f, 2.0f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-0.72f, -0.72f) - lineTo(17.0f, 13.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, -3.5f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, false, 5.0f, -5.0f) - horizontalLineToRelative(-3.94f) - lineToRelative(0.72f, -0.72f) - close() - } - } - return _keyReset!! - } - -private var _keyReset: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Keyboard.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Keyboard.kt deleted file mode 100644 index 39541ed2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Keyboard.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Keyboard: ImageVector - get() { - if (_keyboard != null) { - return _keyboard!! - } - _keyboard = fluentIcon(name = "Regular.Keyboard") { - fluentPath { - moveTo(19.75f, 5.0f) - curveTo(20.99f, 5.0f, 22.0f, 6.0f, 22.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(22.0f, 18.0f, 20.99f, 19.0f, 19.75f, 19.0f) - lineTo(4.25f, 19.0f) - curveTo(3.01f, 19.0f, 2.0f, 18.0f, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - curveTo(2.0f, 6.01f, 3.0f, 5.0f, 4.25f, 5.0f) - horizontalLineToRelative(15.5f) - close() - moveTo(19.75f, 6.5f) - lineTo(4.25f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(15.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) - verticalLineToRelative(-9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(6.75f, 14.5f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(10.6f) - horizontalLineToRelative(-10.5f) - close() - moveTo(16.5f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(10.5f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(7.5f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(13.5f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(6.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(9.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(12.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(15.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(18.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - } - } - return _keyboard!! - } - -private var _keyboard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Keyboard123.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Keyboard123.kt deleted file mode 100644 index 52e89c4f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Keyboard123.kt +++ /dev/null @@ -1,142 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Keyboard123: ImageVector - get() { - if (_keyboard123 != null) { - return _keyboard123!! - } - _keyboard123 = fluentIcon(name = "Regular.Keyboard123") { - fluentPath { - moveTo(5.16f, 4.17f) - curveToRelative(0.37f, 0.18f, 0.81f, 0.04f, 1.0f, -0.32f) - lineToRelative(0.04f, -0.06f) - curveToRelative(0.04f, -0.05f, 0.1f, -0.12f, 0.2f, -0.2f) - curveToRelative(0.2f, -0.16f, 0.53f, -0.34f, 1.1f, -0.34f) - curveToRelative(0.5f, 0.0f, 0.78f, 0.24f, 0.9f, 0.46f) - curveToRelative(0.1f, 0.2f, 0.1f, 0.48f, -0.18f, 0.76f) - curveToRelative(-0.2f, 0.2f, -0.45f, 0.36f, -0.77f, 0.55f) - lineToRelative(-0.29f, 0.16f) - lineToRelative(-0.75f, 0.45f) - curveToRelative(-0.76f, 0.5f, -1.5f, 1.2f, -1.65f, 2.53f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 5.5f, 9.0f) - horizontalLineToRelative(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.7f) - curveToRelative(0.17f, -0.24f, 0.4f, -0.43f, 0.68f, -0.62f) - lineToRelative(0.6f, -0.36f) - lineToRelative(0.38f, -0.2f) - curveToRelative(0.35f, -0.2f, 0.73f, -0.45f, 1.07f, -0.79f) - curveToRelative(0.73f, -0.72f, 0.85f, -1.7f, 0.45f, -2.49f) - arcTo(2.44f, 2.44f, 0.0f, false, false, 7.5f, 1.75f) - curveToRelative(-0.93f, 0.0f, -1.6f, 0.32f, -2.03f, 0.66f) - arcToRelative(2.67f, 2.67f, 0.0f, false, false, -0.62f, 0.72f) - lineToRelative(-0.01f, 0.02f) - verticalLineToRelative(0.01f) - horizontalLineToRelative(-0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.33f, 1.01f) - close() - moveTo(14.37f, 4.48f) - curveToRelative(-0.13f, 0.13f, -0.4f, 0.27f, -0.87f, 0.27f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - curveToRelative(0.47f, 0.0f, 0.74f, 0.14f, 0.87f, 0.27f) - curveToRelative(0.14f, 0.12f, 0.2f, 0.28f, 0.19f, 0.44f) - curveToRelative(-0.02f, 0.26f, -0.29f, 0.79f, -1.31f, 0.79f) - curveToRelative(-0.46f, 0.0f, -0.76f, -0.14f, -0.93f, -0.25f) - arcToRelative(1.04f, 1.04f, 0.0f, false, true, -0.2f, -0.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.04f, -0.2f) - curveToRelative(-0.58f, 0.38f, -0.2f, 1.05f, -0.2f, 1.05f) - verticalLineToRelative(0.01f) - lineToRelative(0.02f, 0.02f) - arcToRelative(1.47f, 1.47f, 0.0f, false, false, 0.15f, 0.18f) - curveToRelative(0.1f, 0.1f, 0.25f, 0.24f, 0.44f, 0.37f) - curveToRelative(0.4f, 0.26f, 0.97f, 0.5f, 1.76f, 0.5f) - curveToRelative(1.62f, 0.0f, 2.73f, -0.97f, 2.8f, -2.2f) - arcToRelative(2.04f, 2.04f, 0.0f, false, false, -0.57f, -1.55f) - curveToRelative(0.41f, -0.43f, 0.6f, -0.99f, 0.57f, -1.54f) - curveToRelative(-0.07f, -1.24f, -1.18f, -2.21f, -2.8f, -2.21f) - curveToRelative(-0.79f, 0.0f, -1.37f, 0.24f, -1.76f, 0.5f) - arcToRelative(2.54f, 2.54f, 0.0f, false, false, -0.6f, 0.55f) - verticalLineToRelative(0.02f) - horizontalLineToRelative(-0.01f) - verticalLineToRelative(0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.23f, 0.85f) - lineToRelative(0.03f, -0.03f) - curveToRelative(0.04f, -0.04f, 0.1f, -0.1f, 0.18f, -0.15f) - curveToRelative(0.17f, -0.11f, 0.47f, -0.25f, 0.93f, -0.25f) - curveToRelative(1.02f, 0.0f, 1.29f, 0.53f, 1.3f, 0.8f) - curveToRelative(0.01f, 0.15f, -0.04f, 0.3f, -0.18f, 0.43f) - close() - moveTo(12.12f, 7.33f) - close() - moveTo(12.12f, 3.67f) - close() - moveTo(3.5f, 2.65f) - verticalLineToRelative(5.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(2.0f, 3.79f) - lineToRelative(-0.51f, 0.17f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.91f, -0.37f) - lineToRelative(-0.04f, -0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.38f, -0.9f) - lineToRelative(0.1f, -0.05f) - lineToRelative(1.5f, -0.5f) - curveToRelative(0.45f, -0.15f, 0.91f, 0.15f, 0.98f, 0.6f) - close() - moveTo(17.03f, 6.5f) - horizontalLineToRelative(2.72f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.42f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(4.25f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(3.5f, 9.8f) - arcToRelative(1.74f, 1.74f, 0.0f, false, true, -1.5f, 0.05f) - verticalLineToRelative(6.9f) - curveTo(2.0f, 18.0f, 3.0f, 19.0f, 4.25f, 19.0f) - horizontalLineToRelative(15.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-9.5f) - curveTo(22.0f, 6.01f, 20.99f, 5.0f, 19.75f, 5.0f) - lineTo(16.9f, 5.0f) - curveToRelative(-0.05f, 0.17f, -0.12f, 0.34f, -0.2f, 0.5f) - curveToRelative(0.16f, 0.31f, 0.27f, 0.65f, 0.32f, 1.0f) - close() - moveTo(17.25f, 14.5f) - lineTo(6.65f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(10.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(11.5f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(8.5f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(14.5f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(19.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - } - } - return _keyboard123!! - } - -private var _keyboard123: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyboardDock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyboardDock.kt deleted file mode 100644 index ac6f139b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyboardDock.kt +++ /dev/null @@ -1,103 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.KeyboardDock: ImageVector - get() { - if (_keyboardDock != null) { - return _keyboardDock!! - } - _keyboardDock = fluentIcon(name = "Regular.KeyboardDock") { - fluentPath { - moveTo(17.25f, 12.0f) - lineTo(6.65f, 12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(10.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(17.5f, 9.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(11.5f, 9.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(8.5f, 9.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(14.5f, 9.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(7.0f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(10.0f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(13.0f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(16.0f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(19.0f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(22.0f, 4.75f) - curveToRelative(0.0f, -1.24f, -1.01f, -2.25f, -2.25f, -2.25f) - lineTo(4.25f, 2.5f) - curveTo(3.01f, 2.5f, 2.0f, 3.5f, 2.0f, 4.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.25f, 1.01f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(7.0f) - verticalLineToRelative(2.94f) - lineToRelative(-0.84f, -0.84f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 1.13f) - lineToRelative(2.12f, 2.12f) - lineToRelative(0.09f, 0.07f) - curveToRelative(0.11f, 0.09f, 0.25f, 0.14f, 0.39f, 0.15f) - horizontalLineToRelative(0.1f) - lineToRelative(0.1f, -0.02f) - curveToRelative(0.15f, -0.03f, 0.28f, -0.1f, 0.38f, -0.2f) - lineToRelative(2.12f, -2.12f) - lineToRelative(0.08f, -0.09f) - curveToRelative(0.21f, -0.29f, 0.19f, -0.7f, -0.08f, -0.97f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) - lineToRelative(-0.84f, 0.84f) - lineTo(12.75f, 16.5f) - horizontalLineToRelative(7.0f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-9.5f) - close() - moveTo(12.75f, 15.0f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(15.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.42f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-7.0f) - close() - } - } - return _keyboardDock!! - } - -private var _keyboardDock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyboardLayoutFloat.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyboardLayoutFloat.kt deleted file mode 100644 index 285273ea..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyboardLayoutFloat.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.KeyboardLayoutFloat: ImageVector - get() { - if (_keyboardLayoutFloat != null) { - return _keyboardLayoutFloat!! - } - _keyboardLayoutFloat = fluentIcon(name = "Regular.KeyboardLayoutFloat") { - fluentPath { - moveTo(21.25f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(2.75f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(18.6f) - close() - moveTo(19.75f, 3.0f) - curveTo(20.99f, 3.0f, 22.0f, 4.0f, 22.0f, 5.25f) - verticalLineToRelative(9.5f) - curveTo(22.0f, 16.0f, 20.99f, 17.0f, 19.75f, 17.0f) - horizontalLineToRelative(-6.53f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.44f, 0.0f) - lineTo(4.25f, 17.0f) - curveTo(3.01f, 17.0f, 2.0f, 16.0f, 2.0f, 14.75f) - verticalLineToRelative(-9.5f) - curveTo(2.0f, 4.01f, 3.0f, 3.0f, 4.25f, 3.0f) - horizontalLineToRelative(15.5f) - close() - moveTo(19.75f, 4.5f) - lineTo(4.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(15.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) - verticalLineToRelative(-9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(17.25f, 12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(10.6f) - close() - moveTo(16.5f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(10.5f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(7.5f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(13.5f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(6.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(9.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(12.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(15.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(18.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - } - } - return _keyboardLayoutFloat!! - } - -private var _keyboardLayoutFloat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyboardLayoutOneHandedLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyboardLayoutOneHandedLeft.kt deleted file mode 100644 index f99e8c71..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyboardLayoutOneHandedLeft.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.KeyboardLayoutOneHandedLeft: ImageVector - get() { - if (_keyboardLayoutOneHandedLeft != null) { - return _keyboardLayoutOneHandedLeft!! - } - _keyboardLayoutOneHandedLeft = fluentIcon(name = "Regular.KeyboardLayoutOneHandedLeft") { - fluentPath { - moveTo(19.75f, 5.0f) - curveTo(20.99f, 5.0f, 22.0f, 6.0f, 22.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(22.0f, 18.0f, 20.99f, 19.0f, 19.75f, 19.0f) - lineTo(4.25f, 19.0f) - curveTo(3.01f, 19.0f, 2.0f, 18.0f, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - curveTo(2.0f, 6.01f, 3.0f, 5.0f, 4.25f, 5.0f) - horizontalLineToRelative(15.5f) - close() - moveTo(19.75f, 6.5f) - lineTo(4.25f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(15.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) - verticalLineToRelative(-9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(6.5f, 16.0f) - lineTo(10.0f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(6.5f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(9.5f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(6.5f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(6.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(9.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - } - } - return _keyboardLayoutOneHandedLeft!! - } - -private var _keyboardLayoutOneHandedLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyboardLayoutResize.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyboardLayoutResize.kt deleted file mode 100644 index 3f66fc0d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyboardLayoutResize.kt +++ /dev/null @@ -1,119 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.KeyboardLayoutResize: ImageVector - get() { - if (_keyboardLayoutResize != null) { - return _keyboardLayoutResize!! - } - _keyboardLayoutResize = fluentIcon(name = "Regular.KeyboardLayoutResize") { - fluentPath { - moveTo(13.25f, 10.5f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(7.0f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - horizontalLineToRelative(-9.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(2.0f, 19.75f) - verticalLineToRelative(-7.0f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineToRelative(0.15f, -0.01f) - horizontalLineToRelative(9.0f) - close() - moveTo(21.25f, 10.5f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(2.1f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(13.25f, 12.0f) - horizontalLineToRelative(-9.0f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(7.0f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(9.0f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - verticalLineToRelative(-7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(10.75f, 17.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - curveToRelative(0.0f, 0.38f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - curveToRelative(0.0f, -0.38f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.0f) - close() - moveTo(6.0f, 13.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(11.5f, 13.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(8.75f, 13.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(21.25f, 2.0f) - arcToRelative(0.76f, 0.76f, 0.0f, false, true, 0.33f, 0.07f) - lineToRelative(0.04f, 0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.08f, 0.05f) - lineToRelative(0.08f, 0.07f) - lineToRelative(0.05f, 0.06f) - lineToRelative(0.01f, 0.01f) - lineToRelative(0.04f, 0.05f) - arcToRelative(0.74f, 0.74f, 0.0f, false, true, 0.11f, 0.3f) - lineToRelative(0.01f, 0.11f) - verticalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(20.5f, 4.56f) - lineToRelative(-4.47f, 4.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(4.47f, -4.47f) - horizontalLineToRelative(-3.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(5.0f) - close() - moveTo(12.75f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-8.6f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-4.1f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 2.0f) - horizontalLineToRelative(8.5f) - close() - } - } - return _keyboardLayoutResize!! - } - -private var _keyboardLayoutResize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyboardLayoutSplit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyboardLayoutSplit.kt deleted file mode 100644 index dd169522..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyboardLayoutSplit.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.KeyboardLayoutSplit: ImageVector - get() { - if (_keyboardLayoutSplit != null) { - return _keyboardLayoutSplit!! - } - _keyboardLayoutSplit = fluentIcon(name = "Regular.KeyboardLayoutSplit") { - fluentPath { - moveTo(19.75f, 5.0f) - curveTo(20.99f, 5.0f, 22.0f, 6.0f, 22.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(22.0f, 18.0f, 20.99f, 19.0f, 19.75f, 19.0f) - lineTo(4.25f, 19.0f) - curveTo(3.01f, 19.0f, 2.0f, 18.0f, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - curveTo(2.0f, 6.01f, 3.0f, 5.0f, 4.25f, 5.0f) - horizontalLineToRelative(15.5f) - close() - moveTo(19.75f, 6.5f) - lineTo(4.25f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(15.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) - verticalLineToRelative(-9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(6.5f, 16.0f) - lineTo(10.0f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(6.5f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(14.0f, 16.0f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(14.0f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(17.5f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(9.5f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(6.5f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(14.5f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(6.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(9.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(15.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(18.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - } - } - return _keyboardLayoutSplit!! - } - -private var _keyboardLayoutSplit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyboardShift.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyboardShift.kt deleted file mode 100644 index 9b60891a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyboardShift.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.KeyboardShift: ImageVector - get() { - if (_keyboardShift != null) { - return _keyboardShift!! - } - _keyboardShift = fluentIcon(name = "Regular.KeyboardShift") { - fluentPath { - moveTo(10.68f, 2.6f) - curveToRelative(0.7f, -0.8f, 1.94f, -0.8f, 2.64f, 0.0f) - lineToRelative(8.25f, 9.5f) - curveToRelative(0.98f, 1.14f, 0.17f, 2.9f, -1.33f, 2.9f) - lineTo(17.0f, 15.0f) - verticalLineToRelative(5.25f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-6.5f) - curveTo(7.78f, 22.0f, 7.0f, 21.22f, 7.0f, 20.25f) - lineTo(7.0f, 15.0f) - lineTo(3.75f, 15.0f) - curveToRelative(-1.5f, 0.0f, -2.3f, -1.76f, -1.32f, -2.9f) - lineToRelative(8.25f, -9.5f) - close() - moveTo(12.18f, 3.59f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.37f, 0.0f) - lineToRelative(-8.24f, 9.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.18f, 0.41f) - horizontalLineToRelative(4.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(6.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-6.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.0f) - curveToRelative(0.2f, 0.0f, 0.32f, -0.25f, 0.18f, -0.41f) - lineToRelative(-8.24f, -9.5f) - close() - } - } - return _keyboardShift!! - } - -private var _keyboardShift: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyboardShiftUppercase.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyboardShiftUppercase.kt deleted file mode 100644 index da64b8f6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyboardShiftUppercase.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.KeyboardShiftUppercase: ImageVector - get() { - if (_keyboardShiftUppercase != null) { - return _keyboardShiftUppercase!! - } - _keyboardShiftUppercase = fluentIcon(name = "Regular.KeyboardShiftUppercase") { - fluentPath { - moveTo(13.32f, 2.6f) - curveToRelative(-0.7f, -0.8f, -1.94f, -0.8f, -2.64f, 0.0f) - lineToRelative(-8.25f, 9.5f) - arcTo(1.75f, 1.75f, 0.0f, false, false, 3.75f, 15.0f) - lineTo(7.0f, 15.0f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(6.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(17.0f, 15.0f) - horizontalLineToRelative(3.24f) - curveToRelative(1.5f, 0.0f, 2.31f, -1.76f, 1.33f, -2.9f) - lineToRelative(-8.25f, -9.5f) - close() - moveTo(11.81f, 3.59f) - curveToRelative(0.1f, -0.12f, 0.28f, -0.12f, 0.38f, 0.0f) - lineToRelative(8.24f, 9.5f) - curveToRelative(0.14f, 0.16f, 0.03f, 0.41f, -0.19f, 0.41f) - horizontalLineToRelative(-3.99f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.18f, -0.41f) - lineToRelative(8.24f, -9.5f) - close() - moveTo(7.75f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-8.5f) - close() - } - } - return _keyboardShiftUppercase!! - } - -private var _keyboardShiftUppercase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyboardTab.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyboardTab.kt deleted file mode 100644 index 58166ea7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/KeyboardTab.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.KeyboardTab: ImageVector - get() { - if (_keyboardTab != null) { - return _keyboardTab!! - } - _keyboardTab = fluentIcon(name = "Regular.KeyboardTab") { - fluentPath { - moveToRelative(18.03f, 11.47f) - lineToRelative(-6.5f, -6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.13f, 0.98f) - lineToRelative(0.07f, 0.08f) - lineToRelative(5.22f, 5.22f) - horizontalLineTo(3.75f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineTo(3.0f, 12.0f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(11.94f) - lineToRelative(-5.22f, 5.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.98f) - lineToRelative(0.07f, 0.08f) - curveToRelative(0.27f, 0.27f, 0.68f, 0.3f, 0.98f, 0.07f) - lineToRelative(0.08f, -0.07f) - lineToRelative(6.5f, -6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.07f, -0.98f) - lineToRelative(-0.07f, -0.08f) - lineToRelative(-6.5f, -6.5f) - lineToRelative(6.5f, 6.5f) - close() - moveTo(21.0f, 18.5f) - verticalLineToRelative(-13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - close() - } - } - return _keyboardTab!! - } - -private var _keyboardTab: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Laptop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Laptop.kt deleted file mode 100644 index b74eea59..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Laptop.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Laptop: ImageVector - get() { - if (_laptop != null) { - return _laptop!! - } - _laptop = fluentIcon(name = "Regular.Laptop") { - fluentPath { - moveTo(2.75f, 16.5f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(2.75f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(18.6f) - horizontalLineToRelative(-18.5f) - close() - moveTo(18.25f, 5.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(5.75f, 16.0f) - curveTo(4.78f, 16.0f, 4.0f, 15.22f, 4.0f, 14.25f) - verticalLineToRelative(-7.5f) - curveTo(4.0f, 5.78f, 4.78f, 5.0f, 5.75f, 5.0f) - horizontalLineToRelative(12.5f) - close() - moveTo(18.25f, 6.5f) - lineTo(5.75f, 6.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(12.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-7.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - } - } - return _laptop!! - } - -private var _laptop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Lasso.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Lasso.kt deleted file mode 100644 index d78feef6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Lasso.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Lasso: ImageVector - get() { - if (_lasso != null) { - return _lasso!! - } - _lasso = fluentIcon(name = "Regular.Lasso") { - fluentPath { - moveTo(9.7f, 2.27f) - arcToRelative(10.03f, 10.03f, 0.0f, false, true, 4.6f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.35f, 1.46f) - arcToRelative(8.53f, 8.53f, 0.0f, false, false, -3.9f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.35f, -1.46f) - close() - moveTo(7.77f, 3.74f) - curveToRelative(0.22f, 0.35f, 0.11f, 0.81f, -0.24f, 1.03f) - arcToRelative(8.55f, 8.55f, 0.0f, false, false, -2.76f, 2.76f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.28f, -0.79f) - arcTo(10.05f, 10.05f, 0.0f, false, true, 6.74f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, 0.25f) - close() - moveTo(16.23f, 3.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, -0.25f) - curveToRelative(1.32f, 0.82f, 2.43f, 1.93f, 3.25f, 3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.28f, 0.8f) - arcToRelative(8.55f, 8.55f, 0.0f, false, false, -2.76f, -2.77f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.24f, -1.03f) - close() - moveTo(3.17f, 9.14f) - curveToRelative(0.4f, 0.1f, 0.65f, 0.5f, 0.56f, 0.9f) - arcToRelative(8.53f, 8.53f, 0.0f, false, false, 0.0f, 3.91f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.46f, 0.35f) - arcToRelative(10.03f, 10.03f, 0.0f, false, true, 0.0f, -4.6f) - curveToRelative(0.09f, -0.4f, 0.5f, -0.65f, 0.9f, -0.56f) - close() - moveTo(20.83f, 9.14f) - curveToRelative(0.4f, -0.09f, 0.81f, 0.16f, 0.9f, 0.56f) - arcToRelative(10.03f, 10.03f, 0.0f, false, true, 0.0f, 4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.46f, -0.35f) - arcToRelative(8.52f, 8.52f, 0.0f, false, false, 0.0f, -3.9f) - curveToRelative(-0.09f, -0.4f, 0.16f, -0.81f, 0.56f, -0.9f) - close() - moveTo(3.73f, 16.23f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.04f, 0.24f) - arcToRelative(8.55f, 8.55f, 0.0f, false, false, 2.76f, 2.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.79f, 1.28f) - arcToRelative(10.05f, 10.05f, 0.0f, false, true, -3.25f, -3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.25f, -1.03f) - close() - moveTo(20.43f, 17.09f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.35f, -0.68f) - lineToRelative(-0.02f, 0.04f) - arcToRelative(4.63f, 4.63f, 0.0f, false, true, -0.36f, 0.59f) - curveToRelative(-0.22f, 0.33f, -0.54f, 0.77f, -0.96f, 1.22f) - arcTo(7.0f, 7.0f, 0.0f, false, false, 13.0f, 16.25f) - curveToRelative(-2.35f, 0.0f, -3.99f, 1.2f, -3.99f, 2.88f) - curveTo(9.01f, 20.8f, 10.65f, 22.0f, 13.0f, 22.0f) - curveToRelative(1.94f, 0.0f, 3.5f, -0.75f, 4.66f, -1.65f) - arcToRelative(11.73f, 11.73f, 0.0f, false, true, 1.39f, 2.16f) - lineToRelative(0.01f, 0.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.37f, -0.6f) - curveToRelative(-0.08f, -0.19f, 0.0f, 0.0f, 0.0f, 0.0f) - verticalLineToRelative(-0.03f) - arcToRelative(3.63f, 3.63f, 0.0f, false, false, -0.12f, -0.24f) - arcToRelative(11.87f, 11.87f, 0.0f, false, false, -1.54f, -2.33f) - arcToRelative(11.06f, 11.06f, 0.0f, false, false, 1.62f, -2.2f) - lineToRelative(0.02f, -0.04f) - verticalLineToRelative(-0.02f) - horizontalLineToRelative(0.01f) - close() - moveTo(13.0f, 17.75f) - curveToRelative(1.43f, 0.0f, 2.64f, 0.65f, 3.62f, 1.51f) - arcTo(6.02f, 6.02f, 0.0f, false, true, 13.0f, 20.5f) - curveToRelative(-1.97f, 0.0f, -2.49f, -0.92f, -2.49f, -1.38f) - curveToRelative(0.0f, -0.45f, 0.52f, -1.37f, 2.49f, -1.37f) - close() - } - } - return _lasso!! - } - -private var _lasso: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LauncherSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LauncherSettings.kt deleted file mode 100644 index c2e98e86..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LauncherSettings.kt +++ /dev/null @@ -1,117 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.LauncherSettings: ImageVector - get() { - if (_launcherSettings != null) { - return _launcherSettings!! - } - _launcherSettings = fluentIcon(name = "Regular.LauncherSettings") { - fluentPath { - moveTo(12.01f, 2.25f) - curveToRelative(0.74f, 0.0f, 1.47f, 0.1f, 2.18f, 0.25f) - curveToRelative(0.32f, 0.07f, 0.55f, 0.33f, 0.59f, 0.65f) - lineToRelative(0.17f, 1.53f) - arcToRelative(1.38f, 1.38f, 0.0f, false, false, 1.92f, 1.11f) - lineToRelative(1.4f, -0.61f) - curveToRelative(0.3f, -0.13f, 0.64f, -0.06f, 0.85f, 0.17f) - arcToRelative(9.8f, 9.8f, 0.0f, false, true, 2.2f, 3.8f) - curveToRelative(0.1f, 0.3f, 0.0f, 0.63f, -0.26f, 0.82f) - lineToRelative(-1.25f, 0.92f) - arcToRelative(1.38f, 1.38f, 0.0f, false, false, 0.0f, 2.22f) - lineToRelative(1.25f, 0.92f) - curveToRelative(0.25f, 0.19f, 0.36f, 0.52f, 0.27f, 0.82f) - arcToRelative(9.8f, 9.8f, 0.0f, false, true, -2.2f, 3.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.85f, 0.17f) - lineToRelative(-1.4f, -0.62f) - arcToRelative(1.38f, 1.38f, 0.0f, false, false, -1.94f, 1.12f) - lineToRelative(-0.16f, 1.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.58f, 0.65f) - arcToRelative(9.52f, 9.52f, 0.0f, false, true, -4.4f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.57f, -0.65f) - lineToRelative(-0.17f, -1.52f) - arcToRelative(1.38f, 1.38f, 0.0f, false, false, -1.93f, -1.11f) - lineToRelative(-1.4f, 0.62f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.85f, -0.18f) - arcToRelative(9.8f, 9.8f, 0.0f, false, true, -2.2f, -3.8f) - curveToRelative(-0.1f, -0.3f, 0.0f, -0.63f, 0.26f, -0.82f) - lineToRelative(1.25f, -0.92f) - arcToRelative(1.38f, 1.38f, 0.0f, false, false, 0.0f, -2.22f) - lineToRelative(-1.25f, -0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.27f, -0.82f) - arcToRelative(9.8f, 9.8f, 0.0f, false, true, 2.2f, -3.8f) - curveToRelative(0.23f, -0.23f, 0.57f, -0.3f, 0.86f, -0.17f) - lineToRelative(1.4f, 0.62f) - curveToRelative(0.4f, 0.17f, 0.86f, 0.15f, 1.25f, -0.08f) - curveToRelative(0.38f, -0.22f, 0.63f, -0.6f, 0.68f, -1.04f) - lineToRelative(0.17f, -1.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.58f, -0.65f) - curveToRelative(0.72f, -0.16f, 1.45f, -0.24f, 2.2f, -0.25f) - close() - moveTo(12.01f, 3.75f) - curveToRelative(-0.45f, 0.0f, -0.9f, 0.04f, -1.35f, 0.12f) - lineToRelative(-0.11f, 0.97f) - arcToRelative(2.89f, 2.89f, 0.0f, false, true, -4.03f, 2.33f) - lineToRelative(-0.9f, -0.4f) - arcTo(8.3f, 8.3f, 0.0f, false, false, 4.29f, 9.1f) - lineToRelative(0.8f, 0.59f) - arcToRelative(2.88f, 2.88f, 0.0f, false, true, 0.0f, 4.64f) - lineToRelative(-0.8f, 0.59f) - arcToRelative(8.3f, 8.3f, 0.0f, false, false, 1.35f, 2.32f) - lineToRelative(0.9f, -0.4f) - arcToRelative(2.88f, 2.88f, 0.0f, false, true, 4.02f, 2.32f) - lineToRelative(0.1f, 0.99f) - curveToRelative(0.9f, 0.15f, 1.8f, 0.15f, 2.7f, 0.0f) - lineToRelative(0.1f, -0.99f) - arcToRelative(2.88f, 2.88f, 0.0f, false, true, 4.02f, -2.32f) - lineToRelative(0.9f, 0.4f) - arcToRelative(8.3f, 8.3f, 0.0f, false, false, 1.35f, -2.32f) - lineToRelative(-0.8f, -0.59f) - arcToRelative(2.88f, 2.88f, 0.0f, false, true, 0.0f, -4.64f) - lineToRelative(0.8f, -0.59f) - arcToRelative(8.3f, 8.3f, 0.0f, false, false, -1.35f, -2.32f) - lineToRelative(-0.9f, 0.4f) - arcToRelative(2.88f, 2.88f, 0.0f, false, true, -4.02f, -2.32f) - lineToRelative(-0.1f, -0.98f) - arcTo(9.0f, 9.0f, 0.0f, false, false, 12.0f, 3.75f) - close() - moveTo(13.58f, 8.0f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.18f, 0.07f) - lineToRelative(0.05f, 0.05f) - lineToRelative(2.78f, 3.57f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.05f, 0.54f) - lineToRelative(-0.05f, 0.08f) - lineToRelative(-2.78f, 3.57f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.17f, 0.11f) - lineToRelative(-0.06f, 0.01f) - horizontalLineToRelative(-2.7f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.28f, -0.43f) - lineToRelative(0.04f, -0.06f) - lineTo(13.4f, 12.0f) - lineToRelative(-3.1f, -4.0f) - horizontalLineToRelative(3.27f) - close() - moveTo(9.68f, 8.8f) - lineTo(11.37f, 11.0f) - lineTo(10.58f, 12.0f) - lineTo(11.22f, 12.81f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.0f, 0.38f) - lineTo(9.9f, 14.87f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.43f, 0.04f) - lineToRelative(-0.04f, -0.05f) - lineToRelative(-2.0f, -2.55f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -0.62f) - lineTo(9.67f, 8.8f) - close() - } - } - return _launcherSettings!! - } - -private var _launcherSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Layer.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Layer.kt deleted file mode 100644 index 2d6d040c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Layer.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Layer: ImageVector - get() { - if (_layer != null) { - return _layer!! - } - _layer = fluentIcon(name = "Regular.Layer") { - fluentPath { - moveTo(20.03f, 12.2f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.58f, 0.59f) - lineToRelative(-6.05f, 4.08f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.8f, 0.0f) - lineTo(4.55f, 12.8f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.78f, -2.29f) - lineToRelative(6.84f, 4.56f) - curveToRelative(0.79f, 0.52f, 1.8f, 0.56f, 2.62f, 0.1f) - lineToRelative(0.16f, -0.1f) - lineToRelative(6.84f, -4.56f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.2f, 1.7f) - close() - moveTo(20.23f, 13.75f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.78f, 2.29f) - lineToRelative(-6.05f, 4.08f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.8f, 0.0f) - lineToRelative(-6.05f, -4.08f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.78f, -2.29f) - lineToRelative(6.84f, 4.56f) - curveToRelative(0.79f, 0.52f, 1.8f, 0.56f, 2.62f, 0.1f) - lineToRelative(0.16f, -0.1f) - lineToRelative(6.84f, -4.56f) - close() - moveTo(13.39f, 3.42f) - lineToRelative(6.36f, 4.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.66f) - lineToRelative(-6.36f, 4.25f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.78f, 0.0f) - lineTo(4.25f, 9.33f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.66f) - lineToRelative(6.36f, -4.25f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.78f, 0.0f) - close() - moveTo(11.56f, 4.61f) - lineTo(11.45f, 4.67f) - lineTo(5.7f, 8.5f) - lineToRelative(5.74f, 3.83f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.99f, 0.06f) - lineToRelative(0.11f, -0.06f) - lineTo(18.3f, 8.5f) - lineToRelative(-5.74f, -3.83f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.99f, -0.06f) - close() - } - } - return _layer!! - } - -private var _layer: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LeafOne.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LeafOne.kt deleted file mode 100644 index 5c49da41..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LeafOne.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.LeafOne: ImageVector - get() { - if (_leafOne != null) { - return _leafOne!! - } - _leafOne = fluentIcon(name = "Regular.LeafOne") { - fluentPath { - moveTo(13.24f, 3.27f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.48f, 0.0f) - lineToRelative(-3.7f, 3.71f) - arcToRelative(7.0f, 7.0f, 0.0f, false, false, 4.19f, 11.91f) - verticalLineToRelative(2.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.36f) - arcTo(7.0f, 7.0f, 0.0f, false, false, 16.95f, 7.0f) - lineToRelative(-3.71f, -3.72f) - close() - moveTo(12.75f, 17.38f) - verticalLineToRelative(-5.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(5.63f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, -3.14f, -9.34f) - lineToRelative(3.71f, -3.7f) - curveToRelative(0.1f, -0.1f, 0.26f, -0.1f, 0.36f, 0.0f) - lineToRelative(3.7f, 3.7f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, -3.13f, 9.34f) - close() - } - } - return _leafOne!! - } - -private var _leafOne: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LeafThree.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LeafThree.kt deleted file mode 100644 index e5b03f7e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LeafThree.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.LeafThree: ImageVector - get() { - if (_leafThree != null) { - return _leafThree!! - } - _leafThree = fluentIcon(name = "Regular.LeafThree") { - fluentPath { - moveTo(19.0f, 7.5f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, -0.2f, 1.5f) - horizontalLineToRelative(1.61f) - curveToRelative(0.88f, 0.0f, 1.59f, 0.71f, 1.59f, 1.59f) - verticalLineToRelative(4.91f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, -10.54f, 5.1f) - lineToRelative(-1.18f, 1.18f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(1.18f, -1.18f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, -0.95f, -1.66f) - arcTo(6.0f, 6.0f, 0.0f, false, true, 2.25f, 12.0f) - lineTo(2.25f, 7.51f) - curveToRelative(0.0f, -0.83f, 0.68f, -1.51f, 1.51f, -1.51f) - horizontalLineToRelative(4.45f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 5.29f, -4.0f) - horizontalLineToRelative(4.06f) - curveToRelative(0.8f, 0.0f, 1.44f, 0.65f, 1.44f, 1.44f) - lineTo(19.0f, 7.5f) - close() - moveTo(9.72f, 6.18f) - curveToRelative(1.7f, 0.43f, 3.1f, 1.58f, 3.88f, 3.1f) - arcTo(6.5f, 6.5f, 0.0f, false, true, 15.5f, 9.0f) - horizontalLineToRelative(1.7f) - curveToRelative(0.2f, -0.46f, 0.3f, -0.97f, 0.3f, -1.5f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -3.78f, 2.68f) - close() - moveTo(12.53f, 19.53f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 7.97f, -4.03f) - verticalLineToRelative(-4.91f) - arcToRelative(0.09f, 0.09f, 0.0f, false, false, -0.09f, -0.09f) - lineTo(15.5f, 10.5f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, -4.03f, 7.97f) - lineToRelative(4.25f, -4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-4.25f, 4.25f) - close() - moveTo(9.0f, 15.5f) - curveToRelative(0.0f, -0.6f, 0.08f, -1.17f, 0.23f, -1.71f) - lineToRelative(-2.76f, -2.76f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(2.32f, 2.32f) - curveToRelative(0.56f, -1.0f, 1.39f, -1.83f, 2.37f, -2.4f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 8.25f, 7.5f) - lineTo(3.76f, 7.5f) - lineToRelative(-0.01f, 0.01f) - lineTo(3.75f, 12.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 5.32f, 4.43f) - curveToRelative(-0.05f, -0.3f, -0.07f, -0.62f, -0.07f, -0.93f) - close() - } - } - return _leafThree!! - } - -private var _leafThree: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LeafTwo.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LeafTwo.kt deleted file mode 100644 index a65d1fc8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LeafTwo.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.LeafTwo: ImageVector - get() { - if (_leafTwo != null) { - return _leafTwo!! - } - _leafTwo = fluentIcon(name = "Regular.LeafTwo") { - fluentPath { - moveTo(2.0f, 4.7f) - lineTo(2.0f, 9.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, 6.3f, 6.0f) - curveToRelative(0.26f, 0.88f, 0.69f, 1.69f, 1.25f, 2.39f) - lineToRelative(-2.33f, 2.33f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineToRelative(2.33f, -2.33f) - arcTo(7.0f, 7.0f, 0.0f, false, false, 22.0f, 13.0f) - lineTo(22.0f, 7.75f) - curveTo(22.0f, 6.78f, 21.22f, 6.0f, 20.25f, 6.0f) - lineTo(15.0f, 6.0f) - curveToRelative(-0.58f, 0.0f, -1.15f, 0.07f, -1.69f, 0.2f) - arcTo(6.0f, 6.0f, 0.0f, false, false, 8.01f, 3.0f) - lineTo(3.7f, 3.0f) - curveTo(2.77f, 3.0f, 2.0f, 3.76f, 2.0f, 4.7f) - close() - moveTo(11.68f, 17.38f) - lineTo(15.78f, 13.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineToRelative(-4.1f, 4.1f) - arcTo(5.5f, 5.5f, 0.0f, false, true, 15.0f, 7.5f) - horizontalLineToRelative(5.25f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.1f, 0.25f, 0.25f) - lineTo(20.5f, 13.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, -8.82f, 4.38f) - close() - moveTo(8.0f, 4.5f) - curveToRelative(1.66f, 0.0f, 3.1f, 0.9f, 3.89f, 2.23f) - arcToRelative(7.03f, 7.03f, 0.0f, false, false, -2.71f, 2.39f) - lineToRelative(-1.9f, -1.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(2.24f, 2.24f) - arcToRelative(6.98f, 6.98f, 0.0f, false, false, -0.44f, 2.98f) - lineTo(8.0f, 13.5f) - arcTo(4.5f, 4.5f, 0.0f, false, true, 3.5f, 9.0f) - lineTo(3.5f, 4.7f) - curveToRelative(0.0f, -0.1f, 0.1f, -0.2f, 0.2f, -0.2f) - lineTo(8.0f, 4.5f) - close() - } - } - return _leafTwo!! - } - -private var _leafTwo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LearningApp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LearningApp.kt deleted file mode 100644 index 7f146fac..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LearningApp.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.LearningApp: ImageVector - get() { - if (_learningApp != null) { - return _learningApp!! - } - _learningApp = fluentIcon(name = "Regular.LearningApp") { - fluentPath { - moveTo(5.5f, 2.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 3.0f, 4.5f) - verticalLineToRelative(15.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 5.5f, 22.0f) - horizontalLineToRelative(7.31f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, -1.5f) - lineTo(5.5f, 20.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - horizontalLineToRelative(6.81f) - arcToRelative(6.48f, 6.48f, 0.0f, false, true, -0.3f, -1.5f) - lineTo(4.5f, 18.0f) - lineTo(4.5f, 4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - lineTo(17.0f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(6.52f) - curveToRelative(0.52f, 0.04f, 1.02f, 0.14f, 1.5f, 0.3f) - lineTo(19.5f, 4.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 17.0f, 2.0f) - lineTo(5.5f, 2.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(16.91f, 15.1f) - lineTo(19.72f, 16.94f) - arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.28f, 0.52f) - curveToRelative(0.0f, 0.1f, -0.02f, 0.2f, -0.07f, 0.3f) - arcToRelative(0.57f, 0.57f, 0.0f, false, true, -0.2f, 0.22f) - lineToRelative(-2.8f, 1.92f) - arcToRelative(0.64f, 0.64f, 0.0f, false, true, -0.17f, 0.07f) - arcToRelative(0.55f, 0.55f, 0.0f, false, true, -0.4f, -0.02f) - arcToRelative(0.69f, 0.69f, 0.0f, false, true, -0.18f, -0.13f) - arcToRelative(0.61f, 0.61f, 0.0f, false, true, -0.18f, -0.44f) - verticalLineToRelative(-3.76f) - arcToRelative(0.62f, 0.62f, 0.0f, false, true, 0.37f, -0.57f) - arcToRelative(0.55f, 0.55f, 0.0f, false, true, 0.55f, 0.05f) - close() - moveTo(6.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - lineTo(7.0f, 9.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(6.0f, 6.0f) - close() - moveTo(7.5f, 7.5f) - horizontalLineToRelative(7.0f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(-7.0f) - verticalLineToRelative(1.0f) - close() - } - } - return _learningApp!! - } - -private var _learningApp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Library.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Library.kt deleted file mode 100644 index 74109298..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Library.kt +++ /dev/null @@ -1,99 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Library: ImageVector - get() { - if (_library != null) { - return _library!! - } - _library = fluentIcon(name = "Regular.Library") { - fluentPath { - moveTo(4.0f, 3.0f) - horizontalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 1.85f) - lineTo(7.0f, 19.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.85f, 2.0f) - lineTo(4.0f, 21.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -1.85f) - lineTo(2.0f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.85f, -2.0f) - lineTo(5.0f, 3.0f) - lineTo(4.0f, 3.0f) - close() - moveTo(10.0f, 3.0f) - horizontalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 1.85f) - lineTo(13.0f, 19.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.85f, 2.0f) - lineTo(10.0f, 21.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -1.85f) - lineTo(8.0f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.85f, -2.0f) - lineTo(11.0f, 3.0f) - horizontalLineToRelative(-1.0f) - close() - moveTo(16.97f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.9f, 1.35f) - lineToRelative(0.04f, 0.15f) - lineToRelative(3.02f, 11.75f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.3f, 2.39f) - lineToRelative(-0.14f, 0.04f) - lineToRelative(-0.97f, 0.25f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.39f, -1.28f) - lineToRelative(-0.05f, -0.16f) - lineToRelative(-3.01f, -11.74f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.3f, -2.4f) - lineToRelative(0.14f, -0.04f) - lineToRelative(0.97f, -0.25f) - curveToRelative(0.16f, -0.04f, 0.33f, -0.06f, 0.5f, -0.06f) - close() - moveTo(5.0f, 4.5f) - lineTo(4.0f, 4.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.41f) - lineTo(3.5f, 19.0f) - curveToRelative(0.0f, 0.24f, 0.18f, 0.45f, 0.41f, 0.5f) - lineTo(5.0f, 19.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.41f) - lineTo(5.5f, 5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.5f) - lineTo(5.0f, 4.5f) - close() - moveTo(11.0f, 4.5f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.41f) - lineTo(9.5f, 19.0f) - curveToRelative(0.0f, 0.24f, 0.18f, 0.45f, 0.41f, 0.5f) - lineTo(11.0f, 19.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.41f) - lineTo(11.5f, 5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.5f) - lineTo(11.0f, 4.5f) - close() - moveTo(16.98f, 6.5f) - horizontalLineToRelative(-0.07f) - lineToRelative(-0.06f, 0.02f) - lineToRelative(-0.97f, 0.24f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.38f, 0.51f) - lineToRelative(0.02f, 0.1f) - lineToRelative(3.02f, 11.75f) - curveToRelative(0.06f, 0.26f, 0.3f, 0.37f, 0.48f, 0.37f) - horizontalLineToRelative(0.06f) - lineToRelative(0.06f, -0.01f) - lineToRelative(0.97f, -0.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.38f, -0.52f) - lineToRelative(-0.02f, -0.09f) - lineToRelative(-3.01f, -11.74f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.48f, -0.38f) - close() - } - } - return _library!! - } - -private var _library: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Lightbulb.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Lightbulb.kt deleted file mode 100644 index 4de5bf46..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Lightbulb.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Lightbulb: ImageVector - get() { - if (_lightbulb != null) { - return _lightbulb!! - } - _lightbulb = fluentIcon(name = "Regular.Lightbulb") { - fluentPath { - moveTo(12.0f, 2.0f) - curveToRelative(4.0f, 0.0f, 7.25f, 3.25f, 7.25f, 7.25f) - curveToRelative(0.0f, 2.1f, -0.9f, 4.02f, -2.66f, 5.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.18f, 0.27f) - lineToRelative(-0.03f, 0.1f) - lineToRelative(-1.13f, 4.9f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.02f, 1.73f) - lineToRelative(-0.17f, 0.01f) - horizontalLineToRelative(-2.12f) - curveToRelative(-0.99f, 0.0f, -1.85f, -0.65f, -2.14f, -1.58f) - lineToRelative(-0.05f, -0.16f) - lineToRelative(-1.13f, -4.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.2f, -0.37f) - curveToRelative(-1.68f, -1.64f, -2.58f, -3.46f, -2.66f, -5.44f) - lineToRelative(-0.01f, -0.3f) - verticalLineToRelative(-0.24f) - arcToRelative(7.25f, 7.25f, 0.0f, false, true, 7.25f, -7.0f) - close() - moveTo(14.12f, 18.5f) - lineTo(9.88f, 18.5f) - lineToRelative(0.33f, 1.42f) - curveToRelative(0.07f, 0.3f, 0.33f, 0.53f, 0.63f, 0.57f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(2.12f) - curveToRelative(0.31f, 0.0f, 0.59f, -0.2f, 0.7f, -0.48f) - lineToRelative(0.03f, -0.1f) - lineToRelative(0.33f, -1.42f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(5.75f, 5.75f, 0.0f, false, false, -5.75f, 5.53f) - verticalLineToRelative(0.5f) - curveToRelative(0.08f, 1.56f, 0.8f, 3.02f, 2.21f, 4.39f) - curveToRelative(0.27f, 0.26f, 0.46f, 0.58f, 0.57f, 0.93f) - lineToRelative(0.05f, 0.17f) - lineToRelative(0.46f, 1.98f) - horizontalLineToRelative(4.92f) - lineToRelative(0.46f, -1.98f) - curveToRelative(0.08f, -0.36f, 0.25f, -0.69f, 0.5f, -0.97f) - lineToRelative(0.12f, -0.13f) - curveToRelative(1.4f, -1.37f, 2.13f, -2.83f, 2.2f, -4.4f) - lineToRelative(0.01f, -0.27f) - verticalLineToRelative(-0.22f) - arcTo(5.75f, 5.75f, 0.0f, false, false, 12.0f, 3.5f) - close() - } - } - return _lightbulb!! - } - -private var _lightbulb: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LightbulbCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LightbulbCircle.kt deleted file mode 100644 index 65f9d9c6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LightbulbCircle.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.LightbulbCircle: ImageVector - get() { - if (_lightbulbCircle != null) { - return _lightbulbCircle!! - } - _lightbulbCircle = fluentIcon(name = "Regular.LightbulbCircle") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) - close() - moveTo(12.0f, 5.2f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 3.11f, 8.92f) - lineToRelative(0.03f, -0.03f) - lineToRelative(-0.76f, 3.37f) - arcToRelative(1.73f, 1.73f, 0.0f, false, true, -1.38f, 1.3f) - lineToRelative(-0.15f, 0.03f) - lineTo(11.3f, 18.79f) - curveToRelative(-0.74f, 0.0f, -1.39f, -0.45f, -1.64f, -1.18f) - lineToRelative(-0.05f, -0.16f) - lineToRelative(-0.76f, -3.36f) - lineToRelative(-0.16f, -0.13f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, -1.67f, -3.23f) - lineTo(7.0f, 10.47f) - lineTo(7.0f, 10.2f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 5.0f, -5.0f) - close() - moveTo(13.17f, 16.0f) - horizontalLineToRelative(-2.34f) - lineToRelative(0.24f, 1.08f) - lineToRelative(0.02f, 0.07f) - curveToRelative(0.03f, 0.09f, 0.12f, 0.15f, 0.22f, 0.15f) - lineTo(12.72f, 17.3f) - curveToRelative(0.1f, -0.01f, 0.17f, -0.09f, 0.2f, -0.18f) - lineToRelative(0.25f, -1.12f) - close() - moveTo(12.0f, 6.7f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -3.5f, 3.48f) - verticalLineToRelative(0.23f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 1.46f, 2.64f) - curveToRelative(0.15f, 0.1f, 0.26f, 0.26f, 0.3f, 0.44f) - lineToRelative(0.23f, 1.01f) - horizontalLineToRelative(3.02f) - lineToRelative(0.23f, -1.0f) - curveToRelative(0.03f, -0.14f, 0.1f, -0.27f, 0.2f, -0.37f) - lineToRelative(0.08f, -0.07f) - lineToRelative(0.17f, -0.13f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 12.0f, 6.7f) - close() - } - } - return _lightbulbCircle!! - } - -private var _lightbulbCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LightbulbFilament.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LightbulbFilament.kt deleted file mode 100644 index 262b38a1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LightbulbFilament.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.LightbulbFilament: ImageVector - get() { - if (_lightbulbFilament != null) { - return _lightbulbFilament!! - } - _lightbulbFilament = fluentIcon(name = "Regular.LightbulbFilament") { - fluentPath { - moveTo(11.25f, 6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.5f) - close() - moveTo(16.28f, 8.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-1.06f, 1.06f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(1.06f, -1.06f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - close() - moveTo(8.78f, 8.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(1.06f, 1.06f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineTo(8.78f, 8.22f) - close() - moveTo(12.0f, 2.0f) - curveToRelative(4.0f, 0.0f, 7.25f, 3.25f, 7.25f, 7.25f) - curveToRelative(0.0f, 2.1f, -0.9f, 4.02f, -2.66f, 5.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.18f, 0.27f) - lineToRelative(-0.03f, 0.1f) - lineToRelative(-1.13f, 4.9f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.02f, 1.73f) - lineToRelative(-0.17f, 0.01f) - horizontalLineToRelative(-2.12f) - curveToRelative(-0.99f, 0.0f, -1.85f, -0.65f, -2.14f, -1.58f) - lineToRelative(-0.05f, -0.16f) - lineToRelative(-1.13f, -4.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.2f, -0.37f) - curveToRelative(-1.68f, -1.64f, -2.58f, -3.46f, -2.66f, -5.44f) - lineToRelative(-0.01f, -0.3f) - verticalLineToRelative(-0.24f) - arcToRelative(7.25f, 7.25f, 0.0f, false, true, 7.25f, -7.0f) - close() - moveTo(14.12f, 18.5f) - lineTo(9.88f, 18.5f) - lineToRelative(0.33f, 1.42f) - curveToRelative(0.07f, 0.3f, 0.33f, 0.53f, 0.63f, 0.57f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(2.12f) - curveToRelative(0.31f, 0.0f, 0.59f, -0.2f, 0.7f, -0.48f) - lineToRelative(0.03f, -0.1f) - lineToRelative(0.33f, -1.42f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(5.75f, 5.75f, 0.0f, false, false, -5.75f, 5.53f) - verticalLineToRelative(0.5f) - curveToRelative(0.08f, 1.56f, 0.8f, 3.02f, 2.21f, 4.39f) - curveToRelative(0.27f, 0.26f, 0.46f, 0.58f, 0.57f, 0.93f) - lineToRelative(0.05f, 0.17f) - lineToRelative(0.46f, 1.98f) - horizontalLineToRelative(1.71f) - verticalLineToRelative(-6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(12.75f, 17.0f) - horizontalLineToRelative(1.71f) - lineToRelative(0.46f, -1.98f) - curveToRelative(0.08f, -0.36f, 0.25f, -0.69f, 0.5f, -0.97f) - lineToRelative(0.12f, -0.13f) - curveToRelative(1.4f, -1.37f, 2.13f, -2.83f, 2.2f, -4.4f) - lineToRelative(0.01f, -0.27f) - verticalLineToRelative(-0.22f) - arcTo(5.75f, 5.75f, 0.0f, false, false, 12.0f, 3.5f) - close() - } - } - return _lightbulbFilament!! - } - -private var _lightbulbFilament: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LightbulbPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LightbulbPerson.kt deleted file mode 100644 index 63d91571..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LightbulbPerson.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.LightbulbPerson: ImageVector - get() { - if (_lightbulbPerson != null) { - return _lightbulbPerson!! - } - _lightbulbPerson = fluentIcon(name = "Regular.LightbulbPerson") { - fluentPath { - moveTo(12.0f, 2.0f) - curveToRelative(4.0f, 0.0f, 7.25f, 3.25f, 7.25f, 7.25f) - curveToRelative(0.0f, 2.1f, -0.9f, 4.02f, -2.66f, 5.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.18f, 0.27f) - lineToRelative(-0.03f, 0.1f) - lineToRelative(-1.13f, 4.9f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.02f, 1.73f) - lineToRelative(-0.17f, 0.01f) - horizontalLineToRelative(-2.12f) - curveToRelative(-0.99f, 0.0f, -1.85f, -0.65f, -2.14f, -1.58f) - lineToRelative(-0.05f, -0.16f) - lineToRelative(-1.13f, -4.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.2f, -0.37f) - curveToRelative(-1.68f, -1.64f, -2.58f, -3.46f, -2.66f, -5.44f) - lineToRelative(-0.01f, -0.3f) - verticalLineToRelative(-0.24f) - arcToRelative(7.25f, 7.25f, 0.0f, false, true, 7.25f, -7.0f) - close() - moveTo(14.12f, 18.5f) - lineTo(9.88f, 18.5f) - lineToRelative(0.33f, 1.42f) - curveToRelative(0.07f, 0.3f, 0.33f, 0.53f, 0.63f, 0.57f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(2.12f) - curveToRelative(0.31f, 0.0f, 0.59f, -0.2f, 0.7f, -0.48f) - lineToRelative(0.03f, -0.1f) - lineToRelative(0.33f, -1.42f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(5.75f, 5.75f, 0.0f, false, false, -5.75f, 5.53f) - verticalLineToRelative(0.5f) - curveToRelative(0.08f, 1.56f, 0.8f, 3.02f, 2.21f, 4.39f) - curveToRelative(0.11f, 0.1f, 0.2f, 0.22f, 0.3f, 0.35f) - arcToRelative(7.22f, 7.22f, 0.0f, false, true, 6.49f, 0.0f) - lineToRelative(0.16f, -0.22f) - lineToRelative(0.13f, -0.13f) - curveToRelative(1.4f, -1.37f, 2.13f, -2.83f, 2.2f, -4.4f) - lineToRelative(0.01f, -0.27f) - verticalLineToRelative(-0.22f) - arcTo(5.75f, 5.75f, 0.0f, false, false, 12.0f, 3.5f) - close() - moveTo(14.76f, 15.7f) - arcToRelative(5.72f, 5.72f, 0.0f, false, false, -5.52f, 0.0f) - lineToRelative(0.3f, 1.3f) - horizontalLineToRelative(4.92f) - lineToRelative(0.3f, -1.3f) - close() - moveTo(12.0f, 7.5f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, 3.5f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, -3.5f) - close() - moveTo(8.75f, 9.25f) - arcToRelative(3.25f, 3.25f, 0.0f, true, true, 6.5f, 0.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.5f, 0.0f) - close() - } - } - return _lightbulbPerson!! - } - -private var _lightbulbPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Likert.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Likert.kt deleted file mode 100644 index f2a38b57..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Likert.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Likert: ImageVector - get() { - if (_likert != null) { - return _likert!! - } - _likert = fluentIcon(name = "Regular.Likert") { - fluentPath { - moveTo(10.75f, 8.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(13.5f, 8.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(16.5f, 8.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(19.5f, 8.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(9.75f, 16.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(12.5f, 16.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(15.5f, 16.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(18.5f, 16.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(5.0f, 4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(10.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) - horizontalLineToRelative(14.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) - lineTo(22.0f, 7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - lineTo(5.0f, 4.0f) - close() - moveTo(19.0f, 5.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(4.25f) - horizontalLineToRelative(-13.0f) - lineTo(7.5f, 5.5f) - lineTo(19.0f, 5.5f) - close() - moveTo(20.5f, 12.75f) - lineTo(20.5f, 17.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - lineTo(7.5f, 18.5f) - verticalLineToRelative(-5.75f) - horizontalLineToRelative(13.0f) - close() - moveTo(6.0f, 11.25f) - lineTo(3.5f, 11.25f) - lineTo(3.5f, 7.0f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(1.0f) - verticalLineToRelative(5.75f) - close() - moveTo(3.5f, 12.75f) - lineTo(6.0f, 12.75f) - verticalLineToRelative(5.75f) - lineTo(5.0f, 18.5f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 3.5f, 17.0f) - verticalLineToRelative(-4.25f) - close() - } - } - return _likert!! - } - -private var _likert: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Line.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Line.kt deleted file mode 100644 index 254d732b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Line.kt +++ /dev/null @@ -1,29 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Line: ImageVector - get() { - if (_line != null) { - return _line!! - } - _line = fluentIcon(name = "Regular.Line") { - fluentPath { - moveTo(21.78f, 2.22f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-18.5f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(18.5f, -18.5f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - } - } - return _line!! - } - -private var _line: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LineDashes.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LineDashes.kt deleted file mode 100644 index f51a6975..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LineDashes.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.LineDashes: ImageVector - get() { - if (_lineDashes != null) { - return _lineDashes!! - } - _lineDashes = fluentIcon(name = "Regular.LineDashes") { - fluentPath { - moveTo(21.79f, 2.22f) - curveToRelative(0.29f, 0.3f, 0.29f, 0.77f, 0.0f, 1.06f) - lineToRelative(-1.0f, 1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.07f, -1.06f) - lineToRelative(1.0f, -1.0f) - curveToRelative(0.3f, -0.29f, 0.77f, -0.29f, 1.07f, 0.0f) - close() - moveTo(17.78f, 6.22f) - curveToRelative(0.29f, 0.3f, 0.29f, 0.77f, 0.0f, 1.06f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(1.5f, -1.5f) - curveToRelative(0.29f, -0.29f, 0.76f, -0.29f, 1.06f, 0.0f) - close() - moveTo(13.28f, 10.72f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(1.5f, -1.5f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(8.78f, 16.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineToRelative(1.5f, -1.5f) - close() - moveTo(4.28f, 20.78f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-1.0f, 1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(1.0f, -1.0f) - close() - } - } - return _lineDashes!! - } - -private var _lineDashes: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LineStyle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LineStyle.kt deleted file mode 100644 index c6670c15..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LineStyle.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.LineStyle: ImageVector - get() { - if (_lineStyle != null) { - return _lineStyle!! - } - _lineStyle = fluentIcon(name = "Regular.LineStyle") { - fluentPath { - moveTo(2.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - close() - } - fluentPath { - moveTo(2.75f, 11.5f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineTo(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - horizontalLineToRelative(0.1f) - close() - } - fluentPath { - moveTo(2.0f, 18.25f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(17.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - horizontalLineTo(3.25f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - close() - } - fluentPath { - moveTo(9.75f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - fluentPath { - moveTo(17.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - close() - } - } - return _lineStyle!! - } - -private var _lineStyle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LineThickness.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LineThickness.kt deleted file mode 100644 index 5f98ba0b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LineThickness.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.LineThickness: ImageVector - get() { - if (_lineThickness != null) { - return _lineThickness!! - } - _lineThickness = fluentIcon(name = "Regular.LineThickness") { - fluentPath { - moveTo(2.75f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(2.75f, 3.5f) - close() - moveTo(2.0f, 10.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(17.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - lineTo(3.25f, 12.0f) - curveTo(2.56f, 12.0f, 2.0f, 11.44f, 2.0f, 10.75f) - close() - moveTo(2.0f, 18.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(16.5f) - arcToRelative(1.75f, 1.75f, 0.0f, true, true, 0.0f, 3.5f) - lineTo(3.75f, 20.0f) - curveTo(2.78f, 20.0f, 2.0f, 19.22f, 2.0f, 18.25f) - close() - } - } - return _lineThickness!! - } - -private var _lineThickness: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LinkDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LinkDismiss.kt deleted file mode 100644 index 788dd4bd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LinkDismiss.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.LinkDismiss: ImageVector - get() { - if (_linkDismiss != null) { - return _linkDismiss!! - } - _linkDismiss = fluentIcon(name = "Regular.LinkDismiss") { - fluentPath { - moveTo(9.25f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.11f, 1.5f) - lineTo(7.0f, 6.5f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -0.2f, 7.0f) - horizontalLineToRelative(2.45f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.11f, 1.5f) - lineTo(7.0f, 15.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, -0.25f, -10.0f) - horizontalLineToRelative(2.5f) - close() - moveTo(17.0f, 5.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 4.43f, 7.32f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.3f, -0.76f) - arcTo(3.5f, 3.5f, 0.0f, false, false, 17.2f, 6.5f) - lineTo(17.0f, 6.5f) - horizontalLineToRelative(-2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.11f, -1.5f) - lineTo(17.0f, 5.0f) - close() - moveTo(7.0f, 9.25f) - horizontalLineToRelative(10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(7.0f, 10.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(7.0f, 9.25f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-1.64f, -1.65f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.65f, 1.64f) - lineToRelative(-1.65f, -1.64f) - close() - } - } - return _linkDismiss!! - } - -private var _linkDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LinkEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LinkEdit.kt deleted file mode 100644 index b6d9e267..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LinkEdit.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.LinkEdit: ImageVector - get() { - if (_linkEdit != null) { - return _linkEdit!! - } - _linkEdit = fluentIcon(name = "Regular.LinkEdit") { - fluentPath { - moveTo(10.0f, 5.75f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 9.25f, 5.0f) - horizontalLineToRelative(-2.5f) - arcTo(5.0f, 5.0f, 0.0f, false, false, 7.0f, 15.0f) - horizontalLineToRelative(2.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.11f, -1.5f) - lineTo(6.8f, 13.5f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 0.2f, -7.0f) - horizontalLineToRelative(2.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.64f, -0.75f) - close() - moveTo(22.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, -5.0f, -5.0f) - horizontalLineToRelative(-2.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(2.46f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 3.3f, 3.6f) - curveToRelative(0.51f, 0.12f, 1.0f, 0.37f, 1.43f, 0.75f) - curveToRelative(0.04f, -0.27f, 0.07f, -0.56f, 0.07f, -0.85f) - close() - moveTo(17.0f, 9.25f) - lineTo(6.9f, 9.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(10.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(18.1f, 11.67f) - lineTo(12.2f, 17.57f) - curveToRelative(-0.35f, 0.34f, -0.6f, 0.78f, -0.71f, 1.25f) - lineToRelative(-0.46f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _linkEdit!! - } - -private var _linkEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LinkSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LinkSquare.kt deleted file mode 100644 index 1237673e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LinkSquare.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.LinkSquare: ImageVector - get() { - if (_linkSquare != null) { - return _linkSquare!! - } - _linkSquare = fluentIcon(name = "Regular.LinkSquare") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineTo(7.5f) - verticalLineTo(14.0f) - horizontalLineTo(6.25f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-6.0f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(6.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineTo(11.0f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(1.25f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-6.0f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-6.0f) - close() - moveTo(10.0f, 11.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineTo(13.0f) - verticalLineTo(8.5f) - horizontalLineToRelative(-1.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.25f, 3.25f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(6.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-6.0f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineTo(16.5f) - verticalLineTo(10.0f) - horizontalLineToRelative(1.25f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-6.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-6.0f) - close() - } - } - return _linkSquare!! - } - -private var _linkSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/List.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/List.kt deleted file mode 100644 index 856cc47d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/List.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.List: ImageVector - get() { - if (_list != null) { - return _list!! - } - _list = fluentIcon(name = "Regular.List") { - fluentPath { - moveTo(2.75f, 18.0f) - horizontalLineToRelative(12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(2.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(12.6f) - horizontalLineToRelative(-12.5f) - close() - moveTo(2.75f, 11.5f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(2.75f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(18.6f) - horizontalLineToRelative(-18.5f) - close() - moveTo(2.75f, 5.0f) - horizontalLineToRelative(15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(2.75f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - horizontalLineToRelative(15.6f) - horizontalLineToRelative(-15.5f) - close() - } - } - return _list!! - } - -private var _list: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Live.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Live.kt deleted file mode 100644 index 4335990a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Live.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Live: ImageVector - get() { - if (_live != null) { - return _live!! - } - _live = fluentIcon(name = "Regular.Live") { - fluentPath { - moveTo(5.99f, 4.93f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, 12.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -14.14f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(19.07f, 4.93f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, 14.14f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -12.02f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - close() - moveTo(8.82f, 7.76f) - curveToRelative(0.3f, 0.29f, 0.3f, 0.76f, 0.0f, 1.06f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 0.0f, 6.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 0.0f, -8.48f) - curveToRelative(0.29f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(16.24f, 7.76f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 0.0f, 8.48f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 0.0f, -6.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - close() - moveTo(12.0f, 10.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - } - } - return _live!! - } - -private var _live: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LiveOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LiveOff.kt deleted file mode 100644 index d4373716..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LiveOff.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.LiveOff: ImageVector - get() { - if (_liveOff != null) { - return _liveOff!! - } - _liveOff = fluentIcon(name = "Regular.LiveOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(2.2f, 2.2f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.5f, 13.6f) - arcTo(0.75f, 0.75f, 0.0f, true, false, 6.0f, 18.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, -0.5f, -11.47f) - lineToRelative(1.77f, 1.78f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, 0.5f, 7.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.49f, -5.79f) - lineToRelative(2.22f, 2.22f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.84f, 1.84f) - lineToRelative(8.33f, 8.33f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(19.38f, 16.21f) - lineTo(20.48f, 17.31f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, -1.4f, -12.38f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 18.0f, 5.99f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, 1.38f, 10.22f) - close() - moveTo(16.35f, 13.17f) - lineTo(17.53f, 14.34f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, -1.29f, -6.58f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 1.17f, 4.35f) - close() - } - } - return _liveOff!! - } - -private var _liveOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LocalLanguage.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LocalLanguage.kt deleted file mode 100644 index 2ad4cdef..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LocalLanguage.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.LocalLanguage: ImageVector - get() { - if (_localLanguage != null) { - return _localLanguage!! - } - _localLanguage = fluentIcon(name = "Regular.LocalLanguage") { - fluentPath { - moveToRelative(9.34f, 6.37f) - lineToRelative(0.05f, 0.1f) - lineToRelative(5.56f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.42f, 0.98f) - arcToRelative(0.73f, 0.73f, 0.0f, false, true, -0.9f, -0.33f) - lineToRelative(-0.05f, -0.1f) - lineToRelative(-1.43f, -3.73f) - horizontalLineToRelative(-7.1f) - lineToRelative(-0.08f, -0.01f) - lineToRelative(-1.55f, 3.76f) - arcToRelative(0.73f, 0.73f, 0.0f, false, true, -0.96f, 0.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.43f, -0.88f) - lineToRelative(0.03f, -0.1f) - lineToRelative(5.97f, -14.5f) - arcToRelative(0.73f, 0.73f, 0.0f, false, true, 1.31f, -0.09f) - close() - moveTo(18.74f, 2.0f) - curveToRelative(0.39f, 0.0f, 0.7f, 0.29f, 0.75f, 0.65f) - verticalLineTo(7.5f) - horizontalLineToRelative(1.76f) - curveToRelative(0.38f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.64f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineTo(19.5f) - verticalLineToRelative(7.25f) - curveToRelative(0.0f, 0.38f, -0.29f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.65f) - verticalLineTo(2.75f) - curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.75f, -0.75f) - close() - moveTo(8.82f, 8.75f) - lineToRelative(-3.16f, 7.54f) - horizontalLineToRelative(6.1f) - lineTo(8.82f, 8.75f) - close() - moveTo(10.75f, 2.0f) - horizontalLineToRelative(5.5f) - curveToRelative(0.38f, 0.0f, 0.69f, 0.29f, 0.74f, 0.65f) - verticalLineToRelative(3.1f) - curveTo(17.0f, 8.1f, 15.1f, 10.0f, 12.76f, 10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.74f, -2.58f) - verticalLineTo(3.5f) - horizontalLineToRelative(-4.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - horizontalLineToRelative(5.6f) - horizontalLineToRelative(-5.5f) - close() - } - } - return _localLanguage!! - } - -private var _localLanguage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Location.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Location.kt deleted file mode 100644 index 0668d175..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Location.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Location: ImageVector - get() { - if (_location != null) { - return _location!! - } - _location = fluentIcon(name = "Regular.Location") { - fluentPath { - moveTo(5.84f, 4.57f) - arcToRelative(8.7f, 8.7f, 0.0f, false, true, 12.32f, 12.31f) - lineToRelative(-1.19f, 1.18f) - lineToRelative(-3.4f, 3.3f) - curveToRelative(-0.88f, 0.85f, -2.26f, 0.85f, -3.13f, 0.0f) - lineToRelative(-3.5f, -3.39f) - lineToRelative(-1.1f, -1.09f) - arcToRelative(8.7f, 8.7f, 0.0f, false, true, 0.0f, -12.31f) - close() - moveTo(17.1f, 5.63f) - arcToRelative(7.2f, 7.2f, 0.0f, true, false, -10.2f, 10.2f) - lineToRelative(1.5f, 1.46f) - curveToRelative(0.8f, 0.8f, 1.84f, 1.8f, 3.08f, 3.0f) - curveToRelative(0.29f, 0.28f, 0.75f, 0.28f, 1.04f, 0.0f) - lineToRelative(3.4f, -3.3f) - lineToRelative(1.18f, -1.17f) - arcToRelative(7.2f, 7.2f, 0.0f, false, false, 0.0f, -10.2f) - close() - moveTo(12.0f, 8.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) - close() - moveTo(12.0f, 9.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - } - } - return _location!! - } - -private var _location: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LocationAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LocationAdd.kt deleted file mode 100644 index 58ccdc5c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LocationAdd.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.LocationAdd: ImageVector - get() { - if (_locationAdd != null) { - return _locationAdd!! - } - _locationAdd = fluentIcon(name = "Regular.LocationAdd") { - fluentPath { - moveTo(8.0f, 10.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - verticalLineTo(7.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineTo(10.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - verticalLineToRelative(2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineTo(11.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(5.84f, 4.57f) - arcToRelative(8.7f, 8.7f, 0.0f, false, true, 12.32f, 12.31f) - lineToRelative(-1.19f, 1.18f) - lineToRelative(-3.4f, 3.3f) - curveToRelative(-0.88f, 0.85f, -2.26f, 0.85f, -3.13f, 0.0f) - lineToRelative(-3.5f, -3.39f) - arcToRelative(175.0f, 175.0f, 0.0f, false, true, -1.1f, -1.09f) - arcToRelative(8.7f, 8.7f, 0.0f, false, true, 0.0f, -12.31f) - close() - moveTo(17.1f, 5.63f) - arcToRelative(7.2f, 7.2f, 0.0f, true, false, -10.2f, 10.2f) - lineToRelative(1.5f, 1.46f) - lineToRelative(3.08f, 3.0f) - curveToRelative(0.29f, 0.28f, 0.75f, 0.28f, 1.04f, 0.0f) - lineToRelative(3.4f, -3.3f) - lineToRelative(1.18f, -1.17f) - arcToRelative(7.2f, 7.2f, 0.0f, false, false, 0.0f, -10.2f) - close() - } - } - return _locationAdd!! - } - -private var _locationAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LocationArrow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LocationArrow.kt deleted file mode 100644 index 15660f4d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LocationArrow.kt +++ /dev/null @@ -1,39 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.LocationArrow: ImageVector - get() { - if (_locationArrow != null) { - return _locationArrow!! - } - _locationArrow = fluentIcon(name = "Regular.LocationArrow") { - fluentPath { - moveTo(19.96f, 2.1f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 1.94f, 1.94f) - lineToRelative(-6.54f, 17.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.85f, -0.16f) - lineToRelative(-1.85f, -7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.53f, -0.54f) - lineToRelative(-7.01f, -1.85f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -0.16f, -2.85f) - lineToRelative(17.0f, -6.54f) - close() - moveTo(20.5f, 3.5f) - lineTo(3.5f, 10.04f) - lineTo(10.51f, 11.89f) - curveToRelative(0.79f, 0.2f, 1.4f, 0.81f, 1.6f, 1.6f) - lineToRelative(1.85f, 7.01f) - lineToRelative(6.54f, -17.0f) - close() - } - } - return _locationArrow!! - } - -private var _locationArrow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LocationDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LocationDismiss.kt deleted file mode 100644 index 3c068233..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LocationDismiss.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.LocationDismiss: ImageVector - get() { - if (_locationDismiss != null) { - return _locationDismiss!! - } - _locationDismiss = fluentIcon(name = "Regular.LocationDismiss") { - fluentPath { - moveTo(5.84f, 4.56f) - arcToRelative(8.7f, 8.7f, 0.0f, false, true, 12.52f, 12.1f) - lineToRelative(-0.2f, 0.21f) - curveToRelative(-0.92f, 0.92f, -2.45f, 2.41f, -4.6f, 4.49f) - curveToRelative(-0.87f, 0.84f, -2.25f, 0.84f, -3.12f, 0.0f) - lineTo(6.59f, 17.6f) - arcToRelative(150.0f, 150.0f, 0.0f, false, true, -0.75f, -0.74f) - arcToRelative(8.7f, 8.7f, 0.0f, false, true, 0.0f, -12.31f) - close() - moveTo(17.1f, 5.62f) - arcToRelative(7.2f, 7.2f, 0.0f, true, false, -10.2f, 10.2f) - lineToRelative(1.7f, 1.66f) - lineToRelative(2.88f, 2.8f) - curveToRelative(0.29f, 0.28f, 0.75f, 0.28f, 1.04f, 0.0f) - lineToRelative(2.98f, -2.89f) - lineToRelative(1.6f, -1.58f) - arcToRelative(7.2f, 7.2f, 0.0f, false, false, 0.0f, -10.19f) - close() - moveTo(14.95f, 7.62f) - lineTo(15.03f, 7.69f) - curveToRelative(0.27f, 0.26f, 0.3f, 0.68f, 0.07f, 0.97f) - lineToRelative(-0.07f, 0.09f) - lineToRelative(-1.97f, 1.97f) - lineToRelative(1.97f, 1.97f) - curveToRelative(0.27f, 0.26f, 0.3f, 0.68f, 0.07f, 0.97f) - lineToRelative(-0.07f, 0.09f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineTo(12.0f, 11.78f) - lineToRelative(-1.97f, 1.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(1.97f, -1.97f) - lineToRelative(-1.97f, -1.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.08f) - lineToRelative(0.08f, 0.08f) - lineTo(12.0f, 9.66f) - lineToRelative(1.97f, -1.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.08f) - close() - } - } - return _locationDismiss!! - } - -private var _locationDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LocationLive.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LocationLive.kt deleted file mode 100644 index ec67631c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LocationLive.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.LocationLive: ImageVector - get() { - if (_locationLive != null) { - return _locationLive!! - } - _locationLive = fluentIcon(name = "Regular.LocationLive") { - fluentPath { - moveTo(9.8f, 2.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - arcToRelative(10.5f, 10.5f, 0.0f, false, true, 9.78f, 9.77f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, -0.1f) - arcTo(12.0f, 12.0f, 0.0f, false, false, 9.8f, 2.03f) - close() - moveTo(8.5f, 15.63f) - arcToRelative(1.13f, 1.13f, 0.0f, true, false, 0.0f, -2.26f) - arcToRelative(1.13f, 1.13f, 0.0f, false, false, 0.0f, 2.25f) - close() - moveTo(7.98f, 21.77f) - lineTo(7.58f, 21.39f) - arcToRelative(4307.72f, 4307.72f, 0.0f, false, true, -2.96f, -2.96f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 7.77f, 0.0f) - lineToRelative(-2.01f, 2.0f) - lineToRelative(-1.35f, 1.34f) - curveToRelative(-0.29f, 0.3f, -0.76f, 0.3f, -1.05f, 0.0f) - close() - moveTo(5.68f, 11.72f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 5.65f) - lineToRelative(2.04f, 2.03f) - lineToRelative(0.78f, 0.78f) - lineToRelative(0.82f, -0.8f) - lineToRelative(2.01f, -2.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, -5.65f, -5.66f) - close() - moveTo(9.82f, 5.5f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 9.68f, 7.0f) - arcTo(6.99f, 6.99f, 0.0f, false, true, 16.0f, 13.3f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, -0.13f) - arcTo(8.49f, 8.49f, 0.0f, false, false, 9.82f, 5.5f) - close() - } - } - return _locationLive!! - } - -private var _locationLive: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LocationOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LocationOff.kt deleted file mode 100644 index a2cf11e2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LocationOff.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.LocationOff: ImageVector - get() { - if (_locationOff != null) { - return _locationOff!! - } - _locationOff = fluentIcon(name = "Regular.LocationOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(2.57f, 2.57f) - arcToRelative(8.71f, 8.71f, 0.0f, false, false, 1.05f, 11.03f) - lineToRelative(1.1f, 1.1f) - lineToRelative(3.5f, 3.39f) - curveToRelative(0.87f, 0.84f, 2.25f, 0.84f, 3.12f, 0.0f) - arcToRelative(656.5f, 656.5f, 0.0f, false, false, 3.41f, -3.31f) - lineToRelative(0.01f, -0.02f) - lineToRelative(3.74f, 3.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(15.92f, 16.98f) - lineTo(12.52f, 20.29f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.04f, 0.0f) - lineToRelative(-3.09f, -3.0f) - lineToRelative(-1.49f, -1.47f) - arcToRelative(7.21f, 7.21f, 0.0f, false, true, -1.03f, -8.89f) - lineToRelative(3.24f, 3.24f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.72f, 3.72f) - lineToRelative(3.1f, 3.1f) - close() - moveTo(11.27f, 8.08f) - lineTo(14.91f, 11.73f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.64f, -3.64f) - close() - moveTo(17.1f, 5.63f) - arcToRelative(7.21f, 7.21f, 0.0f, false, true, 0.86f, 9.15f) - lineToRelative(1.08f, 1.08f) - arcTo(8.7f, 8.7f, 0.0f, false, false, 6.87f, 3.69f) - lineToRelative(1.08f, 1.07f) - arcToRelative(7.21f, 7.21f, 0.0f, false, true, 9.15f, 0.87f) - close() - } - } - return _locationOff!! - } - -private var _locationOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LockClosed.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LockClosed.kt deleted file mode 100644 index 61f22947..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LockClosed.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.LockClosed: ImageVector - get() { - if (_lockClosed != null) { - return _lockClosed!! - } - _lockClosed = fluentIcon(name = "Regular.LockClosed") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, 4.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(1.75f) - curveTo(18.99f, 8.0f, 20.0f, 9.0f, 20.0f, 10.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - verticalLineToRelative(-9.5f) - curveTo(4.0f, 9.01f, 5.0f, 8.0f, 6.25f, 8.0f) - lineTo(8.0f, 8.0f) - lineTo(8.0f, 6.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, -4.0f) - close() - moveTo(17.75f, 9.5f) - lineTo(6.25f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(12.0f, 13.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(12.0f, 3.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 9.5f, 6.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(5.0f) - lineTo(14.5f, 6.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 12.0f, 3.5f) - close() - } - } - return _lockClosed!! - } - -private var _lockClosed: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LockMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LockMultiple.kt deleted file mode 100644 index b7a6114c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LockMultiple.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.LockMultiple: ImageVector - get() { - if (_lockMultiple != null) { - return _lockMultiple!! - } - _lockMultiple = fluentIcon(name = "Regular.LockMultiple") { - fluentPath { - moveTo(10.75f, 13.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - moveTo(7.25f, 5.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 7.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(1.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-9.0f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-7.5f) - curveTo(4.0f, 7.51f, 5.0f, 6.5f, 6.25f, 6.5f) - horizontalLineToRelative(1.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(12.75f, 5.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, -4.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(5.5f, 8.75f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(9.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(9.75f, 21.0f) - curveToRelative(-0.98f, 0.0f, -1.81f, -0.63f, -2.12f, -1.5f) - horizontalLineToRelative(8.12f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, -2.75f) - verticalLineToRelative(-6.62f) - curveToRelative(0.87f, 0.3f, 1.5f, 1.14f, 1.5f, 2.12f) - verticalLineToRelative(4.5f) - curveTo(20.0f, 19.1f, 18.1f, 21.0f, 15.75f, 21.0f) - horizontalLineToRelative(-6.0f) - close() - } - } - return _lockMultiple!! - } - -private var _lockMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LockOpen.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LockOpen.kt deleted file mode 100644 index ac54b1b7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LockOpen.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.LockOpen: ImageVector - get() { - if (_lockOpen != null) { - return _lockOpen!! - } - _lockOpen = fluentIcon(name = "Regular.LockOpen") { - fluentPath { - moveTo(12.0f, 2.0f) - curveToRelative(1.88f, 0.0f, 3.33f, 1.21f, 3.93f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.43f, 0.48f) - curveTo(14.1f, 4.26f, 13.2f, 3.5f, 12.0f, 3.5f) - curveToRelative(-1.4f, 0.0f, -2.42f, 0.96f, -2.5f, 2.56f) - lineTo(9.5f, 8.0f) - horizontalLineToRelative(8.25f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.92f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.19f, -0.93f, 2.16f, -2.1f, 2.24f) - lineTo(6.25f, 21.99f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.09f) - lineTo(4.0f, 19.75f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.25f) - lineTo(8.0f, 8.0f) - lineTo(8.0f, 6.25f) - curveTo(8.0f, 3.71f, 9.7f, 2.0f, 12.0f, 2.0f) - close() - moveTo(17.75f, 9.5f) - lineTo(6.25f, 9.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.69f, 0.65f, 0.74f) - horizontalLineToRelative(11.6f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.64f) - lineToRelative(0.01f, -0.1f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - close() - moveTo(12.0f, 13.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - } - } - return _lockOpen!! - } - -private var _lockOpen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LockShield.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LockShield.kt deleted file mode 100644 index 40a5bda7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/LockShield.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.LockShield: ImageVector - get() { - if (_lockShield != null) { - return _lockShield!! - } - _lockShield = fluentIcon(name = "Regular.LockShield") { - fluentPath { - moveTo(10.0f, 2.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, 4.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(1.75f) - curveTo(16.99f, 8.0f, 18.0f, 9.0f, 18.0f, 10.25f) - lineTo(18.0f, 11.0f) - curveToRelative(-0.32f, 0.0f, -0.64f, 0.11f, -0.9f, 0.33f) - lineToRelative(-0.1f, 0.1f) - curveToRelative(-0.17f, 0.17f, -0.33f, 0.32f, -0.5f, 0.46f) - verticalLineToRelative(-1.64f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(4.25f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(9.89f) - curveToRelative(0.4f, 0.58f, 0.92f, 1.08f, 1.54f, 1.5f) - lineTo(4.25f, 22.0f) - curveTo(3.01f, 22.0f, 2.0f, 21.0f, 2.0f, 19.75f) - verticalLineToRelative(-9.5f) - curveTo(2.0f, 9.01f, 3.0f, 8.0f, 4.25f, 8.0f) - lineTo(6.0f, 8.0f) - lineTo(6.0f, 6.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, -4.0f) - close() - moveTo(18.28f, 12.12f) - curveToRelative(1.0f, 1.04f, 2.1f, 1.55f, 3.32f, 1.55f) - curveToRelative(0.2f, 0.0f, 0.35f, 0.14f, 0.4f, 0.33f) - verticalLineToRelative(2.58f) - curveToRelative(0.0f, 2.69f, -1.31f, 4.51f, -3.87f, 5.4f) - arcToRelative(0.39f, 0.39f, 0.0f, false, true, -0.26f, 0.0f) - curveToRelative(-2.47f, -0.86f, -3.78f, -2.6f, -3.87f, -5.13f) - verticalLineToRelative(-2.77f) - arcToRelative(0.4f, 0.4f, 0.0f, false, true, 0.4f, -0.41f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 3.32f, -1.55f) - arcToRelative(0.39f, 0.39f, 0.0f, false, true, 0.56f, 0.0f) - close() - moveTo(10.0f, 13.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(10.0f, 3.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 7.5f, 6.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(5.0f) - lineTo(12.5f, 6.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 10.0f, 3.5f) - close() - } - } - return _lockShield!! - } - -private var _lockShield: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Lottery.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Lottery.kt deleted file mode 100644 index 9269b28c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Lottery.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Lottery: ImageVector - get() { - if (_lottery != null) { - return _lottery!! - } - _lottery = fluentIcon(name = "Regular.Lottery") { - fluentPath { - moveTo(14.15f, 4.72f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.3f, 0.0f) - arcToRelative(5.96f, 5.96f, 0.0f, false, false, -1.41f, -0.55f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 7.12f, 0.0f) - curveToRelative(-0.5f, 0.13f, -0.97f, 0.31f, -1.41f, 0.55f) - close() - moveTo(9.38f, 7.44f) - arcToRelative(7.95f, 7.95f, 0.0f, false, true, 1.66f, -0.38f) - arcToRelative(5.0f, 5.0f, 0.0f, true, false, -6.98f, 6.98f) - curveToRelative(0.07f, -0.57f, 0.2f, -1.13f, 0.38f, -1.66f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 4.95f, -4.95f) - close() - moveTo(19.94f, 14.04f) - arcToRelative(5.0f, 5.0f, 0.0f, true, false, -6.98f, -6.98f) - curveToRelative(0.57f, 0.07f, 1.13f, 0.2f, 1.66f, 0.38f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 4.95f, 4.95f) - curveToRelative(0.18f, 0.52f, 0.3f, 1.08f, 0.37f, 1.65f) - close() - moveTo(9.5f, 13.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.5f, 1.31f) - lineToRelative(-0.02f, 0.02f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, -0.26f, 0.26f) - arcToRelative(9.55f, 9.55f, 0.0f, false, false, -2.25f, 3.86f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.44f, -0.4f) - curveToRelative(0.4f, -1.5f, 1.15f, -2.7f, 1.78f, -3.54f) - lineToRelative(0.01f, -0.01f) - horizontalLineToRelative(-2.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(12.0f, 22.0f) - arcToRelative(7.0f, 7.0f, 0.0f, true, false, 0.0f, -14.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, false, 0.0f, 14.0f) - close() - moveTo(12.0f, 20.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, 11.0f) - close() - } - } - return _lottery!! - } - -private var _lottery: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Luggage.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Luggage.kt deleted file mode 100644 index 6b2970b8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Luggage.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Luggage: ImageVector - get() { - if (_luggage != null) { - return _luggage!! - } - _luggage = fluentIcon(name = "Regular.Luggage") { - fluentPath { - moveTo(8.75f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(9.0f, 3.5f) - lineTo(9.0f, 5.0f) - horizontalLineToRelative(-0.75f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 5.0f, 8.25f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 1.35f, 0.83f, 2.51f, 2.0f, 3.0f) - verticalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(7.0f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.0f) - curveToRelative(1.17f, -0.49f, 2.0f, -1.65f, 2.0f, -3.0f) - verticalLineToRelative(-9.0f) - curveTo(19.0f, 6.45f, 17.54f, 5.0f, 15.75f, 5.0f) - lineTo(15.0f, 5.0f) - lineTo(15.0f, 3.5f) - horizontalLineToRelative(0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.5f) - close() - moveTo(13.5f, 3.5f) - lineTo(13.5f, 5.0f) - horizontalLineToRelative(-3.0f) - lineTo(10.5f, 3.5f) - horizontalLineToRelative(3.0f) - close() - moveTo(8.25f, 6.5f) - horizontalLineToRelative(7.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-7.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-9.0f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - close() - moveTo(8.0f, 9.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 9.75f) - close() - } - } - return _luggage!! - } - -private var _luggage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailAdd.kt deleted file mode 100644 index 75f0cfba..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailAdd.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailAdd: ImageVector - get() { - if (_mailAdd != null) { - return _mailAdd!! - } - _mailAdd = fluentIcon(name = "Regular.MailAdd") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 7.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 7.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 6.0f) - lineTo(17.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - lineTo(18.0f, 6.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 7.0f) - close() - moveTo(20.5f, 16.75f) - verticalLineToRelative(-4.48f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(5.56f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(5.25f, 20.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 16.75f) - verticalLineToRelative(-9.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(5.25f, 4.0f) - horizontalLineToRelative(6.25f) - curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) - lineTo(5.25f, 5.5f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - lineToRelative(-0.01f, 0.15f) - verticalLineToRelative(0.43f) - lineToRelative(8.5f, 4.47f) - lineToRelative(1.3f, -0.68f) - curveToRelative(0.44f, 0.37f, 0.93f, 0.68f, 1.46f, 0.93f) - lineToRelative(-2.41f, 1.26f) - curveToRelative(-0.19f, 0.1f, -0.4f, 0.12f, -0.6f, 0.05f) - lineToRelative(-0.1f, -0.05f) - lineTo(3.5f, 9.37f) - verticalLineToRelative(7.38f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(13.5f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - close() - } - } - return _mailAdd!! - } - -private var _mailAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailAlert.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailAlert.kt deleted file mode 100644 index df01507e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailAlert.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailAlert: ImageVector - get() { - if (_mailAlert != null) { - return _mailAlert!! - } - _mailAlert = fluentIcon(name = "Regular.MailAlert") { - fluentPath { - moveTo(17.5f, 1.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, 4.0f) - verticalLineToRelative(3.0f) - lineToRelative(-0.95f, 0.8f) - curveToRelative(-0.3f, 0.26f, -0.46f, 0.39f, -0.5f, 0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.24f, 0.65f) - curveToRelative(0.1f, 0.05f, 0.3f, 0.05f, 0.7f, 0.05f) - horizontalLineToRelative(9.02f) - curveToRelative(0.4f, 0.0f, 0.6f, 0.0f, 0.7f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.25f, -0.66f) - curveToRelative(-0.05f, -0.1f, -0.2f, -0.23f, -0.5f, -0.49f) - lineTo(21.5f, 8.0f) - lineTo(21.5f, 5.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, -4.0f) - close() - moveTo(19.0f, 11.0f) - curveToRelative(-0.22f, 0.58f, -0.8f, 1.0f, -1.5f, 1.0f) - curveToRelative(-0.69f, 0.0f, -1.28f, -0.42f, -1.5f, -1.0f) - horizontalLineToRelative(3.0f) - close() - moveTo(22.0f, 16.75f) - lineTo(22.0f, 11.0f) - horizontalLineToRelative(-1.5f) - verticalLineToRelative(5.89f) - curveToRelative(-0.08f, 0.9f, -0.83f, 1.61f, -1.75f, 1.61f) - lineTo(5.11f, 18.5f) - curveToRelative(-0.9f, -0.08f, -1.61f, -0.83f, -1.61f, -1.75f) - lineTo(3.5f, 9.37f) - lineToRelative(8.15f, 4.3f) - lineToRelative(0.1f, 0.04f) - curveToRelative(0.2f, 0.07f, 0.41f, 0.05f, 0.6f, -0.05f) - lineToRelative(3.1f, -1.63f) - curveToRelative(-0.16f, -0.2f, -0.3f, -0.43f, -0.39f, -0.68f) - lineToRelative(-0.13f, -0.35f) - horizontalLineToRelative(-0.74f) - lineTo(12.0f, 12.15f) - lineTo(3.5f, 7.68f) - lineTo(3.5f, 7.1f) - curveToRelative(0.08f, -0.9f, 0.83f, -1.61f, 1.75f, -1.61f) - horizontalLineToRelative(7.25f) - lineTo(12.5f, 5.0f) - curveToRelative(0.0f, -0.34f, 0.03f, -0.68f, 0.1f, -1.0f) - lineTo(5.07f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.26f) - verticalLineToRelative(9.68f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 5.26f, 20.0f) - horizontalLineToRelative(13.68f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 22.0f, 16.74f) - close() - } - } - return _mailAlert!! - } - -private var _mailAlert: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailAllRead.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailAllRead.kt deleted file mode 100644 index fbb0cf08..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailAllRead.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailAllRead: ImageVector - get() { - if (_mailAllRead != null) { - return _mailAllRead!! - } - _mailAllRead = fluentIcon(name = "Regular.MailAllRead") { - fluentPath { - moveTo(11.36f, 1.84f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.72f, 0.0f) - lineTo(2.83f, 6.1f) - arcTo(1.6f, 1.6f, 0.0f, false, false, 2.0f, 7.5f) - verticalLineToRelative(8.25f) - curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(20.0f, 7.5f) - arcToRelative(1.6f, 1.6f, 0.0f, false, false, -0.83f, -1.4f) - lineToRelative(-7.81f, -4.26f) - close() - moveTo(11.0f, 11.14f) - lineTo(3.86f, 7.26f) - lineTo(11.0f, 3.35f) - lineToRelative(7.14f, 3.9f) - lineToRelative(-7.14f, 3.9f) - close() - moveTo(11.36f, 12.66f) - lineTo(18.5f, 8.76f) - verticalLineToRelative(6.99f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(5.25f, 17.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(3.5f, 8.76f) - lineToRelative(7.14f, 3.9f) - curveToRelative(0.22f, 0.12f, 0.5f, 0.12f, 0.72f, 0.0f) - close() - moveTo(21.0f, 7.5f) - curveToRelative(0.9f, 0.58f, 1.5f, 1.59f, 1.5f, 2.74f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) - horizontalLineToRelative(-9.0f) - curveToRelative(-1.15f, 0.0f, -2.16f, -0.6f, -2.74f, -1.5f) - horizontalLineToRelative(11.74f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 21.0f, 16.25f) - lineTo(21.0f, 7.51f) - close() - } - } - return _mailAllRead!! - } - -private var _mailAllRead: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailArrowDoubleBack.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailArrowDoubleBack.kt deleted file mode 100644 index 0bf04f72..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailArrowDoubleBack.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailArrowDoubleBack: ImageVector - get() { - if (_mailArrowDoubleBack != null) { - return _mailArrowDoubleBack!! - } - _mailArrowDoubleBack = fluentIcon(name = "Regular.MailArrowDoubleBack") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) - close() - moveTo(15.85f, 4.85f) - lineTo(14.21f, 6.5f) - lineToRelative(1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.7f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -0.7f) - lineToRelative(2.0f, -2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, 0.7f) - close() - moveTo(18.85f, 4.15f) - curveToRelative(0.2f, 0.2f, 0.2f, 0.5f, 0.0f, 0.7f) - lineTo(17.71f, 6.0f) - lineTo(20.0f, 6.0f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - lineTo(21.5f, 8.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-0.5f) - arcTo(0.5f, 0.5f, 0.0f, false, false, 20.0f, 7.0f) - horizontalLineToRelative(-2.3f) - lineToRelative(1.15f, 1.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.7f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -0.7f) - lineToRelative(2.0f, -2.0f) - curveToRelative(0.2f, -0.2f, 0.5f, -0.2f, 0.7f, 0.0f) - close() - moveTo(20.5f, 16.75f) - verticalLineToRelative(-4.48f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(5.56f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(5.25f, 20.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 16.75f) - verticalLineToRelative(-9.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(5.25f, 4.0f) - horizontalLineToRelative(6.25f) - curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) - lineTo(5.25f, 5.5f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - lineToRelative(-0.01f, 0.15f) - verticalLineToRelative(0.43f) - lineToRelative(8.5f, 4.47f) - lineToRelative(1.3f, -0.68f) - curveToRelative(0.44f, 0.37f, 0.93f, 0.68f, 1.46f, 0.93f) - lineToRelative(-2.41f, 1.26f) - curveToRelative(-0.19f, 0.1f, -0.4f, 0.12f, -0.6f, 0.05f) - lineToRelative(-0.1f, -0.05f) - lineTo(3.5f, 9.37f) - verticalLineToRelative(7.38f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(13.5f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - close() - } - } - return _mailArrowDoubleBack!! - } - -private var _mailArrowDoubleBack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailArrowUp.kt deleted file mode 100644 index d655a195..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailArrowUp.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailArrowUp: ImageVector - get() { - if (_mailArrowUp != null) { - return _mailArrowUp!! - } - _mailArrowUp = fluentIcon(name = "Regular.MailArrowUp") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(17.0f, 4.7f) - verticalLineToRelative(4.8f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - lineTo(18.0f, 4.7f) - lineToRelative(1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineTo(17.0f, 4.71f) - close() - moveTo(20.5f, 16.75f) - verticalLineToRelative(-4.48f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(5.56f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(5.25f, 20.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 16.75f) - verticalLineToRelative(-9.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(5.25f, 4.0f) - horizontalLineToRelative(6.25f) - curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) - lineTo(5.25f, 5.5f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - lineToRelative(-0.01f, 0.15f) - verticalLineToRelative(0.43f) - lineToRelative(8.5f, 4.47f) - lineToRelative(1.3f, -0.68f) - curveToRelative(0.44f, 0.37f, 0.93f, 0.68f, 1.46f, 0.93f) - lineToRelative(-2.41f, 1.26f) - curveToRelative(-0.19f, 0.1f, -0.4f, 0.12f, -0.6f, 0.05f) - lineToRelative(-0.1f, -0.05f) - lineTo(3.5f, 9.37f) - verticalLineToRelative(7.38f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(13.5f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - close() - } - } - return _mailArrowUp!! - } - -private var _mailArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailAttach.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailAttach.kt deleted file mode 100644 index 66974d2b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailAttach.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailAttach: ImageVector - get() { - if (_mailAttach != null) { - return _mailAttach!! - } - _mailAttach = fluentIcon(name = "Regular.MailAttach") { - fluentPath { - moveTo(17.95f, 4.1f) - arcToRelative(2.08f, 2.08f, 0.0f, false, true, 2.94f, 2.94f) - arcToRelative(0.76f, 0.76f, 0.0f, false, false, -0.07f, 0.08f) - lineToRelative(-4.18f, 4.18f) - arcToRelative(0.67f, 0.67f, 0.0f, false, true, -0.95f, -0.95f) - lineToRelative(3.83f, -3.82f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-3.83f, 3.82f) - arcToRelative(2.17f, 2.17f, 0.0f, true, false, 3.07f, 3.07f) - lineToRelative(4.32f, -4.32f) - arcToRelative(3.58f, 3.58f, 0.0f, false, false, -5.13f, -5.0f) - lineToRelative(-3.67f, 3.68f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(3.67f, -3.68f) - close() - moveTo(13.08f, 11.58f) - lineTo(12.0f, 12.15f) - lineTo(3.5f, 7.68f) - lineTo(3.5f, 7.1f) - curveToRelative(0.08f, -0.9f, 0.83f, -1.6f, 1.75f, -1.6f) - horizontalLineToRelative(7.77f) - lineToRelative(1.5f, -1.5f) - lineTo(5.06f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(9.68f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 3.25f, 3.06f) - horizontalLineToRelative(13.68f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 3.06f, -3.25f) - lineTo(21.99f, 9.48f) - lineToRelative(-1.5f, 1.5f) - verticalLineToRelative(5.91f) - curveToRelative(-0.08f, 0.9f, -0.83f, 1.6f, -1.75f, 1.6f) - lineTo(5.11f, 18.49f) - curveToRelative(-0.9f, -0.08f, -1.61f, -0.83f, -1.61f, -1.75f) - lineTo(3.5f, 9.37f) - lineToRelative(8.15f, 4.29f) - lineToRelative(0.1f, 0.04f) - curveToRelative(0.19f, 0.07f, 0.4f, 0.06f, 0.6f, -0.04f) - lineToRelative(1.42f, -0.75f) - curveToRelative(-0.34f, -0.4f, -0.57f, -0.85f, -0.69f, -1.33f) - close() - } - } - return _mailAttach!! - } - -private var _mailAttach: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailCheckmark.kt deleted file mode 100644 index efae8139..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailCheckmark.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailCheckmark: ImageVector - get() { - if (_mailCheckmark != null) { - return _mailCheckmark!! - } - _mailCheckmark = fluentIcon(name = "Regular.MailCheckmark") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.85f, 4.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineTo(16.5f, 7.79f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - moveTo(20.5f, 16.75f) - verticalLineToRelative(-4.48f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(5.56f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(5.25f, 20.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 16.75f) - verticalLineToRelative(-9.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(5.25f, 4.0f) - horizontalLineToRelative(6.25f) - curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) - lineTo(5.25f, 5.5f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - lineToRelative(-0.01f, 0.15f) - verticalLineToRelative(0.43f) - lineToRelative(8.5f, 4.47f) - lineToRelative(1.3f, -0.68f) - curveToRelative(0.44f, 0.37f, 0.93f, 0.68f, 1.46f, 0.93f) - lineToRelative(-2.41f, 1.26f) - curveToRelative(-0.19f, 0.1f, -0.4f, 0.12f, -0.6f, 0.05f) - lineToRelative(-0.1f, -0.05f) - lineTo(3.5f, 9.37f) - verticalLineToRelative(7.38f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(13.5f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - close() - } - } - return _mailCheckmark!! - } - -private var _mailCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailClock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailClock.kt deleted file mode 100644 index 6ebcb634..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailClock.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailClock: ImageVector - get() { - if (_mailClock != null) { - return _mailClock!! - } - _mailClock = fluentIcon(name = "Regular.MailClock") { - fluentPath { - moveTo(17.5f, 1.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(19.5f, 6.5f) - horizontalLineToRelative(-2.0f) - lineTo(17.5f, 4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - close() - moveTo(20.5f, 16.75f) - verticalLineToRelative(-4.48f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(5.56f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(5.25f, 20.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 16.75f) - verticalLineToRelative(-9.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(5.25f, 4.0f) - horizontalLineToRelative(6.25f) - curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) - lineTo(5.25f, 5.5f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - lineToRelative(-0.01f, 0.15f) - verticalLineToRelative(0.43f) - lineToRelative(8.5f, 4.47f) - lineToRelative(1.3f, -0.68f) - curveToRelative(0.44f, 0.37f, 0.93f, 0.68f, 1.46f, 0.93f) - lineToRelative(-2.41f, 1.26f) - curveToRelative(-0.19f, 0.1f, -0.4f, 0.12f, -0.6f, 0.05f) - lineToRelative(-0.1f, -0.05f) - lineTo(3.5f, 9.37f) - verticalLineToRelative(7.38f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(13.5f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - close() - } - } - return _mailClock!! - } - -private var _mailClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailCopy.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailCopy.kt deleted file mode 100644 index e04bd481..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailCopy.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailCopy: ImageVector - get() { - if (_mailCopy != null) { - return _mailCopy!! - } - _mailCopy = fluentIcon(name = "Regular.MailCopy") { - fluentPath { - moveTo(3.0f, 7.51f) - curveToRelative(-0.9f, 0.58f, -1.5f, 1.59f, -1.5f, 2.74f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 2.9f, 2.35f, 5.25f, 5.25f, 5.25f) - horizontalLineToRelative(9.0f) - curveToRelative(1.15f, 0.0f, 2.16f, -0.6f, 2.74f, -1.5f) - lineTo(6.75f, 20.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 3.0f, 16.25f) - lineTo(3.0f, 7.51f) - close() - moveTo(18.75f, 4.0f) - lineTo(7.25f, 4.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.24f, 3.07f) - lineTo(4.0f, 7.25f) - verticalLineToRelative(8.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 3.07f, 3.24f) - lineToRelative(0.18f, 0.01f) - horizontalLineToRelative(11.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 3.24f, -3.07f) - lineToRelative(0.01f, -0.18f) - verticalLineToRelative(-8.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.07f, -3.24f) - lineTo(18.75f, 4.0f) - close() - moveTo(5.5f, 8.9f) - lineToRelative(7.15f, 3.76f) - curveToRelative(0.19f, 0.1f, 0.4f, 0.12f, 0.6f, 0.05f) - lineToRelative(0.1f, -0.05f) - lineTo(20.5f, 8.9f) - verticalLineToRelative(6.85f) - curveToRelative(0.0f, 0.92f, -0.7f, 1.67f, -1.6f, 1.74f) - lineToRelative(-0.15f, 0.01f) - lineTo(7.25f, 17.5f) - curveToRelative(-0.92f, 0.0f, -1.67f, -0.7f, -1.74f, -1.6f) - lineToRelative(-0.01f, -0.15f) - lineTo(5.5f, 8.9f) - close() - moveTo(7.25f, 5.5f) - horizontalLineToRelative(11.5f) - curveToRelative(0.92f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) - verticalLineToRelative(0.1f) - lineTo(13.0f, 11.16f) - lineTo(5.5f, 7.2f) - curveToRelative(0.02f, -0.94f, 0.8f, -1.7f, 1.75f, -1.7f) - close() - } - } - return _mailCopy!! - } - -private var _mailCopy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailDismiss.kt deleted file mode 100644 index 3c146870..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailDismiss.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailDismiss: ImageVector - get() { - if (_mailDismiss != null) { - return _mailDismiss!! - } - _mailDismiss = fluentIcon(name = "Regular.MailDismiss") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 4.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineTo(18.21f, 6.5f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineTo(17.5f, 5.79f) - lineToRelative(-1.65f, -1.64f) - close() - moveTo(20.5f, 16.75f) - verticalLineToRelative(-4.48f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(5.56f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(5.25f, 20.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 16.75f) - verticalLineToRelative(-9.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(5.25f, 4.0f) - horizontalLineToRelative(6.25f) - curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) - lineTo(5.25f, 5.5f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - lineToRelative(-0.01f, 0.15f) - verticalLineToRelative(0.43f) - lineToRelative(8.5f, 4.47f) - lineToRelative(1.3f, -0.68f) - curveToRelative(0.44f, 0.37f, 0.93f, 0.68f, 1.46f, 0.93f) - lineToRelative(-2.41f, 1.26f) - curveToRelative(-0.19f, 0.1f, -0.4f, 0.12f, -0.6f, 0.05f) - lineToRelative(-0.1f, -0.05f) - lineTo(3.5f, 9.37f) - verticalLineToRelative(7.38f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(13.5f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - close() - } - } - return _mailDismiss!! - } - -private var _mailDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailEdit.kt deleted file mode 100644 index f7bc342f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailEdit.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailEdit: ImageVector - get() { - if (_mailEdit != null) { - return _mailEdit!! - } - _mailEdit = fluentIcon(name = "Regular.MailEdit") { - fluentPath { - moveTo(18.75f, 3.0f) - lineTo(5.07f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 6.26f) - verticalLineToRelative(9.68f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 5.26f, 19.0f) - horizontalLineToRelative(6.47f) - curveToRelative(0.18f, -0.42f, 0.44f, -0.8f, 0.77f, -1.14f) - lineToRelative(0.37f, -0.36f) - lineTo(5.1f, 17.5f) - curveToRelative(-0.9f, -0.08f, -1.61f, -0.83f, -1.61f, -1.75f) - lineTo(3.49f, 8.37f) - lineToRelative(8.15f, 4.3f) - lineToRelative(0.1f, 0.04f) - curveToRelative(0.2f, 0.07f, 0.41f, 0.05f, 0.6f, -0.05f) - lineToRelative(8.15f, -4.29f) - verticalLineToRelative(2.64f) - arcToRelative(3.3f, 3.3f, 0.0f, false, true, 1.5f, 0.25f) - lineTo(21.99f, 6.07f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 18.74f, 3.0f) - close() - moveTo(5.25f, 4.5f) - horizontalLineToRelative(13.64f) - curveToRelative(0.9f, 0.08f, 1.61f, 0.83f, 1.61f, 1.75f) - verticalLineToRelative(0.43f) - lineTo(12.0f, 11.15f) - lineTo(3.5f, 6.68f) - lineTo(3.5f, 6.1f) - curveToRelative(0.08f, -0.9f, 0.83f, -1.61f, 1.75f, -1.61f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _mailEdit!! - } - -private var _mailEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailError.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailError.kt deleted file mode 100644 index ddd8ef6c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailError.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailError: ImageVector - get() { - if (_mailError != null) { - return _mailError!! - } - _mailError = fluentIcon(name = "Regular.MailError") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(17.5f, 3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(17.5f, 10.13f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.24f) - close() - moveTo(20.5f, 16.75f) - verticalLineToRelative(-4.48f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(5.56f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(5.25f, 20.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 16.75f) - verticalLineToRelative(-9.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(5.25f, 4.0f) - horizontalLineToRelative(6.25f) - curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) - lineTo(5.25f, 5.5f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - lineToRelative(-0.01f, 0.15f) - verticalLineToRelative(0.43f) - lineToRelative(8.5f, 4.47f) - lineToRelative(1.3f, -0.68f) - curveToRelative(0.44f, 0.37f, 0.93f, 0.68f, 1.46f, 0.93f) - lineToRelative(-2.41f, 1.26f) - curveToRelative(-0.19f, 0.1f, -0.4f, 0.12f, -0.6f, 0.05f) - lineToRelative(-0.1f, -0.05f) - lineTo(3.5f, 9.37f) - verticalLineToRelative(7.38f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(13.5f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - close() - } - } - return _mailError!! - } - -private var _mailError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailInbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailInbox.kt deleted file mode 100644 index 762113d5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailInbox.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailInbox: ImageVector - get() { - if (_mailInbox != null) { - return _mailInbox!! - } - _mailInbox = fluentIcon(name = "Regular.MailInbox") { - fluentPath { - moveTo(6.25f, 3.0f) - horizontalLineToRelative(11.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.24f, 3.07f) - lineToRelative(0.01f, 0.18f) - verticalLineToRelative(11.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(6.25f, 21.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(3.0f, 17.75f) - lineTo(3.0f, 6.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(6.25f, 3.0f) - horizontalLineToRelative(11.5f) - horizontalLineToRelative(-11.5f) - close() - moveTo(4.5f, 14.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(11.5f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - lineTo(19.5f, 14.5f) - horizontalLineToRelative(-3.82f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.48f, 3.0f) - lineTo(12.0f, 17.5f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.63f, -2.81f) - lineToRelative(-0.04f, -0.19f) - lineTo(4.5f, 14.5f) - verticalLineToRelative(3.25f) - verticalLineToRelative(-3.25f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - lineToRelative(-0.01f, 0.15f) - lineTo(4.5f, 13.0f) - lineTo(9.0f, 13.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.15f) - verticalLineToRelative(-0.15f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineTo(15.0f, 13.0f) - horizontalLineToRelative(4.5f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.92f, -0.7f, -1.67f, -1.6f, -1.74f) - lineToRelative(-0.15f, -0.01f) - close() - } - } - return _mailInbox!! - } - -private var _mailInbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailInboxAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailInboxAdd.kt deleted file mode 100644 index 6caa68c7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailInboxAdd.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailInboxAdd: ImageVector - get() { - if (_mailInboxAdd != null) { - return _mailInboxAdd!! - } - _mailInboxAdd = fluentIcon(name = "Regular.MailInboxAdd") { - fluentPath { - moveTo(22.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(17.0f, 7.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(16.0f, 7.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(16.0f, 6.0f) - lineTo(16.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - lineTo(17.0f, 6.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - lineTo(17.0f, 7.0f) - close() - moveTo(19.5f, 14.0f) - verticalLineToRelative(-1.73f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(7.56f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(6.25f, 22.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(3.0f, 18.75f) - lineTo(3.0f, 7.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(6.25f, 4.0f) - horizontalLineToRelative(4.25f) - curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) - lineTo(6.25f, 5.5f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - lineToRelative(-0.01f, 0.15f) - lineTo(4.5f, 14.0f) - lineTo(9.0f, 14.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.15f) - verticalLineToRelative(-0.15f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineTo(15.0f, 14.0f) - horizontalLineToRelative(4.5f) - close() - moveTo(4.5f, 15.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(11.5f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - lineTo(19.5f, 15.5f) - horizontalLineToRelative(-3.82f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.48f, 3.0f) - lineTo(12.0f, 18.5f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.63f, -2.81f) - lineToRelative(-0.04f, -0.19f) - lineTo(4.5f, 15.5f) - close() - } - } - return _mailInboxAdd!! - } - -private var _mailInboxAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailInboxAll.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailInboxAll.kt deleted file mode 100644 index c928eb4e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailInboxAll.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailInboxAll: ImageVector - get() { - if (_mailInboxAll != null) { - return _mailInboxAll!! - } - _mailInboxAll = fluentIcon(name = "Regular.MailInboxAll") { - fluentPath { - moveTo(6.25f, 3.0f) - horizontalLineToRelative(11.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.24f, 3.07f) - lineToRelative(0.01f, 0.18f) - verticalLineToRelative(11.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(6.25f, 21.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(3.0f, 17.75f) - lineTo(3.0f, 6.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(6.25f, 3.0f) - close() - moveTo(8.33f, 14.5f) - lineTo(4.5f, 14.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(11.5f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - lineTo(19.5f, 14.5f) - horizontalLineToRelative(-3.82f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.48f, 3.0f) - lineTo(12.0f, 17.5f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.63f, -2.81f) - lineToRelative(-0.04f, -0.19f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - lineToRelative(-0.01f, 0.15f) - lineTo(4.5f, 13.0f) - lineTo(9.0f, 13.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.15f) - verticalLineToRelative(-0.15f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineTo(15.0f, 13.0f) - horizontalLineToRelative(4.5f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.92f, -0.7f, -1.67f, -1.6f, -1.74f) - lineToRelative(-0.15f, -0.01f) - close() - moveTo(6.75f, 9.5f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(10.6f) - horizontalLineToRelative(-10.5f) - close() - moveTo(6.75f, 6.5f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(10.6f) - horizontalLineToRelative(-10.5f) - close() - } - } - return _mailInboxAll!! - } - -private var _mailInboxAll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailInboxArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailInboxArrowRight.kt deleted file mode 100644 index 521993eb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailInboxArrowRight.kt +++ /dev/null @@ -1,98 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailInboxArrowRight: ImageVector - get() { - if (_mailInboxArrowRight != null) { - return _mailInboxArrowRight!! - } - _mailInboxArrowRight = fluentIcon(name = "Regular.MailInboxArrowRight") { - fluentPath { - moveTo(10.5f, 4.0f) - curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) - lineTo(6.25f, 5.5f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - lineToRelative(-0.01f, 0.15f) - lineTo(4.5f, 14.0f) - lineTo(9.0f, 14.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.15f) - verticalLineToRelative(-0.15f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineTo(15.0f, 14.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(-1.73f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(7.56f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(6.25f, 22.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(3.0f, 18.75f) - lineTo(3.0f, 7.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(6.25f, 4.0f) - horizontalLineToRelative(4.25f) - close() - moveTo(19.5f, 15.5f) - horizontalLineToRelative(-3.82f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.48f, 3.0f) - lineTo(12.0f, 18.5f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.67f, -3.0f) - lineTo(4.5f, 15.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(11.5f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - lineTo(19.5f, 15.5f) - close() - moveTo(16.5f, 1.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(16.72f, 3.59f) - lineTo(16.65f, 3.65f) - lineTo(16.59f, 3.72f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) - lineToRelative(0.06f, 0.07f) - lineTo(18.29f, 6.0f) - horizontalLineToRelative(-5.38f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - lineToRelative(-0.01f, 0.09f) - verticalLineToRelative(0.09f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - lineTo(13.0f, 7.0f) - horizontalLineToRelative(5.3f) - lineToRelative(-1.65f, 1.65f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(0.06f, -0.07f) - lineToRelative(2.54f, -2.54f) - lineToRelative(0.04f, -0.05f) - lineToRelative(0.03f, -0.07f) - lineToRelative(0.02f, -0.06f) - lineToRelative(0.02f, -0.08f) - verticalLineToRelative(-0.1f) - lineToRelative(-0.02f, -0.08f) - lineToRelative(-0.03f, -0.08f) - lineToRelative(-0.04f, -0.07f) - lineToRelative(-0.04f, -0.06f) - lineToRelative(-2.52f, -2.51f) - lineToRelative(-0.07f, -0.06f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.56f, 0.0f) - close() - } - } - return _mailInboxArrowRight!! - } - -private var _mailInboxArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailInboxArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailInboxArrowUp.kt deleted file mode 100644 index 5fca69fc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailInboxArrowUp.kt +++ /dev/null @@ -1,98 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailInboxArrowUp: ImageVector - get() { - if (_mailInboxArrowUp != null) { - return _mailInboxArrowUp!! - } - _mailInboxArrowUp = fluentIcon(name = "Regular.MailInboxArrowUp") { - fluentPath { - moveTo(10.5f, 4.0f) - curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) - lineTo(6.25f, 5.5f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - lineToRelative(-0.01f, 0.15f) - lineTo(4.5f, 14.0f) - lineTo(9.0f, 14.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineTo(15.0f, 14.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(-1.73f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(7.56f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(6.25f, 22.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(3.0f, 18.75f) - lineTo(3.0f, 7.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(6.25f, 4.0f) - horizontalLineToRelative(4.25f) - close() - moveTo(8.33f, 15.5f) - lineTo(4.5f, 15.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(11.5f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - lineTo(19.5f, 15.5f) - horizontalLineToRelative(-3.82f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.48f, 3.0f) - lineTo(12.0f, 18.5f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.63f, -2.81f) - lineToRelative(-0.04f, -0.19f) - close() - moveTo(16.5f, 1.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(16.63f, 3.02f) - lineTo(16.54f, 3.0f) - horizontalLineToRelative(-0.11f) - lineToRelative(-0.06f, 0.02f) - lineToRelative(-0.08f, 0.03f) - lineToRelative(-0.07f, 0.04f) - lineToRelative(-0.06f, 0.04f) - lineToRelative(-2.51f, 2.52f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) - lineToRelative(0.06f, 0.07f) - lineToRelative(0.07f, 0.06f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) - lineToRelative(0.07f, -0.06f) - lineTo(16.0f, 4.71f) - verticalLineToRelative(5.38f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - lineToRelative(0.09f, 0.01f) - horizontalLineToRelative(0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - lineTo(17.0f, 10.0f) - lineTo(17.0f, 4.7f) - lineToRelative(1.65f, 1.65f) - lineToRelative(0.07f, 0.06f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-0.07f, -0.06f) - lineToRelative(-2.54f, -2.55f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.07f, -0.03f) - lineToRelative(-0.06f, -0.02f) - close() - } - } - return _mailInboxArrowUp!! - } - -private var _mailInboxArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailInboxCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailInboxCheckmark.kt deleted file mode 100644 index 381f54b9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailInboxCheckmark.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailInboxCheckmark: ImageVector - get() { - if (_mailInboxCheckmark != null) { - return _mailInboxCheckmark!! - } - _mailInboxCheckmark = fluentIcon(name = "Regular.MailInboxCheckmark") { - fluentPath { - moveTo(22.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(19.85f, 4.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineTo(15.5f, 7.79f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - moveTo(19.5f, 12.27f) - lineTo(19.5f, 14.0f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - verticalLineToRelative(0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, -0.15f) - verticalLineToRelative(-0.1f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 9.0f, 14.0f) - lineTo(4.5f, 14.0f) - lineTo(4.5f, 7.11f) - curveToRelative(0.08f, -0.9f, 0.83f, -1.61f, 1.75f, -1.61f) - horizontalLineToRelative(3.83f) - curveToRelative(0.08f, -0.52f, 0.22f, -1.03f, 0.42f, -1.5f) - lineTo(6.07f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 7.26f) - verticalLineToRelative(11.68f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 6.26f, 22.0f) - horizontalLineToRelative(11.68f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 21.0f, 18.74f) - verticalLineToRelative(-7.56f) - curveToRelative(-0.44f, 0.43f, -0.95f, 0.8f, -1.5f, 1.08f) - close() - moveTo(4.5f, 18.75f) - lineTo(4.5f, 15.5f) - horizontalLineToRelative(3.83f) - lineToRelative(0.04f, 0.19f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 12.0f, 18.5f) - horizontalLineToRelative(0.2f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 3.48f, -3.0f) - horizontalLineToRelative(3.82f) - verticalLineToRelative(3.39f) - curveToRelative(-0.08f, 0.9f, -0.83f, 1.61f, -1.75f, 1.61f) - lineTo(6.11f, 20.5f) - curveToRelative(-0.9f, -0.08f, -1.61f, -0.83f, -1.61f, -1.75f) - close() - } - } - return _mailInboxCheckmark!! - } - -private var _mailInboxCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailInboxDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailInboxDismiss.kt deleted file mode 100644 index aabac72a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailInboxDismiss.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailInboxDismiss: ImageVector - get() { - if (_mailInboxDismiss != null) { - return _mailInboxDismiss!! - } - _mailInboxDismiss = fluentIcon(name = "Regular.MailInboxDismiss") { - fluentPath { - moveTo(22.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.85f, 4.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineTo(17.21f, 6.5f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineTo(16.5f, 5.79f) - lineToRelative(-1.65f, -1.64f) - close() - moveTo(19.5f, 14.0f) - verticalLineToRelative(-1.73f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(7.56f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(6.25f, 22.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(3.0f, 18.75f) - lineTo(3.0f, 7.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(6.25f, 4.0f) - horizontalLineToRelative(4.25f) - curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) - lineTo(6.25f, 5.5f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - lineToRelative(-0.01f, 0.15f) - lineTo(4.5f, 14.0f) - lineTo(9.0f, 14.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.15f) - verticalLineToRelative(-0.15f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineTo(15.0f, 14.0f) - horizontalLineToRelative(4.5f) - close() - moveTo(4.5f, 15.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(11.5f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - lineTo(19.5f, 15.5f) - horizontalLineToRelative(-3.82f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.48f, 3.0f) - lineTo(12.0f, 18.5f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.63f, -2.81f) - lineToRelative(-0.04f, -0.19f) - lineTo(4.5f, 15.5f) - close() - } - } - return _mailInboxDismiss!! - } - -private var _mailInboxDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailLink.kt deleted file mode 100644 index 2eb2ac30..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailLink.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailLink: ImageVector - get() { - if (_mailLink != null) { - return _mailLink!! - } - _mailLink = fluentIcon(name = "Regular.MailLink") { - fluentPath { - moveTo(23.0f, 6.75f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 19.25f, 3.0f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - verticalLineToRelative(-0.01f) - horizontalLineToRelative(0.2f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 6.74f) - close() - moveTo(16.5f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-0.2f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(20.0f, 6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(5.25f, 4.0f) - horizontalLineToRelative(6.63f) - curveToRelative(-0.32f, 0.45f, -0.57f, 0.95f, -0.71f, 1.5f) - lineTo(5.25f, 5.5f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - lineToRelative(-0.01f, 0.15f) - verticalLineToRelative(0.43f) - lineToRelative(8.5f, 4.47f) - lineToRelative(1.93f, -1.01f) - curveToRelative(0.56f, 0.23f, 1.17f, 0.36f, 1.82f, 0.36f) - horizontalLineToRelative(0.7f) - lineToRelative(-4.1f, 2.16f) - curveToRelative(-0.19f, 0.1f, -0.4f, 0.12f, -0.6f, 0.05f) - lineToRelative(-0.1f, -0.05f) - lineTo(3.5f, 9.37f) - verticalLineToRelative(7.38f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(13.5f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - verticalLineToRelative(-5.42f) - curveToRelative(0.55f, -0.14f, 1.05f, -0.39f, 1.5f, -0.7f) - verticalLineToRelative(6.12f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(5.25f, 20.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 16.75f) - verticalLineToRelative(-9.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(5.25f, 4.0f) - close() - } - } - return _mailLink!! - } - -private var _mailLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailList.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailList.kt deleted file mode 100644 index d0d21fa1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailList.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailList: ImageVector - get() { - if (_mailList != null) { - return _mailList!! - } - _mailList = fluentIcon(name = "Regular.MailList") { - fluentPath { - moveTo(12.53f, 4.0f) - lineTo(5.07f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.26f) - verticalLineToRelative(9.68f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 5.26f, 20.0f) - horizontalLineToRelative(13.68f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 22.0f, 16.74f) - lineTo(22.0f, 9.33f) - curveToRelative(-0.23f, 0.11f, -0.48f, 0.17f, -0.75f, 0.17f) - horizontalLineToRelative(-0.75f) - verticalLineToRelative(7.39f) - curveToRelative(-0.08f, 0.9f, -0.83f, 1.61f, -1.75f, 1.61f) - lineTo(5.11f, 18.5f) - curveToRelative(-0.9f, -0.08f, -1.61f, -0.83f, -1.61f, -1.75f) - lineTo(3.5f, 9.37f) - lineToRelative(8.15f, 4.3f) - lineToRelative(0.1f, 0.04f) - curveToRelative(0.2f, 0.07f, 0.41f, 0.05f, 0.6f, -0.05f) - lineToRelative(7.9f, -4.16f) - horizontalLineToRelative(-3.21f) - lineTo(12.0f, 12.15f) - lineTo(3.5f, 7.68f) - lineTo(3.5f, 7.1f) - curveToRelative(0.08f, -0.9f, 0.83f, -1.61f, 1.75f, -1.61f) - horizontalLineToRelative(6.77f) - arcToRelative(1.76f, 1.76f, 0.0f, false, true, 0.5f, -1.5f) - close() - moveTo(21.25f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.75f) - horizontalLineToRelative(7.5f) - close() - moveTo(21.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - horizontalLineToRelative(-7.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, -1.5f) - horizontalLineToRelative(7.5f) - close() - moveTo(13.0f, 7.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _mailList!! - } - -private var _mailList: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailMultiple.kt deleted file mode 100644 index bbf2575a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailMultiple.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailMultiple: ImageVector - get() { - if (_mailMultiple != null) { - return _mailMultiple!! - } - _mailMultiple = fluentIcon(name = "Regular.MailMultiple") { - fluentPath { - moveTo(21.0f, 7.51f) - curveToRelative(0.9f, 0.58f, 1.5f, 1.59f, 1.5f, 2.74f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) - horizontalLineToRelative(-9.0f) - curveToRelative(-1.15f, 0.0f, -2.16f, -0.6f, -2.74f, -1.5f) - horizontalLineToRelative(11.74f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 21.0f, 16.25f) - lineTo(21.0f, 7.51f) - close() - moveTo(5.25f, 4.0f) - horizontalLineToRelative(11.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.24f, 3.07f) - lineToRelative(0.01f, 0.18f) - verticalLineToRelative(8.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(5.25f, 19.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 15.75f) - verticalLineToRelative(-8.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(5.25f, 4.0f) - close() - moveTo(18.5f, 8.9f) - lineToRelative(-7.15f, 3.76f) - curveToRelative(-0.19f, 0.1f, -0.4f, 0.12f, -0.6f, 0.05f) - lineToRelative(-0.1f, -0.05f) - lineTo(3.5f, 8.9f) - verticalLineToRelative(6.85f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(11.5f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - lineTo(18.5f, 8.9f) - close() - moveTo(16.75f, 5.5f) - lineTo(5.25f, 5.5f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - verticalLineToRelative(0.1f) - lineTo(11.0f, 11.16f) - lineToRelative(7.5f, -3.95f) - curveToRelative(-0.02f, -0.94f, -0.8f, -1.7f, -1.75f, -1.7f) - close() - } - } - return _mailMultiple!! - } - -private var _mailMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailOff.kt deleted file mode 100644 index d0ef2683..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailOff.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailOff: ImageVector - get() { - if (_mailOff != null) { - return _mailOff!! - } - _mailOff = fluentIcon(name = "Regular.MailOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.25f, 1.25f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(9.68f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 5.26f, 20.0f) - horizontalLineToRelative(13.68f) - lineToRelative(1.79f, 1.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(17.44f, 18.5f) - lineTo(5.1f, 18.5f) - curveToRelative(-0.9f, -0.08f, -1.61f, -0.83f, -1.61f, -1.75f) - lineTo(3.49f, 9.37f) - lineToRelative(8.15f, 4.3f) - lineToRelative(0.1f, 0.04f) - curveToRelative(0.2f, 0.07f, 0.41f, 0.05f, 0.6f, -0.05f) - lineToRelative(0.17f, -0.08f) - lineToRelative(4.92f, 4.92f) - close() - moveTo(10.08f, 11.14f) - lineTo(3.5f, 7.68f) - lineTo(3.5f, 7.1f) - curveToRelative(0.06f, -0.67f, 0.49f, -1.23f, 1.07f, -1.47f) - lineToRelative(5.51f, 5.5f) - close() - moveTo(20.5f, 7.68f) - lineTo(14.18f, 11.0f) - lineToRelative(1.11f, 1.11f) - lineToRelative(5.21f, -2.74f) - verticalLineToRelative(7.52f) - lineToRelative(-0.07f, 0.36f) - lineToRelative(1.13f, 1.13f) - curveToRelative(0.28f, -0.48f, 0.44f, -1.04f, 0.44f, -1.63f) - lineTo(22.0f, 7.07f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 18.74f, 4.0f) - lineTo(7.18f, 4.0f) - lineToRelative(1.5f, 1.5f) - lineTo(18.9f, 5.5f) - curveToRelative(0.9f, 0.08f, 1.61f, 0.83f, 1.61f, 1.75f) - verticalLineToRelative(0.43f) - close() - } - } - return _mailOff!! - } - -private var _mailOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailOpenPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailOpenPerson.kt deleted file mode 100644 index 5145ac1e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailOpenPerson.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailOpenPerson: ImageVector - get() { - if (_mailOpenPerson != null) { - return _mailOpenPerson!! - } - _mailOpenPerson = fluentIcon(name = "Regular.MailOpenPerson") { - fluentPath { - moveTo(12.0f, 3.62f) - lineTo(3.9f, 8.43f) - lineToRelative(8.1f, 4.22f) - lineToRelative(8.23f, -4.22f) - lineTo(12.0f, 3.62f) - close() - moveTo(11.83f, 14.23f) - arcToRelative(0.83f, 0.83f, 0.0f, false, true, -0.19f, -0.07f) - lineTo(3.5f, 9.91f) - verticalLineToRelative(6.84f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(8.06f) - curveToRelative(-0.2f, 0.38f, -0.31f, 0.81f, -0.31f, 1.27f) - verticalLineToRelative(0.1f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 0.13f) - lineTo(5.25f, 20.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 16.75f) - lineTo(2.0f, 9.1f) - curveToRelative(0.0f, -0.73f, 0.36f, -1.42f, 0.96f, -1.84f) - lineToRelative(0.14f, -0.1f) - lineToRelative(8.5f, -5.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.78f, 0.0f) - lineToRelative(9.0f, 5.26f) - curveToRelative(0.85f, 0.5f, 0.82f, 1.74f, -0.06f, 2.19f) - lineTo(18.52f, 11.0f) - horizontalLineToRelative(-0.02f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -2.85f, 1.47f) - lineToRelative(-3.3f, 1.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.52f, 0.06f) - close() - moveTo(21.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(23.0f, 19.88f) - curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) - reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.88f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.99f, 0.8f, -1.78f, 1.77f, -1.78f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _mailOpenPerson!! - } - -private var _mailOpenPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailProhibited.kt deleted file mode 100644 index d0fe2c4d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailProhibited.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailProhibited: ImageVector - get() { - if (_mailProhibited != null) { - return _mailProhibited!! - } - _mailProhibited = fluentIcon(name = "Regular.MailProhibited") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(13.5f, 6.5f) - curveToRelative(0.0f, 0.83f, 0.26f, 1.6f, 0.7f, 2.25f) - lineToRelative(5.55f, -5.56f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) - close() - moveTo(17.5f, 10.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) - lineToRelative(-5.55f, 5.56f) - curveToRelative(0.64f, 0.43f, 1.42f, 0.69f, 2.25f, 0.69f) - close() - moveTo(20.5f, 16.75f) - verticalLineToRelative(-4.48f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(5.56f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(5.25f, 20.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 16.75f) - verticalLineToRelative(-9.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(5.25f, 4.0f) - horizontalLineToRelative(6.25f) - curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) - lineTo(5.25f, 5.5f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - lineToRelative(-0.01f, 0.15f) - verticalLineToRelative(0.43f) - lineToRelative(8.5f, 4.47f) - lineToRelative(1.3f, -0.68f) - curveToRelative(0.44f, 0.37f, 0.93f, 0.68f, 1.46f, 0.93f) - lineToRelative(-2.41f, 1.26f) - curveToRelative(-0.19f, 0.1f, -0.4f, 0.12f, -0.6f, 0.05f) - lineToRelative(-0.1f, -0.05f) - lineTo(3.5f, 9.37f) - verticalLineToRelative(7.38f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(13.5f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - close() - } - } - return _mailProhibited!! - } - -private var _mailProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailRead.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailRead.kt deleted file mode 100644 index c4a5591b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailRead.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailRead: ImageVector - get() { - if (_mailRead != null) { - return _mailRead!! - } - _mailRead = fluentIcon(name = "Regular.MailRead") { - fluentPath { - moveToRelative(3.1f, 8.17f) - lineToRelative(8.52f, -5.06f) - curveToRelative(0.2f, -0.13f, 0.44f, -0.14f, 0.66f, -0.06f) - lineToRelative(0.1f, 0.06f) - lineToRelative(8.52f, 5.06f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 22.0f, 9.93f) - verticalLineToRelative(7.82f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(5.25f, 21.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 17.75f) - lineTo(2.0f, 10.1f) - curveToRelative(0.0f, -0.73f, 0.36f, -1.42f, 0.96f, -1.84f) - lineToRelative(0.14f, -0.1f) - lineToRelative(8.52f, -5.05f) - lineTo(3.1f, 8.17f) - close() - moveTo(20.5f, 10.91f) - lineTo(12.35f, 15.16f) - curveToRelative(-0.18f, 0.1f, -0.4f, 0.12f, -0.59f, 0.05f) - lineToRelative(-0.1f, -0.05f) - lineToRelative(-8.16f, -4.25f) - verticalLineToRelative(6.84f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(13.5f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - verticalLineToRelative(-6.84f) - close() - moveTo(12.0f, 4.62f) - lineTo(3.9f, 9.43f) - lineToRelative(8.1f, 4.22f) - lineToRelative(8.09f, -4.22f) - lineTo(12.0f, 4.63f) - close() - } - } - return _mailRead!! - } - -private var _mailRead: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailReadMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailReadMultiple.kt deleted file mode 100644 index e122bb72..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailReadMultiple.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailReadMultiple: ImageVector - get() { - if (_mailReadMultiple != null) { - return _mailReadMultiple!! - } - _mailReadMultiple = fluentIcon(name = "Regular.MailReadMultiple") { - fluentPath { - moveTo(11.36f, 1.84f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.72f, 0.0f) - lineTo(2.83f, 6.1f) - arcTo(1.6f, 1.6f, 0.0f, false, false, 2.0f, 7.5f) - verticalLineToRelative(8.25f) - curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(20.0f, 7.5f) - arcToRelative(1.6f, 1.6f, 0.0f, false, false, -0.83f, -1.4f) - lineToRelative(-7.81f, -4.26f) - close() - moveTo(11.0f, 11.14f) - lineTo(3.86f, 7.26f) - lineTo(11.0f, 3.35f) - lineToRelative(7.14f, 3.9f) - lineToRelative(-7.14f, 3.9f) - close() - moveTo(11.36f, 12.66f) - lineTo(18.5f, 8.76f) - verticalLineToRelative(6.99f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(5.25f, 17.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(3.5f, 8.76f) - lineToRelative(7.14f, 3.9f) - curveToRelative(0.22f, 0.12f, 0.5f, 0.12f, 0.72f, 0.0f) - close() - moveTo(21.0f, 7.5f) - curveToRelative(0.9f, 0.58f, 1.5f, 1.59f, 1.5f, 2.74f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) - horizontalLineToRelative(-9.0f) - curveToRelative(-1.15f, 0.0f, -2.16f, -0.6f, -2.74f, -1.5f) - horizontalLineToRelative(11.74f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 21.0f, 16.25f) - lineTo(21.0f, 7.51f) - close() - } - } - return _mailReadMultiple!! - } - -private var _mailReadMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailTemplate.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailTemplate.kt deleted file mode 100644 index 5a6eae10..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailTemplate.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailTemplate: ImageVector - get() { - if (_mailTemplate != null) { - return _mailTemplate!! - } - _mailTemplate = fluentIcon(name = "Regular.MailTemplate") { - fluentPath { - moveTo(2.0f, 5.25f) - curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) - horizontalLineToRelative(10.5f) - curveTo(17.55f, 2.0f, 19.0f, 3.46f, 19.0f, 5.25f) - verticalLineToRelative(4.76f) - lineToRelative(-0.25f, -0.01f) - lineTo(17.5f, 10.0f) - lineTo(17.5f, 5.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(5.25f, 3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(6.0f, 18.5f) - verticalLineToRelative(0.25f) - curveToRelative(0.0f, 0.43f, 0.07f, 0.85f, 0.19f, 1.25f) - horizontalLineToRelative(-0.94f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - lineTo(2.0f, 5.25f) - close() - moveTo(6.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-7.5f) - close() - moveTo(8.0f, 8.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 8.25f) - close() - moveTo(7.0f, 14.25f) - curveTo(7.0f, 12.45f, 8.46f, 11.0f, 10.25f, 11.0f) - horizontalLineToRelative(8.5f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-8.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 7.0f, 18.75f) - verticalLineToRelative(-4.5f) - close() - moveTo(10.25f, 12.5f) - curveToRelative(-0.5f, 0.0f, -0.96f, 0.21f, -1.28f, 0.55f) - lineToRelative(5.53f, 3.56f) - lineToRelative(5.53f, -3.56f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.28f, -0.55f) - horizontalLineToRelative(-8.5f) - close() - moveTo(8.5f, 18.75f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(8.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-4.22f) - lineToRelative(-5.6f, 3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.8f, 0.0f) - lineToRelative(-5.6f, -3.6f) - verticalLineToRelative(4.22f) - close() - } - } - return _mailTemplate!! - } - -private var _mailTemplate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailUnread.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailUnread.kt deleted file mode 100644 index f62d528f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailUnread.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailUnread: ImageVector - get() { - if (_mailUnread != null) { - return _mailUnread!! - } - _mailUnread = fluentIcon(name = "Regular.MailUnread") { - fluentPath { - moveTo(22.0f, 7.83f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, -2.0f, -5.66f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 2.0f, 5.66f) - close() - moveTo(5.25f, 4.0f) - horizontalLineToRelative(11.36f) - arcToRelative(4.51f, 4.51f, 0.0f, false, false, -0.08f, 1.5f) - horizontalLineTo(5.25f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - lineToRelative(-0.01f, 0.15f) - verticalLineToRelative(0.43f) - lineToRelative(8.5f, 4.47f) - lineToRelative(6.5f, -3.41f) - curveToRelative(0.54f, 0.36f, 1.17f, 0.61f, 1.85f, 0.71f) - lineToRelative(-8.0f, 4.21f) - curveToRelative(-0.19f, 0.1f, -0.4f, 0.12f, -0.6f, 0.05f) - lineToRelative(-0.1f, -0.05f) - lineTo(3.5f, 9.37f) - verticalLineToRelative(7.38f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(13.5f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - verticalLineTo(9.47f) - arcTo(4.55f, 4.55f, 0.0f, false, false, 22.0f, 9.4f) - verticalLineToRelative(7.36f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - horizontalLineTo(5.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 16.75f) - verticalLineToRelative(-9.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(5.25f, 4.0f) - close() - } - } - return _mailUnread!! - } - -private var _mailUnread: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailWarning.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailWarning.kt deleted file mode 100644 index e85f1198..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MailWarning.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MailWarning: ImageVector - get() { - if (_mailWarning != null) { - return _mailWarning!! - } - _mailWarning = fluentIcon(name = "Regular.MailWarning") { - fluentPath { - moveToRelative(16.16f, 1.83f) - lineToRelative(-4.0f, 8.0f) - arcTo(1.5f, 1.5f, 0.0f, false, false, 13.51f, 12.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.33f, -2.17f) - lineToRelative(-4.0f, -8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.68f, 0.0f) - close() - moveTo(18.0f, 4.5f) - verticalLineToRelative(3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - close() - moveTo(17.5f, 10.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - close() - moveTo(5.25f, 4.0f) - horizontalLineToRelative(8.7f) - lineToRelative(-0.74f, 1.5f) - lineTo(5.25f, 5.5f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - lineToRelative(-0.01f, 0.15f) - verticalLineToRelative(0.43f) - lineToRelative(7.9f, 4.15f) - curveToRelative(0.43f, 0.69f, 1.19f, 1.17f, 2.1f, 1.17f) - horizontalLineToRelative(0.11f) - lineToRelative(-1.26f, 0.66f) - curveToRelative(-0.19f, 0.1f, -0.4f, 0.12f, -0.6f, 0.05f) - lineToRelative(-0.1f, -0.05f) - lineTo(3.5f, 9.37f) - verticalLineToRelative(7.38f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(13.5f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - lineTo(20.5f, 13.0f) - horizontalLineToRelative(1.0f) - curveToRelative(0.17f, 0.0f, 0.34f, -0.02f, 0.5f, -0.05f) - verticalLineToRelative(3.8f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(5.25f, 20.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 16.75f) - verticalLineToRelative(-9.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(5.25f, 4.0f) - close() - } - } - return _mailWarning!! - } - -private var _mailWarning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Map.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Map.kt deleted file mode 100644 index a84692ed..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Map.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Map: ImageVector - get() { - if (_map != null) { - return _map!! - } - _map = fluentIcon(name = "Regular.Map") { - fluentPath { - moveTo(9.2f, 4.0f) - horizontalLineToRelative(0.16f) - lineToRelative(0.02f, 0.01f) - curveToRelative(0.09f, 0.01f, 0.17f, 0.04f, 0.25f, 0.1f) - lineToRelative(0.05f, 0.03f) - lineToRelative(5.07f, 3.56f) - lineToRelative(5.07f, -3.56f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.17f, 0.5f) - lineToRelative(0.01f, 0.11f) - lineTo(21.0f, 15.4f) - curveToRelative(0.0f, 0.2f, -0.09f, 0.4f, -0.24f, 0.54f) - lineToRelative(-0.08f, 0.07f) - lineToRelative(-5.5f, 3.87f) - arcToRelative(0.74f, 0.74f, 0.0f, false, true, -0.83f, 0.02f) - lineToRelative(-5.1f, -3.6f) - lineToRelative(-5.07f, 3.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.17f, -0.5f) - lineTo(3.0f, 19.24f) - lineTo(3.0f, 8.62f) - curveToRelative(0.0f, -0.21f, 0.09f, -0.41f, 0.24f, -0.55f) - lineTo(3.32f, 8.0f) - lineToRelative(5.5f, -3.86f) - arcToRelative(0.76f, 0.76f, 0.0f, false, true, 0.2f, -0.1f) - lineTo(9.14f, 4.0f) - lineTo(9.2f, 4.0f) - close() - moveTo(19.5f, 6.2f) - lineTo(15.5f, 9.0f) - verticalLineToRelative(8.8f) - lineToRelative(4.0f, -2.8f) - lineTo(19.5f, 6.2f) - close() - moveTo(8.5f, 6.2f) - lineTo(4.5f, 9.0f) - verticalLineToRelative(8.8f) - lineToRelative(4.0f, -2.8f) - lineTo(8.5f, 6.2f) - close() - moveTo(10.0f, 6.2f) - lineTo(10.0f, 15.0f) - lineToRelative(4.0f, 2.8f) - lineTo(14.0f, 9.0f) - lineToRelative(-4.0f, -2.8f) - close() - } - } - return _map!! - } - -private var _map: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MapDrive.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MapDrive.kt deleted file mode 100644 index e36bcb3f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MapDrive.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MapDrive: ImageVector - get() { - if (_mapDrive != null) { - return _mapDrive!! - } - _mapDrive = fluentIcon(name = "Regular.MapDrive") { - fluentPath { - moveTo(18.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(4.25f, 3.0f) - curveTo(3.01f, 3.0f, 2.0f, 4.0f, 2.0f, 5.25f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(8.5f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineTo(16.0f) - horizontalLineTo(7.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.75f) - horizontalLineTo(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineTo(7.0f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(8.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) - verticalLineTo(19.0f) - horizontalLineToRelative(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(17.0f) - verticalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineTo(14.5f) - verticalLineToRelative(-2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(8.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-5.0f) - curveTo(22.0f, 4.01f, 21.0f, 3.0f, 19.75f, 3.0f) - horizontalLineTo(4.25f) - close() - moveTo(3.5f, 5.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(15.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineTo(9.5f) - horizontalLineToRelative(-17.0f) - verticalLineTo(5.25f) - close() - moveTo(11.0f, 14.5f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(1.75f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-7.0f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(1.75f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) - verticalLineTo(14.5f) - close() - } - } - return _mapDrive!! - } - -private var _mapDrive: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MatchAppLayout.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MatchAppLayout.kt deleted file mode 100644 index 4af1fcc3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MatchAppLayout.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MatchAppLayout: ImageVector - get() { - if (_matchAppLayout != null) { - return _matchAppLayout!! - } - _matchAppLayout = fluentIcon(name = "Regular.MatchAppLayout") { - fluentPath { - moveTo(9.28f, 8.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(3.75f, 16.0f) - curveTo(2.78f, 16.0f, 2.0f, 15.22f, 2.0f, 14.25f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) - lineTo(3.76f, 8.0f) - horizontalLineToRelative(5.53f) - close() - moveTo(20.25f, 8.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-5.53f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(5.53f) - close() - moveTo(9.28f, 9.5f) - lineTo(3.7f, 9.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.19f, 0.25f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(5.53f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-4.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(20.25f, 9.5f) - horizontalLineToRelative(-5.53f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(5.53f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-4.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - } - } - return _matchAppLayout!! - } - -private var _matchAppLayout: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MathFormatLinear.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MathFormatLinear.kt deleted file mode 100644 index 6c32d2c2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MathFormatLinear.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MathFormatLinear: ImageVector - get() { - if (_mathFormatLinear != null) { - return _mathFormatLinear!! - } - _mathFormatLinear = fluentIcon(name = "Regular.MathFormatLinear") { - fluentPath { - moveTo(10.99f, 4.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.0f) - lineToRelative(-1.75f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.98f, 1.14f) - lineToRelative(1.26f, -1.08f) - lineToRelative(1.26f, 1.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, -1.14f) - lineToRelative(-1.75f, -1.5f) - close() - moveTo(13.56f, 9.54f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.15f, 0.22f) - lineToRelative(1.2f, 2.27f) - lineToRelative(-3.69f, 3.69f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(3.36f, -3.36f) - lineToRelative(1.32f, 2.52f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 3.46f, 0.66f) - lineToRelative(0.32f, -0.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.98f, -1.14f) - lineToRelative(-0.32f, 0.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.15f, -0.22f) - lineToRelative(-1.54f, -2.93f) - lineToRelative(3.03f, -3.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineToRelative(-2.7f, 2.7f) - lineToRelative(-0.98f, -1.86f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.46f, -0.66f) - lineToRelative(-0.32f, 0.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.98f, 1.14f) - lineToRelative(0.32f, -0.28f) - close() - moveTo(3.59f, 13.47f) - curveToRelative(0.92f, -0.01f, 1.89f, -0.07f, 2.76f, -0.25f) - arcToRelative(4.15f, 4.15f, 0.0f, false, false, 2.71f, -1.63f) - curveToRelative(0.57f, -0.86f, 0.58f, -1.88f, 0.06f, -2.64f) - curveToRelative(-0.53f, -0.77f, -1.51f, -1.12f, -2.6f, -0.87f) - curveToRelative(-0.46f, 0.1f, -1.25f, 0.34f, -2.08f, 1.0f) - arcTo(6.88f, 6.88f, 0.0f, false, false, 2.3f, 12.5f) - arcToRelative(4.55f, 4.55f, 0.0f, false, false, 0.0f, 3.2f) - arcToRelative(2.95f, 2.95f, 0.0f, false, false, 1.96f, 1.67f) - curveToRelative(1.65f, 0.45f, 3.73f, -0.28f, 5.06f, -1.95f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.18f, -0.93f) - curveToRelative(-1.02f, 1.28f, -2.5f, 1.7f, -3.48f, 1.43f) - curveToRelative(-0.46f, -0.13f, -0.8f, -0.4f, -1.0f, -0.82f) - arcToRelative(2.68f, 2.68f, 0.0f, false, true, -0.06f, -1.63f) - close() - moveTo(7.89f, 9.8f) - curveToRelative(0.13f, 0.2f, 0.19f, 0.56f, -0.08f, 0.96f) - curveToRelative(-0.31f, 0.48f, -0.9f, 0.8f, -1.78f, 1.0f) - curveToRelative(-0.58f, 0.12f, -1.23f, 0.17f, -1.92f, 0.2f) - curveToRelative(0.39f, -0.83f, 0.85f, -1.36f, 1.28f, -1.7f) - arcToRelative(3.52f, 3.52f, 0.0f, false, true, 1.46f, -0.72f) - curveToRelative(0.6f, -0.13f, 0.9f, 0.08f, 1.03f, 0.26f) - close() - } - } - return _mathFormatLinear!! - } - -private var _mathFormatLinear: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MathFormatProfessional.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MathFormatProfessional.kt deleted file mode 100644 index 68deeadc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MathFormatProfessional.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MathFormatProfessional: ImageVector - get() { - if (_mathFormatProfessional != null) { - return _mathFormatProfessional!! - } - _mathFormatProfessional = fluentIcon(name = "Regular.MathFormatProfessional") { - fluentPath { - moveTo(15.66f, 4.83f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.09f, -0.24f) - lineToRelative(-0.38f, 0.27f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.88f, -1.22f) - lineToRelative(0.39f, -0.28f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.27f, 0.74f) - lineToRelative(0.67f, 1.2f) - lineToRelative(2.08f, -2.08f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineTo(18.4f, 6.66f) - lineToRelative(0.89f, 1.59f) - curveToRelative(0.22f, 0.4f, 0.76f, 0.5f, 1.12f, 0.21f) - lineToRelative(0.37f, -0.3f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.94f, 1.17f) - lineToRelative(-0.36f, 0.3f) - curveToRelative(-1.09f, 0.88f, -2.7f, 0.57f, -3.38f, -0.65f) - lineToRelative(-0.68f, -1.22f) - lineToRelative(-2.02f, 2.02f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(2.32f, -2.32f) - lineToRelative(-0.88f, -1.57f) - close() - moveTo(8.35f, 13.89f) - curveToRelative(-1.45f, 0.29f, -3.1f, 0.35f, -4.68f, 0.36f) - curveToRelative(-0.34f, 1.25f, -0.24f, 2.16f, 0.07f, 2.79f) - curveToRelative(0.34f, 0.7f, 1.0f, 1.18f, 1.87f, 1.4f) - curveToRelative(1.8f, 0.45f, 4.37f, -0.26f, 6.08f, -2.21f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.12f, 0.99f) - curveToRelative(-2.04f, 2.33f, -5.17f, 3.27f, -7.56f, 2.67f) - arcToRelative(4.2f, 4.2f, 0.0f, false, true, -2.86f, -2.2f) - curveToRelative(-0.57f, -1.18f, -0.59f, -2.68f, 0.02f, -4.44f) - arcTo(9.59f, 9.59f, 0.0f, false, true, 5.73f, 8.5f) - arcToRelative(7.91f, 7.91f, 0.0f, false, true, 3.12f, -1.37f) - curveToRelative(1.55f, -0.32f, 2.9f, 0.12f, 3.65f, 1.1f) - curveToRelative(0.75f, 0.99f, 0.74f, 2.34f, -0.1f, 3.48f) - curveToRelative(-0.92f, 1.27f, -2.44f, 1.88f, -4.05f, 2.2f) - close() - moveTo(9.15f, 8.59f) - curveToRelative(-0.57f, 0.11f, -1.53f, 0.37f, -2.53f, 1.1f) - arcToRelative(7.6f, 7.6f, 0.0f, false, false, -2.39f, 3.05f) - arcToRelative(22.4f, 22.4f, 0.0f, false, false, 3.83f, -0.32f) - curveToRelative(1.48f, -0.29f, 2.54f, -0.8f, 3.13f, -1.6f) - curveToRelative(0.5f, -0.67f, 0.42f, -1.3f, 0.12f, -1.7f) - curveToRelative(-0.32f, -0.4f, -1.03f, -0.77f, -2.16f, -0.53f) - close() - } - } - return _mathFormatProfessional!! - } - -private var _mathFormatProfessional: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MathFormula.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MathFormula.kt deleted file mode 100644 index 6bf181d6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MathFormula.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MathFormula: ImageVector - get() { - if (_mathFormula != null) { - return _mathFormula!! - } - _mathFormula = fluentIcon(name = "Regular.MathFormula") { - fluentPath { - moveTo(12.48f, 3.83f) - arcTo(1.75f, 1.75f, 0.0f, false, false, 9.7f, 5.12f) - lineTo(9.54f, 7.5f) - horizontalLineToRelative(2.71f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(9.44f, 9.0f) - lineToRelative(-0.6f, 9.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -5.39f, 2.24f) - lineToRelative(-0.2f, -0.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.0f, -1.12f) - lineToRelative(0.19f, 0.17f) - curveToRelative(1.09f, 0.95f, 2.8f, 0.24f, 2.9f, -1.2f) - lineTo(7.94f, 9.0f) - lineTo(5.74f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.28f) - lineToRelative(0.17f, -2.48f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 5.17f, -2.4f) - lineToRelative(0.38f, 0.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.9f, 1.2f) - lineToRelative(-0.37f, -0.27f) - close() - moveTo(13.71f, 12.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.15f, -0.22f) - lineToRelative(-0.32f, 0.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.98f, -1.14f) - lineToRelative(0.32f, -0.28f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.46f, 0.66f) - lineToRelative(0.98f, 1.86f) - lineToRelative(2.7f, -2.7f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-3.03f, 3.03f) - lineToRelative(1.54f, 2.93f) - curveToRelative(0.22f, 0.42f, 0.78f, 0.53f, 1.15f, 0.22f) - lineToRelative(0.32f, -0.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, 1.14f) - lineToRelative(-0.32f, 0.28f) - curveToRelative(-1.1f, 0.94f, -2.79f, 0.61f, -3.46f, -0.67f) - lineToRelative(-1.32f, -2.5f) - lineToRelative(-3.36f, 3.35f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(3.69f, -3.69f) - lineToRelative(-1.2f, -2.27f) - close() - } - } - return _mathFormula!! - } - -private var _mathFormula: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MathSymbols.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MathSymbols.kt deleted file mode 100644 index 83746936..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MathSymbols.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MathSymbols: ImageVector - get() { - if (_mathSymbols != null) { - return _mathSymbols!! - } - _mathSymbols = fluentIcon(name = "Regular.MathSymbols") { - fluentPath { - moveTo(6.25f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(7.0f, 5.5f) - horizontalLineToRelative(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(7.0f, 7.0f) - verticalLineToRelative(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(5.5f, 7.0f) - lineTo(2.75f, 7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(5.5f, 5.5f) - lineTo(5.5f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(14.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-7.0f) - close() - moveTo(13.5f, 17.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(17.75f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(18.75f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(2.22f, 14.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(2.97f, 2.97f) - lineToRelative(2.97f, -2.97f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-2.97f, 2.97f) - lineToRelative(2.97f, 2.97f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-2.97f, -2.97f) - lineToRelative(-2.97f, 2.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(2.97f, -2.97f) - lineToRelative(-2.97f, -2.97f) - close() - } - } - return _mathSymbols!! - } - -private var _mathSymbols: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MeetNow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MeetNow.kt deleted file mode 100644 index ac18ca9d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MeetNow.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MeetNow: ImageVector - get() { - if (_meetNow != null) { - return _meetNow!! - } - _meetNow = fluentIcon(name = "Regular.MeetNow") { - fluentPath { - moveTo(6.75f, 6.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(6.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-0.73f) - lineToRelative(3.39f, 1.89f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.11f, -0.66f) - verticalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.11f, -0.65f) - lineTo(15.5f, 9.48f) - verticalLineToRelative(-0.73f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-6.5f) - close() - moveTo(15.5f, 11.2f) - lineTo(18.5f, 9.53f) - verticalLineToRelative(4.95f) - lineToRelative(-3.0f, -1.67f) - verticalLineToRelative(-1.62f) - close() - moveTo(14.0f, 8.74f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-6.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(6.42f, 20.92f) - lineToRelative(0.03f, 0.02f) - arcToRelative(4.8f, 4.8f, 0.0f, false, false, 0.39f, 0.16f) - arcTo(15.37f, 15.37f, 0.0f, false, false, 12.0f, 22.0f) - arcToRelative(15.15f, 15.15f, 0.0f, false, false, 5.16f, -0.9f) - arcToRelative(6.9f, 6.9f, 0.0f, false, false, 0.39f, -0.16f) - curveToRelative(0.34f, -0.16f, 0.54f, -0.68f, 0.37f, -1.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, -0.33f) - horizontalLineToRelative(-0.02f) - arcToRelative(2.61f, 2.61f, 0.0f, false, true, -0.29f, 0.13f) - arcToRelative(13.66f, 13.66f, 0.0f, false, true, -4.61f, 0.8f) - arcToRelative(13.88f, 13.88f, 0.0f, false, true, -4.61f, -0.8f) - arcToRelative(5.75f, 5.75f, 0.0f, false, true, -0.3f, -0.13f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.67f, 1.34f) - close() - moveTo(7.96f, 2.52f) - arcTo(15.1f, 15.1f, 0.0f, false, true, 12.0f, 2.0f) - arcToRelative(15.32f, 15.32f, 0.0f, false, true, 5.16f, 0.9f) - arcToRelative(7.19f, 7.19f, 0.0f, false, true, 0.39f, 0.16f) - lineToRelative(0.02f, 0.01f) - horizontalLineToRelative(0.01f) - reflectiveCurveToRelative(0.6f, 0.36f, 0.34f, 1.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.0f, 0.33f) - horizontalLineToRelative(-0.01f) - arcToRelative(2.54f, 2.54f, 0.0f, false, false, -0.3f, -0.13f) - arcTo(13.82f, 13.82f, 0.0f, false, false, 12.0f, 3.5f) - arcToRelative(13.6f, 13.6f, 0.0f, false, false, -4.61f, 0.8f) - arcToRelative(5.6f, 5.6f, 0.0f, false, false, -0.3f, 0.13f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.68f, -1.34f) - horizontalLineToRelative(0.02f) - lineToRelative(0.02f, -0.02f) - arcToRelative(4.2f, 4.2f, 0.0f, false, true, 0.39f, -0.16f) - curveToRelative(0.26f, -0.1f, 0.63f, -0.24f, 1.12f, -0.38f) - close() - moveTo(7.09f, 4.42f) - close() - } - } - return _meetNow!! - } - -private var _meetNow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Megaphone.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Megaphone.kt deleted file mode 100644 index 760ea2ac..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Megaphone.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Megaphone: ImageVector - get() { - if (_megaphone != null) { - return _megaphone!! - } - _megaphone = fluentIcon(name = "Regular.Megaphone") { - fluentPath { - moveTo(21.9f, 5.62f) - curveToRelative(0.07f, 0.21f, 0.1f, 0.43f, 0.1f, 0.64f) - verticalLineToRelative(11.48f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.9f, 2.16f) - lineToRelative(-5.5f, -1.64f) - arcTo(4.0f, 4.0f, 0.0f, false, true, 6.0f, 16.7f) - lineTo(6.0f, 16.0f) - lineToRelative(-2.4f, -0.71f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 2.0f, 13.13f) - verticalLineToRelative(-2.26f) - curveToRelative(0.0f, -1.0f, 0.65f, -1.87f, 1.6f, -2.16f) - lineToRelative(15.5f, -4.6f) - curveToRelative(1.2f, -0.36f, 2.45f, 0.32f, 2.8f, 1.51f) - close() - moveTo(7.5f, 16.44f) - verticalLineToRelative(0.06f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 4.62f, 1.32f) - lineTo(7.5f, 16.44f) - close() - moveTo(19.54f, 5.54f) - lineTo(4.04f, 10.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.54f, 0.72f) - verticalLineToRelative(2.26f) - curveToRelative(0.0f, 0.33f, 0.22f, 0.63f, 0.54f, 0.72f) - lineToRelative(15.5f, 4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.96f, -0.71f) - lineTo(20.5f, 6.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.96f, -0.72f) - close() - } - } - return _megaphone!! - } - -private var _megaphone: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MegaphoneCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MegaphoneCircle.kt deleted file mode 100644 index f5967f1b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MegaphoneCircle.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MegaphoneCircle: ImageVector - get() { - if (_megaphoneCircle != null) { - return _megaphoneCircle!! - } - _megaphoneCircle = fluentIcon(name = "Regular.MegaphoneCircle") { - fluentPath { - moveTo(3.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 17.0f, 0.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, -17.0f, 0.0f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) - close() - moveTo(14.64f, 7.1f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 17.0f, 8.76f) - verticalLineToRelative(6.5f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -2.36f, 1.64f) - lineToRelative(-1.56f, -0.58f) - arcTo(2.63f, 2.63f, 0.0f, false, true, 8.0f, 15.38f) - verticalLineToRelative(-0.95f) - lineToRelative(-0.86f, -0.31f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 6.0f, 12.46f) - verticalLineToRelative(-0.95f) - curveToRelative(0.0f, -0.73f, 0.45f, -1.38f, 1.14f, -1.64f) - lineToRelative(7.5f, -2.77f) - close() - moveTo(9.5f, 15.0f) - verticalLineToRelative(0.38f) - arcToRelative(1.13f, 1.13f, 0.0f, false, false, 2.17f, 0.42f) - lineTo(9.5f, 15.0f) - close() - moveTo(15.5f, 8.76f) - curveToRelative(0.0f, -0.18f, -0.18f, -0.3f, -0.34f, -0.24f) - lineToRelative(-7.5f, 2.78f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.16f, 0.23f) - verticalLineToRelative(0.95f) - curveToRelative(0.0f, 0.1f, 0.06f, 0.2f, 0.16f, 0.24f) - lineToRelative(7.5f, 2.77f) - curveToRelative(0.16f, 0.06f, 0.34f, -0.06f, 0.34f, -0.23f) - verticalLineToRelative(-6.5f) - close() - } - } - return _megaphoneCircle!! - } - -private var _megaphoneCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MegaphoneLoud.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MegaphoneLoud.kt deleted file mode 100644 index 27b9ed30..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MegaphoneLoud.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MegaphoneLoud: ImageVector - get() { - if (_megaphoneLoud != null) { - return _megaphoneLoud!! - } - _megaphoneLoud = fluentIcon(name = "Regular.MegaphoneLoud") { - fluentPath { - moveTo(17.21f, 2.24f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.42f, -0.48f) - lineToRelative(-0.75f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.42f, 0.48f) - lineToRelative(0.75f, -2.25f) - close() - moveTo(21.78f, 2.22f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(2.5f, -2.5f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(9.08f, 4.32f) - arcToRelative(2.33f, 2.33f, 0.0f, false, true, 3.8f, -0.58f) - lineToRelative(7.0f, 7.5f) - curveToRelative(1.09f, 1.18f, 0.7f, 3.07f, -0.76f, 3.72f) - lineToRelative(-3.42f, 1.51f) - arcTo(3.99f, 3.99f, 0.0f, false, true, 12.0f, 22.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -3.61f, -2.29f) - lineToRelative(-1.42f, 0.63f) - arcTo(1.8f, 1.8f, 0.0f, false, true, 5.0f, 20.01f) - lineToRelative(-1.43f, -1.36f) - arcToRelative(1.8f, 1.8f, 0.0f, false, true, -0.4f, -2.1f) - lineToRelative(5.9f, -12.23f) - close() - moveTo(9.76f, 19.11f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 4.57f, -2.03f) - lineToRelative(-4.57f, 2.03f) - close() - moveTo(11.77f, 4.76f) - arcToRelative(0.83f, 0.83f, 0.0f, false, false, -1.34f, 0.2f) - lineToRelative(-5.9f, 12.25f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.06f, 0.35f) - lineToRelative(1.44f, 1.36f) - curveToRelative(0.1f, 0.08f, 0.22f, 0.1f, 0.33f, 0.05f) - lineToRelative(12.15f, -5.38f) - curveToRelative(0.52f, -0.23f, 0.66f, -0.9f, 0.27f, -1.32f) - lineToRelative(-7.0f, -7.5f) - close() - moveTo(19.0f, 8.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _megaphoneLoud!! - } - -private var _megaphoneLoud: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MegaphoneOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MegaphoneOff.kt deleted file mode 100644 index b8bb49c0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MegaphoneOff.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MegaphoneOff: ImageVector - get() { - if (_megaphoneOff != null) { - return _megaphoneOff!! - } - _megaphoneOff = fluentIcon(name = "Regular.MegaphoneOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(4.5f, 4.5f) - lineToRelative(-3.11f, 0.93f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 10.87f) - verticalLineToRelative(2.26f) - curveToRelative(0.0f, 1.0f, 0.65f, 1.87f, 1.6f, 2.16f) - lineToRelative(2.4f, 0.7f) - verticalLineToRelative(0.7f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 7.6f, 1.57f) - lineToRelative(5.12f, 1.52f) - lineToRelative(2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(16.49f, 17.55f) - lineTo(4.04f, 13.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, -0.72f) - verticalLineToRelative(-2.26f) - curveToRelative(0.0f, -0.33f, 0.22f, -0.63f, 0.54f, -0.72f) - lineToRelative(3.9f, -1.16f) - lineToRelative(8.55f, 8.56f) - close() - moveTo(7.49f, 16.45f) - lineTo(12.12f, 17.82f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 7.5f, 16.5f) - verticalLineToRelative(-0.06f) - close() - moveTo(20.5f, 6.25f) - verticalLineToRelative(11.06f) - lineToRelative(1.32f, 1.31f) - curveToRelative(0.11f, -0.27f, 0.18f, -0.57f, 0.18f, -0.9f) - lineTo(22.0f, 6.27f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.9f, -2.15f) - lineTo(10.0f, 6.8f) - lineToRelative(1.2f, 1.21f) - lineToRelative(8.34f, -2.48f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.96f, 0.72f) - close() - } - } - return _megaphoneOff!! - } - -private var _megaphoneOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Mention.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Mention.kt deleted file mode 100644 index 89a18d3b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Mention.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Mention: ImageVector - get() { - if (_mention != null) { - return _mention!! - } - _mention = fluentIcon(name = "Regular.Mention") { - fluentPath { - moveTo(22.0f, 12.0f) - verticalLineToRelative(1.75f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -7.15f, 1.59f) - arcTo(4.29f, 4.29f, 0.0f, false, true, 11.5f, 17.0f) - curveTo(9.0f, 17.0f, 7.0f, 14.74f, 7.0f, 12.0f) - reflectiveCurveToRelative(2.0f, -5.0f, 4.5f, -5.0f) - curveToRelative(1.16f, 0.0f, 2.2f, 0.48f, 3.0f, 1.27f) - verticalLineToRelative(-0.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(6.1f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.15f) - verticalLineTo(12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, -5.51f, 7.96f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.52f, 1.4f) - arcTo(10.0f, 10.0f, 0.0f, true, true, 22.0f, 11.72f) - lineToRelative(0.01f, 0.29f) - verticalLineToRelative(1.75f) - verticalLineTo(12.0f) - close() - moveTo(11.5f, 8.5f) - curveToRelative(-1.63f, 0.0f, -3.0f, 1.55f, -3.0f, 3.5f) - reflectiveCurveToRelative(1.37f, 3.5f, 3.0f, 3.5f) - reflectiveCurveToRelative(3.0f, -1.55f, 3.0f, -3.5f) - reflectiveCurveToRelative(-1.37f, -3.5f, -3.0f, -3.5f) - close() - } - } - return _mention!! - } - -private var _mention: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Merge.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Merge.kt deleted file mode 100644 index 135fc8f2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Merge.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Merge: ImageVector - get() { - if (_merge != null) { - return _merge!! - } - _merge = fluentIcon(name = "Regular.Merge") { - fluentPath { - moveTo(3.0f, 6.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.26f) - curveToRelative(1.0f, 0.0f, 1.95f, 0.4f, 2.65f, 1.1f) - lineToRelative(2.95f, 2.95f) - curveToRelative(0.6f, 0.6f, 1.43f, 0.95f, 2.3f, 0.95f) - horizontalLineToRelative(4.53f) - lineToRelative(-3.72f, -3.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(5.0f, 5.0f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(3.72f, -3.72f) - horizontalLineToRelative(-4.47f) - curveToRelative(-0.9f, 0.0f, -1.75f, 0.37f, -2.36f, 1.01f) - lineToRelative(-2.68f, 2.82f) - curveToRelative(-0.7f, 0.75f, -1.69f, 1.17f, -2.72f, 1.17f) - horizontalLineTo(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.46f) - curveToRelative(0.62f, 0.0f, 1.2f, -0.25f, 1.63f, -0.7f) - lineToRelative(2.68f, -2.82f) - curveToRelative(0.26f, -0.27f, 0.55f, -0.51f, 0.86f, -0.71f) - curveToRelative(-0.3f, -0.19f, -0.58f, -0.4f, -0.83f, -0.66f) - lineTo(8.6f, 8.16f) - curveToRelative(-0.42f, -0.42f, -1.0f, -0.66f, -1.6f, -0.66f) - horizontalLineTo(3.76f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 6.75f) - close() - } - } - return _merge!! - } - -private var _merge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Mic.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Mic.kt deleted file mode 100644 index 6049204a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Mic.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Mic: ImageVector - get() { - if (_mic != null) { - return _mic!! - } - _mic = fluentIcon(name = "Regular.Mic") { - fluentPath { - moveTo(18.25f, 11.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(0.5f) - arcToRelative(6.75f, 6.75f, 0.0f, false, true, -6.25f, 6.73f) - verticalLineToRelative(2.27f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-2.37f) - arcTo(6.75f, 6.75f, 0.0f, false, true, 5.0f, 12.48f) - verticalLineToRelative(-0.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.6f) - arcToRelative(5.25f, 5.25f, 0.0f, false, false, 5.03f, 5.25f) - horizontalLineToRelative(0.72f) - arcToRelative(5.25f, 5.25f, 0.0f, false, false, 5.25f, -5.03f) - verticalLineToRelative(-0.72f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, 4.0f) - verticalLineToRelative(6.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -8.0f, 0.0f) - lineTo(8.0f, 6.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, -4.0f) - close() - moveTo(12.0f, 3.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 9.5f, 6.0f) - verticalLineToRelative(6.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 5.0f, 0.0f) - lineTo(14.5f, 6.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 12.0f, 3.5f) - close() - } - } - return _mic!! - } - -private var _mic: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MicOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MicOff.kt deleted file mode 100644 index d0a78951..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MicOff.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MicOff: ImageVector - get() { - if (_micOff != null) { - return _micOff!! - } - _micOff = fluentIcon(name = "Regular.MicOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(8.0f, 9.06f) - lineTo(8.0f, 12.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 6.25f, 3.3f) - lineToRelative(1.14f, 1.15f) - arcToRelative(5.23f, 5.23f, 0.0f, false, true, -3.14f, 1.05f) - horizontalLineToRelative(-0.72f) - arcToRelative(5.25f, 5.25f, 0.0f, false, true, -5.03f, -5.25f) - verticalLineToRelative(-0.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - verticalLineToRelative(0.74f) - arcToRelative(6.75f, 6.75f, 0.0f, false, false, 6.25f, 6.5f) - verticalLineToRelative(2.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - verticalLineToRelative(-2.27f) - curveToRelative(1.4f, -0.1f, 2.68f, -0.63f, 3.71f, -1.46f) - lineToRelative(4.26f, 4.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(13.16f, 14.22f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 9.5f, 12.0f) - verticalLineToRelative(-1.44f) - lineToRelative(3.66f, 3.66f) - close() - moveTo(14.5f, 6.0f) - verticalLineToRelative(5.32f) - lineToRelative(1.43f, 1.43f) - curveToRelative(0.05f, -0.24f, 0.07f, -0.5f, 0.07f, -0.75f) - lineTo(16.0f, 6.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -7.86f, -1.04f) - lineTo(9.5f, 6.32f) - lineTo(9.5f, 6.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(17.2f, 14.01f) - lineTo(18.34f, 15.16f) - curveToRelative(0.42f, -0.88f, 0.66f, -1.87f, 0.66f, -2.91f) - verticalLineToRelative(-0.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - verticalLineToRelative(0.72f) - arcToRelative(5.23f, 5.23f, 0.0f, false, true, -0.3f, 1.54f) - close() - } - } - return _micOff!! - } - -private var _micOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MicProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MicProhibited.kt deleted file mode 100644 index 89211148..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MicProhibited.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MicProhibited: ImageVector - get() { - if (_micProhibited != null) { - return _micProhibited!! - } - _micProhibited = fluentIcon(name = "Regular.MicProhibited") { - fluentPath { - moveTo(15.0f, 6.0f) - verticalLineToRelative(5.5f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.53f, 0.9f) - curveToRelative(0.02f, -0.13f, 0.03f, -0.26f, 0.03f, -0.4f) - lineTo(13.5f, 6.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) - verticalLineToRelative(6.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.3f, 2.37f) - curveToRelative(-0.28f, 0.5f, -0.49f, 1.05f, -0.63f, 1.63f) - lineTo(11.0f, 16.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f) - lineTo(7.0f, 6.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, 8.0f, 0.0f) - close() - moveTo(11.0f, 17.5f) - curveToRelative(0.0f, 1.1f, 0.27f, 2.13f, 0.75f, 3.03f) - verticalLineToRelative(0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-2.37f) - arcTo(6.75f, 6.75f, 0.0f, false, true, 4.0f, 12.48f) - verticalLineToRelative(-0.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.6f) - arcToRelative(5.25f, 5.25f, 0.0f, false, false, 5.03f, 5.25f) - lineTo(11.0f, 17.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(13.5f, 17.5f) - curveToRelative(0.0f, 0.83f, 0.26f, 1.6f, 0.7f, 2.25f) - lineToRelative(5.55f, -5.56f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) - close() - moveTo(17.5f, 21.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) - lineToRelative(-5.55f, 5.56f) - curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) - close() - } - } - return _micProhibited!! - } - -private var _micProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MicPulse.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MicPulse.kt deleted file mode 100644 index d4c33bb9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MicPulse.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MicPulse: ImageVector - get() { - if (_micPulse != null) { - return _micPulse!! - } - _micPulse = fluentIcon(name = "Regular.MicPulse") { - fluentPath { - moveTo(11.0f, 17.5f) - curveToRelative(0.0f, 1.1f, 0.27f, 2.13f, 0.75f, 3.03f) - verticalLineToRelative(0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-2.37f) - arcTo(6.75f, 6.75f, 0.0f, false, true, 4.0f, 12.48f) - verticalLineToRelative(-0.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.6f) - arcToRelative(5.25f, 5.25f, 0.0f, false, false, 5.03f, 5.25f) - lineTo(11.0f, 17.5f) - close() - moveTo(15.0f, 6.0f) - verticalLineToRelative(5.5f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.53f, 0.9f) - curveToRelative(0.02f, -0.13f, 0.03f, -0.26f, 0.03f, -0.4f) - lineTo(13.5f, 6.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) - verticalLineToRelative(6.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.3f, 2.37f) - curveToRelative(-0.28f, 0.5f, -0.49f, 1.05f, -0.63f, 1.63f) - lineTo(11.0f, 16.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f) - lineTo(7.0f, 6.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, 8.0f, 0.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(16.01f, 14.5f) - curveToRelative(0.21f, 0.0f, 0.4f, 0.14f, 0.46f, 0.34f) - lineTo(17.53f, 18.0f) - lineToRelative(1.0f, -2.68f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.92f, -0.04f) - lineTo(20.3f, 17.0f) - lineTo(21.0f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.45f, -0.28f) - lineToRelative(-0.48f, -0.97f) - lineToRelative(-1.1f, 2.93f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.94f, -0.02f) - lineToRelative(-1.07f, -3.2f) - lineToRelative(-0.5f, 1.23f) - arcTo(0.5f, 0.5f, 0.0f, false, true, 15.0f, 18.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineToRelative(0.66f) - lineToRelative(0.88f, -2.19f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.47f, -0.31f) - close() - } - } - return _micPulse!! - } - -private var _micPulse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MicPulseOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MicPulseOff.kt deleted file mode 100644 index 45d58438..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MicPulseOff.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MicPulseOff: ImageVector - get() { - if (_micPulseOff != null) { - return _micPulseOff!! - } - _micPulseOff = fluentIcon(name = "Regular.MicPulseOff") { - fluentPath { - moveTo(7.0f, 8.06f) - lineTo(7.0f, 12.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.17f, 4.0f) - curveToRelative(0.14f, -0.58f, 0.35f, -1.13f, 0.63f, -1.63f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 8.5f, 12.0f) - lineTo(8.5f, 9.56f) - lineToRelative(4.62f, 4.62f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 7.72f, 7.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.94f, -1.16f) - lineTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(7.0f, 8.06f) - close() - moveTo(18.14f, 19.21f) - lineTo(17.97f, 19.68f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.94f, -0.02f) - lineToRelative(-0.79f, -2.36f) - lineToRelative(1.9f, 1.9f) - close() - moveTo(15.8f, 16.86f) - lineTo(15.46f, 17.69f) - arcTo(0.5f, 0.5f, 0.0f, false, true, 15.0f, 18.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineToRelative(0.66f) - lineToRelative(0.37f, -0.91f) - lineToRelative(0.77f, 0.77f) - close() - moveTo(13.5f, 6.0f) - verticalLineToRelative(4.32f) - lineToRelative(1.28f, 1.28f) - lineToRelative(0.22f, -0.1f) - lineTo(15.0f, 6.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -7.59f, -1.77f) - lineToRelative(1.16f, 1.16f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 13.5f, 6.0f) - close() - moveTo(15.54f, 12.36f) - lineTo(22.64f, 19.46f) - arcTo(5.49f, 5.49f, 0.0f, false, false, 17.5f, 12.0f) - curveToRelative(-0.69f, 0.0f, -1.35f, 0.13f, -1.96f, 0.36f) - close() - moveTo(11.0f, 17.5f) - curveToRelative(0.0f, 1.1f, 0.27f, 2.13f, 0.75f, 3.03f) - verticalLineToRelative(0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-2.37f) - arcTo(6.75f, 6.75f, 0.0f, false, true, 4.0f, 12.48f) - verticalLineToRelative(-0.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.6f) - arcToRelative(5.25f, 5.25f, 0.0f, false, false, 5.03f, 5.25f) - lineTo(11.0f, 17.5f) - close() - } - } - return _micPulseOff!! - } - -private var _micPulseOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MicSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MicSettings.kt deleted file mode 100644 index 1671654e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MicSettings.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MicSettings: ImageVector - get() { - if (_micSettings != null) { - return _micSettings!! - } - _micSettings = fluentIcon(name = "Regular.MicSettings") { - fluentPath { - moveTo(11.0f, 17.5f) - curveToRelative(0.0f, 1.1f, 0.27f, 2.13f, 0.75f, 3.03f) - verticalLineToRelative(0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-2.37f) - arcTo(6.75f, 6.75f, 0.0f, false, true, 4.0f, 12.48f) - verticalLineToRelative(-0.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.6f) - arcToRelative(5.25f, 5.25f, 0.0f, false, false, 5.03f, 5.25f) - lineTo(11.0f, 17.5f) - close() - moveTo(15.0f, 6.0f) - verticalLineToRelative(5.5f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.53f, 0.9f) - curveToRelative(0.02f, -0.13f, 0.03f, -0.26f, 0.03f, -0.4f) - lineTo(13.5f, 6.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) - verticalLineToRelative(6.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.3f, 2.37f) - curveToRelative(-0.28f, 0.5f, -0.49f, 1.05f, -0.63f, 1.63f) - lineTo(11.0f, 16.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f) - lineTo(7.0f, 6.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, 8.0f, 0.0f) - close() - moveTo(14.28f, 13.98f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.59f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) - lineToRelative(0.55f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) - lineToRelative(-0.19f, 0.63f) - curveToRelative(0.44f, 0.39f, 0.94f, 0.7f, 1.49f, 0.93f) - lineToRelative(0.49f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) - lineToRelative(-0.2f, -0.69f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) - lineToRelative(0.59f, -0.14f) - arcToRelative(5.72f, 5.72f, 0.0f, false, false, 0.0f, -1.8f) - lineToRelative(-0.55f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.19f, -0.63f) - curveToRelative(-0.44f, -0.4f, -0.94f, -0.7f, -1.49f, -0.93f) - lineToRelative(-0.49f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) - lineToRelative(0.2f, 0.7f) - close() - moveTo(17.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) - close() - } - } - return _micSettings!! - } - -private var _micSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MicSparkle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MicSparkle.kt deleted file mode 100644 index 20b9da61..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MicSparkle.kt +++ /dev/null @@ -1,95 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MicSparkle: ImageVector - get() { - if (_micSparkle != null) { - return _micSparkle!! - } - _micSparkle = fluentIcon(name = "Regular.MicSparkle") { - fluentPath { - moveTo(13.85f, 15.15f) - arcToRelative(2.85f, 2.85f, 0.0f, false, true, 0.69f, 1.11f) - lineToRelative(0.45f, 1.38f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 1.02f, 0.0f) - lineToRelative(0.45f, -1.38f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, 1.8f, -1.8f) - lineToRelative(1.38f, -0.44f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, -1.03f) - horizontalLineToRelative(-0.03f) - lineToRelative(-1.38f, -0.45f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.8f, -1.8f) - lineTo(16.0f, 9.36f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, -1.03f, 0.0f) - lineToRelative(-0.45f, 1.38f) - lineToRelative(-0.01f, 0.03f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.76f, 1.77f) - lineToRelative(-1.38f, 0.44f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, 1.03f) - lineToRelative(1.38f, 0.45f) - curveToRelative(0.42f, 0.14f, 0.8f, 0.37f, 1.11f, 0.69f) - close() - moveTo(16.0f, 6.0f) - verticalLineToRelative(2.1f) - arcToRelative(1.54f, 1.54f, 0.0f, false, false, -1.5f, 0.24f) - lineTo(14.5f, 6.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.56f, 0.19f, 1.08f, 0.5f, 1.5f) - arcToRelative(1.54f, 1.54f, 0.0f, false, false, 1.03f, 1.45f) - horizontalLineToRelative(0.01f) - lineToRelative(1.39f, 0.46f) - curveToRelative(0.26f, 0.09f, 0.5f, 0.23f, 0.7f, 0.43f) - arcTo(4.0f, 4.0f, 0.0f, false, true, 8.0f, 12.0f) - lineTo(8.0f, 6.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, 8.0f, 0.0f) - close() - moveTo(12.25f, 17.5f) - curveToRelative(0.54f, 0.0f, 1.07f, -0.08f, 1.56f, -0.24f) - lineToRelative(0.23f, 0.7f) - verticalLineToRelative(0.01f) - curveToRelative(0.1f, 0.25f, 0.25f, 0.48f, 0.45f, 0.65f) - curveToRelative(-0.55f, 0.2f, -1.13f, 0.32f, -1.74f, 0.36f) - verticalLineToRelative(2.27f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-2.37f) - arcTo(6.75f, 6.75f, 0.0f, false, true, 5.0f, 12.48f) - verticalLineToRelative(-0.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.6f) - arcToRelative(5.25f, 5.25f, 0.0f, false, false, 5.03f, 5.25f) - horizontalLineToRelative(0.72f) - close() - moveTo(22.02f, 18.96f) - lineTo(22.78f, 19.21f) - horizontalLineToRelative(0.02f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, 0.47f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, 0.1f) - lineToRelative(-0.77f, 0.26f) - arcToRelative(1.58f, 1.58f, 0.0f, false, false, -1.0f, 1.0f) - lineToRelative(-0.24f, 0.76f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.58f, 0.0f) - lineToRelative(-0.24f, -0.77f) - arcToRelative(1.57f, 1.57f, 0.0f, false, false, -1.0f, -1.0f) - lineToRelative(-0.77f, -0.25f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, -0.46f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, -0.1f) - lineToRelative(0.77f, -0.26f) - arcToRelative(1.58f, 1.58f, 0.0f, false, false, 0.98f, -1.0f) - lineToRelative(0.25f, -0.76f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.57f, 0.0f) - lineToRelative(0.25f, 0.77f) - arcToRelative(1.58f, 1.58f, 0.0f, false, false, 1.0f, 1.0f) - close() - } - } - return _micSparkle!! - } - -private var _micSparkle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Microscope.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Microscope.kt deleted file mode 100644 index 3624c4d0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Microscope.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Microscope: ImageVector - get() { - if (_microscope != null) { - return _microscope!! - } - _microscope = fluentIcon(name = "Regular.Microscope") { - fluentPath { - moveTo(8.0f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(11.0f, 3.0f) - horizontalLineToRelative(1.25f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.78f) - horizontalLineToRelative(0.03f) - arcToRelative(8.25f, 8.25f, 0.0f, false, true, 3.96f, 14.97f) - horizontalLineToRelative(3.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(3.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(8.53f) - arcTo(6.75f, 6.75f, 0.0f, false, false, 13.0f, 7.04f) - verticalLineToRelative(5.21f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-0.75f) - verticalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - lineTo(8.0f, 3.0f) - verticalLineToRelative(-0.25f) - close() - moveTo(9.0f, 13.0f) - verticalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-1.0f) - lineTo(9.0f, 13.0f) - close() - moveTo(7.5f, 11.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-7.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(7.0f) - close() - moveTo(5.75f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-7.5f) - close() - } - } - return _microscope!! - } - -private var _microscope: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Midi.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Midi.kt deleted file mode 100644 index 07783ed6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Midi.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Midi: ImageVector - get() { - if (_midi != null) { - return _midi!! - } - _midi = fluentIcon(name = "Regular.Midi") { - fluentPath { - moveTo(21.25f, 4.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(14.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.75f) - lineTo(2.75f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - lineTo(2.0f, 4.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - horizontalLineToRelative(18.6f) - close() - moveTo(6.0f, 12.5f) - lineTo(3.5f, 12.5f) - verticalLineToRelative(6.0f) - horizontalLineToRelative(17.0f) - verticalLineToRelative(-6.0f) - lineTo(18.0f, 12.5f) - verticalLineToRelative(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(16.5f, 12.5f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(13.0f, 12.5f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(9.5f, 12.5f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(6.0f, 12.5f) - close() - moveTo(20.5f, 5.5f) - horizontalLineToRelative(-17.0f) - lineTo(3.5f, 11.0f) - horizontalLineToRelative(17.0f) - lineTo(20.5f, 5.5f) - close() - moveTo(9.25f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(17.25f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(2.6f) - close() - moveTo(6.25f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - } - } - return _midi!! - } - -private var _midi: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MobileOptimized.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MobileOptimized.kt deleted file mode 100644 index 7a8c49d4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MobileOptimized.kt +++ /dev/null @@ -1,102 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MobileOptimized: ImageVector - get() { - if (_mobileOptimized != null) { - return _mobileOptimized!! - } - _mobileOptimized = fluentIcon(name = "Regular.MobileOptimized") { - fluentPath { - moveTo(19.25f, 18.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(20.0f, 20.0f) - verticalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-2.1f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(2.0f) - horizontalLineToRelative(-2.0f) - close() - moveTo(2.75f, 18.5f) - horizontalLineToRelative(2.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(4.0f, 20.0f) - lineTo(2.75f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(2.1f) - horizontalLineToRelative(-2.0f) - close() - moveTo(16.75f, 5.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(6.5f, 6.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(9.5f) - close() - moveTo(16.0f, 7.0f) - lineTo(8.0f, 7.0f) - verticalLineToRelative(10.0f) - horizontalLineToRelative(8.0f) - lineTo(16.0f, 7.0f) - close() - moveTo(9.75f, 12.51f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - horizontalLineToRelative(2.6f) - horizontalLineToRelative(-2.5f) - close() - moveTo(9.75f, 9.5f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(4.6f) - horizontalLineToRelative(-4.5f) - close() - moveTo(4.75f, 2.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(4.0f, 4.0f) - lineTo(4.0f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(19.25f, 2.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - lineTo(20.0f, 4.0f) - horizontalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-2.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _mobileOptimized!! - } - -private var _mobileOptimized: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Molecule.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Molecule.kt deleted file mode 100644 index fca8db10..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Molecule.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Molecule: ImageVector - get() { - if (_molecule != null) { - return _molecule!! - } - _molecule = fluentIcon(name = "Regular.Molecule") { - fluentPath { - moveTo(16.0f, 12.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, false, -4.34f, -2.51f) - lineToRelative(-2.71f, 1.8f) - arcTo(3.99f, 3.99f, 0.0f, false, false, 2.0f, 14.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 7.18f, 2.43f) - lineToRelative(3.89f, 1.94f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.67f, -1.34f) - lineToRelative(-3.89f, -1.94f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -0.11f, -2.52f) - lineToRelative(2.86f, -1.9f) - curveToRelative(0.9f, 0.82f, 2.09f, 1.33f, 3.4f, 1.33f) - close() - moveTo(16.0f, 10.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 0.0f, -7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 0.0f, 7.0f) - close() - moveTo(6.0f, 16.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, -5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, 5.0f) - close() - moveTo(17.5f, 19.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - } - } - return _molecule!! - } - -private var _molecule: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Money.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Money.kt deleted file mode 100644 index 7629c8d6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Money.kt +++ /dev/null @@ -1,100 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Money: ImageVector - get() { - if (_money != null) { - return _money!! - } - _money = fluentIcon(name = "Regular.Money") { - fluentPath { - moveTo(10.5f, 8.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - moveTo(9.0f, 11.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - moveTo(2.0f, 7.25f) - curveTo(2.0f, 6.01f, 3.0f, 5.0f, 4.25f, 5.0f) - horizontalLineToRelative(12.5f) - curveTo(17.99f, 5.0f, 19.0f, 6.0f, 19.0f, 7.25f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(4.25f, 17.0f) - curveTo(3.01f, 17.0f, 2.0f, 16.0f, 2.0f, 14.75f) - verticalLineToRelative(-7.5f) - close() - moveTo(4.25f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(3.5f, 8.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(5.0f, 6.5f) - horizontalLineToRelative(-0.75f) - close() - moveTo(3.5f, 12.5f) - horizontalLineToRelative(0.75f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(8.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(0.75f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(-0.75f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - lineTo(14.5f, 6.5f) - horizontalLineToRelative(-8.0f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(3.5f, 9.5f) - verticalLineToRelative(3.0f) - close() - moveTo(17.5f, 8.0f) - verticalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(16.0f, 6.5f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(0.75f) - close() - moveTo(17.5f, 14.0f) - horizontalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(0.75f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(17.5f, 14.0f) - close() - moveTo(3.5f, 14.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(5.0f, 15.5f) - verticalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(3.5f, 14.0f) - verticalLineToRelative(0.75f) - close() - moveTo(4.4f, 18.5f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 7.0f, 20.0f) - horizontalLineToRelative(10.25f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 22.0f, 15.25f) - lineTo(22.0f, 10.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -1.5f, -2.6f) - verticalLineToRelative(7.85f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(4.4f, 18.5f) - close() - } - } - return _money!! - } - -private var _money: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MoneyCalculator.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MoneyCalculator.kt deleted file mode 100644 index f62d5934..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MoneyCalculator.kt +++ /dev/null @@ -1,146 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MoneyCalculator: ImageVector - get() { - if (_moneyCalculator != null) { - return _moneyCalculator!! - } - _moneyCalculator = fluentIcon(name = "Regular.MoneyCalculator") { - fluentPath { - moveTo(10.5f, 7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - moveTo(9.0f, 10.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - moveTo(2.0f, 6.25f) - curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) - horizontalLineToRelative(12.5f) - curveTo(17.99f, 4.0f, 19.0f, 5.0f, 19.0f, 6.25f) - lineTo(19.0f, 11.0f) - horizontalLineToRelative(-1.5f) - lineTo(17.5f, 8.5f) - horizontalLineToRelative(-0.75f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - lineTo(14.5f, 5.5f) - horizontalLineToRelative(-8.0f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(3.5f, 8.5f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(0.75f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(0.75f) - lineTo(14.0f, 14.5f) - lineTo(14.0f, 16.0f) - lineTo(4.25f, 16.0f) - curveTo(3.01f, 16.0f, 2.0f, 15.0f, 2.0f, 13.75f) - verticalLineToRelative(-7.5f) - close() - moveTo(4.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(3.5f, 7.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(5.0f, 5.5f) - horizontalLineToRelative(-0.75f) - close() - moveTo(17.5f, 7.0f) - verticalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(16.0f, 5.5f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(0.75f) - close() - moveTo(3.5f, 13.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(5.0f, 14.5f) - verticalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(3.5f, 13.0f) - verticalLineToRelative(0.75f) - close() - moveTo(4.4f, 17.5f) - lineTo(14.0f, 17.5f) - lineTo(14.0f, 19.0f) - lineTo(7.0f, 19.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.6f, -1.5f) - close() - moveTo(22.0f, 11.0f) - lineTo(22.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -1.5f, -2.6f) - lineTo(20.5f, 11.0f) - lineTo(22.0f, 11.0f) - close() - moveTo(16.5f, 12.0f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(8.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(5.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-8.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - horizontalLineToRelative(-5.0f) - close() - moveTo(17.0f, 16.5f) - horizontalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - close() - moveTo(20.0f, 16.5f) - horizontalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - close() - moveTo(17.0f, 18.5f) - horizontalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - close() - moveTo(20.0f, 18.5f) - horizontalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - close() - moveTo(17.0f, 20.5f) - horizontalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - close() - moveTo(20.0f, 20.5f) - horizontalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - close() - moveTo(16.5f, 14.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(4.0f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - verticalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - verticalLineToRelative(-1.0f) - close() - } - } - return _moneyCalculator!! - } - -private var _moneyCalculator: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MoneyDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MoneyDismiss.kt deleted file mode 100644 index 3ab96ddd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MoneyDismiss.kt +++ /dev/null @@ -1,108 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MoneyDismiss: ImageVector - get() { - if (_moneyDismiss != null) { - return _moneyDismiss!! - } - _moneyDismiss = fluentIcon(name = "Regular.MoneyDismiss") { - fluentPath { - moveTo(10.5f, 8.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - moveTo(9.0f, 11.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - moveTo(2.0f, 7.25f) - curveTo(2.0f, 6.01f, 3.0f, 5.0f, 4.25f, 5.0f) - horizontalLineToRelative(12.5f) - curveTo(17.99f, 5.0f, 19.0f, 6.0f, 19.0f, 7.25f) - verticalLineToRelative(3.92f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -0.17f) - lineTo(17.5f, 9.5f) - horizontalLineToRelative(-0.75f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - lineTo(14.5f, 6.5f) - horizontalLineToRelative(-8.0f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(3.5f, 9.5f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(0.75f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(4.81f) - curveToRelative(-0.15f, 0.48f, -0.25f, 0.98f, -0.3f, 1.5f) - lineTo(4.26f, 17.0f) - curveTo(3.01f, 17.0f, 2.0f, 16.0f, 2.0f, 14.75f) - verticalLineToRelative(-7.5f) - close() - moveTo(4.25f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(3.5f, 8.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(5.0f, 6.5f) - horizontalLineToRelative(-0.75f) - close() - moveTo(17.5f, 8.0f) - verticalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(16.0f, 6.5f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(0.75f) - close() - moveTo(3.5f, 14.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(5.0f, 15.5f) - verticalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(3.5f, 14.0f) - verticalLineToRelative(0.75f) - close() - moveTo(4.4f, 18.5f) - horizontalLineToRelative(6.68f) - curveToRelative(0.08f, 0.52f, 0.22f, 1.03f, 0.42f, 1.5f) - lineTo(7.0f, 20.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.6f, -1.5f) - close() - moveTo(20.5f, 11.73f) - curveToRelative(0.55f, 0.29f, 1.06f, 0.65f, 1.5f, 1.08f) - lineTo(22.0f, 10.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -1.5f, -2.6f) - verticalLineToRelative(4.33f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-1.64f, -1.65f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.65f, 1.64f) - lineToRelative(-1.65f, -1.64f) - close() - } - } - return _moneyDismiss!! - } - -private var _moneyDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MoneyHand.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MoneyHand.kt deleted file mode 100644 index 1191099e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MoneyHand.kt +++ /dev/null @@ -1,121 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MoneyHand: ImageVector - get() { - if (_moneyHand != null) { - return _moneyHand!! - } - _moneyHand = fluentIcon(name = "Regular.MoneyHand") { - fluentPath { - moveTo(6.25f, 2.0f) - curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) - verticalLineToRelative(15.5f) - curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) - horizontalLineToRelative(7.5f) - curveToRelative(1.24f, 0.0f, 2.24f, -1.0f, 2.25f, -2.23f) - verticalLineToRelative(-1.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - curveToRelative(-0.45f, 0.0f, -0.74f, -0.12f, -0.94f, -0.28f) - curveToRelative(-0.2f, -0.17f, -0.38f, -0.43f, -0.5f, -0.79f) - arcToRelative(8.4f, 8.4f, 0.0f, false, true, -0.3f, -2.68f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.21f, -0.51f) - lineToRelative(-0.17f, -0.18f) - lineToRelative(-0.17f, -0.17f) - lineToRelative(-1.18f, -1.17f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.81f, -1.17f) - arcToRelative(0.62f, 0.62f, 0.0f, false, true, -0.02f, -0.32f) - curveToRelative(0.02f, -0.09f, 0.08f, -0.2f, 0.2f, -0.33f) - arcToRelative(0.7f, 0.7f, 0.0f, false, true, 0.33f, -0.2f) - arcToRelative(0.61f, 0.61f, 0.0f, false, true, 0.32f, 0.02f) - curveToRelative(0.3f, 0.08f, 0.7f, 0.34f, 1.17f, 0.81f) - lineToRelative(1.51f, 1.5f) - curveToRelative(0.76f, 0.75f, 1.38f, 1.36f, 1.72f, 1.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.1f, -1.02f) - lineTo(16.0f, 11.42f) - lineTo(16.0f, 8.06f) - lineToRelative(2.84f, 2.84f) - curveToRelative(0.42f, 0.42f, 0.66f, 1.0f, 0.66f, 1.6f) - verticalLineToRelative(8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-8.76f) - curveToRelative(0.0f, -1.0f, -0.4f, -1.95f, -1.1f, -2.65f) - lineTo(16.0f, 5.94f) - lineTo(16.0f, 4.25f) - curveTo(16.0f, 3.01f, 15.0f, 2.0f, 13.75f, 2.0f) - horizontalLineToRelative(-7.5f) - close() - moveTo(12.39f, 16.94f) - curveToRelative(0.1f, 0.27f, 0.22f, 0.53f, 0.39f, 0.78f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.28f, 2.03f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - lineTo(5.5f, 17.5f) - verticalLineToRelative(-11.0f) - horizontalLineToRelative(0.75f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(8.5f, 3.5f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(0.75f) - verticalLineToRelative(3.44f) - lineToRelative(-0.47f, -0.47f) - curveToRelative(-0.53f, -0.53f, -1.15f, -1.0f, -1.82f, -1.2f) - arcToRelative(2.1f, 2.1f, 0.0f, false, false, -1.74f, 0.26f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 1.55f, 6.32f) - curveToRelative(0.04f, 0.69f, 0.13f, 1.43f, 0.37f, 2.09f) - close() - moveTo(8.0f, 12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.46f, -1.93f) - curveToRelative(-0.05f, 0.3f, -0.02f, 0.6f, 0.06f, 0.89f) - curveToRelative(0.2f, 0.67f, 0.67f, 1.29f, 1.2f, 1.82f) - lineToRelative(0.67f, 0.66f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 8.0f, 12.0f) - close() - moveTo(5.5f, 4.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - lineTo(7.0f, 3.5f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(5.5f, 5.0f) - verticalLineToRelative(-0.75f) - close() - moveTo(13.0f, 3.5f) - horizontalLineToRelative(0.75f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(14.5f, 5.0f) - horizontalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(13.0f, 3.5f) - close() - moveTo(14.5f, 19.0f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(13.0f, 20.5f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(0.75f) - close() - moveTo(7.0f, 20.5f) - horizontalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(5.5f, 19.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.75f) - close() - } - } - return _moneyHand!! - } - -private var _moneyHand: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MoneyOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MoneyOff.kt deleted file mode 100644 index 3a94342b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MoneyOff.kt +++ /dev/null @@ -1,104 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MoneyOff: ImageVector - get() { - if (_moneyOff != null) { - return _moneyOff!! - } - _moneyOff = fluentIcon(name = "Regular.MoneyOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(1.74f, 1.74f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(7.5f) - curveTo(2.0f, 15.99f, 3.0f, 17.0f, 4.25f, 17.0f) - horizontalLineToRelative(11.69f) - lineToRelative(1.5f, 1.5f) - lineTo(4.4f, 18.5f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 7.0f, 20.0f) - horizontalLineToRelative(10.25f) - curveToRelative(0.51f, 0.0f, 1.0f, -0.08f, 1.46f, -0.23f) - lineToRelative(2.01f, 2.01f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(14.44f, 15.5f) - lineTo(6.5f, 15.5f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - lineTo(3.5f, 12.5f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(0.75f) - curveToRelative(1.14f, 0.0f, 2.09f, -0.85f, 2.23f, -1.96f) - lineToRelative(1.64f, 1.64f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 4.2f, 4.2f) - lineToRelative(2.12f, 2.12f) - close() - moveTo(9.2f, 10.26f) - lineToRelative(2.04f, 2.04f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.05f, -2.05f) - close() - moveTo(3.5f, 7.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - lineTo(5.0f, 6.5f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(3.5f, 8.0f) - verticalLineToRelative(-0.75f) - close() - moveTo(4.25f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(3.5f, 14.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(-0.75f) - close() - moveTo(16.75f, 12.5f) - curveToRelative(-0.32f, 0.0f, -0.62f, 0.06f, -0.89f, 0.18f) - lineTo(17.18f, 14.0f) - horizontalLineToRelative(0.32f) - verticalLineToRelative(0.32f) - lineToRelative(1.32f, 1.32f) - curveToRelative(0.12f, -0.27f, 0.18f, -0.57f, 0.18f, -0.89f) - verticalLineToRelative(-7.5f) - curveTo(19.0f, 6.01f, 18.0f, 5.0f, 16.75f, 5.0f) - lineTo(8.18f, 5.0f) - lineToRelative(1.5f, 1.5f) - horizontalLineToRelative(4.82f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(0.75f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(-0.75f) - close() - moveTo(17.5f, 7.25f) - lineTo(17.5f, 8.0f) - horizontalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(16.0f, 6.5f) - horizontalLineToRelative(0.75f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(20.06f, 16.88f) - lineTo(21.15f, 17.97f) - curveToRelative(0.53f, -0.77f, 0.85f, -1.71f, 0.85f, -2.72f) - lineTo(22.0f, 10.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -1.5f, -2.6f) - verticalLineToRelative(7.85f) - curveToRelative(0.0f, 0.6f, -0.16f, 1.15f, -0.44f, 1.63f) - close() - } - } - return _moneyOff!! - } - -private var _moneyOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MoreCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MoreCircle.kt deleted file mode 100644 index 3e77d730..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MoreCircle.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MoreCircle: ImageVector - get() { - if (_moreCircle != null) { - return _moreCircle!! - } - _moreCircle = fluentIcon(name = "Regular.MoreCircle") { - fluentPath { - moveTo(20.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, -17.0f, 0.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 17.0f, 0.0f) - close() - moveTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, -20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 20.0f, 0.0f) - close() - moveTo(7.0f, 13.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - moveTo(12.0f, 13.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - moveTo(17.0f, 13.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - close() - } - } - return _moreCircle!! - } - -private var _moreCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MoviesAndTv.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MoviesAndTv.kt deleted file mode 100644 index f962cc43..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MoviesAndTv.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MoviesAndTv: ImageVector - get() { - if (_moviesAndTv != null) { - return _moviesAndTv!! - } - _moviesAndTv = fluentIcon(name = "Regular.MoviesAndTv") { - fluentPath { - moveToRelative(19.73f, 3.92f) - lineToRelative(0.05f, 0.16f) - lineToRelative(0.55f, 1.92f) - curveToRelative(0.1f, 0.36f, -0.08f, 0.74f, -0.42f, 0.9f) - lineToRelative(-0.1f, 0.03f) - lineTo(9.1f, 10.0f) - horizontalLineToRelative(11.16f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.29f, 0.74f, 0.65f) - verticalLineToRelative(8.6f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.43f, 22.0f) - lineTo(5.75f, 22.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.74f, -2.58f) - lineTo(3.0f, 19.25f) - verticalLineToRelative(-8.4f) - lineToRelative(-0.52f, -1.81f) - curveToRelative(-0.4f, -1.4f, 0.36f, -2.87f, 1.72f, -3.35f) - lineToRelative(0.16f, -0.05f) - lineToRelative(12.02f, -3.45f) - curveToRelative(1.4f, -0.4f, 2.87f, 0.37f, 3.35f, 1.73f) - close() - moveTo(19.5f, 11.5f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(7.75f) - curveToRelative(0.0f, 0.6f, 0.43f, 1.1f, 1.0f, 1.23f) - lineToRelative(0.12f, 0.01f) - lineToRelative(0.13f, 0.01f) - horizontalLineToRelative(12.5f) - curveToRelative(0.65f, 0.0f, 1.18f, -0.5f, 1.24f, -1.12f) - lineTo(19.49f, 11.5f) - close() - moveTo(6.27f, 6.65f) - lineToRelative(-1.5f, 0.43f) - curveToRelative(-0.61f, 0.18f, -1.0f, 0.8f, -0.88f, 1.42f) - lineToRelative(0.03f, 0.12f) - lineToRelative(0.34f, 1.2f) - lineToRelative(0.3f, -0.08f) - lineToRelative(1.71f, -3.1f) - close() - moveTo(11.03f, 5.29f) - lineTo(8.31f, 6.06f) - lineTo(6.6f, 9.16f) - lineTo(9.32f, 8.38f) - lineTo(11.02f, 5.28f) - close() - moveTo(15.79f, 3.92f) - lineTo(13.07f, 4.7f) - lineTo(11.36f, 7.8f) - lineTo(14.07f, 7.0f) - lineToRelative(1.72f, -3.09f) - close() - moveTo(17.63f, 3.69f) - lineTo(16.11f, 6.43f) - lineTo(18.68f, 5.69f) - lineTo(18.34f, 4.49f) - curveToRelative(-0.1f, -0.37f, -0.38f, -0.66f, -0.7f, -0.8f) - close() - } - } - return _moviesAndTv!! - } - -private var _moviesAndTv: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Multiplier12X.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Multiplier12X.kt deleted file mode 100644 index 492df580..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Multiplier12X.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Multiplier12X: ImageVector - get() { - if (_multiplier12X != null) { - return _multiplier12X!! - } - _multiplier12X = fluentIcon(name = "Regular.Multiplier12X") { - fluentPath { - moveTo(5.45f, 7.03f) - curveToRelative(0.33f, 0.09f, 0.55f, 0.38f, 0.55f, 0.72f) - verticalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(4.5f, 9.83f) - curveToRelative(-0.38f, 0.37f, -0.84f, 0.75f, -1.36f, 1.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.78f, -1.28f) - arcTo(6.88f, 6.88f, 0.0f, false, false, 4.6f, 7.37f) - verticalLineToRelative(-0.01f) - horizontalLineToRelative(0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.84f, -0.33f) - close() - moveTo(10.42f, 10.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.83f, -0.68f) - lineToRelative(0.03f, -0.12f) - curveToRelative(0.03f, -0.1f, 0.1f, -0.25f, 0.2f, -0.38f) - curveToRelative(0.17f, -0.25f, 0.53f, -0.57f, 1.37f, -0.57f) - curveToRelative(0.77f, 0.0f, 1.2f, 0.24f, 1.42f, 0.52f) - curveToRelative(0.24f, 0.3f, 0.38f, 0.8f, 0.24f, 1.6f) - curveToRelative(-0.07f, 0.44f, -0.28f, 0.7f, -0.61f, 0.9f) - arcToRelative(5.7f, 5.7f, 0.0f, false, true, -0.98f, 0.48f) - lineToRelative(-0.52f, 0.22f) - curveToRelative(-0.6f, 0.26f, -1.28f, 0.61f, -1.8f, 1.26f) - arcToRelative(4.23f, 4.23f, 0.0f, false, false, -0.85f, 2.77f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, 0.75f) - horizontalLineToRelative(4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.94f) - curveToRelative(0.08f, -0.5f, 0.25f, -0.83f, 0.45f, -1.07f) - curveToRelative(0.29f, -0.36f, 0.7f, -0.6f, 1.24f, -0.84f) - lineToRelative(0.37f, -0.15f) - curveToRelative(0.43f, -0.18f, 0.94f, -0.39f, 1.35f, -0.66f) - curveToRelative(0.6f, -0.4f, 1.1f, -0.98f, 1.27f, -1.9f) - curveToRelative(0.18f, -1.05f, 0.05f, -2.04f, -0.54f, -2.79f) - curveToRelative(-0.6f, -0.75f, -1.52f, -1.09f, -2.6f, -1.09f) - curveToRelative(-1.32f, 0.0f, -2.13f, 0.55f, -2.6f, 1.18f) - arcToRelative(2.86f, 2.86f, 0.0f, false, false, -0.5f, 1.22f) - verticalLineToRelative(0.01f) - reflectiveCurveToRelative(-0.04f, 0.4f, 0.0f, 0.0f) - curveToRelative(-0.04f, 0.42f, 0.26f, 0.8f, 0.67f, 0.84f) - close() - moveTo(18.28f, 12.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(1.22f, 1.22f) - lineToRelative(-1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineToRelative(1.22f, -1.22f) - lineToRelative(1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineToRelative(-1.22f, -1.22f) - lineToRelative(1.22f, -1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-1.22f, 1.22f) - lineToRelative(-1.22f, -1.22f) - close() - moveTo(8.5f, 16.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - } - } - return _multiplier12X!! - } - -private var _multiplier12X: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Multiplier15X.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Multiplier15X.kt deleted file mode 100644 index 08a3a409..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Multiplier15X.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Multiplier15X: ImageVector - get() { - if (_multiplier15X != null) { - return _multiplier15X!! - } - _multiplier15X = fluentIcon(name = "Regular.Multiplier15X") { - fluentPath { - moveTo(5.45f, 7.03f) - curveToRelative(0.33f, 0.09f, 0.55f, 0.38f, 0.55f, 0.72f) - verticalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(4.5f, 9.83f) - curveToRelative(-0.38f, 0.37f, -0.84f, 0.75f, -1.36f, 1.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.78f, -1.28f) - arcTo(6.88f, 6.88f, 0.0f, false, false, 4.6f, 7.37f) - verticalLineToRelative(-0.01f) - horizontalLineToRelative(0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.84f, -0.33f) - close() - moveTo(10.75f, 7.0f) - curveToRelative(-0.4f, 0.0f, -0.72f, 0.3f, -0.75f, 0.7f) - lineToRelative(-0.25f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.86f, 0.8f) - lineToRelative(2.2f, -0.32f) - arcToRelative(1.92f, 1.92f, 0.0f, true, true, 0.27f, 3.82f) - horizontalLineToRelative(-0.36f) - curveToRelative(-0.64f, 0.0f, -1.25f, -0.27f, -1.68f, -0.75f) - lineToRelative(-0.23f, -0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.12f, 1.0f) - lineToRelative(0.24f, 0.26f) - arcToRelative(3.78f, 3.78f, 0.0f, false, false, 2.8f, 1.24f) - horizontalLineToRelative(0.35f) - arcToRelative(3.42f, 3.42f, 0.0f, true, false, -0.48f, -6.8f) - lineToRelative(-1.29f, 0.18f) - lineToRelative(0.14f, -2.13f) - horizontalLineToRelative(3.8f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - close() - moveTo(18.28f, 12.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(1.22f, 1.22f) - lineToRelative(-1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(1.22f, -1.22f) - lineToRelative(1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineToRelative(-1.22f, -1.22f) - lineToRelative(1.22f, -1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-1.22f, 1.22f) - lineToRelative(-1.22f, -1.22f) - close() - moveTo(8.5f, 16.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - } - } - return _multiplier15X!! - } - -private var _multiplier15X: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Multiplier18X.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Multiplier18X.kt deleted file mode 100644 index 769591df..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Multiplier18X.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Multiplier18X: ImageVector - get() { - if (_multiplier18X != null) { - return _multiplier18X!! - } - _multiplier18X = fluentIcon(name = "Regular.Multiplier18X") { - fluentPath { - moveTo(16.0f, 9.5f) - arcToRelative(2.6f, 2.6f, 0.0f, false, true, -0.86f, 1.93f) - curveToRelative(0.82f, 0.58f, 1.36f, 1.5f, 1.36f, 2.57f) - curveToRelative(0.0f, 1.86f, -1.64f, 3.25f, -3.5f, 3.25f) - reflectiveCurveTo(9.5f, 15.86f, 9.5f, 14.0f) - curveToRelative(0.0f, -1.07f, 0.54f, -1.99f, 1.36f, -2.57f) - arcTo(2.6f, 2.6f, 0.0f, false, true, 10.0f, 9.5f) - curveToRelative(0.0f, -1.6f, 1.43f, -2.75f, 3.0f, -2.75f) - reflectiveCurveToRelative(3.0f, 1.15f, 3.0f, 2.75f) - close() - moveTo(13.0f, 8.25f) - curveToRelative(-0.91f, 0.0f, -1.5f, 0.64f, -1.5f, 1.25f) - reflectiveCurveToRelative(0.59f, 1.25f, 1.5f, 1.25f) - reflectiveCurveToRelative(1.5f, -0.64f, 1.5f, -1.25f) - reflectiveCurveToRelative(-0.59f, -1.25f, -1.5f, -1.25f) - close() - moveTo(11.0f, 14.0f) - curveToRelative(0.0f, 0.9f, 0.83f, 1.75f, 2.0f, 1.75f) - reflectiveCurveToRelative(2.0f, -0.85f, 2.0f, -1.75f) - reflectiveCurveToRelative(-0.83f, -1.75f, -2.0f, -1.75f) - reflectiveCurveToRelative(-2.0f, 0.85f, -2.0f, 1.75f) - close() - moveTo(18.28f, 12.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(1.22f, 1.22f) - lineToRelative(-1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(1.22f, -1.22f) - lineToRelative(1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineToRelative(-1.22f, -1.22f) - lineToRelative(1.22f, -1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-1.22f, 1.22f) - lineToRelative(-1.22f, -1.22f) - close() - moveTo(8.5f, 16.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(5.45f, 7.03f) - curveToRelative(0.33f, 0.09f, 0.55f, 0.38f, 0.55f, 0.72f) - verticalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(4.5f, 9.83f) - curveToRelative(-0.38f, 0.37f, -0.84f, 0.75f, -1.36f, 1.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.78f, -1.28f) - arcTo(6.88f, 6.88f, 0.0f, false, false, 4.6f, 7.37f) - verticalLineToRelative(-0.01f) - horizontalLineToRelative(0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.84f, -0.33f) - close() - } - } - return _multiplier18X!! - } - -private var _multiplier18X: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Multiplier1X.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Multiplier1X.kt deleted file mode 100644 index 197e4512..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Multiplier1X.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Multiplier1X: ImageVector - get() { - if (_multiplier1X != null) { - return _multiplier1X!! - } - _multiplier1X = fluentIcon(name = "Regular.Multiplier1X") { - fluentPath { - moveTo(10.0f, 7.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.39f, -0.4f) - verticalLineToRelative(0.01f) - arcToRelative(3.07f, 3.07f, 0.0f, false, true, -0.15f, 0.22f) - arcToRelative(6.88f, 6.88f, 0.0f, false, true, -2.1f, 2.03f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.78f, 1.28f) - curveToRelative(0.52f, -0.31f, 0.98f, -0.69f, 1.36f, -1.06f) - verticalLineToRelative(6.42f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-8.5f) - close() - moveTo(13.28f, 12.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(1.22f, 1.22f) - lineToRelative(-1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(1.22f, -1.22f) - lineToRelative(1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineToRelative(-1.22f, -1.22f) - lineToRelative(1.22f, -1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-1.22f, 1.22f) - lineToRelative(-1.22f, -1.22f) - close() - } - } - return _multiplier1X!! - } - -private var _multiplier1X: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Multiplier2X.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Multiplier2X.kt deleted file mode 100644 index b9624bc1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Multiplier2X.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Multiplier2X: ImageVector - get() { - if (_multiplier2X != null) { - return _multiplier2X!! - } - _multiplier2X = fluentIcon(name = "Regular.Multiplier2X") { - fluentPath { - moveTo(6.16f, 10.24f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 7.0f, 9.58f) - lineToRelative(0.03f, -0.12f) - curveToRelative(0.03f, -0.1f, 0.1f, -0.25f, 0.2f, -0.4f) - curveToRelative(0.18f, -0.24f, 0.55f, -0.56f, 1.39f, -0.56f) - curveToRelative(0.77f, 0.0f, 1.28f, 0.24f, 1.57f, 0.56f) - curveToRelative(0.28f, 0.3f, 0.45f, 0.8f, 0.32f, 1.56f) - curveToRelative(-0.07f, 0.43f, -0.28f, 0.68f, -0.64f, 0.9f) - curveToRelative(-0.3f, 0.19f, -0.63f, 0.32f, -1.04f, 0.48f) - lineToRelative(-0.54f, 0.21f) - curveToRelative(-0.62f, 0.26f, -1.34f, 0.61f, -1.9f, 1.26f) - arcToRelative(4.1f, 4.1f, 0.0f, false, false, -0.89f, 2.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, 0.75f) - horizontalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(7.06f, 15.5f) - curveToRelative(0.1f, -0.5f, 0.27f, -0.82f, 0.47f, -1.06f) - curveToRelative(0.32f, -0.36f, 0.76f, -0.6f, 1.33f, -0.84f) - lineToRelative(0.4f, -0.16f) - curveToRelative(0.45f, -0.17f, 0.98f, -0.38f, 1.4f, -0.65f) - curveToRelative(0.63f, -0.39f, 1.17f, -0.97f, 1.33f, -1.91f) - curveToRelative(0.19f, -1.1f, -0.03f, -2.1f, -0.69f, -2.83f) - arcTo(3.52f, 3.52f, 0.0f, false, false, 8.62f, 7.0f) - curveToRelative(-1.32f, 0.0f, -2.14f, 0.55f, -2.6f, 1.18f) - arcToRelative(2.88f, 2.88f, 0.0f, false, false, -0.51f, 1.21f) - verticalLineToRelative(0.02f) - reflectiveCurveToRelative(-0.05f, 0.39f, 0.0f, 0.0f) - curveToRelative(-0.05f, 0.41f, 0.24f, 0.79f, 0.65f, 0.83f) - close() - moveTo(14.28f, 12.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(1.22f, 1.22f) - lineToRelative(-1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(1.22f, -1.22f) - lineToRelative(1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-1.22f, -1.22f) - lineToRelative(1.22f, -1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-1.22f, 1.22f) - lineToRelative(-1.22f, -1.22f) - close() - } - } - return _multiplier2X!! - } - -private var _multiplier2X: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Multiplier5X.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Multiplier5X.kt deleted file mode 100644 index d3af0967..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Multiplier5X.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Multiplier5X: ImageVector - get() { - if (_multiplier5X != null) { - return _multiplier5X!! - } - _multiplier5X = fluentIcon(name = "Regular.Multiplier5X") { - fluentPath { - moveTo(7.0f, 7.7f) - curveToRelative(0.03f, -0.4f, 0.36f, -0.7f, 0.75f, -0.7f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.8f) - lineToRelative(-0.14f, 2.13f) - lineToRelative(1.29f, -0.19f) - arcToRelative(3.42f, 3.42f, 0.0f, true, true, 0.48f, 6.81f) - horizontalLineToRelative(-0.36f) - arcToRelative(3.78f, 3.78f, 0.0f, false, true, -2.8f, -1.24f) - lineToRelative(-0.23f, -0.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.12f, -1.0f) - lineToRelative(0.23f, 0.25f) - curveToRelative(0.43f, 0.48f, 1.04f, 0.75f, 1.68f, 0.75f) - horizontalLineToRelative(0.36f) - arcToRelative(1.92f, 1.92f, 0.0f, true, false, -0.27f, -3.82f) - lineToRelative(-2.2f, 0.31f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.86f, -0.79f) - lineTo(7.0f, 7.7f) - close() - moveTo(14.22f, 12.22f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(1.22f, 1.22f) - lineToRelative(1.22f, -1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) - lineToRelative(-1.22f, 1.22f) - lineToRelative(1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-1.22f, -1.22f) - lineToRelative(-1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(1.22f, -1.22f) - lineToRelative(-1.22f, -1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - moveTo(4.75f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - } - } - return _multiplier5X!! - } - -private var _multiplier5X: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MultiselectLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MultiselectLtr.kt deleted file mode 100644 index 4e446e2f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MultiselectLtr.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MultiselectLtr: ImageVector - get() { - if (_multiselectLtr != null) { - return _multiselectLtr!! - } - _multiselectLtr = fluentIcon(name = "Regular.MultiselectLtr") { - fluentPath { - moveTo(6.78f, 4.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineTo(3.75f, 5.69f) - lineToRelative(-0.47f, -0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(1.0f, 1.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.5f, -2.5f) - close() - moveTo(9.75f, 18.01f) - horizontalLineToRelative(11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.49f) - lineTo(9.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - horizontalLineToRelative(0.1f) - close() - moveTo(9.75f, 11.5f) - horizontalLineToRelative(11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(9.75f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(9.75f, 5.0f) - horizontalLineToRelative(11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(9.75f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(6.78f, 16.72f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-2.5f, 2.5f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-1.0f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(0.47f, 0.47f) - lineToRelative(1.97f, -1.97f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - } - } - return _multiselectLtr!! - } - -private var _multiselectLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MultiselectRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MultiselectRtl.kt deleted file mode 100644 index 05446a07..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MultiselectRtl.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MultiselectRtl: ImageVector - get() { - if (_multiselectRtl != null) { - return _multiselectRtl!! - } - _multiselectRtl = fluentIcon(name = "Regular.MultiselectRtl") { - fluentPath { - moveTo(21.78f, 4.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineToRelative(-1.97f, 1.97f) - lineToRelative(-0.47f, -0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.0f, 1.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.5f, -2.5f) - close() - moveTo(2.75f, 18.01f) - horizontalLineToRelative(11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.49f) - lineTo(2.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - horizontalLineToRelative(0.1f) - close() - moveTo(2.75f, 11.5f) - horizontalLineToRelative(11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(2.75f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(2.75f, 5.0f) - horizontalLineToRelative(11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(2.75f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(21.78f, 16.72f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-2.5f, 2.5f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-1.0f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(0.47f, 0.47f) - lineToRelative(1.97f, -1.97f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - } - } - return _multiselectRtl!! - } - -private var _multiselectRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MusicNote1.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MusicNote1.kt deleted file mode 100644 index 753843ba..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MusicNote1.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MusicNote1: ImageVector - get() { - if (_musicNote1 != null) { - return _musicNote1!! - } - _musicNote1 = fluentIcon(name = "Regular.MusicNote1") { - fluentPath { - moveTo(11.51f, 2.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.01f, 0.7f) - verticalLineToRelative(12.13f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 1.5f, 3.37f) - lineTo(12.0f, 8.83f) - lineToRelative(6.99f, 2.62f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.01f, -0.7f) - lineTo(20.0f, 7.48f) - curveToRelative(0.0f, -1.35f, -0.84f, -2.56f, -2.1f, -3.04f) - lineToRelative(-6.39f, -2.4f) - close() - moveTo(10.5f, 18.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(18.5f, 9.67f) - lineTo(12.0f, 7.23f) - verticalLineToRelative(-3.4f) - lineToRelative(5.36f, 2.01f) - curveToRelative(0.69f, 0.26f, 1.14f, 0.91f, 1.14f, 1.64f) - verticalLineToRelative(2.19f) - close() - } - } - return _musicNote1!! - } - -private var _musicNote1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MusicNote2.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MusicNote2.kt deleted file mode 100644 index 3e97eedc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MusicNote2.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MusicNote2: ImageVector - get() { - if (_musicNote2 != null) { - return _musicNote2!! - } - _musicNote2 = fluentIcon(name = "Regular.MusicNote2") { - fluentPath { - moveTo(19.7f, 2.15f) - curveToRelative(0.19f, 0.14f, 0.3f, 0.36f, 0.3f, 0.6f) - lineTo(20.0f, 16.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, -1.5f, -2.87f) - lineTo(18.5f, 7.76f) - lineTo(10.0f, 10.3f) - verticalLineToRelative(8.19f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, -1.5f, -2.87f) - lineTo(8.5f, 5.75f) - curveToRelative(0.0f, -0.33f, 0.22f, -0.62f, 0.53f, -0.72f) - lineToRelative(10.0f, -3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.67f, 0.12f) - close() - moveTo(10.0f, 8.75f) - lineToRelative(8.5f, -2.56f) - lineTo(18.5f, 3.76f) - lineTo(10.0f, 6.3f) - verticalLineToRelative(2.43f) - close() - moveTo(6.5f, 16.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, -4.0f) - close() - moveTo(14.5f, 16.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -4.0f, 0.0f) - close() - } - } - return _musicNote2!! - } - -private var _musicNote2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MusicNoteOff1.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MusicNoteOff1.kt deleted file mode 100644 index dcf47f95..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MusicNoteOff1.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MusicNoteOff1: ImageVector - get() { - if (_musicNoteOff1 != null) { - return _musicNoteOff1!! - } - _musicNoteOff1 = fluentIcon(name = "Regular.MusicNoteOff1") { - fluentPath { - moveToRelative(12.0f, 13.06f) - lineToRelative(8.72f, 8.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(8.28f, 8.28f) - verticalLineToRelative(3.32f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 1.5f, 3.37f) - verticalLineToRelative(-5.19f) - close() - moveTo(10.5f, 18.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(18.99f, 11.45f) - lineTo(12.02f, 8.85f) - lineTo(10.5f, 7.32f) - lineTo(10.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.01f, -0.7f) - lineToRelative(6.38f, 2.39f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 20.0f, 7.48f) - verticalLineToRelative(3.27f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.01f, 0.7f) - close() - moveTo(18.5f, 9.67f) - lineTo(18.5f, 7.48f) - curveToRelative(0.0f, -0.73f, -0.45f, -1.38f, -1.14f, -1.64f) - lineToRelative(-5.36f, -2.0f) - verticalLineToRelative(3.39f) - lineToRelative(6.5f, 2.44f) - close() - } - } - return _musicNoteOff1!! - } - -private var _musicNoteOff1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MusicNoteOff2.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MusicNoteOff2.kt deleted file mode 100644 index d648c634..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MusicNoteOff2.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MusicNoteOff2: ImageVector - get() { - if (_musicNoteOff2 != null) { - return _musicNoteOff2!! - } - _musicNoteOff2 = fluentIcon(name = "Regular.MusicNoteOff2") { - fluentPath { - moveTo(8.5f, 9.56f) - verticalLineToRelative(6.07f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 1.5f, 2.62f) - verticalLineToRelative(-7.19f) - lineToRelative(3.55f, 3.55f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 4.84f, 4.84f) - lineToRelative(2.33f, 2.33f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(8.5f, 9.56f) - close() - moveTo(17.28f, 18.34f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.62f, -2.62f) - lineToRelative(2.62f, 2.62f) - close() - moveTo(6.5f, 16.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) - close() - moveTo(16.5f, 13.0f) - lineTo(16.2f, 13.01f) - lineTo(19.99f, 16.81f) - arcToRelative(3.54f, 3.54f, 0.0f, false, false, 0.01f, -0.56f) - lineTo(20.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, -0.72f) - lineToRelative(-10.0f, 3.0f) - curveToRelative(-0.2f, 0.06f, -0.35f, 0.2f, -0.44f, 0.37f) - lineTo(10.0f, 6.82f) - lineTo(10.0f, 6.3f) - lineToRelative(8.5f, -2.55f) - verticalLineToRelative(2.43f) - lineToRelative(-7.02f, 2.1f) - lineToRelative(1.2f, 1.21f) - lineToRelative(5.82f, -1.74f) - verticalLineToRelative(5.87f) - arcToRelative(3.48f, 3.48f, 0.0f, false, false, -2.0f, -0.63f) - close() - } - } - return _musicNoteOff2!! - } - -private var _musicNoteOff2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MyLocation.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MyLocation.kt deleted file mode 100644 index aa99cdf0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/MyLocation.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.MyLocation: ImageVector - get() { - if (_myLocation != null) { - return _myLocation!! - } - _myLocation = fluentIcon(name = "Regular.MyLocation") { - fluentPath { - moveTo(12.0f, 2.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.79f) - arcToRelative(7.5f, 7.5f, 0.0f, false, true, 6.71f, 6.71f) - horizontalLineToRelative(1.79f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(19.46f, 12.75f) - arcToRelative(7.5f, 7.5f, 0.0f, false, true, -6.71f, 6.71f) - verticalLineToRelative(1.79f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(11.25f, 19.46f) - arcToRelative(7.5f, 7.5f, 0.0f, false, true, -6.71f, -6.71f) - lineTo(2.75f, 12.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(4.54f, 11.25f) - arcToRelative(7.5f, 7.5f, 0.0f, false, true, 6.71f, -6.71f) - lineTo(11.25f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(12.0f, 6.0f) - arcToRelative(6.0f, 6.0f, 0.0f, true, false, 0.0f, 12.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, 0.0f, -12.0f) - close() - moveTo(12.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, 0.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, -8.0f) - close() - } - } - return _myLocation!! - } - -private var _myLocation: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NavigationUnread.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NavigationUnread.kt deleted file mode 100644 index 6ec531c0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NavigationUnread.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.NavigationUnread: ImageVector - get() { - if (_navigationUnread != null) { - return _navigationUnread!! - } - _navigationUnread = fluentIcon(name = "Regular.NavigationUnread") { - fluentPath { - moveTo(19.25f, 8.5f) - arcToRelative(2.75f, 2.75f, 0.0f, true, false, 0.0f, -5.5f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 0.0f, 5.5f) - close() - moveTo(15.58f, 6.5f) - arcToRelative(3.77f, 3.77f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(2.74f, 5.0f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(12.83f) - close() - moveTo(21.25f, 18.0f) - lineTo(2.65f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(18.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(2.75f, 11.5f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(2.75f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - horizontalLineToRelative(0.1f) - close() - } - } - return _navigationUnread!! - } - -private var _navigationUnread: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NetworkCheck.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NetworkCheck.kt deleted file mode 100644 index c035650e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NetworkCheck.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.NetworkCheck: ImageVector - get() { - if (_networkCheck != null) { - return _networkCheck!! - } - _networkCheck = fluentIcon(name = "Regular.NetworkCheck") { - fluentPath { - moveToRelative(10.05f, 15.42f) - lineToRelative(6.26f, -8.48f) - arcToRelative(0.7f, 0.7f, 0.0f, false, true, 1.23f, 0.57f) - lineToRelative(-0.03f, 0.1f) - lineToRelative(-3.87f, 9.8f) - arcToRelative(2.07f, 2.07f, 0.0f, true, true, -3.74f, -1.76f) - lineToRelative(0.07f, -0.12f) - lineToRelative(0.08f, -0.11f) - lineToRelative(6.26f, -8.48f) - lineToRelative(-6.26f, 8.48f) - close() - moveTo(13.85f, 12.8f) - lineTo(11.25f, 16.31f) - lineTo(11.22f, 16.37f) - arcToRelative(0.57f, 0.57f, 0.0f, false, false, 0.22f, 0.78f) - lineToRelative(0.07f, 0.03f) - curveToRelative(0.26f, 0.1f, 0.55f, 0.0f, 0.7f, -0.24f) - lineToRelative(0.04f, -0.08f) - lineToRelative(1.6f, -4.06f) - close() - moveTo(12.1f, 10.87f) - lineTo(10.87f, 12.53f) - arcToRelative(3.33f, 3.33f, 0.0f, false, false, -2.29f, 3.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, -0.07f) - arcToRelative(4.82f, 4.82f, 0.0f, false, true, 5.02f, -4.62f) - close() - moveTo(16.27f, 13.62f) - curveToRelative(0.28f, 0.59f, 0.43f, 1.22f, 0.46f, 1.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.38f, 0.44f) - lineToRelative(0.92f, -2.3f) - close() - moveTo(14.03f, 8.25f) - lineTo(13.07f, 9.56f) - arcToRelative(6.22f, 6.22f, 0.0f, false, false, -7.16f, 4.41f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.44f, -0.4f) - arcToRelative(7.7f, 7.7f, 0.0f, false, true, 9.56f, -5.32f) - close() - moveTo(17.54f, 10.39f) - arcToRelative(7.66f, 7.66f, 0.0f, false, true, 1.8f, 3.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.44f, 0.42f) - arcToRelative(6.23f, 6.23f, 0.0f, false, false, -0.88f, -1.84f) - lineToRelative(-0.1f, -0.14f) - lineToRelative(0.62f, -1.59f) - close() - moveTo(15.98f, 5.85f) - lineTo(15.89f, 5.91f) - curveToRelative(-0.12f, 0.08f, -0.23f, 0.18f, -0.33f, 0.3f) - lineToRelative(-0.1f, 0.11f) - lineToRelative(-0.54f, 0.73f) - arcToRelative(9.14f, 9.14f, 0.0f, false, false, -11.54f, 5.32f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.4f, -0.54f) - arcToRelative(10.64f, 10.64f, 0.0f, false, true, 14.0f, -5.97f) - close() - moveTo(18.61f, 7.41f) - arcToRelative(10.65f, 10.65f, 0.0f, false, true, 3.22f, 4.41f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.4f, 0.55f) - arcToRelative(9.17f, 9.17f, 0.0f, false, false, -2.32f, -3.4f) - lineToRelative(0.38f, -0.97f) - curveToRelative(0.07f, -0.2f, 0.11f, -0.39f, 0.12f, -0.59f) - close() - } - } - return _networkCheck!! - } - -private var _networkCheck: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/New.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/New.kt deleted file mode 100644 index 97d46862..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/New.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.New: ImageVector - get() { - if (_new != null) { - return _new!! - } - _new = fluentIcon(name = "Regular.New") { - fluentPath { - moveTo(18.25f, 4.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(4.0f, 18.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(8.28f, 7.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(6.5f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-6.5f, -6.5f) - close() - } - } - return _new!! - } - -private var _new: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/News.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/News.kt deleted file mode 100644 index 118848b3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/News.kt +++ /dev/null @@ -1,107 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.News: ImageVector - get() { - if (_news != null) { - return _news!! - } - _news = fluentIcon(name = "Regular.News") { - fluentPath { - moveTo(18.75f, 20.0f) - lineTo(5.25f, 20.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 16.75f) - lineTo(2.0f, 6.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(4.25f, 4.0f) - horizontalLineToRelative(12.5f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - lineTo(19.0f, 7.0f) - horizontalLineToRelative(0.75f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(7.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(5.25f, 20.0f) - horizontalLineToRelative(13.5f) - close() - moveTo(5.25f, 18.5f) - horizontalLineToRelative(13.5f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - verticalLineToRelative(-7.5f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - lineTo(19.0f, 8.5f) - verticalLineToRelative(7.75f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-10.0f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - lineTo(4.25f, 5.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(13.5f) - horizontalLineToRelative(-13.5f) - close() - moveTo(12.25f, 14.5f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-3.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(3.1f) - horizontalLineToRelative(-3.0f) - close() - moveTo(9.25f, 11.0f) - curveToRelative(0.4f, 0.0f, 0.74f, 0.34f, 0.74f, 0.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.41f, -0.33f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.75f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - close() - moveTo(8.49f, 12.5f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(12.25f, 11.0f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-3.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - horizontalLineToRelative(3.1f) - horizontalLineToRelative(-3.0f) - close() - moveTo(5.75f, 7.5f) - horizontalLineToRelative(9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-9.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(9.6f) - horizontalLineToRelative(-9.5f) - close() - } - } - return _news!! - } - -private var _news: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Next.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Next.kt deleted file mode 100644 index de171494..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Next.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Next: ImageVector - get() { - if (_next != null) { - return _next!! - } - _next = fluentIcon(name = "Regular.Next") { - fluentPath { - moveTo(3.0f, 4.75f) - curveToRelative(0.0f, -1.4f, 1.58f, -2.24f, 2.74f, -1.44f) - lineToRelative(10.5f, 7.2f) - curveToRelative(1.0f, 0.68f, 1.01f, 2.17f, 0.0f, 2.87f) - lineToRelative(-10.5f, 7.3f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 3.0f, 19.25f) - lineTo(3.0f, 4.75f) - close() - moveTo(4.9f, 4.55f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.4f, 0.2f) - verticalLineToRelative(14.5f) - curveToRelative(0.0f, 0.2f, 0.23f, 0.32f, 0.4f, 0.2f) - lineToRelative(10.5f, -7.3f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.01f, -0.41f) - lineToRelative(-10.5f, -7.2f) - close() - moveTo(21.0f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(21.0f, 3.75f) - close() - } - } - return _next!! - } - -private var _next: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Note.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Note.kt deleted file mode 100644 index e73c34a6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Note.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Note: ImageVector - get() { - if (_note != null) { - return _note!! - } - _note = fluentIcon(name = "Regular.Note") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(6.88f) - curveToRelative(0.0f, 0.6f, -0.24f, 1.17f, -0.66f, 1.59f) - lineToRelative(-5.62f, 5.62f) - curveToRelative(-0.42f, 0.42f, -1.0f, 0.66f, -1.6f, 0.66f) - lineTo(6.26f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(13.0f, 19.5f) - verticalLineToRelative(-3.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineToRelative(0.18f, -0.01f) - horizontalLineToRelative(3.25f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(18.44f, 14.5f) - horizontalLineToRelative(-2.19f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - lineToRelative(-0.01f, 0.15f) - verticalLineToRelative(2.19f) - lineToRelative(3.94f, -3.94f) - close() - } - } - return _note!! - } - -private var _note: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NoteAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NoteAdd.kt deleted file mode 100644 index 378a7945..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NoteAdd.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.NoteAdd: ImageVector - get() { - if (_noteAdd != null) { - return _noteAdd!! - } - _noteAdd = fluentIcon(name = "Regular.NoteAdd") { - fluentPath { - moveTo(12.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(7.0f, 7.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - lineTo(6.0f, 7.0f) - lineTo(3.5f, 7.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(6.0f, 6.0f) - lineTo(6.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - lineTo(7.0f, 6.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(7.0f, 7.0f) - close() - moveTo(17.75f, 4.5f) - horizontalLineToRelative(-5.06f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, -0.71f, -1.5f) - horizontalLineToRelative(5.77f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(6.88f) - curveToRelative(0.0f, 0.6f, -0.24f, 1.17f, -0.66f, 1.59f) - lineToRelative(-5.62f, 5.62f) - curveToRelative(-0.42f, 0.42f, -1.0f, 0.66f, -1.6f, 0.66f) - lineTo(6.26f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - verticalLineToRelative(-5.77f) - curveToRelative(0.46f, 0.3f, 0.97f, 0.53f, 1.5f, 0.7f) - verticalLineToRelative(5.07f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(13.0f, 19.5f) - verticalLineToRelative(-3.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineToRelative(0.18f, -0.01f) - horizontalLineToRelative(3.25f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(18.44f, 14.5f) - horizontalLineToRelative(-2.19f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - lineToRelative(-0.01f, 0.15f) - verticalLineToRelative(2.19f) - lineToRelative(3.94f, -3.94f) - close() - } - } - return _noteAdd!! - } - -private var _noteAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NoteEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NoteEdit.kt deleted file mode 100644 index 7977bdcf..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NoteEdit.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.NoteEdit: ImageVector - get() { - if (_noteEdit != null) { - return _noteEdit!! - } - _noteEdit = fluentIcon(name = "Regular.NoteEdit") { - fluentPath { - moveTo(3.0f, 17.75f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(4.92f) - lineToRelative(0.35f, -1.42f) - lineToRelative(0.02f, -0.08f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 11.0f) - horizontalLineToRelative(3.43f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 11.0f, 7.74f) - lineTo(11.0f, 4.5f) - horizontalLineToRelative(6.75f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.98f) - curveToRelative(0.48f, -0.19f, 1.0f, -0.26f, 1.5f, -0.22f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - horizontalLineToRelative(-6.88f) - curveToRelative(-0.6f, 0.0f, -1.17f, 0.24f, -1.59f, 0.66f) - lineTo(3.66f, 9.28f) - curveToRelative(-0.42f, 0.42f, -0.66f, 1.0f, -0.66f, 1.6f) - verticalLineToRelative(6.87f) - close() - moveTo(7.75f, 9.5f) - lineTo(5.56f, 9.5f) - lineTo(9.5f, 5.56f) - lineTo(9.5f, 7.9f) - curveToRelative(-0.08f, 0.9f, -0.83f, 1.61f, -1.75f, 1.61f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _noteEdit!! - } - -private var _noteEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Notebook.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Notebook.kt deleted file mode 100644 index 29d6f630..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Notebook.kt +++ /dev/null @@ -1,94 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Notebook: ImageVector - get() { - if (_notebook != null) { - return _notebook!! - } - _notebook = fluentIcon(name = "Regular.Notebook") { - fluentPath { - moveTo(16.75f, 2.0f) - curveTo(17.99f, 2.0f, 19.0f, 3.0f, 19.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(10.5f) - close() - moveTo(16.75f, 3.5f) - lineTo(6.25f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(10.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(17.5f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(20.0f, 15.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 18.0f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(0.75f) - lineTo(20.0f, 15.0f) - close() - moveTo(20.0f, 11.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 14.0f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(0.75f) - lineTo(20.0f, 11.0f) - close() - moveTo(20.0f, 7.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 10.0f) - lineTo(20.0f, 7.0f) - horizontalLineToRelative(0.75f) - lineTo(20.0f, 7.0f) - close() - moveTo(15.25f, 5.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-7.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 8.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.5f) - close() - moveTo(14.5f, 6.5f) - horizontalLineToRelative(-6.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(-1.0f) - close() - } - } - return _notebook!! - } - -private var _notebook: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NotebookAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NotebookAdd.kt deleted file mode 100644 index a3f13ad7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NotebookAdd.kt +++ /dev/null @@ -1,114 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.NotebookAdd: ImageVector - get() { - if (_notebookAdd != null) { - return _notebookAdd!! - } - _notebookAdd = fluentIcon(name = "Regular.NotebookAdd") { - fluentPath { - moveTo(16.75f, 2.0f) - curveTo(17.99f, 2.0f, 19.0f, 3.0f, 19.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-5.56f) - curveToRelative(0.43f, -0.44f, 0.8f, -0.95f, 1.08f, -1.5f) - horizontalLineToRelative(4.48f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineTo(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineTo(6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.83f) - curveToRelative(-0.52f, 0.08f, -1.03f, 0.22f, -1.5f, 0.42f) - verticalLineTo(4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(10.5f) - close() - } - fluentPath { - moveTo(20.0f, 15.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineTo(20.0f) - verticalLineToRelative(-3.0f) - close() - } - fluentPath { - moveTo(20.0f, 11.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineTo(20.0f) - verticalLineToRelative(-3.0f) - close() - } - fluentPath { - moveTo(20.0f, 7.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineTo(20.0f) - verticalLineTo(7.0f) - close() - } - fluentPath { - moveTo(15.25f, 5.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-7.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 8.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.5f) - close() - moveTo(14.5f, 6.5f) - horizontalLineToRelative(-6.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(-1.0f) - close() - } - fluentPath { - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(7.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - verticalLineTo(18.0f) - horizontalLineTo(3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineTo(6.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - verticalLineTo(17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineTo(7.0f) - close() - } - } - return _notebookAdd!! - } - -private var _notebookAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NotebookError.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NotebookError.kt deleted file mode 100644 index e75b74b7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NotebookError.kt +++ /dev/null @@ -1,101 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.NotebookError: ImageVector - get() { - if (_notebookError != null) { - return _notebookError!! - } - _notebookError = fluentIcon(name = "Regular.NotebookError") { - fluentPath { - moveTo(6.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(16.75f, 2.0f) - curveTo(17.99f, 2.0f, 19.0f, 3.0f, 19.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-5.56f) - curveToRelative(0.43f, -0.44f, 0.79f, -0.95f, 1.08f, -1.5f) - horizontalLineToRelative(4.48f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(17.5f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(6.25f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.83f) - curveToRelative(-0.52f, 0.08f, -1.03f, 0.22f, -1.5f, 0.42f) - lineTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(10.5f) - close() - moveTo(6.5f, 19.88f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, 1.25f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, -1.25f) - close() - moveTo(6.5f, 14.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.41f) - verticalLineToRelative(4.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-4.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.4f) - close() - moveTo(20.75f, 15.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 18.0f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(0.75f) - close() - moveTo(20.75f, 11.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 14.0f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(0.75f) - close() - moveTo(20.75f, 7.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 10.0f) - lineTo(20.0f, 7.0f) - horizontalLineToRelative(0.75f) - close() - moveTo(15.25f, 5.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-7.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 8.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.5f) - close() - moveTo(14.5f, 6.5f) - horizontalLineToRelative(-6.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(-1.0f) - close() - } - } - return _notebookError!! - } - -private var _notebookError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NotebookLightning.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NotebookLightning.kt deleted file mode 100644 index bbe368b9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NotebookLightning.kt +++ /dev/null @@ -1,104 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.NotebookLightning: ImageVector - get() { - if (_notebookLightning != null) { - return _notebookLightning!! - } - _notebookLightning = fluentIcon(name = "Regular.NotebookLightning") { - fluentPath { - moveTo(6.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(16.75f, 2.0f) - curveTo(17.99f, 2.0f, 19.0f, 3.0f, 19.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-5.56f) - curveToRelative(0.43f, -0.44f, 0.79f, -0.95f, 1.08f, -1.5f) - horizontalLineToRelative(4.48f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(17.5f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(6.25f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.83f) - curveToRelative(-0.52f, 0.08f, -1.03f, 0.22f, -1.5f, 0.42f) - lineTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(10.5f) - close() - moveTo(7.5f, 14.0f) - lineTo(6.0f, 14.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.47f, 0.34f) - lineToRelative(-1.0f, 3.0f) - arcTo(0.5f, 0.5f, 0.0f, false, false, 5.0f, 18.0f) - horizontalLineToRelative(0.8f) - lineToRelative(-0.77f, 2.34f) - curveToRelative(-0.2f, 0.56f, 0.58f, 0.92f, 0.9f, 0.42f) - lineToRelative(2.5f, -4.0f) - arcTo(0.5f, 0.5f, 0.0f, false, false, 8.0f, 16.0f) - horizontalLineToRelative(-0.45f) - lineToRelative(0.43f, -1.35f) - arcTo(0.5f, 0.5f, 0.0f, false, false, 7.5f, 14.0f) - close() - moveTo(20.75f, 15.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 18.0f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(0.75f) - close() - moveTo(20.75f, 11.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 14.0f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(0.75f) - close() - moveTo(20.75f, 7.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 10.0f) - lineTo(20.0f, 7.0f) - horizontalLineToRelative(0.75f) - close() - moveTo(15.25f, 5.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-7.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 8.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.5f) - close() - moveTo(14.5f, 6.5f) - horizontalLineToRelative(-6.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(-1.0f) - close() - } - } - return _notebookLightning!! - } - -private var _notebookLightning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NotebookQuestionMark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NotebookQuestionMark.kt deleted file mode 100644 index c316cf65..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NotebookQuestionMark.kt +++ /dev/null @@ -1,110 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.NotebookQuestionMark: ImageVector - get() { - if (_notebookQuestionMark != null) { - return _notebookQuestionMark!! - } - _notebookQuestionMark = fluentIcon(name = "Regular.NotebookQuestionMark") { - fluentPath { - moveTo(6.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(16.75f, 2.0f) - curveTo(17.99f, 2.0f, 19.0f, 3.0f, 19.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-5.56f) - curveToRelative(0.43f, -0.44f, 0.79f, -0.95f, 1.08f, -1.5f) - horizontalLineToRelative(4.48f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(17.5f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(6.25f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.83f) - curveToRelative(-0.52f, 0.08f, -1.03f, 0.22f, -1.5f, 0.42f) - lineTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(10.5f) - close() - moveTo(6.5f, 19.88f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, 1.25f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, -1.25f) - close() - moveTo(6.5f, 14.0f) - curveToRelative(-1.05f, 0.0f, -1.86f, 0.82f, -1.85f, 1.96f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, -0.01f) - curveToRelative(0.0f, -0.58f, 0.36f, -0.95f, 0.85f, -0.95f) - curveToRelative(0.47f, 0.0f, 0.85f, 0.4f, 0.85f, 0.95f) - curveToRelative(0.0f, 0.23f, -0.07f, 0.4f, -0.31f, 0.68f) - lineToRelative(-0.1f, 0.11f) - lineToRelative(-0.27f, 0.3f) - curveToRelative(-0.48f, 0.53f, -0.67f, 0.89f, -0.67f, 1.46f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - curveToRelative(0.0f, -0.23f, 0.08f, -0.4f, 0.32f, -0.7f) - lineToRelative(0.1f, -0.1f) - lineToRelative(0.27f, -0.3f) - curveToRelative(0.48f, -0.53f, 0.66f, -0.88f, 0.66f, -1.45f) - curveToRelative(0.0f, -1.1f, -0.82f, -1.95f, -1.85f, -1.95f) - close() - moveTo(20.75f, 15.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 18.0f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(0.75f) - close() - moveTo(20.75f, 11.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 14.0f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(0.75f) - close() - moveTo(20.75f, 7.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 10.0f) - lineTo(20.0f, 7.0f) - horizontalLineToRelative(0.75f) - close() - moveTo(15.25f, 5.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-7.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 8.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.5f) - close() - moveTo(14.5f, 6.5f) - horizontalLineToRelative(-6.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(-1.0f) - close() - } - } - return _notebookQuestionMark!! - } - -private var _notebookQuestionMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NotebookSection.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NotebookSection.kt deleted file mode 100644 index 498e5646..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NotebookSection.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.NotebookSection: ImageVector - get() { - if (_notebookSection != null) { - return _notebookSection!! - } - _notebookSection = fluentIcon(name = "Regular.NotebookSection") { - fluentPath { - moveTo(15.65f, 2.0f) - horizontalLineToRelative(0.1f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineTo(20.0f) - horizontalLineTo(9.25f) - curveTo(8.01f, 20.0f, 7.0f, 18.99f, 7.0f, 17.75f) - verticalLineTo(6.25f) - curveTo(7.0f, 5.01f, 8.0f, 4.0f, 9.25f, 4.0f) - horizontalLineTo(15.0f) - verticalLineTo(2.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(-0.1f) - close() - moveTo(15.0f, 5.5f) - horizontalLineTo(9.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineTo(15.0f) - verticalLineToRelative(-13.0f) - close() - } - } - return _notebookSection!! - } - -private var _notebookSection: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NotebookSectionArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NotebookSectionArrowRight.kt deleted file mode 100644 index 7f586acb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NotebookSectionArrowRight.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.NotebookSectionArrowRight: ImageVector - get() { - if (_notebookSectionArrowRight != null) { - return _notebookSectionArrowRight!! - } - _notebookSectionArrowRight = fluentIcon(name = "Regular.NotebookSectionArrowRight") { - fluentPath { - moveTo(15.65f, 2.0f) - horizontalLineToRelative(0.1f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(8.33f) - curveToRelative(-0.52f, 0.08f, -1.03f, 0.22f, -1.5f, 0.42f) - verticalLineToRelative(-6.0f) - horizontalLineTo(9.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(1.83f) - curveToRelative(0.08f, 0.52f, 0.22f, 1.02f, 0.42f, 1.5f) - horizontalLineTo(9.25f) - curveTo(8.01f, 20.0f, 7.0f, 18.99f, 7.0f, 17.75f) - verticalLineTo(6.25f) - curveTo(7.0f, 5.01f, 8.0f, 4.0f, 9.25f, 4.0f) - horizontalLineTo(15.0f) - verticalLineTo(2.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - close() - } - fluentPath { - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(19.29f, 17.0f) - lineTo(14.5f, 17.0f) - close() - } - } - return _notebookSectionArrowRight!! - } - -private var _notebookSectionArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NotebookSubsection.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NotebookSubsection.kt deleted file mode 100644 index 358275fc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NotebookSubsection.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.NotebookSubsection: ImageVector - get() { - if (_notebookSubsection != null) { - return _notebookSubsection!! - } - _notebookSubsection = fluentIcon(name = "Regular.NotebookSubsection") { - fluentPath { - moveTo(9.0f, 2.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.5f, 4.5f) - verticalLineToRelative(9.4f) - curveToRelative(0.0f, 0.98f, 0.63f, 1.81f, 1.5f, 2.12f) - verticalLineTo(6.5f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(5.0f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 11.88f, 2.0f) - horizontalLineTo(9.0f) - close() - } - fluentPath { - moveTo(7.0f, 6.75f) - curveTo(7.0f, 5.51f, 8.0f, 4.5f, 9.25f, 4.5f) - lineTo(15.0f, 4.5f) - lineTo(15.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(15.0f, 20.0f) - lineTo(9.25f, 20.0f) - curveTo(8.01f, 20.0f, 7.0f, 19.0f, 7.0f, 17.75f) - verticalLineToRelative(-11.0f) - close() - moveTo(15.0f, 18.5f) - lineTo(15.0f, 6.0f) - lineTo(9.25f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(11.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(15.0f, 18.5f) - close() - } - } - return _notebookSubsection!! - } - -private var _notebookSubsection: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NotebookSync.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NotebookSync.kt deleted file mode 100644 index 1996ef26..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NotebookSync.kt +++ /dev/null @@ -1,115 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.NotebookSync: ImageVector - get() { - if (_notebookSync != null) { - return _notebookSync!! - } - _notebookSync = fluentIcon(name = "Regular.NotebookSync") { - fluentPath { - moveTo(16.75f, 2.0f) - curveTo(17.99f, 2.0f, 19.0f, 3.0f, 19.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-5.56f) - curveToRelative(0.43f, -0.44f, 0.8f, -0.95f, 1.08f, -1.5f) - horizontalLineToRelative(4.48f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(17.5f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(6.25f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.83f) - curveToRelative(-0.52f, 0.08f, -1.03f, 0.22f, -1.5f, 0.42f) - lineTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(10.5f) - close() - moveTo(20.0f, 15.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 18.0f) - verticalLineToRelative(-3.0f) - close() - moveTo(20.0f, 11.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 14.0f) - verticalLineToRelative(-3.0f) - close() - moveTo(20.0f, 7.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(20.0f, 10.0f) - lineTo(20.0f, 7.0f) - close() - moveTo(15.25f, 5.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-7.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 8.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.5f) - close() - moveTo(14.5f, 6.5f) - horizontalLineToRelative(-6.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(1.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) - close() - moveTo(9.5f, 14.0f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - verticalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -0.8f, -0.59f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) - verticalLineToRelative(-0.55f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - close() - moveTo(4.0f, 19.95f) - verticalLineToRelative(0.55f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.77f, 0.65f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) - close() - } - } - return _notebookSync!! - } - -private var _notebookSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Notepad.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Notepad.kt deleted file mode 100644 index 5de9ebb9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Notepad.kt +++ /dev/null @@ -1,106 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Notepad: ImageVector - get() { - if (_notepad != null) { - return _notepad!! - } - _notepad = fluentIcon(name = "Regular.Notepad") { - fluentPath { - moveTo(5.75f, 22.0f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-14.0f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(0.75f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.75f, 0.65f) - verticalLineToRelative(0.85f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(0.75f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(11.0f) - curveToRelative(0.0f, 0.06f, 0.0f, 0.12f, -0.02f, 0.18f) - lineToRelative(-0.03f, 0.09f) - lineToRelative(-0.04f, 0.1f) - lineToRelative(-0.03f, 0.03f) - arcToRelative(0.69f, 0.69f, 0.0f, false, true, -0.1f, 0.13f) - lineToRelative(-4.5f, 4.5f) - arcToRelative(0.74f, 0.74f, 0.0f, false, true, -0.09f, 0.08f) - lineToRelative(0.09f, -0.08f) - arcToRelative(0.74f, 0.74f, 0.0f, false, true, -0.1f, 0.1f) - lineToRelative(-0.1f, 0.04f) - lineToRelative(-0.11f, 0.05f) - lineToRelative(-0.12f, 0.03f) - horizontalLineToRelative(-9.1f) - close() - moveTo(17.75f, 5.0f) - horizontalLineToRelative(-12.0f) - curveToRelative(-0.42f, 0.0f, -0.75f, 0.34f, -0.75f, 0.75f) - verticalLineToRelative(14.0f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(14.0f, 20.5f) - verticalLineToRelative(-2.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineToRelative(0.16f, -0.01f) - horizontalLineToRelative(2.25f) - lineTo(18.51f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(17.44f, 17.5f) - horizontalLineToRelative(-1.2f) - curveToRelative(-0.37f, 0.0f, -0.69f, 0.28f, -0.74f, 0.65f) - verticalLineToRelative(1.3f) - lineToRelative(1.94f, -1.95f) - close() - moveTo(7.25f, 16.0f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-4.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(4.1f) - horizontalLineToRelative(-4.0f) - close() - moveTo(7.25f, 12.0f) - horizontalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-9.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(9.1f) - horizontalLineToRelative(-9.0f) - close() - moveTo(7.25f, 8.0f) - horizontalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-9.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(9.1f) - horizontalLineToRelative(-9.0f) - close() - } - } - return _notepad!! - } - -private var _notepad: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NotepadPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NotepadPerson.kt deleted file mode 100644 index 87606055..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NotepadPerson.kt +++ /dev/null @@ -1,94 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.NotepadPerson: ImageVector - get() { - if (_notepadPerson != null) { - return _notepadPerson!! - } - _notepadPerson = fluentIcon(name = "Regular.NotepadPerson") { - fluentPath { - moveTo(5.75f, 22.0f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-14.0f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(0.75f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(0.75f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(5.59f) - arcToRelative(3.49f, 3.49f, 0.0f, false, false, -1.5f, -0.34f) - lineTo(18.5f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-12.0f) - curveToRelative(-0.42f, 0.0f, -0.75f, 0.34f, -0.75f, 0.75f) - verticalLineToRelative(14.0f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(7.3f) - curveToRelative(0.1f, 0.53f, 0.3f, 1.04f, 0.62f, 1.5f) - lineTo(5.75f, 22.0f) - close() - moveTo(7.25f, 16.0f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-4.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(7.25f, 8.0f) - horizontalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-9.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(18.5f, 17.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) - close() - moveTo(18.5f, 23.0f) - curveToRelative(3.21f, 0.0f, 4.5f, -1.57f, 4.5f, -3.13f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, -0.8f, -1.77f, -1.77f, -1.77f) - horizontalLineToRelative(-5.46f) - curveToRelative(-0.98f, 0.0f, -1.77f, 0.8f, -1.77f, 1.77f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 1.57f, 1.29f, 3.13f, 4.5f, 3.13f) - close() - moveTo(7.25f, 12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.0f) - close() - } - } - return _notepadPerson!! - } - -private var _notepadPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NumberCircle1.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NumberCircle1.kt deleted file mode 100644 index f0a2543c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NumberCircle1.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.NumberCircle1: ImageVector - get() { - if (_numberCircle1 != null) { - return _numberCircle1!! - } - _numberCircle1 = fluentIcon(name = "Regular.NumberCircle1") { - fluentPath { - moveTo(13.5f, 7.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.49f, -0.15f) - curveToRelative(-0.1f, 0.48f, -0.4f, 1.12f, -0.87f, 1.7f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -1.63f, 1.24f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.48f, 1.42f) - arcTo(4.99f, 4.99f, 0.0f, false, false, 12.0f, 10.1f) - verticalLineToRelative(6.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-9.0f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) - close() - moveTo(3.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 17.0f, 0.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, -17.0f, 0.0f) - close() - } - } - return _numberCircle1!! - } - -private var _numberCircle1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NumberRow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NumberRow.kt deleted file mode 100644 index 464f2984..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NumberRow.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.NumberRow: ImageVector - get() { - if (_numberRow != null) { - return _numberRow!! - } - _numberRow = fluentIcon(name = "Regular.NumberRow") { - fluentPath { - moveTo(8.75f, 4.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.75f) - verticalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 8.75f, 20.0f) - horizontalLineToRelative(-4.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) - lineTo(2.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) - horizontalLineToRelative(4.0f) - close() - moveTo(8.75f, 5.5f) - horizontalLineToRelative(-4.0f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(4.0f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - lineTo(10.0f, 6.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - close() - moveTo(19.25f, 4.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) - verticalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) - horizontalLineToRelative(-4.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, -2.75f) - lineTo(12.5f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 15.25f, 4.0f) - horizontalLineToRelative(4.0f) - close() - moveTo(19.25f, 5.5f) - horizontalLineToRelative(-4.0f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(4.0f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - lineTo(20.5f, 6.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - close() - moveTo(6.0f, 9.0f) - verticalLineToRelative(6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(7.5f, 9.0f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 6.0f, 9.0f) - close() - moveTo(17.5f, 9.75f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(17.0f, 14.25f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(1.25f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(19.0f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.25f) - close() - } - } - return _numberRow!! - } - -private var _numberRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NumberSymbol.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NumberSymbol.kt deleted file mode 100644 index 899b2cb3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NumberSymbol.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.NumberSymbol: ImageVector - get() { - if (_numberSymbol != null) { - return _numberSymbol!! - } - _numberSymbol = fluentIcon(name = "Regular.NumberSymbol") { - fluentPath { - moveTo(10.99f, 2.89f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.48f, -0.28f) - lineTo(8.5f, 8.0f) - lineTo(3.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(4.46f) - lineToRelative(-0.95f, 5.0f) - lineTo(2.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.23f) - lineToRelative(-0.97f, 5.11f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.48f, 0.28f) - lineTo(8.5f, 16.0f) - horizontalLineToRelative(5.47f) - lineToRelative(-0.97f, 5.12f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.48f, 0.28f) - lineTo(15.5f, 16.0f) - horizontalLineToRelative(4.74f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.46f) - lineToRelative(0.95f, -5.0f) - horizontalLineToRelative(4.51f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.23f) - lineTo(18.0f, 2.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.48f, -0.28f) - lineTo(15.5f, 8.0f) - horizontalLineToRelative(-5.47f) - lineTo(11.0f, 2.9f) - close() - moveTo(9.74f, 9.49f) - horizontalLineToRelative(5.47f) - lineToRelative(-0.94f, 5.0f) - lineTo(8.79f, 14.49f) - lineToRelative(0.95f, -5.0f) - close() - } - } - return _numberSymbol!! - } - -private var _numberSymbol: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NumberSymbolDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NumberSymbolDismiss.kt deleted file mode 100644 index 7858755c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NumberSymbolDismiss.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.NumberSymbolDismiss: ImageVector - get() { - if (_numberSymbolDismiss != null) { - return _numberSymbolDismiss!! - } - _numberSymbolDismiss = fluentIcon(name = "Regular.NumberSymbolDismiss") { - fluentPath { - moveTo(10.99f, 2.89f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.48f, -0.28f) - lineTo(8.5f, 8.0f) - lineTo(3.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(4.46f) - lineToRelative(-0.95f, 5.0f) - lineTo(2.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.23f) - lineToRelative(-0.97f, 5.11f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.48f, 0.28f) - lineTo(8.5f, 16.0f) - horizontalLineToRelative(2.66f) - curveToRelative(0.13f, -0.52f, 0.32f, -1.02f, 0.56f, -1.5f) - lineTo(8.8f, 14.5f) - lineToRelative(0.95f, -5.0f) - horizontalLineToRelative(5.47f) - lineToRelative(-0.4f, 2.09f) - curveToRelative(0.52f, -0.23f, 1.06f, -0.4f, 1.63f, -0.5f) - lineToRelative(0.3f, -1.59f) - horizontalLineToRelative(4.51f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.23f) - lineTo(18.0f, 2.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.48f, -0.28f) - lineTo(15.5f, 8.0f) - horizontalLineToRelative(-5.47f) - lineTo(11.0f, 2.9f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-1.64f, -1.65f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.65f, 1.64f) - lineToRelative(-1.65f, -1.64f) - close() - } - } - return _numberSymbolDismiss!! - } - -private var _numberSymbolDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NumberSymbolSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NumberSymbolSquare.kt deleted file mode 100644 index 672aae57..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/NumberSymbolSquare.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.NumberSymbolSquare: ImageVector - get() { - if (_numberSymbolSquare != null) { - return _numberSymbolSquare!! - } - _numberSymbolSquare = fluentIcon(name = "Regular.NumberSymbolSquare") { - fluentPath { - moveTo(10.9f, 7.51f) - curveToRelative(0.4f, 0.09f, 0.67f, 0.48f, 0.59f, 0.89f) - lineToRelative(-0.22f, 1.1f) - horizontalLineToRelative(2.47f) - lineToRelative(0.28f, -1.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.47f, 0.3f) - lineToRelative(-0.22f, 1.1f) - horizontalLineToRelative(0.98f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.28f) - lineToRelative(-0.4f, 2.0f) - horizontalLineToRelative(1.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.48f) - lineToRelative(-0.28f, 1.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.48f, -0.3f) - lineToRelative(0.23f, -1.1f) - horizontalLineToRelative(-2.47f) - lineToRelative(-0.28f, 1.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.48f, -0.3f) - lineToRelative(0.23f, -1.1f) - horizontalLineToRelative(-0.99f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.29f) - lineToRelative(0.4f, -2.0f) - horizontalLineTo(8.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.49f) - lineToRelative(0.28f, -1.4f) - curveToRelative(0.08f, -0.4f, 0.47f, -0.67f, 0.88f, -0.59f) - close() - moveTo(10.57f, 13.0f) - horizontalLineToRelative(2.47f) - lineToRelative(0.4f, -2.0f) - horizontalLineToRelative(-2.47f) - lineToRelative(-0.4f, 2.0f) - close() - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineTo(6.25f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - verticalLineTo(6.25f) - close() - moveTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineTo(6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineTo(6.25f) - close() - } - } - return _numberSymbolSquare!! - } - -private var _numberSymbolSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/OpenFolder.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/OpenFolder.kt deleted file mode 100644 index 0f9ba879..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/OpenFolder.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.OpenFolder: ImageVector - get() { - if (_openFolder != null) { - return _openFolder!! - } - _openFolder = fluentIcon(name = "Regular.OpenFolder") { - fluentPath { - moveTo(6.75f, 3.0f) - horizontalLineToRelative(10.5f) - curveToRelative(2.0f, 0.0f, 3.64f, 1.57f, 3.75f, 3.55f) - verticalLineToRelative(4.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, 0.1f) - verticalLineToRelative(-4.6f) - curveToRelative(0.0f, -1.19f, -0.93f, -2.16f, -2.1f, -2.24f) - horizontalLineToRelative(-0.16f) - lineTo(6.75f, 4.5f) - curveToRelative(-1.18f, 0.0f, -2.15f, 0.9f, -2.25f, 2.06f) - verticalLineToRelative(10.69f) - curveToRelative(0.0f, 1.2f, 0.93f, 2.17f, 2.1f, 2.25f) - horizontalLineToRelative(4.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-4.6f) - curveToRelative(-2.0f, 0.0f, -3.64f, -1.57f, -3.75f, -3.55f) - lineTo(3.0f, 6.55f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 6.55f, 3.0f) - lineToRelative(0.2f, -0.01f) - close() - moveTo(9.75f, 9.0f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-4.79f) - lineToRelative(7.22f, 7.22f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.08f, 0.98f) - lineToRelative(-0.08f, 0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 0.07f) - lineToRelative(-0.09f, -0.07f) - lineToRelative(-7.22f, -7.22f) - verticalLineToRelative(4.7f) - curveToRelative(0.0f, 0.37f, -0.28f, 0.68f, -0.65f, 0.73f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - lineTo(9.0f, 9.73f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -0.07f) - lineToRelative(0.03f, -0.11f) - lineToRelative(0.03f, -0.1f) - arcToRelative(0.72f, 0.72f, 0.0f, false, true, 0.16f, -0.23f) - lineToRelative(0.04f, -0.04f) - lineToRelative(0.08f, -0.06f) - lineToRelative(0.06f, -0.04f) - lineToRelative(0.1f, -0.04f) - lineToRelative(0.07f, -0.02f) - lineToRelative(0.06f, -0.01f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(6.52f) - horizontalLineToRelative(-6.5f) - close() - } - } - return _openFolder!! - } - -private var _openFolder: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/OpenOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/OpenOff.kt deleted file mode 100644 index fc69451e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/OpenOff.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.OpenOff: ImageVector - get() { - if (_openOff != null) { - return _openOff!! - } - _openOff = fluentIcon(name = "Regular.OpenOff") { - fluentPath { - moveToRelative(3.28f, 2.22f) - lineToRelative(18.5f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineToRelative(-1.26f, -1.26f) - curveToRelative(-0.5f, 0.3f, -1.08f, 0.48f, -1.71f, 0.48f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveToRelative(0.0f, -0.63f, 0.18f, -1.21f, 0.48f, -1.7f) - lineTo(2.22f, 3.27f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - close() - moveTo(18.34f, 19.4f) - lineTo(4.6f, 5.66f) - curveToRelative(-0.06f, 0.19f, -0.1f, 0.38f, -0.1f, 0.59f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.2f, 0.0f, 0.4f, -0.04f, 0.59f, -0.1f) - close() - moveTo(13.08f, 9.9f) - lineTo(14.1f, 10.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.18f, -0.14f) - lineToRelative(5.22f, -5.22f) - verticalLineToRelative(4.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.69f) - lineToRelative(-5.22f, 5.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.14f, 0.18f) - close() - moveTo(21.0f, 17.82f) - lineToRelative(-1.5f, -1.5f) - verticalLineToRelative(-2.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(4.07f) - close() - moveTo(6.18f, 3.0f) - lineToRelative(1.5f, 1.5f) - horizontalLineToRelative(2.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(6.18f, 3.0f) - close() - } - } - return _openOff!! - } - -private var _openOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Organization.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Organization.kt deleted file mode 100644 index f1ebfbf0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Organization.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Organization: ImageVector - get() { - if (_organization != null) { - return _organization!! - } - _organization = fluentIcon(name = "Regular.Organization") { - fluentPath { - moveTo(11.75f, 2.0f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 11.0f, 9.43f) - verticalLineToRelative(2.07f) - horizontalLineTo(7.75f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(0.83f) - arcToRelative(3.75f, 3.75f, 0.0f, true, false, 1.5f, 0.0f) - verticalLineToRelative(-0.83f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(8.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.83f) - arcToRelative(3.75f, 3.75f, 0.0f, true, false, 1.5f, 0.0f) - verticalLineToRelative(-0.83f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineTo(12.5f) - verticalLineTo(9.43f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 11.75f, 2.0f) - close() - moveTo(9.5f, 5.75f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) - close() - moveTo(4.0f, 18.25f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) - close() - moveTo(17.25f, 16.0f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -4.5f) - close() - } - } - return _organization!! - } - -private var _organization: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Orientation.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Orientation.kt deleted file mode 100644 index 4ee7285e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Orientation.kt +++ /dev/null @@ -1,93 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Orientation: ImageVector - get() { - if (_orientation != null) { - return _orientation!! - } - _orientation = fluentIcon(name = "Regular.Orientation") { - fluentPath { - moveTo(6.75f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.5f) - close() - moveTo(3.5f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.5f) - close() - moveTo(3.9f, 11.0f) - arcTo(1.9f, 1.9f, 0.0f, false, false, 2.0f, 12.9f) - verticalLineToRelative(5.2f) - curveToRelative(0.0f, 1.05f, 0.85f, 1.9f, 1.9f, 1.9f) - horizontalLineToRelative(10.2f) - arcToRelative(1.9f, 1.9f, 0.0f, false, false, 1.9f, -1.9f) - verticalLineToRelative(-5.2f) - arcToRelative(1.9f, 1.9f, 0.0f, false, false, -1.9f, -1.9f) - horizontalLineToRelative(-1.85f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(3.9f, 11.0f) - close() - moveTo(3.5f, 12.9f) - curveToRelative(0.0f, -0.22f, 0.18f, -0.4f, 0.4f, -0.4f) - horizontalLineToRelative(10.2f) - curveToRelative(0.22f, 0.0f, 0.4f, 0.18f, 0.4f, 0.4f) - verticalLineToRelative(5.2f) - arcToRelative(0.4f, 0.4f, 0.0f, false, true, -0.4f, 0.4f) - lineTo(3.9f, 18.5f) - arcToRelative(0.4f, 0.4f, 0.0f, false, true, -0.4f, -0.4f) - verticalLineToRelative(-5.2f) - close() - moveTo(3.75f, 5.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.5f) - curveTo(2.0f, 4.78f, 2.78f, 4.0f, 3.75f, 4.0f) - horizontalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.5f) - close() - moveTo(11.5f, 5.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.5f) - close() - moveTo(17.0f, 16.08f) - curveToRelative(0.0f, 0.48f, 0.42f, 0.87f, 0.89f, 0.74f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 17.5f, 6.1f) - lineToRelative(0.3f, -0.35f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.13f, -0.98f) - lineToRelative(-1.5f, 1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 0.98f) - lineToRelative(1.5f, 1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.14f, -0.98f) - lineToRelative(-0.6f, -0.7f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.37f, 7.79f) - curveToRelative(-0.33f, 0.1f, -0.59f, 0.38f, -0.59f, 0.73f) - close() - } - } - return _orientation!! - } - -private var _orientation: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Oval.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Oval.kt deleted file mode 100644 index 27498180..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Oval.kt +++ /dev/null @@ -1,35 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Oval: ImageVector - get() { - if (_oval != null) { - return _oval!! - } - _oval = fluentIcon(name = "Regular.Oval") { - fluentPath { - moveTo(2.0f, 12.0f) - arcToRelative(8.0f, 8.0f, 0.0f, false, true, 8.0f, -8.0f) - horizontalLineToRelative(4.0f) - arcToRelative(8.0f, 8.0f, 0.0f, true, true, 0.0f, 16.0f) - horizontalLineToRelative(-4.0f) - arcToRelative(8.0f, 8.0f, 0.0f, false, true, -8.0f, -8.0f) - close() - moveTo(10.0f, 5.5f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, 0.0f, 13.0f) - horizontalLineToRelative(4.0f) - arcToRelative(6.5f, 6.5f, 0.0f, true, false, 0.0f, -13.0f) - horizontalLineToRelative(-4.0f) - close() - } - } - return _oval!! - } - -private var _oval: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Oven.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Oven.kt deleted file mode 100644 index 1d0c9e7b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Oven.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Oven: ImageVector - get() { - if (_oven != null) { - return _oven!! - } - _oven = fluentIcon(name = "Regular.Oven") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 8.0f) - horizontalLineToRelative(15.0f) - lineTo(19.5f, 6.25f) - close() - moveTo(19.5f, 17.75f) - lineTo(19.5f, 9.5f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(8.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - close() - moveTo(8.0f, 7.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(13.0f, 6.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(16.0f, 7.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(7.5f, 16.5f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(9.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(-9.0f) - close() - moveTo(7.25f, 11.0f) - curveTo(6.56f, 11.0f, 6.0f, 11.56f, 6.0f, 12.25f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(9.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-9.5f) - close() - } - } - return _oven!! - } - -private var _oven: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PaddingDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PaddingDown.kt deleted file mode 100644 index a1f693ad..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PaddingDown.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PaddingDown: ImageVector - get() { - if (_paddingDown != null) { - return _paddingDown!! - } - _paddingDown = fluentIcon(name = "Regular.PaddingDown") { - fluentPath { - moveTo(4.5f, 2.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(4.5f, 21.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(7.97f, 21.25f) - curveToRelative(0.0f, 0.41f, 0.33f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(1.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(8.72f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(12.3f, 21.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(1.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(16.63f, 21.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(12.28f, 18.78f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-5.0f, -5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineTo(11.0f, 16.44f) - lineTo(11.0f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(10.69f) - lineToRelative(3.72f, -3.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-5.0f, 5.0f) - close() - } - } - return _paddingDown!! - } - -private var _paddingDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PaddingLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PaddingLeft.kt deleted file mode 100644 index a49b7d02..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PaddingLeft.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PaddingLeft: ImageVector - get() { - if (_paddingLeft != null) { - return _paddingLeft!! - } - _paddingLeft = fluentIcon(name = "Regular.PaddingLeft") { - fluentPath { - moveTo(2.75f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(2.75f, 7.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(1.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(3.5f, 8.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(2.75f, 12.3f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(1.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(2.75f, 16.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(21.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(5.22f, 12.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(5.0f, -5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineTo(7.56f, 11.0f) - horizontalLineToRelative(10.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(7.56f, 12.5f) - lineToRelative(3.72f, 3.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-5.0f, -5.0f) - close() - } - } - return _paddingLeft!! - } - -private var _paddingLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PaddingRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PaddingRight.kt deleted file mode 100644 index 2050b762..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PaddingRight.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PaddingRight: ImageVector - get() { - if (_paddingRight != null) { - return _paddingRight!! - } - _paddingRight = fluentIcon(name = "Regular.PaddingRight") { - fluentPath { - moveTo(2.75f, 4.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-13.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(21.25f, 4.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.87f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(21.25f, 7.97f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.33f, 0.75f, 0.75f) - verticalLineToRelative(1.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(20.5f, 8.72f) - curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(21.25f, 12.3f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.73f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(21.25f, 16.63f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.87f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(18.78f, 12.28f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-5.0f, -5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(16.44f, 11.0f) - lineTo(5.75f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(10.69f) - lineToRelative(-3.72f, 3.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(5.0f, -5.0f) - close() - } - } - return _paddingRight!! - } - -private var _paddingRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PaddingTop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PaddingTop.kt deleted file mode 100644 index 1a2b729f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PaddingTop.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PaddingTop: ImageVector - get() { - if (_paddingTop != null) { - return _paddingTop!! - } - _paddingTop = fluentIcon(name = "Regular.PaddingTop") { - fluentPath { - moveTo(4.5f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(7.97f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(8.72f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(12.3f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(16.63f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(4.5f, 21.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(12.28f, 5.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineTo(11.0f, 7.56f) - verticalLineToRelative(10.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(12.5f, 7.56f) - lineToRelative(3.72f, 3.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-5.0f, -5.0f) - close() - } - } - return _paddingTop!! - } - -private var _paddingTop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PageFit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PageFit.kt deleted file mode 100644 index 1da98137..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PageFit.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PageFit: ImageVector - get() { - if (_pageFit != null) { - return _pageFit!! - } - _pageFit = fluentIcon(name = "Regular.PageFit") { - fluentPath { - moveTo(18.25f, 4.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 22.0f, 7.75f) - verticalLineToRelative(8.5f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 18.25f, 20.0f) - lineTo(5.75f, 20.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 2.0f, 16.25f) - verticalLineToRelative(-8.5f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 5.75f, 4.0f) - horizontalLineToRelative(12.5f) - close() - moveTo(18.25f, 5.5f) - lineTo(5.75f, 5.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(12.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - close() - moveTo(18.25f, 13.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(19.0f, 15.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(17.0f, 15.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-1.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(5.75f, 13.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(6.5f, 15.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(7.0f, 17.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - verticalLineToRelative(-1.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(7.0f, 7.0f) - horizontalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(7.0f, 8.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.41f) - verticalLineToRelative(1.34f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(5.0f, 9.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.85f, -2.0f) - lineTo(7.0f, 7.0f) - close() - moveTo(17.0f, 7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - verticalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(17.5f, 9.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - horizontalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(17.0f, 7.0f) - close() - } - } - return _pageFit!! - } - -private var _pageFit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PaintBrush.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PaintBrush.kt deleted file mode 100644 index 073f423b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PaintBrush.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PaintBrush: ImageVector - get() { - if (_paintBrush != null) { - return _paintBrush!! - } - _paintBrush = fluentIcon(name = "Regular.PaintBrush") { - fluentPath { - moveTo(5.75f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - lineTo(9.5f, 16.5f) - verticalLineToRelative(3.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 5.0f, 0.0f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(2.25f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(19.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(5.75f, 2.0f) - close() - moveTo(6.5f, 11.0f) - lineTo(6.5f, 3.5f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) - lineTo(14.0f, 3.5f) - horizontalLineToRelative(1.0f) - verticalLineToRelative(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) - lineTo(16.5f, 3.5f) - horizontalLineToRelative(1.0f) - lineTo(17.5f, 11.0f) - horizontalLineToRelative(-11.0f) - close() - moveTo(6.5f, 14.25f) - lineTo(6.5f, 12.5f) - horizontalLineToRelative(11.0f) - verticalLineToRelative(1.75f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - verticalLineToRelative(-3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _paintBrush!! - } - -private var _paintBrush: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PaintBrushArrowDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PaintBrushArrowDown.kt deleted file mode 100644 index 9fb476e6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PaintBrushArrowDown.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PaintBrushArrowDown: ImageVector - get() { - if (_paintBrushArrowDown != null) { - return _paintBrushArrowDown!! - } - _paintBrushArrowDown = fluentIcon(name = "Regular.PaintBrushArrowDown") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.5f, 2.5f) - verticalLineToRelative(3.0f) - lineTo(7.11f, 7.5f) - curveToRelative(-1.17f, 0.0f, -2.08f, 1.0f, -2.04f, 2.13f) - curveToRelative(0.04f, 1.3f, 0.05f, 3.36f, -0.22f, 5.48f) - curveToRelative(-0.26f, 2.15f, -0.78f, 4.27f, -1.73f, 5.73f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 3.75f, 22.0f) - horizontalLineToRelative(11.78f) - lineToRelative(-1.02f, -1.01f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.34f, -0.49f) - horizontalLineToRelative(-3.04f) - lineToRelative(0.35f, -1.59f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.46f, -0.32f) - lineToRelative(-0.43f, 1.91f) - lineTo(8.3f, 20.5f) - arcToRelative(13.66f, 13.66f, 0.0f, false, false, 0.7f, -2.64f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.48f, -0.22f) - arcToRelative(10.67f, 10.67f, 0.0f, false, true, -0.83f, 2.8f) - lineToRelative(-0.02f, 0.06f) - lineTo(5.0f, 20.5f) - arcToRelative(18.05f, 18.05f, 0.0f, false, false, 1.33f, -5.2f) - curveToRelative(0.1f, -0.79f, 0.16f, -1.57f, 0.2f, -2.3f) - lineTo(17.5f, 13.0f) - verticalLineToRelative(1.2f) - arcToRelative(1.74f, 1.74f, 0.0f, false, true, 1.5f, -0.05f) - verticalLineToRelative(-4.4f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - lineTo(14.5f, 7.5f) - verticalLineToRelative(-3.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 12.0f, 2.0f) - close() - moveTo(17.5f, 11.5f) - lineTo(6.59f, 11.5f) - curveToRelative(0.01f, -0.74f, 0.0f, -1.4f, -0.02f, -1.92f) - arcTo(0.56f, 0.56f, 0.0f, false, true, 7.11f, 9.0f) - horizontalLineToRelative(3.14f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(11.0f, 4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(3.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.75f) - close() - moveTo(15.22f, 19.22f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(1.27f, 1.27f) - verticalLineToRelative(-4.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(4.64f) - lineToRelative(1.17f, -1.17f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 0.0f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - } - } - return _paintBrushArrowDown!! - } - -private var _paintBrushArrowDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PaintBrushArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PaintBrushArrowUp.kt deleted file mode 100644 index d53505d1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PaintBrushArrowUp.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PaintBrushArrowUp: ImageVector - get() { - if (_paintBrushArrowUp != null) { - return _paintBrushArrowUp!! - } - _paintBrushArrowUp = fluentIcon(name = "Regular.PaintBrushArrowUp") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.5f, 2.5f) - verticalLineToRelative(3.0f) - lineTo(7.11f, 7.5f) - curveToRelative(-1.17f, 0.0f, -2.08f, 1.0f, -2.04f, 2.13f) - curveToRelative(0.04f, 1.3f, 0.05f, 3.36f, -0.22f, 5.48f) - curveToRelative(-0.26f, 2.15f, -0.78f, 4.27f, -1.73f, 5.73f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 3.75f, 22.0f) - horizontalLineToRelative(12.8f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(-5.42f) - lineToRelative(0.35f, -1.59f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.46f, -0.32f) - lineToRelative(-0.43f, 1.91f) - lineTo(8.3f, 20.5f) - arcToRelative(13.66f, 13.66f, 0.0f, false, false, 0.7f, -2.64f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.48f, -0.22f) - arcToRelative(10.67f, 10.67f, 0.0f, false, true, -0.83f, 2.8f) - lineToRelative(-0.02f, 0.06f) - lineTo(5.0f, 20.5f) - arcToRelative(18.05f, 18.05f, 0.0f, false, false, 1.33f, -5.2f) - curveToRelative(0.1f, -0.79f, 0.16f, -1.57f, 0.2f, -2.3f) - lineTo(17.5f, 13.0f) - verticalLineToRelative(1.17f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(19.0f, 9.75f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - lineTo(14.5f, 7.5f) - verticalLineToRelative(-3.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 12.0f, 2.0f) - close() - moveTo(17.5f, 11.5f) - lineTo(6.59f, 11.5f) - curveToRelative(0.01f, -0.74f, 0.0f, -1.4f, -0.02f, -1.92f) - arcTo(0.56f, 0.56f, 0.0f, false, true, 7.11f, 9.0f) - horizontalLineToRelative(3.14f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(11.0f, 4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(3.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.75f) - close() - moveTo(15.22f, 18.78f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(1.27f, -1.27f) - verticalLineToRelative(4.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-4.64f) - lineToRelative(1.17f, 1.17f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-2.5f, 2.5f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - close() - } - } - return _paintBrushArrowUp!! - } - -private var _paintBrushArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PaintBucket.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PaintBucket.kt deleted file mode 100644 index 2e208d90..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PaintBucket.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PaintBucket: ImageVector - get() { - if (_paintBucket != null) { - return _paintBucket!! - } - _paintBucket = fluentIcon(name = "Regular.PaintBucket") { - fluentPath { - moveTo(12.0f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - lineTo(10.5f, 3.5f) - curveToRelative(-0.3f, 0.1f, -0.6f, 0.28f, -0.84f, 0.53f) - lineToRelative(-6.88f, 6.88f) - curveToRelative(-0.88f, 0.88f, -0.88f, 2.3f, 0.0f, 3.18f) - lineToRelative(4.88f, 4.88f) - curveToRelative(0.88f, 0.88f, 2.3f, 0.88f, 3.18f, 0.0f) - lineToRelative(6.88f, -6.88f) - curveToRelative(0.88f, -0.88f, 0.88f, -2.3f, 0.0f, -3.18f) - lineToRelative(-4.88f, -4.88f) - arcTo(2.24f, 2.24f, 0.0f, false, false, 12.0f, 3.5f) - lineTo(12.0f, 2.25f) - close() - moveTo(3.84f, 11.97f) - lineTo(10.5f, 5.31f) - verticalLineToRelative(1.44f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(12.0f, 5.31f) - lineToRelative(4.66f, 4.66f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-0.97f, 0.97f) - lineTo(3.8f, 12.0f) - lineToRelative(0.03f, -0.03f) - close() - moveTo(4.31f, 13.5f) - horizontalLineToRelative(9.88f) - lineToRelative(-4.41f, 4.4f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-4.4f, -4.4f) - close() - moveTo(19.52f, 13.6f) - arcToRelative(0.87f, 0.87f, 0.0f, false, false, -1.54f, 0.0f) - lineToRelative(-2.0f, 3.77f) - arcToRelative(3.15f, 3.15f, 0.0f, true, false, 5.55f, 0.0f) - lineToRelative(-2.0f, -3.77f) - close() - moveTo(17.29f, 18.07f) - lineTo(18.75f, 15.34f) - lineTo(20.21f, 18.07f) - arcToRelative(1.65f, 1.65f, 0.0f, true, true, -2.92f, 0.0f) - close() - } - } - return _paintBucket!! - } - -private var _paintBucket: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Pair.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Pair.kt deleted file mode 100644 index 4ab19c26..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Pair.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Pair: ImageVector - get() { - if (_pair != null) { - return _pair!! - } - _pair = fluentIcon(name = "Regular.Pair") { - fluentPath { - moveTo(18.67f, 21.0f) - horizontalLineToRelative(-7.34f) - arcToRelative(1.75f, 1.75f, 0.0f, true, true, -2.32f, -2.33f) - verticalLineToRelative(-3.68f) - lineTo(5.33f, 14.99f) - curveToRelative(-0.26f, 0.56f, -0.8f, 0.95f, -1.44f, 1.0f) - lineToRelative(-0.14f, 0.01f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 3.0f, 12.67f) - lineTo(3.0f, 5.33f) - arcTo(1.75f, 1.75f, 0.0f, true, true, 5.33f, 3.0f) - horizontalLineToRelative(7.34f) - arcTo(1.75f, 1.75f, 0.0f, true, true, 15.0f, 5.33f) - lineTo(15.0f, 9.0f) - horizontalLineToRelative(3.67f) - curveToRelative(0.26f, -0.55f, 0.8f, -0.94f, 1.44f, -1.0f) - horizontalLineToRelative(0.14f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.75f, 3.33f) - verticalLineToRelative(7.34f) - arcTo(1.75f, 1.75f, 0.0f, true, true, 18.67f, 21.0f) - horizontalLineToRelative(-7.34f) - horizontalLineToRelative(7.34f) - close() - moveTo(18.67f, 10.5f) - lineTo(15.0f, 10.5f) - verticalLineToRelative(2.16f) - curveToRelative(0.56f, 0.27f, 0.95f, 0.8f, 1.0f, 1.44f) - verticalLineToRelative(0.14f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -3.33f, 0.76f) - horizontalLineToRelative(-2.15f) - verticalLineToRelative(3.67f) - curveToRelative(0.36f, 0.17f, 0.65f, 0.47f, 0.82f, 0.83f) - horizontalLineToRelative(7.34f) - curveToRelative(0.17f, -0.36f, 0.47f, -0.66f, 0.83f, -0.83f) - verticalLineToRelative(-7.34f) - arcToRelative(1.76f, 1.76f, 0.0f, false, true, -0.75f, -0.67f) - lineToRelative(-0.08f, -0.16f) - close() - moveTo(13.49f, 10.5f) - horizontalLineToRelative(-2.16f) - curveToRelative(-0.17f, 0.36f, -0.46f, 0.66f, -0.82f, 0.83f) - verticalLineToRelative(2.16f) - horizontalLineToRelative(2.15f) - curveToRelative(0.18f, -0.36f, 0.47f, -0.65f, 0.84f, -0.83f) - lineTo(13.5f, 10.5f) - close() - moveTo(12.67f, 4.5f) - lineTo(5.33f, 4.5f) - curveToRelative(-0.17f, 0.36f, -0.47f, 0.66f, -0.83f, 0.83f) - verticalLineToRelative(7.34f) - curveToRelative(0.36f, 0.17f, 0.66f, 0.46f, 0.83f, 0.83f) - lineTo(9.0f, 13.5f) - verticalLineToRelative(-2.17f) - curveToRelative(-0.56f, -0.26f, -0.95f, -0.8f, -1.0f, -1.44f) - lineTo(8.0f, 9.75f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 11.33f, 9.0f) - horizontalLineToRelative(2.16f) - lineTo(13.49f, 5.33f) - arcToRelative(1.76f, 1.76f, 0.0f, false, true, -0.74f, -0.68f) - lineToRelative(-0.08f, -0.15f) - close() - } - } - return _pair!! - } - -private var _pair: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelLeft.kt deleted file mode 100644 index 575bb07d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelLeft.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PanelLeft: ImageVector - get() { - if (_panelLeft != null) { - return _panelLeft!! - } - _panelLeft = fluentIcon(name = "Regular.PanelLeft") { - fluentPath { - moveTo(2.0f, 7.25f) - curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) - horizontalLineToRelative(13.5f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineTo(5.25f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - close() - moveTo(9.5f, 5.5f) - verticalLineToRelative(13.0f) - horizontalLineToRelative(9.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineTo(9.5f) - close() - moveTo(8.0f, 5.5f) - horizontalLineTo(5.25f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineTo(8.0f) - verticalLineToRelative(-13.0f) - close() - } - } - return _panelLeft!! - } - -private var _panelLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelLeftAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelLeftAdd.kt deleted file mode 100644 index 55294e04..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelLeftAdd.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PanelLeftAdd: ImageVector - get() { - if (_panelLeftAdd != null) { - return _panelLeftAdd!! - } - _panelLeftAdd = fluentIcon(name = "Regular.PanelLeftAdd") { - fluentPath { - moveTo(2.0f, 7.25f) - curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) - horizontalLineToRelative(13.5f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(5.56f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) - lineTo(20.5f, 7.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(9.5f, 5.5f) - verticalLineToRelative(13.0f) - horizontalLineToRelative(1.58f) - curveToRelative(0.08f, 0.52f, 0.22f, 1.03f, 0.42f, 1.5f) - lineTo(5.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - close() - moveTo(8.0f, 5.5f) - lineTo(5.25f, 5.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(8.0f, 18.5f) - verticalLineToRelative(-13.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _panelLeftAdd!! - } - -private var _panelLeftAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelLeftContract.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelLeftContract.kt deleted file mode 100644 index b4897114..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelLeftContract.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PanelLeftContract: ImageVector - get() { - if (_panelLeftContract != null) { - return _panelLeftContract!! - } - _panelLeftContract = fluentIcon(name = "Regular.PanelLeftContract") { - fluentPath { - moveTo(14.8f, 9.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.05f, -0.06f) - lineToRelative(-2.5f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.12f) - lineToRelative(2.5f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.0f, -1.12f) - lineToRelative(-1.05f, -0.94f) - horizontalLineToRelative(3.55f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - lineTo(13.7f, 11.25f) - lineToRelative(1.05f, -0.94f) - curveToRelative(0.31f, -0.28f, 0.33f, -0.75f, 0.06f, -1.06f) - close() - moveTo(2.0f, 17.25f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 20.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 17.25f) - lineTo(22.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 4.0f) - lineTo(4.75f, 4.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 6.75f) - verticalLineToRelative(10.5f) - close() - moveTo(4.75f, 18.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - lineTo(3.5f, 6.75f) - curveToRelative(0.0f, -0.7f, 0.56f, -1.25f, 1.25f, -1.25f) - lineTo(8.0f, 5.5f) - verticalLineToRelative(13.0f) - lineTo(4.75f, 18.5f) - close() - moveTo(9.5f, 18.5f) - verticalLineToRelative(-13.0f) - horizontalLineToRelative(9.75f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.7f, -0.56f, 1.25f, -1.25f, 1.25f) - lineTo(9.5f, 18.5f) - close() - } - } - return _panelLeftContract!! - } - -private var _panelLeftContract: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelLeftExpand.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelLeftExpand.kt deleted file mode 100644 index 552ea348..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelLeftExpand.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PanelLeftExpand: ImageVector - get() { - if (_panelLeftExpand != null) { - return _panelLeftExpand!! - } - _panelLeftExpand = fluentIcon(name = "Regular.PanelLeftExpand") { - fluentPath { - moveTo(14.2f, 14.75f) - curveToRelative(0.27f, 0.3f, 0.74f, 0.33f, 1.05f, 0.06f) - lineToRelative(2.5f, -2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.12f) - lineToRelative(-2.5f, -2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, 1.12f) - lineToRelative(1.05f, 0.94f) - horizontalLineToRelative(-3.55f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(3.55f) - lineToRelative(-1.05f, 0.94f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.06f, 1.06f) - close() - moveTo(2.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) - verticalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) - lineTo(4.75f, 20.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) - lineTo(2.0f, 6.75f) - close() - moveTo(4.75f, 5.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - lineTo(8.0f, 18.5f) - verticalLineToRelative(-13.0f) - lineTo(4.75f, 5.5f) - close() - moveTo(9.5f, 5.5f) - verticalLineToRelative(13.0f) - horizontalLineToRelative(9.75f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - lineTo(20.5f, 6.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(9.5f, 5.5f) - close() - } - } - return _panelLeftExpand!! - } - -private var _panelLeftExpand: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelLeftHeader.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelLeftHeader.kt deleted file mode 100644 index fa306cec..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelLeftHeader.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PanelLeftHeader: ImageVector - get() { - if (_panelLeftHeader != null) { - return _panelLeftHeader!! - } - _panelLeftHeader = fluentIcon(name = "Regular.PanelLeftHeader") { - fluentPath { - moveTo(5.25f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) - horizontalLineToRelative(13.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-9.5f) - curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) - lineTo(5.25f, 4.0f) - close() - moveTo(9.5f, 10.5f) - horizontalLineToRelative(11.0f) - verticalLineToRelative(6.25f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(9.5f, 18.5f) - verticalLineToRelative(-8.0f) - close() - moveTo(20.5f, 9.0f) - horizontalLineToRelative(-11.0f) - lineTo(9.5f, 5.5f) - horizontalLineToRelative(9.25f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(20.5f, 9.0f) - close() - moveTo(5.25f, 5.5f) - lineTo(8.0f, 5.5f) - verticalLineToRelative(13.0f) - lineTo(5.25f, 18.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - close() - } - } - return _panelLeftHeader!! - } - -private var _panelLeftHeader: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelLeftHeaderAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelLeftHeaderAdd.kt deleted file mode 100644 index 6e81ae7c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelLeftHeaderAdd.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PanelLeftHeaderAdd: ImageVector - get() { - if (_panelLeftHeaderAdd != null) { - return _panelLeftHeaderAdd!! - } - _panelLeftHeaderAdd = fluentIcon(name = "Regular.PanelLeftHeaderAdd") { - fluentPath { - moveTo(5.25f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) - horizontalLineToRelative(6.25f) - curveToRelative(-0.2f, -0.47f, -0.34f, -0.98f, -0.42f, -1.5f) - lineTo(9.5f, 18.5f) - verticalLineToRelative(-8.0f) - horizontalLineToRelative(11.0f) - verticalLineToRelative(1.23f) - curveToRelative(0.55f, 0.29f, 1.06f, 0.65f, 1.5f, 1.08f) - lineTo(22.0f, 7.25f) - curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) - lineTo(5.25f, 4.0f) - close() - moveTo(20.5f, 9.0f) - horizontalLineToRelative(-11.0f) - lineTo(9.5f, 5.5f) - horizontalLineToRelative(9.25f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(20.5f, 9.0f) - close() - moveTo(5.25f, 5.5f) - lineTo(8.0f, 5.5f) - verticalLineToRelative(13.0f) - lineTo(5.25f, 18.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _panelLeftHeaderAdd!! - } - -private var _panelLeftHeaderAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelLeftHeaderKey.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelLeftHeaderKey.kt deleted file mode 100644 index 18ac1702..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelLeftHeaderKey.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PanelLeftHeaderKey: ImageVector - get() { - if (_panelLeftHeaderKey != null) { - return _panelLeftHeaderKey!! - } - _panelLeftHeaderKey = fluentIcon(name = "Regular.PanelLeftHeaderKey") { - fluentPath { - moveTo(5.25f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) - horizontalLineToRelative(5.95f) - curveToRelative(0.08f, -0.16f, 0.19f, -0.3f, 0.31f, -0.43f) - lineToRelative(1.08f, -1.07f) - lineTo(9.5f, 18.5f) - verticalLineToRelative(-8.0f) - horizontalLineToRelative(11.0f) - verticalLineToRelative(0.61f) - curveToRelative(0.54f, 0.13f, 1.05f, 0.35f, 1.5f, 0.65f) - lineTo(22.0f, 7.25f) - curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) - lineTo(5.25f, 4.0f) - close() - moveTo(20.5f, 9.0f) - horizontalLineToRelative(-11.0f) - lineTo(9.5f, 5.5f) - horizontalLineToRelative(9.25f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(20.5f, 9.0f) - close() - moveTo(8.0f, 5.5f) - verticalLineToRelative(13.0f) - lineTo(5.25f, 18.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - lineTo(8.0f, 5.5f) - close() - moveTo(19.5f, 19.0f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, -3.38f, -2.59f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.15f, 0.12f) - lineToRelative(-3.75f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.22f, 0.53f) - verticalLineToRelative(1.44f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(1.75f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(15.0f, 22.0f) - horizontalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(1.5f) - close() - moveTo(21.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - } - } - return _panelLeftHeaderKey!! - } - -private var _panelLeftHeaderKey: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelLeftKey.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelLeftKey.kt deleted file mode 100644 index 1040e2f0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelLeftKey.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PanelLeftKey: ImageVector - get() { - if (_panelLeftKey != null) { - return _panelLeftKey!! - } - _panelLeftKey = fluentIcon(name = "Regular.PanelLeftKey") { - fluentPath { - moveTo(2.0f, 7.25f) - curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) - horizontalLineToRelative(13.5f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(4.5f) - curveToRelative(-0.45f, -0.3f, -0.96f, -0.52f, -1.5f, -0.64f) - lineTo(20.5f, 7.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(9.5f, 5.5f) - verticalLineToRelative(13.0f) - horizontalLineToRelative(3.09f) - lineToRelative(-1.08f, 1.07f) - curveToRelative(-0.12f, 0.13f, -0.23f, 0.27f, -0.31f, 0.43f) - lineTo(5.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - close() - moveTo(8.0f, 5.5f) - lineTo(5.25f, 5.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(8.0f, 18.5f) - verticalLineToRelative(-13.0f) - close() - moveTo(23.0f, 15.5f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.5f, 3.5f) - lineTo(18.0f, 19.0f) - verticalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-1.44f) - curveToRelative(0.0f, -0.2f, 0.08f, -0.39f, 0.22f, -0.53f) - lineToRelative(3.75f, -3.75f) - lineToRelative(0.15f, -0.12f) - arcTo(3.5f, 3.5f, 0.0f, true, true, 23.0f, 15.5f) - close() - moveTo(20.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - } - } - return _panelLeftKey!! - } - -private var _panelLeftKey: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelRight.kt deleted file mode 100644 index f5582e06..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelRight.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PanelRight: ImageVector - get() { - if (_panelRight != null) { - return _panelRight!! - } - _panelRight = fluentIcon(name = "Regular.PanelRight") { - fluentPath { - moveTo(22.0f, 7.25f) - curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) - lineTo(5.25f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) - horizontalLineToRelative(13.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-9.5f) - close() - moveTo(14.5f, 5.5f) - verticalLineToRelative(13.0f) - lineTo(5.25f, 18.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(9.25f) - close() - moveTo(16.0f, 5.5f) - horizontalLineToRelative(2.75f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(16.0f, 18.5f) - verticalLineToRelative(-13.0f) - close() - } - } - return _panelRight!! - } - -private var _panelRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelRightContract.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelRightContract.kt deleted file mode 100644 index 4fe26078..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelRightContract.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PanelRightContract: ImageVector - get() { - if (_panelRightContract != null) { - return _panelRightContract!! - } - _panelRightContract = fluentIcon(name = "Regular.PanelRightContract") { - fluentPath { - moveTo(9.2f, 9.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, -0.06f) - lineToRelative(2.5f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.12f) - lineToRelative(-2.5f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.0f, -1.12f) - lineToRelative(1.05f, -0.94f) - lineTo(6.75f, 12.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(3.55f) - lineToRelative(-1.05f, -0.94f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.06f, -1.06f) - close() - moveTo(22.0f, 17.25f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) - lineTo(4.75f, 20.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) - lineTo(2.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) - verticalLineToRelative(10.5f) - close() - moveTo(19.25f, 18.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - lineTo(20.5f, 6.75f) - curveToRelative(0.0f, -0.7f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(16.0f, 5.5f) - verticalLineToRelative(13.0f) - horizontalLineToRelative(3.25f) - close() - moveTo(14.5f, 18.5f) - verticalLineToRelative(-13.0f) - lineTo(4.75f, 5.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.7f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(9.75f) - close() - } - } - return _panelRightContract!! - } - -private var _panelRightContract: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelRightCursor.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelRightCursor.kt deleted file mode 100644 index 0d63ffbf..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PanelRightCursor.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PanelRightCursor: ImageVector - get() { - if (_panelRightCursor != null) { - return _panelRightCursor!! - } - _panelRightCursor = fluentIcon(name = "Regular.PanelRightCursor") { - fluentPath { - moveTo(22.0f, 7.25f) - curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) - lineTo(5.25f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) - lineTo(13.0f, 20.0f) - verticalLineToRelative(-1.5f) - lineTo(5.25f, 18.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(9.25f) - verticalLineToRelative(5.52f) - curveToRelative(0.55f, -0.08f, 1.1f, 0.1f, 1.5f, 0.5f) - lineTo(16.0f, 5.5f) - horizontalLineToRelative(2.75f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(9.26f) - lineToRelative(1.28f, 1.42f) - curveToRelative(0.14f, -0.37f, 0.22f, -0.76f, 0.22f, -1.18f) - verticalLineToRelative(-9.5f) - close() - moveTo(14.49f, 12.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.82f, 0.2f) - lineToRelative(6.37f, 7.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 1.23f) - lineToRelative(-3.54f, -0.88f) - lineToRelative(-2.03f, 3.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.37f, -0.42f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.31f, 0.2f, -0.59f, 0.49f, -0.7f) - close() - } - } - return _panelRightCursor!! - } - -private var _panelRightCursor: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Password.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Password.kt deleted file mode 100644 index d686c9cf..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Password.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Password: ImageVector - get() { - if (_password != null) { - return _password!! - } - _password = fluentIcon(name = "Regular.Password") { - fluentPath { - moveTo(11.78f, 10.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(0.72f, 0.72f) - lineToRelative(-0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(0.72f, -0.72f) - lineToRelative(0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineToRelative(-0.72f, -0.72f) - lineToRelative(0.72f, -0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-0.72f, 0.72f) - lineToRelative(-0.72f, -0.72f) - close() - moveTo(5.22f, 10.22f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(0.72f, 0.72f) - lineToRelative(0.72f, -0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-0.72f, 0.72f) - lineToRelative(0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(7.0f, 13.06f) - lineToRelative(-0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(0.72f, -0.72f) - lineToRelative(-0.72f, -0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - moveTo(16.5f, 13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(16.5f, 13.5f) - close() - moveTo(5.25f, 5.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 8.25f) - verticalLineToRelative(7.5f) - curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) - horizontalLineToRelative(13.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-7.5f) - curveTo(22.0f, 6.45f, 20.55f, 5.0f, 18.75f, 5.0f) - lineTo(5.25f, 5.0f) - close() - moveTo(3.5f, 8.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(5.25f, 17.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-7.5f) - close() - } - } - return _password!! - } - -private var _password: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Patch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Patch.kt deleted file mode 100644 index cb12456c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Patch.kt +++ /dev/null @@ -1,102 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Patch: ImageVector - get() { - if (_patch != null) { - return _patch!! - } - _patch = fluentIcon(name = "Regular.Patch") { - fluentPath { - moveTo(12.0f, 12.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(10.25f, 12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(14.5f, 12.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(12.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(12.0f, 10.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(3.24f, 18.3f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.6f) - lineTo(13.7f, 3.24f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 4.6f, 0.0f) - lineToRelative(2.46f, 2.46f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, 4.6f) - lineTo(10.3f, 20.76f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -4.6f, 0.0f) - lineTo(3.24f, 18.3f) - close() - moveTo(4.3f, 14.76f) - curveToRelative(-0.69f, 0.69f, -0.69f, 1.8f, 0.0f, 2.48f) - lineToRelative(2.46f, 2.46f) - curveToRelative(0.69f, 0.68f, 1.8f, 0.68f, 2.48f, 0.0f) - lineToRelative(1.7f, -1.7f) - lineTo(6.0f, 13.06f) - lineToRelative(-1.7f, 1.7f) - close() - moveTo(16.94f, 12.0f) - lineTo(12.0f, 7.06f) - lineTo(7.06f, 12.0f) - lineTo(12.0f, 16.94f) - lineTo(16.94f, 12.0f) - close() - moveTo(18.0f, 10.94f) - lineToRelative(1.7f, -1.7f) - curveToRelative(0.69f, -0.69f, 0.69f, -1.8f, 0.0f, -2.48f) - lineTo(17.24f, 4.3f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.48f, 0.0f) - lineTo(13.06f, 6.0f) - lineTo(18.0f, 10.94f) - close() - moveTo(10.23f, 5.29f) - lineTo(9.23f, 4.29f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.47f, 0.0f) - lineTo(4.3f, 6.77f) - curveToRelative(-0.69f, 0.69f, -0.69f, 1.8f, 0.0f, 2.48f) - lineToRelative(1.0f, 1.0f) - lineToRelative(-1.07f, 1.05f) - lineToRelative(-1.0f, -1.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.59f) - lineTo(5.7f, 3.24f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 4.6f, 0.0f) - lineToRelative(1.0f, 1.0f) - lineToRelative(-1.07f, 1.05f) - close() - moveTo(12.71f, 19.77f) - lineTo(13.71f, 20.77f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 4.59f, 0.0f) - lineToRelative(2.46f, -2.47f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 0.0f, -4.6f) - lineToRelative(-1.0f, -1.0f) - lineToRelative(-1.05f, 1.07f) - lineToRelative(1.0f, 1.0f) - curveToRelative(0.67f, 0.68f, 0.67f, 1.78f, 0.0f, 2.47f) - lineToRelative(-2.47f, 2.46f) - curveToRelative(-0.69f, 0.69f, -1.8f, 0.69f, -2.48f, 0.0f) - lineToRelative(-1.0f, -1.0f) - lineToRelative(-1.05f, 1.07f) - close() - } - } - return _patch!! - } - -private var _patch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Patient.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Patient.kt deleted file mode 100644 index 5378929e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Patient.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Patient: ImageVector - get() { - if (_patient != null) { - return _patient!! - } - _patient = fluentIcon(name = "Regular.Patient") { - fluentPath { - moveTo(17.75f, 2.0f) - curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) - verticalLineToRelative(15.5f) - curveTo(20.0f, 21.0f, 19.0f, 22.0f, 17.75f, 22.0f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(6.25f, 2.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(18.5f, 16.0f) - horizontalLineToRelative(-13.0f) - verticalLineToRelative(3.75f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) - lineTo(18.5f, 16.0f) - close() - moveTo(7.75f, 17.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-8.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(8.6f) - horizontalLineToRelative(-8.5f) - close() - moveTo(17.75f, 3.5f) - lineTo(6.15f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) - lineTo(5.5f, 14.5f) - lineTo(8.0f, 14.5f) - verticalLineToRelative(-2.25f) - curveToRelative(0.0f, -0.65f, 0.5f, -1.18f, 1.12f, -1.25f) - horizontalLineToRelative(5.63f) - curveToRelative(0.65f, 0.0f, 1.18f, 0.49f, 1.24f, 1.12f) - lineToRelative(0.01f, 0.13f) - verticalLineToRelative(2.25f) - horizontalLineToRelative(2.5f) - lineTo(18.5f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(14.5f, 12.5f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(12.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - moveTo(12.0f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - } - } - return _patient!! - } - -private var _patient: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PauseCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PauseCircle.kt deleted file mode 100644 index 032a1fbc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PauseCircle.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PauseCircle: ImageVector - get() { - if (_pauseCircle != null) { - return _pauseCircle!! - } - _pauseCircle = fluentIcon(name = "Regular.PauseCircle") { - fluentPath { - moveTo(10.5f, 8.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-7.5f) - close() - moveTo(15.0f, 8.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-7.5f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) - close() - moveTo(3.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 17.0f, 0.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, -17.0f, 0.0f) - close() - } - } - return _pauseCircle!! - } - -private var _pauseCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Payment.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Payment.kt deleted file mode 100644 index e3ef6b9b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Payment.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Payment: ImageVector - get() { - if (_payment != null) { - return _payment!! - } - _payment = fluentIcon(name = "Regular.Payment") { - fluentPath { - moveTo(15.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.5f) - close() - moveTo(2.0f, 8.25f) - curveTo(2.0f, 6.45f, 3.46f, 5.0f, 5.25f, 5.0f) - horizontalLineToRelative(13.5f) - curveTo(20.55f, 5.0f, 22.0f, 6.46f, 22.0f, 8.25f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineTo(5.25f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 15.75f) - verticalLineToRelative(-7.5f) - close() - moveTo(20.5f, 9.5f) - verticalLineTo(8.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineTo(5.25f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineTo(9.5f) - horizontalLineToRelative(17.0f) - close() - moveTo(3.5f, 11.0f) - verticalLineToRelative(4.75f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineTo(11.0f) - horizontalLineToRelative(-17.0f) - close() - } - } - return _payment!! - } - -private var _payment: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Pen.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Pen.kt deleted file mode 100644 index 3525a68b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Pen.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Pen: ImageVector - get() { - if (_pen != null) { - return _pen!! - } - _pen = fluentIcon(name = "Regular.Pen") { - fluentPath { - moveTo(20.95f, 3.05f) - arcToRelative(3.58f, 3.58f, 0.0f, false, false, -5.06f, 0.0f) - lineTo(3.94f, 15.0f) - curveToRelative(-0.4f, 0.4f, -0.7f, 0.92f, -0.82f, 1.48f) - lineToRelative(-1.1f, 4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.9f, 0.9f) - lineToRelative(4.6f, -1.1f) - arcTo(3.1f, 3.1f, 0.0f, false, false, 9.0f, 20.06f) - lineToRelative(10.0f, -10.0f) - curveToRelative(0.68f, 0.68f, 0.68f, 1.79f, 0.0f, 2.47f) - lineToRelative(-1.79f, 1.78f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(1.79f, -1.78f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 0.0f, -4.59f) - lineToRelative(0.9f, -0.9f) - arcToRelative(3.58f, 3.58f, 0.0f, false, false, 0.0f, -5.05f) - close() - moveTo(16.95f, 4.11f) - arcToRelative(2.08f, 2.08f, 0.0f, true, true, 2.94f, 2.94f) - lineTo(7.94f, 19.0f) - arcToRelative(1.6f, 1.6f, 0.0f, false, true, -0.76f, 0.43f) - lineToRelative(-3.42f, 0.8f) - lineToRelative(0.82f, -3.4f) - curveToRelative(0.06f, -0.3f, 0.21f, -0.56f, 0.42f, -0.77f) - lineTo(16.95f, 4.1f) - close() - } - } - return _pen!! - } - -private var _pen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PenOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PenOff.kt deleted file mode 100644 index 3ac97938..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PenOff.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PenOff: ImageVector - get() { - if (_penOff != null) { - return _penOff!! - } - _penOff = fluentIcon(name = "Regular.PenOff") { - fluentPath { - moveTo(8.94f, 10.0f) - lineTo(2.22f, 3.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineToRelative(18.5f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(14.0f, 15.06f) - lineToRelative(-5.0f, 5.0f) - curveToRelative(-0.4f, 0.4f, -0.92f, 0.7f, -1.48f, 0.82f) - lineToRelative(-4.6f, 1.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.9f, -0.9f) - lineToRelative(1.1f, -4.6f) - arcTo(3.1f, 3.1f, 0.0f, false, true, 3.94f, 15.0f) - lineToRelative(5.0f, -5.0f) - close() - moveTo(12.94f, 14.0f) - lineTo(10.0f, 11.06f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(1.6f, 1.6f, 0.0f, false, false, -0.42f, 0.76f) - lineToRelative(-0.82f, 3.42f) - lineToRelative(3.42f, -0.81f) - curveToRelative(0.29f, -0.07f, 0.55f, -0.22f, 0.76f, -0.43f) - lineToRelative(5.0f, -5.0f) - close() - moveTo(19.89f, 7.05f) - lineTo(15.06f, 11.88f) - lineTo(16.12f, 12.94f) - lineTo(19.0f, 10.06f) - curveToRelative(0.68f, 0.68f, 0.68f, 1.79f, 0.0f, 2.47f) - lineToRelative(-1.65f, 1.64f) - lineToRelative(1.06f, 1.06f) - lineToRelative(1.64f, -1.64f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 20.07f, 9.0f) - lineToRelative(0.9f, -0.9f) - arcToRelative(3.58f, 3.58f, 0.0f, false, false, -5.07f, -5.05f) - lineToRelative(-4.83f, 4.83f) - lineToRelative(1.06f, 1.06f) - lineToRelative(4.83f, -4.83f) - arcToRelative(2.08f, 2.08f, 0.0f, true, true, 2.94f, 2.94f) - close() - } - } - return _penOff!! - } - -private var _penOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PenProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PenProhibited.kt deleted file mode 100644 index e2ca85b1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PenProhibited.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PenProhibited: ImageVector - get() { - if (_penProhibited != null) { - return _penProhibited!! - } - _penProhibited = fluentIcon(name = "Regular.PenProhibited") { - fluentPath { - moveTo(15.9f, 3.05f) - arcToRelative(3.58f, 3.58f, 0.0f, true, true, 5.05f, 5.06f) - lineToRelative(-3.04f, 3.04f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -2.0f, -0.12f) - lineToRelative(3.98f, -3.98f) - arcToRelative(2.08f, 2.08f, 0.0f, false, false, -2.94f, -2.94f) - lineTo(5.0f, 16.06f) - arcToRelative(1.6f, 1.6f, 0.0f, false, false, -0.42f, 0.76f) - lineToRelative(-0.82f, 3.42f) - lineToRelative(3.42f, -0.81f) - curveToRelative(0.29f, -0.07f, 0.55f, -0.22f, 0.76f, -0.43f) - lineToRelative(2.09f, -2.09f) - arcToRelative(6.57f, 6.57f, 0.0f, false, false, 0.12f, 2.0f) - lineTo(9.0f, 20.06f) - curveToRelative(-0.4f, 0.4f, -0.92f, 0.7f, -1.48f, 0.82f) - lineToRelative(-4.6f, 1.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.9f, -0.9f) - lineToRelative(1.1f, -4.6f) - arcTo(3.1f, 3.1f, 0.0f, false, true, 3.94f, 15.0f) - lineTo(15.9f, 3.05f) - close() - moveTo(22.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(12.5f, 17.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 6.25f, -3.3f) - lineToRelative(-5.56f, 5.55f) - arcToRelative(3.98f, 3.98f, 0.0f, false, true, -0.69f, -2.25f) - close() - moveTo(16.5f, 21.5f) - curveToRelative(-0.83f, 0.0f, -1.6f, -0.26f, -2.25f, -0.7f) - lineToRelative(5.56f, -5.55f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -3.3f, 6.25f) - close() - } - } - return _penProhibited!! - } - -private var _penProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/People.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/People.kt deleted file mode 100644 index 5fd9288b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/People.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.People: ImageVector - get() { - if (_people != null) { - return _people!! - } - _people = fluentIcon(name = "Regular.People") { - fluentPath { - moveTo(5.5f, 8.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) - close() - moveTo(8.0f, 4.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) - close() - moveTo(15.5f, 9.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - moveTo(17.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - moveTo(14.25f, 19.04f) - curveToRelative(0.7f, 0.28f, 1.6f, 0.46f, 2.75f, 0.46f) - curveToRelative(2.28f, 0.0f, 3.59f, -0.7f, 4.3f, -1.56f) - arcToRelative(3.14f, 3.14f, 0.0f, false, false, 0.7f, -1.73f) - verticalLineToRelative(-0.03f) - curveToRelative(0.0f, -1.2f, -0.97f, -2.18f, -2.18f, -2.18f) - lineTo(14.1f, 14.0f) - curveToRelative(0.4f, 0.41f, 0.68f, 0.93f, 0.81f, 1.5f) - horizontalLineToRelative(4.91f) - arcToRelative(0.68f, 0.68f, 0.0f, false, true, 0.68f, 0.7f) - lineToRelative(-0.04f, 0.18f) - curveToRelative(-0.04f, 0.16f, -0.13f, 0.38f, -0.32f, 0.6f) - curveTo(19.8f, 17.42f, 18.97f, 18.0f, 17.0f, 18.0f) - curveToRelative(-0.98f, 0.0f, -1.67f, -0.15f, -2.17f, -0.34f) - curveToRelative(-0.1f, 0.4f, -0.28f, 0.88f, -0.58f, 1.38f) - close() - moveTo(4.25f, 14.0f) - curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) - verticalLineToRelative(0.28f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, 0.01f, 0.2f) - curveToRelative(0.02f, 0.14f, 0.04f, 0.32f, 0.1f, 0.53f) - curveToRelative(0.09f, 0.42f, 0.29f, 0.98f, 0.68f, 1.55f) - curveTo(3.61f, 19.97f, 5.17f, 21.0f, 8.0f, 21.0f) - reflectiveCurveToRelative(4.39f, -1.03f, 5.2f, -2.2f) - arcToRelative(4.48f, 4.48f, 0.0f, false, false, 0.8f, -2.27f) - verticalLineToRelative(-0.28f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-7.5f) - close() - moveTo(3.5f, 16.5f) - verticalLineToRelative(-0.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.34f) - lineToRelative(-0.06f, 0.33f) - curveToRelative(-0.07f, 0.28f, -0.2f, 0.65f, -0.46f, 1.02f) - curveToRelative(-0.5f, 0.71f, -1.56f, 1.56f, -3.98f, 1.56f) - reflectiveCurveToRelative(-3.49f, -0.85f, -3.98f, -1.56f) - arcToRelative(2.99f, 2.99f, 0.0f, false, true, -0.52f, -1.43f) - close() - } - } - return _people!! - } - -private var _people: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleAdd.kt deleted file mode 100644 index bf0c7704..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleAdd.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PeopleAdd: ImageVector - get() { - if (_peopleAdd != null) { - return _peopleAdd!! - } - _peopleAdd = fluentIcon(name = "Regular.PeopleAdd") { - fluentPath { - moveTo(5.5f, 7.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) - close() - moveTo(8.0f, 3.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) - close() - moveTo(15.5f, 8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - moveTo(17.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - moveTo(4.25f, 13.0f) - curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) - verticalLineToRelative(0.28f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, 0.01f, 0.2f) - curveToRelative(0.02f, 0.14f, 0.04f, 0.32f, 0.1f, 0.53f) - curveToRelative(0.09f, 0.42f, 0.29f, 0.98f, 0.68f, 1.55f) - curveTo(3.61f, 18.97f, 5.17f, 20.0f, 8.0f, 20.0f) - curveToRelative(1.37f, 0.0f, 2.44f, -0.24f, 3.28f, -0.62f) - arcToRelative(6.48f, 6.48f, 0.0f, false, true, -0.27f, -1.55f) - curveToRelative(-0.65f, 0.38f, -1.6f, 0.67f, -3.01f, 0.67f) - curveToRelative(-2.42f, 0.0f, -3.49f, -0.85f, -3.98f, -1.56f) - arcToRelative(2.99f, 2.99f, 0.0f, false, true, -0.52f, -1.43f) - verticalLineToRelative(-0.26f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.48f) - curveToRelative(0.25f, -0.48f, 0.56f, -0.92f, 0.91f, -1.32f) - arcToRelative(2.24f, 2.24f, 0.0f, false, false, -0.89f, -0.18f) - horizontalLineToRelative(-7.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _peopleAdd!! - } - -private var _peopleAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleAudience.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleAudience.kt deleted file mode 100644 index 2ed26a32..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleAudience.kt +++ /dev/null @@ -1,96 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PeopleAudience: ImageVector - get() { - if (_peopleAudience != null) { - return _peopleAudience!! - } - _peopleAudience = fluentIcon(name = "Regular.PeopleAudience") { - fluentPath { - moveTo(14.75f, 10.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-3.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.97f, 0.79f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(5.5f) - close() - moveTo(20.5f, 11.75f) - verticalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.38f) - curveToRelative(0.35f, 0.41f, 0.57f, 0.93f, 0.62f, 1.5f) - horizontalLineToRelative(2.76f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - close() - moveTo(2.0f, 15.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(2.76f) - curveToRelative(0.05f, -0.57f, 0.28f, -1.09f, 0.62f, -1.5f) - lineTo(3.75f, 10.0f) - curveTo(2.78f, 10.0f, 2.0f, 10.78f, 2.0f, 11.75f) - verticalLineToRelative(3.5f) - close() - moveTo(12.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) - close() - moveTo(12.0f, 4.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(18.5f, 4.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - moveTo(18.5f, 5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(5.5f, 4.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - moveTo(5.5f, 5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(2.75f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.5f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 5.75f, 22.0f) - horizontalLineToRelative(12.5f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 22.0f, 18.25f) - verticalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(2.75f, 17.0f) - close() - moveTo(5.75f, 20.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.24f, -2.0f) - lineTo(20.5f, 18.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.24f, 2.0f) - lineTo(5.75f, 20.5f) - close() - } - } - return _peopleAudience!! - } - -private var _peopleAudience: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleCall.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleCall.kt deleted file mode 100644 index 97595e4e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleCall.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PeopleCall: ImageVector - get() { - if (_peopleCall != null) { - return _peopleCall!! - } - _peopleCall = fluentIcon(name = "Regular.PeopleCall") { - fluentPath { - moveTo(5.5f, 7.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) - close() - moveTo(8.0f, 3.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) - close() - moveTo(15.5f, 8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - moveTo(17.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - moveTo(4.25f, 13.0f) - curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) - verticalLineToRelative(0.28f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, 0.01f, 0.2f) - curveToRelative(0.02f, 0.14f, 0.04f, 0.32f, 0.1f, 0.53f) - curveToRelative(0.09f, 0.42f, 0.29f, 0.98f, 0.68f, 1.55f) - curveTo(3.61f, 18.97f, 5.17f, 20.0f, 8.0f, 20.0f) - reflectiveCurveToRelative(4.39f, -1.03f, 5.2f, -2.2f) - arcToRelative(4.48f, 4.48f, 0.0f, false, false, 0.8f, -2.27f) - verticalLineToRelative(-0.28f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-7.5f) - close() - moveTo(3.5f, 15.5f) - verticalLineToRelative(-0.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.34f) - lineToRelative(-0.06f, 0.33f) - curveToRelative(-0.07f, 0.28f, -0.2f, 0.65f, -0.46f, 1.02f) - curveToRelative(-0.5f, 0.71f, -1.56f, 1.56f, -3.98f, 1.56f) - reflectiveCurveToRelative(-3.49f, -0.85f, -3.98f, -1.56f) - arcToRelative(2.99f, 2.99f, 0.0f, false, true, -0.52f, -1.43f) - close() - moveTo(18.2f, 14.0f) - lineToRelative(0.47f, -1.21f) - curveToRelative(0.24f, -0.61f, 0.92f, -0.93f, 1.55f, -0.73f) - lineToRelative(0.43f, 0.14f) - curveToRelative(0.72f, 0.24f, 1.32f, 0.8f, 1.35f, 1.57f) - curveToRelative(0.1f, 3.11f, -2.48f, 7.58f, -5.22f, 9.06f) - curveToRelative(-0.67f, 0.36f, -1.46f, 0.12f, -2.03f, -0.4f) - lineToRelative(-0.34f, -0.3f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.14f, -1.7f) - lineToRelative(0.8f, -1.02f) - arcToRelative(1.2f, 1.2f, 0.0f, false, true, 1.22f, -0.42f) - lineToRelative(1.3f, 0.32f) - arcToRelative(3.78f, 3.78f, 0.0f, false, false, 1.77f, -3.08f) - lineToRelative(-0.92f, -0.96f) - arcToRelative(1.2f, 1.2f, 0.0f, false, true, -0.25f, -1.28f) - close() - } - } - return _peopleCall!! - } - -private var _peopleCall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleCheckmark.kt deleted file mode 100644 index a226f430..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleCheckmark.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PeopleCheckmark: ImageVector - get() { - if (_peopleCheckmark != null) { - return _peopleCheckmark!! - } - _peopleCheckmark = fluentIcon(name = "Regular.PeopleCheckmark") { - fluentPath { - moveTo(5.5f, 7.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) - close() - moveTo(8.0f, 3.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) - close() - moveTo(15.5f, 8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - moveTo(17.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - moveTo(4.25f, 13.0f) - curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) - verticalLineToRelative(0.28f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, 0.01f, 0.2f) - curveToRelative(0.02f, 0.14f, 0.04f, 0.32f, 0.1f, 0.53f) - curveToRelative(0.09f, 0.42f, 0.29f, 0.98f, 0.68f, 1.55f) - curveTo(3.61f, 18.97f, 5.17f, 20.0f, 8.0f, 20.0f) - curveToRelative(1.37f, 0.0f, 2.44f, -0.24f, 3.28f, -0.62f) - arcToRelative(6.48f, 6.48f, 0.0f, false, true, -0.27f, -1.55f) - curveToRelative(-0.65f, 0.38f, -1.6f, 0.67f, -3.01f, 0.67f) - curveToRelative(-2.42f, 0.0f, -3.49f, -0.85f, -3.98f, -1.56f) - arcToRelative(2.99f, 2.99f, 0.0f, false, true, -0.52f, -1.43f) - verticalLineToRelative(-0.26f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.48f) - curveToRelative(0.25f, -0.48f, 0.56f, -0.92f, 0.91f, -1.32f) - arcToRelative(2.24f, 2.24f, 0.0f, false, false, -0.89f, -0.18f) - horizontalLineToRelative(-7.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-3.65f, 3.64f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _peopleCheckmark!! - } - -private var _peopleCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleCommunity.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleCommunity.kt deleted file mode 100644 index 43545b64..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleCommunity.kt +++ /dev/null @@ -1,96 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PeopleCommunity: ImageVector - get() { - if (_peopleCommunity != null) { - return _peopleCommunity!! - } - _peopleCommunity = fluentIcon(name = "Regular.PeopleCommunity") { - fluentPath { - moveTo(7.5f, 3.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(4.5f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.0f) - close() - moveTo(3.77f, 9.0f) - curveTo(2.79f, 9.0f, 2.0f, 9.8f, 2.0f, 10.77f) - verticalLineToRelative(0.36f) - curveToRelative(0.0f, 0.2f, 0.0f, 1.4f, 0.7f, 2.57f) - arcToRelative(4.6f, 4.6f, 0.0f, false, false, 2.98f, 2.1f) - curveToRelative(0.2f, -0.55f, 0.58f, -1.02f, 1.06f, -1.34f) - curveToRelative(-1.6f, -0.17f, -2.36f, -0.88f, -2.75f, -1.53f) - arcToRelative(3.65f, 3.65f, 0.0f, false, true, -0.49f, -1.8f) - verticalLineToRelative(-0.36f) - curveToRelative(0.0f, -0.15f, 0.12f, -0.27f, 0.27f, -0.27f) - horizontalLineToRelative(4.26f) - curveToRelative(0.07f, -0.54f, 0.24f, -1.05f, 0.5f, -1.5f) - lineTo(3.78f, 9.0f) - close() - moveTo(15.47f, 9.0f) - curveToRelative(0.26f, 0.45f, 0.43f, 0.96f, 0.5f, 1.5f) - horizontalLineToRelative(4.26f) - curveToRelative(0.15f, 0.0f, 0.27f, 0.12f, 0.27f, 0.27f) - verticalLineToRelative(0.36f) - curveToRelative(0.0f, 0.14f, 0.0f, 1.0f, -0.49f, 1.8f) - curveToRelative(-0.39f, 0.65f, -1.14f, 1.36f, -2.75f, 1.53f) - curveToRelative(0.48f, 0.32f, 0.86f, 0.79f, 1.06f, 1.34f) - arcToRelative(4.6f, 4.6f, 0.0f, false, false, 2.98f, -2.1f) - curveToRelative(0.7f, -1.16f, 0.7f, -2.36f, 0.7f, -2.57f) - verticalLineToRelative(-0.36f) - curveTo(22.0f, 9.79f, 21.2f, 9.0f, 20.23f, 9.0f) - horizontalLineToRelative(-4.77f) - close() - moveTo(15.0f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - moveTo(16.5f, 2.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - moveTo(12.0f, 9.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(9.0f, 11.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.0f) - close() - moveTo(6.5f, 16.77f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(7.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.36f) - curveToRelative(0.0f, 0.2f, 0.0f, 1.4f, -0.7f, 2.57f) - curveToRelative(-0.74f, 1.24f, -2.19f, 2.3f, -4.8f, 2.3f) - reflectiveCurveToRelative(-4.06f, -1.06f, -4.8f, -2.3f) - arcToRelative(5.15f, 5.15f, 0.0f, false, true, -0.7f, -2.57f) - verticalLineToRelative(-0.36f) - close() - moveTo(8.27f, 16.5f) - arcToRelative(0.27f, 0.27f, 0.0f, false, false, -0.27f, 0.27f) - verticalLineToRelative(0.36f) - curveToRelative(0.0f, 0.14f, 0.0f, 1.0f, 0.49f, 1.8f) - curveToRelative(0.44f, 0.74f, 1.37f, 1.57f, 3.51f, 1.57f) - curveToRelative(2.14f, 0.0f, 3.07f, -0.83f, 3.51f, -1.57f) - curveToRelative(0.49f, -0.8f, 0.49f, -1.66f, 0.49f, -1.8f) - verticalLineToRelative(-0.36f) - arcToRelative(0.27f, 0.27f, 0.0f, false, false, -0.27f, -0.27f) - lineTo(8.27f, 16.5f) - close() - } - } - return _peopleCommunity!! - } - -private var _peopleCommunity: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleCommunityAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleCommunityAdd.kt deleted file mode 100644 index 93987298..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleCommunityAdd.kt +++ /dev/null @@ -1,105 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PeopleCommunityAdd: ImageVector - get() { - if (_peopleCommunityAdd != null) { - return _peopleCommunityAdd!! - } - _peopleCommunityAdd = fluentIcon(name = "Regular.PeopleCommunityAdd") { - fluentPath { - moveTo(6.0f, 4.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - moveTo(7.5f, 1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - moveTo(2.0f, 9.77f) - curveTo(2.0f, 8.79f, 2.8f, 8.0f, 3.77f, 8.0f) - horizontalLineToRelative(4.77f) - curveToRelative(-0.27f, 0.45f, -0.44f, 0.96f, -0.5f, 1.5f) - lineTo(3.76f, 9.5f) - arcToRelative(0.27f, 0.27f, 0.0f, false, false, -0.27f, 0.27f) - verticalLineToRelative(0.36f) - curveToRelative(0.0f, 0.14f, 0.0f, 1.0f, 0.49f, 1.8f) - curveToRelative(0.39f, 0.65f, 1.14f, 1.36f, 2.75f, 1.53f) - curveToRelative(-0.48f, 0.32f, -0.86f, 0.79f, -1.06f, 1.34f) - arcToRelative(4.6f, 4.6f, 0.0f, false, true, -2.98f, -2.1f) - arcToRelative(5.15f, 5.15f, 0.0f, false, true, -0.7f, -2.57f) - verticalLineToRelative(-0.36f) - close() - moveTo(15.97f, 9.5f) - arcToRelative(3.97f, 3.97f, 0.0f, false, false, -0.5f, -1.5f) - horizontalLineToRelative(4.76f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.36f) - curveToRelative(0.0f, 0.19f, 0.0f, 1.18f, -0.52f, 2.23f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.29f, -0.78f) - curveToRelative(0.3f, -0.69f, 0.31f, -1.33f, 0.31f, -1.46f) - verticalLineToRelative(-0.35f) - arcToRelative(0.27f, 0.27f, 0.0f, false, false, -0.27f, -0.27f) - horizontalLineToRelative(-4.26f) - close() - moveTo(14.42f, 11.78f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, -4.84f, -3.55f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 4.84f, 3.55f) - close() - moveTo(12.02f, 14.0f) - lineTo(8.27f, 14.0f) - curveToRelative(-0.98f, 0.0f, -1.77f, 0.8f, -1.77f, 1.77f) - verticalLineToRelative(0.36f) - curveToRelative(0.0f, 0.2f, 0.0f, 1.4f, 0.7f, 2.57f) - curveTo(7.94f, 19.94f, 9.4f, 21.0f, 12.0f, 21.0f) - horizontalLineToRelative(0.02f) - curveToRelative(-0.3f, -0.47f, -0.54f, -0.99f, -0.72f, -1.53f) - curveToRelative(-1.65f, -0.16f, -2.42f, -0.88f, -2.81f, -1.54f) - arcToRelative(3.65f, 3.65f, 0.0f, false, true, -0.49f, -1.8f) - verticalLineToRelative(-0.36f) - curveToRelative(0.0f, -0.15f, 0.12f, -0.27f, 0.27f, -0.27f) - horizontalLineToRelative(3.04f) - curveToRelative(0.18f, -0.53f, 0.42f, -1.04f, 0.71f, -1.5f) - close() - moveTo(16.5f, 2.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(13.5f, 4.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.0f) - close() - moveTo(10.5f, 10.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(18.0f, 20.5f) - lineTo(18.0f, 18.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - lineTo(18.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -1.0f, 0.0f) - lineTo(17.0f, 17.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - lineTo(17.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) - close() - } - } - return _peopleCommunityAdd!! - } - -private var _peopleCommunityAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleError.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleError.kt deleted file mode 100644 index f3ea0297..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleError.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PeopleError: ImageVector - get() { - if (_peopleError != null) { - return _peopleError!! - } - _peopleError = fluentIcon(name = "Regular.PeopleError") { - fluentPath { - moveTo(5.5f, 7.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) - close() - moveTo(8.0f, 3.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) - close() - moveTo(15.5f, 8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - moveTo(17.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - moveTo(4.25f, 13.0f) - curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) - verticalLineToRelative(0.28f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, 0.01f, 0.2f) - curveToRelative(0.02f, 0.14f, 0.04f, 0.32f, 0.1f, 0.53f) - curveToRelative(0.09f, 0.42f, 0.29f, 0.98f, 0.68f, 1.55f) - curveTo(3.61f, 18.97f, 5.17f, 20.0f, 8.0f, 20.0f) - curveToRelative(1.37f, 0.0f, 2.44f, -0.24f, 3.28f, -0.62f) - arcToRelative(6.48f, 6.48f, 0.0f, false, true, -0.27f, -1.55f) - curveToRelative(-0.65f, 0.38f, -1.6f, 0.67f, -3.01f, 0.67f) - curveToRelative(-2.42f, 0.0f, -3.49f, -0.85f, -3.98f, -1.56f) - arcToRelative(2.99f, 2.99f, 0.0f, false, true, -0.52f, -1.43f) - verticalLineToRelative(-0.26f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.48f) - curveToRelative(0.25f, -0.48f, 0.56f, -0.92f, 0.91f, -1.32f) - arcToRelative(2.24f, 2.24f, 0.0f, false, false, -0.89f, -0.18f) - horizontalLineToRelative(-7.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(17.5f, 14.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(17.5f, 21.13f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.25f) - close() - } - } - return _peopleError!! - } - -private var _peopleError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleList.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleList.kt deleted file mode 100644 index bbd241a5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleList.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PeopleList: ImageVector - get() { - if (_peopleList != null) { - return _peopleList!! - } - _peopleList = fluentIcon(name = "Regular.PeopleList") { - fluentPath { - moveTo(5.5f, 8.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) - close() - moveTo(8.0f, 4.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) - close() - moveTo(15.5f, 9.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - moveTo(17.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - moveTo(4.25f, 14.0f) - curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) - verticalLineToRelative(0.28f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, 0.01f, 0.2f) - curveToRelative(0.02f, 0.14f, 0.04f, 0.32f, 0.1f, 0.53f) - curveToRelative(0.09f, 0.42f, 0.29f, 0.98f, 0.68f, 1.55f) - curveTo(3.61f, 19.97f, 5.17f, 21.0f, 8.0f, 21.0f) - curveToRelative(1.82f, 0.0f, 3.11f, -0.42f, 4.02f, -1.04f) - curveToRelative(0.07f, -0.37f, 0.25f, -0.7f, 0.5f, -0.96f) - arcToRelative(1.74f, 1.74f, 0.0f, false, true, -0.51f, -1.1f) - lineToRelative(-0.03f, 0.04f) - curveToRelative(-0.5f, 0.71f, -1.56f, 1.56f, -3.98f, 1.56f) - reflectiveCurveToRelative(-3.49f, -0.85f, -3.98f, -1.56f) - arcToRelative(2.99f, 2.99f, 0.0f, false, true, -0.52f, -1.43f) - verticalLineToRelative(-0.26f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.5f) - curveToRelative(0.1f, 0.0f, 0.2f, 0.02f, 0.28f, 0.05f) - arcToRelative(1.76f, 1.76f, 0.0f, false, true, 0.4f, -1.45f) - curveToRelative(-0.22f, -0.06f, -0.44f, -0.1f, -0.68f, -0.1f) - horizontalLineToRelative(-7.5f) - close() - moveTo(12.53f, 16.5f) - lineTo(12.5f, 16.53f) - verticalLineToRelative(-0.06f) - lineToRelative(0.03f, 0.03f) - close() - moveTo(13.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-7.5f) - close() - moveTo(13.75f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-7.5f) - close() - moveTo(13.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-7.5f) - close() - } - } - return _peopleList!! - } - -private var _peopleList: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleLock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleLock.kt deleted file mode 100644 index b6e043d2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleLock.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PeopleLock: ImageVector - get() { - if (_peopleLock != null) { - return _peopleLock!! - } - _peopleLock = fluentIcon(name = "Regular.PeopleLock") { - fluentPath { - moveTo(8.0f, 4.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, -5.0f) - close() - moveTo(4.0f, 7.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, 8.0f, 0.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -8.0f, 0.0f) - close() - moveTo(17.0f, 6.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(14.0f, 8.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 4.45f, 2.63f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -2.44f, 0.2f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 14.0f, 8.0f) - close() - moveTo(13.7f, 14.13f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 11.75f, 13.0f) - horizontalLineToRelative(-7.5f) - curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) - verticalLineToRelative(0.28f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, 0.01f, 0.2f) - curveToRelative(0.02f, 0.14f, 0.04f, 0.32f, 0.1f, 0.53f) - curveToRelative(0.09f, 0.42f, 0.29f, 0.98f, 0.68f, 1.55f) - curveTo(3.61f, 18.97f, 5.17f, 20.0f, 8.0f, 20.0f) - curveToRelative(1.8f, 0.0f, 3.1f, -0.42f, 4.0f, -1.02f) - lineTo(12.0f, 16.9f) - lineToRelative(-0.02f, 0.03f) - curveToRelative(-0.5f, 0.71f, -1.56f, 1.56f, -3.98f, 1.56f) - reflectiveCurveToRelative(-3.49f, -0.85f, -3.98f, -1.56f) - arcToRelative(2.99f, 2.99f, 0.0f, false, true, -0.52f, -1.43f) - verticalLineToRelative(-0.26f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.5f) - curveToRelative(0.34f, 0.0f, 0.63f, 0.23f, 0.72f, 0.54f) - curveToRelative(0.3f, -0.42f, 0.73f, -0.74f, 1.23f, -0.91f) - close() - moveTo(14.5f, 15.0f) - horizontalLineToRelative(0.5f) - verticalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(0.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-6.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - close() - moveTo(16.5f, 14.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - close() - moveTo(18.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - } - } - return _peopleLock!! - } - -private var _peopleLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleMoney.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleMoney.kt deleted file mode 100644 index b040d285..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleMoney.kt +++ /dev/null @@ -1,94 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PeopleMoney: ImageVector - get() { - if (_peopleMoney != null) { - return _peopleMoney!! - } - _peopleMoney = fluentIcon(name = "Regular.PeopleMoney") { - fluentPath { - moveTo(5.5f, 7.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) - close() - moveTo(8.0f, 3.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) - close() - moveTo(15.5f, 8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - moveTo(17.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - moveTo(11.75f, 13.0f) - curveToRelative(0.3f, 0.0f, 0.59f, 0.06f, 0.85f, 0.17f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -1.4f, 1.33f) - lineTo(4.26f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.34f) - lineToRelative(0.06f, 0.33f) - curveToRelative(0.07f, 0.28f, 0.2f, 0.65f, 0.46f, 1.02f) - curveToRelative(0.5f, 0.71f, 1.56f, 1.56f, 3.98f, 1.56f) - curveToRelative(1.4f, 0.0f, 2.36f, -0.29f, 3.0f, -0.67f) - verticalLineToRelative(1.67f) - curveToRelative(-0.8f, 0.3f, -1.78f, 0.5f, -3.0f, 0.5f) - curveToRelative(-2.83f, 0.0f, -4.39f, -1.03f, -5.2f, -2.2f) - arcToRelative(4.49f, 4.49f, 0.0f, false, true, -0.8f, -2.27f) - verticalLineToRelative(-0.28f) - curveTo(2.0f, 14.01f, 3.0f, 13.0f, 4.25f, 13.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(12.0f, 15.5f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(8.0f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - verticalLineToRelative(-4.0f) - close() - moveTo(13.0f, 16.0f) - verticalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - close() - moveTo(22.0f, 17.0f) - verticalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - horizontalLineToRelative(-1.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - close() - moveTo(20.0f, 20.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - verticalLineToRelative(-1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - close() - moveTo(13.0f, 18.0f) - verticalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - close() - moveTo(17.5f, 19.25f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, -3.5f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, 3.5f) - close() - } - } - return _peopleMoney!! - } - -private var _peopleMoney: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleProhibited.kt deleted file mode 100644 index 55310e80..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleProhibited.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PeopleProhibited: ImageVector - get() { - if (_peopleProhibited != null) { - return _peopleProhibited!! - } - _peopleProhibited = fluentIcon(name = "Regular.PeopleProhibited") { - fluentPath { - moveTo(5.5f, 7.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) - close() - moveTo(8.0f, 3.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) - close() - moveTo(15.5f, 8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - moveTo(17.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - moveTo(4.25f, 13.0f) - curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) - verticalLineToRelative(0.28f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, 0.01f, 0.2f) - curveToRelative(0.02f, 0.14f, 0.04f, 0.32f, 0.1f, 0.53f) - curveToRelative(0.09f, 0.42f, 0.29f, 0.98f, 0.68f, 1.55f) - curveTo(3.61f, 18.97f, 5.17f, 20.0f, 8.0f, 20.0f) - curveToRelative(1.37f, 0.0f, 2.44f, -0.24f, 3.28f, -0.62f) - arcToRelative(6.48f, 6.48f, 0.0f, false, true, -0.27f, -1.55f) - curveToRelative(-0.65f, 0.38f, -1.6f, 0.67f, -3.01f, 0.67f) - curveToRelative(-2.42f, 0.0f, -3.49f, -0.85f, -3.98f, -1.56f) - arcToRelative(2.99f, 2.99f, 0.0f, false, true, -0.52f, -1.43f) - verticalLineToRelative(-0.26f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.48f) - curveToRelative(0.25f, -0.48f, 0.56f, -0.92f, 0.91f, -1.32f) - arcToRelative(2.24f, 2.24f, 0.0f, false, false, -0.89f, -0.18f) - horizontalLineToRelative(-7.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(13.5f, 17.5f) - curveToRelative(0.0f, 0.83f, 0.26f, 1.6f, 0.7f, 2.25f) - lineToRelative(5.55f, -5.56f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) - close() - moveTo(17.5f, 21.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) - lineToRelative(-5.55f, 5.56f) - curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) - close() - } - } - return _peopleProhibited!! - } - -private var _peopleProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleQueue.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleQueue.kt deleted file mode 100644 index 3869f425..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleQueue.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PeopleQueue: ImageVector - get() { - if (_peopleQueue != null) { - return _peopleQueue!! - } - _peopleQueue = fluentIcon(name = "Regular.PeopleQueue") { - fluentPath { - moveTo(7.5f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) - close() - moveTo(7.5f, 7.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) - close() - moveTo(3.0f, 11.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(5.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.75f) - arcToRelative(4.5f, 4.5f, 0.0f, true, true, -9.0f, 0.0f) - verticalLineToRelative(-4.75f) - close() - moveTo(4.75f, 11.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(4.75f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 6.0f, 0.0f) - verticalLineToRelative(-4.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-5.5f) - close() - moveTo(10.53f, 8.61f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -5.23f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.75f, 1.3f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 2.63f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -0.75f, 1.3f) - close() - moveTo(10.86f, 20.85f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 5.64f, -4.35f) - verticalLineToRelative(-4.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-2.38f) - curveToRelative(0.34f, 0.42f, 0.57f, 0.93f, 0.62f, 1.5f) - horizontalLineToRelative(1.76f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(4.75f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.89f, 3.0f) - curveToRelative(-0.34f, 0.52f, -0.76f, 0.98f, -1.25f, 1.35f) - close() - moveTo(15.03f, 8.61f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -5.23f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.75f, 1.3f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 2.63f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -0.75f, 1.3f) - close() - moveTo(15.36f, 20.85f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 21.0f, 16.5f) - verticalLineToRelative(-4.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-2.38f) - curveToRelative(0.34f, 0.42f, 0.57f, 0.93f, 0.62f, 1.5f) - horizontalLineToRelative(1.76f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(4.75f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.89f, 3.0f) - curveToRelative(-0.34f, 0.52f, -0.76f, 0.98f, -1.25f, 1.35f) - close() - } - } - return _peopleQueue!! - } - -private var _peopleQueue: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleSearch.kt deleted file mode 100644 index 2ef4f986..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleSearch.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PeopleSearch: ImageVector - get() { - if (_peopleSearch != null) { - return _peopleSearch!! - } - _peopleSearch = fluentIcon(name = "Regular.PeopleSearch") { - fluentPath { - moveTo(11.9f, 14.0f) - horizontalLineToRelative(7.85f) - curveTo(21.0f, 14.0f, 22.0f, 15.0f, 22.0f, 16.25f) - verticalLineToRelative(0.9f) - curveToRelative(0.0f, 1.1f, -0.47f, 2.14f, -1.3f, 2.85f) - curveToRelative(-1.57f, 1.34f, -3.81f, 2.0f, -6.7f, 2.0f) - horizontalLineToRelative(-0.18f) - curveToRelative(0.23f, -0.47f, 0.24f, -1.02f, 0.03f, -1.5f) - lineTo(14.0f, 20.5f) - curveToRelative(2.56f, 0.0f, 4.46f, -0.56f, 5.72f, -1.64f) - curveToRelative(0.5f, -0.43f, 0.78f, -1.05f, 0.78f, -1.7f) - verticalLineToRelative(-0.91f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-7.77f) - arcToRelative(5.56f, 5.56f, 0.0f, false, false, -0.07f, -1.5f) - close() - moveTo(6.5f, 10.5f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 3.46f, 7.38f) - lineToRelative(2.82f, 2.81f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 1.14f) - lineToRelative(-0.09f, -0.08f) - lineToRelative(-2.9f, -2.9f) - arcTo(4.5f, 4.5f, 0.0f, true, true, 6.5f, 10.5f) - close() - moveTo(6.5f, 12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - moveTo(14.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(14.0f, 3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - } - } - return _peopleSearch!! - } - -private var _peopleSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleSettings.kt deleted file mode 100644 index 7ae14a32..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleSettings.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PeopleSettings: ImageVector - get() { - if (_peopleSettings != null) { - return _peopleSettings!! - } - _peopleSettings = fluentIcon(name = "Regular.PeopleSettings") { - fluentPath { - moveTo(5.5f, 7.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) - close() - moveTo(8.0f, 3.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) - close() - moveTo(15.5f, 8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - moveTo(17.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - moveTo(4.25f, 13.0f) - curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) - verticalLineToRelative(0.28f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, 0.01f, 0.2f) - curveToRelative(0.02f, 0.14f, 0.04f, 0.32f, 0.1f, 0.53f) - curveToRelative(0.09f, 0.42f, 0.29f, 0.98f, 0.68f, 1.55f) - curveTo(3.61f, 18.97f, 5.17f, 20.0f, 8.0f, 20.0f) - curveToRelative(1.37f, 0.0f, 2.44f, -0.24f, 3.28f, -0.62f) - arcToRelative(6.48f, 6.48f, 0.0f, false, true, -0.27f, -1.55f) - curveToRelative(-0.65f, 0.38f, -1.6f, 0.67f, -3.01f, 0.67f) - curveToRelative(-2.42f, 0.0f, -3.49f, -0.85f, -3.98f, -1.56f) - arcToRelative(2.99f, 2.99f, 0.0f, false, true, -0.52f, -1.43f) - verticalLineToRelative(-0.26f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.48f) - curveToRelative(0.25f, -0.48f, 0.56f, -0.92f, 0.91f, -1.32f) - arcToRelative(2.24f, 2.24f, 0.0f, false, false, -0.89f, -0.18f) - horizontalLineToRelative(-7.5f) - close() - moveTo(14.28f, 13.98f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.59f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) - lineToRelative(0.55f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) - lineToRelative(-0.19f, 0.64f) - curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) - lineToRelative(0.49f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.9f) - lineToRelative(-0.2f, -0.7f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) - lineToRelative(0.59f, -0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, -0.01f, -1.8f) - lineToRelative(-0.54f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.19f, -0.63f) - curveToRelative(-0.44f, -0.39f, -0.94f, -0.7f, -1.49f, -0.93f) - lineToRelative(-0.49f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.91f) - lineToRelative(0.2f, 0.69f) - close() - moveTo(17.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) - close() - } - } - return _peopleSettings!! - } - -private var _peopleSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleStar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleStar.kt deleted file mode 100644 index dc196b6c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleStar.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PeopleStar: ImageVector - get() { - if (_peopleStar != null) { - return _peopleStar!! - } - _peopleStar = fluentIcon(name = "Regular.PeopleStar") { - fluentPath { - moveTo(5.5f, 7.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) - close() - moveTo(8.0f, 3.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) - close() - moveTo(15.5f, 8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - moveTo(17.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - moveTo(4.25f, 13.0f) - curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) - verticalLineToRelative(0.28f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, 0.01f, 0.2f) - curveToRelative(0.02f, 0.14f, 0.04f, 0.32f, 0.1f, 0.53f) - curveToRelative(0.09f, 0.42f, 0.29f, 0.98f, 0.68f, 1.55f) - curveTo(3.61f, 18.97f, 5.17f, 20.0f, 8.0f, 20.0f) - curveToRelative(1.37f, 0.0f, 2.44f, -0.24f, 3.28f, -0.62f) - arcToRelative(6.48f, 6.48f, 0.0f, false, true, -0.27f, -1.55f) - curveToRelative(-0.65f, 0.38f, -1.6f, 0.67f, -3.01f, 0.67f) - curveToRelative(-2.42f, 0.0f, -3.49f, -0.85f, -3.98f, -1.56f) - arcToRelative(2.99f, 2.99f, 0.0f, false, true, -0.52f, -1.43f) - verticalLineToRelative(-0.26f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.48f) - curveToRelative(0.25f, -0.48f, 0.56f, -0.92f, 0.91f, -1.32f) - arcToRelative(2.24f, 2.24f, 0.0f, false, false, -0.89f, -0.18f) - horizontalLineToRelative(-7.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(18.06f, 14.42f) - arcToRelative(0.58f, 0.58f, 0.0f, false, false, -1.12f, 0.0f) - lineToRelative(-0.55f, 1.79f) - horizontalLineToRelative(-1.8f) - curveToRelative(-0.57f, 0.0f, -0.8f, 0.75f, -0.35f, 1.1f) - lineToRelative(1.46f, 1.1f) - lineToRelative(-0.56f, 1.79f) - curveToRelative(-0.17f, 0.56f, 0.44f, 1.03f, 0.9f, 0.68f) - lineToRelative(1.46f, -1.1f) - lineToRelative(1.46f, 1.1f) - curveToRelative(0.46f, 0.35f, 1.07f, -0.12f, 0.9f, -0.68f) - lineToRelative(-0.56f, -1.79f) - lineToRelative(1.46f, -1.1f) - curveToRelative(0.46f, -0.35f, 0.22f, -1.1f, -0.35f, -1.1f) - horizontalLineToRelative(-1.8f) - lineToRelative(-0.55f, -1.79f) - close() - } - } - return _peopleStar!! - } - -private var _peopleStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleSwap.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleSwap.kt deleted file mode 100644 index ed40b905..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleSwap.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PeopleSwap: ImageVector - get() { - if (_peopleSwap != null) { - return _peopleSwap!! - } - _peopleSwap = fluentIcon(name = "Regular.PeopleSwap") { - fluentPath { - moveTo(8.0f, 5.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, -5.0f) - close() - moveTo(4.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, 8.0f, 0.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -8.0f, 0.0f) - close() - moveTo(17.0f, 7.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(14.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.0f) - close() - moveTo(12.78f, 14.25f) - curveToRelative(-0.31f, -0.16f, -0.66f, -0.25f, -1.03f, -0.25f) - horizontalLineToRelative(-7.5f) - curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) - verticalLineToRelative(0.28f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, 0.01f, 0.2f) - curveToRelative(0.02f, 0.14f, 0.04f, 0.32f, 0.1f, 0.53f) - curveToRelative(0.09f, 0.42f, 0.29f, 0.98f, 0.68f, 1.55f) - curveTo(3.61f, 19.97f, 5.17f, 21.0f, 8.0f, 21.0f) - curveToRelative(1.6f, 0.0f, 2.8f, -0.33f, 3.7f, -0.83f) - lineToRelative(-1.13f, -1.12f) - curveToRelative(-0.61f, 0.27f, -1.45f, 0.45f, -2.57f, 0.45f) - curveToRelative(-2.42f, 0.0f, -3.49f, -0.85f, -3.98f, -1.56f) - arcToRelative(2.99f, 2.99f, 0.0f, false, true, -0.52f, -1.43f) - verticalLineToRelative(-0.26f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.28f) - lineToRelative(1.25f, -1.25f) - close() - moveTo(20.28f, 14.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineTo(20.44f, 17.0f) - horizontalLineToRelative(-6.88f) - lineToRelative(1.22f, -1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineToRelative(-2.5f, 2.5f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineToRelative(-1.22f, -1.22f) - horizontalLineToRelative(6.88f) - lineToRelative(-1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineToRelative(2.5f, -2.5f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-2.5f, -2.5f) - close() - } - } - return _peopleSwap!! - } - -private var _peopleSwap: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleTeam.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleTeam.kt deleted file mode 100644 index aedd8d5c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleTeam.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PeopleTeam: ImageVector - get() { - if (_peopleTeam != null) { - return _peopleTeam!! - } - _peopleTeam = fluentIcon(name = "Regular.PeopleTeam") { - fluentPath { - moveTo(14.75f, 10.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.75f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -9.0f, 0.0f) - verticalLineToRelative(-4.75f) - curveToRelative(0.0f, -0.97f, 0.79f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(5.5f) - close() - moveTo(14.75f, 11.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(4.75f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 6.0f, 0.0f) - verticalLineToRelative(-4.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(3.75f, 10.0f) - horizontalLineToRelative(3.38f) - curveToRelative(-0.34f, 0.41f, -0.57f, 0.93f, -0.62f, 1.5f) - lineTo(3.75f, 11.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - lineTo(3.5f, 15.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.08f, 2.43f) - curveToRelative(0.09f, 0.5f, 0.24f, 0.99f, 0.45f, 1.43f) - arcTo(4.0f, 4.0f, 0.0f, false, true, 2.0f, 15.0f) - verticalLineToRelative(-3.24f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - close() - moveTo(16.87f, 10.0f) - horizontalLineToRelative(3.38f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(22.0f, 15.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -5.03f, 3.87f) - curveToRelative(0.21f, -0.45f, 0.37f, -0.93f, 0.46f, -1.44f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 20.5f, 15.0f) - verticalLineToRelative(-3.25f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-2.76f) - arcToRelative(2.74f, 2.74f, 0.0f, false, false, -0.62f, -1.5f) - close() - moveTo(12.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) - close() - moveTo(18.5f, 4.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - moveTo(5.5f, 4.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - moveTo(12.0f, 4.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(18.5f, 5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(5.5f, 5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - } - } - return _peopleTeam!! - } - -private var _peopleTeam: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleTeamAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleTeamAdd.kt deleted file mode 100644 index 4fe4a485..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleTeamAdd.kt +++ /dev/null @@ -1,113 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PeopleTeamAdd: ImageVector - get() { - if (_peopleTeamAdd != null) { - return _peopleTeamAdd!! - } - _peopleTeamAdd = fluentIcon(name = "Regular.PeopleTeamAdd") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(17.5f, 14.0f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) - lineToRelative(-0.01f, 0.1f) - lineTo(17.0f, 17.0f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(0.18f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) - lineToRelative(0.1f, 0.01f) - lineTo(17.0f, 18.0f) - verticalLineToRelative(2.6f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - horizontalLineToRelative(0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) - lineToRelative(0.01f, -0.1f) - lineTo(18.0f, 18.0f) - horizontalLineToRelative(2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - verticalLineToRelative(-0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) - lineToRelative(-0.1f, -0.01f) - lineTo(18.0f, 17.0f) - verticalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) - horizontalLineToRelative(-0.09f) - close() - moveTo(14.25f, 10.0f) - curveToRelative(0.84f, 0.0f, 1.57f, 0.45f, 1.96f, 1.13f) - curveToRelative(-0.54f, 0.1f, -1.05f, 0.28f, -1.52f, 0.5f) - arcToRelative(0.74f, 0.74f, 0.0f, false, false, -0.44f, -0.13f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.25f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 2.29f, 2.91f) - curveToRelative(0.17f, 0.57f, 0.42f, 1.1f, 0.73f, 1.6f) - lineTo(12.0f, 21.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -4.5f, -4.5f) - verticalLineToRelative(-4.25f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(4.5f) - close() - moveTo(7.41f, 10.0f) - curveToRelative(-0.4f, 0.41f, -0.69f, 0.93f, -0.82f, 1.5f) - lineTo(4.25f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(3.5f, 15.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.08f, 2.43f) - curveToRelative(0.09f, 0.5f, 0.24f, 0.99f, 0.45f, 1.43f) - arcTo(4.0f, 4.0f, 0.0f, false, true, 2.0f, 15.0f) - verticalLineToRelative(-2.74f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineToRelative(0.15f, -0.01f) - horizontalLineToRelative(3.16f) - close() - moveTo(19.75f, 10.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(0.56f) - arcTo(6.48f, 6.48f, 0.0f, false, false, 17.5f, 11.0f) - horizontalLineToRelative(-0.25f) - arcToRelative(3.21f, 3.21f, 0.0f, false, false, -0.65f, -1.0f) - horizontalLineToRelative(3.15f) - close() - moveTo(18.5f, 4.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - moveTo(12.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) - close() - moveTo(5.5f, 4.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - moveTo(18.5f, 5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(12.0f, 4.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(5.5f, 5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - } - } - return _peopleTeamAdd!! - } - -private var _peopleTeamAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleTeamDelete.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleTeamDelete.kt deleted file mode 100644 index a10138cf..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleTeamDelete.kt +++ /dev/null @@ -1,121 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PeopleTeamDelete: ImageVector - get() { - if (_peopleTeamDelete != null) { - return _peopleTeamDelete!! - } - _peopleTeamDelete = fluentIcon(name = "Regular.PeopleTeamDelete") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(14.25f, 10.0f) - curveToRelative(0.84f, 0.0f, 1.57f, 0.45f, 1.96f, 1.13f) - curveToRelative(-0.54f, 0.1f, -1.05f, 0.28f, -1.52f, 0.5f) - arcToRelative(0.74f, 0.74f, 0.0f, false, false, -0.44f, -0.13f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.25f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 2.29f, 2.91f) - curveToRelative(0.17f, 0.57f, 0.42f, 1.1f, 0.73f, 1.6f) - lineTo(12.0f, 21.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -4.5f, -4.5f) - verticalLineToRelative(-4.25f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(4.5f) - close() - moveTo(15.09f, 14.97f) - lineTo(15.02f, 15.02f) - lineTo(14.97f, 15.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.05f, 0.07f) - lineToRelative(1.77f, 1.77f) - lineToRelative(-1.76f, 1.77f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.06f, 0.06f) - lineToRelative(0.07f, 0.06f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) - lineToRelative(0.07f, -0.06f) - lineToRelative(1.77f, -1.76f) - lineToRelative(1.77f, 1.77f) - lineToRelative(0.07f, 0.05f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.57f, 0.0f) - lineToRelative(0.07f, -0.05f) - lineToRelative(0.05f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) - lineToRelative(-0.05f, -0.07f) - lineToRelative(-1.77f, -1.77f) - lineToRelative(1.77f, -1.77f) - lineToRelative(0.06f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) - lineToRelative(-0.06f, -0.07f) - lineToRelative(-0.07f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) - lineToRelative(-0.07f, 0.05f) - lineToRelative(-1.77f, 1.77f) - lineToRelative(-1.77f, -1.77f) - lineToRelative(-0.07f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.05f) - lineToRelative(-0.07f, 0.05f) - close() - moveTo(7.41f, 10.0f) - curveToRelative(-0.4f, 0.41f, -0.69f, 0.93f, -0.82f, 1.5f) - lineTo(4.25f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(3.5f, 15.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.08f, 2.43f) - curveToRelative(0.09f, 0.5f, 0.24f, 0.99f, 0.45f, 1.43f) - arcTo(4.0f, 4.0f, 0.0f, false, true, 2.0f, 15.0f) - verticalLineToRelative(-2.74f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineToRelative(0.15f, -0.01f) - horizontalLineToRelative(3.16f) - close() - moveTo(19.75f, 10.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(0.56f) - arcTo(6.48f, 6.48f, 0.0f, false, false, 17.5f, 11.0f) - horizontalLineToRelative(-0.25f) - arcToRelative(3.21f, 3.21f, 0.0f, false, false, -0.65f, -1.0f) - horizontalLineToRelative(3.15f) - close() - moveTo(18.5f, 4.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - moveTo(12.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) - close() - moveTo(5.5f, 4.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - moveTo(18.5f, 5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(12.0f, 4.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(5.5f, 5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - } - } - return _peopleTeamDelete!! - } - -private var _peopleTeamDelete: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleTeamToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleTeamToolbox.kt deleted file mode 100644 index 4466706c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PeopleTeamToolbox.kt +++ /dev/null @@ -1,126 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PeopleTeamToolbox: ImageVector - get() { - if (_peopleTeamToolbox != null) { - return _peopleTeamToolbox!! - } - _peopleTeamToolbox = fluentIcon(name = "Regular.PeopleTeamToolbox") { - fluentPath { - moveTo(14.75f, 10.0f) - curveToRelative(0.8f, 0.0f, 1.47f, 0.53f, 1.68f, 1.25f) - horizontalLineToRelative(-0.68f) - curveToRelative(-0.4f, 0.0f, -0.8f, 0.09f, -1.15f, 0.25f) - lineTo(9.25f, 11.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(4.75f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 2.0f, 2.83f) - verticalLineToRelative(1.56f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -3.5f, -4.4f) - verticalLineToRelative(-4.74f) - curveToRelative(0.0f, -0.97f, 0.79f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(5.5f) - close() - moveTo(19.25f, 11.25f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 13.99f) - verticalLineToRelative(-2.24f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.38f) - curveToRelative(0.3f, 0.35f, 0.5f, 0.78f, 0.59f, 1.25f) - horizontalLineToRelative(1.79f) - close() - moveTo(3.75f, 10.0f) - horizontalLineToRelative(3.38f) - curveToRelative(-0.34f, 0.41f, -0.57f, 0.93f, -0.62f, 1.5f) - lineTo(3.75f, 11.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - lineTo(3.5f, 15.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.08f, 2.43f) - curveToRelative(0.09f, 0.5f, 0.24f, 0.99f, 0.45f, 1.43f) - arcTo(4.0f, 4.0f, 0.0f, false, true, 2.0f, 15.0f) - verticalLineToRelative(-3.24f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - close() - moveTo(12.0f, 3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) - close() - moveTo(12.0f, 4.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(18.5f, 4.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - moveTo(18.5f, 5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(5.5f, 4.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - moveTo(5.5f, 5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(14.0f, 15.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - lineTo(12.0f, 18.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(16.0f, 18.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(20.5f, 18.0f) - lineTo(23.0f, 18.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(21.0f, 15.0f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(1.0f) - close() - moveTo(15.5f, 14.0f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(12.0f, 21.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.75f) - lineTo(23.0f, 19.5f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - close() - } - } - return _peopleTeamToolbox!! - } - -private var _peopleTeamToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonAccounts.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonAccounts.kt deleted file mode 100644 index b1c6e3ff..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonAccounts.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonAccounts: ImageVector - get() { - if (_personAccounts != null) { - return _personAccounts!! - } - _personAccounts = fluentIcon(name = "Regular.PersonAccounts") { - fluentPath { - moveTo(13.0f, 14.05f) - lineTo(13.0f, 14.0f) - lineTo(4.25f, 14.0f) - curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) - verticalLineToRelative(0.58f) - curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) - curveTo(4.47f, 21.1f, 6.85f, 22.0f, 10.0f, 22.0f) - curveToRelative(0.36f, 0.0f, 0.7f, -0.01f, 1.04f, -0.03f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -0.04f, -0.47f) - verticalLineToRelative(-1.03f) - curveToRelative(-0.32f, 0.02f, -0.65f, 0.03f, -1.0f, 0.03f) - curveToRelative(-2.74f, 0.0f, -4.7f, -0.74f, -5.96f, -2.21f) - curveToRelative(-0.34f, -0.4f, -0.54f, -0.93f, -0.54f, -1.46f) - verticalLineToRelative(-0.58f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.96f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 13.0f, 14.05f) - close() - moveTo(10.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(10.0f, 3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - moveTo(14.0f, 15.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(8.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(21.0f, 15.0f) - verticalLineToRelative(-1.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(14.0f, 15.0f) - close() - moveTo(15.5f, 13.75f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - lineTo(19.5f, 15.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-1.25f) - close() - } - } - return _personAccounts!! - } - -private var _personAccounts: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonAdd.kt deleted file mode 100644 index b54f4b7b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonAdd.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonAdd: ImageVector - get() { - if (_personAdd != null) { - return _personAdd!! - } - _personAdd = fluentIcon(name = "Regular.PersonAdd") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(12.02f, 14.0f) - curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) - lineTo(4.24f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.58f) - curveToRelative(0.0f, 0.53f, 0.2f, 1.05f, 0.54f, 1.46f) - curveTo(5.3f, 19.76f, 7.26f, 20.5f, 10.0f, 20.5f) - curveToRelative(0.6f, 0.0f, 1.16f, -0.03f, 1.68f, -0.1f) - curveToRelative(0.25f, 0.49f, 0.55f, 0.95f, 0.91f, 1.36f) - curveToRelative(-0.8f, 0.16f, -1.66f, 0.24f, -2.59f, 0.24f) - curveToRelative(-3.15f, 0.0f, -5.53f, -0.9f, -7.1f, -2.74f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.9f, -2.43f) - verticalLineToRelative(-0.58f) - curveTo(2.0f, 15.0f, 3.01f, 14.0f, 4.25f, 14.0f) - horizontalLineToRelative(7.77f) - close() - moveTo(17.5f, 14.0f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - lineToRelative(-0.01f, 0.09f) - lineTo(17.0f, 17.0f) - lineTo(14.4f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(0.18f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.37f, 0.4f, 0.4f) - lineToRelative(0.1f, 0.01f) - lineTo(17.0f, 18.0f) - verticalLineToRelative(2.59f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.37f, 0.41f, 0.4f) - lineToRelative(0.09f, 0.01f) - horizontalLineToRelative(0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - lineToRelative(0.01f, -0.09f) - lineTo(18.0f, 18.0f) - horizontalLineToRelative(2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - verticalLineToRelative(-0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) - lineToRelative(-0.1f, -0.01f) - lineTo(18.0f, 17.0f) - verticalLineToRelative(-2.59f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) - lineTo(17.5f, 14.0f) - close() - moveTo(10.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(10.0f, 3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - } - } - return _personAdd!! - } - -private var _personAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonAlert.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonAlert.kt deleted file mode 100644 index 35dcb8bb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonAlert.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonAlert: ImageVector - get() { - if (_personAlert != null) { - return _personAlert!! - } - _personAlert = fluentIcon(name = "Regular.PersonAlert") { - fluentPath { - moveTo(17.76f, 14.0f) - curveTo(19.0f, 14.0f, 20.0f, 15.0f, 20.0f, 16.25f) - verticalLineToRelative(0.57f) - curveToRelative(0.0f, 0.9f, -0.31f, 1.76f, -0.9f, 2.44f) - curveTo(17.53f, 21.1f, 15.15f, 22.0f, 12.0f, 22.0f) - horizontalLineToRelative(-0.48f) - curveToRelative(0.12f, -0.01f, 0.37f, -0.03f, 0.62f, -0.14f) - curveToRelative(0.55f, -0.26f, 0.87f, -0.82f, 0.86f, -1.4f) - curveToRelative(2.23f, -0.16f, 3.87f, -0.89f, 4.96f, -2.17f) - curveToRelative(0.35f, -0.41f, 0.54f, -0.93f, 0.54f, -1.47f) - verticalLineToRelative(-0.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.74f, -0.75f) - horizontalLineToRelative(-6.29f) - arcToRelative(4.97f, 4.97f, 0.0f, false, false, -0.39f, -1.5f) - horizontalLineToRelative(6.68f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - moveTo(6.5f, 12.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, 4.0f) - verticalLineToRelative(3.0f) - lineToRelative(-0.95f, 0.8f) - curveToRelative(-0.3f, 0.26f, -0.46f, 0.39f, -0.5f, 0.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.24f, 0.65f) - curveToRelative(0.1f, 0.05f, 0.3f, 0.05f, 0.7f, 0.05f) - horizontalLineToRelative(9.02f) - curveToRelative(0.4f, 0.0f, 0.6f, 0.0f, 0.7f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.25f, -0.66f) - curveToRelative(-0.05f, -0.1f, -0.2f, -0.23f, -0.5f, -0.49f) - lineToRelative(-0.96f, -0.8f) - verticalLineToRelative(-3.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, -4.0f) - close() - moveTo(8.0f, 22.0f) - curveToRelative(-0.22f, 0.58f, -0.8f, 1.0f, -1.5f, 1.0f) - curveToRelative(-0.69f, 0.0f, -1.28f, -0.42f, -1.5f, -1.0f) - horizontalLineToRelative(3.0f) - close() - } - } - return _personAlert!! - } - -private var _personAlert: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonArrowBack.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonArrowBack.kt deleted file mode 100644 index e3de8fea..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonArrowBack.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonArrowBack: ImageVector - get() { - if (_personArrowBack != null) { - return _personArrowBack!! - } - _personArrowBack = fluentIcon(name = "Regular.PersonArrowBack") { - fluentPath { - moveTo(11.31f, 15.5f) - curveToRelative(0.18f, -0.53f, 0.42f, -1.04f, 0.71f, -1.5f) - lineTo(4.25f, 14.0f) - curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) - verticalLineToRelative(0.58f) - curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) - curveTo(4.47f, 21.1f, 6.85f, 22.0f, 10.0f, 22.0f) - curveToRelative(0.93f, 0.0f, 1.8f, -0.08f, 2.6f, -0.24f) - arcToRelative(6.5f, 6.5f, 0.0f, false, true, -0.92f, -1.37f) - curveToRelative(-0.52f, 0.08f, -1.08f, 0.11f, -1.68f, 0.11f) - curveToRelative(-2.74f, 0.0f, -4.7f, -0.75f, -5.96f, -2.21f) - curveToRelative(-0.34f, -0.41f, -0.54f, -0.93f, -0.54f, -1.46f) - verticalLineToRelative(-0.58f) - curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.06f) - close() - moveTo(10.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(10.0f, 3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(16.35f, 15.35f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(1.5f, 1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-0.64f, -0.65f) - horizontalLineToRelative(2.04f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(0.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-0.25f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-2.04f) - lineToRelative(0.64f, -0.65f) - close() - } - } - return _personArrowBack!! - } - -private var _personArrowBack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonArrowLeft.kt deleted file mode 100644 index 6d7a4ec1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonArrowLeft.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonArrowLeft: ImageVector - get() { - if (_personArrowLeft != null) { - return _personArrowLeft!! - } - _personArrowLeft = fluentIcon(name = "Regular.PersonArrowLeft") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(12.02f, 14.0f) - curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) - lineTo(4.24f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.9f) - curveToRelative(0.0f, 0.66f, 0.29f, 1.29f, 0.79f, 1.71f) - curveTo(5.55f, 19.95f, 7.44f, 20.5f, 10.0f, 20.5f) - curveToRelative(0.6f, 0.0f, 1.16f, -0.03f, 1.69f, -0.09f) - curveToRelative(0.25f, 0.5f, 0.56f, 0.96f, 0.93f, 1.38f) - curveToRelative(-0.8f, 0.14f, -1.68f, 0.21f, -2.62f, 0.21f) - curveToRelative(-2.89f, 0.0f, -5.13f, -0.66f, -6.7f, -2.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 2.0f, 17.16f) - verticalLineToRelative(-0.91f) - curveTo(2.0f, 15.01f, 3.01f, 14.0f, 4.25f, 14.0f) - horizontalLineToRelative(7.77f) - close() - moveTo(16.72f, 14.59f) - lineTo(16.65f, 14.65f) - lineTo(14.13f, 17.16f) - lineTo(14.09f, 17.21f) - lineTo(14.06f, 17.27f) - lineTo(14.03f, 17.35f) - lineTo(14.02f, 17.39f) - lineTo(14.0f, 17.48f) - verticalLineToRelative(0.09f) - lineToRelative(0.03f, 0.08f) - lineToRelative(0.03f, 0.08f) - lineToRelative(0.02f, 0.04f) - lineToRelative(0.05f, 0.07f) - lineToRelative(2.52f, 2.51f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.77f, -0.63f) - lineToRelative(-0.06f, -0.07f) - lineTo(15.7f, 18.0f) - horizontalLineToRelative(4.79f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.41f) - verticalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.5f) - horizontalLineToRelative(-4.88f) - lineToRelative(1.65f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.06f, -0.63f) - lineToRelative(-0.06f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.64f, -0.06f) - close() - moveTo(10.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(10.0f, 3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - } - } - return _personArrowLeft!! - } - -private var _personArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonArrowRight.kt deleted file mode 100644 index 9a2fce0f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonArrowRight.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonArrowRight: ImageVector - get() { - if (_personArrowRight != null) { - return _personArrowRight!! - } - _personArrowRight = fluentIcon(name = "Regular.PersonArrowRight") { - fluentPath { - moveTo(11.31f, 15.5f) - curveToRelative(0.18f, -0.53f, 0.42f, -1.04f, 0.71f, -1.5f) - lineTo(4.25f, 14.0f) - curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) - verticalLineToRelative(0.58f) - curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) - curveTo(4.47f, 21.1f, 6.85f, 22.0f, 10.0f, 22.0f) - curveToRelative(0.93f, 0.0f, 1.8f, -0.08f, 2.6f, -0.24f) - arcToRelative(6.51f, 6.51f, 0.0f, false, true, -0.92f, -1.36f) - curveToRelative(-0.52f, 0.07f, -1.08f, 0.1f, -1.68f, 0.1f) - curveToRelative(-2.74f, 0.0f, -4.7f, -0.74f, -5.96f, -2.21f) - curveToRelative(-0.34f, -0.4f, -0.54f, -0.93f, -0.54f, -1.46f) - verticalLineToRelative(-0.58f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.06f) - close() - moveTo(10.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(10.0f, 3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(18.35f, 14.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(19.29f, 17.0f) - lineTo(15.0f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) - horizontalLineToRelative(4.3f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.15f, -0.34f) - verticalLineToRelative(-0.01f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.15f, -0.36f) - lineToRelative(-2.5f, -2.5f) - close() - } - } - return _personArrowRight!! - } - -private var _personArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonAvailable.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonAvailable.kt deleted file mode 100644 index cf37fe6f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonAvailable.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonAvailable: ImageVector - get() { - if (_personAvailable != null) { - return _personAvailable!! - } - _personAvailable = fluentIcon(name = "Regular.PersonAvailable") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(14.85f, 17.15f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.7f, -0.7f) - lineToRelative(-3.65f, 3.64f) - lineToRelative(-1.65f, -1.64f) - close() - moveTo(12.02f, 14.0f) - curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) - lineTo(4.24f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.58f) - curveToRelative(0.0f, 0.53f, 0.2f, 1.05f, 0.54f, 1.46f) - curveTo(5.3f, 19.76f, 7.26f, 20.5f, 10.0f, 20.5f) - curveToRelative(0.6f, 0.0f, 1.16f, -0.03f, 1.68f, -0.1f) - curveToRelative(0.25f, 0.49f, 0.55f, 0.95f, 0.91f, 1.36f) - curveToRelative(-0.8f, 0.16f, -1.66f, 0.24f, -2.59f, 0.24f) - curveToRelative(-3.15f, 0.0f, -5.53f, -0.9f, -7.1f, -2.74f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.9f, -2.43f) - verticalLineToRelative(-0.58f) - curveTo(2.0f, 15.0f, 3.01f, 14.0f, 4.25f, 14.0f) - horizontalLineToRelative(7.77f) - close() - moveTo(10.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(10.0f, 3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - } - } - return _personAvailable!! - } - -private var _personAvailable: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonBoard.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonBoard.kt deleted file mode 100644 index 6a38e463..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonBoard.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonBoard: ImageVector - get() { - if (_personBoard != null) { - return _personBoard!! - } - _personBoard = fluentIcon(name = "Regular.PersonBoard") { - fluentPath { - moveTo(15.25f, 12.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-6.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 1.08f, 0.52f, 1.66f, 1.38f, 2.2f) - curveToRelative(0.85f, 0.54f, 2.02f, 0.8f, 3.37f, 0.8f) - curveToRelative(1.59f, 0.0f, 2.77f, -0.26f, 3.57f, -0.8f) - curveToRelative(0.81f, -0.56f, 1.18f, -1.15f, 1.18f, -2.2f) - verticalLineToRelative(-0.5f) - close() - moveTo(7.25f, 12.25f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(6.0f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 0.27f, -0.03f, 0.33f, -0.1f, 0.45f) - lineToRelative(-0.06f, 0.1f) - curveToRelative(-0.1f, 0.21f, -0.26f, 0.38f, -0.5f, 0.52f) - curveToRelative(-0.5f, 0.29f, -1.31f, 0.43f, -2.59f, 0.43f) - arcToRelative(5.41f, 5.41f, 0.0f, false, true, -2.41f, -0.43f) - arcToRelative(1.6f, 1.6f, 0.0f, false, true, -0.62f, -0.54f) - arcToRelative(1.98f, 1.98f, 0.0f, false, false, -0.1f, -0.12f) - curveToRelative(-0.07f, -0.1f, -0.12f, -0.17f, -0.12f, -0.41f) - verticalLineToRelative(-0.5f) - close() - moveTo(13.0f, 7.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(11.5f, 7.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(8.5f) - curveTo(16.55f, 3.0f, 18.0f, 4.46f, 18.0f, 6.25f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-8.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 14.75f) - verticalLineToRelative(-8.5f) - close() - moveTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(8.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-8.5f) - close() - moveTo(8.75f, 20.5f) - curveToRelative(-1.15f, 0.0f, -2.16f, -0.6f, -2.74f, -1.5f) - horizontalLineToRelative(9.24f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 19.0f, 15.25f) - lineTo(19.0f, 6.01f) - curveToRelative(0.9f, 0.58f, 1.5f, 1.59f, 1.5f, 2.74f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) - horizontalLineToRelative(-6.5f) - close() - } - } - return _personBoard!! - } - -private var _personBoard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonCall.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonCall.kt deleted file mode 100644 index 299496b7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonCall.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonCall: ImageVector - get() { - if (_personCall != null) { - return _personCall!! - } - _personCall = fluentIcon(name = "Regular.PersonCall") { - fluentPath { - moveTo(17.38f, 15.5f) - arcToRelative(2.2f, 2.2f, 0.0f, false, true, -0.23f, -1.5f) - lineTo(6.25f, 14.0f) - curveTo(5.01f, 14.0f, 4.0f, 15.0f, 4.0f, 16.25f) - verticalLineToRelative(0.58f) - curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) - curveTo(6.47f, 21.1f, 8.85f, 22.0f, 12.0f, 22.0f) - arcToRelative(15.0f, 15.0f, 0.0f, false, false, 1.13f, -0.04f) - arcToRelative(2.26f, 2.26f, 0.0f, false, true, 0.0f, -1.5f) - curveToRelative(-0.36f, 0.03f, -0.74f, 0.04f, -1.13f, 0.04f) - curveToRelative(-2.74f, 0.0f, -4.7f, -0.74f, -5.96f, -2.21f) - curveToRelative(-0.34f, -0.41f, -0.54f, -0.93f, -0.54f, -1.46f) - verticalLineToRelative(-0.58f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(11.13f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - moveTo(18.2f, 14.0f) - lineToRelative(0.47f, -1.21f) - curveToRelative(0.24f, -0.61f, 0.92f, -0.93f, 1.55f, -0.73f) - lineToRelative(0.43f, 0.14f) - curveToRelative(0.72f, 0.24f, 1.32f, 0.8f, 1.35f, 1.57f) - curveToRelative(0.1f, 3.11f, -2.48f, 7.58f, -5.22f, 9.06f) - curveToRelative(-0.67f, 0.36f, -1.46f, 0.12f, -2.03f, -0.4f) - lineToRelative(-0.34f, -0.3f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.14f, -1.7f) - lineToRelative(0.8f, -1.02f) - arcToRelative(1.2f, 1.2f, 0.0f, false, true, 1.22f, -0.42f) - lineToRelative(1.3f, 0.32f) - arcToRelative(3.78f, 3.78f, 0.0f, false, false, 1.77f, -3.08f) - lineToRelative(-0.92f, -0.96f) - arcToRelative(1.2f, 1.2f, 0.0f, false, true, -0.25f, -1.28f) - close() - } - } - return _personCall!! - } - -private var _personCall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonChat.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonChat.kt deleted file mode 100644 index 2e511284..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonChat.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonChat: ImageVector - get() { - if (_personChat != null) { - return _personChat!! - } - _personChat = fluentIcon(name = "Regular.PersonChat") { - fluentPath { - moveTo(11.31f, 15.5f) - curveToRelative(0.17f, -0.54f, 0.41f, -1.04f, 0.7f, -1.5f) - lineTo(6.26f, 14.0f) - curveTo(5.0f, 14.0f, 4.0f, 15.0f, 4.0f, 16.25f) - verticalLineToRelative(0.58f) - curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) - curveToRelative(1.41f, 1.65f, 3.49f, 2.55f, 6.19f, 2.71f) - lineToRelative(0.45f, -1.48f) - curveToRelative(-2.5f, -0.08f, -4.32f, -0.82f, -5.5f, -2.2f) - curveToRelative(-0.35f, -0.41f, -0.54f, -0.93f, -0.54f, -1.46f) - verticalLineToRelative(-0.58f) - curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.06f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, -8.17f, 4.81f) - lineToRelative(-2.19f, 0.67f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.62f, -0.63f) - lineToRelative(0.67f, -2.18f) - arcTo(5.5f, 5.5f, 0.0f, true, true, 23.0f, 17.5f) - close() - moveTo(15.5f, 16.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) - horizontalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(15.0f, 18.5f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - close() - } - } - return _personChat!! - } - -private var _personChat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonCircle.kt deleted file mode 100644 index ebb526e7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonCircle.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonCircle: ImageVector - get() { - if (_personCircle != null) { - return _personCircle!! - } - _personCircle = fluentIcon(name = "Regular.PersonCircle") { - fluentPath { - moveTo(17.0f, 13.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - horizontalLineToRelative(-7.0f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 1.97f, 1.86f, 4.0f, 5.0f, 4.0f) - curveToRelative(3.14f, 0.0f, 5.0f, -2.03f, 5.0f, -4.0f) - verticalLineToRelative(-0.5f) - close() - moveTo(14.75f, 8.25f) - arcToRelative(2.75f, 2.75f, 0.0f, true, false, -5.5f, 0.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 5.5f, 0.0f) - close() - moveTo(22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, -20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 20.0f, 0.0f) - close() - moveTo(20.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, -17.0f, 0.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 17.0f, 0.0f) - close() - } - } - return _personCircle!! - } - -private var _personCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonClock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonClock.kt deleted file mode 100644 index 73b48a30..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonClock.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonClock: ImageVector - get() { - if (_personClock != null) { - return _personClock!! - } - _personClock = fluentIcon(name = "Regular.PersonClock") { - fluentPath { - moveTo(11.31f, 15.5f) - curveToRelative(0.18f, -0.53f, 0.42f, -1.04f, 0.71f, -1.5f) - lineTo(4.25f, 14.0f) - curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) - verticalLineToRelative(0.58f) - curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) - curveTo(4.47f, 21.1f, 6.85f, 22.0f, 10.0f, 22.0f) - curveToRelative(0.93f, 0.0f, 1.8f, -0.08f, 2.6f, -0.24f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -0.92f, -1.36f) - curveToRelative(-0.52f, 0.07f, -1.08f, 0.1f, -1.68f, 0.1f) - curveToRelative(-2.74f, 0.0f, -4.7f, -0.74f, -5.96f, -2.21f) - curveToRelative(-0.34f, -0.4f, -0.54f, -0.93f, -0.54f, -1.46f) - verticalLineToRelative(-0.58f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.06f) - close() - moveTo(10.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(10.0f, 3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(19.5f, 17.5f) - horizontalLineToRelative(-2.0f) - lineTo(17.5f, 15.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -1.0f, 0.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - close() - } - } - return _personClock!! - } - -private var _personClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonDelete.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonDelete.kt deleted file mode 100644 index c7c8e432..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonDelete.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonDelete: ImageVector - get() { - if (_personDelete != null) { - return _personDelete!! - } - _personDelete = fluentIcon(name = "Regular.PersonDelete") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(12.02f, 14.0f) - curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) - lineTo(4.24f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.9f) - curveToRelative(0.0f, 0.66f, 0.29f, 1.29f, 0.79f, 1.71f) - curveTo(5.55f, 19.95f, 7.44f, 20.5f, 10.0f, 20.5f) - curveToRelative(0.6f, 0.0f, 1.16f, -0.03f, 1.69f, -0.09f) - curveToRelative(0.25f, 0.5f, 0.56f, 0.96f, 0.93f, 1.38f) - curveToRelative(-0.8f, 0.14f, -1.68f, 0.21f, -2.62f, 0.21f) - curveToRelative(-2.89f, 0.0f, -5.13f, -0.66f, -6.7f, -2.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 2.0f, 17.16f) - verticalLineToRelative(-0.91f) - curveTo(2.0f, 15.01f, 3.01f, 14.0f, 4.25f, 14.0f) - horizontalLineToRelative(7.77f) - close() - moveTo(15.09f, 14.97f) - lineTo(15.02f, 15.02f) - lineTo(14.97f, 15.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.05f, 0.07f) - lineToRelative(1.77f, 1.77f) - lineToRelative(-1.76f, 1.77f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.06f, 0.06f) - lineToRelative(0.07f, 0.06f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) - lineToRelative(0.07f, -0.06f) - lineToRelative(1.77f, -1.76f) - lineToRelative(1.77f, 1.77f) - lineToRelative(0.07f, 0.05f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.57f, 0.0f) - lineToRelative(0.07f, -0.05f) - lineToRelative(0.05f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) - lineToRelative(-0.05f, -0.07f) - lineToRelative(-1.77f, -1.77f) - lineToRelative(1.77f, -1.77f) - lineToRelative(0.06f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) - lineToRelative(-0.06f, -0.07f) - lineToRelative(-0.07f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) - lineToRelative(-0.07f, 0.05f) - lineToRelative(-1.77f, 1.77f) - lineToRelative(-1.77f, -1.77f) - lineToRelative(-0.07f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.49f, -0.05f) - lineToRelative(-0.08f, 0.05f) - close() - moveTo(10.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(10.0f, 3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - } - } - return _personDelete!! - } - -private var _personDelete: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonEdit.kt deleted file mode 100644 index 2c37ffa3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonEdit.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonEdit: ImageVector - get() { - if (_personEdit != null) { - return _personEdit!! - } - _personEdit = fluentIcon(name = "Regular.PersonEdit") { - fluentPath { - moveToRelative(14.86f, 15.5f) - lineToRelative(1.5f, -1.5f) - lineTo(6.26f, 14.0f) - curveTo(5.0f, 14.0f, 4.0f, 15.0f, 4.0f, 16.25f) - verticalLineToRelative(0.58f) - curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) - curveToRelative(1.4f, 1.64f, 3.44f, 2.53f, 6.1f, 2.7f) - curveToRelative(0.0f, -0.17f, 0.02f, -0.36f, 0.06f, -0.55f) - lineToRelative(0.23f, -0.93f) - curveToRelative(-2.37f, -0.12f, -4.1f, -0.85f, -5.25f, -2.2f) - curveToRelative(-0.34f, -0.4f, -0.54f, -0.92f, -0.54f, -1.45f) - verticalLineToRelative(-0.58f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(8.6f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _personEdit!! - } - -private var _personEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonFeedback.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonFeedback.kt deleted file mode 100644 index 530c465a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonFeedback.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonFeedback: ImageVector - get() { - if (_personFeedback != null) { - return _personFeedback!! - } - _personFeedback = fluentIcon(name = "Regular.PersonFeedback") { - fluentPath { - moveTo(14.77f, 12.4f) - curveToRelative(0.15f, 0.07f, 0.32f, 0.1f, 0.48f, 0.1f) - curveToRelative(0.33f, 0.0f, 0.64f, -0.13f, 0.88f, -0.36f) - lineTo(18.31f, 10.0f) - horizontalLineToRelative(0.94f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 7.25f) - verticalLineToRelative(-2.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 2.0f) - horizontalLineToRelative(-4.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 12.0f, 4.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 1.26f, 0.85f, 2.32f, 2.0f, 2.65f) - verticalLineToRelative(1.35f) - curveToRelative(0.0f, 0.5f, 0.31f, 0.95f, 0.77f, 1.15f) - close() - moveTo(13.5f, 4.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(4.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineToRelative(-1.56f) - lineToRelative(-2.19f, 2.15f) - lineTo(15.5f, 8.5f) - horizontalLineToRelative(-0.75f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - verticalLineToRelative(-2.5f) - close() - moveTo(8.0f, 13.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 0.0f, -7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 0.0f, 7.0f) - close() - moveTo(8.0f, 8.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - close() - moveTo(8.0f, 22.0f) - curveToRelative(-2.06f, 0.0f, -3.64f, -0.56f, -4.7f, -1.67f) - curveToRelative(-1.34f, -1.4f, -1.3f, -3.17f, -1.3f, -3.36f) - verticalLineToRelative(-0.01f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 4.0f, 15.0f) - horizontalLineToRelative(8.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - curveToRelative(0.0f, 0.13f, 0.05f, 1.92f, -1.3f, 3.33f) - curveTo(11.64f, 21.44f, 10.06f, 22.0f, 8.0f, 22.0f) - close() - moveTo(4.0f, 16.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - curveToRelative(0.0f, 0.1f, -0.02f, 1.35f, 0.9f, 2.31f) - curveToRelative(0.76f, 0.79f, 1.97f, 1.19f, 3.6f, 1.19f) - curveToRelative(1.63f, 0.0f, 2.85f, -0.41f, 3.61f, -1.21f) - curveToRelative(0.91f, -0.95f, 0.9f, -2.2f, 0.9f, -2.26f) - curveToRelative(0.0f, -0.31f, -0.24f, -0.54f, -0.5f, -0.54f) - lineTo(4.0f, 16.49f) - verticalLineToRelative(0.01f) - close() - } - } - return _personFeedback!! - } - -private var _personFeedback: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonHeart.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonHeart.kt deleted file mode 100644 index 2fce44ab..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonHeart.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonHeart: ImageVector - get() { - if (_personHeart != null) { - return _personHeart!! - } - _personHeart = fluentIcon(name = "Regular.PersonHeart") { - fluentPath { - moveTo(10.1f, 15.5f) - curveToRelative(0.06f, -0.52f, 0.2f, -1.02f, 0.42f, -1.5f) - lineTo(4.25f, 14.0f) - curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) - verticalLineToRelative(0.58f) - curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) - curveTo(4.47f, 21.1f, 6.85f, 22.0f, 10.0f, 22.0f) - curveToRelative(1.41f, 0.0f, 2.67f, -0.18f, 3.77f, -0.55f) - lineToRelative(-1.21f, -1.21f) - curveToRelative(-0.76f, 0.17f, -1.62f, 0.26f, -2.56f, 0.26f) - curveToRelative(-2.74f, 0.0f, -4.7f, -0.75f, -5.96f, -2.21f) - curveToRelative(-0.34f, -0.41f, -0.54f, -0.93f, -0.54f, -1.46f) - verticalLineToRelative(-0.58f) - curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.86f) - close() - moveTo(10.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(10.0f, 3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - moveTo(17.04f, 23.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.53f, -0.22f) - lineToRelative(-4.4f, -4.41f) - arcToRelative(3.47f, 3.47f, 0.0f, false, true, 4.9f, -4.9f) - lineToRelative(0.03f, 0.03f) - lineToRelative(0.04f, -0.03f) - arcToRelative(3.47f, 3.47f, 0.0f, false, true, 4.9f, 4.9f) - lineToRelative(-4.4f, 4.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.23f) - close() - } - } - return _personHeart!! - } - -private var _personHeart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonLightbulb.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonLightbulb.kt deleted file mode 100644 index 8dd9e284..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonLightbulb.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonLightbulb: ImageVector - get() { - if (_personLightbulb != null) { - return _personLightbulb!! - } - _personLightbulb = fluentIcon(name = "Regular.PersonLightbulb") { - fluentPath { - moveTo(13.03f, 15.5f) - curveToRelative(0.05f, -0.53f, 0.18f, -1.03f, 0.39f, -1.5f) - lineTo(6.25f, 14.0f) - curveTo(5.01f, 14.0f, 4.0f, 15.0f, 4.0f, 16.25f) - verticalLineToRelative(0.58f) - curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) - curveTo(6.47f, 21.1f, 8.85f, 22.0f, 12.0f, 22.0f) - curveToRelative(1.18f, 0.0f, 2.24f, -0.13f, 3.2f, -0.38f) - lineToRelative(-0.29f, -1.47f) - curveToRelative(-0.85f, 0.23f, -1.82f, 0.35f, -2.91f, 0.35f) - curveToRelative(-2.74f, 0.0f, -4.7f, -0.74f, -5.96f, -2.21f) - curveToRelative(-0.34f, -0.4f, -0.54f, -0.93f, -0.54f, -1.46f) - verticalLineToRelative(-0.58f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.78f) - close() - moveTo(17.0f, 7.0f) - arcTo(5.0f, 5.0f, 0.0f, true, false, 7.0f, 7.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 10.0f, 0.0f) - close() - moveTo(8.5f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 7.0f, 0.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -7.0f, 0.0f) - close() - moveTo(22.0f, 16.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -1.76f, 3.32f) - lineToRelative(-0.14f, 0.68f) - horizontalLineToRelative(-4.2f) - lineToRelative(-0.14f, -0.68f) - arcTo(4.0f, 4.0f, 0.0f, true, true, 22.0f, 16.0f) - close() - moveTo(16.1f, 21.0f) - lineTo(16.26f, 21.8f) - curveToRelative(0.14f, 0.7f, 0.76f, 1.2f, 1.47f, 1.2f) - horizontalLineToRelative(0.54f) - curveToRelative(0.72f, 0.0f, 1.33f, -0.5f, 1.47f, -1.2f) - lineToRelative(0.16f, -0.8f) - horizontalLineToRelative(-3.8f) - close() - } - } - return _personLightbulb!! - } - -private var _personLightbulb: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonLink.kt deleted file mode 100644 index f76ae13f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonLink.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonLink: ImageVector - get() { - if (_personLink != null) { - return _personLink!! - } - _personLink = fluentIcon(name = "Regular.PersonLink") { - fluentPath { - moveTo(16.75f, 14.0f) - curveToRelative(0.78f, 0.0f, 1.47f, 0.4f, 1.88f, 1.0f) - horizontalLineToRelative(-2.88f) - curveToRelative(-0.76f, 0.0f, -1.48f, 0.18f, -2.12f, 0.5f) - lineTo(5.25f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.58f) - curveToRelative(0.0f, 0.53f, 0.2f, 1.05f, 0.54f, 1.46f) - curveTo(6.3f, 19.75f, 8.26f, 20.5f, 11.0f, 20.5f) - horizontalLineToRelative(0.06f) - curveToRelative(0.09f, 0.53f, 0.26f, 1.03f, 0.5f, 1.49f) - lineTo(11.0f, 22.0f) - curveToRelative(-3.15f, 0.0f, -5.53f, -0.9f, -7.1f, -2.74f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.9f, -2.43f) - verticalLineToRelative(-0.58f) - curveTo(3.0f, 15.0f, 4.01f, 14.0f, 5.25f, 14.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(11.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(11.0f, 3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - moveTo(23.0f, 19.75f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 19.25f, 16.0f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - verticalLineToRelative(-0.01f) - horizontalLineToRelative(0.2f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 19.74f) - close() - moveTo(16.5f, 16.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-0.2f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(20.0f, 19.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - } - } - return _personLink!! - } - -private var _personLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonLock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonLock.kt deleted file mode 100644 index e4500103..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonLock.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonLock: ImageVector - get() { - if (_personLock != null) { - return _personLock!! - } - _personLock = fluentIcon(name = "Regular.PersonLock") { - fluentPath { - moveTo(14.0f, 14.0f) - lineTo(4.25f, 14.0f) - curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) - verticalLineToRelative(0.58f) - curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) - curveTo(4.47f, 21.1f, 6.85f, 22.0f, 10.0f, 22.0f) - curveToRelative(0.71f, 0.0f, 1.39f, -0.05f, 2.03f, -0.14f) - arcToRelative(2.53f, 2.53f, 0.0f, false, true, -0.03f, -0.36f) - verticalLineToRelative(-1.15f) - curveToRelative(-0.61f, 0.1f, -1.28f, 0.15f, -2.0f, 0.15f) - curveToRelative(-2.74f, 0.0f, -4.7f, -0.74f, -5.96f, -2.21f) - curveToRelative(-0.34f, -0.4f, -0.54f, -0.93f, -0.54f, -1.46f) - verticalLineToRelative(-0.58f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.96f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 14.0f, 14.05f) - lineTo(14.0f, 14.0f) - close() - moveTo(10.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(10.0f, 3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - moveTo(15.0f, 15.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(6.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(20.0f, 15.0f) - verticalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) - verticalLineToRelative(1.0f) - close() - moveTo(16.5f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(18.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - } - } - return _personLock!! - } - -private var _personLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonMail.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonMail.kt deleted file mode 100644 index 6edb3849..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonMail.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonMail: ImageVector - get() { - if (_personMail != null) { - return _personMail!! - } - _personMail = fluentIcon(name = "Regular.PersonMail") { - fluentPath { - moveTo(11.0f, 15.5f) - curveToRelative(0.0f, -0.56f, 0.19f, -1.08f, 0.5f, -1.5f) - lineTo(5.25f, 14.0f) - curveTo(4.01f, 14.0f, 3.0f, 15.0f, 3.0f, 16.25f) - verticalLineToRelative(0.58f) - curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) - curveTo(5.47f, 21.1f, 7.85f, 22.0f, 11.0f, 22.0f) - horizontalLineToRelative(0.05f) - arcToRelative(2.51f, 2.51f, 0.0f, false, true, -0.05f, -0.5f) - verticalLineToRelative(-1.0f) - curveToRelative(-2.74f, 0.0f, -4.7f, -0.74f, -5.96f, -2.21f) - curveToRelative(-0.34f, -0.4f, -0.54f, -0.93f, -0.54f, -1.46f) - verticalLineToRelative(-0.58f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - lineTo(11.0f, 15.5f) - close() - moveTo(11.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(11.0f, 3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - moveTo(17.51f, 18.93f) - lineTo(12.01f, 15.73f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, -1.73f) - lineTo(21.0f, 14.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 1.97f) - lineToRelative(-5.49f, 2.96f) - close() - moveTo(17.74f, 19.94f) - lineTo(23.0f, 17.11f) - lineTo(23.0f, 21.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - verticalLineToRelative(-4.13f) - lineToRelative(5.25f, 3.06f) - curveToRelative(0.15f, 0.09f, 0.33f, 0.1f, 0.49f, 0.01f) - close() - } - } - return _personMail!! - } - -private var _personMail: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonMoney.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonMoney.kt deleted file mode 100644 index 07a60af7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonMoney.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonMoney: ImageVector - get() { - if (_personMoney != null) { - return _personMoney!! - } - _personMoney = fluentIcon(name = "Regular.PersonMoney") { - fluentPath { - moveTo(17.75f, 14.0f) - curveToRelative(0.78f, 0.0f, 1.47f, 0.4f, 1.87f, 1.0f) - lineTo(13.5f, 15.0f) - curveToRelative(-0.56f, 0.0f, -1.08f, 0.19f, -1.5f, 0.5f) - lineTo(6.25f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.58f) - curveToRelative(0.0f, 0.53f, 0.2f, 1.05f, 0.54f, 1.46f) - curveToRelative(1.1f, 1.28f, 2.74f, 2.01f, 4.96f, 2.18f) - verticalLineToRelative(1.03f) - curveToRelative(0.0f, 0.16f, 0.02f, 0.32f, 0.04f, 0.47f) - curveToRelative(-2.67f, -0.17f, -4.73f, -1.06f, -6.14f, -2.7f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.9f, -2.44f) - verticalLineToRelative(-0.58f) - curveTo(4.0f, 15.0f, 5.01f, 14.0f, 6.25f, 14.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - moveTo(12.0f, 17.5f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(8.0f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - verticalLineToRelative(-4.0f) - close() - moveTo(22.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - horizontalLineToRelative(-1.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(22.0f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - horizontalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(14.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - verticalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - horizontalLineToRelative(-1.0f) - close() - moveTo(15.0f, 22.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - verticalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - horizontalLineToRelative(1.0f) - close() - moveTo(19.25f, 19.5f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, -3.5f, 0.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 3.5f, 0.0f) - close() - } - } - return _personMoney!! - } - -private var _personMoney: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonNote.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonNote.kt deleted file mode 100644 index 76fdc7f8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonNote.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonNote: ImageVector - get() { - if (_personNote != null) { - return _personNote!! - } - _personNote = fluentIcon(name = "Regular.PersonNote") { - fluentPath { - moveTo(11.0f, 15.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.17f, -1.0f) - lineTo(4.25f, 14.0f) - curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) - verticalLineToRelative(0.58f) - curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) - curveTo(4.47f, 21.1f, 6.85f, 22.0f, 10.0f, 22.0f) - curveToRelative(0.4f, 0.0f, 0.78f, -0.01f, 1.16f, -0.04f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 11.0f, 21.0f) - verticalLineToRelative(-0.53f) - curveToRelative(-0.32f, 0.02f, -0.65f, 0.03f, -1.0f, 0.03f) - curveToRelative(-2.74f, 0.0f, -4.7f, -0.74f, -5.96f, -2.21f) - curveToRelative(-0.34f, -0.4f, -0.54f, -0.93f, -0.54f, -1.46f) - verticalLineToRelative(-0.58f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - lineTo(11.0f, 15.5f) - lineTo(11.0f, 15.0f) - close() - moveTo(10.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(10.0f, 3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - moveTo(12.0f, 15.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - verticalLineToRelative(6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - verticalLineToRelative(-6.0f) - close() - moveTo(14.5f, 16.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) - horizontalLineToRelative(6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) - horizontalLineToRelative(-6.0f) - close() - moveTo(14.5f, 19.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) - horizontalLineToRelative(6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) - horizontalLineToRelative(-6.0f) - close() - } - } - return _personNote!! - } - -private var _personNote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonPill.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonPill.kt deleted file mode 100644 index 72ec3d9d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonPill.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonPill: ImageVector - get() { - if (_personPill != null) { - return _personPill!! - } - _personPill = fluentIcon(name = "Regular.PersonPill") { - fluentPath { - moveTo(11.16f, 20.48f) - curveToRelative(0.06f, 0.53f, 0.24f, 1.05f, 0.52f, 1.52f) - curveToRelative(-2.99f, -0.06f, -5.26f, -0.97f, -6.78f, -2.74f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.9f, -2.43f) - verticalLineToRelative(-0.58f) - curveTo(4.0f, 15.0f, 5.01f, 14.0f, 6.25f, 14.0f) - horizontalLineToRelative(9.28f) - lineToRelative(-1.5f, 1.5f) - lineTo(6.25f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.58f) - curveToRelative(0.0f, 0.53f, 0.2f, 1.05f, 0.54f, 1.46f) - curveToRelative(1.12f, 1.3f, 2.81f, 2.04f, 5.12f, 2.19f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - moveTo(22.03f, 12.97f) - arcToRelative(2.87f, 2.87f, 0.0f, false, false, -4.06f, 0.0f) - lineToRelative(-5.0f, 5.0f) - arcToRelative(2.87f, 2.87f, 0.0f, false, false, 4.06f, 4.06f) - lineToRelative(5.0f, -5.0f) - arcToRelative(2.87f, 2.87f, 0.0f, false, false, 0.0f, -4.06f) - close() - moveTo(19.03f, 14.03f) - arcToRelative(1.37f, 1.37f, 0.0f, true, true, 1.94f, 1.94f) - lineTo(19.0f, 17.94f) - lineTo(17.06f, 16.0f) - lineToRelative(1.97f, -1.97f) - close() - moveTo(17.03f, 18.97f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-1.0f, 1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(1.0f, -1.0f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - } - } - return _personPill!! - } - -private var _personPill: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonProhibited.kt deleted file mode 100644 index 33ab6e3c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonProhibited.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonProhibited: ImageVector - get() { - if (_personProhibited != null) { - return _personProhibited!! - } - _personProhibited = fluentIcon(name = "Regular.PersonProhibited") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(12.02f, 14.0f) - curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) - lineTo(4.24f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.9f) - curveToRelative(0.0f, 0.66f, 0.29f, 1.29f, 0.79f, 1.71f) - curveTo(5.55f, 19.95f, 7.44f, 20.5f, 10.0f, 20.5f) - curveToRelative(0.6f, 0.0f, 1.16f, -0.03f, 1.69f, -0.09f) - curveToRelative(0.25f, 0.5f, 0.56f, 0.96f, 0.93f, 1.38f) - curveToRelative(-0.8f, 0.14f, -1.68f, 0.21f, -2.62f, 0.21f) - curveToRelative(-2.89f, 0.0f, -5.13f, -0.66f, -6.7f, -2.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 2.0f, 17.16f) - verticalLineToRelative(-0.91f) - curveTo(2.0f, 15.01f, 3.01f, 14.0f, 4.25f, 14.0f) - horizontalLineToRelative(7.77f) - close() - moveTo(20.81f, 15.25f) - lineTo(15.25f, 20.81f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 5.56f, -5.56f) - close() - moveTo(17.5f, 13.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -3.3f, 6.25f) - lineToRelative(5.55f, -5.56f) - arcToRelative(3.98f, 3.98f, 0.0f, false, false, -2.25f, -0.69f) - close() - moveTo(10.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(10.0f, 3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - } - } - return _personProhibited!! - } - -private var _personProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonQuestionMark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonQuestionMark.kt deleted file mode 100644 index c7d04c0b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonQuestionMark.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonQuestionMark: ImageVector - get() { - if (_personQuestionMark != null) { - return _personQuestionMark!! - } - _personQuestionMark = fluentIcon(name = "Regular.PersonQuestionMark") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(17.5f, 19.75f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, 1.25f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, -1.25f) - close() - moveTo(17.5f, 13.87f) - curveToRelative(-1.05f, 0.0f, -1.86f, 0.82f, -1.85f, 1.96f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, -0.01f) - curveToRelative(0.0f, -0.58f, 0.36f, -0.95f, 0.85f, -0.95f) - curveToRelative(0.47f, 0.0f, 0.85f, 0.4f, 0.85f, 0.95f) - curveToRelative(0.0f, 0.2f, -0.05f, 0.35f, -0.22f, 0.57f) - lineToRelative(-0.1f, 0.11f) - lineToRelative(-0.1f, 0.11f) - lineToRelative(-0.26f, 0.3f) - lineToRelative(-0.14f, 0.15f) - curveToRelative(-0.38f, 0.46f, -0.53f, 0.8f, -0.53f, 1.31f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) - curveToRelative(0.0f, -0.2f, 0.06f, -0.36f, 0.24f, -0.59f) - lineToRelative(0.08f, -0.1f) - lineToRelative(0.1f, -0.12f) - lineToRelative(0.27f, -0.29f) - lineToRelative(0.14f, -0.15f) - curveToRelative(0.37f, -0.45f, 0.52f, -0.79f, 0.52f, -1.3f) - curveToRelative(0.0f, -1.1f, -0.82f, -1.95f, -1.85f, -1.95f) - close() - moveTo(12.02f, 14.0f) - curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) - lineTo(4.24f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.58f) - curveToRelative(0.0f, 0.53f, 0.2f, 1.05f, 0.54f, 1.46f) - curveTo(5.3f, 19.76f, 7.26f, 20.5f, 10.0f, 20.5f) - curveToRelative(0.6f, 0.0f, 1.16f, -0.03f, 1.68f, -0.1f) - curveToRelative(0.25f, 0.49f, 0.55f, 0.95f, 0.91f, 1.36f) - curveToRelative(-0.8f, 0.16f, -1.66f, 0.24f, -2.59f, 0.24f) - curveToRelative(-3.15f, 0.0f, -5.53f, -0.9f, -7.1f, -2.74f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.9f, -2.43f) - verticalLineToRelative(-0.58f) - curveTo(2.0f, 15.0f, 3.01f, 14.0f, 4.25f, 14.0f) - horizontalLineToRelative(7.77f) - close() - moveTo(10.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(10.0f, 3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - } - } - return _personQuestionMark!! - } - -private var _personQuestionMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonSearch.kt deleted file mode 100644 index 6dd506c8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonSearch.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonSearch: ImageVector - get() { - if (_personSearch != null) { - return _personSearch!! - } - _personSearch = fluentIcon(name = "Regular.PersonSearch") { - fluentPath { - moveTo(11.9f, 14.0f) - horizontalLineToRelative(7.85f) - curveTo(21.0f, 14.0f, 22.0f, 15.0f, 22.0f, 16.25f) - verticalLineToRelative(0.9f) - curveToRelative(0.0f, 1.1f, -0.47f, 2.14f, -1.3f, 2.85f) - curveToRelative(-1.57f, 1.34f, -3.81f, 2.0f, -6.7f, 2.0f) - horizontalLineToRelative(-0.18f) - curveToRelative(0.23f, -0.47f, 0.24f, -1.02f, 0.03f, -1.5f) - lineTo(14.0f, 20.5f) - curveToRelative(2.56f, 0.0f, 4.46f, -0.56f, 5.72f, -1.64f) - curveToRelative(0.5f, -0.43f, 0.78f, -1.05f, 0.78f, -1.7f) - verticalLineToRelative(-0.91f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-7.77f) - arcToRelative(5.56f, 5.56f, 0.0f, false, false, -0.07f, -1.5f) - close() - moveTo(6.5f, 10.5f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 3.46f, 7.38f) - lineToRelative(2.82f, 2.81f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 1.14f) - lineToRelative(-0.09f, -0.08f) - lineToRelative(-2.9f, -2.9f) - arcTo(4.5f, 4.5f, 0.0f, true, true, 6.5f, 10.5f) - close() - moveTo(6.5f, 12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - moveTo(14.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(14.0f, 3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - } - } - return _personSearch!! - } - -private var _personSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonSquare.kt deleted file mode 100644 index 748cddc9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonSquare.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonSquare: ImageVector - get() { - if (_personSquare != null) { - return _personSquare!! - } - _personSquare = fluentIcon(name = "Regular.PersonSquare") { - fluentPath { - moveTo(15.5f, 12.0f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 1.97f, -1.86f, 4.0f, -5.0f, 4.0f) - curveToRelative(-3.14f, 0.0f, -5.0f, -2.03f, -5.0f, -4.0f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(7.0f) - close() - moveTo(12.0f, 5.5f) - arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, 5.5f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.0f, -5.5f) - close() - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineTo(6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - horizontalLineTo(6.25f) - close() - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineTo(6.25f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineTo(6.25f) - close() - } - } - return _personSquare!! - } - -private var _personSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonStar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonStar.kt deleted file mode 100644 index 22c51849..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonStar.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonStar: ImageVector - get() { - if (_personStar != null) { - return _personStar!! - } - _personStar = fluentIcon(name = "Regular.PersonStar") { - fluentPath { - moveTo(11.31f, 15.5f) - curveToRelative(0.18f, -0.53f, 0.42f, -1.04f, 0.71f, -1.5f) - lineTo(5.25f, 14.0f) - curveTo(4.01f, 14.0f, 3.0f, 15.0f, 3.0f, 16.25f) - verticalLineToRelative(0.58f) - curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) - curveTo(5.47f, 21.1f, 7.85f, 22.0f, 11.0f, 22.0f) - curveToRelative(0.6f, 0.0f, 1.17f, -0.03f, 1.72f, -0.1f) - curveToRelative(-0.4f, -0.42f, -0.73f, -0.9f, -1.0f, -1.42f) - lineToRelative(-0.72f, 0.02f) - curveToRelative(-2.74f, 0.0f, -4.7f, -0.75f, -5.96f, -2.21f) - curveToRelative(-0.34f, -0.41f, -0.54f, -0.93f, -0.54f, -1.46f) - verticalLineToRelative(-0.58f) - curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.06f) - close() - moveTo(11.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(11.0f, 3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(18.06f, 14.42f) - arcToRelative(0.58f, 0.58f, 0.0f, false, false, -1.12f, 0.0f) - lineToRelative(-0.55f, 1.79f) - horizontalLineToRelative(-1.8f) - curveToRelative(-0.57f, 0.0f, -0.8f, 0.75f, -0.35f, 1.1f) - lineToRelative(1.46f, 1.1f) - lineToRelative(-0.56f, 1.79f) - curveToRelative(-0.17f, 0.56f, 0.44f, 1.03f, 0.9f, 0.68f) - lineToRelative(1.46f, -1.1f) - lineToRelative(1.46f, 1.1f) - curveToRelative(0.46f, 0.35f, 1.07f, -0.12f, 0.9f, -0.68f) - lineToRelative(-0.56f, -1.79f) - lineToRelative(1.46f, -1.1f) - curveToRelative(0.46f, -0.35f, 0.22f, -1.1f, -0.35f, -1.1f) - horizontalLineToRelative(-1.8f) - lineToRelative(-0.55f, -1.79f) - close() - } - } - return _personStar!! - } - -private var _personStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonStarburst.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonStarburst.kt deleted file mode 100644 index 16385dbf..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonStarburst.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonStarburst: ImageVector - get() { - if (_personStarburst != null) { - return _personStarburst!! - } - _personStarburst = fluentIcon(name = "Regular.PersonStarburst") { - fluentPath { - moveTo(10.1f, 3.22f) - arcToRelative(2.08f, 2.08f, 0.0f, false, true, 3.8f, 0.0f) - curveToRelative(0.14f, 0.33f, 0.56f, 0.44f, 0.85f, 0.23f) - arcToRelative(2.08f, 2.08f, 0.0f, false, true, 3.28f, 1.9f) - curveToRelative(-0.04f, 0.35f, 0.27f, 0.66f, 0.63f, 0.62f) - arcToRelative(2.08f, 2.08f, 0.0f, false, true, 1.89f, 3.28f) - curveToRelative(-0.21f, 0.3f, -0.1f, 0.7f, 0.23f, 0.86f) - arcToRelative(2.08f, 2.08f, 0.0f, false, true, 0.0f, 3.78f) - arcToRelative(0.58f, 0.58f, 0.0f, false, false, -0.23f, 0.86f) - arcToRelative(2.08f, 2.08f, 0.0f, false, true, -1.9f, 3.28f) - arcToRelative(0.58f, 0.58f, 0.0f, false, false, -0.62f, 0.63f) - arcToRelative(2.08f, 2.08f, 0.0f, false, true, -3.28f, 1.89f) - arcToRelative(0.58f, 0.58f, 0.0f, false, false, -0.86f, 0.23f) - arcToRelative(2.08f, 2.08f, 0.0f, false, true, -3.78f, 0.0f) - arcToRelative(0.58f, 0.58f, 0.0f, false, false, -0.86f, -0.23f) - arcToRelative(2.08f, 2.08f, 0.0f, false, true, -3.28f, -1.9f) - arcToRelative(0.58f, 0.58f, 0.0f, false, false, -0.63f, -0.62f) - arcToRelative(2.08f, 2.08f, 0.0f, false, true, -1.89f, -3.28f) - curveToRelative(0.21f, -0.3f, 0.1f, -0.7f, -0.23f, -0.86f) - arcToRelative(2.08f, 2.08f, 0.0f, false, true, 0.0f, -3.78f) - arcToRelative(0.58f, 0.58f, 0.0f, false, false, 0.23f, -0.86f) - arcToRelative(2.08f, 2.08f, 0.0f, false, true, 1.9f, -3.28f) - curveToRelative(0.35f, 0.04f, 0.66f, -0.27f, 0.62f, -0.63f) - arcToRelative(2.08f, 2.08f, 0.0f, false, true, 3.28f, -1.89f) - curveToRelative(0.3f, 0.21f, 0.7f, 0.1f, 0.86f, -0.23f) - close() - moveTo(12.52f, 3.84f) - arcToRelative(0.58f, 0.58f, 0.0f, false, false, -1.04f, 0.0f) - arcToRelative(2.08f, 2.08f, 0.0f, false, true, -3.1f, 0.83f) - arcToRelative(0.58f, 0.58f, 0.0f, false, false, -0.92f, 0.52f) - curveTo(7.6f, 6.5f, 6.5f, 7.6f, 5.2f, 7.46f) - arcToRelative(0.58f, 0.58f, 0.0f, false, false, -0.52f, 0.91f) - arcToRelative(2.08f, 2.08f, 0.0f, false, true, -0.83f, 3.1f) - arcToRelative(0.58f, 0.58f, 0.0f, false, false, 0.0f, 1.05f) - curveToRelative(1.2f, 0.54f, 1.6f, 2.04f, 0.83f, 3.1f) - curveToRelative(-0.29f, 0.4f, 0.03f, 0.96f, 0.52f, 0.92f) - curveToRelative(1.3f, -0.13f, 2.4f, 0.96f, 2.27f, 2.27f) - curveToRelative(-0.04f, 0.49f, 0.51f, 0.8f, 0.91f, 0.52f) - arcToRelative(2.08f, 2.08f, 0.0f, false, true, 3.1f, 0.83f) - curveToRelative(0.21f, 0.45f, 0.85f, 0.45f, 1.05f, 0.0f) - arcToRelative(2.08f, 2.08f, 0.0f, false, true, 3.1f, -0.83f) - curveToRelative(0.4f, 0.29f, 0.96f, -0.03f, 0.92f, -0.52f) - curveToRelative(-0.13f, -1.3f, 0.96f, -2.4f, 2.27f, -2.27f) - curveToRelative(0.49f, 0.04f, 0.8f, -0.51f, 0.52f, -0.91f) - arcToRelative(2.08f, 2.08f, 0.0f, false, true, 0.83f, -3.1f) - arcToRelative(0.58f, 0.58f, 0.0f, false, false, 0.0f, -1.05f) - arcToRelative(2.08f, 2.08f, 0.0f, false, true, -0.83f, -3.1f) - arcToRelative(0.58f, 0.58f, 0.0f, false, false, -0.52f, -0.92f) - curveToRelative(-1.3f, 0.13f, -2.4f, -0.96f, -2.27f, -2.27f) - arcToRelative(0.58f, 0.58f, 0.0f, false, false, -0.91f, -0.52f) - arcToRelative(2.08f, 2.08f, 0.0f, false, true, -3.1f, -0.83f) - close() - moveTo(12.0f, 5.97f) - arcToRelative(2.41f, 2.41f, 0.0f, true, false, 0.0f, 4.82f) - arcToRelative(2.41f, 2.41f, 0.0f, false, false, 0.0f, -4.82f) - close() - moveTo(15.02f, 12.0f) - lineTo(8.98f, 12.0f) - curveToRelative(-1.0f, 0.0f, -1.8f, 0.81f, -1.8f, 1.81f) - curveToRelative(0.0f, 1.35f, 0.55f, 2.43f, 1.46f, 3.16f) - curveToRelative(0.89f, 0.71f, 2.09f, 1.07f, 3.36f, 1.07f) - reflectiveCurveToRelative(2.47f, -0.36f, 3.36f, -1.07f) - curveToRelative(0.91f, -0.73f, 1.47f, -1.81f, 1.47f, -3.16f) - curveToRelative(0.0f, -1.0f, -0.81f, -1.81f, -1.81f, -1.81f) - close() - } - } - return _personStarburst!! - } - -private var _personStarburst: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonSupport.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonSupport.kt deleted file mode 100644 index 6b8f767d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonSupport.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonSupport: ImageVector - get() { - if (_personSupport != null) { - return _personSupport!! - } - _personSupport = fluentIcon(name = "Regular.PersonSupport") { - fluentPath { - moveTo(20.0f, 16.25f) - curveTo(20.0f, 15.0f, 19.0f, 14.0f, 17.75f, 14.0f) - lineTo(6.25f, 14.0f) - curveTo(5.0f, 14.0f, 4.0f, 15.0f, 4.0f, 16.25f) - verticalLineToRelative(0.57f) - curveToRelative(0.0f, 0.9f, 0.32f, 1.76f, 0.9f, 2.44f) - curveTo(6.46f, 21.09f, 8.85f, 22.0f, 12.0f, 22.0f) - curveToRelative(3.14f, 0.0f, 5.53f, -0.9f, 7.1f, -2.74f) - curveToRelative(0.58f, -0.68f, 0.9f, -1.54f, 0.9f, -2.44f) - verticalLineToRelative(-0.57f) - close() - moveTo(6.25f, 15.5f) - horizontalLineToRelative(11.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.33f, 0.75f, 0.75f) - verticalLineToRelative(0.57f) - curveToRelative(0.0f, 0.54f, -0.2f, 1.06f, -0.54f, 1.46f) - curveToRelative(-1.26f, 1.47f, -3.23f, 2.22f, -5.96f, 2.22f) - curveToRelative(-2.74f, 0.0f, -4.7f, -0.75f, -5.96f, -2.22f) - curveToRelative(-0.35f, -0.4f, -0.54f, -0.92f, -0.54f, -1.46f) - verticalLineToRelative(-0.57f) - curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(17.0f, 7.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, -9.03f, -2.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.22f, -0.03f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(5.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 7.25f, 13.0f) - horizontalLineToRelative(0.26f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -0.79f, -1.62f) - curveToRelative(-0.42f, -0.2f, -0.72f, -0.63f, -0.72f, -1.13f) - lineTo(6.0f, 10.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.38f, 0.0f, 0.73f, -0.12f, 1.02f, -0.33f) - arcTo(5.0f, 5.0f, 0.0f, false, false, 17.0f, 7.0f) - close() - moveTo(7.0f, 6.9f) - arcToRelative(5.11f, 5.11f, 0.0f, false, false, 0.0f, 0.2f) - verticalLineToRelative(1.15f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - lineTo(6.0f, 8.5f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(1.0f) - verticalLineToRelative(1.4f) - close() - moveTo(8.5f, 7.1f) - lineTo(8.5f, 6.9f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 0.0f, 0.18f) - close() - } - } - return _personSupport!! - } - -private var _personSupport: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonSwap.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonSwap.kt deleted file mode 100644 index a781c23b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonSwap.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonSwap: ImageVector - get() { - if (_personSwap != null) { - return _personSwap!! - } - _personSwap = fluentIcon(name = "Regular.PersonSwap") { - fluentPath { - moveTo(15.75f, 14.0f) - curveToRelative(0.98f, 0.0f, 1.82f, 0.62f, 2.12f, 1.5f) - lineTo(4.25f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.57f) - curveToRelative(0.0f, 0.54f, 0.2f, 1.06f, 0.54f, 1.46f) - curveTo(5.29f, 19.75f, 7.26f, 20.5f, 10.0f, 20.5f) - horizontalLineToRelative(0.16f) - curveToRelative(0.09f, 0.18f, 0.2f, 0.35f, 0.35f, 0.5f) - lineToRelative(0.94f, 0.93f) - curveToRelative(-0.47f, 0.05f, -0.95f, 0.07f, -1.45f, 0.07f) - curveToRelative(-3.15f, 0.0f, -5.54f, -0.9f, -7.1f, -2.74f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.9f, -2.44f) - verticalLineToRelative(-0.57f) - curveTo(2.0f, 15.0f, 3.0f, 14.0f, 4.25f, 14.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(10.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(10.0f, 3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - moveTo(14.78f, 17.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.06f) - lineToRelative(2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineToRelative(-1.22f, -1.22f) - horizontalLineToRelative(6.88f) - lineToRelative(-1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.06f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(20.44f, 19.0f) - horizontalLineToRelative(-6.88f) - lineToRelative(1.22f, -1.22f) - close() - } - } - return _personSwap!! - } - -private var _personSwap: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonSync.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonSync.kt deleted file mode 100644 index 21ac780d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonSync.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonSync: ImageVector - get() { - if (_personSync != null) { - return _personSync!! - } - _personSync = fluentIcon(name = "Regular.PersonSync") { - fluentPath { - moveTo(11.31f, 15.5f) - curveToRelative(0.18f, -0.53f, 0.42f, -1.04f, 0.71f, -1.5f) - lineTo(5.25f, 14.0f) - curveTo(4.01f, 14.0f, 3.0f, 15.0f, 3.0f, 16.25f) - verticalLineToRelative(0.58f) - curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) - curveTo(5.47f, 21.1f, 7.85f, 22.0f, 11.0f, 22.0f) - curveToRelative(0.6f, 0.0f, 1.17f, -0.03f, 1.72f, -0.1f) - curveToRelative(-0.4f, -0.42f, -0.73f, -0.9f, -1.0f, -1.42f) - lineToRelative(-0.72f, 0.02f) - curveToRelative(-2.74f, 0.0f, -4.7f, -0.75f, -5.96f, -2.21f) - curveToRelative(-0.34f, -0.41f, -0.54f, -0.93f, -0.54f, -1.46f) - verticalLineToRelative(-0.58f) - curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.06f) - close() - moveTo(11.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) - close() - moveTo(11.0f, 3.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) - close() - moveTo(20.5f, 14.0f) - curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) - verticalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.8f, -0.59f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) - verticalLineToRelative(-0.55f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - close() - moveTo(15.0f, 19.95f) - verticalLineToRelative(0.55f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.77f, 0.65f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) - close() - } - } - return _personSync!! - } - -private var _personSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonTag.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonTag.kt deleted file mode 100644 index 00bcca66..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonTag.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonTag: ImageVector - get() { - if (_personTag != null) { - return _personTag!! - } - _personTag = fluentIcon(name = "Regular.PersonTag") { - fluentPath { - moveTo(11.0f, 14.0f) - verticalLineToRelative(1.5f) - lineTo(4.25f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.74f) - verticalLineToRelative(0.58f) - curveToRelative(0.0f, 0.54f, 0.2f, 1.06f, 0.54f, 1.46f) - curveTo(5.29f, 19.75f, 7.26f, 20.5f, 10.0f, 20.5f) - curveToRelative(1.1f, 0.0f, 2.08f, -0.12f, 2.94f, -0.37f) - lineToRelative(1.17f, 1.2f) - curveToRelative(-1.18f, 0.44f, -2.55f, 0.67f, -4.11f, 0.67f) - curveToRelative(-3.15f, 0.0f, -5.53f, -0.9f, -7.1f, -2.74f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.9f, -2.44f) - verticalLineToRelative(-0.58f) - curveTo(2.0f, 15.0f, 3.0f, 14.0f, 4.25f, 14.0f) - lineTo(11.0f, 14.0f) - close() - moveTo(15.0f, 7.0f) - arcTo(5.0f, 5.0f, 0.0f, true, false, 5.0f, 7.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 10.0f, 0.0f) - close() - moveTo(6.5f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 7.0f, 0.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -7.0f, 0.0f) - close() - moveTo(16.57f, 22.4f) - lineTo(12.57f, 18.33f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.57f, -1.4f) - verticalLineToRelative(-2.94f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(2.92f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.4f, 0.58f) - lineToRelative(4.08f, 4.02f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.02f, 2.83f) - lineToRelative(-3.0f, 3.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.85f, -0.02f) - close() - moveTo(15.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - } - } - return _personTag!! - } - -private var _personTag: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonVoice.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonVoice.kt deleted file mode 100644 index a214f6b4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonVoice.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonVoice: ImageVector - get() { - if (_personVoice != null) { - return _personVoice!! - } - _personVoice = fluentIcon(name = "Regular.PersonVoice") { - fluentPath { - moveTo(14.75f, 15.0f) - curveTo(16.0f, 15.0f, 17.0f, 16.0f, 17.0f, 17.25f) - verticalLineToRelative(0.57f) - curveToRelative(0.0f, 0.9f, -0.32f, 1.76f, -0.9f, 2.44f) - curveTo(14.53f, 22.1f, 12.15f, 23.0f, 9.0f, 23.0f) - curveToRelative(-3.15f, 0.0f, -5.53f, -0.9f, -7.1f, -2.74f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.9f, -2.43f) - verticalLineToRelative(-0.58f) - curveTo(1.0f, 16.0f, 2.01f, 15.0f, 3.25f, 15.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(14.75f, 16.5f) - lineTo(3.25f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(0.58f) - curveToRelative(0.0f, 0.53f, 0.2f, 1.05f, 0.54f, 1.46f) - curveTo(4.3f, 20.76f, 6.26f, 21.5f, 9.0f, 21.5f) - curveToRelative(2.74f, 0.0f, 4.7f, -0.74f, 5.96f, -2.21f) - curveToRelative(0.35f, -0.41f, 0.54f, -0.93f, 0.54f, -1.47f) - verticalLineToRelative(-0.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(19.05f, 1.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, 0.28f) - arcToRelative(12.7f, 12.7f, 0.0f, false, true, -0.01f, 12.66f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.3f, -0.75f) - arcToRelative(11.2f, 11.2f, 0.0f, false, false, 0.0f, -11.16f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.28f, -1.03f) - close() - moveTo(9.0f, 3.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) - arcTo(5.0f, 5.0f, 0.0f, false, true, 9.0f, 3.0f) - close() - moveTo(15.59f, 3.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.02f, 0.28f) - arcToRelative(8.71f, 8.71f, 0.0f, false, true, 0.0f, 8.65f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.3f, -0.74f) - arcToRelative(7.21f, 7.21f, 0.0f, false, false, 0.0f, -7.17f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.28f, -1.02f) - close() - moveTo(9.0f, 4.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - } - } - return _personVoice!! - } - -private var _personVoice: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonWalking.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonWalking.kt deleted file mode 100644 index 21371926..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PersonWalking.kt +++ /dev/null @@ -1,99 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PersonWalking: ImageVector - get() { - if (_personWalking != null) { - return _personWalking!! - } - _personWalking = fluentIcon(name = "Regular.PersonWalking") { - fluentPath { - moveTo(13.0f, 3.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(10.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 5.27f, 1.97f) - arcToRelative(2.6f, 2.6f, 0.0f, false, true, 0.76f, 0.76f) - lineTo(17.0f, 9.26f) - lineToRelative(0.16f, 0.23f) - lineToRelative(0.17f, 0.27f) - lineToRelative(1.93f, 0.97f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.0f, 4.03f) - lineToRelative(-2.48f, -1.23f) - arcToRelative(2.15f, 2.15f, 0.0f, false, true, -0.45f, -0.3f) - lineToRelative(-0.1f, -0.08f) - curveToRelative(0.0f, 0.13f, 0.05f, 0.27f, 0.13f, 0.39f) - lineToRelative(0.84f, 1.22f) - curveToRelative(0.33f, 0.5f, 0.53f, 1.04f, 0.58f, 1.63f) - lineToRelative(0.23f, 3.2f) - arcToRelative(2.23f, 2.23f, 0.0f, false, true, -2.08f, 2.39f) - arcToRelative(2.23f, 2.23f, 0.0f, false, true, -2.4f, -2.08f) - lineToRelative(-0.2f, -2.78f) - lineToRelative(-1.03f, -1.26f) - lineToRelative(-1.93f, 4.74f) - curveTo(8.0f, 21.47f, 7.17f, 22.0f, 6.29f, 22.0f) - lineToRelative(-0.04f, -0.01f) - arcToRelative(2.24f, 2.24f, 0.0f, false, true, -2.08f, -3.1f) - lineToRelative(1.8f, -4.42f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -1.82f, -3.03f) - lineToRelative(0.92f, -2.4f) - lineToRelative(0.03f, -0.06f) - lineToRelative(0.52f, -1.36f) - curveToRelative(0.25f, -0.66f, 0.8f, -1.16f, 1.48f, -1.36f) - lineToRelative(2.25f, -0.66f) - lineToRelative(0.09f, -0.03f) - lineToRelative(0.09f, -0.02f) - lineToRelative(0.07f, -0.01f) - curveToRelative(0.15f, -0.03f, 0.3f, -0.04f, 0.44f, -0.04f) - arcTo(3.01f, 3.01f, 0.0f, false, true, 10.0f, 5.0f) - close() - moveTo(10.22f, 7.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.41f, 0.0f) - lineToRelative(-2.3f, 0.67f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.5f, 0.45f) - lineToRelative(-1.46f, 3.83f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.39f, 0.57f) - lineTo(8.16f, 9.8f) - arcToRelative(0.62f, 0.62f, 0.0f, false, true, 1.14f, 0.48f) - lineToRelative(-0.86f, 2.13f) - lineToRelative(-2.88f, 7.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.38f, 0.56f) - lineToRelative(2.2f, -5.39f) - arcToRelative(1.14f, 1.14f, 0.0f, false, true, 1.9f, -0.2f) - lineToRelative(1.68f, 2.04f) - curveToRelative(0.03f, 0.04f, 0.05f, 0.09f, 0.05f, 0.14f) - lineTo(13.0f, 19.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - lineToRelative(-0.23f, -3.19f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -0.31f, -0.87f) - verticalLineToRelative(-0.01f) - lineToRelative(-0.01f, -0.01f) - lineToRelative(-0.84f, -1.23f) - curveToRelative(-0.42f, -0.6f, -0.5f, -1.38f, -0.25f, -2.07f) - lineToRelative(0.25f, -0.64f) - lineToRelative(0.26f, -0.54f) - arcToRelative(0.71f, 0.71f, 0.0f, false, true, 1.17f, -0.15f) - lineToRelative(0.58f, 0.91f) - curveToRelative(0.07f, 0.12f, 0.17f, 0.21f, 0.3f, 0.27f) - lineToRelative(2.5f, 1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.67f, -1.34f) - lineToRelative(-2.32f, -1.16f) - lineToRelative(-0.39f, -0.63f) - arcToRelative(2.28f, 2.28f, 0.0f, false, false, -0.12f, -0.17f) - lineToRelative(-1.03f, -1.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.43f, -0.32f) - lineToRelative(-4.08f, -1.14f) - close() - } - } - return _personWalking!! - } - -private var _personWalking: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Phone.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Phone.kt deleted file mode 100644 index 2e46f326..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Phone.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Phone: ImageVector - get() { - if (_phone != null) { - return _phone!! - } - _phone = fluentIcon(name = "Regular.Phone") { - fluentPath { - moveTo(15.75f, 2.0f) - curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-7.5f) - curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) - lineTo(6.0f, 4.25f) - curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(15.75f, 3.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(7.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(16.5f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(13.25f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.5f) - close() - } - } - return _phone!! - } - -private var _phone: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneAdd.kt deleted file mode 100644 index 91f5f1a4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneAdd.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PhoneAdd: ImageVector - get() { - if (_phoneAdd != null) { - return _phoneAdd!! - } - _phoneAdd = fluentIcon(name = "Regular.PhoneAdd") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(13.75f, 2.0f) - curveTo(14.99f, 2.0f, 16.0f, 3.0f, 16.0f, 4.25f) - verticalLineToRelative(6.92f) - curveToRelative(-0.53f, 0.13f, -1.03f, 0.32f, -1.5f, 0.56f) - lineTo(14.5f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(5.48f) - curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(17.5f, 14.0f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) - lineToRelative(-0.01f, 0.1f) - lineTo(17.0f, 17.0f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(0.18f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) - lineToRelative(0.1f, 0.01f) - lineTo(17.0f, 18.0f) - verticalLineToRelative(2.6f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - horizontalLineToRelative(0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) - lineToRelative(0.01f, -0.1f) - lineTo(18.0f, 18.0f) - horizontalLineToRelative(2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - verticalLineToRelative(-0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) - lineToRelative(-0.1f, -0.01f) - lineTo(18.0f, 17.0f) - verticalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) - horizontalLineToRelative(-0.09f) - close() - moveTo(8.75f, 17.5f) - lineTo(11.0f, 17.5f) - curveToRelative(0.0f, 0.52f, 0.06f, 1.02f, 0.17f, 1.5f) - lineTo(8.75f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - } - } - return _phoneAdd!! - } - -private var _phoneAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneArrowRight.kt deleted file mode 100644 index 964e3310..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneArrowRight.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PhoneArrowRight: ImageVector - get() { - if (_phoneArrowRight != null) { - return _phoneArrowRight!! - } - _phoneArrowRight = fluentIcon(name = "Regular.PhoneArrowRight") { - fluentPath { - moveTo(13.75f, 2.0f) - curveTo(14.99f, 2.0f, 16.0f, 3.0f, 16.0f, 4.25f) - verticalLineToRelative(5.77f) - curveToRelative(-0.52f, 0.04f, -1.02f, 0.14f, -1.5f, 0.3f) - lineTo(14.5f, 4.24f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(5.13f) - curveToRelative(0.46f, 0.6f, 1.02f, 1.1f, 1.66f, 1.5f) - lineTo(6.25f, 21.99f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(16.5f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(16.72f, 13.59f) - lineTo(16.65f, 13.65f) - lineTo(16.59f, 13.72f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) - lineToRelative(0.06f, 0.07f) - lineTo(18.29f, 16.0f) - lineTo(13.4f, 16.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(0.18f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(0.06f, -0.07f) - lineToRelative(2.53f, -2.53f) - lineToRelative(0.04f, -0.05f) - lineToRelative(0.04f, -0.08f) - lineToRelative(0.03f, -0.08f) - lineTo(19.99f, 16.39f) - lineToRelative(-0.03f, -0.08f) - lineToRelative(-0.04f, -0.08f) - lineToRelative(-0.04f, -0.05f) - lineToRelative(-2.53f, -2.53f) - lineToRelative(-0.07f, -0.06f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.49f, -0.04f) - lineToRelative(-0.07f, 0.04f) - close() - moveTo(10.08f, 17.5f) - curveToRelative(0.08f, 0.52f, 0.22f, 1.03f, 0.42f, 1.5f) - lineTo(8.75f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.33f) - close() - } - } - return _phoneArrowRight!! - } - -private var _phoneArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneChat.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneChat.kt deleted file mode 100644 index b1c2d907..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneChat.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PhoneChat: ImageVector - get() { - if (_phoneChat != null) { - return _phoneChat!! - } - _phoneChat = fluentIcon(name = "Regular.PhoneChat") { - fluentPath { - moveTo(18.0f, 4.25f) - curveTo(18.0f, 3.01f, 17.0f, 2.0f, 15.75f, 2.0f) - horizontalLineToRelative(-7.5f) - curveTo(7.01f, 2.0f, 6.0f, 3.0f, 6.0f, 4.25f) - verticalLineToRelative(15.5f) - curveTo(6.0f, 20.99f, 7.0f, 22.0f, 8.25f, 22.0f) - horizontalLineToRelative(2.84f) - lineToRelative(0.45f, -1.5f) - lineTo(8.25f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(7.5f, 4.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(6.83f) - arcToRelative(6.55f, 6.55f, 0.0f, false, true, 1.5f, -0.06f) - lineTo(18.0f, 4.25f) - close() - moveTo(21.0f, 13.25f) - arcTo(5.48f, 5.48f, 0.0f, false, false, 17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -4.81f, 8.17f) - lineToRelative(-0.67f, 2.19f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.63f, 0.62f) - lineToRelative(2.18f, -0.67f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 21.0f, 13.25f) - close() - moveTo(15.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - horizontalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(17.5f, 19.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - close() - } - } - return _phoneChat!! - } - -private var _phoneChat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneDesktop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneDesktop.kt deleted file mode 100644 index 5e75a3f0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneDesktop.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PhoneDesktop: ImageVector - get() { - if (_phoneDesktop != null) { - return _phoneDesktop!! - } - _phoneDesktop = fluentIcon(name = "Regular.PhoneDesktop") { - fluentPath { - moveTo(8.25f, 9.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-4.5f) - curveTo(2.78f, 22.0f, 2.0f, 21.22f, 2.0f, 20.25f) - verticalLineToRelative(-9.5f) - curveTo(2.0f, 9.78f, 2.78f, 9.0f, 3.75f, 9.0f) - horizontalLineToRelative(4.5f) - close() - moveTo(8.25f, 10.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(4.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-9.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(6.25f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-0.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.6f) - close() - moveTo(19.75f, 2.0f) - curveToRelative(1.19f, 0.0f, 2.16f, 0.93f, 2.24f, 2.1f) - verticalLineToRelative(9.15f) - curveToRelative(0.0f, 1.2f, -0.92f, 2.17f, -2.09f, 2.24f) - lineToRelative(-0.15f, 0.01f) - lineTo(16.0f, 15.5f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(11.0f, 19.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(-2.0f) - lineTo(11.0f, 15.5f) - lineTo(11.0f, 14.0f) - horizontalLineToRelative(8.75f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - verticalLineToRelative(-9.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.74f, -0.75f) - lineTo(6.25f, 3.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - lineTo(5.5f, 8.0f) - lineTo(4.0f, 8.0f) - lineTo(4.0f, 4.25f) - curveToRelative(0.0f, -1.2f, 0.92f, -2.17f, 2.1f, -2.24f) - lineTo(6.25f, 2.0f) - horizontalLineToRelative(13.5f) - close() - } - } - return _phoneDesktop!! - } - -private var _phoneDesktop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneDismiss.kt deleted file mode 100644 index ffa61622..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneDismiss.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PhoneDismiss: ImageVector - get() { - if (_phoneDismiss != null) { - return _phoneDismiss!! - } - _phoneDismiss = fluentIcon(name = "Regular.PhoneDismiss") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(13.75f, 2.0f) - curveTo(14.99f, 2.0f, 16.0f, 3.0f, 16.0f, 4.25f) - verticalLineToRelative(6.92f) - curveToRelative(-0.53f, 0.13f, -1.03f, 0.32f, -1.5f, 0.56f) - lineTo(14.5f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(5.48f) - curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(15.09f, 14.97f) - lineTo(15.02f, 15.02f) - lineTo(14.97f, 15.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.05f, 0.07f) - lineToRelative(1.77f, 1.77f) - lineToRelative(-1.76f, 1.77f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.06f, 0.06f) - lineToRelative(0.07f, 0.06f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) - lineToRelative(0.07f, -0.06f) - lineToRelative(1.77f, -1.76f) - lineToRelative(1.77f, 1.77f) - lineToRelative(0.07f, 0.05f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.57f, 0.0f) - lineToRelative(0.07f, -0.05f) - lineToRelative(0.05f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) - lineToRelative(-0.05f, -0.07f) - lineToRelative(-1.77f, -1.77f) - lineToRelative(1.77f, -1.77f) - lineToRelative(0.06f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) - lineToRelative(-0.06f, -0.07f) - lineToRelative(-0.07f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) - lineToRelative(-0.07f, 0.05f) - lineToRelative(-1.77f, 1.77f) - lineToRelative(-1.77f, -1.77f) - lineToRelative(-0.07f, -0.05f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.05f) - lineToRelative(-0.07f, 0.05f) - close() - moveTo(8.75f, 17.5f) - lineTo(11.0f, 17.5f) - curveToRelative(0.0f, 0.52f, 0.06f, 1.02f, 0.17f, 1.5f) - lineTo(8.75f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - } - } - return _phoneDismiss!! - } - -private var _phoneDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneKey.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneKey.kt deleted file mode 100644 index a969af46..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneKey.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PhoneKey: ImageVector - get() { - if (_phoneKey != null) { - return _phoneKey!! - } - _phoneKey = fluentIcon(name = "Regular.PhoneKey") { - fluentPath { - moveTo(15.75f, 2.0f) - curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) - verticalLineToRelative(7.0f) - curveToRelative(-0.56f, 0.2f, -1.07f, 0.5f, -1.5f, 0.9f) - verticalLineToRelative(-7.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(2.78f) - curveToRelative(-0.02f, 0.1f, -0.03f, 0.2f, -0.03f, 0.31f) - lineTo(11.0f, 22.0f) - lineTo(8.25f, 22.0f) - curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) - lineTo(6.0f, 4.25f) - curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(13.25f, 17.5f) - curveToRelative(0.1f, 0.0f, 0.2f, 0.02f, 0.28f, 0.05f) - lineTo(12.08f, 19.0f) - horizontalLineToRelative(-1.33f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.5f) - close() - moveTo(19.5f, 19.0f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, -3.38f, -2.59f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.15f, 0.12f) - lineToRelative(-3.75f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.22f, 0.53f) - verticalLineToRelative(1.44f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(1.75f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(15.0f, 22.0f) - horizontalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(1.5f) - close() - moveTo(21.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - } - } - return _phoneKey!! - } - -private var _phoneKey: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneLaptop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneLaptop.kt deleted file mode 100644 index cdcd5b83..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneLaptop.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PhoneLaptop: ImageVector - get() { - if (_phoneLaptop != null) { - return _phoneLaptop!! - } - _phoneLaptop = fluentIcon(name = "Regular.PhoneLaptop") { - fluentPath { - moveTo(8.25f, 8.0f) - curveTo(9.22f, 8.0f, 10.0f, 8.8f, 10.0f, 9.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-4.5f) - curveTo(2.78f, 21.0f, 2.0f, 20.22f, 2.0f, 19.25f) - verticalLineToRelative(-9.5f) - curveTo(2.0f, 8.8f, 2.78f, 8.0f, 3.75f, 8.0f) - horizontalLineToRelative(4.5f) - close() - moveTo(8.25f, 9.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(4.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.1f, 0.25f, -0.25f) - verticalLineToRelative(-9.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(6.25f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-0.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.6f) - close() - moveTo(21.25f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(11.0f, 18.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(10.25f) - close() - moveTo(18.25f, 5.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(11.0f, 16.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(7.25f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-7.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - lineTo(5.75f, 6.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - lineTo(5.5f, 7.0f) - lineTo(4.0f, 7.0f) - verticalLineToRelative(-0.25f) - curveTo(4.0f, 5.78f, 4.78f, 5.0f, 5.75f, 5.0f) - horizontalLineToRelative(12.5f) - close() - } - } - return _phoneLaptop!! - } - -private var _phoneLaptop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneLinkSetup.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneLinkSetup.kt deleted file mode 100644 index 2e9eda24..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneLinkSetup.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PhoneLinkSetup: ImageVector - get() { - if (_phoneLinkSetup != null) { - return _phoneLinkSetup!! - } - _phoneLinkSetup = fluentIcon(name = "Regular.PhoneLinkSetup") { - fluentPath { - moveTo(17.5f, 12.0f) - curveToRelative(0.3f, 0.0f, 0.58f, 0.02f, 0.86f, 0.07f) - lineToRelative(0.17f, 0.72f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.42f, 1.47f) - lineToRelative(0.1f, -0.02f) - lineToRelative(0.6f, -0.18f) - curveToRelative(0.36f, 0.46f, 0.65f, 1.0f, 0.85f, 1.57f) - lineToRelative(-0.45f, 0.43f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.17f, 2.7f) - lineToRelative(0.15f, 0.15f) - lineToRelative(0.47f, 0.46f) - curveToRelative(-0.2f, 0.57f, -0.5f, 1.1f, -0.85f, 1.57f) - lineToRelative(-0.6f, -0.18f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.49f, 1.35f) - lineToRelative(-0.03f, 0.1f) - lineToRelative(-0.17f, 0.72f) - arcToRelative(5.18f, 5.18f, 0.0f, false, true, -1.72f, 0.0f) - lineToRelative(-0.17f, -0.72f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.42f, -1.47f) - lineToRelative(-0.1f, 0.02f) - lineToRelative(-0.6f, 0.18f) - curveToRelative(-0.36f, -0.47f, -0.65f, -1.0f, -0.85f, -1.57f) - lineToRelative(0.45f, -0.43f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.17f, -2.7f) - lineToRelative(-0.15f, -0.15f) - lineToRelative(-0.47f, -0.46f) - curveToRelative(0.2f, -0.58f, 0.5f, -1.1f, 0.85f, -1.57f) - lineToRelative(0.6f, 0.18f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.49f, -1.35f) - lineToRelative(0.03f, -0.1f) - lineToRelative(0.17f, -0.72f) - curveToRelative(0.28f, -0.05f, 0.57f, -0.07f, 0.86f, -0.07f) - close() - moveTo(13.75f, 2.0f) - curveTo(14.99f, 2.0f, 16.0f, 3.0f, 16.0f, 4.25f) - verticalLineToRelative(6.92f) - curveToRelative(-0.53f, 0.13f, -1.03f, 0.32f, -1.5f, 0.56f) - lineTo(14.5f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(5.48f) - curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(8.75f, 17.5f) - lineTo(11.0f, 17.5f) - curveToRelative(0.0f, 0.52f, 0.06f, 1.02f, 0.17f, 1.5f) - lineTo(8.75f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(17.5f, 16.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, 0.67f, -1.45f, 1.5f) - reflectiveCurveTo(16.7f, 19.0f, 17.5f, 19.0f) - curveToRelative(0.8f, 0.0f, 1.45f, -0.67f, 1.45f, -1.5f) - reflectiveCurveTo(18.3f, 16.0f, 17.5f, 16.0f) - close() - } - } - return _phoneLinkSetup!! - } - -private var _phoneLinkSetup: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneLock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneLock.kt deleted file mode 100644 index deb086a3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneLock.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PhoneLock: ImageVector - get() { - if (_phoneLock != null) { - return _phoneLock!! - } - _phoneLock = fluentIcon(name = "Regular.PhoneLock") { - fluentPath { - moveTo(13.75f, 2.0f) - curveTo(14.99f, 2.0f, 16.0f, 3.0f, 16.0f, 4.25f) - verticalLineToRelative(6.59f) - curveToRelative(-0.62f, 0.3f, -1.15f, 0.77f, -1.5f, 1.36f) - lineTo(14.5f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(12.0f, 20.5f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 0.17f, 0.02f, 0.34f, 0.05f, 0.5f) - horizontalLineToRelative(-5.8f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(15.0f, 14.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(0.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-6.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(0.5f) - verticalLineToRelative(-1.0f) - close() - moveTo(16.5f, 14.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - close() - moveTo(18.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - moveTo(12.0f, 18.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.33f, 0.75f, 0.75f) - close() - } - } - return _phoneLock!! - } - -private var _phoneLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhonePageHeader.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhonePageHeader.kt deleted file mode 100644 index 8f9764d5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhonePageHeader.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PhonePageHeader: ImageVector - get() { - if (_phonePageHeader != null) { - return _phonePageHeader!! - } - _phonePageHeader = fluentIcon(name = "Regular.PhonePageHeader") { - fluentPath { - moveTo(15.75f, 2.0f) - curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-7.5f) - curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) - lineTo(6.0f, 4.25f) - curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(16.5f, 5.0f) - horizontalLineToRelative(-9.0f) - verticalLineToRelative(14.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(7.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(16.5f, 5.0f) - close() - } - } - return _phonePageHeader!! - } - -private var _phonePageHeader: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhonePagination.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhonePagination.kt deleted file mode 100644 index 6072952a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhonePagination.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PhonePagination: ImageVector - get() { - if (_phonePagination != null) { - return _phonePagination!! - } - _phonePagination = fluentIcon(name = "Regular.PhonePagination") { - fluentPath { - moveTo(15.75f, 2.0f) - curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-7.5f) - curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) - lineTo(6.0f, 4.25f) - curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(15.75f, 3.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(7.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(16.5f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(9.5f, 17.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(12.0f, 17.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(14.5f, 17.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - } - } - return _phonePagination!! - } - -private var _phonePagination: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneScreenTime.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneScreenTime.kt deleted file mode 100644 index af6187d4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneScreenTime.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PhoneScreenTime: ImageVector - get() { - if (_phoneScreenTime != null) { - return _phoneScreenTime!! - } - _phoneScreenTime = fluentIcon(name = "Regular.PhoneScreenTime") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(13.75f, 2.0f) - curveTo(14.99f, 2.0f, 16.0f, 3.0f, 16.0f, 4.25f) - verticalLineToRelative(6.92f) - curveToRelative(-0.53f, 0.13f, -1.03f, 0.32f, -1.5f, 0.56f) - lineTo(14.5f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(5.48f) - curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) - lineTo(6.25f, 22.0f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(8.75f, 17.5f) - lineTo(11.0f, 17.5f) - curveToRelative(0.0f, 0.52f, 0.06f, 1.02f, 0.17f, 1.5f) - lineTo(8.75f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(16.5f, 14.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - lineTo(17.0f, 18.0f) - verticalLineToRelative(-3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - } - } - return _phoneScreenTime!! - } - -private var _phoneScreenTime: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneShake.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneShake.kt deleted file mode 100644 index c21b31c9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneShake.kt +++ /dev/null @@ -1,96 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PhoneShake: ImageVector - get() { - if (_phoneShake != null) { - return _phoneShake!! - } - _phoneShake = fluentIcon(name = "Regular.PhoneShake") { - fluentPath { - moveTo(18.68f, 2.4f) - curveToRelative(0.2f, -0.37f, 0.65f, -0.5f, 1.01f, -0.3f) - arcToRelative(4.9f, 4.9f, 0.0f, false, true, 1.72f, 6.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.33f, -0.7f) - lineToRelative(0.05f, -0.09f) - arcToRelative(3.4f, 3.4f, 0.0f, false, false, -1.16f, -4.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.3f, -1.02f) - close() - moveTo(14.68f, 15.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.91f, -0.53f) - lineToRelative(-1.93f, 0.52f) - lineToRelative(-0.1f, 0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.49f, 1.42f) - lineToRelative(1.93f, -0.52f) - lineToRelative(0.1f, -0.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.43f, -0.88f) - close() - moveTo(15.1f, 5.66f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.76f, -1.59f) - lineTo(7.74f, 5.3f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.58f, 2.76f) - lineTo(8.9f, 18.34f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.76f, 1.6f) - lineToRelative(4.6f, -1.23f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 1.58f, -2.76f) - lineTo(15.1f, 5.66f) - close() - moveTo(12.73f, 5.52f) - curveToRelative(0.4f, -0.1f, 0.8f, 0.13f, 0.92f, 0.53f) - lineToRelative(2.75f, 10.29f) - curveToRelative(0.11f, 0.4f, -0.13f, 0.81f, -0.53f, 0.92f) - lineToRelative(-4.6f, 1.23f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.91f, -0.53f) - lineTo(7.6f, 7.67f) - curveToRelative(-0.1f, -0.4f, 0.14f, -0.81f, 0.54f, -0.92f) - lineToRelative(4.59f, -1.23f) - close() - moveTo(18.55f, 4.3f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.9f, 1.2f) - lineToRelative(0.02f, 0.02f) - lineToRelative(0.16f, 0.18f) - curveToRelative(0.08f, 0.1f, 0.14f, 0.21f, 0.17f, 0.31f) - arcToRelative(1.07f, 1.07f, 0.0f, false, true, -0.04f, 0.58f) - lineToRelative(-0.05f, 0.14f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.42f, 0.49f) - lineToRelative(0.05f, -0.13f) - lineToRelative(0.05f, -0.18f) - curveToRelative(0.1f, -0.41f, 0.13f, -0.85f, 0.01f, -1.29f) - arcToRelative(2.6f, 2.6f, 0.0f, false, false, -0.9f, -1.32f) - close() - moveTo(2.54f, 15.41f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, 0.66f) - lineToRelative(-0.1f, 0.2f) - lineToRelative(-0.1f, 0.28f) - arcToRelative(3.54f, 3.54f, 0.0f, false, false, 0.6f, 3.36f) - curveToRelative(0.26f, 0.32f, 0.51f, 0.54f, 0.68f, 0.65f) - lineToRelative(0.07f, 0.04f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.75f, 1.3f) - arcToRelative(5.04f, 5.04f, 0.0f, false, true, -1.74f, -6.49f) - close() - moveTo(5.65f, 16.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.4f) - arcToRelative(1.8f, 1.8f, 0.0f, false, false, -0.04f, 0.14f) - lineToRelative(-0.06f, 0.17f) - arcToRelative(2.42f, 2.42f, 0.0f, false, false, 0.4f, 2.11f) - curveToRelative(0.18f, 0.23f, 0.35f, 0.4f, 0.48f, 0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.92f, -1.2f) - lineToRelative(-0.04f, -0.02f) - curveToRelative(-0.04f, -0.04f, -0.1f, -0.1f, -0.15f, -0.18f) - arcToRelative(0.95f, 0.95f, 0.0f, false, true, -0.17f, -0.31f) - arcToRelative(1.07f, 1.07f, 0.0f, false, true, 0.03f, -0.58f) - lineToRelative(0.05f, -0.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.44f, -0.88f) - close() - } - } - return _phoneShake!! - } - -private var _phoneShake: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneSpanIn.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneSpanIn.kt deleted file mode 100644 index b7933aa8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneSpanIn.kt +++ /dev/null @@ -1,100 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PhoneSpanIn: ImageVector - get() { - if (_phoneSpanIn != null) { - return _phoneSpanIn!! - } - _phoneSpanIn = fluentIcon(name = "Regular.PhoneSpanIn") { - fluentPath { - moveTo(6.0f, 16.07f) - curveToRelative(0.48f, 0.23f, 1.03f, 0.23f, 1.5f, 0.01f) - verticalLineToRelative(3.67f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(7.5f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - verticalLineToRelative(-3.68f) - curveToRelative(0.5f, 0.23f, 1.04f, 0.23f, 1.5f, 0.01f) - verticalLineToRelative(3.67f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - horizontalLineToRelative(-7.5f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(6.0f, 19.75f) - verticalLineToRelative(-3.68f) - close() - moveTo(17.78f, 8.97f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-1.22f, 1.22f) - horizontalLineToRelative(3.78f) - curveToRelative(0.37f, 0.0f, 0.66f, 0.33f, 0.66f, 0.75f) - curveToRelative(0.0f, 0.38f, -0.25f, 0.7f, -0.57f, 0.74f) - lineTo(16.56f, 12.74f) - lineToRelative(1.22f, 1.23f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-2.37f, -2.37f) - arcTo(0.77f, 0.77f, 0.0f, false, true, 14.0f, 12.0f) - curveToRelative(0.0f, -0.29f, 0.14f, -0.54f, 0.35f, -0.66f) - lineToRelative(2.37f, -2.37f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(7.2f, 8.9f) - lineToRelative(0.08f, 0.07f) - lineToRelative(2.37f, 2.37f) - curveToRelative(0.2f, 0.12f, 0.35f, 0.37f, 0.35f, 0.66f) - curveToRelative(0.0f, 0.25f, -0.1f, 0.47f, -0.28f, 0.61f) - lineToRelative(-0.07f, 0.05f) - lineToRelative(-2.37f, 2.37f) - lineToRelative(-0.08f, 0.07f) - curveToRelative(-0.27f, 0.2f, -0.62f, 0.2f, -0.89f, 0.01f) - lineToRelative(-0.1f, -0.08f) - lineToRelative(-0.06f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.01f, -0.89f) - lineToRelative(0.08f, -0.09f) - lineToRelative(1.22f, -1.22f) - lineTo(3.56f, 12.75f) - curveTo(3.26f, 12.68f, 3.0f, 12.37f, 3.0f, 12.0f) - reflectiveCurveToRelative(0.25f, -0.7f, 0.57f, -0.74f) - lineToRelative(0.09f, -0.01f) - horizontalLineToRelative(3.78f) - lineToRelative(-1.22f, -1.22f) - lineToRelative(-0.07f, -0.09f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 7.2f, 8.9f) - close() - moveTo(15.75f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(3.67f) - arcToRelative(1.76f, 1.76f, 0.0f, false, false, -1.5f, 0.0f) - lineTo(16.5f, 4.25f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-7.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(3.67f) - arcToRelative(1.76f, 1.76f, 0.0f, false, false, -1.5f, 0.0f) - lineTo(6.0f, 4.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(8.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - } - } - return _phoneSpanIn!! - } - -private var _phoneSpanIn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneSpanOut.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneSpanOut.kt deleted file mode 100644 index d010eda2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneSpanOut.kt +++ /dev/null @@ -1,105 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PhoneSpanOut: ImageVector - get() { - if (_phoneSpanOut != null) { - return _phoneSpanOut!! - } - _phoneSpanOut = fluentIcon(name = "Regular.PhoneSpanOut") { - fluentPath { - moveToRelative(16.5f, 15.72f) - lineToRelative(0.01f, 0.02f) - curveToRelative(0.4f, 0.4f, 0.95f, 0.57f, 1.49f, 0.48f) - verticalLineToRelative(3.53f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - horizontalLineToRelative(-7.5f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineTo(6.0f, 19.75f) - verticalLineToRelative(-3.53f) - curveToRelative(0.49f, 0.08f, 0.98f, -0.05f, 1.36f, -0.37f) - lineToRelative(0.14f, -0.13f) - verticalLineToRelative(4.03f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(7.5f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - verticalLineToRelative(-4.03f) - close() - moveTo(6.78f, 8.97f) - curveToRelative(0.27f, 0.26f, 0.3f, 0.68f, 0.07f, 0.97f) - lineToRelative(-0.07f, 0.09f) - lineToRelative(-1.22f, 1.22f) - horizontalLineToRelative(3.78f) - curveToRelative(0.37f, 0.0f, 0.66f, 0.33f, 0.66f, 0.75f) - curveToRelative(0.0f, 0.38f, -0.25f, 0.7f, -0.57f, 0.74f) - lineTo(5.56f, 12.74f) - lineToRelative(1.22f, 1.23f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-2.37f, -2.37f) - arcTo(0.77f, 0.77f, 0.0f, false, true, 3.0f, 12.0f) - curveToRelative(0.0f, -0.29f, 0.14f, -0.54f, 0.35f, -0.66f) - lineToRelative(2.37f, -2.37f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(17.22f, 8.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.08f) - lineToRelative(0.08f, 0.08f) - lineToRelative(2.37f, 2.36f) - curveToRelative(0.2f, 0.13f, 0.35f, 0.38f, 0.35f, 0.67f) - curveToRelative(0.0f, 0.25f, -0.1f, 0.47f, -0.28f, 0.6f) - lineToRelative(-0.07f, 0.06f) - lineToRelative(-2.37f, 2.37f) - lineToRelative(-0.08f, 0.07f) - curveToRelative(-0.27f, 0.2f, -0.62f, 0.2f, -0.89f, 0.0f) - lineToRelative(-0.1f, -0.07f) - lineToRelative(-0.06f, -0.09f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.01f, -0.88f) - lineToRelative(0.08f, -0.1f) - lineToRelative(1.22f, -1.21f) - horizontalLineToRelative(-3.78f) - lineToRelative(-0.1f, -0.01f) - curveToRelative(-0.31f, -0.05f, -0.56f, -0.37f, -0.56f, -0.74f) - curveToRelative(0.0f, -0.38f, 0.25f, -0.7f, 0.57f, -0.75f) - lineTo(18.44f, 11.25f) - lineToRelative(-1.22f, -1.22f) - lineToRelative(-0.07f, -0.09f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.07f, -0.97f) - close() - moveTo(15.75f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(3.52f) - curveToRelative(-0.47f, -0.07f, -0.97f, 0.06f, -1.36f, 0.38f) - lineToRelative(-0.14f, 0.12f) - lineTo(16.5f, 4.25f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-7.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(4.02f) - horizontalLineToRelative(-0.01f) - curveToRelative(-0.4f, -0.41f, -0.96f, -0.58f, -1.5f, -0.5f) - lineTo(6.0f, 4.25f) - curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) - lineTo(8.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - } - } - return _phoneSpanOut!! - } - -private var _phoneSpanOut: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneSpeaker.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneSpeaker.kt deleted file mode 100644 index 6417346b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneSpeaker.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PhoneSpeaker: ImageVector - get() { - if (_phoneSpeaker != null) { - return _phoneSpeaker!! - } - _phoneSpeaker = fluentIcon(name = "Regular.PhoneSpeaker") { - fluentPath { - moveTo(13.75f, 2.0f) - curveTo(14.99f, 2.0f, 16.0f, 3.0f, 16.0f, 4.25f) - verticalLineToRelative(8.67f) - curveToRelative(-0.37f, 0.05f, -0.73f, 0.23f, -1.03f, 0.54f) - lineToRelative(-0.47f, 0.5f) - lineTo(14.5f, 4.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(7.5f) - curveToRelative(0.08f, 0.0f, 0.15f, -0.01f, 0.22f, -0.03f) - lineToRelative(1.0f, 1.07f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.06f, 0.06f) - curveToRelative(-0.36f, 0.25f, -0.8f, 0.4f, -1.28f, 0.4f) - horizontalLineToRelative(-7.5f) - curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(8.75f, 17.5f) - lineTo(11.0f, 17.5f) - lineTo(11.0f, 19.0f) - lineTo(8.75f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(22.15f, 14.3f) - arcToRelative(4.53f, 4.53f, 0.0f, false, false, -0.92f, -1.13f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.96f, 1.16f) - curveToRelative(0.13f, 0.1f, 0.35f, 0.35f, 0.59f, 0.74f) - curveToRelative(0.4f, 0.67f, 0.64f, 1.48f, 0.64f, 2.43f) - curveToRelative(0.0f, 0.95f, -0.24f, 1.76f, -0.64f, 2.43f) - curveToRelative(-0.24f, 0.39f, -0.46f, 0.64f, -0.59f, 0.74f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.96f, 1.16f) - curveToRelative(0.25f, -0.21f, 0.59f, -0.58f, 0.91f, -1.13f) - curveToRelative(0.54f, -0.9f, 0.86f, -1.96f, 0.86f, -3.2f) - curveToRelative(0.0f, -1.24f, -0.32f, -2.3f, -0.86f, -3.2f) - close() - moveTo(19.87f, 15.4f) - curveToRelative(-0.23f, -0.36f, -0.48f, -0.6f, -0.67f, -0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 1.2f) - arcToRelative(2.24f, 2.24f, 0.0f, false, true, 0.7f, 1.65f) - arcToRelative(2.24f, 2.24f, 0.0f, false, true, -0.7f, 1.65f) - lineToRelative(-0.08f, 0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) - arcToRelative(3.73f, 3.73f, 0.0f, false, false, 1.3f, -2.85f) - curveToRelative(0.0f, -0.81f, -0.23f, -1.52f, -0.63f, -2.1f) - close() - moveTo(17.0f, 14.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.31f, -0.5f) - lineTo(14.16f, 16.0f) - horizontalLineToRelative(-1.41f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(1.41f) - lineToRelative(1.53f, 1.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.31f, -0.49f) - verticalLineToRelative(-5.5f) - close() - } - } - return _phoneSpeaker!! - } - -private var _phoneSpeaker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneStatusBar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneStatusBar.kt deleted file mode 100644 index 6a46df8e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneStatusBar.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PhoneStatusBar: ImageVector - get() { - if (_phoneStatusBar != null) { - return _phoneStatusBar!! - } - _phoneStatusBar = fluentIcon(name = "Regular.PhoneStatusBar") { - fluentPath { - moveTo(15.75f, 2.0f) - curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-7.5f) - curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) - lineTo(6.0f, 4.25f) - curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(15.75f, 3.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(7.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(16.5f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(14.75f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(5.5f) - close() - } - } - return _phoneStatusBar!! - } - -private var _phoneStatusBar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneTablet.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneTablet.kt deleted file mode 100644 index fecbcabe..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneTablet.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PhoneTablet: ImageVector - get() { - if (_phoneTablet != null) { - return _phoneTablet!! - } - _phoneTablet = fluentIcon(name = "Regular.PhoneTablet") { - fluentPath { - moveTo(8.25f, 7.0f) - curveTo(9.22f, 7.0f, 10.0f, 7.78f, 10.0f, 8.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-4.5f) - curveTo(2.78f, 20.0f, 2.0f, 19.22f, 2.0f, 18.25f) - verticalLineToRelative(-9.5f) - curveTo(2.0f, 7.78f, 2.78f, 7.0f, 3.75f, 7.0f) - horizontalLineToRelative(4.5f) - close() - moveTo(8.25f, 8.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(4.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-9.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(6.25f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-0.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.6f) - close() - moveTo(19.75f, 4.0f) - curveToRelative(1.19f, 0.0f, 2.16f, 0.93f, 2.24f, 2.1f) - verticalLineToRelative(8.65f) - curveToRelative(0.0f, 1.2f, -0.92f, 2.17f, -2.09f, 2.24f) - lineToRelative(-0.15f, 0.01f) - lineTo(11.0f, 17.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(8.75f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - verticalLineToRelative(-8.6f) - curveToRelative(0.0f, -0.38f, -0.27f, -0.7f, -0.64f, -0.74f) - lineToRelative(-0.1f, -0.01f) - lineTo(8.25f, 5.5f) - curveToRelative(-0.33f, 0.0f, -0.6f, 0.2f, -0.7f, 0.5f) - lineTo(6.0f, 6.0f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 8.1f, 4.0f) - horizontalLineToRelative(11.66f) - close() - moveTo(15.25f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.5f) - close() - } - } - return _phoneTablet!! - } - -private var _phoneTablet: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneUpdate.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneUpdate.kt deleted file mode 100644 index 53d70f1e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneUpdate.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PhoneUpdate: ImageVector - get() { - if (_phoneUpdate != null) { - return _phoneUpdate!! - } - _phoneUpdate = fluentIcon(name = "Regular.PhoneUpdate") { - fluentPath { - moveTo(15.75f, 2.0f) - curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-7.5f) - curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) - lineTo(6.0f, 4.25f) - curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(15.75f, 3.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(7.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(16.5f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(12.0f, 7.03f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(6.71f) - lineToRelative(0.96f, -0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-2.24f, 2.24f) - lineToRelative(-0.04f, 0.04f) - lineToRelative(-0.06f, 0.05f) - lineToRelative(-0.07f, 0.04f) - lineToRelative(-0.06f, 0.03f) - lineToRelative(-0.1f, 0.04f) - lineToRelative(-0.06f, 0.01f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-0.09f) - lineToRelative(-0.09f, -0.01f) - lineToRelative(-0.1f, -0.02f) - lineToRelative(-0.1f, -0.05f) - lineToRelative(-0.08f, -0.05f) - lineToRelative(-0.11f, -0.09f) - lineToRelative(-2.24f, -2.24f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -1.13f) - lineToRelative(0.09f, 0.07f) - lineToRelative(0.96f, 0.96f) - lineTo(11.25f, 7.8f) - curveToRelative(0.0f, -0.35f, 0.23f, -0.64f, 0.55f, -0.73f) - lineToRelative(0.1f, -0.02f) - horizontalLineToRelative(0.1f) - close() - } - } - return _phoneUpdate!! - } - -private var _phoneUpdate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneUpdateCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneUpdateCheckmark.kt deleted file mode 100644 index 8b0ac8a5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneUpdateCheckmark.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PhoneUpdateCheckmark: ImageVector - get() { - if (_phoneUpdateCheckmark != null) { - return _phoneUpdateCheckmark!! - } - _phoneUpdateCheckmark = fluentIcon(name = "Regular.PhoneUpdateCheckmark") { - fluentPath { - moveTo(8.25f, 22.0f) - horizontalLineToRelative(4.56f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, -1.5f) - lineTo(8.25f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(7.5f, 4.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(6.83f) - arcToRelative(6.55f, 6.55f, 0.0f, false, true, 1.5f, -0.06f) - lineTo(18.0f, 4.25f) - curveTo(18.0f, 3.01f, 17.0f, 2.0f, 15.75f, 2.0f) - horizontalLineToRelative(-7.5f) - curveTo(7.01f, 2.0f, 6.0f, 3.0f, 6.0f, 4.25f) - verticalLineToRelative(15.5f) - curveTo(6.0f, 20.99f, 7.0f, 22.0f, 8.25f, 22.0f) - close() - moveTo(11.25f, 15.7f) - curveToRelative(0.29f, -1.0f, 0.8f, -1.9f, 1.5f, -2.64f) - lineTo(12.75f, 9.51f) - lineToRelative(0.96f, 0.96f) - curveToRelative(0.27f, 0.27f, 0.68f, 0.29f, 0.98f, 0.07f) - lineToRelative(0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.07f, -0.98f) - lineToRelative(-0.07f, -0.08f) - lineToRelative(-2.24f, -2.24f) - lineToRelative(-0.04f, -0.04f) - lineToRelative(-0.06f, -0.05f) - lineToRelative(-0.07f, -0.04f) - lineToRelative(-0.06f, -0.03f) - lineToRelative(-0.1f, -0.04f) - lineToRelative(-0.06f, -0.01f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-0.09f) - lineToRelative(-0.09f, 0.01f) - lineToRelative(-0.1f, 0.02f) - lineToRelative(-0.1f, 0.05f) - lineToRelative(-0.08f, 0.05f) - lineToRelative(-0.11f, 0.09f) - lineTo(9.23f, 9.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.97f, 1.13f) - lineToRelative(0.09f, -0.07f) - lineToRelative(0.96f, -0.96f) - verticalLineToRelative(6.2f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-3.65f, 3.64f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _phoneUpdateCheckmark!! - } - -private var _phoneUpdateCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneVerticalScroll.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneVerticalScroll.kt deleted file mode 100644 index 00ea0033..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneVerticalScroll.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PhoneVerticalScroll: ImageVector - get() { - if (_phoneVerticalScroll != null) { - return _phoneVerticalScroll!! - } - _phoneVerticalScroll = fluentIcon(name = "Regular.PhoneVerticalScroll") { - fluentPath { - moveTo(15.75f, 2.0f) - curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-7.5f) - curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) - lineTo(6.0f, 4.25f) - curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(15.75f, 3.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(7.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(16.5f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(14.78f, 13.46f) - curveToRelative(0.26f, 0.27f, 0.3f, 0.68f, 0.08f, 0.98f) - lineToRelative(-0.07f, 0.09f) - lineToRelative(-2.25f, 2.3f) - curveToRelative(-0.27f, 0.26f, -0.7f, 0.29f, -1.0f, 0.07f) - lineToRelative(-0.08f, -0.08f) - lineToRelative(-2.25f, -2.3f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.99f, -1.12f) - lineToRelative(0.08f, 0.07f) - lineTo(12.0f, 15.22f) - lineToRelative(1.71f, -1.75f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(12.54f, 7.23f) - lineTo(14.79f, 9.53f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.08f, 1.04f) - lineTo(12.0f, 8.82f) - lineToRelative(-1.72f, 1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.07f, -1.05f) - lineToRelative(2.25f, -2.3f) - curveToRelative(0.3f, -0.3f, 0.78f, -0.3f, 1.08f, 0.0f) - close() - } - } - return _phoneVerticalScroll!! - } - -private var _phoneVerticalScroll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneVibrate.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneVibrate.kt deleted file mode 100644 index 78870301..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhoneVibrate.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PhoneVibrate: ImageVector - get() { - if (_phoneVibrate != null) { - return _phoneVibrate!! - } - _phoneVibrate = fluentIcon(name = "Regular.PhoneVibrate") { - fluentPath { - moveTo(15.75f, 2.0f) - curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-7.5f) - curveTo(7.0f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) - lineTo(6.0f, 4.25f) - curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(15.75f, 3.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.41f, 0.33f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(7.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(16.5f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(13.25f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.5f) - close() - moveTo(20.65f, 8.13f) - lineTo(20.7f, 8.23f) - lineTo(21.28f, 9.68f) - curveToRelative(0.33f, 0.83f, 0.24f, 1.77f, -0.25f, 2.51f) - lineToRelative(-0.1f, 0.16f) - lineToRelative(-0.16f, 0.2f) - curveToRelative(-0.23f, 0.31f, -0.3f, 0.7f, -0.2f, 1.08f) - lineToRelative(0.04f, 0.14f) - lineToRelative(0.59f, 1.45f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.65f) - lineToRelative(-0.05f, -0.1f) - lineToRelative(-0.58f, -1.45f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.24f, -2.51f) - lineToRelative(0.11f, -0.16f) - lineToRelative(0.15f, -0.2f) - curveToRelative(0.24f, -0.31f, 0.31f, -0.7f, 0.21f, -1.08f) - lineToRelative(-0.04f, -0.14f) - lineToRelative(-0.59f, -1.45f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.29f, -0.74f) - lineToRelative(0.06f, 0.09f) - close() - moveTo(4.15f, 8.13f) - lineTo(4.2f, 8.23f) - lineTo(4.78f, 9.68f) - curveToRelative(0.33f, 0.83f, 0.24f, 1.77f, -0.25f, 2.51f) - lineToRelative(-0.1f, 0.16f) - lineToRelative(-0.16f, 0.2f) - curveToRelative(-0.23f, 0.31f, -0.3f, 0.7f, -0.2f, 1.08f) - lineToRelative(0.04f, 0.14f) - lineToRelative(0.59f, 1.45f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.65f) - lineToRelative(-0.05f, -0.1f) - lineToRelative(-0.58f, -1.45f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.24f, -2.51f) - lineToRelative(0.11f, -0.16f) - lineToRelative(0.15f, -0.2f) - curveToRelative(0.24f, -0.31f, 0.31f, -0.7f, 0.21f, -1.08f) - lineToRelative(-0.04f, -0.14f) - lineToRelative(-0.59f, -1.45f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.29f, -0.74f) - lineToRelative(0.06f, 0.09f) - close() - } - } - return _phoneVibrate!! - } - -private var _phoneVibrate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhotoFilter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhotoFilter.kt deleted file mode 100644 index 05f4b3ea..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PhotoFilter.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PhotoFilter: ImageVector - get() { - if (_photoFilter != null) { - return _photoFilter!! - } - _photoFilter = fluentIcon(name = "Regular.PhotoFilter") { - fluentPath { - moveTo(9.5f, 2.0f) - arcToRelative(7.5f, 7.5f, 0.0f, false, true, 7.18f, 5.32f) - arcToRelative(7.5f, 7.5f, 0.0f, true, true, -9.36f, 9.36f) - arcTo(7.5f, 7.5f, 0.0f, false, true, 9.5f, 2.0f) - close() - moveTo(16.99f, 9.04f) - verticalLineToRelative(0.22f) - lineToRelative(0.01f, 0.24f) - arcToRelative(7.5f, 7.5f, 0.0f, false, true, -7.96f, 7.49f) - arcToRelative(6.0f, 6.0f, 0.0f, true, false, 7.95f, -7.95f) - close() - moveTo(9.5f, 3.5f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, -2.49f, 11.46f) - verticalLineToRelative(-0.22f) - lineTo(7.0f, 14.5f) - arcToRelative(7.5f, 7.5f, 0.0f, false, true, 7.96f, -7.49f) - arcTo(6.0f, 6.0f, 0.0f, false, false, 9.5f, 3.5f) - close() - } - } - return _photoFilter!! - } - -private var _photoFilter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Pi.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Pi.kt deleted file mode 100644 index 9e96725e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Pi.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Pi: ImageVector - get() { - if (_pi != null) { - return _pi!! - } - _pi = fluentIcon(name = "Regular.Pi") { - fluentPath { - moveTo(2.5f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.25f, 4.0f) - horizontalLineToRelative(15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineTo(17.0f) - verticalLineToRelative(11.45f) - curveToRelative(0.0f, 1.21f, 1.2f, 2.06f, 2.34f, 1.65f) - lineToRelative(0.16f, -0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.5f, 1.42f) - lineToRelative(-0.16f, 0.05f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -4.34f, -3.06f) - verticalLineTo(5.5f) - horizontalLineToRelative(-6.0f) - arcToRelative(56.9f, 56.9f, 0.0f, false, true, -0.25f, 4.53f) - curveToRelative(-0.25f, 2.87f, -0.76f, 6.5f, -1.8f, 9.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.4f, -0.5f) - arcToRelative(40.07f, 40.07f, 0.0f, false, false, 1.7f, -9.1f) - arcTo(67.9f, 67.9f, 0.0f, false, false, 8.0f, 5.5f) - horizontalLineTo(5.25f) - curveTo(4.56f, 5.5f, 4.0f, 6.06f, 4.0f, 6.75f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.5f) - close() - } - } - return _pi!! - } - -private var _pi: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PictureInPicture.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PictureInPicture.kt deleted file mode 100644 index 80e1e366..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PictureInPicture.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PictureInPicture: ImageVector - get() { - if (_pictureInPicture != null) { - return _pictureInPicture!! - } - _pictureInPicture = fluentIcon(name = "Regular.PictureInPicture") { - fluentPath { - moveTo(2.0f, 6.25f) - curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(13.5f) - curveTo(20.55f, 3.0f, 22.0f, 4.46f, 22.0f, 6.25f) - verticalLineTo(12.0f) - horizontalLineToRelative(-1.5f) - verticalLineTo(6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineTo(5.25f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineTo(11.0f) - verticalLineTo(19.0f) - horizontalLineTo(5.25f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 15.75f) - verticalLineToRelative(-9.5f) - close() - moveTo(14.0f, 13.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - verticalLineToRelative(-5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - horizontalLineToRelative(-7.0f) - close() - } - } - return _pictureInPicture!! - } - -private var _pictureInPicture: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PictureInPictureEnter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PictureInPictureEnter.kt deleted file mode 100644 index c2cace4e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PictureInPictureEnter.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PictureInPictureEnter: ImageVector - get() { - if (_pictureInPictureEnter != null) { - return _pictureInPictureEnter!! - } - _pictureInPictureEnter = fluentIcon(name = "Regular.PictureInPictureEnter") { - fluentPath { - moveTo(2.0f, 6.25f) - curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(13.5f) - curveTo(20.55f, 3.0f, 22.0f, 4.46f, 22.0f, 6.25f) - verticalLineTo(12.0f) - horizontalLineToRelative(-1.5f) - verticalLineTo(6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineTo(5.25f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineTo(11.0f) - verticalLineTo(19.0f) - horizontalLineTo(5.25f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 15.75f) - verticalLineToRelative(-9.5f) - close() - moveTo(14.0f, 13.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - verticalLineToRelative(-5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - horizontalLineToRelative(-7.0f) - close() - moveTo(5.22f, 6.22f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineTo(9.5f, 9.44f) - verticalLineTo(7.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.69f) - lineTo(5.22f, 7.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - } - } - return _pictureInPictureEnter!! - } - -private var _pictureInPictureEnter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PictureInPictureExit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PictureInPictureExit.kt deleted file mode 100644 index 2dd51a6a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PictureInPictureExit.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PictureInPictureExit: ImageVector - get() { - if (_pictureInPictureExit != null) { - return _pictureInPictureExit!! - } - _pictureInPictureExit = fluentIcon(name = "Regular.PictureInPictureExit") { - fluentPath { - moveTo(10.0f, 11.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - lineTo(12.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - lineTo(3.0f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, 2.0f) - horizontalLineToRelative(7.0f) - close() - moveTo(18.75f, 6.5f) - lineTo(13.0f, 6.5f) - lineTo(13.0f, 5.0f) - horizontalLineToRelative(5.75f) - curveTo(20.55f, 5.0f, 22.0f, 6.46f, 22.0f, 8.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(5.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 17.75f) - verticalLineToRelative(-5.92f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 3.0f, 12.0f) - horizontalLineToRelative(0.5f) - verticalLineToRelative(5.75f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(15.94f, 16.0f) - horizontalLineToRelative(-1.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.69f) - lineToRelative(-2.72f, -2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(15.94f, 16.0f) - close() - } - } - return _pictureInPictureExit!! - } - -private var _pictureInPictureExit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Pill.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Pill.kt deleted file mode 100644 index d300312d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Pill.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Pill: ImageVector - get() { - if (_pill != null) { - return _pill!! - } - _pill = fluentIcon(name = "Regular.Pill") { - fluentPath { - moveTo(10.53f, 15.47f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-2.0f, 2.0f) - curveToRelative(-0.84f, 0.84f, -2.2f, 0.85f, -3.05f, 0.0f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 6.0f, 17.26f) - curveToRelative(0.2f, 0.0f, 0.4f, 0.08f, 0.53f, 0.22f) - curveToRelative(0.26f, 0.26f, 0.68f, 0.26f, 0.94f, 0.0f) - lineToRelative(2.0f, -2.0f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(13.3f, 3.53f) - arcToRelative(5.07f, 5.07f, 0.0f, true, true, 7.17f, 7.17f) - lineToRelative(-9.77f, 9.77f) - arcToRelative(5.07f, 5.07f, 0.0f, false, true, -7.18f, -7.17f) - lineToRelative(9.78f, -9.77f) - close() - moveTo(19.41f, 4.59f) - arcToRelative(3.57f, 3.57f, 0.0f, false, false, -5.05f, 0.0f) - lineTo(10.0f, 8.94f) - lineTo(15.05f, 14.0f) - lineToRelative(4.36f, -4.35f) - arcToRelative(3.57f, 3.57f, 0.0f, false, false, 0.0f, -5.05f) - close() - moveTo(14.0f, 15.06f) - lineTo(8.94f, 10.0f) - lineTo(4.6f, 14.36f) - arcToRelative(3.57f, 3.57f, 0.0f, true, false, 5.05f, 5.05f) - lineToRelative(4.35f, -4.35f) - close() - } - } - return _pill!! - } - -private var _pill: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PinOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PinOff.kt deleted file mode 100644 index 7c4d930d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PinOff.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PinOff: ImageVector - get() { - if (_pinOff != null) { - return _pinOff!! - } - _pinOff = fluentIcon(name = "Regular.PinOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(5.9f, 5.9f) - lineToRelative(-3.3f, 1.15f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -0.49f, 2.07f) - lineToRelative(3.1f, 3.1f) - lineTo(3.0f, 19.94f) - lineTo(3.0f, 21.0f) - horizontalLineToRelative(1.06f) - lineToRelative(4.44f, -4.44f) - lineToRelative(3.1f, 3.1f) - curveToRelative(0.66f, 0.66f, 1.77f, 0.4f, 2.07f, -0.47f) - lineToRelative(1.14f, -3.31f) - lineToRelative(5.91f, 5.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(13.64f, 14.7f) - lineToRelative(-1.26f, 3.62f) - lineToRelative(-6.7f, -6.7f) - lineToRelative(3.62f, -1.26f) - lineToRelative(4.34f, 4.34f) - close() - moveTo(19.68f, 10.82f) - lineTo(15.9f, 12.72f) - lineTo(17.0f, 13.82f) - lineToRelative(3.34f, -1.67f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 0.72f, -4.4f) - lineToRelative(-4.83f, -4.83f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -4.4f, 0.72f) - lineToRelative(-1.67f, 3.34f) - lineToRelative(1.12f, 1.11f) - lineToRelative(1.89f, -3.78f) - curveToRelative(0.38f, -0.77f, 1.4f, -0.93f, 2.0f, -0.33f) - lineToRelative(4.83f, 4.83f) - curveToRelative(0.6f, 0.6f, 0.44f, 1.62f, -0.33f, 2.0f) - close() - } - } - return _pinOff!! - } - -private var _pinOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Pipeline.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Pipeline.kt deleted file mode 100644 index a33cc80a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Pipeline.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Pipeline: ImageVector - get() { - if (_pipeline != null) { - return _pipeline!! - } - _pipeline = fluentIcon(name = "Regular.Pipeline") { - fluentPath { - moveTo(2.0f, 6.25f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 6.49f, 6.0f) - lineTo(17.5f, 6.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.49f, 0.25f) - verticalLineToRelative(10.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.49f, 0.25f) - lineTo(6.5f, 17.0f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 2.0f, 16.75f) - lineTo(2.0f, 6.25f) - close() - moveTo(5.0f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(5.0f, 6.25f) - close() - moveTo(6.5f, 15.5f) - horizontalLineToRelative(11.0f) - verticalLineToRelative(-8.0f) - horizontalLineToRelative(-11.0f) - verticalLineToRelative(8.0f) - close() - moveTo(20.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(20.5f, 6.25f) - close() - } - } - return _pipeline!! - } - -private var _pipeline: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Pivot.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Pivot.kt deleted file mode 100644 index 19e602de..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Pivot.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Pivot: ImageVector - get() { - if (_pivot != null) { - return _pivot!! - } - _pivot = fluentIcon(name = "Regular.Pivot") { - fluentPath { - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.63f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 1.5f, 0.0f) - lineTo(20.5f, 6.25f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-11.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.0f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(4.63f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(6.25f, 19.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-11.0f) - close() - moveTo(6.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - lineTo(7.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(6.0f, 7.0f) - close() - moveTo(11.5f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(11.5f, 7.0f) - close() - moveTo(6.0f, 12.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - lineTo(7.0f, 17.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(20.28f, 12.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(0.22f, -0.22f) - verticalLineToRelative(2.44f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.44f) - lineToRelative(0.22f, -0.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.06f) - lineToRelative(1.5f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-0.22f, -0.22f) - horizontalLineToRelative(2.44f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-2.44f) - lineToRelative(0.22f, 0.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-1.5f, -1.5f) - close() - } - } - return _pivot!! - } - -private var _pivot: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PlayCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PlayCircle.kt deleted file mode 100644 index 74a1260c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PlayCircle.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PlayCircle: ImageVector - get() { - if (_playCircle != null) { - return _playCircle!! - } - _playCircle = fluentIcon(name = "Regular.PlayCircle") { - fluentPath { - moveTo(10.86f, 8.15f) - arcTo(1.25f, 1.25f, 0.0f, false, false, 9.0f, 9.25f) - verticalLineToRelative(5.5f) - curveToRelative(0.0f, 0.95f, 1.02f, 1.56f, 1.86f, 1.1f) - lineToRelative(5.75f, -3.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.3f) - lineToRelative(-5.75f, -3.2f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) - close() - moveTo(3.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 17.0f, 0.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, -17.0f, 0.0f) - close() - } - } - return _playCircle!! - } - -private var _playCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PlayCircleHint.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PlayCircleHint.kt deleted file mode 100644 index f6cc1f4e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PlayCircleHint.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PlayCircleHint: ImageVector - get() { - if (_playCircleHint != null) { - return _playCircleHint!! - } - _playCircleHint = fluentIcon(name = "Regular.PlayCircleHint") { - fluentPath { - moveTo(12.0f, 2.0f) - curveToRelative(-0.67f, 0.0f, -1.32f, 0.07f, -1.95f, 0.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.29f, 1.47f) - arcToRelative(8.55f, 8.55f, 0.0f, false, true, 3.32f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.3f, -1.47f) - curveTo(13.31f, 2.07f, 12.65f, 2.0f, 12.0f, 2.0f) - close() - moveTo(7.28f, 4.93f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.84f, -1.25f) - arcToRelative(10.05f, 10.05f, 0.0f, false, false, -2.76f, 2.76f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.25f, 0.84f) - arcToRelative(8.55f, 8.55f, 0.0f, false, true, 2.35f, -2.35f) - close() - moveTo(17.56f, 3.68f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.84f, 1.25f) - arcToRelative(8.55f, 8.55f, 0.0f, false, true, 2.35f, 2.35f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.25f, -0.84f) - arcToRelative(10.05f, 10.05f, 0.0f, false, false, -2.76f, -2.76f) - close() - moveTo(21.81f, 10.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.47f, 0.29f) - arcToRelative(8.54f, 8.54f, 0.0f, false, true, 0.0f, 3.32f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.47f, 0.3f) - arcToRelative(10.05f, 10.05f, 0.0f, false, false, 0.0f, -3.91f) - close() - moveTo(3.66f, 10.34f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.47f, -0.3f) - arcToRelative(10.05f, 10.05f, 0.0f, false, false, 0.0f, 3.91f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.47f, -0.29f) - arcToRelative(8.55f, 8.55f, 0.0f, false, true, 0.0f, -3.32f) - close() - moveTo(4.93f, 16.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.25f, 0.84f) - arcToRelative(10.05f, 10.05f, 0.0f, false, false, 2.76f, 2.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.84f, -1.25f) - arcToRelative(8.55f, 8.55f, 0.0f, false, true, -2.35f, -2.35f) - close() - moveTo(20.32f, 17.56f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.25f, -0.84f) - arcToRelative(8.55f, 8.55f, 0.0f, false, true, -2.35f, 2.35f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.84f, 1.25f) - arcToRelative(10.05f, 10.05f, 0.0f, false, false, 2.76f, -2.76f) - close() - moveTo(10.34f, 20.34f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.3f, 1.47f) - arcToRelative(10.05f, 10.05f, 0.0f, false, false, 3.91f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.29f, -1.47f) - arcToRelative(8.54f, 8.54f, 0.0f, false, true, -3.32f, 0.0f) - close() - moveTo(9.0f, 9.24f) - curveToRelative(0.0f, -0.94f, 1.02f, -1.55f, 1.86f, -1.09f) - lineToRelative(5.75f, 3.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.3f) - lineToRelative(-5.75f, 3.19f) - arcTo(1.25f, 1.25f, 0.0f, false, true, 9.0f, 14.74f) - verticalLineToRelative(-5.5f) - close() - } - } - return _playCircleHint!! - } - -private var _playCircleHint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PlugConnected.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PlugConnected.kt deleted file mode 100644 index 0df94dc0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PlugConnected.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PlugConnected: ImageVector - get() { - if (_plugConnected != null) { - return _plugConnected!! - } - _plugConnected = fluentIcon(name = "Regular.PlugConnected") { - fluentPath { - moveTo(19.49f, 5.57f) - arcToRelative(5.97f, 5.97f, 0.0f, false, true, -1.9f, 8.96f) - curveToRelative(-0.64f, 0.35f, -1.42f, 0.14f, -1.94f, -0.38f) - lineToRelative(-5.8f, -5.8f) - curveToRelative(-0.52f, -0.52f, -0.73f, -1.3f, -0.38f, -1.95f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 8.96f, -1.89f) - lineToRelative(2.29f, -2.29f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-2.29f, 2.3f) - close() - moveTo(17.47f, 12.83f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, -6.3f, -6.3f) - curveToRelative(-0.27f, 0.35f, -0.19f, 0.83f, 0.12f, 1.14f) - lineToRelative(5.04f, 5.04f) - curveToRelative(0.31f, 0.3f, 0.8f, 0.39f, 1.14f, 0.12f) - close() - moveTo(3.28f, 21.78f) - lineToRelative(2.3f, -2.29f) - arcToRelative(5.97f, 5.97f, 0.0f, false, false, 8.95f, -1.9f) - curveToRelative(0.35f, -0.64f, 0.14f, -1.42f, -0.38f, -1.94f) - lineToRelative(-5.8f, -5.8f) - curveToRelative(-0.52f, -0.52f, -1.3f, -0.73f, -1.95f, -0.38f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, -1.89f, 8.96f) - lineToRelative(-2.29f, 2.29f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - close() - moveTo(7.67f, 11.29f) - lineTo(12.71f, 16.33f) - curveToRelative(0.3f, 0.31f, 0.39f, 0.8f, 0.12f, 1.14f) - arcToRelative(4.5f, 4.5f, 0.0f, true, true, -6.3f, -6.3f) - curveToRelative(0.35f, -0.27f, 0.83f, -0.19f, 1.14f, 0.12f) - close() - } - } - return _plugConnected!! - } - -private var _plugConnected: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PlugDisconnected.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PlugDisconnected.kt deleted file mode 100644 index 89ad0c1a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PlugDisconnected.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PlugDisconnected: ImageVector - get() { - if (_plugDisconnected != null) { - return _plugDisconnected!! - } - _plugDisconnected = fluentIcon(name = "Regular.PlugDisconnected") { - fluentPath { - moveTo(21.78f, 3.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineToRelative(-2.01f, 2.01f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, -5.47f, 0.46f) - lineToRelative(-1.06f, 1.07f) - curveToRelative(-0.69f, 0.69f, -0.69f, 1.8f, 0.0f, 2.48f) - lineToRelative(3.58f, 3.58f) - curveToRelative(0.69f, 0.69f, 1.8f, 0.69f, 2.48f, 0.0f) - lineToRelative(1.07f, -1.06f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, 0.46f, -5.47f) - lineToRelative(2.01f, -2.01f) - close() - moveTo(18.19f, 5.76f) - lineTo(18.22f, 5.78f) - lineTo(18.24f, 5.81f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.0f, 3.88f) - lineToRelative(-1.06f, 1.07f) - curveToRelative(-0.1f, 0.1f, -0.26f, 0.1f, -0.36f, 0.0f) - lineToRelative(-3.58f, -3.58f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, 0.0f, -0.36f) - lineToRelative(1.07f, -1.06f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 3.88f, 0.0f) - close() - moveTo(10.78f, 11.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineTo(8.0f, 11.94f) - lineToRelative(-0.47f, -0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-1.78f, 1.77f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, -0.46f, 5.47f) - lineToRelative(-2.01f, 2.01f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(2.01f, -2.01f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, 5.47f, -0.46f) - lineToRelative(1.77f, -1.78f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-0.47f, -0.47f) - lineToRelative(1.72f, -1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineTo(11.0f, 14.94f) - lineTo(9.06f, 13.0f) - lineToRelative(1.72f, -1.72f) - close() - moveTo(7.47f, 13.53f) - lineTo(10.47f, 16.53f) - lineTo(10.94f, 17.0f) - lineTo(9.69f, 18.24f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -3.88f, 0.0f) - lineToRelative(-0.05f, -0.05f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.0f, -3.88f) - lineTo(7.0f, 13.06f) - lineToRelative(0.47f, 0.47f) - close() - } - } - return _plugDisconnected!! - } - -private var _plugDisconnected: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PointScan.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PointScan.kt deleted file mode 100644 index 390c15b3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PointScan.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PointScan: ImageVector - get() { - if (_pointScan != null) { - return _pointScan!! - } - _pointScan = fluentIcon(name = "Regular.PointScan") { - fluentPath { - moveTo(10.25f, 2.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(4.8f) - arcTo(6.25f, 6.25f, 0.0f, false, true, 16.46f, 13.0f) - horizontalLineToRelative(4.79f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(16.45f, 14.5f) - arcTo(6.25f, 6.25f, 0.0f, false, true, 11.0f, 19.96f) - verticalLineToRelative(1.29f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(9.5f, 19.95f) - arcToRelative(6.25f, 6.25f, 0.0f, false, true, -5.46f, -5.45f) - lineTo(2.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(4.05f, 13.0f) - arcTo(6.25f, 6.25f, 0.0f, false, true, 9.5f, 7.54f) - lineTo(9.5f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(9.5f, 14.5f) - lineTo(5.56f, 14.5f) - arcToRelative(4.75f, 4.75f, 0.0f, false, false, 3.94f, 3.94f) - lineTo(9.5f, 14.5f) - close() - moveTo(14.94f, 14.5f) - lineTo(11.0f, 14.5f) - verticalLineToRelative(3.94f) - arcToRelative(4.75f, 4.75f, 0.0f, false, false, 3.94f, -3.94f) - close() - moveTo(9.5f, 9.06f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 5.56f, 13.0f) - lineTo(9.5f, 13.0f) - lineTo(9.5f, 9.06f) - close() - moveTo(11.0f, 9.06f) - lineTo(11.0f, 13.0f) - horizontalLineToRelative(3.94f) - arcToRelative(4.75f, 4.75f, 0.0f, false, false, -3.72f, -3.9f) - lineTo(11.0f, 9.06f) - close() - } - } - return _pointScan!! - } - -private var _pointScan: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Poll.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Poll.kt deleted file mode 100644 index e5746beb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Poll.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Poll: ImageVector - get() { - if (_poll != null) { - return _poll!! - } - _poll = fluentIcon(name = "Regular.Poll") { - fluentPath { - moveTo(11.75f, 2.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.75f) - verticalLineToRelative(14.5f) - arcToRelative(2.75f, 2.75f, 0.0f, true, true, -5.5f, 0.0f) - lineTo(9.0f, 4.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 11.75f, 2.0f) - close() - moveTo(18.75f, 7.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.75f) - verticalLineToRelative(9.5f) - arcToRelative(2.75f, 2.75f, 0.0f, true, true, -5.5f, 0.0f) - verticalLineToRelative(-9.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.75f, 7.0f) - close() - moveTo(4.75f, 12.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.75f) - verticalLineToRelative(4.5f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -5.5f, 0.0f) - verticalLineToRelative(-4.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 12.0f) - close() - moveTo(11.75f, 3.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(14.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) - lineTo(13.0f, 4.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - close() - moveTo(18.75f, 8.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(9.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - close() - moveTo(4.75f, 13.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(4.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 2.5f, 0.0f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - close() - } - } - return _poll!! - } - -private var _poll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PollHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PollHorizontal.kt deleted file mode 100644 index acf06d24..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PollHorizontal.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PollHorizontal: ImageVector - get() { - if (_pollHorizontal != null) { - return _pollHorizontal!! - } - _pollHorizontal = fluentIcon(name = "Regular.PollHorizontal") { - fluentPath { - moveTo(22.0f, 11.75f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) - lineTo(4.75f, 14.5f) - arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, -5.5f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 11.75f) - close() - moveTo(17.0f, 18.75f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) - horizontalLineToRelative(-9.5f) - arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, -5.5f) - horizontalLineToRelative(9.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 17.0f, 18.75f) - close() - moveTo(12.0f, 4.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 9.25f, 7.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, -5.5f) - horizontalLineToRelative(4.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 12.0f, 4.75f) - close() - moveTo(20.5f, 11.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(4.75f, 10.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - horizontalLineToRelative(14.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - close() - moveTo(15.5f, 18.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-9.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) - horizontalLineToRelative(9.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - close() - moveTo(10.5f, 4.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-4.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - horizontalLineToRelative(4.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - close() - } - } - return _pollHorizontal!! - } - -private var _pollHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PortHdmi.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PortHdmi.kt deleted file mode 100644 index 77ddbcf7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PortHdmi.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PortHdmi: ImageVector - get() { - if (_portHdmi != null) { - return _portHdmi!! - } - _portHdmi = fluentIcon(name = "Regular.PortHdmi") { - fluentPath { - moveTo(21.41f, 11.41f) - lineTo(18.6f, 8.6f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 17.17f, 8.0f) - lineTo(6.83f, 8.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.42f, 0.59f) - lineTo(2.6f, 11.4f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 2.0f, 12.83f) - lineTo(2.0f, 14.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, 2.0f) - horizontalLineToRelative(16.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - verticalLineToRelative(-1.17f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - close() - moveTo(20.5f, 14.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - lineTo(4.0f, 14.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - verticalLineToRelative(-1.17f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.15f, -0.36f) - lineToRelative(2.82f, -2.82f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.36f, -0.15f) - horizontalLineToRelative(10.34f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.36f, 0.15f) - lineToRelative(2.82f, 2.82f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.15f, 0.36f) - lineTo(20.5f, 14.0f) - close() - moveTo(16.25f, 11.25f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - close() - } - } - return _portHdmi!! - } - -private var _portHdmi: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PortMicroUsb.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PortMicroUsb.kt deleted file mode 100644 index b66e416b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PortMicroUsb.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PortMicroUsb: ImageVector - get() { - if (_portMicroUsb != null) { - return _portMicroUsb!! - } - _portMicroUsb = fluentIcon(name = "Regular.PortMicroUsb") { - fluentPath { - moveTo(15.17f, 10.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.36f, 0.15f) - lineToRelative(1.82f, 1.82f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.15f, 0.36f) - lineTo(17.5f, 13.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - lineTo(7.0f, 13.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - verticalLineToRelative(-0.17f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.15f, -0.36f) - lineToRelative(1.82f, -1.82f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.36f, -0.15f) - horizontalLineToRelative(6.34f) - close() - moveTo(15.17f, 9.0f) - lineTo(8.83f, 9.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.42f, 0.59f) - lineTo(5.6f, 11.4f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 5.0f, 12.83f) - lineTo(5.0f, 13.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, 2.0f) - horizontalLineToRelative(10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - verticalLineToRelative(-0.17f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) - lineTo(16.6f, 9.6f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 15.17f, 9.0f) - close() - } - } - return _portMicroUsb!! - } - -private var _portMicroUsb: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PortUsbA.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PortUsbA.kt deleted file mode 100644 index 01fe8963..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PortUsbA.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PortUsbA: ImageVector - get() { - if (_portUsbA != null) { - return _portUsbA!! - } - _portUsbA = fluentIcon(name = "Regular.PortUsbA") { - fluentPath { - moveTo(18.0f, 8.0f) - horizontalLineTo(6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, 2.0f) - horizontalLineToRelative(12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - verticalLineToRelative(-4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) - close() - moveTo(5.5f, 10.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.5f, -0.5f) - horizontalLineToRelative(12.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.5f, 0.5f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-13.0f) - verticalLineToRelative(-2.0f) - close() - } - } - return _portUsbA!! - } - -private var _portUsbA: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PortUsbC.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PortUsbC.kt deleted file mode 100644 index be97190c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PortUsbC.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PortUsbC: ImageVector - get() { - if (_portUsbC != null) { - return _portUsbC!! - } - _portUsbC = fluentIcon(name = "Regular.PortUsbC") { - fluentPath { - moveTo(16.0f, 10.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - horizontalLineTo(8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, -3.0f) - horizontalLineToRelative(8.0f) - close() - moveTo(16.0f, 9.0f) - horizontalLineTo(8.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - horizontalLineToRelative(8.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) - close() - } - } - return _portUsbC!! - } - -private var _portUsbC: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PositionBackward.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PositionBackward.kt deleted file mode 100644 index 4322d795..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PositionBackward.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PositionBackward: ImageVector - get() { - if (_positionBackward != null) { - return _positionBackward!! - } - _positionBackward = fluentIcon(name = "Regular.PositionBackward") { - fluentPath { - moveTo(6.5f, 16.5f) - lineTo(5.25f, 16.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 13.25f) - verticalLineToRelative(-8.0f) - curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) - horizontalLineToRelative(8.0f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - lineTo(16.5f, 6.5f) - horizontalLineToRelative(-1.65f) - lineToRelative(0.15f, -0.15f) - verticalLineToRelative(-1.1f) - curveToRelative(0.0f, -0.23f, -0.04f, -0.45f, -0.13f, -0.65f) - lineToRelative(-1.9f, 1.9f) - horizontalLineToRelative(-2.12f) - lineToRelative(2.92f, -2.92f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -0.52f, -0.08f) - horizontalLineToRelative(-1.28f) - lineTo(3.5f, 11.97f) - verticalLineToRelative(1.28f) - curveToRelative(0.0f, 0.18f, 0.03f, 0.36f, 0.08f, 0.52f) - lineToRelative(2.92f, -2.92f) - verticalLineToRelative(2.12f) - lineToRelative(-1.9f, 1.9f) - curveToRelative(0.2f, 0.09f, 0.42f, 0.13f, 0.65f, 0.13f) - horizontalLineToRelative(1.1f) - lineToRelative(0.15f, -0.15f) - verticalLineToRelative(1.65f) - close() - moveTo(9.85f, 3.5f) - lineTo(7.97f, 3.5f) - lineTo(3.5f, 7.97f) - verticalLineToRelative(1.88f) - lineTo(9.85f, 3.5f) - close() - moveTo(5.85f, 3.5f) - horizontalLineToRelative(-0.6f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(0.6f) - lineTo(5.85f, 3.5f) - close() - moveTo(22.0f, 18.75f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-8.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.25f, -3.25f) - verticalLineToRelative(-8.0f) - curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) - horizontalLineToRelative(8.0f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(8.0f) - close() - moveTo(18.75f, 20.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-8.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-8.0f) - curveTo(9.78f, 9.0f, 9.0f, 9.78f, 9.0f, 10.75f) - verticalLineToRelative(8.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(8.0f) - close() - } - } - return _positionBackward!! - } - -private var _positionBackward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PositionForward.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PositionForward.kt deleted file mode 100644 index b768e7aa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PositionForward.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PositionForward: ImageVector - get() { - if (_positionForward != null) { - return _positionForward!! - } - _positionForward = fluentIcon(name = "Regular.PositionForward") { - fluentPath { - moveTo(18.75f, 22.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-8.0f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - lineTo(17.5f, 7.5f) - lineTo(17.5f, 9.0f) - horizontalLineToRelative(1.25f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(8.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-8.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(9.0f, 17.5f) - lineTo(7.5f, 17.5f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(8.0f) - close() - moveTo(13.25f, 16.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-8.0f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-8.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) - verticalLineToRelative(8.0f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(8.0f) - close() - moveTo(15.0f, 13.25f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-0.78f) - lineTo(15.0f, 12.47f) - verticalLineToRelative(0.78f) - close() - moveTo(15.0f, 10.47f) - lineTo(10.47f, 15.0f) - horizontalLineToRelative(-2.0f) - lineTo(15.0f, 8.47f) - verticalLineToRelative(2.0f) - close() - moveTo(6.35f, 15.0f) - horizontalLineToRelative(-1.1f) - curveToRelative(-0.23f, 0.0f, -0.45f, -0.04f, -0.65f, -0.13f) - lineTo(14.87f, 4.6f) - curveToRelative(0.09f, 0.2f, 0.13f, 0.42f, 0.13f, 0.65f) - verticalLineToRelative(1.1f) - lineTo(6.35f, 15.0f) - close() - moveTo(3.58f, 13.77f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.08f, -0.52f) - verticalLineToRelative(-1.28f) - lineToRelative(8.47f, -8.47f) - horizontalLineToRelative(1.28f) - curveToRelative(0.18f, 0.0f, 0.36f, 0.03f, 0.52f, 0.08f) - lineTo(3.57f, 13.77f) - close() - moveTo(3.5f, 9.85f) - lineTo(3.5f, 7.97f) - lineTo(7.97f, 3.5f) - horizontalLineToRelative(1.88f) - lineTo(3.5f, 9.85f) - close() - moveTo(3.5f, 5.85f) - verticalLineToRelative(-0.6f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(0.6f) - lineTo(3.5f, 5.85f) - close() - } - } - return _positionForward!! - } - -private var _positionForward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PositionToBack.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PositionToBack.kt deleted file mode 100644 index 26133711..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PositionToBack.kt +++ /dev/null @@ -1,102 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PositionToBack: ImageVector - get() { - if (_positionToBack != null) { - return _positionToBack!! - } - _positionToBack = fluentIcon(name = "Regular.PositionToBack") { - fluentPath { - moveTo(14.0f, 16.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 16.75f, 14.0f) - horizontalLineToRelative(3.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 23.0f, 16.75f) - verticalLineToRelative(3.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 20.25f, 23.0f) - horizontalLineToRelative(-3.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 14.0f, 20.25f) - verticalLineToRelative(-3.5f) - close() - moveTo(16.75f, 15.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-3.5f) - close() - moveTo(6.0f, 11.0f) - verticalLineToRelative(3.75f) - curveTo(6.0f, 16.55f, 7.46f, 18.0f, 9.25f, 18.0f) - lineTo(13.0f, 18.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(-0.32f) - lineToRelative(0.37f, -0.37f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 3.08f, -3.08f) - lineToRelative(0.37f, -0.37f) - verticalLineToRelative(0.33f) - lineToRelative(0.25f, -0.01f) - lineTo(18.0f, 13.0f) - lineTo(18.0f, 9.25f) - curveTo(18.0f, 7.45f, 16.54f, 6.0f, 14.75f, 6.0f) - lineTo(11.0f, 6.0f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(0.56f) - lineToRelative(-0.68f, 0.68f) - arcToRelative(3.76f, 3.76f, 0.0f, false, true, -2.7f, 2.7f) - lineToRelative(-0.68f, 0.68f) - lineTo(7.5f, 11.0f) - lineToRelative(-0.25f, 0.01f) - lineTo(6.0f, 11.01f) - close() - moveTo(13.68f, 7.5f) - horizontalLineToRelative(1.07f) - curveToRelative(0.24f, 0.0f, 0.47f, 0.05f, 0.68f, 0.14f) - lineToRelative(-7.8f, 7.79f) - curveToRelative(-0.08f, -0.21f, -0.13f, -0.44f, -0.13f, -0.68f) - verticalLineToRelative(-1.07f) - lineToRelative(6.18f, -6.18f) - close() - moveTo(9.25f, 16.5f) - curveToRelative(-0.17f, 0.0f, -0.34f, -0.02f, -0.5f, -0.07f) - lineToRelative(7.68f, -7.68f) - curveToRelative(0.05f, 0.16f, 0.07f, 0.33f, 0.07f, 0.5f) - verticalLineToRelative(1.31f) - lineToRelative(-5.94f, 5.94f) - lineTo(9.25f, 16.5f) - close() - moveTo(1.0f, 3.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.75f, 1.0f) - horizontalLineToRelative(3.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 10.0f, 3.75f) - verticalLineToRelative(3.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 7.25f, 10.0f) - horizontalLineToRelative(-3.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 1.0f, 7.25f) - verticalLineToRelative(-3.5f) - close() - moveTo(3.75f, 2.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(3.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-3.5f) - close() - } - } - return _positionToBack!! - } - -private var _positionToBack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PositionToFront.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PositionToFront.kt deleted file mode 100644 index 028e0c53..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PositionToFront.kt +++ /dev/null @@ -1,101 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PositionToFront: ImageVector - get() { - if (_positionToFront != null) { - return _positionToFront!! - } - _positionToFront = fluentIcon(name = "Regular.PositionToFront") { - fluentPath { - moveTo(1.0f, 3.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.75f, 1.0f) - horizontalLineToRelative(3.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 10.0f, 3.75f) - lineTo(10.0f, 5.0f) - horizontalLineToRelative(-0.75f) - curveToRelative(-0.26f, 0.0f, -0.5f, 0.02f, -0.75f, 0.07f) - lineTo(8.5f, 3.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(1.32f) - curveToRelative(-0.05f, 0.24f, -0.07f, 0.5f, -0.07f, 0.75f) - lineTo(5.0f, 10.0f) - lineTo(3.75f, 10.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 1.0f, 7.25f) - verticalLineToRelative(-3.5f) - close() - moveTo(14.0f, 19.0f) - verticalLineToRelative(1.25f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 16.75f, 23.0f) - horizontalLineToRelative(3.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 23.0f, 20.25f) - verticalLineToRelative(-3.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 20.25f, 14.0f) - lineTo(19.0f, 14.0f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.26f, -0.02f, 0.5f, -0.07f, 0.75f) - horizontalLineToRelative(1.32f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineToRelative(-3.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - verticalLineToRelative(-1.32f) - curveToRelative(-0.24f, 0.05f, -0.5f, 0.07f, -0.75f, 0.07f) - lineTo(14.0f, 19.0f) - close() - moveTo(9.25f, 6.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 6.0f, 9.25f) - verticalLineToRelative(5.5f) - curveTo(6.0f, 16.55f, 7.46f, 18.0f, 9.25f, 18.0f) - horizontalLineToRelative(5.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-5.5f) - curveTo(18.0f, 7.45f, 16.54f, 6.0f, 14.75f, 6.0f) - horizontalLineToRelative(-5.5f) - close() - moveTo(11.56f, 7.5f) - lineTo(7.5f, 11.56f) - lineTo(7.5f, 9.68f) - lineTo(9.68f, 7.5f) - horizontalLineToRelative(1.88f) - close() - moveTo(7.5f, 13.68f) - lineToRelative(6.18f, -6.18f) - horizontalLineToRelative(1.07f) - curveToRelative(0.24f, 0.0f, 0.47f, 0.05f, 0.68f, 0.14f) - lineToRelative(-7.8f, 7.79f) - curveToRelative(-0.08f, -0.21f, -0.13f, -0.44f, -0.13f, -0.68f) - verticalLineToRelative(-1.07f) - close() - moveTo(8.75f, 16.43f) - lineTo(16.43f, 8.75f) - curveToRelative(0.05f, 0.16f, 0.07f, 0.33f, 0.07f, 0.5f) - verticalLineToRelative(1.31f) - lineToRelative(-5.94f, 5.94f) - lineTo(9.25f, 16.5f) - curveToRelative(-0.17f, 0.0f, -0.34f, -0.02f, -0.5f, -0.07f) - close() - moveTo(14.69f, 16.5f) - horizontalLineToRelative(-2.0f) - lineToRelative(3.81f, -3.82f) - verticalLineToRelative(2.07f) - lineToRelative(-0.03f, -0.03f) - lineToRelative(-1.78f, 1.78f) - close() - } - } - return _positionToFront!! - } - -private var _positionToFront: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Power.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Power.kt deleted file mode 100644 index b5e108b8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Power.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Power: ImageVector - get() { - if (_power != null) { - return _power!! - } - _power = fluentIcon(name = "Regular.Power") { - fluentPath { - moveTo(8.2f, 4.82f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.64f, 1.36f) - arcToRelative(7.51f, 7.51f, 0.0f, true, false, 6.34f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.63f, -1.35f) - arcToRelative(9.0f, 9.0f, 0.0f, true, true, -7.6f, -0.01f) - close() - moveTo(12.0f, 2.5f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.64f) - verticalLineToRelative(7.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.48f, 0.1f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-7.5f) - curveToRelative(0.0f, -0.4f, 0.33f, -0.74f, 0.75f, -0.74f) - close() - } - } - return _power!! - } - -private var _power: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Predictions.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Predictions.kt deleted file mode 100644 index aaaf340d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Predictions.kt +++ /dev/null @@ -1,88 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Predictions: ImageVector - get() { - if (_predictions != null) { - return _predictions!! - } - _predictions = fluentIcon(name = "Regular.Predictions") { - fluentPath { - moveTo(12.0f, 2.0f) - curveToRelative(1.15f, 0.0f, 2.24f, 0.29f, 3.19f, 0.8f) - curveToRelative(-0.08f, 0.45f, -0.23f, 0.76f, -0.43f, 0.96f) - curveToRelative(-0.1f, 0.11f, -0.25f, 0.2f, -0.43f, 0.28f) - arcTo(5.25f, 5.25f, 0.0f, true, false, 11.77f, 14.0f) - lineTo(12.0f, 14.0f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 4.38f, -2.35f) - curveToRelative(0.64f, 0.22f, 1.4f, 0.08f, 1.9f, -0.4f) - arcToRelative(6.76f, 6.76f, 0.0f, false, true, -1.93f, 2.67f) - lineToRelative(1.62f, 4.86f) - curveToRelative(0.26f, 0.8f, -0.08f, 1.67f, -0.81f, 2.08f) - curveToRelative(-1.37f, 0.77f, -3.1f, 1.14f, -5.16f, 1.14f) - reflectiveCurveToRelative(-3.79f, -0.37f, -5.16f, -1.14f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.8f, -2.08f) - lineToRelative(1.61f, -4.86f) - arcTo(6.74f, 6.74f, 0.0f, false, true, 12.0f, 2.0f) - close() - moveTo(15.06f, 14.8f) - lineTo(14.7f, 14.94f) - horizontalLineToRelative(-0.02f) - curveToRelative(-0.73f, 0.32f, -1.52f, 0.51f, -2.35f, 0.55f) - lineTo(12.24f, 15.49f) - lineToRelative(-0.24f, 0.01f) - horizontalLineToRelative(-0.33f) - arcToRelative(6.68f, 6.68f, 0.0f, false, true, -2.35f, -0.55f) - lineToRelative(-0.02f, -0.01f) - lineToRelative(-0.36f, -0.15f) - lineToRelative(-1.48f, 4.46f) - curveToRelative(-0.04f, 0.12f, 0.0f, 0.24f, 0.11f, 0.3f) - curveToRelative(1.13f, 0.63f, 2.6f, 0.95f, 4.43f, 0.95f) - curveToRelative(1.83f, 0.0f, 3.3f, -0.32f, 4.43f, -0.95f) - curveToRelative(0.1f, -0.06f, 0.15f, -0.18f, 0.11f, -0.3f) - lineToRelative(-1.48f, -4.46f) - close() - moveTo(11.69f, 15.5f) - lineTo(12.0f, 15.5f) - horizontalLineToRelative(-0.31f) - close() - moveTo(17.99f, 1.88f) - lineTo(18.0f, 2.0f) - curveToRelative(0.0f, 1.15f, 0.27f, 1.96f, 0.78f, 2.47f) - curveToRelative(0.47f, 0.47f, 1.2f, 0.74f, 2.21f, 0.78f) - horizontalLineToRelative(0.26f) - curveToRelative(0.96f, 0.0f, 1.0f, 1.38f, 0.12f, 1.5f) - horizontalLineToRelative(-0.12f) - curveToRelative(-1.15f, 0.0f, -1.96f, 0.27f, -2.47f, 0.78f) - curveToRelative(-0.47f, 0.47f, -0.74f, 1.2f, -0.78f, 2.21f) - lineTo(18.0f, 10.0f) - curveToRelative(0.0f, 1.0f, -1.5f, 1.0f, -1.5f, 0.0f) - curveToRelative(0.0f, -1.15f, -0.27f, -1.96f, -0.78f, -2.47f) - curveToRelative(-0.47f, -0.47f, -1.2f, -0.74f, -2.21f, -0.78f) - horizontalLineToRelative(-0.26f) - curveToRelative(-0.96f, 0.0f, -1.0f, -1.38f, -0.12f, -1.5f) - horizontalLineToRelative(0.12f) - curveToRelative(1.15f, 0.0f, 1.96f, -0.27f, 2.47f, -0.78f) - curveToRelative(0.51f, -0.51f, 0.78f, -1.32f, 0.78f, -2.47f) - curveToRelative(0.0f, -0.96f, 1.38f, -1.0f, 1.5f, -0.12f) - close() - moveTo(17.25f, 4.95f) - lineTo(17.11f, 5.15f) - arcToRelative(3.6f, 3.6f, 0.0f, false, true, -0.9f, 0.85f) - arcToRelative(3.64f, 3.64f, 0.0f, false, true, 1.04f, 1.05f) - arcTo(3.64f, 3.64f, 0.0f, false, true, 18.3f, 6.0f) - arcToRelative(3.64f, 3.64f, 0.0f, false, true, -0.9f, -0.84f) - lineToRelative(-0.15f, -0.2f) - close() - } - } - return _predictions!! - } - -private var _predictions: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Premium.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Premium.kt deleted file mode 100644 index 23f5b540..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Premium.kt +++ /dev/null @@ -1,94 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Premium: ImageVector - get() { - if (_premium != null) { - return _premium!! - } - _premium = fluentIcon(name = "Regular.Premium") { - fluentPath { - moveTo(18.0f, 3.0f) - curveToRelative(0.24f, 0.0f, 0.46f, 0.12f, 0.6f, 0.3f) - lineToRelative(0.06f, 0.1f) - lineToRelative(3.26f, 6.02f) - lineToRelative(0.04f, 0.1f) - lineToRelative(0.01f, 0.03f) - lineToRelative(0.02f, 0.1f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 0.07f, 0.0f, 0.14f, -0.02f, 0.2f) - lineToRelative(-0.05f, 0.13f) - lineToRelative(-0.03f, 0.06f) - arcToRelative(0.76f, 0.76f, 0.0f, false, true, -0.08f, 0.1f) - lineToRelative(0.06f, -0.07f) - lineToRelative(-0.02f, 0.03f) - lineToRelative(-9.25f, 10.5f) - arcToRelative(0.72f, 0.72f, 0.0f, false, true, -0.3f, 0.24f) - lineToRelative(-0.1f, 0.03f) - lineToRelative(-0.08f, 0.02f) - lineTo(12.0f, 21.0f) - horizontalLineToRelative(-0.1f) - lineToRelative(-0.12f, -0.03f) - arcToRelative(0.72f, 0.72f, 0.0f, false, true, -0.17f, -0.08f) - horizontalLineToRelative(-0.01f) - arcToRelative(0.67f, 0.67f, 0.0f, false, true, -0.13f, -0.1f) - lineToRelative(-9.3f, -10.55f) - lineToRelative(-0.02f, -0.04f) - lineToRelative(-0.04f, -0.06f) - arcToRelative(0.74f, 0.74f, 0.0f, false, true, -0.1f, -0.3f) - lineTo(2.0f, 9.75f) - verticalLineToRelative(-0.07f) - lineToRelative(0.02f, -0.08f) - lineToRelative(0.02f, -0.1f) - lineToRelative(0.02f, -0.05f) - lineToRelative(0.03f, -0.06f) - lineToRelative(3.25f, -6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.56f, -0.38f) - lineTo(6.0f, 3.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(15.0f, 10.5f) - lineTo(9.0f, 10.5f) - lineToRelative(3.0f, 7.69f) - lineToRelative(3.0f, -7.69f) - close() - moveTo(7.39f, 10.5f) - lineTo(4.4f, 10.5f) - lineToRelative(5.35f, 6.07f) - lineToRelative(-2.37f, -6.07f) - close() - moveTo(19.59f, 10.5f) - lineTo(16.6f, 10.5f) - lineToRelative(-2.37f, 6.07f) - lineToRelative(5.35f, -6.07f) - close() - moveTo(8.97f, 4.5f) - lineTo(6.44f, 4.5f) - lineTo(4.01f, 9.0f) - horizontalLineToRelative(3.52f) - lineToRelative(1.44f, -4.5f) - close() - moveTo(13.45f, 4.5f) - horizontalLineToRelative(-2.9f) - lineTo(9.1f, 9.0f) - horizontalLineToRelative(5.79f) - lineToRelative(-1.44f, -4.5f) - close() - moveTo(17.55f, 4.5f) - horizontalLineToRelative(-2.52f) - lineTo(16.47f, 9.0f) - horizontalLineToRelative(3.52f) - lineToRelative(-2.44f, -4.5f) - close() - } - } - return _premium!! - } - -private var _premium: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PremiumPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PremiumPerson.kt deleted file mode 100644 index 24824652..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PremiumPerson.kt +++ /dev/null @@ -1,104 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PremiumPerson: ImageVector - get() { - if (_premiumPerson != null) { - return _premiumPerson!! - } - _premiumPerson = fluentIcon(name = "Regular.PremiumPerson") { - fluentPath { - moveTo(18.0f, 3.0f) - curveToRelative(0.24f, 0.0f, 0.46f, 0.12f, 0.6f, 0.3f) - lineToRelative(0.06f, 0.1f) - lineToRelative(3.26f, 6.02f) - lineToRelative(0.04f, 0.1f) - lineToRelative(0.01f, 0.03f) - lineToRelative(0.02f, 0.1f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 0.07f, 0.0f, 0.14f, -0.02f, 0.2f) - lineToRelative(-0.05f, 0.13f) - lineToRelative(-0.03f, 0.06f) - arcToRelative(0.8f, 0.8f, 0.0f, false, true, -0.04f, 0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.04f, 0.05f) - lineToRelative(0.02f, -0.03f) - lineToRelative(-1.27f, 1.45f) - curveToRelative(-0.43f, -0.31f, -0.92f, -0.53f, -1.46f, -0.62f) - lineToRelative(0.49f, -0.55f) - lineTo(16.6f, 10.5f) - lineTo(12.7f, 20.52f) - curveToRelative(-0.12f, 0.3f, -0.4f, 0.48f, -0.7f, 0.48f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.74f, 0.74f, 0.0f, false, true, -0.1f, -0.03f) - horizontalLineToRelative(-0.02f) - arcToRelative(0.72f, 0.72f, 0.0f, false, true, -0.17f, -0.08f) - horizontalLineToRelative(-0.01f) - arcToRelative(0.67f, 0.67f, 0.0f, false, true, -0.13f, -0.1f) - lineToRelative(-9.3f, -10.55f) - lineToRelative(-0.02f, -0.04f) - lineToRelative(-0.04f, -0.06f) - arcToRelative(0.74f, 0.74f, 0.0f, false, true, -0.1f, -0.3f) - lineTo(2.0f, 9.75f) - verticalLineToRelative(-0.07f) - lineToRelative(0.02f, -0.08f) - lineToRelative(0.02f, -0.1f) - lineToRelative(0.02f, -0.05f) - lineToRelative(0.03f, -0.06f) - lineToRelative(3.25f, -6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.56f, -0.38f) - lineTo(6.0f, 3.0f) - horizontalLineToRelative(12.0f) - close() - moveTo(15.0f, 10.5f) - lineTo(9.0f, 10.5f) - lineToRelative(3.0f, 7.69f) - lineToRelative(3.0f, -7.69f) - close() - moveTo(7.39f, 10.5f) - lineTo(4.4f, 10.5f) - lineToRelative(5.35f, 6.07f) - lineToRelative(-2.37f, -6.07f) - close() - moveTo(8.97f, 4.5f) - lineTo(6.44f, 4.5f) - lineTo(4.01f, 9.0f) - horizontalLineToRelative(3.52f) - lineToRelative(1.44f, -4.5f) - close() - moveTo(13.45f, 4.5f) - horizontalLineToRelative(-2.9f) - lineTo(9.1f, 9.0f) - horizontalLineToRelative(5.79f) - lineToRelative(-1.44f, -4.5f) - close() - moveTo(17.55f, 4.5f) - horizontalLineToRelative(-2.52f) - lineTo(16.47f, 9.0f) - horizontalLineToRelative(3.52f) - lineToRelative(-2.44f, -4.5f) - close() - moveTo(21.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(23.0f, 19.88f) - curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) - reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _premiumPerson!! - } - -private var _premiumPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PresenceAvailable.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PresenceAvailable.kt deleted file mode 100644 index c211635d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PresenceAvailable.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PresenceAvailable: ImageVector - get() { - if (_presenceAvailable != null) { - return _presenceAvailable!! - } - _presenceAvailable = fluentIcon(name = "Regular.PresenceAvailable") { - fluentPath { - moveTo(12.0f, 0.0f) - arcToRelative(12.0f, 12.0f, 0.0f, true, false, 0.0f, 24.0f) - arcToRelative(12.0f, 12.0f, 0.0f, false, false, 0.0f, -24.0f) - close() - moveTo(3.0f, 12.0f) - arcToRelative(9.0f, 9.0f, 0.0f, true, true, 18.0f, 0.0f) - arcToRelative(9.0f, 9.0f, 0.0f, false, true, -18.0f, 0.0f) - close() - moveTo(17.06f, 8.44f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 2.12f) - lineToRelative(-5.5f, 5.5f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.12f, 0.0f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.12f, -2.12f) - lineToRelative(0.94f, 0.94f) - lineToRelative(4.44f, -4.44f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.12f, 0.0f) - close() - } - } - return _presenceAvailable!! - } - -private var _presenceAvailable: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PresenceAway.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PresenceAway.kt deleted file mode 100644 index a27971b5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PresenceAway.kt +++ /dev/null @@ -1,39 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PresenceAway: ImageVector - get() { - if (_presenceAway != null) { - return _presenceAway!! - } - _presenceAway = fluentIcon(name = "Regular.PresenceAway") { - fluentPath { - moveTo(13.0f, 11.31f) - lineTo(13.0f, 6.5f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) - lineTo(10.0f, 12.0f) - curveToRelative(0.0f, 0.44f, 0.2f, 0.85f, 0.52f, 1.14f) - lineToRelative(3.5f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.96f, -2.28f) - lineTo(13.0f, 11.31f) - close() - moveTo(0.0f, 12.0f) - arcToRelative(12.0f, 12.0f, 0.0f, true, true, 24.0f, 0.0f) - arcToRelative(12.0f, 12.0f, 0.0f, false, true, -24.0f, 0.0f) - close() - moveTo(12.0f, 3.0f) - arcToRelative(9.0f, 9.0f, 0.0f, true, false, 0.0f, 18.0f) - arcToRelative(9.0f, 9.0f, 0.0f, false, false, 0.0f, -18.0f) - close() - } - } - return _presenceAway!! - } - -private var _presenceAway: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PresenceDnd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PresenceDnd.kt deleted file mode 100644 index 3bd532c8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PresenceDnd.kt +++ /dev/null @@ -1,37 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PresenceDnd: ImageVector - get() { - if (_presenceDnd != null) { - return _presenceDnd!! - } - _presenceDnd = fluentIcon(name = "Regular.PresenceDnd") { - fluentPath { - moveTo(12.0f, 0.0f) - arcToRelative(12.0f, 12.0f, 0.0f, true, false, 0.0f, 24.0f) - arcToRelative(12.0f, 12.0f, 0.0f, false, false, 0.0f, -24.0f) - close() - moveTo(3.0f, 12.0f) - arcToRelative(9.0f, 9.0f, 0.0f, true, true, 18.0f, 0.0f) - arcToRelative(9.0f, 9.0f, 0.0f, false, true, -18.0f, 0.0f) - close() - moveTo(6.0f, 12.0f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(9.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) - horizontalLineToRelative(-9.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 6.0f, 12.0f) - close() - } - } - return _presenceDnd!! - } - -private var _presenceDnd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Presenter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Presenter.kt deleted file mode 100644 index 62ec5e70..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Presenter.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Presenter: ImageVector - get() { - if (_presenter != null) { - return _presenter!! - } - _presenter = fluentIcon(name = "Regular.Presenter") { - fluentPath { - moveTo(20.24f, 13.0f) - curveToRelative(0.71f, 0.0f, 1.03f, 0.89f, 0.47f, 1.33f) - lineTo(16.0f, 18.11f) - verticalLineToRelative(1.64f) - curveTo(16.0f, 21.0f, 14.99f, 22.0f, 13.75f, 22.0f) - horizontalLineToRelative(-3.5f) - curveTo(9.01f, 22.0f, 8.0f, 21.0f, 8.0f, 19.75f) - verticalLineToRelative(-1.64f) - lineToRelative(-4.72f, -3.78f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 3.75f, 13.0f) - horizontalLineToRelative(16.5f) - close() - moveTo(18.11f, 14.5f) - lineTo(5.89f, 14.5f) - lineToRelative(3.33f, 2.66f) - curveToRelative(0.18f, 0.15f, 0.28f, 0.36f, 0.28f, 0.59f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.23f, 0.1f, -0.44f, 0.28f, -0.59f) - lineToRelative(3.33f, -2.66f) - close() - moveTo(8.75f, 9.0f) - horizontalLineToRelative(6.5f) - curveToRelative(0.91f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) - lineTo(16.99f, 12.0f) - horizontalLineToRelative(-1.5f) - verticalLineToRelative(-1.25f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.19f, -0.24f) - lineToRelative(-0.05f, -0.01f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.24f, 0.2f) - lineToRelative(-0.01f, 0.05f) - lineTo(8.5f, 12.0f) - lineTo(7.0f, 12.0f) - verticalLineToRelative(-1.25f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) - lineTo(8.76f, 9.0f) - horizontalLineToRelative(6.5f) - horizontalLineToRelative(-6.5f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - } - } - return _presenter!! - } - -private var _presenter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PresenterOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PresenterOff.kt deleted file mode 100644 index 777b4329..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PresenterOff.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PresenterOff: ImageVector - get() { - if (_presenterOff != null) { - return _presenterOff!! - } - _presenterOff = fluentIcon(name = "Regular.PresenterOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(5.85f, 5.86f) - curveTo(7.44f, 9.4f, 7.0f, 10.02f, 7.0f, 10.75f) - lineTo(7.0f, 12.0f) - horizontalLineToRelative(1.5f) - verticalLineToRelative(-1.31f) - curveToRelative(0.03f, -0.1f, 0.13f, -0.19f, 0.25f, -0.19f) - horizontalLineToRelative(0.69f) - lineToRelative(2.5f, 2.5f) - horizontalLineToRelative(-8.2f) - curveToRelative(-0.7f, 0.0f, -1.01f, 0.89f, -0.46f, 1.33f) - lineTo(8.0f, 18.11f) - verticalLineToRelative(1.64f) - curveTo(8.0f, 21.0f, 9.0f, 22.0f, 10.25f, 22.0f) - horizontalLineToRelative(3.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-1.64f) - lineToRelative(0.58f, -0.47f) - lineToRelative(4.14f, 4.14f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(15.51f, 16.57f) - lineTo(14.78f, 17.17f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.28f, 0.58f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.42f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.23f, -0.1f, -0.44f, -0.28f, -0.59f) - lineTo(5.89f, 14.5f) - horizontalLineToRelative(7.55f) - lineToRelative(2.07f, 2.07f) - close() - moveTo(12.0f, 8.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.98f, -0.16f) - lineTo(9.16f, 5.98f) - arcTo(3.0f, 3.0f, 0.0f, true, true, 12.0f, 8.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(20.24f, 13.0f) - horizontalLineToRelative(-4.06f) - lineToRelative(2.76f, 2.76f) - lineToRelative(1.77f, -1.43f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.47f, -1.33f) - close() - moveTo(13.68f, 10.5f) - lineTo(12.18f, 9.0f) - horizontalLineToRelative(3.06f) - curveToRelative(0.92f, 0.0f, 1.68f, 0.7f, 1.75f, 1.6f) - lineTo(16.99f, 12.0f) - horizontalLineToRelative(-1.5f) - verticalLineToRelative(-1.25f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.19f, -0.24f) - lineToRelative(-0.06f, -0.01f) - horizontalLineToRelative(-1.56f) - close() - } - } - return _presenterOff!! - } - -private var _presenterOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PreviewLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PreviewLink.kt deleted file mode 100644 index 9be295fa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PreviewLink.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PreviewLink: ImageVector - get() { - if (_previewLink != null) { - return _previewLink!! - } - _previewLink = fluentIcon(name = "Regular.PreviewLink") { - fluentPath { - moveTo(4.52f, 6.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(13.46f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(5.27f, 10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-3.5f) - close() - moveTo(6.02f, 7.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(11.96f) - lineTo(17.98f, 7.0f) - lineTo(6.02f, 7.0f) - close() - moveTo(14.23f, 11.98f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-4.5f) - close() - moveTo(14.98f, 16.48f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(-3.0f) - close() - moveTo(4.52f, 13.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.98f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(5.27f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(5.27f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.98f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(5.27f, 16.0f) - close() - moveTo(2.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 3.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 21.0f) - lineTo(4.75f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 18.25f) - lineTo(2.0f, 5.75f) - close() - moveTo(4.75f, 4.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(14.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - lineTo(20.5f, 5.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(4.75f, 4.5f) - close() - } - } - return _previewLink!! - } - -private var _previewLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Previous.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Previous.kt deleted file mode 100644 index aa86e29f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Previous.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Previous: ImageVector - get() { - if (_previous != null) { - return _previous!! - } - _previous = fluentIcon(name = "Regular.Previous") { - fluentPath { - moveTo(21.0f, 4.75f) - curveToRelative(0.0f, -1.4f, -1.58f, -2.24f, -2.74f, -1.44f) - lineToRelative(-10.5f, 7.2f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, 2.87f) - lineToRelative(10.5f, 7.3f) - curveToRelative(1.15f, 0.81f, 2.74f, -0.02f, 2.74f, -1.43f) - lineTo(21.0f, 4.75f) - close() - moveTo(19.1f, 4.55f) - curveToRelative(0.17f, -0.12f, 0.4f, 0.0f, 0.4f, 0.2f) - verticalLineToRelative(14.5f) - curveToRelative(0.0f, 0.2f, -0.23f, 0.32f, -0.4f, 0.2f) - lineToRelative(-10.5f, -7.3f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, 0.01f, -0.41f) - lineToRelative(10.5f, -7.2f) - close() - moveTo(3.0f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(3.0f, 3.75f) - close() - } - } - return _previous!! - } - -private var _previous: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Print.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Print.kt deleted file mode 100644 index 6dd28c1b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Print.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Print: ImageVector - get() { - if (_print != null) { - return _print!! - } - _print = fluentIcon(name = "Regular.Print") { - fluentPath { - moveTo(15.75f, 3.0f) - curveTo(17.0f, 3.0f, 18.0f, 4.0f, 18.0f, 5.25f) - lineTo(18.0f, 6.0f) - horizontalLineToRelative(0.75f) - curveTo(20.55f, 6.0f, 22.0f, 7.46f, 22.0f, 9.25f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.24f, 2.25f) - lineTo(18.0f, 17.5f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-7.5f) - curveTo(7.01f, 21.0f, 6.0f, 20.0f, 6.0f, 18.75f) - lineTo(6.0f, 17.5f) - lineTo(4.25f, 17.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-6.0f) - curveTo(2.0f, 7.45f, 3.46f, 6.0f, 5.25f, 6.0f) - lineTo(6.0f, 6.0f) - verticalLineToRelative(-0.75f) - curveTo(6.0f, 4.01f, 7.0f, 3.0f, 8.25f, 3.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(15.75f, 13.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(7.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(18.75f, 7.5f) - lineTo(5.25f, 7.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.79f, -1.75f, 1.75f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(6.0f, 16.0f) - verticalLineToRelative(-1.75f) - curveTo(6.0f, 13.01f, 7.0f, 12.0f, 8.25f, 12.0f) - horizontalLineToRelative(7.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - lineTo(18.0f, 16.0f) - horizontalLineToRelative(1.78f) - curveToRelative(0.4f, -0.01f, 0.73f, -0.34f, 0.73f, -0.75f) - verticalLineToRelative(-6.0f) - curveToRelative(0.0f, -0.96f, -0.8f, -1.75f, -1.76f, -1.75f) - close() - moveTo(15.75f, 4.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(7.5f, 6.0f) - horizontalLineToRelative(9.0f) - verticalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - } - } - return _print!! - } - -private var _print: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PrintAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PrintAdd.kt deleted file mode 100644 index 06efba96..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PrintAdd.kt +++ /dev/null @@ -1,88 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PrintAdd: ImageVector - get() { - if (_printAdd != null) { - return _printAdd!! - } - _printAdd = fluentIcon(name = "Regular.PrintAdd") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 7.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 7.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 6.0f) - lineTo(17.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - lineTo(18.0f, 6.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 7.0f) - close() - moveTo(20.5f, 16.25f) - verticalLineToRelative(-3.98f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) - verticalLineToRelative(5.06f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.24f, 2.25f) - lineTo(18.0f, 18.5f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-7.5f) - curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) - lineTo(6.0f, 18.5f) - lineTo(4.25f, 18.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-6.0f) - curveTo(2.0f, 8.45f, 3.46f, 7.0f, 5.25f, 7.0f) - lineTo(6.0f, 7.0f) - verticalLineToRelative(-0.75f) - curveTo(6.0f, 5.01f, 7.0f, 4.0f, 8.25f, 4.0f) - horizontalLineToRelative(3.25f) - curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) - lineTo(8.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(7.5f, 7.0f) - horizontalLineToRelative(3.52f) - curveToRelative(0.04f, 0.52f, 0.14f, 1.03f, 0.3f, 1.5f) - lineTo(5.24f, 8.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.79f, -1.75f, 1.75f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(6.0f, 17.0f) - verticalLineToRelative(-1.75f) - curveTo(6.0f, 14.01f, 7.0f, 13.0f, 8.25f, 13.0f) - horizontalLineToRelative(7.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(1.78f) - curveToRelative(0.4f, -0.01f, 0.73f, -0.34f, 0.73f, -0.75f) - close() - moveTo(16.5f, 15.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(7.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-4.5f) - close() - } - } - return _printAdd!! - } - -private var _printAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Production.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Production.kt deleted file mode 100644 index 667779c4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Production.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Production: ImageVector - get() { - if (_production != null) { - return _production!! - } - _production = fluentIcon(name = "Regular.Production") { - fluentPath { - moveTo(6.25f, 3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-2.5f) - close() - moveTo(13.5f, 5.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-2.5f) - close() - moveTo(15.25f, 5.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(2.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-2.5f) - close() - moveTo(7.0f, 17.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - close() - moveTo(13.5f, 16.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - moveTo(17.0f, 17.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - close() - moveTo(2.0f, 16.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.5f, -4.5f) - horizontalLineToRelative(11.0f) - arcToRelative(4.5f, 4.5f, 0.0f, true, true, 0.0f, 9.0f) - horizontalLineToRelative(-11.0f) - arcTo(4.5f, 4.5f, 0.0f, false, true, 2.0f, 16.0f) - close() - moveTo(6.5f, 13.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - horizontalLineToRelative(11.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) - horizontalLineToRelative(-11.0f) - close() - } - } - return _production!! - } - -private var _production: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ProductionCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ProductionCheckmark.kt deleted file mode 100644 index 5e5bee11..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ProductionCheckmark.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ProductionCheckmark: ImageVector - get() { - if (_productionCheckmark != null) { - return _productionCheckmark!! - } - _productionCheckmark = fluentIcon(name = "Regular.ProductionCheckmark") { - fluentPath { - moveTo(6.25f, 3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-2.5f) - close() - moveTo(13.5f, 5.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-2.5f) - close() - moveTo(15.25f, 5.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(2.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-2.5f) - close() - moveTo(7.0f, 17.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - close() - moveTo(6.5f, 13.0f) - horizontalLineToRelative(6.31f) - arcTo(6.51f, 6.51f, 0.0f, false, true, 15.0f, 11.5f) - lineTo(6.5f, 11.5f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, 0.0f, 9.0f) - horizontalLineToRelative(5.23f) - arcToRelative(6.46f, 6.46f, 0.0f, false, true, -0.56f, -1.5f) - lineTo(6.5f, 19.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) - close() - moveTo(10.5f, 16.0f) - curveToRelative(0.0f, 0.45f, 0.2f, 0.85f, 0.51f, 1.13f) - curveToRelative(0.05f, -0.94f, 0.3f, -1.82f, 0.7f, -2.6f) - arcTo(1.5f, 1.5f, 0.0f, false, false, 10.5f, 16.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-3.65f, 3.64f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _productionCheckmark!! - } - -private var _productionCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Prohibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Prohibited.kt deleted file mode 100644 index d840b4d7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Prohibited.kt +++ /dev/null @@ -1,35 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Prohibited: ImageVector - get() { - if (_prohibited != null) { - return _prohibited!! - } - _prohibited = fluentIcon(name = "Regular.Prohibited") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(18.52f, 6.54f) - lineTo(6.54f, 18.52f) - arcTo(8.5f, 8.5f, 0.0f, false, false, 18.51f, 6.55f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, -6.52f, 13.96f) - lineTo(17.46f, 5.48f) - arcTo(8.47f, 8.47f, 0.0f, false, false, 12.0f, 3.5f) - close() - } - } - return _prohibited!! - } - -private var _prohibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ProhibitedMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ProhibitedMultiple.kt deleted file mode 100644 index 8b762b7b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ProhibitedMultiple.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ProhibitedMultiple: ImageVector - get() { - if (_prohibitedMultiple != null) { - return _prohibitedMultiple!! - } - _prohibitedMultiple = fluentIcon(name = "Regular.ProhibitedMultiple") { - fluentPath { - moveTo(2.0f, 10.75f) - arcToRelative(8.75f, 8.75f, 0.0f, true, true, 17.5f, 0.0f) - arcToRelative(8.75f, 8.75f, 0.0f, false, true, -17.5f, 0.0f) - close() - moveTo(10.75f, 3.5f) - arcToRelative(7.25f, 7.25f, 0.0f, false, false, -5.63f, 11.82f) - lineToRelative(10.2f, -10.2f) - arcToRelative(7.22f, 7.22f, 0.0f, false, false, -4.57f, -1.62f) - close() - moveTo(10.75f, 18.0f) - arcToRelative(7.25f, 7.25f, 0.0f, false, false, 5.63f, -11.82f) - lineToRelative(-10.2f, 10.2f) - arcTo(7.22f, 7.22f, 0.0f, false, false, 10.75f, 18.0f) - close() - moveTo(13.25f, 22.0f) - curveToRelative(-2.1f, 0.0f, -4.04f, -0.75f, -5.55f, -1.99f) - arcToRelative(9.74f, 9.74f, 0.0f, false, false, 4.4f, 0.4f) - arcToRelative(7.25f, 7.25f, 0.0f, false, false, 8.32f, -8.31f) - arcToRelative(9.84f, 9.84f, 0.0f, false, false, -0.4f, -4.4f) - arcTo(8.75f, 8.75f, 0.0f, false, true, 13.25f, 22.0f) - close() - } - } - return _prohibitedMultiple!! - } - -private var _prohibitedMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ProjectionScreen.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ProjectionScreen.kt deleted file mode 100644 index 2a2cbdf1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ProjectionScreen.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ProjectionScreen: ImageVector - get() { - if (_projectionScreen != null) { - return _projectionScreen!! - } - _projectionScreen = fluentIcon(name = "Regular.ProjectionScreen") { - fluentPath { - moveTo(3.5f, 3.0f) - arcTo(1.5f, 1.5f, 0.0f, false, false, 3.0f, 5.91f) - verticalLineToRelative(7.34f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 6.75f, 17.0f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - lineTo(12.75f, 17.0f) - horizontalLineToRelative(4.5f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 21.0f, 13.25f) - lineTo(21.0f, 5.91f) - arcTo(1.5f, 1.5f, 0.0f, false, false, 20.5f, 3.0f) - horizontalLineToRelative(-17.0f) - close() - moveTo(4.5f, 6.0f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(7.25f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(6.75f, 15.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - lineTo(4.5f, 6.0f) - close() - } - } - return _projectionScreen!! - } - -private var _projectionScreen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ProjectionScreenDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ProjectionScreenDismiss.kt deleted file mode 100644 index 4264f27e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ProjectionScreenDismiss.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ProjectionScreenDismiss: ImageVector - get() { - if (_projectionScreenDismiss != null) { - return _projectionScreenDismiss!! - } - _projectionScreenDismiss = fluentIcon(name = "Regular.ProjectionScreenDismiss") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 4.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineTo(18.21f, 6.5f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineTo(17.5f, 5.79f) - lineToRelative(-1.65f, -1.64f) - close() - moveTo(19.5f, 13.25f) - verticalLineToRelative(-0.56f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, 1.5f, -0.71f) - verticalLineToRelative(1.27f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 17.25f, 17.0f) - horizontalLineToRelative(-4.5f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.5f) - lineTo(11.25f, 17.0f) - horizontalLineToRelative(-4.5f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 3.0f, 13.25f) - lineTo(3.0f, 5.91f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 3.5f, 3.0f) - horizontalLineToRelative(8.52f) - curveToRelative(-0.56f, 0.88f, -0.92f, 1.9f, -1.0f, 3.0f) - lineTo(4.5f, 6.0f) - verticalLineToRelative(7.25f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(10.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - close() - } - } - return _projectionScreenDismiss!! - } - -private var _projectionScreenDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ProjectionScreenText.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ProjectionScreenText.kt deleted file mode 100644 index 2c64bc5e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ProjectionScreenText.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ProjectionScreenText: ImageVector - get() { - if (_projectionScreenText != null) { - return _projectionScreenText!! - } - _projectionScreenText = fluentIcon(name = "Regular.ProjectionScreenText") { - fluentPath { - moveTo(9.0f, 7.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.0f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 9.0f, 7.75f) - close() - moveTo(9.75f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.0f) - close() - moveTo(8.75f, 10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.5f) - close() - moveTo(2.0f, 4.5f) - curveTo(2.0f, 3.67f, 2.67f, 3.0f, 3.5f, 3.0f) - horizontalLineToRelative(17.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.5f, 2.91f) - verticalLineToRelative(7.34f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 17.25f, 17.0f) - horizontalLineToRelative(-4.5f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.5f) - lineTo(11.25f, 17.0f) - horizontalLineToRelative(-4.5f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 3.0f, 13.25f) - lineTo(3.0f, 5.91f) - curveToRelative(-0.58f, -0.2f, -1.0f, -0.76f, -1.0f, -1.41f) - close() - moveTo(19.5f, 6.0f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(7.25f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(10.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(19.5f, 6.0f) - close() - } - } - return _projectionScreenText!! - } - -private var _projectionScreenText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ProtocolHandler.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ProtocolHandler.kt deleted file mode 100644 index b28e21f4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ProtocolHandler.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ProtocolHandler: ImageVector - get() { - if (_protocolHandler != null) { - return _protocolHandler!! - } - _protocolHandler = fluentIcon(name = "Regular.ProtocolHandler") { - fluentPath { - moveToRelative(13.73f, 17.73f) - lineToRelative(-1.02f, -1.02f) - lineToRelative(1.06f, -1.06f) - lineToRelative(1.02f, 1.02f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 0.0f) - lineToRelative(3.96f, -3.96f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) - lineToRelative(-3.96f, -3.96f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, 0.0f) - lineToRelative(-1.02f, 1.02f) - lineTo(12.7f, 7.3f) - lineToRelative(1.02f, -1.02f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 3.54f, 0.0f) - lineToRelative(3.96f, 3.96f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, 3.54f) - lineToRelative(-3.96f, 3.96f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -3.54f, 0.0f) - close() - moveTo(6.73f, 6.27f) - lineTo(2.77f, 10.23f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 3.54f) - lineToRelative(3.96f, 3.96f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.54f, 0.0f) - lineToRelative(3.96f, -3.96f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, -3.54f) - lineToRelative(-3.96f, -3.96f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -3.54f, 0.0f) - close() - moveTo(3.83f, 11.29f) - lineTo(7.79f, 7.33f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 0.0f) - lineToRelative(3.96f, 3.96f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.42f) - lineToRelative(-3.96f, 3.96f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 0.0f) - lineToRelative(-3.96f, -3.96f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.42f) - close() - } - } - return _protocolHandler!! - } - -private var _protocolHandler: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Pulse.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Pulse.kt deleted file mode 100644 index 15c2eace..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Pulse.kt +++ /dev/null @@ -1,43 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Pulse: ImageVector - get() { - if (_pulse != null) { - return _pulse!! - } - _pulse = fluentIcon(name = "Regular.Pulse") { - fluentPath { - moveToRelative(8.46f, 6.8f) - lineToRelative(3.29f, 13.63f) - curveToRelative(0.17f, 0.73f, 1.2f, 0.77f, 1.44f, 0.05f) - lineToRelative(3.26f, -10.12f) - lineToRelative(0.58f, 2.1f) - curveToRelative(0.1f, 0.32f, 0.39f, 0.54f, 0.72f, 0.54f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.93f) - lineToRelative(-1.1f, -3.95f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.44f, -0.03f) - lineToRelative(-3.2f, 9.96f) - lineToRelative(-3.35f, -13.9f) - curveToRelative(-0.19f, -0.76f, -1.26f, -0.77f, -1.46f, -0.02f) - lineToRelative(-2.1f, 7.94f) - horizontalLineTo(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - curveToRelative(0.34f, 0.0f, 0.63f, -0.23f, 0.72f, -0.56f) - lineToRelative(1.5f, -5.63f) - close() - } - } - return _pulse!! - } - -private var _pulse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PulseSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PulseSquare.kt deleted file mode 100644 index 6f72ae17..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PulseSquare.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PulseSquare: ImageVector - get() { - if (_pulseSquare != null) { - return _pulseSquare!! - } - _pulseSquare = fluentIcon(name = "Regular.PulseSquare") { - fluentPath { - moveTo(18.75f, 3.0f) - curveTo(19.99f, 3.0f, 21.0f, 4.0f, 21.0f, 5.25f) - verticalLineToRelative(13.5f) - curveTo(21.0f, 20.0f, 20.0f, 21.0f, 18.75f, 21.0f) - lineTo(5.25f, 21.0f) - curveTo(4.01f, 21.0f, 3.0f, 20.0f, 3.0f, 18.75f) - lineTo(3.0f, 5.25f) - curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(13.5f) - close() - moveTo(18.75f, 4.5f) - lineTo(5.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) - lineTo(19.5f, 5.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(8.25f, 11.5f) - lineTo(9.81f, 7.95f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.08f) - lineToRelative(0.04f, 0.1f) - lineToRelative(2.39f, 5.95f) - lineToRelative(1.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.56f, -0.41f) - lineToRelative(0.11f, -0.01f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(15.71f, 13.0f) - lineToRelative(-1.54f, 3.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.32f, 0.04f) - lineToRelative(-0.05f, -0.1f) - lineToRelative(-2.33f, -5.83f) - lineToRelative(-1.04f, 2.36f) - curveToRelative(-0.1f, 0.24f, -0.32f, 0.4f, -0.57f, 0.44f) - lineToRelative(-0.11f, 0.01f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(1.6f) - lineToRelative(1.56f, -3.55f) - lineToRelative(-1.55f, 3.55f) - close() - } - } - return _pulseSquare!! - } - -private var _pulseSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PuzzleCube.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PuzzleCube.kt deleted file mode 100644 index a90718df..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PuzzleCube.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PuzzleCube: ImageVector - get() { - if (_puzzleCube != null) { - return _puzzleCube!! - } - _puzzleCube = fluentIcon(name = "Regular.PuzzleCube") { - fluentPath { - moveTo(3.0f, 8.5f) - verticalLineToRelative(9.25f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(8.5f, 3.0f) - verticalLineToRelative(5.5f) - lineTo(3.0f, 8.5f) - close() - moveTo(8.5f, 10.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(4.0f) - close() - moveTo(10.0f, 14.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(15.5f, 14.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(10.0f, 15.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(15.5f, 15.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(15.5f, 19.5f) - verticalLineToRelative(-4.0f) - close() - moveTo(15.5f, 4.5f) - horizontalLineToRelative(2.25f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(19.5f, 8.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(14.0f, 8.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(4.0f) - close() - moveTo(8.5f, 15.5f) - verticalLineToRelative(4.0f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 15.5f) - horizontalLineToRelative(4.0f) - close() - } - } - return _puzzleCube!! - } - -private var _puzzleCube: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PuzzlePiece.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PuzzlePiece.kt deleted file mode 100644 index 0d6589f1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PuzzlePiece.kt +++ /dev/null @@ -1,98 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.PuzzlePiece: ImageVector - get() { - if (_puzzlePiece != null) { - return _puzzlePiece!! - } - _puzzlePiece = fluentIcon(name = "Regular.PuzzlePiece") { - fluentPath { - moveTo(13.0f, 2.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) - lineTo(16.0f, 5.0f) - horizontalLineToRelative(2.25f) - curveToRelative(0.87f, 0.0f, 1.59f, 0.63f, 1.73f, 1.46f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(3.89f) - lineTo(18.0f, 10.5f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -1.48f, 1.24f) - lineToRelative(-0.01f, 0.13f) - lineTo(16.51f, 12.0f) - curveToRelative(0.0f, 0.74f, 0.53f, 1.37f, 1.23f, 1.48f) - lineToRelative(0.13f, 0.02f) - lineTo(20.0f, 13.5f) - verticalLineToRelative(3.75f) - curveToRelative(0.0f, 0.92f, -0.7f, 1.67f, -1.6f, 1.75f) - lineTo(16.0f, 19.0f) - verticalLineToRelative(0.17f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.64f, 2.8f) - lineToRelative(-0.18f, 0.02f) - lineTo(13.0f, 21.99f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -2.81f) - lineTo(10.0f, 19.0f) - lineTo(7.75f, 19.0f) - curveToRelative(-0.87f, 0.0f, -1.59f, -0.63f, -1.73f, -1.46f) - lineToRelative(-0.01f, -0.14f) - lineToRelative(-0.01f, -0.15f) - lineTo(6.0f, 15.0f) - horizontalLineToRelative(-0.16f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.8f, -2.64f) - lineToRelative(-0.02f, -0.18f) - lineTo(3.02f, 12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.82f, -3.0f) - lineTo(6.0f, 9.0f) - lineTo(6.0f, 6.75f) - curveToRelative(0.0f, -0.87f, 0.63f, -1.59f, 1.46f, -1.73f) - lineToRelative(0.15f, -0.01f) - lineToRelative(0.14f, -0.01f) - lineTo(10.0f, 5.0f) - verticalLineToRelative(-0.17f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.64f, -2.8f) - lineToRelative(0.18f, -0.02f) - lineTo(13.0f, 2.01f) - close() - moveTo(13.0f, 3.5f) - curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.36f) - lineTo(11.5f, 6.5f) - lineTo(7.75f, 6.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.24f, 0.2f) - lineToRelative(-0.01f, 0.05f) - verticalLineToRelative(3.75f) - lineTo(6.0f, 10.5f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -0.14f, 3.0f) - lineTo(7.5f, 13.5f) - verticalLineToRelative(3.75f) - curveToRelative(0.0f, 0.12f, 0.08f, 0.22f, 0.2f, 0.25f) - horizontalLineToRelative(3.8f) - lineTo(11.5f, 19.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.14f) - lineTo(14.5f, 17.5f) - horizontalLineToRelative(3.75f) - curveToRelative(0.12f, 0.0f, 0.22f, -0.08f, 0.24f, -0.19f) - lineTo(18.49f, 15.0f) - horizontalLineToRelative(-0.69f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.8f, -2.85f) - verticalLineToRelative(-0.35f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 17.84f, 9.0f) - horizontalLineToRelative(0.67f) - lineTo(18.51f, 6.75f) - curveToRelative(0.0f, -0.1f, -0.05f, -0.18f, -0.13f, -0.22f) - lineToRelative(-0.06f, -0.02f) - lineToRelative(-0.06f, -0.01f) - lineTo(14.5f, 6.5f) - lineTo(14.5f, 5.0f) - curveToRelative(0.0f, -0.82f, -0.67f, -1.5f, -1.5f, -1.5f) - close() - } - } - return _puzzlePiece!! - } - -private var _puzzlePiece: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/QrCode.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/QrCode.kt deleted file mode 100644 index 3542b8a4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/QrCode.kt +++ /dev/null @@ -1,126 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.QrCode: ImageVector - get() { - if (_qrCode != null) { - return _qrCode!! - } - _qrCode = fluentIcon(name = "Regular.QrCode") { - fluentPath { - moveTo(8.0f, 6.0f) - lineTo(6.0f, 6.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(2.0f) - lineTo(8.0f, 6.0f) - close() - moveTo(3.0f, 5.25f) - curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(3.5f) - curveTo(9.99f, 3.0f, 11.0f, 4.0f, 11.0f, 5.25f) - verticalLineToRelative(3.5f) - curveTo(11.0f, 9.99f, 10.0f, 11.0f, 8.75f, 11.0f) - horizontalLineToRelative(-3.5f) - curveTo(4.01f, 11.0f, 3.0f, 10.0f, 3.0f, 8.75f) - verticalLineToRelative(-3.5f) - close() - moveTo(5.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.5f) - close() - moveTo(6.0f, 16.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(2.0f) - lineTo(6.0f, 18.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(3.0f, 15.25f) - curveTo(3.0f, 14.01f, 4.0f, 13.0f, 5.25f, 13.0f) - horizontalLineToRelative(3.5f) - curveTo(9.99f, 13.0f, 11.0f, 14.0f, 11.0f, 15.25f) - verticalLineToRelative(3.5f) - curveTo(11.0f, 19.99f, 10.0f, 21.0f, 8.75f, 21.0f) - horizontalLineToRelative(-3.5f) - curveTo(4.01f, 21.0f, 3.0f, 20.0f, 3.0f, 18.75f) - verticalLineToRelative(-3.5f) - close() - moveTo(5.25f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.5f) - close() - moveTo(18.0f, 6.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(2.0f) - lineTo(18.0f, 6.0f) - close() - moveTo(15.25f, 3.0f) - curveTo(14.01f, 3.0f, 13.0f, 4.0f, 13.0f, 5.25f) - verticalLineToRelative(3.5f) - curveTo(13.0f, 9.99f, 14.0f, 11.0f, 15.25f, 11.0f) - horizontalLineToRelative(3.5f) - curveTo(19.99f, 11.0f, 21.0f, 10.0f, 21.0f, 8.75f) - verticalLineToRelative(-3.5f) - curveTo(21.0f, 4.01f, 20.0f, 3.0f, 18.75f, 3.0f) - horizontalLineToRelative(-3.5f) - close() - moveTo(14.5f, 5.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-3.5f) - close() - moveTo(13.0f, 13.0f) - horizontalLineToRelative(2.75f) - verticalLineToRelative(2.75f) - lineTo(13.0f, 15.75f) - lineTo(13.0f, 13.0f) - close() - moveTo(18.25f, 15.75f) - horizontalLineToRelative(-2.5f) - verticalLineToRelative(2.5f) - lineTo(13.0f, 18.25f) - lineTo(13.0f, 21.0f) - horizontalLineToRelative(2.75f) - verticalLineToRelative(-2.75f) - horizontalLineToRelative(2.5f) - lineTo(18.25f, 21.0f) - lineTo(21.0f, 21.0f) - verticalLineToRelative(-2.75f) - horizontalLineToRelative(-2.75f) - verticalLineToRelative(-2.5f) - close() - moveTo(18.25f, 15.75f) - lineTo(18.25f, 13.0f) - lineTo(21.0f, 13.0f) - verticalLineToRelative(2.75f) - horizontalLineToRelative(-2.75f) - close() - } - } - return _qrCode!! - } - -private var _qrCode: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Question.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Question.kt deleted file mode 100644 index 9aabf609..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Question.kt +++ /dev/null @@ -1,41 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Question: ImageVector - get() { - if (_question != null) { - return _question!! - } - _question = fluentIcon(name = "Regular.Question") { - fluentPath { - moveTo(12.0f, 4.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, -5.0f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 7.0f, 0.0f) - curveToRelative(0.0f, 0.85f, -0.22f, 1.42f, -0.53f, 1.86f) - arcToRelative(5.82f, 5.82f, 0.0f, false, true, -1.44f, 1.34f) - curveToRelative(-1.0f, 0.77f, -2.28f, 1.73f, -2.28f, 3.8f) - verticalLineToRelative(0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(12.75f, 16.0f) - curveToRelative(0.0f, -1.32f, 0.71f, -1.86f, 1.79f, -2.68f) - lineToRelative(0.04f, -0.04f) - curveToRelative(0.53f, -0.4f, 1.15f, -0.88f, 1.62f, -1.56f) - arcTo(5.0f, 5.0f, 0.0f, false, false, 12.0f, 4.0f) - close() - moveTo(12.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - } - } - return _question!! - } - -private var _question: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/QuestionCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/QuestionCircle.kt deleted file mode 100644 index df396727..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/QuestionCircle.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.QuestionCircle: ImageVector - get() { - if (_questionCircle != null) { - return _questionCircle!! - } - _questionCircle = fluentIcon(name = "Regular.QuestionCircle") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(12.0f, 3.67f) - arcToRelative(8.34f, 8.34f, 0.0f, false, false, 0.0f, 16.66f) - arcToRelative(8.34f, 8.34f, 0.0f, false, false, 0.0f, -16.66f) - close() - moveTo(12.0f, 15.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(12.0f, 6.75f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.75f) - curveToRelative(0.0f, 1.01f, -0.3f, 1.57f, -1.05f, 2.36f) - lineToRelative(-0.17f, 0.17f) - curveToRelative(-0.62f, 0.62f, -0.78f, 0.89f, -0.78f, 1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - curveToRelative(0.0f, -1.01f, 0.3f, -1.57f, 1.05f, -2.36f) - lineToRelative(0.17f, -0.17f) - curveToRelative(0.62f, -0.62f, 0.78f, -0.89f, 0.78f, -1.47f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.5f, -0.13f) - verticalLineToRelative(0.13f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 12.0f, 6.75f) - close() - } - } - return _questionCircle!! - } - -private var _questionCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/QuizNew.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/QuizNew.kt deleted file mode 100644 index 48a83cfb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/QuizNew.kt +++ /dev/null @@ -1,101 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.QuizNew: ImageVector - get() { - if (_quizNew != null) { - return _quizNew!! - } - _quizNew = fluentIcon(name = "Regular.QuizNew") { - fluentPath { - moveTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(6.27f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 5.74f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(5.75f, 4.49f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(5.56f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(5.75f, 20.99f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - close() - moveTo(6.75f, 13.5f) - horizontalLineToRelative(5.63f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -0.88f, 1.5f) - lineTo(6.75f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(10.25f, 18.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(10.0f, 5.0f) - curveToRelative(0.3f, 0.0f, 0.58f, 0.18f, 0.7f, 0.46f) - lineToRelative(2.24f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.39f, 0.57f) - lineToRelative(-0.42f, -1.03f) - lineTo(8.87f, 10.5f) - lineToRelative(-0.43f, 1.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.38f, -0.56f) - lineToRelative(2.25f, -5.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 10.0f, 5.0f) - close() - moveTo(9.48f, 9.0f) - horizontalLineToRelative(1.04f) - lineTo(10.0f, 7.73f) - lineTo(9.48f, 9.0f) - close() - moveTo(15.75f, 5.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.33f, 0.75f, 0.75f) - lineTo(16.5f, 7.0f) - horizontalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(16.5f, 8.5f) - verticalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(15.0f, 8.5f) - horizontalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(15.0f, 7.0f) - lineTo(15.0f, 5.75f) - curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _quizNew!! - } - -private var _quizNew: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RadioButton.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RadioButton.kt deleted file mode 100644 index 357cd5c3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RadioButton.kt +++ /dev/null @@ -1,30 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.RadioButton: ImageVector - get() { - if (_radioButton != null) { - return _radioButton!! - } - _radioButton = fluentIcon(name = "Regular.RadioButton") { - fluentPath { - moveTo(12.0f, 22.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) - close() - moveTo(12.0f, 20.5f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 0.0f, -17.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, 0.0f, 17.0f) - close() - } - } - return _radioButton!! - } - -private var _radioButton: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RatingMature.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RatingMature.kt deleted file mode 100644 index 507a694c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RatingMature.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.RatingMature: ImageVector - get() { - if (_ratingMature != null) { - return _ratingMature!! - } - _ratingMature = fluentIcon(name = "Regular.RatingMature") { - fluentPath { - moveTo(8.83f, 8.27f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.33f, 0.48f) - verticalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) - verticalLineToRelative(-4.43f) - lineToRelative(2.42f, 2.91f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.16f, 0.0f) - lineToRelative(2.42f, -2.9f) - verticalLineToRelative(4.42f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) - verticalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.33f, -0.48f) - lineTo(12.0f, 12.07f) - lineToRelative(-3.17f, -3.8f) - close() - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineTo(6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - horizontalLineTo(6.25f) - close() - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineTo(6.25f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineTo(6.25f) - close() - } - } - return _ratingMature!! - } - -private var _ratingMature: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RatioOneToOne.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RatioOneToOne.kt deleted file mode 100644 index 6868b647..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RatioOneToOne.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.RatioOneToOne: ImageVector - get() { - if (_ratioOneToOne != null) { - return _ratioOneToOne!! - } - _ratioOneToOne = fluentIcon(name = "Regular.RatioOneToOne") { - fluentPath { - moveTo(8.5f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.17f, -0.62f) - lineToRelative(-1.5f, 1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.84f, 1.24f) - lineToRelative(0.33f, -0.22f) - verticalLineToRelative(5.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-6.5f) - close() - moveTo(17.5f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.17f, -0.62f) - lineToRelative(-1.5f, 1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.84f, 1.24f) - lineToRelative(0.33f, -0.22f) - verticalLineToRelative(5.1f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) - verticalLineToRelative(-6.5f) - close() - moveTo(13.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(12.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(5.25f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) - horizontalLineToRelative(13.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-9.5f) - curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) - lineTo(5.25f, 4.0f) - close() - moveTo(3.5f, 7.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(5.25f, 18.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-9.5f) - close() - } - } - return _ratioOneToOne!! - } - -private var _ratioOneToOne: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReOrderDotsHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReOrderDotsHorizontal.kt deleted file mode 100644 index bb40166b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReOrderDotsHorizontal.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ReOrderDotsHorizontal: ImageVector - get() { - if (_reOrderDotsHorizontal != null) { - return _reOrderDotsHorizontal!! - } - _reOrderDotsHorizontal = fluentIcon(name = "Regular.ReOrderDotsHorizontal") { - fluentPath { - moveTo(7.0f, 15.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - moveTo(7.0f, 8.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - moveTo(14.0f, 15.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - moveTo(14.0f, 8.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - moveTo(21.0f, 15.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - moveTo(21.0f, 8.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - } - } - return _reOrderDotsHorizontal!! - } - -private var _reOrderDotsHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReOrderDotsVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReOrderDotsVertical.kt deleted file mode 100644 index 716d9c9a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReOrderDotsVertical.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ReOrderDotsVertical: ImageVector - get() { - if (_reOrderDotsVertical != null) { - return _reOrderDotsVertical!! - } - _reOrderDotsVertical = fluentIcon(name = "Regular.ReOrderDotsVertical") { - fluentPath { - moveTo(15.5f, 17.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(8.5f, 17.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(15.5f, 10.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(8.5f, 10.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(15.5f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(8.5f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - } - } - return _reOrderDotsVertical!! - } - -private var _reOrderDotsVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReadAloud.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReadAloud.kt deleted file mode 100644 index 3678490d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReadAloud.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ReadAloud: ImageVector - get() { - if (_readAloud != null) { - return _readAloud!! - } - _readAloud = fluentIcon(name = "Regular.ReadAloud") { - fluentPath { - moveTo(15.86f, 2.1f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.72f, 1.3f) - arcToRelative(10.23f, 10.23f, 0.0f, false, true, 4.1f, 3.83f) - curveToRelative(0.9f, 1.53f, 1.31f, 3.35f, 1.26f, 5.46f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.04f) - curveToRelative(0.06f, -2.38f, -0.43f, -4.47f, -1.46f, -6.25f) - arcToRelative(11.72f, 11.72f, 0.0f, false, false, -4.68f, -4.39f) - close() - moveTo(15.62f, 5.7f) - arcTo(0.75f, 0.75f, 0.0f, true, false, 14.91f, 7.0f) - curveToRelative(0.72f, 0.4f, 1.3f, 0.96f, 1.73f, 1.72f) - curveToRelative(0.44f, 0.76f, 0.65f, 1.54f, 0.63f, 2.37f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.03f) - arcToRelative(5.92f, 5.92f, 0.0f, false, false, -0.83f, -3.15f) - arcToRelative(5.92f, 5.92f, 0.0f, false, false, -2.32f, -2.29f) - close() - moveTo(9.0f, 4.0f) - curveToRelative(0.3f, 0.0f, 0.58f, 0.19f, 0.7f, 0.47f) - lineToRelative(5.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.4f, 0.56f) - lineTo(12.25f, 15.0f) - horizontalLineToRelative(-6.5f) - lineToRelative(-1.8f, 4.53f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.4f, -0.56f) - lineTo(8.3f, 4.47f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 9.0f, 4.0f) - close() - moveTo(9.0f, 6.78f) - lineTo(6.34f, 13.5f) - horizontalLineToRelative(5.32f) - lineTo(9.0f, 6.78f) - close() - } - } - return _readAloud!! - } - -private var _readAloud: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReadingList.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReadingList.kt deleted file mode 100644 index 9bbc84b4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReadingList.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ReadingList: ImageVector - get() { - if (_readingList != null) { - return _readingList!! - } - _readingList = fluentIcon(name = "Regular.ReadingList") { - fluentPath { - moveTo(7.0f, 18.0f) - horizontalLineToRelative(13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(7.0f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(7.0f, 18.0f) - close() - moveTo(17.0f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(4.0f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(17.0f, 15.0f) - close() - moveTo(20.0f, 12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(7.0f, 13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(20.0f, 12.0f) - close() - moveTo(6.0f, 5.0f) - curveToRelative(1.13f, 0.0f, 2.13f, 0.69f, 2.55f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.65f) - lineToRelative(-0.04f, -0.09f) - arcTo(1.25f, 1.25f, 0.0f, true, false, 6.0f, 9.0f) - horizontalLineToRelative(11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.0f, 10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 6.0f, 5.0f) - close() - moveTo(20.0f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(11.0f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(20.0f, 6.0f) - close() - } - } - return _readingList!! - } - -private var _readingList: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReadingListAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReadingListAdd.kt deleted file mode 100644 index 92393967..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReadingListAdd.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ReadingListAdd: ImageVector - get() { - if (_readingListAdd != null) { - return _readingListAdd!! - } - _readingListAdd = fluentIcon(name = "Regular.ReadingListAdd") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(17.5f, 14.0f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) - lineToRelative(-0.01f, 0.1f) - lineTo(17.0f, 17.0f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(0.18f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) - lineToRelative(0.1f, 0.01f) - lineTo(17.0f, 18.0f) - verticalLineToRelative(2.6f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - horizontalLineToRelative(0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) - lineToRelative(0.01f, -0.1f) - lineTo(18.0f, 18.0f) - horizontalLineToRelative(2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - verticalLineToRelative(-0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) - lineToRelative(-0.1f, -0.01f) - lineTo(18.0f, 17.0f) - verticalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) - horizontalLineToRelative(-0.09f) - close() - moveTo(11.02f, 18.0f) - curveToRelative(0.04f, 0.52f, 0.14f, 1.02f, 0.3f, 1.5f) - lineTo(7.0f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(11.02f, 18.0f) - close() - moveTo(11.5f, 15.0f) - curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) - lineTo(4.0f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(7.6f) - close() - moveTo(14.04f, 12.0f) - curveToRelative(-0.64f, 0.4f, -1.2f, 0.91f, -1.66f, 1.5f) - lineTo(7.0f, 13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(7.14f) - close() - moveTo(6.0f, 5.0f) - curveToRelative(1.13f, 0.0f, 2.13f, 0.69f, 2.55f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.65f) - lineToRelative(-0.04f, -0.09f) - arcTo(1.25f, 1.25f, 0.0f, true, false, 6.0f, 9.0f) - horizontalLineToRelative(11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.0f, 10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 6.0f, 5.0f) - close() - moveTo(20.0f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(11.0f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(20.0f, 6.0f) - close() - } - } - return _readingListAdd!! - } - -private var _readingListAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReadingModeMobile.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReadingModeMobile.kt deleted file mode 100644 index c7988de6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReadingModeMobile.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ReadingModeMobile: ImageVector - get() { - if (_readingModeMobile != null) { - return _readingModeMobile!! - } - _readingModeMobile = fluentIcon(name = "Regular.ReadingModeMobile") { - fluentPath { - moveTo(17.75f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.19f, -0.93f, 2.16f, -2.1f, 2.24f) - lineTo(6.25f, 21.99f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.09f) - lineTo(4.0f, 19.75f) - lineTo(4.0f, 4.25f) - curveToRelative(0.0f, -1.19f, 0.93f, -2.16f, 2.1f, -2.24f) - horizontalLineToRelative(11.65f) - close() - moveTo(17.75f, 3.5f) - lineTo(6.25f, 3.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - horizontalLineToRelative(11.6f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.27f, 0.74f, -0.64f) - lineToRelative(0.01f, -0.1f) - lineTo(18.5f, 4.25f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - horizontalLineToRelative(-0.1f) - close() - moveTo(12.25f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(4.6f) - close() - moveTo(16.25f, 10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-8.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(8.6f) - close() - moveTo(16.25f, 7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-8.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(8.6f) - close() - } - } - return _readingModeMobile!! - } - -private var _readingModeMobile: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RealEstate.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RealEstate.kt deleted file mode 100644 index f6d9d9e4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RealEstate.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.RealEstate: ImageVector - get() { - if (_realEstate != null) { - return _realEstate!! - } - _realEstate = fluentIcon(name = "Regular.RealEstate") { - fluentPath { - moveTo(10.0f, 12.46f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.35f, -0.76f) - lineToRelative(2.82f, -2.42f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.66f, 0.0f) - lineToRelative(2.82f, 2.42f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.35f, 0.76f) - verticalLineToRelative(3.04f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - horizontalLineToRelative(-1.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - lineTo(14.5f, 14.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - lineTo(10.5f, 16.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - verticalLineToRelative(-3.04f) - close() - moveTo(7.0f, 21.03f) - verticalLineToRelative(-2.78f) - curveToRelative(0.63f, 0.47f, 1.4f, 0.75f, 2.25f, 0.75f) - horizontalLineToRelative(8.5f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 3.75f, -3.75f) - lineTo(21.5f, 7.32f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 20.0f, 4.0f) - lineTo(6.73f, 4.0f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 3.0f, 5.0f) - verticalLineToRelative(16.03f) - curveToRelative(0.0f, 0.54f, 0.43f, 0.97f, 0.97f, 0.97f) - horizontalLineToRelative(2.06f) - curveToRelative(0.54f, 0.0f, 0.97f, -0.43f, 0.97f, -0.97f) - close() - moveTo(5.0f, 4.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.49f, 0.4f) - lineToRelative(0.12f, 0.6f) - lineTo(20.0f, 5.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(5.5f, 6.5f) - verticalLineToRelative(14.0f) - horizontalLineToRelative(-1.0f) - lineTo(4.5f, 5.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - close() - moveTo(9.25f, 17.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - lineTo(7.0f, 8.0f) - horizontalLineToRelative(13.0f) - verticalLineToRelative(7.25f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-8.5f) - close() - } - } - return _realEstate!! - } - -private var _realEstate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Receipt.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Receipt.kt deleted file mode 100644 index e8ad2524..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Receipt.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Receipt: ImageVector - get() { - if (_receipt != null) { - return _receipt!! - } - _receipt = fluentIcon(name = "Regular.Receipt") { - fluentPath { - moveTo(4.0f, 6.25f) - curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) - horizontalLineToRelative(8.5f) - curveTo(15.99f, 4.0f, 17.0f, 5.0f, 17.0f, 6.25f) - lineTo(17.0f, 14.0f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-10.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 4.0f, 17.25f) - verticalLineToRelative(-11.0f) - close() - moveTo(17.0f, 15.5f) - lineTo(17.0f, 19.0f) - horizontalLineToRelative(0.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.0f, 15.5f) - horizontalLineToRelative(-2.0f) - close() - moveTo(15.5f, 19.0f) - lineTo(15.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(11.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(8.25f) - close() - moveTo(7.0f, 8.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 8.75f) - close() - moveTo(7.0f, 12.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(7.0f, 15.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _receipt!! - } - -private var _receipt: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReceiptAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReceiptAdd.kt deleted file mode 100644 index 759433cb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReceiptAdd.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ReceiptAdd: ImageVector - get() { - if (_receiptAdd != null) { - return _receiptAdd!! - } - _receiptAdd = fluentIcon(name = "Regular.ReceiptAdd") { - fluentPath { - moveTo(5.0f, 6.25f) - curveTo(5.0f, 5.01f, 6.0f, 4.0f, 7.25f, 4.0f) - horizontalLineToRelative(8.5f) - curveTo(16.99f, 4.0f, 18.0f, 5.0f, 18.0f, 6.25f) - lineTo(18.0f, 14.0f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-5.98f) - curveToRelative(0.24f, -0.47f, 0.43f, -0.97f, 0.56f, -1.5f) - horizontalLineToRelative(3.67f) - lineTo(16.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(6.5f, 11.0f) - curveToRelative(-0.52f, 0.0f, -1.02f, 0.06f, -1.5f, 0.17f) - lineTo(5.0f, 6.25f) - close() - moveTo(14.25f, 13.0f) - horizontalLineToRelative(-3.06f) - arcTo(6.51f, 6.51f, 0.0f, false, false, 9.0f, 11.5f) - horizontalLineToRelative(5.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(18.0f, 19.0f) - horizontalLineToRelative(0.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(20.0f, 15.5f) - horizontalLineToRelative(-2.0f) - lineTo(18.0f, 19.0f) - close() - moveTo(8.0f, 8.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 8.75f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(7.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(6.0f, 18.0f) - lineTo(3.5f, 18.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(6.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(7.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(7.0f, 18.0f) - close() - } - } - return _receiptAdd!! - } - -private var _receiptAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReceiptBag.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReceiptBag.kt deleted file mode 100644 index 2e797611..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReceiptBag.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ReceiptBag: ImageVector - get() { - if (_receiptBag != null) { - return _receiptBag!! - } - _receiptBag = fluentIcon(name = "Regular.ReceiptBag") { - fluentPath { - moveTo(7.25f, 4.0f) - curveTo(6.01f, 4.0f, 5.0f, 5.0f, 5.0f, 6.25f) - verticalLineToRelative(3.29f) - curveToRelative(0.26f, 0.03f, 0.51f, 0.1f, 0.75f, 0.19f) - curveToRelative(0.24f, -0.1f, 0.49f, -0.16f, 0.75f, -0.2f) - lineTo(6.5f, 6.26f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(8.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(16.5f, 19.0f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(6.75f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.5f, 14.0f) - lineTo(18.0f, 14.0f) - lineTo(18.0f, 6.25f) - curveTo(18.0f, 5.01f, 17.0f, 4.0f, 15.75f, 4.0f) - horizontalLineToRelative(-8.5f) - close() - moveTo(10.5f, 13.0f) - horizontalLineToRelative(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.09f) - curveToRelative(0.22f, 0.45f, 0.34f, 0.96f, 0.34f, 1.5f) - close() - moveTo(18.25f, 19.0f) - lineTo(18.0f, 19.0f) - verticalLineToRelative(-3.5f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(1.75f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - close() - moveTo(8.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.5f) - close() - moveTo(1.75f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.0f) - curveTo(1.0f, 21.99f, 2.0f, 23.0f, 3.25f, 23.0f) - horizontalLineToRelative(5.0f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(9.5f, 14.0f) - verticalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -3.75f, -2.17f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 2.0f, 13.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-0.25f) - close() - moveTo(7.0f, 14.0f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.35f, -0.07f, -0.68f, -0.2f, -0.98f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 8.0f, 13.0f) - verticalLineToRelative(1.0f) - lineTo(7.0f, 14.0f) - close() - moveTo(5.5f, 13.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - } - } - return _receiptBag!! - } - -private var _receiptBag: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReceiptCube.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReceiptCube.kt deleted file mode 100644 index 37145c62..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReceiptCube.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ReceiptCube: ImageVector - get() { - if (_receiptCube != null) { - return _receiptCube!! - } - _receiptCube = fluentIcon(name = "Regular.ReceiptCube") { - fluentPath { - moveTo(5.0f, 6.25f) - curveTo(5.0f, 5.01f, 6.0f, 4.0f, 7.25f, 4.0f) - horizontalLineToRelative(8.5f) - curveTo(16.99f, 4.0f, 18.0f, 5.0f, 18.0f, 6.25f) - lineTo(18.0f, 14.0f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-6.36f) - curveToRelative(0.07f, -0.24f, 0.11f, -0.49f, 0.11f, -0.75f) - lineTo(12.0f, 19.0f) - horizontalLineToRelative(4.5f) - lineTo(16.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.8f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -1.5f, 0.16f) - lineTo(5.0f, 6.25f) - close() - moveTo(14.25f, 13.0f) - horizontalLineToRelative(-3.66f) - lineToRelative(-2.43f, -1.21f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.59f, -0.29f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(18.0f, 19.0f) - horizontalLineToRelative(0.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(20.0f, 15.5f) - horizontalLineToRelative(-2.0f) - lineTo(18.0f, 19.0f) - close() - moveTo(8.0f, 8.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 8.75f) - close() - moveTo(10.17f, 13.91f) - lineTo(6.67f, 12.16f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -1.34f, 0.0f) - lineToRelative(-3.5f, 1.75f) - curveToRelative(-0.5f, 0.25f, -0.83f, 0.77f, -0.83f, 1.34f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.57f, 0.32f, 1.09f, 0.83f, 1.34f) - lineToRelative(3.5f, 1.75f) - curveToRelative(0.42f, 0.22f, 0.92f, 0.22f, 1.34f, 0.0f) - lineToRelative(3.5f, -1.75f) - curveToRelative(0.5f, -0.25f, 0.83f, -0.77f, 0.83f, -1.34f) - verticalLineToRelative(-4.5f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -0.83f, -1.34f) - close() - moveTo(2.55f, 15.28f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.67f, -0.23f) - lineTo(6.0f, 16.45f) - lineToRelative(2.78f, -1.4f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.44f, 0.9f) - lineTo(6.5f, 17.3f) - verticalLineToRelative(3.19f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - verticalLineToRelative(-3.2f) - lineToRelative(-2.72f, -1.35f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.23f, -0.67f) - close() - } - } - return _receiptCube!! - } - -private var _receiptCube: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReceiptMoney.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReceiptMoney.kt deleted file mode 100644 index 0bc96681..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReceiptMoney.kt +++ /dev/null @@ -1,100 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ReceiptMoney: ImageVector - get() { - if (_receiptMoney != null) { - return _receiptMoney!! - } - _receiptMoney = fluentIcon(name = "Regular.ReceiptMoney") { - fluentPath { - moveTo(5.0f, 6.25f) - curveTo(5.0f, 5.01f, 6.0f, 4.0f, 7.25f, 4.0f) - horizontalLineToRelative(8.5f) - curveTo(16.99f, 4.0f, 18.0f, 5.0f, 18.0f, 6.25f) - lineTo(18.0f, 14.0f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(13.0f, 20.5f) - lineTo(13.0f, 19.0f) - horizontalLineToRelative(3.5f) - lineTo(16.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(6.5f, 14.0f) - lineTo(5.0f, 14.0f) - lineTo(5.0f, 6.25f) - close() - moveTo(18.0f, 19.0f) - horizontalLineToRelative(0.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(20.0f, 15.5f) - horizontalLineToRelative(-2.0f) - lineTo(18.0f, 19.0f) - close() - moveTo(8.0f, 8.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 8.75f) - close() - moveTo(8.0f, 12.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(2.5f, 15.0f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(8.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - horizontalLineToRelative(-8.0f) - close() - moveTo(10.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - verticalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - horizontalLineToRelative(1.0f) - close() - moveTo(9.0f, 21.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - verticalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - lineTo(9.0f, 21.0f) - close() - moveTo(2.0f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - horizontalLineToRelative(1.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(2.0f, 19.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - lineTo(3.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(6.5f, 16.75f) - arcToRelative(1.75f, 1.75f, 0.0f, true, true, 0.0f, 3.5f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.0f, -3.5f) - close() - } - } - return _receiptMoney!! - } - -private var _receiptMoney: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReceiptPlay.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReceiptPlay.kt deleted file mode 100644 index d65a8fe6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReceiptPlay.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ReceiptPlay: ImageVector - get() { - if (_receiptPlay != null) { - return _receiptPlay!! - } - _receiptPlay = fluentIcon(name = "Regular.ReceiptPlay") { - fluentPath { - moveTo(5.0f, 6.25f) - curveTo(5.0f, 5.01f, 6.0f, 4.0f, 7.25f, 4.0f) - horizontalLineToRelative(8.5f) - curveTo(16.99f, 4.0f, 18.0f, 5.0f, 18.0f, 6.25f) - lineTo(18.0f, 14.0f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-5.98f) - curveToRelative(0.24f, -0.47f, 0.43f, -0.97f, 0.56f, -1.5f) - horizontalLineToRelative(3.67f) - lineTo(16.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(6.5f, 11.0f) - curveToRelative(-0.52f, 0.0f, -1.02f, 0.06f, -1.5f, 0.17f) - lineTo(5.0f, 6.25f) - close() - moveTo(14.25f, 13.0f) - horizontalLineToRelative(-3.06f) - arcTo(6.51f, 6.51f, 0.0f, false, false, 9.0f, 11.5f) - horizontalLineToRelative(5.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(18.0f, 19.0f) - horizontalLineToRelative(0.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(20.0f, 15.5f) - horizontalLineToRelative(-2.0f) - lineTo(18.0f, 19.0f) - close() - moveTo(8.0f, 8.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 8.75f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(5.0f, 19.5f) - curveToRelative(0.0f, 0.4f, 0.44f, 0.64f, 0.78f, 0.42f) - lineToRelative(3.0f, -2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.84f) - lineToRelative(-3.0f, -2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.78f, 0.42f) - verticalLineToRelative(4.0f) - close() - } - } - return _receiptPlay!! - } - -private var _receiptPlay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReceiptSparkles.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReceiptSparkles.kt deleted file mode 100644 index 9a58b2b5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ReceiptSparkles.kt +++ /dev/null @@ -1,116 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ReceiptSparkles: ImageVector - get() { - if (_receiptSparkles != null) { - return _receiptSparkles!! - } - _receiptSparkles = fluentIcon(name = "Regular.ReceiptSparkles") { - fluentPath { - moveTo(15.85f, 6.15f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, 0.69f, 1.11f) - lineToRelative(0.45f, 1.38f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 1.02f, 0.0f) - lineToRelative(0.45f, -1.38f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, 1.8f, -1.8f) - lineToRelative(1.38f, -0.44f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, -1.03f) - horizontalLineToRelative(-0.03f) - lineToRelative(-1.38f, -0.45f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.8f, -1.8f) - lineTo(18.0f, 0.36f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, -1.03f, 0.0f) - lineToRelative(-0.45f, 1.38f) - lineToRelative(-0.01f, 0.03f) - arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.76f, 1.77f) - lineToRelative(-1.38f, 0.44f) - arcToRelative(0.57f, 0.57f, 0.0f, false, false, -0.26f, 0.2f) - arcToRelative(0.51f, 0.51f, 0.0f, false, false, -0.1f, 0.34f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.1f, 0.3f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.26f, 0.19f) - lineToRelative(1.38f, 0.45f) - arcToRelative(2.83f, 2.83f, 0.0f, false, true, 0.49f, 0.21f) - arcToRelative(2.8f, 2.8f, 0.0f, false, true, 0.62f, 0.48f) - close() - moveTo(23.02f, 9.96f) - lineTo(23.78f, 10.21f) - horizontalLineToRelative(0.02f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, 0.47f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, 0.1f) - lineToRelative(-0.77f, 0.26f) - arcToRelative(1.58f, 1.58f, 0.0f, false, false, -1.0f, 1.0f) - lineToRelative(-0.24f, 0.76f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.58f, 0.0f) - lineToRelative(-0.24f, -0.77f) - arcToRelative(1.57f, 1.57f, 0.0f, false, false, -1.0f, -1.0f) - lineToRelative(-0.77f, -0.25f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, -0.46f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, -0.1f) - lineToRelative(0.77f, -0.26f) - arcToRelative(1.58f, 1.58f, 0.0f, false, false, 0.98f, -1.0f) - lineToRelative(0.25f, -0.76f) - arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.57f, 0.0f) - lineToRelative(0.25f, 0.77f) - arcToRelative(1.57f, 1.57f, 0.0f, false, false, 1.0f, 1.0f) - close() - moveTo(17.0f, 14.0f) - lineTo(17.0f, 9.94f) - curveToRelative(-0.15f, -0.05f, -0.3f, -0.12f, -0.43f, -0.21f) - curveToRelative(-0.26f, -0.2f, -0.46f, -0.46f, -0.57f, -0.77f) - lineToRelative(-0.44f, -1.38f) - lineToRelative(-0.06f, -0.16f) - lineTo(15.5f, 19.0f) - lineTo(7.25f, 19.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-11.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.1f) - arcToRelative(1.57f, 1.57f, 0.0f, false, true, -0.28f, -1.5f) - lineTo(6.24f, 4.0f) - curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) - verticalLineToRelative(11.0f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(10.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(20.5f, 14.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - horizontalLineToRelative(-3.0f) - close() - moveTo(17.25f, 19.0f) - lineTo(17.0f, 19.0f) - verticalLineToRelative(-3.5f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(1.75f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - close() - moveTo(7.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.5f) - close() - moveTo(7.75f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.5f) - close() - moveTo(7.75f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.5f) - close() - } - } - return _receiptSparkles!! - } - -private var _receiptSparkles: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Record.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Record.kt deleted file mode 100644 index ba2fcb98..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Record.kt +++ /dev/null @@ -1,34 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Record: ImageVector - get() { - if (_record != null) { - return _record!! - } - _record = fluentIcon(name = "Regular.Record") { - fluentPath { - moveTo(12.0f, 18.0f) - arcToRelative(6.0f, 6.0f, 0.0f, true, false, 0.0f, -12.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, 0.0f, 12.0f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) - close() - moveTo(3.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 17.0f, 0.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, -17.0f, 0.0f) - close() - } - } - return _record!! - } - -private var _record: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RecordStop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RecordStop.kt deleted file mode 100644 index 6e8d934b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RecordStop.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.RecordStop: ImageVector - get() { - if (_recordStop != null) { - return _recordStop!! - } - _recordStop = fluentIcon(name = "Regular.RecordStop") { - fluentPath { - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) - close() - moveTo(2.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) - close() - moveTo(8.0f, 9.5f) - curveTo(8.0f, 8.67f, 8.67f, 8.0f, 9.5f, 8.0f) - horizontalLineToRelative(5.0f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-5.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 8.0f, 14.5f) - verticalLineToRelative(-5.0f) - close() - } - } - return _recordStop!! - } - -private var _recordStop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RectangleLandscape.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RectangleLandscape.kt deleted file mode 100644 index 71ac368d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RectangleLandscape.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.RectangleLandscape: ImageVector - get() { - if (_rectangleLandscape != null) { - return _rectangleLandscape!! - } - _rectangleLandscape = fluentIcon(name = "Regular.RectangleLandscape") { - fluentPath { - moveTo(2.0f, 7.25f) - curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) - horizontalLineToRelative(13.5f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineTo(5.25f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - close() - moveTo(5.25f, 5.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineTo(5.25f) - close() - } - } - return _rectangleLandscape!! - } - -private var _rectangleLandscape: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Resize.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Resize.kt deleted file mode 100644 index d8368efe..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Resize.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Resize: ImageVector - get() { - if (_resize != null) { - return _resize!! - } - _resize = fluentIcon(name = "Regular.Resize") { - fluentPath { - moveTo(11.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-5.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) - verticalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(5.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - close() - moveTo(13.75f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-5.0f) - curveTo(22.0f, 3.45f, 20.54f, 2.0f, 18.75f, 2.0f) - horizontalLineToRelative(-5.0f) - close() - moveTo(13.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(5.0f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-5.0f) - close() - moveTo(10.25f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(5.0f) - curveTo(2.0f, 20.55f, 3.46f, 22.0f, 5.25f, 22.0f) - horizontalLineToRelative(5.0f) - close() - } - } - return _resize!! - } - -private var _resize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ResizeImage.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ResizeImage.kt deleted file mode 100644 index d3b41e65..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ResizeImage.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ResizeImage: ImageVector - get() { - if (_resizeImage != null) { - return _resizeImage!! - } - _resizeImage = fluentIcon(name = "Regular.ResizeImage") { - fluentPath { - moveTo(11.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-5.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) - verticalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(5.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - close() - moveTo(13.75f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-5.0f) - curveTo(22.0f, 3.45f, 20.54f, 2.0f, 18.75f, 2.0f) - horizontalLineToRelative(-5.0f) - close() - moveTo(13.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(5.0f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-5.0f) - close() - moveTo(4.0f, 12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.56f, 0.15f, 1.08f, 0.42f, 1.52f) - lineToRelative(3.49f, -3.49f) - curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.0f) - lineToRelative(3.5f, 3.5f) - curveToRelative(0.26f, -0.45f, 0.41f, -0.97f, 0.41f, -1.53f) - verticalLineToRelative(-5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - lineTo(4.0f, 12.0f) - close() - moveTo(4.0f, 23.0f) - curveToRelative(-0.56f, 0.0f, -1.08f, -0.15f, -1.52f, -0.42f) - lineToRelative(3.49f, -3.49f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(3.5f, 3.5f) - curveToRelative(-0.45f, 0.26f, -0.97f, 0.41f, -1.53f, 0.41f) - lineTo(4.0f, 23.0f) - close() - moveTo(9.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - close() - } - } - return _resizeImage!! - } - -private var _resizeImage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ResizeLarge.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ResizeLarge.kt deleted file mode 100644 index bf063acb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ResizeLarge.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ResizeLarge: ImageVector - get() { - if (_resizeLarge != null) { - return _resizeLarge!! - } - _resizeLarge = fluentIcon(name = "Regular.ResizeLarge") { - fluentPath { - moveTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.5f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.5f) - close() - moveTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.5f) - close() - moveTo(19.5f, 17.75f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.5f) - close() - moveTo(4.5f, 17.75f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - verticalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(1.5f) - close() - moveTo(8.25f, 6.0f) - curveTo(7.01f, 6.0f, 6.0f, 7.0f, 6.0f, 8.25f) - verticalLineToRelative(7.5f) - curveTo(6.0f, 16.99f, 7.0f, 18.0f, 8.25f, 18.0f) - horizontalLineToRelative(7.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-7.5f) - curveTo(18.0f, 7.01f, 17.0f, 6.0f, 15.75f, 6.0f) - horizontalLineToRelative(-7.5f) - close() - moveTo(7.5f, 8.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-7.5f) - close() - } - } - return _resizeLarge!! - } - -private var _resizeLarge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ResizeSmall.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ResizeSmall.kt deleted file mode 100644 index c2ffa421..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ResizeSmall.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ResizeSmall: ImageVector - get() { - if (_resizeSmall != null) { - return _resizeSmall!! - } - _resizeSmall = fluentIcon(name = "Regular.ResizeSmall") { - fluentPath { - moveTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.5f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.5f) - close() - moveTo(7.95f, 10.25f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(3.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-3.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-3.5f) - close() - moveTo(10.2f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.5f) - close() - moveTo(17.75f, 4.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.5f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.5f) - close() - moveTo(17.75f, 19.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.5f) - close() - moveTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.5f) - close() - } - } - return _resizeSmall!! - } - -private var _resizeSmall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ResizeTable.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ResizeTable.kt deleted file mode 100644 index ba709ece..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ResizeTable.kt +++ /dev/null @@ -1,121 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ResizeTable: ImageVector - get() { - if (_resizeTable != null) { - return _resizeTable!! - } - _resizeTable = fluentIcon(name = "Regular.ResizeTable") { - fluentPath { - moveTo(5.25f, 2.0f) - horizontalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(3.13f) - curveToRelative(-0.58f, 0.26f, -1.1f, 0.65f, -1.5f, 1.13f) - lineTo(2.0f, 5.25f) - curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) - close() - moveTo(15.62f, 20.5f) - curveToRelative(-0.26f, 0.58f, -0.65f, 1.1f, -1.13f, 1.5f) - horizontalLineToRelative(4.26f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-3.13f) - close() - moveTo(21.25f, 11.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-5.0f) - curveTo(22.0f, 3.45f, 20.54f, 2.0f, 18.75f, 2.0f) - horizontalLineToRelative(-5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - close() - moveTo(5.25f, 9.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 12.25f) - verticalLineToRelative(6.5f) - curveTo(2.0f, 20.55f, 3.46f, 22.0f, 5.25f, 22.0f) - horizontalLineToRelative(6.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-6.5f) - curveTo(15.0f, 10.45f, 13.54f, 9.0f, 11.75f, 9.0f) - horizontalLineToRelative(-6.5f) - close() - moveTo(3.5f, 12.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - lineTo(6.0f, 10.5f) - lineTo(6.0f, 13.0f) - lineTo(3.5f, 13.0f) - verticalLineToRelative(-0.75f) - close() - moveTo(6.0f, 14.5f) - lineTo(6.0f, 17.0f) - lineTo(3.5f, 17.0f) - verticalLineToRelative(-2.5f) - lineTo(6.0f, 14.5f) - close() - moveTo(7.5f, 17.0f) - verticalLineToRelative(-2.5f) - horizontalLineToRelative(2.0f) - lineTo(9.5f, 17.0f) - horizontalLineToRelative(-2.0f) - close() - moveTo(11.0f, 17.0f) - verticalLineToRelative(-2.5f) - horizontalLineToRelative(2.5f) - lineTo(13.5f, 17.0f) - lineTo(11.0f, 17.0f) - close() - moveTo(7.5f, 18.5f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(11.0f, 18.5f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(0.25f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(11.0f, 20.5f) - verticalLineToRelative(-2.0f) - close() - moveTo(11.0f, 10.5f) - horizontalLineToRelative(0.75f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(13.5f, 13.0f) - lineTo(11.0f, 13.0f) - verticalLineToRelative(-2.5f) - close() - moveTo(9.5f, 13.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-2.5f) - horizontalLineToRelative(2.0f) - lineTo(9.5f, 13.0f) - close() - moveTo(6.0f, 18.5f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-0.75f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-0.25f) - lineTo(6.0f, 18.5f) - close() - } - } - return _resizeTable!! - } - -private var _resizeTable: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ResizeVideo.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ResizeVideo.kt deleted file mode 100644 index 0d5dfc3f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ResizeVideo.kt +++ /dev/null @@ -1,91 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ResizeVideo: ImageVector - get() { - if (_resizeVideo != null) { - return _resizeVideo!! - } - _resizeVideo = fluentIcon(name = "Regular.ResizeVideo") { - fluentPath { - moveTo(21.25f, 13.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(5.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - horizontalLineToRelative(-4.67f) - curveToRelative(0.54f, -0.39f, 0.98f, -0.9f, 1.27f, -1.5f) - horizontalLineToRelative(3.4f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(11.75f, 9.0f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 1.8f, -1.45f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-6.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 18.75f) - verticalLineToRelative(-6.5f) - curveTo(2.0f, 10.45f, 3.46f, 9.0f, 5.25f, 9.0f) - horizontalLineToRelative(6.5f) - close() - moveTo(11.75f, 10.5f) - horizontalLineToRelative(-6.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(6.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-6.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(6.06f, 13.1f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.6f, -0.23f) - lineToRelative(0.08f, 0.03f) - lineToRelative(3.96f, 2.16f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.07f, 0.83f) - lineToRelative(-0.07f, 0.05f) - lineToRelative(-3.96f, 2.16f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.73f, -0.35f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-4.3f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.06f, -0.25f) - close() - moveTo(18.75f, 2.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 22.0f, 5.07f) - verticalLineToRelative(5.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-5.1f) - curveToRelative(0.0f, -0.92f, -0.7f, -1.67f, -1.6f, -1.74f) - lineToRelative(-0.15f, -0.01f) - horizontalLineToRelative(-5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(5.1f) - close() - moveTo(10.25f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-5.1f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - lineToRelative(-0.01f, 0.15f) - verticalLineToRelative(3.4f) - curveToRelative(-0.6f, 0.3f, -1.11f, 0.73f, -1.5f, 1.27f) - lineTo(2.0f, 5.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(5.25f, 2.0f) - horizontalLineToRelative(5.0f) - close() - } - } - return _resizeVideo!! - } - -private var _resizeVideo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Reward.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Reward.kt deleted file mode 100644 index 75af0011..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Reward.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Reward: ImageVector - get() { - if (_reward != null) { - return _reward!! - } - _reward = fluentIcon(name = "Regular.Reward") { - fluentPath { - moveTo(20.25f, 2.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(3.04f) - curveToRelative(0.0f, 1.03f, -0.57f, 1.97f, -1.48f, 2.44f) - lineToRelative(-6.28f, 3.28f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, -4.48f, 0.0f) - lineTo(3.48f, 9.23f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 6.79f) - lineTo(2.0f, 3.75f) - curveTo(2.0f, 2.78f, 2.78f, 2.0f, 3.75f, 2.0f) - horizontalLineToRelative(16.5f) - close() - moveTo(12.0f, 13.48f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) - close() - moveTo(15.5f, 3.5f) - horizontalLineToRelative(-7.0f) - verticalLineToRelative(6.66f) - lineToRelative(3.38f, 1.77f) - curveToRelative(0.08f, 0.04f, 0.16f, 0.04f, 0.24f, 0.0f) - lineToRelative(3.38f, -1.77f) - lineTo(15.5f, 3.5f) - close() - moveTo(7.0f, 3.5f) - lineTo(3.75f, 3.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(3.04f) - curveToRelative(0.0f, 0.47f, 0.26f, 0.9f, 0.67f, 1.11f) - lineTo(7.0f, 9.38f) - lineTo(7.0f, 3.5f) - close() - moveTo(20.25f, 3.5f) - lineTo(17.0f, 3.5f) - verticalLineToRelative(5.88f) - lineToRelative(2.83f, -1.48f) - curveToRelative(0.41f, -0.22f, 0.67f, -0.64f, 0.67f, -1.1f) - lineTo(20.5f, 3.74f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - } - } - return _reward!! - } - -private var _reward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Rewind.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Rewind.kt deleted file mode 100644 index ffb8b326..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Rewind.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Rewind: ImageVector - get() { - if (_rewind != null) { - return _rewind!! - } - _rewind = fluentIcon(name = "Regular.Rewind") { - fluentPath { - moveTo(12.5f, 5.5f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.47f, -1.14f) - lineToRelative(-7.41f, 6.3f) - curveToRelative(-0.82f, 0.7f, -0.82f, 1.97f, 0.0f, 2.67f) - lineToRelative(7.4f, 6.3f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 2.48f, -1.13f) - verticalLineToRelative(-4.0f) - lineToRelative(6.03f, 5.14f) - arcTo(1.5f, 1.5f, 0.0f, false, false, 21.0f, 18.5f) - verticalLineToRelative(-13.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.47f, -1.14f) - lineTo(12.5f, 9.5f) - lineTo(12.5f, 5.5f) - close() - moveTo(12.5f, 12.54f) - verticalLineToRelative(-1.08f) - lineToRelative(7.0f, -5.96f) - verticalLineToRelative(13.0f) - lineToRelative(-7.0f, -5.96f) - close() - moveTo(3.6f, 11.81f) - lineTo(11.0f, 5.5f) - lineTo(11.0f, 18.5f) - lineToRelative(-7.4f, -6.31f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, 0.0f, -0.38f) - close() - } - } - return _rewind!! - } - -private var _rewind: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Rhombus.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Rhombus.kt deleted file mode 100644 index 90175f25..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Rhombus.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Rhombus: ImageVector - get() { - if (_rhombus != null) { - return _rhombus!! - } - _rhombus = fluentIcon(name = "Regular.Rhombus") { - fluentPath { - moveTo(5.8f, 5.4f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 7.9f, 4.0f) - horizontalLineToRelative(12.85f) - curveToRelative(1.6f, 0.0f, 2.69f, 1.61f, 2.09f, 3.1f) - lineTo(18.2f, 18.6f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 16.1f, 20.0f) - lineTo(3.25f, 20.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.08f, -3.1f) - lineTo(5.8f, 5.4f) - close() - moveTo(7.9f, 5.5f) - curveToRelative(-0.31f, 0.0f, -0.59f, 0.19f, -0.7f, 0.47f) - lineToRelative(-4.64f, 11.5f) - curveToRelative(-0.2f, 0.5f, 0.16f, 1.03f, 0.7f, 1.03f) - lineTo(16.1f, 18.5f) - curveToRelative(0.3f, 0.0f, 0.58f, -0.19f, 0.7f, -0.47f) - lineToRelative(4.64f, -11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.7f, -1.03f) - lineTo(7.9f, 5.5f) - close() - } - } - return _rhombus!! - } - -private var _rhombus: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Ribbon.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Ribbon.kt deleted file mode 100644 index f8f84c2f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Ribbon.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Ribbon: ImageVector - get() { - if (_ribbon != null) { - return _ribbon!! - } - _ribbon = fluentIcon(name = "Regular.Ribbon") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, 5.0f, 11.9f) - verticalLineToRelative(7.35f) - curveToRelative(0.0f, 0.57f, -0.6f, 0.92f, -1.1f, 0.67f) - lineToRelative(-0.08f, -0.06f) - lineTo(12.0f, 19.18f) - lineToRelative(-3.82f, 2.68f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.17f, -0.5f) - verticalLineToRelative(-0.11f) - lineTo(7.0f, 13.9f) - arcTo(7.0f, 7.0f, 0.0f, false, true, 12.0f, 2.0f) - close() - moveTo(15.5f, 19.8f) - verticalLineToRelative(-4.74f) - arcToRelative(6.97f, 6.97f, 0.0f, false, true, -7.0f, 0.0f) - verticalLineToRelative(4.74f) - lineToRelative(3.07f, -2.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.76f, -0.06f) - lineToRelative(0.1f, 0.06f) - lineToRelative(3.07f, 2.16f) - verticalLineToRelative(-4.75f) - verticalLineToRelative(4.75f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, -11.0f) - close() - } - } - return _ribbon!! - } - -private var _ribbon: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RibbonAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RibbonAdd.kt deleted file mode 100644 index af26a75d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RibbonAdd.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.RibbonAdd: ImageVector - get() { - if (_ribbonAdd != null) { - return _ribbonAdd!! - } - _ribbonAdd = fluentIcon(name = "Regular.RibbonAdd") { - fluentPath { - moveTo(23.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 7.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 7.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 6.0f) - lineTo(17.0f, 3.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - lineTo(18.0f, 6.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 7.0f) - close() - moveTo(11.0f, 2.0f) - curveToRelative(0.56f, 0.0f, 1.1f, 0.07f, 1.63f, 0.2f) - curveToRelative(-0.36f, 0.4f, -0.67f, 0.85f, -0.92f, 1.35f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 3.47f, 9.03f) - curveToRelative(0.5f, 0.19f, 1.04f, 0.32f, 1.6f, 0.38f) - curveToRelative(-0.24f, 0.33f, -0.5f, 0.65f, -0.78f, 0.94f) - verticalLineToRelative(7.35f) - curveToRelative(0.0f, 0.57f, -0.6f, 0.92f, -1.1f, 0.67f) - lineToRelative(-0.08f, -0.06f) - lineTo(11.0f, 19.17f) - lineToRelative(-3.82f, 2.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.17f, -0.52f) - verticalLineToRelative(-0.1f) - lineTo(6.0f, 13.9f) - arcTo(7.0f, 7.0f, 0.0f, false, true, 11.0f, 2.0f) - close() - moveTo(14.5f, 19.8f) - verticalLineToRelative(-4.74f) - arcToRelative(6.97f, 6.97f, 0.0f, false, true, -7.0f, 0.0f) - verticalLineToRelative(4.74f) - lineToRelative(3.07f, -2.16f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.76f, -0.06f) - lineToRelative(0.1f, 0.06f) - lineToRelative(3.07f, 2.16f) - close() - } - } - return _ribbonAdd!! - } - -private var _ribbonAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RibbonOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RibbonOff.kt deleted file mode 100644 index 01195d0b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RibbonOff.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.RibbonOff: ImageVector - get() { - if (_ribbonOff != null) { - return _ribbonOff!! - } - _ribbonOff = fluentIcon(name = "Regular.RibbonOff") { - fluentPath { - moveTo(5.45f, 6.51f) - lineTo(2.22f, 3.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(18.5f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineTo(17.0f, 18.06f) - verticalLineToRelative(3.19f) - curveToRelative(0.0f, 0.57f, -0.6f, 0.92f, -1.1f, 0.67f) - lineToRelative(-0.08f, -0.06f) - lineTo(12.0f, 19.18f) - lineToRelative(-3.82f, 2.68f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.17f, -0.5f) - verticalLineToRelative(-0.11f) - lineTo(7.0f, 13.9f) - arcTo(6.98f, 6.98f, 0.0f, false, true, 5.45f, 6.5f) - close() - moveTo(15.5f, 16.56f) - lineToRelative(-1.01f, -1.01f) - arcToRelative(6.98f, 6.98f, 0.0f, false, true, -5.99f, -0.49f) - verticalLineToRelative(4.74f) - lineToRelative(3.07f, -2.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.76f, -0.06f) - lineToRelative(0.1f, 0.06f) - lineToRelative(3.07f, 2.16f) - verticalLineToRelative(-3.25f) - close() - moveTo(13.29f, 14.35f) - lineTo(6.65f, 7.7f) - arcToRelative(5.51f, 5.51f, 0.0f, false, false, 6.64f, 6.64f) - close() - moveTo(17.5f, 9.0f) - curveToRelative(0.0f, 1.47f, -0.58f, 2.81f, -1.52f, 3.8f) - lineToRelative(1.06f, 1.06f) - arcToRelative(7.0f, 7.0f, 0.0f, false, false, -9.9f, -9.9f) - lineTo(8.2f, 5.02f) - arcTo(5.5f, 5.5f, 0.0f, false, true, 17.5f, 9.0f) - close() - } - } - return _ribbonOff!! - } - -private var _ribbonOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RibbonStar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RibbonStar.kt deleted file mode 100644 index d5052b6f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RibbonStar.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.RibbonStar: ImageVector - get() { - if (_ribbonStar != null) { - return _ribbonStar!! - } - _ribbonStar = fluentIcon(name = "Regular.RibbonStar") { - fluentPath { - moveToRelative(12.23f, 5.64f) - lineToRelative(0.91f, 1.86f) - lineToRelative(2.05f, 0.29f) - curveToRelative(0.2f, 0.03f, 0.29f, 0.29f, 0.14f, 0.44f) - lineToRelative(-1.48f, 1.44f) - lineToRelative(0.35f, 2.03f) - curveToRelative(0.03f, 0.21f, -0.19f, 0.37f, -0.37f, 0.27f) - lineTo(12.0f, 11.01f) - lineToRelative(-1.83f, 0.96f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.37f, -0.27f) - lineToRelative(0.35f, -2.03f) - lineToRelative(-1.48f, -1.44f) - arcToRelative(0.26f, 0.26f, 0.0f, false, true, 0.14f, -0.44f) - lineToRelative(2.05f, -0.3f) - lineToRelative(0.91f, -1.85f) - curveToRelative(0.1f, -0.19f, 0.37f, -0.19f, 0.46f, 0.0f) - close() - moveTo(19.0f, 9.0f) - arcToRelative(7.0f, 7.0f, 0.0f, true, false, -12.0f, 4.9f) - lineTo(7.0f, 21.35f) - curveToRelative(0.08f, 0.55f, 0.71f, 0.84f, 1.18f, 0.51f) - lineTo(12.0f, 19.18f) - lineToRelative(3.82f, 2.68f) - lineToRelative(0.09f, 0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.09f, -0.67f) - lineTo(17.0f, 13.9f) - curveToRelative(1.24f, -1.26f, 2.0f, -3.0f, 2.0f, -4.9f) - close() - moveTo(15.5f, 15.06f) - verticalLineToRelative(4.75f) - lineToRelative(-3.07f, -2.16f) - lineToRelative(-0.1f, -0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.76f, 0.06f) - lineTo(8.5f, 19.8f) - verticalLineToRelative(-4.74f) - arcToRelative(6.97f, 6.97f, 0.0f, false, false, 7.0f, 0.0f) - close() - moveTo(6.5f, 9.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, -11.0f, 0.0f) - close() - } - } - return _ribbonStar!! - } - -private var _ribbonStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RoadCone.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RoadCone.kt deleted file mode 100644 index 2208d8db..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RoadCone.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.RoadCone: ImageVector - get() { - if (_roadCone != null) { - return _roadCone!! - } - _roadCone = fluentIcon(name = "Regular.RoadCone") { - fluentPath { - moveTo(11.18f, 2.0f) - curveToRelative(-0.56f, 0.0f, -1.06f, 0.38f, -1.2f, 0.93f) - lineTo(5.29f, 20.5f) - horizontalLineTo(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.54f) - lineTo(14.02f, 2.93f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.2f, -0.93f) - horizontalLineToRelative(-1.64f) - close() - moveTo(6.84f, 20.5f) - lineToRelative(0.94f, -3.5f) - horizontalLineToRelative(5.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(8.18f) - lineToRelative(0.53f, -2.0f) - horizontalLineToRelative(4.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(9.11f) - lineToRelative(2.27f, -8.5f) - horizontalLineToRelative(1.24f) - lineToRelative(4.54f, 17.0f) - horizontalLineTo(6.84f) - close() - } - } - return _roadCone!! - } - -private var _roadCone: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Rocket.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Rocket.kt deleted file mode 100644 index 5fd648dc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Rocket.kt +++ /dev/null @@ -1,107 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Rocket: ImageVector - get() { - if (_rocket != null) { - return _rocket!! - } - _rocket = fluentIcon(name = "Regular.Rocket") { - fluentPath { - moveTo(13.06f, 7.43f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 3.53f, 3.54f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -3.53f, -3.54f) - close() - moveTo(15.53f, 8.49f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.41f, 1.42f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.41f, -1.42f) - close() - moveTo(21.51f, 4.32f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -1.81f, -1.8f) - lineToRelative(-0.66f, -0.21f) - curveToRelative(-2.4f, -0.75f, -5.0f, -0.1f, -6.78f, 1.67f) - lineToRelative(-1.0f, 1.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -4.56f, 0.32f) - lineTo(5.45f, 6.55f) - curveToRelative(-0.29f, 0.29f, -0.29f, 0.76f, 0.0f, 1.06f) - lineToRelative(1.6f, 1.59f) - lineToRelative(-0.18f, 0.18f) - curveToRelative(-0.69f, 0.68f, -0.69f, 1.79f, 0.0f, 2.47f) - lineToRelative(0.5f, 0.5f) - lineToRelative(-1.4f, 0.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.16f, 1.17f) - lineToRelative(3.89f, 3.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.18f, -0.16f) - lineToRelative(0.8f, -1.4f) - lineToRelative(0.5f, 0.5f) - curveToRelative(0.68f, 0.68f, 1.78f, 0.68f, 2.47f, 0.0f) - lineToRelative(0.17f, -0.18f) - lineToRelative(1.6f, 1.6f) - curveToRelative(0.29f, 0.28f, 0.76f, 0.28f, 1.05f, 0.0f) - lineToRelative(1.25f, -1.25f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.32f, -4.57f) - lineToRelative(1.0f, -1.0f) - arcTo(6.75f, 6.75f, 0.0f, false, false, 21.72f, 5.0f) - lineToRelative(-0.21f, -0.67f) - close() - moveTo(19.25f, 3.94f) - curveToRelative(0.4f, 0.13f, 0.7f, 0.43f, 0.83f, 0.83f) - lineToRelative(0.2f, 0.66f) - curveToRelative(0.58f, 1.86f, 0.08f, 3.9f, -1.3f, 5.27f) - lineToRelative(-5.4f, 5.4f) - curveToRelative(-0.1f, 0.1f, -0.25f, 0.1f, -0.35f, 0.0f) - lineToRelative(-5.3f, -5.3f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, 0.0f, -0.36f) - lineToRelative(5.4f, -5.4f) - arcToRelative(5.25f, 5.25f, 0.0f, false, true, 5.26f, -1.3f) - lineToRelative(0.66f, 0.2f) - close() - moveTo(17.96f, 13.84f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.3f, 2.43f) - lineToRelative(-0.72f, 0.71f) - lineToRelative(-1.06f, -1.06f) - lineToRelative(2.08f, -2.08f) - close() - moveTo(7.76f, 6.36f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.43f, -0.3f) - lineTo(8.1f, 8.14f) - lineTo(7.05f, 7.08f) - lineToRelative(0.7f, -0.72f) - close() - moveTo(10.58f, 15.56f) - lineTo(10.06f, 16.46f) - lineTo(7.56f, 13.96f) - lineTo(8.46f, 13.45f) - lineTo(10.58f, 15.56f) - close() - moveTo(6.69f, 18.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineToRelative(-2.48f, 2.48f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineToRelative(2.48f, -2.48f) - close() - moveTo(4.75f, 15.4f) - curveToRelative(0.29f, 0.3f, 0.29f, 0.77f, 0.0f, 1.06f) - lineToRelative(-1.07f, 1.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(1.06f, -1.06f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.07f, 0.0f) - close() - moveTo(8.63f, 20.35f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-1.06f, 1.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineToRelative(1.06f, -1.06f) - close() - } - } - return _rocket!! - } - -private var _rocket: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RotateLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RotateLeft.kt deleted file mode 100644 index f67db900..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RotateLeft.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.RotateLeft: ImageVector - get() { - if (_rotateLeft != null) { - return _rotateLeft!! - } - _rotateLeft = fluentIcon(name = "Regular.RotateLeft") { - fluentPath { - moveTo(15.02f, 5.0f) - horizontalLineToRelative(0.26f) - curveToRelative(1.16f, 0.05f, 2.24f, 0.37f, 3.13f, 0.89f) - curveTo(19.98f, 6.79f, 21.0f, 8.29f, 21.0f, 10.0f) - curveToRelative(0.0f, 1.7f, -1.03f, 3.22f, -2.6f, 4.12f) - curveToRelative(-0.96f, 0.55f, -2.14f, 0.88f, -3.4f, 0.88f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(0.5f) - arcToRelative(5.4f, 5.4f, 0.0f, false, false, 2.59f, -0.64f) - curveToRelative(1.15f, -0.63f, 1.91f, -1.68f, 1.91f, -2.86f) - reflectiveCurveToRelative(-0.76f, -2.23f, -1.91f, -2.86f) - arcToRelative(5.36f, 5.36f, 0.0f, false, false, -2.37f, -0.64f) - lineTo(8.06f, 6.5f) - lineToRelative(1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-3.0f, -3.0f) - lineToRelative(-0.02f, -0.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.02f, -1.04f) - lineToRelative(3.0f, -3.0f) - lineToRelative(0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, 1.13f) - lineTo(8.06f, 5.0f) - horizontalLineToRelative(6.96f) - close() - moveTo(20.39f, 20.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.25f, 0.93f) - lineTo(4.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineToRelative(-9.13f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.75f, -0.44f) - lineToRelative(16.64f, 9.64f) - close() - moveTo(16.42f, 19.5f) - lineTo(4.5f, 12.6f) - verticalLineToRelative(6.9f) - horizontalLineToRelative(11.92f) - close() - } - } - return _rotateLeft!! - } - -private var _rotateLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RotateRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RotateRight.kt deleted file mode 100644 index bf246f60..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RotateRight.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.RotateRight: ImageVector - get() { - if (_rotateRight != null) { - return _rotateRight!! - } - _rotateRight = fluentIcon(name = "Regular.RotateRight") { - fluentPath { - moveTo(8.98f, 5.0f) - horizontalLineToRelative(-0.26f) - arcToRelative(6.79f, 6.79f, 0.0f, false, false, -3.13f, 0.89f) - arcTo(4.82f, 4.82f, 0.0f, false, false, 3.0f, 10.0f) - curveToRelative(0.0f, 1.7f, 1.03f, 3.22f, 2.6f, 4.12f) - curveToRelative(0.96f, 0.55f, 2.14f, 0.88f, 3.4f, 0.88f) - horizontalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(9.0f, 13.5f) - arcToRelative(5.4f, 5.4f, 0.0f, false, true, -2.59f, -0.64f) - curveTo(5.26f, 12.23f, 4.5f, 11.18f, 4.5f, 10.0f) - reflectiveCurveToRelative(0.76f, -2.23f, 1.91f, -2.86f) - curveToRelative(0.68f, -0.37f, 1.49f, -0.6f, 2.37f, -0.64f) - horizontalLineToRelative(7.16f) - lineToRelative(-1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) - lineToRelative(0.08f, -0.07f) - lineToRelative(3.0f, -3.0f) - lineToRelative(0.02f, -0.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.02f, -1.04f) - lineToRelative(-3.0f, -3.0f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 1.13f) - lineTo(15.94f, 5.0f) - lineTo(8.98f, 5.0f) - close() - moveTo(3.61f, 20.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.25f, 0.93f) - lineTo(20.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineToRelative(-9.13f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.75f, -0.44f) - lineTo(3.6f, 20.07f) - close() - moveTo(7.58f, 19.5f) - lineTo(19.5f, 12.6f) - verticalLineToRelative(6.9f) - lineTo(7.58f, 19.5f) - close() - } - } - return _rotateRight!! - } - -private var _rotateRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Router.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Router.kt deleted file mode 100644 index 4c239d26..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Router.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Router: ImageVector - get() { - if (_router != null) { - return _router!! - } - _router = fluentIcon(name = "Regular.Router") { - fluentPath { - moveTo(12.0f, 3.5f) - arcTo(7.5f, 7.5f, 0.0f, false, false, 4.5f, 11.0f) - verticalLineToRelative(0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(3.0f, 11.0f) - arcToRelative(9.0f, 9.0f, 0.0f, false, true, 18.0f, 0.0f) - verticalLineToRelative(0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(19.5f, 11.0f) - arcTo(7.5f, 7.5f, 0.0f, false, false, 12.0f, 3.5f) - close() - moveTo(12.0f, 6.5f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 7.5f, 11.0f) - verticalLineToRelative(0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(6.0f, 11.0f) - arcToRelative(6.0f, 6.0f, 0.0f, true, true, 12.0f, 0.0f) - verticalLineToRelative(0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(16.5f, 11.0f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 6.5f) - close() - moveTo(12.0f, 8.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -0.75f, 5.9f) - lineTo(11.25f, 16.0f) - lineTo(6.0f, 16.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - horizontalLineToRelative(12.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) - horizontalLineToRelative(-5.25f) - verticalLineToRelative(-2.1f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 12.0f, 8.0f) - close() - moveTo(10.5f, 11.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - moveTo(6.0f, 17.5f) - horizontalLineToRelative(12.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) - lineTo(6.0f, 20.5f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - } - } - return _router!! - } - -private var _router: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RowTriple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RowTriple.kt deleted file mode 100644 index 3373672f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/RowTriple.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.RowTriple: ImageVector - get() { - if (_rowTriple != null) { - return _rowTriple!! - } - _rowTriple = fluentIcon(name = "Regular.RowTriple") { - fluentPath { - moveTo(4.0f, 3.77f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(12.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(5.75f, 8.02f) - curveTo(4.78f, 8.02f, 4.0f, 7.24f, 4.0f, 6.27f) - verticalLineToRelative(-2.5f) - close() - moveTo(5.75f, 3.52f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(12.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - lineTo(5.75f, 3.52f) - close() - moveTo(4.0f, 10.77f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(12.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(5.75f, 15.02f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-2.5f) - close() - moveTo(5.75f, 10.52f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(12.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-2.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - lineTo(5.75f, 10.52f) - close() - moveTo(5.75f, 16.02f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(12.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(5.75f, 16.02f) - close() - moveTo(5.5f, 17.77f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(12.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - lineTo(5.75f, 20.52f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-2.5f) - close() - } - } - return _rowTriple!! - } - -private var _rowTriple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Rss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Rss.kt deleted file mode 100644 index 2413548e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Rss.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Rss: ImageVector - get() { - if (_rss != null) { - return _rss!! - } - _rss = fluentIcon(name = "Regular.Rss") { - fluentPath { - moveTo(6.75f, 7.5f) - arcTo(0.74f, 0.74f, 0.0f, false, true, 6.0f, 6.78f) - verticalLineToRelative(-0.06f) - curveToRelative(0.0f, -0.39f, 0.3f, -0.72f, 0.7f, -0.72f) - horizontalLineToRelative(0.05f) - curveTo(12.96f, 6.0f, 18.0f, 11.04f, 18.0f, 17.25f) - verticalLineToRelative(0.05f) - curveToRelative(0.0f, 0.4f, -0.33f, 0.7f, -0.72f, 0.7f) - horizontalLineToRelative(-0.06f) - arcToRelative(0.74f, 0.74f, 0.0f, false, true, -0.72f, -0.75f) - arcTo(9.75f, 9.75f, 0.0f, false, false, 6.75f, 7.5f) - close() - } - fluentPath { - moveTo(13.3f, 18.0f) - arcToRelative(0.69f, 0.69f, 0.0f, false, false, 0.7f, -0.75f) - arcTo(7.25f, 7.25f, 0.0f, false, false, 6.67f, 10.0f) - arcToRelative(0.69f, 0.69f, 0.0f, false, false, -0.67f, 0.7f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 0.4f, 0.35f, 0.7f, 0.75f, 0.7f) - arcToRelative(5.75f, 5.75f, 0.0f, false, true, 5.75f, 5.75f) - curveToRelative(0.0f, 0.4f, 0.3f, 0.75f, 0.7f, 0.75f) - horizontalLineToRelative(0.1f) - close() - } - fluentPath { - moveTo(9.0f, 16.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - } - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineTo(6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - horizontalLineTo(6.25f) - close() - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineTo(6.25f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineTo(6.25f) - close() - } - } - return _rss!! - } - -private var _rss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Ruler.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Ruler.kt deleted file mode 100644 index 6e678396..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Ruler.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Ruler: ImageVector - get() { - if (_ruler != null) { - return _ruler!! - } - _ruler = fluentIcon(name = "Regular.Ruler") { - fluentPath { - moveTo(9.25f, 2.0f) - curveTo(8.01f, 2.0f, 7.0f, 3.0f, 7.0f, 4.25f) - verticalLineToRelative(15.5f) - curveTo(7.0f, 20.99f, 8.0f, 22.0f, 9.25f, 22.0f) - horizontalLineToRelative(5.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineTo(4.25f) - curveTo(17.0f, 3.01f, 16.0f, 2.0f, 14.75f, 2.0f) - horizontalLineToRelative(-5.5f) - close() - moveTo(8.5f, 19.0f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(8.5f) - verticalLineTo(16.0f) - horizontalLineToRelative(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(8.5f) - verticalLineToRelative(-1.75f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(8.5f) - verticalLineTo(9.5f) - horizontalLineToRelative(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(8.5f) - verticalLineTo(6.5f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(8.5f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineTo(19.0f) - close() - } - } - return _ruler!! - } - -private var _ruler: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Run.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Run.kt deleted file mode 100644 index cd0f9aec..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Run.kt +++ /dev/null @@ -1,97 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Run: ImageVector - get() { - if (_run != null) { - return _run!! - } - _run = fluentIcon(name = "Regular.Run") { - fluentPath { - moveTo(10.64f, 2.55f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.39f, 0.03f) - lineToRelative(7.23f, 2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.03f, 1.4f) - lineToRelative(-0.86f, 0.35f) - curveToRelative(-0.83f, 0.35f, -1.53f, 0.95f, -2.0f, 1.72f) - lineToRelative(-0.54f, 0.89f) - curveToRelative(0.08f, 0.55f, 0.34f, 1.25f, 0.72f, 1.97f) - curveToRelative(0.38f, 0.75f, 0.85f, 1.45f, 1.25f, 1.93f) - lineToRelative(2.38f, 1.19f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 1.52f, 2.46f) - lineTo(20.76f, 20.0f) - curveToRelative(0.0f, 0.4f, -0.34f, 0.74f, -0.75f, 0.74f) - horizontalLineToRelative(-0.84f) - curveToRelative(-3.52f, 0.0f, -7.52f, -1.17f, -10.84f, -2.95f) - curveToRelative(-3.28f, -1.76f, -6.09f, -4.2f, -6.99f, -6.86f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.05f, -0.6f) - curveToRelative(0.34f, -0.62f, 0.71f, -1.2f, 1.1f, -1.75f) - arcToRelative(9.12f, 9.12f, 0.0f, false, true, 0.91f, -1.04f) - arcToRelative(13.0f, 13.0f, 0.0f, false, false, 0.48f, -0.52f) - arcToRelative(19.24f, 19.24f, 0.0f, false, true, 3.86f, -3.25f) - arcToRelative(8.31f, 8.31f, 0.0f, false, true, 2.9f, -1.23f) - close() - moveTo(15.46f, 14.2f) - curveToRelative(-0.4f, -0.54f, -0.83f, -1.2f, -1.18f, -1.88f) - arcToRelative(8.58f, 8.58f, 0.0f, false, true, -0.85f, -2.33f) - lineToRelative(-1.28f, -0.59f) - lineToRelative(1.58f, 3.97f) - curveToRelative(0.07f, 0.18f, 0.07f, 0.38f, 0.0f, 0.56f) - lineToRelative(-0.68f, 1.61f) - lineToRelative(1.21f, 0.45f) - lineToRelative(1.2f, -1.8f) - close() - moveTo(15.75f, 16.46f) - curveToRelative(1.26f, 0.36f, 1.93f, 0.55f, 3.51f, 0.76f) - verticalLineToRelative(-0.01f) - curveToRelative(0.0f, -0.48f, -0.27f, -0.91f, -0.7f, -1.12f) - lineToRelative(-1.92f, -0.97f) - lineToRelative(-0.9f, 1.34f) - close() - moveTo(19.26f, 18.73f) - curveToRelative(-1.87f, -0.24f, -2.6f, -0.45f, -4.0f, -0.86f) - arcToRelative(142.76f, 142.76f, 0.0f, false, false, -0.96f, -0.27f) - lineToRelative(-2.5f, -0.93f) - arcToRelative(22.6f, 22.6f, 0.0f, false, true, -8.66f, -6.36f) - lineToRelative(-0.27f, 0.45f) - curveToRelative(0.83f, 2.02f, 3.14f, 4.1f, 6.17f, 5.72f) - curveToRelative(3.15f, 1.69f, 6.9f, 2.77f, 10.13f, 2.77f) - horizontalLineToRelative(0.1f) - verticalLineToRelative(-0.52f) - close() - moveTo(4.04f, 9.06f) - curveToRelative(0.6f, 0.76f, 1.57f, 1.77f, 2.94f, 2.87f) - lineToRelative(0.42f, -2.34f) - lineToRelative(-1.75f, -2.23f) - curveToRelative(-0.25f, 0.25f, -0.47f, 0.47f, -0.65f, 0.67f) - lineToRelative(-0.54f, 0.58f) - lineToRelative(-0.16f, 0.17f) - lineToRelative(-0.26f, 0.28f) - close() - moveTo(6.76f, 6.35f) - lineTo(8.8f, 8.94f) - curveToRelative(0.13f, 0.16f, 0.18f, 0.38f, 0.14f, 0.59f) - lineToRelative(-0.62f, 3.4f) - curveToRelative(1.04f, 0.75f, 1.97f, 1.33f, 3.36f, 2.02f) - lineToRelative(0.55f, -1.31f) - lineToRelative(-2.15f, -5.43f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.01f, -0.95f) - lineToRelative(2.74f, 1.27f) - lineToRelative(0.33f, -0.54f) - arcToRelative(5.75f, 5.75f, 0.0f, false, true, 1.91f, -1.92f) - lineTo(10.7f, 4.06f) - curveToRelative(-0.66f, 0.15f, -1.4f, 0.5f, -2.17f, 0.98f) - curveToRelative(-0.62f, 0.4f, -1.22f, 0.85f, -1.77f, 1.31f) - close() - } - } - return _run!! - } - -private var _run: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Sanitize.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Sanitize.kt deleted file mode 100644 index 2ea77d66..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Sanitize.kt +++ /dev/null @@ -1,133 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Sanitize: ImageVector - get() { - if (_sanitize != null) { - return _sanitize!! - } - _sanitize = fluentIcon(name = "Regular.Sanitize") { - fluentPath { - moveTo(7.94f, 4.18f) - lineTo(4.68f, 7.44f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 2.12f) - lineToRelative(3.93f, 3.92f) - curveToRelative(-0.3f, 0.45f, -0.51f, 0.97f, -0.58f, 1.55f) - lineToRelative(-4.4f, -4.4f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -4.25f) - lineToRelative(3.25f, -3.26f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 4.24f, 0.0f) - lineToRelative(3.45f, 3.45f) - curveToRelative(-0.08f, 0.05f, -0.15f, 0.12f, -0.22f, 0.18f) - arcToRelative(2.98f, 2.98f, 0.0f, false, false, -1.4f, 0.32f) - lineToRelative(-2.89f, -2.89f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.12f, 0.0f) - close() - moveTo(14.76f, 7.82f) - arcToRelative(1.82f, 1.82f, 0.0f, false, false, -0.51f, -0.07f) - curveToRelative(-1.1f, 0.0f, -1.75f, 0.9f, -1.75f, 1.75f) - verticalLineToRelative(3.67f) - curveToRelative(-0.29f, -0.1f, -0.63f, -0.17f, -1.0f, -0.17f) - curveToRelative(-1.4f, 0.0f, -2.5f, 1.03f, -2.5f, 2.5f) - curveToRelative(0.0f, 0.24f, 0.12f, 0.47f, 0.31f, 0.6f) - lineToRelative(1.72f, 1.24f) - lineToRelative(0.96f, 0.83f) - curveToRelative(0.63f, 0.56f, 1.2f, 1.19f, 1.7f, 1.87f) - lineToRelative(0.6f, 0.83f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 16.52f, 22.0f) - horizontalLineToRelative(1.64f) - curveToRelative(0.93f, 0.0f, 1.82f, -0.47f, 2.3f, -1.31f) - curveToRelative(0.3f, -0.53f, 0.68f, -1.22f, 0.98f, -1.9f) - curveToRelative(0.29f, -0.65f, 0.56f, -1.42f, 0.56f, -2.04f) - verticalLineToRelative(-6.0f) - arcToRelative(1.74f, 1.74f, 0.0f, false, false, -2.07f, -1.72f) - curveToRelative(-0.19f, -0.69f, -0.79f, -1.28f, -1.68f, -1.28f) - curveToRelative(-0.18f, 0.0f, -0.35f, 0.03f, -0.51f, 0.07f) - arcTo(1.7f, 1.7f, 0.0f, false, false, 16.25f, 7.0f) - curveToRelative(-0.68f, 0.0f, -1.2f, 0.35f, -1.49f, 0.82f) - close() - moveTo(16.43f, 8.57f) - curveToRelative(0.04f, 0.05f, 0.07f, 0.11f, 0.07f, 0.18f) - verticalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-3.8f) - curveToRelative(0.0f, -0.04f, 0.02f, -0.09f, 0.06f, -0.13f) - curveToRelative(0.04f, -0.04f, 0.1f, -0.07f, 0.19f, -0.07f) - curveToRelative(0.1f, 0.0f, 0.15f, 0.03f, 0.18f, 0.07f) - curveToRelative(0.04f, 0.05f, 0.07f, 0.11f, 0.07f, 0.18f) - verticalLineToRelative(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -0.07f, 0.03f, -0.13f, 0.07f, -0.18f) - curveToRelative(0.03f, -0.04f, 0.09f, -0.07f, 0.18f, -0.07f) - curveToRelative(0.1f, 0.0f, 0.15f, 0.03f, 0.18f, 0.07f) - curveToRelative(0.04f, 0.05f, 0.07f, 0.11f, 0.07f, 0.18f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.28f, -0.15f, 0.78f, -0.43f, 1.43f) - arcToRelative(19.2f, 19.2f, 0.0f, false, true, -0.9f, 1.76f) - curveToRelative(-0.2f, 0.34f, -0.58f, 0.56f, -1.01f, 0.56f) - horizontalLineToRelative(-1.64f) - curveToRelative(-0.4f, 0.0f, -0.78f, -0.2f, -1.01f, -0.52f) - lineToRelative(-0.6f, -0.82f) - arcToRelative(12.75f, 12.75f, 0.0f, false, false, -1.94f, -2.12f) - lineToRelative(-0.98f, -0.86f) - arcToRelative(0.78f, 0.78f, 0.0f, false, false, -0.06f, -0.04f) - lineToRelative(-1.38f, -1.0f) - curveToRelative(0.12f, -0.4f, 0.48f, -0.64f, 0.95f, -0.64f) - curveToRelative(0.63f, 0.0f, 1.09f, 0.4f, 1.24f, 0.53f) - lineToRelative(0.03f, 0.03f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 14.0f, 14.5f) - lineTo(14.0f, 9.5f) - curveToRelative(0.0f, -0.07f, 0.03f, -0.14f, 0.07f, -0.18f) - curveToRelative(0.04f, -0.04f, 0.09f, -0.07f, 0.18f, -0.07f) - curveToRelative(0.1f, 0.0f, 0.15f, 0.03f, 0.18f, 0.07f) - curveToRelative(0.04f, 0.05f, 0.07f, 0.11f, 0.07f, 0.18f) - verticalLineToRelative(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.07f, 0.03f, -0.13f, 0.07f, -0.18f) - curveToRelative(0.03f, -0.04f, 0.09f, -0.07f, 0.18f, -0.07f) - curveToRelative(0.1f, 0.0f, 0.15f, 0.03f, 0.18f, 0.07f) - close() - moveTo(4.25f, 14.0f) - curveToRelative(0.42f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(5.0f, 17.0f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(3.5f, 17.0f) - horizontalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.75f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(8.25f, 17.5f) - curveToRelative(0.42f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(9.0f, 19.0f) - horizontalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(9.0f, 20.5f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.75f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _sanitize!! - } - -private var _sanitize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SaveArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SaveArrowRight.kt deleted file mode 100644 index 26d62479..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SaveArrowRight.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SaveArrowRight: ImageVector - get() { - if (_saveArrowRight != null) { - return _saveArrowRight!! - } - _saveArrowRight = fluentIcon(name = "Regular.SaveArrowRight") { - fluentPath { - moveTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(9.96f) - curveToRelative(0.87f, 0.0f, 1.7f, 0.34f, 2.3f, 0.95f) - lineTo(20.05f, 6.0f) - curveToRelative(0.6f, 0.6f, 0.95f, 1.43f, 0.95f, 2.3f) - verticalLineToRelative(3.73f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 8.28f) - curveToRelative(0.0f, -0.47f, -0.18f, -0.91f, -0.51f, -1.24f) - lineTo(16.95f, 5.0f) - curveToRelative(-0.26f, -0.26f, -0.6f, -0.43f, -0.95f, -0.49f) - verticalLineToRelative(2.73f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-4.5f) - curveTo(8.01f, 9.5f, 7.0f, 8.5f, 7.0f, 7.25f) - lineTo(7.0f, 4.5f) - lineTo(5.75f, 4.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - lineTo(6.0f, 19.5f) - verticalLineToRelative(-5.25f) - curveTo(6.0f, 13.01f, 7.0f, 12.0f, 8.25f, 12.0f) - horizontalLineToRelative(5.78f) - curveToRelative(-0.63f, 0.4f, -1.2f, 0.91f, -1.65f, 1.5f) - lineTo(8.25f, 13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(5.25f) - horizontalLineToRelative(3.81f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(5.75f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - close() - moveTo(8.5f, 4.5f) - verticalLineToRelative(2.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(14.5f, 4.5f) - horizontalLineToRelative(-6.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(19.29f, 17.0f) - lineTo(14.5f, 17.0f) - close() - } - } - return _saveArrowRight!! - } - -private var _saveArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SaveCopy.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SaveCopy.kt deleted file mode 100644 index 9eefff90..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SaveCopy.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SaveCopy: ImageVector - get() { - if (_saveCopy != null) { - return _saveCopy!! - } - _saveCopy = fluentIcon(name = "Regular.SaveCopy") { - fluentPath { - moveTo(20.5f, 5.63f) - curveToRelative(0.87f, 0.3f, 1.5f, 1.14f, 1.5f, 2.12f) - verticalLineToRelative(10.0f) - curveTo(22.0f, 20.1f, 20.1f, 22.0f, 17.75f, 22.0f) - horizontalLineToRelative(-10.0f) - curveToRelative(-0.98f, 0.0f, -1.82f, -0.63f, -2.12f, -1.5f) - horizontalLineToRelative(12.12f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, -2.75f) - lineTo(20.5f, 5.63f) - close() - moveTo(17.25f, 2.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(13.0f) - curveToRelative(0.0f, 1.24f, -1.01f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-13.0f) - curveTo(3.01f, 19.5f, 2.0f, 18.49f, 2.0f, 17.25f) - verticalLineToRelative(-13.0f) - curveTo(2.0f, 3.01f, 3.0f, 2.0f, 4.25f, 2.0f) - horizontalLineToRelative(13.0f) - close() - moveTo(17.25f, 3.5f) - horizontalLineToRelative(-13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(13.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(13.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(10.75f, 6.75f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(11.5f, 10.0f) - lineTo(14.0f, 10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - lineTo(11.5f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - lineTo(7.5f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(10.0f, 10.0f) - lineTo(10.0f, 7.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _saveCopy!! - } - -private var _saveCopy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SaveEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SaveEdit.kt deleted file mode 100644 index b2264b1c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SaveEdit.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SaveEdit: ImageVector - get() { - if (_saveEdit != null) { - return _saveEdit!! - } - _saveEdit = fluentIcon(name = "Regular.SaveEdit") { - fluentPath { - moveTo(5.75f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) - horizontalLineTo(10.0f) - curveToRelative(0.0f, -0.2f, 0.01f, -0.4f, 0.06f, -0.6f) - lineToRelative(0.23f, -0.9f) - horizontalLineTo(7.5f) - verticalLineToRelative(-5.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.6f) - lineToRelative(1.44f, -1.44f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, -0.54f, -0.06f) - horizontalLineToRelative(-7.5f) - curveTo(7.01f, 12.0f, 6.0f, 13.0f, 6.0f, 14.25f) - verticalLineToRelative(5.25f) - horizontalLineToRelative(-0.25f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - verticalLineTo(5.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineTo(7.0f) - verticalLineToRelative(2.75f) - curveTo(7.0f, 8.49f, 8.0f, 9.5f, 9.25f, 9.5f) - horizontalLineToRelative(4.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineTo(4.52f) - curveToRelative(0.36f, 0.06f, 0.7f, 0.23f, 0.95f, 0.5f) - lineTo(19.0f, 7.04f) - curveToRelative(0.33f, 0.33f, 0.51f, 0.77f, 0.51f, 1.24f) - verticalLineTo(10.0f) - lineToRelative(0.21f, -0.01f) - curveToRelative(0.44f, 0.0f, 0.88f, 0.09f, 1.29f, 0.26f) - verticalLineTo(8.3f) - curveToRelative(0.0f, -0.87f, -0.34f, -1.7f, -0.95f, -2.3f) - lineTo(18.0f, 3.95f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -2.3f, -0.95f) - horizontalLineTo(5.75f) - close() - moveTo(8.5f, 7.25f) - verticalLineTo(4.5f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(2.75f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(19.72f, 11.0f) - curveToRelative(-0.6f, 0.0f, -1.18f, 0.22f, -1.62f, 0.67f) - lineToRelative(-5.9f, 5.9f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.71f, 1.25f) - lineToRelative(-0.46f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcTo(2.29f, 2.29f, 0.0f, false, false, 19.72f, 11.0f) - close() - } - } - return _saveEdit!! - } - -private var _saveEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SaveMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SaveMultiple.kt deleted file mode 100644 index c30a1f54..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SaveMultiple.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SaveMultiple: ImageVector - get() { - if (_saveMultiple != null) { - return _saveMultiple!! - } - _saveMultiple = fluentIcon(name = "Regular.SaveMultiple") { - fluentPath { - moveTo(5.75f, 18.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 15.25f) - verticalLineToRelative(-9.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(6.96f) - curveToRelative(0.87f, 0.0f, 1.7f, 0.34f, 2.3f, 0.95f) - lineTo(17.05f, 6.0f) - curveToRelative(0.6f, 0.6f, 0.95f, 1.43f, 0.95f, 2.3f) - verticalLineToRelative(6.96f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 15.25f, 18.0f) - horizontalLineToRelative(-9.5f) - close() - moveTo(4.5f, 5.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - lineTo(6.0f, 16.5f) - verticalLineToRelative(-3.25f) - curveTo(6.0f, 12.01f, 7.0f, 11.0f, 8.25f, 11.0f) - horizontalLineToRelative(4.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(3.25f) - horizontalLineToRelative(0.25f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - lineTo(16.5f, 8.29f) - curveToRelative(0.0f, -0.47f, -0.18f, -0.91f, -0.51f, -1.24f) - lineTo(14.0f, 5.06f) - verticalLineToRelative(1.19f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-2.5f) - curveTo(8.01f, 8.5f, 7.0f, 7.5f, 7.0f, 6.25f) - lineTo(7.0f, 4.5f) - lineTo(5.75f, 4.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - close() - moveTo(13.5f, 16.5f) - verticalLineToRelative(-3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.25f) - horizontalLineToRelative(6.0f) - close() - moveTo(8.5f, 6.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(12.5f, 4.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(1.75f) - close() - moveTo(10.75f, 21.0f) - curveToRelative(-1.37f, 0.0f, -2.6f, -0.58f, -3.46f, -1.5f) - horizontalLineToRelative(8.96f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.45f, 3.25f, -3.25f) - lineTo(19.5f, 8.44f) - lineToRelative(0.55f, 0.55f) - curveToRelative(0.6f, 0.6f, 0.95f, 1.43f, 0.95f, 2.3f) - verticalLineToRelative(4.96f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 16.25f, 21.0f) - horizontalLineToRelative(-5.5f) - close() - } - } - return _saveMultiple!! - } - -private var _saveMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Savings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Savings.kt deleted file mode 100644 index 37387946..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Savings.kt +++ /dev/null @@ -1,97 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Savings: ImageVector - get() { - if (_savings != null) { - return _savings!! - } - _savings = fluentIcon(name = "Regular.Savings") { - fluentPath { - moveTo(10.08f, 4.09f) - curveToRelative(0.53f, 0.36f, 1.04f, 0.6f, 1.46f, 0.66f) - curveToRelative(-0.23f, 0.45f, -0.4f, 0.94f, -0.47f, 1.44f) - arcToRelative(5.39f, 5.39f, 0.0f, false, true, -1.84f, -0.87f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -0.73f, -0.55f) - lineTo(8.5f, 7.0f) - curveToRelative(0.0f, 0.3f, -0.19f, 0.58f, -0.47f, 0.7f) - arcToRelative(2.52f, 2.52f, 0.0f, false, false, -0.17f, 0.07f) - arcToRelative(6.99f, 6.99f, 0.0f, false, false, -1.83f, 1.26f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -0.9f, 1.54f) - curveToRelative(-0.2f, 0.6f, -0.7f, 1.16f, -1.44f, 1.28f) - arcToRelative(0.22f, 0.22f, 0.0f, false, false, -0.19f, 0.22f) - verticalLineToRelative(1.76f) - curveToRelative(0.0f, 0.16f, 0.12f, 0.3f, 0.28f, 0.33f) - curveToRelative(0.63f, 0.1f, 1.12f, 0.51f, 1.4f, 1.0f) - curveToRelative(0.25f, 0.46f, 0.7f, 1.15f, 1.35f, 1.8f) - arcToRelative(4.96f, 4.96f, 0.0f, false, false, 2.36f, 1.3f) - curveToRelative(0.36f, 0.07f, 0.61f, 0.38f, 0.61f, 0.74f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - lineTo(11.0f, 20.5f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(2.0f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - horizontalLineToRelative(1.25f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - lineTo(17.5f, 18.0f) - curveToRelative(0.0f, -0.28f, 0.16f, -0.54f, 0.41f, -0.67f) - horizontalLineToRelative(0.02f) - lineToRelative(0.07f, -0.05f) - lineToRelative(0.28f, -0.19f) - arcToRelative(5.6f, 5.6f, 0.0f, false, false, 2.22f, -4.6f) - curveToRelative(0.0f, -1.0f, -0.19f, -1.81f, -0.5f, -2.48f) - curveToRelative(0.35f, -0.47f, 0.62f, -1.0f, 0.79f, -1.57f) - arcTo(6.89f, 6.89f, 0.0f, false, true, 22.0f, 12.5f) - arcToRelative(7.1f, 7.1f, 0.0f, false, true, -3.0f, 5.92f) - verticalLineToRelative(1.83f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(16.0f, 22.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - horizontalLineToRelative(-2.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - lineTo(9.75f, 22.0f) - curveTo(8.78f, 22.0f, 8.0f, 21.22f, 8.0f, 20.25f) - verticalLineToRelative(-0.68f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, -2.53f, -1.54f) - arcToRelative(9.86f, 9.86f, 0.0f, false, true, -1.6f, -2.13f) - arcToRelative(0.49f, 0.49f, 0.0f, false, false, -0.33f, -0.26f) - arcTo(1.84f, 1.84f, 0.0f, false, true, 2.0f, 13.83f) - verticalLineToRelative(-1.76f) - curveToRelative(0.0f, -0.84f, 0.6f, -1.56f, 1.44f, -1.7f) - curveToRelative(0.09f, -0.01f, 0.22f, -0.1f, 0.28f, -0.28f) - curveToRelative(0.19f, -0.58f, 0.56f, -1.43f, 1.25f, -2.12f) - arcTo(7.94f, 7.94f, 0.0f, false, true, 7.0f, 6.52f) - lineTo(7.0f, 3.67f) - curveToRelative(0.0f, -0.94f, 1.13f, -1.32f, 1.74f, -0.72f) - curveToRelative(0.33f, 0.33f, 0.81f, 0.77f, 1.34f, 1.14f) - close() - moveTo(13.07f, 8.85f) - curveToRelative(-0.49f, -0.2f, -0.9f, -0.6f, -1.0f, -1.11f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, 6.19f, 2.56f) - curveToRelative(-0.44f, 0.3f, -1.0f, 0.28f, -1.5f, 0.08f) - lineToRelative(-3.69f, -1.53f) - close() - moveTo(17.47f, 9.03f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, -3.94f, -1.63f) - lineToRelative(0.02f, 0.01f) - lineToRelative(0.1f, 0.05f) - lineTo(17.33f, 9.0f) - arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.12f, 0.04f) - close() - moveTo(9.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - } - } - return _savings!! - } - -private var _savings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScaleFill.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScaleFill.kt deleted file mode 100644 index 60befd73..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScaleFill.kt +++ /dev/null @@ -1,91 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ScaleFill: ImageVector - get() { - if (_scaleFill != null) { - return _scaleFill!! - } - _scaleFill = fluentIcon(name = "Regular.ScaleFill") { - fluentPath { - moveTo(6.0f, 6.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.69f) - lineToRelative(1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(7.5f, 8.56f) - verticalLineToRelative(0.7f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - lineTo(6.0f, 6.74f) - close() - moveTo(17.25f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, -0.75f) - verticalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(0.69f) - lineToRelative(-1.72f, -1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(1.72f, 1.72f) - horizontalLineToRelative(-0.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.5f) - close() - moveTo(17.78f, 6.22f) - curveToRelative(0.14f, 0.14f, 0.22f, 0.33f, 0.22f, 0.53f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.69f) - lineToRelative(-1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(1.72f, -1.72f) - horizontalLineToRelative(-0.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.51f) - curveToRelative(0.2f, 0.0f, 0.39f, 0.08f, 0.53f, 0.22f) - close() - moveTo(6.0f, 17.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, 0.75f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.69f) - lineToRelative(1.72f, -1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineTo(7.5f, 15.44f) - verticalLineToRelative(-0.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.5f) - close() - moveTo(3.0f, 5.25f) - curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(13.5f) - curveTo(19.99f, 3.0f, 21.0f, 4.0f, 21.0f, 5.25f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(5.25f, 21.0f) - curveTo(4.01f, 21.0f, 3.0f, 20.0f, 3.0f, 18.75f) - lineTo(3.0f, 5.25f) - close() - moveTo(5.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(19.5f, 5.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(5.25f, 4.5f) - close() - } - } - return _scaleFill!! - } - -private var _scaleFill: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScaleFit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScaleFit.kt deleted file mode 100644 index e72b3e3d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScaleFit.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ScaleFit: ImageVector - get() { - if (_scaleFit != null) { - return _scaleFit!! - } - _scaleFit = fluentIcon(name = "Regular.ScaleFit") { - fluentPath { - moveTo(8.0f, 9.44f) - curveToRelative(0.3f, 0.27f, 0.34f, 0.74f, 0.06f, 1.05f) - lineToRelative(-0.66f, 0.76f) - horizontalLineToRelative(2.86f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(7.4f, 12.75f) - lineToRelative(0.66f, 0.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.12f, 0.98f) - lineToRelative(-1.75f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -0.98f) - lineToRelative(1.75f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, -0.07f) - close() - moveTo(15.95f, 10.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, -0.98f) - lineToRelative(1.75f, 2.0f) - curveToRelative(0.25f, 0.28f, 0.25f, 0.7f, 0.0f, 0.98f) - lineToRelative(-1.75f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) - lineToRelative(0.66f, -0.76f) - horizontalLineToRelative(-2.86f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.86f) - lineToRelative(-0.66f, -0.76f) - close() - moveTo(2.0f, 6.25f) - curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) - horizontalLineToRelative(15.5f) - curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(4.25f, 20.0f) - curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) - lineTo(2.0f, 6.25f) - close() - moveTo(4.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(15.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(20.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(4.25f, 5.5f) - close() - } - } - return _scaleFit!! - } - -private var _scaleFit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Scales.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Scales.kt deleted file mode 100644 index 92181bc8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Scales.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Scales: ImageVector - get() { - if (_scales != null) { - return _scales!! - } - _scales = fluentIcon(name = "Regular.Scales") { - fluentPath { - moveTo(3.0f, 3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.04f) - lineToRelative(2.73f, 6.72f) - curveToRelative(0.04f, 0.09f, 0.06f, 0.18f, 0.06f, 0.28f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, -7.0f, 0.0f) - curveToRelative(0.0f, -0.1f, 0.02f, -0.2f, 0.06f, -0.28f) - lineToRelative(2.73f, -6.72f) - horizontalLineToRelative(-5.04f) - verticalLineToRelative(12.0f) - horizontalLineToRelative(4.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, 4.5f) - horizontalLineToRelative(-9.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -4.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-12.0f) - lineTo(6.21f, 4.5f) - lineToRelative(2.73f, 6.72f) - curveToRelative(0.04f, 0.09f, 0.06f, 0.18f, 0.06f, 0.28f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, -7.0f, 0.0f) - curveToRelative(0.0f, -0.1f, 0.02f, -0.2f, 0.06f, -0.28f) - lineTo(4.79f, 4.5f) - lineTo(3.75f, 4.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 3.75f) - close() - moveTo(6.5f, 18.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(7.35f, 12.25f) - horizontalLineToRelative(-3.7f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 3.7f, 0.0f) - close() - moveTo(7.13f, 10.75f) - lineTo(5.5f, 6.74f) - lineToRelative(-1.63f, 4.01f) - horizontalLineToRelative(3.26f) - close() - moveTo(18.5f, 13.5f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.85f, -1.25f) - horizontalLineToRelative(-3.7f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.85f, 1.25f) - close() - moveTo(16.87f, 10.75f) - horizontalLineToRelative(3.26f) - lineTo(18.5f, 6.74f) - lineToRelative(-1.63f, 4.01f) - close() - } - } - return _scales!! - } - -private var _scales: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Scan.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Scan.kt deleted file mode 100644 index 23f9a8ba..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Scan.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Scan: ImageVector - get() { - if (_scan != null) { - return _scan!! - } - _scan = fluentIcon(name = "Regular.Scan") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(15.25f, 14.33f) - lineTo(15.21f, 14.4f) - lineTo(15.15f, 14.5f) - lineTo(10.39f, 20.35f) - arcToRelative(8.54f, 8.54f, 0.0f, false, false, 7.26f, -2.0f) - lineToRelative(-2.08f, -4.54f) - curveToRelative(-0.1f, 0.18f, -0.2f, 0.36f, -0.32f, 0.52f) - close() - moveTo(4.49f, 16.0f) - arcToRelative(8.53f, 8.53f, 0.0f, false, false, 4.34f, 3.9f) - lineTo(11.99f, 16.0f) - horizontalLineToRelative(-0.19f) - lineToRelative(-0.13f, -0.01f) - lineTo(4.49f, 15.99f) - close() - moveTo(20.13f, 9.5f) - horizontalLineToRelative(-5.0f) - arcToRelative(4.02f, 4.02f, 0.0f, false, true, 0.3f, 0.41f) - lineToRelative(0.05f, 0.1f) - lineToRelative(0.04f, 0.07f) - curveToRelative(0.08f, 0.16f, 0.16f, 0.33f, 0.22f, 0.5f) - lineToRelative(3.02f, 6.57f) - arcToRelative(8.46f, 8.46f, 0.0f, false, false, 1.37f, -7.65f) - close() - moveTo(3.5f, 12.0f) - curveToRelative(0.0f, 0.86f, 0.13f, 1.7f, 0.37f, 2.49f) - horizontalLineToRelative(5.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -0.23f, -0.32f) - lineToRelative(-0.14f, -0.23f) - lineToRelative(-3.61f, -6.6f) - arcTo(8.46f, 8.46f, 0.0f, false, false, 3.5f, 12.0f) - close() - moveTo(10.02f, 10.47f) - lineTo(9.98f, 10.55f) - arcTo(2.48f, 2.48f, 0.0f, false, false, 9.5f, 12.0f) - curveToRelative(0.0f, 1.3f, 0.98f, 2.36f, 2.24f, 2.49f) - horizontalLineToRelative(0.52f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -0.03f, -4.98f) - horizontalLineToRelative(-0.43f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -1.78f, 0.96f) - close() - moveTo(12.0f, 3.5f) - curveToRelative(-2.4f, 0.0f, -4.55f, 0.99f, -6.1f, 2.58f) - lineToRelative(2.4f, 4.38f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.49f, -0.85f) - lineToRelative(3.9f, -6.08f) - arcTo(8.62f, 8.62f, 0.0f, false, false, 12.0f, 3.5f) - close() - moveTo(11.6f, 8.02f) - arcToRelative(4.05f, 4.05f, 0.0f, false, true, 0.7f, 0.0f) - horizontalLineToRelative(7.2f) - arcTo(8.52f, 8.52f, 0.0f, false, false, 14.6f, 3.9f) - lineToRelative(-0.3f, -0.09f) - lineToRelative(-2.7f, 4.21f) - close() - } - } - return _scan!! - } - -private var _scan: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanCamera.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanCamera.kt deleted file mode 100644 index ae950c38..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanCamera.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ScanCamera: ImageVector - get() { - if (_scanCamera != null) { - return _scanCamera!! - } - _scanCamera = fluentIcon(name = "Regular.ScanCamera") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(15.0f, 3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(3.75f, 15.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(20.25f, 15.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.0f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(12.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(10.85f, 7.0f) - curveToRelative(-0.48f, 0.0f, -0.9f, 0.26f, -1.12f, 0.68f) - lineTo(9.24f, 9.0f) - horizontalLineToRelative(-0.57f) - curveTo(7.75f, 9.0f, 7.0f, 9.6f, 7.0f, 10.5f) - verticalLineToRelative(3.86f) - curveToRelative(0.0f, 0.9f, 0.75f, 1.64f, 1.67f, 1.64f) - horizontalLineToRelative(6.66f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.73f, 1.67f, -1.64f) - lineTo(17.0f, 10.5f) - curveToRelative(0.0f, -0.9f, -0.75f, -1.5f, -1.67f, -1.5f) - horizontalLineToRelative(-0.57f) - lineToRelative(-0.49f, -1.32f) - arcTo(1.25f, 1.25f, 0.0f, false, false, 13.15f, 7.0f) - horizontalLineToRelative(-2.3f) - close() - moveTo(12.0f, 14.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, 4.0f) - close() - } - } - return _scanCamera!! - } - -private var _scanCamera: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanDash.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanDash.kt deleted file mode 100644 index 661ec1f8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanDash.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ScanDash: ImageVector - get() { - if (_scanDash != null) { - return _scanDash!! - } - _scanDash = fluentIcon(name = "Regular.ScanDash") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.0f) - close() - moveTo(15.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.0f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - horizontalLineToRelative(-2.0f) - close() - moveTo(4.5f, 15.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.0f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-2.0f) - close() - moveTo(21.0f, 15.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-2.0f) - close() - moveTo(7.5f, 11.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-9.0f) - close() - } - } - return _scanDash!! - } - -private var _scanDash: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanObject.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanObject.kt deleted file mode 100644 index 2133aeb2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanObject.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ScanObject: ImageVector - get() { - if (_scanObject != null) { - return _scanObject!! - } - _scanObject = fluentIcon(name = "Regular.ScanObject") { - fluentPath { - moveTo(5.25f, 3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-3.0f) - curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.0f) - close() - moveTo(18.75f, 3.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-3.0f) - curveTo(22.0f, 3.45f, 20.54f, 2.0f, 18.75f, 2.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.0f) - close() - moveTo(3.5f, 18.75f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 18.75f) - verticalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(3.0f) - close() - moveTo(18.75f, 20.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.0f) - close() - moveTo(13.82f, 8.23f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.64f, 0.0f) - lineToRelative(-3.05f, 4.2f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 8.95f, 16.0f) - horizontalLineToRelative(6.1f) - curveToRelative(1.84f, 0.0f, 2.9f, -2.09f, 1.82f, -3.57f) - lineToRelative(-3.05f, -4.2f) - close() - moveTo(11.39f, 9.11f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.22f, 0.0f) - lineToRelative(3.05f, 4.2f) - curveToRelative(0.36f, 0.5f, 0.0f, 1.19f, -0.6f, 1.19f) - lineTo(8.94f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.61f, -1.2f) - lineToRelative(3.05f, -4.2f) - close() - } - } - return _scanObject!! - } - -private var _scanObject: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanQrCode.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanQrCode.kt deleted file mode 100644 index c29708be..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanQrCode.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ScanQrCode: ImageVector - get() { - if (_scanQrCode != null) { - return _scanQrCode!! - } - _scanQrCode = fluentIcon(name = "Regular.ScanQrCode") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(15.0f, 3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(3.75f, 15.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(20.25f, 15.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.0f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(10.0f, 7.0f) - lineTo(7.0f, 7.0f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(4.0f) - lineTo(7.0f, 14.0f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(3.0f) - lineTo(17.0f, 7.0f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(-4.0f) - lineTo(10.0f, 7.0f) - close() - } - } - return _scanQrCode!! - } - -private var _scanQrCode: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanTable.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanTable.kt deleted file mode 100644 index 4765c779..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanTable.kt +++ /dev/null @@ -1,101 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ScanTable: ImageVector - get() { - if (_scanTable != null) { - return _scanTable!! - } - _scanTable = fluentIcon(name = "Regular.ScanTable") { - fluentPath { - moveTo(2.75f, 15.0f) - curveToRelative(0.38f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) - verticalLineToRelative(3.6f) - lineToRelative(0.01f, 0.13f) - curveToRelative(0.06f, 0.59f, 0.53f, 1.06f, 1.12f, 1.12f) - horizontalLineToRelative(3.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(4.58f, 22.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 19.43f) - lineTo(2.0f, 15.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) - close() - moveTo(21.25f, 15.0f) - curveToRelative(0.38f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) - verticalLineToRelative(3.6f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 19.42f, 22.0f) - horizontalLineToRelative(-3.66f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(3.6f) - curveToRelative(0.64f, 0.0f, 1.18f, -0.49f, 1.24f, -1.12f) - verticalLineToRelative(-3.63f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.76f, -0.75f) - close() - moveTo(15.25f, 6.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.74f, 2.58f) - lineToRelative(0.01f, 0.17f) - verticalLineToRelative(6.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 15.42f, 18.0f) - lineTo(8.75f, 18.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 6.0f, 15.42f) - lineTo(6.0f, 8.75f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.58f, -2.74f) - lineTo(8.75f, 6.0f) - horizontalLineToRelative(6.5f) - close() - moveTo(16.5f, 11.0f) - horizontalLineToRelative(-9.0f) - verticalLineToRelative(4.25f) - curveToRelative(0.0f, 0.65f, 0.5f, 1.18f, 1.12f, 1.24f) - lineToRelative(0.13f, 0.01f) - horizontalLineToRelative(6.5f) - curveToRelative(0.65f, 0.0f, 1.18f, -0.5f, 1.24f, -1.12f) - lineToRelative(0.01f, -0.13f) - verticalLineToRelative(-4.26f) - close() - moveTo(15.25f, 7.5f) - horizontalLineToRelative(-6.5f) - curveToRelative(-0.65f, 0.0f, -1.18f, 0.5f, -1.24f, 1.12f) - lineToRelative(-0.01f, 0.13f) - verticalLineToRelative(0.74f) - horizontalLineToRelative(9.0f) - verticalLineToRelative(-0.74f) - curveToRelative(0.0f, -0.65f, -0.5f, -1.18f, -1.12f, -1.24f) - lineToRelative(-0.13f, -0.01f) - close() - moveTo(8.25f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-3.6f) - curveToRelative(-0.65f, 0.0f, -1.18f, 0.5f, -1.25f, 1.12f) - verticalLineToRelative(3.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-3.6f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.58f, -2.74f) - lineTo(4.75f, 2.0f) - horizontalLineToRelative(3.5f) - close() - moveTo(19.25f, 2.0f) - horizontalLineToRelative(0.16f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 4.59f) - verticalLineToRelative(3.77f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, 0.0f) - verticalLineToRelative(-3.6f) - lineToRelative(-0.01f, -0.13f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.12f, -1.11f) - lineToRelative(-0.12f, -0.01f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.6f) - close() - } - } - return _scanTable!! - } - -private var _scanTable: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanText.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanText.kt deleted file mode 100644 index dfd29280..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanText.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ScanText: ImageVector - get() { - if (_scanText != null) { - return _scanText!! - } - _scanText = fluentIcon(name = "Regular.ScanText") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(2.12f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.12f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(6.25f, 3.0f) - close() - moveTo(15.63f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.12f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(2.12f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-2.12f) - close() - moveTo(3.0f, 15.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(2.12f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 1.75f, 1.75f) - horizontalLineToRelative(2.12f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - verticalLineToRelative(-2.12f) - close() - moveTo(19.5f, 15.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(2.12f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 17.75f, 21.0f) - horizontalLineToRelative(-2.12f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.12f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 1.75f, -1.75f) - verticalLineToRelative(-2.12f) - close() - moveTo(7.0f, 7.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-8.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 7.75f) - close() - moveTo(7.75f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-8.5f) - close() - moveTo(7.0f, 15.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _scanText!! - } - -private var _scanText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanThumbUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanThumbUp.kt deleted file mode 100644 index 8ade8ada..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanThumbUp.kt +++ /dev/null @@ -1,106 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ScanThumbUp: ImageVector - get() { - if (_scanThumbUp != null) { - return _scanThumbUp!! - } - _scanThumbUp = fluentIcon(name = "Regular.ScanThumbUp") { - fluentPath { - moveTo(3.5f, 5.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) - verticalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-3.0f) - close() - moveTo(20.5f, 5.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.0f) - curveTo(20.55f, 2.0f, 22.0f, 3.46f, 22.0f, 5.25f) - verticalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-3.0f) - close() - moveTo(5.25f, 20.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.0f) - curveTo(2.0f, 20.55f, 3.46f, 22.0f, 5.25f, 22.0f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.0f) - close() - moveTo(20.5f, 18.75f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.0f) - close() - moveTo(13.47f, 5.31f) - curveToRelative(-1.12f, -0.29f, -1.92f, 0.5f, -2.18f, 1.11f) - curveToRelative(-0.19f, 0.44f, -0.35f, 0.75f, -0.57f, 1.14f) - lineToRelative(-0.46f, 0.88f) - arcToRelative(5.94f, 5.94f, 0.0f, false, true, -1.25f, 1.7f) - lineToRelative(-1.54f, 0.85f) - arcToRelative(2.27f, 2.27f, 0.0f, false, false, -1.06f, 2.84f) - lineToRelative(0.44f, 1.09f) - arcToRelative(2.4f, 2.4f, 0.0f, false, false, 1.56f, 1.39f) - lineToRelative(4.5f, 1.32f) - arcToRelative(2.88f, 2.88f, 0.0f, false, false, 3.59f, -1.82f) - lineToRelative(1.15f, -3.65f) - curveToRelative(0.49f, -1.56f, -0.78f, -3.0f, -2.34f, -3.0f) - horizontalLineToRelative(-0.19f) - curveToRelative(0.08f, -0.38f, 0.15f, -0.81f, 0.14f, -1.2f) - curveToRelative(-0.01f, -0.42f, -0.05f, -0.97f, -0.3f, -1.47f) - curveToRelative(-0.29f, -0.58f, -0.8f, -1.0f, -1.5f, -1.18f) - close() - moveTo(8.19f, 12.3f) - lineToRelative(1.55f, -0.85f) - arcToRelative(0.79f, 0.79f, 0.0f, false, false, 0.06f, -0.04f) - horizontalLineToRelative(0.01f) - lineToRelative(0.01f, -0.01f) - lineToRelative(0.02f, -0.01f) - lineToRelative(0.13f, -0.1f) - arcTo(7.42f, 7.42f, 0.0f, false, false, 11.6f, 9.1f) - lineToRelative(0.44f, -0.84f) - curveToRelative(0.22f, -0.4f, 0.41f, -0.75f, 0.63f, -1.25f) - curveToRelative(0.03f, -0.08f, 0.1f, -0.17f, 0.19f, -0.22f) - arcToRelative(0.28f, 0.28f, 0.0f, false, true, 0.23f, -0.04f) - curveToRelative(0.3f, 0.08f, 0.44f, 0.22f, 0.52f, 0.4f) - curveToRelative(0.1f, 0.19f, 0.14f, 0.46f, 0.15f, 0.82f) - curveToRelative(0.0f, 0.32f, -0.07f, 0.75f, -0.18f, 1.17f) - curveToRelative(-0.04f, 0.2f, -0.1f, 0.38f, -0.15f, 0.54f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.72f, 0.98f) - horizontalLineToRelative(1.16f) - curveToRelative(0.7f, 0.0f, 1.05f, 0.58f, 0.9f, 1.04f) - lineToRelative(-1.14f, 3.65f) - curveToRelative(-0.2f, 0.63f, -0.96f, 1.06f, -1.73f, 0.83f) - lineToRelative(-4.51f, -1.32f) - arcToRelative(0.9f, 0.9f, 0.0f, false, true, -0.59f, -0.51f) - lineToRelative(-0.44f, -1.09f) - curveToRelative(-0.13f, -0.34f, 0.0f, -0.75f, 0.4f, -0.97f) - close() - } - } - return _scanThumbUp!! - } - -private var _scanThumbUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanThumbUpOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanThumbUpOff.kt deleted file mode 100644 index 0d6ae712..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanThumbUpOff.kt +++ /dev/null @@ -1,121 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ScanThumbUpOff: ImageVector - get() { - if (_scanThumbUpOff != null) { - return _scanThumbUpOff!! - } - _scanThumbUpOff = fluentIcon(name = "Regular.ScanThumbUpOff") { - fluentPath { - moveTo(2.48f, 3.54f) - curveToRelative(-0.3f, 0.5f, -0.48f, 1.08f, -0.48f, 1.71f) - verticalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -0.2f, 0.04f, -0.4f, 0.1f, -0.59f) - lineToRelative(5.45f, 5.45f) - horizontalLineToRelative(-0.01f) - lineToRelative(-0.03f, 0.03f) - lineToRelative(-1.54f, 0.85f) - arcToRelative(2.27f, 2.27f, 0.0f, false, false, -1.06f, 2.84f) - lineToRelative(0.44f, 1.09f) - arcToRelative(2.4f, 2.4f, 0.0f, false, false, 1.56f, 1.39f) - lineToRelative(4.5f, 1.32f) - curveToRelative(1.06f, 0.3f, 2.2f, 0.0f, 2.93f, -0.73f) - lineToRelative(3.5f, 3.5f) - curveToRelative(-0.19f, 0.06f, -0.38f, 0.1f, -0.59f, 0.1f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.0f) - curveToRelative(0.63f, 0.0f, 1.21f, -0.18f, 1.7f, -0.48f) - lineToRelative(0.27f, 0.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(0.26f, 0.26f) - close() - moveTo(14.78f, 15.84f) - curveToRelative(-0.34f, 0.34f, -0.89f, 0.51f, -1.44f, 0.35f) - lineToRelative(-4.51f, -1.32f) - arcToRelative(0.9f, 0.9f, 0.0f, false, true, -0.59f, -0.51f) - lineToRelative(-0.44f, -1.09f) - curveToRelative(-0.13f, -0.34f, 0.0f, -0.75f, 0.4f, -0.97f) - lineToRelative(1.54f, -0.85f) - arcToRelative(0.79f, 0.79f, 0.0f, false, false, 0.06f, -0.04f) - horizontalLineToRelative(0.01f) - lineToRelative(0.01f, -0.01f) - lineToRelative(0.02f, -0.01f) - arcToRelative(2.35f, 2.35f, 0.0f, false, false, 0.27f, -0.22f) - lineToRelative(4.67f, 4.67f) - close() - moveTo(10.73f, 7.54f) - lineTo(11.83f, 8.66f) - lineTo(12.04f, 8.27f) - curveToRelative(0.22f, -0.4f, 0.41f, -0.75f, 0.63f, -1.25f) - curveToRelative(0.03f, -0.08f, 0.1f, -0.17f, 0.19f, -0.22f) - arcToRelative(0.28f, 0.28f, 0.0f, false, true, 0.23f, -0.04f) - curveToRelative(0.3f, 0.08f, 0.44f, 0.22f, 0.52f, 0.4f) - curveToRelative(0.1f, 0.19f, 0.14f, 0.46f, 0.15f, 0.82f) - curveToRelative(0.0f, 0.32f, -0.07f, 0.75f, -0.18f, 1.17f) - curveToRelative(-0.04f, 0.2f, -0.1f, 0.38f, -0.15f, 0.54f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.11f, 0.67f) - lineToRelative(0.16f, 0.16f) - curveToRelative(0.13f, 0.1f, 0.29f, 0.15f, 0.45f, 0.15f) - horizontalLineToRelative(1.16f) - curveToRelative(0.7f, 0.0f, 1.05f, 0.58f, 0.9f, 1.04f) - lineToRelative(-0.31f, 1.0f) - lineToRelative(1.2f, 1.2f) - lineToRelative(0.55f, -1.75f) - curveToRelative(0.49f, -1.56f, -0.78f, -3.0f, -2.34f, -3.0f) - horizontalLineToRelative(-0.19f) - curveToRelative(0.08f, -0.38f, 0.15f, -0.81f, 0.14f, -1.2f) - curveToRelative(-0.01f, -0.42f, -0.05f, -0.97f, -0.3f, -1.47f) - curveToRelative(-0.29f, -0.58f, -0.8f, -1.0f, -1.5f, -1.18f) - curveToRelative(-1.1f, -0.29f, -1.9f, 0.5f, -2.17f, 1.11f) - curveToRelative(-0.19f, 0.44f, -0.35f, 0.74f, -0.56f, 1.13f) - close() - moveTo(20.5f, 17.32f) - lineTo(22.0f, 18.82f) - verticalLineToRelative(-3.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.57f) - close() - moveTo(5.18f, 2.0f) - lineToRelative(1.5f, 1.5f) - horizontalLineToRelative(1.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(5.18f, 2.0f) - close() - moveTo(20.5f, 5.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.0f) - curveTo(20.55f, 2.0f, 22.0f, 3.46f, 22.0f, 5.25f) - verticalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-3.0f) - close() - moveTo(5.25f, 20.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.0f) - curveTo(2.0f, 20.55f, 3.46f, 22.0f, 5.25f, 22.0f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.0f) - close() - } - } - return _scanThumbUpOff!! - } - -private var _scanThumbUpOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanType.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanType.kt deleted file mode 100644 index b6b3be21..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanType.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ScanType: ImageVector - get() { - if (_scanType != null) { - return _scanType!! - } - _scanType = fluentIcon(name = "Regular.ScanType") { - fluentPath { - moveTo(5.25f, 3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-3.0f) - curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.0f) - close() - moveTo(5.25f, 20.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.0f) - curveTo(2.0f, 20.55f, 3.46f, 22.0f, 5.25f, 22.0f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.0f) - close() - moveTo(20.5f, 5.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.0f) - curveTo(20.55f, 2.0f, 22.0f, 3.46f, 22.0f, 5.25f) - verticalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-3.0f) - close() - moveTo(18.75f, 20.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.0f) - close() - moveTo(7.75f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(7.0f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - horizontalLineToRelative(2.75f) - verticalLineToRelative(9.0f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.5f) - verticalLineToRelative(-9.0f) - horizontalLineToRelative(2.75f) - lineTo(15.5f, 8.0f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 17.0f, 8.0f) - lineTo(17.0f, 6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-8.5f) - close() - } - } - return _scanType!! - } - -private var _scanType: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanTypeCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanTypeCheckmark.kt deleted file mode 100644 index 94d9c64f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScanTypeCheckmark.kt +++ /dev/null @@ -1,88 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ScanTypeCheckmark: ImageVector - get() { - if (_scanTypeCheckmark != null) { - return _scanTypeCheckmark!! - } - _scanTypeCheckmark = fluentIcon(name = "Regular.ScanTypeCheckmark") { - fluentPath { - moveTo(5.25f, 3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-3.0f) - curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.0f) - close() - moveTo(5.25f, 20.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.0f) - curveTo(2.0f, 20.55f, 3.46f, 22.0f, 5.25f, 22.0f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.0f) - close() - moveTo(20.5f, 5.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.0f) - curveTo(20.55f, 2.0f, 22.0f, 3.46f, 22.0f, 5.25f) - verticalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-3.0f) - close() - moveTo(7.75f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(7.0f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - horizontalLineToRelative(2.75f) - verticalLineToRelative(8.2f) - curveToRelative(0.29f, -1.0f, 0.8f, -1.9f, 1.5f, -2.64f) - lineTo(12.75f, 7.5f) - horizontalLineToRelative(2.75f) - lineTo(15.5f, 8.0f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 17.0f, 8.0f) - lineTo(17.0f, 6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-8.5f) - close() - moveTo(9.75f, 16.5f) - horizontalLineToRelative(1.33f) - arcToRelative(6.55f, 6.55f, 0.0f, false, false, -0.06f, 1.5f) - lineTo(9.75f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-3.65f, 3.64f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _scanTypeCheckmark!! - } - -private var _scanTypeCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Scratchpad.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Scratchpad.kt deleted file mode 100644 index b0a601db..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Scratchpad.kt +++ /dev/null @@ -1,96 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Scratchpad: ImageVector - get() { - if (_scratchpad != null) { - return _scratchpad!! - } - _scratchpad = fluentIcon(name = "Regular.Scratchpad") { - fluentPath { - moveTo(17.78f, 2.0f) - curveTo(19.03f, 2.0f, 20.0f, 3.0f, 20.0f, 4.26f) - verticalLineToRelative(4.0f) - arcToRelative(4.76f, 4.76f, 0.0f, false, false, -1.5f, -1.6f) - verticalLineToRelative(-2.4f) - curveToRelative(0.0f, -0.4f, -0.3f, -0.74f, -0.72f, -0.74f) - lineTo(6.26f, 3.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineToRelative(-0.01f, 15.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.74f, 0.76f, 0.74f) - lineTo(13.3f, 20.51f) - curveToRelative(0.54f, 0.26f, 1.07f, 0.39f, 1.2f, 0.43f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.16f, 1.07f) - lineTo(6.26f, 22.01f) - curveTo(5.0f, 22.0f, 4.0f, 21.0f, 4.0f, 19.76f) - lineTo(4.0f, 4.26f) - curveTo(4.0f, 3.0f, 5.02f, 2.0f, 6.27f, 2.0f) - horizontalLineToRelative(11.52f) - close() - moveTo(21.25f, 13.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(0.75f) - arcToRelative(5.64f, 5.64f, 0.0f, false, true, -5.0f, 5.6f) - verticalLineToRelative(1.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(15.5f, 20.1f) - arcToRelative(5.65f, 5.65f, 0.0f, false, true, -5.0f, -5.36f) - verticalLineToRelative(-0.99f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.85f) - curveToRelative(0.0f, 2.35f, 1.9f, 4.15f, 4.25f, 4.15f) - curveToRelative(2.28f, 0.0f, 4.13f, -1.7f, 4.24f, -3.94f) - lineToRelative(0.01f, -0.21f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(16.25f, 7.0f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(4.0f) - arcToRelative(3.25f, 3.25f, 0.0f, true, true, -6.5f, 0.0f) - verticalLineToRelative(-4.0f) - curveTo(13.0f, 8.45f, 14.46f, 7.0f, 16.25f, 7.0f) - close() - moveTo(16.25f, 8.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(4.0f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, 3.5f, 0.0f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(9.67f, 13.0f) - arcToRelative(0.66f, 0.66f, 0.0f, false, false, -0.12f, 0.25f) - curveToRelative(-0.03f, 0.1f, -0.05f, 0.25f, -0.05f, 0.45f) - verticalLineToRelative(0.8f) - lineTo(8.25f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(1.52f) - close() - moveTo(8.25f, 10.0f) - lineTo(12.0f, 10.0f) - verticalLineToRelative(1.5f) - lineTo(8.25f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(13.5f, 7.0f) - curveToRelative(-0.3f, 0.26f, -0.53f, 0.48f, -0.65f, 0.65f) - curveToRelative(-0.09f, 0.12f, -0.2f, 0.3f, -0.33f, 0.54f) - lineToRelative(-0.17f, 0.31f) - horizontalLineToRelative(-4.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(5.35f) - close() - } - } - return _scratchpad!! - } - -private var _scratchpad: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScreenSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScreenSearch.kt deleted file mode 100644 index c406d06c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ScreenSearch.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ScreenSearch: ImageVector - get() { - if (_screenSearch != null) { - return _screenSearch!! - } - _screenSearch = fluentIcon(name = "Regular.ScreenSearch") { - fluentPath { - moveTo(2.0f, 7.25f) - curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) - horizontalLineToRelative(13.5f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-6.28f) - lineToRelative(-1.5f, -1.5f) - horizontalLineToRelative(7.78f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(5.25f, 5.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(3.12f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -1.5f, 0.89f) - lineTo(2.0f, 7.25f) - close() - moveTo(5.5f, 20.0f) - curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) - lineToRelative(2.62f, 2.61f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.61f, -2.61f) - arcTo(4.5f, 4.5f, 0.0f, true, false, 5.5f, 20.0f) - close() - moveTo(5.5f, 18.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) - close() - } - } - return _screenSearch!! - } - -private var _screenSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Screenshot.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Screenshot.kt deleted file mode 100644 index 0e20a925..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Screenshot.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Screenshot: ImageVector - get() { - if (_screenshot != null) { - return _screenshot!! - } - _screenshot = fluentIcon(name = "Regular.Screenshot") { - fluentPath { - moveTo(17.25f, 3.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 21.0f, 6.75f) - verticalLineToRelative(10.5f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 17.25f, 21.0f) - lineTo(6.75f, 21.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 3.0f, 17.25f) - lineTo(3.0f, 6.75f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 6.75f, 3.0f) - horizontalLineToRelative(10.5f) - close() - moveTo(17.25f, 4.5f) - lineTo(6.75f, 4.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(10.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(19.5f, 6.75f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - close() - moveTo(17.25f, 13.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(18.0f, 16.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(16.0f, 16.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-2.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(6.75f, 13.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(7.5f, 16.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(8.0f, 18.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - verticalLineToRelative(-2.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(8.0f, 6.0f) - horizontalLineToRelative(2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(8.0f, 7.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.41f) - verticalLineToRelative(2.34f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(6.0f, 8.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.85f, -2.0f) - horizontalLineToRelative(2.4f) - lineTo(8.0f, 6.0f) - close() - moveTo(16.0f, 6.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - verticalLineToRelative(2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(16.5f, 8.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - horizontalLineToRelative(-2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(16.0f, 6.0f) - close() - } - } - return _screenshot!! - } - -private var _screenshot: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SearchInfo.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SearchInfo.kt deleted file mode 100644 index 59c1e32b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SearchInfo.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SearchInfo: ImageVector - get() { - if (_searchInfo != null) { - return _searchInfo!! - } - _searchInfo = fluentIcon(name = "Regular.SearchInfo") { - fluentPath { - moveTo(10.0f, 9.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(10.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(10.0f, 2.75f) - arcToRelative(7.25f, 7.25f, 0.0f, false, true, 5.63f, 11.82f) - lineToRelative(4.9f, 4.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-4.9f, -4.9f) - arcTo(7.25f, 7.25f, 0.0f, true, true, 10.0f, 2.75f) - close() - moveTo(10.0f, 4.25f) - arcToRelative(5.75f, 5.75f, 0.0f, true, false, 0.0f, 11.5f) - arcToRelative(5.75f, 5.75f, 0.0f, false, false, 0.0f, -11.5f) - close() - } - } - return _searchInfo!! - } - -private var _searchInfo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SearchSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SearchSquare.kt deleted file mode 100644 index 4f5b111b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SearchSquare.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SearchSquare: ImageVector - get() { - if (_searchSquare != null) { - return _searchSquare!! - } - _searchSquare = fluentIcon(name = "Regular.SearchSquare") { - fluentPath { - moveTo(11.0f, 15.5f) - curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) - lineToRelative(2.62f, 2.61f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.61f, -2.61f) - arcTo(4.5f, 4.5f, 0.0f, true, false, 11.0f, 15.5f) - close() - moveTo(11.0f, 14.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) - close() - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 6.25f) - close() - } - } - return _searchSquare!! - } - -private var _searchSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SearchVisual.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SearchVisual.kt deleted file mode 100644 index bfcec065..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SearchVisual.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SearchVisual: ImageVector - get() { - if (_searchVisual != null) { - return _searchVisual!! - } - _searchVisual = fluentIcon(name = "Regular.SearchVisual") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.0f) - close() - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.0f) - close() - moveTo(17.75f, 21.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.0f) - close() - moveTo(3.0f, 17.75f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.0f) - close() - moveTo(12.0f, 15.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) - close() - moveTo(12.0f, 13.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) - close() - moveTo(7.5f, 8.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - } - } - return _searchVisual!! - } - -private var _searchVisual: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SelectAllOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SelectAllOff.kt deleted file mode 100644 index 146dfe3e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SelectAllOff.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SelectAllOff: ImageVector - get() { - if (_selectAllOff != null) { - return _selectAllOff!! - } - _selectAllOff = fluentIcon(name = "Regular.SelectAllOff") { - fluentPath { - moveTo(20.5f, 5.63f) - curveToRelative(0.87f, 0.3f, 1.5f, 1.14f, 1.5f, 2.12f) - verticalLineToRelative(10.0f) - curveTo(22.0f, 20.1f, 20.1f, 22.0f, 17.75f, 22.0f) - horizontalLineToRelative(-10.0f) - curveToRelative(-0.98f, 0.0f, -1.82f, -0.63f, -2.12f, -1.5f) - horizontalLineToRelative(12.12f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, -2.75f) - lineTo(20.5f, 5.63f) - close() - moveTo(17.25f, 2.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(13.0f) - curveToRelative(0.0f, 1.24f, -1.01f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-13.0f) - curveTo(3.01f, 19.5f, 2.0f, 18.49f, 2.0f, 17.25f) - verticalLineToRelative(-13.0f) - curveTo(2.0f, 3.01f, 3.0f, 2.0f, 4.25f, 2.0f) - horizontalLineToRelative(13.0f) - close() - moveTo(17.25f, 3.5f) - horizontalLineToRelative(-13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(13.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(13.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - } - } - return _selectAllOff!! - } - -private var _selectAllOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SelectAllOn.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SelectAllOn.kt deleted file mode 100644 index ee7ceeb8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SelectAllOn.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SelectAllOn: ImageVector - get() { - if (_selectAllOn != null) { - return _selectAllOn!! - } - _selectAllOn = fluentIcon(name = "Regular.SelectAllOn") { - fluentPath { - moveTo(20.5f, 5.63f) - curveToRelative(0.87f, 0.3f, 1.5f, 1.14f, 1.5f, 2.12f) - verticalLineToRelative(10.0f) - curveTo(22.0f, 20.1f, 20.1f, 22.0f, 17.75f, 22.0f) - horizontalLineToRelative(-10.0f) - curveToRelative(-0.98f, 0.0f, -1.82f, -0.63f, -2.12f, -1.5f) - horizontalLineToRelative(12.12f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, -2.75f) - lineTo(20.5f, 5.63f) - close() - moveTo(17.25f, 2.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(13.0f) - curveToRelative(0.0f, 1.24f, -1.01f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-13.0f) - curveTo(3.01f, 19.5f, 2.0f, 18.49f, 2.0f, 17.25f) - verticalLineToRelative(-13.0f) - curveTo(2.0f, 3.01f, 3.0f, 2.0f, 4.25f, 2.0f) - horizontalLineToRelative(13.0f) - close() - moveTo(17.25f, 3.5f) - horizontalLineToRelative(-13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(13.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(13.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(9.58f, 11.36f) - lineTo(13.47f, 7.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-4.5f, 4.5f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.29f, -1.06f, 0.0f) - lineToRelative(-0.07f, -0.08f) - lineToRelative(-1.5f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, -0.98f) - lineToRelative(0.07f, 0.08f) - lineToRelative(0.98f, 1.3f) - lineToRelative(3.89f, -3.88f) - lineToRelative(-3.89f, 3.89f) - close() - } - } - return _selectAllOn!! - } - -private var _selectAllOn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SelectObject.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SelectObject.kt deleted file mode 100644 index a6579322..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SelectObject.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SelectObject: ImageVector - get() { - if (_selectObject != null) { - return _selectObject!! - } - _selectObject = fluentIcon(name = "Regular.SelectObject") { - fluentPath { - moveTo(7.0f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(8.0f, 4.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(4.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-6.5f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 4.75f, 8.0f) - close() - moveTo(19.25f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(8.75f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.5f) - close() - moveTo(5.0f, 21.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) - close() - moveTo(21.0f, 5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(19.0f, 21.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) - close() - } - } - return _selectObject!! - } - -private var _selectObject: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SelectObjectSkew.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SelectObjectSkew.kt deleted file mode 100644 index 439dcf0d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SelectObjectSkew.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SelectObjectSkew: ImageVector - get() { - if (_selectObjectSkew != null) { - return _selectObjectSkew!! - } - _selectObjectSkew = fluentIcon(name = "Regular.SelectObjectSkew") { - fluentPath { - moveTo(18.88f, 6.66f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.33f, 0.33f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, -1.33f, -0.33f) - close() - moveTo(14.0f, 19.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -4.0f, 0.0f) - close() - moveTo(4.0f, 21.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, 4.0f) - close() - moveTo(6.88f, 6.66f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 3.0f, -0.97f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, -3.0f, 0.97f) - close() - moveTo(6.48f, 7.59f) - lineTo(4.08f, 16.0f) - curveToRelative(0.52f, 0.01f, 1.01f, 0.16f, 1.44f, 0.41f) - lineTo(7.92f, 8.0f) - arcToRelative(2.98f, 2.98f, 0.0f, false, true, -1.44f, -0.41f) - close() - moveTo(17.1f, 5.75f) - horizontalLineToRelative(-6.18f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(6.18f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(13.1f, 19.75f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(6.91f, 18.25f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(6.18f) - close() - moveTo(16.08f, 16.0f) - lineToRelative(2.4f, -8.41f) - curveToRelative(0.43f, 0.25f, 0.92f, 0.4f, 1.44f, 0.4f) - lineToRelative(-2.4f, 8.42f) - curveToRelative(-0.43f, -0.25f, -0.92f, -0.4f, -1.44f, -0.4f) - close() - } - } - return _selectObjectSkew!! - } - -private var _selectObjectSkew: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SelectObjectSkewDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SelectObjectSkewDismiss.kt deleted file mode 100644 index 506355e7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SelectObjectSkewDismiss.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SelectObjectSkewDismiss: ImageVector - get() { - if (_selectObjectSkewDismiss != null) { - return _selectObjectSkewDismiss!! - } - _selectObjectSkewDismiss = fluentIcon(name = "Regular.SelectObjectSkewDismiss") { - fluentPath { - moveTo(18.88f, 6.66f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.33f, 0.33f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, -1.33f, -0.33f) - close() - moveTo(2.0f, 19.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -4.0f, 0.0f) - close() - moveTo(6.88f, 6.66f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 3.0f, -0.97f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, -3.0f, 0.97f) - close() - moveTo(4.08f, 16.0f) - lineToRelative(2.4f, -8.41f) - curveToRelative(0.43f, 0.25f, 0.92f, 0.4f, 1.44f, 0.4f) - lineToRelative(-2.4f, 8.42f) - curveToRelative(-0.43f, -0.25f, -0.92f, -0.4f, -1.44f, -0.4f) - close() - moveTo(17.09f, 5.75f) - horizontalLineToRelative(-6.18f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(6.18f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(11.4f, 19.75f) - curveToRelative(-0.18f, -0.48f, -0.3f, -0.98f, -0.36f, -1.5f) - lineTo(6.91f, 18.25f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(4.49f) - close() - moveTo(19.92f, 8.0f) - lineToRelative(-0.9f, 3.18f) - arcTo(6.52f, 6.52f, 0.0f, false, false, 17.5f, 11.0f) - lineToRelative(0.97f, -3.41f) - curveToRelative(0.43f, 0.25f, 0.92f, 0.4f, 1.44f, 0.4f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-1.64f, -1.65f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.65f, 1.64f) - lineToRelative(-1.65f, -1.64f) - close() - } - } - return _selectObjectSkewDismiss!! - } - -private var _selectObjectSkewDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SelectObjectSkewEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SelectObjectSkewEdit.kt deleted file mode 100644 index db737399..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SelectObjectSkewEdit.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SelectObjectSkewEdit: ImageVector - get() { - if (_selectObjectSkewEdit != null) { - return _selectObjectSkewEdit!! - } - _selectObjectSkewEdit = fluentIcon(name = "Regular.SelectObjectSkewEdit") { - fluentPath { - moveTo(18.88f, 6.66f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.33f, 0.33f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, -1.33f, -0.33f) - close() - moveTo(2.0f, 19.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -4.0f, 0.0f) - close() - moveTo(6.88f, 6.66f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 3.0f, -0.97f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, -3.0f, 0.97f) - close() - moveTo(4.08f, 16.0f) - lineToRelative(2.4f, -8.41f) - curveToRelative(0.43f, 0.25f, 0.92f, 0.4f, 1.44f, 0.4f) - lineToRelative(-2.4f, 8.42f) - curveToRelative(-0.43f, -0.25f, -0.92f, -0.4f, -1.44f, -0.4f) - close() - moveTo(17.09f, 5.75f) - horizontalLineToRelative(-6.18f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(6.18f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(11.52f, 19.58f) - curveToRelative(0.12f, -0.49f, 0.34f, -0.94f, 0.64f, -1.33f) - lineTo(6.9f, 18.25f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(4.57f) - lineToRelative(0.04f, -0.17f) - close() - moveTo(19.92f, 8.0f) - lineToRelative(-1.0f, 3.54f) - arcToRelative(3.3f, 3.3f, 0.0f, false, false, -0.53f, 0.42f) - lineToRelative(-1.62f, 1.63f) - lineToRelative(1.71f, -6.0f) - curveToRelative(0.43f, 0.25f, 0.92f, 0.4f, 1.44f, 0.4f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _selectObjectSkewEdit!! - } - -private var _selectObjectSkewEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SendClock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SendClock.kt deleted file mode 100644 index 546f36d8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SendClock.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SendClock: ImageVector - get() { - if (_sendClock != null) { - return _sendClock!! - } - _sendClock = fluentIcon(name = "Regular.SendClock") { - fluentPath { - moveTo(5.7f, 12.0f) - lineTo(2.3f, 3.27f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.94f, -0.98f) - lineToRelative(0.1f, 0.04f) - lineToRelative(18.0f, 9.0f) - curveToRelative(0.44f, 0.22f, 0.52f, 0.77f, 0.26f, 1.12f) - arcTo(6.47f, 6.47f, 0.0f, false, false, 17.33f, 11.0f) - lineTo(4.4f, 4.54f) - lineToRelative(2.61f, 6.7f) - lineToRelative(6.63f, 0.01f) - curveToRelative(0.35f, 0.0f, 0.64f, 0.24f, 0.72f, 0.56f) - curveToRelative(-0.47f, 0.26f, -0.9f, 0.57f, -1.3f, 0.94f) - horizontalLineTo(7.01f) - lineToRelative(-2.6f, 6.7f) - lineToRelative(6.74f, -3.37f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -0.14f, 1.75f) - lineToRelative(-7.68f, 3.84f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -0.85f) - lineToRelative(0.03f, -0.1f) - lineTo(5.7f, 12.0f) - close() - } - fluentPath { - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(17.5f, 17.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(17.0f, 18.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - verticalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - verticalLineToRelative(2.5f) - close() - } - } - return _sendClock!! - } - -private var _sendClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SendCopy.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SendCopy.kt deleted file mode 100644 index a0929051..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SendCopy.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SendCopy: ImageVector - get() { - if (_sendCopy != null) { - return _sendCopy!! - } - _sendCopy = fluentIcon(name = "Regular.SendCopy") { - fluentPath { - moveTo(19.75f, 11.5f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(5.0f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 15.97f, 22.0f) - lineTo(8.25f, 22.0f) - curveToRelative(-0.98f, 0.0f, -1.81f, -0.63f, -2.12f, -1.5f) - lineTo(15.93f, 20.5f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 19.0f, 17.42f) - lineToRelative(0.01f, -0.18f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(17.25f, 9.5f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(7.0f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - horizontalLineToRelative(-10.0f) - curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) - lineToRelative(-0.01f, -0.15f) - verticalLineToRelative(-7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(7.1f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(10.0f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - verticalLineToRelative(-7.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(6.22f, 6.22f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -0.07f) - lineToRelative(0.09f, 0.07f) - lineToRelative(4.0f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-2.72f, -2.72f) - verticalLineToRelative(9.7f) - curveToRelative(0.0f, 0.37f, -0.28f, 0.69f, -0.65f, 0.74f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-9.7f) - lineTo(7.28f, 7.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(4.0f, -4.0f) - lineToRelative(-4.0f, 4.0f) - close() - } - } - return _sendCopy!! - } - -private var _sendCopy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SerialPort.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SerialPort.kt deleted file mode 100644 index c1dbc856..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SerialPort.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SerialPort: ImageVector - get() { - if (_serialPort != null) { - return _serialPort!! - } - _serialPort = fluentIcon(name = "Regular.SerialPort") { - fluentPath { - moveTo(7.0f, 11.5f) - arcTo(0.75f, 0.75f, 0.0f, true, false, 7.0f, 10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(10.25f, 10.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(8.25f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(11.5f, 13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(13.25f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(16.5f, 13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(12.0f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(15.25f, 10.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(17.0f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(4.9f, 7.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.67f, 3.39f) - lineToRelative(1.07f, 4.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 5.98f, 17.0f) - horizontalLineToRelative(12.04f) - curveToRelative(1.27f, 0.0f, 2.38f, -0.87f, 2.67f, -2.11f) - lineToRelative(1.08f, -4.5f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.68f, -3.4f) - lineTo(4.91f, 6.99f) - close() - moveTo(3.7f, 10.04f) - curveToRelative(-0.2f, -0.79f, 0.4f, -1.54f, 1.2f, -1.54f) - horizontalLineToRelative(14.2f) - curveToRelative(0.8f, 0.0f, 1.4f, 0.75f, 1.2f, 1.54f) - lineToRelative(-1.07f, 4.5f) - curveToRelative(-0.13f, 0.56f, -0.63f, 0.96f, -1.21f, 0.96f) - lineTo(5.98f, 15.5f) - curveToRelative(-0.58f, 0.0f, -1.08f, -0.4f, -1.22f, -0.96f) - lineToRelative(-1.07f, -4.5f) - close() - } - } - return _serialPort!! - } - -private var _serialPort: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Server.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Server.kt deleted file mode 100644 index 9d3ad9c6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Server.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Server: ImageVector - get() { - if (_server != null) { - return _server!! - } - _server = fluentIcon(name = "Regular.Server") { - fluentPath { - moveTo(9.25f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.5f) - close() - moveTo(8.5f, 17.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(9.25f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.5f) - close() - moveTo(6.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) - horizontalLineToRelative(6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - verticalLineToRelative(14.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - lineTo(9.0f, 22.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) - lineTo(6.0f, 5.0f) - close() - moveTo(9.0f, 3.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(14.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(6.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - lineTo(16.5f, 5.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(9.0f, 3.5f) - close() - } - } - return _server!! - } - -private var _server: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ServiceBell.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ServiceBell.kt deleted file mode 100644 index 69a181b8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ServiceBell.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ServiceBell: ImageVector - get() { - if (_serviceBell != null) { - return _serviceBell!! - } - _serviceBell = fluentIcon(name = "Regular.ServiceBell") { - fluentPath { - moveTo(11.75f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - arcToRelative(4.4f, 4.4f, 0.0f, false, true, 3.4f, 1.76f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.24f, -0.86f) - arcToRelative(5.9f, 5.9f, 0.0f, false, false, -4.64f, -2.4f) - close() - moveTo(9.5f, 4.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - verticalLineToRelative(0.88f) - arcToRelative(8.25f, 8.25f, 0.0f, false, true, 5.75f, 7.87f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - curveToRelative(0.0f, -3.68f, 2.42f, -6.8f, 5.75f, -7.86f) - lineTo(9.5f, 4.5f) - close() - moveTo(13.0f, 4.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(0.56f) - arcToRelative(8.33f, 8.33f, 0.0f, false, true, 2.0f, 0.0f) - lineTo(13.0f, 4.5f) - close() - moveTo(5.3f, 12.5f) - horizontalLineToRelative(13.4f) - arcToRelative(6.73f, 6.73f, 0.0f, false, false, -6.68f, -6.0f) - arcToRelative(6.77f, 6.77f, 0.0f, false, false, -6.73f, 6.0f) - close() - moveTo(4.0f, 15.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, 4.0f) - horizontalLineToRelative(16.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) - lineTo(4.0f, 15.0f) - close() - moveTo(3.5f, 17.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(16.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(4.0f, 17.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - close() - } - } - return _serviceBell!! - } - -private var _serviceBell: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SettingsChat.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SettingsChat.kt deleted file mode 100644 index d18f19d3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SettingsChat.kt +++ /dev/null @@ -1,105 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SettingsChat: ImageVector - get() { - if (_settingsChat != null) { - return _settingsChat!! - } - _settingsChat = fluentIcon(name = "Regular.SettingsChat") { - fluentPath { - moveTo(12.01f, 2.25f) - curveToRelative(0.74f, 0.0f, 1.47f, 0.1f, 2.18f, 0.25f) - curveToRelative(0.32f, 0.07f, 0.55f, 0.33f, 0.59f, 0.65f) - lineToRelative(0.17f, 1.53f) - arcToRelative(1.38f, 1.38f, 0.0f, false, false, 1.92f, 1.11f) - lineToRelative(1.4f, -0.61f) - curveToRelative(0.3f, -0.13f, 0.64f, -0.06f, 0.85f, 0.17f) - arcToRelative(9.8f, 9.8f, 0.0f, false, true, 2.2f, 3.8f) - curveToRelative(0.1f, 0.3f, 0.0f, 0.63f, -0.26f, 0.82f) - lineToRelative(-1.24f, 0.92f) - curveToRelative(-0.16f, 0.1f, -0.28f, 0.25f, -0.37f, 0.4f) - curveToRelative(-0.49f, -0.15f, -1.0f, -0.24f, -1.52f, -0.28f) - curveToRelative(0.19f, -0.52f, 0.53f, -1.0f, 1.0f, -1.33f) - lineToRelative(0.8f, -0.59f) - arcToRelative(8.3f, 8.3f, 0.0f, false, false, -1.35f, -2.32f) - lineToRelative(-0.9f, 0.4f) - arcToRelative(2.88f, 2.88f, 0.0f, false, true, -4.02f, -2.32f) - lineToRelative(-0.11f, -0.98f) - arcTo(9.0f, 9.0f, 0.0f, false, false, 12.0f, 3.75f) - curveToRelative(-0.45f, 0.0f, -0.9f, 0.04f, -1.35f, 0.12f) - lineToRelative(-0.11f, 0.97f) - arcToRelative(2.89f, 2.89f, 0.0f, false, true, -4.02f, 2.33f) - lineToRelative(-0.9f, -0.4f) - arcTo(8.3f, 8.3f, 0.0f, false, false, 4.28f, 9.1f) - lineToRelative(0.8f, 0.59f) - arcToRelative(2.88f, 2.88f, 0.0f, false, true, 0.0f, 4.64f) - lineToRelative(-0.8f, 0.59f) - arcToRelative(8.3f, 8.3f, 0.0f, false, false, 1.35f, 2.32f) - lineToRelative(0.9f, -0.4f) - arcToRelative(2.88f, 2.88f, 0.0f, false, true, 4.02f, 2.32f) - lineToRelative(0.1f, 0.99f) - curveToRelative(0.32f, 0.05f, 0.64f, 0.08f, 0.95f, 0.1f) - lineToRelative(0.02f, 0.02f) - lineToRelative(-0.45f, 1.45f) - arcToRelative(9.53f, 9.53f, 0.0f, false, true, -1.37f, -0.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.57f, -0.65f) - lineToRelative(-0.17f, -1.52f) - arcToRelative(1.38f, 1.38f, 0.0f, false, false, -1.93f, -1.11f) - lineToRelative(-1.4f, 0.62f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.85f, -0.18f) - arcToRelative(9.8f, 9.8f, 0.0f, false, true, -2.2f, -3.8f) - curveToRelative(-0.1f, -0.3f, 0.0f, -0.63f, 0.27f, -0.82f) - lineToRelative(1.24f, -0.92f) - arcToRelative(1.38f, 1.38f, 0.0f, false, false, 0.0f, -2.22f) - lineToRelative(-1.24f, -0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.28f, -0.82f) - arcToRelative(9.8f, 9.8f, 0.0f, false, true, 2.2f, -3.8f) - curveToRelative(0.23f, -0.23f, 0.57f, -0.3f, 0.86f, -0.17f) - lineToRelative(1.4f, 0.62f) - curveToRelative(0.4f, 0.17f, 0.86f, 0.15f, 1.25f, -0.08f) - curveToRelative(0.38f, -0.22f, 0.63f, -0.6f, 0.68f, -1.04f) - lineToRelative(0.17f, -1.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.58f, -0.65f) - curveToRelative(0.72f, -0.16f, 1.45f, -0.24f, 2.2f, -0.25f) - close() - moveTo(17.75f, 12.01f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -2.92f, 10.3f) - lineToRelative(-2.18f, 0.67f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.63f, -0.62f) - lineToRelative(0.67f, -2.2f) - arcTo(5.5f, 5.5f, 0.0f, false, true, 17.75f, 12.0f) - close() - moveTo(17.5f, 18.01f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.8f) - curveToRelative(0.1f, 0.12f, 0.24f, 0.2f, 0.4f, 0.2f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) - close() - moveTo(15.5f, 17.01f) - horizontalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.36f, 0.83f) - curveToRelative(0.09f, 0.1f, 0.22f, 0.16f, 0.36f, 0.16f) - close() - moveTo(12.0f, 8.24f) - curveToRelative(1.82f, 0.0f, 3.33f, 1.3f, 3.68f, 3.0f) - curveToRelative(-0.5f, 0.16f, -0.99f, 0.36f, -1.43f, 0.62f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, -2.38f, 2.38f) - curveToRelative(-0.26f, 0.44f, -0.46f, 0.92f, -0.61f, 1.43f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 12.0f, 8.25f) - close() - } - } - return _settingsChat!! - } - -private var _settingsChat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShapeExclude.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShapeExclude.kt deleted file mode 100644 index 6dc1917a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShapeExclude.kt +++ /dev/null @@ -1,117 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShapeExclude: ImageVector - get() { - if (_shapeExclude != null) { - return _shapeExclude!! - } - _shapeExclude = fluentIcon(name = "Regular.ShapeExclude") { - fluentPath { - moveTo(2.0f, 5.25f) - curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) - horizontalLineToRelative(8.0f) - arcToRelative(3.3f, 3.3f, 0.0f, false, true, 1.82f, 0.56f) - arcToRelative(3.27f, 3.27f, 0.0f, false, true, 1.42f, 2.4f) - lineToRelative(0.01f, 0.29f) - lineTo(16.5f, 7.5f) - horizontalLineToRelative(2.25f) - arcTo(3.24f, 3.24f, 0.0f, false, true, 22.0f, 10.75f) - verticalLineToRelative(8.0f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-8.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.25f, -3.25f) - lineTo(7.5f, 16.5f) - lineTo(5.25f, 16.5f) - arcToRelative(3.28f, 3.28f, 0.0f, false, true, -1.7f, -0.48f) - horizontalLineToRelative(-0.02f) - arcToRelative(3.27f, 3.27f, 0.0f, false, true, -1.52f, -2.47f) - lineToRelative(-0.01f, -0.3f) - verticalLineToRelative(-8.0f) - close() - moveTo(3.5f, 8.06f) - verticalLineToRelative(1.88f) - lineTo(9.94f, 3.5f) - lineTo(8.06f, 3.5f) - lineTo(3.5f, 8.06f) - close() - moveTo(5.94f, 3.5f) - horizontalLineToRelative(-0.69f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(0.69f) - lineTo(5.94f, 3.5f) - close() - moveTo(12.06f, 3.5f) - lineTo(3.5f, 12.06f) - verticalLineToRelative(1.19f) - curveToRelative(0.0f, 0.2f, 0.04f, 0.4f, 0.1f, 0.59f) - lineTo(7.64f, 9.8f) - arcTo(3.26f, 3.26f, 0.0f, false, true, 9.8f, 7.64f) - lineToRelative(4.04f, -4.04f) - curveToRelative(-0.19f, -0.06f, -0.38f, -0.1f, -0.59f, -0.1f) - horizontalLineToRelative(-1.19f) - close() - moveTo(14.9f, 4.66f) - lineTo(12.06f, 7.5f) - horizontalLineToRelative(1.88f) - lineTo(15.0f, 6.44f) - lineTo(15.0f, 5.25f) - curveToRelative(0.0f, -0.2f, -0.04f, -0.4f, -0.1f, -0.59f) - close() - moveTo(7.5f, 12.06f) - lineTo(4.66f, 14.9f) - curveToRelative(0.19f, 0.06f, 0.38f, 0.1f, 0.59f, 0.1f) - horizontalLineToRelative(1.19f) - lineToRelative(1.06f, -1.06f) - verticalLineToRelative(-1.88f) - close() - moveTo(9.0f, 18.56f) - verticalLineToRelative(0.19f) - curveToRelative(0.0f, 0.47f, 0.18f, 0.9f, 0.48f, 1.2f) - lineToRelative(3.46f, -3.45f) - horizontalLineToRelative(-1.88f) - lineTo(9.0f, 18.56f) - close() - moveTo(16.5f, 12.94f) - lineTo(19.96f, 9.48f) - curveToRelative(-0.32f, -0.3f, -0.74f, -0.48f, -1.21f, -0.48f) - horizontalLineToRelative(-0.19f) - lineToRelative(-2.06f, 2.06f) - verticalLineToRelative(1.88f) - close() - moveTo(20.5f, 11.06f) - lineTo(11.06f, 20.5f) - horizontalLineToRelative(1.88f) - lineToRelative(7.56f, -7.56f) - verticalLineToRelative(-1.88f) - close() - moveTo(20.5f, 15.06f) - lineTo(15.06f, 20.5f) - horizontalLineToRelative(1.88f) - lineToRelative(3.56f, -3.56f) - verticalLineToRelative(-1.88f) - close() - moveTo(20.47f, 19.09f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.38f, 1.38f) - lineToRelative(1.38f, -1.38f) - close() - moveTo(9.0f, 10.75f) - lineTo(9.0f, 15.0f) - horizontalLineToRelative(4.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(15.0f, 9.0f) - horizontalLineToRelative(-4.25f) - curveTo(9.78f, 9.0f, 9.0f, 9.78f, 9.0f, 10.75f) - close() - } - } - return _shapeExclude!! - } - -private var _shapeExclude: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShapeIntersect.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShapeIntersect.kt deleted file mode 100644 index 53597f83..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShapeIntersect.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShapeIntersect: ImageVector - get() { - if (_shapeIntersect != null) { - return _shapeIntersect!! - } - _shapeIntersect = fluentIcon(name = "Regular.ShapeIntersect") { - fluentPath { - moveTo(2.0f, 5.25f) - curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) - horizontalLineToRelative(8.0f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - lineTo(16.5f, 7.5f) - horizontalLineToRelative(2.25f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(8.0f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-8.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.25f, -3.25f) - lineTo(7.5f, 16.5f) - lineTo(5.25f, 16.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 13.25f) - verticalLineToRelative(-8.0f) - close() - moveTo(15.0f, 5.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-8.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(8.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(7.5f, 15.0f) - verticalLineToRelative(-4.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.25f, -3.25f) - lineTo(15.0f, 7.5f) - lineTo(15.0f, 5.25f) - close() - moveTo(9.0f, 14.56f) - lineTo(9.0f, 15.0f) - horizontalLineToRelative(1.44f) - lineTo(15.0f, 10.44f) - lineTo(15.0f, 9.0f) - horizontalLineToRelative(-0.44f) - lineTo(9.0f, 14.56f) - close() - moveTo(12.44f, 9.0f) - horizontalLineToRelative(-1.69f) - lineToRelative(-0.2f, 0.01f) - lineTo(9.0f, 10.55f) - lineToRelative(-0.01f, 0.2f) - verticalLineToRelative(1.69f) - lineTo(12.44f, 9.0f) - close() - moveTo(16.5f, 9.0f) - verticalLineToRelative(4.25f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(9.0f, 16.5f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(8.0f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-8.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(16.5f, 9.0f) - close() - moveTo(12.56f, 15.0f) - horizontalLineToRelative(0.69f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-0.69f) - lineTo(12.56f, 15.0f) - close() - } - } - return _shapeIntersect!! - } - -private var _shapeIntersect: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShapeSubtract.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShapeSubtract.kt deleted file mode 100644 index a37bb5b4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShapeSubtract.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShapeSubtract: ImageVector - get() { - if (_shapeSubtract != null) { - return _shapeSubtract!! - } - _shapeSubtract = fluentIcon(name = "Regular.ShapeSubtract") { - fluentPath { - moveTo(5.25f, 2.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) - verticalLineToRelative(8.0f) - arcToRelative(3.3f, 3.3f, 0.0f, false, false, 0.56f, 1.82f) - arcToRelative(3.27f, 3.27f, 0.0f, false, false, 2.4f, 1.42f) - lineToRelative(0.29f, 0.01f) - lineTo(7.5f, 16.5f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(8.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-8.0f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - lineTo(16.5f, 7.5f) - lineTo(16.5f, 5.25f) - arcToRelative(3.28f, 3.28f, 0.0f, false, false, -1.54f, -2.77f) - arcToRelative(3.29f, 3.29f, 0.0f, false, false, -1.7f, -0.48f) - lineTo(5.24f, 2.0f) - close() - moveTo(5.94f, 3.5f) - lineTo(3.5f, 5.94f) - verticalLineToRelative(-0.69f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(0.69f) - close() - moveTo(3.5f, 8.06f) - lineTo(8.06f, 3.5f) - horizontalLineToRelative(1.88f) - lineTo(3.5f, 9.94f) - lineTo(3.5f, 8.06f) - close() - moveTo(12.06f, 3.5f) - horizontalLineToRelative(1.19f) - curveToRelative(0.2f, 0.0f, 0.4f, 0.04f, 0.59f, 0.1f) - lineTo(9.8f, 7.64f) - arcTo(3.26f, 3.26f, 0.0f, false, false, 7.64f, 9.8f) - lineTo(3.6f, 13.84f) - curveToRelative(-0.06f, -0.19f, -0.1f, -0.38f, -0.1f, -0.59f) - verticalLineToRelative(-1.19f) - lineToRelative(8.56f, -8.56f) - close() - moveTo(14.9f, 4.66f) - curveToRelative(0.06f, 0.19f, 0.1f, 0.38f, 0.1f, 0.59f) - verticalLineToRelative(1.19f) - lineTo(13.94f, 7.5f) - horizontalLineToRelative(-1.88f) - lineToRelative(2.84f, -2.84f) - close() - moveTo(7.5f, 12.06f) - verticalLineToRelative(1.88f) - lineTo(6.44f, 15.0f) - lineTo(5.25f, 15.0f) - curveToRelative(-0.2f, 0.0f, -0.4f, -0.04f, -0.59f, -0.1f) - lineToRelative(2.84f, -2.84f) - close() - moveTo(9.0f, 10.75f) - curveTo(9.0f, 9.78f, 9.78f, 9.0f, 10.75f, 9.0f) - horizontalLineToRelative(8.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(8.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-8.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-8.0f) - close() - } - } - return _shapeSubtract!! - } - -private var _shapeSubtract: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShapeUnion.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShapeUnion.kt deleted file mode 100644 index 9c5ed307..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShapeUnion.kt +++ /dev/null @@ -1,101 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShapeUnion: ImageVector - get() { - if (_shapeUnion != null) { - return _shapeUnion!! - } - _shapeUnion = fluentIcon(name = "Regular.ShapeUnion") { - fluentPath { - moveTo(5.25f, 2.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) - verticalLineToRelative(8.0f) - arcToRelative(3.3f, 3.3f, 0.0f, false, false, 0.56f, 1.82f) - arcToRelative(3.27f, 3.27f, 0.0f, false, false, 2.4f, 1.42f) - lineToRelative(0.29f, 0.01f) - lineTo(7.5f, 16.5f) - verticalLineToRelative(2.25f) - arcTo(3.24f, 3.24f, 0.0f, false, false, 10.75f, 22.0f) - horizontalLineToRelative(8.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-8.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.25f, -3.25f) - lineTo(16.5f, 7.5f) - lineTo(16.5f, 5.25f) - arcToRelative(3.28f, 3.28f, 0.0f, false, false, -1.54f, -2.77f) - arcToRelative(3.29f, 3.29f, 0.0f, false, false, -1.7f, -0.48f) - lineTo(5.24f, 2.0f) - close() - moveTo(5.94f, 3.5f) - lineTo(3.5f, 5.94f) - verticalLineToRelative(-0.69f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(0.69f) - close() - moveTo(3.5f, 8.06f) - lineTo(8.06f, 3.5f) - horizontalLineToRelative(1.88f) - lineTo(3.5f, 9.94f) - lineTo(3.5f, 8.06f) - close() - moveTo(12.06f, 3.5f) - horizontalLineToRelative(1.19f) - curveToRelative(0.2f, 0.0f, 0.4f, 0.04f, 0.59f, 0.1f) - lineTo(3.6f, 13.84f) - curveToRelative(-0.06f, -0.19f, -0.1f, -0.38f, -0.1f, -0.59f) - verticalLineToRelative(-1.19f) - lineToRelative(8.56f, -8.56f) - close() - moveTo(14.9f, 4.66f) - curveToRelative(0.06f, 0.19f, 0.1f, 0.38f, 0.1f, 0.59f) - verticalLineToRelative(1.19f) - lineTo(6.44f, 15.0f) - lineTo(5.25f, 15.0f) - curveToRelative(-0.2f, 0.0f, -0.4f, -0.04f, -0.59f, -0.1f) - lineTo(14.9f, 4.66f) - close() - moveTo(15.0f, 8.56f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, 0.44f) - horizontalLineToRelative(0.94f) - lineTo(9.0f, 16.44f) - verticalLineToRelative(-0.94f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.44f, -0.5f) - lineTo(15.0f, 8.56f) - close() - moveTo(18.56f, 9.0f) - horizontalLineToRelative(0.19f) - curveToRelative(0.47f, 0.0f, 0.9f, 0.18f, 1.2f, 0.48f) - lineTo(9.49f, 19.96f) - curveToRelative(-0.3f, -0.32f, -0.48f, -0.74f, -0.48f, -1.21f) - verticalLineToRelative(-0.19f) - lineTo(18.56f, 9.0f) - close() - moveTo(20.5f, 11.06f) - verticalLineToRelative(1.88f) - lineToRelative(-7.56f, 7.56f) - horizontalLineToRelative(-1.88f) - lineToRelative(9.44f, -9.44f) - close() - moveTo(20.5f, 15.06f) - verticalLineToRelative(1.88f) - lineToRelative(-3.56f, 3.56f) - horizontalLineToRelative(-1.88f) - lineToRelative(5.44f, -5.44f) - close() - moveTo(20.47f, 19.09f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.38f, 1.38f) - lineToRelative(1.38f, -1.38f) - close() - } - } - return _shapeUnion!! - } - -private var _shapeUnion: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Shapes.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Shapes.kt deleted file mode 100644 index b8e2eeee..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Shapes.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Shapes: ImageVector - get() { - if (_shapes != null) { - return _shapes!! - } - _shapes = fluentIcon(name = "Regular.Shapes") { - fluentPath { - moveTo(8.75f, 3.5f) - arcTo(5.25f, 5.25f, 0.0f, false, false, 8.0f, 13.95f) - verticalLineToRelative(1.5f) - arcTo(6.75f, 6.75f, 0.0f, true, true, 15.46f, 8.0f) - horizontalLineToRelative(-1.51f) - arcToRelative(5.25f, 5.25f, 0.0f, false, false, -5.2f, -4.5f) - close() - moveTo(12.25f, 9.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 9.0f, 12.25f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(6.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-6.5f) - curveTo(22.0f, 10.45f, 20.54f, 9.0f, 18.75f, 9.0f) - horizontalLineToRelative(-6.5f) - close() - moveTo(10.5f, 12.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(6.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-6.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-6.5f) - close() - } - } - return _shapes!! - } - -private var _shapes: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShareAndroid.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShareAndroid.kt deleted file mode 100644 index 0f7d761d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShareAndroid.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShareAndroid: ImageVector - get() { - if (_shareAndroid != null) { - return _shareAndroid!! - } - _shareAndroid = fluentIcon(name = "Regular.ShareAndroid") { - fluentPath { - moveTo(17.0f, 2.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, -2.6f, 5.85f) - lineToRelative(-4.56f, 2.6f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 0.0f, 2.1f) - lineToRelative(4.56f, 2.6f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 20.5f, 18.0f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, -6.84f, -1.05f) - lineToRelative(-4.56f, -2.6f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 3.0f, 12.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 6.1f, -2.35f) - lineToRelative(4.56f, -2.6f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 17.0f, 2.5f) - close() - moveTo(17.0f, 16.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, -4.0f) - close() - moveTo(6.5f, 10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, -4.0f) - close() - moveTo(17.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, -4.0f) - close() - } - } - return _shareAndroid!! - } - -private var _shareAndroid: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShareCloseTray.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShareCloseTray.kt deleted file mode 100644 index 2d8c98ef..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShareCloseTray.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShareCloseTray: ImageVector - get() { - if (_shareCloseTray != null) { - return _shareCloseTray!! - } - _shareCloseTray = fluentIcon(name = "Regular.ShareCloseTray") { - fluentPath { - moveTo(2.0f, 17.75f) - curveTo(2.0f, 18.99f, 3.0f, 20.0f, 4.25f, 20.0f) - horizontalLineToRelative(15.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(22.0f, 6.25f) - curveTo(22.0f, 5.01f, 21.0f, 4.0f, 19.75f, 4.0f) - lineTo(4.25f, 4.0f) - curveTo(3.01f, 4.0f, 2.0f, 5.0f, 2.0f, 6.25f) - verticalLineToRelative(11.5f) - close() - moveTo(4.25f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(3.5f, 6.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(15.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(4.25f, 18.5f) - close() - moveTo(12.0f, 16.75f) - curveToRelative(0.2f, 0.0f, 0.39f, -0.07f, 0.53f, -0.22f) - lineToRelative(3.25f, -3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-1.97f, 1.97f) - lineTo(12.75f, 7.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(6.44f) - lineToRelative(-1.97f, -1.97f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(3.25f, 3.25f) - curveToRelative(0.14f, 0.15f, 0.33f, 0.22f, 0.53f, 0.22f) - close() - } - } - return _shareCloseTray!! - } - -private var _shareCloseTray: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShareIos.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShareIos.kt deleted file mode 100644 index 88fdb0be..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShareIos.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShareIos: ImageVector - get() { - if (_shareIos != null) { - return _shareIos!! - } - _shareIos = fluentIcon(name = "Regular.ShareIos") { - fluentPath { - moveTo(19.75f, 11.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.75f, 0.65f) - verticalLineToRelative(7.1f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 17.44f, 22.0f) - horizontalLineTo(6.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.06f) - verticalLineToRelative(-7.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.49f, -0.1f) - verticalLineToRelative(7.1f) - curveToRelative(0.0f, 0.92f, 0.71f, 1.67f, 1.61f, 1.75f) - horizontalLineToRelative(11.14f) - curveToRelative(0.92f, 0.0f, 1.68f, -0.7f, 1.75f, -1.6f) - verticalLineToRelative(-7.15f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(6.22f, 7.22f) - lineToRelative(5.0f, -5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -0.07f) - lineToRelative(0.09f, 0.07f) - lineToRelative(5.0f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-3.72f, -3.72f) - verticalLineToRelative(11.7f) - curveToRelative(0.0f, 0.37f, -0.28f, 0.69f, -0.65f, 0.74f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) - lineToRelative(-0.01f, -0.1f) - verticalLineTo(4.55f) - lineTo(7.28f, 8.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(5.0f, -5.0f) - lineToRelative(-5.0f, 5.0f) - close() - } - } - return _shareIos!! - } - -private var _shareIos: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShareScreenPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShareScreenPerson.kt deleted file mode 100644 index 9ca3923e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShareScreenPerson.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShareScreenPerson: ImageVector - get() { - if (_shareScreenPerson != null) { - return _shareScreenPerson!! - } - _shareScreenPerson = fluentIcon(name = "Regular.ShareScreenPerson") { - fluentPath { - moveTo(5.25f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) - lineTo(13.0f, 20.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, -0.13f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.46f, 0.11f, -0.89f, 0.3f, -1.27f) - lineTo(5.26f, 18.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.38f) - arcTo(3.5f, 3.5f, 0.0f, false, true, 22.0f, 14.5f) - lineTo(22.0f, 7.25f) - curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) - lineTo(5.25f, 4.0f) - close() - moveTo(21.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(23.0f, 19.88f) - curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) - reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _shareScreenPerson!! - } - -private var _shareScreenPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShareScreenPersonOverlay.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShareScreenPersonOverlay.kt deleted file mode 100644 index d1736c52..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShareScreenPersonOverlay.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShareScreenPersonOverlay: ImageVector - get() { - if (_shareScreenPersonOverlay != null) { - return _shareScreenPersonOverlay!! - } - _shareScreenPersonOverlay = fluentIcon(name = "Regular.ShareScreenPersonOverlay") { - fluentPath { - moveTo(2.0f, 7.25f) - curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) - horizontalLineToRelative(13.5f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(7.25f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -1.5f, -2.87f) - lineTo(20.5f, 7.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(5.25f, 5.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(8.06f) - curveToRelative(-0.2f, 0.38f, -0.31f, 0.81f, -0.31f, 1.27f) - verticalLineToRelative(0.1f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 0.13f) - lineTo(5.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - close() - moveTo(18.5f, 17.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) - close() - moveTo(18.5f, 23.0f) - curveToRelative(3.21f, 0.0f, 4.5f, -1.57f, 4.5f, -3.13f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, -0.8f, -1.77f, -1.77f, -1.77f) - horizontalLineToRelative(-5.46f) - curveToRelative(-0.98f, 0.0f, -1.77f, 0.8f, -1.77f, 1.77f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 1.57f, 1.29f, 3.13f, 4.5f, 3.13f) - close() - moveTo(6.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - lineTo(12.0f, 8.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(6.0f, 7.0f) - close() - } - } - return _shareScreenPersonOverlay!! - } - -private var _shareScreenPersonOverlay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShareScreenPersonOverlayInside.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShareScreenPersonOverlayInside.kt deleted file mode 100644 index f7d865ac..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShareScreenPersonOverlayInside.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShareScreenPersonOverlayInside: ImageVector - get() { - if (_shareScreenPersonOverlayInside != null) { - return _shareScreenPersonOverlayInside!! - } - _shareScreenPersonOverlayInside = fluentIcon(name = - "Regular.ShareScreenPersonOverlayInside") { - fluentPath { - moveTo(16.0f, 12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) - close() - moveTo(13.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(4.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(0.25f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 16.25f, 17.0f) - horizontalLineToRelative(-0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 13.0f, 14.25f) - lineTo(13.0f, 14.0f) - close() - moveTo(6.25f, 7.0f) - curveTo(5.56f, 7.0f, 5.0f, 7.56f, 5.0f, 8.25f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(4.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-3.5f) - curveTo(12.0f, 7.56f, 11.44f, 7.0f, 10.75f, 7.0f) - horizontalLineToRelative(-4.5f) - close() - moveTo(5.25f, 4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) - horizontalLineToRelative(13.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-9.5f) - curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) - lineTo(5.25f, 4.0f) - close() - moveTo(3.5f, 7.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(5.25f, 18.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-9.5f) - close() - } - } - return _shareScreenPersonOverlayInside!! - } - -private var _shareScreenPersonOverlayInside: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShareScreenPersonP.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShareScreenPersonP.kt deleted file mode 100644 index 5625a6fb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShareScreenPersonP.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShareScreenPersonP: ImageVector - get() { - if (_shareScreenPersonP != null) { - return _shareScreenPersonP!! - } - _shareScreenPersonP = fluentIcon(name = "Regular.ShareScreenPersonP") { - fluentPath { - moveTo(2.0f, 7.25f) - curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) - horizontalLineToRelative(13.5f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(7.25f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -1.5f, -2.87f) - lineTo(20.5f, 7.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(5.25f, 5.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(8.06f) - curveToRelative(-0.2f, 0.38f, -0.31f, 0.81f, -0.31f, 1.27f) - verticalLineToRelative(0.1f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 0.13f) - lineTo(5.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - close() - moveTo(18.5f, 17.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) - close() - moveTo(18.5f, 23.0f) - curveToRelative(3.21f, 0.0f, 4.5f, -1.57f, 4.5f, -3.13f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, -0.8f, -1.77f, -1.77f, -1.77f) - horizontalLineToRelative(-5.46f) - curveToRelative(-0.98f, 0.0f, -1.77f, 0.8f, -1.77f, 1.77f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 1.57f, 1.29f, 3.13f, 4.5f, 3.13f) - close() - moveTo(7.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(8.5f, 13.5f) - horizontalLineToRelative(1.25f) - arcToRelative(2.75f, 2.75f, 0.0f, true, false, 0.0f, -5.5f) - horizontalLineToRelative(-2.0f) - close() - moveTo(9.75f, 12.0f) - lineTo(8.5f, 12.0f) - lineTo(8.5f, 9.5f) - horizontalLineToRelative(1.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - close() - } - } - return _shareScreenPersonP!! - } - -private var _shareScreenPersonP: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShareScreenStart.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShareScreenStart.kt deleted file mode 100644 index 77b39333..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShareScreenStart.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShareScreenStart: ImageVector - get() { - if (_shareScreenStart != null) { - return _shareScreenStart!! - } - _shareScreenStart = fluentIcon(name = "Regular.ShareScreenStart") { - fluentPath { - moveTo(2.0f, 6.25f) - curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) - horizontalLineToRelative(15.5f) - curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(4.25f, 20.0f) - curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) - lineTo(2.0f, 6.25f) - close() - moveTo(4.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(15.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(20.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(4.25f, 5.5f) - close() - moveTo(12.0f, 7.25f) - curveToRelative(0.2f, 0.0f, 0.39f, 0.07f, 0.53f, 0.22f) - lineToRelative(3.25f, 3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-1.97f, -1.97f) - verticalLineToRelative(6.44f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(11.25f, 9.81f) - lineToRelative(-1.97f, 1.97f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(3.25f, -3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.53f, -0.22f) - close() - } - } - return _shareScreenStart!! - } - -private var _shareScreenStart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShareScreenStop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShareScreenStop.kt deleted file mode 100644 index 2d617f85..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShareScreenStop.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShareScreenStop: ImageVector - get() { - if (_shareScreenStop != null) { - return _shareScreenStop!! - } - _shareScreenStop = fluentIcon(name = "Regular.ShareScreenStop") { - fluentPath { - moveTo(2.0f, 6.25f) - curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) - horizontalLineToRelative(15.5f) - curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(4.25f, 20.0f) - curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) - lineTo(2.0f, 6.25f) - close() - moveTo(4.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(15.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(20.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(4.25f, 5.5f) - close() - moveTo(8.22f, 8.22f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineTo(12.0f, 10.94f) - lineToRelative(2.72f, -2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) - lineTo(13.06f, 12.0f) - lineToRelative(2.72f, 2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(12.0f, 13.06f) - lineToRelative(-2.72f, 2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineTo(10.94f, 12.0f) - lineTo(8.22f, 9.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - } - } - return _shareScreenStop!! - } - -private var _shareScreenStop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Shield.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Shield.kt deleted file mode 100644 index 25c2ea53..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Shield.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Shield: ImageVector - get() { - if (_shield != null) { - return _shield!! - } - _shield = fluentIcon(name = "Regular.Shield") { - fluentPath { - moveTo(3.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - curveToRelative(2.66f, 0.0f, 5.26f, -0.94f, 7.8f, -2.85f) - curveToRelative(0.27f, -0.2f, 0.63f, -0.2f, 0.9f, 0.0f) - curveTo(14.99f, 4.05f, 17.59f, 5.0f, 20.25f, 5.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(21.0f, 11.0f) - curveToRelative(0.0f, 5.0f, -2.96f, 8.68f, -8.73f, 10.95f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.0f) - curveTo(5.96f, 19.68f, 3.0f, 16.0f, 3.0f, 11.0f) - lineTo(3.0f, 5.75f) - close() - moveTo(4.5f, 6.48f) - lineTo(4.5f, 11.0f) - curveToRelative(0.0f, 4.26f, 2.45f, 7.38f, 7.5f, 9.44f) - curveToRelative(5.05f, -2.06f, 7.5f, -5.18f, 7.5f, -9.44f) - lineTo(19.5f, 6.48f) - arcToRelative(14.36f, 14.36f, 0.0f, false, true, -7.5f, -2.8f) - arcToRelative(14.36f, 14.36f, 0.0f, false, true, -7.5f, 2.8f) - close() - } - } - return _shield!! - } - -private var _shield: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldAdd.kt deleted file mode 100644 index fb5d9587..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldAdd.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShieldAdd: ImageVector - get() { - if (_shieldAdd != null) { - return _shieldAdd!! - } - _shieldAdd = fluentIcon(name = "Regular.ShieldAdd") { - fluentPath { - moveTo(3.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - curveToRelative(2.66f, 0.0f, 5.26f, -0.94f, 7.8f, -2.85f) - curveToRelative(0.27f, -0.2f, 0.63f, -0.2f, 0.9f, 0.0f) - curveTo(14.99f, 4.05f, 17.59f, 5.0f, 20.25f, 5.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(21.0f, 11.0f) - curveToRelative(0.0f, 0.34f, -0.01f, 0.67f, -0.04f, 1.0f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, -1.46f, -0.69f) - lineTo(19.5f, 6.48f) - arcToRelative(14.36f, 14.36f, 0.0f, false, true, -7.5f, -2.8f) - arcToRelative(14.36f, 14.36f, 0.0f, false, true, -7.5f, 2.8f) - lineTo(4.5f, 11.0f) - curveToRelative(0.0f, 4.15f, 2.33f, 7.22f, 7.13f, 9.28f) - curveToRelative(0.26f, 0.56f, 0.6f, 1.07f, 1.0f, 1.52f) - lineToRelative(-0.36f, 0.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.0f) - curveTo(5.96f, 19.68f, 3.0f, 16.0f, 3.0f, 11.0f) - lineTo(3.0f, 5.75f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _shieldAdd!! - } - -private var _shieldAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldBadge.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldBadge.kt deleted file mode 100644 index 7f89d18f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldBadge.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShieldBadge: ImageVector - get() { - if (_shieldBadge != null) { - return _shieldBadge!! - } - _shieldBadge = fluentIcon(name = "Regular.ShieldBadge") { - fluentPath { - moveTo(4.75f, 5.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 7.75f) - verticalLineToRelative(4.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 15.0f) - lineTo(11.0f, 15.0f) - verticalLineToRelative(-1.5f) - lineTo(4.75f, 13.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(12.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(1.33f) - curveToRelative(0.46f, 0.55f, 1.0f, 0.9f, 1.5f, 1.13f) - lineTo(20.0f, 7.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 17.25f, 5.0f) - lineTo(4.75f, 5.0f) - close() - moveTo(17.0f, 9.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.61f, 0.32f) - horizontalLineToRelative(-0.01f) - arcToRelative(5.64f, 5.64f, 0.0f, false, true, -0.96f, 0.95f) - curveToRelative(-0.65f, 0.51f, -1.56f, 0.98f, -2.67f, 0.98f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(12.0f, 15.0f) - curveToRelative(0.0f, 1.64f, 0.44f, 2.95f, 1.3f, 3.98f) - arcToRelative(7.98f, 7.98f, 0.0f, false, false, 3.44f, 2.22f) - curveToRelative(0.17f, 0.07f, 0.35f, 0.07f, 0.52f, 0.0f) - curveToRelative(1.4f, -0.52f, 2.6f, -1.2f, 3.44f, -2.22f) - arcTo(5.97f, 5.97f, 0.0f, false, false, 22.0f, 15.0f) - verticalLineToRelative(-2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - arcToRelative(4.37f, 4.37f, 0.0f, false, true, -2.67f, -0.97f) - arcToRelative(5.64f, 5.64f, 0.0f, false, true, -0.96f, -0.95f) - verticalLineToRelative(-0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.62f, -0.32f) - close() - moveTo(16.33f, 11.72f) - curveToRelative(0.26f, -0.2f, 0.49f, -0.4f, 0.67f, -0.59f) - arcToRelative(6.02f, 6.02f, 0.0f, false, false, 3.5f, 1.81f) - lineTo(20.5f, 15.0f) - curveToRelative(0.0f, 1.36f, -0.35f, 2.3f, -0.95f, 3.02f) - arcTo(6.22f, 6.22f, 0.0f, false, true, 17.0f, 19.7f) - arcToRelative(6.22f, 6.22f, 0.0f, false, true, -2.55f, -1.68f) - arcTo(4.48f, 4.48f, 0.0f, false, true, 13.5f, 15.0f) - verticalLineToRelative(-2.05f) - curveToRelative(1.2f, -0.17f, 2.16f, -0.71f, 2.83f, -1.23f) - close() - moveTo(16.39f, 9.57f) - close() - } - } - return _shieldBadge!! - } - -private var _shieldBadge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldCheckmark.kt deleted file mode 100644 index 3b2aab8a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldCheckmark.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShieldCheckmark: ImageVector - get() { - if (_shieldCheckmark != null) { - return _shieldCheckmark!! - } - _shieldCheckmark = fluentIcon(name = "Regular.ShieldCheckmark") { - fluentPath { - moveTo(3.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - curveToRelative(2.66f, 0.0f, 5.26f, -0.94f, 7.8f, -2.85f) - curveToRelative(0.27f, -0.2f, 0.63f, -0.2f, 0.9f, 0.0f) - curveTo(14.99f, 4.05f, 17.59f, 5.0f, 20.25f, 5.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(21.0f, 11.0f) - curveToRelative(0.0f, 0.34f, -0.01f, 0.67f, -0.04f, 1.0f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, -1.46f, -0.69f) - lineTo(19.5f, 6.48f) - arcToRelative(14.36f, 14.36f, 0.0f, false, true, -7.5f, -2.8f) - arcToRelative(14.36f, 14.36f, 0.0f, false, true, -7.5f, 2.8f) - lineTo(4.5f, 11.0f) - curveToRelative(0.0f, 4.15f, 2.33f, 7.22f, 7.13f, 9.28f) - curveToRelative(0.26f, 0.56f, 0.6f, 1.07f, 1.0f, 1.52f) - lineToRelative(-0.36f, 0.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.0f) - curveTo(5.96f, 19.68f, 3.0f, 16.0f, 3.0f, 11.0f) - lineTo(3.0f, 5.75f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(20.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineToRelative(-3.65f, 3.64f) - lineToRelative(-1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _shieldCheckmark!! - } - -private var _shieldCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldDismiss.kt deleted file mode 100644 index b135bad8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldDismiss.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShieldDismiss: ImageVector - get() { - if (_shieldDismiss != null) { - return _shieldDismiss!! - } - _shieldDismiss = fluentIcon(name = "Regular.ShieldDismiss") { - fluentPath { - moveTo(12.45f, 2.15f) - curveTo(14.99f, 4.05f, 17.59f, 5.0f, 20.25f, 5.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineTo(11.0f) - curveToRelative(0.0f, 5.0f, -2.96f, 8.68f, -8.73f, 10.95f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.0f) - curveTo(5.96f, 19.68f, 3.0f, 16.0f, 3.0f, 11.0f) - verticalLineTo(5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - curveToRelative(2.66f, 0.0f, 5.26f, -0.94f, 7.8f, -2.85f) - curveToRelative(0.27f, -0.2f, 0.63f, -0.2f, 0.9f, 0.0f) - close() - moveTo(12.0f, 3.68f) - arcToRelative(14.36f, 14.36f, 0.0f, false, true, -7.5f, 2.8f) - verticalLineTo(11.0f) - curveToRelative(0.0f, 4.26f, 2.45f, 7.38f, 7.5f, 9.44f) - curveToRelative(5.05f, -2.06f, 7.5f, -5.18f, 7.5f, -9.44f) - verticalLineTo(6.48f) - arcToRelative(14.36f, 14.36f, 0.0f, false, true, -7.5f, -2.8f) - close() - moveTo(9.28f, 8.22f) - lineTo(12.0f, 10.94f) - lineToRelative(2.73f, -2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -0.07f) - lineToRelative(0.09f, 0.07f) - curveToRelative(0.26f, 0.27f, 0.29f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineTo(13.06f, 12.0f) - lineToRelative(2.73f, 2.73f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(12.0f, 13.06f) - lineTo(9.28f, 15.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 0.07f) - lineToRelative(-0.09f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineTo(10.94f, 12.0f) - lineTo(8.22f, 9.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - close() - } - } - return _shieldDismiss!! - } - -private var _shieldDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldError.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldError.kt deleted file mode 100644 index 71c23ec6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldError.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShieldError: ImageVector - get() { - if (_shieldError != null) { - return _shieldError!! - } - _shieldError = fluentIcon(name = "Regular.ShieldError") { - fluentPath { - moveTo(20.25f, 5.0f) - curveToRelative(-2.66f, 0.0f, -5.26f, -0.94f, -7.8f, -2.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 0.0f) - curveTo(9.01f, 4.05f, 6.41f, 5.0f, 3.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(3.0f, 11.0f) - curveToRelative(0.0f, 5.0f, 2.96f, 8.68f, 8.73f, 10.95f) - curveToRelative(0.17f, 0.07f, 0.37f, 0.07f, 0.54f, 0.0f) - curveTo(18.04f, 19.68f, 21.0f, 16.0f, 21.0f, 11.0f) - lineTo(21.0f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(4.5f, 6.48f) - arcToRelative(14.36f, 14.36f, 0.0f, false, false, 7.5f, -2.8f) - arcToRelative(14.36f, 14.36f, 0.0f, false, false, 7.5f, 2.8f) - lineTo(19.5f, 11.0f) - curveToRelative(0.0f, 4.26f, -2.45f, 7.38f, -7.5f, 9.44f) - curveToRelative(-5.05f, -2.06f, -7.5f, -5.18f, -7.5f, -9.44f) - lineTo(4.5f, 6.48f) - close() - moveTo(12.74f, 7.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.49f, 0.1f) - verticalLineToRelative(6.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - verticalLineToRelative(-6.6f) - close() - moveTo(12.0f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - } - } - return _shieldError!! - } - -private var _shieldError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldGlobe.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldGlobe.kt deleted file mode 100644 index a83e453e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldGlobe.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShieldGlobe: ImageVector - get() { - if (_shieldGlobe != null) { - return _shieldGlobe!! - } - _shieldGlobe = fluentIcon(name = "Regular.ShieldGlobe") { - fluentPath { - moveTo(3.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(3.0f, 11.0f) - curveToRelative(0.0f, 5.0f, 2.96f, 8.68f, 8.73f, 10.95f) - curveToRelative(0.17f, 0.07f, 0.37f, 0.07f, 0.54f, 0.0f) - curveTo(18.04f, 19.68f, 21.0f, 16.0f, 21.0f, 11.0f) - lineTo(21.0f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - curveToRelative(-2.66f, 0.0f, -5.26f, -0.94f, -7.8f, -2.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 0.0f) - curveTo(9.01f, 4.05f, 6.41f, 5.0f, 3.75f, 5.0f) - close() - moveTo(4.5f, 11.0f) - lineTo(4.5f, 6.48f) - arcToRelative(14.36f, 14.36f, 0.0f, false, false, 7.5f, -2.8f) - arcToRelative(14.36f, 14.36f, 0.0f, false, false, 7.5f, 2.8f) - lineTo(19.5f, 11.0f) - curveToRelative(0.0f, 4.26f, -2.45f, 7.38f, -7.5f, 9.44f) - curveToRelative(-5.05f, -2.06f, -7.5f, -5.18f, -7.5f, -9.44f) - close() - moveTo(10.07f, 15.5f) - arcToRelative(9.63f, 9.63f, 0.0f, false, true, -0.55f, -2.75f) - lineTo(8.07f, 12.75f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 2.0f, 2.76f) - close() - moveTo(11.6f, 15.27f) - curveToRelative(0.17f, 0.37f, 0.3f, 0.56f, 0.4f, 0.65f) - curveToRelative(0.1f, -0.1f, 0.23f, -0.28f, 0.4f, -0.65f) - curveToRelative(0.28f, -0.62f, 0.5f, -1.49f, 0.57f, -2.52f) - horizontalLineToRelative(-1.94f) - curveToRelative(0.07f, 1.03f, 0.29f, 1.9f, 0.57f, 2.52f) - close() - moveTo(11.6f, 8.73f) - curveToRelative(-0.28f, 0.62f, -0.5f, 1.49f, -0.57f, 2.52f) - horizontalLineToRelative(1.94f) - arcToRelative(7.56f, 7.56f, 0.0f, false, false, -0.57f, -2.52f) - arcToRelative(2.34f, 2.34f, 0.0f, false, false, -0.4f, -0.65f) - curveToRelative(-0.1f, 0.1f, -0.23f, 0.28f, -0.4f, 0.65f) - close() - moveTo(13.93f, 15.51f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 2.0f, -2.76f) - horizontalLineToRelative(-1.45f) - arcToRelative(9.63f, 9.63f, 0.0f, false, true, -0.55f, 2.76f) - close() - moveTo(14.48f, 11.25f) - horizontalLineToRelative(1.45f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -2.0f, -2.76f) - curveToRelative(0.29f, 0.77f, 0.48f, 1.72f, 0.55f, 2.76f) - close() - moveTo(8.07f, 11.25f) - horizontalLineToRelative(1.45f) - curveToRelative(0.07f, -1.04f, 0.26f, -1.99f, 0.55f, -2.76f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -2.0f, 2.76f) - close() - moveTo(12.0f, 6.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - } - } - return _shieldGlobe!! - } - -private var _shieldGlobe: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldKeyhole.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldKeyhole.kt deleted file mode 100644 index 15bd19f0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldKeyhole.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShieldKeyhole: ImageVector - get() { - if (_shieldKeyhole != null) { - return _shieldKeyhole!! - } - _shieldKeyhole = fluentIcon(name = "Regular.ShieldKeyhole") { - fluentPath { - moveTo(14.0f, 11.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.25f, 1.85f) - verticalLineToRelative(2.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.4f) - arcTo(2.0f, 2.0f, 0.0f, true, true, 14.0f, 11.0f) - close() - moveTo(3.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(3.0f, 11.0f) - curveToRelative(0.0f, 5.0f, 2.96f, 8.68f, 8.73f, 10.95f) - curveToRelative(0.17f, 0.07f, 0.37f, 0.07f, 0.54f, 0.0f) - curveTo(18.04f, 19.68f, 21.0f, 16.0f, 21.0f, 11.0f) - lineTo(21.0f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - curveToRelative(-2.66f, 0.0f, -5.26f, -0.94f, -7.8f, -2.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 0.0f) - curveTo(9.01f, 4.05f, 6.41f, 5.0f, 3.75f, 5.0f) - close() - moveTo(4.5f, 11.0f) - lineTo(4.5f, 6.48f) - arcToRelative(14.36f, 14.36f, 0.0f, false, false, 7.5f, -2.8f) - arcToRelative(14.36f, 14.36f, 0.0f, false, false, 7.5f, 2.8f) - lineTo(19.5f, 11.0f) - curveToRelative(0.0f, 4.26f, -2.45f, 7.38f, -7.5f, 9.44f) - curveToRelative(-5.05f, -2.06f, -7.5f, -5.18f, -7.5f, -9.44f) - close() - } - } - return _shieldKeyhole!! - } - -private var _shieldKeyhole: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldLock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldLock.kt deleted file mode 100644 index 1f770ad3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldLock.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShieldLock: ImageVector - get() { - if (_shieldLock != null) { - return _shieldLock!! - } - _shieldLock = fluentIcon(name = "Regular.ShieldLock") { - fluentPath { - moveTo(3.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - curveToRelative(2.66f, 0.0f, 5.26f, -0.94f, 7.8f, -2.85f) - curveToRelative(0.27f, -0.2f, 0.63f, -0.2f, 0.9f, 0.0f) - curveTo(14.99f, 4.05f, 17.59f, 5.0f, 20.25f, 5.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(21.0f, 11.0f) - lineToRelative(-0.01f, 0.54f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -1.49f, -0.9f) - lineTo(19.5f, 6.48f) - arcToRelative(14.36f, 14.36f, 0.0f, false, true, -7.5f, -2.8f) - arcToRelative(14.36f, 14.36f, 0.0f, false, true, -7.5f, 2.8f) - lineTo(4.5f, 11.0f) - curveToRelative(0.0f, 4.26f, 2.45f, 7.38f, 7.5f, 9.44f) - arcToRelative(21.0f, 21.0f, 0.0f, false, false, 1.0f, -0.44f) - verticalLineToRelative(1.65f) - lineToRelative(-0.73f, 0.3f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.0f) - curveTo(5.96f, 19.68f, 3.0f, 16.0f, 3.0f, 11.0f) - lineTo(3.0f, 5.75f) - close() - moveTo(16.0f, 15.0f) - verticalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(0.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-6.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - horizontalLineToRelative(0.5f) - close() - moveTo(17.5f, 14.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - close() - moveTo(19.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - } - } - return _shieldLock!! - } - -private var _shieldLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldProhibited.kt deleted file mode 100644 index 2d4ef53a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldProhibited.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShieldProhibited: ImageVector - get() { - if (_shieldProhibited != null) { - return _shieldProhibited!! - } - _shieldProhibited = fluentIcon(name = "Regular.ShieldProhibited") { - fluentPath { - moveTo(3.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(3.0f, 11.0f) - curveToRelative(0.0f, 5.0f, 2.96f, 8.68f, 8.73f, 10.95f) - curveToRelative(0.17f, 0.07f, 0.37f, 0.07f, 0.54f, 0.0f) - lineToRelative(0.43f, -0.17f) - arcToRelative(6.54f, 6.54f, 0.0f, false, true, -1.67f, -1.76f) - curveTo(6.64f, 17.96f, 4.5f, 14.97f, 4.5f, 11.0f) - lineTo(4.5f, 6.48f) - arcToRelative(14.36f, 14.36f, 0.0f, false, false, 7.5f, -2.8f) - arcToRelative(14.36f, 14.36f, 0.0f, false, false, 7.5f, 2.8f) - verticalLineToRelative(4.25f) - curveToRelative(0.54f, 0.28f, 1.04f, 0.64f, 1.48f, 1.06f) - lineTo(21.0f, 11.0f) - lineTo(21.0f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - curveToRelative(-2.66f, 0.0f, -5.26f, -0.94f, -7.8f, -2.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 0.0f) - curveTo(9.01f, 4.05f, 6.41f, 5.0f, 3.75f, 5.0f) - close() - moveTo(16.5f, 22.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) - close() - moveTo(13.2f, 18.75f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 5.56f, -5.56f) - lineToRelative(-5.57f, 5.56f) - close() - moveTo(14.25f, 19.81f) - lineTo(19.81f, 14.25f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -5.56f, 5.56f) - close() - } - } - return _shieldProhibited!! - } - -private var _shieldProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldQuestion.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldQuestion.kt deleted file mode 100644 index e2e732bf..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldQuestion.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShieldQuestion: ImageVector - get() { - if (_shieldQuestion != null) { - return _shieldQuestion!! - } - _shieldQuestion = fluentIcon(name = "Regular.ShieldQuestion") { - fluentPath { - moveTo(3.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - curveToRelative(2.66f, 0.0f, 5.26f, -0.94f, 7.8f, -2.85f) - curveToRelative(0.27f, -0.2f, 0.63f, -0.2f, 0.9f, 0.0f) - curveTo(14.99f, 4.05f, 17.59f, 5.0f, 20.25f, 5.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(21.0f, 11.0f) - curveToRelative(0.0f, 5.0f, -2.96f, 8.68f, -8.73f, 10.95f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.0f) - curveTo(5.96f, 19.68f, 3.0f, 16.0f, 3.0f, 11.0f) - lineTo(3.0f, 5.75f) - close() - moveTo(4.5f, 6.48f) - lineTo(4.5f, 11.0f) - curveToRelative(0.0f, 4.26f, 2.45f, 7.38f, 7.5f, 9.44f) - curveToRelative(5.05f, -2.06f, 7.5f, -5.18f, 7.5f, -9.44f) - lineTo(19.5f, 6.48f) - arcToRelative(14.36f, 14.36f, 0.0f, false, true, -7.5f, -2.8f) - arcToRelative(14.36f, 14.36f, 0.0f, false, true, -7.5f, 2.8f) - close() - moveTo(13.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(10.75f, 9.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - curveToRelative(0.0f, 0.45f, -0.25f, 0.74f, -0.78f, 1.27f) - lineToRelative(-0.05f, 0.05f) - curveToRelative(-0.47f, 0.46f, -1.17f, 1.16f, -1.17f, 2.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - curveToRelative(0.0f, -0.45f, 0.25f, -0.74f, 0.78f, -1.27f) - lineToRelative(0.05f, -0.05f) - curveToRelative(0.47f, -0.47f, 1.17f, -1.16f, 1.17f, -2.28f) - arcToRelative(2.75f, 2.75f, 0.0f, true, false, -5.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - close() - } - } - return _shieldQuestion!! - } - -private var _shieldQuestion: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldTask.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldTask.kt deleted file mode 100644 index ae0d8472..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShieldTask.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShieldTask: ImageVector - get() { - if (_shieldTask != null) { - return _shieldTask!! - } - _shieldTask = fluentIcon(name = "Regular.ShieldTask") { - fluentPath { - moveTo(16.76f, 9.3f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.02f, -1.1f) - lineToRelative(-5.47f, 5.01f) - lineToRelative(-1.99f, -1.99f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(2.5f, 2.5f) - curveToRelative(0.28f, 0.28f, 0.74f, 0.3f, 1.04f, 0.02f) - lineToRelative(6.0f, -5.5f) - close() - moveTo(20.25f, 5.0f) - curveToRelative(-2.66f, 0.0f, -5.26f, -0.94f, -7.8f, -2.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 0.0f) - curveTo(9.01f, 4.05f, 6.41f, 5.0f, 3.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineTo(11.0f) - curveToRelative(0.0f, 5.0f, 2.96f, 8.68f, 8.73f, 10.95f) - curveToRelative(0.17f, 0.07f, 0.37f, 0.07f, 0.54f, 0.0f) - curveTo(18.04f, 19.68f, 21.0f, 16.0f, 21.0f, 11.0f) - verticalLineTo(5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(4.5f, 6.48f) - arcToRelative(14.36f, 14.36f, 0.0f, false, false, 7.5f, -2.8f) - arcToRelative(14.36f, 14.36f, 0.0f, false, false, 7.5f, 2.8f) - verticalLineTo(11.0f) - curveToRelative(0.0f, 4.26f, -2.45f, 7.38f, -7.5f, 9.44f) - curveToRelative(-5.05f, -2.06f, -7.5f, -5.18f, -7.5f, -9.44f) - verticalLineTo(6.48f) - close() - } - } - return _shieldTask!! - } - -private var _shieldTask: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Shifts.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Shifts.kt deleted file mode 100644 index 68fd190c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Shifts.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Shifts: ImageVector - get() { - if (_shifts != null) { - return _shifts!! - } - _shifts = fluentIcon(name = "Regular.Shifts") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(11.75f, 6.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - lineTo(12.5f, 12.0f) - horizontalLineToRelative(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-6.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _shifts!! - } - -private var _shifts: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Shifts30Minutes.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Shifts30Minutes.kt deleted file mode 100644 index 223af8f5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Shifts30Minutes.kt +++ /dev/null @@ -1,94 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Shifts30Minutes: ImageVector - get() { - if (_shifts30Minutes != null) { - return _shifts30Minutes!! - } - _shifts30Minutes = fluentIcon(name = "Regular.Shifts30Minutes") { - fluentPath { - moveTo(15.5f, 5.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, -7.0f, 0.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 7.0f, 0.0f) - close() - moveTo(10.0f, 5.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -4.0f, 0.0f) - close() - moveTo(8.75f, 10.0f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-6.5f) - close() - moveTo(6.5f, 17.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(5.5f, 21.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(10.11f, 16.53f) - curveToRelative(-0.27f, 0.06f, -0.52f, 0.2f, -0.67f, 0.33f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.92f, -1.19f) - curveToRelative(0.27f, -0.2f, 0.71f, -0.48f, 1.25f, -0.6f) - arcToRelative(2.33f, 2.33f, 0.0f, false, true, 1.88f, 0.32f) - arcToRelative(2.27f, 2.27f, 0.0f, false, true, 0.62f, 3.03f) - arcToRelative(2.1f, 2.1f, 0.0f, false, true, -0.08f, 2.86f) - curveToRelative(-0.6f, 0.6f, -1.4f, 0.77f, -2.08f, 0.73f) - arcToRelative(3.12f, 3.12f, 0.0f, false, true, -1.85f, -0.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.99f, -1.12f) - curveToRelative(0.17f, 0.15f, 0.52f, 0.3f, 0.94f, 0.32f) - curveToRelative(0.4f, 0.02f, 0.73f, -0.09f, 0.94f, -0.3f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, 0.12f, -0.62f) - curveToRelative(-0.07f, -0.2f, -0.23f, -0.34f, -0.5f, -0.34f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(0.5f) - curveToRelative(0.12f, 0.0f, 0.17f, -0.04f, 0.21f, -0.08f) - curveToRelative(0.05f, -0.04f, 0.1f, -0.14f, 0.13f, -0.28f) - curveToRelative(0.05f, -0.3f, -0.07f, -0.61f, -0.28f, -0.75f) - arcToRelative(0.83f, 0.83f, 0.0f, false, false, -0.7f, -0.11f) - close() - moveTo(16.5f, 15.0f) - arcToRelative(2.2f, 2.2f, 0.0f, false, false, -1.99f, 1.08f) - curveToRelative(-0.38f, 0.65f, -0.51f, 1.5f, -0.51f, 2.42f) - curveToRelative(0.0f, 0.92f, 0.13f, 1.77f, 0.51f, 2.42f) - arcTo(2.2f, 2.2f, 0.0f, false, false, 16.5f, 22.0f) - arcToRelative(2.2f, 2.2f, 0.0f, false, false, 1.99f, -1.08f) - curveToRelative(0.38f, -0.64f, 0.51f, -1.5f, 0.51f, -2.42f) - curveToRelative(0.0f, -0.93f, -0.13f, -1.78f, -0.51f, -2.42f) - arcTo(2.2f, 2.2f, 0.0f, false, false, 16.5f, 15.0f) - close() - moveTo(15.5f, 18.5f) - curveToRelative(0.0f, -0.83f, 0.12f, -1.35f, 0.3f, -1.64f) - curveToRelative(0.13f, -0.23f, 0.32f, -0.36f, 0.7f, -0.36f) - curveToRelative(0.39f, 0.0f, 0.57f, 0.13f, 0.7f, 0.35f) - curveToRelative(0.18f, 0.3f, 0.3f, 0.81f, 0.3f, 1.65f) - curveToRelative(0.0f, 0.84f, -0.12f, 1.36f, -0.3f, 1.65f) - curveToRelative(-0.13f, 0.22f, -0.31f, 0.35f, -0.7f, 0.35f) - curveToRelative(-0.38f, 0.0f, -0.57f, -0.13f, -0.7f, -0.35f) - curveToRelative(-0.18f, -0.3f, -0.3f, -0.82f, -0.3f, -1.65f) - close() - } - } - return _shifts30Minutes!! - } - -private var _shifts30Minutes: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShiftsActivity.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShiftsActivity.kt deleted file mode 100644 index 0e2c0d16..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShiftsActivity.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShiftsActivity: ImageVector - get() { - if (_shiftsActivity != null) { - return _shiftsActivity!! - } - _shiftsActivity = fluentIcon(name = "Regular.ShiftsActivity") { - fluentPath { - moveTo(11.31f, 3.53f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.12f, -1.5f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 10.78f, 10.78f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, -0.12f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, -9.16f, -9.16f) - close() - moveTo(17.7f, 4.67f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -0.04f) - curveToRelative(0.21f, 0.2f, 0.42f, 0.4f, 0.61f, 0.61f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.1f, 1.02f) - arcToRelative(8.55f, 8.55f, 0.0f, false, false, -0.53f, -0.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.04f, -1.06f) - close() - moveTo(11.25f, 6.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - lineTo(12.0f, 12.0f) - horizontalLineToRelative(3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-4.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-6.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(13.78f, 2.89f) - curveToRelative(0.11f, -0.4f, 0.53f, -0.63f, 0.93f, -0.52f) - curveToRelative(0.36f, 0.1f, 0.72f, 0.23f, 1.07f, 0.37f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.57f, 1.39f) - curveToRelative(-0.3f, -0.12f, -0.6f, -0.23f, -0.9f, -0.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.53f, -0.92f) - close() - moveTo(21.26f, 8.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.39f, 0.56f) - arcToRelative(8.4f, 8.4f, 0.0f, false, true, 0.31f, 0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.45f, -0.4f) - arcToRelative(9.43f, 9.43f, 0.0f, false, false, -0.37f, -1.08f) - close() - } - } - return _shiftsActivity!! - } - -private var _shiftsActivity: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShiftsAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShiftsAdd.kt deleted file mode 100644 index ce4e4958..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShiftsAdd.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShiftsAdd: ImageVector - get() { - if (_shiftsAdd != null) { - return _shiftsAdd!! - } - _shiftsAdd = fluentIcon(name = "Regular.ShiftsAdd") { - fluentPath { - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-5.06f) - arcToRelative(6.47f, 6.47f, 0.0f, false, true, -0.71f, 1.5f) - horizontalLineToRelative(5.77f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(5.77f) - curveToRelative(0.46f, -0.3f, 0.97f, -0.53f, 1.5f, -0.7f) - lineTo(4.5f, 6.24f) - close() - moveTo(6.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(7.0f, 20.5f) - lineTo(7.0f, 18.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) - lineTo(7.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -1.0f, 0.0f) - lineTo(6.0f, 17.0f) - lineTo(3.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - lineTo(6.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) - close() - moveTo(12.5f, 6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(12.5f, 12.0f) - lineTo(12.5f, 6.75f) - close() - } - } - return _shiftsAdd!! - } - -private var _shiftsAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShiftsAvailability.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShiftsAvailability.kt deleted file mode 100644 index 32c4791b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShiftsAvailability.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShiftsAvailability: ImageVector - get() { - if (_shiftsAvailability != null) { - return _shiftsAvailability!! - } - _shiftsAvailability = fluentIcon(name = "Regular.ShiftsAvailability") { - fluentPath { - moveTo(8.5f, 3.5f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, -0.23f, 10.0f) - curveToRelative(-0.13f, 0.47f, -0.22f, 0.97f, -0.25f, 1.48f) - arcToRelative(6.5f, 6.5f, 0.0f, true, true, 6.96f, -6.96f) - curveToRelative(-0.5f, 0.03f, -1.0f, 0.12f, -1.49f, 0.25f) - arcTo(5.0f, 5.0f, 0.0f, false, false, 8.5f, 3.5f) - close() - moveTo(14.28f, 13.23f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.07f) - lineToRelative(1.22f, 1.2f) - lineToRelative(-1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(1.22f, -1.22f) - lineToRelative(1.21f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.07f, -1.06f) - lineToRelative(-1.22f, -1.22f) - lineToRelative(1.21f, -1.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.05f, -1.07f) - lineToRelative(-1.22f, 1.21f) - lineToRelative(-1.22f, -1.2f) - close() - moveTo(15.5f, 9.0f) - arcToRelative(6.5f, 6.5f, 0.0f, true, false, 0.0f, 13.0f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, 0.0f, -13.0f) - close() - moveTo(10.5f, 15.5f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, 10.0f, 0.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, -10.0f, 0.0f) - close() - moveTo(11.28f, 6.72f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-3.0f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 0.0f) - lineToRelative(-1.5f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineToRelative(0.97f, 0.97f) - lineToRelative(2.47f, -2.47f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - } - } - return _shiftsAvailability!! - } - -private var _shiftsAvailability: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShiftsCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShiftsCheckmark.kt deleted file mode 100644 index 3949c3a1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShiftsCheckmark.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShiftsCheckmark: ImageVector - get() { - if (_shiftsCheckmark != null) { - return _shiftsCheckmark!! - } - _shiftsCheckmark = fluentIcon(name = "Regular.ShiftsCheckmark") { - fluentPath { - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-5.06f) - arcToRelative(6.47f, 6.47f, 0.0f, false, true, -0.71f, 1.5f) - horizontalLineToRelative(5.77f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(5.77f) - curveToRelative(0.46f, -0.3f, 0.97f, -0.53f, 1.5f, -0.7f) - lineTo(4.5f, 6.24f) - close() - moveTo(12.5f, 6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(12.5f, 12.0f) - lineTo(12.5f, 6.75f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(8.85f, 15.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - lineTo(5.5f, 18.29f) - lineToRelative(-0.9f, -0.9f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.71f) - lineToRelative(1.25f, 1.25f) - curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) - lineToRelative(3.0f, -3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - close() - } - } - return _shiftsCheckmark!! - } - -private var _shiftsCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShiftsDay.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShiftsDay.kt deleted file mode 100644 index d84a7a6e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShiftsDay.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShiftsDay: ImageVector - get() { - if (_shiftsDay != null) { - return _shiftsDay!! - } - _shiftsDay = fluentIcon(name = "Regular.ShiftsDay") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(13.25f, 8.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.75f) - horizontalLineToRelative(1.5f) - lineTo(15.5f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(6.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(15.5f, 13.0f) - horizontalLineToRelative(-2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(7.5f, 8.74f) - arcTo(2.3f, 2.3f, 0.0f, false, true, 9.25f, 8.0f) - curveToRelative(1.15f, 0.0f, 1.9f, 0.8f, 2.15f, 1.66f) - curveToRelative(0.26f, 0.85f, 0.1f, 1.9f, -0.62f, 2.62f) - curveToRelative(-0.24f, 0.25f, -0.53f, 0.47f, -0.79f, 0.67f) - lineToRelative(-0.04f, 0.03f) - arcToRelative(7.8f, 7.8f, 0.0f, false, false, -0.75f, 0.63f) - arcToRelative(2.3f, 2.3f, 0.0f, false, false, -0.58f, 0.89f) - horizontalLineToRelative(2.13f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - curveToRelative(0.0f, -1.25f, 0.52f, -2.08f, 1.14f, -2.7f) - curveToRelative(0.3f, -0.3f, 0.62f, -0.55f, 0.9f, -0.76f) - curveToRelative(0.28f, -0.22f, 0.5f, -0.4f, 0.68f, -0.57f) - curveToRelative(0.27f, -0.27f, 0.37f, -0.72f, 0.25f, -1.13f) - curveToRelative(-0.12f, -0.38f, -0.37f, -0.59f, -0.72f, -0.59f) - reflectiveCurveToRelative(-0.53f, 0.14f, -0.64f, 0.25f) - arcToRelative(0.84f, 0.84f, 0.0f, false, false, -0.15f, 0.23f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.43f, -0.46f) - lineToRelative(0.04f, -0.1f) - lineToRelative(0.08f, -0.17f) - curveToRelative(0.07f, -0.14f, 0.18f, -0.32f, 0.35f, -0.5f) - close() - } - } - return _shiftsDay!! - } - -private var _shiftsDay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShiftsOpen.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShiftsOpen.kt deleted file mode 100644 index 22e7316b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShiftsOpen.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShiftsOpen: ImageVector - get() { - if (_shiftsOpen != null) { - return _shiftsOpen!! - } - _shiftsOpen = fluentIcon(name = "Regular.ShiftsOpen") { - fluentPath { - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineTo(6.25f) - close() - moveTo(14.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineTo(6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - horizontalLineToRelative(-3.0f) - close() - moveTo(12.5f, 6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(12.5f) - verticalLineTo(6.75f) - close() - } - } - return _shiftsOpen!! - } - -private var _shiftsOpen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShiftsProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShiftsProhibited.kt deleted file mode 100644 index 3c0b9cc6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShiftsProhibited.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShiftsProhibited: ImageVector - get() { - if (_shiftsProhibited != null) { - return _shiftsProhibited!! - } - _shiftsProhibited = fluentIcon(name = "Regular.ShiftsProhibited") { - fluentPath { - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-5.06f) - arcToRelative(6.47f, 6.47f, 0.0f, false, true, -0.71f, 1.5f) - horizontalLineToRelative(5.77f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(5.77f) - curveToRelative(0.46f, -0.3f, 0.97f, -0.53f, 1.5f, -0.7f) - lineTo(4.5f, 6.24f) - close() - moveTo(12.5f, 6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(12.5f, 12.0f) - lineTo(12.5f, 6.75f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(2.5f, 17.5f) - curveToRelative(0.0f, 0.83f, 0.25f, 1.6f, 0.7f, 2.25f) - lineToRelative(5.55f, -5.56f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) - close() - moveTo(6.5f, 21.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) - lineToRelative(-5.55f, 5.56f) - curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) - close() - } - } - return _shiftsProhibited!! - } - -private var _shiftsProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShiftsQuestionMark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShiftsQuestionMark.kt deleted file mode 100644 index 5077dd80..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShiftsQuestionMark.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShiftsQuestionMark: ImageVector - get() { - if (_shiftsQuestionMark != null) { - return _shiftsQuestionMark!! - } - _shiftsQuestionMark = fluentIcon(name = "Regular.ShiftsQuestionMark") { - fluentPath { - moveTo(6.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(6.5f, 19.88f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, 1.25f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, -1.25f) - close() - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-5.77f) - curveToRelative(0.3f, -0.46f, 0.53f, -0.97f, 0.7f, -1.5f) - horizontalLineToRelative(5.07f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(5.06f) - curveToRelative(-0.53f, 0.18f, -1.04f, 0.42f, -1.5f, 0.71f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(6.5f, 14.0f) - curveToRelative(-1.05f, 0.0f, -1.86f, 0.82f, -1.85f, 1.96f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, -0.01f) - curveToRelative(0.0f, -0.58f, 0.36f, -0.95f, 0.85f, -0.95f) - curveToRelative(0.47f, 0.0f, 0.85f, 0.4f, 0.85f, 0.95f) - curveToRelative(0.0f, 0.23f, -0.07f, 0.4f, -0.31f, 0.68f) - lineToRelative(-0.1f, 0.11f) - lineToRelative(-0.27f, 0.3f) - curveToRelative(-0.48f, 0.53f, -0.67f, 0.89f, -0.67f, 1.46f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - curveToRelative(0.0f, -0.23f, 0.08f, -0.4f, 0.32f, -0.7f) - lineToRelative(0.1f, -0.1f) - lineToRelative(0.27f, -0.3f) - curveToRelative(0.48f, -0.53f, 0.66f, -0.88f, 0.66f, -1.45f) - curveToRelative(0.0f, -1.1f, -0.82f, -1.95f, -1.85f, -1.95f) - close() - moveTo(11.75f, 6.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - lineTo(12.5f, 12.0f) - horizontalLineToRelative(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-6.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _shiftsQuestionMark!! - } - -private var _shiftsQuestionMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShiftsTeam.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShiftsTeam.kt deleted file mode 100644 index 00206fea..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShiftsTeam.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShiftsTeam: ImageVector - get() { - if (_shiftsTeam != null) { - return _shiftsTeam!! - } - _shiftsTeam = fluentIcon(name = "Regular.ShiftsTeam") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-5.0f) - arcToRelative(2.98f, 2.98f, 0.0f, false, false, 0.23f, -1.5f) - horizontalLineToRelative(4.77f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(5.26f) - curveToRelative(-0.55f, 0.04f, -1.06f, 0.22f, -1.5f, 0.5f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(11.75f, 6.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - lineTo(12.5f, 12.0f) - horizontalLineToRelative(3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-6.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(4.75f, 17.0f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, -4.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) - close() - moveTo(4.75f, 23.0f) - curveToRelative(2.68f, 0.0f, 3.75f, -1.57f, 3.75f, -3.13f) - curveToRelative(0.0f, -1.03f, -0.72f, -1.87f, -1.6f, -1.87f) - lineTo(2.6f, 18.0f) - curveToRelative(-0.88f, 0.0f, -1.6f, 0.84f, -1.6f, 1.88f) - curveTo(1.0f, 21.43f, 2.07f, 23.0f, 4.75f, 23.0f) - close() - moveTo(11.5f, 15.75f) - arcToRelative(1.75f, 1.75f, 0.0f, true, true, -3.5f, 0.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 3.5f, 0.0f) - close() - moveTo(8.92f, 22.0f) - curveToRelative(0.4f, -0.66f, 0.58f, -1.4f, 0.58f, -2.13f) - curveToRelative(0.0f, -0.47f, -0.11f, -0.95f, -0.32f, -1.37f) - horizontalLineToRelative(1.54f) - curveToRelative(0.7f, 0.0f, 1.28f, 0.59f, 1.28f, 1.31f) - curveToRelative(0.0f, 1.1f, -0.85f, 2.19f, -3.0f, 2.19f) - horizontalLineToRelative(-0.08f) - close() - } - } - return _shiftsTeam!! - } - -private var _shiftsTeam: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShoppingBag.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShoppingBag.kt deleted file mode 100644 index e50be593..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShoppingBag.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShoppingBag: ImageVector - get() { - if (_shoppingBag != null) { - return _shoppingBag!! - } - _shoppingBag = fluentIcon(name = "Regular.ShoppingBag") { - fluentPath { - moveTo(7.0f, 7.0f) - lineTo(7.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 5.0f, -2.24f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 17.0f, 5.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(1.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(10.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.5f, 3.5f) - lineTo(8.0f, 22.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f) - lineTo(4.0f, 8.5f) - curveTo(4.0f, 7.67f, 4.67f, 7.0f, 5.5f, 7.0f) - lineTo(7.0f, 7.0f) - close() - moveTo(13.63f, 20.5f) - arcToRelative(3.48f, 3.48f, 0.0f, false, true, -0.62f, -2.0f) - verticalLineToRelative(-10.0f) - lineTo(5.5f, 8.5f) - lineTo(5.5f, 18.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 8.0f, 20.5f) - horizontalLineToRelative(5.63f) - close() - moveTo(11.5f, 7.0f) - lineTo(11.5f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(3.0f) - close() - moveTo(13.0f, 7.0f) - horizontalLineToRelative(2.5f) - lineTo(15.5f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.66f, -0.96f) - curveToRelative(0.1f, 0.3f, 0.16f, 0.63f, 0.16f, 0.96f) - verticalLineToRelative(2.0f) - close() - moveTo(14.51f, 18.5f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 3.99f, 0.0f) - verticalLineToRelative(-10.0f) - horizontalLineToRelative(-3.99f) - verticalLineToRelative(10.0f) - close() - } - } - return _shoppingBag!! - } - -private var _shoppingBag: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShoppingBagArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShoppingBagArrowLeft.kt deleted file mode 100644 index 241b4c78..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShoppingBagArrowLeft.kt +++ /dev/null @@ -1,91 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShoppingBagArrowLeft: ImageVector - get() { - if (_shoppingBagArrowLeft != null) { - return _shoppingBagArrowLeft!! - } - _shoppingBagArrowLeft = fluentIcon(name = "Regular.ShoppingBagArrowLeft") { - fluentPath { - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(16.65f, 14.65f) - lineTo(16.72f, 14.59f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.64f, 0.06f) - lineToRelative(0.05f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.05f, 0.63f) - lineTo(15.7f, 17.0f) - horizontalLineToRelative(4.88f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.41f, 0.5f) - verticalLineToRelative(0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.41f) - horizontalLineToRelative(-4.79f) - lineToRelative(1.65f, 1.65f) - lineToRelative(0.05f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.76f, 0.63f) - lineToRelative(-2.52f, -2.51f) - lineToRelative(-0.05f, -0.07f) - lineToRelative(-0.03f, -0.06f) - lineToRelative(-0.03f, -0.08f) - lineToRelative(-0.01f, -0.09f) - verticalLineToRelative(-0.1f) - lineToRelative(0.02f, -0.1f) - lineToRelative(0.02f, -0.05f) - lineToRelative(0.04f, -0.08f) - lineToRelative(0.04f, -0.05f) - lineToRelative(2.52f, -2.51f) - close() - moveTo(7.0f, 7.0f) - lineTo(7.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 5.0f, -2.24f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 17.0f, 5.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(1.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(3.0f) - curveToRelative(-0.47f, -0.2f, -0.98f, -0.34f, -1.5f, -0.42f) - lineTo(18.5f, 8.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(3.23f) - curveToRelative(-0.55f, 0.29f, -1.06f, 0.65f, -1.5f, 1.08f) - lineTo(13.0f, 8.5f) - lineTo(5.5f, 8.5f) - lineTo(5.5f, 18.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 8.0f, 20.5f) - horizontalLineToRelative(3.73f) - curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) - lineTo(8.0f, 22.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f) - lineTo(4.0f, 8.5f) - curveTo(4.0f, 7.67f, 4.67f, 7.0f, 5.5f, 7.0f) - lineTo(7.0f, 7.0f) - close() - moveTo(10.0f, 3.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(3.0f) - lineTo(11.5f, 5.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - close() - moveTo(15.5f, 7.0f) - lineTo(15.5f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.66f, -0.96f) - curveToRelative(0.1f, 0.3f, 0.16f, 0.63f, 0.16f, 0.96f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(2.5f) - close() - } - } - return _shoppingBagArrowLeft!! - } - -private var _shoppingBagArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShoppingBagDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShoppingBagDismiss.kt deleted file mode 100644 index 70078c97..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShoppingBagDismiss.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShoppingBagDismiss: ImageVector - get() { - if (_shoppingBagDismiss != null) { - return _shoppingBagDismiss!! - } - _shoppingBagDismiss = fluentIcon(name = "Regular.ShoppingBagDismiss") { - fluentPath { - moveTo(7.0f, 7.0f) - lineTo(7.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 5.0f, -2.24f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 17.0f, 5.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(1.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(3.0f) - curveToRelative(-0.47f, -0.2f, -0.98f, -0.34f, -1.5f, -0.42f) - lineTo(18.5f, 8.5f) - horizontalLineToRelative(-3.99f) - verticalLineToRelative(3.23f) - curveToRelative(-0.55f, 0.28f, -1.06f, 0.65f, -1.5f, 1.07f) - lineTo(13.01f, 8.5f) - lineTo(5.5f, 8.5f) - lineTo(5.5f, 18.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 8.0f, 20.5f) - horizontalLineToRelative(3.73f) - curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) - lineTo(8.0f, 22.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f) - lineTo(4.0f, 8.5f) - curveTo(4.0f, 7.67f, 4.67f, 7.0f, 5.5f, 7.0f) - lineTo(7.0f, 7.0f) - close() - moveTo(11.5f, 7.0f) - lineTo(11.5f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(3.0f) - close() - moveTo(13.0f, 7.0f) - horizontalLineToRelative(2.5f) - lineTo(15.5f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.66f, -0.96f) - curveToRelative(0.1f, 0.3f, 0.16f, 0.63f, 0.16f, 0.96f) - verticalLineToRelative(2.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-1.64f, -1.65f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.65f, 1.64f) - lineToRelative(-1.65f, -1.64f) - close() - } - } - return _shoppingBagDismiss!! - } - -private var _shoppingBagDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShoppingBagPause.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShoppingBagPause.kt deleted file mode 100644 index 55bd383b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShoppingBagPause.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShoppingBagPause: ImageVector - get() { - if (_shoppingBagPause != null) { - return _shoppingBagPause!! - } - _shoppingBagPause = fluentIcon(name = "Regular.ShoppingBagPause") { - fluentPath { - moveTo(7.0f, 7.0f) - lineTo(7.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 5.0f, -2.24f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 17.0f, 5.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(1.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(3.0f) - curveToRelative(-0.47f, -0.2f, -0.98f, -0.34f, -1.5f, -0.42f) - lineTo(18.5f, 8.5f) - horizontalLineToRelative(-3.99f) - verticalLineToRelative(3.23f) - curveToRelative(-0.55f, 0.28f, -1.06f, 0.65f, -1.5f, 1.07f) - lineTo(13.01f, 8.5f) - lineTo(5.5f, 8.5f) - lineTo(5.5f, 18.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 8.0f, 20.5f) - horizontalLineToRelative(3.73f) - curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) - lineTo(8.0f, 22.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f) - lineTo(4.0f, 8.5f) - curveTo(4.0f, 7.67f, 4.67f, 7.0f, 5.5f, 7.0f) - lineTo(7.0f, 7.0f) - close() - moveTo(11.5f, 7.0f) - lineTo(11.5f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(3.0f) - close() - moveTo(13.0f, 7.0f) - horizontalLineToRelative(2.5f) - lineTo(15.5f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.66f, -0.96f) - curveToRelative(0.1f, 0.3f, 0.16f, 0.63f, 0.16f, 0.96f) - verticalLineToRelative(2.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.5f, 14.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(19.5f, 14.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - } - } - return _shoppingBagPause!! - } - -private var _shoppingBagPause: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShoppingBagPercent.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShoppingBagPercent.kt deleted file mode 100644 index 8cac2099..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShoppingBagPercent.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShoppingBagPercent: ImageVector - get() { - if (_shoppingBagPercent != null) { - return _shoppingBagPercent!! - } - _shoppingBagPercent = fluentIcon(name = "Regular.ShoppingBagPercent") { - fluentPath { - moveTo(7.0f, 5.0f) - verticalLineToRelative(2.0f) - lineTo(5.5f, 7.0f) - curveTo(4.67f, 7.0f, 4.0f, 7.67f, 4.0f, 8.5f) - lineTo(4.0f, 18.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, 4.0f) - horizontalLineToRelative(4.17f) - arcToRelative(1.76f, 1.76f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(8.0f, 20.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 5.5f, 18.0f) - lineTo(5.5f, 8.5f) - horizontalLineToRelative(7.51f) - verticalLineToRelative(2.83f) - curveToRelative(0.45f, -0.21f, 0.96f, -0.33f, 1.49f, -0.33f) - horizontalLineToRelative(0.01f) - lineTo(14.51f, 8.5f) - horizontalLineToRelative(3.99f) - verticalLineToRelative(5.53f) - lineToRelative(1.5f, -1.5f) - lineTo(20.0f, 8.5f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(17.0f, 7.0f) - lineTo(17.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -5.0f, -2.24f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 7.0f, 5.0f) - close() - moveTo(11.5f, 5.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-3.0f) - lineTo(8.5f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - close() - moveTo(15.5f, 7.0f) - lineTo(13.0f, 7.0f) - lineTo(13.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -0.16f, -0.96f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 15.5f, 5.0f) - verticalLineToRelative(2.0f) - close() - moveTo(14.5f, 17.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) - close() - moveTo(14.5f, 13.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(20.5f, 23.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) - close() - moveTo(20.5f, 19.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(21.78f, 14.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-7.5f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(7.5f, -7.5f) - close() - } - } - return _shoppingBagPercent!! - } - -private var _shoppingBagPercent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShoppingBagPlay.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShoppingBagPlay.kt deleted file mode 100644 index cdaa6f70..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShoppingBagPlay.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShoppingBagPlay: ImageVector - get() { - if (_shoppingBagPlay != null) { - return _shoppingBagPlay!! - } - _shoppingBagPlay = fluentIcon(name = "Regular.ShoppingBagPlay") { - fluentPath { - moveTo(7.0f, 5.0f) - verticalLineToRelative(2.0f) - lineTo(5.5f, 7.0f) - curveTo(4.67f, 7.0f, 4.0f, 7.67f, 4.0f, 8.5f) - lineTo(4.0f, 18.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, 4.0f) - horizontalLineToRelative(4.81f) - arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, -1.5f) - lineTo(8.0f, 20.5f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 5.5f, 18.0f) - lineTo(5.5f, 8.5f) - lineTo(13.0f, 8.5f) - verticalLineToRelative(4.31f) - curveToRelative(0.44f, -0.43f, 0.95f, -0.8f, 1.5f, -1.08f) - lineTo(14.5f, 8.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(2.58f) - curveToRelative(0.52f, 0.08f, 1.03f, 0.22f, 1.5f, 0.42f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(17.0f, 7.0f) - lineTo(17.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -5.0f, -2.24f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 7.0f, 5.0f) - close() - moveTo(10.0f, 3.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-3.0f) - lineTo(8.5f, 5.0f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - close() - moveTo(15.5f, 7.0f) - lineTo(13.0f, 7.0f) - lineTo(13.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -0.16f, -0.96f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 15.5f, 5.0f) - verticalLineToRelative(2.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(16.91f, 15.1f) - arcToRelative(0.55f, 0.55f, 0.0f, false, false, -0.54f, -0.05f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.2f, 0.13f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, -0.18f, 0.44f) - verticalLineToRelative(3.76f) - arcToRelative(0.61f, 0.61f, 0.0f, false, false, 0.19f, 0.44f) - curveToRelative(0.05f, 0.05f, 0.12f, 0.1f, 0.19f, 0.13f) - arcToRelative(0.55f, 0.55f, 0.0f, false, false, 0.44f, 0.0f) - arcToRelative(0.66f, 0.66f, 0.0f, false, false, 0.11f, -0.05f) - lineToRelative(2.8f, -1.92f) - arcToRelative(0.56f, 0.56f, 0.0f, false, false, 0.2f, -0.22f) - arcToRelative(0.65f, 0.65f, 0.0f, false, false, 0.0f, -0.6f) - arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.2f, -0.22f) - lineToRelative(-2.8f, -1.84f) - close() - } - } - return _shoppingBagPlay!! - } - -private var _shoppingBagPlay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShoppingBagTag.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShoppingBagTag.kt deleted file mode 100644 index 689eb009..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ShoppingBagTag.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ShoppingBagTag: ImageVector - get() { - if (_shoppingBagTag != null) { - return _shoppingBagTag!! - } - _shoppingBagTag = fluentIcon(name = "Regular.ShoppingBagTag") { - fluentPath { - moveTo(7.0f, 7.0f) - lineTo(7.0f, 5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 5.0f, -2.24f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 17.0f, 5.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(1.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(4.32f) - lineToRelative(-0.97f, -0.96f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -0.53f, -0.41f) - lineTo(18.5f, 8.5f) - horizontalLineToRelative(-3.99f) - lineTo(14.51f, 11.0f) - horizontalLineToRelative(-0.5f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -1.0f, 0.17f) - lineTo(13.01f, 8.5f) - lineTo(5.5f, 8.5f) - lineTo(5.5f, 18.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 8.0f, 20.5f) - horizontalLineToRelative(5.3f) - lineToRelative(1.47f, 1.5f) - lineTo(8.0f, 22.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f) - lineTo(4.0f, 8.5f) - curveTo(4.0f, 7.67f, 4.67f, 7.0f, 5.5f, 7.0f) - lineTo(7.0f, 7.0f) - close() - moveTo(11.5f, 7.0f) - lineTo(11.5f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(3.0f) - close() - moveTo(13.0f, 7.0f) - horizontalLineToRelative(2.5f) - lineTo(15.5f, 5.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.66f, -0.96f) - curveToRelative(0.1f, 0.3f, 0.16f, 0.63f, 0.16f, 0.96f) - verticalLineToRelative(2.0f) - close() - moveTo(12.57f, 18.33f) - lineTo(16.57f, 22.4f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.86f, 0.02f) - lineToRelative(2.99f, -3.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.01f, -2.83f) - lineToRelative(-4.08f, -4.01f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.41f, -0.58f) - lineTo(14.0f, 12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(2.93f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.57f, 1.4f) - close() - moveTo(16.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - } - } - return _shoppingBagTag!! - } - -private var _shoppingBagTag: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Shortpick.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Shortpick.kt deleted file mode 100644 index e5378137..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Shortpick.kt +++ /dev/null @@ -1,127 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Shortpick: ImageVector - get() { - if (_shortpick != null) { - return _shortpick!! - } - _shortpick = fluentIcon(name = "Regular.Shortpick") { - fluentPath { - moveTo(8.96f, 3.5f) - lineTo(8.5f, 3.5f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(0.46f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.71f) - curveTo(7.56f, 7.0f, 7.0f, 6.44f, 7.0f, 5.75f) - verticalLineToRelative(-2.5f) - curveTo(7.0f, 2.56f, 7.56f, 2.0f, 8.25f, 2.0f) - horizontalLineToRelative(0.71f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(11.5f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.0f) - close() - moveTo(15.04f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.46f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-0.46f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.71f) - curveTo(16.44f, 7.0f, 17.0f, 6.44f, 17.0f, 5.75f) - verticalLineToRelative(-2.5f) - curveTo(17.0f, 2.56f, 16.44f, 2.0f, 15.75f, 2.0f) - horizontalLineToRelative(-0.71f) - close() - moveTo(11.5f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.0f) - close() - moveTo(5.5f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(10.0f) - curveTo(4.0f, 20.55f, 5.46f, 22.0f, 7.25f, 22.0f) - horizontalLineToRelative(9.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(10.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-9.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-10.0f) - close() - moveTo(8.25f, 14.0f) - curveTo(7.56f, 14.0f, 7.0f, 14.56f, 7.0f, 15.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(7.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-7.5f) - close() - moveTo(8.5f, 17.5f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(7.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-7.0f) - close() - moveTo(8.5f, 9.5f) - horizontalLineToRelative(0.46f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.71f) - curveTo(7.56f, 8.0f, 7.0f, 8.56f, 7.0f, 9.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(0.71f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(8.5f, 11.5f) - verticalLineToRelative(-2.0f) - close() - moveTo(10.75f, 8.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(14.29f, 8.75f) - curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(0.71f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineToRelative(-0.71f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.46f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(-0.46f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(10.75f, 12.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _shortpick!! - } - -private var _shortpick: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Showerhead.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Showerhead.kt deleted file mode 100644 index ccbbfcc6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Showerhead.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Showerhead: ImageVector - get() { - if (_showerhead != null) { - return _showerhead!! - } - _showerhead = fluentIcon(name = "Regular.Showerhead") { - fluentPath { - moveToRelative(15.6f, 4.86f) - lineToRelative(2.13f, -2.13f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 3.53f, 3.53f) - lineToRelative(-2.12f, 2.12f) - arcToRelative(8.0f, 8.0f, 0.0f, false, true, -1.2f, 8.98f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -4.18f, 2.4f) - lineToRelative(-9.5f, -9.48f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.36f, -4.2f) - arcToRelative(8.0f, 8.0f, 0.0f, false, true, 8.98f, -1.22f) - close() - moveTo(18.31f, 7.09f) - lineTo(20.2f, 5.2f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.41f, -1.4f) - lineTo(16.9f, 5.67f) - arcToRelative(8.08f, 8.08f, 0.0f, false, true, 1.41f, 1.4f) - close() - moveTo(5.33f, 7.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.4f) - lineToRelative(9.49f, 9.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, -1.41f) - lineTo(6.75f, 7.8f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.41f, 0.0f) - close() - moveTo(7.78f, 17.27f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(2.0f, -2.0f) - close() - moveTo(10.28f, 18.71f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(2.0f, -2.0f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(5.28f, 14.77f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(2.0f, -2.0f) - close() - moveTo(17.1f, 16.03f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 7.96f, 6.9f) - lineToRelative(9.14f, 9.14f) - close() - } - } - return _showerhead!! - } - -private var _showerhead: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SignOut.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SignOut.kt deleted file mode 100644 index 2d5a4f79..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SignOut.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SignOut: ImageVector - get() { - if (_signOut != null) { - return _signOut!! - } - _signOut = fluentIcon(name = "Regular.SignOut") { - fluentPath { - moveTo(8.5f, 11.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(12.0f, 4.35f) - lineTo(12.0f, 11.0f) - horizontalLineToRelative(7.44f) - lineToRelative(-1.72f, -1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - lineToRelative(3.0f, 3.0f) - curveToRelative(0.26f, 0.26f, 0.29f, 0.68f, 0.07f, 0.97f) - lineToRelative(-0.07f, 0.09f) - lineToRelative(-3.0f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.97f) - lineToRelative(0.07f, -0.09f) - lineToRelative(1.71f, -1.72f) - lineTo(12.0f, 12.5f) - verticalLineToRelative(6.75f) - curveToRelative(0.0f, 0.47f, -0.42f, 0.82f, -0.88f, 0.74f) - lineToRelative(-8.5f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.62f, -0.74f) - verticalLineToRelative(-12.0f) - curveToRelative(0.0f, -0.37f, 0.27f, -0.68f, 0.63f, -0.74f) - lineToRelative(8.5f, -1.4f) - curveToRelative(0.46f, -0.07f, 0.87f, 0.28f, 0.87f, 0.74f) - close() - moveTo(10.5f, 5.24f) - lineTo(3.5f, 6.39f) - verticalLineToRelative(10.73f) - lineToRelative(7.0f, 1.24f) - lineTo(10.5f, 5.24f) - close() - moveTo(13.0f, 18.5f) - horizontalLineToRelative(0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - lineToRelative(-0.01f, -4.25f) - lineTo(13.0f, 13.5f) - verticalLineToRelative(5.0f) - close() - moveTo(13.0f, 10.0f) - lineTo(13.0f, 5.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.37f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) - verticalLineToRelative(0.1f) - lineTo(14.5f, 10.0f) - lineTo(13.0f, 10.0f) - close() - } - } - return _signOut!! - } - -private var _signOut: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Signature.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Signature.kt deleted file mode 100644 index 4d80a018..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Signature.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Signature: ImageVector - get() { - if (_signature != null) { - return _signature!! - } - _signature = fluentIcon(name = "Regular.Signature") { - fluentPath { - moveTo(14.75f, 16.5f) - curveToRelative(1.3f, 0.0f, 1.82f, 0.58f, 2.2f, 1.87f) - lineToRelative(0.07f, 0.24f) - curveToRelative(0.19f, 0.66f, 0.3f, 0.86f, 0.52f, 0.95f) - curveToRelative(0.26f, 0.1f, 0.43f, 0.09f, 0.7f, -0.05f) - lineToRelative(0.15f, -0.08f) - lineToRelative(0.17f, -0.11f) - lineToRelative(0.67f, -0.46f) - curveToRelative(0.61f, -0.4f, 1.17f, -0.67f, 1.84f, -0.84f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.36f, 1.46f) - curveToRelative(-0.4f, 0.1f, -0.76f, 0.25f, -1.14f, 0.49f) - lineToRelative(-0.3f, 0.19f) - lineToRelative(-0.48f, 0.33f) - curveToRelative(-0.23f, 0.15f, -0.4f, 0.26f, -0.58f, 0.35f) - arcToRelative(2.2f, 2.2f, 0.0f, false, true, -1.96f, 0.1f) - curveToRelative(-0.75f, -0.3f, -1.05f, -0.78f, -1.33f, -1.72f) - lineToRelative(-0.16f, -0.54f) - curveToRelative(-0.18f, -0.59f, -0.3f, -0.68f, -0.73f, -0.68f) - curveToRelative(-0.3f, 0.0f, -0.63f, 0.16f, -1.07f, 0.52f) - lineToRelative(-0.18f, 0.16f) - lineToRelative(-0.92f, 0.88f) - curveToRelative(-1.41f, 1.32f, -2.61f, 1.97f, -4.33f, 1.97f) - curveToRelative(-1.69f, 0.0f, -3.15f, -0.26f, -4.37f, -0.77f) - lineToRelative(2.95f, -0.8f) - curveToRelative(0.45f, 0.04f, 0.92f, 0.07f, 1.42f, 0.07f) - curveToRelative(1.18f, 0.0f, 2.03f, -0.42f, 3.09f, -1.37f) - lineToRelative(0.25f, -0.24f) - lineToRelative(0.54f, -0.5f) - arcToRelative(12.0f, 12.0f, 0.0f, false, true, 0.59f, -0.55f) - curveToRelative(0.68f, -0.57f, 1.3f, -0.87f, 2.03f, -0.87f) - close() - moveTo(19.03f, 2.97f) - arcToRelative(3.58f, 3.58f, 0.0f, false, true, 0.0f, 5.06f) - lineToRelative(-0.29f, 0.29f) - curveToRelative(1.15f, 1.4f, 1.11f, 2.89f, 0.04f, 3.96f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(2.0f, -2.0f) - curveToRelative(0.48f, -0.49f, 0.54f, -1.09f, -0.04f, -1.84f) - lineTo(9.06f, 18.0f) - curveToRelative(-0.27f, 0.28f, -0.62f, 0.48f, -1.0f, 0.58f) - lineToRelative(-5.11f, 1.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.92f, -0.93f) - lineToRelative(1.4f, -5.11f) - curveToRelative(0.1f, -0.38f, 0.3f, -0.72f, 0.57f, -1.0f) - lineToRelative(9.97f, -9.97f) - arcToRelative(3.58f, 3.58f, 0.0f, false, true, 5.06f, 0.0f) - close() - moveTo(15.03f, 4.03f) - lineTo(5.06f, 14.0f) - curveToRelative(-0.09f, 0.1f, -0.16f, 0.2f, -0.19f, 0.33f) - lineToRelative(-1.05f, 3.85f) - lineToRelative(3.85f, -1.05f) - curveToRelative(0.13f, -0.03f, 0.24f, -0.1f, 0.33f, -0.2f) - lineToRelative(9.97f, -9.96f) - arcToRelative(2.08f, 2.08f, 0.0f, true, false, -2.94f, -2.94f) - close() - } - } - return _signature!! - } - -private var _signature: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Sim.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Sim.kt deleted file mode 100644 index f7575765..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Sim.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Sim: ImageVector - get() { - if (_sim != null) { - return _sim!! - } - _sim = fluentIcon(name = "Regular.Sim") { - fluentPath { - moveTo(9.75f, 10.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 7.0f, 12.75f) - verticalLineToRelative(3.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 9.75f, 19.0f) - horizontalLineToRelative(4.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 17.0f, 16.25f) - verticalLineToRelative(-3.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 14.25f, 10.0f) - horizontalLineToRelative(-4.5f) - close() - moveTo(8.5f, 12.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - lineTo(12.0f, 11.5f) - lineTo(12.0f, 14.0f) - lineTo(8.5f, 14.0f) - verticalLineToRelative(-1.25f) - close() - moveTo(8.5f, 15.5f) - lineTo(12.0f, 15.5f) - verticalLineToRelative(2.0f) - lineTo(9.75f, 17.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - verticalLineToRelative(-0.75f) - close() - moveTo(13.5f, 17.5f) - verticalLineToRelative(-6.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineToRelative(-0.75f) - close() - moveTo(7.25f, 2.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 4.0f, 5.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.55f, 5.46f, 22.0f, 7.25f, 22.0f) - horizontalLineToRelative(9.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(20.0f, 9.29f) - curveToRelative(0.0f, -0.87f, -0.34f, -1.7f, -0.95f, -2.3f) - lineTo(15.0f, 2.95f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -2.3f, -0.95f) - lineTo(7.25f, 2.0f) - close() - moveTo(5.5f, 5.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(5.46f) - curveToRelative(0.47f, 0.0f, 0.91f, 0.18f, 1.24f, 0.51f) - lineTo(18.0f, 8.05f) - curveToRelative(0.33f, 0.33f, 0.51f, 0.77f, 0.51f, 1.24f) - verticalLineToRelative(9.46f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-9.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(5.51f, 5.25f) - close() - } - } - return _sim!! - } - -private var _sim: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SkipBack10.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SkipBack10.kt deleted file mode 100644 index 6c9ae95f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SkipBack10.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SkipBack10: ImageVector - get() { - if (_skipBack10 != null) { - return _skipBack10!! - } - _skipBack10 = fluentIcon(name = "Regular.SkipBack10") { - fluentPath { - moveTo(2.75f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(5.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.9f) - arcToRelative(8.33f, 8.33f, 0.0f, false, true, 4.12f, -3.06f) - arcTo(9.68f, 9.68f, 0.0f, false, true, 19.6f, 9.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.32f, -0.72f) - arcTo(11.19f, 11.19f, 0.0f, false, false, 8.03f, 3.51f) - arcTo(9.61f, 9.61f, 0.0f, false, false, 3.5f, 6.65f) - verticalLineToRelative(-3.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(8.95f, 11.03f) - curveToRelative(0.33f, 0.09f, 0.55f, 0.38f, 0.55f, 0.72f) - verticalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-6.42f) - curveToRelative(-0.38f, 0.37f, -0.84f, 0.75f, -1.36f, 1.06f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.78f, -1.28f) - arcToRelative(6.88f, 6.88f, 0.0f, false, false, 2.24f, -2.24f) - lineToRelative(0.01f, -0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.84f, -0.33f) - close() - moveTo(13.2f, 12.63f) - curveToRelative(0.55f, -1.0f, 1.48f, -1.63f, 2.8f, -1.63f) - curveToRelative(1.32f, 0.0f, 2.25f, 0.64f, 2.8f, 1.63f) - curveToRelative(0.53f, 0.93f, 0.7f, 2.15f, 0.7f, 3.37f) - curveToRelative(0.0f, 1.22f, -0.17f, 2.44f, -0.7f, 3.37f) - arcTo(3.05f, 3.05f, 0.0f, false, true, 16.0f, 21.0f) - arcToRelative(3.05f, 3.05f, 0.0f, false, true, -2.8f, -1.63f) - arcToRelative(7.03f, 7.03f, 0.0f, false, true, -0.7f, -3.37f) - curveToRelative(0.0f, -1.22f, 0.18f, -2.44f, 0.7f, -3.37f) - close() - moveTo(14.5f, 13.36f) - arcTo(5.6f, 5.6f, 0.0f, false, false, 14.0f, 16.0f) - curveToRelative(0.0f, 1.12f, 0.17f, 2.03f, 0.5f, 2.64f) - curveToRelative(0.31f, 0.55f, 0.76f, 0.86f, 1.5f, 0.86f) - reflectiveCurveToRelative(1.19f, -0.31f, 1.5f, -0.86f) - curveToRelative(0.33f, -0.6f, 0.5f, -1.52f, 0.5f, -2.64f) - arcToRelative(5.6f, 5.6f, 0.0f, false, false, -0.5f, -2.64f) - curveToRelative(-0.31f, -0.55f, -0.76f, -0.86f, -1.5f, -0.86f) - reflectiveCurveToRelative(-1.19f, 0.31f, -1.5f, 0.86f) - close() - } - } - return _skipBack10!! - } - -private var _skipBack10: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SkipForward10.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SkipForward10.kt deleted file mode 100644 index 95088ef7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SkipForward10.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SkipForward10: ImageVector - get() { - if (_skipForward10 != null) { - return _skipForward10!! - } - _skipForward10 = fluentIcon(name = "Regular.SkipForward10") { - fluentPath { - moveTo(21.25f, 2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(5.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.9f) - arcToRelative(8.33f, 8.33f, 0.0f, false, false, -4.12f, -3.06f) - arcTo(9.69f, 9.69f, 0.0f, false, false, 4.4f, 9.1f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.32f, -0.72f) - arcToRelative(11.18f, 11.18f, 0.0f, false, true, 12.88f, -4.88f) - arcToRelative(9.61f, 9.61f, 0.0f, false, true, 4.53f, 3.14f) - verticalLineToRelative(-3.4f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(16.0f, 11.0f) - curveToRelative(-1.32f, 0.0f, -2.25f, 0.64f, -2.8f, 1.63f) - curveToRelative(-0.52f, 0.93f, -0.7f, 2.15f, -0.7f, 3.37f) - curveToRelative(0.0f, 1.22f, 0.18f, 2.44f, 0.7f, 3.37f) - curveToRelative(0.55f, 1.0f, 1.48f, 1.63f, 2.8f, 1.63f) - curveToRelative(1.32f, 0.0f, 2.25f, -0.64f, 2.8f, -1.63f) - curveToRelative(0.53f, -0.93f, 0.7f, -2.15f, 0.7f, -3.37f) - curveToRelative(0.0f, -1.22f, -0.17f, -2.44f, -0.7f, -3.37f) - arcTo(3.05f, 3.05f, 0.0f, false, false, 16.0f, 11.0f) - close() - moveTo(14.0f, 16.0f) - curveToRelative(0.0f, -1.12f, 0.17f, -2.03f, 0.5f, -2.64f) - curveToRelative(0.31f, -0.55f, 0.76f, -0.86f, 1.5f, -0.86f) - reflectiveCurveToRelative(1.19f, 0.31f, 1.5f, 0.86f) - curveToRelative(0.33f, 0.6f, 0.5f, 1.52f, 0.5f, 2.64f) - arcToRelative(5.6f, 5.6f, 0.0f, false, true, -0.5f, 2.64f) - curveToRelative(-0.31f, 0.55f, -0.76f, 0.86f, -1.5f, 0.86f) - reflectiveCurveToRelative(-1.19f, -0.31f, -1.5f, -0.86f) - arcTo(5.6f, 5.6f, 0.0f, false, true, 14.0f, 16.0f) - close() - moveTo(9.5f, 11.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.39f, -0.4f) - verticalLineToRelative(0.01f) - arcToRelative(3.44f, 3.44f, 0.0f, false, true, -0.15f, 0.22f) - arcToRelative(6.88f, 6.88f, 0.0f, false, true, -2.1f, 2.03f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.78f, 1.28f) - curveToRelative(0.52f, -0.31f, 0.98f, -0.69f, 1.36f, -1.06f) - verticalLineToRelative(6.42f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-8.5f) - close() - } - } - return _skipForward10!! - } - -private var _skipForward10: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SkipForward30.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SkipForward30.kt deleted file mode 100644 index fb202533..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SkipForward30.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SkipForward30: ImageVector - get() { - if (_skipForward30 != null) { - return _skipForward30!! - } - _skipForward30 = fluentIcon(name = "Regular.SkipForward30") { - fluentPath { - moveTo(21.25f, 2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(5.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(3.9f) - arcToRelative(8.33f, 8.33f, 0.0f, false, false, -4.12f, -3.06f) - arcTo(9.69f, 9.69f, 0.0f, false, false, 4.4f, 9.1f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.32f, -0.72f) - arcTo(11.19f, 11.19f, 0.0f, false, true, 15.97f, 3.5f) - arcToRelative(9.61f, 9.61f, 0.0f, false, true, 4.53f, 3.14f) - verticalLineToRelative(-3.4f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(8.75f, 15.25f) - curveToRelative(0.76f, 0.0f, 1.25f, -0.22f, 1.54f, -0.47f) - curveToRelative(0.28f, -0.26f, 0.4f, -0.58f, 0.4f, -0.88f) - curveToRelative(-0.03f, -0.55f, -0.55f, -1.4f, -2.19f, -1.4f) - arcToRelative(3.35f, 3.35f, 0.0f, false, false, -2.2f, 0.83f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.1f, -1.03f) - lineToRelative(0.01f, -0.01f) - lineToRelative(0.02f, -0.02f) - arcToRelative(2.35f, 2.35f, 0.0f, false, true, 0.23f, -0.2f) - arcTo(4.85f, 4.85f, 0.0f, false, true, 8.5f, 11.0f) - curveToRelative(2.2f, 0.0f, 3.63f, 1.27f, 3.68f, 2.85f) - arcTo(2.61f, 2.61f, 0.0f, false, true, 11.16f, 16.0f) - lineToRelative(0.13f, 0.1f) - curveToRelative(0.6f, 0.55f, 0.92f, 1.3f, 0.9f, 2.05f) - curveTo(12.12f, 19.73f, 10.7f, 21.0f, 8.5f, 21.0f) - arcToRelative(4.85f, 4.85f, 0.0f, false, true, -3.27f, -1.27f) - lineToRelative(-0.02f, -0.02f) - reflectiveCurveToRelative(-0.47f, -0.6f, 0.03f, -1.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, 0.03f) - lineToRelative(0.02f, 0.02f) - lineToRelative(0.1f, 0.08f) - arcToRelative(3.35f, 3.35f, 0.0f, false, false, 2.09f, 0.73f) - curveToRelative(1.64f, 0.0f, 2.16f, -0.85f, 2.18f, -1.4f) - curveToRelative(0.01f, -0.3f, -0.1f, -0.62f, -0.4f, -0.88f) - curveToRelative(-0.28f, -0.25f, -0.77f, -0.47f, -1.53f, -0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - close() - moveTo(14.2f, 12.63f) - curveToRelative(0.55f, -1.0f, 1.48f, -1.63f, 2.8f, -1.63f) - curveToRelative(1.32f, 0.0f, 2.25f, 0.64f, 2.8f, 1.63f) - curveToRelative(0.53f, 0.93f, 0.7f, 2.15f, 0.7f, 3.37f) - curveToRelative(0.0f, 1.22f, -0.17f, 2.44f, -0.7f, 3.37f) - arcTo(3.05f, 3.05f, 0.0f, false, true, 17.0f, 21.0f) - arcToRelative(3.05f, 3.05f, 0.0f, false, true, -2.8f, -1.63f) - arcToRelative(7.03f, 7.03f, 0.0f, false, true, -0.7f, -3.37f) - curveToRelative(0.0f, -1.22f, 0.18f, -2.44f, 0.7f, -3.37f) - close() - moveTo(15.5f, 13.36f) - arcTo(5.6f, 5.6f, 0.0f, false, false, 15.0f, 16.0f) - curveToRelative(0.0f, 1.12f, 0.17f, 2.03f, 0.5f, 2.64f) - curveToRelative(0.31f, 0.55f, 0.76f, 0.86f, 1.5f, 0.86f) - reflectiveCurveToRelative(1.19f, -0.31f, 1.5f, -0.86f) - curveToRelative(0.33f, -0.6f, 0.5f, -1.52f, 0.5f, -2.64f) - arcToRelative(5.6f, 5.6f, 0.0f, false, false, -0.5f, -2.64f) - curveToRelative(-0.31f, -0.55f, -0.76f, -0.86f, -1.5f, -0.86f) - reflectiveCurveToRelative(-1.19f, 0.31f, -1.5f, 0.86f) - close() - } - } - return _skipForward30!! - } - -private var _skipForward30: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SkipForwardTab.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SkipForwardTab.kt deleted file mode 100644 index 584d24ea..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SkipForwardTab.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SkipForwardTab: ImageVector - get() { - if (_skipForwardTab != null) { - return _skipForwardTab!! - } - _skipForwardTab = fluentIcon(name = "Regular.SkipForwardTab") { - fluentPath { - moveTo(21.5f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.4f) - arcTo(9.61f, 9.61f, 0.0f, false, false, 15.47f, 4.0f) - arcTo(11.18f, 11.18f, 0.0f, false, false, 2.6f, 8.89f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.32f, 0.72f) - arcToRelative(9.69f, 9.69f, 0.0f, false, true, 11.12f, -4.17f) - arcToRelative(8.33f, 8.33f, 0.0f, false, true, 4.13f, 3.06f) - horizontalLineToRelative(-3.91f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-5.5f) - close() - moveTo(8.0f, 14.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(8.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - lineTo(8.0f, 14.0f) - close() - moveTo(6.0f, 14.5f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(8.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - verticalLineToRelative(4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - lineTo(8.0f, 20.5f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - verticalLineToRelative(-4.0f) - close() - } - } - return _skipForwardTab!! - } - -private var _skipForwardTab: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlashForward.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlashForward.kt deleted file mode 100644 index e447d310..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlashForward.kt +++ /dev/null @@ -1,29 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SlashForward: ImageVector - get() { - if (_slashForward != null) { - return _slashForward!! - } - _slashForward = fluentIcon(name = "Regular.SlashForward") { - fluentPath { - moveTo(15.5f, 2.04f) - curveToRelative(0.39f, 0.14f, 0.6f, 0.57f, 0.46f, 0.96f) - lineToRelative(-6.5f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.42f, -0.5f) - lineToRelative(6.5f, -18.5f) - curveToRelative(0.14f, -0.39f, 0.57f, -0.6f, 0.96f, -0.46f) - close() - } - } - return _slashForward!! - } - -private var _slashForward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Sleep.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Sleep.kt deleted file mode 100644 index 7ca1ea2e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Sleep.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Sleep: ImageVector - get() { - if (_sleep != null) { - return _sleep!! - } - _sleep = fluentIcon(name = "Regular.Sleep") { - fluentPath { - moveTo(13.38f, 3.03f) - arcToRelative(9.0f, 9.0f, 0.0f, true, true, -7.9f, 14.1f) - arcToRelative(0.68f, 0.68f, 0.0f, false, true, 0.32f, -1.02f) - curveToRelative(3.4f, -1.21f, 5.21f, -2.62f, 6.27f, -4.63f) - curveToRelative(1.1f, -2.12f, 1.4f, -4.44f, 0.62f, -7.62f) - arcToRelative(0.68f, 0.68f, 0.0f, false, true, 0.69f, -0.83f) - close() - moveTo(14.38f, 4.66f) - lineTo(14.45f, 5.06f) - curveToRelative(0.42f, 2.7f, 0.07f, 4.97f, -1.06f, 7.12f) - curveToRelative(-1.14f, 2.18f, -3.0f, 3.7f, -6.01f, 4.94f) - arcToRelative(7.5f, 7.5f, 0.0f, true, false, 7.68f, -12.29f) - lineToRelative(-0.34f, -0.09f) - lineToRelative(-0.33f, -0.08f) - close() - moveTo(10.99f, 3.66f) - lineTo(11.0f, 3.76f) - lineTo(11.0f, 9.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -1.5f, -1.94f) - verticalLineToRelative(-2.3f) - lineTo(6.0f, 5.83f) - lineTo(6.0f, 10.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -1.5f, -1.94f) - lineTo(4.5f, 5.27f) - curveToRelative(0.0f, -0.3f, 0.17f, -0.55f, 0.43f, -0.68f) - lineToRelative(0.1f, -0.03f) - lineToRelative(5.0f, -1.53f) - curveToRelative(0.42f, -0.12f, 0.84f, 0.13f, 0.95f, 0.53f) - lineToRelative(0.01f, 0.1f) - close() - } - } - return _sleep!! - } - -private var _sleep: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideAdd.kt deleted file mode 100644 index 3217c944..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideAdd.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SlideAdd: ImageVector - get() { - if (_slideAdd != null) { - return _slideAdd!! - } - _slideAdd = fluentIcon(name = "Regular.SlideAdd") { - fluentPath { - moveTo(2.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) - verticalLineToRelative(6.06f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) - lineTo(20.5f, 6.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(4.75f, 5.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(6.33f) - curveToRelative(0.08f, 0.52f, 0.22f, 1.03f, 0.42f, 1.5f) - lineTo(4.75f, 20.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) - lineTo(2.0f, 6.75f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _slideAdd!! - } - -private var _slideAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideArrowRight.kt deleted file mode 100644 index 9d6618de..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideArrowRight.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SlideArrowRight: ImageVector - get() { - if (_slideArrowRight != null) { - return _slideArrowRight!! - } - _slideArrowRight = fluentIcon(name = "Regular.SlideArrowRight") { - fluentPath { - moveTo(6.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - close() - moveTo(6.0f, 11.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(8.5f) - curveToRelative(0.21f, 0.0f, 0.4f, 0.09f, 0.54f, 0.23f) - curveToRelative(-0.91f, 0.25f, -1.74f, 0.68f, -2.44f, 1.27f) - horizontalLineToRelative(-6.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(20.5f, 6.75f) - verticalLineToRelative(4.98f) - curveToRelative(0.55f, 0.29f, 1.06f, 0.65f, 1.5f, 1.08f) - lineTo(22.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 4.0f) - lineTo(4.75f, 4.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 6.75f) - verticalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 20.0f) - horizontalLineToRelative(6.75f) - curveToRelative(-0.2f, -0.47f, -0.34f, -0.98f, -0.42f, -1.5f) - lineTo(4.75f, 18.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - lineTo(3.5f, 6.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(14.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - close() - moveTo(11.31f, 15.5f) - curveToRelative(0.18f, -0.53f, 0.42f, -1.04f, 0.71f, -1.5f) - lineTo(6.75f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.56f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(19.29f, 17.0f) - lineTo(14.5f, 17.0f) - close() - } - } - return _slideArrowRight!! - } - -private var _slideArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideEraser.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideEraser.kt deleted file mode 100644 index 5db13fa1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideEraser.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SlideEraser: ImageVector - get() { - if (_slideEraser != null) { - return _slideEraser!! - } - _slideEraser = fluentIcon(name = "Regular.SlideEraser") { - fluentPath { - moveTo(2.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) - verticalLineToRelative(5.79f) - lineToRelative(-0.8f, -0.8f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -0.7f, -0.5f) - verticalLineTo(6.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineTo(4.75f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(7.26f) - curveToRelative(0.02f, 0.53f, 0.2f, 1.06f, 0.57f, 1.5f) - horizontalLineTo(4.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) - verticalLineTo(6.75f) - close() - } - fluentPath { - moveTo(20.5f, 12.44f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.13f, 0.0f) - lineToRelative(-3.11f, 3.11f) - lineToRelative(4.2f, 4.2f) - lineToRelative(3.12f, -3.1f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -2.12f) - lineToRelative(-2.09f, -2.09f) - close() - } - fluentPath { - moveToRelative(13.45f, 17.36f) - lineToRelative(1.1f, -1.1f) - lineToRelative(4.21f, 4.2f) - lineToRelative(-1.1f, 1.1f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.12f, 0.0f) - lineToRelative(-2.09f, -2.08f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -2.12f) - close() - } - } - return _slideEraser!! - } - -private var _slideEraser: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideGrid.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideGrid.kt deleted file mode 100644 index 1912e232..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideGrid.kt +++ /dev/null @@ -1,106 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SlideGrid: ImageVector - get() { - if (_slideGrid != null) { - return _slideGrid!! - } - _slideGrid = fluentIcon(name = "Regular.SlideGrid") { - fluentPath { - moveTo(5.0f, 13.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(4.0f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineToRelative(-4.0f) - curveTo(5.56f, 17.0f, 5.0f, 16.44f, 5.0f, 15.75f) - verticalLineToRelative(-2.0f) - close() - moveTo(6.5f, 14.0f) - verticalLineToRelative(1.5f) - lineTo(10.0f, 15.5f) - lineTo(10.0f, 14.0f) - lineTo(6.5f, 14.0f) - close() - moveTo(13.75f, 12.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(4.0f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-4.0f) - close() - moveTo(14.0f, 15.5f) - lineTo(14.0f, 14.0f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(1.5f) - lineTo(14.0f, 15.5f) - close() - moveTo(5.0f, 8.25f) - curveTo(5.0f, 7.56f, 5.56f, 7.0f, 6.25f, 7.0f) - horizontalLineToRelative(4.0f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineToRelative(-4.0f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - verticalLineToRelative(-2.0f) - close() - moveTo(6.5f, 8.5f) - lineTo(6.5f, 10.0f) - lineTo(10.0f, 10.0f) - lineTo(10.0f, 8.5f) - lineTo(6.5f, 8.5f) - close() - moveTo(13.75f, 7.0f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(4.0f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-2.0f) - curveTo(19.0f, 7.56f, 18.44f, 7.0f, 17.75f, 7.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(14.0f, 10.0f) - lineTo(14.0f, 8.5f) - horizontalLineToRelative(3.5f) - lineTo(17.5f, 10.0f) - lineTo(14.0f, 10.0f) - close() - moveTo(2.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) - verticalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) - lineTo(4.75f, 20.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) - lineTo(2.0f, 6.75f) - close() - moveTo(4.75f, 5.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(14.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - lineTo(20.5f, 6.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(4.75f, 5.5f) - close() - } - } - return _slideGrid!! - } - -private var _slideGrid: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideHide.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideHide.kt deleted file mode 100644 index caa465e1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideHide.kt +++ /dev/null @@ -1,124 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SlideHide: ImageVector - get() { - if (_slideHide != null) { - return _slideHide!! - } - _slideHide = fluentIcon(name = "Regular.SlideHide") { - fluentPath { - moveTo(6.75f, 3.0f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 2.0f, 7.75f) - verticalLineToRelative(7.0f) - curveTo(2.0f, 15.99f, 3.0f, 17.0f, 4.25f, 17.0f) - horizontalLineToRelative(0.25f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-7.0f) - curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) - horizontalLineToRelative(10.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.25f) - lineTo(19.0f, 5.5f) - verticalLineToRelative(-0.25f) - curveTo(19.0f, 4.01f, 18.0f, 3.0f, 16.75f, 3.0f) - horizontalLineToRelative(-10.0f) - close() - moveTo(19.25f, 6.5f) - horizontalLineToRelative(0.5f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-1.1f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(6.25f, 11.5f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-2.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(6.99f, 17.14f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.49f, 0.1f) - verticalLineToRelative(1.16f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.25f, 2.1f) - horizontalLineToRelative(0.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-0.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) - verticalLineToRelative(-1.1f) - close() - moveTo(22.0f, 17.24f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) - verticalLineToRelative(1.01f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.0f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-1.0f) - close() - moveTo(14.75f, 19.0f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(12.25f, 19.0f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(21.99f, 12.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.49f, 0.1f) - verticalLineToRelative(2.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - verticalLineToRelative(-2.6f) - close() - moveTo(9.5f, 7.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-1.0f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.0f) - curveToRelative(0.42f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - close() - moveTo(15.25f, 6.5f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(12.75f, 6.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - } - } - return _slideHide!! - } - -private var _slideHide: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideLayout.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideLayout.kt deleted file mode 100644 index 2c46c71d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideLayout.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SlideLayout: ImageVector - get() { - if (_slideLayout != null) { - return _slideLayout!! - } - _slideLayout = fluentIcon(name = "Regular.SlideLayout") { - fluentPath { - moveTo(6.75f, 7.0f) - curveTo(5.78f, 7.0f, 5.0f, 7.78f, 5.0f, 8.75f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(10.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-6.5f) - curveTo(19.0f, 7.78f, 18.22f, 7.0f, 17.25f, 7.0f) - lineTo(6.75f, 7.0f) - close() - moveTo(6.5f, 8.75f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(10.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(1.75f) - horizontalLineToRelative(-11.0f) - lineTo(6.5f, 8.75f) - close() - moveTo(10.5f, 12.0f) - horizontalLineToRelative(7.0f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - lineTo(10.5f, 15.5f) - lineTo(10.5f, 12.0f) - close() - moveTo(9.0f, 12.0f) - verticalLineToRelative(3.5f) - lineTo(6.75f, 15.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - lineTo(6.5f, 12.0f) - lineTo(9.0f, 12.0f) - close() - moveTo(4.75f, 4.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 6.75f) - verticalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 20.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 17.25f) - lineTo(22.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 4.0f) - lineTo(4.75f, 4.0f) - close() - moveTo(3.5f, 6.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(14.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - lineTo(4.75f, 18.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - lineTo(3.5f, 6.75f) - close() - } - } - return _slideLayout!! - } - -private var _slideLayout: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideLink.kt deleted file mode 100644 index 00a800d0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideLink.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SlideLink: ImageVector - get() { - if (_slideLink != null) { - return _slideLink!! - } - _slideLink = fluentIcon(name = "Regular.SlideLink") { - fluentPath { - moveTo(2.0f, 6.25f) - curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) - horizontalLineToRelative(15.5f) - curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) - verticalLineToRelative(7.13f) - arcToRelative(4.73f, 4.73f, 0.0f, false, false, -1.5f, -0.71f) - lineTo(20.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(4.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(6.92f) - curveToRelative(0.14f, 0.55f, 0.39f, 1.05f, 0.7f, 1.5f) - lineTo(4.26f, 20.0f) - curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) - lineTo(2.0f, 6.25f) - close() - moveTo(23.0f, 17.25f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.75f, -3.75f) - horizontalLineToRelative(-0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - lineTo(19.25f, 21.0f) - horizontalLineToRelative(0.2f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 17.24f) - close() - moveTo(16.5f, 14.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-0.2f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - horizontalLineToRelative(-0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(20.0f, 17.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - } - } - return _slideLink!! - } - -private var _slideLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideMicrophone.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideMicrophone.kt deleted file mode 100644 index eb73d705..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideMicrophone.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SlideMicrophone: ImageVector - get() { - if (_slideMicrophone != null) { - return _slideMicrophone!! - } - _slideMicrophone = fluentIcon(name = "Regular.SlideMicrophone") { - fluentPath { - moveTo(4.75f, 4.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 6.75f) - verticalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 20.0f) - horizontalLineToRelative(9.0f) - curveToRelative(-0.3f, -0.46f, -0.51f, -0.96f, -0.64f, -1.5f) - lineTo(4.75f, 18.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - lineTo(3.5f, 6.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(14.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(4.87f) - curveToRelative(0.95f, 0.67f, 1.5f, 1.78f, 1.5f, 2.88f) - lineTo(22.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 4.0f) - lineTo(4.75f, 4.0f) - close() - moveTo(16.52f, 20.0f) - arcToRelative(2.98f, 2.98f, 0.0f, false, true, -1.34f, -1.5f) - curveToRelative(-0.12f, -0.3f, -0.18f, -0.64f, -0.18f, -1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - curveToRelative(0.0f, 0.34f, 0.05f, 0.68f, 0.15f, 1.0f) - curveToRelative(0.17f, 0.55f, 0.47f, 1.06f, 0.87f, 1.5f) - arcTo(4.77f, 4.77f, 0.0f, false, false, 18.0f, 21.47f) - verticalLineToRelative(1.03f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-1.03f) - curveToRelative(2.25f, -0.25f, 4.0f, -1.97f, 4.0f, -3.97f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - curveToRelative(0.0f, 1.75f, -1.57f, 3.0f, -3.5f, 3.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -1.98f, -0.5f) - close() - moveTo(18.5f, 19.5f) - curveToRelative(-0.86f, 0.0f, -1.56f, -0.41f, -2.0f, -1.0f) - curveToRelative(-0.32f, -0.44f, -0.5f, -0.97f, -0.5f, -1.5f) - verticalLineToRelative(-2.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - lineTo(21.0f, 17.0f) - curveToRelative(0.0f, 1.25f, -1.0f, 2.5f, -2.5f, 2.5f) - close() - moveTo(6.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - close() - moveTo(6.0f, 11.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(6.0f, 14.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _slideMicrophone!! - } - -private var _slideMicrophone: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideMultiple.kt deleted file mode 100644 index 3f5cd175..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideMultiple.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SlideMultiple: ImageVector - get() { - if (_slideMultiple != null) { - return _slideMultiple!! - } - _slideMultiple = fluentIcon(name = "Regular.SlideMultiple") { - fluentPath { - moveTo(6.75f, 3.0f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 2.0f, 7.75f) - verticalLineToRelative(7.0f) - curveTo(2.0f, 15.99f, 3.0f, 17.0f, 4.25f, 17.0f) - horizontalLineToRelative(0.25f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-7.0f) - curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) - horizontalLineToRelative(10.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.25f) - lineTo(19.0f, 5.5f) - verticalLineToRelative(-0.25f) - curveTo(19.0f, 4.01f, 18.0f, 3.0f, 16.75f, 3.0f) - horizontalLineToRelative(-10.0f) - close() - moveTo(7.75f, 6.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(12.0f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-12.0f) - close() - moveTo(7.0f, 8.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(12.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-9.5f) - close() - } - } - return _slideMultiple!! - } - -private var _slideMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideMultipleArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideMultipleArrowRight.kt deleted file mode 100644 index 91370365..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideMultipleArrowRight.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SlideMultipleArrowRight: ImageVector - get() { - if (_slideMultipleArrowRight != null) { - return _slideMultipleArrowRight!! - } - _slideMultipleArrowRight = fluentIcon(name = "Regular.SlideMultipleArrowRight") { - fluentPath { - moveTo(6.75f, 3.0f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 2.0f, 7.75f) - verticalLineToRelative(7.0f) - curveTo(2.0f, 15.99f, 3.0f, 17.0f, 4.25f, 17.0f) - horizontalLineToRelative(0.25f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-7.0f) - curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) - horizontalLineToRelative(10.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.25f) - lineTo(19.0f, 5.5f) - verticalLineToRelative(-0.25f) - curveTo(19.0f, 4.01f, 18.0f, 3.0f, 16.75f, 3.0f) - horizontalLineToRelative(-10.0f) - close() - moveTo(7.75f, 6.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(3.98f) - arcToRelative(6.46f, 6.46f, 0.0f, false, true, -0.56f, -1.5f) - lineTo(7.75f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(12.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.98f) - curveToRelative(0.55f, 0.29f, 1.06f, 0.65f, 1.5f, 1.08f) - lineTo(22.0f, 8.75f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-12.0f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(14.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(19.29f, 17.0f) - lineTo(14.5f, 17.0f) - close() - } - } - return _slideMultipleArrowRight!! - } - -private var _slideMultipleArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideMultipleSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideMultipleSearch.kt deleted file mode 100644 index 5fbd7542..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideMultipleSearch.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SlideMultipleSearch: ImageVector - get() { - if (_slideMultipleSearch != null) { - return _slideMultipleSearch!! - } - _slideMultipleSearch = fluentIcon(name = "Regular.SlideMultipleSearch") { - fluentPath { - moveTo(6.75f, 3.0f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 2.0f, 7.75f) - verticalLineToRelative(4.5f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 1.5f, -0.88f) - lineTo(3.5f, 7.75f) - curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) - horizontalLineToRelative(10.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.25f) - lineTo(19.0f, 5.5f) - verticalLineToRelative(-0.25f) - curveTo(19.0f, 4.01f, 18.0f, 3.0f, 16.75f, 3.0f) - horizontalLineToRelative(-10.0f) - close() - moveTo(19.75f, 20.5f) - horizontalLineToRelative(-7.78f) - lineToRelative(-1.5f, -1.5f) - horizontalLineToRelative(9.28f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(2.46f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 5.5f, 11.0f) - lineTo(5.5f, 8.75f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(12.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - close() - moveTo(5.5f, 21.0f) - curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) - lineToRelative(2.62f, 2.61f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.61f, -2.61f) - arcTo(4.5f, 4.5f, 0.0f, true, false, 5.5f, 21.0f) - close() - moveTo(5.5f, 19.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) - close() - } - } - return _slideMultipleSearch!! - } - -private var _slideMultipleSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideSearch.kt deleted file mode 100644 index 015d6f99..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideSearch.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SlideSearch: ImageVector - get() { - if (_slideSearch != null) { - return _slideSearch!! - } - _slideSearch = fluentIcon(name = "Regular.SlideSearch") { - fluentPath { - moveTo(4.75f, 4.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 6.75f) - verticalLineToRelative(4.5f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 1.5f, -0.88f) - lineTo(3.5f, 6.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(14.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineToRelative(-8.28f) - lineToRelative(1.5f, 1.5f) - horizontalLineToRelative(6.78f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 17.25f) - lineTo(22.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 4.0f) - lineTo(4.75f, 4.0f) - close() - moveTo(8.66f, 11.0f) - curveToRelative(0.58f, 0.4f, 1.07f, 0.91f, 1.45f, 1.5f) - horizontalLineToRelative(7.14f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(8.66f, 11.0f) - close() - moveTo(15.25f, 15.5f) - lineTo(11.0f, 15.5f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -0.2f, -1.5f) - horizontalLineToRelative(4.45f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(6.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.5f) - close() - moveTo(5.5f, 20.0f) - curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) - lineToRelative(2.62f, 2.61f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.61f, -2.61f) - arcTo(4.5f, 4.5f, 0.0f, true, false, 5.5f, 20.0f) - close() - moveTo(5.5f, 18.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) - close() - } - } - return _slideSearch!! - } - -private var _slideSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideSettings.kt deleted file mode 100644 index df9b99cd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideSettings.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SlideSettings: ImageVector - get() { - if (_slideSettings != null) { - return _slideSettings!! - } - _slideSettings = fluentIcon(name = "Regular.SlideSettings") { - fluentPath { - moveTo(2.0f, 7.25f) - curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) - horizontalLineToRelative(13.5f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(5.56f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) - lineTo(20.5f, 7.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(5.25f, 5.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(5.83f) - curveToRelative(0.08f, 0.52f, 0.22f, 1.03f, 0.42f, 1.5f) - lineTo(5.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - close() - moveTo(14.28f, 13.98f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.59f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) - lineToRelative(0.55f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) - lineToRelative(-0.19f, 0.64f) - curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) - lineToRelative(0.49f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) - lineToRelative(-0.2f, -0.69f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) - lineToRelative(0.59f, -0.14f) - arcToRelative(5.72f, 5.72f, 0.0f, false, false, 0.0f, -1.8f) - lineToRelative(-0.55f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.19f, -0.63f) - curveToRelative(-0.44f, -0.39f, -0.94f, -0.7f, -1.49f, -0.93f) - lineToRelative(-0.49f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) - lineToRelative(0.2f, 0.7f) - close() - moveTo(17.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) - close() - } - } - return _slideSettings!! - } - -private var _slideSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideSize.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideSize.kt deleted file mode 100644 index c0a8a323..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideSize.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SlideSize: ImageVector - get() { - if (_slideSize != null) { - return _slideSize!! - } - _slideSize = fluentIcon(name = "Regular.SlideSize") { - fluentPath { - moveTo(16.78f, 7.22f) - curveToRelative(0.14f, 0.14f, 0.22f, 0.33f, 0.22f, 0.53f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.69f) - lineToRelative(-1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(1.72f, -1.72f) - horizontalLineToRelative(-0.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.51f) - curveToRelative(0.2f, 0.0f, 0.39f, 0.08f, 0.53f, 0.22f) - close() - moveTo(7.0f, 16.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, 0.75f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.69f) - lineToRelative(1.72f, -1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineTo(8.5f, 14.44f) - verticalLineToRelative(-0.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.5f) - close() - moveTo(2.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) - verticalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) - lineTo(4.75f, 20.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) - lineTo(2.0f, 6.75f) - close() - moveTo(4.75f, 5.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(14.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - lineTo(20.5f, 6.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(4.75f, 5.5f) - close() - } - } - return _slideSize!! - } - -private var _slideSize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideText.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideText.kt deleted file mode 100644 index 3f1ebd18..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideText.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SlideText: ImageVector - get() { - if (_slideText != null) { - return _slideText!! - } - _slideText = fluentIcon(name = "Regular.SlideText") { - fluentPath { - moveTo(6.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - close() - moveTo(6.0f, 11.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(6.75f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.5f) - close() - moveTo(4.75f, 4.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 6.75f) - verticalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 20.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 17.25f) - lineTo(22.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 4.0f) - lineTo(4.75f, 4.0f) - close() - moveTo(3.5f, 6.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(14.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - lineTo(4.75f, 18.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - lineTo(3.5f, 6.75f) - close() - } - } - return _slideText!! - } - -private var _slideText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideTextMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideTextMultiple.kt deleted file mode 100644 index a81a14a6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideTextMultiple.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SlideTextMultiple: ImageVector - get() { - if (_slideTextMultiple != null) { - return _slideTextMultiple!! - } - _slideTextMultiple = fluentIcon(name = "Regular.SlideTextMultiple") { - fluentPath { - moveTo(6.75f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - close() - moveTo(6.0f, 11.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(6.75f, 13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - close() - moveTo(5.25f, 4.0f) - horizontalLineToRelative(11.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.24f, 3.07f) - lineToRelative(0.01f, 0.18f) - verticalLineToRelative(8.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) - lineToRelative(-0.18f, 0.01f) - lineTo(5.25f, 19.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(2.0f, 15.75f) - verticalLineToRelative(-8.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(5.25f, 4.0f) - close() - moveTo(3.5f, 7.2f) - verticalLineToRelative(8.55f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(11.5f) - curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) - lineToRelative(0.01f, -0.15f) - lineTo(18.5f, 7.2f) - curveToRelative(-0.03f, -0.94f, -0.8f, -1.7f, -1.75f, -1.7f) - lineTo(5.25f, 5.5f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - verticalLineToRelative(0.1f) - lineTo(3.5f, 7.2f) - close() - moveTo(21.0f, 7.51f) - curveToRelative(0.9f, 0.58f, 1.5f, 1.59f, 1.5f, 2.74f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) - horizontalLineToRelative(-9.0f) - curveToRelative(-1.15f, 0.0f, -2.16f, -0.6f, -2.74f, -1.5f) - horizontalLineToRelative(11.74f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 21.0f, 16.25f) - lineTo(21.0f, 7.51f) - close() - } - } - return _slideTextMultiple!! - } - -private var _slideTextMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideTextPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideTextPerson.kt deleted file mode 100644 index e43d93fc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideTextPerson.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SlideTextPerson: ImageVector - get() { - if (_slideTextPerson != null) { - return _slideTextPerson!! - } - _slideTextPerson = fluentIcon(name = "Regular.SlideTextPerson") { - fluentPath { - moveTo(6.0f, 8.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 6.0f, 8.75f) - close() - moveTo(6.75f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-8.5f) - close() - moveTo(6.0f, 14.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(2.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) - lineTo(22.0f, 14.0f) - horizontalLineToRelative(-0.04f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -1.46f, -2.37f) - lineTo(20.5f, 6.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(4.75f, 5.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(8.56f) - curveToRelative(-0.2f, 0.38f, -0.31f, 0.81f, -0.31f, 1.27f) - verticalLineToRelative(0.1f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 0.13f) - lineTo(4.75f, 20.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) - lineTo(2.0f, 6.75f) - close() - moveTo(21.0f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - close() - moveTo(23.0f, 19.88f) - curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) - reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) - horizontalLineToRelative(5.46f) - curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) - verticalLineToRelative(0.1f) - close() - } - } - return _slideTextPerson!! - } - -private var _slideTextPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideTransition.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideTransition.kt deleted file mode 100644 index 31b959ea..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SlideTransition.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SlideTransition: ImageVector - get() { - if (_slideTransition != null) { - return _slideTransition!! - } - _slideTransition = fluentIcon(name = "Regular.SlideTransition") { - fluentPath { - moveTo(4.75f, 4.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 6.75f) - verticalLineToRelative(10.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 20.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 17.25f) - lineTo(22.0f, 6.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 4.0f) - lineTo(4.75f, 4.0f) - close() - moveTo(3.5f, 6.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - lineTo(5.0f, 5.5f) - verticalLineToRelative(13.0f) - horizontalLineToRelative(-0.25f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - lineTo(3.5f, 6.75f) - close() - moveTo(6.5f, 18.5f) - verticalLineToRelative(-13.0f) - lineTo(9.0f, 5.5f) - verticalLineToRelative(13.0f) - lineTo(6.5f, 18.5f) - close() - moveTo(14.0f, 18.5f) - horizontalLineToRelative(-3.5f) - verticalLineToRelative(-13.0f) - lineTo(14.0f, 5.5f) - verticalLineToRelative(13.0f) - close() - moveTo(15.5f, 18.5f) - verticalLineToRelative(-13.0f) - horizontalLineToRelative(3.75f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - lineTo(15.5f, 18.5f) - close() - } - } - return _slideTransition!! - } - -private var _slideTransition: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Smartwatch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Smartwatch.kt deleted file mode 100644 index c3d546a5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Smartwatch.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Smartwatch: ImageVector - get() { - if (_smartwatch != null) { - return _smartwatch!! - } - _smartwatch = fluentIcon(name = "Regular.Smartwatch") { - fluentPath { - moveTo(7.5f, 6.4f) - lineTo(7.5f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - verticalLineToRelative(2.4f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 18.0f, 9.0f) - verticalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -1.5f, 2.6f) - lineTo(16.5f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - verticalLineToRelative(-2.4f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 6.0f, 15.0f) - lineTo(6.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 1.5f, -2.6f) - close() - moveTo(9.5f, 3.5f) - arcTo(0.5f, 0.5f, 0.0f, false, false, 9.0f, 4.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(6.0f) - lineTo(15.0f, 4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - horizontalLineToRelative(-5.0f) - close() - moveTo(16.5f, 15.0f) - lineTo(16.5f, 9.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(9.0f, 7.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(6.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - close() - moveTo(9.0f, 20.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-2.0f) - lineTo(9.0f, 18.0f) - verticalLineToRelative(2.0f) - close() - } - } - return _smartwatch!! - } - -private var _smartwatch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SmartwatchDot.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SmartwatchDot.kt deleted file mode 100644 index b9726a45..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SmartwatchDot.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SmartwatchDot: ImageVector - get() { - if (_smartwatchDot != null) { - return _smartwatchDot!! - } - _smartwatchDot = fluentIcon(name = "Regular.SmartwatchDot") { - fluentPath { - moveTo(14.5f, 2.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.79f, 1.1f) - arcToRelative(3.49f, 3.49f, 0.0f, false, false, 0.21f, 3.2f) - verticalLineToRelative(0.1f) - lineToRelative(0.1f, 0.06f) - curveToRelative(0.25f, 0.37f, 0.57f, 0.69f, 0.94f, 0.94f) - curveToRelative(0.29f, 0.46f, 0.46f, 1.01f, 0.46f, 1.6f) - verticalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -1.5f, 2.6f) - lineTo(16.5f, 20.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-5.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - verticalLineToRelative(-2.4f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 6.0f, 15.0f) - lineTo(6.0f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 1.5f, -2.6f) - lineTo(7.5f, 4.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - horizontalLineToRelative(5.0f) - close() - moveTo(9.5f, 3.5f) - arcTo(0.5f, 0.5f, 0.0f, false, false, 9.0f, 4.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(6.0f) - lineTo(15.0f, 4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - horizontalLineToRelative(-5.0f) - close() - moveTo(16.5f, 15.0f) - lineTo(16.5f, 9.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(9.0f, 7.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(6.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - close() - moveTo(9.0f, 20.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - verticalLineToRelative(-2.0f) - lineTo(9.0f, 18.0f) - verticalLineToRelative(2.0f) - close() - moveTo(22.0f, 4.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, -5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 5.0f, 0.0f) - close() - } - } - return _smartwatchDot!! - } - -private var _smartwatchDot: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Snooze.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Snooze.kt deleted file mode 100644 index 6c0c286f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Snooze.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Snooze: ImageVector - get() { - if (_snooze != null) { - return _snooze!! - } - _snooze = fluentIcon(name = "Regular.Snooze") { - fluentPath { - moveTo(8.24f, 13.0f) - curveToRelative(0.58f, 0.0f, 0.93f, 0.62f, 0.67f, 1.1f) - lineToRelative(-0.06f, 0.1f) - lineToRelative(-4.62f, 6.3f) - horizontalLineToRelative(4.01f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.75f, 0.65f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.64f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.66f, -1.1f) - lineToRelative(0.05f, -0.1f) - lineToRelative(4.62f, -6.3f) - horizontalLineTo(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) - lineToRelative(-0.01f, -0.1f) - curveToRelative(0.0f, -0.39f, 0.28f, -0.7f, 0.65f, -0.75f) - horizontalLineToRelative(5.6f) - close() - moveTo(21.25f, 2.0f) - curveToRelative(0.6f, 0.0f, 0.94f, 0.66f, 0.64f, 1.15f) - lineToRelative(-0.06f, 0.08f) - lineToRelative(-8.5f, 10.27f) - horizontalLineToRelative(7.92f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - horizontalLineToRelative(-9.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.64f, -1.14f) - lineToRelative(0.06f, -0.08f) - lineTo(19.66f, 3.5f) - horizontalLineToRelative(-7.91f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.65f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - horizontalLineToRelative(9.6f) - close() - } - } - return _snooze!! - } - -private var _snooze: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SoundSource.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SoundSource.kt deleted file mode 100644 index 780c58bb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SoundSource.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SoundSource: ImageVector - get() { - if (_soundSource != null) { - return _soundSource!! - } - _soundSource = fluentIcon(name = "Regular.SoundSource") { - fluentPath { - moveTo(3.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 14.76f, 5.75f) - lineToRelative(1.0f, 1.13f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -14.5f, 0.0f) - lineToRelative(0.98f, -1.13f) - arcTo(8.47f, 8.47f, 0.0f, false, true, 3.5f, 12.0f) - close() - moveTo(19.25f, 12.13f) - arcToRelative(7.1f, 7.1f, 0.0f, false, true, -1.78f, 4.71f) - lineToRelative(-1.0f, -1.14f) - arcToRelative(5.63f, 5.63f, 0.0f, true, false, -8.8f, -0.15f) - lineTo(6.65f, 16.7f) - arcToRelative(7.12f, 7.12f, 0.0f, true, true, 12.6f, -4.57f) - close() - moveTo(16.25f, 12.0f) - curveToRelative(0.0f, 0.94f, -0.3f, 1.8f, -0.82f, 2.51f) - lineToRelative(-1.03f, -1.17f) - arcToRelative(2.75f, 2.75f, 0.0f, true, false, -4.8f, 0.0f) - lineTo(8.57f, 14.5f) - arcTo(4.25f, 4.25f, 0.0f, true, true, 16.25f, 12.0f) - close() - moveTo(12.56f, 12.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.12f, 0.0f) - lineToRelative(-7.0f, 8.0f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 5.0f, 22.0f) - horizontalLineToRelative(14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.56f, -1.24f) - lineToRelative(-7.0f, -8.0f) - close() - moveTo(17.35f, 20.5f) - lineTo(6.65f, 20.5f) - lineTo(12.0f, 14.39f) - lineToRelative(5.35f, 6.11f) - close() - } - } - return _soundSource!! - } - -private var _soundSource: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SoundWaveCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SoundWaveCircle.kt deleted file mode 100644 index 613cd41e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SoundWaveCircle.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SoundWaveCircle: ImageVector - get() { - if (_soundWaveCircle != null) { - return _soundWaveCircle!! - } - _soundWaveCircle = fluentIcon(name = "Regular.SoundWaveCircle") { - fluentPath { - moveTo(11.0f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-6.5f) - close() - moveTo(17.0f, 8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-6.5f) - close() - moveTo(14.0f, 10.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-3.5f) - close() - moveTo(8.0f, 10.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.5f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) - close() - moveTo(3.5f, 12.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 17.0f, 0.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, -17.0f, 0.0f) - close() - } - } - return _soundWaveCircle!! - } - -private var _soundWaveCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Space3D.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Space3D.kt deleted file mode 100644 index 7856a1bf..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Space3D.kt +++ /dev/null @@ -1,88 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Space3D: ImageVector - get() { - if (_space3D != null) { - return _space3D!! - } - _space3D = fluentIcon(name = "Regular.Space3D") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 11.0f) - horizontalLineToRelative(15.0f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(6.25f, 4.5f) - close() - moveTo(4.5f, 14.08f) - lineToRelative(1.19f, -1.58f) - lineTo(4.5f, 12.5f) - verticalLineToRelative(1.58f) - close() - moveTo(5.69f, 15.0f) - horizontalLineToRelative(3.29f) - lineToRelative(0.62f, -2.5f) - lineTo(7.56f, 12.5f) - lineTo(5.7f, 15.0f) - close() - moveTo(4.5f, 16.5f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(1.6f) - lineToRelative(0.75f, -3.0f) - lineTo(4.5f, 16.5f) - close() - moveTo(10.15f, 16.5f) - lineTo(9.4f, 19.5f) - horizontalLineToRelative(5.66f) - lineToRelative(-0.94f, -3.0f) - horizontalLineToRelative(-3.97f) - close() - moveTo(15.69f, 16.5f) - lineTo(16.63f, 19.5f) - horizontalLineToRelative(1.12f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 16.5f) - horizontalLineToRelative(-3.8f) - close() - moveTo(18.31f, 15.0f) - lineTo(16.44f, 12.5f) - horizontalLineToRelative(-2.0f) - lineToRelative(0.78f, 2.5f) - horizontalLineToRelative(3.1f) - close() - moveTo(13.65f, 15.0f) - lineTo(12.87f, 12.5f) - horizontalLineToRelative(-1.72f) - lineToRelative(-0.63f, 2.5f) - horizontalLineToRelative(3.13f) - close() - moveTo(19.5f, 14.08f) - lineTo(19.5f, 12.5f) - horizontalLineToRelative(-1.19f) - lineToRelative(1.19f, 1.58f) - close() - } - } - return _space3D!! - } - -private var _space3D: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Spacebar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Spacebar.kt deleted file mode 100644 index 9abe638c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Spacebar.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Spacebar: ImageVector - get() { - if (_spacebar != null) { - return _spacebar!! - } - _spacebar = fluentIcon(name = "Regular.Spacebar") { - fluentPath { - moveTo(20.5f, 11.0f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineTo(3.75f) - arcTo(0.25f, 0.25f, 0.0f, false, true, 3.5f, 13.0f) - verticalLineToRelative(-2.0f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 2.0f, 11.0f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(16.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - close() - } - } - return _spacebar!! - } - -private var _spacebar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Sparkle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Sparkle.kt deleted file mode 100644 index 87ebd14d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Sparkle.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Sparkle: ImageVector - get() { - if (_sparkle != null) { - return _sparkle!! - } - _sparkle = fluentIcon(name = "Regular.Sparkle") { - fluentPath { - moveTo(8.67f, 15.73f) - arcToRelative(1.44f, 1.44f, 0.0f, false, false, 2.16f, -0.61f) - lineToRelative(0.61f, -1.86f) - arcToRelative(2.87f, 2.87f, 0.0f, false, true, 1.82f, -1.81f) - lineToRelative(1.78f, -0.58f) - arcToRelative(1.44f, 1.44f, 0.0f, false, false, -0.06f, -2.74f) - lineToRelative(-1.75f, -0.57f) - arcToRelative(2.88f, 2.88f, 0.0f, false, true, -1.82f, -1.82f) - lineToRelative(-0.58f, -1.78f) - arcToRelative(1.45f, 1.45f, 0.0f, false, false, -2.73f, 0.02f) - lineToRelative(-0.59f, 1.8f) - arcToRelative(2.88f, 2.88f, 0.0f, false, true, -1.77f, 1.78f) - lineToRelative(-1.77f, 0.57f) - arcToRelative(1.44f, 1.44f, 0.0f, false, false, 0.01f, 2.73f) - lineToRelative(1.76f, 0.57f) - arcToRelative(2.89f, 2.89f, 0.0f, false, true, 1.82f, 1.83f) - lineToRelative(0.58f, 1.77f) - curveToRelative(0.1f, 0.29f, 0.28f, 0.53f, 0.53f, 0.7f) - close() - moveTo(8.29f, 11.48f) - arcTo(4.4f, 4.4f, 0.0f, false, false, 6.21f, 10.0f) - lineToRelative(-1.6f, -0.5f) - lineToRelative(1.61f, -0.52f) - arcTo(4.4f, 4.4f, 0.0f, false, false, 8.95f, 6.2f) - lineToRelative(0.52f, -1.58f) - lineToRelative(0.51f, 1.59f) - arcToRelative(4.37f, 4.37f, 0.0f, false, false, 2.79f, 2.77f) - lineToRelative(1.61f, 0.52f) - lineToRelative(-1.58f, 0.52f) - arcToRelative(4.38f, 4.38f, 0.0f, false, false, -2.78f, 2.77f) - lineToRelative(-0.51f, 1.59f) - lineToRelative(-0.52f, -1.59f) - curveToRelative(-0.16f, -0.47f, -0.4f, -0.91f, -0.7f, -1.3f) - close() - moveTo(16.33f, 20.78f) - curveToRelative(-0.19f, -0.13f, -0.33f, -0.33f, -0.4f, -0.55f) - lineToRelative(-0.34f, -1.0f) - arcToRelative(1.31f, 1.31f, 0.0f, false, false, -0.82f, -0.83f) - lineToRelative(-0.99f, -0.32f) - arcTo(1.15f, 1.15f, 0.0f, false, true, 13.0f, 17.0f) - arcToRelative(1.14f, 1.14f, 0.0f, false, true, 0.77f, -1.08f) - lineToRelative(1.0f, -0.33f) - arcToRelative(1.3f, 1.3f, 0.0f, false, false, 0.8f, -0.82f) - lineToRelative(0.33f, -0.99f) - arcToRelative(1.14f, 1.14f, 0.0f, false, true, 2.16f, -0.02f) - lineToRelative(0.33f, 1.01f) - arcToRelative(1.3f, 1.3f, 0.0f, false, false, 0.82f, 0.82f) - lineToRelative(0.99f, 0.32f) - arcToRelative(1.14f, 1.14f, 0.0f, false, true, 0.04f, 2.17f) - lineToRelative(-1.01f, 0.33f) - arcToRelative(1.32f, 1.32f, 0.0f, false, false, -0.82f, 0.82f) - lineToRelative(-0.32f, 0.99f) - arcToRelative(1.14f, 1.14f, 0.0f, false, true, -1.76f, 0.56f) - close() - moveTo(15.3f, 17.0f) - arcToRelative(2.8f, 2.8f, 0.0f, false, true, 1.7f, 1.7f) - arcToRelative(2.8f, 2.8f, 0.0f, false, true, 1.7f, -1.7f) - arcToRelative(2.81f, 2.81f, 0.0f, false, true, -1.72f, -1.7f) - arcTo(2.8f, 2.8f, 0.0f, false, true, 15.3f, 17.0f) - close() - } - } - return _sparkle!! - } - -private var _sparkle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SparkleCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SparkleCircle.kt deleted file mode 100644 index e39b2100..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SparkleCircle.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SparkleCircle: ImageVector - get() { - if (_sparkleCircle != null) { - return _sparkleCircle!! - } - _sparkleCircle = fluentIcon(name = "Regular.SparkleCircle") { - fluentPath { - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) - close() - moveTo(2.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) - close() - moveTo(8.56f, 6.17f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.88f, 0.0f) - lineToRelative(0.46f, 1.3f) - curveToRelative(0.1f, 0.29f, 0.34f, 0.52f, 0.64f, 0.63f) - lineToRelative(1.3f, 0.46f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.88f) - lineToRelative(-1.3f, 0.46f) - curveToRelative(-0.3f, 0.1f, -0.53f, 0.34f, -0.64f, 0.64f) - lineToRelative(-0.46f, 1.3f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.88f, 0.0f) - lineToRelative(-0.46f, -1.3f) - curveToRelative(-0.1f, -0.3f, -0.34f, -0.53f, -0.64f, -0.64f) - lineToRelative(-1.3f, -0.46f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.88f) - lineToRelative(1.3f, -0.46f) - curveToRelative(0.3f, -0.1f, 0.54f, -0.34f, 0.64f, -0.64f) - lineToRelative(0.46f, -1.3f) - close() - moveTo(15.95f, 12.71f) - arcToRelative(0.99f, 0.99f, 0.0f, false, false, -1.9f, 0.0f) - lineToRelative(-0.18f, 0.6f) - arcToRelative(0.85f, 0.85f, 0.0f, false, true, -0.57f, 0.56f) - lineToRelative(-0.6f, 0.18f) - arcToRelative(0.99f, 0.99f, 0.0f, false, false, 0.0f, 1.9f) - lineToRelative(0.6f, 0.18f) - curveToRelative(0.28f, 0.08f, 0.49f, 0.3f, 0.57f, 0.57f) - lineToRelative(0.18f, 0.6f) - arcToRelative(0.99f, 0.99f, 0.0f, false, false, 1.9f, 0.0f) - lineToRelative(0.18f, -0.6f) - curveToRelative(0.08f, -0.27f, 0.3f, -0.49f, 0.57f, -0.57f) - lineToRelative(0.6f, -0.18f) - arcToRelative(0.99f, 0.99f, 0.0f, false, false, 0.0f, -1.9f) - lineToRelative(-0.6f, -0.18f) - arcToRelative(0.85f, 0.85f, 0.0f, false, true, -0.57f, -0.57f) - lineToRelative(-0.18f, -0.6f) - close() - } - } - return _sparkleCircle!! - } - -private var _sparkleCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Speaker0.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Speaker0.kt deleted file mode 100644 index c32b7f18..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Speaker0.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Speaker0: ImageVector - get() { - if (_speaker0 != null) { - return _speaker0!! - } - _speaker0 = fluentIcon(name = "Regular.Speaker0") { - fluentPath { - moveTo(14.7f, 3.44f) - curveToRelative(0.2f, 0.23f, 0.3f, 0.51f, 0.3f, 0.8f) - verticalLineToRelative(15.51f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.06f, 0.95f) - lineToRelative(-4.96f, -4.2f) - horizontalLineTo(4.25f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-4.5f) - curveTo(2.0f, 8.5f, 3.0f, 7.5f, 4.25f, 7.5f) - horizontalLineToRelative(3.73f) - lineToRelative(4.96f, -4.2f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 1.76f, 0.14f) - close() - moveTo(13.5f, 4.8f) - lineToRelative(-4.98f, 4.2f) - horizontalLineTo(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.76f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.27f) - lineToRelative(4.98f, 4.21f) - verticalLineTo(4.79f) - close() - } - } - return _speaker0!! - } - -private var _speaker0: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Speaker1.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Speaker1.kt deleted file mode 100644 index 3e26d1e4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Speaker1.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Speaker1: ImageVector - get() { - if (_speaker1 != null) { - return _speaker1!! - } - _speaker1 = fluentIcon(name = "Regular.Speaker1") { - fluentPath { - moveTo(14.7f, 3.44f) - curveToRelative(0.2f, 0.23f, 0.3f, 0.51f, 0.3f, 0.81f) - verticalLineToRelative(15.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.06f, 0.96f) - lineTo(7.98f, 16.5f) - lineTo(4.25f, 16.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-4.5f) - curveTo(2.0f, 8.51f, 3.0f, 7.5f, 4.25f, 7.5f) - horizontalLineToRelative(3.73f) - lineToRelative(4.96f, -4.2f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 1.76f, 0.14f) - close() - moveTo(13.5f, 4.8f) - lineTo(8.52f, 9.0f) - lineTo(4.25f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.27f) - lineToRelative(4.98f, 4.21f) - lineTo(13.5f, 4.8f) - close() - moveTo(17.1f, 8.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, 0.25f) - curveToRelative(0.58f, 0.94f, 0.87f, 2.0f, 0.87f, 3.14f) - curveToRelative(0.0f, 1.15f, -0.3f, 2.2f, -0.87f, 3.14f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.28f, -0.78f) - curveToRelative(0.43f, -0.7f, 0.65f, -1.48f, 0.65f, -2.36f) - curveToRelative(0.0f, -0.88f, -0.22f, -1.66f, -0.65f, -2.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.25f, -1.03f) - close() - } - } - return _speaker1!! - } - -private var _speaker1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Speaker2.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Speaker2.kt deleted file mode 100644 index 8bba8eac..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Speaker2.kt +++ /dev/null @@ -1,95 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Speaker2: ImageVector - get() { - if (_speaker2 != null) { - return _speaker2!! - } - _speaker2 = fluentIcon(name = "Regular.Speaker2") { - fluentPath { - moveTo(25.08f, 6.42f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 28.0f, 7.72f) - verticalLineToRelative(32.56f) - curveToRelative(0.0f, 1.51f, -1.8f, 2.31f, -2.92f, 1.3f) - lineToRelative(-8.2f, -7.36f) - curveToRelative(-0.88f, -0.79f, -2.0f, -1.22f, -3.18f, -1.22f) - lineTo(9.0f, 33.0f) - arcToRelative(5.25f, 5.25f, 0.0f, false, true, -5.25f, -5.25f) - verticalLineToRelative(-7.5f) - curveTo(3.75f, 17.35f, 6.1f, 15.0f, 9.0f, 15.0f) - horizontalLineToRelative(4.7f) - curveToRelative(1.17f, 0.0f, 2.3f, -0.43f, 3.18f, -1.21f) - lineToRelative(8.2f, -7.37f) - close() - moveTo(25.5f, 9.4f) - lineTo(18.55f, 15.65f) - arcToRelative(7.25f, 7.25f, 0.0f, false, true, -4.85f, 1.85f) - lineTo(9.0f, 17.5f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.75f, 2.75f) - verticalLineToRelative(7.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 9.0f, 30.5f) - horizontalLineToRelative(4.7f) - curveToRelative(1.79f, 0.0f, 3.51f, 0.66f, 4.85f, 1.86f) - lineToRelative(6.95f, 6.24f) - lineTo(25.5f, 9.4f) - close() - moveTo(36.34f, 8.4f) - curveToRelative(0.47f, -0.5f, 1.26f, -0.53f, 1.76f, -0.06f) - curveToRelative(0.0f, 0.0f, -0.33f, -0.34f, 0.02f, 0.0f) - lineToRelative(0.01f, 0.03f) - arcToRelative(6.1f, 6.1f, 0.0f, false, true, 0.27f, 0.26f) - arcToRelative(20.4f, 20.4f, 0.0f, false, true, 2.7f, 3.79f) - arcTo(23.76f, 23.76f, 0.0f, false, true, 44.0f, 24.0f) - curveToRelative(0.0f, 5.05f, -1.45f, 8.94f, -2.9f, 11.58f) - arcToRelative(20.41f, 20.41f, 0.0f, false, true, -2.9f, 4.0f) - lineToRelative(-0.07f, 0.06f) - lineToRelative(-0.01f, 0.01f) - horizontalLineToRelative(-0.01f) - verticalLineToRelative(0.01f) - lineToRelative(0.22f, -0.22f) - lineToRelative(-0.23f, 0.22f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.7f, -1.82f) - arcToRelative(5.03f, 5.03f, 0.0f, false, false, 0.18f, -0.19f) - arcToRelative(17.91f, 17.91f, 0.0f, false, false, 2.33f, -3.28f) - curveTo(40.2f, 32.03f, 41.5f, 28.55f, 41.5f, 24.0f) - curveToRelative(0.0f, -4.55f, -1.3f, -8.03f, -2.6f, -10.37f) - arcToRelative(17.91f, 17.91f, 0.0f, false, false, -2.5f, -3.46f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.06f, -1.77f) - close() - moveTo(32.34f, 14.4f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 1.76f, -0.06f) - lineToRelative(0.02f, 0.02f) - arcToRelative(3.13f, 3.13f, 0.0f, false, true, 0.18f, 0.17f) - curveToRelative(0.12f, 0.12f, 0.27f, 0.3f, 0.45f, 0.51f) - arcToRelative(13.98f, 13.98f, 0.0f, false, true, -0.59f, 18.56f) - lineToRelative(-0.01f, 0.02f) - lineToRelative(-0.03f, 0.03f) - horizontalLineToRelative(-0.01f) - verticalLineToRelative(0.01f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.71f, -1.82f) - lineToRelative(0.01f, -0.02f) - arcToRelative(4.2f, 4.2f, 0.0f, false, false, 0.43f, -0.47f) - arcToRelative(11.48f, 11.48f, 0.0f, false, false, -0.43f, -15.17f) - lineToRelative(-0.01f, -0.02f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.07f, -1.76f) - close() - moveTo(38.12f, 8.35f) - lineTo(38.11f, 8.34f) - close() - moveTo(34.1f, 14.33f) - lineTo(34.16f, 14.4f) - arcToRelative(0.45f, 0.45f, 0.0f, false, true, -0.06f, -0.07f) - close() - } - } - return _speaker2!! - } - -private var _speaker2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SpeakerBluetooth.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SpeakerBluetooth.kt deleted file mode 100644 index ca040527..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SpeakerBluetooth.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SpeakerBluetooth: ImageVector - get() { - if (_speakerBluetooth != null) { - return _speakerBluetooth!! - } - _speakerBluetooth = fluentIcon(name = "Regular.SpeakerBluetooth") { - fluentPath { - moveTo(14.7f, 3.44f) - curveToRelative(0.2f, 0.23f, 0.3f, 0.51f, 0.3f, 0.81f) - verticalLineToRelative(15.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.06f, 0.96f) - lineTo(7.98f, 16.5f) - lineTo(4.25f, 16.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-4.5f) - curveTo(2.0f, 8.51f, 3.0f, 7.5f, 4.25f, 7.5f) - horizontalLineToRelative(3.73f) - lineToRelative(4.96f, -4.2f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 1.76f, 0.14f) - close() - moveTo(13.5f, 4.8f) - lineTo(8.52f, 9.0f) - lineTo(4.25f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.27f) - lineToRelative(4.98f, 4.21f) - lineTo(13.5f, 4.8f) - close() - moveTo(17.5f, 9.9f) - lineTo(17.5f, 6.76f) - curveToRelative(0.0f, -0.65f, 0.75f, -0.98f, 1.23f, -0.58f) - lineToRelative(0.07f, 0.07f) - lineToRelative(3.0f, 3.25f) - curveToRelative(0.27f, 0.29f, 0.26f, 0.73f, 0.0f, 1.01f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-1.7f, 1.42f) - lineToRelative(1.7f, 1.42f) - curveToRelative(0.3f, 0.26f, 0.35f, 0.7f, 0.14f, 1.0f) - lineToRelative(-0.07f, 0.09f) - lineToRelative(-3.0f, 3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.3f, -0.4f) - lineTo(17.5f, 14.1f) - lineToRelative(-0.27f, 0.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.04f, -1.07f) - lineToRelative(0.08f, -0.08f) - lineToRelative(1.23f, -1.02f) - verticalLineToRelative(-0.3f) - lineToRelative(-1.23f, -1.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.87f, -1.22f) - lineToRelative(0.1f, 0.06f) - lineToRelative(0.26f, 0.23f) - lineTo(17.5f, 6.75f) - lineTo(17.5f, 9.9f) - close() - moveTo(19.0f, 13.1f) - verticalLineToRelative(2.23f) - lineToRelative(1.16f, -1.26f) - lineTo(19.0f, 13.1f) - close() - moveTo(19.0f, 8.67f) - verticalLineToRelative(2.23f) - lineToRelative(1.16f, -0.97f) - lineTo(19.0f, 8.67f) - close() - } - } - return _speakerBluetooth!! - } - -private var _speakerBluetooth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SpeakerEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SpeakerEdit.kt deleted file mode 100644 index c5748b68..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SpeakerEdit.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SpeakerEdit: ImageVector - get() { - if (_speakerEdit != null) { - return _speakerEdit!! - } - _speakerEdit = fluentIcon(name = "Regular.SpeakerEdit") { - fluentPath { - moveTo(15.0f, 4.25f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.08f, -0.93f) - lineToRelative(-4.5f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.5f, 0.18f) - lineTo(4.26f, 7.5f) - curveTo(3.01f, 7.5f, 2.0f, 8.5f, 2.0f, 9.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(3.68f) - curveToRelative(0.18f, 0.0f, 0.36f, 0.06f, 0.5f, 0.19f) - lineToRelative(3.12f, 2.77f) - curveToRelative(0.14f, -0.5f, 0.39f, -0.96f, 0.72f, -1.36f) - lineToRelative(-2.85f, -2.54f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.5f, -0.56f) - lineTo(4.26f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.68f) - curveToRelative(0.55f, 0.0f, 1.08f, -0.2f, 1.5f, -0.57f) - lineToRelative(4.07f, -3.62f) - verticalLineToRelative(12.04f) - lineToRelative(1.5f, -1.5f) - lineTo(15.01f, 4.25f) - close() - moveTo(20.04f, 6.05f) - arcToRelative(9.95f, 9.95f, 0.0f, false, true, 1.93f, 5.2f) - arcToRelative(3.3f, 3.3f, 0.0f, false, false, -1.53f, -0.24f) - arcToRelative(8.45f, 8.45f, 0.0f, false, false, -1.6f, -4.06f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.2f, -0.9f) - close() - moveTo(18.16f, 8.67f) - curveToRelative(0.46f, 0.85f, 0.75f, 1.81f, 0.82f, 2.82f) - curveToRelative(-0.2f, 0.13f, -0.4f, 0.3f, -0.59f, 0.47f) - lineToRelative(-0.97f, 0.97f) - arcToRelative(5.54f, 5.54f, 0.0f, false, false, -0.58f, -3.54f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.32f, -0.72f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.71f, 1.25f) - lineToRelative(-0.46f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.28f, 2.28f, 0.0f, true, false, -3.23f, -3.24f) - close() - } - } - return _speakerEdit!! - } - -private var _speakerEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SpeakerMute.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SpeakerMute.kt deleted file mode 100644 index f095a1f8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SpeakerMute.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SpeakerMute: ImageVector - get() { - if (_speakerMute != null) { - return _speakerMute!! - } - _speakerMute = fluentIcon(name = "Regular.SpeakerMute") { - fluentPath { - moveTo(12.92f, 3.32f) - curveToRelative(0.8f, -0.72f, 2.08f, -0.15f, 2.08f, 0.93f) - verticalLineToRelative(15.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.08f, 0.93f) - lineToRelative(-4.5f, -4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.49f, -0.18f) - lineTo(4.25f, 16.5f) - curveTo(3.01f, 16.5f, 2.0f, 15.49f, 2.0f, 14.25f) - verticalLineToRelative(-4.5f) - curveTo(2.0f, 8.5f, 3.0f, 7.5f, 4.25f, 7.5f) - horizontalLineToRelative(3.68f) - curveToRelative(0.18f, 0.0f, 0.36f, -0.07f, 0.5f, -0.2f) - lineToRelative(4.49f, -3.98f) - close() - moveTo(13.5f, 4.81f) - lineTo(9.42f, 8.43f) - curveToRelative(-0.4f, 0.37f, -0.94f, 0.57f, -1.49f, 0.57f) - lineTo(4.25f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.68f) - curveToRelative(0.55f, 0.0f, 1.08f, 0.2f, 1.5f, 0.56f) - lineToRelative(4.07f, 3.63f) - lineTo(13.5f, 4.8f) - close() - moveTo(16.22f, 9.21f) - curveToRelative(0.3f, -0.28f, 0.77f, -0.28f, 1.06f, 0.0f) - lineTo(19.0f, 10.95f) - lineToRelative(1.72f, -1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineTo(20.06f, 12.0f) - lineToRelative(1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineTo(19.0f, 13.06f) - lineToRelative(-1.72f, 1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineTo(17.94f, 12.0f) - lineToRelative(-1.72f, -1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - } - } - return _speakerMute!! - } - -private var _speakerMute: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SpeakerOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SpeakerOff.kt deleted file mode 100644 index da999dab..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SpeakerOff.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SpeakerOff: ImageVector - get() { - if (_speakerOff != null) { - return _speakerOff!! - } - _speakerOff = fluentIcon(name = "Regular.SpeakerOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(6.44f, 7.5f) - lineTo(4.25f, 7.5f) - curveTo(3.01f, 7.5f, 2.0f, 8.5f, 2.0f, 9.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(3.68f) - curveToRelative(0.18f, 0.0f, 0.36f, 0.06f, 0.5f, 0.19f) - lineToRelative(4.49f, 3.99f) - curveToRelative(0.8f, 0.72f, 2.08f, 0.14f, 2.08f, -0.93f) - verticalLineToRelative(-3.69f) - lineToRelative(5.72f, 5.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(13.5f, 14.56f) - verticalLineToRelative(4.63f) - lineToRelative(-4.08f, -3.63f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 7.93f, 15.0f) - lineTo(4.25f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.68f) - lineToRelative(5.57f, 5.56f) - close() - moveTo(13.5f, 4.81f) - verticalLineToRelative(5.5f) - lineToRelative(1.5f, 1.5f) - lineTo(15.0f, 4.26f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.08f, -0.93f) - lineToRelative(-3.4f, 3.02f) - lineToRelative(1.06f, 1.06f) - lineToRelative(2.92f, -2.6f) - close() - moveTo(17.14f, 13.96f) - lineTo(18.28f, 15.1f) - arcToRelative(6.97f, 6.97f, 0.0f, false, false, -0.12f, -6.43f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.32f, 0.72f) - arcToRelative(5.47f, 5.47f, 0.0f, false, true, 0.3f, 4.57f) - close() - moveTo(19.39f, 16.21f) - lineTo(20.49f, 17.3f) - arcToRelative(9.96f, 9.96f, 0.0f, false, false, -0.45f, -11.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.2f, 0.9f) - arcToRelative(8.46f, 8.46f, 0.0f, false, true, 0.55f, 9.26f) - close() - } - } - return _speakerOff!! - } - -private var _speakerOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SpeakerSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SpeakerSettings.kt deleted file mode 100644 index 0bd69693..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SpeakerSettings.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SpeakerSettings: ImageVector - get() { - if (_speakerSettings != null) { - return _speakerSettings!! - } - _speakerSettings = fluentIcon(name = "Regular.SpeakerSettings") { - fluentPath { - moveTo(14.7f, 3.44f) - curveToRelative(0.2f, 0.23f, 0.3f, 0.51f, 0.3f, 0.81f) - verticalLineToRelative(7.25f) - arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.5f, 0.88f) - verticalLineToRelative(-7.6f) - lineTo(8.52f, 9.0f) - lineTo(4.25f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.27f) - lineToRelative(2.5f, 2.1f) - arcToRelative(6.58f, 6.58f, 0.0f, false, false, 0.22f, 2.17f) - lineTo(7.98f, 16.5f) - lineTo(4.25f, 16.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-4.5f) - curveTo(2.0f, 8.51f, 3.0f, 7.5f, 4.25f, 7.5f) - horizontalLineToRelative(3.73f) - lineToRelative(4.96f, -4.2f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 1.76f, 0.14f) - close() - moveTo(14.28f, 13.98f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.59f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) - lineToRelative(0.55f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.52f) - lineToRelative(-0.19f, 0.63f) - curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) - lineToRelative(0.49f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.9f) - lineToRelative(-0.2f, -0.7f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) - lineToRelative(0.59f, -0.13f) - arcToRelative(5.72f, 5.72f, 0.0f, false, false, 0.0f, -1.81f) - lineToRelative(-0.55f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.19f, -0.63f) - curveToRelative(-0.44f, -0.39f, -0.94f, -0.7f, -1.49f, -0.93f) - lineToRelative(-0.49f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.91f) - lineToRelative(0.2f, 0.69f) - close() - moveTo(17.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) - close() - } - } - return _speakerSettings!! - } - -private var _speakerSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SpeakerUsb.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SpeakerUsb.kt deleted file mode 100644 index 42e227ed..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SpeakerUsb.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SpeakerUsb: ImageVector - get() { - if (_speakerUsb != null) { - return _speakerUsb!! - } - _speakerUsb = fluentIcon(name = "Regular.SpeakerUsb") { - fluentPath { - moveTo(15.0f, 4.25f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.06f, -0.96f) - lineTo(7.98f, 7.5f) - lineTo(4.25f, 7.5f) - curveTo(3.01f, 7.5f, 2.0f, 8.52f, 2.0f, 9.76f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(3.73f) - lineToRelative(4.96f, 4.2f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.06f, -0.95f) - lineTo(15.0f, 4.25f) - close() - moveTo(8.52f, 9.0f) - lineToRelative(4.98f, -4.21f) - lineTo(13.5f, 19.2f) - lineTo(8.52f, 15.0f) - lineTo(4.25f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.27f) - close() - moveTo(16.16f, 13.95f) - lineTo(17.5f, 16.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) - verticalLineToRelative(-2.0f) - lineToRelative(1.33f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.17f, -0.56f) - lineTo(23.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - lineTo(22.0f, 7.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(3.4f) - curveToRelative(0.0f, 0.2f, 0.06f, 0.4f, 0.16f, 0.55f) - close() - moveTo(18.5f, 7.5f) - horizontalLineToRelative(2.0f) - lineTo(20.5f, 9.0f) - horizontalLineToRelative(-2.0f) - lineTo(18.5f, 7.5f) - close() - } - } - return _speakerUsb!! - } - -private var _speakerUsb: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SplitHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SplitHorizontal.kt deleted file mode 100644 index 6cd92dbd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SplitHorizontal.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SplitHorizontal: ImageVector - get() { - if (_splitHorizontal != null) { - return _splitHorizontal!! - } - _splitHorizontal = fluentIcon(name = "Regular.SplitHorizontal") { - fluentPath { - moveTo(21.25f, 12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(2.75f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(18.5f) - close() - moveTo(20.0f, 4.25f) - curveTo(20.0f, 3.01f, 19.0f, 2.0f, 17.75f, 2.0f) - lineTo(6.25f, 2.0f) - curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) - lineTo(4.0f, 10.0f) - horizontalLineToRelative(1.5f) - lineTo(5.5f, 4.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(18.5f, 10.0f) - lineTo(20.0f, 10.0f) - lineTo(20.0f, 4.25f) - close() - moveTo(5.5f, 19.25f) - lineTo(5.5f, 13.5f) - lineTo(4.0f, 13.5f) - verticalLineToRelative(5.75f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(11.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.0f, 13.5f) - horizontalLineToRelative(-1.5f) - verticalLineToRelative(5.75f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(6.25f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _splitHorizontal!! - } - -private var _splitHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SplitVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SplitVertical.kt deleted file mode 100644 index 1987eca8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SplitVertical.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SplitVertical: ImageVector - get() { - if (_splitVertical != null) { - return _splitVertical!! - } - _splitVertical = fluentIcon(name = "Regular.SplitVertical") { - fluentPath { - moveTo(12.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(12.5f, 2.75f) - close() - moveTo(4.25f, 4.0f) - curveTo(3.01f, 4.0f, 2.0f, 5.0f, 2.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(2.0f, 18.99f, 3.0f, 20.0f, 4.25f, 20.0f) - lineTo(10.0f, 20.0f) - verticalLineToRelative(-1.5f) - lineTo(4.25f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(3.5f, 6.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - lineTo(10.0f, 5.5f) - lineTo(10.0f, 4.0f) - lineTo(4.25f, 4.0f) - close() - moveTo(19.25f, 18.5f) - lineTo(13.5f, 18.5f) - lineTo(13.5f, 20.0f) - horizontalLineToRelative(5.75f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(21.5f, 6.25f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - lineTo(13.5f, 4.0f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(5.75f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - close() - } - } - return _splitVertical!! - } - -private var _splitVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Sport.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Sport.kt deleted file mode 100644 index b6d3aa5d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Sport.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Sport: ImageVector - get() { - if (_sport != null) { - return _sport!! - } - _sport = fluentIcon(name = "Regular.Sport") { - fluentPath { - moveTo(6.09f, 7.19f) - arcToRelative(8.2f, 8.2f, 0.0f, false, false, -0.18f, 0.5f) - curveToRelative(0.46f, 0.06f, 0.96f, 0.16f, 1.48f, 0.3f) - arcToRelative(6.7f, 6.7f, 0.0f, false, true, 1.09f, -1.95f) - lineToRelative(4.21f, 4.21f) - lineToRelative(-0.25f, 0.25f) - arcToRelative(10.2f, 10.2f, 0.0f, false, true, 1.06f, 1.06f) - lineToRelative(0.25f, -0.25f) - lineToRelative(4.21f, 4.21f) - arcToRelative(6.7f, 6.7f, 0.0f, false, true, -1.94f, 1.09f) - curveToRelative(0.13f, 0.52f, 0.23f, 1.02f, 0.3f, 1.48f) - arcToRelative(8.2f, 8.2f, 0.0f, false, false, 5.0f, -4.58f) - arcTo(8.26f, 8.26f, 0.0f, true, false, 6.1f, 7.2f) - close() - moveTo(20.05f, 7.81f) - curveToRelative(-0.88f, 0.7f, -2.09f, 0.78f, -3.04f, 0.25f) - lineToRelative(2.01f, -2.02f) - arcToRelative(6.7f, 6.7f, 0.0f, false, true, 1.03f, 1.77f) - close() - moveTo(15.92f, 9.14f) - curveToRelative(1.34f, 0.94f, 3.11f, 1.01f, 4.52f, 0.21f) - arcToRelative(6.74f, 6.74f, 0.0f, false, true, -1.42f, 5.11f) - lineToRelative(-4.2f, -4.21f) - lineToRelative(1.1f, -1.1f) - close() - moveTo(14.86f, 8.08f) - lineTo(13.76f, 9.18f) - lineTo(9.54f, 4.98f) - arcToRelative(6.74f, 6.74f, 0.0f, false, true, 5.1f, -1.42f) - curveToRelative(-0.8f, 1.4f, -0.72f, 3.18f, 0.22f, 4.52f) - close() - moveTo(15.95f, 7.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.24f, -3.04f) - arcToRelative(6.7f, 6.7f, 0.0f, false, true, 1.77f, 1.03f) - lineToRelative(-2.01f, 2.01f) - close() - moveTo(6.97f, 13.48f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - moveTo(2.03f, 11.03f) - arcToRelative(2.3f, 2.3f, 0.0f, false, true, 2.49f, -2.5f) - curveToRelative(1.98f, 0.16f, 5.34f, 0.78f, 7.76f, 3.2f) - reflectiveCurveToRelative(3.04f, 5.78f, 3.2f, 7.76f) - arcToRelative(2.3f, 2.3f, 0.0f, false, true, -2.5f, 2.5f) - curveToRelative(-1.98f, -0.16f, -5.34f, -0.78f, -7.76f, -3.2f) - reflectiveCurveTo(2.18f, 13.0f, 2.02f, 11.02f) - close() - moveTo(4.41f, 10.03f) - arcToRelative(0.8f, 0.8f, 0.0f, false, false, -0.89f, 0.89f) - curveToRelative(0.15f, 1.86f, 0.72f, 4.77f, 2.76f, 6.81f) - reflectiveCurveToRelative(4.95f, 2.62f, 6.82f, 2.76f) - arcToRelative(0.8f, 0.8f, 0.0f, false, false, 0.88f, -0.89f) - curveToRelative(-0.14f, -1.86f, -0.72f, -4.77f, -2.76f, -6.81f) - reflectiveCurveToRelative(-4.95f, -2.61f, -6.81f, -2.76f) - close() - } - } - return _sport!! - } - -private var _sport: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SportAmericanFootball.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SportAmericanFootball.kt deleted file mode 100644 index 3d7ec711..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SportAmericanFootball.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SportAmericanFootball: ImageVector - get() { - if (_sportAmericanFootball != null) { - return _sportAmericanFootball!! - } - _sportAmericanFootball = fluentIcon(name = "Regular.SportAmericanFootball") { - fluentPath { - moveTo(13.72f, 9.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-4.5f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(4.5f, -4.5f) - close() - moveTo(17.75f, 2.0f) - curveTo(20.1f, 2.0f, 22.0f, 3.9f, 22.0f, 6.25f) - verticalLineToRelative(1.0f) - curveTo(22.0f, 15.4f, 15.4f, 22.0f, 7.25f, 22.0f) - horizontalLineToRelative(-1.0f) - arcTo(4.25f, 4.25f, 0.0f, false, true, 2.0f, 17.75f) - verticalLineToRelative(-1.0f) - curveTo(2.0f, 8.6f, 8.6f, 2.0f, 16.75f, 2.0f) - horizontalLineToRelative(1.0f) - close() - moveTo(20.5f, 6.25f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.75f, -2.75f) - horizontalLineToRelative(-1.0f) - curveToRelative(-0.4f, 0.0f, -0.8f, 0.02f, -1.2f, 0.05f) - lineToRelative(4.9f, 4.9f) - curveToRelative(0.03f, -0.4f, 0.05f, -0.8f, 0.05f, -1.2f) - verticalLineToRelative(-1.0f) - close() - moveTo(20.15f, 10.27f) - lineTo(13.73f, 3.85f) - arcToRelative(13.27f, 13.27f, 0.0f, false, false, -9.9f, 9.97f) - lineToRelative(6.35f, 6.36f) - arcToRelative(13.27f, 13.27f, 0.0f, false, false, 9.97f, -9.9f) - close() - moveTo(3.55f, 15.67f) - curveToRelative(-0.04f, 0.35f, -0.05f, 0.71f, -0.05f, 1.08f) - verticalLineToRelative(1.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, 2.75f) - horizontalLineToRelative(1.0f) - curveToRelative(0.37f, 0.0f, 0.73f, -0.01f, 1.09f, -0.04f) - lineToRelative(-4.8f, -4.8f) - close() - } - } - return _sportAmericanFootball!! - } - -private var _sportAmericanFootball: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SportBaseball.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SportBaseball.kt deleted file mode 100644 index 90a639b5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SportBaseball.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SportBaseball: ImageVector - get() { - if (_sportBaseball != null) { - return _sportBaseball!! - } - _sportBaseball = fluentIcon(name = "Regular.SportBaseball") { - fluentPath { - moveTo(9.93f, 16.7f) - reflectiveCurveToRelative(-0.75f, 0.1f, -0.9f, -0.55f) - curveToRelative(-0.1f, -0.4f, 0.14f, -0.8f, 0.54f, -0.9f) - horizontalLineToRelative(0.01f) - lineToRelative(0.02f, -0.01f) - arcToRelative(3.92f, 3.92f, 0.0f, false, true, 0.37f, -0.08f) - arcToRelative(12.54f, 12.54f, 0.0f, false, true, 4.42f, 0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.29f, 1.48f) - arcToRelative(11.04f, 11.04f, 0.0f, false, false, -4.17f, -0.01f) - close() - moveTo(9.03f, 7.9f) - curveToRelative(0.15f, -0.65f, 0.9f, -0.55f, 0.9f, -0.55f) - arcToRelative(6.35f, 6.35f, 0.0f, false, false, 1.19f, 0.17f) - curveToRelative(0.76f, 0.05f, 1.82f, 0.05f, 2.98f, -0.18f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.3f, 1.47f) - arcToRelative(12.54f, 12.54f, 0.0f, false, true, -4.8f, 0.0f) - horizontalLineToRelative(-0.03f) - arcToRelative(0.76f, 0.76f, 0.0f, false, true, -0.55f, -0.92f) - close() - moveTo(12.0f, 22.0f) - arcToRelative(9.97f, 9.97f, 0.0f, false, false, 10.0f, -10.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -10.0f, 10.0f) - close() - moveTo(5.07f, 7.07f) - curveToRelative(0.54f, 0.37f, 1.19f, 0.72f, 1.94f, 0.97f) - arcTo(0.75f, 0.75f, 0.0f, true, false, 7.5f, 6.6f) - arcToRelative(6.36f, 6.36f, 0.0f, false, true, -1.43f, -0.69f) - arcToRelative(8.47f, 8.47f, 0.0f, false, true, 11.88f, 0.0f) - curveToRelative(-0.4f, 0.27f, -0.89f, 0.51f, -1.43f, 0.7f) - arcTo(0.75f, 0.75f, 0.0f, true, false, 17.0f, 8.03f) - curveToRelative(0.75f, -0.25f, 1.4f, -0.6f, 1.94f, -0.97f) - arcToRelative(8.46f, 8.46f, 0.0f, false, true, -0.03f, 9.9f) - arcTo(7.9f, 7.9f, 0.0f, false, false, 17.0f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.48f, 1.42f) - curveToRelative(0.53f, 0.18f, 1.0f, 0.42f, 1.4f, 0.68f) - arcToRelative(8.47f, 8.47f, 0.0f, false, true, -11.82f, 0.0f) - curveToRelative(0.4f, -0.26f, 0.87f, -0.5f, 1.4f, -0.68f) - arcTo(0.75f, 0.75f, 0.0f, true, false, 7.0f, 16.01f) - curveToRelative(-0.74f, 0.25f, -1.38f, 0.6f, -1.91f, 0.95f) - arcToRelative(8.46f, 8.46f, 0.0f, false, true, -0.03f, -9.89f) - close() - } - } - return _sportBaseball!! - } - -private var _sportBaseball: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SportBasketball.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SportBasketball.kt deleted file mode 100644 index cfac11b7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SportBasketball.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SportBasketball: ImageVector - get() { - if (_sportBasketball != null) { - return _sportBasketball!! - } - _sportBasketball = fluentIcon(name = "Regular.SportBasketball") { - fluentPath { - moveTo(12.94f, 21.96f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -1.88f, -19.91f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 1.88f, 19.9f) - close() - moveTo(3.58f, 10.86f) - curveToRelative(0.2f, -1.55f, 0.84f, -3.05f, 1.9f, -4.32f) - lineTo(10.94f, 12.0f) - lineToRelative(-1.09f, 1.09f) - arcToRelative(8.81f, 8.81f, 0.0f, false, false, -3.34f, -1.61f) - curveToRelative(-0.65f, -0.17f, -1.3f, -0.3f, -1.89f, -0.41f) - horizontalLineToRelative(-0.01f) - curveToRelative(-0.37f, -0.08f, -0.71f, -0.14f, -1.03f, -0.22f) - close() - moveTo(3.51f, 12.37f) - lineTo(4.31f, 12.53f) - horizontalLineToRelative(0.01f) - curveToRelative(0.6f, 0.12f, 1.2f, 0.24f, 1.8f, 0.4f) - curveToRelative(0.95f, 0.26f, 1.86f, 0.61f, 2.66f, 1.23f) - lineToRelative(-3.3f, 3.3f) - arcToRelative(8.47f, 8.47f, 0.0f, false, true, -1.97f, -5.09f) - close() - moveTo(9.85f, 15.21f) - curveToRelative(0.67f, 0.87f, 1.04f, 1.81f, 1.3f, 2.78f) - arcToRelative(26.2f, 26.2f, 0.0f, false, true, 0.4f, 1.78f) - lineToRelative(0.16f, 0.73f) - arcToRelative(8.47f, 8.47f, 0.0f, false, true, -5.17f, -1.98f) - lineToRelative(3.3f, -3.3f) - close() - moveTo(13.24f, 20.41f) - lineTo(13.01f, 19.46f) - lineTo(12.94f, 19.09f) - curveToRelative(-0.1f, -0.47f, -0.21f, -0.98f, -0.35f, -1.49f) - arcToRelative(8.86f, 8.86f, 0.0f, false, false, -1.68f, -3.45f) - lineTo(12.0f, 13.06f) - lineToRelative(5.46f, 5.46f) - arcToRelative(8.46f, 8.46f, 0.0f, false, true, -4.22f, 1.89f) - close() - moveTo(13.06f, 12.0f) - lineToRelative(1.21f, -1.21f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 3.37f, 1.83f) - curveToRelative(0.44f, 0.15f, 0.9f, 0.28f, 1.3f, 0.4f) - lineToRelative(0.47f, 0.13f) - curveToRelative(0.35f, 0.1f, 0.67f, 0.21f, 0.96f, 0.32f) - arcToRelative(8.45f, 8.45f, 0.0f, false, true, -1.85f, 3.99f) - lineTo(13.06f, 12.0f) - close() - moveTo(19.84f, 11.72f) - lineTo(19.34f, 11.57f) - lineTo(18.12f, 11.19f) - arcToRelative(8.6f, 8.6f, 0.0f, false, true, -2.78f, -1.47f) - lineToRelative(3.18f, -3.18f) - arcToRelative(8.47f, 8.47f, 0.0f, false, true, 1.98f, 5.38f) - lineToRelative(-0.66f, -0.2f) - close() - moveTo(17.46f, 5.48f) - lineTo(14.28f, 8.66f) - arcToRelative(8.6f, 8.6f, 0.0f, false, true, -1.47f, -2.78f) - curveToRelative(-0.15f, -0.41f, -0.26f, -0.81f, -0.38f, -1.22f) - lineToRelative(-0.15f, -0.5f) - lineToRelative(-0.2f, -0.66f) - curveToRelative(1.91f, 0.02f, 3.82f, 0.68f, 5.38f, 1.98f) - close() - moveTo(11.38f, 6.36f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 1.83f, 3.37f) - lineTo(12.0f, 10.93f) - lineTo(6.54f, 5.49f) - arcToRelative(8.45f, 8.45f, 0.0f, false, true, 3.99f, -1.85f) - arcToRelative(13.21f, 13.21f, 0.0f, false, true, 0.45f, 1.42f) - curveToRelative(0.12f, 0.42f, 0.25f, 0.86f, 0.4f, 1.31f) - close() - } - } - return _sportBasketball!! - } - -private var _sportBasketball: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SportHockey.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SportHockey.kt deleted file mode 100644 index 5aa69132..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SportHockey.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SportHockey: ImageVector - get() { - if (_sportHockey != null) { - return _sportHockey!! - } - _sportHockey = fluentIcon(name = "Regular.SportHockey") { - fluentPath { - moveTo(17.49f, 6.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.62f, -0.86f) - arcToRelative(0.77f, 0.77f, 0.0f, false, false, -0.86f, 0.64f) - arcToRelative(3.77f, 3.77f, 0.0f, false, true, -0.11f, 0.46f) - curveToRelative(-0.1f, 0.32f, -0.24f, 0.79f, -0.48f, 1.35f) - arcToRelative(12.84f, 12.84f, 0.0f, false, true, -2.73f, 4.01f) - arcToRelative(14.11f, 14.11f, 0.0f, false, true, -6.08f, 3.54f) - lineTo(6.6f, 16.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.57f, 0.9f) - curveToRelative(0.14f, 0.66f, 0.89f, 0.57f, 0.89f, 0.57f) - horizontalLineToRelative(0.05f) - arcToRelative(5.95f, 5.95f, 0.0f, false, false, 0.6f, -0.18f) - arcToRelative(15.61f, 15.61f, 0.0f, false, false, 6.18f, -3.77f) - arcToRelative(14.34f, 14.34f, 0.0f, false, false, 3.6f, -6.03f) - arcToRelative(8.33f, 8.33f, 0.0f, false, false, 0.14f, -0.57f) - verticalLineToRelative(-0.05f) - close() - moveTo(2.35f, 12.57f) - curveToRelative(-0.68f, 1.9f, -0.77f, 3.88f, 0.44f, 5.1f) - lineToRelative(0.23f, 0.24f) - arcToRelative(627.9f, 627.9f, 0.0f, false, false, 3.03f, 3.04f) - curveToRelative(1.28f, 1.28f, 3.3f, 1.3f, 5.29f, 0.66f) - arcToRelative(16.3f, 16.3f, 0.0f, false, false, 6.22f, -4.04f) - arcToRelative(16.3f, 16.3f, 0.0f, false, false, 4.04f, -6.22f) - curveToRelative(0.64f, -1.99f, 0.62f, -4.01f, -0.66f, -5.3f) - arcToRelative(756.94f, 756.94f, 0.0f, false, true, -2.9f, -2.9f) - lineToRelative(-0.36f, -0.37f) - curveToRelative(-1.22f, -1.21f, -3.2f, -1.12f, -5.1f, -0.44f) - curveToRelative(-1.96f, 0.71f, -4.15f, 2.14f, -6.12f, 4.11f) - arcToRelative(17.45f, 17.45f, 0.0f, false, false, -4.1f, 6.12f) - close() - moveTo(3.76f, 13.08f) - arcToRelative(15.98f, 15.98f, 0.0f, false, true, 3.77f, -5.56f) - arcToRelative(15.98f, 15.98f, 0.0f, false, true, 5.56f, -3.77f) - curveToRelative(1.78f, -0.64f, 2.97f, -0.47f, 3.54f, 0.1f) - lineToRelative(0.35f, 0.35f) - lineToRelative(0.88f, 0.89f) - lineToRelative(2.02f, 2.03f) - curveToRelative(0.67f, 0.67f, 0.87f, 1.97f, 0.3f, 3.77f) - arcToRelative(14.81f, 14.81f, 0.0f, false, true, -3.68f, 5.62f) - arcToRelative(14.81f, 14.81f, 0.0f, false, true, -5.63f, 3.67f) - curveToRelative(-1.8f, 0.58f, -3.09f, 0.38f, -3.76f, -0.3f) - arcToRelative(835.56f, 835.56f, 0.0f, false, true, -3.02f, -3.02f) - lineToRelative(-0.23f, -0.24f) - curveToRelative(-0.57f, -0.57f, -0.74f, -1.76f, -0.1f, -3.54f) - close() - } - } - return _sportHockey!! - } - -private var _sportHockey: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SportSoccer.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SportSoccer.kt deleted file mode 100644 index bd1b3d18..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SportSoccer.kt +++ /dev/null @@ -1,98 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SportSoccer: ImageVector - get() { - if (_sportSoccer != null) { - return _sportSoccer!! - } - _sportSoccer = fluentIcon(name = "Regular.SportSoccer") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) - close() - moveTo(10.07f, 3.72f) - arcToRelative(8.53f, 8.53f, 0.0f, false, true, 3.86f, 0.0f) - lineTo(12.0f, 4.87f) - lineToRelative(-1.93f, -1.15f) - close() - moveTo(8.24f, 4.37f) - lineTo(11.25f, 6.17f) - verticalLineToRelative(2.2f) - lineToRelative(-2.79f, 2.02f) - lineToRelative(-2.04f, -0.7f) - lineToRelative(-0.59f, -3.54f) - arcToRelative(8.53f, 8.53f, 0.0f, false, true, 2.41f, -1.78f) - close() - moveTo(4.6f, 7.83f) - lineTo(4.95f, 10.0f) - lineToRelative(-1.43f, 1.43f) - curveToRelative(0.09f, -1.3f, 0.46f, -2.51f, 1.07f, -3.59f) - close() - moveTo(3.63f, 13.43f) - lineTo(5.96f, 11.11f) - lineTo(8.0f, 11.81f) - lineTo(9.08f, 15.15f) - lineTo(8.11f, 16.73f) - lineTo(4.81f, 16.53f) - curveToRelative(-0.58f, -0.92f, -0.99f, -1.97f, -1.18f, -3.1f) - close() - moveTo(6.1f, 18.11f) - lineTo(8.0f, 18.22f) - lineTo(8.68f, 19.82f) - curveToRelative(-0.96f, -0.4f, -1.84f, -1.0f, -2.58f, -1.71f) - close() - moveTo(10.54f, 20.37f) - lineTo(9.36f, 17.57f) - lineTo(10.32f, 16.0f) - horizontalLineToRelative(3.37f) - lineToRelative(0.91f, 1.58f) - lineToRelative(-1.04f, 2.78f) - arcToRelative(8.55f, 8.55f, 0.0f, false, true, -3.02f, 0.01f) - close() - moveTo(15.37f, 19.81f) - lineTo(15.94f, 18.29f) - lineTo(17.61f, 18.39f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, -2.24f, 1.42f) - close() - moveTo(18.9f, 16.98f) - lineTo(15.88f, 16.78f) - lineTo(14.94f, 15.16f) - lineTo(16.03f, 11.82f) - lineTo(18.04f, 11.12f) - lineTo(20.35f, 13.64f) - arcToRelative(8.46f, 8.46f, 0.0f, false, true, -1.45f, 3.34f) - close() - moveTo(20.5f, 11.58f) - lineTo(19.06f, 10.01f) - lineTo(19.42f, 7.84f) - arcToRelative(8.45f, 8.45f, 0.0f, false, true, 1.08f, 3.74f) - close() - moveTo(18.18f, 6.16f) - lineTo(17.59f, 9.69f) - lineTo(15.55f, 10.39f) - lineTo(12.76f, 8.37f) - verticalLineToRelative(-2.2f) - lineToRelative(3.0f, -1.8f) - arcToRelative(8.53f, 8.53f, 0.0f, false, true, 2.42f, 1.79f) - close() - moveTo(9.48f, 11.52f) - lineTo(12.0f, 9.68f) - lineToRelative(2.54f, 1.84f) - lineToRelative(-0.97f, 2.98f) - horizontalLineToRelative(-3.13f) - lineToRelative(-0.97f, -2.98f) - close() - } - } - return _sportSoccer!! - } - -private var _sportSoccer: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Square.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Square.kt deleted file mode 100644 index 078b3a0a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Square.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Square: ImageVector - get() { - if (_square != null) { - return _square!! - } - _square = fluentIcon(name = "Regular.Square") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineTo(6.25f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - verticalLineTo(6.25f) - close() - moveTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineTo(6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineTo(6.25f) - close() - } - } - return _square!! - } - -private var _square: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SquareArrowForward.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SquareArrowForward.kt deleted file mode 100644 index c19c8ea8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SquareArrowForward.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SquareArrowForward: ImageVector - get() { - if (_squareArrowForward != null) { - return _squareArrowForward!! - } - _squareArrowForward = fluentIcon(name = "Regular.SquareArrowForward") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(5.77f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 6.24f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(6.25f, 4.49f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(5.06f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(6.25f, 20.99f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) - close() - moveTo(18.65f, 15.35f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, -0.7f) - lineToRelative(1.5f, 1.5f) - curveToRelative(0.2f, 0.2f, 0.2f, 0.5f, 0.0f, 0.7f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, -0.7f) - lineToRelative(0.64f, -0.65f) - horizontalLineToRelative(-2.04f) - curveTo(16.01f, 17.0f, 15.0f, 18.0f, 15.0f, 19.25f) - verticalLineToRelative(0.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-0.25f) - curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) - horizontalLineToRelative(2.04f) - lineToRelative(-0.64f, -0.65f) - close() - } - } - return _squareArrowForward!! - } - -private var _squareArrowForward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SquareHint.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SquareHint.kt deleted file mode 100644 index 5caa134d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SquareHint.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SquareHint: ImageVector - get() { - if (_squareHint != null) { - return _squareHint!! - } - _squareHint = fluentIcon(name = "Regular.SquareHint") { - fluentPath { - moveTo(10.0f, 3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(17.75f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(6.25f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - close() - moveTo(3.75f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(10.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.5f) - close() - moveTo(17.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - close() - moveTo(20.25f, 10.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(3.0f, 13.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.5f) - close() - } - } - return _squareHint!! - } - -private var _squareHint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SquareHintApps.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SquareHintApps.kt deleted file mode 100644 index 4f9988c4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SquareHintApps.kt +++ /dev/null @@ -1,96 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SquareHintApps: ImageVector - get() { - if (_squareHintApps != null) { - return _squareHintApps!! - } - _squareHintApps = fluentIcon(name = "Regular.SquareHintApps") { - fluentPath { - moveTo(7.0f, 3.75f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - close() - moveTo(9.0f, 3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 9.0f, 3.75f) - close() - moveTo(17.75f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(3.75f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(3.75f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - close() - moveTo(12.25f, 15.5f) - horizontalLineToRelative(3.25f) - verticalLineToRelative(-3.25f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(3.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-7.5f) - curveTo(11.01f, 23.0f, 10.0f, 22.0f, 10.0f, 20.75f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - close() - moveTo(17.0f, 12.25f) - verticalLineToRelative(3.25f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(-3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(15.5f, 21.5f) - lineTo(15.5f, 17.0f) - horizontalLineToRelative(-3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.25f) - close() - moveTo(17.0f, 17.0f) - verticalLineToRelative(4.5f) - horizontalLineToRelative(2.75f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(21.5f, 17.0f) - lineTo(17.0f, 17.0f) - close() - } - } - return _squareHintApps!! - } - -private var _squareHintApps: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SquareHintSparkles.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SquareHintSparkles.kt deleted file mode 100644 index d7b80cfc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SquareHintSparkles.kt +++ /dev/null @@ -1,114 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SquareHintSparkles: ImageVector - get() { - if (_squareHintSparkles != null) { - return _squareHintSparkles!! - } - _squareHintSparkles = fluentIcon(name = "Regular.SquareHintSparkles") { - fluentPath { - moveTo(16.09f, 6.41f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.35f, -0.95f) - lineTo(13.36f, 5.0f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, -1.03f) - lineToRelative(1.38f, -0.44f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.76f, -1.77f) - lineToRelative(0.01f, -0.03f) - lineToRelative(0.45f, -1.38f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, 1.03f, 0.0f) - lineToRelative(0.44f, 1.38f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.8f, 1.8f) - lineToRelative(1.38f, 0.44f) - lineToRelative(0.03f, 0.01f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, 1.03f) - lineToRelative(-1.38f, 0.44f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.8f, 1.8f) - lineToRelative(-0.45f, 1.38f) - arcToRelative(0.54f, 0.54f, 0.0f, false, true, -1.03f, 0.0f) - lineToRelative(-0.44f, -1.38f) - curveToRelative(-0.1f, -0.3f, -0.25f, -0.6f, -0.45f, -0.85f) - close() - moveTo(23.79f, 10.21f) - lineTo(23.02f, 9.96f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, -1.0f, -1.0f) - lineToRelative(-0.25f, -0.76f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, -0.57f, 0.0f) - lineToRelative(-0.25f, 0.77f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, -0.98f, 1.0f) - lineToRelative(-0.77f, 0.24f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, 0.57f) - lineToRelative(0.77f, 0.25f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, 1.0f) - lineToRelative(0.24f, 0.77f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.58f, 0.0f) - lineToRelative(0.24f, -0.77f) - arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, -1.0f) - lineToRelative(0.77f, -0.24f) - arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, -0.57f) - horizontalLineToRelative(-0.02f) - close() - moveTo(12.27f, 3.57f) - curveToRelative(0.2f, -0.26f, 0.46f, -0.46f, 0.77f, -0.57f) - horizontalLineToRelative(-2.3f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(12.0f, 4.5f) - arcToRelative(1.6f, 1.6f, 0.0f, false, true, 0.28f, -0.93f) - close() - moveTo(3.75f, 10.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(14.0f, 20.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(6.25f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(0.5f) - close() - moveTo(6.25f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - verticalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) - horizontalLineToRelative(0.5f) - close() - moveTo(17.0f, 20.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(0.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) - verticalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(0.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - } - } - return _squareHintSparkles!! - } - -private var _squareHintSparkles: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SquareMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SquareMultiple.kt deleted file mode 100644 index 16ec5c80..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SquareMultiple.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SquareMultiple: ImageVector - get() { - if (_squareMultiple != null) { - return _squareMultiple!! - } - _squareMultiple = fluentIcon(name = "Regular.SquareMultiple") { - fluentPath { - moveTo(7.52f, 5.0f) - horizontalLineTo(6.0f) - curveToRelative(0.13f, -1.68f, 1.53f, -3.0f, 3.24f, -3.0f) - horizontalLineToRelative(8.0f) - arcTo(4.75f, 4.75f, 0.0f, false, true, 22.0f, 6.75f) - verticalLineToRelative(8.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.0f, 3.24f) - verticalLineToRelative(-1.5f) - curveToRelative(0.85f, -0.13f, 1.5f, -0.86f, 1.5f, -1.74f) - verticalLineToRelative(-8.0f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-8.0f) - curveToRelative(-0.88f, 0.0f, -1.61f, 0.65f, -1.73f, 1.5f) - close() - moveTo(5.25f, 6.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 9.25f) - verticalLineToRelative(9.5f) - curveTo(2.0f, 20.55f, 3.46f, 22.0f, 5.25f, 22.0f) - horizontalLineToRelative(9.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-9.5f) - curveTo(18.0f, 7.45f, 16.55f, 6.0f, 14.75f, 6.0f) - horizontalLineToRelative(-9.5f) - close() - moveTo(3.5f, 9.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(9.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-9.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-9.5f) - close() - } - } - return _squareMultiple!! - } - -private var _squareMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Stack.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Stack.kt deleted file mode 100644 index 7cfc3be1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Stack.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Stack: ImageVector - get() { - if (_stack != null) { - return _stack!! - } - _stack = fluentIcon(name = "Regular.Stack") { - fluentPath { - moveTo(4.0f, 4.0f) - horizontalLineToRelative(11.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - verticalLineToRelative(7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - lineTo(4.0f, 15.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(2.0f, 6.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - close() - moveTo(15.0f, 5.5f) - lineTo(4.0f, 5.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(7.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(11.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(15.5f, 6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(4.56f, 16.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.94f, 1.5f) - horizontalLineToRelative(9.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, -4.0f) - verticalLineToRelative(-5.0f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 18.0f, 6.56f) - verticalLineToRelative(6.94f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.5f, 2.5f) - lineTo(4.56f, 16.0f) - close() - moveTo(7.06f, 18.5f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 9.0f, 20.0f) - horizontalLineToRelative(7.25f) - arcTo(5.75f, 5.75f, 0.0f, false, false, 22.0f, 14.25f) - lineTo(22.0f, 11.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.5f, -1.94f) - verticalLineToRelative(5.19f) - curveToRelative(0.0f, 2.35f, -1.9f, 4.25f, -4.25f, 4.25f) - lineTo(7.06f, 18.5f) - close() - } - } - return _stack!! - } - -private var _stack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StackArrowForward.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StackArrowForward.kt deleted file mode 100644 index c33a3968..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StackArrowForward.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.StackArrowForward: ImageVector - get() { - if (_stackArrowForward != null) { - return _stackArrowForward!! - } - _stackArrowForward = fluentIcon(name = "Regular.StackArrowForward") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, 11.0f) - close() - moveTo(19.35f, 3.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(0.64f, 0.65f) - horizontalLineToRelative(-2.04f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 14.0f, 8.25f) - verticalLineToRelative(0.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-0.25f) - curveTo(15.0f, 7.01f, 16.0f, 6.0f, 17.25f, 6.0f) - horizontalLineToRelative(2.04f) - lineToRelative(-0.64f, 0.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.5f, -1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-1.5f, -1.5f) - close() - moveTo(17.0f, 13.0f) - verticalLineToRelative(-0.02f) - arcToRelative(6.48f, 6.48f, 0.0f, false, true, -1.5f, -0.3f) - lineTo(15.5f, 13.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) - lineTo(4.0f, 13.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) - lineTo(3.5f, 6.0f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - horizontalLineToRelative(7.08f) - curveToRelative(0.08f, -0.52f, 0.22f, -1.03f, 0.42f, -1.5f) - lineTo(4.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) - verticalLineToRelative(7.0f) - curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) - horizontalLineToRelative(11.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) - close() - moveTo(18.0f, 12.98f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, 1.5f, -0.3f) - verticalLineToRelative(0.82f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, 4.0f) - horizontalLineToRelative(-9.0f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 4.56f, 16.0f) - lineTo(15.5f, 16.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) - verticalLineToRelative(-0.52f) - close() - moveTo(22.0f, 11.19f) - curveToRelative(-0.44f, 0.43f, -0.95f, 0.8f, -1.5f, 1.08f) - verticalLineToRelative(1.98f) - curveToRelative(0.0f, 2.35f, -1.9f, 4.25f, -4.25f, 4.25f) - lineTo(7.06f, 18.5f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 9.0f, 20.0f) - horizontalLineToRelative(7.25f) - arcTo(5.75f, 5.75f, 0.0f, false, false, 22.0f, 14.25f) - verticalLineToRelative(-3.06f) - close() - } - } - return _stackArrowForward!! - } - -private var _stackArrowForward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StackStar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StackStar.kt deleted file mode 100644 index 5134a4d5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StackStar.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.StackStar: ImageVector - get() { - if (_stackStar != null) { - return _stackStar!! - } - _stackStar = fluentIcon(name = "Regular.StackStar") { - fluentPath { - moveTo(9.5f, 5.85f) - curveToRelative(0.28f, 0.0f, 0.54f, 0.16f, 0.67f, 0.41f) - lineTo(11.0f, 7.91f) - lineToRelative(1.6f, 0.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.39f, 1.32f) - lineToRelative(-1.15f, 0.95f) - lineToRelative(0.4f, 1.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, 0.8f) - lineToRelative(-1.6f, -1.0f) - lineToRelative(-1.6f, 1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.8f) - lineToRelative(0.4f, -1.8f) - lineToRelative(-1.15f, -0.95f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.39f, -1.32f) - lineTo(8.0f, 7.9f) - lineToRelative(0.82f, -1.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.67f, -0.41f) - close() - moveTo(4.0f, 4.0f) - horizontalLineToRelative(11.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) - verticalLineToRelative(7.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - lineTo(4.0f, 15.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) - lineTo(2.0f, 6.0f) - curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) - close() - moveTo(15.0f, 5.5f) - lineTo(4.0f, 5.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(7.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(11.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(15.5f, 6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(4.56f, 16.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.94f, 1.5f) - horizontalLineToRelative(9.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, -4.0f) - verticalLineToRelative(-5.0f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 18.0f, 6.56f) - verticalLineToRelative(6.94f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.5f, 2.5f) - lineTo(4.56f, 16.0f) - close() - moveTo(7.06f, 18.5f) - arcTo(2.0f, 2.0f, 0.0f, false, false, 9.0f, 20.0f) - horizontalLineToRelative(7.25f) - arcTo(5.75f, 5.75f, 0.0f, false, false, 22.0f, 14.25f) - lineTo(22.0f, 11.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.5f, -1.94f) - verticalLineToRelative(5.19f) - curveToRelative(0.0f, 2.35f, -1.9f, 4.25f, -4.25f, 4.25f) - lineTo(7.06f, 18.5f) - close() - } - } - return _stackStar!! - } - -private var _stackStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarAdd.kt deleted file mode 100644 index 6e6c84ee..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarAdd.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.StarAdd: ImageVector - get() { - if (_starAdd != null) { - return _starAdd!! - } - _starAdd = fluentIcon(name = "Regular.StarAdd") { - fluentPath { - moveTo(10.79f, 3.1f) - curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) - lineToRelative(2.36f, 4.78f) - lineToRelative(5.27f, 0.77f) - curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) - lineToRelative(-0.9f, 0.88f) - arcToRelative(6.46f, 6.46f, 0.0f, false, false, -1.52f, -0.62f) - lineToRelative(1.15f, -1.12f) - lineToRelative(-5.05f, -0.74f) - arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.01f, -0.74f) - lineTo(12.0f, 4.04f) - lineTo(9.74f, 8.6f) - curveToRelative(-0.2f, 0.4f, -0.58f, 0.68f, -1.02f, 0.74f) - lineToRelative(-5.05f, 0.74f) - lineToRelative(3.66f, 3.56f) - curveToRelative(0.32f, 0.3f, 0.46f, 0.76f, 0.39f, 1.2f) - lineToRelative(-0.87f, 5.02f) - lineTo(11.0f, 17.7f) - curveToRelative(0.02f, 0.54f, 0.1f, 1.07f, 0.24f, 1.57f) - lineToRelative(-3.96f, 2.08f) - arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) - lineToRelative(0.9f, -5.25f) - lineToRelative(-3.81f, -3.72f) - curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) - lineToRelative(5.27f, -0.77f) - lineToRelative(2.36f, -4.78f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _starAdd!! - } - -private var _starAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarArrowBack.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarArrowBack.kt deleted file mode 100644 index 3704aab6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarArrowBack.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.StarArrowBack: ImageVector - get() { - if (_starArrowBack != null) { - return _starArrowBack!! - } - _starArrowBack = fluentIcon(name = "Regular.StarArrowBack") { - fluentPath { - moveTo(10.79f, 3.1f) - curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) - lineToRelative(2.36f, 4.78f) - lineToRelative(5.27f, 0.77f) - curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) - lineToRelative(-0.9f, 0.88f) - arcToRelative(6.46f, 6.46f, 0.0f, false, false, -1.52f, -0.61f) - lineToRelative(1.15f, -1.13f) - lineToRelative(-5.05f, -0.74f) - arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.01f, -0.74f) - lineTo(12.0f, 4.04f) - lineTo(9.74f, 8.6f) - curveToRelative(-0.2f, 0.4f, -0.58f, 0.68f, -1.02f, 0.74f) - lineToRelative(-5.05f, 0.74f) - lineToRelative(3.66f, 3.56f) - curveToRelative(0.32f, 0.3f, 0.46f, 0.76f, 0.39f, 1.2f) - lineToRelative(-0.87f, 5.02f) - lineTo(11.0f, 17.7f) - curveToRelative(0.02f, 0.54f, 0.1f, 1.07f, 0.24f, 1.57f) - lineToRelative(-3.96f, 2.08f) - arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) - lineToRelative(0.9f, -5.25f) - lineToRelative(-3.81f, -3.72f) - curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) - lineToRelative(5.27f, -0.77f) - lineToRelative(2.36f, -4.78f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(16.35f, 15.35f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(1.5f, 1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-0.64f, -0.65f) - horizontalLineToRelative(2.04f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(0.25f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-0.25f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-2.04f) - lineToRelative(0.64f, -0.65f) - close() - } - } - return _starArrowBack!! - } - -private var _starArrowBack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarArrowRightEnd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarArrowRightEnd.kt deleted file mode 100644 index b4a03fff..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarArrowRightEnd.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.StarArrowRightEnd: ImageVector - get() { - if (_starArrowRightEnd != null) { - return _starArrowRightEnd!! - } - _starArrowRightEnd = fluentIcon(name = "Regular.StarArrowRightEnd") { - fluentPath { - moveTo(10.79f, 3.1f) - curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) - lineToRelative(2.36f, 4.78f) - lineToRelative(5.27f, 0.77f) - curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) - lineToRelative(-0.9f, 0.88f) - arcToRelative(6.46f, 6.46f, 0.0f, false, false, -1.52f, -0.62f) - lineToRelative(1.15f, -1.12f) - lineToRelative(-5.05f, -0.74f) - arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.01f, -0.74f) - lineTo(12.0f, 4.04f) - lineTo(9.74f, 8.6f) - curveToRelative(-0.2f, 0.4f, -0.58f, 0.68f, -1.02f, 0.74f) - lineToRelative(-5.05f, 0.74f) - lineToRelative(3.66f, 3.56f) - curveToRelative(0.32f, 0.3f, 0.46f, 0.76f, 0.39f, 1.2f) - lineToRelative(-0.87f, 5.02f) - lineTo(11.0f, 17.7f) - curveToRelative(0.02f, 0.54f, 0.1f, 1.07f, 0.24f, 1.57f) - lineToRelative(-3.96f, 2.08f) - arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) - lineToRelative(0.9f, -5.25f) - lineToRelative(-3.81f, -3.72f) - curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) - lineToRelative(5.27f, -0.77f) - lineToRelative(2.36f, -4.78f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(14.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineTo(19.29f, 17.0f) - lineTo(14.5f, 17.0f) - close() - } - } - return _starArrowRightEnd!! - } - -private var _starArrowRightEnd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarArrowRightStart.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarArrowRightStart.kt deleted file mode 100644 index 398af343..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarArrowRightStart.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.StarArrowRightStart: ImageVector - get() { - if (_starArrowRightStart != null) { - return _starArrowRightStart!! - } - _starArrowRightStart = fluentIcon(name = "Regular.StarArrowRightStart") { - fluentPath { - moveTo(10.79f, 3.1f) - curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) - lineToRelative(2.36f, 4.78f) - lineToRelative(5.27f, 0.77f) - curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) - lineToRelative(-3.82f, 3.72f) - lineToRelative(0.9f, 5.25f) - arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, 1.42f) - lineToRelative(-3.95f, -2.08f) - curveToRelative(0.14f, -0.5f, 0.22f, -1.02f, 0.24f, -1.57f) - lineToRelative(4.14f, 2.18f) - lineToRelative(-0.86f, -5.03f) - curveToRelative(-0.07f, -0.43f, 0.07f, -0.88f, 0.39f, -1.2f) - lineToRelative(3.65f, -3.55f) - lineToRelative(-5.05f, -0.74f) - arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.01f, -0.74f) - lineTo(12.0f, 4.04f) - lineTo(9.74f, 8.6f) - curveToRelative(-0.2f, 0.4f, -0.58f, 0.68f, -1.02f, 0.74f) - lineToRelative(-5.05f, 0.74f) - lineToRelative(1.16f, 1.13f) - curveToRelative(-0.53f, 0.14f, -1.04f, 0.35f, -1.51f, 0.61f) - lineToRelative(-0.91f, -0.88f) - curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) - lineToRelative(5.27f, -0.77f) - lineToRelative(2.36f, -4.78f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(3.5f, 17.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.8f) - lineToRelative(-1.65f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, 0.7f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.7f, 0.7f) - lineTo(8.29f, 17.0f) - horizontalLineTo(3.5f) - close() - } - } - return _starArrowRightStart!! - } - -private var _starArrowRightStart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarDismiss.kt deleted file mode 100644 index b25737a5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarDismiss.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.StarDismiss: ImageVector - get() { - if (_starDismiss != null) { - return _starDismiss!! - } - _starDismiss = fluentIcon(name = "Regular.StarDismiss") { - fluentPath { - moveTo(10.79f, 3.1f) - curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) - lineToRelative(2.36f, 4.78f) - lineToRelative(5.27f, 0.77f) - curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) - lineToRelative(-0.9f, 0.88f) - arcToRelative(6.46f, 6.46f, 0.0f, false, false, -1.52f, -0.61f) - lineToRelative(1.15f, -1.13f) - lineToRelative(-5.05f, -0.74f) - arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.01f, -0.73f) - lineTo(12.0f, 4.04f) - lineTo(9.74f, 8.62f) - curveToRelative(-0.2f, 0.4f, -0.58f, 0.67f, -1.02f, 0.73f) - lineToRelative(-5.05f, 0.74f) - lineToRelative(3.66f, 3.56f) - curveToRelative(0.32f, 0.31f, 0.46f, 0.76f, 0.39f, 1.2f) - lineToRelative(-0.87f, 5.02f) - lineTo(11.0f, 17.7f) - curveToRelative(0.02f, 0.54f, 0.1f, 1.07f, 0.24f, 1.57f) - lineToRelative(-3.96f, 2.08f) - arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) - lineToRelative(0.9f, -5.25f) - lineToRelative(-3.81f, -3.72f) - curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) - lineToRelative(5.27f, -0.77f) - lineToRelative(2.36f, -4.78f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(15.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-1.64f, -1.65f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.65f, 1.64f) - lineToRelative(-1.65f, -1.64f) - close() - } - } - return _starDismiss!! - } - -private var _starDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarEdit.kt deleted file mode 100644 index 18e59034..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarEdit.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.StarEdit: ImageVector - get() { - if (_starEdit != null) { - return _starEdit!! - } - _starEdit = fluentIcon(name = "Regular.StarEdit") { - fluentPath { - moveTo(13.2f, 3.1f) - curveToRelative(-0.49f, -1.0f, -1.92f, -1.0f, -2.41f, 0.0f) - lineTo(8.43f, 7.88f) - lineToRelative(-5.27f, 0.77f) - arcToRelative(1.35f, 1.35f, 0.0f, false, false, -0.75f, 2.3f) - lineToRelative(3.81f, 3.72f) - lineToRelative(-0.9f, 5.25f) - arcToRelative(1.35f, 1.35f, 0.0f, false, false, 1.96f, 1.42f) - lineToRelative(2.95f, -1.55f) - lineToRelative(0.3f, -1.21f) - curveToRelative(0.07f, -0.28f, 0.17f, -0.55f, 0.3f, -0.8f) - lineToRelative(-3.98f, 2.1f) - lineToRelative(0.87f, -5.04f) - curveToRelative(0.07f, -0.43f, -0.07f, -0.88f, -0.4f, -1.2f) - lineTo(3.68f, 10.1f) - lineToRelative(5.05f, -0.74f) - curveToRelative(0.44f, -0.06f, 0.82f, -0.34f, 1.02f, -0.74f) - lineTo(12.0f, 4.04f) - lineToRelative(2.26f, 4.57f) - curveToRelative(0.2f, 0.4f, 0.57f, 0.68f, 1.01f, 0.74f) - lineToRelative(4.45f, 0.65f) - curveToRelative(0.73f, 0.0f, 1.46f, 0.24f, 2.05f, 0.72f) - curveToRelative(0.53f, -0.79f, 0.08f, -1.93f, -0.93f, -2.07f) - lineToRelative(-5.27f, -0.77f) - lineTo(13.2f, 3.1f) - close() - moveTo(18.1f, 11.67f) - lineTo(12.2f, 17.57f) - curveToRelative(-0.34f, 0.35f, -0.58f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.46f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.24f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _starEdit!! - } - -private var _starEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarEmphasis.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarEmphasis.kt deleted file mode 100644 index 0646b0eb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarEmphasis.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.StarEmphasis: ImageVector - get() { - if (_starEmphasis != null) { - return _starEmphasis!! - } - _starEmphasis = fluentIcon(name = "Regular.StarEmphasis") { - fluentPath { - moveTo(13.2f, 3.1f) - curveToRelative(-0.49f, -1.0f, -1.92f, -1.0f, -2.41f, 0.0f) - lineTo(8.43f, 7.88f) - lineToRelative(-5.27f, 0.77f) - arcToRelative(1.35f, 1.35f, 0.0f, false, false, -0.75f, 2.3f) - lineToRelative(3.81f, 3.72f) - lineToRelative(-0.9f, 5.25f) - arcToRelative(1.35f, 1.35f, 0.0f, false, false, 1.96f, 1.42f) - lineTo(12.0f, 18.86f) - lineToRelative(4.71f, 2.48f) - curveToRelative(1.0f, 0.52f, 2.15f, -0.32f, 1.96f, -1.42f) - lineToRelative(-0.9f, -5.25f) - lineToRelative(3.82f, -3.72f) - curveToRelative(0.8f, -0.78f, 0.36f, -2.14f, -0.75f, -2.3f) - lineToRelative(-5.27f, -0.77f) - lineTo(13.2f, 3.1f) - close() - moveTo(9.75f, 8.61f) - lineTo(12.0f, 4.04f) - lineToRelative(2.26f, 4.57f) - curveToRelative(0.2f, 0.4f, 0.57f, 0.68f, 1.01f, 0.74f) - lineToRelative(5.05f, 0.74f) - lineToRelative(-3.65f, 3.56f) - curveToRelative(-0.32f, 0.3f, -0.46f, 0.76f, -0.39f, 1.2f) - lineToRelative(0.86f, 5.02f) - lineToRelative(-4.51f, -2.37f) - curveToRelative(-0.4f, -0.2f, -0.87f, -0.2f, -1.26f, 0.0f) - lineToRelative(-4.52f, 2.37f) - lineToRelative(0.87f, -5.03f) - curveToRelative(0.07f, -0.43f, -0.07f, -0.88f, -0.4f, -1.2f) - lineTo(3.68f, 10.1f) - lineToRelative(5.05f, -0.74f) - curveToRelative(0.44f, -0.06f, 0.82f, -0.34f, 1.02f, -0.74f) - close() - moveTo(1.16f, 3.78f) - curveToRelative(-0.25f, 0.32f, -0.2f, 0.8f, 0.12f, 1.06f) - lineToRelative(2.5f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.94f, -1.18f) - lineToRelative(-2.5f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.12f) - close() - moveTo(22.84f, 18.22f) - curveToRelative(0.25f, -0.33f, 0.2f, -0.8f, -0.12f, -1.06f) - lineToRelative(-2.5f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.94f, 1.18f) - lineToRelative(2.5f, 2.0f) - curveToRelative(0.32f, 0.25f, 0.8f, 0.2f, 1.06f, -0.12f) - close() - moveTo(1.28f, 17.16f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.94f, 1.18f) - lineToRelative(2.5f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.94f, -1.18f) - lineToRelative(-2.5f, 2.0f) - close() - moveTo(22.84f, 3.78f) - curveToRelative(0.25f, 0.32f, 0.2f, 0.8f, -0.12f, 1.06f) - lineToRelative(-2.5f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.94f, -1.18f) - lineToRelative(2.5f, -2.0f) - curveToRelative(0.32f, -0.25f, 0.8f, -0.2f, 1.06f, 0.12f) - close() - } - } - return _starEmphasis!! - } - -private var _starEmphasis: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarHalf.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarHalf.kt deleted file mode 100644 index 7683b5e7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarHalf.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.StarHalf: ImageVector - get() { - if (_starHalf != null) { - return _starHalf!! - } - _starHalf = fluentIcon(name = "Regular.StarHalf") { - fluentPath { - moveTo(12.0f, 2.35f) - curveToRelative(-0.48f, 0.0f, -0.96f, 0.25f, -1.21f, 0.75f) - lineTo(8.43f, 7.88f) - lineToRelative(-5.27f, 0.77f) - arcToRelative(1.35f, 1.35f, 0.0f, false, false, -0.75f, 2.3f) - lineToRelative(3.81f, 3.72f) - lineToRelative(-0.9f, 5.25f) - arcToRelative(1.35f, 1.35f, 0.0f, false, false, 1.96f, 1.42f) - lineTo(12.0f, 18.86f) - lineToRelative(4.71f, 2.48f) - curveToRelative(1.0f, 0.52f, 2.15f, -0.32f, 1.96f, -1.42f) - lineToRelative(-0.9f, -5.25f) - lineToRelative(3.82f, -3.72f) - curveToRelative(0.8f, -0.78f, 0.36f, -2.14f, -0.75f, -2.3f) - lineToRelative(-5.27f, -0.77f) - lineTo(13.2f, 3.1f) - curveToRelative(-0.25f, -0.5f, -0.73f, -0.75f, -1.21f, -0.75f) - close() - moveTo(12.0f, 17.35f) - lineTo(12.0f, 4.04f) - lineToRelative(2.26f, 4.56f) - curveToRelative(0.2f, 0.4f, 0.57f, 0.68f, 1.01f, 0.74f) - lineToRelative(5.05f, 0.74f) - lineToRelative(-3.65f, 3.56f) - curveToRelative(-0.32f, 0.3f, -0.46f, 0.76f, -0.39f, 1.2f) - lineToRelative(0.86f, 5.02f) - lineToRelative(-4.51f, -2.37f) - curveToRelative(-0.2f, -0.1f, -0.41f, -0.16f, -0.63f, -0.16f) - close() - } - } - return _starHalf!! - } - -private var _starHalf: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarLineHorizontal3.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarLineHorizontal3.kt deleted file mode 100644 index 3a943472..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarLineHorizontal3.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.StarLineHorizontal3: ImageVector - get() { - if (_starLineHorizontal3 != null) { - return _starLineHorizontal3!! - } - _starLineHorizontal3 = fluentIcon(name = "Regular.StarLineHorizontal3") { - fluentPath { - moveTo(13.2f, 3.1f) - curveToRelative(-0.49f, -1.0f, -1.92f, -1.0f, -2.41f, 0.0f) - lineTo(8.43f, 7.88f) - lineToRelative(-5.27f, 0.77f) - arcToRelative(1.35f, 1.35f, 0.0f, false, false, -0.75f, 2.3f) - lineToRelative(3.81f, 3.72f) - lineToRelative(-0.9f, 5.25f) - arcToRelative(1.35f, 1.35f, 0.0f, false, false, 1.96f, 1.42f) - lineToRelative(5.07f, -2.66f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.7f, -1.33f) - lineToRelative(-4.8f, 2.52f) - lineToRelative(0.87f, -5.03f) - curveToRelative(0.07f, -0.43f, -0.07f, -0.88f, -0.4f, -1.2f) - lineTo(3.68f, 10.1f) - lineToRelative(5.05f, -0.74f) - curveToRelative(0.44f, -0.06f, 0.82f, -0.34f, 1.02f, -0.74f) - lineTo(12.0f, 4.04f) - lineToRelative(2.49f, 5.04f) - curveToRelative(0.12f, 0.26f, 0.38f, 0.42f, 0.67f, 0.42f) - horizontalLineToRelative(6.09f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.62f) - lineTo(13.2f, 3.1f) - close() - moveTo(14.5f, 12.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(14.5f, 16.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _starLineHorizontal3!! - } - -private var _starLineHorizontal3: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarOff.kt deleted file mode 100644 index 042511ac..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarOff.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.StarOff: ImageVector - get() { - if (_starOff != null) { - return _starOff!! - } - _starOff = fluentIcon(name = "Regular.StarOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(4.8f, 4.8f) - lineToRelative(-3.86f, 0.57f) - arcToRelative(1.35f, 1.35f, 0.0f, false, false, -0.75f, 2.3f) - lineToRelative(3.81f, 3.72f) - lineToRelative(-0.9f, 5.25f) - arcToRelative(1.35f, 1.35f, 0.0f, false, false, 1.96f, 1.42f) - lineTo(12.0f, 18.86f) - lineToRelative(4.71f, 2.48f) - curveToRelative(1.0f, 0.52f, 2.15f, -0.32f, 1.96f, -1.42f) - lineToRelative(-0.04f, -0.22f) - lineToRelative(2.09f, 2.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(16.8f, 17.86f) - lineToRelative(0.34f, 2.01f) - lineToRelative(-4.51f, -2.37f) - curveToRelative(-0.4f, -0.2f, -0.87f, -0.2f, -1.26f, 0.0f) - lineToRelative(-4.52f, 2.37f) - lineToRelative(0.87f, -5.03f) - curveToRelative(0.07f, -0.43f, -0.07f, -0.88f, -0.4f, -1.2f) - lineTo(3.68f, 10.1f) - lineToRelative(4.68f, -0.68f) - lineToRelative(8.45f, 8.45f) - close() - moveTo(20.32f, 10.09f) - lineTo(16.75f, 13.57f) - lineTo(17.81f, 14.63f) - lineTo(21.59f, 10.95f) - curveToRelative(0.8f, -0.78f, 0.36f, -2.14f, -0.75f, -2.3f) - lineToRelative(-5.27f, -0.77f) - lineTo(13.2f, 3.1f) - curveToRelative(-0.5f, -1.0f, -1.93f, -1.0f, -2.42f, 0.0f) - lineTo(9.3f, 6.12f) - lineToRelative(1.12f, 1.12f) - lineTo(12.0f, 4.04f) - lineToRelative(2.26f, 4.57f) - curveToRelative(0.2f, 0.4f, 0.57f, 0.68f, 1.01f, 0.74f) - lineToRelative(5.05f, 0.74f) - close() - } - } - return _starOff!! - } - -private var _starOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarOneQuarter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarOneQuarter.kt deleted file mode 100644 index 508eddbf..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarOneQuarter.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.StarOneQuarter: ImageVector - get() { - if (_starOneQuarter != null) { - return _starOneQuarter!! - } - _starOneQuarter = fluentIcon(name = "Regular.StarOneQuarter") { - fluentPath { - moveTo(13.2f, 3.1f) - curveToRelative(-0.49f, -1.0f, -1.92f, -1.0f, -2.41f, 0.0f) - lineTo(8.43f, 7.88f) - lineToRelative(-5.27f, 0.77f) - arcToRelative(1.35f, 1.35f, 0.0f, false, false, -0.75f, 2.3f) - lineToRelative(3.81f, 3.72f) - lineToRelative(-0.9f, 5.25f) - arcToRelative(1.35f, 1.35f, 0.0f, false, false, 1.96f, 1.42f) - lineToRelative(1.72f, -0.9f) - lineToRelative(3.0f, -1.58f) - lineToRelative(4.71f, 2.48f) - curveToRelative(1.0f, 0.52f, 2.15f, -0.32f, 1.96f, -1.42f) - lineToRelative(-0.9f, -5.25f) - lineToRelative(3.82f, -3.72f) - curveToRelative(0.8f, -0.78f, 0.36f, -2.14f, -0.75f, -2.3f) - lineToRelative(-5.27f, -0.77f) - lineTo(13.2f, 3.1f) - close() - moveTo(9.0f, 18.74f) - verticalLineTo(9.28f) - curveToRelative(0.32f, -0.12f, 0.59f, -0.35f, 0.74f, -0.67f) - lineTo(12.0f, 4.04f) - lineToRelative(2.26f, 4.57f) - curveToRelative(0.2f, 0.4f, 0.57f, 0.68f, 1.01f, 0.74f) - lineToRelative(5.05f, 0.74f) - lineToRelative(-3.65f, 3.56f) - curveToRelative(-0.32f, 0.3f, -0.46f, 0.76f, -0.39f, 1.2f) - lineToRelative(0.86f, 5.02f) - lineToRelative(-4.51f, -2.37f) - curveToRelative(-0.4f, -0.2f, -0.87f, -0.2f, -1.26f, 0.0f) - lineTo(9.0f, 18.74f) - close() - } - } - return _starOneQuarter!! - } - -private var _starOneQuarter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarProhibited.kt deleted file mode 100644 index 57cb3faa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarProhibited.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.StarProhibited: ImageVector - get() { - if (_starProhibited != null) { - return _starProhibited!! - } - _starProhibited = fluentIcon(name = "Regular.StarProhibited") { - fluentPath { - moveTo(10.79f, 3.1f) - curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) - lineToRelative(2.36f, 4.78f) - lineToRelative(5.27f, 0.77f) - curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) - lineToRelative(-0.9f, 0.88f) - arcToRelative(6.46f, 6.46f, 0.0f, false, false, -1.52f, -0.62f) - lineToRelative(1.15f, -1.12f) - lineToRelative(-5.05f, -0.74f) - arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.01f, -0.74f) - lineTo(12.0f, 4.04f) - lineTo(9.74f, 8.6f) - curveToRelative(-0.2f, 0.4f, -0.58f, 0.68f, -1.02f, 0.74f) - lineToRelative(-5.05f, 0.74f) - lineToRelative(3.66f, 3.56f) - curveToRelative(0.32f, 0.3f, 0.46f, 0.76f, 0.39f, 1.2f) - lineToRelative(-0.87f, 5.02f) - lineTo(11.0f, 17.7f) - curveToRelative(0.02f, 0.54f, 0.1f, 1.07f, 0.24f, 1.57f) - lineToRelative(-3.96f, 2.08f) - arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) - lineToRelative(0.9f, -5.25f) - lineToRelative(-3.81f, -3.72f) - curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) - lineToRelative(5.27f, -0.77f) - lineToRelative(2.36f, -4.78f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(13.5f, 17.5f) - curveToRelative(0.0f, 0.83f, 0.26f, 1.6f, 0.7f, 2.25f) - lineToRelative(5.55f, -5.56f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) - close() - moveTo(17.5f, 21.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) - lineToRelative(-5.55f, 5.56f) - curveToRelative(0.64f, 0.43f, 1.42f, 0.69f, 2.25f, 0.69f) - close() - } - } - return _starProhibited!! - } - -private var _starProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarSettings.kt deleted file mode 100644 index cbf7cb15..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarSettings.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.StarSettings: ImageVector - get() { - if (_starSettings != null) { - return _starSettings!! - } - _starSettings = fluentIcon(name = "Regular.StarSettings") { - fluentPath { - moveTo(10.79f, 3.1f) - curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) - lineToRelative(2.36f, 4.78f) - lineToRelative(5.27f, 0.77f) - curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) - lineToRelative(-0.9f, 0.88f) - arcToRelative(6.46f, 6.46f, 0.0f, false, false, -1.52f, -0.62f) - lineToRelative(1.15f, -1.12f) - lineToRelative(-5.05f, -0.74f) - arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.01f, -0.74f) - lineTo(12.0f, 4.04f) - lineTo(9.74f, 8.6f) - curveToRelative(-0.2f, 0.4f, -0.58f, 0.68f, -1.02f, 0.74f) - lineToRelative(-5.05f, 0.74f) - lineToRelative(3.66f, 3.56f) - curveToRelative(0.32f, 0.3f, 0.46f, 0.76f, 0.39f, 1.2f) - lineToRelative(-0.87f, 5.02f) - lineTo(11.0f, 17.7f) - curveToRelative(0.02f, 0.54f, 0.1f, 1.07f, 0.24f, 1.57f) - lineToRelative(-3.96f, 2.08f) - arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) - lineToRelative(0.9f, -5.25f) - lineToRelative(-3.81f, -3.72f) - curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) - lineToRelative(5.27f, -0.77f) - lineToRelative(2.36f, -4.78f) - close() - moveTo(14.28f, 13.97f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.59f, 0.15f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) - lineToRelative(0.55f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) - lineToRelative(-0.19f, 0.63f) - curveToRelative(0.44f, 0.39f, 0.94f, 0.7f, 1.49f, 0.93f) - lineToRelative(0.49f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) - lineToRelative(-0.2f, -0.69f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) - lineToRelative(0.59f, -0.14f) - arcToRelative(5.72f, 5.72f, 0.0f, false, false, 0.0f, -1.8f) - lineToRelative(-0.55f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.19f, -0.64f) - curveToRelative(-0.44f, -0.38f, -0.94f, -0.7f, -1.49f, -0.92f) - lineToRelative(-0.49f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) - lineToRelative(0.2f, 0.7f) - close() - moveTo(17.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) - close() - } - } - return _starSettings!! - } - -private var _starSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarThreeQuarter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarThreeQuarter.kt deleted file mode 100644 index 494f4b65..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StarThreeQuarter.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.StarThreeQuarter: ImageVector - get() { - if (_starThreeQuarter != null) { - return _starThreeQuarter!! - } - _starThreeQuarter = fluentIcon(name = "Regular.StarThreeQuarter") { - fluentPath { - moveTo(13.21f, 3.1f) - lineTo(15.0f, 6.73f) - lineToRelative(0.57f, 1.15f) - lineToRelative(5.27f, 0.77f) - curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) - lineToRelative(-3.82f, 3.72f) - lineToRelative(0.9f, 5.25f) - arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, 1.42f) - lineTo(12.0f, 18.86f) - lineToRelative(-4.72f, 2.48f) - arcToRelative(1.34f, 1.34f, 0.0f, false, true, -1.96f, -1.42f) - lineToRelative(0.9f, -5.25f) - lineToRelative(-3.81f, -3.72f) - curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) - lineToRelative(5.27f, -0.77f) - lineToRelative(2.36f, -4.78f) - curveToRelative(0.25f, -0.5f, 0.73f, -0.75f, 1.2f, -0.75f) - curveToRelative(0.5f, 0.0f, 0.97f, 0.25f, 1.22f, 0.75f) - close() - moveTo(15.0f, 9.28f) - verticalLineToRelative(9.47f) - lineToRelative(2.14f, 1.12f) - lineToRelative(-0.86f, -5.03f) - curveToRelative(-0.07f, -0.43f, 0.07f, -0.88f, 0.39f, -1.2f) - lineToRelative(3.65f, -3.55f) - lineToRelative(-5.05f, -0.74f) - curveToRelative(-0.1f, -0.01f, -0.18f, -0.03f, -0.27f, -0.07f) - close() - } - } - return _starThreeQuarter!! - } - -private var _starThreeQuarter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Status.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Status.kt deleted file mode 100644 index 9471819d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Status.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Status: ImageVector - get() { - if (_status != null) { - return _status!! - } - _status = fluentIcon(name = "Regular.Status") { - fluentPath { - moveTo(12.0f, 3.0f) - curveToRelative(1.11f, 0.0f, 2.18f, 0.2f, 3.16f, 0.57f) - lineToRelative(-1.18f, 1.2f) - arcToRelative(7.5f, 7.5f, 0.0f, true, false, 5.28f, 5.33f) - lineToRelative(1.2f, -1.2f) - arcTo(9.0f, 9.0f, 0.0f, true, true, 12.0f, 3.0f) - close() - moveTo(21.06f, 2.67f) - lineTo(21.21f, 2.81f) - arcToRelative(2.76f, 2.76f, 0.0f, false, true, 0.0f, 3.9f) - lineToRelative(-6.3f, 6.35f) - curveToRelative(-0.18f, 0.18f, -0.4f, 0.32f, -0.65f, 0.39f) - lineToRelative(-4.21f, 1.2f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.62f, -0.61f) - lineToRelative(1.2f, -4.22f) - curveToRelative(0.08f, -0.24f, 0.2f, -0.47f, 0.38f, -0.65f) - lineToRelative(6.31f, -6.35f) - arcToRelative(2.74f, 2.74f, 0.0f, false, true, 3.74f, -0.15f) - close() - moveTo(18.39f, 3.87f) - lineTo(12.08f, 10.23f) - lineTo(11.37f, 12.72f) - lineTo(13.84f, 12.01f) - lineTo(20.14f, 5.65f) - curveToRelative(0.47f, -0.46f, 0.5f, -1.18f, 0.1f, -1.68f) - lineToRelative(-0.1f, -0.1f) - arcToRelative(1.24f, 1.24f, 0.0f, false, false, -1.75f, 0.0f) - close() - } - } - return _status!! - } - -private var _status: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Steps.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Steps.kt deleted file mode 100644 index d66b8c4f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Steps.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Steps: ImageVector - get() { - if (_steps != null) { - return _steps!! - } - _steps = fluentIcon(name = "Regular.Steps") { - fluentPath { - moveTo(12.0f, 3.38f) - curveToRelative(0.0f, -0.76f, 0.62f, -1.38f, 1.38f, -1.38f) - horizontalLineToRelative(3.74f) - curveToRelative(0.76f, 0.0f, 1.38f, 0.62f, 1.38f, 1.38f) - lineTo(18.5f, 9.0f) - lineTo(17.0f, 9.0f) - lineTo(17.0f, 3.5f) - horizontalLineToRelative(-3.5f) - verticalLineToRelative(3.63f) - curveToRelative(0.0f, 0.75f, -0.62f, 1.37f, -1.38f, 1.37f) - lineTo(8.5f, 8.5f) - verticalLineToRelative(3.63f) - curveToRelative(0.0f, 0.75f, -0.62f, 1.37f, -1.38f, 1.37f) - lineTo(3.5f, 13.5f) - lineTo(3.5f, 17.0f) - lineTo(9.0f, 17.0f) - verticalLineToRelative(1.5f) - lineTo(3.37f, 18.5f) - curveToRelative(-0.75f, 0.0f, -1.37f, -0.62f, -1.37f, -1.38f) - verticalLineToRelative(-3.75f) - curveToRelative(0.0f, -0.75f, 0.62f, -1.37f, 1.38f, -1.37f) - lineTo(7.0f, 12.0f) - lineTo(7.0f, 8.37f) - curveTo(7.0f, 7.63f, 7.62f, 7.0f, 8.38f, 7.0f) - lineTo(12.0f, 7.0f) - lineTo(12.0f, 3.37f) - close() - moveTo(16.38f, 10.0f) - curveToRelative(-0.76f, 0.0f, -1.38f, 0.62f, -1.38f, 1.38f) - lineTo(15.0f, 15.0f) - horizontalLineToRelative(-3.63f) - curveToRelative(-0.75f, 0.0f, -1.37f, 0.62f, -1.37f, 1.38f) - verticalLineToRelative(3.75f) - curveToRelative(0.0f, 0.75f, 0.62f, 1.37f, 1.38f, 1.37f) - horizontalLineToRelative(6.87f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-6.88f) - curveToRelative(0.0f, -0.75f, -0.62f, -1.37f, -1.38f, -1.37f) - horizontalLineToRelative(-3.75f) - close() - moveTo(16.5f, 15.13f) - lineTo(16.5f, 11.5f) - lineTo(20.0f, 11.5f) - verticalLineToRelative(6.75f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(11.5f, 20.0f) - verticalLineToRelative(-3.5f) - horizontalLineToRelative(3.63f) - curveToRelative(0.75f, 0.0f, 1.37f, -0.62f, 1.37f, -1.38f) - close() - } - } - return _steps!! - } - -private var _steps: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Stethoscope.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Stethoscope.kt deleted file mode 100644 index b17dd246..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Stethoscope.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Stethoscope: ImageVector - get() { - if (_stethoscope != null) { - return _stethoscope!! - } - _stethoscope = fluentIcon(name = "Regular.Stethoscope") { - fluentPath { - moveTo(2.75f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(2.0f, 9.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, 5.25f, 5.95f) - verticalLineToRelative(0.8f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, 12.0f, 0.0f) - verticalLineToRelative(-0.84f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, -1.5f, 0.0f) - verticalLineToRelative(0.84f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -9.0f, 0.0f) - verticalLineToRelative(-0.8f) - arcTo(6.0f, 6.0f, 0.0f, false, false, 14.0f, 9.0f) - lineTo(14.0f, 3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.75f) - verticalLineToRelative(5.0f) - arcToRelative(4.5f, 4.5f, 0.0f, true, true, -9.0f, 0.0f) - lineTo(3.5f, 4.0f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.5f) - close() - moveTo(18.5f, 10.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - } - } - return _stethoscope!! - } - -private var _stethoscope: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Sticker.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Sticker.kt deleted file mode 100644 index fb0511f4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Sticker.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Sticker: ImageVector - get() { - if (_sticker != null) { - return _sticker!! - } - _sticker = fluentIcon(name = "Regular.Sticker") { - fluentPath { - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(6.88f) - curveToRelative(0.0f, 0.6f, -0.24f, 1.17f, -0.66f, 1.59f) - lineToRelative(-5.62f, 5.62f) - curveToRelative(-0.42f, 0.42f, -1.0f, 0.66f, -1.6f, 0.66f) - lineTo(6.26f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(17.75f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(13.0f, 19.5f) - verticalLineToRelative(-3.06f) - curveToRelative(-0.22f, 0.03f, -0.45f, 0.05f, -0.67f, 0.06f) - lineToRelative(-0.33f, 0.01f) - arcToRelative(6.33f, 6.33f, 0.0f, false, true, -3.68f, -1.14f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.86f, -1.23f) - arcToRelative(5.05f, 5.05f, 0.0f, false, false, 4.15f, 0.7f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.7f, -1.83f) - lineToRelative(0.22f, -0.01f) - horizontalLineToRelative(3.25f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(18.44f, 14.5f) - horizontalLineToRelative(-2.19f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - verticalLineToRelative(0.15f) - lineToRelative(-0.01f, 2.19f) - lineToRelative(3.94f, -3.94f) - close() - moveTo(9.0f, 7.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(15.0f, 7.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - } - } - return _sticker!! - } - -private var _sticker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StickerAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StickerAdd.kt deleted file mode 100644 index 4c9ead10..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StickerAdd.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.StickerAdd: ImageVector - get() { - if (_stickerAdd != null) { - return _stickerAdd!! - } - _stickerAdd = fluentIcon(name = "Regular.StickerAdd") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(17.5f, 14.0f) - horizontalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) - lineToRelative(-0.01f, 0.1f) - lineTo(17.0f, 17.0f) - horizontalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(0.18f) - curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) - lineToRelative(0.1f, 0.01f) - lineTo(17.0f, 18.0f) - verticalLineToRelative(2.6f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - horizontalLineToRelative(0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) - lineToRelative(0.01f, -0.1f) - lineTo(18.0f, 18.0f) - horizontalLineToRelative(2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - verticalLineToRelative(-0.18f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) - lineToRelative(-0.1f, -0.01f) - lineTo(18.0f, 17.0f) - verticalLineToRelative(-2.6f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) - horizontalLineToRelative(-0.09f) - close() - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(5.77f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 6.24f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(6.25f, 4.49f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(5.06f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(6.25f, 20.99f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(9.18f, 14.14f) - curveToRelative(0.7f, 0.49f, 1.48f, 0.77f, 2.32f, 0.85f) - curveToRelative(-0.19f, 0.46f, -0.33f, 0.95f, -0.42f, 1.46f) - curveToRelative(-0.99f, -0.14f, -1.91f, -0.5f, -2.76f, -1.08f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.86f, -1.23f) - close() - moveTo(9.0f, 7.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(15.0f, 7.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - } - } - return _stickerAdd!! - } - -private var _stickerAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Stop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Stop.kt deleted file mode 100644 index 9bb10ef7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Stop.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Stop: ImageVector - get() { - if (_stop != null) { - return _stop!! - } - _stop = fluentIcon(name = "Regular.Stop") { - fluentPath { - moveTo(19.25f, 4.5f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(14.5f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineTo(4.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineTo(4.75f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(14.5f) - close() - moveTo(4.75f, 3.0f) - curveTo(3.78f, 3.0f, 3.0f, 3.78f, 3.0f, 4.75f) - verticalLineToRelative(14.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(14.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineTo(4.75f) - curveTo(21.0f, 3.78f, 20.22f, 3.0f, 19.25f, 3.0f) - horizontalLineTo(4.75f) - close() - } - } - return _stop!! - } - -private var _stop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Storage.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Storage.kt deleted file mode 100644 index 780b7734..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Storage.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Storage: ImageVector - get() { - if (_storage != null) { - return _storage!! - } - _storage = fluentIcon(name = "Regular.Storage") { - fluentPath { - moveTo(5.0f, 7.0f) - horizontalLineToRelative(14.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) - lineTo(22.0f, 14.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.82f, 3.0f) - lineTo(5.0f, 17.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -2.82f) - lineTo(2.0f, 10.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.82f, -3.0f) - lineTo(19.0f, 7.0f) - lineTo(5.0f, 7.0f) - close() - moveTo(19.0f, 8.5f) - lineTo(5.0f, 8.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(14.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - close() - moveTo(18.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(14.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - } - } - return _storage!! - } - -private var _storage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StoreMicrosoft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StoreMicrosoft.kt deleted file mode 100644 index a43cd454..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StoreMicrosoft.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.StoreMicrosoft: ImageVector - get() { - if (_storeMicrosoft != null) { - return _storeMicrosoft!! - } - _storeMicrosoft = fluentIcon(name = "Regular.StoreMicrosoft") { - fluentPath { - moveTo(11.5f, 9.5f) - lineTo(11.5f, 13.0f) - lineTo(8.0f, 13.0f) - lineTo(8.0f, 9.5f) - horizontalLineToRelative(3.5f) - close() - moveTo(11.5f, 17.5f) - lineTo(11.5f, 14.0f) - lineTo(8.0f, 14.0f) - verticalLineToRelative(3.5f) - horizontalLineToRelative(3.5f) - close() - moveTo(16.0f, 9.5f) - lineTo(16.0f, 13.0f) - horizontalLineToRelative(-3.5f) - lineTo(12.5f, 9.5f) - lineTo(16.0f, 9.5f) - close() - moveTo(16.0f, 17.5f) - lineTo(16.0f, 14.0f) - horizontalLineToRelative(-3.5f) - verticalLineToRelative(3.5f) - lineTo(16.0f, 17.5f) - close() - moveTo(8.0f, 6.0f) - lineTo(8.0f, 3.75f) - curveTo(8.0f, 2.78f, 8.78f, 2.0f, 9.75f, 2.0f) - horizontalLineToRelative(4.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(16.0f, 6.0f) - horizontalLineToRelative(5.25f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(11.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 21.0f) - lineTo(4.75f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 18.25f) - lineTo(2.0f, 6.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - lineTo(8.0f, 6.0f) - close() - moveTo(9.5f, 3.75f) - lineTo(9.5f, 6.0f) - horizontalLineToRelative(5.0f) - lineTo(14.5f, 3.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - close() - moveTo(3.5f, 18.25f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(14.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - lineTo(20.5f, 7.5f) - horizontalLineToRelative(-17.0f) - verticalLineToRelative(10.75f) - close() - } - } - return _storeMicrosoft!! - } - -private var _storeMicrosoft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Stream.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Stream.kt deleted file mode 100644 index 856503e9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Stream.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Stream: ImageVector - get() { - if (_stream != null) { - return _stream!! - } - _stream = fluentIcon(name = "Regular.Stream") { - fluentPath { - moveTo(9.0f, 11.0f) - arcToRelative(7.5f, 7.5f, 0.0f, false, true, 7.5f, -7.5f) - horizontalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.1f) - arcToRelative(9.0f, 9.0f, 0.0f, false, false, -9.0f, 9.0f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 9.0f, 12.25f) - lineTo(9.0f, 11.0f) - close() - moveTo(16.75f, 7.0f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, -4.25f, 4.25f) - verticalLineToRelative(1.5f) - arcToRelative(5.75f, 5.75f, 0.0f, false, true, -5.75f, 5.75f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(4.0f) - curveTo(9.1f, 17.0f, 11.0f, 15.1f, 11.0f, 12.75f) - verticalLineToRelative(-1.5f) - arcToRelative(5.75f, 5.75f, 0.0f, false, true, 5.75f, -5.75f) - horizontalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.5f) - close() - moveTo(17.25f, 10.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - lineTo(16.0f, 13.0f) - arcToRelative(9.0f, 9.0f, 0.0f, false, true, -9.0f, 9.0f) - horizontalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(7.0f, 20.5f) - arcToRelative(7.5f, 7.5f, 0.0f, false, false, 7.5f, -7.5f) - verticalLineToRelative(-1.25f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 17.25f, 9.0f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.0f) - close() - } - } - return _stream!! - } - -private var _stream: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StyleGuide.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StyleGuide.kt deleted file mode 100644 index 93777573..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/StyleGuide.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.StyleGuide: ImageVector - get() { - if (_styleGuide != null) { - return _styleGuide!! - } - _styleGuide = fluentIcon(name = "Regular.StyleGuide") { - fluentPath { - moveTo(14.03f, 2.78f) - curveToRelative(1.47f, -0.4f, 2.98f, 0.48f, 3.37f, 1.94f) - lineToRelative(2.72f, 10.14f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -1.94f, 3.37f) - lineToRelative(-6.28f, 1.69f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -3.37f, -1.95f) - lineTo(5.8f, 7.83f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 1.95f, -3.37f) - lineToRelative(6.27f, -1.68f) - close() - moveTo(5.8f, 11.66f) - lineToRelative(1.76f, 6.57f) - curveToRelative(0.18f, 0.67f, 0.54f, 1.26f, 1.0f, 1.71f) - lineToRelative(-0.44f, -0.02f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.6f, -2.9f) - lineToRelative(0.28f, -5.36f) - close() - moveTo(14.42f, 4.23f) - lineTo(8.14f, 5.9f) - curveToRelative(-0.66f, 0.18f, -1.06f, 0.86f, -0.88f, 1.53f) - lineToRelative(2.72f, 10.14f) - curveToRelative(0.18f, 0.67f, 0.86f, 1.06f, 1.53f, 0.89f) - lineToRelative(6.28f, -1.69f) - curveToRelative(0.66f, -0.17f, 1.06f, -0.86f, 0.88f, -1.53f) - lineTo(15.95f, 5.11f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.53f, -0.88f) - close() - moveTo(4.88f, 10.18f) - lineTo(4.52f, 16.98f) - curveToRelative(-0.04f, 0.7f, 0.12f, 1.36f, 0.43f, 1.94f) - lineToRelative(-0.42f, -0.16f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -1.58f, -3.56f) - lineToRelative(1.93f, -5.02f) - close() - moveTo(9.74f, 7.03f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.52f, 1.94f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.52f, -1.94f) - close() - } - } - return _styleGuide!! - } - -private var _styleGuide: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SubGrid.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SubGrid.kt deleted file mode 100644 index 94c0f8ea..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SubGrid.kt +++ /dev/null @@ -1,100 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SubGrid: ImageVector - get() { - if (_subGrid != null) { - return _subGrid!! - } - _subGrid = fluentIcon(name = "Regular.SubGrid") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(5.0f) - lineTo(11.25f, 7.0f) - horizontalLineToRelative(-1.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 7.0f, 9.75f) - verticalLineToRelative(1.5f) - lineTo(4.5f, 11.25f) - verticalLineToRelative(-5.0f) - close() - moveTo(7.0f, 12.75f) - verticalLineToRelative(1.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 9.75f, 17.0f) - horizontalLineToRelative(1.5f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(-5.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-5.0f) - lineTo(7.0f, 12.75f) - close() - moveTo(11.25f, 15.5f) - horizontalLineToRelative(-1.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(2.75f) - verticalLineToRelative(2.75f) - close() - moveTo(12.75f, 17.0f) - horizontalLineToRelative(1.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 17.0f, 14.25f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-5.0f) - lineTo(12.75f, 17.0f) - close() - moveTo(15.5f, 12.75f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineToRelative(-1.5f) - verticalLineToRelative(-2.75f) - horizontalLineToRelative(2.75f) - close() - moveTo(17.0f, 11.25f) - verticalLineToRelative(-1.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 14.25f, 7.0f) - horizontalLineToRelative(-1.5f) - lineTo(12.75f, 4.5f) - horizontalLineToRelative(5.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(5.0f) - lineTo(17.0f, 11.25f) - close() - moveTo(12.75f, 8.5f) - horizontalLineToRelative(1.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(-2.75f) - lineTo(12.75f, 8.5f) - close() - moveTo(11.25f, 8.5f) - verticalLineToRelative(2.75f) - lineTo(8.5f, 11.25f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(1.5f) - close() - } - } - return _subGrid!! - } - -private var _subGrid: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Subtitles.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Subtitles.kt deleted file mode 100644 index 0a6df6ad..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Subtitles.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Subtitles: ImageVector - get() { - if (_subtitles != null) { - return _subtitles!! - } - _subtitles = fluentIcon(name = "Regular.Subtitles") { - fluentPath { - moveTo(2.0f, 7.25f) - curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) - horizontalLineToRelative(13.5f) - curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(5.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - close() - moveTo(5.25f, 5.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(5.25f, 5.5f) - close() - moveTo(5.0f, 13.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(15.75f, 12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.5f) - close() - moveTo(5.0f, 16.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(11.75f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.5f) - close() - } - } - return _subtitles!! - } - -private var _subtitles: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SubtractCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SubtractCircle.kt deleted file mode 100644 index 7b0ee1f9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SubtractCircle.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SubtractCircle: ImageVector - get() { - if (_subtractCircle != null) { - return _subtractCircle!! - } - _subtractCircle = fluentIcon(name = "Regular.SubtractCircle") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) - close() - moveTo(16.25f, 11.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(8.5f) - close() - } - } - return _subtractCircle!! - } - -private var _subtractCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SubtractSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SubtractSquare.kt deleted file mode 100644 index 21626942..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SubtractSquare.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SubtractSquare: ImageVector - get() { - if (_subtractSquare != null) { - return _subtractSquare!! - } - _subtractSquare = fluentIcon(name = "Regular.SubtractSquare") { - fluentPath { - moveTo(16.25f, 11.25f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineTo(6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - horizontalLineTo(6.25f) - close() - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineTo(6.25f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineTo(6.25f) - close() - } - } - return _subtractSquare!! - } - -private var _subtractSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SurfaceEarbuds.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SurfaceEarbuds.kt deleted file mode 100644 index 16a2f624..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SurfaceEarbuds.kt +++ /dev/null @@ -1,110 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SurfaceEarbuds: ImageVector - get() { - if (_surfaceEarbuds != null) { - return _surfaceEarbuds!! - } - _surfaceEarbuds = fluentIcon(name = "Regular.SurfaceEarbuds") { - fluentPath { - moveTo(17.0f, 10.0f) - arcToRelative(6.0f, 6.0f, 0.0f, true, true, -1.68f, 11.76f) - lineToRelative(-0.44f, 0.18f) - lineToRelative(-0.2f, 0.07f) - lineToRelative(-2.62f, 0.86f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -3.1f, -1.0f) - lineToRelative(-0.1f, -0.14f) - lineToRelative(-0.42f, -0.68f) - curveToRelative(-0.63f, -1.0f, -0.55f, -2.28f, 0.18f, -3.19f) - lineToRelative(0.12f, -0.15f) - lineToRelative(1.97f, -2.13f) - lineToRelative(0.33f, -0.32f) - arcTo(6.0f, 6.0f, 0.0f, false, true, 17.0f, 10.0f) - close() - moveTo(11.15f, 17.32f) - lineTo(9.85f, 18.73f) - curveToRelative(-0.36f, 0.38f, -0.44f, 0.94f, -0.21f, 1.4f) - lineToRelative(0.06f, 0.12f) - lineToRelative(0.44f, 0.68f) - curveToRelative(0.28f, 0.45f, 0.81f, 0.67f, 1.32f, 0.55f) - lineToRelative(0.13f, -0.03f) - lineToRelative(1.85f, -0.62f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, -2.3f, -3.5f) - close() - moveTo(17.0f, 11.5f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.13f, 2.7f) - lineToRelative(-0.06f, 0.16f) - lineToRelative(-0.09f, 0.23f) - lineToRelative(-0.07f, 0.24f) - curveToRelative(-0.05f, 0.18f, -0.08f, 0.37f, -0.1f, 0.56f) - lineToRelative(-0.04f, 0.29f) - lineToRelative(-0.01f, 0.32f) - verticalLineToRelative(0.21f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 2.64f, 3.89f) - lineToRelative(0.49f, 0.19f) - lineToRelative(0.1f, 0.02f) - lineToRelative(0.14f, 0.05f) - lineToRelative(0.36f, 0.07f) - lineToRelative(0.19f, 0.03f) - arcToRelative(4.51f, 4.51f, 0.0f, false, false, 0.5f, 0.04f) - lineTo(17.0f, 20.5f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, 0.0f, -9.0f) - close() - moveTo(7.0f, 1.0f) - curveToRelative(0.75f, 0.0f, 1.47f, 0.14f, 2.14f, 0.4f) - lineToRelative(0.8f, -0.26f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.88f, 0.78f) - lineToRelative(0.13f, 0.15f) - lineToRelative(0.13f, 0.19f) - lineToRelative(0.52f, 0.8f) - curveToRelative(0.62f, 0.94f, 0.6f, 2.15f, -0.05f, 3.09f) - lineToRelative(-0.13f, 0.16f) - lineToRelative(-0.13f, 0.15f) - lineToRelative(-0.3f, 0.3f) - lineTo(13.0f, 7.0f) - arcToRelative(6.0f, 6.0f, 0.0f, true, true, -6.0f, -6.0f) - close() - moveTo(5.73f, 2.68f) - lineToRelative(-0.15f, 0.05f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, 5.6f, 5.94f) - arcToRelative(4.16f, 4.16f, 0.0f, false, true, -6.53f, -0.53f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 1.08f, -5.46f) - close() - moveTo(10.53f, 2.53f) - lineTo(10.39f, 2.57f) - lineTo(7.44f, 3.51f) - curveToRelative(-0.25f, 0.07f, -0.5f, 0.17f, -0.72f, 0.32f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -0.82f, 3.5f) - arcToRelative(2.66f, 2.66f, 0.0f, false, false, 4.06f, 0.44f) - lineToRelative(0.13f, -0.13f) - lineToRelative(2.1f, -2.2f) - lineToRelative(0.09f, -0.1f) - curveToRelative(0.3f, -0.38f, 0.36f, -0.91f, 0.13f, -1.34f) - lineToRelative(-0.06f, -0.12f) - lineToRelative(-0.5f, -0.78f) - lineToRelative(-0.1f, -0.12f) - lineToRelative(-0.07f, -0.09f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.0f, -0.38f) - lineToRelative(-0.15f, 0.02f) - close() - moveTo(10.93f, 3.68f) - lineTo(11.0f, 3.78f) - lineTo(11.25f, 4.14f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.18f, 0.93f) - lineToRelative(-0.07f, -0.1f) - lineToRelative(-0.25f, -0.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.18f, -0.93f) - close() - } - } - return _surfaceEarbuds!! - } - -private var _surfaceEarbuds: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SurfaceHub.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SurfaceHub.kt deleted file mode 100644 index fa86ff7f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SurfaceHub.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SurfaceHub: ImageVector - get() { - if (_surfaceHub != null) { - return _surfaceHub!! - } - _surfaceHub = fluentIcon(name = "Regular.SurfaceHub") { - fluentPath { - moveTo(19.25f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.74f, 0.33f, 0.75f, 0.73f) - verticalLineToRelative(0.1f) - lineToRelative(-1.0f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, 0.66f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-0.73f) - lineTo(19.0f, 21.12f) - verticalLineToRelative(0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.45f, 0.26f) - lineToRelative(-0.03f, -0.1f) - lineTo(16.9f, 18.0f) - horizontalLineToRelative(-2.8f) - lineToRelative(-0.6f, 3.38f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, -0.16f) - lineToRelative(0.02f, -0.1f) - lineToRelative(0.56f, -3.12f) - lineTo(8.1f, 18.0f) - lineToRelative(-0.6f, 3.38f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, -0.16f) - lineToRelative(0.02f, -0.1f) - lineTo(7.48f, 13.0f) - lineTo(4.75f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.73f) - verticalLineToRelative(-0.1f) - lineToRelative(1.0f, -9.5f) - curveToRelative(0.04f, -0.35f, 0.31f, -0.62f, 0.65f, -0.66f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(13.5f) - close() - moveTo(13.48f, 13.0f) - lineTo(9.0f, 13.0f) - lineToRelative(-0.63f, 3.5f) - horizontalLineToRelative(4.48f) - lineToRelative(0.63f, -3.5f) - close() - moveTo(16.0f, 13.0f) - horizontalLineToRelative(-1.0f) - lineToRelative(-0.63f, 3.5f) - horizontalLineToRelative(2.26f) - lineTo(16.0f, 13.0f) - close() - moveTo(18.42f, 3.5f) - horizontalLineToRelative(-12.0f) - lineToRelative(-0.84f, 8.0f) - horizontalLineToRelative(12.0f) - lineToRelative(0.84f, -8.0f) - close() - } - } - return _surfaceHub!! - } - -private var _surfaceHub: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SwimmingPool.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SwimmingPool.kt deleted file mode 100644 index 66e7c685..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SwimmingPool.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SwimmingPool: ImageVector - get() { - if (_swimmingPool != null) { - return _swimmingPool!! - } - _swimmingPool = fluentIcon(name = "Regular.SwimmingPool") { - fluentPath { - moveTo(5.5f, 5.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - verticalLineToRelative(6.29f) - curveToRelative(0.48f, 0.04f, 0.98f, 0.13f, 1.5f, 0.27f) - lineTo(9.5f, 11.0f) - lineTo(16.0f, 11.0f) - verticalLineToRelative(3.5f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -0.2f) - lineTo(17.5f, 5.75f) - arcToRelative(2.75f, 2.75f, 0.0f, true, false, -5.5f, 0.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - lineTo(16.0f, 9.5f) - lineTo(9.5f, 9.5f) - lineTo(9.5f, 5.75f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -5.5f, 0.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - close() - moveTo(4.28f, 15.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(0.02f, -0.02f) - arcToRelative(2.15f, 2.15f, 0.0f, false, true, 0.16f, -0.14f) - curveToRelative(0.1f, -0.1f, 0.25f, -0.2f, 0.44f, -0.33f) - curveToRelative(0.4f, -0.26f, 0.96f, -0.56f, 1.7f, -0.76f) - curveToRelative(1.5f, -0.4f, 3.6f, -0.37f, 6.2f, 1.11f) - arcToRelative(7.94f, 7.94f, 0.0f, false, false, 5.77f, 1.0f) - arcToRelative(7.5f, 7.5f, 0.0f, false, false, 2.3f, -0.94f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.88f, 1.21f) - lineToRelative(-0.02f, 0.02f) - arcToRelative(3.06f, 3.06f, 0.0f, false, true, -0.2f, 0.13f) - curveToRelative(-0.14f, 0.08f, -0.33f, 0.2f, -0.57f, 0.32f) - arcToRelative(9.43f, 9.43f, 0.0f, false, true, -8.9f, -0.43f) - curveToRelative(-2.28f, -1.3f, -3.98f, -1.27f, -5.07f, -0.97f) - arcToRelative(4.43f, 4.43f, 0.0f, false, false, -1.64f, 0.85f) - close() - moveTo(3.22f, 19.53f) - curveToRelative(0.3f, 0.29f, 0.77f, 0.29f, 1.06f, 0.0f) - lineToRelative(0.01f, -0.01f) - lineToRelative(0.07f, -0.06f) - arcToRelative(4.43f, 4.43f, 0.0f, false, true, 1.57f, -0.79f) - curveToRelative(1.1f, -0.3f, 2.8f, -0.33f, 5.06f, 0.96f) - arcToRelative(9.43f, 9.43f, 0.0f, false, false, 6.85f, 1.16f) - arcToRelative(8.99f, 8.99f, 0.0f, false, false, 2.83f, -1.17f) - lineToRelative(0.01f, -0.01f) - horizontalLineToRelative(0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.88f, -1.22f) - lineToRelative(-0.02f, 0.02f) - arcToRelative(3.56f, 3.56f, 0.0f, false, true, -0.56f, 0.31f) - arcToRelative(7.94f, 7.94f, 0.0f, false, true, -7.5f, -0.4f) - curveToRelative(-2.59f, -1.47f, -4.7f, -1.5f, -6.2f, -1.1f) - arcToRelative(5.92f, 5.92f, 0.0f, false, false, -2.3f, 1.23f) - verticalLineToRelative(0.01f) - horizontalLineToRelative(-0.01f) - verticalLineToRelative(0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.06f) - close() - } - } - return _swimmingPool!! - } - -private var _swimmingPool: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SwipeDown.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SwipeDown.kt deleted file mode 100644 index 5210169f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SwipeDown.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SwipeDown: ImageVector - get() { - if (_swipeDown != null) { - return _swipeDown!! - } - _swipeDown = fluentIcon(name = "Regular.SwipeDown") { - fluentPath { - moveTo(12.0f, 6.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.64f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(12.7f) - lineToRelative(2.22f, -2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.69f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-3.5f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-3.5f, -3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) - lineToRelative(0.08f, 0.07f) - lineToRelative(2.22f, 2.22f) - lineTo(11.25f, 6.74f) - curveToRelative(0.0f, -0.4f, 0.34f, -0.74f, 0.75f, -0.74f) - close() - moveTo(12.0f, 2.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 1.75f, 9.68f) - verticalLineToRelative(-1.66f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, -3.5f, 0.0f) - verticalLineToRelative(1.66f) - arcTo(5.0f, 5.0f, 0.0f, false, true, 12.0f, 2.0f) - close() - } - } - return _swipeDown!! - } - -private var _swipeDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SwipeRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SwipeRight.kt deleted file mode 100644 index b5254757..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SwipeRight.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SwipeRight: ImageVector - get() { - if (_swipeRight != null) { - return _swipeRight!! - } - _swipeRight = fluentIcon(name = "Regular.SwipeRight") { - fluentPath { - moveTo(6.0f, 12.0f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.64f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(12.7f) - lineToRelative(-2.22f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.98f) - lineToRelative(0.07f, 0.08f) - curveToRelative(0.27f, 0.27f, 0.69f, 0.3f, 0.98f, 0.07f) - lineToRelative(0.08f, -0.07f) - lineToRelative(3.5f, -3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.07f, -0.98f) - lineToRelative(-0.07f, -0.08f) - lineToRelative(-3.5f, -3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.13f, 0.98f) - lineToRelative(0.07f, 0.08f) - lineToRelative(2.22f, 2.22f) - lineTo(6.74f, 11.25f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 6.0f, 12.0f) - close() - moveTo(2.0f, 12.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 9.68f, 1.75f) - horizontalLineToRelative(-1.66f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 0.0f, -3.5f) - horizontalLineToRelative(1.66f) - arcTo(5.0f, 5.0f, 0.0f, false, false, 2.0f, 12.0f) - close() - } - } - return _swipeRight!! - } - -private var _swipeRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SwipeUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SwipeUp.kt deleted file mode 100644 index 10876b94..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/SwipeUp.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.SwipeUp: ImageVector - get() { - if (_swipeUp != null) { - return _swipeUp!! - } - _swipeUp = fluentIcon(name = "Regular.SwipeUp") { - fluentPath { - moveTo(12.0f, 18.0f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.64f) - lineToRelative(0.01f, -0.1f) - lineTo(12.75f, 4.55f) - lineToRelative(2.22f, 2.22f) - curveToRelative(0.27f, 0.26f, 0.68f, 0.29f, 0.98f, 0.07f) - lineToRelative(0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.07f, -0.98f) - lineToRelative(-0.07f, -0.08f) - lineToRelative(-3.5f, -3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, -0.07f) - lineToRelative(-0.08f, 0.07f) - lineToRelative(-3.5f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) - lineToRelative(0.08f, -0.07f) - lineToRelative(2.22f, -2.22f) - verticalLineToRelative(12.7f) - curveToRelative(0.0f, 0.4f, 0.34f, 0.74f, 0.75f, 0.74f) - close() - moveTo(12.0f, 22.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 1.75f, -9.68f) - verticalLineToRelative(1.66f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, -3.5f, 0.0f) - verticalLineToRelative(-1.66f) - arcTo(5.0f, 5.0f, 0.0f, false, false, 12.0f, 22.0f) - close() - } - } - return _swipeUp!! - } - -private var _swipeUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Symbols.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Symbols.kt deleted file mode 100644 index 4c965b33..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Symbols.kt +++ /dev/null @@ -1,115 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Symbols: ImageVector - get() { - if (_symbols != null) { - return _symbols!! - } - _symbols = fluentIcon(name = "Regular.Symbols") { - fluentPath { - moveTo(16.92f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(15.88f, 19.5f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 4.7f, -0.3f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.24f, 0.87f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -6.65f, 0.83f) - verticalLineToRelative(0.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-2.6f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(2.5f) - close() - moveTo(6.4f, 13.0f) - horizontalLineToRelative(0.1f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(3.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineTo(2.0f, 17.5f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(-0.1f) - close() - moveTo(17.5f, 13.0f) - curveToRelative(1.11f, 0.0f, 2.15f, 0.4f, 2.95f, 1.1f) - verticalLineToRelative(-0.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(2.6f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(19.74f, 15.5f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -4.7f, 0.29f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.24f, -0.86f) - arcTo(4.5f, 4.5f, 0.0f, false, true, 17.5f, 13.0f) - close() - moveTo(6.5f, 2.0f) - arcToRelative(4.5f, 4.5f, 0.0f, true, true, 0.0f, 9.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 0.0f, -9.0f) - close() - moveTo(19.21f, 2.0f) - curveTo(20.77f, 2.0f, 22.0f, 3.39f, 22.0f, 5.08f) - arcToRelative(3.2f, 3.2f, 0.0f, false, true, -0.85f, 2.21f) - lineToRelative(-2.5f, 3.14f) - arcToRelative(1.49f, 1.49f, 0.0f, false, true, -2.35f, 0.0f) - lineToRelative(-2.67f, -3.4f) - arcTo(3.27f, 3.27f, 0.0f, false, true, 13.0f, 5.08f) - curveTo(13.0f, 3.39f, 14.23f, 2.0f, 15.79f, 2.0f) - curveToRelative(0.56f, 0.0f, 1.1f, 0.19f, 1.55f, 0.52f) - lineToRelative(0.16f, 0.13f) - lineToRelative(0.16f, -0.13f) - arcTo(2.6f, 2.6f, 0.0f, false, true, 19.21f, 2.0f) - close() - moveTo(3.91f, 4.98f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 4.1f, 4.1f) - lineToRelative(-4.1f, -4.1f) - close() - moveTo(19.21f, 3.51f) - curveToRelative(-0.35f, 0.0f, -0.68f, 0.18f, -0.92f, 0.5f) - lineToRelative(-0.79f, 1.0f) - lineToRelative(-0.78f, -1.0f) - arcToRelative(1.19f, 1.19f, 0.0f, false, false, -0.93f, -0.5f) - curveToRelative(-0.69f, 0.0f, -1.29f, 0.68f, -1.29f, 1.57f) - curveToRelative(0.0f, 0.4f, 0.12f, 0.76f, 0.32f, 1.02f) - lineToRelative(2.66f, 3.38f) - lineToRelative(2.56f, -3.21f) - curveToRelative(0.29f, -0.3f, 0.46f, -0.72f, 0.46f, -1.2f) - curveToRelative(0.0f, -0.88f, -0.6f, -1.56f, -1.29f, -1.56f) - close() - moveTo(6.5f, 3.5f) - curveToRelative(-0.56f, 0.0f, -1.08f, 0.15f, -1.52f, 0.41f) - lineToRelative(4.1f, 4.11f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 6.5f, 3.5f) - close() - } - } - return _symbols!! - } - -private var _symbols: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Syringe.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Syringe.kt deleted file mode 100644 index 0abacd07..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Syringe.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Syringe: ImageVector - get() { - if (_syringe != null) { - return _syringe!! - } - _syringe = fluentIcon(name = "Regular.Syringe") { - fluentPath { - moveTo(16.72f, 2.22f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.07f, 0.0f) - lineToRelative(4.0f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.07f, 1.06f) - lineToRelative(-0.47f, -0.47f) - lineToRelative(-1.69f, 1.69f) - lineToRelative(2.47f, 2.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-1.47f, -1.47f) - lineToRelative(-6.84f, 6.84f) - curveToRelative(-0.7f, 0.7f, -1.66f, 1.1f, -2.65f, 1.1f) - lineTo(6.56f, 18.5f) - lineToRelative(-3.28f, 3.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(3.28f, -3.28f) - verticalLineToRelative(-2.45f) - curveToRelative(0.0f, -1.0f, 0.4f, -1.95f, 1.1f, -2.65f) - lineToRelative(0.87f, -0.87f) - lineToRelative(2.0f, -2.0f) - lineToRelative(2.0f, -2.0f) - lineToRelative(1.97f, -1.97f) - lineToRelative(-1.47f, -1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineToRelative(2.47f, 2.47f) - lineToRelative(1.7f, -1.7f) - lineToRelative(-0.48f, -0.46f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - moveTo(12.0f, 9.06f) - lineToRelative(-0.94f, 0.94f) - lineToRelative(0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-0.72f, -0.72f) - lineToRelative(-0.94f, 0.94f) - lineToRelative(0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(8.0f, 13.06f) - lineToRelative(-0.34f, 0.34f) - curveToRelative(-0.42f, 0.42f, -0.66f, 1.0f, -0.66f, 1.6f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(2.0f) - curveToRelative(0.6f, 0.0f, 1.18f, -0.24f, 1.6f, -0.66f) - lineToRelative(6.84f, -6.84f) - lineToRelative(-2.94f, -2.94f) - lineTo(13.06f, 8.0f) - lineToRelative(0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineTo(12.0f, 9.06f) - close() - moveTo(19.2f, 5.75f) - lineTo(18.25f, 4.81f) - lineTo(16.56f, 6.5f) - lineTo(17.5f, 7.44f) - lineTo(19.2f, 5.74f) - close() - } - } - return _syringe!! - } - -private var _syringe: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/System.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/System.kt deleted file mode 100644 index 16a829b9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/System.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.System: ImageVector - get() { - if (_system != null) { - return _system!! - } - _system = fluentIcon(name = "Regular.System") { - fluentPath { - moveTo(4.75f, 5.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 7.75f) - verticalLineToRelative(8.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 19.0f) - lineTo(4.75f, 19.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 16.25f) - verticalLineToRelative(-8.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 5.0f) - close() - moveTo(4.75f, 6.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(14.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(4.75f, 6.5f) - close() - } - } - return _system!! - } - -private var _system: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Tab.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Tab.kt deleted file mode 100644 index 522a7aa3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Tab.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Tab: ImageVector - get() { - if (_tab != null) { - return _tab!! - } - _tab = fluentIcon(name = "Regular.Tab") { - fluentPath { - moveTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) - horizontalLineTo(5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - verticalLineTo(5.75f) - close() - moveTo(5.75f, 4.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(12.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineTo(5.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineTo(5.75f) - close() - } - } - return _tab!! - } - -private var _tab: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabAdd.kt deleted file mode 100644 index f3b770bc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabAdd.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TabAdd: ImageVector - get() { - if (_tabAdd != null) { - return _tabAdd!! - } - _tabAdd = fluentIcon(name = "Regular.TabAdd") { - fluentPath { - moveTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(6.27f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 5.74f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(5.75f, 4.49f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(5.56f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(5.75f, 20.99f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _tabAdd!! - } - -private var _tabAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabArrowLeft.kt deleted file mode 100644 index 419649ae..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabArrowLeft.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TabArrowLeft: ImageVector - get() { - if (_tabArrowLeft != null) { - return _tabArrowLeft!! - } - _tabArrowLeft = fluentIcon(name = "Regular.TabArrowLeft") { - fluentPath { - moveTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(6.27f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 5.74f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(5.75f, 4.49f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(5.56f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(5.75f, 20.99f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - close() - moveTo(17.5f, 23.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, 11.0f) - close() - moveTo(20.5f, 18.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - horizontalLineToRelative(-4.8f) - lineToRelative(1.65f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) - lineToRelative(2.5f, 2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineTo(15.71f, 18.0f) - horizontalLineToRelative(4.79f) - close() - } - } - return _tabArrowLeft!! - } - -private var _tabArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabDesktop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabDesktop.kt deleted file mode 100644 index d05a4969..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabDesktop.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TabDesktop: ImageVector - get() { - if (_tabDesktop != null) { - return _tabDesktop!! - } - _tabDesktop = fluentIcon(name = "Regular.TabDesktop") { - fluentPath { - moveTo(5.75f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) - lineTo(21.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) - lineTo(5.75f, 3.0f) - close() - moveTo(11.0f, 4.5f) - verticalLineToRelative(1.25f) - curveTo(11.0f, 6.99f, 12.0f, 8.0f, 13.25f, 8.0f) - horizontalLineToRelative(6.25f) - verticalLineToRelative(10.25f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - lineTo(5.75f, 19.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - lineTo(4.5f, 5.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - lineTo(11.0f, 4.5f) - close() - moveTo(19.5f, 6.5f) - horizontalLineToRelative(-6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(12.5f, 4.5f) - horizontalLineToRelative(5.75f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(0.75f) - close() - } - } - return _tabDesktop!! - } - -private var _tabDesktop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabDesktopArrowClockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabDesktopArrowClockwise.kt deleted file mode 100644 index e1d6dfb5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabDesktopArrowClockwise.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TabDesktopArrowClockwise: ImageVector - get() { - if (_tabDesktopArrowClockwise != null) { - return _tabDesktopArrowClockwise!! - } - _tabDesktopArrowClockwise = fluentIcon(name = "Regular.TabDesktopArrowClockwise") { - fluentPath { - moveTo(5.75f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(5.35f) - curveToRelative(0.44f, -0.45f, 0.95f, -0.84f, 1.5f, -1.16f) - lineTo(4.5f, 5.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - lineTo(11.0f, 4.5f) - verticalLineToRelative(1.25f) - curveTo(11.0f, 6.99f, 12.0f, 8.0f, 13.25f, 8.0f) - horizontalLineToRelative(6.25f) - verticalLineToRelative(10.25f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineToRelative(-4.19f) - arcTo(7.03f, 7.03f, 0.0f, false, true, 12.9f, 21.0f) - horizontalLineToRelative(5.35f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) - lineTo(21.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) - lineTo(5.75f, 3.0f) - close() - moveTo(19.5f, 6.5f) - horizontalLineToRelative(-6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(12.5f, 4.5f) - horizontalLineToRelative(5.75f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(0.75f) - close() - moveTo(12.25f, 9.75f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.75f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(9.5f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.33f) - lineToRelative(-0.02f, -0.01f) - arcTo(4.5f, 4.5f, 0.0f, true, false, 12.5f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - arcToRelative(6.0f, 6.0f, 0.0f, true, true, -2.5f, -4.87f) - verticalLineToRelative(-0.63f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _tabDesktopArrowClockwise!! - } - -private var _tabDesktopArrowClockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabDesktopBottom.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabDesktopBottom.kt deleted file mode 100644 index 481f4e03..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabDesktopBottom.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TabDesktopBottom: ImageVector - get() { - if (_tabDesktopBottom != null) { - return _tabDesktopBottom!! - } - _tabDesktopBottom = fluentIcon(name = "Regular.TabDesktopBottom") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineTo(6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - horizontalLineTo(6.25f) - close() - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineTo(14.5f) - verticalLineToRelative(-1.75f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineTo(4.5f) - verticalLineTo(6.25f) - close() - moveTo(4.5f, 17.0f) - horizontalLineToRelative(7.75f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.75f) - horizontalLineTo(6.25f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineTo(17.0f) - close() - } - } - return _tabDesktopBottom!! - } - -private var _tabDesktopBottom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabDesktopImage.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabDesktopImage.kt deleted file mode 100644 index 0a515343..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabDesktopImage.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TabDesktopImage: ImageVector - get() { - if (_tabDesktopImage != null) { - return _tabDesktopImage!! - } - _tabDesktopImage = fluentIcon(name = "Regular.TabDesktopImage") { - fluentPath { - moveTo(5.75f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(4.79f) - curveToRelative(0.45f, -0.27f, 0.96f, -0.44f, 1.5f, -0.5f) - lineTo(4.5f, 5.74f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - lineTo(11.0f, 4.49f) - verticalLineToRelative(1.25f) - curveTo(11.0f, 6.99f, 12.0f, 8.0f, 13.25f, 8.0f) - horizontalLineToRelative(6.25f) - verticalLineToRelative(10.25f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineToRelative(-4.28f) - arcToRelative(3.98f, 3.98f, 0.0f, false, true, -0.5f, 1.5f) - horizontalLineToRelative(4.78f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) - lineTo(21.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) - lineTo(5.75f, 3.0f) - close() - moveTo(19.5f, 6.5f) - horizontalLineToRelative(-6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(12.5f, 4.5f) - horizontalLineToRelative(5.75f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(0.75f) - close() - moveTo(5.0f, 11.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.56f, 0.15f, 1.08f, 0.42f, 1.52f) - lineToRelative(3.49f, -3.49f) - curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.0f) - lineToRelative(3.5f, 3.5f) - curveToRelative(0.26f, -0.45f, 0.41f, -0.97f, 0.41f, -1.53f) - verticalLineToRelative(-5.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) - lineTo(5.0f, 11.0f) - close() - moveTo(5.0f, 22.0f) - curveToRelative(-0.56f, 0.0f, -1.08f, -0.15f, -1.52f, -0.42f) - lineToRelative(3.49f, -3.49f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(3.5f, 3.5f) - curveToRelative(-0.45f, 0.26f, -0.97f, 0.41f, -1.53f, 0.41f) - lineTo(5.0f, 22.0f) - close() - moveTo(10.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - close() - } - } - return _tabDesktopImage!! - } - -private var _tabDesktopImage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabDesktopMultipleBottom.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabDesktopMultipleBottom.kt deleted file mode 100644 index 9656e6a2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabDesktopMultipleBottom.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TabDesktopMultipleBottom: ImageVector - get() { - if (_tabDesktopMultipleBottom != null) { - return _tabDesktopMultipleBottom!! - } - _tabDesktopMultipleBottom = fluentIcon(name = "Regular.TabDesktopMultipleBottom") { - fluentPath { - moveTo(6.0f, 5.0f) - horizontalLineToRelative(1.52f) - curveToRelative(0.12f, -0.85f, 0.85f, -1.5f, 1.73f, -1.5f) - horizontalLineToRelative(8.0f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(8.0f) - curveToRelative(0.0f, 0.88f, -0.65f, 1.61f, -1.5f, 1.73f) - lineTo(19.0f, 18.0f) - curveToRelative(1.68f, -0.13f, 3.0f, -1.53f, 3.0f, -3.24f) - verticalLineToRelative(-8.0f) - arcTo(4.75f, 4.75f, 0.0f, false, false, 17.25f, 2.0f) - horizontalLineToRelative(-8.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.24f, 3.0f) - close() - moveTo(2.0f, 9.25f) - curveTo(2.0f, 7.45f, 3.46f, 6.0f, 5.25f, 6.0f) - horizontalLineToRelative(9.5f) - curveTo(16.55f, 6.0f, 18.0f, 7.46f, 18.0f, 9.25f) - verticalLineToRelative(9.5f) - curveToRelative(0.0f, 1.8f, -1.45f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-9.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 18.75f) - verticalLineToRelative(-9.5f) - close() - moveTo(5.25f, 7.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(7.25f) - horizontalLineToRelative(5.75f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(1.75f) - horizontalLineToRelative(3.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-9.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-9.5f) - close() - moveTo(10.0f, 20.5f) - verticalLineToRelative(-1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(3.5f, 18.0f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(10.0f, 20.5f) - close() - } - } - return _tabDesktopMultipleBottom!! - } - -private var _tabDesktopMultipleBottom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabInPrivate.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabInPrivate.kt deleted file mode 100644 index 5c4ecdeb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabInPrivate.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TabInPrivate: ImageVector - get() { - if (_tabInPrivate != null) { - return _tabInPrivate!! - } - _tabInPrivate = fluentIcon(name = "Regular.TabInPrivate") { - fluentPath { - moveTo(5.75f, 3.0f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) - lineTo(5.75f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - close() - moveTo(4.5f, 5.75f) - verticalLineToRelative(1.04f) - lineTo(6.8f, 4.5f) - lineTo(5.74f, 4.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - close() - moveTo(4.5f, 8.21f) - verticalLineToRelative(2.58f) - lineToRelative(6.3f, -6.29f) - lineTo(8.2f, 4.5f) - lineTo(4.5f, 8.2f) - close() - moveTo(12.2f, 4.5f) - lineTo(4.5f, 12.2f) - verticalLineToRelative(2.6f) - lineTo(14.8f, 4.5f) - horizontalLineToRelative(-2.6f) - close() - moveTo(16.2f, 4.5f) - lineTo(4.5f, 16.2f) - verticalLineToRelative(2.05f) - curveToRelative(0.0f, 0.16f, 0.03f, 0.32f, 0.09f, 0.46f) - lineTo(18.7f, 4.59f) - curveToRelative(-0.14f, -0.06f, -0.3f, -0.09f, -0.46f, -0.09f) - horizontalLineToRelative(-2.04f) - close() - moveTo(19.41f, 5.3f) - lineTo(5.3f, 19.4f) - curveToRelative(0.14f, 0.06f, 0.3f, 0.09f, 0.46f, 0.09f) - horizontalLineToRelative(2.04f) - lineTo(19.5f, 7.8f) - lineTo(19.5f, 5.74f) - curveToRelative(0.0f, -0.16f, -0.03f, -0.32f, -0.09f, -0.46f) - close() - moveTo(19.5f, 9.2f) - lineTo(9.2f, 19.5f) - horizontalLineToRelative(2.6f) - lineToRelative(7.7f, -7.7f) - lineTo(19.5f, 9.2f) - close() - moveTo(19.5f, 13.2f) - lineTo(13.2f, 19.5f) - horizontalLineToRelative(2.6f) - lineToRelative(3.7f, -3.7f) - verticalLineToRelative(-2.6f) - close() - moveTo(19.5f, 17.2f) - lineTo(17.2f, 19.5f) - horizontalLineToRelative(1.05f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-1.04f) - close() - } - } - return _tabInPrivate!! - } - -private var _tabInPrivate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabInprivateAccount.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabInprivateAccount.kt deleted file mode 100644 index f9ba4a38..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabInprivateAccount.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TabInprivateAccount: ImageVector - get() { - if (_tabInprivateAccount != null) { - return _tabInprivateAccount!! - } - _tabInprivateAccount = fluentIcon(name = "Regular.TabInprivateAccount") { - fluentPath { - moveTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(4.6f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -1.5f, -1.06f) - lineTo(19.5f, 5.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(5.75f, 4.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - lineTo(12.0f, 19.5f) - curveToRelative(0.03f, 0.54f, 0.15f, 1.04f, 0.37f, 1.5f) - lineTo(5.75f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - close() - moveTo(18.0f, 14.5f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - verticalLineToRelative(0.5f) - horizontalLineToRelative(2.83f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -0.6f, -1.0f) - lineTo(18.0f, 11.0f) - verticalLineToRelative(-1.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 2.24f, 5.0f) - lineTo(18.0f, 15.0f) - verticalLineToRelative(-0.5f) - close() - moveTo(14.94f, 17.0f) - curveToRelative(-0.58f, 0.0f, -1.07f, 0.28f, -1.4f, 0.63f) - curveToRelative(-0.32f, 0.35f, -0.54f, 0.83f, -0.54f, 1.31f) - verticalLineToRelative(0.39f) - curveToRelative(0.0f, 1.96f, 2.04f, 3.67f, 5.0f, 3.67f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(3.47f) - curveToRelative(0.41f, -0.29f, 0.75f, -0.63f, 1.0f, -1.0f) - lineTo(18.0f, 21.0f) - verticalLineToRelative(0.5f) - curveToRelative(-2.53f, 0.0f, -3.5f, -1.39f, -3.5f, -2.17f) - verticalLineToRelative(-0.39f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.14f, -0.29f) - curveToRelative(0.11f, -0.11f, 0.22f, -0.15f, 0.3f, -0.15f) - lineTo(18.0f, 18.5f) - lineTo(18.0f, 18.0f) - horizontalLineToRelative(4.73f) - arcToRelative(2.13f, 2.13f, 0.0f, false, false, -0.27f, -0.37f) - arcToRelative(1.91f, 1.91f, 0.0f, false, false, -1.4f, -0.63f) - horizontalLineToRelative(-6.12f) - close() - moveTo(18.0f, 14.0f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(3.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.17f, 1.0f) - lineTo(18.0f, 14.0f) - close() - moveTo(22.92f, 20.0f) - lineTo(18.0f, 20.0f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(0.33f) - curveToRelative(0.0f, 0.23f, -0.03f, 0.45f, -0.08f, 0.67f) - close() - } - } - return _tabInprivateAccount!! - } - -private var _tabInprivateAccount: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabProhibited.kt deleted file mode 100644 index fb75c925..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabProhibited.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TabProhibited: ImageVector - get() { - if (_tabProhibited != null) { - return _tabProhibited!! - } - _tabProhibited = fluentIcon(name = "Regular.TabProhibited") { - fluentPath { - moveTo(5.75f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) - horizontalLineToRelative(6.27f) - curveToRelative(-0.3f, -0.46f, -0.53f, -0.97f, -0.7f, -1.5f) - lineTo(5.74f, 19.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - lineTo(4.49f, 5.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(12.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(5.56f) - curveToRelative(0.53f, 0.18f, 1.04f, 0.42f, 1.5f, 0.71f) - lineTo(20.99f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) - lineTo(5.75f, 3.0f) - close() - moveTo(17.5f, 23.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) - close() - moveTo(14.2f, 19.75f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 5.56f, -5.56f) - lineToRelative(-5.57f, 5.56f) - close() - moveTo(15.25f, 20.81f) - lineTo(20.81f, 15.25f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -5.56f, 5.56f) - close() - } - } - return _tabProhibited!! - } - -private var _tabProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabShieldDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabShieldDismiss.kt deleted file mode 100644 index d55d2723..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabShieldDismiss.kt +++ /dev/null @@ -1,87 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TabShieldDismiss: ImageVector - get() { - if (_tabShieldDismiss != null) { - return _tabShieldDismiss!! - } - _tabShieldDismiss = fluentIcon(name = "Regular.TabShieldDismiss") { - fluentPath { - moveTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(4.99f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, -1.5f, -0.9f) - lineTo(19.5f, 5.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(5.75f, 4.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(7.24f) - arcToRelative(6.67f, 6.67f, 0.0f, false, false, 1.2f, 1.5f) - lineTo(5.74f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - close() - moveTo(18.35f, 10.15f) - arcTo(5.71f, 5.71f, 0.0f, false, false, 22.5f, 12.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.5f, 0.41f) - verticalLineToRelative(3.09f) - curveToRelative(0.0f, 3.22f, -1.64f, 5.4f, -4.84f, 6.47f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.32f, 0.0f) - curveToRelative(-3.1f, -1.03f, -4.74f, -3.12f, -4.84f, -6.18f) - lineTo(13.0f, 12.5f) - curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) - curveToRelative(1.53f, 0.0f, 2.9f, -0.61f, 4.15f, -1.85f) - curveToRelative(0.2f, -0.2f, 0.51f, -0.2f, 0.7f, 0.0f) - close() - moveTo(15.97f, 13.84f) - lineTo(15.9f, 13.9f) - lineTo(15.84f, 13.97f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) - lineToRelative(0.06f, 0.07f) - lineToRelative(1.4f, 1.4f) - lineToRelative(-1.4f, 1.4f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) - lineToRelative(0.06f, 0.07f) - lineToRelative(0.07f, 0.06f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) - lineToRelative(0.07f, -0.06f) - lineToRelative(1.4f, -1.4f) - lineToRelative(1.4f, 1.4f) - lineToRelative(0.07f, 0.06f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) - lineToRelative(0.07f, -0.06f) - lineToRelative(0.06f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.56f) - lineToRelative(-0.06f, -0.07f) - lineToRelative(-1.4f, -1.4f) - lineToRelative(1.4f, -1.4f) - lineToRelative(0.06f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.56f) - lineToRelative(-0.06f, -0.07f) - lineToRelative(-0.07f, -0.06f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.56f, 0.0f) - lineToRelative(-0.07f, 0.06f) - lineToRelative(-1.4f, 1.4f) - lineToRelative(-1.4f, -1.4f) - lineToRelative(-0.07f, -0.06f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.49f, -0.04f) - lineToRelative(-0.07f, 0.04f) - close() - } - } - return _tabShieldDismiss!! - } - -private var _tabShieldDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Table.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Table.kt deleted file mode 100644 index 6b2f5c83..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Table.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Table: ImageVector - get() { - if (_table != null) { - return _table!! - } - _table = fluentIcon(name = "Regular.Table") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 8.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - lineTo(6.25f, 4.5f) - close() - moveTo(4.5f, 10.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(10.0f, 10.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(15.5f, 10.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(14.0f, 15.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(15.5f, 19.5f) - horizontalLineToRelative(2.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 15.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - close() - moveTo(15.5f, 8.5f) - horizontalLineToRelative(4.0f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(15.5f, 4.5f) - verticalLineToRelative(4.0f) - close() - moveTo(14.0f, 4.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(4.5f, 15.5f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(8.5f, 19.5f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - close() - } - } - return _table!! - } - -private var _table: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableAdd.kt deleted file mode 100644 index 513fcf1b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableAdd.kt +++ /dev/null @@ -1,96 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableAdd: ImageVector - get() { - if (_tableAdd != null) { - return _tableAdd!! - } - _tableAdd = fluentIcon(name = "Regular.TableAdd") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(5.77f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 10.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(1.31f) - curveToRelative(-0.53f, 0.18f, -1.04f, 0.42f, -1.5f, 0.71f) - lineTo(14.0f, 10.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(2.02f) - curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) - lineTo(10.0f, 15.5f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(1.31f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 8.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - lineTo(6.25f, 4.5f) - close() - moveTo(4.5f, 10.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(15.5f, 8.5f) - horizontalLineToRelative(4.0f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(15.5f, 4.5f) - verticalLineToRelative(4.0f) - close() - moveTo(14.0f, 4.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(4.5f, 15.5f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(8.5f, 19.5f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _tableAdd!! - } - -private var _tableAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableBottomRow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableBottomRow.kt deleted file mode 100644 index 992cd730..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableBottomRow.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableBottomRow: ImageVector - get() { - if (_tableBottomRow != null) { - return _tableBottomRow!! - } - _tableBottomRow = fluentIcon(name = "Regular.TableBottomRow") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(19.5f, 14.0f) - horizontalLineToRelative(-15.0f) - lineTo(4.5f, 6.25f) - close() - moveTo(10.0f, 15.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(17.75f, 19.5f) - lineTo(15.5f, 19.5f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - close() - moveTo(4.5f, 17.75f) - lineTo(4.5f, 15.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(4.0f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - close() - } - } - return _tableBottomRow!! - } - -private var _tableBottomRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableCellEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableCellEdit.kt deleted file mode 100644 index 82b45af9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableCellEdit.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableCellEdit: ImageVector - get() { - if (_tableCellEdit != null) { - return _tableCellEdit!! - } - _tableCellEdit = fluentIcon(name = "Regular.TableCellEdit") { - fluentPath { - moveTo(3.0f, 8.75f) - curveTo(3.0f, 7.51f, 4.0f, 6.5f, 5.25f, 6.5f) - horizontalLineToRelative(13.5f) - curveToRelative(0.98f, 0.0f, 1.82f, 0.63f, 2.12f, 1.5f) - horizontalLineToRelative(-0.15f) - curveToRelative(-0.47f, 0.0f, -0.94f, 0.1f, -1.37f, 0.3f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.6f, -0.3f) - horizontalLineTo(15.5f) - verticalLineToRelative(3.85f) - lineToRelative(-1.5f, 1.5f) - verticalLineTo(8.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(6.0f) - horizontalLineToRelative(3.35f) - lineToRelative(-0.86f, 0.86f) - curveToRelative(-0.2f, 0.2f, -0.37f, 0.41f, -0.51f, 0.64f) - horizontalLineTo(5.25f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-4.5f) - close() - moveTo(5.25f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineTo(8.5f) - verticalLineTo(8.0f) - horizontalLineTo(5.25f) - close() - } - fluentPath { - moveTo(20.72f, 9.0f) - curveToRelative(-0.6f, 0.0f, -1.18f, 0.22f, -1.62f, 0.67f) - lineToRelative(-5.9f, 5.9f) - curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.71f, 1.25f) - lineToRelative(-0.46f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcTo(2.29f, 2.29f, 0.0f, false, false, 20.72f, 9.0f) - close() - } - } - return _tableCellEdit!! - } - -private var _tableCellEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableCellsMerge.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableCellsMerge.kt deleted file mode 100644 index 92744738..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableCellsMerge.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableCellsMerge: ImageVector - get() { - if (_tableCellsMerge != null) { - return _tableCellsMerge!! - } - _tableCellsMerge = fluentIcon(name = "Regular.TableCellsMerge") { - fluentPath { - moveTo(15.58f, 11.25f) - lineTo(8.42f, 11.25f) - lineToRelative(0.9f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.13f, -1.0f) - lineToRelative(-2.0f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.0f) - lineToRelative(2.0f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.12f, -1.0f) - lineToRelative(-0.89f, -1.0f) - horizontalLineToRelative(7.16f) - lineToRelative(-0.89f, 1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.12f, 1.0f) - lineToRelative(2.0f, -2.25f) - lineToRelative(0.01f, -0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.01f, -1.0f) - lineToRelative(-2.0f, -2.24f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.12f, 1.0f) - lineToRelative(0.89f, 1.0f) - close() - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(0.25f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(-0.25f) - close() - moveTo(4.5f, 8.0f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(8.0f) - horizontalLineToRelative(-15.0f) - lineTo(4.5f, 8.0f) - close() - moveTo(19.5f, 17.5f) - verticalLineToRelative(0.25f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-0.25f) - horizontalLineToRelative(15.0f) - close() - } - } - return _tableCellsMerge!! - } - -private var _tableCellsMerge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableCellsSplit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableCellsSplit.kt deleted file mode 100644 index ec7daf19..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableCellsSplit.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableCellsSplit: ImageVector - get() { - if (_tableCellsSplit != null) { - return _tableCellsSplit!! - } - _tableCellsSplit = fluentIcon(name = "Regular.TableCellsSplit") { - fluentPath { - moveTo(12.5f, 10.0f) - lineTo(11.0f, 10.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(1.5f) - verticalLineToRelative(-4.0f) - close() - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 7.5f) - lineTo(11.0f, 7.5f) - verticalLineToRelative(-3.0f) - lineTo(6.25f, 4.5f) - close() - moveTo(19.5f, 16.5f) - horizontalLineToRelative(-7.0f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(5.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 16.5f) - close() - moveTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(12.5f, 4.5f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(7.0f) - lineTo(19.5f, 6.25f) - close() - moveTo(4.5f, 16.5f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(11.0f, 19.5f) - verticalLineToRelative(-3.0f) - lineTo(4.5f, 16.5f) - close() - moveTo(4.5f, 15.0f) - horizontalLineToRelative(15.0f) - lineTo(19.5f, 9.0f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(6.0f) - close() - } - } - return _tableCellsSplit!! - } - -private var _tableCellsSplit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableDeleteColumn.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableDeleteColumn.kt deleted file mode 100644 index fb61c05d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableDeleteColumn.kt +++ /dev/null @@ -1,100 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableDeleteColumn: ImageVector - get() { - if (_tableDeleteColumn != null) { - return _tableDeleteColumn!! - } - _tableDeleteColumn = fluentIcon(name = "Regular.TableDeleteColumn") { - fluentPath { - moveTo(22.0f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-1.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 17.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(18.5f, 15.5f) - horizontalLineToRelative(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(18.5f, 14.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(18.5f, 8.5f) - lineTo(18.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(1.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - close() - moveTo(2.0f, 3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.0f) - curveTo(5.55f, 3.0f, 7.0f, 4.46f, 7.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(7.0f, 19.55f, 5.54f, 21.0f, 3.75f, 21.0f) - horizontalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.0f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(5.5f, 15.5f) - lineTo(2.75f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(5.5f, 14.0f) - verticalLineToRelative(-4.0f) - lineTo(2.75f, 10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(5.5f, 8.5f) - lineTo(5.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-1.0f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 2.0f, 3.75f) - close() - moveTo(10.94f, 12.0f) - lineToRelative(-1.47f, 1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineTo(12.0f, 13.06f) - lineToRelative(1.47f, 1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineTo(13.06f, 12.0f) - lineToRelative(1.47f, -1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineTo(12.0f, 10.94f) - lineToRelative(-1.47f, -1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(10.94f, 12.0f) - close() - moveTo(11.25f, 8.73f) - lineTo(11.33f, 8.8f) - lineTo(12.0f, 9.47f) - lineTo(12.67f, 8.8f) - lineTo(12.75f, 8.73f) - lineTo(12.75f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(5.98f) - close() - moveTo(11.25f, 15.53f) - verticalLineToRelative(5.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-5.73f) - arcToRelative(1.83f, 1.83f, 0.0f, false, true, -0.08f, -0.07f) - lineToRelative(-0.67f, -0.67f) - lineToRelative(-0.67f, 0.67f) - lineToRelative(-0.08f, 0.07f) - close() - } - } - return _tableDeleteColumn!! - } - -private var _tableDeleteColumn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableDeleteRow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableDeleteRow.kt deleted file mode 100644 index 5a6bad96..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableDeleteRow.kt +++ /dev/null @@ -1,100 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableDeleteRow: ImageVector - get() { - if (_tableDeleteRow != null) { - return _tableDeleteRow!! - } - _tableDeleteRow = fluentIcon(name = "Regular.TableDeleteRow") { - fluentPath { - moveTo(3.75f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(1.0f) - curveTo(3.0f, 5.55f, 4.46f, 7.0f, 6.25f, 7.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 7.0f, 21.0f, 5.54f, 21.0f, 3.75f) - verticalLineToRelative(-1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(15.5f, 5.5f) - lineTo(15.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - lineTo(14.0f, 5.5f) - horizontalLineToRelative(-4.0f) - lineTo(10.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - lineTo(8.5f, 5.5f) - lineTo(6.25f, 5.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-1.0f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 3.75f, 2.0f) - close() - moveTo(3.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-1.0f) - curveTo(3.0f, 18.45f, 4.46f, 17.0f, 6.25f, 17.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(15.5f, 18.5f) - verticalLineToRelative(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(14.0f, 18.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(8.5f, 18.5f) - lineTo(6.25f, 18.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - close() - moveTo(12.0f, 13.06f) - lineToRelative(1.47f, 1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineTo(13.06f, 12.0f) - lineToRelative(1.47f, -1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineTo(12.0f, 10.94f) - lineToRelative(-1.47f, -1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(10.94f, 12.0f) - lineToRelative(-1.47f, 1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineTo(12.0f, 13.06f) - close() - moveTo(8.73f, 12.75f) - lineTo(8.8f, 12.67f) - lineTo(9.47f, 12.0f) - lineTo(8.8f, 11.33f) - arcToRelative(1.85f, 1.85f, 0.0f, false, true, -0.07f, -0.08f) - lineTo(2.75f, 11.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.98f) - close() - moveTo(15.53f, 12.75f) - horizontalLineToRelative(5.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.73f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-0.67f, 0.67f) - lineToRelative(0.67f, 0.67f) - lineToRelative(0.07f, 0.08f) - close() - } - } - return _tableDeleteRow!! - } - -private var _tableDeleteRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableDismiss.kt deleted file mode 100644 index 4ca66a7b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableDismiss.kt +++ /dev/null @@ -1,96 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableDismiss: ImageVector - get() { - if (_tableDismiss != null) { - return _tableDismiss!! - } - _tableDismiss = fluentIcon(name = "Regular.TableDismiss") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(5.77f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 10.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(1.31f) - curveToRelative(-0.53f, 0.18f, -1.04f, 0.42f, -1.5f, 0.71f) - lineTo(14.0f, 10.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(2.02f) - curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) - lineTo(10.0f, 15.5f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(1.31f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 8.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - lineTo(6.25f, 4.5f) - close() - moveTo(4.5f, 10.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(15.5f, 8.5f) - horizontalLineToRelative(4.0f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(15.5f, 4.5f) - verticalLineToRelative(4.0f) - close() - moveTo(14.0f, 4.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(4.5f, 15.5f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(8.5f, 19.5f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(17.5f, 16.8f) - lineTo(15.85f, 15.15f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(1.64f, 1.65f) - lineToRelative(-1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(1.65f, -1.64f) - lineToRelative(1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-1.64f, -1.65f) - lineToRelative(1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.65f, 1.64f) - close() - } - } - return _tableDismiss!! - } - -private var _tableDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableEdit.kt deleted file mode 100644 index dbc6b403..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableEdit.kt +++ /dev/null @@ -1,93 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableEdit: ImageVector - get() { - if (_tableEdit != null) { - return _tableEdit!! - } - _tableEdit = fluentIcon(name = "Regular.TableEdit") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.45f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.45f, 21.0f, 6.25f) - verticalLineToRelative(4.76f) - arcToRelative(3.3f, 3.3f, 0.0f, false, false, -1.5f, 0.22f) - lineTo(19.5f, 10.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(0.85f) - lineTo(14.0f, 16.35f) - verticalLineToRelative(-0.85f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(1.54f) - lineToRelative(-0.02f, 0.08f) - lineToRelative(-0.36f, 1.42f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 8.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - lineTo(6.25f, 4.5f) - close() - moveTo(4.5f, 10.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(10.0f, 10.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(15.5f, 8.5f) - horizontalLineToRelative(4.0f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(15.5f, 4.5f) - verticalLineToRelative(4.0f) - close() - moveTo(14.0f, 4.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(4.5f, 15.5f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(8.5f, 19.5f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(19.76f, 12.2f) - arcToRelative(2.27f, 2.27f, 0.0f, false, false, -0.66f, 0.47f) - lineToRelative(-5.9f, 5.9f) - arcToRelative(2.68f, 2.68f, 0.0f, false, false, -0.71f, 1.25f) - lineToRelative(-0.46f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -2.57f, -3.7f) - close() - } - } - return _tableEdit!! - } - -private var _tableEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableFreezeColumn.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableFreezeColumn.kt deleted file mode 100644 index 822b71a6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableFreezeColumn.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableFreezeColumn: ImageVector - get() { - if (_tableFreezeColumn != null) { - return _tableFreezeColumn!! - } - _tableFreezeColumn = fluentIcon(name = "Regular.TableFreezeColumn") { - fluentPath { - moveTo(21.0f, 17.75f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - close() - moveTo(17.75f, 19.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(15.5f, 4.5f) - verticalLineToRelative(15.0f) - horizontalLineToRelative(2.25f) - close() - moveTo(10.0f, 4.5f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(8.5f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 8.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(8.5f, 10.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(10.0f, 14.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - close() - moveTo(10.0f, 15.5f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(8.5f, 15.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(8.5f, 19.5f) - verticalLineToRelative(-4.0f) - close() - } - } - return _tableFreezeColumn!! - } - -private var _tableFreezeColumn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableFreezeColumnAndRow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableFreezeColumnAndRow.kt deleted file mode 100644 index 219d80b7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableFreezeColumnAndRow.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableFreezeColumnAndRow: ImageVector - get() { - if (_tableFreezeColumnAndRow != null) { - return _tableFreezeColumnAndRow!! - } - _tableFreezeColumnAndRow = fluentIcon(name = "Regular.TableFreezeColumnAndRow") { - fluentPath { - moveTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - close() - moveTo(15.5f, 19.5f) - lineTo(15.5f, 9.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(4.5f, 8.5f) - lineTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(15.5f, 19.5f) - close() - moveTo(14.0f, 14.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(4.0f) - close() - moveTo(10.0f, 15.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(8.5f, 14.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(4.0f) - close() - moveTo(4.5f, 15.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(4.0f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 15.5f) - close() - } - } - return _tableFreezeColumnAndRow!! - } - -private var _tableFreezeColumnAndRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableFreezeRow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableFreezeRow.kt deleted file mode 100644 index 4315e3e1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableFreezeRow.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableFreezeRow: ImageVector - get() { - if (_tableFreezeRow != null) { - return _tableFreezeRow!! - } - _tableFreezeRow = fluentIcon(name = "Regular.TableFreezeRow") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(19.5f, 8.5f) - horizontalLineToRelative(-15.0f) - lineTo(4.5f, 6.25f) - close() - moveTo(10.0f, 10.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(8.5f, 10.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(4.0f) - close() - moveTo(8.5f, 15.5f) - verticalLineToRelative(4.0f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 15.5f) - horizontalLineToRelative(4.0f) - close() - moveTo(10.0f, 19.5f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(15.5f, 14.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(15.5f, 15.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(15.5f, 19.5f) - verticalLineToRelative(-4.0f) - close() - } - } - return _tableFreezeRow!! - } - -private var _tableFreezeRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableInsertColumn.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableInsertColumn.kt deleted file mode 100644 index 2a7b9974..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableInsertColumn.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableInsertColumn: ImageVector - get() { - if (_tableInsertColumn != null) { - return _tableInsertColumn!! - } - _tableInsertColumn = fluentIcon(name = "Regular.TableInsertColumn") { - fluentPath { - moveTo(4.5f, 3.75f) - verticalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(3.0f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(14.25f, 3.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-4.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - lineTo(7.5f, 5.25f) - curveTo(7.5f, 4.01f, 8.5f, 3.0f, 9.75f, 3.0f) - horizontalLineToRelative(4.5f) - close() - moveTo(15.0f, 5.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(9.0f, 8.5f) - horizontalLineToRelative(6.0f) - lineTo(15.0f, 5.25f) - close() - moveTo(9.0f, 14.0f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(-4.0f) - lineTo(9.0f, 10.0f) - verticalLineToRelative(4.0f) - close() - moveTo(9.0f, 15.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(15.0f, 15.5f) - lineTo(9.0f, 15.5f) - close() - moveTo(21.0f, 20.25f) - lineTo(21.0f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - close() - } - } - return _tableInsertColumn!! - } - -private var _tableInsertColumn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableInsertRow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableInsertRow.kt deleted file mode 100644 index ca589af6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableInsertRow.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableInsertRow: ImageVector - get() { - if (_tableInsertRow != null) { - return _tableInsertRow!! - } - _tableInsertRow = fluentIcon(name = "Regular.TableInsertRow") { - fluentPath { - moveTo(20.25f, 3.0f) - lineTo(3.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(3.0f, 9.75f) - curveTo(3.0f, 8.51f, 4.0f, 7.5f, 5.25f, 7.5f) - horizontalLineToRelative(13.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(5.25f, 16.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-4.5f) - close() - moveTo(5.25f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(8.5f, 15.0f) - lineTo(8.5f, 9.0f) - lineTo(5.25f, 9.0f) - close() - moveTo(14.0f, 15.0f) - lineTo(14.0f, 9.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(6.0f) - horizontalLineToRelative(4.0f) - close() - moveTo(15.5f, 15.0f) - horizontalLineToRelative(3.25f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(15.5f, 9.0f) - verticalLineToRelative(6.0f) - close() - moveTo(3.75f, 19.5f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(3.75f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - } - } - return _tableInsertRow!! - } - -private var _tableInsertRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableLightning.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableLightning.kt deleted file mode 100644 index f857e335..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableLightning.kt +++ /dev/null @@ -1,95 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableLightning: ImageVector - get() { - if (_tableLightning != null) { - return _tableLightning!! - } - _tableLightning = fluentIcon(name = "Regular.TableLightning") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - lineTo(21.0f, 11.0f) - horizontalLineToRelative(-1.5f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(1.24f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -0.54f, 0.62f) - lineTo(14.0f, 13.91f) - lineTo(14.0f, 10.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(3.96f) - lineToRelative(-0.71f, 1.5f) - lineTo(10.0f, 15.5f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(2.38f) - curveToRelative(0.27f, 0.3f, 0.66f, 0.5f, 1.12f, 0.5f) - horizontalLineToRelative(1.72f) - lineToRelative(-0.25f, 1.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 8.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - lineTo(6.25f, 4.5f) - close() - moveTo(4.5f, 10.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(15.5f, 8.5f) - horizontalLineToRelative(4.0f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(15.5f, 4.5f) - verticalLineToRelative(4.0f) - close() - moveTo(14.0f, 4.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(4.5f, 15.5f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(8.5f, 19.5f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(16.32f, 12.0f) - horizontalLineToRelative(4.82f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.44f, 0.75f) - lineTo(19.75f, 16.0f) - horizontalLineToRelative(1.5f) - curveToRelative(0.64f, 0.0f, 0.98f, 0.76f, 0.56f, 1.24f) - lineToRelative(-4.82f, 5.51f) - curveToRelative(-0.5f, 0.58f, -1.45f, 0.09f, -1.26f, -0.66f) - lineTo(16.5f, 19.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.46f, -0.71f) - lineToRelative(2.82f, -6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.46f, -0.29f) - close() - } - } - return _tableLightning!! - } - -private var _tableLightning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableLink.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableLink.kt deleted file mode 100644 index 6fb80afb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableLink.kt +++ /dev/null @@ -1,106 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableLink: ImageVector - get() { - if (_tableLink != null) { - return _tableLink!! - } - _tableLink = fluentIcon(name = "Regular.TableLink") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(8.08f) - curveToRelative(-0.47f, -0.18f, -0.97f, -0.3f, -1.5f, -0.32f) - lineTo(19.5f, 10.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - arcToRelative(4.74f, 4.74f, 0.0f, false, false, -3.21f, 1.5f) - lineTo(10.0f, 15.5f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(1.06f) - curveToRelative(0.08f, 0.54f, 0.26f, 1.04f, 0.5f, 1.5f) - lineTo(6.26f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(14.0f, 10.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 8.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - lineTo(6.25f, 4.5f) - close() - moveTo(4.5f, 10.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(15.5f, 8.5f) - horizontalLineToRelative(4.0f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(15.5f, 4.5f) - verticalLineToRelative(4.0f) - close() - moveTo(14.0f, 4.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(4.5f, 15.5f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(8.5f, 19.5f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(19.25f, 15.0f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 0.2f, 7.5f) - horizontalLineToRelative(-0.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - horizontalLineToRelative(0.1f) - lineTo(19.25f, 21.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.15f, -4.5f) - horizontalLineToRelative(-0.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(15.75f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-0.1f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.15f, 4.5f) - horizontalLineToRelative(0.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-0.1f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.2f, -7.5f) - horizontalLineToRelative(0.2f) - close() - moveTo(19.25f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(3.6f) - close() - } - } - return _tableLink!! - } - -private var _tableLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableLock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableLock.kt deleted file mode 100644 index 6aad09e5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableLock.kt +++ /dev/null @@ -1,105 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableLock: ImageVector - get() { - if (_tableLock != null) { - return _tableLock!! - } - _tableLock = fluentIcon(name = "Regular.TableLock") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(5.3f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -1.5f, -0.9f) - lineTo(19.5f, 10.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(2.2f) - curveToRelative(-0.32f, 0.52f, -0.5f, 1.14f, -0.5f, 1.8f) - verticalLineToRelative(0.05f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -1.8f, 1.45f) - lineTo(10.0f, 15.5f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(3.0f) - lineTo(13.0f, 21.0f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 8.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - lineTo(6.25f, 4.5f) - close() - moveTo(4.5f, 10.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(10.0f, 10.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(15.5f, 8.5f) - horizontalLineToRelative(4.0f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(15.5f, 4.5f) - verticalLineToRelative(4.0f) - close() - moveTo(14.0f, 4.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(4.5f, 15.5f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(8.5f, 19.5f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(16.0f, 15.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(6.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(21.0f, 15.0f) - verticalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) - verticalLineToRelative(1.0f) - close() - moveTo(17.5f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(19.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - } - } - return _tableLock!! - } - -private var _tableLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableMoveAbove.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableMoveAbove.kt deleted file mode 100644 index c82c11eb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableMoveAbove.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableMoveAbove: ImageVector - get() { - if (_tableMoveAbove != null) { - return _tableMoveAbove!! - } - _tableMoveAbove = fluentIcon(name = "Regular.TableMoveAbove") { - fluentPath { - moveTo(20.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(16.5f) - close() - moveTo(20.25f, 8.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.27f) - arcTo(1.75f, 1.75f, 0.0f, false, false, 10.0f, 10.48f) - lineTo(10.0f, 14.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-3.52f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 1.98f, -1.98f) - horizontalLineToRelative(4.27f) - close() - moveTo(8.5f, 10.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(8.5f, 15.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(8.5f, 19.5f) - verticalLineToRelative(-4.0f) - close() - moveTo(14.0f, 19.5f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - close() - moveTo(15.5f, 19.5f) - horizontalLineToRelative(2.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 15.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - close() - moveTo(15.5f, 10.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(14.81f, 9.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 0.06f) - lineToRelative(-1.0f, -0.89f) - verticalLineToRelative(2.83f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(11.25f, 8.42f) - lineToRelative(-1.0f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.0f, -1.13f) - lineToRelative(2.25f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.0f, 0.0f) - lineToRelative(2.25f, 2.0f) - curveToRelative(0.3f, 0.27f, 0.34f, 0.75f, 0.06f, 1.06f) - close() - } - } - return _tableMoveAbove!! - } - -private var _tableMoveAbove: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableMoveBelow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableMoveBelow.kt deleted file mode 100644 index dbb59672..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableMoveBelow.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableMoveBelow: ImageVector - get() { - if (_tableMoveBelow != null) { - return _tableMoveBelow!! - } - _tableMoveBelow = fluentIcon(name = "Regular.TableMoveBelow") { - fluentPath { - moveTo(3.75f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-8.5f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-4.27f) - arcTo(1.75f, 1.75f, 0.0f, false, false, 14.0f, 13.52f) - lineTo(14.0f, 10.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(3.52f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.98f, 1.98f) - lineTo(3.75f, 15.5f) - close() - moveTo(10.0f, 8.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - close() - moveTo(19.5f, 14.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - close() - moveTo(15.5f, 8.5f) - horizontalLineToRelative(4.0f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(15.5f, 4.5f) - verticalLineToRelative(4.0f) - close() - moveTo(8.5f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 8.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(4.5f, 14.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - close() - moveTo(3.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 19.5f) - close() - moveTo(9.19f, 14.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -0.06f) - lineToRelative(1.0f, 0.89f) - verticalLineToRelative(-2.83f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(2.83f) - lineToRelative(1.0f, -0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.0f, 1.13f) - lineToRelative(-2.25f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.0f, 0.0f) - lineToRelative(-2.25f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.06f, -1.06f) - close() - } - } - return _tableMoveBelow!! - } - -private var _tableMoveBelow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableMoveLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableMoveLeft.kt deleted file mode 100644 index 51b5a5a0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableMoveLeft.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableMoveLeft: ImageVector - get() { - if (_tableMoveLeft != null) { - return _tableMoveLeft!! - } - _tableMoveLeft = fluentIcon(name = "Regular.TableMoveLeft") { - fluentPath { - moveTo(4.5f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(4.5f, 3.75f) - close() - moveTo(8.5f, 3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(8.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-4.27f) - arcTo(1.75f, 1.75f, 0.0f, false, false, 10.48f, 14.0f) - lineTo(14.0f, 14.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-3.52f) - arcTo(1.75f, 1.75f, 0.0f, false, false, 8.5f, 8.02f) - lineTo(8.5f, 3.75f) - close() - moveTo(10.0f, 19.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - close() - moveTo(15.5f, 15.5f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(2.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 15.5f) - horizontalLineToRelative(-4.0f) - close() - moveTo(19.5f, 10.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(19.5f, 8.5f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(15.5f, 4.5f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - close() - moveTo(10.0f, 4.5f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(9.25f, 9.19f) - curveToRelative(0.3f, 0.27f, 0.34f, 0.75f, 0.06f, 1.06f) - lineToRelative(-0.89f, 1.0f) - horizontalLineToRelative(2.83f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(8.42f, 12.75f) - lineToRelative(0.9f, 1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, 1.0f) - lineToRelative(-2.0f, -2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.0f) - lineToRelative(2.0f, -2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -0.06f) - close() - } - } - return _tableMoveLeft!! - } - -private var _tableMoveLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableMoveRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableMoveRight.kt deleted file mode 100644 index 439efe5f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableMoveRight.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableMoveRight: ImageVector - get() { - if (_tableMoveRight != null) { - return _tableMoveRight!! - } - _tableMoveRight = fluentIcon(name = "Regular.TableMoveRight") { - fluentPath { - moveTo(15.5f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-8.5f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(8.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-4.27f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 13.52f, 14.0f) - lineTo(10.0f, 14.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(3.52f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 1.98f, -1.98f) - lineTo(15.5f, 3.75f) - close() - moveTo(4.5f, 14.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(14.0f, 8.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(4.0f) - close() - moveTo(8.5f, 8.5f) - horizontalLineToRelative(-4.0f) - lineTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - lineTo(8.5f, 4.5f) - verticalLineToRelative(4.0f) - close() - moveTo(8.5f, 19.5f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 15.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(4.0f) - close() - moveTo(10.0f, 15.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(19.5f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(19.5f, 3.75f) - close() - moveTo(14.75f, 9.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.06f, 1.06f) - lineToRelative(0.89f, 1.0f) - horizontalLineToRelative(-2.83f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.83f) - lineToRelative(-0.89f, 1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.12f, 1.0f) - lineToRelative(2.0f, -2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.0f) - lineToRelative(-2.0f, -2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -0.06f) - close() - } - } - return _tableMoveRight!! - } - -private var _tableMoveRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableResizeColumn.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableResizeColumn.kt deleted file mode 100644 index 8f987f5d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableResizeColumn.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableResizeColumn: ImageVector - get() { - if (_tableResizeColumn != null) { - return _tableResizeColumn!! - } - _tableResizeColumn = fluentIcon(name = "Regular.TableResizeColumn") { - fluentPath { - moveTo(15.58f, 11.25f) - lineTo(8.42f, 11.25f) - lineToRelative(0.9f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.13f, -1.0f) - lineToRelative(-2.0f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.0f) - lineToRelative(2.0f, 2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.12f, -1.0f) - lineToRelative(-0.89f, -1.0f) - horizontalLineToRelative(7.16f) - lineToRelative(-0.89f, 1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.12f, 1.0f) - lineToRelative(2.0f, -2.25f) - lineToRelative(0.01f, -0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.01f, -1.0f) - lineToRelative(-2.0f, -2.24f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.12f, 1.0f) - lineToRelative(0.89f, 1.0f) - close() - moveTo(17.75f, 3.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-0.25f) - verticalLineToRelative(5.15f) - lineToRelative(-0.94f, -1.06f) - arcToRelative(1.74f, 1.74f, 0.0f, false, false, -0.56f, -0.42f) - lineTo(16.0f, 4.5f) - lineTo(8.0f, 4.5f) - verticalLineToRelative(3.67f) - curveToRelative(-0.2f, 0.1f, -0.4f, 0.24f, -0.56f, 0.42f) - lineTo(6.5f, 9.65f) - lineTo(6.5f, 4.5f) - horizontalLineToRelative(-0.25f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(0.25f) - verticalLineToRelative(-5.15f) - lineToRelative(0.94f, 1.06f) - curveToRelative(0.16f, 0.18f, 0.35f, 0.32f, 0.56f, 0.42f) - verticalLineToRelative(3.67f) - horizontalLineToRelative(8.0f) - verticalLineToRelative(-3.67f) - curveToRelative(0.2f, -0.1f, 0.4f, -0.24f, 0.56f, -0.42f) - lineToRelative(0.94f, -1.06f) - verticalLineToRelative(5.15f) - horizontalLineToRelative(0.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 6.25f) - close() - } - } - return _tableResizeColumn!! - } - -private var _tableResizeColumn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableResizeRow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableResizeRow.kt deleted file mode 100644 index 408a7543..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableResizeRow.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableResizeRow: ImageVector - get() { - if (_tableResizeRow != null) { - return _tableResizeRow!! - } - _tableResizeRow = fluentIcon(name = "Regular.TableResizeRow") { - fluentPath { - moveTo(12.75f, 15.58f) - lineTo(12.75f, 8.42f) - lineToRelative(1.0f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.0f, -1.13f) - lineToRelative(-2.25f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, 0.0f) - lineToRelative(-2.25f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.0f, 1.12f) - lineToRelative(1.0f, -0.89f) - verticalLineToRelative(7.16f) - lineToRelative(-1.0f, -0.89f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.0f, 1.12f) - lineToRelative(2.25f, 2.0f) - lineToRelative(0.01f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.0f, -0.01f) - lineToRelative(2.24f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, -1.12f) - lineToRelative(-1.0f, 0.89f) - close() - moveTo(17.75f, 21.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(19.5f, 17.75f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-0.25f) - horizontalLineToRelative(5.15f) - lineToRelative(-1.06f, -0.94f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.42f, -0.56f) - lineTo(4.5f, 16.0f) - lineTo(4.5f, 8.0f) - horizontalLineToRelative(3.67f) - curveToRelative(0.1f, -0.2f, 0.24f, -0.4f, 0.42f, -0.56f) - lineToRelative(1.06f, -0.94f) - lineTo(4.5f, 6.5f) - verticalLineToRelative(-0.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(0.25f) - horizontalLineToRelative(-5.15f) - lineToRelative(1.06f, 0.94f) - curveToRelative(0.18f, 0.16f, 0.32f, 0.35f, 0.42f, 0.56f) - horizontalLineToRelative(3.67f) - verticalLineToRelative(8.0f) - horizontalLineToRelative(-3.67f) - curveToRelative(-0.1f, 0.2f, -0.24f, 0.4f, -0.42f, 0.56f) - lineToRelative(-1.06f, 0.94f) - horizontalLineToRelative(5.15f) - verticalLineToRelative(0.25f) - close() - } - } - return _tableResizeRow!! - } - -private var _tableResizeRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableSettings.kt deleted file mode 100644 index 817fd1b6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableSettings.kt +++ /dev/null @@ -1,110 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableSettings: ImageVector - get() { - if (_tableSettings != null) { - return _tableSettings!! - } - _tableSettings = fluentIcon(name = "Regular.TableSettings") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(5.77f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 10.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(1.31f) - curveToRelative(-0.53f, 0.18f, -1.04f, 0.42f, -1.5f, 0.71f) - lineTo(14.0f, 10.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(2.02f) - curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) - lineTo(10.0f, 15.5f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(1.31f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 8.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - lineTo(6.25f, 4.5f) - close() - moveTo(4.5f, 10.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(15.5f, 8.5f) - horizontalLineToRelative(4.0f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(15.5f, 4.5f) - verticalLineToRelative(4.0f) - close() - moveTo(14.0f, 4.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(4.5f, 15.5f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(8.5f, 19.5f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(14.28f, 13.98f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.59f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) - lineToRelative(0.55f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) - lineToRelative(-0.19f, 0.63f) - curveToRelative(0.44f, 0.39f, 0.94f, 0.7f, 1.49f, 0.93f) - lineToRelative(0.49f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) - lineToRelative(-0.2f, -0.69f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) - lineToRelative(0.59f, -0.14f) - arcToRelative(5.72f, 5.72f, 0.0f, false, false, 0.0f, -1.8f) - lineToRelative(-0.55f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.19f, -0.63f) - curveToRelative(-0.44f, -0.4f, -0.94f, -0.7f, -1.49f, -0.93f) - lineToRelative(-0.49f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) - lineToRelative(0.2f, 0.7f) - close() - moveTo(17.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) - close() - } - } - return _tableSettings!! - } - -private var _tableSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableSimple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableSimple.kt deleted file mode 100644 index af8a1e04..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableSimple.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableSimple: ImageVector - get() { - if (_tableSimple != null) { - return _tableSimple!! - } - _tableSimple = fluentIcon(name = "Regular.TableSimple") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(6.75f) - lineTo(11.25f, 4.5f) - horizontalLineToRelative(-5.0f) - close() - moveTo(11.25f, 12.75f) - lineTo(4.5f, 12.75f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(-6.75f) - close() - moveTo(12.75f, 12.75f) - verticalLineToRelative(6.75f) - horizontalLineToRelative(5.0f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(-6.75f) - close() - moveTo(19.5f, 11.25f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-5.0f) - verticalLineToRelative(6.75f) - horizontalLineToRelative(6.75f) - close() - } - } - return _tableSimple!! - } - -private var _tableSimple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableSimpleCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableSimpleCheckmark.kt deleted file mode 100644 index d10803ca..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableSimpleCheckmark.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableSimpleCheckmark: ImageVector - get() { - if (_tableSimpleCheckmark != null) { - return _tableSimpleCheckmark!! - } - _tableSimpleCheckmark = fluentIcon(name = "Regular.TableSimpleCheckmark") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(6.75f) - lineTo(4.5f, 11.25f) - verticalLineToRelative(-5.0f) - close() - moveTo(12.75f, 11.25f) - lineTo(12.75f, 4.5f) - horizontalLineToRelative(5.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(-6.75f) - close() - moveTo(4.5f, 12.75f) - horizontalLineToRelative(6.75f) - verticalLineToRelative(6.75f) - horizontalLineToRelative(-5.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-5.0f) - close() - moveTo(18.28f, 14.72f) - curveToRelative(0.3f, 0.29f, 0.3f, 0.76f, 0.0f, 1.06f) - lineToRelative(-2.0f, 2.0f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-1.0f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(0.47f, 0.47f) - lineToRelative(1.47f, -1.47f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - } - } - return _tableSimpleCheckmark!! - } - -private var _tableSimpleCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableSimpleMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableSimpleMultiple.kt deleted file mode 100644 index 05e1f2ca..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableSimpleMultiple.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableSimpleMultiple: ImageVector - get() { - if (_tableSimpleMultiple != null) { - return _tableSimpleMultiple!! - } - _tableSimpleMultiple = fluentIcon(name = "Regular.TableSimpleMultiple") { - fluentPath { - moveTo(5.25f, 2.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) - verticalLineToRelative(10.5f) - curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) - horizontalLineToRelative(10.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(19.0f, 5.25f) - curveTo(19.0f, 3.45f, 17.54f, 2.0f, 15.75f, 2.0f) - lineTo(5.25f, 2.0f) - close() - moveTo(3.5f, 5.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - lineTo(10.0f, 3.5f) - lineTo(10.0f, 10.0f) - lineTo(3.5f, 10.0f) - lineTo(3.5f, 5.25f) - close() - moveTo(11.5f, 10.0f) - lineTo(11.5f, 3.5f) - horizontalLineToRelative(4.25f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(17.5f, 10.0f) - horizontalLineToRelative(-6.0f) - close() - moveTo(3.5f, 11.5f) - lineTo(10.0f, 11.5f) - verticalLineToRelative(6.0f) - lineTo(5.25f, 17.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(3.5f, 11.5f) - close() - moveTo(11.5f, 11.5f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(4.25f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(11.5f, 17.5f) - verticalLineToRelative(-6.0f) - close() - moveTo(8.25f, 22.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.0f, -2.0f) - horizontalLineToRelative(1.78f) - curveToRelative(0.31f, 0.3f, 0.74f, 0.5f, 1.22f, 0.5f) - horizontalLineToRelative(8.25f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, -4.0f) - lineTo(20.5f, 8.25f) - curveToRelative(0.0f, -0.48f, -0.19f, -0.9f, -0.5f, -1.22f) - lineTo(20.0f, 5.25f) - curveToRelative(1.18f, 0.49f, 2.0f, 1.65f, 2.0f, 3.0f) - verticalLineToRelative(8.25f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, -5.5f, 5.5f) - lineTo(8.25f, 22.0f) - close() - } - } - return _tableSimpleMultiple!! - } - -private var _tableSimpleMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableStackAbove.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableStackAbove.kt deleted file mode 100644 index 38f7a1a9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableStackAbove.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableStackAbove: ImageVector - get() { - if (_tableStackAbove != null) { - return _tableStackAbove!! - } - _tableStackAbove = fluentIcon(name = "Regular.TableStackAbove") { - fluentPath { - moveTo(20.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(16.5f) - close() - moveTo(20.25f, 8.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(16.5f) - close() - moveTo(14.0f, 10.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(8.5f, 10.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(8.5f, 15.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - lineTo(8.5f, 19.5f) - verticalLineToRelative(-4.0f) - close() - moveTo(14.0f, 15.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(15.5f, 19.5f) - horizontalLineToRelative(2.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 15.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - close() - moveTo(19.5f, 10.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - close() - } - } - return _tableStackAbove!! - } - -private var _tableStackAbove: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableStackBelow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableStackBelow.kt deleted file mode 100644 index 22712222..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableStackBelow.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableStackBelow: ImageVector - get() { - if (_tableStackBelow != null) { - return _tableStackBelow!! - } - _tableStackBelow = fluentIcon(name = "Regular.TableStackBelow") { - fluentPath { - moveTo(3.75f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-8.5f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(3.75f, 15.5f) - close() - moveTo(10.0f, 14.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - close() - moveTo(10.0f, 8.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - close() - moveTo(15.5f, 14.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - close() - moveTo(15.5f, 8.5f) - horizontalLineToRelative(4.0f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(15.5f, 4.5f) - verticalLineToRelative(4.0f) - close() - moveTo(8.5f, 4.5f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 8.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(4.5f, 14.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(4.0f) - close() - moveTo(3.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 19.5f) - close() - } - } - return _tableStackBelow!! - } - -private var _tableStackBelow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableStackLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableStackLeft.kt deleted file mode 100644 index 3749b80a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableStackLeft.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableStackLeft: ImageVector - get() { - if (_tableStackLeft != null) { - return _tableStackLeft!! - } - _tableStackLeft = fluentIcon(name = "Regular.TableStackLeft") { - fluentPath { - moveTo(4.5f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(4.5f, 3.75f) - close() - moveTo(8.5f, 3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(8.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(8.5f, 3.75f) - close() - moveTo(10.0f, 10.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(10.0f, 15.5f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(15.5f, 15.5f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(2.25f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(19.5f, 15.5f) - horizontalLineToRelative(-4.0f) - close() - moveTo(15.5f, 10.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(19.5f, 8.5f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(15.5f, 4.5f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - close() - moveTo(10.0f, 4.5f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(-4.0f) - close() - } - } - return _tableStackLeft!! - } - -private var _tableStackLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableStackRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableStackRight.kt deleted file mode 100644 index 4ea2eb22..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableStackRight.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableStackRight: ImageVector - get() { - if (_tableStackRight != null) { - return _tableStackRight!! - } - _tableStackRight = fluentIcon(name = "Regular.TableStackRight") { - fluentPath { - moveTo(15.5f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-8.5f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(8.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(15.5f, 3.75f) - close() - moveTo(14.0f, 10.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(4.0f) - close() - moveTo(4.5f, 14.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(14.0f, 8.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(4.0f) - close() - moveTo(8.5f, 8.5f) - horizontalLineToRelative(-4.0f) - lineTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - lineTo(8.5f, 4.5f) - verticalLineToRelative(4.0f) - close() - moveTo(8.5f, 19.5f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 15.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(4.0f) - close() - moveTo(10.0f, 15.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(19.5f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(19.5f, 3.75f) - close() - } - } - return _tableStackRight!! - } - -private var _tableStackRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableSwitch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableSwitch.kt deleted file mode 100644 index c48dee9f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TableSwitch.kt +++ /dev/null @@ -1,110 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TableSwitch: ImageVector - get() { - if (_tableSwitch != null) { - return _tableSwitch!! - } - _tableSwitch = fluentIcon(name = "Regular.TableSwitch") { - fluentPath { - moveTo(8.78f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(0.72f, 0.72f) - lineTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(2.19f) - lineToRelative(-0.72f, -0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 0.0f) - lineToRelative(2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-0.72f, 0.72f) - lineTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(2.19f) - lineToRelative(-0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.78f, 1.24f) - curveToRelative(0.1f, -0.04f, 0.2f, -0.1f, 0.28f, -0.18f) - lineToRelative(2.0f, -2.0f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-2.0f, -2.0f) - close() - moveTo(11.83f, 3.0f) - curveToRelative(0.23f, 0.47f, 0.23f, 1.03f, 0.0f, 1.5f) - lineTo(14.0f, 4.5f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(-4.0f) - lineTo(10.0f, 6.47f) - lineTo(9.49f, 7.0f) - curveToRelative(-0.28f, 0.28f, -0.63f, 0.44f, -0.99f, 0.5f) - lineTo(8.5f, 8.5f) - lineTo(7.48f, 8.5f) - curveToRelative(-0.05f, 0.36f, -0.21f, 0.7f, -0.5f, 0.99f) - lineToRelative(-0.5f, 0.51f) - lineTo(8.5f, 10.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-2.17f) - curveToRelative(-0.47f, 0.23f, -1.03f, 0.23f, -1.5f, 0.0f) - verticalLineToRelative(5.92f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - horizontalLineToRelative(-5.92f) - close() - moveTo(10.0f, 14.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(15.5f, 14.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(14.0f, 15.5f) - verticalLineToRelative(4.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(4.0f) - close() - moveTo(15.5f, 19.5f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(2.25f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(15.5f, 19.5f) - close() - moveTo(15.5f, 8.5f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(2.25f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(19.5f, 8.5f) - horizontalLineToRelative(-4.0f) - close() - moveTo(4.5f, 15.5f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(4.0f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 15.5f) - close() - } - } - return _tableSwitch!! - } - -private var _tableSwitch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Tablet.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Tablet.kt deleted file mode 100644 index cd9b9332..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Tablet.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Tablet: ImageVector - get() { - if (_tablet != null) { - return _tablet!! - } - _tablet = fluentIcon(name = "Regular.Tablet") { - fluentPath { - moveTo(19.75f, 4.0f) - curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(22.0f, 19.0f, 21.0f, 20.0f, 19.75f, 20.0f) - lineTo(4.25f, 20.0f) - curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) - lineTo(2.0f, 6.25f) - curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) - horizontalLineToRelative(15.5f) - close() - moveTo(19.75f, 5.5f) - lineTo(4.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(15.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) - lineTo(20.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(10.25f, 15.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(3.6f) - horizontalLineToRelative(-3.5f) - close() - } - } - return _tablet!! - } - -private var _tablet: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabletSpeaker.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabletSpeaker.kt deleted file mode 100644 index 102518b8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TabletSpeaker.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TabletSpeaker: ImageVector - get() { - if (_tabletSpeaker != null) { - return _tabletSpeaker!! - } - _tabletSpeaker = fluentIcon(name = "Regular.TabletSpeaker") { - fluentPath { - moveTo(22.14f, 3.3f) - arcToRelative(4.53f, 4.53f, 0.0f, false, false, -0.91f, -1.13f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.96f, 1.16f) - curveToRelative(0.13f, 0.1f, 0.35f, 0.35f, 0.59f, 0.74f) - curveToRelative(0.4f, 0.67f, 0.64f, 1.48f, 0.64f, 2.43f) - curveToRelative(0.0f, 0.95f, -0.24f, 1.76f, -0.64f, 2.43f) - curveToRelative(-0.24f, 0.39f, -0.46f, 0.64f, -0.59f, 0.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.96f, 1.16f) - curveToRelative(0.25f, -0.21f, 0.59f, -0.58f, 0.91f, -1.13f) - curveToRelative(0.54f, -0.9f, 0.86f, -1.96f, 0.86f, -3.2f) - curveToRelative(0.0f, -1.24f, -0.32f, -2.3f, -0.86f, -3.2f) - close() - } - fluentPath { - moveTo(19.87f, 4.4f) - curveToRelative(-0.23f, -0.36f, -0.48f, -0.6f, -0.67f, -0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 1.2f) - arcTo(2.24f, 2.24f, 0.0f, false, true, 19.0f, 6.5f) - arcToRelative(2.24f, 2.24f, 0.0f, false, true, -0.7f, 1.65f) - lineToRelative(-0.08f, 0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) - arcToRelative(3.73f, 3.73f, 0.0f, false, false, 1.3f, -2.85f) - curveToRelative(0.0f, -0.81f, -0.23f, -1.52f, -0.63f, -2.1f) - close() - } - fluentPath { - moveTo(17.0f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.31f, -0.5f) - lineTo(14.16f, 5.0f) - horizontalLineToRelative(-1.41f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(1.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(1.41f) - lineToRelative(1.53f, 1.74f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 17.0f, 9.25f) - verticalLineToRelative(-5.5f) - close() - } - fluentPath { - moveTo(4.25f, 4.0f) - horizontalLineTo(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) - verticalLineToRelative(0.5f) - horizontalLineTo(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(15.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) - verticalLineToRelative(-5.77f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 1.5f, -0.5f) - verticalLineToRelative(6.27f) - curveTo(22.0f, 19.0f, 21.0f, 20.0f, 19.75f, 20.0f) - horizontalLineTo(4.25f) - curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) - verticalLineTo(6.25f) - curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) - close() - } - fluentPath { - moveTo(13.75f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(3.6f) - close() - } - } - return _tabletSpeaker!! - } - -private var _tabletSpeaker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Tabs.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Tabs.kt deleted file mode 100644 index e9499480..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Tabs.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Tabs: ImageVector - get() { - if (_tabs != null) { - return _tabs!! - } - _tabs = fluentIcon(name = "Regular.Tabs") { - fluentPath { - moveTo(2.0f, 9.25f) - curveTo(2.0f, 5.25f, 5.25f, 2.0f, 9.25f, 2.0f) - horizontalLineToRelative(3.5f) - curveToRelative(1.35f, 0.0f, 2.51f, 0.83f, 3.0f, 2.0f) - horizontalLineToRelative(-1.78f) - curveToRelative(-0.31f, -0.3f, -0.74f, -0.5f, -1.22f, -0.5f) - horizontalLineToRelative(-3.5f) - arcTo(5.75f, 5.75f, 0.0f, false, false, 3.5f, 9.25f) - verticalLineToRelative(3.5f) - curveToRelative(0.0f, 0.48f, 0.2f, 0.9f, 0.5f, 1.22f) - verticalLineToRelative(1.78f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -2.0f, -3.0f) - verticalLineToRelative(-3.5f) - close() - moveTo(5.0f, 10.25f) - curveTo(5.0f, 7.35f, 7.35f, 5.0f, 10.25f, 5.0f) - horizontalLineToRelative(5.5f) - curveToRelative(1.35f, 0.0f, 2.51f, 0.83f, 3.0f, 2.0f) - horizontalLineToRelative(-1.78f) - curveToRelative(-0.31f, -0.3f, -0.74f, -0.5f, -1.22f, -0.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.75f, 3.75f) - verticalLineToRelative(5.5f) - curveToRelative(0.0f, 0.48f, 0.2f, 0.9f, 0.5f, 1.22f) - verticalLineToRelative(1.78f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -2.0f, -3.0f) - verticalLineToRelative(-5.5f) - close() - moveTo(11.25f, 8.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 8.0f, 11.25f) - verticalLineToRelative(7.5f) - curveTo(8.0f, 20.55f, 9.46f, 22.0f, 11.25f, 22.0f) - horizontalLineToRelative(7.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-7.5f) - curveTo(22.0f, 9.45f, 20.54f, 8.0f, 18.75f, 8.0f) - horizontalLineToRelative(-7.5f) - close() - moveTo(9.5f, 11.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(7.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-7.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-7.5f) - close() - } - } - return _tabs!! - } - -private var _tabs: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TagDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TagDismiss.kt deleted file mode 100644 index 635ebef1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TagDismiss.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TagDismiss: ImageVector - get() { - if (_tagDismiss != null) { - return _tagDismiss!! - } - _tagDismiss = fluentIcon(name = "Regular.TagDismiss") { - fluentPath { - moveTo(19.75f, 2.0f) - curveTo(20.99f, 2.0f, 22.0f, 3.0f, 22.0f, 4.25f) - verticalLineToRelative(5.46f) - curveToRelative(0.0f, 0.86f, -0.34f, 1.69f, -0.95f, 2.3f) - lineToRelative(-0.03f, 0.03f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, -1.43f, -0.7f) - lineToRelative(0.4f, -0.4f) - curveToRelative(0.33f, -0.32f, 0.51f, -0.76f, 0.51f, -1.23f) - lineTo(20.5f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-5.47f) - curveToRelative(-0.46f, 0.0f, -0.9f, 0.18f, -1.23f, 0.51f) - lineToRelative(-8.52f, 8.53f) - curveToRelative(-0.67f, 0.68f, -0.66f, 1.78f, 0.02f, 2.46f) - lineTo(9.0f, 19.45f) - curveToRelative(0.64f, 0.64f, 1.64f, 0.68f, 2.33f, 0.13f) - curveToRelative(0.17f, 0.49f, 0.39f, 0.95f, 0.65f, 1.38f) - curveToRelative(-1.25f, 0.8f, -2.94f, 0.65f, -4.04f, -0.45f) - lineTo(3.5f, 16.06f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.6f) - lineToRelative(8.5f, -8.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.3f, -0.96f) - horizontalLineToRelative(5.46f) - close() - moveTo(17.0f, 5.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(17.5f, 23.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) - close() - moveTo(15.15f, 15.15f) - curveToRelative(0.2f, -0.2f, 0.5f, -0.2f, 0.7f, 0.0f) - lineToRelative(1.65f, 1.64f) - lineToRelative(1.65f, -1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, 0.7f) - lineToRelative(-1.64f, 1.65f) - lineToRelative(1.64f, 1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.7f) - lineToRelative(-1.65f, -1.64f) - lineToRelative(-1.65f, 1.64f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, -0.7f) - lineToRelative(1.64f, -1.65f) - lineToRelative(-1.64f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -0.7f) - close() - } - } - return _tagDismiss!! - } - -private var _tagDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TagError.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TagError.kt deleted file mode 100644 index aec3b544..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TagError.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TagError: ImageVector - get() { - if (_tagError != null) { - return _tagError!! - } - _tagError = fluentIcon(name = "Regular.TagError") { - fluentPath { - moveTo(19.75f, 2.0f) - curveTo(20.99f, 2.0f, 22.0f, 3.0f, 22.0f, 4.25f) - verticalLineToRelative(5.46f) - curveToRelative(0.0f, 0.86f, -0.34f, 1.69f, -0.95f, 2.3f) - lineToRelative(-0.03f, 0.03f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, -1.43f, -0.7f) - lineToRelative(0.4f, -0.4f) - curveToRelative(0.33f, -0.32f, 0.51f, -0.76f, 0.51f, -1.23f) - lineTo(20.5f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-5.47f) - curveToRelative(-0.46f, 0.0f, -0.9f, 0.18f, -1.23f, 0.51f) - lineToRelative(-8.52f, 8.53f) - curveToRelative(-0.67f, 0.68f, -0.66f, 1.78f, 0.02f, 2.46f) - lineTo(9.0f, 19.45f) - curveToRelative(0.64f, 0.64f, 1.64f, 0.68f, 2.33f, 0.13f) - curveToRelative(0.17f, 0.49f, 0.39f, 0.95f, 0.65f, 1.38f) - curveToRelative(-1.25f, 0.8f, -2.94f, 0.65f, -4.04f, -0.45f) - lineTo(3.5f, 16.06f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.6f) - lineToRelative(8.5f, -8.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.3f, -0.96f) - horizontalLineToRelative(5.46f) - close() - moveTo(17.0f, 5.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(17.5f, 14.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(17.5f, 21.13f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.25f) - close() - } - } - return _tagError!! - } - -private var _tagError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TagLock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TagLock.kt deleted file mode 100644 index 379bc2cd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TagLock.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TagLock: ImageVector - get() { - if (_tagLock != null) { - return _tagLock!! - } - _tagLock = fluentIcon(name = "Regular.TagLock") { - fluentPath { - moveTo(19.75f, 2.0f) - curveTo(20.99f, 2.0f, 22.0f, 3.0f, 22.0f, 4.25f) - verticalLineToRelative(5.46f) - curveToRelative(0.0f, 0.86f, -0.34f, 1.69f, -0.95f, 2.3f) - lineToRelative(-0.42f, 0.42f) - arcToRelative(3.51f, 3.51f, 0.0f, false, false, -0.95f, -1.17f) - lineToRelative(0.3f, -0.31f) - curveToRelative(0.34f, -0.33f, 0.52f, -0.77f, 0.52f, -1.24f) - lineTo(20.5f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-5.47f) - curveToRelative(-0.46f, 0.0f, -0.9f, 0.18f, -1.23f, 0.51f) - lineToRelative(-8.52f, 8.53f) - curveToRelative(-0.67f, 0.68f, -0.66f, 1.78f, 0.02f, 2.46f) - lineTo(9.0f, 19.45f) - curveToRelative(0.68f, 0.68f, 1.8f, 0.68f, 2.48f, 0.0f) - lineToRelative(0.51f, -0.51f) - verticalLineToRelative(2.01f) - curveToRelative(-1.26f, 0.8f, -2.95f, 0.66f, -4.05f, -0.44f) - lineTo(3.5f, 16.06f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.6f) - lineToRelative(8.5f, -8.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.3f, -0.96f) - horizontalLineToRelative(5.46f) - close() - moveTo(17.0f, 5.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(15.0f, 15.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(6.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(20.0f, 15.0f) - verticalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) - verticalLineToRelative(1.0f) - close() - moveTo(16.5f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-1.0f) - close() - moveTo(18.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - } - } - return _tagLock!! - } - -private var _tagLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TagMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TagMultiple.kt deleted file mode 100644 index 68dfe947..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TagMultiple.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TagMultiple: ImageVector - get() { - if (_tagMultiple != null) { - return _tagMultiple!! - } - _tagMultiple = fluentIcon(name = "Regular.TagMultiple") { - fluentPath { - moveTo(17.5f, 6.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(10.5f, 2.9f) - curveToRelative(0.61f, -0.58f, 1.42f, -0.9f, 2.25f, -0.9f) - horizontalLineToRelative(5.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 4.75f) - lineTo(21.0f, 9.7f) - curveToRelative(0.0f, 0.87f, -0.35f, 1.7f, -0.97f, 2.32f) - lineToRelative(-6.95f, 6.83f) - curveToRelative(-0.88f, 0.87f, -2.29f, 0.86f, -3.16f, 0.0f) - lineToRelative(-6.26f, -6.23f) - curveToRelative(-0.9f, -0.9f, -0.88f, -2.35f, 0.04f, -3.23f) - lineToRelative(6.8f, -6.5f) - close() - moveTo(12.75f, 3.5f) - curveToRelative(-0.45f, 0.0f, -0.88f, 0.17f, -1.2f, 0.48f) - lineToRelative(-6.82f, 6.5f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.78f, -0.01f, 1.07f) - lineToRelative(6.26f, 6.23f) - curveToRelative(0.29f, 0.3f, 0.76f, 0.3f, 1.05f, 0.0f) - lineToRelative(6.95f, -6.83f) - curveToRelative(0.33f, -0.33f, 0.52f, -0.78f, 0.52f, -1.25f) - lineTo(19.5f, 4.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-5.5f) - close() - moveTo(20.73f, 12.73f) - lineTo(19.26f, 14.18f) - lineTo(19.12f, 14.34f) - lineTo(13.79f, 19.57f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -4.58f, -0.02f) - lineToRelative(-1.93f, -1.92f) - lineToRelative(-2.4f, -2.38f) - arcToRelative(1.26f, 1.26f, 0.0f, false, true, -0.12f, -0.13f) - lineTo(3.13f, 13.5f) - curveToRelative(-0.3f, 0.96f, -0.08f, 2.05f, 0.69f, 2.81f) - lineToRelative(4.35f, 4.31f) - arcToRelative(4.75f, 4.75f, 0.0f, false, false, 6.67f, 0.02f) - lineToRelative(5.33f, -5.23f) - curveToRelative(0.77f, -0.76f, 1.0f, -1.86f, 0.7f, -2.81f) - lineToRelative(-0.14f, 0.13f) - close() - } - } - return _tagMultiple!! - } - -private var _tagMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TagOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TagOff.kt deleted file mode 100644 index 69e0c3b6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TagOff.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TagOff: ImageVector - get() { - if (_tagOff != null) { - return _tagOff!! - } - _tagOff = fluentIcon(name = "Regular.TagOff") { - fluentPath { - moveTo(6.94f, 8.0f) - lineTo(2.22f, 3.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineToRelative(18.5f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(16.0f, 17.06f) - lineToRelative(-3.45f, 3.45f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -4.6f, 0.0f) - lineTo(3.5f, 16.06f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.6f) - lineTo(6.94f, 8.0f) - close() - moveTo(14.94f, 16.0f) - lineTo(8.0f, 9.06f) - lineToRelative(-3.46f, 3.48f) - curveToRelative(-0.68f, 0.68f, -0.67f, 1.78f, 0.01f, 2.46f) - lineToRelative(4.46f, 4.45f) - curveToRelative(0.69f, 0.68f, 1.8f, 0.68f, 2.48f, 0.0f) - lineTo(14.94f, 16.0f) - close() - moveTo(19.99f, 10.95f) - lineTo(17.0f, 13.94f) - lineTo(18.06f, 15.0f) - lineTo(21.05f, 12.0f) - curveToRelative(0.6f, -0.61f, 0.95f, -1.44f, 0.95f, -2.3f) - lineTo(22.0f, 4.25f) - curveTo(22.0f, 3.01f, 21.0f, 2.0f, 19.75f, 2.0f) - lineTo(14.3f, 2.0f) - curveToRelative(-0.87f, 0.0f, -1.7f, 0.34f, -2.3f, 0.95f) - lineTo(9.0f, 5.95f) - lineTo(10.06f, 7.0f) - lineToRelative(2.99f, -2.99f) - curveToRelative(0.33f, -0.33f, 0.77f, -0.51f, 1.24f, -0.51f) - horizontalLineToRelative(5.46f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(5.46f) - curveToRelative(0.0f, 0.47f, -0.18f, 0.91f, -0.51f, 1.24f) - close() - moveTo(17.0f, 5.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - } - } - return _tagOff!! - } - -private var _tagOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TagQuestionMark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TagQuestionMark.kt deleted file mode 100644 index 697394ef..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TagQuestionMark.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TagQuestionMark: ImageVector - get() { - if (_tagQuestionMark != null) { - return _tagQuestionMark!! - } - _tagQuestionMark = fluentIcon(name = "Regular.TagQuestionMark") { - fluentPath { - moveTo(19.75f, 2.0f) - curveTo(20.99f, 2.0f, 22.0f, 3.0f, 22.0f, 4.25f) - verticalLineToRelative(5.46f) - curveToRelative(0.0f, 0.86f, -0.34f, 1.69f, -0.95f, 2.3f) - lineToRelative(-0.03f, 0.03f) - arcToRelative(6.47f, 6.47f, 0.0f, false, false, -1.43f, -0.7f) - lineToRelative(0.4f, -0.4f) - curveToRelative(0.33f, -0.32f, 0.51f, -0.76f, 0.51f, -1.23f) - lineTo(20.5f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-5.47f) - curveToRelative(-0.46f, 0.0f, -0.9f, 0.18f, -1.23f, 0.51f) - lineToRelative(-8.52f, 8.53f) - curveToRelative(-0.67f, 0.68f, -0.66f, 1.78f, 0.02f, 2.46f) - lineTo(9.0f, 19.45f) - curveToRelative(0.64f, 0.64f, 1.64f, 0.68f, 2.33f, 0.13f) - curveToRelative(0.16f, 0.49f, 0.39f, 0.95f, 0.65f, 1.38f) - curveToRelative(-1.25f, 0.8f, -2.94f, 0.65f, -4.04f, -0.45f) - lineTo(3.5f, 16.06f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.6f) - lineToRelative(8.5f, -8.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.3f, -0.96f) - horizontalLineToRelative(5.46f) - close() - moveTo(17.0f, 5.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(16.88f, 20.5f) - arcToRelative(0.62f, 0.62f, 0.0f, true, true, 1.24f, 0.0f) - arcToRelative(0.62f, 0.62f, 0.0f, false, true, -1.24f, 0.0f) - close() - moveTo(15.65f, 15.96f) - curveToRelative(-0.01f, -1.14f, 0.8f, -1.96f, 1.85f, -1.96f) - curveToRelative(1.03f, 0.0f, 1.85f, 0.85f, 1.85f, 1.95f) - curveToRelative(0.0f, 0.57f, -0.18f, 0.92f, -0.66f, 1.45f) - lineToRelative(-0.27f, 0.3f) - lineToRelative(-0.1f, 0.1f) - curveToRelative(-0.24f, 0.3f, -0.32f, 0.47f, -0.32f, 0.7f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - curveToRelative(0.0f, -0.57f, 0.19f, -0.93f, 0.67f, -1.47f) - lineToRelative(0.27f, -0.29f) - lineToRelative(0.1f, -0.11f) - curveToRelative(0.24f, -0.29f, 0.31f, -0.45f, 0.31f, -0.68f) - curveToRelative(0.0f, -0.55f, -0.38f, -0.95f, -0.85f, -0.95f) - curveToRelative(-0.5f, 0.0f, -0.86f, 0.37f, -0.85f, 0.95f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - close() - } - } - return _tagQuestionMark!! - } - -private var _tagQuestionMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TagReset.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TagReset.kt deleted file mode 100644 index bcbd0175..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TagReset.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TagReset: ImageVector - get() { - if (_tagReset != null) { - return _tagReset!! - } - _tagReset = fluentIcon(name = "Regular.TagReset") { - fluentPath { - moveTo(22.0f, 4.25f) - curveTo(22.0f, 3.01f, 21.0f, 2.0f, 19.75f, 2.0f) - horizontalLineToRelative(-5.47f) - curveToRelative(-0.86f, 0.0f, -1.69f, 0.34f, -2.3f, 0.95f) - lineToRelative(-8.5f, 8.51f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 0.0f, 4.6f) - lineToRelative(4.47f, 4.45f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 4.6f, 0.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, -0.49f, -1.64f) - lineToRelative(-0.57f, 0.58f) - curveToRelative(-0.69f, 0.68f, -1.8f, 0.68f, -2.48f, 0.0f) - lineTo(4.55f, 15.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.02f, -2.46f) - lineTo(13.05f, 4.0f) - curveToRelative(0.32f, -0.33f, 0.77f, -0.51f, 1.23f, -0.51f) - horizontalLineToRelative(5.47f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(5.46f) - curveToRelative(0.0f, 0.47f, -0.18f, 0.91f, -0.51f, 1.24f) - lineToRelative(-1.12f, 1.11f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, 1.64f, 0.49f) - lineToRelative(0.54f, -0.54f) - curveToRelative(0.6f, -0.61f, 0.95f, -1.44f, 0.95f, -2.3f) - lineTo(22.0f, 4.25f) - close() - moveTo(18.5f, 7.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) - close() - moveTo(14.78f, 12.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-2.0f, 2.0f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-0.72f, -0.72f) - lineTo(18.0f, 14.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, -3.5f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, false, 5.0f, -5.0f) - horizontalLineToRelative(-3.94f) - lineToRelative(0.72f, -0.72f) - close() - } - } - return _tagReset!! - } - -private var _tagReset: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TagSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TagSearch.kt deleted file mode 100644 index f7473fd8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TagSearch.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TagSearch: ImageVector - get() { - if (_tagSearch != null) { - return _tagSearch!! - } - _tagSearch = fluentIcon(name = "Regular.TagSearch") { - fluentPath { - moveTo(22.0f, 4.25f) - curveTo(22.0f, 3.01f, 21.0f, 2.0f, 19.75f, 2.0f) - horizontalLineToRelative(-5.47f) - curveToRelative(-0.86f, 0.0f, -1.69f, 0.34f, -2.3f, 0.95f) - lineToRelative(-8.5f, 8.51f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 0.0f, 4.6f) - lineToRelative(4.47f, 4.45f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 4.6f, 0.0f) - lineToRelative(0.1f, -0.1f) - arcToRelative(5.52f, 5.52f, 0.0f, false, true, -0.93f, -1.19f) - lineToRelative(-0.23f, 0.23f) - curveToRelative(-0.69f, 0.68f, -1.8f, 0.68f, -2.48f, 0.0f) - lineTo(4.55f, 15.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.02f, -2.46f) - lineTo(13.05f, 4.0f) - curveToRelative(0.32f, -0.33f, 0.77f, -0.51f, 1.23f, -0.51f) - horizontalLineToRelative(5.47f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(5.46f) - curveToRelative(0.0f, 0.47f, -0.18f, 0.91f, -0.51f, 1.24f) - lineToRelative(-0.77f, 0.77f) - curveToRelative(0.44f, 0.25f, 0.84f, 0.56f, 1.2f, 0.92f) - lineToRelative(0.63f, -0.63f) - curveToRelative(0.6f, -0.61f, 0.95f, -1.44f, 0.95f, -2.3f) - lineTo(22.0f, 4.25f) - close() - moveTo(18.5f, 7.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) - close() - moveTo(20.17f, 19.1f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(2.61f, 2.62f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.61f, -2.61f) - close() - moveTo(19.5f, 16.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) - close() - } - } - return _tagSearch!! - } - -private var _tagSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TapDouble.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TapDouble.kt deleted file mode 100644 index db27aba0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TapDouble.kt +++ /dev/null @@ -1,98 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TapDouble: ImageVector - get() { - if (_tapDouble != null) { - return _tapDouble!! - } - _tapDouble = fluentIcon(name = "Regular.TapDouble") { - fluentPath { - moveTo(11.75f, 7.0f) - curveToRelative(1.35f, 0.0f, 2.18f, 0.97f, 2.25f, 2.33f) - verticalLineToRelative(2.29f) - lineToRelative(2.22f, 0.4f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.6f, 3.86f) - lineToRelative(-0.04f, 0.18f) - lineTo(17.73f, 20.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -1.69f, 1.61f) - lineToRelative(-0.16f, 0.03f) - lineToRelative(-2.42f, 0.35f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.28f, -1.12f) - lineToRelative(-0.08f, -0.16f) - lineToRelative(-0.03f, -0.06f) - curveToRelative(-0.24f, -0.5f, -0.59f, -0.95f, -1.03f, -1.28f) - lineToRelative(-0.2f, -0.14f) - lineToRelative(-1.87f, -1.26f) - lineToRelative(-0.1f, -0.06f) - lineToRelative(-0.1f, -0.05f) - lineToRelative(-2.36f, -1.17f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.41f, -0.66f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 1.41f, -2.44f) - curveToRelative(0.7f, -0.35f, 1.64f, -0.33f, 2.83f, 0.02f) - lineToRelative(0.26f, 0.08f) - lineTo(9.5f, 9.5f) - curveToRelative(0.0f, -1.45f, 0.84f, -2.51f, 2.25f, -2.51f) - close() - moveTo(11.75f, 8.5f) - curveToRelative(-0.46f, 0.0f, -0.71f, 0.27f, -0.75f, 0.87f) - verticalLineToRelative(5.38f) - curveToRelative(0.0f, 0.54f, -0.54f, 0.9f, -1.04f, 0.7f) - curveToRelative(-1.46f, -0.6f, -2.44f, -0.75f, -2.87f, -0.53f) - arcToRelative(0.97f, 0.97f, 0.0f, false, false, -0.51f, 0.52f) - lineToRelative(-0.04f, 0.12f) - lineToRelative(1.9f, 0.95f) - lineToRelative(0.18f, 0.1f) - lineToRelative(0.18f, 0.1f) - lineToRelative(1.88f, 1.26f) - arcToRelative(4.97f, 4.97f, 0.0f, false, true, 1.63f, 1.8f) - lineToRelative(0.12f, 0.24f) - lineToRelative(0.03f, 0.06f) - curveToRelative(0.12f, 0.27f, 0.39f, 0.43f, 0.68f, 0.43f) - horizontalLineToRelative(0.1f) - lineToRelative(2.42f, -0.35f) - curveToRelative(0.26f, -0.04f, 0.48f, -0.2f, 0.58f, -0.45f) - lineToRelative(0.04f, -0.1f) - lineToRelative(1.05f, -3.92f) - curveToRelative(0.25f, -0.94f, -0.3f, -1.9f, -1.24f, -2.15f) - lineToRelative(-0.07f, -0.01f) - lineToRelative(-2.9f, -0.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.61f, -0.63f) - lineToRelative(-0.01f, -0.11f) - lineTo(12.5f, 9.51f) - curveToRelative(0.0f, -0.7f, -0.25f, -1.01f, -0.75f, -1.01f) - close() - moveTo(11.75f, 2.0f) - arcToRelative(7.25f, 7.25f, 0.0f, false, true, 6.7f, 10.03f) - arcToRelative(4.2f, 4.2f, 0.0f, false, false, -1.3f, -0.78f) - arcToRelative(5.75f, 5.75f, 0.0f, true, false, -10.22f, 1.13f) - arcToRelative(3.32f, 3.32f, 0.0f, false, false, -1.42f, 0.57f) - arcTo(7.25f, 7.25f, 0.0f, false, true, 11.75f, 2.0f) - close() - moveTo(11.75f, 4.5f) - arcToRelative(4.75f, 4.75f, 0.0f, false, true, 4.41f, 6.5f) - lineTo(15.0f, 10.8f) - lineTo(15.0f, 9.25f) - curveToRelative(0.0f, -0.68f, -0.21f, -1.31f, -0.57f, -1.83f) - lineToRelative(-0.09f, -0.14f) - arcTo(3.07f, 3.07f, 0.0f, false, false, 11.75f, 6.0f) - curveToRelative(-1.18f, 0.0f, -2.08f, 0.53f, -2.64f, 1.35f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, -0.61f, 1.9f) - lineTo(8.5f, 12.4f) - lineToRelative(-0.26f, -0.04f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.62f, -0.32f) - curveTo(7.21f, 11.58f, 7.0f, 10.65f, 7.0f, 9.25f) - arcToRelative(4.75f, 4.75f, 0.0f, false, true, 4.75f, -4.75f) - close() - } - } - return _tapDouble!! - } - -private var _tapDouble: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TapSingle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TapSingle.kt deleted file mode 100644 index 493c8272..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TapSingle.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TapSingle: ImageVector - get() { - if (_tapSingle != null) { - return _tapSingle!! - } - _tapSingle = fluentIcon(name = "Regular.TapSingle") { - fluentPath { - moveTo(11.75f, 6.0f) - curveToRelative(1.35f, 0.0f, 2.18f, 0.97f, 2.25f, 2.33f) - verticalLineToRelative(2.29f) - lineToRelative(2.22f, 0.4f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.6f, 3.86f) - lineToRelative(-0.04f, 0.18f) - lineTo(17.73f, 19.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -1.69f, 1.61f) - lineToRelative(-0.16f, 0.03f) - lineToRelative(-2.42f, 0.35f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.28f, -1.12f) - lineToRelative(-0.08f, -0.16f) - lineToRelative(-0.03f, -0.06f) - curveToRelative(-0.24f, -0.5f, -0.59f, -0.95f, -1.03f, -1.28f) - lineToRelative(-0.19f, -0.14f) - lineToRelative(-1.88f, -1.26f) - lineToRelative(-0.1f, -0.06f) - lineToRelative(-0.1f, -0.05f) - lineToRelative(-2.36f, -1.17f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.41f, -0.66f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 1.41f, -2.44f) - curveToRelative(0.7f, -0.35f, 1.64f, -0.33f, 2.83f, 0.02f) - lineToRelative(0.26f, 0.08f) - lineTo(9.5f, 8.5f) - curveToRelative(0.0f, -1.46f, 0.84f, -2.51f, 2.25f, -2.51f) - close() - moveTo(11.75f, 7.5f) - curveToRelative(-0.46f, 0.0f, -0.71f, 0.27f, -0.75f, 0.87f) - verticalLineToRelative(5.38f) - curveToRelative(0.0f, 0.54f, -0.54f, 0.9f, -1.04f, 0.7f) - curveToRelative(-1.46f, -0.6f, -2.44f, -0.75f, -2.87f, -0.53f) - arcToRelative(0.97f, 0.97f, 0.0f, false, false, -0.51f, 0.52f) - lineToRelative(-0.04f, 0.12f) - lineToRelative(1.9f, 0.95f) - lineToRelative(0.18f, 0.1f) - lineToRelative(0.18f, 0.1f) - lineToRelative(1.88f, 1.26f) - arcToRelative(4.97f, 4.97f, 0.0f, false, true, 1.63f, 1.8f) - lineToRelative(0.12f, 0.24f) - lineToRelative(0.03f, 0.06f) - curveToRelative(0.12f, 0.27f, 0.39f, 0.43f, 0.68f, 0.43f) - horizontalLineToRelative(0.1f) - lineToRelative(2.42f, -0.35f) - curveToRelative(0.26f, -0.04f, 0.48f, -0.2f, 0.58f, -0.45f) - lineToRelative(0.04f, -0.1f) - lineToRelative(1.05f, -3.92f) - curveToRelative(0.25f, -0.94f, -0.3f, -1.9f, -1.24f, -2.15f) - lineToRelative(-0.07f, -0.01f) - lineToRelative(-2.9f, -0.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.61f, -0.63f) - lineToRelative(-0.01f, -0.11f) - lineTo(12.5f, 8.51f) - curveToRelative(0.0f, -0.7f, -0.25f, -1.01f, -0.75f, -1.01f) - close() - moveTo(11.75f, 2.5f) - arcToRelative(5.75f, 5.75f, 0.0f, false, true, 5.4f, 7.75f) - lineTo(17.0f, 10.2f) - arcToRelative(5.6f, 5.6f, 0.0f, false, false, -1.34f, -0.3f) - arcTo(4.24f, 4.24f, 0.0f, false, false, 11.75f, 4.0f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, -3.25f, 7.0f) - curveToRelative(-0.32f, 0.02f, -0.6f, 0.06f, -0.82f, 0.11f) - curveToRelative(-0.36f, 0.09f, -0.6f, 0.17f, -0.76f, 0.27f) - arcToRelative(5.75f, 5.75f, 0.0f, false, true, 4.83f, -8.88f) - close() - } - } - return _tapSingle!! - } - -private var _tapSingle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Target.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Target.kt deleted file mode 100644 index f4c7420d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Target.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Target: ImageVector - get() { - if (_target != null) { - return _target!! - } - _target = fluentIcon(name = "Regular.Target") { - fluentPath { - moveTo(12.0f, 14.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) - close() - moveTo(6.0f, 12.0f) - arcToRelative(6.0f, 6.0f, 0.0f, true, true, 12.0f, 0.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, true, -12.0f, 0.0f) - close() - moveTo(12.0f, 7.5f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, 0.0f, 9.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 0.0f, -9.0f) - close() - moveTo(2.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) - close() - } - } - return _target!! - } - -private var _target: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TargetArrow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TargetArrow.kt deleted file mode 100644 index d2e46659..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TargetArrow.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TargetArrow: ImageVector - get() { - if (_targetArrow != null) { - return _targetArrow!! - } - _targetArrow = fluentIcon(name = "Regular.TargetArrow") { - fluentPath { - moveTo(12.0f, 2.0f) - curveToRelative(1.2f, 0.0f, 2.36f, 0.21f, 3.42f, 0.6f) - lineToRelative(-1.19f, 1.2f) - arcToRelative(8.51f, 8.51f, 0.0f, true, false, 5.97f, 5.97f) - lineToRelative(1.2f, -1.2f) - arcTo(10.0f, 10.0f, 0.0f, true, true, 12.0f, 2.0f) - close() - moveTo(12.0f, 6.0f) - curveToRelative(0.52f, 0.0f, 1.02f, 0.07f, 1.5f, 0.19f) - verticalLineToRelative(1.57f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, 2.74f, 2.74f) - horizontalLineToRelative(1.57f) - arcTo(6.01f, 6.01f, 0.0f, true, true, 12.0f, 6.0f) - close() - moveTo(14.0f, 12.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -1.22f, -1.84f) - lineToRelative(1.72f, -1.72f) - lineTo(14.5f, 5.25f) - curveToRelative(0.0f, -0.2f, 0.08f, -0.39f, 0.22f, -0.53f) - lineToRelative(2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.28f, 0.53f) - lineTo(18.5f, 5.5f) - horizontalLineToRelative(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.53f, 1.28f) - lineToRelative(-2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.53f, 0.22f) - horizontalLineToRelative(-3.19f) - lineToRelative(-1.72f, 1.72f) - curveToRelative(0.1f, 0.24f, 0.16f, 0.5f, 0.16f, 0.78f) - close() - moveTo(18.44f, 8.0f) - lineTo(19.44f, 7.0f) - horizontalLineToRelative(-1.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(17.0f, 4.56f) - lineToRelative(-1.0f, 1.0f) - verticalLineToRelative(2.38f) - arcToRelative(0.7f, 0.7f, 0.0f, false, true, 0.06f, 0.06f) - horizontalLineToRelative(2.38f) - close() - } - } - return _targetArrow!! - } - -private var _targetArrow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TargetEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TargetEdit.kt deleted file mode 100644 index 5262c997..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TargetEdit.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TargetEdit: ImageVector - get() { - if (_targetEdit != null) { - return _targetEdit!! - } - _targetEdit = fluentIcon(name = "Regular.TargetEdit") { - fluentPath { - moveTo(12.0f, 14.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) - close() - moveTo(6.0f, 12.0f) - arcToRelative(6.0f, 6.0f, 0.0f, true, true, 11.99f, 0.37f) - lineToRelative(-2.66f, 2.66f) - arcTo(4.48f, 4.48f, 0.0f, false, false, 12.0f, 7.5f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, 3.03f, 7.83f) - lineToRelative(-2.54f, 2.53f) - lineToRelative(-0.12f, 0.13f) - lineTo(12.0f, 17.99f) - arcTo(6.0f, 6.0f, 0.0f, false, true, 6.0f, 12.0f) - close() - moveTo(12.0f, 3.5f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, 8.44f, 7.51f) - arcToRelative(3.3f, 3.3f, 0.0f, false, true, 1.53f, 0.24f) - arcTo(10.0f, 10.0f, 0.0f, true, false, 11.0f, 21.95f) - curveToRelative(0.0f, -0.18f, 0.02f, -0.36f, 0.06f, -0.54f) - lineToRelative(0.24f, -0.94f) - arcTo(8.5f, 8.5f, 0.0f, false, true, 12.0f, 3.5f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.34f, -0.59f, 0.78f, -0.7f, 1.25f) - lineToRelative(-0.47f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _targetEdit!! - } - -private var _targetEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TaskListAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TaskListAdd.kt deleted file mode 100644 index cb5c4e25..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TaskListAdd.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TaskListAdd: ImageVector - get() { - if (_taskListAdd != null) { - return _taskListAdd!! - } - _taskListAdd = fluentIcon(name = "Regular.TaskListAdd") { - fluentPath { - moveTo(6.78f, 3.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineTo(3.75f, 4.69f) - lineToRelative(-0.47f, -0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(1.0f, 1.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.5f, -2.5f) - close() - moveTo(11.0f, 17.5f) - curveToRelative(0.0f, 0.34f, 0.03f, 0.68f, 0.08f, 1.0f) - lineTo(9.75f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) - horizontalLineToRelative(1.37f) - arcToRelative(6.6f, 6.6f, 0.0f, false, false, -0.02f, 0.49f) - close() - moveTo(17.5f, 11.0f) - curveToRelative(1.27f, 0.0f, 2.46f, 0.37f, 3.47f, 1.0f) - horizontalLineToRelative(0.38f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - lineTo(9.65f, 10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(4.28f) - curveToRelative(1.0f, -0.63f, 2.2f, -1.0f, 3.47f, -1.0f) - close() - moveTo(21.25f, 4.0f) - lineTo(9.65f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(11.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(6.78f, 16.78f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-1.97f, 1.97f) - lineToRelative(-0.47f, -0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(1.0f, 1.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.5f, -2.5f) - close() - moveTo(6.78f, 9.22f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-2.5f, 2.5f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-1.0f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(0.47f, 0.47f) - lineToRelative(1.97f, -1.97f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _taskListAdd!! - } - -private var _taskListAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TaskListLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TaskListLtr.kt deleted file mode 100644 index 196122ce..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TaskListLtr.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TaskListLtr: ImageVector - get() { - if (_taskListLtr != null) { - return _taskListLtr!! - } - _taskListLtr = fluentIcon(name = "Regular.TaskListLtr") { - fluentPath { - moveTo(6.78f, 4.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineTo(3.75f, 5.69f) - lineToRelative(-0.47f, -0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(1.0f, 1.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.5f, -2.5f) - close() - moveTo(21.25f, 18.01f) - lineTo(9.65f, 18.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(11.5f) - lineToRelative(0.1f, -0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(21.25f, 11.5f) - lineTo(9.65f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(11.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(21.25f, 5.0f) - lineTo(9.65f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(11.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(6.78f, 17.78f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-1.97f, 1.97f) - lineToRelative(-0.47f, -0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(1.0f, 1.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.5f, -2.5f) - close() - moveTo(6.78f, 10.22f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-2.5f, 2.5f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-1.0f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(0.47f, 0.47f) - lineToRelative(1.97f, -1.97f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - } - } - return _taskListLtr!! - } - -private var _taskListLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TaskListRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TaskListRtl.kt deleted file mode 100644 index 436583c5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TaskListRtl.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TaskListRtl: ImageVector - get() { - if (_taskListRtl != null) { - return _taskListRtl!! - } - _taskListRtl = fluentIcon(name = "Regular.TaskListRtl") { - fluentPath { - moveTo(21.78f, 4.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineToRelative(-1.97f, 1.97f) - lineToRelative(-0.47f, -0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.0f, 1.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.5f, -2.5f) - close() - moveTo(14.25f, 18.01f) - lineTo(2.65f, 18.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(11.5f) - lineToRelative(0.1f, -0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(14.25f, 11.5f) - lineTo(2.65f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(11.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(14.25f, 5.0f) - lineTo(2.65f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(11.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(21.78f, 17.78f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-1.97f, 1.97f) - lineToRelative(-0.47f, -0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.0f, 1.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.5f, -2.5f) - close() - moveTo(21.78f, 10.22f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-2.5f, 2.5f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-1.0f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(0.47f, 0.47f) - lineToRelative(1.97f, -1.97f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - } - } - return _taskListRtl!! - } - -private var _taskListRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TaskListSquareAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TaskListSquareAdd.kt deleted file mode 100644 index b0cb60d7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TaskListSquareAdd.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TaskListSquareAdd: ImageVector - get() { - if (_taskListSquareAdd != null) { - return _taskListSquareAdd!! - } - _taskListSquareAdd = fluentIcon(name = "Regular.TaskListSquareAdd") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(5.77f) - curveToRelative(-0.3f, -0.46f, -0.53f, -0.97f, -0.7f, -1.5f) - lineTo(6.24f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.49f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(5.06f) - curveToRelative(0.53f, 0.18f, 1.04f, 0.42f, 1.5f, 0.71f) - lineTo(20.99f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(12.5f, 9.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(10.78f, 8.78f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineTo(8.25f, 9.19f) - lineToRelative(-0.47f, -0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(1.0f, 1.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.0f, -2.0f) - close() - moveTo(10.78f, 13.22f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-2.0f, 2.0f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-1.0f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(0.47f, 0.47f) - lineToRelative(1.47f, -1.47f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _taskListSquareAdd!! - } - -private var _taskListSquareAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TaskListSquareLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TaskListSquareLtr.kt deleted file mode 100644 index ff5e0fe8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TaskListSquareLtr.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TaskListSquareLtr: ImageVector - get() { - if (_taskListSquareLtr != null) { - return _taskListSquareLtr!! - } - _taskListSquareLtr = fluentIcon(name = "Regular.TaskListSquareLtr") { - fluentPath { - moveTo(12.5f, 9.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(13.25f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - close() - moveTo(10.78f, 8.78f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineTo(8.25f, 9.19f) - lineToRelative(-0.47f, -0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(1.0f, 1.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.0f, -2.0f) - close() - moveTo(10.78f, 13.22f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-2.0f, 2.0f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-1.0f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(0.47f, 0.47f) - lineToRelative(1.47f, -1.47f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 6.25f) - close() - } - } - return _taskListSquareLtr!! - } - -private var _taskListSquareLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TaskListSquareRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TaskListSquareRtl.kt deleted file mode 100644 index f62ac4eb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TaskListSquareRtl.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TaskListSquareRtl: ImageVector - get() { - if (_taskListSquareRtl != null) { - return _taskListSquareRtl!! - } - _taskListSquareRtl = fluentIcon(name = "Regular.TaskListSquareRtl") { - fluentPath { - moveTo(7.25f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - close() - moveTo(6.5f, 9.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(17.78f, 8.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineToRelative(-1.47f, 1.47f) - lineToRelative(-0.47f, -0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.0f, 1.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.0f, -2.0f) - close() - moveTo(17.78f, 13.22f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-2.0f, 2.0f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-1.0f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(0.47f, 0.47f) - lineToRelative(1.47f, -1.47f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 6.25f) - close() - } - } - return _taskListSquareRtl!! - } - -private var _taskListSquareRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TasksApp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TasksApp.kt deleted file mode 100644 index 5ee4562c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TasksApp.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TasksApp: ImageVector - get() { - if (_tasksApp != null) { - return _tasksApp!! - } - _tasksApp = fluentIcon(name = "Regular.TasksApp") { - fluentPath { - moveTo(20.0f, 4.1f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 17.74f, 2.0f) - lineTo(6.1f, 2.0f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 4.0f, 4.26f) - lineTo(4.0f, 19.9f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 6.26f, 22.0f) - horizontalLineToRelative(7.57f) - lineToRelative(-1.5f, -1.5f) - lineTo(6.15f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) - lineTo(5.5f, 4.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) - horizontalLineToRelative(11.6f) - curveToRelative(0.37f, 0.06f, 0.65f, 0.37f, 0.65f, 0.75f) - verticalLineToRelative(11.57f) - lineToRelative(1.16f, -1.16f) - curveToRelative(0.1f, -0.1f, 0.22f, -0.2f, 0.34f, -0.28f) - lineTo(20.0f, 4.1f) - close() - moveTo(16.28f, 22.0f) - arcToRelative(0.7f, 0.7f, 0.0f, false, true, -0.08f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.5f, -0.22f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.07f, -1.06f) - lineToRelative(1.97f, 1.97f) - lineToRelative(4.47f, -4.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-5.0f, 5.0f) - curveToRelative(-0.13f, 0.13f, -0.3f, 0.21f, -0.5f, 0.22f) - close() - moveTo(13.83f, 16.5f) - lineTo(11.25f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.4f) - close() - moveTo(9.0f, 7.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(10.5f, 7.75f) - curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(11.25f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.0f) - close() - moveTo(8.0f, 12.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(9.0f, 15.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - } - } - return _tasksApp!! - } - -private var _tasksApp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Teddy.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Teddy.kt deleted file mode 100644 index e4409653..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Teddy.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Teddy: ImageVector - get() { - if (_teddy != null) { - return _teddy!! - } - _teddy = fluentIcon(name = "Regular.Teddy") { - fluentPath { - moveTo(17.5f, 3.88f) - arcToRelative(4.12f, 4.12f, 0.0f, false, true, 2.7f, 7.24f) - curveToRelative(0.27f, 0.75f, 0.43f, 1.55f, 0.43f, 2.38f) - arcToRelative(7.31f, 7.31f, 0.0f, false, true, -3.19f, 5.91f) - curveToRelative(-0.28f, 0.2f, -0.57f, 0.4f, -0.88f, 0.57f) - lineToRelative(-0.04f, 0.02f) - arcTo(9.44f, 9.44f, 0.0f, false, true, 12.0f, 21.13f) - arcToRelative(9.44f, 9.44f, 0.0f, false, true, -5.4f, -1.68f) - lineToRelative(-0.04f, -0.04f) - arcToRelative(7.31f, 7.31f, 0.0f, false, true, -3.18f, -5.91f) - curveToRelative(0.0f, -0.83f, 0.15f, -1.63f, 0.42f, -2.38f) - arcToRelative(4.12f, 4.12f, 0.0f, true, true, 6.34f, -5.07f) - arcToRelative(9.75f, 9.75f, 0.0f, false, true, 3.72f, 0.0f) - arcToRelative(4.12f, 4.12f, 0.0f, false, true, 3.64f, -2.17f) - close() - moveTo(13.52f, 16.4f) - curveToRelative(-0.1f, 0.2f, -0.3f, 0.37f, -0.53f, 0.5f) - curveToRelative(-0.28f, 0.14f, -0.62f, 0.23f, -0.99f, 0.23f) - reflectiveCurveToRelative(-0.71f, -0.09f, -0.99f, -0.24f) - curveToRelative(-0.23f, -0.12f, -0.42f, -0.29f, -0.53f, -0.5f) - arcToRelative(4.39f, 4.39f, 0.0f, false, false, -2.53f, 2.44f) - arcTo(8.17f, 8.17f, 0.0f, false, false, 12.0f, 19.88f) - curveToRelative(1.5f, 0.0f, 2.89f, -0.4f, 4.05f, -1.05f) - arcToRelative(4.38f, 4.38f, 0.0f, false, false, -2.53f, -2.43f) - close() - moveTo(12.0f, 7.13f) - curveToRelative(-4.12f, 0.0f, -7.38f, 2.9f, -7.38f, 6.37f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, 2.29f, 4.6f) - arcToRelative(5.63f, 5.63f, 0.0f, false, true, 10.18f, 0.0f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, 2.29f, -4.6f) - curveToRelative(0.0f, -3.48f, -3.26f, -6.38f, -7.38f, -6.38f) - close() - moveTo(6.5f, 5.13f) - arcToRelative(2.87f, 2.87f, 0.0f, false, false, -2.13f, 4.8f) - arcTo(8.4f, 8.4f, 0.0f, false, true, 8.88f, 6.4f) - arcTo(2.88f, 2.88f, 0.0f, false, false, 6.5f, 5.13f) - close() - moveTo(17.5f, 5.13f) - curveToRelative(-0.97f, 0.0f, -1.86f, 0.48f, -2.38f, 1.26f) - arcToRelative(8.4f, 8.4f, 0.0f, false, true, 4.5f, 3.55f) - arcToRelative(2.87f, 2.87f, 0.0f, false, false, -2.12f, -4.81f) - close() - } - } - return _teddy!! - } - -private var _teddy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Temperature.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Temperature.kt deleted file mode 100644 index ecacc39d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Temperature.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Temperature: ImageVector - get() { - if (_temperature != null) { - return _temperature!! - } - _temperature = fluentIcon(name = "Regular.Temperature") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.24f, 3.07f) - lineToRelative(0.01f, 0.18f) - verticalLineToRelative(7.95f) - lineToRelative(0.08f, 0.07f) - arcToRelative(4.99f, 4.99f, 0.0f, false, true, 1.64f, 3.22f) - lineToRelative(0.02f, 0.26f) - lineToRelative(0.01f, 0.25f) - arcToRelative(5.0f, 5.0f, 0.0f, true, true, -8.51f, -3.56f) - lineToRelative(0.18f, -0.17f) - lineToRelative(0.08f, -0.07f) - lineTo(8.75f, 5.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.88f, -3.23f) - lineToRelative(0.19f, -0.01f) - lineTo(12.0f, 2.0f) - close() - moveTo(12.0f, 3.5f) - curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) - lineToRelative(-0.01f, 0.15f) - verticalLineToRelative(8.7f) - lineToRelative(-0.3f, 0.22f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 4.27f, 0.13f) - lineToRelative(-0.16f, -0.13f) - lineToRelative(-0.3f, -0.22f) - lineToRelative(-0.01f, -8.7f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(12.0f, 8.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(5.86f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, -1.5f, 0.0f) - lineTo(11.25f, 8.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _temperature!! - } - -private var _temperature: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Tent.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Tent.kt deleted file mode 100644 index 7b478c55..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Tent.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Tent: ImageVector - get() { - if (_tent != null) { - return _tent!! - } - _tent = fluentIcon(name = "Regular.Tent") { - fluentPath { - moveTo(11.22f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.04f, -0.02f) - lineToRelative(1.76f, 1.64f) - curveToRelative(1.28f, 1.2f, 2.7f, 2.22f, 4.23f, 3.06f) - curveToRelative(0.43f, 0.23f, 0.73f, 0.66f, 0.8f, 1.15f) - lineToRelative(1.35f, 9.45f) - horizontalLineToRelative(0.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(2.75f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.85f) - lineTo(4.96f, 8.0f) - curveToRelative(0.06f, -0.45f, 0.33f, -0.85f, 0.72f, -1.08f) - curveToRelative(1.4f, -0.84f, 2.69f, -1.85f, 3.84f, -3.0f) - lineToRelative(1.7f, -1.7f) - close() - moveTo(5.12f, 17.5f) - horizontalLineToRelative(2.13f) - arcToRelative(23.31f, 23.31f, 0.0f, false, false, 3.5f, -7.16f) - lineToRelative(0.53f, -1.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.44f, 0.0f) - lineToRelative(0.52f, 1.8f) - curveToRelative(0.75f, 2.57f, 1.94f, 5.0f, 3.51f, 7.16f) - horizontalLineToRelative(2.14f) - lineToRelative(-1.33f, -9.24f) - arcTo(22.31f, 22.31f, 0.0f, false, true, 13.0f, 4.94f) - lineToRelative(-1.22f, -1.15f) - lineToRelative(-1.19f, 1.19f) - arcToRelative(21.43f, 21.43f, 0.0f, false, true, -4.14f, 3.24f) - lineTo(5.11f, 17.5f) - close() - moveTo(14.92f, 17.5f) - arcTo(24.81f, 24.81f, 0.0f, false, true, 12.0f, 11.4f) - arcToRelative(24.81f, 24.81f, 0.0f, false, true, -2.93f, 6.1f) - horizontalLineToRelative(5.86f) - close() - } - } - return _tent!! - } - -private var _tent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TetrisApp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TetrisApp.kt deleted file mode 100644 index 571f1be7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TetrisApp.kt +++ /dev/null @@ -1,117 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TetrisApp: ImageVector - get() { - if (_tetrisApp != null) { - return _tetrisApp!! - } - _tetrisApp = fluentIcon(name = "Regular.TetrisApp") { - fluentPath { - moveTo(8.75f, 2.0f) - curveTo(7.78f, 2.0f, 7.0f, 2.78f, 7.0f, 3.75f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-3.0f) - curveTo(2.78f, 7.0f, 2.0f, 7.78f, 2.0f, 8.75f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(8.0f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(2.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-3.0f) - curveTo(18.0f, 2.78f, 17.22f, 2.0f, 16.25f, 2.0f) - horizontalLineToRelative(-7.5f) - close() - moveTo(16.25f, 7.0f) - lineTo(13.5f, 7.0f) - lineTo(13.5f, 3.5f) - horizontalLineToRelative(2.75f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - close() - moveTo(12.0f, 7.0f) - lineTo(8.48f, 7.0f) - lineToRelative(0.02f, -0.25f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - lineTo(12.0f, 3.5f) - lineTo(12.0f, 7.0f) - close() - moveTo(7.0f, 8.5f) - lineTo(7.0f, 12.0f) - lineTo(3.75f, 12.0f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - lineTo(7.0f, 8.5f) - close() - moveTo(8.5f, 8.5f) - horizontalLineToRelative(3.52f) - lineToRelative(-0.02f, 0.25f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - lineTo(8.5f, 12.0f) - lineTo(8.5f, 8.5f) - close() - moveTo(17.25f, 10.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-8.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-8.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-3.0f) - close() - moveTo(17.0f, 12.25f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - horizontalLineToRelative(3.0f) - curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) - verticalLineToRelative(3.25f) - horizontalLineToRelative(-3.52f) - lineToRelative(0.02f, -0.25f) - verticalLineToRelative(-3.0f) - close() - moveTo(17.0f, 17.0f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(3.25f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - lineTo(17.0f, 20.5f) - lineTo(17.0f, 17.0f) - close() - moveTo(15.5f, 16.98f) - verticalLineToRelative(3.52f) - horizontalLineToRelative(-4.0f) - lineTo(11.5f, 17.0f) - horizontalLineToRelative(3.75f) - curveToRelative(0.08f, 0.0f, 0.17f, 0.0f, 0.25f, -0.02f) - close() - moveTo(10.0f, 17.0f) - verticalLineToRelative(3.5f) - lineTo(6.75f, 20.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) - lineTo(10.0f, 17.0f) - close() - } - } - return _tetrisApp!! - } - -private var _tetrisApp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAddSpaceAfter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAddSpaceAfter.kt deleted file mode 100644 index e66bc1dc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAddSpaceAfter.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextAddSpaceAfter: ImageVector - get() { - if (_textAddSpaceAfter != null) { - return _textAddSpaceAfter!! - } - _textAddSpaceAfter = fluentIcon(name = "Regular.TextAddSpaceAfter") { - fluentPath { - moveTo(3.0f, 6.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(3.75f, 7.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 6.75f) - close() - moveTo(3.0f, 12.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(3.75f, 13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(9.47f, 18.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineTo(12.0f, 17.81f) - lineToRelative(1.47f, 1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-2.0f, 2.0f) - close() - } - } - return _textAddSpaceAfter!! - } - -private var _textAddSpaceAfter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAddSpaceBefore.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAddSpaceBefore.kt deleted file mode 100644 index 6b915cea..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAddSpaceBefore.kt +++ /dev/null @@ -1,45 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextAddSpaceBefore: ImageVector - get() { - if (_textAddSpaceBefore != null) { - return _textAddSpaceBefore!! - } - _textAddSpaceBefore = fluentIcon(name = "Regular.TextAddSpaceBefore") { - fluentPath { - moveTo(9.47f, 6.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - lineTo(12.0f, 6.69f) - lineToRelative(1.47f, -1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-2.0f, 2.0f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-2.0f, -2.0f) - close() - moveTo(3.0f, 11.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(3.75f, 12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(3.0f, 17.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(3.75f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _textAddSpaceBefore!! - } - -private var _textAddSpaceBefore: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAddT.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAddT.kt deleted file mode 100644 index c46b3eef..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAddT.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextAddT: ImageVector - get() { - if (_textAddT != null) { - return _textAddT!! - } - _textAddT = fluentIcon(name = "Regular.TextAddT") { - fluentPath { - moveTo(4.0f, 4.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(12.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(16.5f, 5.5f) - horizontalLineToRelative(-4.75f) - verticalLineToRelative(8.97f) - arcTo(6.47f, 6.47f, 0.0f, false, false, 11.5f, 20.0f) - lineTo(8.75f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.5f) - verticalLineToRelative(-13.0f) - lineTo(5.5f, 5.5f) - verticalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(18.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(17.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(17.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(18.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(18.0f, 18.0f) - close() - } - } - return _textAddT!! - } - -private var _textAddT: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignCenter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignCenter.kt deleted file mode 100644 index 644c336a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignCenter.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextAlignCenter: ImageVector - get() { - if (_textAlignCenter != null) { - return _textAlignCenter!! - } - _textAlignCenter = fluentIcon(name = "Regular.TextAlignCenter") { - fluentPath { - moveTo(4.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(4.75f, 6.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 4.0f, 5.75f) - close() - moveTo(6.0f, 18.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(6.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(2.75f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(2.75f, 11.5f) - close() - } - } - return _textAlignCenter!! - } - -private var _textAlignCenter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignCenterRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignCenterRotate270.kt deleted file mode 100644 index 95f368d2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignCenterRotate270.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextAlignCenterRotate270: ImageVector - get() { - if (_textAlignCenterRotate270 != null) { - return _textAlignCenterRotate270!! - } - _textAlignCenterRotate270 = fluentIcon(name = "Regular.TextAlignCenterRotate270") { - fluentPath { - moveTo(5.75f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(5.0f, 4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(14.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - close() - moveTo(18.75f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(18.0f, 6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - close() - moveTo(11.5f, 21.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(13.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(18.5f) - close() - } - } - return _textAlignCenterRotate270!! - } - -private var _textAlignCenterRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignCenterRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignCenterRotate90.kt deleted file mode 100644 index 88950156..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignCenterRotate90.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextAlignCenterRotate90: ImageVector - get() { - if (_textAlignCenterRotate90 != null) { - return _textAlignCenterRotate90!! - } - _textAlignCenterRotate90 = fluentIcon(name = "Regular.TextAlignCenterRotate90") { - fluentPath { - moveTo(18.25f, 4.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(17.5f, 4.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(5.25f, 6.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(4.5f, 6.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(12.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(12.5f, 2.75f) - close() - } - } - return _textAlignCenterRotate90!! - } - -private var _textAlignCenterRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignDistributed.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignDistributed.kt deleted file mode 100644 index 95fd9ff9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignDistributed.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextAlignDistributed: ImageVector - get() { - if (_textAlignDistributed != null) { - return _textAlignDistributed!! - } - _textAlignDistributed = fluentIcon(name = "Regular.TextAlignDistributed") { - fluentPath { - moveToRelative(5.28f, 7.22f) - lineToRelative(-0.72f, -0.72f) - horizontalLineToRelative(16.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(4.56f, 5.0f) - lineToRelative(0.72f, -0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineToRelative(-2.0f, 2.0f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - close() - moveTo(2.75f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(2.75f, 11.5f) - close() - moveTo(2.75f, 19.5f) - horizontalLineToRelative(16.69f) - lineToRelative(-0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(2.0f, -2.0f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(0.72f, 0.72f) - lineTo(2.75f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - } - } - return _textAlignDistributed!! - } - -private var _textAlignDistributed: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignDistributedEvenly.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignDistributedEvenly.kt deleted file mode 100644 index af50ad93..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignDistributedEvenly.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextAlignDistributedEvenly: ImageVector - get() { - if (_textAlignDistributedEvenly != null) { - return _textAlignDistributedEvenly!! - } - _textAlignDistributedEvenly = fluentIcon(name = "Regular.TextAlignDistributedEvenly") { - fluentPath { - moveTo(2.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(2.75f, 6.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 2.0f, 5.75f) - close() - moveTo(5.28f, 20.22f) - lineTo(4.56f, 19.5f) - horizontalLineToRelative(14.88f) - lineToRelative(-0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(2.0f, -2.0f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(0.72f, 0.72f) - lineTo(4.56f, 18.0f) - lineToRelative(0.72f, -0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-2.0f, 2.0f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - close() - moveTo(2.75f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(2.75f, 11.5f) - close() - } - } - return _textAlignDistributedEvenly!! - } - -private var _textAlignDistributedEvenly: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignDistributedVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignDistributedVertical.kt deleted file mode 100644 index e2660355..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignDistributedVertical.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextAlignDistributedVertical: ImageVector - get() { - if (_textAlignDistributedVertical != null) { - return _textAlignDistributedVertical!! - } - _textAlignDistributedVertical = fluentIcon(name = "Regular.TextAlignDistributedVertical") { - fluentPath { - moveToRelative(16.78f, 5.28f) - lineToRelative(0.72f, -0.72f) - verticalLineToRelative(16.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(19.0f, 4.56f) - lineToRelative(0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - close() - moveTo(6.0f, 19.44f) - lineToRelative(0.72f, -0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) - lineToRelative(-2.0f, 2.0f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(0.72f, 0.72f) - lineTo(4.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(16.69f) - close() - moveTo(12.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(12.5f, 2.75f) - close() - } - } - return _textAlignDistributedVertical!! - } - -private var _textAlignDistributedVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignJustify.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignJustify.kt deleted file mode 100644 index c6273ada..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignJustify.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextAlignJustify: ImageVector - get() { - if (_textAlignJustify != null) { - return _textAlignJustify!! - } - _textAlignJustify = fluentIcon(name = "Regular.TextAlignJustify") { - fluentPath { - moveTo(2.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(2.75f, 6.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 2.0f, 5.75f) - close() - moveTo(2.0f, 18.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(2.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(2.75f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(2.75f, 11.5f) - close() - } - } - return _textAlignJustify!! - } - -private var _textAlignJustify: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignJustifyLow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignJustifyLow.kt deleted file mode 100644 index af973e79..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignJustifyLow.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextAlignJustifyLow: ImageVector - get() { - if (_textAlignJustifyLow != null) { - return _textAlignJustifyLow!! - } - _textAlignJustifyLow = fluentIcon(name = "Regular.TextAlignJustifyLow") { - fluentPath { - moveTo(13.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(2.0f, 18.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(2.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(13.75f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-7.5f) - close() - } - } - return _textAlignJustifyLow!! - } - -private var _textAlignJustifyLow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignJustifyLow90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignJustifyLow90.kt deleted file mode 100644 index 042f83fb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignJustifyLow90.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextAlignJustifyLow90: ImageVector - get() { - if (_textAlignJustifyLow90 != null) { - return _textAlignJustifyLow90!! - } - _textAlignJustifyLow90 = fluentIcon(name = "Regular.TextAlignJustifyLow90") { - fluentPath { - moveTo(18.25f, 13.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-7.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(5.25f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(4.5f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(12.5f, 13.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-7.5f) - close() - } - } - return _textAlignJustifyLow90!! - } - -private var _textAlignJustifyLow90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignJustifyLowRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignJustifyLowRotate270.kt deleted file mode 100644 index 0f94a08e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignJustifyLowRotate270.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextAlignJustifyLowRotate270: ImageVector - get() { - if (_textAlignJustifyLowRotate270 != null) { - return _textAlignJustifyLowRotate270!! - } - _textAlignJustifyLowRotate270 = fluentIcon(name = "Regular.TextAlignJustifyLowRotate270") { - fluentPath { - moveTo(5.75f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - close() - moveTo(18.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(18.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(18.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - close() - moveTo(11.5f, 10.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(7.5f) - close() - } - } - return _textAlignJustifyLowRotate270!! - } - -private var _textAlignJustifyLowRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignJustifyLowRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignJustifyLowRotate90.kt deleted file mode 100644 index 12a758b5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignJustifyLowRotate90.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextAlignJustifyLowRotate90: ImageVector - get() { - if (_textAlignJustifyLowRotate90 != null) { - return _textAlignJustifyLowRotate90!! - } - _textAlignJustifyLowRotate90 = fluentIcon(name = "Regular.TextAlignJustifyLowRotate90") { - fluentPath { - moveTo(18.25f, 13.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-7.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(5.25f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(4.5f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(12.5f, 13.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-7.5f) - close() - } - } - return _textAlignJustifyLowRotate90!! - } - -private var _textAlignJustifyLowRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignJustifyRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignJustifyRotate270.kt deleted file mode 100644 index 8cf74736..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignJustifyRotate270.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextAlignJustifyRotate270: ImageVector - get() { - if (_textAlignJustifyRotate270 != null) { - return _textAlignJustifyRotate270!! - } - _textAlignJustifyRotate270 = fluentIcon(name = "Regular.TextAlignJustifyRotate270") { - fluentPath { - moveTo(5.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(5.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(18.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - close() - moveTo(18.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(18.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(18.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - close() - moveTo(11.5f, 21.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(13.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(18.5f) - close() - } - } - return _textAlignJustifyRotate270!! - } - -private var _textAlignJustifyRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignJustifyRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignJustifyRotate90.kt deleted file mode 100644 index be72c3f1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignJustifyRotate90.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextAlignJustifyRotate90: ImageVector - get() { - if (_textAlignJustifyRotate90 != null) { - return _textAlignJustifyRotate90!! - } - _textAlignJustifyRotate90 = fluentIcon(name = "Regular.TextAlignJustifyRotate90") { - fluentPath { - moveTo(18.25f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(17.5f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(5.25f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(4.5f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(12.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(12.5f, 2.75f) - close() - } - } - return _textAlignJustifyRotate90!! - } - -private var _textAlignJustifyRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignLeft.kt deleted file mode 100644 index e4b0d134..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignLeft.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextAlignLeft: ImageVector - get() { - if (_textAlignLeft != null) { - return _textAlignLeft!! - } - _textAlignLeft = fluentIcon(name = "Regular.TextAlignLeft") { - fluentPath { - moveTo(2.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(2.75f, 6.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 2.0f, 5.75f) - close() - moveTo(2.0f, 18.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(2.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(2.75f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(2.75f, 11.5f) - close() - } - } - return _textAlignLeft!! - } - -private var _textAlignLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignLeftRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignLeftRotate270.kt deleted file mode 100644 index 4a155cb0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignLeftRotate270.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextAlignLeftRotate270: ImageVector - get() { - if (_textAlignLeftRotate270 != null) { - return _textAlignLeftRotate270!! - } - _textAlignLeftRotate270 = fluentIcon(name = "Regular.TextAlignLeftRotate270") { - fluentPath { - moveTo(5.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(5.0f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - close() - moveTo(18.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - close() - moveTo(11.5f, 21.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(13.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(18.5f) - close() - } - } - return _textAlignLeftRotate270!! - } - -private var _textAlignLeftRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignLeftRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignLeftRotate90.kt deleted file mode 100644 index 53c33bf1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignLeftRotate90.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextAlignLeftRotate90: ImageVector - get() { - if (_textAlignLeftRotate90 != null) { - return _textAlignLeftRotate90!! - } - _textAlignLeftRotate90 = fluentIcon(name = "Regular.TextAlignLeftRotate90") { - fluentPath { - moveTo(18.25f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(17.5f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(5.25f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(4.5f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(12.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(12.5f, 2.75f) - close() - } - } - return _textAlignLeftRotate90!! - } - -private var _textAlignLeftRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignRight.kt deleted file mode 100644 index e12e95b0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignRight.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextAlignRight: ImageVector - get() { - if (_textAlignRight != null) { - return _textAlignRight!! - } - _textAlignRight = fluentIcon(name = "Regular.TextAlignRight") { - fluentPath { - moveTo(5.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(5.75f, 6.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 5.0f, 5.75f) - close() - moveTo(10.0f, 18.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(2.75f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(2.75f, 11.5f) - close() - } - } - return _textAlignRight!! - } - -private var _textAlignRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignRightRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignRightRotate270.kt deleted file mode 100644 index a8eaf614..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignRightRotate270.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextAlignRightRotate270: ImageVector - get() { - if (_textAlignRightRotate270 != null) { - return _textAlignRightRotate270!! - } - _textAlignRightRotate270 = fluentIcon(name = "Regular.TextAlignRightRotate270") { - fluentPath { - moveTo(5.75f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(5.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - close() - moveTo(18.75f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(18.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - close() - moveTo(11.5f, 21.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(13.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(18.5f) - close() - } - } - return _textAlignRightRotate270!! - } - -private var _textAlignRightRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignRightRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignRightRotate90.kt deleted file mode 100644 index 1cefc839..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextAlignRightRotate90.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextAlignRightRotate90: ImageVector - get() { - if (_textAlignRightRotate90 != null) { - return _textAlignRightRotate90!! - } - _textAlignRightRotate90 = fluentIcon(name = "Regular.TextAlignRightRotate90") { - fluentPath { - moveTo(18.25f, 5.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(17.5f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(5.25f, 10.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-10.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(12.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(12.5f, 2.75f) - close() - } - } - return _textAlignRightRotate90!! - } - -private var _textAlignRightRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBold.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBold.kt deleted file mode 100644 index f44ca3bd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBold.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextBold: ImageVector - get() { - if (_textBold != null) { - return _textBold!! - } - _textBold = fluentIcon(name = "Regular.TextBold") { - fluentPath { - moveTo(6.94f, 4.44f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 8.0f, 4.0f) - horizontalLineToRelative(4.38f) - arcToRelative(4.64f, 4.64f, 0.0f, false, true, 3.75f, 7.3f) - arcTo(4.7f, 4.7f, 0.0f, false, true, 18.0f, 15.13f) - curveToRelative(0.0f, 3.11f, -2.7f, 4.88f, -4.88f, 4.88f) - lineTo(8.0f, 20.01f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) - verticalLineToRelative(-13.0f) - curveToRelative(0.0f, -0.4f, 0.15f, -0.78f, 0.44f, -1.06f) - close() - moveTo(9.5f, 10.25f) - horizontalLineToRelative(2.88f) - curveToRelative(0.9f, 0.0f, 1.62f, -0.76f, 1.62f, -1.62f) - curveTo(14.0f, 7.76f, 13.28f, 7.0f, 12.38f, 7.0f) - lineTo(9.5f, 7.0f) - verticalLineToRelative(3.25f) - close() - moveTo(9.5f, 13.25f) - lineTo(9.5f, 17.0f) - horizontalLineToRelative(3.62f) - curveToRelative(0.87f, 0.0f, 1.88f, -0.75f, 1.88f, -1.88f) - arcToRelative(1.9f, 1.9f, 0.0f, false, false, -1.88f, -1.87f) - lineTo(9.5f, 13.25f) - close() - } - } - return _textBold!! - } - -private var _textBold: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBoxSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBoxSettings.kt deleted file mode 100644 index eff9913d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBoxSettings.kt +++ /dev/null @@ -1,92 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextBoxSettings: ImageVector - get() { - if (_textBoxSettings != null) { - return _textBoxSettings!! - } - _textBoxSettings = fluentIcon(name = "Regular.TextBoxSettings") { - fluentPath { - moveTo(18.25f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(6.27f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 5.74f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(5.75f, 4.49f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(5.56f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(5.75f, 20.99f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(12.5f) - close() - moveTo(14.25f, 11.5f) - curveToRelative(0.16f, 0.0f, 0.31f, 0.05f, 0.44f, 0.14f) - curveToRelative(-0.71f, 0.34f, -1.34f, 0.8f, -1.88f, 1.36f) - lineTo(6.75f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(7.6f) - close() - moveTo(6.75f, 15.5f) - horizontalLineToRelative(4.56f) - curveToRelative(-0.15f, 0.48f, -0.25f, 0.98f, -0.3f, 1.5f) - lineTo(6.76f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(17.25f, 7.5f) - lineTo(6.65f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(10.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(12.5f, 15.63f) - lineTo(12.95f, 16.06f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, 2.88f) - lineToRelative(-0.45f, 0.43f) - curveToRelative(0.2f, 0.57f, 0.5f, 1.1f, 0.85f, 1.57f) - lineToRelative(0.6f, -0.18f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.52f, 1.45f) - lineToRelative(0.17f, 0.72f) - arcToRelative(5.18f, 5.18f, 0.0f, false, false, 1.72f, 0.0f) - lineToRelative(0.17f, -0.72f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.52f, -1.45f) - lineToRelative(0.6f, 0.18f) - curveToRelative(0.36f, -0.47f, 0.65f, -1.0f, 0.85f, -1.57f) - lineToRelative(-0.45f, -0.43f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -2.88f) - lineToRelative(0.45f, -0.43f) - curveToRelative(-0.2f, -0.58f, -0.5f, -1.1f, -0.85f, -1.57f) - lineToRelative(-0.6f, 0.18f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.52f, -1.45f) - lineToRelative(-0.17f, -0.72f) - arcToRelative(5.17f, 5.17f, 0.0f, false, false, -1.72f, 0.0f) - lineToRelative(-0.17f, 0.72f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.52f, 1.45f) - lineToRelative(-0.6f, -0.18f) - curveToRelative(-0.36f, 0.47f, -0.65f, 1.0f, -0.85f, 1.57f) - close() - moveTo(17.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) - close() - } - } - return _textBoxSettings!! - } - -private var _textBoxSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBulletListAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBulletListAdd.kt deleted file mode 100644 index a2dec659..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBulletListAdd.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextBulletListAdd: ImageVector - get() { - if (_textBulletListAdd != null) { - return _textBulletListAdd!! - } - _textBulletListAdd = fluentIcon(name = "Regular.TextBulletListAdd") { - fluentPath { - moveTo(4.5f, 18.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) - close() - moveTo(12.02f, 18.0f) - lineTo(6.65f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(5.56f) - arcToRelative(6.46f, 6.46f, 0.0f, false, true, -0.3f, -1.5f) - close() - moveTo(13.81f, 13.0f) - lineTo(6.75f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(9.34f) - curveToRelative(-0.83f, 0.35f, -1.57f, 0.86f, -2.18f, 1.5f) - close() - moveTo(4.5f, 12.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) - close() - moveTo(4.5f, 5.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) - close() - moveTo(21.25f, 5.0f) - lineTo(6.65f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(14.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(24.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(19.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(18.0f, 18.0f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(18.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(19.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(19.0f, 18.0f) - close() - } - } - return _textBulletListAdd!! - } - -private var _textBulletListAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBulletListLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBulletListLtr.kt deleted file mode 100644 index d7722580..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBulletListLtr.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextBulletListLtr: ImageVector - get() { - if (_textBulletListLtr != null) { - return _textBulletListLtr!! - } - _textBulletListLtr = fluentIcon(name = "Regular.TextBulletListLtr") { - fluentPath { - moveTo(3.25f, 17.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(6.75f, 18.0f) - horizontalLineToRelative(14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(14.6f) - horizontalLineToRelative(-14.5f) - close() - moveTo(3.25f, 11.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(6.75f, 11.5f) - horizontalLineToRelative(14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(14.6f) - horizontalLineToRelative(-14.5f) - close() - moveTo(3.25f, 4.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(6.75f, 5.0f) - horizontalLineToRelative(14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(14.6f) - horizontalLineToRelative(-14.5f) - close() - } - } - return _textBulletListLtr!! - } - -private var _textBulletListLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBulletListLtr90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBulletListLtr90.kt deleted file mode 100644 index e69ec1cd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBulletListLtr90.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextBulletListLtr90: ImageVector - get() { - if (_textBulletListLtr90 != null) { - return _textBulletListLtr90!! - } - _textBulletListLtr90 = fluentIcon(name = "Regular.TextBulletListLtr90") { - fluentPath { - moveTo(6.5f, 3.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(6.0f, 6.75f) - verticalLineToRelative(14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(4.5f, 6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.1f) - close() - moveTo(13.0f, 3.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(12.5f, 6.75f) - verticalLineToRelative(14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(11.0f, 6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.1f) - close() - moveTo(19.5f, 3.25f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) - close() - moveTo(19.0f, 6.75f) - verticalLineToRelative(14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(17.5f, 6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.1f) - close() - } - } - return _textBulletListLtr90!! - } - -private var _textBulletListLtr90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBulletListLtrRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBulletListLtrRotate270.kt deleted file mode 100644 index 9a185599..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBulletListLtrRotate270.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextBulletListLtrRotate270: ImageVector - get() { - if (_textBulletListLtrRotate270 != null) { - return _textBulletListLtrRotate270!! - } - _textBulletListLtrRotate270 = fluentIcon(name = "Regular.TextBulletListLtrRotate270") { - fluentPath { - moveTo(17.5f, 20.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) - close() - moveTo(18.0f, 17.25f) - lineTo(18.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(14.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-0.1f) - close() - moveTo(11.0f, 20.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) - close() - moveTo(11.5f, 17.25f) - lineTo(11.5f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(14.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-0.1f) - close() - moveTo(4.5f, 20.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) - close() - moveTo(5.0f, 17.25f) - lineTo(5.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(14.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-0.1f) - close() - } - } - return _textBulletListLtrRotate270!! - } - -private var _textBulletListLtrRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBulletListRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBulletListRtl.kt deleted file mode 100644 index a1d7ecb6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBulletListRtl.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextBulletListRtl: ImageVector - get() { - if (_textBulletListRtl != null) { - return _textBulletListRtl!! - } - _textBulletListRtl = fluentIcon(name = "Regular.TextBulletListRtl") { - fluentPath { - moveTo(20.75f, 17.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(17.25f, 18.0f) - lineTo(2.75f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - horizontalLineToRelative(14.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(20.75f, 11.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(17.25f, 11.5f) - lineTo(2.75f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - horizontalLineToRelative(14.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(20.75f, 4.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) - close() - moveTo(17.25f, 5.0f) - lineTo(2.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - horizontalLineToRelative(14.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - } - } - return _textBulletListRtl!! - } - -private var _textBulletListRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBulletListSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBulletListSquare.kt deleted file mode 100644 index 5eeb9ccc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBulletListSquare.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextBulletListSquare: ImageVector - get() { - if (_textBulletListSquare != null) { - return _textBulletListSquare!! - } - _textBulletListSquare = fluentIcon(name = "Regular.TextBulletListSquare") { - fluentPath { - moveTo(8.75f, 8.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(10.5f, 8.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(10.5f, 12.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(11.25f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.5f) - close() - moveTo(7.75f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(8.75f, 15.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(5.25f, 3.0f) - curveTo(4.01f, 3.0f, 3.0f, 4.0f, 3.0f, 5.25f) - verticalLineToRelative(13.5f) - curveTo(3.0f, 19.99f, 4.0f, 21.0f, 5.25f, 21.0f) - horizontalLineToRelative(13.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(21.0f, 5.25f) - curveTo(21.0f, 4.01f, 20.0f, 3.0f, 18.75f, 3.0f) - lineTo(5.25f, 3.0f) - close() - moveTo(4.5f, 5.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(5.25f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(4.5f, 5.25f) - close() - } - } - return _textBulletListSquare!! - } - -private var _textBulletListSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBulletListSquareEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBulletListSquareEdit.kt deleted file mode 100644 index e757fef6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBulletListSquareEdit.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextBulletListSquareEdit: ImageVector - get() { - if (_textBulletListSquareEdit != null) { - return _textBulletListSquareEdit!! - } - _textBulletListSquareEdit = fluentIcon(name = "Regular.TextBulletListSquareEdit") { - fluentPath { - moveTo(5.25f, 3.0f) - curveTo(4.01f, 3.0f, 3.0f, 4.0f, 3.0f, 5.25f) - verticalLineToRelative(13.5f) - curveTo(3.0f, 19.99f, 4.0f, 21.0f, 5.25f, 21.0f) - horizontalLineToRelative(5.91f) - lineToRelative(0.36f, -1.42f) - lineToRelative(0.02f, -0.08f) - lineTo(5.25f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(4.5f, 5.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(5.98f) - curveToRelative(0.48f, -0.19f, 1.0f, -0.26f, 1.5f, -0.22f) - lineTo(21.0f, 5.25f) - curveTo(21.0f, 4.01f, 20.0f, 3.0f, 18.75f, 3.0f) - lineTo(5.25f, 3.0f) - close() - moveTo(15.35f, 15.0f) - horizontalLineToRelative(-4.1f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(2.6f) - lineToRelative(1.5f, -1.5f) - close() - moveTo(8.75f, 8.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(11.25f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.5f) - close() - moveTo(11.25f, 11.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.5f) - close() - moveTo(7.75f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(8.75f, 15.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(19.1f, 12.67f) - lineTo(13.2f, 18.57f) - curveToRelative(-0.35f, 0.34f, -0.6f, 0.78f, -0.71f, 1.25f) - lineToRelative(-0.46f, 1.83f) - curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) - lineToRelative(1.83f, -0.46f) - curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) - lineToRelative(5.9f, -5.9f) - arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) - close() - } - } - return _textBulletListSquareEdit!! - } - -private var _textBulletListSquareEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBulletListSquareWarning.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBulletListSquareWarning.kt deleted file mode 100644 index 8e64b112..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBulletListSquareWarning.kt +++ /dev/null @@ -1,93 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextBulletListSquareWarning: ImageVector - get() { - if (_textBulletListSquareWarning != null) { - return _textBulletListSquareWarning!! - } - _textBulletListSquareWarning = fluentIcon(name = "Regular.TextBulletListSquareWarning") { - fluentPath { - moveTo(5.25f, 3.0f) - curveTo(4.01f, 3.0f, 3.0f, 4.0f, 3.0f, 5.25f) - verticalLineToRelative(13.5f) - curveTo(3.0f, 19.99f, 4.0f, 21.0f, 5.25f, 21.0f) - horizontalLineToRelative(5.8f) - curveToRelative(0.05f, -0.26f, 0.15f, -0.51f, 0.28f, -0.74f) - lineToRelative(0.43f, -0.76f) - lineTo(5.25f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(4.5f, 5.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(19.5f, 13.0f) - lineToRelative(0.17f, 0.26f) - lineTo(21.0f, 15.59f) - lineTo(21.0f, 5.25f) - curveTo(21.0f, 4.01f, 20.0f, 3.0f, 18.75f, 3.0f) - lineTo(5.25f, 3.0f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(4.47f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 17.5f, 12.0f) - close() - moveTo(14.34f, 15.0f) - horizontalLineToRelative(-3.09f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(2.23f) - lineToRelative(0.86f, -1.5f) - close() - moveTo(7.75f, 9.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(11.25f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.5f) - close() - moveTo(7.75f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(7.75f, 16.75f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(17.11f, 13.05f) - arcToRelative(1.49f, 1.49f, 0.0f, false, true, 1.69f, 0.7f) - lineToRelative(4.0f, 7.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 21.5f, 23.0f) - horizontalLineToRelative(-8.0f) - arcToRelative(1.49f, 1.49f, 0.0f, false, true, -1.5f, -1.5f) - curveToRelative(0.0f, -0.26f, 0.07f, -0.52f, 0.2f, -0.75f) - lineToRelative(4.0f, -7.0f) - curveToRelative(0.2f, -0.36f, 0.54f, -0.6f, 0.9f, -0.7f) - close() - moveTo(18.0f, 15.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-3.0f) - close() - moveTo(17.5f, 21.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - } - } - return _textBulletListSquareWarning!! - } - -private var _textBulletListSquareWarning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBulletListTree.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBulletListTree.kt deleted file mode 100644 index 08b4d96a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextBulletListTree.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextBulletListTree: ImageVector - get() { - if (_textBulletListTree != null) { - return _textBulletListTree!! - } - _textBulletListTree = fluentIcon(name = "Regular.TextBulletListTree") { - fluentPath { - moveTo(7.25f, 17.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(10.75f, 18.0f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-10.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(10.6f) - horizontalLineToRelative(-10.5f) - close() - moveTo(3.25f, 11.0f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(6.75f, 11.5f) - horizontalLineToRelative(14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(14.6f) - horizontalLineToRelative(-14.5f) - close() - moveTo(3.25f, 4.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) - close() - moveTo(6.75f, 5.0f) - horizontalLineToRelative(14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(14.6f) - horizontalLineToRelative(-14.5f) - close() - } - } - return _textBulletListTree!! - } - -private var _textBulletListTree: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextCaseLowercase.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextCaseLowercase.kt deleted file mode 100644 index 8b9c5fdb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextCaseLowercase.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextCaseLowercase: ImageVector - get() { - if (_textCaseLowercase != null) { - return _textCaseLowercase!! - } - _textCaseLowercase = fluentIcon(name = "Regular.TextCaseLowercase") { - fluentPath { - moveTo(13.75f, 3.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(8.24f) - arcTo(3.72f, 3.72f, 0.0f, false, true, 17.0f, 11.0f) - curveToRelative(2.2f, 0.0f, 4.0f, 2.01f, 4.0f, 4.5f) - reflectiveCurveTo(19.2f, 20.0f, 17.0f, 20.0f) - curveToRelative(-0.95f, 0.0f, -1.82f, -0.37f, -2.5f, -0.99f) - verticalLineToRelative(0.24f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(13.0f, 3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(14.5f, 15.5f) - curveToRelative(0.0f, 1.83f, 1.28f, 3.0f, 2.5f, 3.0f) - reflectiveCurveToRelative(2.5f, -1.17f, 2.5f, -3.0f) - reflectiveCurveToRelative(-1.28f, -3.0f, -2.5f, -3.0f) - reflectiveCurveToRelative(-2.5f, 1.17f, -2.5f, 3.0f) - close() - moveTo(7.5f, 10.5f) - lineTo(7.79f, 10.51f) - curveToRelative(1.96f, 0.1f, 3.12f, 1.23f, 3.2f, 3.05f) - lineToRelative(0.01f, 0.2f) - verticalLineToRelative(5.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-0.1f) - arcToRelative(5.6f, 5.6f, 0.0f, false, true, -2.75f, 0.85f) - arcToRelative(3.13f, 3.13f, 0.0f, false, true, -3.25f, -3.25f) - curveToRelative(0.0f, -1.72f, 1.19f, -3.0f, 3.16f, -3.24f) - arcToRelative(7.53f, 7.53f, 0.0f, false, true, 2.84f, 0.2f) - curveToRelative(-0.01f, -1.1f, -0.56f, -1.65f, -1.79f, -1.71f) - curveToRelative(-0.96f, -0.05f, -1.64f, 0.09f, -2.03f, 0.36f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.86f, -1.22f) - arcToRelative(4.46f, 4.46f, 0.0f, false, true, 2.68f, -0.65f) - close() - moveTo(9.5f, 15.32f) - lineTo(9.2f, 15.23f) - curveToRelative(-0.81f, -0.22f, -1.6f, -0.28f, -2.36f, -0.19f) - curveToRelative(-1.23f, 0.15f, -1.84f, 0.8f, -1.84f, 1.76f) - curveToRelative(0.0f, 1.1f, 0.71f, 1.75f, 1.75f, 1.75f) - curveToRelative(0.68f, 0.0f, 1.52f, -0.32f, 2.5f, -0.97f) - lineToRelative(0.25f, -0.17f) - verticalLineToRelative(-2.09f) - close() - } - } - return _textCaseLowercase!! - } - -private var _textCaseLowercase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextCaseTitle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextCaseTitle.kt deleted file mode 100644 index fbe2a856..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextCaseTitle.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextCaseTitle: ImageVector - get() { - if (_textCaseTitle != null) { - return _textCaseTitle!! - } - _textCaseTitle = fluentIcon(name = "Regular.TextCaseTitle") { - fluentPath { - moveTo(15.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.24f) - curveToRelative(0.68f, 0.62f, 1.55f, 0.99f, 2.5f, 0.99f) - curveToRelative(2.2f, 0.0f, 4.0f, -2.01f, 4.0f, -4.5f) - reflectiveCurveTo(21.2f, 11.0f, 19.0f, 11.0f) - curveToRelative(-0.95f, 0.0f, -1.82f, 0.37f, -2.5f, 0.99f) - lineTo(16.5f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(16.5f, 15.5f) - curveToRelative(0.0f, -1.83f, 1.28f, -3.0f, 2.5f, -3.0f) - reflectiveCurveToRelative(2.5f, 1.17f, 2.5f, 3.0f) - reflectiveCurveToRelative(-1.28f, 3.0f, -2.5f, 3.0f) - reflectiveCurveToRelative(-2.5f, -1.17f, -2.5f, -3.0f) - close() - moveTo(7.76f, 3.0f) - curveToRelative(0.31f, 0.0f, 0.6f, 0.2f, 0.7f, 0.5f) - lineToRelative(5.5f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.42f, 0.5f) - lineToRelative(-1.42f, -4.0f) - lineTo(4.01f, 15.5f) - lineToRelative(-1.56f, 4.02f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.4f, -0.54f) - lineToRelative(6.0f, -15.5f) - curveToRelative(0.11f, -0.3f, 0.4f, -0.48f, 0.71f, -0.48f) - close() - moveTo(7.72f, 5.9f) - lineTo(4.59f, 14.0f) - horizontalLineToRelative(6.0f) - lineTo(7.72f, 5.9f) - close() - } - } - return _textCaseTitle!! - } - -private var _textCaseTitle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextCaseUppercase.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextCaseUppercase.kt deleted file mode 100644 index e8e708be..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextCaseUppercase.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextCaseUppercase: ImageVector - get() { - if (_textCaseUppercase != null) { - return _textCaseUppercase!! - } - _textCaseUppercase = fluentIcon(name = "Regular.TextCaseUppercase") { - fluentPath { - moveTo(7.7f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.4f, -0.02f) - lineToRelative(-6.0f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.4f, 0.54f) - lineToRelative(1.56f, -4.02f) - horizontalLineToRelative(7.11f) - lineToRelative(1.42f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.42f, -0.5f) - lineTo(7.7f, 3.5f) - close() - moveTo(3.85f, 14.0f) - lineToRelative(3.13f, -8.1f) - lineTo(9.84f, 14.0f) - horizontalLineToRelative(-6.0f) - close() - moveTo(14.75f, 3.25f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 14.0f, 4.0f) - verticalLineToRelative(15.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(4.13f) - arcToRelative(4.63f, 4.63f, 0.0f, false, false, 2.0f, -8.8f) - arcTo(4.5f, 4.5f, 0.0f, false, false, 18.0f, 3.26f) - horizontalLineToRelative(-3.25f) - close() - moveTo(21.0f, 7.75f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) - horizontalLineToRelative(-2.5f) - verticalLineToRelative(-6.0f) - horizontalLineTo(18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) - close() - moveTo(18.87f, 18.5f) - horizontalLineTo(15.5f) - verticalLineToRelative(-6.25f) - horizontalLineToRelative(3.38f) - arcToRelative(3.12f, 3.12f, 0.0f, true, true, 0.0f, 6.25f) - close() - } - } - return _textCaseUppercase!! - } - -private var _textCaseUppercase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextChangeCase.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextChangeCase.kt deleted file mode 100644 index 33aab347..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextChangeCase.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextChangeCase: ImageVector - get() { - if (_textChangeCase != null) { - return _textChangeCase!! - } - _textChangeCase = fluentIcon(name = "Regular.TextChangeCase") { - fluentPath { - moveTo(16.51f, 3.0f) - curveToRelative(0.31f, 0.0f, 0.6f, 0.2f, 0.7f, 0.5f) - lineTo(22.7f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.42f, 0.5f) - lineToRelative(-1.42f, -4.0f) - horizontalLineToRelative(-7.11f) - lineToRelative(-1.56f, 4.02f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.4f, -0.54f) - lineToRelative(6.0f, -15.5f) - curveToRelative(0.11f, -0.3f, 0.4f, -0.48f, 0.71f, -0.48f) - close() - moveTo(16.47f, 5.9f) - lineTo(13.34f, 14.0f) - horizontalLineToRelative(6.0f) - lineToRelative(-2.87f, -8.1f) - close() - moveTo(5.5f, 10.5f) - lineToRelative(0.29f, 0.01f) - curveToRelative(1.96f, 0.1f, 3.12f, 1.23f, 3.2f, 3.05f) - lineToRelative(0.01f, 0.2f) - verticalLineToRelative(5.5f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - verticalLineToRelative(-0.1f) - arcToRelative(5.6f, 5.6f, 0.0f, false, true, -2.75f, 0.85f) - arcToRelative(3.13f, 3.13f, 0.0f, false, true, -3.25f, -3.25f) - curveToRelative(0.0f, -1.72f, 1.19f, -3.0f, 3.16f, -3.24f) - arcToRelative(7.53f, 7.53f, 0.0f, false, true, 2.84f, 0.2f) - curveToRelative(-0.01f, -1.1f, -0.56f, -1.65f, -1.79f, -1.71f) - curveToRelative(-0.96f, -0.05f, -1.64f, 0.09f, -2.03f, 0.36f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.86f, -1.22f) - arcToRelative(4.46f, 4.46f, 0.0f, false, true, 2.68f, -0.65f) - close() - moveTo(7.5f, 15.32f) - lineTo(7.2f, 15.23f) - curveToRelative(-0.81f, -0.22f, -1.6f, -0.28f, -2.36f, -0.19f) - curveToRelative(-1.23f, 0.15f, -1.84f, 0.8f, -1.84f, 1.76f) - curveToRelative(0.0f, 1.1f, 0.71f, 1.75f, 1.75f, 1.75f) - curveToRelative(0.68f, 0.0f, 1.52f, -0.32f, 2.5f, -0.97f) - lineToRelative(0.25f, -0.17f) - verticalLineToRelative(-2.09f) - close() - } - } - return _textChangeCase!! - } - -private var _textChangeCase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextClearFormatting.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextClearFormatting.kt deleted file mode 100644 index 6c3316b3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextClearFormatting.kt +++ /dev/null @@ -1,95 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextClearFormatting: ImageVector - get() { - if (_textClearFormatting != null) { - return _textClearFormatting!! - } - _textClearFormatting = fluentIcon(name = "Regular.TextClearFormatting") { - fluentPath { - moveTo(2.21f, 13.82f) - curveToRelative(0.15f, 0.12f, 0.33f, 0.18f, 0.55f, 0.18f) - curveToRelative(0.36f, 0.0f, 0.61f, -0.19f, 0.75f, -0.56f) - lineToRelative(1.07f, -2.92f) - horizontalLineToRelative(4.83f) - lineToRelative(1.08f, 2.92f) - curveToRelative(0.14f, 0.37f, 0.39f, 0.56f, 0.75f, 0.56f) - arcToRelative(0.8f, 0.8f, 0.0f, false, false, 0.54f, -0.18f) - arcToRelative(0.59f, 0.59f, 0.0f, false, false, 0.22f, -0.46f) - curveToRelative(0.0f, -0.11f, -0.03f, -0.25f, -0.1f, -0.41f) - lineTo(7.98f, 2.7f) - curveToRelative(-0.18f, -0.47f, -0.5f, -0.7f, -0.95f, -0.7f) - curveToRelative(-0.49f, 0.0f, -0.82f, 0.24f, -1.0f, 0.71f) - lineTo(2.09f, 12.95f) - curveToRelative(-0.06f, 0.16f, -0.09f, 0.3f, -0.09f, 0.4f) - curveToRelative(0.0f, 0.19f, 0.07f, 0.35f, 0.21f, 0.47f) - close() - moveTo(8.98f, 9.27f) - lineTo(5.02f, 9.27f) - lineTo(6.97f, 3.9f) - horizontalLineToRelative(0.06f) - lineToRelative(1.95f, 5.37f) - close() - moveTo(13.0f, 13.1f) - lineToRelative(1.75f, -1.75f) - arcToRelative(3.97f, 3.97f, 0.0f, false, true, -0.35f, -1.73f) - curveToRelative(0.0f, -0.93f, 0.23f, -1.68f, 0.69f, -2.25f) - arcToRelative(2.16f, 2.16f, 0.0f, false, true, 1.76f, -0.87f) - curveToRelative(0.75f, 0.0f, 1.34f, 0.28f, 1.77f, 0.84f) - curveToRelative(0.36f, 0.47f, 0.57f, 1.07f, 0.63f, 1.8f) - curveToRelative(0.43f, 0.14f, 0.83f, 0.38f, 1.16f, 0.71f) - lineToRelative(0.29f, 0.29f) - lineToRelative(0.02f, -0.52f) - curveToRelative(0.0f, -1.31f, -0.33f, -2.37f, -0.99f, -3.17f) - arcToRelative(3.18f, 3.18f, 0.0f, false, false, -2.58f, -1.19f) - arcToRelative(2.97f, 2.97f, 0.0f, false, false, -2.71f, 1.56f) - horizontalLineToRelative(-0.03f) - lineTo(14.41f, 2.75f) - curveToRelative(0.0f, -0.22f, -0.07f, -0.4f, -0.2f, -0.54f) - arcToRelative(0.65f, 0.65f, 0.0f, false, false, -0.5f, -0.21f) - curveToRelative(-0.21f, 0.0f, -0.38f, 0.07f, -0.52f, 0.21f) - arcToRelative(0.77f, 0.77f, 0.0f, false, false, -0.19f, 0.54f) - verticalLineToRelative(10.36f) - close() - moveTo(16.98f, 21.49f) - lineTo(20.0f, 21.49f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(1.94f, 1.94f, 0.0f, false, true, -1.2f, -0.57f) - lineToRelative(-2.73f, -2.72f) - curveToRelative(-0.76f, -0.77f, -0.76f, -2.0f, 0.0f, -2.76f) - lineToRelative(6.38f, -6.38f) - curveToRelative(0.76f, -0.76f, 2.0f, -0.76f, 2.76f, 0.0f) - lineToRelative(2.72f, 2.72f) - curveToRelative(0.76f, 0.77f, 0.76f, 2.0f, 0.0f, 2.76f) - lineToRelative(-5.45f, 5.45f) - close() - moveTo(18.01f, 11.62f) - lineTo(13.85f, 15.78f) - lineTo(17.21f, 19.14f) - lineTo(21.37f, 14.98f) - arcToRelative(0.45f, 0.45f, 0.0f, false, false, 0.0f, -0.63f) - lineToRelative(-2.72f, -2.73f) - arcToRelative(0.45f, 0.45f, 0.0f, false, false, -0.64f, 0.0f) - close() - moveTo(12.79f, 16.84f) - lineTo(11.63f, 18.0f) - arcToRelative(0.45f, 0.45f, 0.0f, false, false, 0.0f, 0.63f) - lineToRelative(2.73f, 2.73f) - curveToRelative(0.17f, 0.17f, 0.46f, 0.17f, 0.63f, 0.0f) - lineToRelative(1.16f, -1.16f) - lineToRelative(-3.36f, -3.36f) - close() - } - } - return _textClearFormatting!! - } - -private var _textClearFormatting: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextCollapse.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextCollapse.kt deleted file mode 100644 index cfc02846..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextCollapse.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextCollapse: ImageVector - get() { - if (_textCollapse != null) { - return _textCollapse!! - } - _textCollapse = fluentIcon(name = "Regular.TextCollapse") { - fluentPath { - moveTo(6.75f, 4.5f) - horizontalLineToRelative(14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - lineTo(6.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(6.75f, 19.5f) - horizontalLineToRelative(14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - lineTo(6.75f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(13.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-7.5f) - close() - moveTo(13.0f, 13.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(11.0f, 11.5f) - arcToRelative(4.5f, 4.5f, 0.0f, true, true, -9.0f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 9.0f, 0.0f) - close() - moveTo(9.0f, 11.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - horizontalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - close() - } - } - return _textCollapse!! - } - -private var _textCollapse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColor.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColor.kt deleted file mode 100644 index 264fe91b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColor.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextColor: ImageVector - get() { - if (_textColor != null) { - return _textColor!! - } - _textColor = fluentIcon(name = "Regular.TextColor") { - fluentPath { - moveTo(17.75f, 14.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - lineTo(5.25f, 22.0f) - curveTo(4.01f, 22.0f, 3.0f, 21.0f, 3.0f, 19.75f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(12.5f) - close() - moveTo(17.75f, 16.0f) - lineTo(5.25f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(12.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(7.05f, 11.97f) - lineTo(10.81f, 2.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.1f) - lineToRelative(0.05f, 0.1f) - lineToRelative(3.75f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.65f) - lineToRelative(-0.05f, -0.1f) - lineToRelative(-1.0f, -2.52f) - horizontalLineToRelative(-4.1f) - lineToRelative(-1.0f, 2.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.88f, 0.45f) - lineToRelative(-0.1f, -0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.45f, -0.87f) - lineToRelative(0.03f, -0.1f) - lineToRelative(3.76f, -9.5f) - lineToRelative(-3.76f, 9.5f) - close() - moveTo(11.5f, 4.79f) - lineTo(10.04f, 8.5f) - horizontalLineToRelative(2.92f) - lineTo(11.5f, 4.8f) - close() - } - } - return _textColor!! - } - -private var _textColor: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColumnOne.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColumnOne.kt deleted file mode 100644 index 36abd9fd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColumnOne.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextColumnOne: ImageVector - get() { - if (_textColumnOne != null) { - return _textColumnOne!! - } - _textColumnOne = fluentIcon(name = "Regular.TextColumnOne") { - fluentPath { - moveTo(5.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(5.75f, 6.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 5.0f, 5.75f) - close() - moveTo(5.0f, 9.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(5.75f, 10.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 5.0f, 9.75f) - close() - moveTo(5.0f, 13.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(5.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(5.0f, 17.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(5.75f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _textColumnOne!! - } - -private var _textColumnOne: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColumnOneNarrow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColumnOneNarrow.kt deleted file mode 100644 index 0b8145cd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColumnOneNarrow.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextColumnOneNarrow: ImageVector - get() { - if (_textColumnOneNarrow != null) { - return _textColumnOneNarrow!! - } - _textColumnOneNarrow = fluentIcon(name = "Regular.TextColumnOneNarrow") { - fluentPath { - moveTo(8.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.5f) - close() - moveTo(8.75f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.5f) - close() - moveTo(8.0f, 13.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(8.75f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.5f) - close() - } - } - return _textColumnOneNarrow!! - } - -private var _textColumnOneNarrow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColumnOneSemiNarrow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColumnOneSemiNarrow.kt deleted file mode 100644 index 73745216..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColumnOneSemiNarrow.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextColumnOneSemiNarrow: ImageVector - get() { - if (_textColumnOneSemiNarrow != null) { - return _textColumnOneSemiNarrow!! - } - _textColumnOneSemiNarrow = fluentIcon(name = "Regular.TextColumnOneSemiNarrow") { - fluentPath { - moveTo(7.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-8.5f) - close() - moveTo(7.75f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-8.5f) - close() - moveTo(7.0f, 13.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(7.75f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-8.5f) - close() - } - } - return _textColumnOneSemiNarrow!! - } - -private var _textColumnOneSemiNarrow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColumnOneWide.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColumnOneWide.kt deleted file mode 100644 index 5dba6a60..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColumnOneWide.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextColumnOneWide: ImageVector - get() { - if (_textColumnOneWide != null) { - return _textColumnOneWide!! - } - _textColumnOneWide = fluentIcon(name = "Regular.TextColumnOneWide") { - fluentPath { - moveTo(3.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 5.0f) - close() - moveTo(3.75f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 9.0f) - close() - moveTo(3.0f, 13.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(3.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(3.75f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 17.0f) - close() - } - } - return _textColumnOneWide!! - } - -private var _textColumnOneWide: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColumnOneWideLightning.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColumnOneWideLightning.kt deleted file mode 100644 index 1f165995..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColumnOneWideLightning.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextColumnOneWideLightning: ImageVector - get() { - if (_textColumnOneWideLightning != null) { - return _textColumnOneWideLightning!! - } - _textColumnOneWideLightning = fluentIcon(name = "Regular.TextColumnOneWideLightning") { - fluentPath { - moveTo(3.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 5.0f) - close() - moveTo(3.75f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 9.0f) - close() - moveTo(3.0f, 13.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(9.06f) - curveToRelative(-0.43f, 0.44f, -0.8f, 0.95f, -1.08f, 1.5f) - lineTo(3.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(11.0f, 17.5f) - curveToRelative(0.0f, -0.17f, 0.0f, -0.34f, 0.02f, -0.5f) - lineTo(3.75f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.33f) - arcToRelative(6.55f, 6.55f, 0.0f, false, true, -0.08f, -1.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(18.53f, 14.0f) - lineTo(17.1f, 14.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.47f, 0.32f) - lineToRelative(-1.13f, 3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.47f, 0.68f) - horizontalLineToRelative(0.78f) - lineToRelative(-0.77f, 2.32f) - arcToRelative(0.52f, 0.52f, 0.0f, false, false, 0.92f, 0.44f) - lineToRelative(2.63f, -4.03f) - arcToRelative(0.47f, 0.47f, 0.0f, false, false, -0.4f, -0.73f) - horizontalLineToRelative(-0.63f) - lineToRelative(0.5f, -1.32f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.47f, -0.68f) - close() - } - } - return _textColumnOneWideLightning!! - } - -private var _textColumnOneWideLightning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColumnThree.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColumnThree.kt deleted file mode 100644 index 38d79605..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColumnThree.kt +++ /dev/null @@ -1,106 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextColumnThree: ImageVector - get() { - if (_textColumnThree != null) { - return _textColumnThree!! - } - _textColumnThree = fluentIcon(name = "Regular.TextColumnThree") { - fluentPath { - moveTo(3.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 5.75f) - close() - moveTo(9.5f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(16.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(3.0f, 9.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 9.75f) - close() - moveTo(9.5f, 9.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(16.0f, 9.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(3.0f, 13.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(9.5f, 13.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(16.0f, 13.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(3.0f, 17.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(9.5f, 17.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(16.0f, 17.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _textColumnThree!! - } - -private var _textColumnThree: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColumnTwo.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColumnTwo.kt deleted file mode 100644 index a65e9b8f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColumnTwo.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextColumnTwo: ImageVector - get() { - if (_textColumnTwo != null) { - return _textColumnTwo!! - } - _textColumnTwo = fluentIcon(name = "Regular.TextColumnTwo") { - fluentPath { - moveTo(3.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 5.75f) - close() - moveTo(3.0f, 9.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 9.75f) - close() - moveTo(3.0f, 13.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(3.0f, 17.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(13.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(13.0f, 9.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(13.0f, 13.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(13.0f, 17.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _textColumnTwo!! - } - -private var _textColumnTwo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColumnTwoLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColumnTwoLeft.kt deleted file mode 100644 index 7bb5bb89..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColumnTwoLeft.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextColumnTwoLeft: ImageVector - get() { - if (_textColumnTwoLeft != null) { - return _textColumnTwoLeft!! - } - _textColumnTwoLeft = fluentIcon(name = "Regular.TextColumnTwoLeft") { - fluentPath { - moveTo(21.0f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(9.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - close() - moveTo(8.0f, 5.75f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 7.25f, 5.0f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - close() - moveTo(21.0f, 9.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(9.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - close() - moveTo(8.0f, 9.75f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 7.25f, 9.0f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - close() - moveTo(21.0f, 13.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(9.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - close() - moveTo(8.0f, 13.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - close() - moveTo(21.0f, 17.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(9.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - close() - moveTo(8.0f, 17.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - close() - } - } - return _textColumnTwoLeft!! - } - -private var _textColumnTwoLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColumnTwoRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColumnTwoRight.kt deleted file mode 100644 index 0768dcbe..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextColumnTwoRight.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextColumnTwoRight: ImageVector - get() { - if (_textColumnTwoRight != null) { - return _textColumnTwoRight!! - } - _textColumnTwoRight = fluentIcon(name = "Regular.TextColumnTwoRight") { - fluentPath { - moveTo(3.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-9.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 5.75f) - close() - moveTo(16.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(3.0f, 9.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-9.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 9.75f) - close() - moveTo(16.0f, 9.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(3.0f, 13.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(16.0f, 13.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(3.0f, 17.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(16.0f, 17.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _textColumnTwoRight!! - } - -private var _textColumnTwoRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextContinuous.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextContinuous.kt deleted file mode 100644 index d9efb33c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextContinuous.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextContinuous: ImageVector - get() { - if (_textContinuous != null) { - return _textContinuous!! - } - _textContinuous = fluentIcon(name = "Regular.TextContinuous") { - fluentPath { - moveTo(3.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 5.0f) - close() - moveTo(8.75f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(8.75f, 9.0f) - close() - moveTo(8.0f, 13.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(8.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(3.75f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 17.0f) - close() - moveTo(3.22f, 11.03f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(1.5f, 1.5f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(0.97f, -0.97f) - lineToRelative(-0.97f, -0.97f) - close() - } - } - return _textContinuous!! - } - -private var _textContinuous: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDensity.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDensity.kt deleted file mode 100644 index 8d58f463..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDensity.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextDensity: ImageVector - get() { - if (_textDensity != null) { - return _textDensity!! - } - _textDensity = fluentIcon(name = "Regular.TextDensity") { - fluentPath { - moveTo(12.25f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(11.5f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(10.0f, 5.0f) - lineTo(2.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(10.0f, 6.5f) - lineTo(10.0f, 5.0f) - close() - moveTo(10.0f, 9.0f) - lineTo(2.75f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(10.0f, 10.5f) - lineTo(10.0f, 9.0f) - close() - moveTo(10.0f, 13.0f) - lineTo(2.75f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(10.0f, 14.5f) - lineTo(10.0f, 13.0f) - close() - moveTo(10.0f, 17.0f) - lineTo(2.75f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(10.0f, 18.5f) - lineTo(10.0f, 17.0f) - close() - moveTo(19.75f, 18.0f) - lineTo(14.5f, 18.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(5.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(14.5f, 15.0f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(5.25f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, 4.5f) - close() - moveTo(19.75f, 10.5f) - lineTo(14.5f, 10.5f) - lineTo(14.5f, 9.0f) - horizontalLineToRelative(5.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(14.5f, 7.5f) - lineTo(14.5f, 6.0f) - horizontalLineToRelative(5.25f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, 4.5f) - close() - } - } - return _textDensity!! - } - -private var _textDensity: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDescription.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDescription.kt deleted file mode 100644 index f442bb46..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDescription.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextDescription: ImageVector - get() { - if (_textDescription != null) { - return _textDescription!! - } - _textDescription = fluentIcon(name = "Regular.TextDescription") { - fluentPath { - moveTo(2.75f, 17.0f) - horizontalLineToRelative(12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(2.75f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(12.6f) - horizontalLineToRelative(-12.5f) - close() - moveTo(2.75f, 13.0f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(2.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(18.6f) - horizontalLineToRelative(-18.5f) - close() - moveTo(2.75f, 9.0f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(2.75f, 10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(18.6f) - horizontalLineToRelative(-18.5f) - close() - moveTo(2.75f, 5.0f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(2.75f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(18.6f) - horizontalLineToRelative(-18.5f) - close() - } - } - return _textDescription!! - } - -private var _textDescription: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDescriptionLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDescriptionLtr.kt deleted file mode 100644 index f44b0623..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDescriptionLtr.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextDescriptionLtr: ImageVector - get() { - if (_textDescriptionLtr != null) { - return _textDescriptionLtr!! - } - _textDescriptionLtr = fluentIcon(name = "Regular.TextDescriptionLtr") { - fluentPath { - moveTo(2.75f, 17.0f) - horizontalLineToRelative(12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(2.75f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(12.6f) - horizontalLineToRelative(-12.5f) - close() - moveTo(2.75f, 13.0f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(2.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(18.6f) - horizontalLineToRelative(-18.5f) - close() - moveTo(2.75f, 9.0f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(2.75f, 10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(18.6f) - horizontalLineToRelative(-18.5f) - close() - moveTo(2.75f, 5.0f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(2.75f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(18.6f) - horizontalLineToRelative(-18.5f) - close() - } - } - return _textDescriptionLtr!! - } - -private var _textDescriptionLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDescriptionRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDescriptionRtl.kt deleted file mode 100644 index fc785dca..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDescriptionRtl.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextDescriptionRtl: ImageVector - get() { - if (_textDescriptionRtl != null) { - return _textDescriptionRtl!! - } - _textDescriptionRtl = fluentIcon(name = "Regular.TextDescriptionRtl") { - fluentPath { - moveTo(21.25f, 17.0f) - lineTo(8.75f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - horizontalLineToRelative(12.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - lineTo(8.75f, 17.0f) - horizontalLineToRelative(12.5f) - close() - moveTo(21.25f, 13.0f) - lineTo(2.75f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - horizontalLineToRelative(18.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - lineTo(2.75f, 13.0f) - horizontalLineToRelative(18.5f) - close() - moveTo(21.25f, 9.0f) - lineTo(2.75f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - horizontalLineToRelative(18.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - lineTo(2.75f, 9.0f) - horizontalLineToRelative(18.5f) - close() - moveTo(21.25f, 5.0f) - lineTo(2.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - horizontalLineToRelative(18.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - lineTo(2.75f, 5.0f) - horizontalLineToRelative(18.5f) - close() - } - } - return _textDescriptionRtl!! - } - -private var _textDescriptionRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionHorizontalLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionHorizontalLeft.kt deleted file mode 100644 index 056e9eb2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionHorizontalLeft.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextDirectionHorizontalLeft: ImageVector - get() { - if (_textDirectionHorizontalLeft != null) { - return _textDirectionHorizontalLeft!! - } - _textDirectionHorizontalLeft = fluentIcon(name = "Regular.TextDirectionHorizontalLeft") { - fluentPath { - moveToRelative(20.95f, 12.97f) - lineToRelative(-3.76f, -9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.34f, -0.1f) - lineToRelative(-0.05f, 0.1f) - lineToRelative(-3.75f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.35f, 0.65f) - lineToRelative(0.05f, -0.1f) - lineToRelative(1.0f, -2.52f) - horizontalLineToRelative(4.1f) - lineToRelative(1.0f, 2.52f) - curveToRelative(0.14f, 0.35f, 0.52f, 0.54f, 0.88f, 0.45f) - lineToRelative(0.1f, -0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.45f, -0.87f) - lineToRelative(-0.03f, -0.1f) - close() - moveTo(16.5f, 5.79f) - lineToRelative(1.46f, 3.71f) - horizontalLineToRelative(-2.92f) - lineToRelative(1.46f, -3.7f) - close() - moveTo(12.0f, 7.75f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(5.56f, 8.5f) - lineToRelative(0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) - lineTo(5.56f, 7.0f) - horizontalLineToRelative(5.69f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(21.0f, 17.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(5.56f, 18.0f) - lineToRelative(0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) - lineToRelative(-0.72f, 0.72f) - horizontalLineToRelative(14.69f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - } - } - return _textDirectionHorizontalLeft!! - } - -private var _textDirectionHorizontalLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionHorizontalLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionHorizontalLtr.kt deleted file mode 100644 index 16e9c304..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionHorizontalLtr.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextDirectionHorizontalLtr: ImageVector - get() { - if (_textDirectionHorizontalLtr != null) { - return _textDirectionHorizontalLtr!! - } - _textDirectionHorizontalLtr = fluentIcon(name = "Regular.TextDirectionHorizontalLtr") { - fluentPath { - moveToRelative(3.05f, 12.97f) - lineToRelative(3.76f, -9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.1f) - lineToRelative(0.05f, 0.1f) - lineToRelative(3.75f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.65f) - lineToRelative(-0.05f, -0.1f) - lineToRelative(-1.0f, -2.52f) - horizontalLineToRelative(-4.1f) - lineToRelative(-1.0f, 2.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.88f, 0.45f) - lineToRelative(-0.1f, -0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.45f, -0.87f) - lineToRelative(0.03f, -0.1f) - close() - moveTo(7.5f, 5.79f) - lineTo(6.04f, 9.5f) - horizontalLineToRelative(2.92f) - lineTo(7.5f, 5.8f) - close() - moveTo(12.0f, 7.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(5.69f) - lineToRelative(-0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(2.0f, -2.0f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(0.72f, 0.72f) - horizontalLineToRelative(-5.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(3.0f, 17.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(14.69f) - lineToRelative(-0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(2.0f, -2.0f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(0.72f, 0.72f) - lineTo(3.75f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - } - } - return _textDirectionHorizontalLtr!! - } - -private var _textDirectionHorizontalLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionHorizontalRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionHorizontalRight.kt deleted file mode 100644 index a408db0e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionHorizontalRight.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextDirectionHorizontalRight: ImageVector - get() { - if (_textDirectionHorizontalRight != null) { - return _textDirectionHorizontalRight!! - } - _textDirectionHorizontalRight = fluentIcon(name = "Regular.TextDirectionHorizontalRight") { - fluentPath { - moveToRelative(3.05f, 12.97f) - lineToRelative(3.76f, -9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.1f) - lineToRelative(0.05f, 0.1f) - lineToRelative(3.75f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.65f) - lineToRelative(-0.05f, -0.1f) - lineToRelative(-1.0f, -2.52f) - horizontalLineToRelative(-4.1f) - lineToRelative(-1.0f, 2.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.88f, 0.45f) - lineToRelative(-0.1f, -0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.45f, -0.87f) - lineToRelative(0.03f, -0.1f) - close() - moveTo(7.5f, 5.79f) - lineTo(6.04f, 9.5f) - horizontalLineToRelative(2.92f) - lineTo(7.5f, 5.8f) - close() - moveTo(12.0f, 7.75f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(5.69f) - lineToRelative(-0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(2.0f, -2.0f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(0.72f, 0.72f) - horizontalLineToRelative(-5.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(3.0f, 17.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(14.69f) - lineToRelative(-0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(2.0f, -2.0f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(0.72f, 0.72f) - lineTo(3.75f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - } - } - return _textDirectionHorizontalRight!! - } - -private var _textDirectionHorizontalRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionHorizontalRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionHorizontalRtl.kt deleted file mode 100644 index 367929f1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionHorizontalRtl.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextDirectionHorizontalRtl: ImageVector - get() { - if (_textDirectionHorizontalRtl != null) { - return _textDirectionHorizontalRtl!! - } - _textDirectionHorizontalRtl = fluentIcon(name = "Regular.TextDirectionHorizontalRtl") { - fluentPath { - moveToRelative(20.95f, 12.97f) - lineToRelative(-3.76f, -9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.34f, -0.1f) - lineToRelative(-0.05f, 0.1f) - lineToRelative(-3.75f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.35f, 0.65f) - lineToRelative(0.05f, -0.1f) - lineToRelative(1.0f, -2.52f) - horizontalLineToRelative(4.1f) - lineToRelative(1.0f, 2.52f) - curveToRelative(0.14f, 0.35f, 0.52f, 0.54f, 0.88f, 0.45f) - lineToRelative(0.1f, -0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.45f, -0.87f) - lineToRelative(-0.03f, -0.1f) - close() - moveTo(16.5f, 5.79f) - lineToRelative(1.46f, 3.71f) - horizontalLineToRelative(-2.92f) - lineToRelative(1.46f, -3.7f) - close() - moveTo(12.0f, 7.75f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(5.56f, 8.5f) - lineToRelative(0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) - lineTo(5.56f, 7.0f) - horizontalLineToRelative(5.69f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - moveTo(21.0f, 17.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(5.56f, 18.0f) - lineToRelative(0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) - lineToRelative(-0.72f, 0.72f) - horizontalLineToRelative(14.69f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - close() - } - } - return _textDirectionHorizontalRtl!! - } - -private var _textDirectionHorizontalRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionRotate270Right.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionRotate270Right.kt deleted file mode 100644 index 54d4fc3e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionRotate270Right.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextDirectionRotate270Right: ImageVector - get() { - if (_textDirectionRotate270Right != null) { - return _textDirectionRotate270Right!! - } - _textDirectionRotate270Right = fluentIcon(name = "Regular.TextDirectionRotate270Right") { - fluentPath { - moveTo(5.22f, 5.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineTo(7.0f, 5.56f) - verticalLineToRelative(3.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(8.5f, 5.56f) - lineToRelative(0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-2.0f, 2.0f) - close() - moveTo(12.97f, 20.95f) - lineTo(3.47f, 17.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.34f) - lineToRelative(0.1f, -0.05f) - lineToRelative(9.5f, -3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.65f, 1.35f) - lineToRelative(-0.1f, 0.05f) - lineToRelative(-2.52f, 1.0f) - verticalLineToRelative(4.1f) - lineToRelative(2.52f, 1.0f) - curveToRelative(0.35f, 0.14f, 0.54f, 0.52f, 0.45f, 0.88f) - lineToRelative(-0.03f, 0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.87f, 0.45f) - lineToRelative(-0.1f, -0.03f) - close() - moveTo(5.79f, 16.5f) - lineToRelative(3.71f, 1.46f) - verticalLineToRelative(-2.92f) - lineTo(5.8f, 16.5f) - close() - moveTo(14.72f, 6.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(2.0f, -2.0f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineTo(18.0f, 5.56f) - verticalLineToRelative(14.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(16.5f, 5.56f) - lineToRelative(-0.72f, 0.72f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - close() - } - } - return _textDirectionRotate270Right!! - } - -private var _textDirectionRotate270Right: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionRotate90Left.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionRotate90Left.kt deleted file mode 100644 index e3510cf5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionRotate90Left.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextDirectionRotate90Left: ImageVector - get() { - if (_textDirectionRotate90Left != null) { - return _textDirectionRotate90Left!! - } - _textDirectionRotate90Left = fluentIcon(name = "Regular.TextDirectionRotate90Left") { - fluentPath { - moveTo(6.75f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(6.0f, 5.56f) - lineToRelative(-0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(2.0f, -2.0f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineToRelative(-0.72f, -0.72f) - verticalLineToRelative(14.69f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - close() - moveTo(11.03f, 20.95f) - lineTo(20.53f, 17.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.34f) - lineToRelative(-0.1f, -0.05f) - lineToRelative(-9.5f, -3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 1.35f) - lineToRelative(0.1f, 0.05f) - lineToRelative(2.52f, 1.0f) - verticalLineToRelative(4.1f) - lineToRelative(-2.52f, 1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.45f, 0.88f) - lineToRelative(0.03f, 0.1f) - curveToRelative(0.14f, 0.35f, 0.51f, 0.54f, 0.87f, 0.45f) - lineToRelative(0.1f, -0.03f) - close() - moveTo(18.21f, 16.5f) - lineTo(14.5f, 17.96f) - verticalLineToRelative(-2.92f) - lineToRelative(3.7f, 1.46f) - close() - moveTo(15.5f, 11.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(17.0f, 5.56f) - lineToRelative(0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineToRelative(0.72f, -0.72f) - verticalLineToRelative(5.69f) - close() - } - } - return _textDirectionRotate90Left!! - } - -private var _textDirectionRotate90Left: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionRotate90Ltr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionRotate90Ltr.kt deleted file mode 100644 index 06290c12..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionRotate90Ltr.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextDirectionRotate90Ltr: ImageVector - get() { - if (_textDirectionRotate90Ltr != null) { - return _textDirectionRotate90Ltr!! - } - _textDirectionRotate90Ltr = fluentIcon(name = "Regular.TextDirectionRotate90Ltr") { - fluentPath { - moveTo(6.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(14.69f) - lineToRelative(-0.72f, -0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-0.72f, 0.72f) - lineTo(7.5f, 3.75f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 6.75f, 3.0f) - close() - moveTo(11.03f, 3.05f) - lineTo(20.53f, 6.81f) - curveToRelative(0.6f, 0.23f, 0.63f, 1.04f, 0.1f, 1.34f) - lineToRelative(-0.1f, 0.05f) - lineToRelative(-9.5f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -1.35f) - lineToRelative(0.1f, -0.05f) - lineToRelative(2.52f, -1.0f) - verticalLineToRelative(-4.1f) - lineToRelative(-2.52f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.45f, -0.88f) - lineToRelative(0.03f, -0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.87f, -0.45f) - lineToRelative(0.1f, 0.03f) - close() - moveTo(18.21f, 7.5f) - lineTo(14.5f, 6.04f) - verticalLineToRelative(2.92f) - lineToRelative(3.7f, -1.46f) - close() - moveTo(15.5f, 12.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(5.69f) - lineToRelative(0.72f, -0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-2.0f, 2.0f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(0.72f, 0.72f) - verticalLineToRelative(-5.69f) - close() - } - } - return _textDirectionRotate90Ltr!! - } - -private var _textDirectionRotate90Ltr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionRotate90Right.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionRotate90Right.kt deleted file mode 100644 index 970c078d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionRotate90Right.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextDirectionRotate90Right: ImageVector - get() { - if (_textDirectionRotate90Right != null) { - return _textDirectionRotate90Right!! - } - _textDirectionRotate90Right = fluentIcon(name = "Regular.TextDirectionRotate90Right") { - fluentPath { - moveTo(6.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(14.69f) - lineToRelative(-0.72f, -0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-0.72f, 0.72f) - lineTo(7.5f, 3.75f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 6.75f, 3.0f) - close() - moveTo(11.03f, 3.05f) - lineTo(20.53f, 6.81f) - curveToRelative(0.6f, 0.23f, 0.63f, 1.04f, 0.1f, 1.34f) - lineToRelative(-0.1f, 0.05f) - lineToRelative(-9.5f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -1.35f) - lineToRelative(0.1f, -0.05f) - lineToRelative(2.52f, -1.0f) - verticalLineToRelative(-4.1f) - lineToRelative(-2.52f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.45f, -0.88f) - lineToRelative(0.03f, -0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.87f, -0.45f) - lineToRelative(0.1f, 0.03f) - close() - moveTo(18.21f, 7.5f) - lineTo(14.5f, 6.04f) - verticalLineToRelative(2.92f) - lineToRelative(3.7f, -1.46f) - close() - moveTo(15.5f, 12.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(5.69f) - lineToRelative(0.72f, -0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-2.0f, 2.0f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(0.72f, 0.72f) - verticalLineToRelative(-5.69f) - close() - } - } - return _textDirectionRotate90Right!! - } - -private var _textDirectionRotate90Right: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionRotate90Rtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionRotate90Rtl.kt deleted file mode 100644 index e9076abc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionRotate90Rtl.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextDirectionRotate90Rtl: ImageVector - get() { - if (_textDirectionRotate90Rtl != null) { - return _textDirectionRotate90Rtl!! - } - _textDirectionRotate90Rtl = fluentIcon(name = "Regular.TextDirectionRotate90Rtl") { - fluentPath { - moveTo(6.75f, 21.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(6.0f, 5.56f) - lineToRelative(-0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(2.0f, -2.0f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineToRelative(-0.72f, -0.72f) - verticalLineToRelative(14.69f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - close() - moveTo(11.03f, 20.95f) - lineTo(20.53f, 17.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.34f) - lineToRelative(-0.1f, -0.05f) - lineToRelative(-9.5f, -3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 1.35f) - lineToRelative(0.1f, 0.05f) - lineToRelative(2.52f, 1.0f) - verticalLineToRelative(4.1f) - lineToRelative(-2.52f, 1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.45f, 0.88f) - lineToRelative(0.03f, 0.1f) - curveToRelative(0.14f, 0.35f, 0.51f, 0.54f, 0.87f, 0.45f) - lineToRelative(0.1f, -0.03f) - close() - moveTo(18.21f, 16.5f) - lineTo(14.5f, 17.96f) - verticalLineToRelative(-2.92f) - lineToRelative(3.7f, 1.46f) - close() - moveTo(15.5f, 11.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(17.0f, 5.56f) - lineToRelative(0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineToRelative(0.72f, -0.72f) - verticalLineToRelative(5.69f) - close() - } - } - return _textDirectionRotate90Rtl!! - } - -private var _textDirectionRotate90Rtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionVertical.kt deleted file mode 100644 index 3c08672b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextDirectionVertical.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextDirectionVertical: ImageVector - get() { - if (_textDirectionVertical != null) { - return _textDirectionVertical!! - } - _textDirectionVertical = fluentIcon(name = "Regular.TextDirectionVertical") { - fluentPath { - moveTo(6.0f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(14.69f) - lineToRelative(0.72f, -0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) - lineToRelative(-2.0f, 2.0f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(0.72f, 0.72f) - lineTo(6.0f, 3.75f) - close() - moveTo(11.55f, 12.97f) - lineTo(15.31f, 3.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.1f) - lineToRelative(0.05f, 0.1f) - lineToRelative(3.75f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.65f) - lineToRelative(-0.05f, -0.1f) - lineToRelative(-1.0f, -2.52f) - horizontalLineToRelative(-4.1f) - lineToRelative(-1.0f, 2.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.88f, 0.45f) - lineToRelative(-0.1f, -0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.45f, -0.87f) - lineToRelative(0.03f, -0.1f) - close() - moveTo(16.0f, 5.79f) - lineTo(14.54f, 9.5f) - horizontalLineToRelative(2.92f) - lineTo(16.0f, 5.8f) - close() - moveTo(16.25f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.69f) - lineToRelative(-0.72f, -0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-0.72f, 0.72f) - verticalLineToRelative(-3.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - } - } - return _textDirectionVertical!! - } - -private var _textDirectionVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextEditStyle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextEditStyle.kt deleted file mode 100644 index 0ad88337..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextEditStyle.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextEditStyle: ImageVector - get() { - if (_textEditStyle != null) { - return _textEditStyle!! - } - _textEditStyle = fluentIcon(name = "Regular.TextEditStyle") { - fluentPath { - moveTo(20.06f, 8.45f) - arcToRelative(3.22f, 3.22f, 0.0f, false, true, 0.0f, 4.55f) - lineToRelative(-7.12f, 7.1f) - curveToRelative(-0.26f, 0.27f, -0.59f, 0.46f, -0.94f, 0.57f) - lineToRelative(-4.3f, 1.29f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.24f, -1.27f) - lineToRelative(1.36f, -4.22f) - curveToRelative(0.11f, -0.34f, 0.3f, -0.65f, 0.56f, -0.9f) - lineToRelative(7.13f, -7.13f) - arcToRelative(3.22f, 3.22f, 0.0f, false, true, 4.55f, 0.0f) - close() - moveTo(16.56f, 9.5f) - lineTo(9.44f, 16.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.19f, 0.3f) - lineToRelative(-1.07f, 3.32f) - lineToRelative(3.38f, -1.02f) - curveToRelative(0.12f, -0.03f, 0.23f, -0.1f, 0.32f, -0.18f) - lineTo(19.0f, 11.94f) - arcToRelative(1.72f, 1.72f, 0.0f, true, false, -2.43f, -2.44f) - close() - moveTo(8.16f, 2.37f) - lineTo(8.2f, 2.47f) - lineTo(11.45f, 10.72f) - lineTo(10.3f, 11.88f) - lineTo(9.56f, 10.0f) - lineTo(5.44f, 10.0f) - lineToRelative(-1.0f, 2.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.87f, 0.45f) - lineToRelative(-0.1f, -0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.45f, -0.87f) - lineToRelative(0.03f, -0.1f) - lineToRelative(3.76f, -9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.1f) - close() - moveTo(7.5f, 4.79f) - lineTo(6.04f, 8.5f) - horizontalLineToRelative(2.92f) - lineTo(7.5f, 4.8f) - close() - } - } - return _textEditStyle!! - } - -private var _textEditStyle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextEffects.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextEffects.kt deleted file mode 100644 index 58b0cd21..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextEffects.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextEffects: ImageVector - get() { - if (_textEffects != null) { - return _textEffects!! - } - _textEffects = fluentIcon(name = "Regular.TextEffects") { - fluentPath { - moveTo(14.3f, 4.02f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.6f, 0.0f) - lineToRelative(-4.26f, 9.94f) - lineToRelative(-0.05f, 0.1f) - lineToRelative(-1.69f, 3.96f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 4.6f, 1.96f) - lineToRelative(1.06f, -2.48f) - horizontalLineToRelative(5.28f) - lineToRelative(1.06f, 2.48f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 4.6f, -1.96f) - lineToRelative(-1.7f, -3.95f) - arcToRelative(2.51f, 2.51f, 0.0f, false, false, -0.04f, -0.1f) - lineTo(14.3f, 4.01f) - close() - moveTo(12.5f, 12.5f) - lineTo(12.0f, 11.35f) - lineTo(11.5f, 12.5f) - horizontalLineToRelative(1.0f) - close() - moveTo(12.92f, 4.6f) - lineTo(17.2f, 14.59f) - lineTo(17.21f, 14.63f) - lineTo(18.92f, 18.61f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.84f, 0.78f) - lineTo(15.63f, 16.0f) - lineTo(8.37f, 16.0f) - lineToRelative(-1.45f, 3.4f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.84f, -0.8f) - lineToRelative(1.7f, -3.97f) - lineToRelative(0.02f, -0.04f) - lineToRelative(4.28f, -9.98f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.84f, 0.0f) - close() - moveTo(14.77f, 14.0f) - lineTo(9.23f, 14.0f) - lineTo(12.0f, 7.54f) - lineTo(14.77f, 14.0f) - close() - } - } - return _textEffects!! - } - -private var _textEffects: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextExpand.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextExpand.kt deleted file mode 100644 index 8746c6ac..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextExpand.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextExpand: ImageVector - get() { - if (_textExpand != null) { - return _textExpand!! - } - _textExpand = fluentIcon(name = "Regular.TextExpand") { - fluentPath { - moveTo(6.75f, 19.5f) - horizontalLineToRelative(14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - lineTo(6.75f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(6.75f, 4.5f) - horizontalLineToRelative(14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - lineTo(6.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(13.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-7.5f) - close() - moveTo(13.0f, 13.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(11.0f, 11.5f) - arcToRelative(4.5f, 4.5f, 0.0f, true, true, -9.0f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 9.0f, 0.0f) - close() - moveTo(7.0f, 9.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - lineTo(6.0f, 11.0f) - lineTo(4.5f, 11.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) - lineTo(6.0f, 12.0f) - verticalLineToRelative(1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - lineTo(7.0f, 12.0f) - horizontalLineToRelative(1.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - lineTo(7.0f, 11.0f) - lineTo(7.0f, 9.5f) - close() - } - } - return _textExpand!! - } - -private var _textExpand: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextField.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextField.kt deleted file mode 100644 index ff7c5150..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextField.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextField: ImageVector - get() { - if (_textField != null) { - return _textField!! - } - _textField = fluentIcon(name = "Regular.TextField") { - fluentPath { - moveTo(15.5f, 7.5f) - horizontalLineToRelative(-2.75f) - verticalLineToRelative(9.0f) - horizontalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(0.5f) - verticalLineToRelative(-9.0f) - horizontalLineTo(8.5f) - verticalLineToRelative(0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(8.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineTo(7.5f) - close() - moveTo(5.75f, 3.0f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 2.0f, 6.75f) - verticalLineToRelative(10.5f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 5.75f, 21.0f) - horizontalLineToRelative(12.5f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 22.0f, 17.25f) - verticalLineTo(6.75f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 18.25f, 3.0f) - horizontalLineTo(5.75f) - close() - moveTo(3.5f, 6.75f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(12.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineTo(5.75f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineTo(6.75f) - close() - } - } - return _textField!! - } - -private var _textField: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextFirstLine.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextFirstLine.kt deleted file mode 100644 index 3e0e77da..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextFirstLine.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextFirstLine: ImageVector - get() { - if (_textFirstLine != null) { - return _textFirstLine!! - } - _textFirstLine = fluentIcon(name = "Regular.TextFirstLine") { - fluentPath { - moveTo(3.78f, 3.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(1.47f, 1.47f) - lineToRelative(-1.47f, 1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineToRelative(2.0f, -2.0f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-2.0f, -2.0f) - close() - moveTo(9.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(9.75f, 5.0f) - close() - moveTo(2.75f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(2.75f, 18.0f) - close() - moveTo(2.0f, 12.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(2.75f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _textFirstLine!! - } - -private var _textFirstLine: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextFont.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextFont.kt deleted file mode 100644 index f6e00ab8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextFont.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextFont: ImageVector - get() { - if (_textFont != null) { - return _textFont!! - } - _textFont = fluentIcon(name = "Regular.TextFont") { - fluentPath { - moveTo(7.0f, 2.0f) - curveToRelative(0.31f, 0.0f, 0.6f, 0.2f, 0.7f, 0.49f) - lineToRelative(2.96f, 7.98f) - verticalLineToRelative(0.04f) - lineToRelative(0.23f, 0.6f) - lineToRelative(-0.83f, 2.09f) - lineToRelative(-0.62f, -1.7f) - lineTo(4.56f, 11.5f) - lineToRelative(-1.1f, 3.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.42f, -0.52f) - lineToRelative(1.3f, -3.48f) - verticalLineToRelative(-0.04f) - lineTo(6.3f, 2.5f) - curveToRelative(0.1f, -0.3f, 0.39f, -0.49f, 0.7f, -0.49f) - close() - moveTo(5.12f, 10.0f) - horizontalLineToRelative(3.76f) - lineTo(7.0f, 4.91f) - lineToRelative(-1.88f, 5.1f) - close() - moveTo(13.81f, 6.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.4f, 0.0f) - lineToRelative(5.55f, 14.03f) - horizontalLineToRelative(0.49f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(0.4f) - lineToRelative(-1.2f, -3.0f) - horizontalLineToRelative(-6.9f) - lineToRelative(-1.2f, 3.0f) - horizontalLineToRelative(0.4f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(0.49f) - lineTo(13.8f, 6.47f) - close() - moveTo(17.36f, 16.0f) - lineTo(14.5f, 8.79f) - lineTo(11.64f, 16.0f) - horizontalLineToRelative(5.72f) - close() - } - } - return _textFont!! - } - -private var _textFont: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextFontInfo.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextFontInfo.kt deleted file mode 100644 index 47374f88..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextFontInfo.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextFontInfo: ImageVector - get() { - if (_textFontInfo != null) { - return _textFontInfo!! - } - _textFontInfo = fluentIcon(name = "Regular.TextFontInfo") { - fluentPath { - moveTo(9.51f, 2.0f) - curveToRelative(0.31f, 0.0f, 0.6f, 0.2f, 0.7f, 0.5f) - lineToRelative(3.18f, 8.97f) - curveToRelative(-0.44f, 0.35f, -0.83f, 0.76f, -1.16f, 1.22f) - lineTo(9.47f, 4.91f) - lineTo(6.34f, 13.0f) - horizontalLineToRelative(5.68f) - curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) - lineTo(5.75f, 14.5f) - lineTo(4.2f, 18.52f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.4f, -0.54f) - lineToRelative(6.0f, -15.5f) - curveToRelative(0.11f, -0.3f, 0.4f, -0.48f, 0.71f, -0.48f) - close() - moveTo(17.0f, 16.0f) - verticalLineToRelative(3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - verticalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - close() - moveTo(18.25f, 13.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(23.0f, 16.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(22.0f, 16.5f) - arcToRelative(4.5f, 4.5f, 0.0f, true, false, -9.0f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, 9.0f, 0.0f) - close() - } - } - return _textFontInfo!! - } - -private var _textFontInfo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextFontSize.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextFontSize.kt deleted file mode 100644 index c081f4c0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextFontSize.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextFontSize: ImageVector - get() { - if (_textFontSize != null) { - return _textFontSize!! - } - _textFontSize = fluentIcon(name = "Regular.TextFontSize") { - fluentPath { - moveTo(10.21f, 17.11f) - lineTo(15.04f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.37f, -0.11f) - lineToRelative(0.05f, 0.1f) - lineTo(21.96f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.38f, 0.6f) - lineToRelative(-0.04f, -0.1f) - lineToRelative(-1.6f, -4.5f) - horizontalLineToRelative(-6.39f) - lineToRelative(-1.58f, 4.45f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.35f, 0.45f) - lineToRelative(-0.1f, 0.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.92f, -0.33f) - lineToRelative(-0.05f, -0.1f) - lineToRelative(-1.0f, -2.52f) - horizontalLineToRelative(-4.1f) - lineToRelative(-1.0f, 2.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.88f, 0.45f) - lineToRelative(-0.1f, -0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.45f, -0.87f) - lineToRelative(0.03f, -0.1f) - lineToRelative(3.76f, -9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.1f) - lineToRelative(0.05f, 0.1f) - lineToRelative(3.01f, 7.64f) - lineTo(15.04f, 3.5f) - lineTo(10.21f, 17.1f) - close() - moveTo(6.51f, 11.79f) - lineTo(5.03f, 15.5f) - horizontalLineToRelative(2.92f) - lineTo(6.5f, 11.8f) - close() - moveTo(15.74f, 6.0f) - lineToRelative(-2.67f, 7.51f) - horizontalLineToRelative(5.33f) - lineTo(15.75f, 6.0f) - close() - } - } - return _textFontSize!! - } - -private var _textFontSize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextFootnote.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextFootnote.kt deleted file mode 100644 index 8c6eede7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextFootnote.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextFootnote: ImageVector - get() { - if (_textFootnote != null) { - return _textFootnote!! - } - _textFootnote = fluentIcon(name = "Regular.TextFootnote") { - fluentPath { - moveTo(20.5f, 7.26f) - curveToRelative(-0.2f, 0.18f, -0.4f, 0.34f, -0.6f, 0.48f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.84f, -1.25f) - arcToRelative(3.55f, 3.55f, 0.0f, false, false, 1.46f, -1.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.48f, 0.16f) - verticalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(20.5f, 7.26f) - close() - moveTo(12.22f, 17.76f) - arcToRelative(0.87f, 0.87f, 0.0f, false, true, -0.22f, -0.61f) - lineTo(12.0f, 7.9f) - curveToRelative(0.0f, -0.25f, 0.07f, -0.47f, 0.24f, -0.64f) - arcToRelative(0.84f, 0.84f, 0.0f, false, true, 0.63f, -0.27f) - curveToRelative(0.24f, 0.0f, 0.46f, 0.09f, 0.62f, 0.26f) - curveToRelative(0.17f, 0.18f, 0.25f, 0.4f, 0.25f, 0.65f) - verticalLineToRelative(2.84f) - curveToRelative(0.18f, -0.2f, 0.39f, -0.36f, 0.62f, -0.5f) - curveToRelative(0.46f, -0.26f, 0.97f, -0.39f, 1.52f, -0.39f) - curveToRelative(1.0f, 0.0f, 1.83f, 0.38f, 2.46f, 1.14f) - curveToRelative(0.61f, 0.75f, 0.91f, 1.73f, 0.91f, 2.93f) - curveToRelative(0.0f, 1.2f, -0.3f, 2.19f, -0.91f, 2.94f) - arcTo(3.06f, 3.06f, 0.0f, false, true, 15.86f, 18.0f) - arcToRelative(2.86f, 2.86f, 0.0f, false, true, -2.19f, -0.9f) - verticalLineToRelative(0.05f) - arcToRelative(0.84f, 0.84f, 0.0f, false, true, -0.84f, 0.85f) - arcToRelative(0.8f, 0.8f, 0.0f, false, true, -0.6f, -0.24f) - close() - moveTo(16.97f, 15.78f) - curveToRelative(0.34f, -0.44f, 0.52f, -1.04f, 0.52f, -1.85f) - curveToRelative(0.0f, -0.8f, -0.18f, -1.4f, -0.52f, -1.84f) - arcToRelative(1.6f, 1.6f, 0.0f, false, false, -1.35f, -0.64f) - curveToRelative(-0.55f, 0.0f, -1.0f, 0.21f, -1.35f, 0.66f) - arcToRelative(2.84f, 2.84f, 0.0f, false, false, -0.54f, 1.82f) - curveToRelative(0.0f, 0.78f, 0.19f, 1.38f, 0.54f, 1.83f) - curveToRelative(0.36f, 0.44f, 0.8f, 0.65f, 1.35f, 0.65f) - arcToRelative(1.6f, 1.6f, 0.0f, false, false, 1.35f, -0.63f) - close() - moveTo(2.0f, 17.18f) - curveToRelative(0.0f, 0.24f, 0.1f, 0.44f, 0.27f, 0.6f) - curveToRelative(0.19f, 0.15f, 0.4f, 0.22f, 0.65f, 0.22f) - curveToRelative(0.2f, 0.0f, 0.39f, -0.05f, 0.55f, -0.17f) - curveToRelative(0.15f, -0.12f, 0.26f, -0.3f, 0.33f, -0.49f) - lineToRelative(0.88f, -2.39f) - horizontalLineToRelative(3.88f) - lineToRelative(0.89f, 2.4f) - curveToRelative(0.07f, 0.19f, 0.18f, 0.36f, 0.33f, 0.48f) - arcToRelative(0.9f, 0.9f, 0.0f, false, false, 0.55f, 0.17f) - curveToRelative(0.24f, 0.0f, 0.46f, -0.07f, 0.64f, -0.22f) - arcToRelative(0.76f, 0.76f, 0.0f, false, false, 0.28f, -0.6f) - curveToRelative(0.0f, -0.13f, -0.04f, -0.28f, -0.1f, -0.44f) - lineTo(7.71f, 7.77f) - curveToRelative(-0.1f, -0.23f, -0.23f, -0.43f, -0.41f, -0.57f) - curveToRelative(-0.2f, -0.14f, -0.42f, -0.2f, -0.66f, -0.2f) - curveToRelative(-0.25f, 0.0f, -0.49f, 0.06f, -0.68f, 0.2f) - curveToRelative(-0.2f, 0.14f, -0.33f, 0.34f, -0.43f, 0.58f) - lineTo(2.1f, 16.74f) - curveToRelative(-0.06f, 0.16f, -0.1f, 0.3f, -0.1f, 0.45f) - close() - moveTo(6.63f, 9.58f) - lineTo(8.0f, 13.36f) - lineTo(5.25f, 13.36f) - lineToRelative(1.38f, -3.78f) - close() - } - } - return _textFootnote!! - } - -private var _textFootnote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextGrammarArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextGrammarArrowLeft.kt deleted file mode 100644 index 6a44fcaa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextGrammarArrowLeft.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextGrammarArrowLeft: ImageVector - get() { - if (_textGrammarArrowLeft != null) { - return _textGrammarArrowLeft!! - } - _textGrammarArrowLeft = fluentIcon(name = "Regular.TextGrammarArrowLeft") { - fluentPath { - moveTo(6.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, -11.0f) - close() - moveTo(7.28f, 14.59f) - lineTo(7.35f, 14.65f) - lineTo(9.87f, 17.16f) - lineTo(9.91f, 17.21f) - lineTo(9.95f, 17.29f) - lineTo(9.97f, 17.35f) - lineTo(9.99f, 17.43f) - verticalLineToRelative(0.11f) - lineToRelative(-0.01f, 0.09f) - lineToRelative(-0.03f, 0.08f) - lineToRelative(-0.03f, 0.06f) - lineToRelative(-0.05f, 0.07f) - lineToRelative(-2.52f, 2.51f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.76f, -0.63f) - lineToRelative(0.05f, -0.07f) - lineTo(8.3f, 18.0f) - lineTo(3.5f, 18.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.41f) - verticalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.41f, -0.5f) - horizontalLineToRelative(4.88f) - lineToRelative(-1.65f, -1.65f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.05f, -0.63f) - lineToRelative(0.05f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.64f, -0.06f) - close() - moveTo(12.98f, 17.0f) - horizontalLineToRelative(8.37f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, 1.5f) - horizontalLineToRelative(-8.33f) - arcToRelative(6.55f, 6.55f, 0.0f, false, false, 0.06f, -1.5f) - close() - moveTo(12.27f, 14.5f) - horizontalLineToRelative(8.98f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - lineTo(11.2f, 13.0f) - curveToRelative(0.43f, 0.44f, 0.8f, 0.95f, 1.08f, 1.5f) - close() - moveTo(2.75f, 9.0f) - horizontalLineToRelative(18.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, 1.5f) - lineTo(2.65f, 10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, -1.5f) - close() - moveTo(2.75f, 5.0f) - horizontalLineToRelative(18.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, 1.5f) - lineTo(2.65f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, -1.5f) - close() - } - } - return _textGrammarArrowLeft!! - } - -private var _textGrammarArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextGrammarArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextGrammarArrowRight.kt deleted file mode 100644 index 922c9f4f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextGrammarArrowRight.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextGrammarArrowRight: ImageVector - get() { - if (_textGrammarArrowRight != null) { - return _textGrammarArrowRight!! - } - _textGrammarArrowRight = fluentIcon(name = "Regular.TextGrammarArrowRight") { - fluentPath { - moveTo(21.25f, 5.0f) - lineTo(2.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) - horizontalLineToRelative(18.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(2.75f, 9.0f) - horizontalLineToRelative(18.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, 1.5f) - lineTo(2.65f, 10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, -1.5f) - close() - moveTo(21.25f, 14.5f) - horizontalLineToRelative(-8.98f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.08f, -1.5f) - horizontalLineToRelative(10.16f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, 1.5f) - close() - moveTo(21.25f, 17.0f) - horizontalLineToRelative(-8.27f) - arcToRelative(6.62f, 6.62f, 0.0f, false, true, -0.06f, 1.5f) - horizontalLineToRelative(8.33f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) - horizontalLineToRelative(-0.1f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(5.65f, 20.35f) - lineTo(5.72f, 20.41f) - curveToRelative(0.2f, 0.14f, 0.46f, 0.12f, 0.64f, -0.06f) - lineToRelative(0.05f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.63f) - lineTo(4.7f, 18.0f) - lineTo(9.6f, 18.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.41f, -0.5f) - verticalLineToRelative(-0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.41f) - lineTo(4.71f, 17.0f) - lineToRelative(1.65f, -1.65f) - lineToRelative(0.05f, -0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.76f, -0.63f) - lineToRelative(-2.52f, 2.51f) - lineToRelative(-0.05f, 0.07f) - lineToRelative(-0.03f, 0.06f) - lineToRelative(-0.03f, 0.08f) - lineToRelative(-0.01f, 0.09f) - verticalLineToRelative(0.1f) - lineToRelative(0.02f, 0.1f) - lineToRelative(0.02f, 0.05f) - lineToRelative(0.04f, 0.08f) - lineToRelative(0.04f, 0.05f) - lineToRelative(2.52f, 2.51f) - close() - } - } - return _textGrammarArrowRight!! - } - -private var _textGrammarArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextGrammarCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextGrammarCheckmark.kt deleted file mode 100644 index 5421d5b9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextGrammarCheckmark.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextGrammarCheckmark: ImageVector - get() { - if (_textGrammarCheckmark != null) { - return _textGrammarCheckmark!! - } - _textGrammarCheckmark = fluentIcon(name = "Regular.TextGrammarCheckmark") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(20.15f, 15.15f) - lineTo(16.05f, 19.24f) - lineTo(14.9f, 17.7f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.8f, 0.6f) - lineToRelative(1.5f, 2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.75f, 0.05f) - lineToRelative(4.5f, -4.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - close() - moveTo(11.02f, 17.0f) - lineTo(2.65f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(8.33f) - arcToRelative(6.55f, 6.55f, 0.0f, false, true, -0.06f, -1.5f) - close() - moveTo(11.73f, 14.5f) - lineTo(2.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(12.8f, 13.0f) - curveToRelative(-0.43f, 0.44f, -0.8f, 0.95f, -1.08f, 1.5f) - close() - moveTo(21.25f, 9.0f) - lineTo(2.65f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(18.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(21.25f, 5.0f) - lineTo(2.65f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(18.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - } - } - return _textGrammarCheckmark!! - } - -private var _textGrammarCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextGrammarDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextGrammarDismiss.kt deleted file mode 100644 index 94dfe28a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextGrammarDismiss.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextGrammarDismiss: ImageVector - get() { - if (_textGrammarDismiss != null) { - return _textGrammarDismiss!! - } - _textGrammarDismiss = fluentIcon(name = "Regular.TextGrammarDismiss") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(15.02f, 15.02f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.71f) - lineToRelative(1.77f, 1.77f) - lineToRelative(-1.76f, 1.77f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, 0.7f) - lineToRelative(1.77f, -1.76f) - lineToRelative(1.77f, 1.77f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, -0.71f) - lineToRelative(-1.76f, -1.77f) - lineToRelative(1.77f, -1.77f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-1.78f, 1.76f) - lineToRelative(-1.77f, -1.77f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) - close() - moveTo(11.02f, 17.0f) - lineTo(2.65f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(8.33f) - arcToRelative(6.55f, 6.55f, 0.0f, false, true, -0.06f, -1.5f) - close() - moveTo(11.73f, 14.5f) - lineTo(2.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(12.8f, 13.0f) - curveToRelative(-0.43f, 0.44f, -0.8f, 0.95f, -1.08f, 1.5f) - close() - moveTo(21.25f, 9.0f) - lineTo(2.65f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(18.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(21.25f, 5.0f) - lineTo(2.65f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(18.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - } - } - return _textGrammarDismiss!! - } - -private var _textGrammarDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextGrammarSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextGrammarSettings.kt deleted file mode 100644 index 80a46b2a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextGrammarSettings.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextGrammarSettings: ImageVector - get() { - if (_textGrammarSettings != null) { - return _textGrammarSettings!! - } - _textGrammarSettings = fluentIcon(name = "Regular.TextGrammarSettings") { - fluentPath { - moveTo(11.02f, 17.0f) - lineTo(2.65f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(8.33f) - arcToRelative(6.55f, 6.55f, 0.0f, false, true, -0.06f, -1.5f) - close() - moveTo(2.75f, 13.0f) - horizontalLineToRelative(10.06f) - curveToRelative(-0.43f, 0.44f, -0.8f, 0.95f, -1.08f, 1.5f) - lineTo(2.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(21.25f, 9.0f) - lineTo(2.65f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(18.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(21.25f, 5.0f) - lineTo(2.65f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(18.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(14.28f, 13.98f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) - lineToRelative(-0.59f, 0.14f) - arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) - lineToRelative(0.55f, 0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) - lineToRelative(-0.19f, 0.63f) - curveToRelative(0.44f, 0.39f, 0.94f, 0.7f, 1.49f, 0.93f) - lineToRelative(0.49f, -0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) - lineToRelative(0.5f, 0.52f) - arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) - lineToRelative(-0.2f, -0.69f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) - lineToRelative(0.59f, -0.14f) - arcToRelative(5.72f, 5.72f, 0.0f, false, false, 0.0f, -1.8f) - lineToRelative(-0.55f, -0.13f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) - lineToRelative(0.19f, -0.63f) - curveToRelative(-0.44f, -0.4f, -0.94f, -0.7f, -1.49f, -0.93f) - lineToRelative(-0.49f, 0.52f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) - lineToRelative(-0.5f, -0.52f) - curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) - lineToRelative(0.2f, 0.7f) - close() - moveTo(17.5f, 19.0f) - curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) - reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) - curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) - reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) - close() - } - } - return _textGrammarSettings!! - } - -private var _textGrammarSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextGrammarWand.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextGrammarWand.kt deleted file mode 100644 index 410809dd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextGrammarWand.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextGrammarWand: ImageVector - get() { - if (_textGrammarWand != null) { - return _textGrammarWand!! - } - _textGrammarWand = fluentIcon(name = "Regular.TextGrammarWand") { - fluentPath { - moveTo(2.75f, 17.0f) - horizontalLineToRelative(7.78f) - lineToRelative(-1.5f, 1.5f) - lineTo(2.75f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(2.75f, 14.5f) - horizontalLineToRelative(7.56f) - arcToRelative(1.74f, 1.74f, 0.0f, false, true, -0.24f, -1.5f) - lineTo(2.65f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - close() - moveTo(12.72f, 16.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-4.5f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(4.5f, -4.5f) - close() - moveTo(2.75f, 9.0f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(2.75f, 10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(2.75f, 5.0f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(2.75f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(16.5f, 8.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.66f) - lineToRelative(0.14f, 1.13f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 2.83f, 2.83f) - lineToRelative(1.13f, 0.14f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.48f) - lineToRelative(-1.13f, 0.14f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -2.83f, 2.83f) - lineToRelative(-0.14f, 1.13f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.48f, 0.0f) - lineToRelative(-0.14f, -1.13f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -2.83f, -2.83f) - lineToRelative(-1.13f, -0.14f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.48f) - lineToRelative(1.13f, -0.14f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 2.83f, -2.83f) - lineToRelative(0.14f, -1.13f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 16.5f, 8.0f) - close() - moveTo(16.5f, 11.77f) - arcToRelative(4.76f, 4.76f, 0.0f, false, true, -1.73f, 1.73f) - arcToRelative(4.76f, 4.76f, 0.0f, false, true, 1.73f, 1.73f) - arcToRelative(4.76f, 4.76f, 0.0f, false, true, 1.73f, -1.73f) - arcToRelative(4.76f, 4.76f, 0.0f, false, true, -1.73f, -1.73f) - close() - } - } - return _textGrammarWand!! - } - -private var _textGrammarWand: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextHanging.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextHanging.kt deleted file mode 100644 index f24543c7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextHanging.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextHanging: ImageVector - get() { - if (_textHanging != null) { - return _textHanging!! - } - _textHanging = fluentIcon(name = "Regular.TextHanging") { - fluentPath { - moveTo(21.25f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(2.75f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(18.5f) - close() - moveTo(14.25f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(2.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(11.5f) - close() - moveTo(15.0f, 12.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(2.75f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(11.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - close() - moveTo(20.22f, 12.97f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-1.47f, 1.47f) - lineToRelative(1.47f, 1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(2.0f, -2.0f) - close() - } - } - return _textHanging!! - } - -private var _textHanging: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextHeader1.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextHeader1.kt deleted file mode 100644 index 1f8e1ecb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextHeader1.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextHeader1: ImageVector - get() { - if (_textHeader1 != null) { - return _textHeader1!! - } - _textHeader1 = fluentIcon(name = "Regular.TextHeader1") { - fluentPath { - moveTo(19.59f, 5.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.8f, 0.08f) - curveToRelative(-0.13f, 0.1f, -0.21f, 0.23f, -0.26f, 0.37f) - arcToRelative(7.63f, 7.63f, 0.0f, false, true, -3.17f, 4.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.78f, 1.28f) - arcToRelative(8.66f, 8.66f, 0.0f, false, false, 2.36f, -2.14f) - verticalLineToRelative(9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineTo(5.77f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.41f, -0.69f) - close() - moveTo(3.5f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineTo(12.5f) - horizontalLineTo(10.0f) - verticalLineToRelative(5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineTo(5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineTo(11.0f) - horizontalLineTo(3.5f) - verticalLineTo(5.75f) - close() - } - } - return _textHeader1!! - } - -private var _textHeader1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextHeader2.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextHeader2.kt deleted file mode 100644 index 76ced9f9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextHeader2.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextHeader2: ImageVector - get() { - if (_textHeader2 != null) { - return _textHeader2!! - } - _textHeader2 = fluentIcon(name = "Regular.TextHeader2") { - fluentPath { - moveTo(4.5f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(4.5f, 12.5f) - lineTo(11.0f, 12.5f) - verticalLineToRelative(5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(12.5f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - lineTo(11.0f, 11.0f) - lineTo(4.5f, 11.0f) - lineTo(4.5f, 5.75f) - close() - moveTo(15.42f, 7.84f) - curveToRelative(0.23f, -0.46f, 0.91f, -1.34f, 2.58f, -1.34f) - curveToRelative(0.84f, 0.0f, 1.46f, 0.26f, 1.86f, 0.64f) - curveToRelative(0.4f, 0.37f, 0.64f, 0.92f, 0.64f, 1.61f) - curveToRelative(0.0f, 1.96f, -1.3f, 3.07f, -2.96f, 4.34f) - lineToRelative(-0.2f, 0.17f) - curveTo(15.81f, 14.4f, 14.0f, 15.8f, 14.0f, 18.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, 0.75f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-5.66f) - curveToRelative(0.32f, -1.25f, 1.43f, -2.11f, 2.87f, -3.22f) - curveTo(20.05f, 13.06f, 22.0f, 11.54f, 22.0f, 8.75f) - curveToRelative(0.0f, -1.06f, -0.38f, -2.01f, -1.11f, -2.7f) - arcTo(4.12f, 4.12f, 0.0f, false, false, 18.0f, 5.0f) - curveToRelative(-2.33f, 0.0f, -3.48f, 1.3f, -3.92f, 2.16f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.34f, 0.68f) - close() - } - } - return _textHeader2!! - } - -private var _textHeader2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextHeader3.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextHeader3.kt deleted file mode 100644 index 92294459..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextHeader3.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextHeader3: ImageVector - get() { - if (_textHeader3 != null) { - return _textHeader3!! - } - _textHeader3 = fluentIcon(name = "Regular.TextHeader3") { - fluentPath { - moveTo(3.5f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(3.5f, 12.5f) - lineTo(10.0f, 12.5f) - verticalLineToRelative(5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(11.5f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - lineTo(10.0f, 11.0f) - lineTo(3.5f, 11.0f) - lineTo(3.5f, 5.75f) - close() - moveTo(15.42f, 7.84f) - curveToRelative(0.23f, -0.46f, 0.91f, -1.34f, 2.58f, -1.34f) - curveToRelative(0.84f, 0.0f, 1.46f, 0.26f, 1.86f, 0.64f) - curveToRelative(0.4f, 0.37f, 0.64f, 0.92f, 0.64f, 1.61f) - curveToRelative(0.0f, 0.6f, -0.16f, 1.03f, -0.38f, 1.33f) - curveToRelative(-0.23f, 0.32f, -0.56f, 0.56f, -0.96f, 0.74f) - curveToRelative(-0.81f, 0.37f, -1.8f, 0.43f, -2.38f, 0.43f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - curveToRelative(0.58f, 0.0f, 1.57f, 0.06f, 2.38f, 0.43f) - curveToRelative(0.4f, 0.18f, 0.73f, 0.42f, 0.96f, 0.74f) - curveToRelative(0.22f, 0.3f, 0.38f, 0.72f, 0.38f, 1.33f) - curveToRelative(0.0f, 1.09f, -0.91f, 2.25f, -2.5f, 2.25f) - curveToRelative(-1.73f, 0.0f, -2.35f, -0.76f, -2.55f, -1.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.4f, 0.56f) - curveTo(14.51f, 17.93f, 15.73f, 19.0f, 18.0f, 19.0f) - curveToRelative(2.41f, 0.0f, 4.0f, -1.84f, 4.0f, -3.75f) - curveToRelative(0.0f, -0.9f, -0.25f, -1.63f, -0.67f, -2.21f) - arcTo(3.68f, 3.68f, 0.0f, false, false, 20.14f, 12.0f) - curveToRelative(0.44f, -0.25f, 0.86f, -0.58f, 1.19f, -1.04f) - curveToRelative(0.42f, -0.58f, 0.67f, -1.32f, 0.67f, -2.21f) - curveToRelative(0.0f, -1.06f, -0.38f, -2.01f, -1.11f, -2.7f) - arcTo(4.12f, 4.12f, 0.0f, false, false, 18.0f, 5.0f) - curveToRelative(-2.33f, 0.0f, -3.48f, 1.3f, -3.92f, 2.16f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.34f, 0.68f) - close() - } - } - return _textHeader3!! - } - -private var _textHeader3: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentDecreaseLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentDecreaseLtr.kt deleted file mode 100644 index 21ff413f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentDecreaseLtr.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextIndentDecreaseLtr: ImageVector - get() { - if (_textIndentDecreaseLtr != null) { - return _textIndentDecreaseLtr!! - } - _textIndentDecreaseLtr = fluentIcon(name = "Regular.TextIndentDecreaseLtr") { - fluentPath { - moveTo(17.75f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(9.0f) - close() - moveTo(2.72f, 11.22f) - lineToRelative(2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-1.47f, 1.47f) - lineToRelative(1.47f, 1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(2.0f, -2.0f) - lineToRelative(-2.0f, 2.0f) - close() - moveTo(20.75f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(12.0f) - close() - moveTo(17.75f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(9.0f) - close() - } - } - return _textIndentDecreaseLtr!! - } - -private var _textIndentDecreaseLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentDecreaseLtr90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentDecreaseLtr90.kt deleted file mode 100644 index da5f7fac..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentDecreaseLtr90.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextIndentDecreaseLtr90: ImageVector - get() { - if (_textIndentDecreaseLtr90 != null) { - return _textIndentDecreaseLtr90!! - } - _textIndentDecreaseLtr90 = fluentIcon(name = "Regular.TextIndentDecreaseLtr90") { - fluentPath { - moveTo(8.0f, 17.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(9.0f) - close() - moveTo(12.78f, 2.72f) - lineTo(14.78f, 4.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-1.47f, -1.47f) - lineToRelative(-1.47f, 1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - close() - moveTo(13.0f, 20.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(12.0f) - close() - moveTo(18.0f, 17.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(9.0f) - close() - } - } - return _textIndentDecreaseLtr90!! - } - -private var _textIndentDecreaseLtr90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentDecreaseLtrRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentDecreaseLtrRotate270.kt deleted file mode 100644 index 4194209b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentDecreaseLtrRotate270.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextIndentDecreaseLtrRotate270: ImageVector - get() { - if (_textIndentDecreaseLtrRotate270 != null) { - return _textIndentDecreaseLtrRotate270!! - } - _textIndentDecreaseLtrRotate270 = fluentIcon(name = - "Regular.TextIndentDecreaseLtrRotate270") { - fluentPath { - moveTo(16.0f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-9.0f) - close() - moveTo(11.22f, 21.28f) - lineTo(9.22f, 19.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) - lineToRelative(0.08f, 0.07f) - lineToRelative(1.47f, 1.47f) - lineToRelative(1.47f, -1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - close() - moveTo(11.0f, 3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-12.0f) - close() - moveTo(6.0f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-9.0f) - close() - } - } - return _textIndentDecreaseLtrRotate270!! - } - -private var _textIndentDecreaseLtrRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentDecreaseRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentDecreaseRotate270.kt deleted file mode 100644 index ada80728..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentDecreaseRotate270.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextIndentDecreaseRotate270: ImageVector - get() { - if (_textIndentDecreaseRotate270 != null) { - return _textIndentDecreaseRotate270!! - } - _textIndentDecreaseRotate270 = fluentIcon(name = "Regular.TextIndentDecreaseRotate270") { - fluentPath { - moveTo(16.0f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-9.0f) - close() - moveTo(11.22f, 21.28f) - lineTo(9.22f, 19.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) - lineToRelative(0.08f, 0.07f) - lineToRelative(1.47f, 1.47f) - lineToRelative(1.47f, -1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - close() - moveTo(11.0f, 3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-12.0f) - close() - moveTo(6.0f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-9.0f) - close() - } - } - return _textIndentDecreaseRotate270!! - } - -private var _textIndentDecreaseRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentDecreaseRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentDecreaseRotate90.kt deleted file mode 100644 index 1689c012..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentDecreaseRotate90.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextIndentDecreaseRotate90: ImageVector - get() { - if (_textIndentDecreaseRotate90 != null) { - return _textIndentDecreaseRotate90!! - } - _textIndentDecreaseRotate90 = fluentIcon(name = "Regular.TextIndentDecreaseRotate90") { - fluentPath { - moveTo(8.0f, 17.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(9.0f) - close() - moveTo(12.78f, 2.72f) - lineTo(14.78f, 4.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-1.47f, -1.47f) - lineToRelative(-1.47f, 1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - close() - moveTo(13.0f, 20.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(12.0f) - close() - moveTo(18.0f, 17.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(9.0f) - close() - } - } - return _textIndentDecreaseRotate90!! - } - -private var _textIndentDecreaseRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentDecreaseRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentDecreaseRtl.kt deleted file mode 100644 index 9a835233..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentDecreaseRtl.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextIndentDecreaseRtl: ImageVector - get() { - if (_textIndentDecreaseRtl != null) { - return _textIndentDecreaseRtl!! - } - _textIndentDecreaseRtl = fluentIcon(name = "Regular.TextIndentDecreaseRtl") { - fluentPath { - moveTo(5.5f, 16.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(2.5f, 11.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(5.5f, 6.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(19.2f, 9.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 1.13f) - lineToRelative(1.47f, 1.47f) - lineToRelative(-1.47f, 1.47f) - lineToRelative(-0.07f, 0.08f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, 0.98f) - lineToRelative(2.0f, -2.0f) - lineToRelative(0.07f, -0.08f) - curveToRelative(0.22f, -0.3f, 0.2f, -0.71f, -0.07f, -0.98f) - lineToRelative(-2.0f, -2.0f) - lineToRelative(-0.08f, -0.07f) - close() - } - } - return _textIndentDecreaseRtl!! - } - -private var _textIndentDecreaseRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentDecreaseRtl90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentDecreaseRtl90.kt deleted file mode 100644 index ceb3d509..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentDecreaseRtl90.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextIndentDecreaseRtl90: ImageVector - get() { - if (_textIndentDecreaseRtl90 != null) { - return _textIndentDecreaseRtl90!! - } - _textIndentDecreaseRtl90 = fluentIcon(name = "Regular.TextIndentDecreaseRtl90") { - fluentPath { - moveTo(7.25f, 5.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-9.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(12.25f, 2.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-12.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(17.25f, 5.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-9.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(14.85f, 19.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.13f, -0.98f) - lineToRelative(-1.47f, 1.47f) - lineToRelative(-1.47f, -1.47f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 1.13f) - lineToRelative(2.0f, 2.0f) - lineToRelative(0.08f, 0.07f) - curveToRelative(0.3f, 0.22f, 0.71f, 0.2f, 0.98f, -0.07f) - lineToRelative(2.0f, -2.0f) - lineToRelative(0.07f, -0.08f) - close() - } - } - return _textIndentDecreaseRtl90!! - } - -private var _textIndentDecreaseRtl90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentDecreaseRtlRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentDecreaseRtlRotate270.kt deleted file mode 100644 index b306a6c6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentDecreaseRtlRotate270.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextIndentDecreaseRtlRotate270: ImageVector - get() { - if (_textIndentDecreaseRtlRotate270 != null) { - return _textIndentDecreaseRtlRotate270!! - } - _textIndentDecreaseRtlRotate270 = fluentIcon(name = - "Regular.TextIndentDecreaseRtlRotate270") { - fluentPath { - moveTo(16.75f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - close() - moveTo(11.75f, 21.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(12.0f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - close() - moveTo(6.75f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - close() - moveTo(9.15f, 4.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, 0.98f) - lineToRelative(1.47f, -1.47f) - lineToRelative(1.47f, 1.47f) - lineToRelative(0.08f, 0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, -1.13f) - lineToRelative(-2.0f, -2.0f) - lineToRelative(-0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) - lineToRelative(-2.0f, 2.0f) - lineToRelative(-0.07f, 0.08f) - close() - } - } - return _textIndentDecreaseRtlRotate270!! - } - -private var _textIndentDecreaseRtlRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentIncreaseLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentIncreaseLtr.kt deleted file mode 100644 index 00a02ce4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentIncreaseLtr.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextIndentIncreaseLtr: ImageVector - get() { - if (_textIndentIncreaseLtr != null) { - return _textIndentIncreaseLtr!! - } - _textIndentIncreaseLtr = fluentIcon(name = "Regular.TextIndentIncreaseLtr") { - fluentPath { - moveTo(17.75f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(9.0f) - close() - moveTo(2.72f, 9.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(1.47f, -1.47f) - lineToRelative(-1.47f, -1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - moveTo(20.75f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(12.0f) - close() - moveTo(17.75f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(9.0f) - close() - } - } - return _textIndentIncreaseLtr!! - } - -private var _textIndentIncreaseLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentIncreaseLtr90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentIncreaseLtr90.kt deleted file mode 100644 index e7fda785..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentIncreaseLtr90.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextIndentIncreaseLtr90: ImageVector - get() { - if (_textIndentIncreaseLtr90 != null) { - return _textIndentIncreaseLtr90!! - } - _textIndentIncreaseLtr90 = fluentIcon(name = "Regular.TextIndentIncreaseLtr90") { - fluentPath { - moveTo(8.0f, 17.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(9.0f) - close() - moveTo(14.78f, 2.72f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) - lineToRelative(0.08f, 0.07f) - lineToRelative(1.47f, 1.47f) - lineToRelative(1.47f, -1.47f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(13.0f, 20.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(12.0f) - close() - moveTo(18.0f, 17.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(9.0f) - close() - } - } - return _textIndentIncreaseLtr90!! - } - -private var _textIndentIncreaseLtr90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentIncreaseLtrRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentIncreaseLtrRotate270.kt deleted file mode 100644 index 10474c99..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentIncreaseLtrRotate270.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextIndentIncreaseLtrRotate270: ImageVector - get() { - if (_textIndentIncreaseLtrRotate270 != null) { - return _textIndentIncreaseLtrRotate270!! - } - _textIndentIncreaseLtrRotate270 = fluentIcon(name = - "Regular.TextIndentIncreaseLtrRotate270") { - fluentPath { - moveTo(16.0f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-9.0f) - close() - moveTo(9.22f, 21.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - lineToRelative(2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-1.47f, -1.47f) - lineToRelative(-1.47f, 1.47f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - close() - moveTo(11.0f, 3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-12.0f) - close() - moveTo(6.0f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-9.0f) - close() - } - } - return _textIndentIncreaseLtrRotate270!! - } - -private var _textIndentIncreaseLtrRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentIncreaseRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentIncreaseRotate270.kt deleted file mode 100644 index 1377b614..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentIncreaseRotate270.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextIndentIncreaseRotate270: ImageVector - get() { - if (_textIndentIncreaseRotate270 != null) { - return _textIndentIncreaseRotate270!! - } - _textIndentIncreaseRotate270 = fluentIcon(name = "Regular.TextIndentIncreaseRotate270") { - fluentPath { - moveTo(16.0f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-9.0f) - close() - moveTo(9.22f, 21.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) - lineToRelative(0.07f, -0.08f) - lineToRelative(2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) - lineToRelative(0.08f, 0.07f) - lineToRelative(2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-1.47f, -1.47f) - lineToRelative(-1.47f, 1.47f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - close() - moveTo(11.0f, 3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-12.0f) - close() - moveTo(6.0f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-9.0f) - close() - } - } - return _textIndentIncreaseRotate270!! - } - -private var _textIndentIncreaseRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentIncreaseRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentIncreaseRotate90.kt deleted file mode 100644 index 3f59a925..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentIncreaseRotate90.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextIndentIncreaseRotate90: ImageVector - get() { - if (_textIndentIncreaseRotate90 != null) { - return _textIndentIncreaseRotate90!! - } - _textIndentIncreaseRotate90 = fluentIcon(name = "Regular.TextIndentIncreaseRotate90") { - fluentPath { - moveTo(8.0f, 17.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(9.0f) - close() - moveTo(14.78f, 2.72f) - curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) - lineToRelative(0.08f, 0.07f) - lineToRelative(1.47f, 1.47f) - lineToRelative(1.47f, -1.47f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(13.0f, 20.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(12.0f) - close() - moveTo(18.0f, 17.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(9.0f) - close() - } - } - return _textIndentIncreaseRotate90!! - } - -private var _textIndentIncreaseRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentIncreaseRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentIncreaseRtl.kt deleted file mode 100644 index 19c388e7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentIncreaseRtl.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextIndentIncreaseRtl: ImageVector - get() { - if (_textIndentIncreaseRtl != null) { - return _textIndentIncreaseRtl!! - } - _textIndentIncreaseRtl = fluentIcon(name = "Regular.TextIndentIncreaseRtl") { - fluentPath { - moveTo(6.25f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-9.0f) - close() - moveTo(21.28f, 9.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, -0.07f) - lineToRelative(-0.08f, 0.07f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.98f) - lineToRelative(0.07f, 0.08f) - lineToRelative(2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, -0.98f) - lineToRelative(-0.07f, -0.08f) - lineToRelative(-1.47f, -1.47f) - lineToRelative(1.47f, -1.47f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - close() - moveTo(3.25f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-12.0f) - close() - moveTo(6.25f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-9.0f) - close() - } - } - return _textIndentIncreaseRtl!! - } - -private var _textIndentIncreaseRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentIncreaseRtl90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentIncreaseRtl90.kt deleted file mode 100644 index 32e778e6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentIncreaseRtl90.kt +++ /dev/null @@ -1,53 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextIndentIncreaseRtl90: ImageVector - get() { - if (_textIndentIncreaseRtl90 != null) { - return _textIndentIncreaseRtl90!! - } - _textIndentIncreaseRtl90 = fluentIcon(name = "Regular.TextIndentIncreaseRtl90") { - fluentPath { - moveTo(8.0f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-9.0f) - close() - moveTo(14.78f, 21.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.07f, -0.98f) - lineToRelative(-0.07f, -0.08f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, -0.07f) - lineToRelative(-0.08f, 0.07f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) - lineToRelative(0.08f, -0.07f) - lineToRelative(1.47f, -1.47f) - lineToRelative(1.47f, 1.47f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - close() - moveTo(13.0f, 3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-12.0f) - close() - moveTo(18.0f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-9.0f) - close() - } - } - return _textIndentIncreaseRtl90!! - } - -private var _textIndentIncreaseRtl90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentIncreaseRtlRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentIncreaseRtlRotate270.kt deleted file mode 100644 index f9170c4b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextIndentIncreaseRtlRotate270.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextIndentIncreaseRtlRotate270: ImageVector - get() { - if (_textIndentIncreaseRtlRotate270 != null) { - return _textIndentIncreaseRtlRotate270!! - } - _textIndentIncreaseRtlRotate270 = fluentIcon(name = - "Regular.TextIndentIncreaseRtlRotate270") { - fluentPath { - moveTo(16.0f, 17.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(9.0f) - close() - moveTo(9.22f, 2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.98f) - lineToRelative(0.07f, 0.08f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.27f, 0.27f, 0.68f, 0.3f, 0.98f, 0.07f) - lineToRelative(0.08f, -0.07f) - lineToRelative(2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, -1.13f) - lineToRelative(-0.08f, 0.07f) - lineToRelative(-1.47f, 1.47f) - lineToRelative(-1.47f, -1.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - close() - moveTo(11.0f, 20.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(12.0f) - close() - moveTo(6.0f, 17.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(9.0f) - close() - } - } - return _textIndentIncreaseRtlRotate270!! - } - -private var _textIndentIncreaseRtlRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextItalic.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextItalic.kt deleted file mode 100644 index 69f1f41d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextItalic.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextItalic: ImageVector - get() { - if (_textItalic != null) { - return _textItalic!! - } - _textItalic = fluentIcon(name = "Regular.TextItalic") { - fluentPath { - moveTo(9.75f, 4.0f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineTo(15.06f) - lineToRelative(-5.01f, 13.0f) - horizontalLineToRelative(4.21f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 0.38f, -0.27f, 0.7f, -0.64f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(3.68f) - lineToRelative(0.03f, -0.07f) - lineTo(13.45f, 5.5f) - horizontalLineToRelative(-3.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - verticalLineToRelative(-0.1f) - curveToRelative(0.0f, -0.38f, 0.27f, -0.7f, 0.64f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(8.5f) - horizontalLineToRelative(-8.5f) - close() - } - } - return _textItalic!! - } - -private var _textItalic: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextLineSpacing.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextLineSpacing.kt deleted file mode 100644 index 9fc118aa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextLineSpacing.kt +++ /dev/null @@ -1,66 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextLineSpacing: ImageVector - get() { - if (_textLineSpacing != null) { - return _textLineSpacing!! - } - _textLineSpacing = fluentIcon(name = "Regular.TextLineSpacing") { - fluentPath { - moveToRelative(19.53f, 3.22f) - lineToRelative(2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineToRelative(-0.72f, -0.72f) - verticalLineToRelative(4.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(18.25f, 5.56f) - lineToRelative(-0.72f, 0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 0.0f) - close() - moveTo(2.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-8.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 2.0f, 5.75f) - close() - moveTo(2.0f, 12.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(2.75f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(2.75f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-8.5f) - close() - moveTo(18.25f, 18.44f) - verticalLineToRelative(-4.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(4.69f) - lineToRelative(0.72f, -0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 0.0f) - lineToRelative(-2.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(0.72f, 0.72f) - close() - } - } - return _textLineSpacing!! - } - -private var _textLineSpacing: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextMore.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextMore.kt deleted file mode 100644 index 90f3cb4b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextMore.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextMore: ImageVector - get() { - if (_textMore != null) { - return _textMore!! - } - _textMore = fluentIcon(name = "Regular.TextMore") { - fluentPath { - moveTo(9.75f, 2.0f) - curveToRelative(0.3f, 0.0f, 0.57f, 0.18f, 0.7f, 0.46f) - lineToRelative(6.96f, 16.43f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.0f, -0.89f) - lineToRelative(-1.49f, -3.5f) - lineTo(5.58f, 14.5f) - lineToRelative(-2.14f, 5.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.38f, -0.58f) - lineToRelative(7.0f, -16.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 9.75f, 2.0f) - close() - moveTo(13.28f, 13.0f) - lineTo(9.75f, 4.67f) - lineTo(6.22f, 13.0f) - horizontalLineToRelative(7.06f) - close() - moveTo(12.0f, 20.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - moveTo(15.5f, 22.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - close() - moveTo(20.5f, 22.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - close() - } - } - return _textMore!! - } - -private var _textMore: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextNumberFormat.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextNumberFormat.kt deleted file mode 100644 index 7516b840..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextNumberFormat.kt +++ /dev/null @@ -1,160 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextNumberFormat: ImageVector - get() { - if (_textNumberFormat != null) { - return _textNumberFormat!! - } - _textNumberFormat = fluentIcon(name = "Regular.TextNumberFormat") { - fluentPath { - moveTo(9.76f, 3.0f) - horizontalLineToRelative(-0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(2.63f) - curveToRelative(0.28f, 0.0f, 0.9f, -0.04f, 1.46f, -0.34f) - arcTo(2.15f, 2.15f, 0.0f, false, false, 15.0f, 8.63f) - curveToRelative(0.0f, -0.52f, -0.11f, -0.97f, -0.34f, -1.33f) - curveToRelative(-0.13f, -0.22f, -0.3f, -0.4f, -0.47f, -0.54f) - curveToRelative(0.24f, -0.35f, 0.39f, -0.81f, 0.39f, -1.38f) - curveToRelative(0.0f, -0.5f, -0.1f, -0.94f, -0.3f, -1.3f) - curveToRelative(-0.2f, -0.37f, -0.47f, -0.62f, -0.76f, -0.78f) - curveToRelative(-0.54f, -0.3f, -1.12f, -0.3f, -1.34f, -0.3f) - lineTo(9.76f, 3.0f) - close() - moveTo(12.38f, 9.5f) - lineTo(10.5f, 9.5f) - lineTo(10.5f, 7.75f) - lineTo(12.37f, 7.75f) - curveToRelative(0.25f, 0.0f, 0.55f, 0.01f, 0.79f, 0.13f) - curveToRelative(0.1f, 0.04f, 0.17f, 0.1f, 0.22f, 0.2f) - curveToRelative(0.06f, 0.09f, 0.12f, 0.25f, 0.12f, 0.55f) - curveToRelative(0.0f, 0.24f, -0.06f, 0.39f, -0.11f, 0.48f) - arcToRelative(0.65f, 0.65f, 0.0f, false, true, -0.26f, 0.22f) - curveToRelative(-0.25f, 0.14f, -0.57f, 0.17f, -0.75f, 0.17f) - close() - moveTo(10.5f, 6.25f) - lineTo(10.5f, 4.5f) - horizontalLineToRelative(1.66f) - curveToRelative(0.22f, 0.0f, 0.45f, 0.01f, 0.62f, 0.1f) - curveToRelative(0.07f, 0.05f, 0.13f, 0.1f, 0.18f, 0.2f) - curveToRelative(0.06f, 0.09f, 0.12f, 0.26f, 0.12f, 0.58f) - curveToRelative(0.0f, 0.26f, -0.06f, 0.42f, -0.11f, 0.51f) - arcToRelative(0.56f, 0.56f, 0.0f, false, true, -0.2f, 0.21f) - curveToRelative(-0.2f, 0.12f, -0.45f, 0.15f, -0.6f, 0.15f) - lineTo(10.5f, 6.25f) - close() - moveTo(5.28f, 3.0f) - curveToRelative(0.31f, 0.0f, 0.59f, 0.2f, 0.7f, 0.5f) - lineToRelative(2.3f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.41f, 0.5f) - lineToRelative(-0.34f, -0.95f) - horizontalLineToRelative(-2.7f) - lineToRelative(-0.38f, 0.97f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.4f, -0.54f) - lineToRelative(2.52f, -6.5f) - curveToRelative(0.11f, -0.3f, 0.4f, -0.48f, 0.7f, -0.48f) - close() - moveTo(5.24f, 5.9f) - lineTo(4.4f, 8.06f) - lineTo(6.0f, 8.06f) - lineTo(5.24f, 5.9f) - close() - moveTo(20.53f, 3.27f) - curveToRelative(0.61f, 0.3f, 1.1f, 0.87f, 1.43f, 1.79f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.42f, 0.5f) - curveToRelative(-0.23f, -0.64f, -0.5f, -0.85f, -0.67f, -0.94f) - curveToRelative(-0.22f, -0.1f, -0.47f, -0.12f, -0.87f, -0.12f) - curveToRelative(-0.38f, 0.0f, -0.62f, 0.12f, -0.8f, 0.28f) - curveToRelative(-0.2f, 0.17f, -0.35f, 0.43f, -0.47f, 0.73f) - arcToRelative(3.88f, 3.88f, 0.0f, false, false, -0.23f, 1.23f) - verticalLineToRelative(0.01f) - curveToRelative(0.0f, 0.53f, 0.0f, 1.2f, 0.23f, 1.76f) - curveToRelative(0.1f, 0.27f, 0.25f, 0.49f, 0.45f, 0.65f) - curveToRelative(0.19f, 0.16f, 0.47f, 0.3f, 0.9f, 0.34f) - curveToRelative(0.35f, 0.04f, 1.13f, -0.02f, 1.49f, -0.8f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.36f, 0.62f) - curveToRelative(-0.77f, 1.7f, -2.46f, 1.74f, -3.01f, 1.68f) - arcToRelative(3.15f, 3.15f, 0.0f, false, true, -1.7f, -0.68f) - arcToRelative(3.04f, 3.04f, 0.0f, false, true, -0.89f, -1.26f) - arcTo(6.28f, 6.28f, 0.0f, false, true, 16.0f, 6.78f) - lineTo(16.0f, 6.7f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 0.04f, -0.51f) - curveToRelative(0.04f, -0.32f, 0.12f, -0.76f, 0.29f, -1.2f) - curveToRelative(0.17f, -0.45f, 0.43f, -0.94f, 0.87f, -1.33f) - curveToRelative(0.45f, -0.4f, 1.05f, -0.66f, 1.8f, -0.66f) - horizontalLineToRelative(0.04f) - curveToRelative(0.36f, 0.0f, 0.93f, 0.0f, 1.49f, 0.27f) - close() - moveTo(16.97f, 15.14f) - curveToRelative(0.03f, -0.11f, 0.11f, -0.27f, 0.25f, -0.4f) - curveToRelative(0.13f, -0.11f, 0.36f, -0.24f, 0.78f, -0.24f) - curveToRelative(0.76f, 0.0f, 1.0f, 0.5f, 1.0f, 0.73f) - curveToRelative(0.0f, 0.24f, -0.05f, 0.49f, -0.19f, 0.66f) - curveToRelative(-0.11f, 0.14f, -0.38f, 0.36f, -1.1f, 0.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - curveToRelative(0.27f, 0.0f, 0.65f, 0.04f, 0.93f, 0.17f) - curveToRelative(0.13f, 0.06f, 0.22f, 0.13f, 0.27f, 0.2f) - curveToRelative(0.04f, 0.06f, 0.09f, 0.17f, 0.09f, 0.36f) - curveToRelative(0.0f, 0.48f, -0.15f, 0.7f, -0.28f, 0.8f) - curveToRelative(-0.15f, 0.14f, -0.4f, 0.22f, -0.72f, 0.22f) - curveToRelative(-0.36f, 0.0f, -0.57f, -0.06f, -0.7f, -0.14f) - curveToRelative(-0.1f, -0.07f, -0.23f, -0.2f, -0.34f, -0.53f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.42f, 0.47f) - curveToRelative(0.18f, 0.57f, 0.5f, 1.03f, 0.97f, 1.33f) - curveToRelative(0.45f, 0.28f, 0.98f, 0.37f, 1.49f, 0.37f) - arcToRelative(2.6f, 2.6f, 0.0f, false, false, 1.69f, -0.56f) - curveToRelative(0.52f, -0.45f, 0.81f, -1.12f, 0.81f, -1.96f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.63f, -1.52f) - lineToRelative(0.11f, -0.14f) - curveToRelative(0.44f, -0.55f, 0.52f, -1.19f, 0.52f, -1.6f) - curveToRelative(0.0f, -1.07f, -0.93f, -2.22f, -2.5f, -2.22f) - arcToRelative(2.6f, 2.6f, 0.0f, false, false, -1.77f, 0.62f) - curveToRelative(-0.4f, 0.35f, -0.6f, 0.78f, -0.7f, 1.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.44f, 0.42f) - close() - moveTo(10.5f, 15.52f) - curveToRelative(0.0f, -0.53f, 0.44f, -1.02f, 0.99f, -1.02f) - curveToRelative(0.4f, 0.0f, 0.73f, 0.2f, 0.89f, 0.43f) - curveToRelative(0.14f, 0.21f, 0.22f, 0.57f, -0.1f, 1.1f) - arcToRelative(2.7f, 2.7f, 0.0f, false, true, -0.68f, 0.72f) - lineToRelative(-0.49f, 0.37f) - lineToRelative(-0.07f, 0.05f) - lineToRelative(-0.48f, 0.34f) - curveTo(9.82f, 18.07f, 9.0f, 18.85f, 9.0f, 20.25f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.45f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(10.7f, 19.5f) - curveToRelative(0.16f, -0.28f, 0.42f, -0.52f, 0.78f, -0.8f) - lineToRelative(0.43f, -0.3f) - lineToRelative(0.08f, -0.06f) - curveToRelative(0.18f, -0.13f, 0.37f, -0.26f, 0.55f, -0.41f) - curveToRelative(0.38f, -0.3f, 0.76f, -0.66f, 1.05f, -1.14f) - curveToRelative(0.56f, -0.95f, 0.55f, -1.92f, 0.06f, -2.67f) - arcTo(2.53f, 2.53f, 0.0f, false, false, 9.0f, 15.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - close() - moveTo(4.92f, 16.74f) - curveToRelative(0.2f, -0.14f, 0.41f, -0.3f, 0.6f, -0.48f) - verticalLineToRelative(3.99f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.48f, -0.16f) - curveToRelative(-0.13f, 0.58f, -0.7f, 1.39f, -1.46f, 1.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.84f, 1.25f) - close() - } - } - return _textNumberFormat!! - } - -private var _textNumberFormat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextNumberListLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextNumberListLtr.kt deleted file mode 100644 index faa0f58e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextNumberListLtr.kt +++ /dev/null @@ -1,107 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextNumberListLtr: ImageVector - get() { - if (_textNumberListLtr != null) { - return _textNumberListLtr!! - } - _textNumberListLtr = fluentIcon(name = "Regular.TextNumberListLtr") { - fluentPath { - moveTo(6.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.43f, -0.3f) - arcToRelative(1.42f, 1.42f, 0.0f, false, true, -0.07f, 0.13f) - curveToRelative(-0.05f, 0.1f, -0.13f, 0.23f, -0.24f, 0.38f) - curveToRelative(-0.22f, 0.32f, -0.52f, 0.66f, -0.9f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.79f, 1.28f) - lineToRelative(0.35f, -0.25f) - verticalLineToRelative(2.36f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) - verticalLineToRelative(-4.5f) - close() - moveTo(20.5f, 18.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(9.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - close() - moveTo(20.5f, 12.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.76f) - horizontalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(9.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) - close() - moveTo(20.5f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(9.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - close() - moveTo(5.15f, 10.52f) - curveToRelative(-0.3f, -0.05f, -0.68f, 0.07f, -0.87f, 0.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - arcToRelative(2.57f, 2.57f, 0.0f, false, true, 2.2f, -0.68f) - curveToRelative(0.39f, 0.07f, 0.8f, 0.26f, 1.1f, 0.6f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 7.0f, 11.0f) - curveToRelative(0.0f, 0.62f, -0.27f, 1.08f, -0.6f, 1.42f) - curveToRelative(-0.28f, 0.28f, -0.64f, 0.51f, -0.91f, 0.69f) - lineToRelative(-0.08f, 0.05f) - curveToRelative(-0.2f, 0.13f, -0.36f, 0.24f, -0.48f, 0.34f) - horizontalLineToRelative(1.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - curveToRelative(0.0f, -1.31f, 0.98f, -1.95f, 1.58f, -2.34f) - lineToRelative(0.06f, -0.04f) - curveToRelative(0.31f, -0.2f, 0.53f, -0.34f, 0.68f, -0.5f) - curveToRelative(0.14f, -0.14f, 0.18f, -0.24f, 0.18f, -0.37f) - curveToRelative(0.0f, -0.22f, -0.06f, -0.32f, -0.1f, -0.36f) - arcToRelative(0.42f, 0.42f, 0.0f, false, false, -0.25f, -0.12f) - close() - moveTo(2.97f, 21.28f) - reflectiveCurveToRelative(0.1f, 0.08f, 0.0f, 0.0f) - lineToRelative(0.01f, 0.01f) - lineToRelative(0.01f, 0.01f) - arcToRelative(1.4f, 1.4f, 0.0f, false, false, 0.15f, 0.13f) - arcTo(3.24f, 3.24f, 0.0f, false, false, 5.0f, 22.0f) - curveToRelative(0.64f, 0.0f, 1.2f, -0.18f, 1.6f, -0.54f) - curveToRelative(0.4f, -0.36f, 0.61f, -0.86f, 0.6f, -1.36f) - curveToRelative(-0.02f, -0.42f, -0.17f, -0.8f, -0.43f, -1.1f) - arcToRelative(1.73f, 1.73f, 0.0f, false, false, -0.17f, -2.46f) - curveTo(6.2f, 16.18f, 5.64f, 16.0f, 5.0f, 16.0f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, -1.86f, 0.57f) - arcToRelative(1.95f, 1.95f, 0.0f, false, false, -0.15f, 0.13f) - lineToRelative(-0.01f, 0.01f) - lineToRelative(-0.01f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.07f, 1.05f) - lineToRelative(0.17f, -0.1f) - curveToRelative(0.16f, -0.08f, 0.42f, -0.17f, 0.79f, -0.17f) - curveToRelative(0.36f, 0.0f, 0.54f, 0.1f, 0.6f, 0.16f) - curveToRelative(0.08f, 0.07f, 0.1f, 0.13f, 0.1f, 0.2f) - curveToRelative(0.0f, 0.06f, -0.04f, 0.14f, -0.13f, 0.22f) - curveToRelative(-0.09f, 0.08f, -0.26f, 0.17f, -0.57f, 0.17f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - curveToRelative(0.31f, 0.0f, 0.48f, 0.1f, 0.57f, 0.17f) - curveToRelative(0.1f, 0.08f, 0.12f, 0.16f, 0.13f, 0.23f) - curveToRelative(0.0f, 0.06f, -0.02f, 0.13f, -0.1f, 0.19f) - curveToRelative(-0.06f, 0.06f, -0.24f, 0.16f, -0.6f, 0.16f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.96f, -0.27f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.07f, 1.05f) - close() - moveTo(2.97f, 16.72f) - close() - } - } - return _textNumberListLtr!! - } - -private var _textNumberListLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextNumberListLtr90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextNumberListLtr90.kt deleted file mode 100644 index 6ff74918..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextNumberListLtr90.kt +++ /dev/null @@ -1,108 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextNumberListLtr90: ImageVector - get() { - if (_textNumberListLtr90 != null) { - return _textNumberListLtr90!! - } - _textNumberListLtr90 = fluentIcon(name = "Regular.TextNumberListLtr90") { - fluentPath { - moveTo(21.25f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.3f, -1.43f) - arcToRelative(1.47f, 1.47f, 0.0f, false, true, -0.13f, -0.07f) - curveToRelative(-0.1f, -0.05f, -0.23f, -0.13f, -0.38f, -0.24f) - arcToRelative(3.26f, 3.26f, 0.0f, false, true, -0.9f, -0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.28f, 0.79f) - lineToRelative(0.25f, 0.35f) - horizontalLineToRelative(-2.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.5f) - close() - moveTo(5.25f, 20.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - close() - moveTo(11.75f, 20.5f) - curveToRelative(0.42f, 0.0f, 0.76f, -0.34f, 0.76f, -0.75f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 0.41f, 0.33f, 0.75f, 0.75f, 0.75f) - close() - moveTo(18.25f, 20.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - close() - moveTo(13.48f, 5.15f) - curveToRelative(0.05f, -0.3f, -0.07f, -0.68f, -0.26f, -0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - curveToRelative(0.56f, 0.56f, 0.81f, 1.43f, 0.68f, 2.2f) - curveToRelative(-0.07f, 0.39f, -0.26f, 0.8f, -0.6f, 1.1f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 13.0f, 7.0f) - curveToRelative(-0.62f, 0.0f, -1.08f, -0.27f, -1.42f, -0.6f) - curveToRelative(-0.28f, -0.28f, -0.51f, -0.64f, -0.69f, -0.91f) - lineToRelative(-0.05f, -0.08f) - curveToRelative(-0.13f, -0.2f, -0.24f, -0.36f, -0.34f, -0.48f) - verticalLineToRelative(1.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - curveToRelative(1.31f, 0.0f, 1.95f, 0.98f, 2.34f, 1.58f) - lineToRelative(0.04f, 0.06f) - curveToRelative(0.2f, 0.31f, 0.34f, 0.53f, 0.5f, 0.68f) - curveToRelative(0.14f, 0.14f, 0.24f, 0.18f, 0.37f, 0.18f) - curveToRelative(0.22f, 0.0f, 0.32f, -0.06f, 0.36f, -0.1f) - curveToRelative(0.05f, -0.04f, 0.1f, -0.12f, 0.12f, -0.25f) - close() - moveTo(2.72f, 2.97f) - reflectiveCurveToRelative(-0.08f, 0.1f, 0.0f, 0.0f) - lineToRelative(-0.01f, 0.01f) - lineToRelative(-0.01f, 0.01f) - arcToRelative(1.46f, 1.46f, 0.0f, false, false, -0.13f, 0.15f) - arcTo(3.24f, 3.24f, 0.0f, false, false, 2.0f, 5.0f) - curveToRelative(0.0f, 0.64f, 0.18f, 1.2f, 0.54f, 1.6f) - curveToRelative(0.36f, 0.4f, 0.86f, 0.61f, 1.36f, 0.6f) - curveToRelative(0.42f, -0.02f, 0.8f, -0.17f, 1.1f, -0.43f) - arcToRelative(1.73f, 1.73f, 0.0f, false, false, 2.46f, -0.17f) - curveTo(7.82f, 6.2f, 8.0f, 5.64f, 8.0f, 5.0f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, -0.57f, -1.86f) - arcTo(1.96f, 1.96f, 0.0f, false, false, 7.3f, 3.0f) - lineToRelative(-0.01f, -0.01f) - lineToRelative(-0.01f, -0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.05f, 1.07f) - lineToRelative(0.1f, 0.17f) - curveToRelative(0.08f, 0.16f, 0.17f, 0.42f, 0.17f, 0.79f) - curveToRelative(0.0f, 0.36f, -0.1f, 0.54f, -0.16f, 0.6f) - arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.2f, 0.1f) - arcToRelative(0.32f, 0.32f, 0.0f, false, true, -0.22f, -0.13f) - curveToRelative(-0.08f, -0.09f, -0.17f, -0.26f, -0.17f, -0.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - curveToRelative(0.0f, 0.31f, -0.1f, 0.48f, -0.17f, 0.57f) - arcToRelative(0.32f, 0.32f, 0.0f, false, true, -0.23f, 0.13f) - arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.19f, -0.1f) - curveToRelative(-0.06f, -0.06f, -0.16f, -0.24f, -0.16f, -0.6f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.27f, -0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.05f, -1.07f) - close() - moveTo(7.28f, 2.97f) - reflectiveCurveToRelative(0.17f, 0.2f, 0.0f, 0.0f) - close() - } - } - return _textNumberListLtr90!! - } - -private var _textNumberListLtr90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextNumberListLtrRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextNumberListLtrRotate270.kt deleted file mode 100644 index 39604aee..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextNumberListLtrRotate270.kt +++ /dev/null @@ -1,107 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextNumberListLtrRotate270: ImageVector - get() { - if (_textNumberListLtrRotate270 != null) { - return _textNumberListLtrRotate270!! - } - _textNumberListLtrRotate270 = fluentIcon(name = "Regular.TextNumberListLtrRotate270") { - fluentPath { - moveTo(2.75f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.3f, 1.43f) - arcToRelative(1.2f, 1.2f, 0.0f, false, true, 0.13f, 0.07f) - curveToRelative(0.1f, 0.05f, 0.23f, 0.13f, 0.38f, 0.24f) - curveToRelative(0.32f, 0.22f, 0.66f, 0.52f, 0.9f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.28f, -0.79f) - arcToRelative(3.97f, 3.97f, 0.0f, false, false, -0.25f, -0.35f) - horizontalLineToRelative(2.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - close() - moveTo(18.75f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(12.25f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.76f, 0.75f) - verticalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(5.75f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(10.52f, 18.85f) - curveToRelative(-0.05f, 0.3f, 0.07f, 0.68f, 0.26f, 0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - arcToRelative(2.57f, 2.57f, 0.0f, false, true, -0.68f, -2.2f) - curveToRelative(0.07f, -0.39f, 0.26f, -0.8f, 0.6f, -1.1f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 11.0f, 17.0f) - curveToRelative(0.62f, 0.0f, 1.08f, 0.27f, 1.42f, 0.6f) - curveToRelative(0.28f, 0.28f, 0.51f, 0.64f, 0.69f, 0.91f) - lineToRelative(0.05f, 0.08f) - curveToRelative(0.13f, 0.2f, 0.24f, 0.36f, 0.34f, 0.48f) - verticalLineToRelative(-1.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - curveToRelative(-1.31f, 0.0f, -1.95f, -0.98f, -2.34f, -1.58f) - lineToRelative(-0.04f, -0.06f) - arcToRelative(4.2f, 4.2f, 0.0f, false, false, -0.5f, -0.69f) - curveToRelative(-0.14f, -0.13f, -0.24f, -0.17f, -0.37f, -0.17f) - curveToRelative(-0.22f, 0.0f, -0.32f, 0.06f, -0.36f, 0.1f) - arcToRelative(0.42f, 0.42f, 0.0f, false, false, -0.12f, 0.25f) - close() - moveTo(21.28f, 21.03f) - reflectiveCurveToRelative(0.08f, -0.1f, 0.0f, 0.0f) - lineToRelative(0.01f, -0.01f) - lineToRelative(0.01f, -0.01f) - arcToRelative(1.58f, 1.58f, 0.0f, false, false, 0.13f, -0.15f) - arcTo(3.24f, 3.24f, 0.0f, false, false, 22.0f, 19.0f) - curveToRelative(0.0f, -0.64f, -0.18f, -1.2f, -0.54f, -1.6f) - curveToRelative(-0.36f, -0.41f, -0.86f, -0.61f, -1.36f, -0.6f) - curveToRelative(-0.42f, 0.02f, -0.8f, 0.17f, -1.1f, 0.43f) - arcToRelative(1.73f, 1.73f, 0.0f, false, false, -2.46f, 0.17f) - curveToRelative(-0.36f, 0.4f, -0.54f, 0.96f, -0.54f, 1.6f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, 0.57f, 1.86f) - arcToRelative(1.99f, 1.99f, 0.0f, false, false, 0.13f, 0.15f) - lineToRelative(0.01f, 0.01f) - lineToRelative(0.01f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.05f, -1.07f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.27f, -0.96f) - curveToRelative(0.0f, -0.36f, 0.1f, -0.54f, 0.16f, -0.6f) - arcToRelative(0.23f, 0.23f, 0.0f, false, true, 0.2f, -0.1f) - curveToRelative(0.06f, 0.0f, 0.14f, 0.04f, 0.22f, 0.13f) - curveToRelative(0.08f, 0.09f, 0.17f, 0.26f, 0.17f, 0.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - curveToRelative(0.0f, -0.31f, 0.1f, -0.48f, 0.17f, -0.57f) - curveToRelative(0.08f, -0.1f, 0.16f, -0.12f, 0.23f, -0.13f) - curveToRelative(0.06f, 0.0f, 0.13f, 0.02f, 0.19f, 0.1f) - curveToRelative(0.06f, 0.06f, 0.16f, 0.24f, 0.16f, 0.6f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.27f, 0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.05f, 1.07f) - close() - moveTo(16.72f, 21.03f) - reflectiveCurveToRelative(-0.17f, -0.2f, 0.0f, 0.0f) - close() - } - } - return _textNumberListLtrRotate270!! - } - -private var _textNumberListLtrRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextNumberListRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextNumberListRotate270.kt deleted file mode 100644 index a3347f5d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextNumberListRotate270.kt +++ /dev/null @@ -1,107 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextNumberListRotate270: ImageVector - get() { - if (_textNumberListRotate270 != null) { - return _textNumberListRotate270!! - } - _textNumberListRotate270 = fluentIcon(name = "Regular.TextNumberListRotate270") { - fluentPath { - moveTo(2.75f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.3f, 1.43f) - arcToRelative(2.3f, 2.3f, 0.0f, false, true, 0.13f, 0.07f) - curveToRelative(0.1f, 0.05f, 0.23f, 0.13f, 0.38f, 0.24f) - curveToRelative(0.32f, 0.22f, 0.66f, 0.52f, 0.9f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.28f, -0.79f) - arcToRelative(3.97f, 3.97f, 0.0f, false, false, -0.25f, -0.35f) - horizontalLineToRelative(2.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - close() - moveTo(18.75f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(12.25f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.76f, 0.75f) - verticalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(5.75f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(10.52f, 18.85f) - curveToRelative(-0.05f, 0.3f, 0.07f, 0.68f, 0.26f, 0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - arcToRelative(2.57f, 2.57f, 0.0f, false, true, -0.68f, -2.2f) - curveToRelative(0.07f, -0.39f, 0.26f, -0.8f, 0.6f, -1.1f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 11.0f, 17.0f) - curveToRelative(0.62f, 0.0f, 1.08f, 0.27f, 1.42f, 0.6f) - curveToRelative(0.28f, 0.28f, 0.51f, 0.64f, 0.69f, 0.91f) - lineToRelative(0.05f, 0.08f) - curveToRelative(0.13f, 0.2f, 0.24f, 0.36f, 0.34f, 0.48f) - verticalLineToRelative(-1.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - curveToRelative(-1.31f, 0.0f, -1.95f, -0.98f, -2.34f, -1.58f) - lineToRelative(-0.04f, -0.06f) - arcToRelative(4.2f, 4.2f, 0.0f, false, false, -0.5f, -0.68f) - curveToRelative(-0.14f, -0.14f, -0.24f, -0.18f, -0.37f, -0.18f) - curveToRelative(-0.22f, 0.0f, -0.32f, 0.06f, -0.36f, 0.1f) - arcToRelative(0.42f, 0.42f, 0.0f, false, false, -0.12f, 0.25f) - close() - moveTo(21.28f, 21.03f) - reflectiveCurveToRelative(0.08f, -0.1f, 0.0f, 0.0f) - lineToRelative(0.01f, -0.01f) - lineToRelative(0.01f, -0.01f) - arcToRelative(1.42f, 1.42f, 0.0f, false, false, 0.13f, -0.15f) - arcTo(3.24f, 3.24f, 0.0f, false, false, 22.0f, 19.0f) - curveToRelative(0.0f, -0.64f, -0.18f, -1.2f, -0.54f, -1.6f) - curveToRelative(-0.36f, -0.4f, -0.86f, -0.61f, -1.36f, -0.6f) - curveToRelative(-0.42f, 0.02f, -0.8f, 0.17f, -1.1f, 0.43f) - arcToRelative(1.73f, 1.73f, 0.0f, false, false, -2.46f, 0.17f) - curveToRelative(-0.36f, 0.4f, -0.54f, 0.96f, -0.54f, 1.6f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, 0.57f, 1.86f) - arcToRelative(1.95f, 1.95f, 0.0f, false, false, 0.13f, 0.15f) - lineToRelative(0.01f, 0.01f) - lineToRelative(0.01f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.05f, -1.07f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.27f, -0.96f) - curveToRelative(0.0f, -0.36f, 0.1f, -0.54f, 0.16f, -0.6f) - arcToRelative(0.23f, 0.23f, 0.0f, false, true, 0.2f, -0.1f) - curveToRelative(0.06f, 0.0f, 0.14f, 0.04f, 0.22f, 0.13f) - curveToRelative(0.08f, 0.09f, 0.17f, 0.26f, 0.17f, 0.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - curveToRelative(0.0f, -0.31f, 0.1f, -0.48f, 0.17f, -0.57f) - curveToRelative(0.08f, -0.1f, 0.16f, -0.12f, 0.23f, -0.13f) - curveToRelative(0.06f, 0.0f, 0.13f, 0.02f, 0.19f, 0.1f) - curveToRelative(0.06f, 0.06f, 0.16f, 0.24f, 0.16f, 0.6f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.27f, 0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.05f, 1.07f) - close() - moveTo(16.72f, 21.03f) - reflectiveCurveToRelative(-0.17f, -0.2f, 0.0f, 0.0f) - close() - } - } - return _textNumberListRotate270!! - } - -private var _textNumberListRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextNumberListRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextNumberListRotate90.kt deleted file mode 100644 index 96b113cd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextNumberListRotate90.kt +++ /dev/null @@ -1,108 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextNumberListRotate90: ImageVector - get() { - if (_textNumberListRotate90 != null) { - return _textNumberListRotate90!! - } - _textNumberListRotate90 = fluentIcon(name = "Regular.TextNumberListRotate90") { - fluentPath { - moveTo(21.25f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.3f, -1.43f) - arcToRelative(1.47f, 1.47f, 0.0f, false, true, -0.13f, -0.07f) - curveToRelative(-0.1f, -0.05f, -0.23f, -0.13f, -0.38f, -0.24f) - arcToRelative(3.26f, 3.26f, 0.0f, false, true, -0.9f, -0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.28f, 0.79f) - lineToRelative(0.25f, 0.35f) - horizontalLineToRelative(-2.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.5f) - close() - moveTo(5.25f, 20.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - close() - moveTo(11.75f, 20.5f) - curveToRelative(0.42f, 0.0f, 0.76f, -0.34f, 0.76f, -0.75f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 0.41f, 0.33f, 0.75f, 0.75f, 0.75f) - close() - moveTo(18.25f, 20.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - close() - moveTo(13.48f, 5.15f) - curveToRelative(0.05f, -0.3f, -0.07f, -0.68f, -0.26f, -0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - curveToRelative(0.56f, 0.56f, 0.81f, 1.43f, 0.68f, 2.2f) - curveToRelative(-0.07f, 0.39f, -0.26f, 0.8f, -0.6f, 1.1f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 13.0f, 7.0f) - curveToRelative(-0.62f, 0.0f, -1.08f, -0.27f, -1.42f, -0.6f) - curveToRelative(-0.28f, -0.28f, -0.51f, -0.64f, -0.69f, -0.91f) - lineToRelative(-0.05f, -0.08f) - curveToRelative(-0.13f, -0.2f, -0.24f, -0.36f, -0.34f, -0.48f) - verticalLineToRelative(1.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - curveToRelative(1.31f, 0.0f, 1.95f, 0.98f, 2.34f, 1.58f) - lineToRelative(0.04f, 0.06f) - curveToRelative(0.2f, 0.31f, 0.34f, 0.53f, 0.5f, 0.68f) - curveToRelative(0.14f, 0.14f, 0.24f, 0.18f, 0.37f, 0.18f) - curveToRelative(0.22f, 0.0f, 0.32f, -0.06f, 0.36f, -0.1f) - curveToRelative(0.05f, -0.04f, 0.1f, -0.12f, 0.12f, -0.25f) - close() - moveTo(2.72f, 2.97f) - reflectiveCurveToRelative(-0.08f, 0.1f, 0.0f, 0.0f) - lineToRelative(-0.01f, 0.01f) - lineToRelative(-0.01f, 0.01f) - arcToRelative(1.46f, 1.46f, 0.0f, false, false, -0.13f, 0.15f) - arcTo(3.24f, 3.24f, 0.0f, false, false, 2.0f, 5.0f) - curveToRelative(0.0f, 0.64f, 0.18f, 1.2f, 0.54f, 1.6f) - curveToRelative(0.36f, 0.4f, 0.86f, 0.61f, 1.36f, 0.6f) - curveToRelative(0.42f, -0.02f, 0.8f, -0.17f, 1.1f, -0.43f) - arcToRelative(1.73f, 1.73f, 0.0f, false, false, 2.46f, -0.17f) - curveTo(7.82f, 6.2f, 8.0f, 5.64f, 8.0f, 5.0f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, -0.57f, -1.86f) - arcTo(1.96f, 1.96f, 0.0f, false, false, 7.3f, 3.0f) - lineToRelative(-0.01f, -0.01f) - lineToRelative(-0.01f, -0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.05f, 1.07f) - lineToRelative(0.1f, 0.17f) - curveToRelative(0.08f, 0.16f, 0.17f, 0.42f, 0.17f, 0.79f) - curveToRelative(0.0f, 0.36f, -0.1f, 0.54f, -0.16f, 0.6f) - arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.2f, 0.1f) - arcToRelative(0.32f, 0.32f, 0.0f, false, true, -0.22f, -0.13f) - curveToRelative(-0.08f, -0.09f, -0.17f, -0.26f, -0.17f, -0.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - curveToRelative(0.0f, 0.31f, -0.1f, 0.48f, -0.17f, 0.57f) - arcToRelative(0.32f, 0.32f, 0.0f, false, true, -0.23f, 0.13f) - arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.19f, -0.1f) - curveToRelative(-0.06f, -0.06f, -0.16f, -0.24f, -0.16f, -0.6f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.27f, -0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.05f, -1.07f) - close() - moveTo(7.28f, 2.97f) - reflectiveCurveToRelative(0.17f, 0.2f, 0.0f, 0.0f) - close() - } - } - return _textNumberListRotate90!! - } - -private var _textNumberListRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextNumberListRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextNumberListRtl.kt deleted file mode 100644 index 137a8ed3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextNumberListRtl.kt +++ /dev/null @@ -1,108 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextNumberListRtl: ImageVector - get() { - if (_textNumberListRtl != null) { - return _textNumberListRtl!! - } - _textNumberListRtl = fluentIcon(name = "Regular.TextNumberListRtl") { - fluentPath { - moveTo(20.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.43f, -0.3f) - arcToRelative(2.3f, 2.3f, 0.0f, false, true, -0.07f, 0.13f) - curveToRelative(-0.05f, 0.1f, -0.13f, 0.23f, -0.24f, 0.38f) - curveToRelative(-0.22f, 0.32f, -0.52f, 0.66f, -0.9f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.79f, 1.28f) - lineToRelative(0.35f, -0.25f) - verticalLineToRelative(2.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-4.5f) - close() - moveTo(14.0f, 18.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(9.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - close() - moveTo(14.0f, 12.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.76f) - horizontalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(9.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) - close() - moveTo(14.0f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(9.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - close() - moveTo(19.15f, 10.52f) - curveToRelative(-0.3f, -0.05f, -0.68f, 0.07f, -0.87f, 0.26f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - arcToRelative(2.57f, 2.57f, 0.0f, false, true, 2.2f, -0.68f) - curveToRelative(0.39f, 0.07f, 0.8f, 0.26f, 1.1f, 0.6f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 21.0f, 11.0f) - curveToRelative(0.0f, 0.62f, -0.27f, 1.08f, -0.6f, 1.42f) - curveToRelative(-0.28f, 0.28f, -0.64f, 0.51f, -0.91f, 0.69f) - lineToRelative(-0.08f, 0.05f) - curveToRelative(-0.2f, 0.13f, -0.36f, 0.24f, -0.48f, 0.34f) - horizontalLineToRelative(1.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - curveToRelative(0.0f, -1.31f, 0.98f, -1.95f, 1.58f, -2.34f) - lineToRelative(0.06f, -0.04f) - curveToRelative(0.31f, -0.2f, 0.53f, -0.34f, 0.68f, -0.5f) - curveToRelative(0.14f, -0.14f, 0.18f, -0.24f, 0.18f, -0.37f) - curveToRelative(0.0f, -0.22f, -0.06f, -0.32f, -0.1f, -0.36f) - arcToRelative(0.42f, 0.42f, 0.0f, false, false, -0.25f, -0.12f) - close() - moveTo(16.97f, 21.28f) - reflectiveCurveToRelative(0.1f, 0.08f, 0.0f, 0.0f) - lineToRelative(0.01f, 0.01f) - lineToRelative(0.01f, 0.01f) - arcToRelative(1.42f, 1.42f, 0.0f, false, false, 0.15f, 0.13f) - arcTo(3.24f, 3.24f, 0.0f, false, false, 19.0f, 22.0f) - curveToRelative(0.64f, 0.0f, 1.2f, -0.18f, 1.6f, -0.54f) - curveToRelative(0.4f, -0.36f, 0.61f, -0.86f, 0.6f, -1.36f) - curveToRelative(-0.02f, -0.42f, -0.17f, -0.8f, -0.43f, -1.1f) - arcToRelative(1.73f, 1.73f, 0.0f, false, false, -0.17f, -2.46f) - curveToRelative(-0.4f, -0.36f, -0.96f, -0.54f, -1.6f, -0.54f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, -1.86f, 0.57f) - arcToRelative(1.92f, 1.92f, 0.0f, false, false, -0.15f, 0.13f) - lineToRelative(-0.01f, 0.01f) - lineToRelative(-0.01f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.07f, 1.05f) - lineToRelative(0.17f, -0.1f) - curveToRelative(0.16f, -0.08f, 0.42f, -0.17f, 0.79f, -0.17f) - curveToRelative(0.36f, 0.0f, 0.54f, 0.1f, 0.6f, 0.16f) - curveToRelative(0.08f, 0.07f, 0.1f, 0.13f, 0.1f, 0.2f) - curveToRelative(0.0f, 0.06f, -0.04f, 0.14f, -0.13f, 0.22f) - curveToRelative(-0.09f, 0.08f, -0.26f, 0.17f, -0.57f, 0.17f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - curveToRelative(0.31f, 0.0f, 0.48f, 0.1f, 0.57f, 0.17f) - curveToRelative(0.1f, 0.08f, 0.12f, 0.16f, 0.13f, 0.23f) - curveToRelative(0.0f, 0.06f, -0.02f, 0.13f, -0.1f, 0.19f) - curveToRelative(-0.06f, 0.06f, -0.24f, 0.16f, -0.6f, 0.16f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.96f, -0.27f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.07f, 1.05f) - close() - moveTo(16.97f, 16.72f) - reflectiveCurveToRelative(0.2f, -0.17f, 0.0f, 0.0f) - close() - } - } - return _textNumberListRtl!! - } - -private var _textNumberListRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextNumberListRtl90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextNumberListRtl90.kt deleted file mode 100644 index 72348190..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextNumberListRtl90.kt +++ /dev/null @@ -1,108 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextNumberListRtl90: ImageVector - get() { - if (_textNumberListRtl90 != null) { - return _textNumberListRtl90!! - } - _textNumberListRtl90 = fluentIcon(name = "Regular.TextNumberListRtl90") { - fluentPath { - moveTo(21.25f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.3f, -1.43f) - arcToRelative(2.14f, 2.14f, 0.0f, false, true, -0.13f, -0.07f) - curveToRelative(-0.1f, -0.05f, -0.23f, -0.13f, -0.38f, -0.24f) - arcToRelative(3.26f, 3.26f, 0.0f, false, true, -0.9f, -0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.28f, 0.79f) - lineToRelative(0.25f, 0.35f) - horizontalLineToRelative(-2.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.5f) - close() - moveTo(5.25f, 14.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - close() - moveTo(11.75f, 14.0f) - curveToRelative(0.42f, 0.0f, 0.76f, -0.34f, 0.76f, -0.75f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 0.41f, 0.33f, 0.75f, 0.75f, 0.75f) - close() - moveTo(18.25f, 14.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - close() - moveTo(13.48f, 19.15f) - curveToRelative(0.05f, -0.3f, -0.07f, -0.68f, -0.26f, -0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) - curveToRelative(0.56f, 0.56f, 0.81f, 1.43f, 0.68f, 2.2f) - curveToRelative(-0.07f, 0.39f, -0.26f, 0.8f, -0.6f, 1.1f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 13.0f, 21.0f) - curveToRelative(-0.62f, 0.0f, -1.08f, -0.27f, -1.42f, -0.6f) - arcToRelative(5.29f, 5.29f, 0.0f, false, true, -0.69f, -0.91f) - lineToRelative(-0.05f, -0.08f) - curveToRelative(-0.13f, -0.2f, -0.24f, -0.36f, -0.34f, -0.48f) - verticalLineToRelative(1.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - curveToRelative(1.31f, 0.0f, 1.95f, 0.98f, 2.34f, 1.58f) - lineToRelative(0.04f, 0.06f) - curveToRelative(0.2f, 0.31f, 0.34f, 0.53f, 0.5f, 0.68f) - curveToRelative(0.14f, 0.14f, 0.24f, 0.18f, 0.37f, 0.18f) - curveToRelative(0.22f, 0.0f, 0.32f, -0.06f, 0.36f, -0.1f) - curveToRelative(0.05f, -0.04f, 0.1f, -0.12f, 0.12f, -0.25f) - close() - moveTo(2.72f, 16.97f) - reflectiveCurveToRelative(-0.08f, 0.1f, 0.0f, 0.0f) - lineToRelative(-0.01f, 0.01f) - lineToRelative(-0.01f, 0.01f) - arcToRelative(1.47f, 1.47f, 0.0f, false, false, -0.13f, 0.15f) - arcTo(3.24f, 3.24f, 0.0f, false, false, 2.0f, 19.0f) - curveToRelative(0.0f, 0.64f, 0.18f, 1.2f, 0.54f, 1.6f) - curveToRelative(0.36f, 0.4f, 0.86f, 0.61f, 1.36f, 0.6f) - curveToRelative(0.42f, -0.02f, 0.8f, -0.17f, 1.1f, -0.43f) - arcToRelative(1.73f, 1.73f, 0.0f, false, false, 2.46f, -0.17f) - curveToRelative(0.36f, -0.4f, 0.54f, -0.96f, 0.54f, -1.6f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, -0.57f, -1.86f) - arcTo(1.95f, 1.95f, 0.0f, false, false, 7.3f, 17.0f) - lineToRelative(-0.01f, -0.01f) - lineToRelative(-0.01f, -0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.05f, 1.07f) - lineToRelative(0.1f, 0.17f) - curveToRelative(0.08f, 0.16f, 0.17f, 0.42f, 0.17f, 0.79f) - curveToRelative(0.0f, 0.36f, -0.1f, 0.54f, -0.16f, 0.6f) - arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.2f, 0.1f) - arcToRelative(0.32f, 0.32f, 0.0f, false, true, -0.22f, -0.13f) - curveToRelative(-0.08f, -0.09f, -0.17f, -0.26f, -0.17f, -0.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - curveToRelative(0.0f, 0.31f, -0.1f, 0.48f, -0.17f, 0.57f) - arcToRelative(0.32f, 0.32f, 0.0f, false, true, -0.23f, 0.13f) - arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.19f, -0.1f) - curveToRelative(-0.06f, -0.06f, -0.16f, -0.24f, -0.16f, -0.6f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.27f, -0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.05f, -1.07f) - close() - moveTo(7.28f, 16.97f) - reflectiveCurveToRelative(0.17f, 0.2f, 0.0f, 0.0f) - close() - } - } - return _textNumberListRtl90!! - } - -private var _textNumberListRtl90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextNumberListRtlRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextNumberListRtlRotate270.kt deleted file mode 100644 index 0e771012..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextNumberListRtlRotate270.kt +++ /dev/null @@ -1,106 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextNumberListRtlRotate270: ImageVector - get() { - if (_textNumberListRtlRotate270 != null) { - return _textNumberListRtlRotate270!! - } - _textNumberListRtlRotate270 = fluentIcon(name = "Regular.TextNumberListRtlRotate270") { - fluentPath { - moveTo(2.75f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.3f, 1.43f) - arcToRelative(1.42f, 1.42f, 0.0f, false, true, 0.13f, 0.07f) - curveToRelative(0.1f, 0.05f, 0.23f, 0.13f, 0.38f, 0.24f) - curveToRelative(0.32f, 0.22f, 0.66f, 0.52f, 0.9f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.28f, -0.79f) - arcToRelative(3.96f, 3.96f, 0.0f, false, false, -0.25f, -0.35f) - horizontalLineToRelative(2.36f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.5f) - close() - moveTo(18.75f, 10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(12.25f, 10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.76f, 0.75f) - verticalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(5.75f, 10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(10.52f, 4.85f) - curveToRelative(-0.05f, 0.3f, 0.07f, 0.68f, 0.26f, 0.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - arcToRelative(2.57f, 2.57f, 0.0f, false, true, -0.68f, -2.2f) - curveToRelative(0.07f, -0.39f, 0.26f, -0.8f, 0.6f, -1.1f) - arcTo(2.0f, 2.0f, 0.0f, false, true, 11.0f, 3.0f) - curveToRelative(0.62f, 0.0f, 1.08f, 0.27f, 1.42f, 0.6f) - curveToRelative(0.28f, 0.28f, 0.51f, 0.64f, 0.69f, 0.91f) - lineToRelative(0.05f, 0.08f) - curveToRelative(0.13f, 0.2f, 0.24f, 0.36f, 0.34f, 0.48f) - lineTo(13.5f, 3.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - curveToRelative(-1.31f, 0.0f, -1.95f, -0.98f, -2.34f, -1.58f) - lineToRelative(-0.04f, -0.06f) - arcToRelative(4.2f, 4.2f, 0.0f, false, false, -0.5f, -0.68f) - curveToRelative(-0.14f, -0.14f, -0.24f, -0.18f, -0.37f, -0.18f) - curveToRelative(-0.22f, 0.0f, -0.32f, 0.06f, -0.36f, 0.1f) - arcToRelative(0.42f, 0.42f, 0.0f, false, false, -0.12f, 0.25f) - close() - moveTo(21.28f, 7.03f) - reflectiveCurveToRelative(0.08f, -0.1f, 0.0f, 0.0f) - lineToRelative(0.01f, -0.01f) - lineToRelative(0.01f, -0.01f) - arcToRelative(1.4f, 1.4f, 0.0f, false, false, 0.13f, -0.15f) - arcTo(3.24f, 3.24f, 0.0f, false, false, 22.0f, 5.0f) - curveToRelative(0.0f, -0.64f, -0.18f, -1.2f, -0.54f, -1.6f) - curveToRelative(-0.36f, -0.4f, -0.86f, -0.61f, -1.36f, -0.6f) - curveToRelative(-0.42f, 0.02f, -0.8f, 0.17f, -1.1f, 0.43f) - arcToRelative(1.73f, 1.73f, 0.0f, false, false, -2.46f, 0.17f) - curveToRelative(-0.36f, 0.4f, -0.54f, 0.96f, -0.54f, 1.6f) - arcToRelative(3.24f, 3.24f, 0.0f, false, false, 0.57f, 1.86f) - arcToRelative(1.95f, 1.95f, 0.0f, false, false, 0.13f, 0.15f) - lineToRelative(0.01f, 0.01f) - lineToRelative(0.01f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.05f, -1.07f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 17.5f, 5.0f) - curveToRelative(0.0f, -0.36f, 0.1f, -0.54f, 0.16f, -0.6f) - arcToRelative(0.23f, 0.23f, 0.0f, false, true, 0.2f, -0.1f) - curveToRelative(0.06f, 0.0f, 0.14f, 0.04f, 0.22f, 0.13f) - curveToRelative(0.08f, 0.09f, 0.17f, 0.26f, 0.17f, 0.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - curveToRelative(0.0f, -0.31f, 0.1f, -0.48f, 0.17f, -0.57f) - curveToRelative(0.08f, -0.1f, 0.16f, -0.12f, 0.23f, -0.13f) - curveToRelative(0.06f, 0.0f, 0.13f, 0.02f, 0.19f, 0.1f) - curveToRelative(0.06f, 0.06f, 0.16f, 0.24f, 0.16f, 0.6f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.27f, 0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.05f, 1.07f) - close() - moveTo(16.72f, 7.03f) - close() - } - } - return _textNumberListRtlRotate270!! - } - -private var _textNumberListRtlRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextParagraph.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextParagraph.kt deleted file mode 100644 index c026e156..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextParagraph.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextParagraph: ImageVector - get() { - if (_textParagraph != null) { - return _textParagraph!! - } - _textParagraph = fluentIcon(name = "Regular.TextParagraph") { - fluentPath { - moveTo(21.25f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(4.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) - horizontalLineToRelative(-5.69f) - lineToRelative(2.72f, 2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-4.0f, -4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - lineToRelative(4.0f, -4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineTo(13.56f, 8.0f) - horizontalLineToRelative(5.69f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(7.72f, 11.22f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineTo(10.44f, 15.0f) - horizontalLineTo(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.69f) - lineToRelative(-2.72f, 2.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(4.0f, -4.0f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineToRelative(-4.0f, -4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - close() - } - } - return _textParagraph!! - } - -private var _textParagraph: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextParagraphDirection.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextParagraphDirection.kt deleted file mode 100644 index d0570a31..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextParagraphDirection.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextParagraphDirection: ImageVector - get() { - if (_textParagraphDirection != null) { - return _textParagraphDirection!! - } - _textParagraphDirection = fluentIcon(name = "Regular.TextParagraphDirection") { - fluentPath { - moveTo(13.5f, 3.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, 11.0f) - lineTo(15.0f, 14.0f) - verticalLineToRelative(7.2f) - curveToRelative(0.0f, 0.45f, 0.34f, 0.8f, 0.75f, 0.8f) - reflectiveCurveToRelative(0.75f, -0.35f, 0.75f, -0.8f) - lineTo(16.5f, 4.5f) - lineTo(18.0f, 4.5f) - verticalLineToRelative(16.7f) - curveToRelative(0.0f, 0.45f, 0.34f, 0.8f, 0.75f, 0.8f) - reflectiveCurveToRelative(0.75f, -0.35f, 0.75f, -0.8f) - lineTo(19.5f, 4.5f) - horizontalLineToRelative(0.67f) - curveToRelative(0.47f, -0.06f, 0.83f, -0.37f, 0.83f, -0.75f) - curveToRelative(0.0f, -0.41f, -0.43f, -0.75f, -0.95f, -0.75f) - lineTo(13.5f, 3.0f) - close() - moveTo(13.5f, 4.5f) - lineTo(15.0f, 4.5f) - verticalLineToRelative(8.0f) - horizontalLineToRelative(-1.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, -8.0f) - close() - moveTo(4.08f, 11.86f) - arcToRelative(0.67f, 0.67f, 0.0f, false, true, -0.9f, -0.99f) - lineTo(4.9f, 9.0f) - lineTo(3.18f, 7.13f) - lineToRelative(-0.06f, -0.08f) - arcToRelative(0.67f, 0.67f, 0.0f, false, true, 1.03f, -0.84f) - lineTo(6.3f, 8.54f) - lineToRelative(0.06f, 0.08f) - curveToRelative(0.18f, 0.26f, 0.16f, 0.6f, -0.06f, 0.84f) - lineToRelative(-2.15f, 2.33f) - lineToRelative(-0.07f, 0.07f) - close() - moveTo(5.4f, 19.86f) - arcToRelative(0.67f, 0.67f, 0.0f, false, false, 0.9f, -0.99f) - lineTo(4.59f, 17.0f) - lineToRelative(1.7f, -1.87f) - lineToRelative(0.07f, -0.08f) - arcToRelative(0.67f, 0.67f, 0.0f, false, false, -1.03f, -0.84f) - lineToRelative(-2.15f, 2.33f) - lineToRelative(-0.06f, 0.08f) - curveToRelative(-0.18f, 0.26f, -0.16f, 0.6f, 0.06f, 0.84f) - lineToRelative(2.15f, 2.33f) - lineToRelative(0.07f, 0.07f) - close() - } - } - return _textParagraphDirection!! - } - -private var _textParagraphDirection: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextPositionBehind.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextPositionBehind.kt deleted file mode 100644 index f0da6eba..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextPositionBehind.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextPositionBehind: ImageVector - get() { - if (_textPositionBehind != null) { - return _textPositionBehind!! - } - _textPositionBehind = fluentIcon(name = "Regular.TextPositionBehind") { - fluentPath { - moveTo(3.0f, 4.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(3.75f, 5.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 4.75f) - close() - moveTo(9.5f, 11.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - verticalLineToRelative(4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(16.0f, 11.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -8.0f, 0.0f) - verticalLineToRelative(4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(9.5f, 11.0f) - close() - moveTo(20.25f, 12.5f) - lineTo(17.0f, 12.5f) - lineTo(17.0f, 11.0f) - horizontalLineToRelative(3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(3.75f, 12.5f) - lineTo(7.0f, 12.5f) - lineTo(7.0f, 11.0f) - lineTo(3.75f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(3.75f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 18.0f) - close() - moveTo(10.5f, 11.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(-3.0f) - lineTo(10.5f, 11.0f) - close() - } - } - return _textPositionBehind!! - } - -private var _textPositionBehind: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextPositionFront.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextPositionFront.kt deleted file mode 100644 index 3ccea924..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextPositionFront.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextPositionFront: ImageVector - get() { - if (_textPositionFront != null) { - return _textPositionFront!! - } - _textPositionFront = fluentIcon(name = "Regular.TextPositionFront") { - fluentPath { - moveTo(3.75f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 4.0f) - close() - moveTo(12.0f, 8.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 9.7f, 10.0f) - lineTo(8.14f, 10.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 7.74f, 0.0f) - lineTo(14.3f, 10.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 12.0f, 8.5f) - close() - moveTo(8.0f, 13.5f) - horizontalLineToRelative(1.5f) - verticalLineToRelative(2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(8.0f, 13.5f) - close() - moveTo(16.0f, 13.5f) - horizontalLineToRelative(-1.5f) - verticalLineToRelative(2.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(16.0f, 13.5f) - close() - moveTo(20.25f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(3.75f, 12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(16.5f) - close() - moveTo(3.0f, 18.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(3.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _textPositionFront!! - } - -private var _textPositionFront: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextPositionLine.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextPositionLine.kt deleted file mode 100644 index c700e0ed..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextPositionLine.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextPositionLine: ImageVector - get() { - if (_textPositionLine != null) { - return _textPositionLine!! - } - _textPositionLine = fluentIcon(name = "Regular.TextPositionLine") { - fluentPath { - moveTo(3.75f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 4.0f) - close() - moveTo(7.0f, 8.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 4.5f, 11.0f) - verticalLineToRelative(4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(3.0f, 11.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, 8.0f, 0.0f) - verticalLineToRelative(4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(9.5f, 11.0f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 7.0f, 8.5f) - close() - moveTo(13.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-6.5f) - close() - moveTo(3.75f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 18.0f) - close() - } - } - return _textPositionLine!! - } - -private var _textPositionLine: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextPositionSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextPositionSquare.kt deleted file mode 100644 index b22bbbb3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextPositionSquare.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextPositionSquare: ImageVector - get() { - if (_textPositionSquare != null) { - return _textPositionSquare!! - } - _textPositionSquare = fluentIcon(name = "Regular.TextPositionSquare") { - fluentPath { - moveTo(3.75f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 4.0f) - close() - moveTo(3.0f, 8.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.0f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 8.25f) - close() - moveTo(17.5f, 8.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(3.75f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.0f) - close() - moveTo(17.5f, 11.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(3.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.0f) - close() - moveTo(17.5f, 15.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(3.0f, 18.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(3.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(9.5f, 11.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - verticalLineToRelative(4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(16.0f, 11.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -8.0f, 0.0f) - verticalLineToRelative(4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(9.5f, 11.0f) - close() - } - } - return _textPositionSquare!! - } - -private var _textPositionSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextPositionSquareLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextPositionSquareLeft.kt deleted file mode 100644 index 0524b08c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextPositionSquareLeft.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextPositionSquareLeft: ImageVector - get() { - if (_textPositionSquareLeft != null) { - return _textPositionSquareLeft!! - } - _textPositionSquareLeft = fluentIcon(name = "Regular.TextPositionSquareLeft") { - fluentPath { - moveTo(3.75f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 4.0f) - close() - moveTo(13.25f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-7.0f) - close() - moveTo(12.5f, 15.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(13.25f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-7.0f) - close() - moveTo(3.0f, 18.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(3.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(4.5f, 11.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - verticalLineToRelative(4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(11.0f, 11.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, -8.0f, 0.0f) - verticalLineToRelative(4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(4.5f, 11.0f) - close() - } - } - return _textPositionSquareLeft!! - } - -private var _textPositionSquareLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextPositionSquareRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextPositionSquareRight.kt deleted file mode 100644 index cb2f61c2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextPositionSquareRight.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextPositionSquareRight: ImageVector - get() { - if (_textPositionSquareRight != null) { - return _textPositionSquareRight!! - } - _textPositionSquareRight = fluentIcon(name = "Regular.TextPositionSquareRight") { - fluentPath { - moveTo(20.25f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(3.75f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(16.5f) - close() - moveTo(10.75f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(7.0f) - close() - moveTo(11.5f, 15.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(7.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - close() - moveTo(10.75f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(7.0f) - close() - moveTo(21.0f, 18.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(3.75f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(16.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - close() - moveTo(19.5f, 11.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) - verticalLineToRelative(4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(13.0f, 11.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 8.0f, 0.0f) - verticalLineToRelative(4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(19.5f, 11.0f) - close() - } - } - return _textPositionSquareRight!! - } - -private var _textPositionSquareRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextPositionThrough.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextPositionThrough.kt deleted file mode 100644 index 2cb2ddb3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextPositionThrough.kt +++ /dev/null @@ -1,100 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextPositionThrough: ImageVector - get() { - if (_textPositionThrough != null) { - return _textPositionThrough!! - } - _textPositionThrough = fluentIcon(name = "Regular.TextPositionThrough") { - fluentPath { - moveTo(3.75f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 4.0f) - close() - moveTo(3.0f, 8.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.68f) - arcTo(5.0f, 5.0f, 0.0f, false, false, 7.42f, 9.0f) - lineTo(3.75f, 9.0f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 8.25f) - close() - moveTo(15.46f, 9.0f) - arcToRelative(4.02f, 4.02f, 0.0f, false, false, -5.4f, -1.5f) - arcTo(4.02f, 4.02f, 0.0f, false, false, 8.0f, 11.0f) - verticalLineToRelative(4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) - lineTo(9.5f, 11.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) - verticalLineToRelative(4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, 0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, -0.75f) - lineTo(16.0f, 11.0f) - curveToRelative(0.0f, -0.73f, -0.2f, -1.41f, -0.54f, -2.0f) - close() - moveTo(3.75f, 11.0f) - lineTo(7.0f, 11.0f) - verticalLineToRelative(1.5f) - lineTo(3.75f, 12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(3.75f, 14.5f) - lineTo(7.0f, 14.5f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.08f, 0.0f, 0.17f, 0.02f, 0.25f) - lineTo(3.75f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(13.5f, 15.75f) - curveToRelative(0.0f, 0.08f, 0.0f, 0.17f, 0.02f, 0.25f) - horizontalLineToRelative(-3.04f) - lineToRelative(0.02f, -0.25f) - lineTo(10.5f, 14.5f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(1.25f) - close() - moveTo(20.25f, 12.5f) - lineTo(17.0f, 12.5f) - lineTo(17.0f, 11.0f) - horizontalLineToRelative(3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(17.0f, 15.75f) - curveToRelative(0.0f, 0.08f, 0.0f, 0.17f, -0.02f, 0.25f) - horizontalLineToRelative(3.27f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(17.0f, 14.5f) - verticalLineToRelative(1.25f) - close() - moveTo(13.5f, 12.5f) - horizontalLineToRelative(-3.0f) - lineTo(10.5f, 11.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(1.5f) - close() - moveTo(15.57f, 7.5f) - arcTo(5.0f, 5.0f, 0.0f, false, true, 16.58f, 9.0f) - horizontalLineToRelative(3.67f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-4.68f) - close() - moveTo(3.75f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 18.0f) - close() - } - } - return _textPositionThrough!! - } - -private var _textPositionThrough: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextPositionTight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextPositionTight.kt deleted file mode 100644 index db7f1c48..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextPositionTight.kt +++ /dev/null @@ -1,86 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextPositionTight: ImageVector - get() { - if (_textPositionTight != null) { - return _textPositionTight!! - } - _textPositionTight = fluentIcon(name = "Regular.TextPositionTight") { - fluentPath { - moveTo(3.75f, 4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 4.0f) - close() - moveTo(3.0f, 8.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.68f) - arcTo(5.0f, 5.0f, 0.0f, false, false, 7.42f, 9.0f) - lineTo(3.75f, 9.0f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 8.25f) - close() - moveTo(15.46f, 9.0f) - arcToRelative(4.02f, 4.02f, 0.0f, false, false, -5.4f, -1.5f) - arcTo(4.02f, 4.02f, 0.0f, false, false, 8.0f, 11.0f) - verticalLineToRelative(4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) - lineTo(9.5f, 11.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) - verticalLineToRelative(4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, 0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, -0.75f) - lineTo(16.0f, 11.0f) - curveToRelative(0.0f, -0.73f, -0.2f, -1.41f, -0.54f, -2.0f) - close() - moveTo(3.75f, 11.0f) - lineTo(7.0f, 11.0f) - verticalLineToRelative(1.5f) - lineTo(3.75f, 12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(3.75f, 14.5f) - lineTo(7.0f, 14.5f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.08f, 0.0f, 0.17f, 0.02f, 0.25f) - lineTo(3.75f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(20.25f, 16.0f) - horizontalLineToRelative(-3.27f) - lineToRelative(0.02f, -0.25f) - lineTo(17.0f, 14.5f) - horizontalLineToRelative(3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(20.25f, 12.5f) - lineTo(17.0f, 12.5f) - lineTo(17.0f, 11.0f) - horizontalLineToRelative(3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(20.25f, 9.0f) - horizontalLineToRelative(-3.67f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, -1.0f, -1.5f) - horizontalLineToRelative(4.67f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - close() - moveTo(3.75f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.75f, 18.0f) - close() - } - } - return _textPositionTight!! - } - -private var _textPositionTight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextPositionTopBottom.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextPositionTopBottom.kt deleted file mode 100644 index 5d85837e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextPositionTopBottom.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextPositionTopBottom: ImageVector - get() { - if (_textPositionTopBottom != null) { - return _textPositionTopBottom!! - } - _textPositionTopBottom = fluentIcon(name = "Regular.TextPositionTopBottom") { - fluentPath { - moveTo(3.0f, 4.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(3.75f, 5.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 4.75f) - close() - moveTo(3.0f, 18.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(3.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(9.5f, 11.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - verticalLineToRelative(4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(16.0f, 11.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -8.0f, 0.0f) - verticalLineToRelative(4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(9.5f, 11.0f) - close() - } - } - return _textPositionTopBottom!! - } - -private var _textPositionTopBottom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextProofingTools.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextProofingTools.kt deleted file mode 100644 index 12b7869b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextProofingTools.kt +++ /dev/null @@ -1,110 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextProofingTools: ImageVector - get() { - if (_textProofingTools != null) { - return _textProofingTools!! - } - _textProofingTools = fluentIcon(name = "Regular.TextProofingTools") { - fluentPath { - moveTo(20.53f, 3.27f) - curveToRelative(0.61f, 0.3f, 1.1f, 0.87f, 1.43f, 1.79f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.42f, 0.5f) - curveToRelative(-0.23f, -0.64f, -0.5f, -0.85f, -0.67f, -0.94f) - curveToRelative(-0.22f, -0.1f, -0.47f, -0.12f, -0.87f, -0.12f) - curveToRelative(-0.38f, 0.0f, -0.62f, 0.12f, -0.8f, 0.28f) - curveToRelative(-0.2f, 0.17f, -0.35f, 0.43f, -0.47f, 0.73f) - arcToRelative(3.87f, 3.87f, 0.0f, false, false, -0.23f, 1.23f) - verticalLineToRelative(0.01f) - curveToRelative(0.0f, 0.53f, 0.0f, 1.2f, 0.23f, 1.76f) - curveToRelative(0.1f, 0.27f, 0.25f, 0.49f, 0.45f, 0.65f) - curveToRelative(0.19f, 0.16f, 0.47f, 0.3f, 0.9f, 0.34f) - curveToRelative(0.35f, 0.04f, 1.13f, -0.02f, 1.49f, -0.8f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.36f, 0.62f) - curveToRelative(-0.77f, 1.7f, -2.46f, 1.74f, -3.01f, 1.68f) - arcToRelative(3.15f, 3.15f, 0.0f, false, true, -1.7f, -0.68f) - arcToRelative(3.04f, 3.04f, 0.0f, false, true, -0.89f, -1.26f) - arcTo(6.28f, 6.28f, 0.0f, false, true, 16.0f, 6.78f) - lineTo(16.0f, 6.7f) - arcToRelative(4.09f, 4.09f, 0.0f, false, true, 0.04f, -0.51f) - curveToRelative(0.04f, -0.32f, 0.12f, -0.76f, 0.29f, -1.2f) - curveToRelative(0.17f, -0.45f, 0.43f, -0.94f, 0.87f, -1.33f) - curveToRelative(0.45f, -0.4f, 1.05f, -0.66f, 1.8f, -0.66f) - horizontalLineToRelative(0.04f) - curveToRelative(0.36f, 0.0f, 0.93f, 0.0f, 1.49f, 0.27f) - close() - moveTo(5.28f, 3.0f) - curveToRelative(0.31f, 0.0f, 0.59f, 0.2f, 0.7f, 0.5f) - lineToRelative(2.3f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.41f, 0.5f) - lineToRelative(-0.34f, -0.95f) - horizontalLineToRelative(-2.7f) - lineToRelative(-0.38f, 0.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.4f, -0.54f) - lineToRelative(2.52f, -6.5f) - curveToRelative(0.11f, -0.3f, 0.4f, -0.48f, 0.7f, -0.48f) - close() - moveTo(5.24f, 5.9f) - lineTo(4.4f, 8.06f) - lineTo(6.0f, 8.06f) - lineTo(5.24f, 5.9f) - close() - moveTo(9.28f, 16.22f) - lineTo(11.2f, 18.14f) - lineTo(15.67f, 12.77f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.16f, 0.96f) - lineToRelative(-5.0f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.11f, 0.05f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - close() - moveTo(14.58f, 5.38f) - curveToRelative(0.0f, 0.57f, -0.15f, 1.03f, -0.39f, 1.38f) - curveToRelative(0.18f, 0.14f, 0.34f, 0.32f, 0.47f, 0.54f) - curveToRelative(0.23f, 0.36f, 0.34f, 0.8f, 0.34f, 1.33f) - arcToRelative(2.15f, 2.15f, 0.0f, false, true, -1.16f, 2.03f) - arcToRelative(3.2f, 3.2f, 0.0f, false, true, -1.46f, 0.34f) - lineTo(9.75f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-6.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.43f) - curveToRelative(0.22f, 0.0f, 0.8f, 0.0f, 1.34f, 0.3f) - curveToRelative(0.29f, 0.16f, 0.57f, 0.41f, 0.76f, 0.78f) - curveToRelative(0.2f, 0.36f, 0.3f, 0.8f, 0.3f, 1.3f) - close() - moveTo(12.16f, 4.5f) - lineTo(10.5f, 4.5f) - verticalLineToRelative(1.75f) - horizontalLineToRelative(1.66f) - curveToRelative(0.15f, 0.0f, 0.4f, -0.03f, 0.6f, -0.15f) - arcToRelative(0.56f, 0.56f, 0.0f, false, false, 0.2f, -0.2f) - curveToRelative(0.06f, -0.1f, 0.12f, -0.26f, 0.12f, -0.52f) - curveToRelative(0.0f, -0.32f, -0.06f, -0.5f, -0.12f, -0.59f) - arcToRelative(0.44f, 0.44f, 0.0f, false, false, -0.18f, -0.18f) - curveToRelative(-0.17f, -0.1f, -0.4f, -0.11f, -0.62f, -0.11f) - close() - moveTo(12.38f, 9.5f) - curveToRelative(0.18f, 0.0f, 0.5f, -0.03f, 0.75f, -0.17f) - curveToRelative(0.12f, -0.06f, 0.2f, -0.13f, 0.26f, -0.22f) - arcToRelative(0.88f, 0.88f, 0.0f, false, false, 0.11f, -0.48f) - curveToRelative(0.0f, -0.3f, -0.06f, -0.46f, -0.12f, -0.55f) - arcToRelative(0.52f, 0.52f, 0.0f, false, false, -0.22f, -0.2f) - arcToRelative(1.81f, 1.81f, 0.0f, false, false, -0.78f, -0.13f) - lineTo(10.5f, 7.75f) - lineTo(10.5f, 9.5f) - horizontalLineToRelative(1.88f) - close() - } - } - return _textProofingTools!! - } - -private var _textProofingTools: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextQuote.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextQuote.kt deleted file mode 100644 index 60c27c90..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextQuote.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextQuote: ImageVector - get() { - if (_textQuote != null) { - return _textQuote!! - } - _textQuote = fluentIcon(name = "Regular.TextQuote") { - fluentPath { - moveTo(7.5f, 6.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 10.0f, 8.34f) - verticalLineToRelative(0.2f) - arcToRelative(13.01f, 13.01f, 0.0f, false, true, -3.7f, 9.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.1f, -1.02f) - arcToRelative(11.55f, 11.55f, 0.0f, false, false, 3.08f, -5.86f) - arcTo(2.5f, 2.5f, 0.0f, true, true, 7.5f, 6.0f) - close() - moveTo(16.5f, 6.0f) - arcTo(2.5f, 2.5f, 0.0f, false, true, 19.0f, 8.34f) - verticalLineToRelative(0.2f) - arcToRelative(12.99f, 12.99f, 0.0f, false, true, -3.7f, 9.23f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.1f, -1.04f) - arcToRelative(11.51f, 11.51f, 0.0f, false, false, 3.08f, -5.85f) - arcTo(2.5f, 2.5f, 0.0f, true, true, 16.5f, 6.0f) - close() - moveTo(7.5f, 7.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.0f, 1.12f) - verticalLineToRelative(-0.13f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -0.99f) - close() - moveTo(16.5f, 7.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.0f, 1.12f) - verticalLineToRelative(-0.13f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -0.99f) - close() - } - } - return _textQuote!! - } - -private var _textQuote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextSortAscending.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextSortAscending.kt deleted file mode 100644 index f0bc9fbd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextSortAscending.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextSortAscending: ImageVector - get() { - if (_textSortAscending != null) { - return _textSortAscending!! - } - _textSortAscending = fluentIcon(name = "Regular.TextSortAscending") { - fluentPath { - moveTo(17.25f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(16.69f) - lineToRelative(2.22f, -2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-3.5f, 3.5f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-3.5f, -3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(2.22f, 2.22f) - lineTo(16.5f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(7.77f, 2.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.4f, -0.01f) - lineToRelative(-3.32f, 8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.4f, 0.54f) - lineToRelative(0.79f, -2.02f) - horizontalLineToRelative(3.55f) - lineToRelative(0.76f, 2.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.4f, -0.52f) - lineToRelative(-3.18f, -8.5f) - close() - moveTo(5.82f, 8.0f) - lineToRelative(1.23f, -3.15f) - lineTo(8.23f, 8.0f) - horizontalLineToRelative(-2.4f) - close() - moveTo(4.0f, 13.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - lineTo(9.5f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.63f, 1.15f) - lineTo(6.11f, 20.5f) - lineTo(9.5f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - lineTo(4.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.63f, -1.15f) - lineToRelative(4.02f, -6.35f) - lineTo(4.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _textSortAscending!! - } - -private var _textSortAscending: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextSortDescending.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextSortDescending.kt deleted file mode 100644 index 83b9df4d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextSortDescending.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextSortDescending: ImageVector - get() { - if (_textSortDescending != null) { - return _textSortDescending!! - } - _textSortDescending = fluentIcon(name = "Regular.TextSortDescending") { - fluentPath { - moveTo(4.0f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - lineTo(9.5f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.63f, 1.15f) - lineTo(6.11f, 9.5f) - lineTo(9.5f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - lineTo(4.75f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.63f, -1.15f) - lineTo(8.14f, 3.5f) - lineTo(4.75f, 3.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 4.0f, 2.75f) - close() - moveTo(6.37f, 12.48f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.4f, 0.0f) - lineToRelative(3.18f, 8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.4f, 0.53f) - lineToRelative(-0.76f, -2.01f) - lineTo(5.24f, 19.5f) - lineToRelative(-0.8f, 2.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.39f, -0.54f) - lineToRelative(3.32f, -8.5f) - close() - moveTo(8.23f, 18.0f) - lineToRelative(-1.18f, -3.15f) - lineTo(5.82f, 18.0f) - horizontalLineToRelative(2.41f) - close() - moveTo(17.25f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(16.69f) - lineToRelative(2.22f, -2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-3.5f, 3.5f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-3.5f, -3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(2.22f, 2.22f) - lineTo(16.5f, 2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _textSortDescending!! - } - -private var _textSortDescending: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextStrikethrough.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextStrikethrough.kt deleted file mode 100644 index 9ad5deb6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextStrikethrough.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextStrikethrough: ImageVector - get() { - if (_textStrikethrough != null) { - return _textStrikethrough!! - } - _textStrikethrough = fluentIcon(name = "Regular.TextStrikethrough") { - fluentPath { - moveTo(4.75f, 12.0f) - horizontalLineToRelative(14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(16.28f, 13.5f) - curveToRelative(0.88f, 0.81f, 1.33f, 1.8f, 1.33f, 2.93f) - curveToRelative(0.0f, 2.83f, -3.23f, 4.64f, -6.75f, 4.24f) - curveToRelative(-2.24f, -0.26f, -3.81f, -1.16f, -4.64f, -2.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.33f, -0.71f) - curveToRelative(0.57f, 1.06f, 1.7f, 1.7f, 3.48f, 1.92f) - curveToRelative(2.74f, 0.31f, 5.08f, -1.0f, 5.08f, -2.75f) - curveToRelative(0.0f, -1.17f, -0.8f, -2.12f, -2.56f, -2.88f) - lineToRelative(-0.12f, -0.05f) - lineTo(4.75f, 13.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(14.5f) - horizontalLineToRelative(-14.5f) - close() - moveTo(6.26f, 8.12f) - curveToRelative(0.15f, -2.83f, 2.82f, -4.47f, 6.32f, -4.06f) - curveToRelative(2.2f, 0.26f, 3.87f, 1.05f, 4.99f, 2.41f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.16f, 0.96f) - curveToRelative(-0.85f, -1.04f, -2.17f, -1.67f, -4.0f, -1.88f) - curveToRelative(-2.72f, -0.31f, -4.65f, 0.8f, -4.65f, 2.57f) - curveToRelative(0.0f, 0.78f, 0.23f, 1.35f, 0.83f, 1.98f) - lineToRelative(0.13f, 0.14f) - lineToRelative(0.25f, 0.24f) - lineToRelative(0.03f, 0.02f) - lineTo(7.08f, 10.5f) - lineToRelative(-0.02f, -0.04f) - curveToRelative(-0.15f, -0.2f, -0.86f, -1.2f, -0.8f, -2.34f) - close() - } - } - return _textStrikethrough!! - } - -private var _textStrikethrough: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextSubscript.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextSubscript.kt deleted file mode 100644 index 09d379bd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextSubscript.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextSubscript: ImageVector - get() { - if (_textSubscript != null) { - return _textSubscript!! - } - _textSubscript = fluentIcon(name = "Regular.TextSubscript") { - fluentPath { - moveTo(16.49f, 4.43f) - curveToRelative(0.31f, 0.27f, 0.35f, 0.74f, 0.08f, 1.06f) - lineTo(10.99f, 12.0f) - lineToRelative(5.03f, 5.87f) - curveToRelative(-0.3f, 0.41f, -0.55f, 0.9f, -0.68f, 1.51f) - lineTo(10.0f, 13.15f) - lineTo(4.57f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.14f, -0.98f) - lineTo(9.01f, 12.0f) - lineTo(3.43f, 5.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.14f, -0.98f) - lineTo(10.0f, 10.85f) - lineToRelative(5.43f, -6.34f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -0.08f) - close() - moveTo(17.75f, 15.53f) - curveToRelative(0.0f, -0.54f, 0.44f, -1.03f, 0.99f, -1.03f) - curveToRelative(0.4f, 0.0f, 0.73f, 0.2f, 0.89f, 0.43f) - curveToRelative(0.14f, 0.21f, 0.22f, 0.57f, -0.1f, 1.1f) - arcToRelative(2.7f, 2.7f, 0.0f, false, true, -0.68f, 0.72f) - lineToRelative(-0.49f, 0.37f) - lineToRelative(-0.07f, 0.05f) - lineToRelative(-0.48f, 0.34f) - curveToRelative(-0.74f, 0.56f, -1.56f, 1.34f, -1.56f, 2.74f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.45f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.51f) - curveToRelative(0.16f, -0.28f, 0.42f, -0.52f, 0.78f, -0.8f) - lineToRelative(0.43f, -0.3f) - lineToRelative(0.08f, -0.06f) - curveToRelative(0.18f, -0.13f, 0.37f, -0.26f, 0.55f, -0.41f) - curveToRelative(0.38f, -0.3f, 0.76f, -0.66f, 1.05f, -1.14f) - curveToRelative(0.56f, -0.95f, 0.55f, -1.92f, 0.06f, -2.67f) - arcToRelative(2.53f, 2.53f, 0.0f, false, false, -4.64f, 1.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - close() - } - } - return _textSubscript!! - } - -private var _textSubscript: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextSuperscript.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextSuperscript.kt deleted file mode 100644 index fa17e839..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextSuperscript.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextSuperscript: ImageVector - get() { - if (_textSuperscript != null) { - return _textSuperscript!! - } - _textSuperscript = fluentIcon(name = "Regular.TextSuperscript") { - fluentPath { - moveTo(18.74f, 3.5f) - curveToRelative(-0.55f, 0.0f, -0.99f, 0.5f, -0.99f, 1.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - arcToRelative(2.53f, 2.53f, 0.0f, false, true, 4.64f, -1.4f) - curveToRelative(0.49f, 0.75f, 0.5f, 1.72f, -0.06f, 2.67f) - curveToRelative(-0.29f, 0.48f, -0.67f, 0.85f, -1.05f, 1.14f) - curveToRelative(-0.18f, 0.15f, -0.37f, 0.28f, -0.55f, 0.41f) - lineToRelative(-0.08f, 0.06f) - lineToRelative(-0.43f, 0.3f) - curveToRelative(-0.36f, 0.28f, -0.62f, 0.52f, -0.78f, 0.8f) - horizontalLineToRelative(2.51f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(17.0f, 10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - curveToRelative(0.0f, -1.4f, 0.82f, -2.18f, 1.56f, -2.74f) - lineToRelative(0.48f, -0.34f) - lineToRelative(0.07f, -0.05f) - lineToRelative(0.5f, -0.37f) - curveToRelative(0.3f, -0.24f, 0.53f, -0.47f, 0.68f, -0.72f) - curveToRelative(0.3f, -0.53f, 0.23f, -0.89f, 0.09f, -1.1f) - arcToRelative(1.06f, 1.06f, 0.0f, false, false, -0.9f, -0.43f) - close() - moveTo(15.26f, 4.71f) - curveToRelative(0.06f, 0.56f, 0.38f, 1.04f, 0.85f, 1.32f) - lineTo(10.99f, 12.0f) - lineToRelative(5.58f, 6.51f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.14f, 0.98f) - lineTo(10.0f, 13.15f) - lineTo(4.57f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.14f, -0.98f) - lineTo(9.01f, 12.0f) - lineTo(3.43f, 5.49f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.14f, -0.98f) - lineTo(10.0f, 10.85f) - lineToRelative(5.26f, -6.14f) - close() - } - } - return _textSuperscript!! - } - -private var _textSuperscript: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextT.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextT.kt deleted file mode 100644 index cc8d12c7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextT.kt +++ /dev/null @@ -1,42 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextT: ImageVector - get() { - if (_textT != null) { - return _textT!! - } - _textT = fluentIcon(name = "Regular.TextT") { - fluentPath { - moveTo(5.0f, 4.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(12.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineTo(5.5f) - horizontalLineToRelative(-4.75f) - verticalLineToRelative(13.0f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.5f) - verticalLineToRelative(-13.0f) - horizontalLineTo(6.5f) - verticalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-2.0f) - close() - } - } - return _textT!! - } - -private var _textT: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextUnderline.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextUnderline.kt deleted file mode 100644 index da00da81..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextUnderline.kt +++ /dev/null @@ -1,44 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextUnderline: ImageVector - get() { - if (_textUnderline != null) { - return _textUnderline!! - } - _textUnderline = fluentIcon(name = "Regular.TextUnderline") { - fluentPath { - moveTo(6.75f, 19.0f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(10.6f) - horizontalLineToRelative(-10.5f) - close() - moveTo(17.25f, 4.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 4.4f, -2.06f, 6.75f, -6.0f, 6.75f) - curveToRelative(-3.86f, 0.0f, -5.91f, -2.26f, -6.0f, -6.47f) - lineTo(6.0f, 4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(6.1f) - curveTo(7.5f, 14.35f, 8.93f, 16.0f, 12.0f, 16.0f) - curveToRelative(2.98f, 0.0f, 4.43f, -1.56f, 4.5f, -4.98f) - lineTo(16.5f, 4.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _textUnderline!! - } - -private var _textUnderline: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextUnderlineCharacterU.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextUnderlineCharacterU.kt deleted file mode 100644 index f9bdf043..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextUnderlineCharacterU.kt +++ /dev/null @@ -1,38 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextUnderlineCharacterU: ImageVector - get() { - if (_textUnderlineCharacterU != null) { - return _textUnderlineCharacterU!! - } - _textUnderlineCharacterU = fluentIcon(name = "Regular.TextUnderlineCharacterU") { - fluentPath { - moveTo(8.5f, 4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineTo(12.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 10.0f, 0.0f) - verticalLineTo(4.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineTo(12.0f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, -7.0f, 0.0f) - verticalLineTo(4.75f) - close() - moveTo(6.75f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(6.75f) - close() - } - } - return _textUnderlineCharacterU!! - } - -private var _textUnderlineCharacterU: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextUnderlineDouble.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextUnderlineDouble.kt deleted file mode 100644 index 1963a913..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextUnderlineDouble.kt +++ /dev/null @@ -1,114 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextUnderlineDouble: ImageVector - get() { - if (_textUnderlineDouble != null) { - return _textUnderlineDouble!! - } - _textUnderlineDouble = fluentIcon(name = "Regular.TextUnderlineDouble") { - fluentPath { - moveTo(20.53f, 3.27f) - curveToRelative(0.61f, 0.3f, 1.1f, 0.87f, 1.43f, 1.79f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.42f, 0.5f) - curveToRelative(-0.23f, -0.64f, -0.5f, -0.85f, -0.67f, -0.94f) - curveToRelative(-0.22f, -0.1f, -0.47f, -0.12f, -0.87f, -0.12f) - curveToRelative(-0.38f, 0.0f, -0.62f, 0.12f, -0.8f, 0.28f) - curveToRelative(-0.2f, 0.17f, -0.35f, 0.43f, -0.47f, 0.73f) - arcToRelative(3.87f, 3.87f, 0.0f, false, false, -0.23f, 1.23f) - verticalLineToRelative(0.01f) - curveToRelative(0.0f, 0.53f, 0.0f, 1.2f, 0.23f, 1.76f) - curveToRelative(0.1f, 0.27f, 0.25f, 0.49f, 0.45f, 0.65f) - curveToRelative(0.19f, 0.16f, 0.47f, 0.3f, 0.9f, 0.34f) - curveToRelative(0.35f, 0.04f, 1.13f, -0.02f, 1.49f, -0.8f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.36f, 0.62f) - curveToRelative(-0.77f, 1.7f, -2.46f, 1.74f, -3.01f, 1.68f) - arcToRelative(3.15f, 3.15f, 0.0f, false, true, -1.7f, -0.68f) - arcToRelative(3.04f, 3.04f, 0.0f, false, true, -0.89f, -1.26f) - arcTo(6.28f, 6.28f, 0.0f, false, true, 16.0f, 6.78f) - lineTo(16.0f, 6.7f) - arcToRelative(4.09f, 4.09f, 0.0f, false, true, 0.04f, -0.51f) - curveToRelative(0.04f, -0.32f, 0.12f, -0.76f, 0.29f, -1.2f) - curveToRelative(0.17f, -0.45f, 0.43f, -0.94f, 0.87f, -1.33f) - curveToRelative(0.45f, -0.4f, 1.05f, -0.66f, 1.8f, -0.66f) - horizontalLineToRelative(0.04f) - curveToRelative(0.36f, 0.0f, 0.93f, 0.0f, 1.49f, 0.27f) - close() - moveTo(5.28f, 3.0f) - curveToRelative(0.31f, 0.0f, 0.59f, 0.2f, 0.7f, 0.5f) - lineToRelative(2.3f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.41f, 0.5f) - lineToRelative(-0.34f, -0.95f) - horizontalLineToRelative(-2.7f) - lineToRelative(-0.38f, 0.97f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.4f, -0.54f) - lineToRelative(2.52f, -6.5f) - curveToRelative(0.11f, -0.3f, 0.4f, -0.48f, 0.7f, -0.48f) - close() - moveTo(5.24f, 5.9f) - lineTo(4.4f, 8.06f) - lineTo(6.0f, 8.06f) - lineTo(5.24f, 5.9f) - close() - moveTo(14.58f, 5.38f) - curveToRelative(0.0f, 0.57f, -0.15f, 1.03f, -0.39f, 1.38f) - curveToRelative(0.18f, 0.14f, 0.34f, 0.32f, 0.47f, 0.54f) - curveToRelative(0.23f, 0.36f, 0.34f, 0.8f, 0.34f, 1.33f) - arcToRelative(2.15f, 2.15f, 0.0f, false, true, -1.16f, 2.03f) - arcToRelative(3.2f, 3.2f, 0.0f, false, true, -1.46f, 0.34f) - lineTo(9.75f, 11.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-6.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.43f) - curveToRelative(0.22f, 0.0f, 0.8f, 0.0f, 1.34f, 0.3f) - curveToRelative(0.29f, 0.16f, 0.57f, 0.41f, 0.76f, 0.78f) - curveToRelative(0.2f, 0.36f, 0.3f, 0.8f, 0.3f, 1.3f) - close() - moveTo(12.16f, 4.5f) - lineTo(10.5f, 4.5f) - verticalLineToRelative(1.75f) - horizontalLineToRelative(1.66f) - curveToRelative(0.15f, 0.0f, 0.4f, -0.03f, 0.6f, -0.15f) - arcToRelative(0.56f, 0.56f, 0.0f, false, false, 0.2f, -0.2f) - curveToRelative(0.06f, -0.1f, 0.12f, -0.26f, 0.12f, -0.52f) - curveToRelative(0.0f, -0.32f, -0.06f, -0.5f, -0.12f, -0.59f) - arcToRelative(0.44f, 0.44f, 0.0f, false, false, -0.18f, -0.18f) - curveToRelative(-0.17f, -0.1f, -0.4f, -0.11f, -0.62f, -0.11f) - close() - moveTo(12.38f, 9.5f) - curveToRelative(0.18f, 0.0f, 0.5f, -0.03f, 0.75f, -0.17f) - curveToRelative(0.12f, -0.06f, 0.2f, -0.13f, 0.26f, -0.22f) - arcToRelative(0.88f, 0.88f, 0.0f, false, false, 0.11f, -0.48f) - curveToRelative(0.0f, -0.3f, -0.06f, -0.46f, -0.12f, -0.55f) - arcToRelative(0.52f, 0.52f, 0.0f, false, false, -0.22f, -0.2f) - arcToRelative(1.81f, 1.81f, 0.0f, false, false, -0.78f, -0.13f) - lineTo(10.5f, 7.75f) - lineTo(10.5f, 9.5f) - horizontalLineToRelative(1.88f) - close() - moveTo(2.0f, 15.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(2.75f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(2.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(2.75f, 19.5f) - close() - } - } - return _textUnderlineDouble!! - } - -private var _textUnderlineDouble: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextWordCount.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextWordCount.kt deleted file mode 100644 index 480ada49..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextWordCount.kt +++ /dev/null @@ -1,101 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextWordCount: ImageVector - get() { - if (_textWordCount != null) { - return _textWordCount!! - } - _textWordCount = fluentIcon(name = "Regular.TextWordCount") { - fluentPath { - moveTo(2.0f, 5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(2.75f, 6.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 2.0f, 5.75f) - close() - moveTo(2.0f, 12.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(2.75f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(19.0f, 18.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(2.42f, 18.74f) - curveToRelative(0.2f, -0.14f, 0.41f, -0.3f, 0.6f, -0.48f) - verticalLineToRelative(3.99f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.48f, -0.16f) - curveToRelative(-0.13f, 0.58f, -0.7f, 1.39f, -1.46f, 1.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.84f, 1.25f) - close() - moveTo(8.0f, 17.52f) - curveToRelative(0.0f, -0.52f, 0.44f, -1.02f, 0.99f, -1.02f) - curveToRelative(0.4f, 0.0f, 0.73f, 0.2f, 0.89f, 0.43f) - curveToRelative(0.13f, 0.21f, 0.22f, 0.57f, -0.1f, 1.1f) - arcToRelative(2.7f, 2.7f, 0.0f, false, true, -0.68f, 0.72f) - lineToRelative(-0.49f, 0.37f) - lineToRelative(-0.07f, 0.05f) - lineToRelative(-0.48f, 0.34f) - curveToRelative(-0.74f, 0.56f, -1.56f, 1.34f, -1.56f, 2.74f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.45f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(8.2f, 21.5f) - curveToRelative(0.16f, -0.28f, 0.42f, -0.52f, 0.78f, -0.8f) - lineToRelative(0.43f, -0.3f) - lineToRelative(0.08f, -0.06f) - curveToRelative(0.18f, -0.13f, 0.37f, -0.26f, 0.55f, -0.41f) - curveToRelative(0.38f, -0.3f, 0.76f, -0.66f, 1.05f, -1.14f) - curveToRelative(0.56f, -0.95f, 0.55f, -1.92f, 0.06f, -2.67f) - arcToRelative(2.53f, 2.53f, 0.0f, false, false, -4.64f, 1.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - close() - moveTo(14.47f, 17.14f) - curveToRelative(0.03f, -0.11f, 0.1f, -0.27f, 0.25f, -0.4f) - curveToRelative(0.13f, -0.11f, 0.36f, -0.24f, 0.78f, -0.24f) - curveToRelative(0.76f, 0.0f, 1.0f, 0.5f, 1.0f, 0.73f) - curveToRelative(0.0f, 0.24f, -0.05f, 0.49f, -0.19f, 0.66f) - curveToRelative(-0.11f, 0.14f, -0.38f, 0.36f, -1.1f, 0.36f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - curveToRelative(0.27f, 0.0f, 0.65f, 0.04f, 0.93f, 0.17f) - curveToRelative(0.13f, 0.06f, 0.22f, 0.13f, 0.27f, 0.2f) - curveToRelative(0.04f, 0.06f, 0.09f, 0.17f, 0.09f, 0.36f) - curveToRelative(0.0f, 0.48f, -0.15f, 0.7f, -0.28f, 0.8f) - curveToRelative(-0.15f, 0.14f, -0.4f, 0.22f, -0.72f, 0.22f) - curveToRelative(-0.36f, 0.0f, -0.57f, -0.06f, -0.7f, -0.14f) - curveToRelative(-0.1f, -0.07f, -0.23f, -0.2f, -0.34f, -0.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.42f, 0.47f) - curveToRelative(0.18f, 0.57f, 0.5f, 1.03f, 0.97f, 1.33f) - curveToRelative(0.45f, 0.28f, 0.98f, 0.37f, 1.49f, 0.37f) - arcToRelative(2.6f, 2.6f, 0.0f, false, false, 1.69f, -0.56f) - curveToRelative(0.52f, -0.45f, 0.81f, -1.12f, 0.81f, -1.96f) - arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.63f, -1.52f) - lineToRelative(0.11f, -0.14f) - curveToRelative(0.44f, -0.55f, 0.52f, -1.19f, 0.52f, -1.6f) - curveToRelative(0.0f, -1.07f, -0.93f, -2.22f, -2.5f, -2.22f) - arcToRelative(2.6f, 2.6f, 0.0f, false, false, -1.77f, 0.62f) - curveToRelative(-0.4f, 0.35f, -0.61f, 0.78f, -0.7f, 1.1f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.44f, 0.42f) - close() - } - } - return _textWordCount!! - } - -private var _textWordCount: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextWrap.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextWrap.kt deleted file mode 100644 index 2c0d58d4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextWrap.kt +++ /dev/null @@ -1,51 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextWrap: ImageVector - get() { - if (_textWrap != null) { - return _textWrap!! - } - _textWrap = fluentIcon(name = "Regular.TextWrap") { - fluentPath { - moveTo(2.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(2.75f, 5.0f) - close() - moveTo(2.75f, 11.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(19.0f, 13.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, 5.0f) - horizontalLineToRelative(-4.44f) - lineToRelative(0.72f, -0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) - lineToRelative(-2.0f, 2.0f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-0.72f, -0.72f) - lineTo(19.0f, 19.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) - lineTo(2.75f, 11.5f) - close() - moveTo(2.0f, 18.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _textWrap!! - } - -private var _textWrap: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextWrapOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextWrapOff.kt deleted file mode 100644 index 195bb71e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextWrapOff.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextWrapOff: ImageVector - get() { - if (_textWrapOff != null) { - return _textWrapOff!! - } - _textWrapOff = fluentIcon(name = "Regular.TextWrapOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(3.94f, 5.0f) - horizontalLineTo(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.69f) - lineToRelative(5.0f, 5.0f) - horizontalLineTo(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(9.19f) - lineToRelative(3.03f, 3.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.19f) - lineToRelative(-2.0f, 2.0f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-0.72f, -0.72f) - horizontalLineToRelative(3.88f) - lineToRelative(2.28f, 2.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(16.94f, 18.0f) - horizontalLineToRelative(-2.38f) - lineToRelative(0.72f, -0.72f) - curveToRelative(0.2f, -0.2f, 0.27f, -0.5f, 0.19f, -0.75f) - lineTo(16.94f, 18.0f) - close() - moveTo(19.0f, 11.5f) - horizontalLineToRelative(-4.32f) - lineToRelative(1.5f, 1.5f) - horizontalLineTo(19.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 1.6f, 4.42f) - lineToRelative(1.06f, 1.06f) - arcTo(3.99f, 3.99f, 0.0f, false, false, 19.0f, 11.5f) - close() - moveTo(8.18f, 5.0f) - lineToRelative(1.5f, 1.5f) - horizontalLineToRelative(11.57f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(8.18f) - close() - moveTo(2.0f, 18.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _textWrapOff!! - } - -private var _textWrapOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Textbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Textbox.kt deleted file mode 100644 index 499c5351..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Textbox.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Textbox: ImageVector - get() { - if (_textbox != null) { - return _textbox!! - } - _textbox = fluentIcon(name = "Regular.Textbox") { - fluentPath { - moveTo(18.25f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) - lineTo(5.75f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(12.5f) - close() - moveTo(18.25f, 4.5f) - lineTo(5.75f, 4.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(12.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - lineTo(19.5f, 5.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - close() - moveTo(14.25f, 11.5f) - horizontalLineToRelative(-7.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(7.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(6.75f, 15.5f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(17.25f, 7.5f) - lineTo(6.65f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(10.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - } - } - return _textbox!! - } - -private var _textbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextboxAlignBottom.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextboxAlignBottom.kt deleted file mode 100644 index 48314bab..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextboxAlignBottom.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextboxAlignBottom: ImageVector - get() { - if (_textboxAlignBottom != null) { - return _textboxAlignBottom!! - } - _textboxAlignBottom = fluentIcon(name = "Regular.TextboxAlignBottom") { - fluentPath { - moveTo(6.75f, 13.5f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(17.25f, 16.5f) - lineTo(6.65f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(10.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(21.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) - lineTo(5.75f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) - lineTo(21.0f, 5.75f) - close() - moveTo(5.75f, 4.5f) - horizontalLineToRelative(12.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - lineTo(5.75f, 19.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - lineTo(4.5f, 5.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - close() - } - } - return _textboxAlignBottom!! - } - -private var _textboxAlignBottom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextboxAlignBottomRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextboxAlignBottomRotate90.kt deleted file mode 100644 index c92a2801..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextboxAlignBottomRotate90.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextboxAlignBottomRotate90: ImageVector - get() { - if (_textboxAlignBottomRotate90 != null) { - return _textboxAlignBottomRotate90!! - } - _textboxAlignBottomRotate90 = fluentIcon(name = "Regular.TextboxAlignBottomRotate90") { - fluentPath { - moveTo(10.5f, 6.75f) - verticalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(9.0f, 6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.1f) - close() - moveTo(7.5f, 17.25f) - lineTo(7.5f, 6.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - verticalLineToRelative(10.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - close() - moveTo(18.25f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) - lineTo(21.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) - lineTo(5.75f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) - horizontalLineToRelative(12.5f) - close() - moveTo(19.5f, 5.75f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - lineTo(5.75f, 19.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - lineTo(4.5f, 5.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(12.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - close() - } - } - return _textboxAlignBottomRotate90!! - } - -private var _textboxAlignBottomRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextboxAlignCenter.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextboxAlignCenter.kt deleted file mode 100644 index 393840b9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextboxAlignCenter.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextboxAlignCenter: ImageVector - get() { - if (_textboxAlignCenter != null) { - return _textboxAlignCenter!! - } - _textboxAlignCenter = fluentIcon(name = "Regular.TextboxAlignCenter") { - fluentPath { - moveTo(7.0f, 10.0f) - horizontalLineToRelative(10.0f) - curveToRelative(0.55f, 0.0f, 1.0f, 0.34f, 1.0f, 0.75f) - curveToRelative(0.0f, 0.38f, -0.38f, 0.7f, -0.86f, 0.74f) - lineToRelative(-0.14f, 0.01f) - lineTo(7.0f, 11.5f) - curveToRelative(-0.55f, 0.0f, -1.0f, -0.34f, -1.0f, -0.75f) - curveToRelative(0.0f, -0.38f, 0.38f, -0.7f, 0.86f, -0.74f) - lineTo(7.0f, 10.0f) - close() - moveTo(15.33f, 13.0f) - lineTo(8.57f, 13.0f) - curveToRelative(-0.32f, 0.06f, -0.57f, 0.37f, -0.57f, 0.75f) - curveToRelative(0.0f, 0.41f, 0.3f, 0.75f, 0.67f, 0.75f) - horizontalLineToRelative(6.76f) - curveToRelative(0.32f, -0.06f, 0.57f, -0.37f, 0.57f, -0.75f) - curveToRelative(0.0f, -0.41f, -0.3f, -0.75f, -0.67f, -0.75f) - close() - moveTo(21.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) - lineTo(5.75f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) - lineTo(21.0f, 5.75f) - close() - moveTo(5.75f, 4.5f) - horizontalLineToRelative(12.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - lineTo(5.75f, 19.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - lineTo(4.5f, 5.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - close() - } - } - return _textboxAlignCenter!! - } - -private var _textboxAlignCenter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextboxAlignMiddle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextboxAlignMiddle.kt deleted file mode 100644 index 795da67d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextboxAlignMiddle.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextboxAlignMiddle: ImageVector - get() { - if (_textboxAlignMiddle != null) { - return _textboxAlignMiddle!! - } - _textboxAlignMiddle = fluentIcon(name = "Regular.TextboxAlignMiddle") { - fluentPath { - moveTo(7.0f, 10.0f) - horizontalLineToRelative(10.0f) - curveToRelative(0.55f, 0.0f, 1.0f, 0.34f, 1.0f, 0.75f) - curveToRelative(0.0f, 0.38f, -0.38f, 0.7f, -0.86f, 0.74f) - lineToRelative(-0.14f, 0.01f) - lineTo(7.0f, 11.5f) - curveToRelative(-0.55f, 0.0f, -1.0f, -0.34f, -1.0f, -0.75f) - curveToRelative(0.0f, -0.38f, 0.38f, -0.7f, 0.86f, -0.74f) - lineTo(7.0f, 10.0f) - close() - moveTo(17.0f, 13.0f) - lineTo(6.86f, 13.0f) - curveToRelative(-0.48f, 0.06f, -0.86f, 0.37f, -0.86f, 0.75f) - curveToRelative(0.0f, 0.41f, 0.45f, 0.75f, 1.0f, 0.75f) - horizontalLineToRelative(10.14f) - curveToRelative(0.48f, -0.06f, 0.86f, -0.37f, 0.86f, -0.75f) - curveToRelative(0.0f, -0.41f, -0.45f, -0.75f, -1.0f, -0.75f) - close() - moveTo(21.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) - lineTo(5.75f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) - lineTo(21.0f, 5.75f) - close() - moveTo(5.75f, 4.5f) - horizontalLineToRelative(12.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - lineTo(5.75f, 19.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - lineTo(4.5f, 5.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - close() - } - } - return _textboxAlignMiddle!! - } - -private var _textboxAlignMiddle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextboxAlignMiddleRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextboxAlignMiddleRotate90.kt deleted file mode 100644 index 3b652243..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextboxAlignMiddleRotate90.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextboxAlignMiddleRotate90: ImageVector - get() { - if (_textboxAlignMiddleRotate90 != null) { - return _textboxAlignMiddleRotate90!! - } - _textboxAlignMiddleRotate90 = fluentIcon(name = "Regular.TextboxAlignMiddleRotate90") { - fluentPath { - moveTo(14.0f, 7.0f) - verticalLineToRelative(10.0f) - curveToRelative(0.0f, 0.55f, -0.34f, 1.0f, -0.75f, 1.0f) - curveToRelative(-0.38f, 0.0f, -0.7f, -0.38f, -0.74f, -0.86f) - lineTo(12.5f, 17.0f) - lineTo(12.5f, 7.0f) - curveToRelative(0.0f, -0.55f, 0.34f, -1.0f, 0.75f, -1.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.38f, 0.74f, 0.86f) - lineTo(14.0f, 7.0f) - close() - moveTo(11.0f, 17.0f) - lineTo(11.0f, 6.86f) - curveToRelative(-0.06f, -0.48f, -0.37f, -0.86f, -0.75f, -0.86f) - curveToRelative(-0.41f, 0.0f, -0.75f, 0.45f, -0.75f, 1.0f) - verticalLineToRelative(10.14f) - curveToRelative(0.06f, 0.48f, 0.37f, 0.86f, 0.75f, 0.86f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.45f, 0.75f, -1.0f) - close() - moveTo(18.25f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) - lineTo(21.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) - lineTo(5.75f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) - horizontalLineToRelative(12.5f) - close() - moveTo(19.5f, 5.75f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - lineTo(5.75f, 19.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - lineTo(4.5f, 5.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(12.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - close() - } - } - return _textboxAlignMiddleRotate90!! - } - -private var _textboxAlignMiddleRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextboxAlignTop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextboxAlignTop.kt deleted file mode 100644 index c7cf64ab..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextboxAlignTop.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextboxAlignTop: ImageVector - get() { - if (_textboxAlignTop != null) { - return _textboxAlignTop!! - } - _textboxAlignTop = fluentIcon(name = "Regular.TextboxAlignTop") { - fluentPath { - moveTo(21.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) - lineTo(5.75f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) - lineTo(21.0f, 5.75f) - close() - moveTo(5.75f, 4.5f) - horizontalLineToRelative(12.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - lineTo(5.75f, 19.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - lineTo(4.5f, 5.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - close() - moveTo(6.75f, 7.5f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(17.25f, 10.5f) - lineTo(6.65f, 10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(10.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - } - } - return _textboxAlignTop!! - } - -private var _textboxAlignTop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextboxAlignTopRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextboxAlignTopRotate90.kt deleted file mode 100644 index aa32b22e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextboxAlignTopRotate90.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextboxAlignTopRotate90: ImageVector - get() { - if (_textboxAlignTopRotate90 != null) { - return _textboxAlignTopRotate90!! - } - _textboxAlignTopRotate90 = fluentIcon(name = "Regular.TextboxAlignTopRotate90") { - fluentPath { - moveTo(18.25f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) - lineTo(21.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) - lineTo(5.75f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) - horizontalLineToRelative(12.5f) - close() - moveTo(19.5f, 5.75f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - lineTo(5.75f, 19.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - lineTo(4.5f, 5.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(12.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - close() - moveTo(16.5f, 6.75f) - verticalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(15.0f, 6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.1f) - close() - moveTo(13.5f, 17.25f) - lineTo(13.5f, 6.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - verticalLineToRelative(10.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - close() - } - } - return _textboxAlignTopRotate90!! - } - -private var _textboxAlignTopRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextboxMore.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextboxMore.kt deleted file mode 100644 index 4664a8b7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextboxMore.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextboxMore: ImageVector - get() { - if (_textboxMore != null) { - return _textboxMore!! - } - _textboxMore = fluentIcon(name = "Regular.TextboxMore") { - fluentPath { - moveTo(21.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) - lineTo(5.75f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) - verticalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) - horizontalLineToRelative(2.3f) - arcToRelative(2.51f, 2.51f, 0.0f, false, true, 0.16f, -1.5f) - lineTo(5.75f, 19.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - lineTo(4.5f, 5.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(12.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(12.46f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 1.5f, -0.16f) - lineTo(21.0f, 5.75f) - close() - moveTo(6.75f, 11.5f) - horizontalLineToRelative(7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-7.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(17.25f, 15.5f) - lineTo(6.65f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(10.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) - close() - moveTo(6.75f, 7.5f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(12.0f, 20.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - moveTo(15.5f, 22.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - close() - moveTo(20.5f, 22.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - close() - } - } - return _textboxMore!! - } - -private var _textboxMore: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextboxRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextboxRotate90.kt deleted file mode 100644 index 9488beb9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TextboxRotate90.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TextboxRotate90: ImageVector - get() { - if (_textboxRotate90 != null) { - return _textboxRotate90!! - } - _textboxRotate90 = fluentIcon(name = "Regular.TextboxRotate90") { - fluentPath { - moveTo(21.0f, 18.25f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) - lineTo(5.75f, 21.0f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) - lineTo(3.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) - horizontalLineToRelative(12.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) - verticalLineToRelative(12.5f) - close() - moveTo(19.5f, 18.25f) - lineTo(19.5f, 5.75f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - lineTo(5.75f, 4.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(12.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(12.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - close() - moveTo(12.5f, 14.25f) - verticalLineToRelative(-7.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - verticalLineToRelative(7.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - close() - moveTo(8.5f, 6.75f) - verticalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(7.0f, 6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) - verticalLineToRelative(0.1f) - close() - moveTo(16.5f, 17.25f) - lineTo(16.5f, 6.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - verticalLineToRelative(10.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - close() - } - } - return _textboxRotate90!! - } - -private var _textboxRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Thinking.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Thinking.kt deleted file mode 100644 index 8ac94e89..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Thinking.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Thinking: ImageVector - get() { - if (_thinking != null) { - return _thinking!! - } - _thinking = fluentIcon(name = "Regular.Thinking") { - fluentPath { - moveTo(4.0f, 18.0f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) - close() - moveTo(4.0f, 19.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - close() - moveTo(9.5f, 15.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) - close() - moveTo(9.5f, 16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) - close() - moveTo(11.82f, 2.0f) - arcToRelative(5.41f, 5.41f, 0.0f, false, true, 5.33f, 4.47f) - horizontalLineToRelative(0.09f) - arcToRelative(3.76f, 3.76f, 0.0f, true, true, 0.0f, 7.53f) - lineTo(6.4f, 14.0f) - arcToRelative(3.76f, 3.76f, 0.0f, true, true, 0.0f, -7.53f) - horizontalLineToRelative(0.08f) - arcTo(5.41f, 5.41f, 0.0f, false, true, 11.82f, 2.0f) - close() - moveTo(11.82f, 3.5f) - arcToRelative(3.93f, 3.93f, 0.0f, false, false, -3.91f, 3.73f) - arcToRelative(0.7f, 0.7f, 0.0f, false, true, -0.7f, 0.65f) - horizontalLineToRelative(-0.7f) - arcToRelative(2.31f, 2.31f, 0.0f, true, false, 0.0f, 4.62f) - horizontalLineToRelative(10.63f) - arcToRelative(2.31f, 2.31f, 0.0f, true, false, 0.0f, -4.62f) - horizontalLineToRelative(-0.7f) - arcToRelative(0.7f, 0.7f, 0.0f, false, true, -0.69f, -0.65f) - arcToRelative(3.93f, 3.93f, 0.0f, false, false, -3.92f, -3.73f) - close() - } - } - return _thinking!! - } - -private var _thinking: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ThumbDislike.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ThumbDislike.kt deleted file mode 100644 index 3274bbc4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ThumbDislike.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ThumbDislike: ImageVector - get() { - if (_thumbDislike != null) { - return _thumbDislike!! - } - _thumbDislike = fluentIcon(name = "Regular.ThumbDislike") { - fluentPath { - moveTo(16.5f, 17.99f) - curveToRelative(0.0f, 2.44f, -1.14f, 4.2f, -3.0f, 4.2f) - curveToRelative(-0.98f, 0.0f, -1.35f, -0.55f, -1.7f, -1.8f) - lineToRelative(-0.2f, -0.77f) - arcToRelative(267.17f, 267.17f, 0.0f, false, false, -0.56f, -1.9f) - lineToRelative(-2.87f, -4.49f) - arcToRelative(5.88f, 5.88f, 0.0f, false, false, -2.85f, -2.32f) - lineToRelative(-0.47f, -0.18f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -1.72f, -3.1f) - lineToRelative(0.4f, -2.08f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 5.95f, 3.0f) - lineToRelative(7.63f, -1.87f) - arcToRelative(4.75f, 4.75f, 0.0f, false, true, 5.73f, 3.44f) - lineToRelative(1.42f, 5.55f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.15f, 4.05f) - horizontalLineToRelative(-1.83f) - curveToRelative(0.5f, 1.64f, 0.75f, 2.9f, 0.75f, 3.8f) - close() - moveTo(4.6f, 7.92f) - curveToRelative(-0.11f, 0.6f, 0.21f, 1.19f, 0.78f, 1.4f) - lineToRelative(0.47f, 0.19f) - arcToRelative(7.38f, 7.38f, 0.0f, false, true, 3.59f, 2.92f) - lineToRelative(2.86f, 4.48f) - curveToRelative(0.1f, 0.14f, 0.16f, 0.3f, 0.2f, 0.46f) - lineToRelative(0.56f, 1.92f) - lineToRelative(0.21f, 0.79f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.22f, 0.6f) - curveToRelative(0.87f, 0.0f, 1.51f, -0.98f, 1.51f, -2.7f) - curveToRelative(0.0f, -0.88f, -0.33f, -2.33f, -0.98f, -4.31f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.7f, -0.99f) - horizontalLineToRelative(2.86f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 1.7f, -2.18f) - lineToRelative(-1.42f, -5.55f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.93f, -2.35f) - lineTo(6.31f, 4.47f) - curveToRelative(-0.67f, 0.16f, -1.17f, 0.7f, -1.3f, 1.36f) - lineToRelative(-0.4f, 2.1f) - close() - } - } - return _thumbDislike!! - } - -private var _thumbDislike: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ThumbLike.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ThumbLike.kt deleted file mode 100644 index c6a4e00e..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ThumbLike.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ThumbLike: ImageVector - get() { - if (_thumbLike != null) { - return _thumbLike!! - } - _thumbLike = fluentIcon(name = "Regular.ThumbLike") { - fluentPath { - moveTo(16.5f, 5.2f) - curveToRelative(0.0f, -2.44f, -1.14f, -4.2f, -3.0f, -4.2f) - curveToRelative(-1.03f, 0.0f, -1.39f, 0.6f, -1.75f, 2.0f) - lineToRelative(-0.15f, 0.57f) - arcToRelative(268.49f, 268.49f, 0.0f, false, true, -0.56f, 1.9f) - lineTo(8.17f, 9.95f) - arcToRelative(5.88f, 5.88f, 0.0f, false, true, -2.85f, 2.33f) - lineToRelative(-0.47f, 0.18f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -1.72f, 3.1f) - lineToRelative(0.4f, 2.08f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 2.42f, 2.54f) - lineToRelative(7.63f, 1.87f) - arcToRelative(4.75f, 4.75f, 0.0f, false, false, 5.73f, -3.44f) - lineToRelative(1.42f, -5.55f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 17.58f, 9.0f) - horizontalLineToRelative(-1.83f) - curveToRelative(0.5f, -1.63f, 0.75f, -2.89f, 0.75f, -3.8f) - close() - moveTo(4.6f, 15.27f) - curveToRelative(-0.11f, -0.6f, 0.21f, -1.2f, 0.78f, -1.4f) - lineToRelative(0.47f, -0.19f) - arcToRelative(7.38f, 7.38f, 0.0f, false, false, 3.59f, -2.92f) - lineToRelative(2.86f, -4.48f) - curveToRelative(0.1f, -0.15f, 0.16f, -0.3f, 0.2f, -0.46f) - arcToRelative(261.43f, 261.43f, 0.0f, false, false, 0.7f, -2.43f) - curveToRelative(0.19f, -0.73f, 0.28f, -0.89f, 0.3f, -0.89f) - curveToRelative(0.86f, 0.0f, 1.5f, 0.99f, 1.5f, 2.7f) - curveToRelative(0.0f, 0.89f, -0.33f, 2.34f, -0.98f, 4.32f) - curveToRelative(-0.17f, 0.48f, 0.2f, 0.98f, 0.7f, 0.98f) - horizontalLineToRelative(2.86f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 1.7f, 2.19f) - lineToRelative(-1.42f, 5.55f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.93f, 2.35f) - lineToRelative(-7.62f, -1.87f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 5.0f, 17.35f) - lineToRelative(-0.4f, -2.08f) - close() - } - } - return _thumbLike!! - } - -private var _thumbLike: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TicketDiagonal.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TicketDiagonal.kt deleted file mode 100644 index ee6fb237..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TicketDiagonal.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TicketDiagonal: ImageVector - get() { - if (_ticketDiagonal != null) { - return _ticketDiagonal!! - } - _ticketDiagonal = fluentIcon(name = "Regular.TicketDiagonal") { - fluentPath { - moveTo(14.53f, 3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-9.88f, 9.87f) - curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(1.07f, 1.07f) - arcTo(2.74f, 2.74f, 0.0f, false, true, 8.75f, 18.0f) - curveToRelative(0.0f, 0.49f, -0.13f, 0.94f, -0.35f, 1.34f) - lineToRelative(1.07f, 1.07f) - curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) - lineToRelative(9.88f, -9.88f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - lineTo(19.34f, 8.4f) - arcTo(2.74f, 2.74f, 0.0f, false, true, 15.25f, 6.0f) - curveToRelative(0.0f, -0.49f, 0.13f, -0.94f, 0.35f, -1.34f) - lineToRelative(-1.07f, -1.07f) - close() - moveTo(12.41f, 2.53f) - curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.0f) - lineToRelative(1.17f, 1.17f) - curveToRelative(0.51f, 0.51f, 0.42f, 1.23f, 0.16f, 1.66f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, 1.71f, 1.71f) - curveToRelative(0.44f, -0.25f, 1.16f, -0.34f, 1.67f, 0.17f) - lineToRelative(1.17f, 1.17f) - curveToRelative(0.88f, 0.88f, 0.88f, 2.3f, 0.0f, 3.18f) - lineToRelative(-9.88f, 9.88f) - curveToRelative(-0.88f, 0.88f, -2.3f, 0.88f, -3.18f, 0.0f) - lineTo(7.24f, 20.3f) - curveToRelative(-0.51f, -0.51f, -0.42f, -1.23f, -0.16f, -1.66f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.71f, -1.71f) - curveToRelative(-0.44f, 0.25f, -1.16f, 0.34f, -1.67f, -0.17f) - lineTo(2.53f, 15.6f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -3.18f) - lineToRelative(9.88f, -9.88f) - close() - } - } - return _ticketDiagonal!! - } - -private var _ticketDiagonal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TicketHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TicketHorizontal.kt deleted file mode 100644 index eb464ab4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TicketHorizontal.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TicketHorizontal: ImageVector - get() { - if (_ticketHorizontal != null) { - return _ticketHorizontal!! - } - _ticketHorizontal = fluentIcon(name = "Regular.TicketHorizontal") { - fluentPath { - moveTo(20.25f, 5.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(2.26f) - curveToRelative(0.0f, 0.4f, -0.3f, 0.72f, -0.69f, 0.75f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.48f) - curveToRelative(0.4f, 0.03f, 0.69f, 0.36f, 0.69f, 0.75f) - verticalLineToRelative(2.26f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(3.75f, 19.0f) - curveTo(2.78f, 19.0f, 2.0f, 18.22f, 2.0f, 17.25f) - verticalLineToRelative(-2.26f) - curveToRelative(0.0f, -0.4f, 0.3f, -0.72f, 0.69f, -0.75f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, -4.48f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 2.0f, 9.0f) - lineTo(2.0f, 6.75f) - curveTo(2.0f, 5.78f, 2.78f, 5.0f, 3.75f, 5.0f) - horizontalLineToRelative(16.5f) - close() - moveTo(20.5f, 8.38f) - lineTo(20.5f, 6.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - lineTo(3.75f, 6.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(1.63f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 0.0f, 7.24f) - verticalLineToRelative(1.63f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(16.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-1.63f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.19f, -7.18f) - lineToRelative(0.19f, -0.06f) - close() - } - } - return _ticketHorizontal!! - } - -private var _ticketHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TimeAndWeather.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TimeAndWeather.kt deleted file mode 100644 index 032a203f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TimeAndWeather.kt +++ /dev/null @@ -1,101 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TimeAndWeather: ImageVector - get() { - if (_timeAndWeather != null) { - return _timeAndWeather!! - } - _timeAndWeather = fluentIcon(name = "Regular.TimeAndWeather") { - fluentPath { - moveTo(12.0f, 19.01f) - curveToRelative(0.38f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) - verticalLineToRelative(1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, 0.1f) - verticalLineToRelative(-1.6f) - curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.75f, -0.75f) - close() - moveTo(18.02f, 16.94f) - lineTo(19.08f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineTo(16.96f, 18.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - close() - moveTo(7.03f, 16.94f) - curveToRelative(0.3f, 0.29f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-1.06f, 1.06f) - arcTo(0.75f, 0.75f, 0.0f, true, true, 4.91f, 18.0f) - lineToRelative(1.06f, -1.06f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(12.0f, 6.47f) - arcToRelative(5.53f, 5.53f, 0.0f, true, true, 0.0f, 11.05f) - arcToRelative(5.53f, 5.53f, 0.0f, false, true, 0.0f, -11.05f) - close() - moveTo(12.0f, 7.97f) - arcToRelative(4.03f, 4.03f, 0.0f, true, false, 0.0f, 8.05f) - arcToRelative(4.03f, 4.03f, 0.0f, false, false, 0.0f, -8.05f) - close() - moveTo(11.25f, 9.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - lineTo(12.0f, 12.0f) - horizontalLineToRelative(1.25f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.29f, 0.74f, 0.65f) - verticalLineToRelative(0.1f) - curveToRelative(0.0f, 0.38f, -0.27f, 0.7f, -0.64f, 0.75f) - horizontalLineToRelative(-2.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) - lineToRelative(-0.01f, -0.1f) - lineTo(10.5f, 9.74f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(21.25f, 11.27f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(1.6f) - close() - moveTo(4.25f, 11.24f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(1.6f) - close() - moveTo(5.89f, 4.87f) - lineTo(5.97f, 4.94f) - lineTo(7.03f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 1.13f) - lineToRelative(-0.09f, -0.07f) - lineTo(4.91f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) - close() - moveTo(19.08f, 4.94f) - curveToRelative(0.26f, 0.27f, 0.29f, 0.68f, 0.07f, 0.98f) - lineToRelative(-0.07f, 0.08f) - lineToRelative(-1.06f, 1.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.14f, -0.97f) - lineToRelative(0.08f, -0.09f) - lineToRelative(1.06f, -1.06f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(12.0f, 2.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-1.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _timeAndWeather!! - } - -private var _timeAndWeather: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TimePicker.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TimePicker.kt deleted file mode 100644 index 8f8479ce..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TimePicker.kt +++ /dev/null @@ -1,100 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TimePicker: ImageVector - get() { - if (_timePicker != null) { - return _timePicker!! - } - _timePicker = fluentIcon(name = "Regular.TimePicker") { - fluentPath { - moveTo(12.47f, 2.17f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.94f, 0.0f) - lineToRelative(-4.0f, 3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.94f, 1.16f) - lineTo(12.0f, 3.72f) - lineToRelative(3.53f, 2.86f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.94f, -1.16f) - lineToRelative(-4.0f, -3.25f) - close() - moveTo(2.75f, 9.0f) - curveTo(1.51f, 9.0f, 0.5f, 10.0f, 0.5f, 11.25f) - verticalLineToRelative(1.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) - verticalLineToRelative(-1.5f) - curveTo(5.0f, 10.01f, 4.0f, 9.0f, 2.75f, 9.0f) - close() - moveTo(2.0f, 11.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.5f) - close() - moveTo(8.25f, 9.0f) - curveTo(7.01f, 9.0f, 6.0f, 10.0f, 6.0f, 11.25f) - verticalLineToRelative(1.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - close() - moveTo(7.5f, 11.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.5f) - close() - moveTo(14.0f, 11.25f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.5f, 0.0f) - verticalLineToRelative(1.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) - verticalLineToRelative(-1.5f) - close() - moveTo(16.25f, 10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(21.75f, 9.0f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(1.5f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) - verticalLineToRelative(-1.5f) - curveTo(24.0f, 10.01f, 23.0f, 9.0f, 21.75f, 9.0f) - close() - moveTo(21.0f, 11.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.5f) - close() - moveTo(13.0f, 10.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(12.25f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - close() - moveTo(12.47f, 21.83f) - lineTo(16.47f, 18.58f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.94f, -1.16f) - lineTo(12.0f, 20.28f) - lineToRelative(-3.53f, -2.86f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.94f, 1.16f) - lineToRelative(4.0f, 3.25f) - curveToRelative(0.27f, 0.23f, 0.67f, 0.23f, 0.94f, 0.0f) - close() - } - } - return _timePicker!! - } - -private var _timePicker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Timeline.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Timeline.kt deleted file mode 100644 index 5422e3e0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Timeline.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Timeline: ImageVector - get() { - if (_timeline != null) { - return _timeline!! - } - _timeline = fluentIcon(name = "Regular.Timeline") { - fluentPath { - moveTo(15.25f, 13.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(3.75f, 21.0f) - curveTo(2.78f, 21.0f, 2.0f, 20.22f, 2.0f, 19.25f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - close() - moveTo(21.0f, 14.9f) - verticalLineToRelative(5.35f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(19.5f, 14.91f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 1.5f, -0.01f) - close() - moveTo(15.25f, 14.5f) - lineTo(3.75f, 14.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(11.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-4.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(20.25f, 10.1f) - arcToRelative(1.9f, 1.9f, 0.0f, true, true, 0.0f, 3.8f) - arcToRelative(1.9f, 1.9f, 0.0f, false, true, 0.0f, -3.8f) - close() - moveTo(15.25f, 3.0f) - curveTo(16.2f, 3.0f, 17.0f, 3.78f, 17.0f, 4.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) - lineTo(3.75f, 11.0f) - curveTo(2.78f, 11.0f, 2.0f, 10.22f, 2.0f, 9.25f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) - lineTo(3.75f, 3.0f) - horizontalLineToRelative(11.5f) - close() - moveTo(15.25f, 4.5f) - lineTo(3.69f, 4.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.2f, 0.25f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.14f, 0.12f, 0.25f, 0.26f, 0.25f) - horizontalLineToRelative(11.5f) - curveToRelative(0.13f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-4.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - close() - moveTo(20.25f, 3.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - lineTo(21.0f, 9.1f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -1.5f, -0.01f) - lineTo(19.5f, 3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _timeline!! - } - -private var _timeline: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Timer.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Timer.kt deleted file mode 100644 index f786b79f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Timer.kt +++ /dev/null @@ -1,52 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Timer: ImageVector - get() { - if (_timer != null) { - return _timer!! - } - _timer = fluentIcon(name = "Regular.Timer") { - fluentPath { - moveTo(12.0f, 5.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, true, 0.0f, 17.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, 0.0f, -17.0f) - close() - moveTo(12.0f, 6.5f) - arcToRelative(7.0f, 7.0f, 0.0f, true, false, 0.0f, 14.0f) - arcToRelative(7.0f, 7.0f, 0.0f, false, false, 0.0f, -14.0f) - close() - moveTo(12.0f, 8.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - verticalLineToRelative(4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - verticalLineToRelative(-4.6f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(19.15f, 5.11f) - lineTo(19.23f, 5.17f) - lineTo(20.39f, 6.14f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.88f, 1.21f) - lineToRelative(-0.08f, -0.06f) - lineToRelative(-1.16f, -0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.88f, -1.22f) - close() - moveTo(14.25f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(4.6f) - close() - } - } - return _timer!! - } - -private var _timer: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Timer10.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Timer10.kt deleted file mode 100644 index 6b987ed2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Timer10.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Timer10: ImageVector - get() { - if (_timer10 != null) { - return _timer10!! - } - _timer10 = fluentIcon(name = "Regular.Timer10") { - fluentPath { - moveTo(12.0f, 5.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, 8.38f, 7.05f) - arcToRelative(4.28f, 4.28f, 0.0f, false, false, -1.52f, 0.04f) - arcToRelative(7.0f, 7.0f, 0.0f, true, false, -6.36f, 8.4f) - verticalLineToRelative(1.5f) - lineTo(12.0f, 22.0f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, 0.0f, -17.0f) - close() - moveTo(12.75f, 12.4f) - lineTo(12.75f, 8.66f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - verticalLineToRelative(4.59f) - curveToRelative(0.21f, -0.34f, 0.54f, -0.61f, 0.95f, -0.75f) - lineToRelative(0.55f, -0.18f) - close() - moveTo(19.15f, 5.11f) - lineTo(19.23f, 5.17f) - lineTo(20.39f, 6.14f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.88f, 1.21f) - lineToRelative(-0.08f, -0.06f) - lineToRelative(-1.16f, -0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.88f, -1.22f) - close() - moveTo(14.25f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(4.6f) - close() - moveTo(14.69f, 13.14f) - curveToRelative(0.2f, 0.14f, 0.31f, 0.37f, 0.31f, 0.61f) - verticalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-7.46f) - lineToRelative(-0.51f, 0.17f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.48f, -1.42f) - lineToRelative(1.5f, -0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.68f, 0.1f) - close() - moveTo(16.5f, 16.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 6.5f, 0.0f) - verticalLineToRelative(3.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.5f, 0.0f) - verticalLineToRelative(-3.5f) - close() - moveTo(19.75f, 14.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(3.5f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, 3.5f, 0.0f) - verticalLineToRelative(-3.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - } - } - return _timer10!! - } - -private var _timer10: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Timer2.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Timer2.kt deleted file mode 100644 index 80c455b8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Timer2.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Timer2: ImageVector - get() { - if (_timer2 != null) { - return _timer2!! - } - _timer2 = fluentIcon(name = "Regular.Timer2") { - fluentPath { - moveTo(20.4f, 12.16f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, -5.4f, 9.3f) - verticalLineToRelative(-0.21f) - curveToRelative(0.0f, -0.56f, 0.1f, -1.09f, 0.3f, -1.58f) - arcToRelative(7.0f, 7.0f, 0.0f, true, true, 3.54f, -7.65f) - arcToRelative(4.3f, 4.3f, 0.0f, false, true, 1.55f, 0.14f) - close() - moveTo(12.74f, 8.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.49f, 0.1f) - verticalLineToRelative(4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - verticalLineToRelative(-4.6f) - close() - moveTo(19.23f, 5.17f) - lineTo(19.15f, 5.11f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.88f, 1.22f) - lineToRelative(1.16f, 0.96f) - lineToRelative(0.08f, 0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.88f, -1.21f) - lineToRelative(-1.16f, -0.97f) - close() - moveTo(15.0f, 3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(19.25f, 13.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 16.0f, 16.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - arcTo(1.75f, 1.75f, 0.0f, true, true, 19.25f, 18.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 16.0f, 21.25f) - verticalLineToRelative(1.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(17.5f, 21.5f) - verticalLineToRelative(-0.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 0.0f, -6.5f) - close() - } - } - return _timer2!! - } - -private var _timer2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Timer3.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Timer3.kt deleted file mode 100644 index bc138e16..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Timer3.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Timer3: ImageVector - get() { - if (_timer3 != null) { - return _timer3!! - } - _timer3 = fluentIcon(name = "Regular.Timer3") { - fluentPath { - moveTo(20.4f, 12.15f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, -5.39f, 9.3f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.65f, -1.98f) - arcToRelative(7.0f, 7.0f, 0.0f, true, true, 3.18f, -7.45f) - arcToRelative(4.68f, 4.68f, 0.0f, false, true, 1.55f, 0.13f) - close() - moveTo(12.74f, 8.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.49f, 0.1f) - verticalLineToRelative(4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - verticalLineToRelative(-4.6f) - close() - moveTo(19.23f, 5.17f) - lineTo(19.15f, 5.11f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.88f, 1.22f) - lineToRelative(1.16f, 0.96f) - lineToRelative(0.08f, 0.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.88f, -1.21f) - lineToRelative(-1.16f, -0.97f) - close() - moveTo(15.0f, 3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) - horizontalLineToRelative(4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) - close() - moveTo(18.25f, 18.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - curveToRelative(0.53f, 0.0f, 1.06f, -0.18f, 1.44f, -0.47f) - curveToRelative(0.4f, -0.3f, 0.56f, -0.63f, 0.56f, -0.9f) - curveToRelative(0.0f, -0.65f, -0.66f, -1.38f, -1.75f, -1.38f) - curveToRelative(-0.52f, 0.0f, -1.01f, 0.19f, -1.4f, 0.4f) - arcToRelative(4.1f, 4.1f, 0.0f, false, false, -0.6f, 0.4f) - verticalLineToRelative(0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.0f, -1.12f) - lineToRelative(0.02f, -0.02f) - arcToRelative(3.08f, 3.08f, 0.0f, false, true, 0.23f, -0.18f) - curveToRelative(0.15f, -0.1f, 0.36f, -0.25f, 0.62f, -0.4f) - curveToRelative(0.51f, -0.28f, 1.27f, -0.59f, 2.13f, -0.59f) - curveToRelative(1.68f, 0.0f, 3.25f, 1.18f, 3.25f, 2.88f) - curveToRelative(0.0f, 0.89f, -0.52f, 1.62f, -1.16f, 2.1f) - lineToRelative(-0.03f, 0.02f) - lineToRelative(0.03f, 0.02f) - curveToRelative(0.64f, 0.48f, 1.16f, 1.21f, 1.16f, 2.1f) - curveToRelative(0.0f, 1.7f, -1.57f, 2.88f, -3.25f, 2.88f) - curveToRelative(-0.86f, 0.0f, -1.62f, -0.31f, -2.13f, -0.6f) - arcToRelative(5.58f, 5.58f, 0.0f, false, true, -0.85f, -0.57f) - lineToRelative(-0.01f, -0.01f) - lineToRelative(-0.01f, -0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.0f, -1.12f) - lineToRelative(0.02f, 0.02f) - arcToRelative(2.96f, 2.96f, 0.0f, false, false, 0.57f, 0.38f) - curveToRelative(0.4f, 0.22f, 0.9f, 0.41f, 1.41f, 0.41f) - curveToRelative(1.09f, 0.0f, 1.75f, -0.73f, 1.75f, -1.38f) - curveToRelative(0.0f, -0.27f, -0.17f, -0.6f, -0.56f, -0.9f) - arcToRelative(2.48f, 2.48f, 0.0f, false, false, -1.44f, -0.47f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - } - } - return _timer3!! - } - -private var _timer3: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TimerOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TimerOff.kt deleted file mode 100644 index 2d09b00f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TimerOff.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TimerOff: ImageVector - get() { - if (_timerOff != null) { - return _timerOff!! - } - _timerOff = fluentIcon(name = "Regular.TimerOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(4.0f, 4.0f) - arcToRelative(8.5f, 8.5f, 0.0f, true, false, 12.01f, 12.01f) - lineToRelative(2.49f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.07f) - lineTo(3.28f, 2.22f) - close() - moveTo(17.16f, 18.22f) - arcToRelative(7.0f, 7.0f, 0.0f, true, true, -9.89f, -9.89f) - lineToRelative(3.98f, 3.98f) - verticalLineToRelative(1.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.37f, 0.33f) - lineToRelative(4.54f, 4.55f) - close() - moveTo(11.44f, 8.25f) - lineTo(12.75f, 9.57f) - lineTo(12.75f, 8.65f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.31f, -0.4f) - close() - moveTo(19.0f, 13.5f) - arcToRelative(7.0f, 7.0f, 0.0f, false, true, -0.3f, 2.02f) - lineToRelative(1.18f, 1.18f) - arcTo(8.5f, 8.5f, 0.0f, false, false, 8.8f, 5.62f) - lineTo(9.97f, 6.8f) - arcTo(7.0f, 7.0f, 0.0f, false, true, 19.0f, 13.5f) - close() - moveTo(19.15f, 5.11f) - lineTo(19.23f, 5.17f) - lineTo(20.39f, 6.14f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.88f, 1.21f) - lineToRelative(-0.08f, -0.06f) - lineToRelative(-1.16f, -0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.88f, -1.22f) - close() - moveTo(14.25f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-4.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(4.6f) - close() - } - } - return _timerOff!! - } - -private var _timerOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ToggleLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ToggleLeft.kt deleted file mode 100644 index e2f79d6f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ToggleLeft.kt +++ /dev/null @@ -1,39 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ToggleLeft: ImageVector - get() { - if (_toggleLeft != null) { - return _toggleLeft!! - } - _toggleLeft = fluentIcon(name = "Regular.ToggleLeft") { - fluentPath { - moveTo(7.25f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, -5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, 5.0f) - close() - moveTo(22.0f, 12.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, -5.0f, -5.0f) - lineTo(7.0f, 7.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 0.0f, 10.0f) - horizontalLineToRelative(10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 5.0f, -5.0f) - close() - moveTo(17.0f, 8.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 0.0f, 7.0f) - lineTo(7.0f, 15.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 0.0f, -7.0f) - horizontalLineToRelative(10.0f) - close() - } - } - return _toggleLeft!! - } - -private var _toggleLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ToggleMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ToggleMultiple.kt deleted file mode 100644 index 255ae3a6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ToggleMultiple.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ToggleMultiple: ImageVector - get() { - if (_toggleMultiple != null) { - return _toggleMultiple!! - } - _toggleMultiple = fluentIcon(name = "Regular.ToggleMultiple") { - fluentPath { - moveTo(6.5f, 8.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) - close() - moveTo(6.5f, 2.0f) - horizontalLineToRelative(11.0f) - arcToRelative(4.5f, 4.5f, 0.0f, true, true, 0.0f, 9.0f) - horizontalLineToRelative(-11.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, 0.0f, -9.0f) - close() - moveTo(17.5f, 3.5f) - horizontalLineToRelative(-11.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) - horizontalLineToRelative(11.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) - close() - moveTo(17.5f, 19.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) - close() - moveTo(2.0f, 17.5f) - arcTo(4.5f, 4.5f, 0.0f, false, true, 6.5f, 13.0f) - horizontalLineToRelative(11.0f) - arcToRelative(4.5f, 4.5f, 0.0f, true, true, 0.0f, 9.0f) - horizontalLineToRelative(-11.0f) - arcTo(4.5f, 4.5f, 0.0f, false, true, 2.0f, 17.5f) - close() - moveTo(6.5f, 14.5f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) - horizontalLineToRelative(11.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) - horizontalLineToRelative(-11.0f) - close() - } - } - return _toggleMultiple!! - } - -private var _toggleMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ToggleRight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ToggleRight.kt deleted file mode 100644 index 1eb6f79f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ToggleRight.kt +++ /dev/null @@ -1,39 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ToggleRight: ImageVector - get() { - if (_toggleRight != null) { - return _toggleRight!! - } - _toggleRight = fluentIcon(name = "Regular.ToggleRight") { - fluentPath { - moveTo(16.75f, 14.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) - close() - moveTo(2.0f, 12.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 5.0f, -5.0f) - horizontalLineToRelative(10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, 10.0f) - lineTo(7.0f, 17.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, true, -5.0f, -5.0f) - close() - moveTo(7.0f, 8.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) - horizontalLineToRelative(10.0f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, -7.0f) - lineTo(7.0f, 8.5f) - close() - } - } - return _toggleRight!! - } - -private var _toggleRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Toolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Toolbox.kt deleted file mode 100644 index 13fd6a1b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Toolbox.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Toolbox: ImageVector - get() { - if (_toolbox != null) { - return _toolbox!! - } - _toolbox = fluentIcon(name = "Regular.Toolbox") { - fluentPath { - moveTo(7.0f, 6.25f) - lineTo(7.0f, 7.0f) - lineTo(4.25f, 7.0f) - curveTo(3.01f, 7.0f, 2.0f, 8.0f, 2.0f, 9.25f) - verticalLineToRelative(8.5f) - curveTo(2.0f, 18.99f, 3.0f, 20.0f, 4.25f, 20.0f) - horizontalLineToRelative(15.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.01f, 2.25f, -2.25f) - verticalLineToRelative(-8.5f) - curveTo(22.0f, 8.01f, 21.0f, 7.0f, 19.75f, 7.0f) - lineTo(17.0f, 7.0f) - verticalLineToRelative(-0.75f) - curveTo(17.0f, 5.01f, 16.0f, 4.0f, 14.75f, 4.0f) - horizontalLineToRelative(-5.5f) - curveTo(8.01f, 4.0f, 7.0f, 5.01f, 7.0f, 6.25f) - close() - moveTo(9.25f, 5.5f) - horizontalLineToRelative(5.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(15.5f, 7.0f) - horizontalLineToRelative(-7.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(7.0f, 8.5f) - horizontalLineToRelative(12.75f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.25f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(0.75f) - lineTo(8.0f, 11.5f) - verticalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(-3.0f) - lineTo(3.5f, 9.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - lineTo(7.0f, 8.5f) - close() - moveTo(16.0f, 13.0f) - verticalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(17.5f, 13.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(4.75f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(4.25f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(3.5f, 13.0f) - horizontalLineToRelative(3.0f) - verticalLineToRelative(1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(8.0f, 13.0f) - horizontalLineToRelative(8.0f) - close() - } - } - return _toolbox!! - } - -private var _toolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TooltipQuote.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TooltipQuote.kt deleted file mode 100644 index d9743cdc..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TooltipQuote.kt +++ /dev/null @@ -1,89 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TooltipQuote: ImageVector - get() { - if (_tooltipQuote != null) { - return _tooltipQuote!! - } - _tooltipQuote = fluentIcon(name = "Regular.TooltipQuote") { - fluentPath { - moveTo(6.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, 0.64f) - curveToRelative(-0.3f, 0.67f, -0.71f, 1.13f, -0.91f, 1.33f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - arcTo(5.85f, 5.85f, 0.0f, false, false, 8.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-1.5f) - close() - moveTo(10.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, 0.64f) - curveToRelative(-0.3f, 0.67f, -0.71f, 1.13f, -0.91f, 1.33f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - arcToRelative(5.85f, 5.85f, 0.0f, false, false, 1.72f, -4.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-1.5f) - close() - moveTo(2.0f, 4.25f) - curveTo(2.0f, 3.01f, 3.0f, 2.0f, 4.25f, 2.0f) - horizontalLineToRelative(9.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-1.94f) - lineToRelative(-1.9f, 3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.32f, 0.0f) - lineTo(6.19f, 14.0f) - lineTo(4.25f, 14.0f) - curveTo(3.01f, 14.0f, 2.0f, 13.0f, 2.0f, 11.75f) - verticalLineToRelative(-7.5f) - close() - moveTo(4.25f, 3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(2.4f) - curveToRelative(0.27f, 0.0f, 0.53f, 0.15f, 0.66f, 0.4f) - lineToRelative(1.44f, 2.74f) - lineToRelative(1.44f, -2.74f) - curveToRelative(0.13f, -0.25f, 0.39f, -0.4f, 0.67f, -0.4f) - horizontalLineToRelative(2.39f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-9.0f) - close() - moveTo(6.38f, 16.5f) - lineTo(2.75f, 16.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(4.42f) - lineToRelative(-0.8f, -1.5f) - close() - moveTo(10.33f, 18.0f) - horizontalLineToRelative(10.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(11.12f, 16.5f) - lineToRelative(-0.79f, 1.5f) - close() - moveTo(2.75f, 20.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-12.0f) - close() - } - } - return _tooltipQuote!! - } - -private var _tooltipQuote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TopSpeed.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TopSpeed.kt deleted file mode 100644 index 494a7946..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TopSpeed.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TopSpeed: ImageVector - get() { - if (_topSpeed != null) { - return _topSpeed!! - } - _topSpeed = fluentIcon(name = "Regular.TopSpeed") { - fluentPath { - moveTo(6.54f, 5.48f) - arcToRelative(8.46f, 8.46f, 0.0f, false, true, 4.71f, -1.95f) - verticalLineToRelative(1.72f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(12.75f, 3.53f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, 7.74f, 7.97f) - horizontalLineToRelative(-1.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.7f) - arcToRelative(8.45f, 8.45f, 0.0f, false, true, -3.17f, 5.67f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.94f, 1.16f) - arcTo(9.93f, 9.93f, 0.0f, false, false, 22.0f, 12.0f) - arcToRelative(10.0f, 10.0f, 0.0f, true, false, -16.23f, 7.83f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.96f, -1.16f) - arcTo(8.66f, 8.66f, 0.0f, false, true, 3.56f, 13.0f) - horizontalLineToRelative(1.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(3.51f, 11.5f) - curveToRelative(0.11f, -1.88f, 0.84f, -3.6f, 1.97f, -4.96f) - lineToRelative(1.24f, 1.24f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(6.54f, 5.48f) - close() - moveTo(16.76f, 6.63f) - arcToRelative(0.65f, 0.65f, 0.0f, false, false, -0.8f, 0.02f) - lineToRelative(-0.23f, 0.18f) - arcToRelative(396.1f, 396.1f, 0.0f, false, false, -4.21f, 3.6f) - arcToRelative(37.86f, 37.86f, 0.0f, false, false, -1.1f, 1.05f) - curveToRelative(-0.66f, 0.8f, -0.52f, 1.98f, 0.3f, 2.62f) - curveToRelative(0.83f, 0.64f, 2.03f, 0.5f, 2.68f, -0.3f) - arcToRelative(37.18f, 37.18f, 0.0f, false, false, 0.78f, -1.3f) - arcToRelative(152.48f, 152.48f, 0.0f, false, false, 2.62f, -4.85f) - lineToRelative(0.13f, -0.24f) - arcToRelative(0.61f, 0.61f, 0.0f, false, false, -0.17f, -0.78f) - close() - } - } - return _topSpeed!! - } - -private var _topSpeed: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Translate.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Translate.kt deleted file mode 100644 index 07f8d308..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Translate.kt +++ /dev/null @@ -1,91 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Translate: ImageVector - get() { - if (_translate != null) { - return _translate!! - } - _translate = fluentIcon(name = "Regular.Translate") { - fluentPath { - moveTo(16.96f, 5.99f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.42f, -0.48f) - curveToRelative(-0.15f, 0.45f, -0.3f, 1.04f, -0.42f, 1.52f) - curveToRelative(-0.74f, 0.02f, -1.45f, 0.01f, -2.07f, -0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.1f, 1.5f) - curveToRelative(0.56f, 0.04f, 1.19f, 0.05f, 1.84f, 0.04f) - curveToRelative(-0.14f, 0.76f, -0.24f, 1.44f, -0.3f, 2.06f) - arcToRelative(5.94f, 5.94f, 0.0f, false, false, -2.54f, 2.41f) - curveToRelative(-0.6f, 1.17f, -0.66f, 2.56f, 0.21f, 3.44f) - curveToRelative(0.57f, 0.59f, 1.4f, 0.64f, 2.13f, 0.49f) - curveToRelative(0.4f, -0.09f, 0.82f, -0.25f, 1.24f, -0.47f) - lineToRelative(0.02f, 0.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.4f, -0.52f) - lineToRelative(-0.17f, -0.43f) - arcToRelative(7.63f, 7.63f, 0.0f, false, false, 2.29f, -4.04f) - curveToRelative(0.63f, 0.3f, 1.07f, 0.83f, 1.27f, 1.4f) - curveToRelative(0.23f, 0.61f, 0.22f, 1.3f, -0.1f, 1.95f) - curveToRelative(-0.3f, 0.63f, -0.92f, 1.26f, -2.0f, 1.68f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.53f, 1.4f) - arcToRelative(5.01f, 5.01f, 0.0f, false, false, 2.83f, -2.43f) - arcToRelative(4.04f, 4.04f, 0.0f, false, false, -2.35f, -5.55f) - verticalLineToRelative(-0.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, -0.03f) - curveToRelative(-0.52f, 0.0f, -1.08f, 0.07f, -1.67f, 0.24f) - curveToRelative(0.06f, -0.45f, 0.15f, -0.95f, 0.26f, -1.5f) - curveToRelative(1.18f, -0.09f, 2.36f, -0.25f, 3.33f, -0.48f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.34f, -1.46f) - curveToRelative(-0.77f, 0.18f, -1.7f, 0.32f, -2.64f, 0.4f) - curveToRelative(0.09f, -0.32f, 0.18f, -0.66f, 0.27f, -0.93f) - close() - moveTo(13.28f, 13.71f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 1.15f, -1.3f) - arcToRelative(7.83f, 7.83f, 0.0f, false, false, 0.52f, 2.69f) - curveToRelative(-0.3f, 0.17f, -0.63f, 0.3f, -0.98f, 0.37f) - curveToRelative(-0.48f, 0.1f, -0.68f, 0.0f, -0.74f, -0.06f) - curveToRelative(-0.24f, -0.25f, -0.4f, -0.86f, 0.05f, -1.7f) - close() - moveTo(17.6f, 11.22f) - curveToRelative(-0.21f, 0.97f, -0.7f, 2.02f, -1.42f, 2.85f) - arcToRelative(8.62f, 8.62f, 0.0f, false, true, -0.25f, -2.48f) - lineToRelative(0.34f, -0.12f) - curveToRelative(0.48f, -0.16f, 0.92f, -0.23f, 1.33f, -0.25f) - close() - moveTo(7.96f, 6.53f) - curveToRelative(-2.24f, -0.65f, -4.0f, 0.15f, -4.57f, 0.47f) - arcTo(0.75f, 0.75f, 0.0f, true, false, 4.1f, 8.3f) - curveToRelative(0.4f, -0.22f, 1.74f, -0.83f, 3.43f, -0.34f) - curveToRelative(0.77f, 0.23f, 1.1f, 0.64f, 1.27f, 1.06f) - curveToRelative(0.13f, 0.33f, 0.17f, 0.69f, 0.18f, 1.04f) - arcToRelative(9.83f, 9.83f, 0.0f, false, false, -0.92f, -0.21f) - arcToRelative(6.83f, 6.83f, 0.0f, false, false, -4.12f, 0.42f) - arcToRelative(3.39f, 3.39f, 0.0f, false, false, -1.9f, 3.7f) - arcToRelative(3.52f, 3.52f, 0.0f, false, false, 2.8f, 2.95f) - arcTo(5.95f, 5.95f, 0.0f, false, false, 9.0f, 15.95f) - verticalLineToRelative(0.3f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-5.79f) - curveToRelative(0.0f, -0.45f, 0.0f, -1.24f, -0.3f, -1.99f) - curveToRelative(-0.33f, -0.83f, -1.0f, -1.58f, -2.24f, -1.94f) - close() - moveTo(7.81f, 11.33f) - curveToRelative(0.48f, 0.09f, 0.9f, 0.21f, 1.19f, 0.3f) - verticalLineToRelative(2.51f) - arcToRelative(7.38f, 7.38f, 0.0f, false, true, -1.1f, 0.7f) - curveToRelative(-0.84f, 0.45f, -1.85f, 0.79f, -2.79f, 0.62f) - arcToRelative(2.02f, 2.02f, 0.0f, false, true, -1.58f, -1.72f) - arcToRelative(1.89f, 1.89f, 0.0f, false, true, 1.07f, -2.1f) - arcToRelative(5.34f, 5.34f, 0.0f, false, true, 3.2f, -0.3f) - close() - } - } - return _translate!! - } - -private var _translate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TranslateOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TranslateOff.kt deleted file mode 100644 index 919549b7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TranslateOff.kt +++ /dev/null @@ -1,94 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TranslateOff: ImageVector - get() { - if (_translateOff != null) { - return _translateOff!! - } - _translateOff = fluentIcon(name = "Regular.TranslateOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineTo(5.3f, 6.36f) - curveToRelative(-0.92f, 0.14f, -1.6f, 0.46f, -1.91f, 0.64f) - arcTo(0.75f, 0.75f, 0.0f, true, false, 4.1f, 8.3f) - arcToRelative(4.54f, 4.54f, 0.0f, false, true, 2.64f, -0.5f) - lineToRelative(2.24f, 2.24f) - verticalLineToRelative(0.02f) - arcToRelative(9.84f, 9.84f, 0.0f, false, false, -0.92f, -0.21f) - arcToRelative(6.83f, 6.83f, 0.0f, false, false, -4.12f, 0.42f) - arcToRelative(3.39f, 3.39f, 0.0f, false, false, -1.9f, 3.7f) - arcToRelative(3.52f, 3.52f, 0.0f, false, false, 2.8f, 2.95f) - arcTo(5.95f, 5.95f, 0.0f, false, false, 9.0f, 15.95f) - verticalLineToRelative(0.3f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-4.7f) - lineToRelative(1.45f, 1.46f) - curveToRelative(-0.6f, 1.17f, -0.66f, 2.56f, 0.21f, 3.44f) - curveToRelative(0.57f, 0.59f, 1.4f, 0.64f, 2.13f, 0.49f) - arcToRelative(4.6f, 4.6f, 0.0f, false, false, 1.16f, -0.43f) - lineToRelative(0.25f, 0.25f) - lineToRelative(0.04f, 0.04f) - lineToRelative(4.98f, 4.98f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(14.32f, 15.38f) - lineTo(13.97f, 15.48f) - curveToRelative(-0.48f, 0.1f, -0.68f, -0.02f, -0.74f, -0.07f) - curveToRelative(-0.2f, -0.2f, -0.33f, -0.64f, -0.14f, -1.26f) - lineToRelative(1.23f, 1.23f) - close() - moveTo(7.8f, 11.33f) - curveToRelative(0.48f, 0.09f, 0.9f, 0.21f, 1.19f, 0.3f) - verticalLineToRelative(2.51f) - arcToRelative(7.38f, 7.38f, 0.0f, false, true, -1.1f, 0.7f) - curveToRelative(-0.84f, 0.45f, -1.85f, 0.79f, -2.79f, 0.62f) - arcToRelative(2.02f, 2.02f, 0.0f, false, true, -1.58f, -1.72f) - arcToRelative(1.89f, 1.89f, 0.0f, false, true, 1.07f, -2.1f) - arcToRelative(5.34f, 5.34f, 0.0f, false, true, 3.2f, -0.3f) - close() - moveTo(20.24f, 14.87f) - curveToRelative(-0.2f, 0.4f, -0.53f, 0.82f, -1.03f, 1.17f) - lineToRelative(1.07f, 1.07f) - curveToRelative(0.59f, -0.45f, 1.02f, -1.0f, 1.3f, -1.59f) - curveToRelative(0.5f, -1.02f, 0.53f, -2.14f, 0.16f, -3.12f) - arcToRelative(4.04f, 4.04f, 0.0f, false, false, -2.5f, -2.43f) - verticalLineToRelative(-0.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, -0.03f) - curveToRelative(-0.52f, 0.0f, -1.08f, 0.07f, -1.67f, 0.24f) - curveToRelative(0.06f, -0.45f, 0.15f, -0.95f, 0.26f, -1.5f) - curveToRelative(1.18f, -0.09f, 2.36f, -0.25f, 3.33f, -0.48f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.34f, -1.46f) - curveToRelative(-0.77f, 0.18f, -1.7f, 0.32f, -2.64f, 0.4f) - curveToRelative(0.09f, -0.32f, 0.18f, -0.66f, 0.27f, -0.93f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.42f, -0.48f) - curveToRelative(-0.15f, 0.45f, -0.3f, 1.04f, -0.42f, 1.52f) - curveToRelative(-0.74f, 0.02f, -1.45f, 0.01f, -2.07f, -0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.1f, 1.5f) - curveToRelative(0.56f, 0.04f, 1.19f, 0.05f, 1.84f, 0.04f) - curveToRelative(-0.14f, 0.76f, -0.24f, 1.44f, -0.3f, 2.06f) - lineToRelative(-0.45f, 0.26f) - lineToRelative(1.91f, 1.9f) - arcToRelative(9.92f, 9.92f, 0.0f, false, true, -0.02f, -1.17f) - lineToRelative(0.34f, -0.12f) - curveToRelative(0.48f, -0.16f, 0.92f, -0.23f, 1.33f, -0.25f) - arcToRelative(6.71f, 6.71f, 0.0f, false, true, -0.96f, 2.24f) - lineToRelative(1.07f, 1.07f) - arcToRelative(7.74f, 7.74f, 0.0f, false, false, 1.36f, -3.01f) - curveToRelative(0.63f, 0.3f, 1.07f, 0.83f, 1.27f, 1.4f) - curveToRelative(0.23f, 0.61f, 0.22f, 1.3f, -0.1f, 1.95f) - close() - } - } - return _translateOff!! - } - -private var _translateOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Transmission.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Transmission.kt deleted file mode 100644 index 8a301986..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Transmission.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Transmission: ImageVector - get() { - if (_transmission != null) { - return _transmission!! - } - _transmission = fluentIcon(name = "Regular.Transmission") { - fluentPath { - moveTo(12.0f, 2.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, -0.75f, 5.4f) - verticalLineToRelative(3.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - lineTo(12.75f, 7.4f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 12.0f, 2.0f) - close() - moveTo(10.75f, 4.75f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) - close() - moveTo(3.0f, 6.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - lineTo(8.0f, 10.0f) - horizontalLineToRelative(2.25f) - verticalLineToRelative(1.5f) - lineTo(6.5f, 11.5f) - verticalLineToRelative(-5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) - verticalLineToRelative(12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-5.0f) - lineTo(11.0f, 13.5f) - verticalLineToRelative(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) - verticalLineToRelative(-5.0f) - horizontalLineToRelative(6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) - lineTo(19.5f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(-3.75f) - lineTo(13.75f, 10.0f) - lineTo(16.0f, 10.0f) - lineTo(16.0f, 6.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - lineTo(21.0f, 13.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) - horizontalLineToRelative(-4.5f) - verticalLineToRelative(3.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) - lineTo(9.5f, 15.0f) - lineTo(8.0f, 15.0f) - verticalLineToRelative(3.5f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) - verticalLineToRelative(-12.0f) - close() - } - } - return _transmission!! - } - -private var _transmission: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TrayItemAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TrayItemAdd.kt deleted file mode 100644 index 45edd1d9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TrayItemAdd.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TrayItemAdd: ImageVector - get() { - if (_trayItemAdd != null) { - return _trayItemAdd!! - } - _trayItemAdd = fluentIcon(name = "Regular.TrayItemAdd") { - fluentPath { - moveTo(14.0f, 3.5f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(-2.0f) - lineTo(14.0f, 3.5f) - close() - moveTo(12.5f, 3.25f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(4.0f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(2.5f) - curveTo(19.0f, 6.44f, 18.44f, 7.0f, 17.75f, 7.0f) - horizontalLineToRelative(-4.0f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - verticalLineToRelative(-2.5f) - close() - moveTo(15.75f, 8.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(6.69f) - lineToRelative(1.22f, -1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-2.5f, 2.5f) - curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) - lineToRelative(-2.5f, -2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineTo(15.0f, 15.94f) - lineTo(15.0f, 9.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(6.5f, 15.0f) - verticalLineToRelative(2.0f) - lineTo(10.0f, 17.0f) - verticalLineToRelative(-2.0f) - lineTo(6.5f, 15.0f) - close() - moveTo(5.0f, 14.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(4.0f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineToRelative(-4.0f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - verticalLineToRelative(-2.5f) - close() - moveTo(2.75f, 16.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(14.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(2.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) - lineTo(4.75f, 21.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 18.75f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _trayItemAdd!! - } - -private var _trayItemAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TrayItemRemove.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TrayItemRemove.kt deleted file mode 100644 index 6181009b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TrayItemRemove.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TrayItemRemove: ImageVector - get() { - if (_trayItemRemove != null) { - return _trayItemRemove!! - } - _trayItemRemove = fluentIcon(name = "Regular.TrayItemRemove") { - fluentPath { - moveTo(14.0f, 3.5f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(-2.0f) - lineTo(14.0f, 3.5f) - close() - moveTo(12.5f, 3.25f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(4.0f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(2.5f) - curveTo(19.0f, 6.44f, 18.44f, 7.0f, 17.75f, 7.0f) - horizontalLineToRelative(-4.0f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - verticalLineToRelative(-2.5f) - close() - moveTo(15.22f, 8.72f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(2.5f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-1.22f, -1.22f) - verticalLineToRelative(6.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-6.69f) - lineToRelative(-1.22f, 1.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(2.5f, -2.5f) - close() - moveTo(6.5f, 15.0f) - verticalLineToRelative(2.0f) - lineTo(10.0f, 17.0f) - verticalLineToRelative(-2.0f) - lineTo(6.5f, 15.0f) - close() - moveTo(5.0f, 14.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(4.0f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(2.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineToRelative(-4.0f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - verticalLineToRelative(-2.5f) - close() - moveTo(2.75f, 16.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(2.0f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(14.5f) - curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(2.0f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) - lineTo(4.75f, 21.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 18.75f) - verticalLineToRelative(-2.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _trayItemRemove!! - } - -private var _trayItemRemove: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Trophy.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Trophy.kt deleted file mode 100644 index 0896ed1a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Trophy.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Trophy: ImageVector - get() { - if (_trophy != null) { - return _trophy!! - } - _trophy = fluentIcon(name = "Regular.Trophy") { - fluentPath { - moveTo(15.25f, 2.0f) - curveToRelative(1.16f, 0.0f, 2.12f, 0.88f, 2.24f, 2.0f) - horizontalLineToRelative(1.27f) - curveToRelative(0.92f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) - verticalLineToRelative(3.15f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.06f, 3.24f) - lineToRelative(-0.2f, 0.01f) - arcToRelative(5.76f, 5.76f, 0.0f, false, true, -4.74f, 3.95f) - verticalLineToRelative(1.55f) - horizontalLineToRelative(1.75f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.25f, 3.07f) - lineTo(17.5f, 21.25f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.64f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.65f) - verticalLineToRelative(-0.6f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.06f, -3.24f) - lineToRelative(0.18f, -0.01f) - lineTo(11.0f, 17.5f) - verticalLineToRelative(-1.55f) - arcTo(5.76f, 5.76f, 0.0f, false, true, 6.27f, 12.0f) - horizontalLineToRelative(-0.02f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 8.75f) - verticalLineToRelative(-3.0f) - curveTo(3.0f, 4.78f, 3.78f, 4.0f, 4.75f, 4.0f) - lineTo(6.0f, 4.0f) - curveToRelative(0.13f, -1.12f, 1.08f, -2.0f, 2.24f, -2.0f) - horizontalLineToRelative(7.0f) - close() - moveTo(14.25f, 19.0f) - horizontalLineToRelative(-5.0f) - curveToRelative(-0.83f, 0.0f, -1.52f, 0.58f, -1.7f, 1.35f) - lineToRelative(-0.03f, 0.15f) - horizontalLineToRelative(8.47f) - arcTo(1.75f, 1.75f, 0.0f, false, false, 14.4f, 19.0f) - horizontalLineToRelative(-0.16f) - close() - moveTo(15.25f, 3.5f) - horizontalLineToRelative(-7.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.0f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, 8.5f, 0.0f) - verticalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(18.75f, 5.5f) - lineTo(17.5f, 5.5f) - verticalLineToRelative(4.98f) - curveToRelative(0.8f, -0.11f, 1.43f, -0.76f, 1.5f, -1.58f) - lineTo(19.0f, 5.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.18f, -0.24f) - lineToRelative(-0.06f, -0.01f) - close() - moveTo(6.0f, 5.5f) - lineTo(4.75f, 5.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.88f, 0.65f, 1.61f, 1.5f, 1.73f) - lineTo(6.0f, 5.5f) - close() - } - } - return _trophy!! - } - -private var _trophy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TrophyLock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TrophyLock.kt deleted file mode 100644 index c5762f31..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TrophyLock.kt +++ /dev/null @@ -1,100 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TrophyLock: ImageVector - get() { - if (_trophyLock != null) { - return _trophyLock!! - } - _trophyLock = fluentIcon(name = "Regular.TrophyLock") { - fluentPath { - moveTo(17.49f, 4.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) - horizontalLineToRelative(-7.0f) - curveToRelative(-1.16f, 0.0f, -2.11f, 0.88f, -2.24f, 2.0f) - lineTo(4.75f, 4.0f) - curveTo(3.78f, 4.0f, 3.0f, 4.78f, 3.0f, 5.75f) - verticalLineToRelative(3.0f) - curveTo(3.0f, 10.55f, 4.45f, 12.0f, 6.25f, 12.0f) - horizontalLineToRelative(0.02f) - arcTo(5.76f, 5.76f, 0.0f, false, false, 11.0f, 15.95f) - verticalLineToRelative(1.55f) - lineTo(9.07f, 17.5f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 6.0f, 20.76f) - verticalLineToRelative(0.6f) - curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) - horizontalLineToRelative(6.75f) - curveToRelative(-0.31f, -0.42f, -0.5f, -0.94f, -0.5f, -1.5f) - lineTo(7.52f, 20.51f) - lineToRelative(0.03f, -0.15f) - curveToRelative(0.18f, -0.77f, 0.87f, -1.35f, 1.7f, -1.35f) - lineTo(13.0f, 19.01f) - verticalLineToRelative(-1.5f) - horizontalLineToRelative(-0.5f) - verticalLineToRelative(-1.55f) - curveToRelative(0.17f, -0.02f, 0.34f, -0.05f, 0.5f, -0.09f) - verticalLineToRelative(-0.36f) - curveToRelative(0.0f, -0.49f, 0.14f, -0.94f, 0.38f, -1.32f) - arcToRelative(4.24f, 4.24f, 0.0f, false, true, -5.88f, -3.93f) - verticalLineToRelative(-6.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.0f) - curveToRelative(0.42f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(6.3f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 1.5f, -0.9f) - lineTo(17.5f, 5.5f) - horizontalLineToRelative(1.31f) - curveToRelative(0.12f, 0.03f, 0.2f, 0.13f, 0.2f, 0.25f) - lineTo(19.01f, 8.9f) - curveToRelative(-0.03f, 0.22f, -0.09f, 0.43f, -0.18f, 0.62f) - curveToRelative(0.52f, 0.04f, 1.0f, 0.2f, 1.44f, 0.46f) - curveToRelative(0.15f, -0.38f, 0.24f, -0.8f, 0.24f, -1.23f) - lineTo(20.51f, 5.61f) - curveTo(20.42f, 4.7f, 19.67f, 4.0f, 18.75f, 4.0f) - horizontalLineToRelative(-1.27f) - close() - moveTo(4.75f, 5.5f) - lineTo(6.0f, 5.5f) - verticalLineToRelative(4.98f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.5f, -1.73f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -0.14f, 0.1f, -0.25f, 0.25f, -0.25f) - close() - moveTo(18.5f, 10.5f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 16.0f, 13.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-0.5f) - curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) - horizontalLineToRelative(6.0f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) - lineTo(21.0f, 14.0f) - verticalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.5f, -2.5f) - close() - moveTo(18.5f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - close() - moveTo(18.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) - close() - } - } - return _trophyLock!! - } - -private var _trophyLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TrophyOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TrophyOff.kt deleted file mode 100644 index 07302c2b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TrophyOff.kt +++ /dev/null @@ -1,94 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TrophyOff: ImageVector - get() { - if (_trophyOff != null) { - return _trophyOff!! - } - _trophyOff = fluentIcon(name = "Regular.TrophyOff") { - fluentPath { - moveTo(3.48f, 4.54f) - lineTo(2.22f, 3.28f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(18.5f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineToRelative(-6.39f, -6.39f) - curveToRelative(-0.56f, 0.28f, -1.18f, 0.48f, -1.83f, 0.56f) - verticalLineToRelative(1.55f) - horizontalLineToRelative(1.75f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.25f, 3.07f) - lineTo(17.5f, 21.25f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.64f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.65f) - verticalLineToRelative(-0.6f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.06f, -3.24f) - lineToRelative(0.18f, -0.01f) - lineTo(11.0f, 17.5f) - verticalLineToRelative(-1.55f) - arcTo(5.76f, 5.76f, 0.0f, false, true, 6.27f, 12.0f) - horizontalLineToRelative(-0.02f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 8.75f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -0.47f, 0.18f, -0.9f, 0.48f, -1.2f) - close() - moveTo(13.19f, 14.25f) - lineTo(7.5f, 8.56f) - verticalLineToRelative(1.69f) - arcToRelative(4.25f, 4.25f, 0.0f, false, false, 5.69f, 4.0f) - close() - moveTo(6.0f, 7.06f) - lineTo(4.54f, 5.6f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.04f, 0.15f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.88f, 0.65f, 1.61f, 1.5f, 1.73f) - lineTo(6.0f, 7.06f) - close() - moveTo(16.0f, 10.25f) - curveToRelative(0.0f, 0.74f, -0.19f, 1.44f, -0.52f, 2.05f) - lineToRelative(1.1f, 1.09f) - curveToRelative(0.27f, -0.43f, 0.5f, -0.9f, 0.65f, -1.39f) - horizontalLineToRelative(0.21f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 3.07f, -3.25f) - lineTo(20.51f, 5.61f) - curveTo(20.42f, 4.7f, 19.67f, 4.0f, 18.75f, 4.0f) - horizontalLineToRelative(-1.27f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) - horizontalLineToRelative(-7.0f) - curveToRelative(-0.83f, 0.0f, -1.56f, 0.45f, -1.95f, 1.12f) - lineToRelative(1.2f, 1.2f) - verticalLineToRelative(-0.07f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(7.0f) - curveToRelative(0.42f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(6.0f) - close() - moveTo(9.25f, 19.0f) - curveToRelative(-0.83f, 0.0f, -1.52f, 0.58f, -1.7f, 1.35f) - lineToRelative(-0.03f, 0.15f) - horizontalLineToRelative(8.47f) - arcTo(1.75f, 1.75f, 0.0f, false, false, 14.4f, 19.0f) - lineTo(9.25f, 19.0f) - close() - moveTo(18.75f, 5.5f) - horizontalLineToRelative(0.07f) - curveToRelative(0.1f, 0.03f, 0.19f, 0.13f, 0.19f, 0.25f) - lineTo(19.01f, 8.9f) - curveToRelative(-0.08f, 0.82f, -0.7f, 1.47f, -1.5f, 1.58f) - lineTo(17.51f, 5.5f) - horizontalLineToRelative(1.25f) - close() - } - } - return _trophyOff!! - } - -private var _trophyOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Tv.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Tv.kt deleted file mode 100644 index 18b7183c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Tv.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Tv: ImageVector - get() { - if (_tv != null) { - return _tv!! - } - _tv = fluentIcon(name = "Regular.Tv") { - fluentPath { - moveTo(4.75f, 4.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 6.75f) - verticalLineToRelative(8.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 18.0f) - horizontalLineToRelative(14.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 15.25f) - verticalLineToRelative(-8.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 4.0f) - horizontalLineTo(4.75f) - close() - moveTo(3.5f, 6.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(14.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineTo(4.75f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - verticalLineToRelative(-8.5f) - close() - moveTo(5.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(5.75f) - close() - } - } - return _tv!! - } - -private var _tv: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TvUsb.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TvUsb.kt deleted file mode 100644 index 22e0c8ac..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/TvUsb.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.TvUsb: ImageVector - get() { - if (_tvUsb != null) { - return _tvUsb!! - } - _tvUsb = fluentIcon(name = "Regular.TvUsb") { - fluentPath { - moveTo(4.75f, 3.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 5.75f) - verticalLineToRelative(8.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 17.0f) - horizontalLineToRelative(9.75f) - verticalLineToRelative(-1.5f) - lineTo(4.75f, 15.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(14.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - lineTo(20.5f, 8.5f) - horizontalLineToRelative(0.5f) - curveToRelative(0.36f, 0.0f, 0.7f, 0.07f, 1.0f, 0.2f) - lineTo(22.0f, 5.76f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 3.0f) - lineTo(4.75f, 3.0f) - close() - moveTo(5.75f, 18.5f) - horizontalLineToRelative(9.0f) - lineToRelative(0.16f, 0.28f) - lineToRelative(0.8f, 1.22f) - lineTo(5.75f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(17.5f, 20.0f) - lineToRelative(-1.34f, -2.04f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.16f, -0.55f) - lineTo(16.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - verticalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(3.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(3.44f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.17f, 0.55f) - lineTo(21.5f, 20.0f) - verticalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - verticalLineToRelative(-2.0f) - close() - moveTo(20.5f, 11.5f) - horizontalLineToRelative(-2.0f) - lineTo(18.5f, 13.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(-1.5f) - close() - } - } - return _tvUsb!! - } - -private var _tvUsb: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Umbrella.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Umbrella.kt deleted file mode 100644 index 8d9166d2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Umbrella.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Umbrella: ImageVector - get() { - if (_umbrella != null) { - return _umbrella!! - } - _umbrella = fluentIcon(name = "Regular.Umbrella") { - fluentPath { - moveTo(10.25f, 10.91f) - curveToRelative(0.47f, -0.4f, 1.07f, -0.73f, 1.75f, -0.73f) - curveToRelative(0.68f, 0.0f, 1.28f, 0.33f, 1.75f, 0.73f) - arcToRelative(4.6f, 4.6f, 0.0f, false, true, 0.68f, 0.71f) - lineToRelative(0.03f, 0.05f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.24f, 0.0f) - arcToRelative(5.6f, 5.6f, 0.0f, false, true, 0.71f, -0.76f) - curveToRelative(0.48f, -0.4f, 1.08f, -0.73f, 1.76f, -0.73f) - curveToRelative(0.67f, 0.0f, 1.28f, 0.33f, 1.75f, 0.73f) - curveToRelative(0.23f, 0.2f, 0.41f, 0.4f, 0.54f, 0.54f) - lineToRelative(0.17f, 0.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.37f, -0.42f) - curveTo(22.0f, 6.57f, 17.95f, 2.0f, 12.0f, 2.0f) - reflectiveCurveTo(2.0f, 6.57f, 2.0f, 11.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.37f, 0.42f) - lineToRelative(0.17f, -0.22f) - curveToRelative(0.13f, -0.15f, 0.31f, -0.34f, 0.54f, -0.54f) - curveToRelative(0.47f, -0.4f, 1.08f, -0.73f, 1.75f, -0.73f) - curveToRelative(0.68f, 0.0f, 1.28f, 0.33f, 1.76f, 0.73f) - arcToRelative(4.6f, 4.6f, 0.0f, false, true, 0.7f, 0.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.25f, 0.0f) - lineToRelative(0.03f, -0.05f) - arcToRelative(3.8f, 3.8f, 0.0f, false, true, 0.68f, -0.7f) - close() - moveTo(3.79f, 9.28f) - curveTo(4.71f, 6.18f, 7.74f, 3.5f, 12.0f, 3.5f) - curveToRelative(4.26f, 0.0f, 7.29f, 2.68f, 8.2f, 5.78f) - arcToRelative(3.94f, 3.94f, 0.0f, false, false, -2.03f, -0.6f) - curveToRelative(-1.18f, 0.0f, -2.12f, 0.57f, -2.72f, 1.09f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, -0.37f, 0.33f) - lineToRelative(-0.36f, -0.33f) - arcTo(4.27f, 4.27f, 0.0f, false, false, 12.0f, 8.67f) - curveToRelative(-1.17f, 0.0f, -2.11f, 0.58f, -2.72f, 1.1f) - curveToRelative(-0.13f, 0.11f, -0.26f, 0.22f, -0.36f, 0.33f) - arcToRelative(6.0f, 6.0f, 0.0f, false, false, -0.37f, -0.33f) - arcToRelative(4.27f, 4.27f, 0.0f, false, false, -2.72f, -1.1f) - curveToRelative(-0.8f, 0.0f, -1.49f, 0.28f, -2.04f, 0.6f) - close() - moveTo(12.0f, 11.18f) - curveToRelative(-0.24f, 0.0f, -0.49f, 0.08f, -0.75f, 0.24f) - lineTo(11.25f, 19.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - verticalLineToRelative(-0.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - lineTo(6.75f, 19.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 6.0f, 0.0f) - verticalLineToRelative(-7.58f) - arcToRelative(1.47f, 1.47f, 0.0f, false, false, -0.75f, -0.24f) - close() - } - } - return _umbrella!! - } - -private var _umbrella: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/UninstallApp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/UninstallApp.kt deleted file mode 100644 index 84130c1f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/UninstallApp.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.UninstallApp: ImageVector - get() { - if (_uninstallApp != null) { - return _uninstallApp!! - } - _uninstallApp = fluentIcon(name = "Regular.UninstallApp") { - fluentPath { - moveToRelative(21.7f, 8.85f) - lineToRelative(0.08f, -0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.07f, -0.98f) - lineToRelative(-0.07f, -0.08f) - lineToRelative(-2.22f, -2.22f) - lineToRelative(2.22f, -2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.07f, -0.97f) - lineToRelative(-0.07f, -0.09f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, -0.07f) - lineToRelative(-0.08f, 0.07f) - lineToRelative(-2.22f, 2.22f) - lineToRelative(-2.22f, -2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, -0.07f) - lineToRelative(-0.08f, 0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.98f) - lineToRelative(0.07f, 0.08f) - lineToRelative(2.22f, 2.22f) - lineToRelative(-2.22f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.98f) - lineToRelative(0.07f, 0.08f) - curveToRelative(0.27f, 0.27f, 0.68f, 0.3f, 0.98f, 0.07f) - lineToRelative(0.08f, -0.07f) - lineToRelative(2.22f, -2.22f) - lineToRelative(2.22f, 2.22f) - curveToRelative(0.26f, 0.27f, 0.68f, 0.3f, 0.97f, 0.07f) - close() - moveTo(18.74f, 21.0f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(20.99f, 13.5f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-6.0f) - verticalLineToRelative(-6.0f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - lineTo(5.25f, 3.0f) - curveTo(4.01f, 3.0f, 3.0f, 4.0f, 3.0f, 5.25f) - verticalLineToRelative(13.5f) - curveTo(3.0f, 19.99f, 4.0f, 21.0f, 5.25f, 21.0f) - horizontalLineToRelative(13.5f) - close() - moveTo(11.24f, 11.25f) - lineTo(4.5f, 11.25f) - verticalLineToRelative(-6.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(5.25f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(6.0f) - close() - moveTo(18.74f, 19.5f) - horizontalLineToRelative(-6.0f) - verticalLineToRelative(-6.75f) - horizontalLineToRelative(6.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(5.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - close() - moveTo(11.24f, 19.5f) - horizontalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - verticalLineToRelative(-6.0f) - horizontalLineToRelative(6.75f) - verticalLineToRelative(6.75f) - close() - } - } - return _uninstallApp!! - } - -private var _uninstallApp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/UsbPlug.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/UsbPlug.kt deleted file mode 100644 index 7ae99105..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/UsbPlug.kt +++ /dev/null @@ -1,63 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.UsbPlug: ImageVector - get() { - if (_usbPlug != null) { - return _usbPlug!! - } - _usbPlug = fluentIcon(name = "Regular.UsbPlug") { - fluentPath { - moveTo(11.0f, 21.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(9.5f, 17.0f) - horizontalLineToRelative(-0.75f) - curveToRelative(-1.19f, 0.0f, -2.16f, -0.93f, -2.24f, -2.1f) - lineTo(6.51f, 9.25f) - curveToRelative(0.0f, -0.98f, 0.63f, -1.82f, 1.5f, -2.13f) - lineTo(8.01f, 2.75f) - curveToRelative(0.0f, -0.38f, 0.29f, -0.7f, 0.65f, -0.75f) - horizontalLineToRelative(6.6f) - curveToRelative(0.39f, 0.0f, 0.7f, 0.28f, 0.75f, 0.65f) - lineTo(16.01f, 7.13f) - curveToRelative(0.82f, 0.3f, 1.42f, 1.05f, 1.49f, 1.95f) - verticalLineToRelative(5.67f) - curveToRelative(0.0f, 1.2f, -0.92f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - horizontalLineToRelative(-0.75f) - verticalLineToRelative(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) - lineTo(13.0f, 17.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(4.25f) - close() - moveTo(15.25f, 8.5f) - horizontalLineToRelative(-6.5f) - curveToRelative(-0.38f, 0.0f, -0.69f, 0.28f, -0.74f, 0.65f) - verticalLineToRelative(5.6f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.64f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(6.5f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.65f) - verticalLineToRelative(-5.6f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.64f, -0.74f) - lineToRelative(-0.1f, -0.01f) - close() - moveTo(14.52f, 3.5f) - horizontalLineToRelative(-5.0f) - lineTo(9.52f, 7.0f) - horizontalLineToRelative(5.0f) - lineTo(14.52f, 3.5f) - close() - } - } - return _usbPlug!! - } - -private var _usbPlug: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/UsbStick.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/UsbStick.kt deleted file mode 100644 index 1b71530f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/UsbStick.kt +++ /dev/null @@ -1,55 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.UsbStick: ImageVector - get() { - if (_usbStick != null) { - return _usbStick!! - } - _usbStick = fluentIcon(name = "Regular.UsbStick") { - fluentPath { - moveTo(15.27f, 2.0f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineTo(16.01f, 7.13f) - curveToRelative(0.82f, 0.3f, 1.42f, 1.05f, 1.49f, 1.95f) - verticalLineToRelative(10.67f) - curveToRelative(0.0f, 1.2f, -0.92f, 2.17f, -2.1f, 2.24f) - lineToRelative(-0.15f, 0.01f) - horizontalLineToRelative(-6.5f) - curveToRelative(-1.19f, 0.0f, -2.16f, -0.93f, -2.24f, -2.1f) - lineTo(6.51f, 9.25f) - curveToRelative(0.0f, -0.98f, 0.63f, -1.82f, 1.5f, -2.13f) - lineTo(8.01f, 2.75f) - curveToRelative(0.0f, -0.38f, 0.29f, -0.7f, 0.65f, -0.75f) - horizontalLineToRelative(6.6f) - close() - moveTo(15.25f, 8.5f) - horizontalLineToRelative(-6.5f) - curveToRelative(-0.38f, 0.0f, -0.69f, 0.28f, -0.74f, 0.65f) - verticalLineToRelative(10.6f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.64f, 0.74f) - lineToRelative(0.1f, 0.01f) - horizontalLineToRelative(6.5f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.65f) - lineTo(16.0f, 9.25f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.64f, -0.74f) - lineToRelative(-0.1f, -0.01f) - close() - moveTo(14.52f, 3.5f) - horizontalLineToRelative(-5.0f) - lineTo(9.52f, 7.0f) - horizontalLineToRelative(5.0f) - lineTo(14.52f, 3.5f) - close() - } - } - return _usbStick!! - } - -private var _usbStick: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Vault.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Vault.kt deleted file mode 100644 index 7010dd45..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Vault.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Vault: ImageVector - get() { - if (_vault != null) { - return _vault!! - } - _vault = fluentIcon(name = "Regular.Vault") { - fluentPath { - moveTo(16.58f, 13.52f) - arcToRelative(2.99f, 2.99f, 0.0f, false, false, 0.0f, -3.04f) - lineToRelative(1.2f, -1.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) - lineToRelative(-1.2f, 1.2f) - arcToRelative(2.99f, 2.99f, 0.0f, false, false, -3.04f, 0.0f) - lineToRelative(-1.2f, -1.2f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.2f, 1.2f) - arcToRelative(2.99f, 2.99f, 0.0f, false, false, 0.0f, 3.04f) - lineToRelative(-1.2f, 1.2f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(1.2f, -1.2f) - arcToRelative(2.99f, 2.99f, 0.0f, false, false, 3.04f, 0.0f) - lineToRelative(1.2f, 1.2f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-1.2f, -1.2f) - close() - moveTo(14.0f, 13.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) - close() - moveTo(6.5f, 7.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-8.5f) - close() - moveTo(2.0f, 7.75f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 5.75f, 4.0f) - horizontalLineToRelative(12.5f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 22.0f, 7.75f) - verticalLineToRelative(8.5f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 18.25f, 20.0f) - lineTo(5.75f, 20.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 2.0f, 16.25f) - verticalLineToRelative(-8.5f) - close() - moveTo(5.75f, 5.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(12.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - lineTo(5.75f, 5.5f) - close() - } - } - return _vault!! - } - -private var _vault: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleBicycle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleBicycle.kt deleted file mode 100644 index 3b46aa41..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleBicycle.kt +++ /dev/null @@ -1,65 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VehicleBicycle: ImageVector - get() { - if (_vehicleBicycle != null) { - return _vehicleBicycle!! - } - _vehicleBicycle = fluentIcon(name = "Regular.VehicleBicycle") { - fluentPath { - moveTo(12.75f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.43f) - lineToRelative(0.95f, 3.5f) - lineTo(8.5f, 8.0f) - lineTo(8.5f, 5.75f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 7.75f, 5.0f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(7.0f, 6.5f) - verticalLineToRelative(2.19f) - lineToRelative(-0.3f, 1.81f) - arcToRelative(4.25f, 4.25f, 0.0f, true, false, 4.3f, 4.06f) - lineToRelative(4.65f, -4.65f) - lineToRelative(0.28f, 1.0f) - arcToRelative(4.25f, 4.25f, 0.0f, true, false, 1.44f, -0.4f) - lineToRelative(-1.9f, -6.96f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.72f, -0.55f) - horizontalLineToRelative(-2.0f) - close() - moveTo(16.33f, 12.4f) - lineTo(17.03f, 14.95f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.44f, -0.4f) - lineToRelative(-0.7f, -2.55f) - arcToRelative(2.75f, 2.75f, 0.0f, true, true, -1.44f, 0.4f) - close() - moveTo(10.56f, 12.87f) - arcToRelative(4.26f, 4.26f, 0.0f, false, false, -2.38f, -2.12f) - lineToRelative(0.2f, -1.25f) - horizontalLineToRelative(5.56f) - lineToRelative(-3.38f, 3.37f) - close() - moveTo(7.92f, 12.27f) - curveToRelative(0.72f, 0.33f, 1.26f, 0.96f, 1.48f, 1.73f) - lineTo(7.64f, 14.0f) - lineToRelative(0.28f, -1.74f) - close() - moveTo(6.45f, 12.02f) - lineTo(6.0f, 14.62f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.74f, 0.88f) - lineTo(9.4f, 15.5f) - arcToRelative(2.75f, 2.75f, 0.0f, true, true, -2.95f, -3.48f) - close() - } - } - return _vehicleBicycle!! - } - -private var _vehicleBicycle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleBus.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleBus.kt deleted file mode 100644 index aaf6b54b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleBus.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VehicleBus: ImageVector - get() { - if (_vehicleBus != null) { - return _vehicleBus!! - } - _vehicleBus = fluentIcon(name = "Regular.VehicleBus") { - fluentPath { - moveTo(8.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(17.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(10.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.5f) - close() - moveTo(7.75f, 2.0f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 4.0f, 5.75f) - lineTo(4.0f, 9.5f) - lineTo(2.75f, 9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - lineTo(4.0f, 11.0f) - verticalLineToRelative(8.75f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(1.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(9.0f, 18.5f) - horizontalLineToRelative(6.0f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(1.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(20.0f, 11.0f) - horizontalLineToRelative(1.23f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - lineTo(20.0f, 9.5f) - lineTo(20.0f, 5.75f) - arcTo(3.75f, 3.75f, 0.0f, false, false, 16.25f, 2.0f) - horizontalLineToRelative(-8.5f) - close() - moveTo(18.5f, 18.5f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - lineTo(16.5f, 18.5f) - horizontalLineToRelative(2.0f) - close() - moveTo(18.5f, 17.0f) - horizontalLineToRelative(-13.0f) - verticalLineToRelative(-4.0f) - horizontalLineToRelative(13.0f) - verticalLineToRelative(4.0f) - close() - moveTo(5.5f, 19.75f) - lineTo(5.5f, 18.5f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - close() - moveTo(5.5f, 5.75f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(8.5f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(5.75f) - horizontalLineToRelative(-13.0f) - lineTo(5.5f, 5.75f) - close() - } - } - return _vehicleBus!! - } - -private var _vehicleBus: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleCab.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleCab.kt deleted file mode 100644 index 89dd80c5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleCab.kt +++ /dev/null @@ -1,111 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VehicleCab: ImageVector - get() { - if (_vehicleCab != null) { - return _vehicleCab!! - } - _vehicleCab = fluentIcon(name = "Regular.VehicleCab") { - fluentPath { - moveTo(8.0f, 13.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(17.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(9.48f, 14.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-3.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(9.27f, 1.99f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(8.52f, 4.5f) - horizontalLineToRelative(-0.67f) - curveToRelative(-1.43f, 0.0f, -2.69f, 0.93f, -3.1f, 2.3f) - lineToRelative(-0.07f, 0.2f) - horizontalLineToRelative(-0.93f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.53f) - lineToRelative(-0.2f, 0.83f) - curveToRelative(-0.65f, 0.4f, -1.08f, 1.1f, -1.08f, 1.92f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(1.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(8.0f, 18.5f) - horizontalLineToRelative(8.0f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(1.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.82f, -0.43f, -1.53f, -1.08f, -1.92f) - lineToRelative(-0.2f, -0.83f) - horizontalLineToRelative(0.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.94f) - lineToRelative(-0.06f, -0.18f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.11f, -2.32f) - horizontalLineToRelative(-0.64f) - lineTo(15.5f, 2.74f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(9.27f, 1.99f) - close() - moveTo(14.0f, 4.5f) - horizontalLineToRelative(-3.98f) - verticalLineToRelative(-1.0f) - lineTo(14.0f, 3.5f) - verticalLineToRelative(1.0f) - close() - moveTo(7.85f, 6.0f) - horizontalLineToRelative(8.29f) - curveToRelative(0.77f, 0.0f, 1.45f, 0.5f, 1.68f, 1.25f) - lineToRelative(0.2f, 0.7f) - lineTo(18.3f, 9.0f) - lineTo(5.7f, 9.0f) - lineToRelative(0.25f, -1.05f) - lineToRelative(0.22f, -0.71f) - curveTo(6.4f, 6.5f, 7.08f, 6.0f, 7.85f, 6.0f) - close() - moveTo(4.5f, 17.0f) - verticalLineToRelative(-5.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(19.5f, 17.0f) - horizontalLineToRelative(-15.0f) - close() - moveTo(4.5f, 19.75f) - lineTo(4.5f, 18.5f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - close() - moveTo(19.5f, 18.5f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) - lineTo(17.5f, 18.5f) - horizontalLineToRelative(2.0f) - close() - } - } - return _vehicleCab!! - } - -private var _vehicleCab: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleCar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleCar.kt deleted file mode 100644 index 4457d318..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleCar.kt +++ /dev/null @@ -1,104 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VehicleCar: ImageVector - get() { - if (_vehicleCar != null) { - return _vehicleCar!! - } - _vehicleCar = fluentIcon(name = "Regular.VehicleCar") { - fluentPath { - moveTo(15.8f, 3.0f) - curveToRelative(1.49f, 0.0f, 2.79f, 1.01f, 3.15f, 2.46f) - lineTo(19.34f, 7.0f) - horizontalLineToRelative(0.91f) - curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) - lineToRelative(0.01f, 0.1f) - curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) - lineToRelative(-0.1f, 0.01f) - horizontalLineToRelative(-0.54f) - lineToRelative(0.21f, 0.83f) - curveToRelative(0.65f, 0.4f, 1.08f, 1.1f, 1.08f, 1.92f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.96f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-1.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.79f, -1.75f, -1.75f) - lineTo(16.0f, 18.5f) - lineTo(8.0f, 18.5f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.96f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-1.5f) - curveTo(3.78f, 21.5f, 3.0f, 20.7f, 3.0f, 19.75f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.81f, 0.43f, -1.53f, 1.08f, -1.92f) - lineToRelative(0.2f, -0.83f) - horizontalLineToRelative(-0.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineTo(3.0f, 7.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(0.91f) - lineToRelative(0.39f, -1.54f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 8.2f, 3.0f) - horizontalLineToRelative(7.6f) - close() - moveTo(6.5f, 18.5f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.13f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(1.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.12f, 0.25f, -0.25f) - lineTo(6.5f, 18.5f) - close() - moveTo(19.5f, 18.5f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.13f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(1.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.12f, 0.25f, -0.25f) - lineTo(19.5f, 18.5f) - close() - moveTo(18.75f, 10.5f) - lineTo(5.25f, 10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(4.5f, 17.0f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(-5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(10.25f, 14.0f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(3.6f) - horizontalLineToRelative(-3.5f) - close() - moveTo(17.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(7.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(15.8f, 4.5f) - lineTo(8.2f, 4.5f) - curveToRelative(-0.8f, 0.0f, -1.5f, 0.55f, -1.7f, 1.33f) - lineTo(5.71f, 9.0f) - lineTo(18.3f, 9.0f) - lineToRelative(-0.8f, -3.18f) - curveToRelative(-0.19f, -0.77f, -0.89f, -1.32f, -1.7f, -1.32f) - close() - } - } - return _vehicleCar!! - } - -private var _vehicleCar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleCarCollision.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleCarCollision.kt deleted file mode 100644 index 99b9b255..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleCarCollision.kt +++ /dev/null @@ -1,97 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VehicleCarCollision: ImageVector - get() { - if (_vehicleCarCollision != null) { - return _vehicleCarCollision!! - } - _vehicleCarCollision = fluentIcon(name = "Regular.VehicleCarCollision") { - fluentPath { - moveTo(11.5f, 2.04f) - curveToRelative(0.31f, -0.1f, 0.65f, 0.0f, 0.84f, 0.25f) - lineTo(14.42f, 5.0f) - lineToRelative(2.92f, -1.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.12f, 0.87f) - lineTo(17.3f, 7.5f) - horizontalLineToRelative(3.96f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.53f, 1.28f) - lineToRelative(-2.05f, 2.05f) - lineToRelative(2.13f, 2.98f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.61f, 1.19f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(1.54f) - lineToRelative(-1.65f, -2.31f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.08f, -0.97f) - lineTo(19.44f, 9.0f) - horizontalLineToRelative(-3.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.71f, -0.99f) - lineToRelative(0.83f, -2.48f) - lineToRelative(-1.71f, 1.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.0f, -0.17f) - lineToRelative(-1.16f, -1.5f) - verticalLineToRelative(2.29f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-4.5f) - curveToRelative(0.0f, -0.32f, 0.2f, -0.6f, 0.5f, -0.71f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(7.0f, 16.5f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(15.14f, 13.75f) - horizontalLineToRelative(0.11f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.6f) - lineToRelative(-0.39f, -1.55f) - curveToRelative(-0.25f, -1.0f, -1.15f, -1.7f, -2.18f, -1.7f) - lineTo(5.99f, 9.0f) - curveToRelative(-1.08f, 0.0f, -2.0f, 0.77f, -2.2f, 1.84f) - lineToRelative(-0.27f, 1.41f) - horizontalLineToRelative(-0.77f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.11f) - curveToRelative(-0.53f, 0.5f, -0.86f, 1.21f, -0.86f, 2.0f) - verticalLineToRelative(4.75f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 3.0f, 0.0f) - lineTo(5.0f, 20.0f) - horizontalLineToRelative(8.0f) - verticalLineToRelative(0.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 3.0f, 0.0f) - verticalLineToRelative(-4.75f) - curveToRelative(0.0f, -0.79f, -0.33f, -1.5f, -0.86f, -2.0f) - close() - moveTo(5.99f, 10.5f) - horizontalLineToRelative(6.09f) - curveToRelative(0.34f, 0.0f, 0.64f, 0.23f, 0.73f, 0.57f) - lineToRelative(0.45f, 1.81f) - lineToRelative(-0.01f, 0.12f) - lineTo(4.9f, 13.0f) - lineToRelative(0.36f, -1.89f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.73f, -0.61f) - close() - moveTo(14.5f, 18.5f) - horizontalLineToRelative(-11.0f) - verticalLineToRelative(-2.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(8.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(2.75f) - close() - } - } - return _vehicleCarCollision!! - } - -private var _vehicleCarCollision: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleCarParking.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleCarParking.kt deleted file mode 100644 index 95ffdbd6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleCarParking.kt +++ /dev/null @@ -1,99 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VehicleCarParking: ImageVector - get() { - if (_vehicleCarParking != null) { - return _vehicleCarParking!! - } - _vehicleCarParking = fluentIcon(name = "Regular.VehicleCarParking") { - fluentPath { - moveTo(17.25f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - lineTo(22.0f, 1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(14.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(19.5f, 8.0f) - horizontalLineToRelative(-1.25f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) - lineTo(17.25f, 2.0f) - close() - moveTo(15.8f, 3.0f) - lineToRelative(0.45f, 0.03f) - verticalLineToRelative(1.53f) - curveToRelative(-0.14f, -0.04f, -0.3f, -0.06f, -0.45f, -0.06f) - lineTo(8.2f, 4.5f) - curveToRelative(-0.8f, 0.0f, -1.5f, 0.55f, -1.7f, 1.33f) - lineTo(5.71f, 9.0f) - lineTo(18.5f, 9.0f) - verticalLineToRelative(1.5f) - lineTo(5.25f, 10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(4.5f, 17.0f) - horizontalLineToRelative(14.0f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(-1.0f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.13f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(0.75f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(-0.75f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.79f, -1.75f, -1.75f) - lineTo(16.0f, 18.5f) - lineTo(8.0f, 18.5f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.96f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-1.5f) - curveTo(3.78f, 21.5f, 3.0f, 20.7f, 3.0f, 19.75f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.81f, 0.43f, -1.53f, 1.08f, -1.92f) - lineToRelative(0.2f, -0.83f) - horizontalLineToRelative(-0.53f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineTo(3.0f, 7.75f) - curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) - lineToRelative(0.1f, -0.01f) - horizontalLineToRelative(0.91f) - lineToRelative(0.39f, -1.54f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 8.2f, 3.0f) - horizontalLineToRelative(7.6f) - close() - moveTo(6.5f, 18.5f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(1.25f) - curveToRelative(0.0f, 0.13f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(1.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.12f, 0.25f, -0.25f) - lineTo(6.5f, 18.5f) - close() - moveTo(10.25f, 14.0f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-3.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(17.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(7.0f, 12.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - } - } - return _vehicleCarParking!! - } - -private var _vehicleCarParking: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleCarProfileLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleCarProfileLtr.kt deleted file mode 100644 index 91658479..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleCarProfileLtr.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VehicleCarProfileLtr: ImageVector - get() { - if (_vehicleCarProfileLtr != null) { - return _vehicleCarProfileLtr!! - } - _vehicleCarProfileLtr = fluentIcon(name = "Regular.VehicleCarProfileLtr") { - fluentPath { - moveTo(5.37f, 6.03f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 8.03f, 4.0f) - horizontalLineToRelative(4.83f) - curveToRelative(0.97f, 0.0f, 1.87f, 0.51f, 2.37f, 1.35f) - lineToRelative(2.5f, 4.25f) - lineToRelative(2.19f, 0.54f) - curveToRelative(1.22f, 0.31f, 2.08f, 1.41f, 2.08f, 2.67f) - verticalLineToRelative(1.69f) - curveToRelative(0.0f, 1.1f, -0.65f, 2.05f, -1.59f, 2.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.25f, 0.25f) - lineTo(9.34f, 17.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.32f, -0.61f) - arcTo(2.74f, 2.74f, 0.0f, false, true, 2.0f, 14.5f) - verticalLineToRelative(-2.25f) - curveToRelative(0.0f, -1.4f, 1.06f, -2.57f, 2.42f, -2.73f) - lineToRelative(0.95f, -3.5f) - close() - moveTo(14.04f, 15.75f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 6.27f, -0.6f) - curveToRelative(0.12f, -0.18f, 0.19f, -0.4f, 0.19f, -0.65f) - verticalLineToRelative(-1.69f) - curveToRelative(0.0f, -0.57f, -0.39f, -1.07f, -0.95f, -1.21f) - lineToRelative(-2.4f, -0.6f) - lineTo(4.76f, 11.0f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(2.27f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 5.96f, 1.23f) - horizontalLineToRelative(4.58f) - close() - moveTo(11.0f, 9.5f) - horizontalLineToRelative(4.93f) - lineToRelative(-2.0f, -3.39f) - arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.07f, -0.61f) - lineTo(11.0f, 5.5f) - verticalLineToRelative(4.0f) - close() - moveTo(9.5f, 5.5f) - lineTo(8.03f, 5.5f) - curveToRelative(-0.57f, 0.0f, -1.06f, 0.38f, -1.2f, 0.92f) - lineTo(5.97f, 9.5f) - lineTo(9.5f, 9.5f) - verticalLineToRelative(-4.0f) - close() - moveTo(6.25f, 14.5f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, 3.5f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, -3.5f) - close() - moveTo(15.5f, 16.25f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, 3.5f, 0.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -3.5f, 0.0f) - close() - } - } - return _vehicleCarProfileLtr!! - } - -private var _vehicleCarProfileLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleCarProfileLtrClock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleCarProfileLtrClock.kt deleted file mode 100644 index 4abfc2b1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleCarProfileLtrClock.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VehicleCarProfileLtrClock: ImageVector - get() { - if (_vehicleCarProfileLtrClock != null) { - return _vehicleCarProfileLtrClock!! - } - _vehicleCarProfileLtrClock = fluentIcon(name = "Regular.VehicleCarProfileLtrClock") { - fluentPath { - moveTo(6.5f, 1.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(8.5f, 6.5f) - horizontalLineToRelative(-2.0f) - lineTo(6.5f, 4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - close() - moveTo(6.5f, 13.0f) - arcTo(6.5f, 6.5f, 0.0f, false, false, 12.0f, 9.97f) - lineTo(12.0f, 12.0f) - horizontalLineToRelative(4.93f) - lineToRelative(-2.0f, -3.39f) - arcTo(1.25f, 1.25f, 0.0f, false, false, 13.86f, 8.0f) - horizontalLineToRelative(-1.03f) - curveToRelative(0.11f, -0.48f, 0.17f, -0.98f, 0.17f, -1.5f) - horizontalLineToRelative(0.86f) - curveToRelative(0.97f, 0.0f, 1.87f, 0.51f, 2.37f, 1.35f) - lineToRelative(2.5f, 4.25f) - lineToRelative(2.19f, 0.54f) - curveToRelative(1.22f, 0.31f, 2.08f, 1.41f, 2.08f, 2.67f) - lineTo(23.0f, 17.0f) - curveToRelative(0.0f, 1.1f, -0.65f, 2.05f, -1.59f, 2.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.25f, 0.25f) - horizontalLineToRelative(-4.82f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.32f, -0.61f) - arcTo(2.74f, 2.74f, 0.0f, false, true, 3.0f, 17.0f) - verticalLineToRelative(-2.25f) - curveToRelative(0.0f, -0.9f, 0.43f, -1.7f, 1.1f, -2.2f) - curveToRelative(0.75f, 0.29f, 1.55f, 0.45f, 2.4f, 0.45f) - close() - moveTo(15.04f, 18.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 6.27f, -0.6f) - curveToRelative(0.12f, -0.18f, 0.19f, -0.4f, 0.19f, -0.65f) - verticalLineToRelative(-1.69f) - curveToRelative(0.0f, -0.57f, -0.39f, -1.07f, -0.95f, -1.21f) - lineToRelative(-2.4f, -0.6f) - lineTo(5.76f, 13.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(2.27f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 5.96f, 1.23f) - horizontalLineToRelative(4.58f) - close() - moveTo(7.25f, 17.0f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, 3.5f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, -3.5f) - close() - moveTo(16.5f, 18.75f) - arcToRelative(1.75f, 1.75f, 0.0f, true, false, 3.5f, 0.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -3.5f, 0.0f) - close() - } - } - return _vehicleCarProfileLtrClock!! - } - -private var _vehicleCarProfileLtrClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleCarProfileRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleCarProfileRtl.kt deleted file mode 100644 index 21130bb6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleCarProfileRtl.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VehicleCarProfileRtl: ImageVector - get() { - if (_vehicleCarProfileRtl != null) { - return _vehicleCarProfileRtl!! - } - _vehicleCarProfileRtl = fluentIcon(name = "Regular.VehicleCarProfileRtl") { - fluentPath { - moveTo(18.63f, 6.03f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 15.97f, 4.0f) - horizontalLineToRelative(-4.83f) - curveToRelative(-0.97f, 0.0f, -1.87f, 0.51f, -2.37f, 1.35f) - lineTo(6.27f, 9.6f) - lineToRelative(-2.19f, 0.54f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 12.81f) - verticalLineToRelative(1.69f) - curveToRelative(0.0f, 1.1f, 0.65f, 2.05f, 1.59f, 2.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 6.25f, 0.25f) - horizontalLineToRelative(4.82f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 6.32f, -0.61f) - arcTo(2.74f, 2.74f, 0.0f, false, false, 22.0f, 14.5f) - verticalLineToRelative(-2.25f) - curveToRelative(0.0f, -1.4f, -1.06f, -2.57f, -2.42f, -2.73f) - lineToRelative(-0.95f, -3.5f) - close() - moveTo(9.96f, 15.75f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -6.27f, -0.6f) - curveToRelative(-0.12f, -0.18f, -0.19f, -0.4f, -0.19f, -0.65f) - verticalLineToRelative(-1.69f) - curveToRelative(0.0f, -0.57f, 0.39f, -1.07f, 0.95f, -1.21f) - lineToRelative(2.4f, -0.6f) - horizontalLineToRelative(12.4f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(2.27f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -5.96f, 1.23f) - lineTo(9.96f, 15.75f) - close() - moveTo(13.0f, 9.5f) - lineTo(8.07f, 9.5f) - lineToRelative(2.0f, -3.39f) - curveToRelative(0.22f, -0.38f, 0.63f, -0.61f, 1.07f, -0.61f) - lineTo(13.0f, 5.5f) - verticalLineToRelative(4.0f) - close() - moveTo(14.5f, 5.5f) - horizontalLineToRelative(1.47f) - curveToRelative(0.57f, 0.0f, 1.06f, 0.38f, 1.2f, 0.92f) - lineToRelative(0.85f, 3.08f) - lineTo(14.5f, 9.5f) - verticalLineToRelative(-4.0f) - close() - moveTo(17.75f, 14.5f) - arcToRelative(1.75f, 1.75f, 0.0f, true, true, 0.0f, 3.5f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.0f, -3.5f) - close() - moveTo(8.5f, 16.25f) - arcToRelative(1.75f, 1.75f, 0.0f, true, true, -3.5f, 0.0f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 3.5f, 0.0f) - close() - } - } - return _vehicleCarProfileRtl!! - } - -private var _vehicleCarProfileRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleShip.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleShip.kt deleted file mode 100644 index abd1cfba..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleShip.kt +++ /dev/null @@ -1,98 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VehicleShip: ImageVector - get() { - if (_vehicleShip != null) { - return _vehicleShip!! - } - _vehicleShip = fluentIcon(name = "Regular.VehicleShip") { - fluentPath { - moveTo(8.75f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(8.0f, 5.0f) - lineTo(5.75f, 5.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.76f) - lineToRelative(-1.46f, 0.54f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.42f, 1.02f) - lineToRelative(2.33f, 5.02f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 1.93f, 0.58f) - lineToRelative(-2.56f, -5.5f) - lineToRelative(6.59f, -2.4f) - curveToRelative(0.38f, -0.15f, 0.8f, -0.15f, 1.19f, -0.01f) - lineToRelative(6.77f, 2.42f) - lineToRelative(-2.62f, 5.34f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 1.87f, -0.4f) - lineToRelative(2.47f, -5.04f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.42f, -1.03f) - lineToRelative(-1.67f, -0.6f) - verticalLineToRelative(-4.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(16.0f, 5.0f) - lineTo(16.0f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-6.5f) - close() - moveTo(14.5f, 5.0f) - horizontalLineToRelative(-5.0f) - lineTo(9.5f, 3.5f) - horizontalLineToRelative(5.0f) - lineTo(14.5f, 5.0f) - close() - moveTo(17.5f, 6.5f) - verticalLineToRelative(3.42f) - lineToRelative(-4.4f, -1.57f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, -2.2f, 0.0f) - lineTo(6.5f, 9.98f) - lineTo(6.5f, 6.5f) - horizontalLineToRelative(11.0f) - close() - moveTo(18.73f, 18.56f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.45f, -0.03f) - verticalLineToRelative(0.01f) - arcToRelative(2.16f, 2.16f, 0.0f, false, true, -0.12f, 0.3f) - curveToRelative(-0.09f, 0.2f, -0.22f, 0.45f, -0.42f, 0.71f) - curveToRelative(-0.38f, 0.52f, -0.94f, 0.95f, -1.74f, 0.95f) - reflectiveCurveToRelative(-1.36f, -0.44f, -1.74f, -0.95f) - arcToRelative(3.85f, 3.85f, 0.0f, false, true, -0.54f, -1.0f) - verticalLineToRelative(-0.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.44f, 0.0f) - verticalLineToRelative(0.01f) - lineToRelative(-0.02f, 0.06f) - arcToRelative(3.36f, 3.36f, 0.0f, false, true, -0.52f, 0.95f) - curveToRelative(-0.38f, 0.51f, -0.93f, 0.95f, -1.74f, 0.95f) - curveToRelative(-0.8f, 0.0f, -1.36f, -0.44f, -1.74f, -0.95f) - arcToRelative(3.83f, 3.83f, 0.0f, false, true, -0.54f, -1.0f) - verticalLineToRelative(-0.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.44f, 0.02f) - verticalLineToRelative(0.01f) - arcToRelative(1.62f, 1.62f, 0.0f, false, true, -0.11f, 0.28f) - curveToRelative(-0.09f, 0.2f, -0.22f, 0.45f, -0.42f, 0.7f) - curveToRelative(-0.38f, 0.49f, -1.0f, 0.96f, -2.0f, 0.96f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - arcTo(3.92f, 3.92f, 0.0f, false, false, 6.0f, 20.37f) - lineToRelative(0.06f, 0.08f) - curveTo(6.6f, 21.19f, 7.56f, 22.0f, 9.0f, 22.0f) - arcToRelative(3.63f, 3.63f, 0.0f, false, false, 3.0f, -1.63f) - lineToRelative(0.06f, 0.08f) - curveTo(12.6f, 21.2f, 13.56f, 22.0f, 15.0f, 22.0f) - arcToRelative(3.63f, 3.63f, 0.0f, false, false, 3.0f, -1.62f) - lineToRelative(0.06f, 0.08f) - curveToRelative(0.6f, 0.76f, 1.61f, 1.54f, 3.19f, 1.54f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - arcToRelative(2.42f, 2.42f, 0.0f, false, true, -2.0f, -0.96f) - arcToRelative(3.27f, 3.27f, 0.0f, false, true, -0.52f, -0.98f) - close() - } - } - return _vehicleShip!! - } - -private var _vehicleShip: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleSubway.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleSubway.kt deleted file mode 100644 index ea31b5c1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleSubway.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VehicleSubway: ImageVector - get() { - if (_vehicleSubway != null) { - return _vehicleSubway!! - } - _vehicleSubway = fluentIcon(name = "Regular.VehicleSubway") { - fluentPath { - moveTo(16.25f, 3.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 20.0f, 6.75f) - verticalLineToRelative(9.0f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -2.89f, 3.65f) - lineToRelative(2.46f, 1.17f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.55f, 1.4f) - lineToRelative(-0.1f, -0.04f) - lineToRelative(-5.09f, -2.43f) - horizontalLineToRelative(-3.66f) - lineToRelative(-5.1f, 2.43f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.64f, -1.36f) - lineToRelative(2.46f, -1.17f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 4.0f, 15.75f) - verticalLineToRelative(-9.0f) - arcTo(3.75f, 3.75f, 0.0f, false, true, 7.75f, 3.0f) - horizontalLineToRelative(8.5f) - close() - moveTo(18.5f, 14.0f) - horizontalLineToRelative(-13.0f) - verticalLineToRelative(1.75f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(8.5f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - lineTo(18.5f, 14.0f) - close() - moveTo(8.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(16.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(16.25f, 4.5f) - horizontalLineToRelative(-8.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) - verticalLineToRelative(5.75f) - horizontalLineToRelative(13.0f) - lineTo(18.5f, 6.75f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - close() - moveTo(13.25f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.5f) - close() - } - } - return _vehicleSubway!! - } - -private var _vehicleSubway: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleTruck.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleTruck.kt deleted file mode 100644 index 986281a7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleTruck.kt +++ /dev/null @@ -1,106 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VehicleTruck: ImageVector - get() { - if (_vehicleTruck != null) { - return _vehicleTruck!! - } - _vehicleTruck = fluentIcon(name = "Regular.VehicleTruck") { - fluentPath { - moveTo(9.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(16.0f, 14.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(10.75f, 15.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.5f) - close() - moveTo(3.0f, 5.25f) - curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(13.5f) - curveTo(19.99f, 3.0f, 21.0f, 4.0f, 21.0f, 5.25f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - lineTo(18.5f, 19.5f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-1.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(-3.0f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-1.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-0.75f) - lineTo(3.75f, 19.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(3.0f, 5.25f) - close() - moveTo(9.0f, 20.25f) - verticalLineToRelative(-0.75f) - lineTo(7.0f, 19.5f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(1.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - close() - moveTo(7.0f, 18.0f) - horizontalLineToRelative(10.0f) - verticalLineToRelative(-6.0f) - lineTo(7.0f, 12.0f) - verticalLineToRelative(6.0f) - close() - moveTo(15.0f, 19.5f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(1.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-0.75f) - horizontalLineToRelative(-2.0f) - close() - moveTo(19.5f, 18.0f) - lineTo(19.5f, 5.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(5.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - lineTo(4.5f, 18.0f) - horizontalLineToRelative(1.0f) - verticalLineToRelative(-6.75f) - curveToRelative(0.0f, -0.05f, 0.0f, -0.1f, 0.02f, -0.16f) - lineToRelative(0.74f, -3.33f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 8.46f, 6.0f) - horizontalLineToRelative(7.09f) - curveToRelative(1.05f, 0.0f, 1.96f, 0.73f, 2.2f, 1.76f) - lineToRelative(0.73f, 3.33f) - lineToRelative(0.02f, 0.16f) - lineTo(18.5f, 18.0f) - horizontalLineToRelative(1.0f) - close() - moveTo(8.45f, 7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.73f, 0.59f) - lineToRelative(-0.54f, 2.41f) - horizontalLineToRelative(9.64f) - lineToRelative(-0.54f, -2.41f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.73f, -0.59f) - horizontalLineToRelative(-7.1f) - close() - } - } - return _vehicleTruck!! - } - -private var _vehicleTruck: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleTruckBag.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleTruckBag.kt deleted file mode 100644 index b74dc376..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleTruckBag.kt +++ /dev/null @@ -1,110 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VehicleTruckBag: ImageVector - get() { - if (_vehicleTruckBag != null) { - return _vehicleTruckBag!! - } - _vehicleTruckBag = fluentIcon(name = "Regular.VehicleTruckBag") { - fluentPath { - moveTo(1.75f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(6.0f) - curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) - horizontalLineToRelative(5.0f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(9.5f, 4.5f) - verticalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -3.75f, -2.17f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 2.0f, 3.5f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-0.25f) - close() - moveTo(7.0f, 4.5f) - verticalLineToRelative(-1.0f) - curveToRelative(0.0f, -0.35f, -0.07f, -0.68f, -0.2f, -0.98f) - arcTo(1.0f, 1.0f, 0.0f, false, true, 8.0f, 3.5f) - verticalLineToRelative(1.0f) - lineTo(7.0f, 4.5f) - close() - moveTo(5.5f, 3.5f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(2.0f, 17.25f) - verticalLineToRelative(-3.0f) - curveToRelative(0.38f, 0.16f, 0.8f, 0.25f, 1.25f, 0.25f) - horizontalLineToRelative(0.25f) - verticalLineToRelative(2.75f) - curveToRelative(0.0f, 0.39f, 0.3f, 0.7f, 0.67f, 0.75f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 5.66f, 0.0f) - horizontalLineToRelative(2.34f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 15.0f, 16.0f) - lineTo(15.0f, 5.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.92f) - arcToRelative(1.76f, 1.76f, 0.0f, false, false, -0.83f, -0.83f) - lineTo(10.5f, 3.5f) - curveToRelative(0.0f, -0.17f, -0.01f, -0.34f, -0.04f, -0.5f) - horizontalLineToRelative(3.79f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - lineTo(16.5f, 6.0f) - horizontalLineToRelative(1.55f) - curveToRelative(0.87f, 0.0f, 1.66f, 0.5f, 2.03f, 1.29f) - lineToRelative(1.7f, 3.58f) - curveToRelative(0.15f, 0.3f, 0.22f, 0.63f, 0.22f, 0.97f) - verticalLineToRelative(5.41f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-1.8f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -5.9f, 0.0f) - horizontalLineToRelative(-2.1f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -5.91f, -0.01f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 2.0f, 17.25f) - close() - moveTo(17.83f, 18.0f) - horizontalLineToRelative(1.92f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(20.5f, 17.0f) - horizontalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(1.25f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(3.9f) - curveToRelative(0.61f, 0.36f, 1.09f, 0.92f, 1.33f, 1.6f) - close() - moveTo(16.5f, 7.5f) - lineTo(16.5f, 11.0f) - horizontalLineToRelative(3.68f) - lineToRelative(-1.45f, -3.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.68f, -0.43f) - lineTo(16.5f, 7.5f) - close() - moveTo(7.0f, 20.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - close() - moveTo(16.5f, 19.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) - close() - moveTo(3.5f, 3.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, -0.4f) - close() - } - } - return _vehicleTruckBag!! - } - -private var _vehicleTruckBag: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleTruckCube.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleTruckCube.kt deleted file mode 100644 index 38102138..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleTruckCube.kt +++ /dev/null @@ -1,103 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VehicleTruckCube: ImageVector - get() { - if (_vehicleTruckCube != null) { - return _vehicleTruckCube!! - } - _vehicleTruckCube = fluentIcon(name = "Regular.VehicleTruckCube") { - fluentPath { - moveTo(1.0f, 8.57f) - lineTo(1.0f, 4.43f) - curveToRelative(0.0f, -0.57f, 0.32f, -1.09f, 0.83f, -1.34f) - lineToRelative(3.5f, -1.75f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 1.34f, 0.0f) - lineToRelative(3.5f, 1.75f) - curveToRelative(0.5f, 0.25f, 0.83f, 0.77f, 0.83f, 1.34f) - verticalLineToRelative(4.14f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -0.83f, 1.35f) - lineToRelative(-3.5f, 1.75f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.34f, 0.0f) - lineToRelative(-3.5f, -1.75f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 1.0f, 8.57f) - close() - moveTo(2.55f, 4.53f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.23f, 0.67f) - lineTo(5.5f, 6.56f) - lineTo(5.5f, 9.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) - lineTo(6.5f, 6.56f) - lineTo(9.22f, 5.2f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.44f, -0.9f) - lineTo(6.0f, 5.7f) - lineTo(3.22f, 4.3f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.67f, 0.23f) - close() - moveTo(3.5f, 11.87f) - verticalLineToRelative(5.38f) - curveToRelative(0.0f, 0.39f, 0.3f, 0.7f, 0.67f, 0.75f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 5.66f, 0.0f) - horizontalLineToRelative(2.34f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 15.0f, 16.0f) - lineTo(15.0f, 5.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(12.0f, 4.5f) - verticalLineToRelative(-0.07f) - arcTo(2.5f, 2.5f, 0.0f, false, false, 11.55f, 3.0f) - horizontalLineToRelative(2.7f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - lineTo(16.5f, 6.0f) - horizontalLineToRelative(1.55f) - curveToRelative(0.87f, 0.0f, 1.66f, 0.5f, 2.03f, 1.29f) - lineToRelative(1.7f, 3.58f) - curveToRelative(0.15f, 0.3f, 0.22f, 0.63f, 0.22f, 0.97f) - verticalLineToRelative(5.41f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-1.8f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -5.9f, 0.0f) - horizontalLineToRelative(-2.1f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -5.91f, 0.0f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 2.0f, 17.24f) - verticalLineToRelative(-6.13f) - lineToRelative(1.5f, 0.75f) - close() - moveTo(16.5f, 16.4f) - curveToRelative(0.61f, 0.36f, 1.09f, 0.92f, 1.33f, 1.6f) - horizontalLineToRelative(1.92f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(20.5f, 17.0f) - horizontalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - horizontalLineToRelative(1.25f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(3.9f) - close() - moveTo(18.05f, 7.5f) - lineTo(16.5f, 7.5f) - lineTo(16.5f, 11.0f) - horizontalLineToRelative(3.68f) - lineToRelative(-1.45f, -3.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.68f, -0.43f) - close() - moveTo(5.5f, 19.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) - close() - moveTo(15.0f, 20.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - close() - } - } - return _vehicleTruckCube!! - } - -private var _vehicleTruckCube: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleTruckProfile.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleTruckProfile.kt deleted file mode 100644 index 7ec8bbb1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VehicleTruckProfile.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VehicleTruckProfile: ImageVector - get() { - if (_vehicleTruckProfile != null) { - return _vehicleTruckProfile!! - } - _vehicleTruckProfile = fluentIcon(name = "Regular.VehicleTruckProfile") { - fluentPath { - moveTo(4.25f, 3.0f) - curveTo(3.01f, 3.0f, 2.0f, 4.0f, 2.0f, 5.25f) - verticalLineToRelative(12.0f) - curveToRelative(0.0f, 1.17f, 0.9f, 2.13f, 2.04f, 2.24f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 5.92f, 0.01f) - horizontalLineToRelative(2.08f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 5.92f, 0.0f) - horizontalLineToRelative(1.79f) - curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) - verticalLineToRelative(-5.41f) - curveToRelative(0.0f, -0.34f, -0.07f, -0.66f, -0.22f, -0.97f) - lineToRelative(-1.7f, -3.58f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 18.05f, 6.0f) - lineTo(16.5f, 6.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) - horizontalLineToRelative(-10.0f) - close() - moveTo(17.83f, 18.0f) - arcToRelative(3.01f, 3.01f, 0.0f, false, false, -1.33f, -1.6f) - verticalLineToRelative(-3.9f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(-1.25f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(1.25f) - verticalLineToRelative(0.25f) - curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) - horizontalLineToRelative(-1.92f) - close() - moveTo(15.0f, 16.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -2.83f, 2.0f) - lineTo(9.83f, 18.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -5.66f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.67f, -0.75f) - verticalLineToRelative(-12.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(10.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(15.0f, 16.0f) - close() - moveTo(16.5f, 7.5f) - horizontalLineToRelative(1.55f) - curveToRelative(0.3f, 0.0f, 0.55f, 0.17f, 0.68f, 0.43f) - lineTo(20.18f, 11.0f) - lineTo(16.5f, 11.0f) - lineTo(16.5f, 7.5f) - close() - moveTo(7.0f, 20.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) - close() - moveTo(16.5f, 19.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - } - } - return _vehicleTruckProfile!! - } - -private var _vehicleTruckProfile: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Video.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Video.kt deleted file mode 100644 index 039bf1fa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Video.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Video: ImageVector - get() { - if (_video != null) { - return _video!! - } - _video = fluentIcon(name = "Regular.Video") { - fluentPath { - moveTo(13.75f, 4.5f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(0.17f) - lineToRelative(3.86f, -2.31f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.14f, 0.64f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.58f, -0.64f, 0.94f, -1.14f, 0.64f) - lineTo(17.0f, 16.07f) - verticalLineToRelative(0.18f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-8.5f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.25f) - verticalLineToRelative(-8.5f) - curveTo(2.0f, 5.95f, 3.46f, 4.5f, 5.25f, 4.5f) - horizontalLineToRelative(8.5f) - close() - moveTo(13.75f, 6.0f) - horizontalLineToRelative(-8.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(8.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(20.5f, 7.57f) - lineTo(17.0f, 9.67f) - verticalLineToRelative(4.66f) - lineToRelative(3.5f, 2.1f) - lineTo(20.5f, 7.57f) - close() - } - } - return _video!! - } - -private var _video: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Video360.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Video360.kt deleted file mode 100644 index cf7378c4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Video360.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Video360: ImageVector - get() { - if (_video360 != null) { - return _video360!! - } - _video360 = fluentIcon(name = "Regular.Video360") { - fluentPath { - moveTo(13.5f, 11.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) - close() - moveTo(7.0f, 14.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - close() - moveTo(17.0f, 14.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) - close() - moveTo(2.0f, 6.32f) - curveToRelative(0.0f, -1.45f, 1.32f, -2.5f, 2.7f, -2.3f) - curveToRelative(1.57f, 0.22f, 4.1f, 0.48f, 7.3f, 0.48f) - reflectiveCurveToRelative(5.73f, -0.26f, 7.3f, -0.48f) - curveToRelative(1.38f, -0.2f, 2.7f, 0.85f, 2.7f, 2.3f) - verticalLineToRelative(11.36f) - curveToRelative(0.0f, 1.45f, -1.32f, 2.5f, -2.7f, 2.3f) - arcToRelative(53.3f, 53.3f, 0.0f, false, false, -7.3f, -0.48f) - curveToRelative(-3.19f, 0.0f, -5.73f, 0.26f, -7.3f, 0.48f) - curveToRelative(-1.38f, 0.2f, -2.7f, -0.86f, -2.7f, -2.3f) - lineTo(2.0f, 6.32f) - close() - moveTo(4.48f, 5.5f) - curveToRelative(-0.52f, -0.07f, -0.98f, 0.34f, -0.98f, 0.82f) - verticalLineToRelative(11.36f) - curveToRelative(0.0f, 0.48f, 0.46f, 0.9f, 0.98f, 0.82f) - lineToRelative(0.52f, -0.07f) - lineTo(5.0f, 16.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(2.5f) - verticalLineToRelative(3.1f) - lineToRelative(1.5f, -0.07f) - lineTo(10.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) - horizontalLineToRelative(2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(3.03f) - lineToRelative(1.5f, 0.07f) - lineTo(15.5f, 15.0f) - lineTo(18.0f, 15.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) - verticalLineToRelative(2.43f) - lineToRelative(0.52f, 0.07f) - curveToRelative(0.52f, 0.07f, 0.98f, -0.34f, 0.98f, -0.82f) - lineTo(20.5f, 6.32f) - curveToRelative(0.0f, -0.48f, -0.46f, -0.9f, -0.98f, -0.82f) - curveToRelative(-1.64f, 0.23f, -4.25f, 0.5f, -7.52f, 0.5f) - curveToRelative(-3.27f, 0.0f, -5.88f, -0.27f, -7.52f, -0.5f) - close() - } - } - return _video360!! - } - -private var _video360: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoAdd.kt deleted file mode 100644 index 2db210a0..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoAdd.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VideoAdd: ImageVector - get() { - if (_videoAdd != null) { - return _videoAdd!! - } - _videoAdd = fluentIcon(name = "Regular.VideoAdd") { - fluentPath { - moveTo(13.75f, 4.5f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(0.17f) - lineToRelative(3.86f, -2.31f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.14f, 0.64f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.58f, -0.64f, 0.94f, -1.14f, 0.64f) - lineTo(17.0f, 16.07f) - verticalLineToRelative(0.18f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-1.06f) - curveToRelative(0.15f, -0.48f, 0.25f, -0.98f, 0.3f, -1.5f) - horizontalLineToRelative(0.76f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-8.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(3.98f) - curveToRelative(-0.55f, 0.29f, -1.06f, 0.65f, -1.5f, 1.08f) - lineTo(2.0f, 7.75f) - curveTo(2.0f, 5.95f, 3.46f, 4.5f, 5.25f, 4.5f) - horizontalLineToRelative(8.5f) - close() - moveTo(20.5f, 7.57f) - lineTo(17.0f, 9.67f) - verticalLineToRelative(4.66f) - lineToRelative(3.5f, 2.1f) - lineTo(20.5f, 7.57f) - close() - moveTo(12.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) - close() - moveTo(7.0f, 18.0f) - verticalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) - lineTo(6.0f, 18.0f) - lineTo(3.5f, 18.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) - lineTo(6.0f, 17.0f) - verticalLineToRelative(-2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) - lineTo(7.0f, 17.0f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - lineTo(7.0f, 18.0f) - close() - } - } - return _videoAdd!! - } - -private var _videoAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoBackgroundEffect.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoBackgroundEffect.kt deleted file mode 100644 index e53118a6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoBackgroundEffect.kt +++ /dev/null @@ -1,107 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VideoBackgroundEffect: ImageVector - get() { - if (_videoBackgroundEffect != null) { - return _videoBackgroundEffect!! - } - _videoBackgroundEffect = fluentIcon(name = "Regular.VideoBackgroundEffect") { - fluentPath { - moveTo(6.0f, 16.94f) - verticalLineToRelative(2.12f) - lineToRelative(-0.94f, 0.94f) - lineTo(2.94f, 20.0f) - lineTo(6.0f, 16.94f) - close() - moveTo(22.0f, 14.44f) - verticalLineToRelative(2.12f) - lineTo(18.56f, 20.0f) - horizontalLineToRelative(-0.57f) - verticalLineToRelative(-1.56f) - lineToRelative(4.01f, -4.0f) - close() - moveTo(8.75f, 14.0f) - horizontalLineToRelative(6.5f) - curveToRelative(0.91f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) - lineTo(16.99f, 20.0f) - horizontalLineToRelative(-1.5f) - verticalLineToRelative(-4.25f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.19f, -0.24f) - lineToRelative(-0.06f, -0.01f) - lineTo(8.75f, 15.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.24f, 0.2f) - lineToRelative(-0.01f, 0.05f) - lineTo(8.5f, 20.0f) - lineTo(7.0f, 20.0f) - verticalLineToRelative(-4.25f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) - lineToRelative(0.15f, -0.01f) - close() - moveTo(8.02f, 10.42f) - curveToRelative(0.06f, 0.57f, 0.24f, 1.12f, 0.52f, 1.6f) - lineTo(2.0f, 18.56f) - verticalLineToRelative(-2.12f) - lineToRelative(6.02f, -6.02f) - close() - moveTo(22.0f, 9.93f) - verticalLineToRelative(2.13f) - lineToRelative(-4.0f, 4.0f) - verticalLineToRelative(-0.31f) - lineToRelative(-0.01f, -0.17f) - arcToRelative(2.73f, 2.73f, 0.0f, false, false, -0.39f, -1.25f) - lineToRelative(4.4f, -4.4f) - close() - moveTo(12.06f, 4.0f) - lineTo(2.0f, 14.06f) - verticalLineToRelative(-2.12f) - lineTo(9.94f, 4.0f) - horizontalLineToRelative(2.12f) - close() - moveTo(22.0f, 5.43f) - verticalLineToRelative(2.13f) - lineToRelative(-5.67f, 5.66f) - arcToRelative(2.73f, 2.73f, 0.0f, false, false, -0.86f, -0.21f) - lineToRelative(-0.23f, -0.01f) - horizontalLineToRelative(-0.6f) - curveToRelative(0.35f, -0.3f, 0.64f, -0.66f, 0.86f, -1.06f) - lineToRelative(6.5f, -6.5f) - close() - moveTo(12.0f, 7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) - close() - moveTo(12.0f, 8.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(7.56f, 4.0f) - lineTo(2.0f, 9.56f) - lineTo(2.0f, 7.44f) - lineTo(5.44f, 4.0f) - horizontalLineToRelative(2.12f) - close() - moveTo(21.06f, 4.0f) - lineTo(15.9f, 9.15f) - arcToRelative(3.98f, 3.98f, 0.0f, false, false, -0.65f, -1.47f) - lineTo(18.93f, 4.0f) - horizontalLineToRelative(2.13f) - close() - moveTo(16.56f, 4.0f) - lineTo(14.0f, 6.54f) - arcToRelative(3.97f, 3.97f, 0.0f, false, false, -1.6f, -0.52f) - lineTo(14.45f, 4.0f) - horizontalLineToRelative(2.12f) - close() - } - } - return _videoBackgroundEffect!! - } - -private var _videoBackgroundEffect: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoBackgroundEffectHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoBackgroundEffectHorizontal.kt deleted file mode 100644 index d749388f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoBackgroundEffectHorizontal.kt +++ /dev/null @@ -1,101 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VideoBackgroundEffectHorizontal: ImageVector - get() { - if (_videoBackgroundEffectHorizontal != null) { - return _videoBackgroundEffectHorizontal!! - } - _videoBackgroundEffectHorizontal = fluentIcon(name = - "Regular.VideoBackgroundEffectHorizontal") { - fluentPath { - moveTo(2.13f, 5.5f) - curveTo(2.43f, 4.63f, 3.27f, 4.0f, 4.25f, 4.0f) - horizontalLineToRelative(15.5f) - curveToRelative(0.98f, 0.0f, 1.81f, 0.63f, 2.12f, 1.5f) - lineTo(2.13f, 5.5f) - close() - moveTo(22.0f, 11.25f) - horizontalLineToRelative(-6.2f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -0.9f, 1.5f) - lineTo(22.0f, 12.75f) - verticalLineToRelative(-1.5f) - close() - moveTo(22.0f, 9.0f) - horizontalLineToRelative(-6.13f) - arcToRelative(3.99f, 3.99f, 0.0f, false, false, -0.75f, -1.5f) - lineTo(22.0f, 7.5f) - lineTo(22.0f, 9.0f) - close() - moveTo(14.83f, 9.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -5.66f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, 5.66f, 0.0f) - close() - moveTo(10.5f, 10.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - moveTo(2.0f, 7.5f) - horizontalLineToRelative(6.88f) - curveToRelative(-0.35f, 0.43f, -0.61f, 0.94f, -0.75f, 1.5f) - lineTo(2.0f, 9.0f) - lineTo(2.0f, 7.5f) - close() - moveTo(2.0f, 11.25f) - horizontalLineToRelative(6.2f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.9f, 1.5f) - lineTo(2.0f, 12.75f) - verticalLineToRelative(-1.5f) - close() - moveTo(2.0f, 15.0f) - horizontalLineToRelative(4.1f) - curveToRelative(-0.06f, 0.24f, -0.1f, 0.49f, -0.1f, 0.75f) - verticalLineToRelative(0.75f) - lineTo(2.0f, 16.5f) - lineTo(2.0f, 15.0f) - close() - moveTo(2.13f, 18.5f) - lineTo(6.0f, 18.5f) - lineTo(6.0f, 20.0f) - lineTo(4.25f, 20.0f) - curveToRelative(-0.98f, 0.0f, -1.81f, -0.63f, -2.12f, -1.5f) - close() - moveTo(7.0f, 15.75f) - arcTo(1.74f, 1.74f, 0.0f, false, true, 8.75f, 14.0f) - horizontalLineToRelative(6.5f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 17.0f, 15.75f) - lineTo(17.0f, 20.0f) - horizontalLineToRelative(-1.5f) - verticalLineToRelative(-4.25f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - lineTo(8.5f, 20.0f) - lineTo(7.0f, 20.0f) - verticalLineToRelative(-4.25f) - close() - moveTo(18.0f, 18.5f) - lineTo(18.0f, 20.0f) - horizontalLineToRelative(1.75f) - curveToRelative(0.98f, 0.0f, 1.81f, -0.63f, 2.12f, -1.5f) - lineTo(18.0f, 18.5f) - close() - moveTo(22.0f, 16.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.26f, -0.04f, -0.51f, -0.1f, -0.75f) - lineTo(22.0f, 15.0f) - verticalLineToRelative(1.5f) - close() - } - } - return _videoBackgroundEffectHorizontal!! - } - -private var _videoBackgroundEffectHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoChat.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoChat.kt deleted file mode 100644 index 649099a8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoChat.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VideoChat: ImageVector - get() { - if (_videoChat != null) { - return _videoChat!! - } - _videoChat = fluentIcon(name = "Regular.VideoChat") { - fluentPath { - moveTo(13.75f, 4.5f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(0.17f) - lineToRelative(3.86f, -2.31f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.14f, 0.64f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.58f, -0.64f, 0.94f, -1.14f, 0.64f) - lineTo(17.0f, 16.07f) - verticalLineToRelative(0.18f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-1.48f) - curveToRelative(0.25f, -0.47f, 0.43f, -0.97f, 0.56f, -1.5f) - horizontalLineToRelative(0.92f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-8.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(2.98f) - curveToRelative(-0.55f, 0.29f, -1.06f, 0.65f, -1.5f, 1.08f) - lineTo(2.0f, 7.75f) - curveTo(2.0f, 5.95f, 3.46f, 4.5f, 5.25f, 4.5f) - horizontalLineToRelative(8.5f) - close() - moveTo(20.5f, 7.57f) - lineTo(17.0f, 9.67f) - verticalLineToRelative(4.66f) - lineToRelative(3.5f, 2.1f) - lineTo(20.5f, 7.57f) - close() - moveTo(10.0f, 12.26f) - arcTo(5.48f, 5.48f, 0.0f, false, false, 6.5f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -4.81f, 8.17f) - lineToRelative(-0.67f, 2.19f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.63f, 0.62f) - lineToRelative(2.18f, -0.67f) - arcTo(5.5f, 5.5f, 0.0f, false, false, 10.0f, 12.25f) - close() - moveTo(4.5f, 16.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - horizontalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - horizontalLineToRelative(-4.0f) - close() - moveTo(6.5f, 18.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - horizontalLineToRelative(2.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) - close() - } - } - return _videoChat!! - } - -private var _videoChat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoClip.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoClip.kt deleted file mode 100644 index 83750513..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoClip.kt +++ /dev/null @@ -1,50 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VideoClip: ImageVector - get() { - if (_videoClip != null) { - return _videoClip!! - } - _videoClip = fluentIcon(name = "Regular.VideoClip") { - fluentPath { - moveTo(2.0f, 6.25f) - curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) - horizontalLineToRelative(13.5f) - curveTo(20.55f, 3.0f, 22.0f, 4.46f, 22.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineTo(5.25f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 17.75f) - verticalLineTo(6.25f) - close() - moveTo(5.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(13.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineTo(6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineTo(5.25f) - close() - moveTo(9.0f, 9.25f) - verticalLineToRelative(5.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.48f, 0.88f) - lineToRelative(5.0f, -2.75f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.76f) - lineToRelative(-5.0f, -2.75f) - arcTo(1.0f, 1.0f, 0.0f, false, false, 9.0f, 9.25f) - close() - } - } - return _videoClip!! - } - -private var _videoClip: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoClipMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoClipMultiple.kt deleted file mode 100644 index 6a56aaba..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoClipMultiple.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VideoClipMultiple: ImageVector - get() { - if (_videoClipMultiple != null) { - return _videoClipMultiple!! - } - _videoClipMultiple = fluentIcon(name = "Regular.VideoClipMultiple") { - fluentPath { - moveTo(8.0f, 7.75f) - verticalLineToRelative(5.5f) - curveToRelative(0.0f, 0.6f, 0.66f, 0.95f, 1.15f, 0.63f) - lineToRelative(4.62f, -2.96f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.84f) - lineTo(9.15f, 7.12f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 8.0f, 7.75f) - close() - moveTo(5.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 6.25f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(10.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-9.0f) - curveTo(19.0f, 4.45f, 17.54f, 3.0f, 15.75f, 3.0f) - horizontalLineTo(5.25f) - close() - moveTo(3.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(10.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(9.0f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineTo(5.25f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-9.0f) - close() - moveTo(5.01f, 19.5f) - curveToRelative(0.58f, 0.9f, 1.59f, 1.5f, 2.74f, 1.5f) - horizontalLineToRelative(8.5f) - curveToRelative(2.9f, 0.0f, 5.25f, -2.35f, 5.25f, -5.25f) - verticalLineToRelative(-7.0f) - curveToRelative(0.0f, -1.15f, -0.6f, -2.16f, -1.5f, -2.74f) - verticalLineToRelative(9.74f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.75f, 3.75f) - horizontalLineTo(5.01f) - close() - } - } - return _videoClipMultiple!! - } - -private var _videoClipMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoClipOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoClipOff.kt deleted file mode 100644 index 3596718f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoClipOff.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VideoClipOff: ImageVector - get() { - if (_videoClipOff != null) { - return _videoClipOff!! - } - _videoClipOff = fluentIcon(name = "Regular.VideoClipOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(0.7f, 0.7f) - arcTo(3.24f, 3.24f, 0.0f, false, false, 2.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(2.0f, 19.55f, 3.46f, 21.0f, 5.25f, 21.0f) - horizontalLineToRelative(13.5f) - curveToRelative(0.36f, 0.0f, 0.7f, -0.06f, 1.02f, -0.16f) - lineToRelative(0.95f, 0.94f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(18.44f, 19.5f) - lineTo(5.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(3.5f, 6.25f) - curveToRelative(0.0f, -0.47f, 0.18f, -0.9f, 0.48f, -1.2f) - lineTo(9.0f, 10.05f) - verticalLineToRelative(4.69f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.48f, 0.88f) - lineToRelative(2.64f, -1.45f) - lineToRelative(5.32f, 5.32f) - close() - moveTo(12.87f, 9.69f) - lineTo(15.79f, 12.61f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.3f, -1.49f) - lineTo(12.86f, 9.7f) - close() - moveTo(20.5f, 6.25f) - verticalLineToRelative(11.07f) - lineToRelative(1.36f, 1.36f) - curveToRelative(0.1f, -0.3f, 0.14f, -0.6f, 0.14f, -0.93f) - lineTo(22.0f, 6.25f) - curveTo(22.0f, 4.45f, 20.54f, 3.0f, 18.75f, 3.0f) - lineTo(6.18f, 3.0f) - lineToRelative(1.5f, 1.5f) - horizontalLineToRelative(11.07f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - close() - } - } - return _videoClipOff!! - } - -private var _videoClipOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoOff.kt deleted file mode 100644 index 7953ba09..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoOff.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VideoOff: ImageVector - get() { - if (_videoOff != null) { - return _videoOff!! - } - _videoOff = fluentIcon(name = "Regular.VideoOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.57f, 1.57f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.75f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) - horizontalLineToRelative(8.5f) - curveToRelative(1.27f, 0.0f, 2.37f, -0.73f, 2.9f, -1.79f) - lineToRelative(4.07f, 4.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(15.48f, 16.54f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 13.75f, 18.0f) - horizontalLineToRelative(-8.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.87f, 0.63f, -1.59f, 1.46f, -1.73f) - lineToRelative(10.52f, 10.52f) - close() - moveTo(15.5f, 12.32f) - lineTo(15.5f, 7.75f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(9.18f, 6.0f) - lineToRelative(-1.5f, -1.5f) - horizontalLineToRelative(6.07f) - curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) - verticalLineToRelative(0.17f) - lineToRelative(3.86f, -2.31f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.14f, 0.64f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.3f, -0.17f, 0.54f, -0.4f, 0.67f) - lineToRelative(-1.1f, -1.1f) - lineTo(20.5f, 7.57f) - lineTo(17.0f, 9.67f) - verticalLineToRelative(4.15f) - lineToRelative(-1.5f, -1.5f) - close() - } - } - return _videoOff!! - } - -private var _videoOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoPerson.kt deleted file mode 100644 index 7d9ca7c3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoPerson.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VideoPerson: ImageVector - get() { - if (_videoPerson != null) { - return _videoPerson!! - } - _videoPerson = fluentIcon(name = "Regular.VideoPerson") { - fluentPath { - moveTo(19.75f, 4.0f) - curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(22.0f, 19.0f, 20.99f, 20.0f, 19.75f, 20.0f) - lineTo(4.25f, 20.0f) - curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) - lineTo(2.0f, 6.25f) - curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) - horizontalLineToRelative(15.5f) - close() - moveTo(19.75f, 5.5f) - lineTo(4.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(7.0f, 18.5f) - verticalLineToRelative(-2.75f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) - lineToRelative(0.15f, -0.01f) - horizontalLineToRelative(6.5f) - curveToRelative(0.91f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) - verticalLineToRelative(2.9f) - horizontalLineToRelative(2.76f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) - lineTo(20.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(15.25f, 15.5f) - horizontalLineToRelative(-6.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.24f, 0.2f) - lineToRelative(-0.01f, 0.05f) - verticalLineToRelative(2.75f) - horizontalLineToRelative(7.0f) - verticalLineToRelative(-2.75f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.2f, -0.24f) - lineToRelative(-0.06f, -0.01f) - close() - moveTo(12.0f, 7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) - close() - moveTo(12.0f, 8.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - } - } - return _videoPerson!! - } - -private var _videoPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoPersonCall.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoPersonCall.kt deleted file mode 100644 index d819957d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoPersonCall.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VideoPersonCall: ImageVector - get() { - if (_videoPersonCall != null) { - return _videoPersonCall!! - } - _videoPersonCall = fluentIcon(name = "Regular.VideoPersonCall") { - fluentPath { - moveTo(22.0f, 6.25f) - curveTo(22.0f, 5.01f, 20.99f, 4.0f, 19.75f, 4.0f) - lineTo(4.25f, 4.0f) - curveTo(3.01f, 4.0f, 2.0f, 5.0f, 2.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(2.0f, 19.0f, 3.0f, 20.0f, 4.25f, 20.0f) - horizontalLineToRelative(9.76f) - curveToRelative(0.03f, -0.42f, 0.2f, -0.84f, 0.48f, -1.2f) - lineToRelative(0.23f, -0.3f) - lineTo(8.5f, 18.5f) - lineTo(8.5f, 15.7f) - curveToRelative(0.03f, -0.1f, 0.13f, -0.19f, 0.25f, -0.19f) - horizontalLineToRelative(6.55f) - curveToRelative(0.11f, 0.03f, 0.2f, 0.13f, 0.2f, 0.25f) - verticalLineToRelative(1.81f) - curveToRelative(0.4f, -0.39f, 0.94f, -0.6f, 1.5f, -0.6f) - verticalLineToRelative(-1.21f) - lineToRelative(-0.01f, -0.14f) - curveToRelative(-0.07f, -0.9f, -0.83f, -1.61f, -1.75f, -1.61f) - lineTo(8.61f, 14.01f) - curveToRelative(-0.9f, 0.08f, -1.61f, 0.83f, -1.61f, 1.75f) - verticalLineToRelative(2.75f) - lineTo(4.25f, 18.51f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(3.5f, 6.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(15.5f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(3.77f) - curveToRelative(0.33f, -0.05f, 0.68f, -0.02f, 1.02f, 0.1f) - lineToRelative(0.44f, 0.13f) - lineToRelative(0.04f, 0.01f) - lineTo(22.0f, 6.25f) - close() - moveTo(15.0f, 10.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, false, -6.0f, 0.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 6.0f, 0.0f) - close() - moveTo(10.5f, 10.0f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) - close() - moveTo(19.2f, 13.0f) - lineTo(19.67f, 11.79f) - curveToRelative(0.24f, -0.61f, 0.92f, -0.93f, 1.55f, -0.73f) - lineToRelative(0.43f, 0.14f) - curveToRelative(0.72f, 0.24f, 1.32f, 0.8f, 1.35f, 1.57f) - curveToRelative(0.1f, 3.11f, -2.48f, 7.58f, -5.22f, 9.06f) - curveToRelative(-0.67f, 0.36f, -1.46f, 0.12f, -2.03f, -0.4f) - lineToRelative(-0.34f, -0.3f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.14f, -1.7f) - lineToRelative(0.8f, -1.02f) - arcToRelative(1.2f, 1.2f, 0.0f, false, true, 1.22f, -0.42f) - lineToRelative(1.3f, 0.32f) - arcToRelative(3.78f, 3.78f, 0.0f, false, false, 1.77f, -3.08f) - lineToRelative(-0.92f, -0.96f) - arcToRelative(1.2f, 1.2f, 0.0f, false, true, -0.25f, -1.28f) - close() - } - } - return _videoPersonCall!! - } - -private var _videoPersonCall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoPersonClock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoPersonClock.kt deleted file mode 100644 index 2bd7dc66..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoPersonClock.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VideoPersonClock: ImageVector - get() { - if (_videoPersonClock != null) { - return _videoPersonClock!! - } - _videoPersonClock = fluentIcon(name = "Regular.VideoPersonClock") { - fluentPath { - moveTo(19.75f, 3.0f) - curveTo(20.99f, 3.0f, 22.0f, 4.0f, 22.0f, 5.25f) - verticalLineToRelative(7.56f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) - lineTo(20.5f, 5.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(4.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(7.0f, 17.5f) - verticalLineToRelative(-2.75f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) - lineToRelative(0.15f, -0.01f) - horizontalLineToRelative(4.06f) - curveToRelative(-0.43f, 0.44f, -0.8f, 0.95f, -1.08f, 1.5f) - lineTo(8.75f, 14.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.24f, 0.2f) - lineToRelative(-0.01f, 0.05f) - verticalLineToRelative(2.75f) - lineTo(11.0f, 17.5f) - curveToRelative(0.0f, 0.52f, 0.06f, 1.02f, 0.18f, 1.5f) - lineTo(4.25f, 19.0f) - curveTo(3.01f, 19.0f, 2.0f, 18.0f, 2.0f, 16.75f) - lineTo(2.0f, 5.25f) - curveTo(2.0f, 4.01f, 3.0f, 3.0f, 4.25f, 3.0f) - horizontalLineToRelative(15.5f) - close() - moveTo(12.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) - close() - moveTo(12.0f, 7.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(19.5f, 17.5f) - horizontalLineToRelative(-2.0f) - lineTo(17.5f, 15.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) - horizontalLineToRelative(2.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) - close() - } - } - return _videoPersonClock!! - } - -private var _videoPersonClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoPersonOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoPersonOff.kt deleted file mode 100644 index f99763d1..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoPersonOff.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VideoPersonOff: ImageVector - get() { - if (_videoPersonOff != null) { - return _videoPersonOff!! - } - _videoPersonOff = fluentIcon(name = "Regular.VideoPersonOff") { - fluentPath { - moveTo(2.22f, 2.22f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(18.5f, 18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineTo(18.94f, 20.0f) - lineTo(4.25f, 20.0f) - curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) - lineTo(2.0f, 6.25f) - curveToRelative(0.0f, -0.86f, 0.49f, -1.61f, 1.2f, -1.99f) - lineToRelative(-0.98f, -0.98f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - moveTo(15.49f, 16.56f) - lineTo(14.44f, 15.5f) - lineTo(8.75f, 15.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.24f, 0.2f) - lineToRelative(-0.01f, 0.05f) - verticalLineToRelative(2.75f) - horizontalLineToRelative(7.0f) - verticalLineToRelative(-1.94f) - close() - moveTo(11.94f, 13.0f) - arcTo(3.0f, 3.0f, 0.0f, false, true, 9.0f, 10.06f) - lineTo(4.44f, 5.5f) - horizontalLineToRelative(-0.19f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(7.0f, 18.5f) - verticalLineToRelative(-2.75f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) - lineToRelative(0.15f, -0.01f) - horizontalLineToRelative(4.19f) - lineToRelative(-1.0f, -1.0f) - close() - moveTo(11.71f, 8.53f) - lineTo(10.55f, 7.37f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 4.08f, 4.08f) - lineToRelative(-1.16f, -1.16f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -1.76f, -1.76f) - close() - moveTo(20.5f, 17.31f) - lineTo(20.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(8.68f, 5.5f) - lineTo(7.18f, 4.0f) - horizontalLineToRelative(12.57f) - curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.32f, -0.07f, 0.61f, -0.18f, 0.89f) - lineTo(20.5f, 17.3f) - close() - } - } - return _videoPersonOff!! - } - -private var _videoPersonOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoPersonSparkle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoPersonSparkle.kt deleted file mode 100644 index f6b981b2..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoPersonSparkle.kt +++ /dev/null @@ -1,113 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VideoPersonSparkle: ImageVector - get() { - if (_videoPersonSparkle != null) { - return _videoPersonSparkle!! - } - _videoPersonSparkle = fluentIcon(name = "Regular.VideoPersonSparkle") { - fluentPath { - moveTo(4.3f, 4.0f) - horizontalLineToRelative(15.45f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 22.0f, 6.25f) - verticalLineToRelative(11.5f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 19.75f, 20.0f) - lineTo(4.25f, 20.0f) - arcTo(2.25f, 2.25f, 0.0f, false, true, 2.0f, 17.75f) - verticalLineToRelative(-7.2f) - curveToRelative(0.06f, 0.07f, 0.13f, 0.14f, 0.21f, 0.2f) - arcToRelative(1.38f, 1.38f, 0.0f, false, false, 1.29f, 0.14f) - verticalLineToRelative(6.86f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, 0.75f) - lineTo(7.0f, 18.5f) - verticalLineToRelative(-2.76f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 8.6f, 14.0f) - horizontalLineToRelative(6.65f) - arcToRelative(1.75f, 1.75f, 0.0f, false, true, 1.74f, 1.6f) - verticalLineToRelative(2.89f) - horizontalLineToRelative(2.76f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, -0.75f) - lineTo(20.5f, 6.24f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.74f) - lineTo(5.42f, 5.5f) - lineToRelative(-0.28f, -0.1f) - arcToRelative(0.9f, 0.9f, 0.0f, false, true, -0.57f, -0.55f) - lineTo(4.3f, 4.0f) - close() - moveTo(8.5f, 18.5f) - horizontalLineToRelative(7.0f) - lineToRelative(-0.01f, -2.76f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.2f, -0.24f) - lineTo(8.75f, 15.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.24f, 0.19f) - verticalLineToRelative(2.8f) - close() - moveTo(14.12f, 7.88f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, -4.24f, 4.24f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 4.24f, -4.24f) - close() - moveTo(10.94f, 8.94f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 2.12f, 2.12f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.12f, -2.12f) - close() - moveTo(2.36f, 8.84f) - lineTo(2.66f, 9.76f) - arcToRelative(0.36f, 0.36f, 0.0f, false, false, 0.68f, 0.02f) - verticalLineToRelative(-0.02f) - lineToRelative(0.3f, -0.92f) - arcToRelative(1.88f, 1.88f, 0.0f, false, true, 1.2f, -1.2f) - lineToRelative(0.92f, -0.3f) - arcToRelative(0.36f, 0.36f, 0.0f, false, false, 0.0f, -0.68f) - horizontalLineToRelative(-0.02f) - lineToRelative(-0.92f, -0.3f) - arcToRelative(1.9f, 1.9f, 0.0f, false, true, -1.2f, -1.2f) - lineToRelative(-0.3f, -0.92f) - arcToRelative(0.36f, 0.36f, 0.0f, false, false, -0.55f, -0.17f) - curveToRelative(-0.06f, 0.04f, -0.1f, 0.1f, -0.13f, 0.17f) - lineToRelative(-0.3f, 0.92f) - verticalLineToRelative(0.02f) - arcToRelative(1.9f, 1.9f, 0.0f, false, true, -1.18f, 1.18f) - lineToRelative(-0.92f, 0.3f) - arcToRelative(0.36f, 0.36f, 0.0f, false, false, -0.17f, 0.55f) - curveToRelative(0.04f, 0.06f, 0.1f, 0.1f, 0.17f, 0.13f) - lineToRelative(0.92f, 0.3f) - arcToRelative(1.9f, 1.9f, 0.0f, false, true, 1.2f, 1.2f) - close() - moveTo(4.89f, 10.54f) - lineTo(5.43f, 10.37f) - arcToRelative(1.12f, 1.12f, 0.0f, false, false, 0.68f, -0.7f) - lineToRelative(0.18f, -0.53f) - arcTo(0.22f, 0.22f, 0.0f, false, true, 6.4f, 9.0f) - arcToRelative(0.2f, 0.2f, 0.0f, false, true, 0.2f, 0.03f) - lineToRelative(0.03f, 0.03f) - lineToRelative(0.05f, 0.07f) - lineToRelative(0.17f, 0.54f) - arcToRelative(1.1f, 1.1f, 0.0f, false, false, 0.7f, 0.7f) - lineToRelative(0.54f, 0.17f) - lineToRelative(0.04f, 0.02f) - arcToRelative(0.21f, 0.21f, 0.0f, false, true, 0.1f, 0.18f) - arcToRelative(0.21f, 0.21f, 0.0f, false, true, -0.14f, 0.2f) - lineToRelative(-0.53f, 0.17f) - arcToRelative(1.1f, 1.1f, 0.0f, false, false, -0.7f, 0.7f) - lineToRelative(-0.17f, 0.54f) - arcToRelative(0.22f, 0.22f, 0.0f, false, true, -0.08f, 0.1f) - arcToRelative(0.21f, 0.21f, 0.0f, false, true, -0.32f, -0.1f) - lineToRelative(-0.17f, -0.54f) - arcToRelative(1.1f, 1.1f, 0.0f, false, false, -0.7f, -0.7f) - lineToRelative(-0.54f, -0.17f) - arcToRelative(0.21f, 0.21f, 0.0f, false, true, -0.1f, -0.32f) - arcToRelative(0.2f, 0.2f, 0.0f, false, true, 0.1f, -0.08f) - close() - } - } - return _videoPersonSparkle!! - } - -private var _videoPersonSparkle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoPersonStar.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoPersonStar.kt deleted file mode 100644 index 32159a67..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoPersonStar.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VideoPersonStar: ImageVector - get() { - if (_videoPersonStar != null) { - return _videoPersonStar!! - } - _videoPersonStar = fluentIcon(name = "Regular.VideoPersonStar") { - fluentPath { - moveTo(19.75f, 4.0f) - curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) - verticalLineToRelative(6.56f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) - lineTo(20.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(4.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - lineTo(7.0f, 18.5f) - verticalLineToRelative(-2.75f) - curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) - lineToRelative(0.15f, -0.01f) - horizontalLineToRelative(3.27f) - curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) - lineTo(8.74f, 15.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.24f, 0.2f) - lineToRelative(-0.01f, 0.05f) - verticalLineToRelative(2.75f) - horizontalLineToRelative(2.58f) - curveToRelative(0.08f, 0.53f, 0.22f, 1.03f, 0.42f, 1.5f) - lineTo(4.25f, 20.0f) - curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) - lineTo(2.0f, 6.25f) - curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) - horizontalLineToRelative(15.5f) - close() - moveTo(12.0f, 7.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) - close() - moveTo(12.0f, 8.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(18.06f, 14.42f) - arcToRelative(0.58f, 0.58f, 0.0f, false, false, -1.12f, 0.0f) - lineToRelative(-0.55f, 1.79f) - horizontalLineToRelative(-1.8f) - curveToRelative(-0.57f, 0.0f, -0.8f, 0.75f, -0.35f, 1.1f) - lineToRelative(1.46f, 1.1f) - lineToRelative(-0.56f, 1.79f) - curveToRelative(-0.17f, 0.56f, 0.44f, 1.03f, 0.9f, 0.68f) - lineToRelative(1.46f, -1.1f) - lineToRelative(1.46f, 1.1f) - curveToRelative(0.46f, 0.35f, 1.07f, -0.12f, 0.9f, -0.68f) - lineToRelative(-0.56f, -1.79f) - lineToRelative(1.46f, -1.1f) - curveToRelative(0.46f, -0.35f, 0.22f, -1.1f, -0.35f, -1.1f) - horizontalLineToRelative(-1.8f) - lineToRelative(-0.55f, -1.79f) - close() - } - } - return _videoPersonStar!! - } - -private var _videoPersonStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoPersonStarOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoPersonStarOff.kt deleted file mode 100644 index 3fe9c1ad..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoPersonStarOff.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VideoPersonStarOff: ImageVector - get() { - if (_videoPersonStarOff != null) { - return _videoPersonStarOff!! - } - _videoPersonStarOff = fluentIcon(name = "Regular.VideoPersonStarOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(0.98f, 0.98f) - arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(2.0f, 19.0f, 3.0f, 20.0f, 4.25f, 20.0f) - horizontalLineToRelative(7.25f) - curveToRelative(-0.2f, -0.47f, -0.34f, -0.97f, -0.42f, -1.5f) - lineTo(8.5f, 18.5f) - lineTo(8.5f, 15.7f) - curveToRelative(0.03f, -0.1f, 0.13f, -0.19f, 0.25f, -0.19f) - horizontalLineToRelative(2.56f) - curveToRelative(0.18f, -0.53f, 0.42f, -1.04f, 0.71f, -1.5f) - lineTo(8.61f, 14.01f) - curveToRelative(-0.9f, 0.08f, -1.61f, 0.83f, -1.61f, 1.75f) - verticalLineToRelative(2.75f) - lineTo(4.25f, 18.51f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - lineTo(3.5f, 6.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(0.19f) - lineTo(9.0f, 10.06f) - arcTo(3.0f, 3.0f, 0.0f, false, false, 11.94f, 13.0f) - lineToRelative(1.18f, 1.18f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, 7.72f, 7.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.94f, -1.16f) - lineTo(3.28f, 2.22f) - close() - moveTo(19.74f, 20.8f) - arcToRelative(0.56f, 0.56f, 0.0f, false, true, -0.78f, 0.08f) - lineToRelative(-1.46f, -1.1f) - lineToRelative(-1.46f, 1.1f) - curveToRelative(-0.46f, 0.35f, -1.07f, -0.12f, -0.9f, -0.68f) - lineToRelative(0.56f, -1.79f) - lineToRelative(-1.46f, -1.1f) - curveToRelative(-0.46f, -0.35f, -0.22f, -1.1f, 0.35f, -1.1f) - horizontalLineToRelative(0.56f) - lineToRelative(4.59f, 4.59f) - close() - moveTo(10.55f, 7.37f) - lineToRelative(1.16f, 1.16f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 13.5f, 10.0f) - curveToRelative(0.0f, 0.1f, -0.01f, 0.2f, -0.03f, 0.29f) - lineToRelative(1.16f, 1.16f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, -4.08f, -4.08f) - close() - moveTo(15.55f, 12.36f) - lineTo(17.25f, 14.06f) - curveToRelative(0.29f, -0.15f, 0.68f, -0.03f, 0.8f, 0.36f) - lineToRelative(0.21f, 0.66f) - lineToRelative(1.13f, 1.13f) - horizontalLineToRelative(1.02f) - curveToRelative(0.57f, 0.0f, 0.8f, 0.75f, 0.35f, 1.1f) - lineToRelative(-0.15f, 0.11f) - lineToRelative(2.03f, 2.04f) - arcTo(5.49f, 5.49f, 0.0f, false, false, 17.5f, 12.0f) - curveToRelative(-0.69f, 0.0f, -1.35f, 0.13f, -1.96f, 0.36f) - close() - moveTo(7.17f, 4.0f) - lineToRelative(1.5f, 1.5f) - horizontalLineToRelative(11.07f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(5.48f) - curveToRelative(0.55f, 0.29f, 1.05f, 0.65f, 1.5f, 1.08f) - lineTo(21.99f, 6.25f) - curveTo(22.0f, 5.01f, 20.99f, 4.0f, 19.75f, 4.0f) - lineTo(7.18f, 4.0f) - close() - } - } - return _videoPersonStarOff!! - } - -private var _videoPersonStarOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoPlayPause.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoPlayPause.kt deleted file mode 100644 index 819ea947..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoPlayPause.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VideoPlayPause: ImageVector - get() { - if (_videoPlayPause != null) { - return _videoPlayPause!! - } - _videoPlayPause = fluentIcon(name = "Regular.VideoPlayPause") { - fluentPath { - moveTo(12.0f, 7.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(1.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-1.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-4.13f) - curveToRelative(-0.02f, 0.55f, -0.3f, 1.1f, -0.84f, 1.42f) - lineToRelative(-6.5f, 3.95f) - arcTo(1.75f, 1.75f, 0.0f, false, true, 2.0f, 15.99f) - lineTo(2.0f, 8.0f) - curveToRelative(0.0f, -1.37f, 1.5f, -2.2f, 2.67f, -1.48f) - lineToRelative(6.5f, 4.03f) - curveToRelative(0.53f, 0.33f, 0.8f, 0.87f, 0.83f, 1.41f) - lineTo(12.0f, 7.75f) - close() - moveTo(13.75f, 7.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(1.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-8.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-1.5f) - close() - moveTo(18.0f, 7.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(1.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-1.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-8.5f) - close() - moveTo(19.75f, 7.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) - horizontalLineToRelative(1.5f) - curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) - verticalLineToRelative(-8.5f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) - horizontalLineToRelative(-1.5f) - close() - moveTo(3.5f, 8.0f) - verticalLineToRelative(8.0f) - curveToRelative(0.0f, 0.19f, 0.21f, 0.3f, 0.38f, 0.2f) - lineToRelative(6.5f, -3.94f) - arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.0f, -0.43f) - lineToRelative(-6.5f, -4.04f) - arcTo(0.25f, 0.25f, 0.0f, false, false, 3.5f, 8.0f) - close() - } - } - return _videoPlayPause!! - } - -private var _videoPlayPause: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoProhibited.kt deleted file mode 100644 index 06fc7e46..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoProhibited.kt +++ /dev/null @@ -1,61 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VideoProhibited: ImageVector - get() { - if (_videoProhibited != null) { - return _videoProhibited!! - } - _videoProhibited = fluentIcon(name = "Regular.VideoProhibited") { - fluentPath { - moveTo(13.75f, 5.0f) - curveTo(15.55f, 5.0f, 17.0f, 6.46f, 17.0f, 8.25f) - verticalLineToRelative(0.17f) - lineToRelative(3.86f, -2.31f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.14f, 0.64f) - verticalLineToRelative(6.06f) - arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) - lineTo(20.5f, 8.07f) - lineToRelative(-3.5f, 2.1f) - verticalLineToRelative(0.85f) - curveToRelative(-0.52f, 0.04f, -1.02f, 0.14f, -1.5f, 0.3f) - lineTo(15.5f, 8.24f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-8.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(5.83f) - curveToRelative(0.08f, 0.52f, 0.22f, 1.03f, 0.42f, 1.5f) - lineTo(5.25f, 19.99f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - verticalLineToRelative(-8.5f) - curveTo(2.0f, 6.45f, 3.46f, 5.0f, 5.25f, 5.0f) - horizontalLineToRelative(8.5f) - close() - moveTo(23.0f, 17.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(13.5f, 17.5f) - curveToRelative(0.0f, 0.83f, 0.26f, 1.6f, 0.7f, 2.25f) - lineToRelative(5.55f, -5.56f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) - close() - moveTo(17.5f, 21.5f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) - lineToRelative(-5.55f, 5.56f) - curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) - close() - } - } - return _videoProhibited!! - } - -private var _videoProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoSecurity.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoSecurity.kt deleted file mode 100644 index 2b602d37..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoSecurity.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VideoSecurity: ImageVector - get() { - if (_videoSecurity != null) { - return _videoSecurity!! - } - _videoSecurity = fluentIcon(name = "Regular.VideoSecurity") { - fluentPath { - moveTo(5.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 6.25f) - verticalLineToRelative(6.5f) - curveTo(2.0f, 14.55f, 3.46f, 16.0f, 5.25f, 16.0f) - horizontalLineToRelative(2.24f) - curveToRelative(-0.08f, 0.84f, -0.78f, 1.5f, -1.65f, 1.5f) - horizontalLineTo(3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.0f) - arcTo(5.75f, 5.75f, 0.0f, false, false, 12.0f, 16.25f) - verticalLineTo(16.0f) - horizontalLineToRelative(1.75f) - arcToRelative(3.25f, 3.25f, 0.0f, false, false, 3.23f, -2.93f) - lineToRelative(3.88f, 2.32f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.14f, -0.64f) - verticalLineTo(4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.14f, -0.64f) - lineToRelative(-3.88f, 2.32f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 13.75f, 3.0f) - horizontalLineToRelative(-8.5f) - close() - moveTo(17.0f, 7.67f) - lineToRelative(3.5f, -2.1f) - verticalLineToRelative(7.86f) - lineToRelative(-3.5f, -2.1f) - verticalLineTo(7.67f) - close() - moveTo(6.25f, 20.5f) - horizontalLineTo(4.0f) - verticalLineTo(19.0f) - horizontalLineToRelative(1.84f) - curveToRelative(1.7f, 0.0f, 3.07f, -1.33f, 3.16f, -3.0f) - horizontalLineToRelative(1.5f) - verticalLineToRelative(0.25f) - curveToRelative(0.0f, 2.35f, -1.9f, 4.25f, -4.25f, 4.25f) - close() - moveTo(3.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(8.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-8.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineToRelative(-6.5f) - close() - } - } - return _videoSecurity!! - } - -private var _videoSecurity: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoSwitch.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoSwitch.kt deleted file mode 100644 index 901d1faa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/VideoSwitch.kt +++ /dev/null @@ -1,93 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.VideoSwitch: ImageVector - get() { - if (_videoSwitch != null) { - return _videoSwitch!! - } - _videoSwitch = fluentIcon(name = "Regular.VideoSwitch") { - fluentPath { - moveTo(4.0f, 5.75f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 6.75f, 3.0f) - horizontalLineToRelative(6.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 16.0f, 5.75f) - verticalLineToRelative(0.54f) - lineToRelative(2.0f, -1.52f) - curveToRelative(0.81f, -0.63f, 2.0f, -0.04f, 2.0f, 1.0f) - verticalLineToRelative(6.47f) - arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.0f, 1.0f) - lineToRelative(-2.0f, -1.53f) - verticalLineToRelative(0.54f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 13.25f, 15.0f) - horizontalLineToRelative(-6.5f) - arcTo(2.75f, 2.75f, 0.0f, false, true, 4.0f, 12.25f) - verticalLineToRelative(-6.5f) - close() - moveTo(6.75f, 4.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) - horizontalLineToRelative(6.5f) - curveToRelative(0.7f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) - verticalLineToRelative(-6.5f) - curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) - horizontalLineToRelative(-6.5f) - close() - moveTo(16.0f, 9.82f) - lineToRelative(2.5f, 1.91f) - lineTo(18.5f, 6.27f) - lineTo(16.0f, 8.17f) - verticalLineToRelative(1.65f) - close() - moveTo(18.36f, 16.14f) - curveToRelative(-0.95f, -0.23f, -2.13f, -0.42f, -3.45f, -0.52f) - curveToRelative(0.61f, -0.3f, 1.13f, -0.78f, 1.5f, -1.35f) - curveToRelative(0.85f, 0.1f, 1.63f, 0.24f, 2.3f, 0.41f) - curveToRelative(0.88f, 0.21f, 1.63f, 0.47f, 2.19f, 0.8f) - curveToRelative(0.5f, 0.28f, 1.1f, 0.77f, 1.1f, 1.52f) - curveToRelative(0.0f, 0.47f, -0.25f, 0.84f, -0.52f, 1.1f) - curveToRelative(-0.27f, 0.26f, -0.63f, 0.47f, -1.01f, 0.65f) - curveToRelative(-0.79f, 0.35f, -1.86f, 0.63f, -3.1f, 0.84f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.24f, -1.48f) - curveToRelative(1.17f, -0.2f, 2.1f, -0.45f, 2.72f, -0.73f) - curveToRelative(0.3f, -0.14f, 0.5f, -0.27f, 0.6f, -0.37f) - lineToRelative(0.01f, -0.01f) - arcToRelative(1.43f, 1.43f, 0.0f, false, false, -0.31f, -0.23f) - arcToRelative(7.15f, 7.15f, 0.0f, false, false, -1.79f, -0.63f) - close() - moveTo(20.51f, 16.94f) - close() - moveTo(3.1f, 15.47f) - curveToRelative(0.3f, -0.17f, 0.67f, -0.33f, 1.08f, -0.48f) - curveToRelative(0.58f, 0.55f, 1.34f, 0.9f, 2.17f, 0.99f) - curveToRelative(-0.25f, 0.05f, -0.5f, 0.1f, -0.72f, 0.16f) - curveToRelative(-0.81f, 0.2f, -1.4f, 0.42f, -1.79f, 0.63f) - curveToRelative(-0.17f, 0.1f, -0.27f, 0.18f, -0.31f, 0.23f) - curveToRelative(0.04f, 0.05f, 0.14f, 0.12f, 0.31f, 0.23f) - curveToRelative(0.38f, 0.21f, 0.98f, 0.44f, 1.79f, 0.63f) - curveToRelative(1.58f, 0.39f, 3.81f, 0.64f, 6.3f, 0.64f) - lineToRelative(-0.72f, -0.72f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) - lineToRelative(2.0f, 2.0f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-2.0f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(0.72f, -0.72f) - curveToRelative(-2.57f, 0.0f, -4.92f, -0.26f, -6.66f, -0.68f) - arcToRelative(8.56f, 8.56f, 0.0f, false, true, -2.18f, -0.8f) - curveTo(2.6f, 18.25f, 2.0f, 17.76f, 2.0f, 17.0f) - reflectiveCurveToRelative(0.6f, -1.24f, 1.1f, -1.53f) - close() - } - } - return _videoSwitch!! - } - -private var _videoSwitch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ViewDesktop.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ViewDesktop.kt deleted file mode 100644 index 29e6e5df..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ViewDesktop.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ViewDesktop: ImageVector - get() { - if (_viewDesktop != null) { - return _viewDesktop!! - } - _viewDesktop = fluentIcon(name = "Regular.ViewDesktop") { - fluentPath { - moveTo(19.75f, 3.0f) - curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) - lineToRelative(0.01f, 0.15f) - verticalLineToRelative(10.5f) - curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.25f) - horizontalLineToRelative(-4.4f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(1.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(8.5f, 20.5f) - lineTo(8.5f, 18.0f) - lineTo(4.25f, 18.0f) - curveToRelative(-1.19f, 0.0f, -2.16f, -0.92f, -2.24f, -2.1f) - lineTo(2.01f, 5.26f) - curveToRelative(0.0f, -1.2f, 0.92f, -2.17f, 2.09f, -2.24f) - lineTo(4.25f, 3.0f) - horizontalLineToRelative(15.5f) - close() - moveTo(14.0f, 18.0f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(2.5f) - horizontalLineToRelative(4.0f) - lineTo(14.0f, 18.0f) - close() - moveTo(19.75f, 4.5f) - lineTo(4.25f, 4.5f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - verticalLineToRelative(10.6f) - curveToRelative(0.0f, 0.38f, 0.27f, 0.7f, 0.64f, 0.75f) - horizontalLineToRelative(15.6f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - lineTo(20.5f, 5.25f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - close() - moveTo(18.5f, 6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.5f, 0.41f) - verticalLineToRelative(8.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, 0.5f) - lineTo(9.5f, 15.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.4f) - lineTo(9.0f, 6.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.41f, -0.5f) - horizontalLineToRelative(9.09f) - close() - moveTo(7.5f, 6.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.5f, 0.41f) - verticalLineToRelative(8.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.41f, 0.5f) - horizontalLineToRelative(-2.1f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.48f, -0.4f) - lineTo(5.0f, 14.5f) - verticalLineToRelative(-8.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.4f, -0.5f) - horizontalLineToRelative(2.1f) - close() - } - } - return _viewDesktop!! - } - -private var _viewDesktop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ViewDesktopMobile.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ViewDesktopMobile.kt deleted file mode 100644 index 5ca62631..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ViewDesktopMobile.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ViewDesktopMobile: ImageVector - get() { - if (_viewDesktopMobile != null) { - return _viewDesktopMobile!! - } - _viewDesktopMobile = fluentIcon(name = "Regular.ViewDesktopMobile") { - fluentPath { - moveTo(15.75f, 2.0f) - curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-7.5f) - curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) - lineTo(6.0f, 4.25f) - curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) - horizontalLineToRelative(7.5f) - close() - moveTo(15.75f, 3.5f) - horizontalLineToRelative(-7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(15.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(7.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - lineTo(16.5f, 4.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(13.25f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(2.5f) - close() - moveTo(14.5f, 9.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.5f, 0.4f) - verticalLineToRelative(6.1f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.41f, 0.5f) - lineTo(9.5f, 16.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.4f) - lineTo(9.0f, 9.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.41f, -0.5f) - horizontalLineToRelative(5.09f) - close() - moveTo(14.5f, 5.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.5f, 0.41f) - lineTo(15.0f, 7.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.41f, 0.5f) - lineTo(9.5f, 8.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.4f) - lineTo(9.0f, 5.5f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.41f, -0.5f) - horizontalLineToRelative(5.09f) - close() - } - } - return _viewDesktopMobile!! - } - -private var _viewDesktopMobile: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Voicemail.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Voicemail.kt deleted file mode 100644 index 9810324b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Voicemail.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Voicemail: ImageVector - get() { - if (_voicemail != null) { - return _voicemail!! - } - _voicemail = fluentIcon(name = "Regular.Voicemail") { - fluentPath { - moveTo(19.75f, 4.0f) - curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(22.0f, 19.0f, 21.0f, 20.0f, 19.75f, 20.0f) - lineTo(4.25f, 20.0f) - curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) - lineTo(2.0f, 6.25f) - curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) - horizontalLineToRelative(15.5f) - close() - moveTo(19.75f, 5.5f) - lineTo(4.25f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(15.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) - lineTo(20.5f, 6.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - close() - moveTo(8.0f, 9.0f) - horizontalLineToRelative(8.0f) - arcToRelative(3.0f, 3.0f, 0.0f, true, true, -2.6f, 1.5f) - horizontalLineToRelative(-2.8f) - arcTo(3.0f, 3.0f, 0.0f, true, true, 7.82f, 9.0f) - lineTo(8.0f, 9.0f) - close() - moveTo(8.0f, 10.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - moveTo(16.0f, 10.5f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) - close() - } - } - return _voicemail!! - } - -private var _voicemail: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Vote.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Vote.kt deleted file mode 100644 index edbc2084..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Vote.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Vote: ImageVector - get() { - if (_vote != null) { - return _vote!! - } - _vote = fluentIcon(name = "Regular.Vote") { - fluentPath { - moveTo(20.5f, 15.5f) - horizontalLineToRelative(-17.0f) - verticalLineToRelative(5.0f) - horizontalLineToRelative(17.0f) - verticalLineToRelative(-5.0f) - close() - moveTo(21.94f, 14.47f) - lineTo(21.97f, 14.53f) - lineTo(21.99f, 14.63f) - lineTo(21.99f, 21.25f) - curveToRelative(0.0f, 0.38f, -0.27f, 0.7f, -0.64f, 0.74f) - lineToRelative(-0.1f, 0.01f) - lineTo(2.75f, 22.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) - lineToRelative(-0.01f, -0.1f) - lineTo(2.0f, 14.7f) - lineToRelative(0.01f, -0.09f) - lineToRelative(0.05f, -0.15f) - lineToRelative(2.76f, -6.02f) - curveToRelative(0.1f, -0.23f, 0.32f, -0.4f, 0.57f, -0.43f) - horizontalLineToRelative(2.65f) - lineToRelative(-0.79f, 1.36f) - lineToRelative(-0.07f, 0.13f) - horizontalLineToRelative(-1.2f) - lineTo(3.92f, 14.0f) - horizontalLineToRelative(16.15f) - lineToRelative(-2.03f, -4.35f) - lineToRelative(0.87f, -1.5f) - curveToRelative(0.06f, 0.06f, 0.12f, 0.12f, 0.17f, 0.2f) - lineToRelative(0.05f, 0.09f) - lineToRelative(2.81f, 6.03f) - close() - moveTo(13.37f, 2.06f) - lineToRelative(0.09f, 0.04f) - lineToRelative(5.18f, 3.0f) - curveToRelative(0.33f, 0.2f, 0.46f, 0.6f, 0.32f, 0.94f) - lineToRelative(-0.04f, 0.09f) - lineToRelative(-2.8f, 4.87f) - horizontalLineToRelative(1.13f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(6.75f, 12.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - lineTo(8.57f, 11.0f) - lineToRelative(-0.18f, -0.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.32f, -0.94f) - lineToRelative(0.05f, -0.09f) - lineToRelative(4.31f, -7.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.94f, -0.31f) - close() - moveTo(13.36f, 3.78f) - lineTo(9.79f, 9.98f) - lineTo(11.57f, 11.0f) - horizontalLineToRelative(2.81f) - lineToRelative(2.87f, -4.97f) - lineToRelative(-3.9f, -2.25f) - close() - } - } - return _vote!! - } - -private var _vote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WalkieTalkie.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WalkieTalkie.kt deleted file mode 100644 index ebd87cd9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WalkieTalkie.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WalkieTalkie: ImageVector - get() { - if (_walkieTalkie != null) { - return _walkieTalkie!! - } - _walkieTalkie = fluentIcon(name = "Regular.WalkieTalkie") { - fluentPath { - moveTo(10.25f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - close() - moveTo(8.75f, 6.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(6.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-6.5f) - close() - moveTo(9.5f, 10.5f) - verticalLineToRelative(-3.0f) - horizontalLineToRelative(5.0f) - verticalLineToRelative(3.0f) - horizontalLineToRelative(-5.0f) - close() - moveTo(8.75f, 1.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - lineTo(9.5f, 3.0f) - horizontalLineToRelative(7.25f) - curveTo(17.99f, 3.0f, 19.0f, 4.0f, 19.0f, 5.25f) - lineTo(19.0f, 14.0f) - curveToRelative(0.0f, 0.19f, -0.07f, 0.37f, -0.2f, 0.5f) - lineToRelative(-1.3f, 1.42f) - verticalLineToRelative(3.83f) - curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) - horizontalLineToRelative(-6.5f) - curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) - verticalLineToRelative(-3.83f) - lineTo(5.2f, 14.5f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 5.0f, 14.0f) - lineTo(5.0f, 5.25f) - curveTo(5.0f, 4.01f, 6.0f, 3.0f, 7.25f, 3.0f) - lineTo(8.0f, 3.0f) - lineTo(8.0f, 1.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(6.5f, 5.25f) - verticalLineToRelative(8.46f) - lineToRelative(1.3f, 1.4f) - curveToRelative(0.13f, 0.14f, 0.2f, 0.33f, 0.2f, 0.52f) - verticalLineToRelative(4.12f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(6.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineToRelative(-4.13f) - curveToRelative(0.0f, -0.18f, 0.07f, -0.37f, 0.2f, -0.5f) - lineToRelative(1.3f, -1.41f) - lineTo(17.5f, 5.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-9.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - } - } - return _walkieTalkie!! - } - -private var _walkieTalkie: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Wallet.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Wallet.kt deleted file mode 100644 index 066f11d4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Wallet.kt +++ /dev/null @@ -1,58 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Wallet: ImageVector - get() { - if (_wallet != null) { - return _wallet!! - } - _wallet = fluentIcon(name = "Regular.Wallet") { - fluentPath { - moveTo(15.5f, 13.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(3.0f, 5.0f) - horizontalLineToRelative(0.01f) - curveToRelative(0.13f, -1.12f, 1.08f, -2.0f, 2.24f, -2.0f) - horizontalLineToRelative(11.5f) - curveTo(17.99f, 3.0f, 19.0f, 4.0f, 19.0f, 5.25f) - verticalLineToRelative(0.84f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.5f, 3.16f) - verticalLineToRelative(8.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-12.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 5.0f) - close() - moveTo(18.25f, 7.5f) - lineTo(4.5f, 7.5f) - verticalLineToRelative(10.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(12.0f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-8.5f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - close() - moveTo(17.5f, 6.0f) - verticalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - lineTo(5.25f, 4.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(17.5f, 6.0f) - close() - } - } - return _wallet!! - } - -private var _wallet: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WalletCreditCard.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WalletCreditCard.kt deleted file mode 100644 index 12cc78d4..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WalletCreditCard.kt +++ /dev/null @@ -1,70 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WalletCreditCard: ImageVector - get() { - if (_walletCreditCard != null) { - return _walletCreditCard!! - } - _walletCreditCard = fluentIcon(name = "Regular.WalletCreditCard") { - fluentPath { - moveTo(14.36f, 2.6f) - arcToRelative(0.25f, 0.25f, 0.0f, false, true, 0.36f, -0.04f) - lineToRelative(0.92f, 0.81f) - lineTo(12.74f, 7.0f) - horizontalLineToRelative(1.92f) - lineToRelative(2.1f, -2.63f) - lineToRelative(1.66f, 1.45f) - curveToRelative(0.1f, 0.1f, 0.11f, 0.25f, 0.02f, 0.35f) - lineToRelative(-0.69f, 0.83f) - horizontalLineToRelative(1.95f) - curveToRelative(0.5f, -0.72f, 0.38f, -1.71f, -0.3f, -2.3f) - lineToRelative(-3.69f, -3.26f) - arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.53f, 0.23f) - lineTo(8.98f, 7.0f) - horizontalLineToRelative(1.9f) - lineToRelative(3.48f, -4.4f) - close() - moveTo(16.25f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.0f) - close() - moveTo(4.5f, 7.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(3.13f) - lineTo(9.57f, 5.0f) - lineTo(5.25f, 5.0f) - curveTo(4.01f, 5.0f, 3.0f, 6.0f, 3.0f, 7.25f) - verticalLineToRelative(10.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(12.0f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineToRelative(-6.5f) - curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) - horizontalLineToRelative(-13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(4.5f, 17.75f) - lineTo(4.5f, 9.37f) - curveToRelative(0.23f, 0.08f, 0.49f, 0.13f, 0.75f, 0.13f) - horizontalLineToRelative(13.0f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(6.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-12.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - close() - } - } - return _walletCreditCard!! - } - -private var _walletCreditCard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Wallpaper.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Wallpaper.kt deleted file mode 100644 index 55e732f7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Wallpaper.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Wallpaper: ImageVector - get() { - if (_wallpaper != null) { - return _wallpaper!! - } - _wallpaper = fluentIcon(name = "Regular.Wallpaper") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.0f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-4.0f) - close() - moveTo(13.0f, 3.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.0f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(3.75f, 13.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 0.2f, 0.04f, 0.4f, 0.1f, 0.59f) - lineToRelative(5.63f, -5.63f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 3.54f, 0.0f) - lineToRelative(5.63f, 5.63f) - curveToRelative(0.06f, -0.19f, 0.1f, -0.38f, 0.1f, -0.59f) - verticalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - verticalLineToRelative(4.0f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(4.0f) - curveToRelative(0.2f, 0.0f, 0.4f, -0.04f, 0.59f, -0.1f) - lineToRelative(-5.63f, -5.63f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, 0.0f) - lineTo(5.66f, 19.4f) - curveToRelative(0.19f, 0.06f, 0.38f, 0.1f, 0.59f, 0.1f) - horizontalLineToRelative(4.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-4.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - verticalLineToRelative(-4.0f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(15.25f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - close() - moveTo(13.0f, 8.75f) - arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) - close() - } - } - return _wallpaper!! - } - -private var _wallpaper: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Wand.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Wand.kt deleted file mode 100644 index ec57f482..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Wand.kt +++ /dev/null @@ -1,129 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Wand: ImageVector - get() { - if (_wand != null) { - return _wand!! - } - _wand = fluentIcon(name = "Regular.Wand") { - fluentPath { - moveToRelative(13.31f, 7.57f) - lineToRelative(-0.13f, 0.12f) - lineTo(2.7f, 18.18f) - arcToRelative(2.27f, 2.27f, 0.0f, false, false, 3.2f, 3.2f) - lineTo(16.4f, 10.9f) - curveToRelative(0.88f, -0.88f, 0.88f, -2.3f, 0.0f, -3.18f) - lineToRelative(-0.16f, -0.15f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.92f, 0.0f) - close() - moveTo(12.47f, 10.53f) - lineTo(13.55f, 11.61f) - lineTo(4.85f, 20.33f) - arcToRelative(0.77f, 0.77f, 0.0f, true, true, -1.1f, -1.1f) - lineToRelative(8.72f, -8.7f) - close() - moveTo(16.85f, 15.0f) - lineToRelative(-0.1f, -0.01f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(-0.75f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - lineTo(16.0f, 17.99f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - lineTo(17.5f, 18.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-0.75f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(0.1f) - close() - moveTo(15.3f, 8.75f) - lineToRelative(0.03f, 0.03f) - curveToRelative(0.29f, 0.3f, 0.29f, 0.77f, 0.0f, 1.06f) - lineToRelative(-0.71f, 0.71f) - lineToRelative(-1.1f, -1.09f) - lineToRelative(0.74f, -0.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.04f, 0.02f) - close() - moveTo(6.85f, 5.01f) - lineTo(6.75f, 5.0f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(-0.75f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - lineTo(6.0f, 8.0f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - lineTo(7.5f, 8.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - lineTo(7.5f, 6.5f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineTo(6.75f, 5.0f) - horizontalLineToRelative(0.1f) - close() - moveTo(18.85f, 3.01f) - lineTo(18.75f, 3.0f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - verticalLineToRelative(0.75f) - horizontalLineToRelative(-0.75f) - curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) - lineToRelative(-0.01f, 0.1f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - lineTo(18.0f, 6.0f) - verticalLineToRelative(0.75f) - curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) - lineToRelative(0.1f, 0.01f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - lineTo(19.5f, 6.0f) - horizontalLineToRelative(0.75f) - curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) - lineToRelative(0.01f, -0.1f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(-0.75f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) - lineToRelative(-0.1f, -0.01f) - horizontalLineToRelative(0.1f) - close() - } - } - return _wand!! - } - -private var _wand: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Washer.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Washer.kt deleted file mode 100644 index a254f4cd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Washer.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Washer: ImageVector - get() { - if (_washer != null) { - return _washer!! - } - _washer = fluentIcon(name = "Regular.Washer") { - fluentPath { - moveTo(12.0f, 8.0f) - arcToRelative(5.25f, 5.25f, 0.0f, true, false, 0.0f, 10.5f) - arcTo(5.25f, 5.25f, 0.0f, false, false, 12.0f, 8.0f) - close() - moveTo(8.25f, 13.25f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, 7.5f, -0.19f) - curveToRelative(-0.18f, 0.17f, -0.39f, 0.34f, -0.7f, 0.47f) - curveToRelative(-0.53f, 0.23f, -1.4f, 0.37f, -2.93f, -0.02f) - curveToRelative(-1.7f, -0.42f, -2.84f, -0.17f, -3.64f, 0.33f) - lineToRelative(-0.17f, 0.1f) - arcToRelative(3.77f, 3.77f, 0.0f, false, true, -0.06f, -0.69f) - close() - moveTo(9.0f, 6.25f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(12.75f, 5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - close() - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 6.25f) - close() - } - } - return _washer!! - } - -private var _washer: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Water.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Water.kt deleted file mode 100644 index 65158c36..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Water.kt +++ /dev/null @@ -1,81 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Water: ImageVector - get() { - if (_water != null) { - return _water!! - } - _water = fluentIcon(name = "Regular.Water") { - fluentPath { - moveTo(18.38f, 4.0f) - curveToRelative(0.31f, 0.0f, 0.59f, 0.2f, 0.7f, 0.48f) - curveToRelative(0.56f, 1.46f, 1.6f, 2.02f, 2.17f, 2.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - curveToRelative(-1.0f, 0.0f, -2.09f, -0.61f, -2.87f, -1.69f) - arcTo(3.97f, 3.97f, 0.0f, false, true, 15.19f, 8.0f) - curveToRelative(-1.22f, 0.0f, -2.38f, -0.6f, -3.19f, -1.7f) - arcTo(3.97f, 3.97f, 0.0f, false, true, 8.81f, 8.0f) - curveTo(7.59f, 8.0f, 6.44f, 7.4f, 5.62f, 6.3f) - curveTo(4.84f, 7.4f, 3.75f, 8.0f, 2.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) - curveToRelative(0.56f, 0.0f, 1.6f, -0.55f, 2.17f, -2.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.4f, 0.0f) - curveTo(6.86f, 5.9f, 7.9f, 6.5f, 8.81f, 6.5f) - curveToRelative(0.92f, 0.0f, 1.95f, -0.6f, 2.49f, -2.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.4f, 0.0f) - curveToRelative(0.54f, 1.42f, 1.57f, 2.02f, 2.49f, 2.02f) - curveToRelative(0.92f, 0.0f, 1.95f, -0.6f, 2.49f, -2.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.7f, -0.48f) - close() - moveTo(18.38f, 10.0f) - curveToRelative(0.31f, 0.0f, 0.59f, 0.2f, 0.7f, 0.48f) - curveToRelative(0.56f, 1.46f, 1.6f, 2.02f, 2.17f, 2.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - curveToRelative(-1.0f, 0.0f, -2.09f, -0.61f, -2.87f, -1.69f) - arcTo(3.97f, 3.97f, 0.0f, false, true, 15.19f, 14.0f) - curveToRelative(-1.22f, 0.0f, -2.38f, -0.6f, -3.19f, -1.7f) - arcTo(3.97f, 3.97f, 0.0f, false, true, 8.81f, 14.0f) - curveToRelative(-1.22f, 0.0f, -2.37f, -0.6f, -3.19f, -1.69f) - curveTo(4.84f, 13.4f, 3.75f, 14.0f, 2.75f, 14.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - curveToRelative(0.56f, 0.0f, 1.6f, -0.55f, 2.17f, -2.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.4f, 0.0f) - curveToRelative(0.54f, 1.42f, 1.57f, 2.02f, 2.49f, 2.02f) - curveToRelative(0.92f, 0.0f, 1.95f, -0.6f, 2.49f, -2.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.4f, 0.0f) - curveToRelative(0.54f, 1.42f, 1.57f, 2.02f, 2.49f, 2.02f) - curveToRelative(0.92f, 0.0f, 1.95f, -0.6f, 2.49f, -2.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.7f, -0.48f) - close() - moveTo(19.08f, 16.48f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.4f, 0.0f) - curveToRelative(-0.54f, 1.42f, -1.57f, 2.02f, -2.49f, 2.02f) - curveToRelative(-0.92f, 0.0f, -1.95f, -0.6f, -2.49f, -2.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.4f, 0.0f) - curveToRelative(-0.54f, 1.42f, -1.57f, 2.02f, -2.49f, 2.02f) - curveToRelative(-0.92f, 0.0f, -1.95f, -0.6f, -2.49f, -2.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.4f, 0.0f) - curveToRelative(-0.56f, 1.47f, -1.6f, 2.02f, -2.17f, 2.02f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - curveToRelative(1.0f, 0.0f, 2.09f, -0.61f, 2.87f, -1.69f) - arcTo(3.97f, 3.97f, 0.0f, false, false, 8.81f, 20.0f) - curveToRelative(1.22f, 0.0f, 2.38f, -0.6f, 3.19f, -1.7f) - arcToRelative(3.97f, 3.97f, 0.0f, false, false, 3.19f, 1.7f) - curveToRelative(1.22f, 0.0f, 2.37f, -0.6f, 3.19f, -1.69f) - curveToRelative(0.78f, 1.08f, 1.87f, 1.69f, 2.87f, 1.69f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - curveToRelative(-0.56f, 0.0f, -1.61f, -0.56f, -2.17f, -2.02f) - close() - } - } - return _water!! - } - -private var _water: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherBlowingSnow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherBlowingSnow.kt deleted file mode 100644 index 3e0c068d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherBlowingSnow.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WeatherBlowingSnow: ImageVector - get() { - if (_weatherBlowingSnow != null) { - return _weatherBlowingSnow!! - } - _weatherBlowingSnow = fluentIcon(name = "Regular.WeatherBlowingSnow") { - fluentPath { - moveTo(11.97f, 4.0f) - arcToRelative(4.07f, 4.07f, 0.0f, false, false, -3.9f, 2.88f) - lineToRelative(-0.04f, 0.15f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.44f, 0.44f) - lineToRelative(0.04f, -0.15f) - arcToRelative(2.57f, 2.57f, 0.0f, false, true, 2.46f, -1.82f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.03f, 5.0f) - lineTo(2.75f, 10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(12.0f, 12.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, -0.03f, -8.0f) - close() - moveTo(19.07f, 10.0f) - curveToRelative(-1.26f, 0.0f, -2.38f, 0.82f, -2.78f, 2.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.42f, 0.48f) - arcToRelative(1.43f, 1.43f, 0.0f, false, true, 2.79f, 0.44f) - lineTo(20.5f, 13.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - lineTo(2.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(12.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - horizontalLineToRelative(-0.13f) - curveToRelative(-0.4f, 0.0f, -0.77f, -0.23f, -0.95f, -0.58f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.34f, 0.67f) - arcTo(2.56f, 2.56f, 0.0f, false, false, 15.12f, 20.0f) - horizontalLineToRelative(0.13f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.45f, -4.0f) - lineTo(19.0f, 16.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) - verticalLineToRelative(-0.07f) - arcTo(2.93f, 2.93f, 0.0f, false, false, 19.07f, 10.0f) - close() - moveTo(5.0f, 5.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - moveTo(9.0f, 21.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(20.0f, 6.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) - close() - } - } - return _weatherBlowingSnow!! - } - -private var _weatherBlowingSnow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherCloudy.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherCloudy.kt deleted file mode 100644 index 18945e80..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherCloudy.kt +++ /dev/null @@ -1,57 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WeatherCloudy: ImageVector - get() { - if (_weatherCloudy != null) { - return _weatherCloudy!! - } - _weatherCloudy = fluentIcon(name = "Regular.WeatherCloudy") { - fluentPath { - moveTo(13.0f, 7.0f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.64f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) - lineTo(7.69f, 19.0f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) - horizontalLineToRelative(0.08f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 7.0f) - close() - moveTo(13.0f, 8.5f) - arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.88f, 3.9f) - curveToRelative(0.0f, 0.35f, -0.31f, 0.63f, -0.68f, 0.63f) - horizontalLineToRelative(-0.69f) - curveToRelative(-1.26f, 0.0f, -2.28f, 1.0f, -2.28f, 2.24f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.24f) - horizontalLineToRelative(10.5f) - curveToRelative(1.26f, 0.0f, 2.29f, -1.0f, 2.29f, -2.24f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.29f, -2.24f) - horizontalLineToRelative(-0.69f) - curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.63f) - curveToRelative(0.0f, -2.29f, -1.8f, -3.9f, -3.88f, -3.9f) - close() - moveTo(10.0f, 4.0f) - curveToRelative(1.62f, 0.0f, 3.05f, 0.82f, 3.9f, 2.06f) - arcToRelative(7.5f, 7.5f, 0.0f, false, false, -2.04f, 0.03f) - arcToRelative(3.21f, 3.21f, 0.0f, false, false, -5.03f, 2.07f) - lineToRelative(-0.07f, 0.41f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.99f, 0.83f) - horizontalLineToRelative(-0.49f) - arcToRelative(1.78f, 1.78f, 0.0f, false, false, -1.26f, 3.04f) - curveToRelative(-0.32f, 0.4f, -0.57f, 0.85f, -0.74f, 1.34f) - arcTo(3.28f, 3.28f, 0.0f, false, true, 5.1f, 7.9f) - horizontalLineToRelative(0.25f) - arcTo(4.72f, 4.72f, 0.0f, false, true, 10.0f, 4.0f) - close() - } - } - return _weatherCloudy!! - } - -private var _weatherCloudy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherDrizzle.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherDrizzle.kt deleted file mode 100644 index 07570555..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherDrizzle.kt +++ /dev/null @@ -1,71 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WeatherDrizzle: ImageVector - get() { - if (_weatherDrizzle != null) { - return _weatherDrizzle!! - } - _weatherDrizzle = fluentIcon(name = "Regular.WeatherDrizzle") { - fluentPath { - moveTo(12.0f, 3.0f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.37f) - horizontalLineToRelative(-0.85f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.09f, 0.17f) - lineToRelative(-1.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.24f, -0.84f) - lineToRelative(0.56f, -0.83f) - horizontalLineToRelative(-2.23f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.09f, 0.17f) - lineToRelative(-1.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.24f, -0.84f) - lineToRelative(0.56f, -0.83f) - lineTo(8.46f, 15.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.09f, 0.17f) - lineToRelative(-1.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.24f, -0.84f) - lineToRelative(0.56f, -0.83f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.37f) - horizontalLineToRelative(0.08f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 12.0f, 3.0f) - close() - moveTo(12.0f, 4.5f) - arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.88f, 3.89f) - curveToRelative(0.0f, 0.36f, -0.32f, 0.64f, -0.68f, 0.64f) - horizontalLineToRelative(-0.7f) - curveToRelative(-1.25f, 0.0f, -2.27f, 1.0f, -2.27f, 2.23f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.24f) - horizontalLineToRelative(10.5f) - curveToRelative(1.26f, 0.0f, 2.28f, -1.0f, 2.28f, -2.24f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.28f, -2.23f) - horizontalLineToRelative(-0.69f) - curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.64f) - curveToRelative(0.0f, -2.29f, -1.8f, -3.9f, -3.88f, -3.9f) - close() - moveTo(7.13f, 18.83f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.24f, 0.84f) - lineToRelative(1.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.24f, -0.84f) - lineToRelative(-1.0f, 1.5f) - close() - moveTo(11.33f, 19.87f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.2f, -1.04f) - lineToRelative(1.0f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.24f, 0.84f) - lineToRelative(-1.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.04f, 0.2f) - close() - } - } - return _weatherDrizzle!! - } - -private var _weatherDrizzle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherDuststorm.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherDuststorm.kt deleted file mode 100644 index f3187b5b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherDuststorm.kt +++ /dev/null @@ -1,79 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WeatherDuststorm: ImageVector - get() { - if (_weatherDuststorm != null) { - return _weatherDuststorm!! - } - _weatherDuststorm = fluentIcon(name = "Regular.WeatherDuststorm") { - fluentPath { - moveTo(5.0f, 5.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -1.0f, 0.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - close() - moveTo(6.5f, 5.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - moveTo(11.97f, 4.0f) - arcToRelative(4.07f, 4.07f, 0.0f, false, false, -3.9f, 2.88f) - lineToRelative(-0.04f, 0.15f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.44f, 0.44f) - lineToRelative(0.04f, -0.15f) - arcToRelative(2.57f, 2.57f, 0.0f, false, true, 2.46f, -1.82f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.03f, 5.0f) - lineTo(2.75f, 10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - lineTo(12.0f, 12.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, -0.03f, -8.0f) - close() - moveTo(19.07f, 10.0f) - curveToRelative(-1.26f, 0.0f, -2.38f, 0.82f, -2.78f, 2.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.42f, 0.48f) - arcToRelative(1.43f, 1.43f, 0.0f, false, true, 2.79f, 0.44f) - lineTo(20.5f, 13.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - lineTo(2.75f, 14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(12.5f) - arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) - horizontalLineToRelative(-0.13f) - curveToRelative(-0.4f, 0.0f, -0.77f, -0.23f, -0.95f, -0.58f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.34f, 0.67f) - arcTo(2.56f, 2.56f, 0.0f, false, false, 15.12f, 20.0f) - horizontalLineToRelative(0.13f) - arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.45f, -4.0f) - lineTo(19.0f, 16.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) - verticalLineToRelative(-0.07f) - arcTo(2.93f, 2.93f, 0.0f, false, false, 19.07f, 10.0f) - close() - moveTo(9.5f, 20.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - close() - moveTo(9.5f, 21.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) - close() - moveTo(20.0f, 6.5f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, -1.0f, 0.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) - close() - moveTo(21.5f, 6.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) - close() - } - } - return _weatherDuststorm!! - } - -private var _weatherDuststorm: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherFog.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherFog.kt deleted file mode 100644 index 84afb649..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherFog.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WeatherFog: ImageVector - get() { - if (_weatherFog != null) { - return _weatherFog!! - } - _weatherFog = fluentIcon(name = "Regular.WeatherFog") { - fluentPath { - moveTo(7.74f, 19.5f) - horizontalLineToRelative(8.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - horizontalLineToRelative(-8.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(8.6f) - horizontalLineToRelative(-8.5f) - close() - moveTo(4.75f, 16.52f) - horizontalLineToRelative(14.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) - lineTo(4.75f, 18.02f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) - horizontalLineToRelative(0.1f) - close() - moveTo(12.0f, 3.0f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.64f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) - lineTo(6.69f, 15.0f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) - horizontalLineToRelative(0.08f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 12.0f, 3.0f) - close() - moveTo(12.0f, 4.5f) - arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.88f, 3.9f) - curveToRelative(0.0f, 0.35f, -0.32f, 0.63f, -0.68f, 0.63f) - horizontalLineToRelative(-0.7f) - curveToRelative(-1.25f, 0.0f, -2.27f, 1.0f, -2.27f, 2.24f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.23f) - horizontalLineToRelative(10.5f) - curveToRelative(1.26f, 0.0f, 2.28f, -1.0f, 2.28f, -2.23f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.28f, -2.24f) - horizontalLineToRelative(-0.69f) - curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.64f) - curveToRelative(0.0f, -2.28f, -1.8f, -3.89f, -3.88f, -3.89f) - close() - } - } - return _weatherFog!! - } - -private var _weatherFog: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherHailDay.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherHailDay.kt deleted file mode 100644 index 829e7904..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherHailDay.kt +++ /dev/null @@ -1,97 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WeatherHailDay: ImageVector - get() { - if (_weatherHailDay != null) { - return _weatherHailDay!! - } - _weatherHailDay = fluentIcon(name = "Regular.WeatherHailDay") { - fluentPath { - moveTo(13.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(9.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(16.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(13.0f, 6.0f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.64f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) - lineTo(7.69f, 18.0f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) - horizontalLineToRelative(0.08f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 6.0f) - close() - moveTo(13.0f, 7.5f) - arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.87f, 3.9f) - curveToRelative(0.0f, 0.35f, -0.32f, 0.63f, -0.69f, 0.63f) - horizontalLineToRelative(-0.69f) - curveToRelative(-1.26f, 0.0f, -2.28f, 1.0f, -2.28f, 2.24f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.24f) - horizontalLineToRelative(10.5f) - curveToRelative(1.26f, 0.0f, 2.29f, -1.0f, 2.29f, -2.24f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.29f, -2.24f) - horizontalLineToRelative(-0.69f) - curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.63f) - curveToRelative(0.0f, -2.29f, -1.8f, -3.9f, -3.88f, -3.9f) - close() - moveTo(4.37f, 10.16f) - curveToRelative(0.14f, 0.36f, 0.0f, 0.75f, -0.32f, 0.94f) - lineToRelative(-0.09f, 0.04f) - lineToRelative(-0.92f, 0.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.67f, -1.34f) - lineToRelative(0.1f, -0.05f) - lineToRelative(0.92f, -0.38f) - curveToRelative(0.38f, -0.16f, 0.82f, 0.02f, 0.98f, 0.4f) - close() - moveTo(10.85f, 5.33f) - lineTo(10.68f, 5.39f) - curveToRelative(-0.53f, 0.19f, -1.02f, 0.44f, -1.46f, 0.76f) - arcToRelative(2.44f, 2.44f, 0.0f, false, false, -2.8f, 3.67f) - curveToRelative(-0.48f, 0.13f, -0.94f, 0.35f, -1.36f, 0.63f) - arcToRelative(3.94f, 3.94f, 0.0f, false, true, 5.8f, -5.12f) - close() - moveTo(2.95f, 5.36f) - lineTo(3.05f, 5.4f) - lineTo(3.97f, 5.78f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 3.5f, 7.2f) - lineToRelative(-0.1f, -0.03f) - lineToRelative(-0.93f, -0.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.47f, -1.42f) - close() - moveTo(6.75f, 2.38f) - lineTo(6.8f, 2.47f) - lineTo(7.18f, 3.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, 0.67f) - lineToRelative(-0.04f, -0.1f) - lineToRelative(-0.38f, -0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.66f) - close() - moveTo(11.11f, 2.06f) - curveToRelative(0.35f, 0.14f, 0.53f, 0.52f, 0.44f, 0.87f) - lineToRelative(-0.03f, 0.1f) - lineToRelative(-0.39f, 0.93f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.42f, -0.47f) - lineToRelative(0.04f, -0.1f) - lineToRelative(0.38f, -0.93f) - curveToRelative(0.16f, -0.38f, 0.6f, -0.56f, 0.98f, -0.4f) - close() - } - } - return _weatherHailDay!! - } - -private var _weatherHailDay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherHailNight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherHailNight.kt deleted file mode 100644 index 34be9046..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherHailNight.kt +++ /dev/null @@ -1,72 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WeatherHailNight: ImageVector - get() { - if (_weatherHailNight != null) { - return _weatherHailNight!! - } - _weatherHailNight = fluentIcon(name = "Regular.WeatherHailNight") { - fluentPath { - moveTo(13.0f, 20.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(9.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(16.5f, 19.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) - close() - moveTo(13.0f, 6.0f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.64f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) - lineTo(7.69f, 18.0f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) - horizontalLineToRelative(0.08f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 6.0f) - close() - moveTo(13.0f, 7.5f) - arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.88f, 3.9f) - curveToRelative(0.0f, 0.35f, -0.31f, 0.63f, -0.68f, 0.63f) - horizontalLineToRelative(-0.69f) - curveToRelative(-1.26f, 0.0f, -2.28f, 1.0f, -2.28f, 2.24f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.24f) - horizontalLineToRelative(10.5f) - curveToRelative(1.26f, 0.0f, 2.29f, -1.0f, 2.29f, -2.24f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.29f, -2.24f) - horizontalLineToRelative(-0.69f) - curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.63f) - curveToRelative(0.0f, -2.29f, -1.8f, -3.9f, -3.88f, -3.9f) - close() - moveTo(6.6f, 2.0f) - arcToRelative(5.06f, 5.06f, 0.0f, false, true, 4.47f, 3.27f) - curveToRelative(-0.5f, 0.14f, -0.96f, 0.34f, -1.39f, 0.58f) - arcTo(3.55f, 3.55f, 0.0f, false, false, 7.48f, 3.7f) - arcToRelative(5.97f, 5.97f, 0.0f, false, true, -0.62f, 3.61f) - lineToRelative(-0.12f, 0.22f) - arcToRelative(5.75f, 5.75f, 0.0f, false, true, -2.71f, 2.3f) - arcToRelative(3.6f, 3.6f, 0.0f, false, false, 1.06f, 0.61f) - curveToRelative(-0.45f, 0.3f, -0.84f, 0.69f, -1.16f, 1.12f) - lineToRelative(-0.16f, -0.08f) - arcToRelative(5.06f, 5.06f, 0.0f, false, true, -1.64f, -1.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.37f, -1.13f) - curveToRelative(1.64f, -0.59f, 2.53f, -1.25f, 3.03f, -2.21f) - curveToRelative(0.55f, -1.06f, 0.66f, -2.18f, 0.29f, -3.68f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 6.59f, 2.0f) - close() - } - } - return _weatherHailNight!! - } - -private var _weatherHailNight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherHaze.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherHaze.kt deleted file mode 100644 index 0e67b8b6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherHaze.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WeatherHaze: ImageVector - get() { - if (_weatherHaze != null) { - return _weatherHaze!! - } - _weatherHaze = fluentIcon(name = "Regular.WeatherHaze") { - fluentPath { - moveTo(6.84f, 13.98f) - arcToRelative(5.65f, 5.65f, 0.0f, false, true, 1.72f, 0.03f) - curveToRelative(1.29f, 0.2f, 2.52f, 0.83f, 3.82f, 1.6f) - curveToRelative(2.36f, 1.37f, 4.94f, 1.1f, 6.43f, 0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.88f, 1.22f) - curveToRelative(-2.01f, 1.44f, -5.24f, 1.69f, -8.07f, 0.04f) - arcToRelative(10.05f, 10.05f, 0.0f, false, false, -3.3f, -1.41f) - arcToRelative(4.8f, 4.8f, 0.0f, false, false, -3.21f, 0.67f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.72f, -1.32f) - arcToRelative(7.2f, 7.2f, 0.0f, false, true, 2.45f, -0.86f) - close() - moveTo(8.11f, 10.95f) - arcToRelative(5.64f, 5.64f, 0.0f, false, false, -1.55f, 0.08f) - curveToRelative(-0.7f, 0.13f, -1.41f, 0.4f, -2.17f, 0.81f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.72f, 1.32f) - arcToRelative(4.8f, 4.8f, 0.0f, false, true, 3.2f, -0.67f) - curveToRelative(1.0f, 0.16f, 2.02f, 0.65f, 3.31f, 1.4f) - curveToRelative(2.83f, 1.65f, 6.06f, 1.4f, 8.07f, -0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.88f, -1.22f) - curveToRelative(-0.4f, 0.3f, -0.9f, 0.52f, -1.44f, 0.68f) - arcToRelative(5.9f, 5.9f, 0.0f, false, true, -1.65f, 0.22f) - arcToRelative(6.72f, 6.72f, 0.0f, false, true, -3.34f, -0.94f) - arcTo(11.44f, 11.44f, 0.0f, false, false, 8.55f, 11.0f) - lineToRelative(-0.44f, -0.05f) - close() - moveTo(17.52f, 12.0f) - verticalLineToRelative(0.2f) - curveToRelative(-0.45f, 0.19f, -0.97f, 0.3f, -1.53f, 0.33f) - arcTo(4.03f, 4.03f, 0.0f, false, false, 8.51f, 10.0f) - arcToRelative(6.64f, 6.64f, 0.0f, false, false, -1.65f, -0.02f) - arcTo(5.53f, 5.53f, 0.0f, false, true, 17.52f, 12.0f) - close() - moveTo(12.12f, 22.0f) - arcToRelative(0.76f, 0.76f, 0.0f, false, true, -0.25f, 0.0f) - horizontalLineToRelative(0.25f) - close() - moveTo(5.97f, 4.94f) - lineToRelative(-0.08f, -0.07f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 4.91f, 6.0f) - lineToRelative(1.06f, 1.06f) - lineToRelative(0.09f, 0.07f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 7.03f, 6.0f) - lineTo(5.97f, 4.94f) - close() - moveTo(19.15f, 5.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.13f, -0.98f) - lineTo(16.96f, 6.0f) - lineToRelative(-0.08f, 0.09f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.14f, 0.97f) - lineTo(19.08f, 6.0f) - lineToRelative(0.07f, -0.08f) - close() - moveTo(12.75f, 2.64f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) - verticalLineToRelative(1.6f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) - verticalLineToRelative(-1.6f) - close() - moveTo(5.1f, 19.16f) - arcToRelative(4.8f, 4.8f, 0.0f, false, true, 3.2f, -0.67f) - curveToRelative(1.0f, 0.16f, 2.02f, 0.66f, 3.31f, 1.4f) - curveToRelative(2.83f, 1.66f, 6.06f, 1.4f, 8.07f, -0.03f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.88f, -1.22f) - curveToRelative(-1.49f, 1.06f, -4.07f, 1.34f, -6.43f, -0.04f) - arcTo(11.44f, 11.44f, 0.0f, false, false, 8.56f, 17.0f) - arcToRelative(6.29f, 6.29f, 0.0f, false, false, -4.17f, 0.84f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.72f, 1.32f) - close() - } - } - return _weatherHaze!! - } - -private var _weatherHaze: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherMoon.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherMoon.kt deleted file mode 100644 index 85c885b3..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherMoon.kt +++ /dev/null @@ -1,36 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WeatherMoon: ImageVector - get() { - if (_weatherMoon != null) { - return _weatherMoon!! - } - _weatherMoon = fluentIcon(name = "Regular.WeatherMoon") { - fluentPath { - moveTo(20.03f, 17.0f) - arcToRelative(10.0f, 10.0f, 0.0f, false, true, -16.9f, 0.68f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.36f, -1.13f) - curveToRelative(3.77f, -1.35f, 5.79f, -2.91f, 6.96f, -5.15f) - curveToRelative(1.23f, -2.35f, 1.55f, -4.93f, 0.69f, -8.46f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 11.9f, 2.0f) - arcTo(10.0f, 10.0f, 0.0f, false, true, 20.03f, 17.0f) - close() - moveTo(11.78f, 12.1f) - curveToRelative(-1.25f, 2.39f, -3.31f, 4.1f, -6.82f, 5.5f) - arcToRelative(8.49f, 8.49f, 0.0f, false, false, 13.77f, -1.35f) - arcToRelative(8.5f, 8.5f, 0.0f, false, false, -5.9f, -12.63f) - curveToRelative(0.64f, 3.39f, 0.22f, 6.05f, -1.05f, 8.48f) - close() - } - } - return _weatherMoon!! - } - -private var _weatherMoon: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherMoonOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherMoonOff.kt deleted file mode 100644 index 0b711309..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherMoonOff.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WeatherMoonOff: ImageVector - get() { - if (_weatherMoonOff != null) { - return _weatherMoonOff!! - } - _weatherMoonOff = fluentIcon(name = "Regular.WeatherMoonOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(8.2f, 8.2f) - curveToRelative(-1.18f, 2.19f, -3.2f, 3.73f, -6.93f, 5.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.36f, 1.13f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, 15.1f, 1.6f) - lineToRelative(2.49f, 2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(17.16f, 18.22f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, -12.2f, -0.62f) - curveToRelative(3.27f, -1.3f, 5.28f, -2.88f, 6.55f, -5.03f) - lineToRelative(5.65f, 5.65f) - close() - moveTo(15.62f, 4.64f) - arcToRelative(8.5f, 8.5f, 0.0f, false, true, 3.35f, 11.15f) - lineToRelative(1.11f, 1.11f) - arcToRelative(10.0f, 10.0f, 0.0f, false, false, -8.17f, -14.89f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.77f, 0.93f) - curveToRelative(0.5f, 2.07f, 0.6f, 3.81f, 0.35f, 5.37f) - lineToRelative(1.27f, 1.27f) - curveToRelative(0.45f, -1.76f, 0.5f, -3.7f, 0.06f, -5.96f) - curveToRelative(0.98f, 0.17f, 1.92f, 0.51f, 2.8f, 1.02f) - close() - } - } - return _weatherMoonOff!! - } - -private var _weatherMoonOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherPartlyCloudyDay.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherPartlyCloudyDay.kt deleted file mode 100644 index 76e23137..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherPartlyCloudyDay.kt +++ /dev/null @@ -1,85 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WeatherPartlyCloudyDay: ImageVector - get() { - if (_weatherPartlyCloudyDay != null) { - return _weatherPartlyCloudyDay!! - } - _weatherPartlyCloudyDay = fluentIcon(name = "Regular.WeatherPartlyCloudyDay") { - fluentPath { - moveTo(13.0f, 8.0f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.64f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) - lineTo(7.69f, 20.0f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) - horizontalLineToRelative(0.08f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 8.0f) - close() - moveTo(13.0f, 9.5f) - arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.87f, 3.9f) - curveToRelative(0.0f, 0.35f, -0.32f, 0.63f, -0.69f, 0.63f) - horizontalLineToRelative(-0.69f) - curveToRelative(-1.26f, 0.0f, -2.28f, 1.0f, -2.28f, 2.24f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.23f) - horizontalLineToRelative(10.5f) - curveToRelative(1.26f, 0.0f, 2.29f, -1.0f, 2.29f, -2.23f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.29f, -2.24f) - horizontalLineToRelative(-0.69f) - curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.64f) - curveToRelative(0.0f, -2.28f, -1.8f, -3.89f, -3.88f, -3.89f) - close() - moveTo(4.37f, 12.16f) - curveToRelative(0.14f, 0.35f, 0.0f, 0.75f, -0.32f, 0.94f) - lineToRelative(-0.09f, 0.04f) - lineToRelative(-0.92f, 0.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.67f, -1.34f) - lineToRelative(0.1f, -0.05f) - lineToRelative(0.92f, -0.38f) - curveToRelative(0.38f, -0.16f, 0.82f, 0.02f, 0.98f, 0.4f) - close() - moveTo(10.85f, 7.33f) - lineTo(10.68f, 7.39f) - curveToRelative(-0.53f, 0.19f, -1.02f, 0.44f, -1.46f, 0.75f) - arcToRelative(2.44f, 2.44f, 0.0f, false, false, -2.8f, 3.67f) - curveToRelative(-0.48f, 0.14f, -0.94f, 0.36f, -1.36f, 0.64f) - arcToRelative(3.94f, 3.94f, 0.0f, false, true, 5.8f, -5.12f) - close() - moveTo(2.95f, 7.36f) - lineTo(3.05f, 7.4f) - lineTo(3.97f, 7.78f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 3.5f, 9.2f) - lineToRelative(-0.1f, -0.04f) - lineToRelative(-0.93f, -0.38f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.47f, -1.42f) - close() - moveTo(6.75f, 4.37f) - lineTo(6.8f, 4.47f) - lineTo(7.19f, 5.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.67f) - lineToRelative(-0.04f, -0.1f) - lineToRelative(-0.38f, -0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.67f) - close() - moveTo(11.11f, 4.06f) - curveToRelative(0.35f, 0.14f, 0.53f, 0.52f, 0.44f, 0.87f) - lineToRelative(-0.03f, 0.1f) - lineToRelative(-0.39f, 0.93f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.42f, -0.47f) - lineToRelative(0.04f, -0.1f) - lineToRelative(0.38f, -0.93f) - curveToRelative(0.16f, -0.38f, 0.6f, -0.56f, 0.98f, -0.4f) - close() - } - } - return _weatherPartlyCloudyDay!! - } - -private var _weatherPartlyCloudyDay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherPartlyCloudyNight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherPartlyCloudyNight.kt deleted file mode 100644 index aed05030..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherPartlyCloudyNight.kt +++ /dev/null @@ -1,60 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WeatherPartlyCloudyNight: ImageVector - get() { - if (_weatherPartlyCloudyNight != null) { - return _weatherPartlyCloudyNight!! - } - _weatherPartlyCloudyNight = fluentIcon(name = "Regular.WeatherPartlyCloudyNight") { - fluentPath { - moveTo(13.0f, 8.0f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.64f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) - lineTo(7.69f, 20.0f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) - horizontalLineToRelative(0.08f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 8.0f) - close() - moveTo(13.0f, 9.5f) - arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.88f, 3.9f) - curveToRelative(0.0f, 0.35f, -0.31f, 0.63f, -0.68f, 0.63f) - horizontalLineToRelative(-0.69f) - curveToRelative(-1.26f, 0.0f, -2.28f, 1.0f, -2.28f, 2.24f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.24f) - horizontalLineToRelative(10.5f) - curveToRelative(1.26f, 0.0f, 2.29f, -1.0f, 2.29f, -2.24f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.29f, -2.24f) - horizontalLineToRelative(-0.69f) - curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.63f) - curveToRelative(0.0f, -2.29f, -1.8f, -3.9f, -3.88f, -3.9f) - close() - moveTo(6.6f, 4.0f) - arcToRelative(5.06f, 5.06f, 0.0f, false, true, 4.47f, 3.27f) - curveToRelative(-0.5f, 0.14f, -0.96f, 0.34f, -1.39f, 0.58f) - arcTo(3.55f, 3.55f, 0.0f, false, false, 7.48f, 5.7f) - arcToRelative(5.97f, 5.97f, 0.0f, false, true, -0.62f, 3.61f) - lineToRelative(-0.12f, 0.22f) - arcToRelative(5.75f, 5.75f, 0.0f, false, true, -2.71f, 2.3f) - arcToRelative(3.6f, 3.6f, 0.0f, false, false, 1.06f, 0.61f) - curveToRelative(-0.45f, 0.3f, -0.84f, 0.69f, -1.16f, 1.12f) - lineToRelative(-0.16f, -0.08f) - arcToRelative(5.06f, 5.06f, 0.0f, false, true, -1.64f, -1.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.37f, -1.13f) - curveToRelative(1.64f, -0.59f, 2.53f, -1.25f, 3.03f, -2.21f) - curveToRelative(0.55f, -1.06f, 0.66f, -2.18f, 0.29f, -3.68f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 6.59f, 4.0f) - close() - } - } - return _weatherPartlyCloudyNight!! - } - -private var _weatherPartlyCloudyNight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherRain.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherRain.kt deleted file mode 100644 index bf76273b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherRain.kt +++ /dev/null @@ -1,59 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WeatherRain: ImageVector - get() { - if (_weatherRain != null) { - return _weatherRain!! - } - _weatherRain = fluentIcon(name = "Regular.WeatherRain") { - fluentPath { - moveTo(12.0f, 4.0f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.37f) - horizontalLineToRelative(-0.59f) - lineToRelative(-1.58f, 2.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, -0.66f) - lineToRelative(0.04f, -0.09f) - lineTo(15.0f, 16.0f) - horizontalLineToRelative(-2.13f) - lineToRelative(-1.59f, 2.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, -0.66f) - lineToRelative(0.05f, -0.09f) - lineTo(11.12f, 16.0f) - lineTo(9.0f, 16.0f) - lineTo(7.4f, 18.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, -0.66f) - lineToRelative(0.05f, -0.09f) - lineTo(7.26f, 16.0f) - horizontalLineToRelative(-0.57f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.37f) - horizontalLineToRelative(0.08f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 12.0f, 4.0f) - close() - moveTo(12.0f, 5.5f) - arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.88f, 3.89f) - curveToRelative(0.0f, 0.36f, -0.32f, 0.64f, -0.68f, 0.64f) - horizontalLineToRelative(-0.7f) - curveToRelative(-1.25f, 0.0f, -2.27f, 1.0f, -2.27f, 2.23f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.24f) - horizontalLineToRelative(10.5f) - curveToRelative(1.26f, 0.0f, 2.28f, -1.0f, 2.28f, -2.24f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.28f, -2.23f) - horizontalLineToRelative(-0.69f) - curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.64f) - curveToRelative(0.0f, -2.29f, -1.8f, -3.9f, -3.88f, -3.9f) - close() - } - } - return _weatherRain!! - } - -private var _weatherRain: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherRainShowersDay.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherRainShowersDay.kt deleted file mode 100644 index d0de12fa..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherRainShowersDay.kt +++ /dev/null @@ -1,100 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WeatherRainShowersDay: ImageVector - get() { - if (_weatherRainShowersDay != null) { - return _weatherRainShowersDay!! - } - _weatherRainShowersDay = fluentIcon(name = "Regular.WeatherRainShowersDay") { - fluentPath { - moveTo(13.0f, 6.01f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.37f) - horizontalLineToRelative(-0.62f) - lineToRelative(-1.55f, 2.62f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, -0.66f) - lineToRelative(0.04f, -0.1f) - lineTo(15.96f, 18.0f) - horizontalLineToRelative(-2.14f) - lineToRelative(-1.55f, 2.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, -0.66f) - lineToRelative(0.04f, -0.1f) - lineTo(12.1f, 18.0f) - lineTo(9.96f, 18.0f) - lineTo(8.4f, 20.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, -0.66f) - lineToRelative(0.04f, -0.1f) - lineTo(8.22f, 18.0f) - lineTo(7.7f, 18.0f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) - horizontalLineToRelative(0.08f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 6.01f) - close() - moveTo(13.0f, 7.51f) - arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.87f, 3.89f) - curveToRelative(0.0f, 0.35f, -0.32f, 0.63f, -0.69f, 0.63f) - horizontalLineToRelative(-0.69f) - curveToRelative(-1.26f, 0.0f, -2.28f, 1.0f, -2.28f, 2.24f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.24f) - horizontalLineToRelative(10.5f) - curveToRelative(1.26f, 0.0f, 2.29f, -1.0f, 2.29f, -2.24f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.29f, -2.24f) - horizontalLineToRelative(-0.69f) - curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.63f) - curveToRelative(0.0f, -2.29f, -1.8f, -3.9f, -3.88f, -3.9f) - close() - moveTo(4.37f, 10.17f) - curveToRelative(0.14f, 0.35f, 0.0f, 0.74f, -0.32f, 0.93f) - lineToRelative(-0.09f, 0.05f) - lineToRelative(-0.92f, 0.38f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.67f, -1.34f) - lineToRelative(0.1f, -0.05f) - lineToRelative(0.92f, -0.38f) - curveToRelative(0.38f, -0.16f, 0.82f, 0.02f, 0.98f, 0.4f) - close() - moveTo(10.85f, 5.33f) - lineTo(10.68f, 5.39f) - curveToRelative(-0.53f, 0.19f, -1.02f, 0.44f, -1.46f, 0.76f) - arcToRelative(2.44f, 2.44f, 0.0f, false, false, -2.8f, 3.67f) - curveToRelative(-0.48f, 0.13f, -0.94f, 0.35f, -1.36f, 0.63f) - arcToRelative(3.94f, 3.94f, 0.0f, false, true, 5.8f, -5.12f) - close() - moveTo(2.95f, 5.36f) - lineTo(3.05f, 5.4f) - lineTo(3.97f, 5.78f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 3.5f, 7.2f) - lineToRelative(-0.1f, -0.03f) - lineToRelative(-0.93f, -0.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.47f, -1.42f) - close() - moveTo(6.75f, 2.38f) - lineTo(6.8f, 2.47f) - lineTo(7.19f, 3.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.67f) - lineToRelative(-0.04f, -0.1f) - lineToRelative(-0.38f, -0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.66f) - close() - moveTo(11.11f, 2.06f) - curveToRelative(0.35f, 0.14f, 0.53f, 0.52f, 0.44f, 0.87f) - lineToRelative(-0.03f, 0.1f) - lineToRelative(-0.39f, 0.93f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.42f, -0.46f) - lineToRelative(0.04f, -0.11f) - lineToRelative(0.38f, -0.93f) - curveToRelative(0.16f, -0.38f, 0.6f, -0.56f, 0.98f, -0.4f) - close() - } - } - return _weatherRainShowersDay!! - } - -private var _weatherRainShowersDay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherRainShowersNight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherRainShowersNight.kt deleted file mode 100644 index c2c85c89..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherRainShowersNight.kt +++ /dev/null @@ -1,75 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WeatherRainShowersNight: ImageVector - get() { - if (_weatherRainShowersNight != null) { - return _weatherRainShowersNight!! - } - _weatherRainShowersNight = fluentIcon(name = "Regular.WeatherRainShowersNight") { - fluentPath { - moveTo(13.0f, 6.02f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) - horizontalLineToRelative(-0.64f) - lineToRelative(-1.53f, 2.62f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, -0.66f) - lineToRelative(0.05f, -0.1f) - lineToRelative(1.1f, -1.86f) - lineTo(13.8f, 18.01f) - lineToRelative(-1.53f, 2.62f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, -0.66f) - lineToRelative(0.05f, -0.1f) - lineToRelative(1.1f, -1.86f) - lineTo(9.93f, 18.01f) - lineTo(8.4f, 20.63f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, -0.66f) - lineToRelative(0.04f, -0.1f) - lineToRelative(1.1f, -1.86f) - horizontalLineToRelative(-0.5f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) - horizontalLineToRelative(0.07f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 6.02f) - close() - moveTo(13.0f, 7.52f) - arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.88f, 3.88f) - curveToRelative(0.0f, 0.36f, -0.31f, 0.64f, -0.68f, 0.64f) - horizontalLineToRelative(-0.69f) - curveToRelative(-1.26f, 0.0f, -2.28f, 1.0f, -2.28f, 2.24f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.24f) - horizontalLineToRelative(10.5f) - curveToRelative(1.26f, 0.0f, 2.29f, -1.0f, 2.29f, -2.24f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.29f, -2.24f) - horizontalLineToRelative(-0.69f) - curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.64f) - curveToRelative(0.0f, -2.28f, -1.8f, -3.88f, -3.88f, -3.88f) - close() - moveTo(6.6f, 2.0f) - arcToRelative(5.06f, 5.06f, 0.0f, false, true, 4.47f, 3.27f) - curveToRelative(-0.5f, 0.14f, -0.96f, 0.34f, -1.39f, 0.58f) - arcTo(3.55f, 3.55f, 0.0f, false, false, 7.48f, 3.7f) - arcToRelative(5.97f, 5.97f, 0.0f, false, true, -0.62f, 3.61f) - lineToRelative(-0.12f, 0.21f) - arcToRelative(5.75f, 5.75f, 0.0f, false, true, -2.72f, 2.3f) - arcToRelative(3.61f, 3.61f, 0.0f, false, false, 1.07f, 0.62f) - curveToRelative(-0.45f, 0.3f, -0.84f, 0.68f, -1.16f, 1.12f) - lineToRelative(-0.16f, -0.08f) - arcToRelative(5.06f, 5.06f, 0.0f, false, true, -1.64f, -1.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.37f, -1.13f) - curveToRelative(1.64f, -0.59f, 2.52f, -1.25f, 3.03f, -2.22f) - curveToRelative(0.55f, -1.05f, 0.66f, -2.17f, 0.29f, -3.67f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 6.59f, 2.0f) - close() - } - } - return _weatherRainShowersNight!! - } - -private var _weatherRainShowersNight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherRainSnow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherRainSnow.kt deleted file mode 100644 index 1610eb5f..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherRainSnow.kt +++ /dev/null @@ -1,68 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WeatherRainSnow: ImageVector - get() { - if (_weatherRainSnow != null) { - return _weatherRainSnow!! - } - _weatherRainSnow = fluentIcon(name = "Regular.WeatherRainSnow") { - fluentPath { - moveTo(14.5f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(12.0f, 4.0f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.37f) - lineTo(16.0f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.43f, 0.0f) - lineTo(8.99f, 16.0f) - lineTo(7.4f, 18.62f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, -0.66f) - lineToRelative(0.05f, -0.09f) - lineTo(7.26f, 16.0f) - horizontalLineToRelative(-0.57f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.37f) - horizontalLineToRelative(0.08f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 12.0f, 4.0f) - close() - moveTo(11.58f, 16.7f) - curveToRelative(0.33f, 0.2f, 0.46f, 0.6f, 0.32f, 0.94f) - lineToRelative(-0.05f, 0.09f) - lineToRelative(-0.56f, 0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, -0.66f) - lineToRelative(0.05f, -0.1f) - lineToRelative(0.56f, -0.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, -0.27f) - close() - moveTo(17.25f, 17.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(12.0f, 5.5f) - arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.88f, 3.89f) - curveToRelative(0.0f, 0.36f, -0.32f, 0.64f, -0.68f, 0.64f) - horizontalLineToRelative(-0.7f) - curveToRelative(-1.25f, 0.0f, -2.27f, 1.0f, -2.27f, 2.23f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.24f) - horizontalLineToRelative(10.5f) - curveToRelative(1.26f, 0.0f, 2.28f, -1.0f, 2.28f, -2.24f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.28f, -2.23f) - horizontalLineToRelative(-0.69f) - curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.64f) - curveToRelative(0.0f, -2.29f, -1.8f, -3.9f, -3.88f, -3.9f) - close() - } - } - return _weatherRainSnow!! - } - -private var _weatherRainSnow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherSnow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherSnow.kt deleted file mode 100644 index df4dded5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherSnow.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WeatherSnow: ImageVector - get() { - if (_weatherSnow != null) { - return _weatherSnow!! - } - _weatherSnow = fluentIcon(name = "Regular.WeatherSnow") { - fluentPath { - moveTo(9.75f, 18.15f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(14.25f, 18.15f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(7.5f, 17.15f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(12.0f, 17.15f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(16.5f, 17.15f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(12.0f, 4.0f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.37f) - lineTo(6.69f, 16.0f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.37f) - horizontalLineToRelative(0.08f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 12.0f, 4.0f) - close() - moveTo(12.0f, 5.5f) - arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.88f, 3.89f) - curveToRelative(0.0f, 0.36f, -0.32f, 0.64f, -0.68f, 0.64f) - horizontalLineToRelative(-0.7f) - curveToRelative(-1.25f, 0.0f, -2.27f, 1.0f, -2.27f, 2.23f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.24f) - horizontalLineToRelative(10.5f) - curveToRelative(1.26f, 0.0f, 2.28f, -1.0f, 2.28f, -2.24f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.28f, -2.23f) - horizontalLineToRelative(-0.69f) - curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.64f) - curveToRelative(0.0f, -2.29f, -1.8f, -3.9f, -3.88f, -3.9f) - close() - } - } - return _weatherSnow!! - } - -private var _weatherSnow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherSnowShowerDay.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherSnowShowerDay.kt deleted file mode 100644 index fc34e886..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherSnowShowerDay.kt +++ /dev/null @@ -1,105 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WeatherSnowShowerDay: ImageVector - get() { - if (_weatherSnowShowerDay != null) { - return _weatherSnowShowerDay!! - } - _weatherSnowShowerDay = fluentIcon(name = "Regular.WeatherSnowShowerDay") { - fluentPath { - moveTo(10.75f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(15.25f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(8.5f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(13.0f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(17.5f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(13.0f, 6.01f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.37f) - lineTo(7.69f, 18.01f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.37f) - horizontalLineToRelative(0.08f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 6.01f) - close() - moveTo(13.0f, 7.51f) - arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.87f, 3.89f) - curveToRelative(0.0f, 0.35f, -0.32f, 0.63f, -0.69f, 0.63f) - horizontalLineToRelative(-0.69f) - curveToRelative(-1.26f, 0.0f, -2.28f, 1.0f, -2.28f, 2.24f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.24f) - horizontalLineToRelative(10.5f) - curveToRelative(1.26f, 0.0f, 2.29f, -1.0f, 2.29f, -2.24f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.29f, -2.24f) - horizontalLineToRelative(-0.69f) - curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.63f) - curveToRelative(0.0f, -2.29f, -1.8f, -3.9f, -3.88f, -3.9f) - close() - moveTo(4.37f, 10.17f) - curveToRelative(0.14f, 0.35f, 0.0f, 0.74f, -0.32f, 0.93f) - lineToRelative(-0.09f, 0.05f) - lineToRelative(-0.92f, 0.38f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.67f, -1.34f) - lineToRelative(0.1f, -0.05f) - lineToRelative(0.92f, -0.38f) - curveToRelative(0.38f, -0.16f, 0.82f, 0.02f, 0.98f, 0.4f) - close() - moveTo(10.85f, 5.33f) - lineTo(10.68f, 5.39f) - curveToRelative(-0.53f, 0.19f, -1.02f, 0.44f, -1.46f, 0.76f) - arcToRelative(2.44f, 2.44f, 0.0f, false, false, -2.8f, 3.67f) - curveToRelative(-0.48f, 0.13f, -0.94f, 0.35f, -1.36f, 0.63f) - arcToRelative(3.94f, 3.94f, 0.0f, false, true, 5.8f, -5.12f) - close() - moveTo(2.95f, 5.36f) - lineTo(3.05f, 5.4f) - lineTo(3.97f, 5.78f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 3.5f, 7.2f) - lineToRelative(-0.1f, -0.03f) - lineToRelative(-0.93f, -0.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.47f, -1.42f) - close() - moveTo(6.75f, 2.38f) - lineTo(6.8f, 2.47f) - lineTo(7.19f, 3.39f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.67f) - lineToRelative(-0.04f, -0.1f) - lineToRelative(-0.38f, -0.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.66f) - close() - moveTo(11.11f, 2.06f) - curveToRelative(0.35f, 0.14f, 0.53f, 0.52f, 0.44f, 0.87f) - lineToRelative(-0.03f, 0.1f) - lineToRelative(-0.39f, 0.93f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.42f, -0.46f) - lineToRelative(0.04f, -0.11f) - lineToRelative(0.38f, -0.93f) - curveToRelative(0.16f, -0.38f, 0.6f, -0.56f, 0.98f, -0.4f) - close() - } - } - return _weatherSnowShowerDay!! - } - -private var _weatherSnowShowerDay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherSnowShowerNight.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherSnowShowerNight.kt deleted file mode 100644 index a51cd0f7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherSnowShowerNight.kt +++ /dev/null @@ -1,80 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WeatherSnowShowerNight: ImageVector - get() { - if (_weatherSnowShowerNight != null) { - return _weatherSnowShowerNight!! - } - _weatherSnowShowerNight = fluentIcon(name = "Regular.WeatherSnowShowerNight") { - fluentPath { - moveTo(10.75f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(15.25f, 20.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(8.5f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(13.0f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(17.5f, 19.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(13.0f, 6.02f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) - lineTo(7.69f, 18.01f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) - horizontalLineToRelative(0.08f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 6.02f) - close() - moveTo(13.0f, 7.52f) - arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.88f, 3.88f) - curveToRelative(0.0f, 0.36f, -0.31f, 0.64f, -0.68f, 0.64f) - horizontalLineToRelative(-0.69f) - curveToRelative(-1.26f, 0.0f, -2.28f, 1.0f, -2.28f, 2.24f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.24f) - horizontalLineToRelative(10.5f) - curveToRelative(1.26f, 0.0f, 2.29f, -1.0f, 2.29f, -2.24f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.29f, -2.24f) - horizontalLineToRelative(-0.69f) - curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.64f) - curveToRelative(0.0f, -2.28f, -1.8f, -3.88f, -3.88f, -3.88f) - close() - moveTo(6.6f, 2.0f) - arcToRelative(5.06f, 5.06f, 0.0f, false, true, 4.47f, 3.27f) - curveToRelative(-0.5f, 0.14f, -0.96f, 0.34f, -1.39f, 0.58f) - arcTo(3.55f, 3.55f, 0.0f, false, false, 7.48f, 3.7f) - arcToRelative(5.97f, 5.97f, 0.0f, false, true, -0.62f, 3.61f) - lineToRelative(-0.12f, 0.21f) - arcToRelative(5.75f, 5.75f, 0.0f, false, true, -2.72f, 2.3f) - arcToRelative(3.61f, 3.61f, 0.0f, false, false, 1.07f, 0.62f) - curveToRelative(-0.45f, 0.3f, -0.84f, 0.68f, -1.16f, 1.12f) - lineToRelative(-0.16f, -0.08f) - arcToRelative(5.06f, 5.06f, 0.0f, false, true, -1.64f, -1.52f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.37f, -1.13f) - curveToRelative(1.64f, -0.59f, 2.52f, -1.25f, 3.03f, -2.22f) - curveToRelative(0.55f, -1.05f, 0.66f, -2.17f, 0.29f, -3.67f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 6.59f, 2.0f) - close() - } - } - return _weatherSnowShowerNight!! - } - -private var _weatherSnowShowerNight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherSnowflake.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherSnowflake.kt deleted file mode 100644 index e63f5d16..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherSnowflake.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WeatherSnowflake: ImageVector - get() { - if (_weatherSnowflake != null) { - return _weatherSnowflake!! - } - _weatherSnowflake = fluentIcon(name = "Regular.WeatherSnowflake") { - fluentPath { - moveTo(11.75f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineTo(5.9f) - lineToRelative(2.13f, -2.13f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-3.19f, 3.2f) - verticalLineTo(11.0f) - horizontalLineToRelative(2.97f) - lineToRelative(3.2f, -3.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.07f) - lineTo(17.6f, 11.0f) - horizontalLineToRelative(3.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineTo(17.6f) - lineToRelative(2.13f, 2.13f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-3.2f, -3.19f) - horizontalLineTo(12.5f) - verticalLineToRelative(2.97f) - lineToRelative(3.2f, 3.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.07f, 1.06f) - lineTo(12.5f, 17.6f) - verticalLineToRelative(3.15f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineTo(17.6f) - lineToRelative(-2.13f, 2.13f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(3.19f, -3.2f) - verticalLineTo(12.5f) - horizontalLineTo(8.03f) - lineToRelative(-3.2f, 3.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.07f) - lineTo(5.9f, 12.5f) - horizontalLineTo(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineTo(5.9f) - lineTo(3.77f, 8.87f) - arcTo(0.75f, 0.75f, 0.0f, false, true, 4.83f, 7.8f) - lineTo(8.03f, 11.0f) - horizontalLineTo(11.0f) - verticalLineTo(8.03f) - lineToRelative(-3.2f, -3.2f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.07f, -1.06f) - lineTo(11.0f, 5.9f) - verticalLineTo(2.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - } - } - return _weatherSnowflake!! - } - -private var _weatherSnowflake: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherSqualls.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherSqualls.kt deleted file mode 100644 index 09ec814c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherSqualls.kt +++ /dev/null @@ -1,54 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WeatherSqualls: ImageVector - get() { - if (_weatherSqualls != null) { - return _weatherSqualls!! - } - _weatherSqualls = fluentIcon(name = "Regular.WeatherSqualls") { - fluentPath { - moveTo(8.08f, 6.88f) - arcTo(4.07f, 4.07f, 0.0f, false, true, 11.98f, 4.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, true, 0.03f, 8.0f) - lineTo(2.74f, 12.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(12.0f, 10.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, -0.03f, -5.0f) - curveToRelative(-1.13f, 0.0f, -2.13f, 0.74f, -2.46f, 1.82f) - lineToRelative(-0.04f, 0.15f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.44f, -0.44f) - lineToRelative(0.05f, -0.15f) - close() - moveTo(16.28f, 12.01f) - arcToRelative(2.93f, 2.93f, 0.0f, false, true, 5.71f, 0.92f) - lineTo(21.99f, 13.0f) - arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.99f, 3.0f) - horizontalLineToRelative(-1.3f) - arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.45f, 4.0f) - horizontalLineToRelative(-0.13f) - curveToRelative(-0.97f, 0.0f, -1.86f, -0.55f, -2.29f, -1.41f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.67f) - curveToRelative(0.18f, 0.35f, 0.55f, 0.58f, 0.95f, 0.58f) - horizontalLineToRelative(0.13f) - arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) - lineTo(2.75f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - lineTo(19.0f, 14.5f) - curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) - verticalLineToRelative(-0.07f) - arcToRelative(1.43f, 1.43f, 0.0f, false, false, -2.79f, -0.44f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.42f, -0.48f) - close() - } - } - return _weatherSqualls!! - } - -private var _weatherSqualls: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherSunny.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherSunny.kt deleted file mode 100644 index 693c8bd8..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherSunny.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WeatherSunny: ImageVector - get() { - if (_weatherSunny != null) { - return _weatherSunny!! - } - _weatherSunny = fluentIcon(name = "Regular.WeatherSunny") { - fluentPath { - moveTo(12.0f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(12.0f, 17.0f) - arcToRelative(5.0f, 5.0f, 0.0f, true, false, 0.0f, -10.0f) - arcToRelative(5.0f, 5.0f, 0.0f, false, false, 0.0f, 10.0f) - close() - moveTo(12.0f, 15.5f) - arcToRelative(3.5f, 3.5f, 0.0f, true, true, 0.0f, -7.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, true, 0.0f, 7.0f) - close() - moveTo(21.25f, 12.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.5f) - close() - moveTo(12.0f, 19.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-1.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(4.25f, 12.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(1.5f) - close() - moveTo(4.22f, 4.22f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(1.5f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) - lineToRelative(-1.5f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - moveTo(5.28f, 19.78f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(1.5f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-1.5f, 1.5f) - close() - moveTo(19.78f, 4.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-1.5f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) - lineToRelative(1.5f, -1.5f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - close() - moveTo(18.72f, 19.78f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) - lineToRelative(-1.5f, -1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(1.5f, 1.5f) - close() - } - } - return _weatherSunny!! - } - -private var _weatherSunny: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherSunnyHigh.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherSunnyHigh.kt deleted file mode 100644 index 5cbb3da5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherSunnyHigh.kt +++ /dev/null @@ -1,98 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WeatherSunnyHigh: ImageVector - get() { - if (_weatherSunnyHigh != null) { - return _weatherSunnyHigh!! - } - _weatherSunnyHigh = fluentIcon(name = "Regular.WeatherSunnyHigh") { - fluentPath { - moveTo(12.0f, 2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - verticalLineToRelative(-0.5f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - close() - moveTo(12.0f, 5.0f) - arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) - close() - moveTo(9.5f, 9.0f) - arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) - close() - moveTo(12.75f, 14.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-0.5f) - close() - moveTo(5.75f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-0.5f) - close() - moveTo(17.0f, 8.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(6.72f, 5.78f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineToRelative(-0.5f, -0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) - lineToRelative(0.5f, 0.5f) - close() - moveTo(7.78f, 12.22f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) - lineToRelative(-0.5f, 0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) - lineToRelative(0.5f, -0.5f) - curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) - close() - moveTo(17.28f, 5.78f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineToRelative(0.5f, -0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) - lineToRelative(-0.5f, 0.5f) - close() - moveTo(16.22f, 12.22f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(0.5f, 0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineToRelative(-0.5f, -0.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - moveTo(3.22f, 21.84f) - curveToRelative(-0.33f, 0.25f, -0.8f, 0.2f, -1.06f, -0.12f) - curveToRelative(-0.4f, -0.51f, 0.12f, -1.06f, 0.12f, -1.06f) - horizontalLineToRelative(0.02f) - arcToRelative(3.49f, 3.49f, 0.0f, false, true, 0.18f, -0.15f) - lineToRelative(0.54f, -0.36f) - arcTo(16.78f, 16.78f, 0.0f, false, true, 12.0f, 17.5f) - arcToRelative(16.78f, 16.78f, 0.0f, false, true, 9.7f, 3.15f) - lineToRelative(0.01f, 0.01f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.93f, 1.18f) - lineToRelative(-0.03f, -0.03f) - arcToRelative(5.63f, 5.63f, 0.0f, false, false, -0.58f, -0.4f) - arcTo(15.28f, 15.28f, 0.0f, false, false, 12.0f, 19.0f) - arcToRelative(15.28f, 15.28f, 0.0f, false, false, -8.75f, 2.81f) - lineToRelative(-0.03f, 0.02f) - close() - } - } - return _weatherSunnyHigh!! - } - -private var _weatherSunnyHigh: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherSunnyLow.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherSunnyLow.kt deleted file mode 100644 index e659a169..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherSunnyLow.kt +++ /dev/null @@ -1,69 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WeatherSunnyLow: ImageVector - get() { - if (_weatherSunnyLow != null) { - return _weatherSunnyLow!! - } - _weatherSunnyLow = fluentIcon(name = "Regular.WeatherSunnyLow") { - fluentPath { - moveTo(12.75f, 2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-1.5f) - close() - moveTo(19.03f, 4.97f) - curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) - lineToRelative(-1.06f, 1.06f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) - lineToRelative(1.06f, -1.06f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - close() - moveTo(17.41f, 13.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, false, -10.82f, 0.0f) - lineTo(2.75f, 13.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(18.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.84f) - close() - moveTo(12.0f, 8.0f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, 3.87f, 5.0f) - lineTo(8.13f, 13.0f) - arcTo(4.0f, 4.0f, 0.0f, false, true, 12.0f, 8.0f) - close() - moveTo(6.0f, 16.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - lineTo(6.75f, 17.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(10.0f, 19.75f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-2.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(4.97f, 4.97f) - curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) - lineToRelative(1.06f, 1.06f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) - lineTo(4.97f, 6.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) - close() - } - } - return _weatherSunnyLow!! - } - -private var _weatherSunnyLow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherThunderstorm.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherThunderstorm.kt deleted file mode 100644 index 9b25d1ad..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WeatherThunderstorm.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WeatherThunderstorm: ImageVector - get() { - if (_weatherThunderstorm != null) { - return _weatherThunderstorm!! - } - _weatherThunderstorm = fluentIcon(name = "Regular.WeatherThunderstorm") { - fluentPath { - moveToRelative(10.46f, 15.75f) - lineToRelative(2.24f, -2.49f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.18f, 0.92f) - lineToRelative(-0.06f, 0.08f) - lineToRelative(-1.12f, 1.24f) - horizontalLineToRelative(2.28f) - curveToRelative(0.6f, 0.0f, 0.94f, 0.65f, 0.65f, 1.13f) - lineToRelative(-0.06f, 0.09f) - lineToRelative(-3.21f, 4.03f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.24f, -0.84f) - lineToRelative(0.06f, -0.1f) - lineTo(13.42f, 17.0f) - horizontalLineToRelative(-2.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.62f, -1.17f) - lineToRelative(0.06f, -0.08f) - lineToRelative(2.24f, -2.49f) - lineToRelative(-2.24f, 2.49f) - close() - moveTo(13.0f, 5.0f) - curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) - horizontalLineToRelative(0.08f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) - horizontalLineToRelative(-1.79f) - arcToRelative(1.33f, 1.33f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(1.73f) - curveToRelative(1.26f, 0.0f, 2.29f, -1.0f, 2.29f, -2.23f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.29f, -2.24f) - horizontalLineToRelative(-0.69f) - curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.63f) - curveToRelative(0.0f, -2.29f, -1.8f, -3.9f, -3.88f, -3.9f) - arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.88f, 3.9f) - curveToRelative(0.0f, 0.35f, -0.31f, 0.63f, -0.68f, 0.63f) - horizontalLineToRelative(-0.69f) - curveToRelative(-1.26f, 0.0f, -2.28f, 1.0f, -2.28f, 2.24f) - arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.24f) - horizontalLineToRelative(1.76f) - arcToRelative(1.33f, 1.33f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineTo(7.69f) - arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.37f) - horizontalLineToRelative(0.08f) - arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 5.0f) - close() - moveTo(10.0f, 2.0f) - curveToRelative(1.62f, 0.0f, 3.05f, 0.82f, 3.9f, 2.06f) - arcToRelative(7.5f, 7.5f, 0.0f, false, false, -2.04f, 0.03f) - arcToRelative(3.21f, 3.21f, 0.0f, false, false, -5.03f, 2.07f) - lineToRelative(-0.07f, 0.41f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.99f, 0.83f) - horizontalLineToRelative(-0.49f) - arcToRelative(1.78f, 1.78f, 0.0f, false, false, -1.26f, 3.04f) - curveToRelative(-0.32f, 0.4f, -0.57f, 0.85f, -0.74f, 1.34f) - arcTo(3.28f, 3.28f, 0.0f, false, true, 5.1f, 5.9f) - horizontalLineToRelative(0.25f) - arcTo(4.72f, 4.72f, 0.0f, false, true, 10.0f, 2.0f) - close() - } - } - return _weatherThunderstorm!! - } - -private var _weatherThunderstorm: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WebAsset.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WebAsset.kt deleted file mode 100644 index 6d9e8a44..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WebAsset.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WebAsset: ImageVector - get() { - if (_webAsset != null) { - return _webAsset!! - } - _webAsset = fluentIcon(name = "Regular.WebAsset") { - fluentPath { - moveTo(6.75f, 6.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(10.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineTo(6.75f) - close() - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - verticalLineTo(6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - horizontalLineTo(6.25f) - close() - moveTo(4.5f, 6.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(11.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineTo(6.25f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - verticalLineTo(6.25f) - close() - } - } - return _webAsset!! - } - -private var _webAsset: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Whiteboard.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Whiteboard.kt deleted file mode 100644 index 9c66942a..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Whiteboard.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Whiteboard: ImageVector - get() { - if (_whiteboard != null) { - return _whiteboard!! - } - _whiteboard = fluentIcon(name = "Regular.Whiteboard") { - fluentPath { - moveToRelative(15.99f, 4.0f) - lineToRelative(-1.5f, 1.5f) - lineTo(5.1f, 5.5f) - curveToRelative(-0.9f, 0.08f, -1.61f, 0.83f, -1.61f, 1.75f) - verticalLineToRelative(2.24f) - lineToRelative(2.61f, -1.64f) - curveToRelative(1.0f, -0.63f, 2.32f, -0.37f, 3.0f, 0.57f) - lineToRelative(0.1f, 0.14f) - curveToRelative(0.4f, 0.63f, 0.46f, 1.4f, 0.17f, 2.08f) - lineToRelative(-0.08f, 0.17f) - lineToRelative(-1.21f, 2.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.93f, 1.05f) - lineToRelative(0.1f, -0.04f) - lineToRelative(1.76f, -1.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.83f, 1.25f) - lineToRelative(-0.09f, 0.06f) - lineToRelative(-1.76f, 1.0f) - arcToRelative(2.25f, 2.25f, 0.0f, false, true, -3.17f, -2.87f) - lineToRelative(0.07f, -0.15f) - lineToRelative(1.21f, -2.28f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.96f, -1.04f) - lineToRelative(-0.1f, 0.05f) - lineToRelative(-3.41f, 2.14f) - verticalLineToRelative(5.5f) - curveToRelative(0.0f, 0.96f, 0.78f, 1.74f, 1.75f, 1.74f) - horizontalLineToRelative(13.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - verticalLineToRelative(-7.3f) - lineToRelative(1.5f, -1.5f) - verticalLineToRelative(8.8f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - lineTo(5.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - verticalLineToRelative(-9.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(5.25f, 4.0f) - horizontalLineToRelative(10.74f) - close() - moveTo(21.18f, 3.54f) - lineTo(21.31f, 3.67f) - lineTo(21.43f, 3.8f) - curveToRelative(0.76f, 0.89f, 0.72f, 2.23f, -0.13f, 3.07f) - lineToRelative(-4.28f, 4.28f) - curveToRelative(-0.26f, 0.26f, -0.58f, 0.45f, -0.94f, 0.56f) - lineToRelative(-2.33f, 0.7f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.24f, -1.27f) - lineToRelative(0.74f, -2.29f) - curveToRelative(0.11f, -0.34f, 0.3f, -0.65f, 0.56f, -0.9f) - lineToRelative(4.29f, -4.29f) - arcToRelative(2.27f, 2.27f, 0.0f, false, true, 3.08f, -0.12f) - close() - moveTo(19.16f, 4.73f) - lineTo(14.86f, 9.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.18f, 0.3f) - lineToRelative(-0.45f, 1.39f) - lineToRelative(1.42f, -0.43f) - curveToRelative(0.12f, -0.03f, 0.23f, -0.1f, 0.31f, -0.18f) - lineToRelative(4.28f, -4.28f) - lineToRelative(0.08f, -0.08f) - arcToRelative(0.77f, 0.77f, 0.0f, false, false, -1.16f, -1.0f) - close() - } - } - return _whiteboard!! - } - -private var _whiteboard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Wifi1.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Wifi1.kt deleted file mode 100644 index 14a70582..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Wifi1.kt +++ /dev/null @@ -1,47 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Wifi1: ImageVector - get() { - if (_wifi1 != null) { - return _wifi1!! - } - _wifi1 = fluentIcon(name = "Regular.Wifi1") { - fluentPath { - moveTo(17.74f, 10.75f) - curveToRelative(0.6f, 0.6f, 1.1f, 1.3f, 1.5f, 2.07f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.34f, 0.68f) - arcToRelative(6.56f, 6.56f, 0.0f, false, false, -11.71f, -0.02f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.34f, -0.67f) - arcToRelative(8.06f, 8.06f, 0.0f, false, true, 12.9f, -2.06f) - close() - moveTo(15.64f, 13.82f) - curveToRelative(0.45f, 0.45f, 0.82f, 1.0f, 1.08f, 1.58f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.38f, 0.6f) - arcTo(3.6f, 3.6f, 0.0f, false, false, 8.75f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.37f, -0.6f) - arcToRelative(5.1f, 5.1f, 0.0f, false, true, 8.26f, -1.57f) - close() - moveTo(20.44f, 8.28f) - curveToRelative(0.52f, 0.5f, 1.0f, 1.09f, 1.42f, 1.7f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.24f, 0.85f) - arcToRelative(10.45f, 10.45f, 0.0f, false, false, -17.23f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.23f, -0.86f) - arcToRelative(11.95f, 11.95f, 0.0f, false, true, 18.29f, -1.69f) - close() - moveTo(13.06f, 16.44f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -2.12f, 2.12f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.12f, -2.12f) - close() - } - } - return _wifi1!! - } - -private var _wifi1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Wifi2.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Wifi2.kt deleted file mode 100644 index 0ce0b3ac..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Wifi2.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Wifi2: ImageVector - get() { - if (_wifi2 != null) { - return _wifi2!! - } - _wifi2 = fluentIcon(name = "Regular.Wifi2") { - fluentPath { - moveTo(17.74f, 10.75f) - curveToRelative(0.6f, 0.6f, 1.1f, 1.3f, 1.5f, 2.07f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.34f, 0.68f) - arcToRelative(6.56f, 6.56f, 0.0f, false, false, -11.71f, -0.02f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.34f, -0.67f) - arcToRelative(8.06f, 8.06f, 0.0f, false, true, 12.9f, -2.06f) - close() - moveTo(15.64f, 13.82f) - curveToRelative(0.45f, 0.45f, 0.82f, 1.0f, 1.08f, 1.58f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.38f, 0.6f) - arcTo(3.6f, 3.6f, 0.0f, false, false, 8.75f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.37f, -0.6f) - arcToRelative(5.1f, 5.1f, 0.0f, false, true, 8.26f, -1.57f) - close() - moveTo(13.06f, 16.44f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -2.12f, 2.12f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.12f, -2.12f) - close() - } - } - return _wifi2!! - } - -private var _wifi2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Wifi3.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Wifi3.kt deleted file mode 100644 index 760ee22b..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Wifi3.kt +++ /dev/null @@ -1,33 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Wifi3: ImageVector - get() { - if (_wifi3 != null) { - return _wifi3!! - } - _wifi3 = fluentIcon(name = "Regular.Wifi3") { - fluentPath { - moveTo(10.94f, 16.44f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, 2.12f, 2.12f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.12f, -2.12f) - close() - moveTo(8.44f, 13.82f) - arcToRelative(5.1f, 5.1f, 0.0f, false, true, 8.28f, 1.58f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.38f, 0.6f) - arcTo(3.6f, 3.6f, 0.0f, false, false, 8.75f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.37f, -0.6f) - curveToRelative(0.26f, -0.59f, 0.62f, -1.12f, 1.06f, -1.57f) - close() - } - } - return _wifi3!! - } - -private var _wifi3: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Wifi4.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Wifi4.kt deleted file mode 100644 index 3b657c35..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Wifi4.kt +++ /dev/null @@ -1,26 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Wifi4: ImageVector - get() { - if (_wifi4 != null) { - return _wifi4!! - } - _wifi4 = fluentIcon(name = "Regular.Wifi4") { - fluentPath { - moveTo(10.94f, 18.56f) - arcToRelative(1.5f, 1.5f, 0.0f, true, false, 2.12f, -2.12f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.12f, 2.12f) - close() - } - } - return _wifi4!! - } - -private var _wifi4: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WifiLock.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WifiLock.kt deleted file mode 100644 index 71ce67bb..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WifiLock.kt +++ /dev/null @@ -1,73 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WifiLock: ImageVector - get() { - if (_wifiLock != null) { - return _wifiLock!! - } - _wifiLock = fluentIcon(name = "Regular.WifiLock") { - fluentPath { - moveTo(17.74f, 10.75f) - curveToRelative(0.6f, 0.6f, 1.1f, 1.3f, 1.5f, 2.07f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.34f, 0.68f) - arcToRelative(6.56f, 6.56f, 0.0f, false, false, -8.85f, -2.9f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -1.4f, -0.9f) - arcToRelative(8.07f, 8.07f, 0.0f, false, true, 10.1f, 1.05f) - close() - moveTo(15.64f, 13.82f) - curveToRelative(0.45f, 0.45f, 0.82f, 1.0f, 1.07f, 1.58f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.37f, 0.6f) - arcToRelative(3.59f, 3.59f, 0.0f, false, false, -3.93f, -2.12f) - arcToRelative(2.5f, 2.5f, 0.0f, false, false, -1.41f, -0.83f) - verticalLineToRelative(-0.29f) - arcToRelative(5.1f, 5.1f, 0.0f, false, true, 5.64f, 1.06f) - close() - moveTo(20.44f, 8.28f) - curveToRelative(0.52f, 0.5f, 1.0f, 1.09f, 1.42f, 1.7f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.24f, 0.85f) - arcToRelative(10.45f, 10.45f, 0.0f, false, false, -17.23f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.23f, -0.86f) - arcToRelative(11.95f, 11.95f, 0.0f, false, true, 18.29f, -1.69f) - close() - moveTo(13.06f, 16.44f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 12.0f, 19.0f) - verticalLineToRelative(-3.0f) - curveToRelative(0.38f, 0.0f, 0.77f, 0.15f, 1.06f, 0.44f) - close() - moveTo(4.0f, 14.0f) - verticalLineToRelative(-1.0f) - arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(0.5f) - curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) - verticalLineToRelative(5.0f) - curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) - horizontalLineToRelative(-6.0f) - arcTo(1.5f, 1.5f, 0.0f, false, true, 2.0f, 20.5f) - verticalLineToRelative(-5.0f) - curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) - lineTo(4.0f, 14.0f) - close() - moveTo(5.5f, 13.0f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(-1.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - close() - moveTo(7.5f, 18.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) - close() - } - } - return _wifiLock!! - } - -private var _wifiLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WifiOff.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WifiOff.kt deleted file mode 100644 index 908627b7..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WifiOff.kt +++ /dev/null @@ -1,56 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WifiOff: ImageVector - get() { - if (_wifiOff != null) { - return _wifiOff!! - } - _wifiOff = fluentIcon(name = "Regular.WifiOff") { - fluentPath { - moveTo(3.28f, 2.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) - lineToRelative(3.36f, 3.36f) - arcToRelative(12.0f, 12.0f, 0.0f, false, false, -3.42f, 3.33f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.23f, 0.85f) - arcToRelative(10.47f, 10.47f, 0.0f, false, true, 3.28f, -3.09f) - lineToRelative(1.6f, 1.6f) - arcToRelative(8.06f, 8.06f, 0.0f, false, false, -3.42f, 3.48f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.34f, 0.67f) - arcToRelative(6.51f, 6.51f, 0.0f, false, true, 3.2f, -3.03f) - lineToRelative(1.93f, 1.93f) - arcToRelative(5.07f, 5.07f, 0.0f, false, false, -3.94f, 3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.37f, 0.61f) - arcToRelative(3.59f, 3.59f, 0.0f, false, true, 4.1f, -2.07f) - lineToRelative(7.87f, 7.86f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) - lineTo(3.28f, 2.22f) - close() - moveTo(11.58f, 8.4f) - lineTo(13.17f, 10.0f) - arcToRelative(6.53f, 6.53f, 0.0f, false, true, 4.73f, 3.51f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.34f, -0.68f) - arcToRelative(8.04f, 8.04f, 0.0f, false, false, -7.65f, -4.42f) - close() - moveTo(8.48f, 5.3f) - lineTo(9.71f, 6.53f) - arcToRelative(10.44f, 10.44f, 0.0f, false, true, 10.91f, 4.3f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.24f, -0.85f) - arcTo(11.95f, 11.95f, 0.0f, false, false, 8.49f, 5.3f) - close() - moveTo(13.06f, 16.44f) - arcToRelative(1.5f, 1.5f, 0.0f, true, true, -2.12f, 2.12f) - arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.12f, -2.12f) - close() - } - } - return _wifiOff!! - } - -private var _wifiOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WifiWarning.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WifiWarning.kt deleted file mode 100644 index 593dfa31..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WifiWarning.kt +++ /dev/null @@ -1,64 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WifiWarning: ImageVector - get() { - if (_wifiWarning != null) { - return _wifiWarning!! - } - _wifiWarning = fluentIcon(name = "Regular.WifiWarning") { - fluentPath { - moveToRelative(17.74f, 10.75f) - lineToRelative(0.3f, 0.3f) - arcToRelative(2.54f, 2.54f, 0.0f, false, false, -1.85f, 0.31f) - arcToRelative(6.56f, 6.56f, 0.0f, false, false, -10.0f, 2.12f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.34f, -0.67f) - arcToRelative(8.06f, 8.06f, 0.0f, false, true, 12.9f, -2.06f) - close() - moveTo(11.96f, 19.0f) - lineToRelative(1.21f, -2.43f) - arcTo(1.5f, 1.5f, 0.0f, true, false, 11.95f, 19.0f) - close() - moveTo(14.19f, 14.54f) - lineTo(14.86f, 13.18f) - arcToRelative(5.1f, 5.1f, 0.0f, false, false, -7.48f, 2.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.37f, 0.61f) - arcToRelative(3.6f, 3.6f, 0.0f, false, true, 5.43f, -1.45f) - close() - moveTo(20.45f, 8.28f) - curveToRelative(0.5f, 0.5f, 0.99f, 1.09f, 1.4f, 1.7f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.23f, 0.85f) - arcToRelative(10.45f, 10.45f, 0.0f, false, false, -17.23f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.23f, -0.86f) - arcToRelative(11.95f, 11.95f, 0.0f, false, true, 18.29f, -1.69f) - close() - moveTo(16.15f, 12.83f) - lineTo(12.16f, 20.83f) - arcTo(1.5f, 1.5f, 0.0f, false, false, 13.5f, 23.0f) - horizontalLineToRelative(8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.34f, -2.17f) - lineToRelative(-4.0f, -8.0f) - arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.68f, 0.0f) - close() - moveTo(18.0f, 15.5f) - verticalLineToRelative(3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) - verticalLineToRelative(-3.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) - close() - moveTo(17.5f, 21.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) - close() - } - } - return _wifiWarning!! - } - -private var _wifiWarning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Window.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Window.kt deleted file mode 100644 index b68e1bf5..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Window.kt +++ /dev/null @@ -1,48 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Window: ImageVector - get() { - if (_window != null) { - return _window!! - } - _window = fluentIcon(name = "Regular.Window") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(11.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(19.5f, 7.0f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(19.5f, 7.0f) - close() - moveTo(4.5f, 8.5f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(9.25f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 8.5f) - close() - } - } - return _window!! - } - -private var _window: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WindowApps.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WindowApps.kt deleted file mode 100644 index 3087b8d9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WindowApps.kt +++ /dev/null @@ -1,83 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WindowApps: ImageVector - get() { - if (_windowApps != null) { - return _windowApps!! - } - _windowApps = fluentIcon(name = "Regular.WindowApps") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(2.76f) - lineTo(9.0f, 20.75f) - lineTo(9.0f, 19.5f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 8.5f) - horizontalLineToRelative(15.0f) - lineTo(19.5f, 9.0f) - lineTo(21.0f, 9.0f) - lineTo(21.0f, 6.26f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(19.5f, 7.0f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(19.5f, 7.0f) - close() - moveTo(12.25f, 15.5f) - horizontalLineToRelative(3.25f) - verticalLineToRelative(-3.25f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - horizontalLineToRelative(3.0f) - curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) - verticalLineToRelative(7.5f) - curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) - horizontalLineToRelative(-7.5f) - curveTo(11.01f, 23.0f, 10.0f, 22.0f, 10.0f, 20.75f) - verticalLineToRelative(-3.0f) - curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) - close() - moveTo(17.0f, 12.25f) - verticalLineToRelative(3.25f) - horizontalLineToRelative(4.5f) - verticalLineToRelative(-3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-3.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - close() - moveTo(15.5f, 21.5f) - lineTo(15.5f, 17.0f) - horizontalLineToRelative(-3.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(3.0f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(3.25f) - close() - moveTo(17.0f, 17.0f) - verticalLineToRelative(4.5f) - horizontalLineToRelative(2.75f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) - lineTo(21.5f, 17.0f) - lineTo(17.0f, 17.0f) - close() - } - } - return _windowApps!! - } - -private var _windowApps: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WindowArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WindowArrowUp.kt deleted file mode 100644 index a3820ddd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WindowArrowUp.kt +++ /dev/null @@ -1,78 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WindowArrowUp: ImageVector - get() { - if (_windowArrowUp != null) { - return _windowArrowUp!! - } - _windowArrowUp = fluentIcon(name = "Regular.WindowArrowUp") { - fluentPath { - moveTo(17.5f, 12.0f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) - close() - moveTo(17.51f, 14.0f) - horizontalLineToRelative(-0.08f) - lineToRelative(-0.06f, 0.02f) - lineToRelative(-0.08f, 0.03f) - lineToRelative(-0.07f, 0.04f) - lineToRelative(-0.06f, 0.04f) - lineToRelative(-2.51f, 2.52f) - lineToRelative(-0.06f, 0.07f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) - lineToRelative(0.06f, 0.07f) - lineToRelative(0.07f, 0.06f) - curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) - lineToRelative(0.07f, -0.06f) - lineTo(17.0f, 15.71f) - verticalLineToRelative(5.38f) - curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) - lineToRelative(0.09f, 0.01f) - horizontalLineToRelative(0.09f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) - lineTo(18.0f, 21.0f) - verticalLineToRelative(-5.3f) - lineToRelative(1.65f, 1.65f) - lineToRelative(0.07f, 0.06f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) - lineToRelative(-0.07f, -0.06f) - lineToRelative(-2.54f, -2.55f) - lineToRelative(-0.05f, -0.03f) - lineToRelative(-0.07f, -0.03f) - lineToRelative(-0.06f, -0.02f) - lineToRelative(-0.06f, -0.01f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.06f, -0.01f) - close() - moveTo(6.25f, 3.0f) - horizontalLineToRelative(11.5f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.24f, 3.07f) - lineToRelative(0.01f, 0.18f) - verticalLineToRelative(5.77f) - curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) - lineTo(19.5f, 8.0f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(9.75f) - curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) - lineToRelative(0.15f, 0.01f) - horizontalLineToRelative(5.06f) - curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) - lineTo(6.25f, 21.0f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) - lineTo(3.0f, 17.75f) - lineTo(3.0f, 6.25f) - arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) - lineTo(6.25f, 3.0f) - close() - } - } - return _windowArrowUp!! - } - -private var _windowArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WindowDatabase.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WindowDatabase.kt deleted file mode 100644 index fbb0d046..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WindowDatabase.kt +++ /dev/null @@ -1,74 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WindowDatabase: ImageVector - get() { - if (_windowDatabase != null) { - return _windowDatabase!! - } - _windowDatabase = fluentIcon(name = "Regular.WindowDatabase") { - fluentPath { - moveTo(6.25f, 3.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) - verticalLineToRelative(11.5f) - curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) - horizontalLineToRelative(5.25f) - verticalLineToRelative(-1.5f) - lineTo(6.25f, 19.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(4.5f, 8.5f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(2.08f) - curveToRelative(0.52f, 0.05f, 1.03f, 0.13f, 1.5f, 0.25f) - lineTo(21.0f, 6.25f) - curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) - lineTo(6.25f, 3.0f) - close() - moveTo(19.5f, 7.0f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(-0.75f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - lineTo(19.5f, 7.0f) - close() - moveTo(14.66f, 12.48f) - curveToRelative(0.9f, -0.3f, 2.07f, -0.48f, 3.34f, -0.48f) - reflectiveCurveToRelative(2.45f, 0.18f, 3.34f, 0.48f) - curveToRelative(0.44f, 0.15f, 0.84f, 0.35f, 1.13f, 0.59f) - curveToRelative(0.3f, 0.24f, 0.53f, 0.55f, 0.53f, 0.93f) - reflectiveCurveToRelative(-0.23f, 0.7f, -0.53f, 0.93f) - curveToRelative(-0.3f, 0.24f, -0.7f, 0.44f, -1.13f, 0.59f) - curveToRelative(-0.9f, 0.3f, -2.07f, 0.48f, -3.34f, 0.48f) - reflectiveCurveToRelative(-2.45f, -0.18f, -3.34f, -0.48f) - arcToRelative(3.79f, 3.79f, 0.0f, false, true, -1.13f, -0.59f) - curveToRelative(-0.3f, -0.24f, -0.53f, -0.55f, -0.53f, -0.93f) - reflectiveCurveToRelative(0.23f, -0.7f, 0.53f, -0.93f) - curveToRelative(0.3f, -0.24f, 0.7f, -0.44f, 1.13f, -0.59f) - close() - moveTo(13.0f, 21.0f) - verticalLineToRelative(-4.6f) - curveToRelative(0.38f, 0.23f, 0.8f, 0.4f, 1.18f, 0.54f) - curveToRelative(1.08f, 0.37f, 2.43f, 0.56f, 3.82f, 0.56f) - curveToRelative(1.39f, 0.0f, 2.74f, -0.2f, 3.82f, -0.56f) - curveToRelative(0.39f, -0.13f, 0.8f, -0.3f, 1.18f, -0.55f) - lineTo(23.0f, 21.0f) - curveToRelative(0.0f, 0.43f, -0.26f, 0.75f, -0.55f, 0.98f) - curveToRelative(-0.29f, 0.22f, -0.68f, 0.4f, -1.11f, 0.55f) - curveToRelative(-0.88f, 0.3f, -2.06f, 0.47f, -3.34f, 0.47f) - curveToRelative(-1.28f, 0.0f, -2.46f, -0.17f, -3.34f, -0.47f) - arcToRelative(3.75f, 3.75f, 0.0f, false, true, -1.11f, -0.55f) - curveToRelative(-0.29f, -0.23f, -0.55f, -0.55f, -0.55f, -0.98f) - close() - } - } - return _windowDatabase!! - } - -private var _windowDatabase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WindowDevTools.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WindowDevTools.kt deleted file mode 100644 index 42b31599..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WindowDevTools.kt +++ /dev/null @@ -1,77 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WindowDevTools: ImageVector - get() { - if (_windowDevTools != null) { - return _windowDevTools!! - } - _windowDevTools = fluentIcon(name = "Regular.WindowDevTools") { - fluentPath { - moveTo(2.0f, 5.25f) - curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) - horizontalLineToRelative(11.5f) - curveTo(18.55f, 2.0f, 20.0f, 3.46f, 20.0f, 5.25f) - verticalLineToRelative(2.76f) - arcToRelative(4.5f, 4.5f, 0.0f, false, false, -1.5f, 0.1f) - lineTo(18.5f, 7.0f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(9.75f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(7.98f) - lineToRelative(-0.44f, 0.76f) - curveToRelative(-0.13f, 0.24f, -0.22f, 0.49f, -0.28f, 0.74f) - lineTo(5.25f, 20.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) - lineTo(2.0f, 5.25f) - close() - moveTo(5.25f, 3.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(0.25f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(-0.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(5.25f, 3.5f) - close() - moveTo(19.85f, 9.0f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, -3.17f, 5.52f) - lineToRelative(-3.02f, 5.24f) - arcToRelative(1.46f, 1.46f, 0.0f, true, false, 2.53f, 1.46f) - lineToRelative(3.03f, -5.25f) - arcToRelative(3.5f, 3.5f, 0.0f, false, false, 2.97f, -5.76f) - lineToRelative(-1.65f, 2.86f) - arcToRelative(1.17f, 1.17f, 0.0f, true, true, -2.02f, -1.17f) - lineToRelative(1.65f, -2.86f) - lineToRelative(-0.31f, -0.04f) - close() - moveTo(10.3f, 9.24f) - curveToRelative(0.28f, 0.3f, 0.26f, 0.78f, -0.04f, 1.06f) - lineToRelative(-2.4f, 2.2f) - lineToRelative(2.4f, 2.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.02f, 1.1f) - lineToRelative(-3.0f, -2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.1f) - lineToRelative(3.0f, -2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 0.04f) - close() - moveTo(13.26f, 15.8f) - lineTo(15.28f, 13.95f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.01f, -2.9f) - lineTo(13.26f, 9.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.02f, 1.1f) - lineToRelative(2.4f, 2.2f) - lineToRelative(-2.4f, 2.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.02f, 1.1f) - close() - } - } - return _windowDevTools!! - } - -private var _windowDevTools: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WindowNew.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WindowNew.kt deleted file mode 100644 index ce7ed9c6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WindowNew.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WindowNew: ImageVector - get() { - if (_windowNew != null) { - return _windowNew!! - } - _windowNew = fluentIcon(name = "Regular.WindowNew") { - fluentPath { - moveTo(11.27f, 7.25f) - curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) - horizontalLineToRelative(4.73f) - curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) - verticalLineToRelative(4.73f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - lineTo(16.0f, 9.06f) - lineToRelative(-5.22f, 5.22f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) - lineTo(14.94f, 8.0f) - horizontalLineToRelative(-2.92f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) - close() - moveTo(6.16f, 5.25f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 9.25f, 3.0f) - horizontalLineToRelative(8.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(8.59f) - curveToRelative(0.0f, 1.35f, -0.83f, 2.5f, -2.0f, 3.0f) - verticalLineToRelative(0.14f) - arcToRelative(2.7f, 2.7f, 0.0f, false, true, -1.3f, 2.34f) - curveToRelative(-0.76f, 0.48f, -1.73f, 0.68f, -2.7f, 0.68f) - lineTo(7.0f, 21.0f) - arcToRelative(4.13f, 4.13f, 0.0f, false, true, -2.89f, -1.05f) - arcTo(3.63f, 3.63f, 0.0f, false, true, 3.0f, 17.25f) - lineTo(3.0f, 8.5f) - curveToRelative(0.0f, -0.87f, 0.22f, -1.68f, 0.73f, -2.3f) - arcToRelative(2.8f, 2.8f, 0.0f, false, true, 2.23f, -0.95f) - horizontalLineToRelative(0.2f) - close() - moveTo(6.0f, 6.75f) - horizontalLineToRelative(-0.04f) - curveToRelative(-0.55f, 0.0f, -0.87f, 0.18f, -1.08f, 0.42f) - curveToRelative(-0.22f, 0.26f, -0.38f, 0.7f, -0.38f, 1.33f) - verticalLineToRelative(8.75f) - curveToRelative(0.0f, 0.69f, 0.24f, 1.23f, 0.64f, 1.6f) - curveToRelative(0.4f, 0.38f, 1.02f, 0.65f, 1.86f, 0.65f) - horizontalLineToRelative(8.0f) - curveToRelative(0.8f, 0.0f, 1.45f, -0.17f, 1.88f, -0.44f) - curveToRelative(0.37f, -0.24f, 0.58f, -0.55f, 0.62f, -0.97f) - lineTo(9.25f, 18.09f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 6.0f, 14.84f) - lineTo(6.0f, 6.75f) - close() - moveTo(9.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - verticalLineToRelative(8.59f) - curveToRelative(0.0f, 0.96f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(8.5f) - curveToRelative(0.97f, 0.0f, 1.75f, -0.79f, 1.75f, -1.75f) - lineTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - horizontalLineToRelative(-8.5f) - close() - } - } - return _windowNew!! - } - -private var _windowNew: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WindowShield.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WindowShield.kt deleted file mode 100644 index 673eb69c..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WindowShield.kt +++ /dev/null @@ -1,62 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WindowShield: ImageVector - get() { - if (_windowShield != null) { - return _windowShield!! - } - _windowShield = fluentIcon(name = "Regular.WindowShield") { - fluentPath { - moveTo(17.94f, 3.0f) - horizontalLineTo(6.07f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.26f) - verticalLineToRelative(11.68f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 6.26f, 21.0f) - horizontalLineToRelative(8.29f) - arcToRelative(5.81f, 5.81f, 0.0f, false, true, -0.97f, -1.5f) - horizontalLineTo(6.11f) - curveToRelative(-0.9f, -0.08f, -1.61f, -0.83f, -1.61f, -1.75f) - verticalLineTo(8.0f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(3.89f) - curveToRelative(0.49f, 0.4f, 0.99f, 0.62f, 1.5f, 0.72f) - verticalLineTo(6.07f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 17.94f, 3.0f) - close() - moveTo(6.25f, 4.5f) - horizontalLineToRelative(11.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(0.25f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(-0.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - close() - moveTo(21.0f, 13.62f) - arcToRelative(4.13f, 4.13f, 0.0f, false, true, -1.5f, -0.52f) - arcToRelative(5.55f, 5.55f, 0.0f, false, true, -1.22f, -0.98f) - arcToRelative(0.39f, 0.39f, 0.0f, false, false, -0.56f, 0.0f) - arcToRelative(4.5f, 4.5f, 0.0f, false, true, -3.32f, 1.55f) - arcToRelative(0.4f, 0.4f, 0.0f, false, false, -0.4f, 0.41f) - verticalLineToRelative(2.77f) - curveToRelative(0.04f, 1.01f, 0.27f, 1.9f, 0.69f, 2.65f) - curveToRelative(0.32f, 0.58f, 0.76f, 1.08f, 1.31f, 1.5f) - curveToRelative(0.52f, 0.4f, 1.15f, 0.73f, 1.87f, 0.98f) - curveToRelative(0.09f, 0.03f, 0.18f, 0.03f, 0.26f, 0.0f) - curveToRelative(2.56f, -0.89f, 3.87f, -2.71f, 3.87f, -5.4f) - verticalLineTo(14.0f) - arcToRelative(0.4f, 0.4f, 0.0f, false, false, -0.4f, -0.33f) - curveToRelative(-0.2f, 0.0f, -0.4f, -0.02f, -0.6f, -0.05f) - close() - } - } - return _windowShield!! - } - -private var _windowShield: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WindowWrench.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WindowWrench.kt deleted file mode 100644 index b61a64ae..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WindowWrench.kt +++ /dev/null @@ -1,67 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WindowWrench: ImageVector - get() { - if (_windowWrench != null) { - return _windowWrench!! - } - _windowWrench = fluentIcon(name = "Regular.WindowWrench") { - fluentPath { - moveTo(3.0f, 6.25f) - curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) - horizontalLineToRelative(11.5f) - curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) - verticalLineToRelative(5.66f) - arcToRelative(1.4f, 1.4f, 0.0f, false, false, -0.99f, -0.8f) - arcToRelative(5.08f, 5.08f, 0.0f, false, false, -0.51f, -0.08f) - lineTo(19.5f, 8.5f) - horizontalLineToRelative(-15.0f) - verticalLineToRelative(9.25f) - curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) - horizontalLineToRelative(5.68f) - lineToRelative(-0.19f, 0.19f) - curveToRelative(-0.37f, 0.37f, -0.6f, 0.83f, -0.7f, 1.31f) - lineTo(6.25f, 21.0f) - arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) - lineTo(3.0f, 6.25f) - close() - moveTo(19.5f, 6.25f) - curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) - lineTo(6.25f, 4.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) - lineTo(4.5f, 7.0f) - horizontalLineToRelative(15.0f) - verticalLineToRelative(-0.75f) - close() - moveTo(12.07f, 21.0f) - curveToRelative(0.08f, -0.22f, 0.2f, -0.43f, 0.38f, -0.6f) - lineToRelative(2.73f, -2.74f) - arcToRelative(4.07f, 4.07f, 0.0f, false, true, 4.62f, -5.57f) - curveToRelative(0.21f, 0.05f, 0.33f, 0.23f, 0.33f, 0.42f) - arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.15f, 0.35f) - lineToRelative(-1.9f, 1.9f) - arcToRelative(1.53f, 1.53f, 0.0f, false, false, 2.16f, 2.16f) - lineToRelative(1.9f, -1.9f) - curveToRelative(0.26f, -0.26f, 0.69f, -0.17f, 0.77f, 0.18f) - arcToRelative(4.07f, 4.07f, 0.0f, false, true, -5.57f, 4.62f) - lineToRelative(-2.73f, 2.73f) - arcTo(1.53f, 1.53f, 0.0f, false, true, 12.07f, 21.0f) - close() - moveTo(17.57f, 21.0f) - horizontalLineToRelative(0.15f) - lineToRelative(-0.12f, -0.03f) - lineToRelative(-0.03f, 0.03f) - close() - } - } - return _windowWrench!! - } - -private var _windowWrench: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WrenchScrewdriver.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WrenchScrewdriver.kt deleted file mode 100644 index fa1b36ed..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/WrenchScrewdriver.kt +++ /dev/null @@ -1,90 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.WrenchScrewdriver: ImageVector - get() { - if (_wrenchScrewdriver != null) { - return _wrenchScrewdriver!! - } - _wrenchScrewdriver = fluentIcon(name = "Regular.WrenchScrewdriver") { - fluentPath { - moveTo(16.25f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.67f, 0.41f) - lineToRelative(-1.0f, 2.0f) - curveToRelative(-0.11f, 0.23f, -0.1f, 0.5f, 0.02f, 0.71f) - lineToRelative(0.9f, 1.58f) - lineTo(15.5f, 12.0f) - horizontalLineToRelative(-0.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(5.75f) - arcToRelative(3.5f, 3.5f, 0.0f, true, false, 7.0f, 0.0f) - verticalLineToRelative(-5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-0.75f) - lineTo(19.5f, 6.7f) - lineToRelative(0.9f, -1.58f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.02f, -0.7f) - lineToRelative(-1.0f, -2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.67f, -0.42f) - horizontalLineToRelative(-2.5f) - close() - moveTo(18.0f, 12.0f) - horizontalLineToRelative(-1.0f) - lineTo(17.0f, 6.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -0.37f) - lineToRelative(-0.8f, -1.4f) - lineToRelative(0.61f, -1.23f) - horizontalLineToRelative(1.58f) - lineToRelative(0.61f, 1.23f) - lineToRelative(-0.8f, 1.4f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 0.37f) - lineTo(18.0f, 12.0f) - close() - moveTo(15.5f, 18.5f) - lineTo(15.5f, 16.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(2.5f) - arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) - close() - moveTo(19.5f, 14.5f) - horizontalLineToRelative(-4.0f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(4.0f) - verticalLineToRelative(1.0f) - close() - moveTo(9.53f, 2.14f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.03f, 0.7f) - lineTo(8.5f, 6.5f) - arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) - lineTo(6.5f, 2.83f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.03f, -0.7f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -0.5f, 10.0f) - verticalLineToRelative(7.33f) - arcToRelative(2.54f, 2.54f, 0.0f, false, false, 5.07f, 0.0f) - verticalLineToRelative(-7.33f) - arcToRelative(5.5f, 5.5f, 0.0f, false, false, -0.51f, -10.0f) - close() - moveTo(10.0f, 6.5f) - lineTo(10.0f, 4.13f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -1.0f, 6.83f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.46f, 0.7f) - verticalLineToRelative(7.8f) - arcToRelative(1.04f, 1.04f, 0.0f, false, true, -2.08f, 0.0f) - verticalLineToRelative(-7.8f) - curveToRelative(0.0f, -0.31f, -0.18f, -0.59f, -0.46f, -0.7f) - arcToRelative(4.0f, 4.0f, 0.0f, false, true, -1.0f, -6.83f) - lineTo(5.0f, 6.5f) - arcToRelative(2.5f, 2.5f, 0.0f, true, false, 5.0f, 0.0f) - close() - } - } - return _wrenchScrewdriver!! - } - -private var _wrenchScrewdriver: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/XboxConsole.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/XboxConsole.kt deleted file mode 100644 index fe276eb9..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/XboxConsole.kt +++ /dev/null @@ -1,46 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.XboxConsole: ImageVector - get() { - if (_xboxConsole != null) { - return _xboxConsole!! - } - _xboxConsole = fluentIcon(name = "Regular.XboxConsole") { - fluentPath { - moveTo(9.5f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) - close() - moveTo(5.75f, 2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) - verticalLineToRelative(18.5f) - curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) - horizontalLineToRelative(12.5f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - verticalLineTo(2.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineTo(5.75f) - close() - moveTo(9.5f, 20.5f) - verticalLineToRelative(-8.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(8.75f) - horizontalLineTo(6.5f) - verticalLineToRelative(-17.0f) - horizontalLineToRelative(11.0f) - verticalLineToRelative(17.0f) - horizontalLineToRelative(-8.0f) - close() - } - } - return _xboxConsole!! - } - -private var _xboxConsole: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/XboxController.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/XboxController.kt deleted file mode 100644 index edc57ddd..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/XboxController.kt +++ /dev/null @@ -1,76 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.XboxController: ImageVector - get() { - if (_xboxController != null) { - return _xboxController!! - } - _xboxController = fluentIcon(name = "Regular.XboxController") { - fluentPath { - moveTo(9.8f, 5.5f) - arcToRelative(2.58f, 2.58f, 0.0f, false, false, -1.63f, -0.2f) - lineToRelative(-1.18f, 0.23f) - curveToRelative(-0.86f, 0.16f, -1.6f, 0.72f, -2.0f, 1.5f) - curveToRelative(-1.37f, 2.67f, -2.4f, 4.86f, -2.8f, 6.73f) - curveToRelative(-0.42f, 1.92f, -0.17f, 3.57f, 1.07f, 5.07f) - curveToRelative(0.82f, 1.0f, 2.23f, 0.8f, 2.97f, -0.03f) - curveToRelative(0.56f, -0.64f, 1.2f, -1.37f, 1.81f, -2.09f) - curveToRelative(0.41f, -0.47f, 1.0f, -0.75f, 1.63f, -0.75f) - horizontalLineToRelative(4.66f) - curveToRelative(0.62f, 0.0f, 1.22f, 0.28f, 1.63f, 0.75f) - lineToRelative(1.82f, 2.09f) - curveToRelative(0.73f, 0.83f, 2.14f, 1.03f, 2.96f, 0.03f) - curveToRelative(1.24f, -1.5f, 1.49f, -3.15f, 1.08f, -5.07f) - curveToRelative(-0.4f, -1.87f, -1.43f, -4.06f, -2.8f, -6.73f) - arcToRelative(2.85f, 2.85f, 0.0f, false, false, -2.0f, -1.5f) - lineToRelative(-1.19f, -0.23f) - curveToRelative(-0.53f, -0.1f, -1.1f, -0.06f, -1.64f, 0.2f) - arcToRelative(15.0f, 15.0f, 0.0f, false, false, -0.43f, 0.24f) - curveToRelative(-0.36f, 0.19f, -0.74f, 0.3f, -1.12f, 0.3f) - horizontalLineToRelative(-1.28f) - curveToRelative(-0.38f, 0.0f, -0.76f, -0.11f, -1.11f, -0.3f) - lineTo(9.8f, 5.5f) - close() - moveTo(8.45f, 6.7f) - curveToRelative(0.27f, -0.05f, 0.53f, -0.02f, 0.73f, 0.09f) - lineToRelative(0.4f, 0.2f) - curveToRelative(0.54f, 0.3f, 1.15f, 0.47f, 1.8f, 0.47f) - horizontalLineToRelative(1.27f) - curveToRelative(0.64f, 0.0f, 1.26f, -0.17f, 1.8f, -0.47f) - lineToRelative(0.4f, -0.2f) - curveToRelative(0.2f, -0.1f, 0.45f, -0.14f, 0.73f, -0.08f) - lineToRelative(1.18f, 0.22f) - curveToRelative(0.43f, 0.08f, 0.8f, 0.36f, 1.0f, 0.75f) - curveToRelative(1.38f, 2.7f, 2.32f, 4.72f, 2.67f, 6.38f) - curveToRelative(0.34f, 1.59f, 0.12f, 2.77f, -0.78f, 3.86f) - arcToRelative(0.4f, 0.4f, 0.0f, false, true, -0.35f, 0.15f) - arcToRelative(0.64f, 0.64f, 0.0f, false, true, -0.44f, -0.22f) - curveToRelative(-0.56f, -0.63f, -1.19f, -1.35f, -1.8f, -2.07f) - arcToRelative(3.58f, 3.58f, 0.0f, false, false, -2.72f, -1.25f) - horizontalLineTo(9.67f) - curveToRelative(-1.04f, 0.0f, -2.03f, 0.46f, -2.7f, 1.25f) - lineToRelative(-1.81f, 2.07f) - arcToRelative(0.64f, 0.64f, 0.0f, false, true, -0.45f, 0.22f) - arcToRelative(0.4f, 0.4f, 0.0f, false, true, -0.35f, -0.15f) - curveToRelative(-0.9f, -1.1f, -1.12f, -2.27f, -0.78f, -3.87f) - curveToRelative(0.35f, -1.65f, 1.3f, -3.67f, 2.68f, -6.37f) - curveToRelative(0.2f, -0.39f, 0.56f, -0.67f, 1.0f, -0.75f) - lineToRelative(1.18f, -0.22f) - close() - moveTo(12.0f, 11.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - } - } - return _xboxController!! - } - -private var _xboxController: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/XboxControllerError.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/XboxControllerError.kt deleted file mode 100644 index d6dd24f6..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/XboxControllerError.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.XboxControllerError: ImageVector - get() { - if (_xboxControllerError != null) { - return _xboxControllerError!! - } - _xboxControllerError = fluentIcon(name = "Regular.XboxControllerError") { - fluentPath { - moveTo(9.8f, 4.5f) - arcToRelative(2.58f, 2.58f, 0.0f, false, false, -1.63f, -0.2f) - lineToRelative(-1.18f, 0.23f) - curveToRelative(-0.87f, 0.16f, -1.6f, 0.72f, -2.0f, 1.5f) - curveToRelative(-1.38f, 2.67f, -2.4f, 4.86f, -2.8f, 6.73f) - curveToRelative(-0.42f, 1.92f, -0.17f, 3.57f, 1.07f, 5.07f) - curveToRelative(0.82f, 1.0f, 2.23f, 0.8f, 2.97f, -0.03f) - lineToRelative(1.81f, -2.09f) - curveToRelative(0.41f, -0.47f, 1.0f, -0.75f, 1.63f, -0.75f) - horizontalLineToRelative(1.51f) - curveToRelative(0.12f, -0.5f, 0.3f, -0.98f, 0.53f, -1.43f) - lineTo(9.67f, 13.53f) - curveToRelative(-1.04f, 0.0f, -2.03f, 0.46f, -2.7f, 1.25f) - lineToRelative(-1.82f, 2.07f) - arcToRelative(0.64f, 0.64f, 0.0f, false, true, -0.44f, 0.22f) - arcToRelative(0.4f, 0.4f, 0.0f, false, true, -0.35f, -0.15f) - curveToRelative(-0.9f, -1.1f, -1.12f, -2.27f, -0.78f, -3.87f) - curveToRelative(0.35f, -1.65f, 1.3f, -3.67f, 2.67f, -6.37f) - curveToRelative(0.2f, -0.39f, 0.57f, -0.67f, 1.0f, -0.75f) - lineToRelative(1.19f, -0.22f) - curveToRelative(0.27f, -0.06f, 0.53f, -0.03f, 0.73f, 0.08f) - lineToRelative(0.4f, 0.2f) - curveToRelative(0.54f, 0.3f, 1.15f, 0.47f, 1.79f, 0.47f) - horizontalLineToRelative(1.28f) - curveToRelative(0.64f, 0.0f, 1.26f, -0.17f, 1.8f, -0.47f) - lineToRelative(0.4f, -0.2f) - curveToRelative(0.2f, -0.1f, 0.45f, -0.14f, 0.72f, -0.08f) - lineToRelative(1.19f, 0.22f) - curveToRelative(0.43f, 0.08f, 0.8f, 0.36f, 1.0f, 0.75f) - curveToRelative(0.7f, 1.37f, 1.29f, 2.57f, 1.74f, 3.63f) - curveToRelative(0.7f, 0.23f, 1.35f, 0.56f, 1.92f, 1.0f) - arcTo(42.28f, 42.28f, 0.0f, false, false, 19.0f, 6.03f) - arcToRelative(2.85f, 2.85f, 0.0f, false, false, -2.0f, -1.5f) - lineToRelative(-1.18f, -0.23f) - arcToRelative(2.58f, 2.58f, 0.0f, false, false, -1.64f, 0.2f) - lineToRelative(-0.44f, 0.24f) - curveToRelative(-0.35f, 0.19f, -0.73f, 0.3f, -1.1f, 0.3f) - horizontalLineToRelative(-1.3f) - curveToRelative(-0.37f, 0.0f, -0.75f, -0.11f, -1.1f, -0.3f) - lineTo(9.8f, 4.5f) - close() - moveTo(12.0f, 10.0f) - arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) - arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) - close() - moveTo(23.0f, 16.5f) - arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) - arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) - close() - moveTo(17.5f, 13.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) - verticalLineToRelative(4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) - verticalLineToRelative(-4.0f) - arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) - close() - moveTo(17.5f, 20.13f) - arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) - arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.25f) - close() - } - } - return _xboxControllerError!! - } - -private var _xboxControllerError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Xray.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Xray.kt deleted file mode 100644 index 76fe0e38..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/Xray.kt +++ /dev/null @@ -1,84 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.Xray: ImageVector - get() { - if (_xray != null) { - return _xray!! - } - _xray = fluentIcon(name = "Regular.Xray") { - fluentPath { - moveTo(12.75f, 5.75f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(0.75f) - lineTo(9.0f, 6.5f) - arcTo(0.75f, 0.75f, 0.0f, false, false, 9.0f, 8.0f) - horizontalLineToRelative(2.25f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(1.0f) - horizontalLineToRelative(-3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) - horizontalLineToRelative(3.5f) - verticalLineToRelative(1.5f) - horizontalLineToRelative(-2.0f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 2.12f, 1.5f) - horizontalLineToRelative(1.26f) - arcToRelative(2.25f, 2.25f, 0.0f, true, false, 2.12f, -1.5f) - horizontalLineToRelative(-2.0f) - lineTo(12.75f, 13.0f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - verticalLineToRelative(-1.0f) - horizontalLineToRelative(3.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-3.5f) - lineTo(12.75f, 8.0f) - lineTo(15.0f, 8.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) - horizontalLineToRelative(-2.25f) - verticalLineToRelative(-0.75f) - close() - moveTo(14.75f, 16.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - close() - moveTo(8.5f, 16.75f) - arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) - close() - moveTo(7.25f, 2.0f) - arcTo(3.25f, 3.25f, 0.0f, false, false, 4.0f, 5.25f) - verticalLineToRelative(13.5f) - curveTo(4.0f, 20.55f, 5.46f, 22.0f, 7.25f, 22.0f) - horizontalLineToRelative(9.5f) - curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) - lineTo(20.0f, 5.25f) - curveTo(20.0f, 3.45f, 18.54f, 2.0f, 16.75f, 2.0f) - horizontalLineToRelative(-9.5f) - close() - moveTo(5.5f, 5.25f) - curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) - horizontalLineToRelative(9.5f) - curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) - verticalLineToRelative(13.5f) - curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) - horizontalLineToRelative(-9.5f) - curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) - lineTo(5.5f, 5.25f) - close() - } - } - return _xray!! - } - -private var _xray: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ZoomFit.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ZoomFit.kt deleted file mode 100644 index c5eee0ba..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ZoomFit.kt +++ /dev/null @@ -1,82 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ZoomFit: ImageVector - get() { - if (_zoomFit != null) { - return _zoomFit!! - } - _zoomFit = fluentIcon(name = "Regular.ZoomFit") { - fluentPath { - moveTo(11.49f, 2.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, 0.0f) - lineToRelative(2.2f, 2.1f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.04f, -1.09f) - lineToRelative(-2.2f, -2.09f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.1f, 0.0f) - lineTo(8.24f, 3.7f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.03f, 1.1f) - lineToRelative(2.22f, -2.1f) - close() - moveTo(4.8f, 9.27f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.09f, -1.02f) - lineToRelative(-2.1f, 2.22f) - arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.01f, 3.09f) - lineToRelative(2.1f, 2.2f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.08f, -1.03f) - lineToRelative(-2.09f, -2.2f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.03f) - lineToRelative(2.1f, -2.23f) - close() - moveTo(20.3f, 8.24f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.09f, 1.04f) - lineToRelative(2.1f, 2.2f) - curveToRelative(0.27f, 0.3f, 0.27f, 0.75f, 0.0f, 1.04f) - lineToRelative(-2.1f, 2.21f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.09f, 1.04f) - lineToRelative(2.1f, -2.22f) - curveToRelative(0.82f, -0.87f, 0.82f, -2.23f, 0.0f, -3.1f) - lineToRelative(-2.1f, -2.2f) - close() - moveTo(15.77f, 20.3f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.04f, -1.09f) - lineToRelative(-2.2f, 2.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.04f, 0.0f) - lineToRelative(-2.22f, -2.1f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.03f, 1.09f) - lineToRelative(2.22f, 2.1f) - curveToRelative(0.87f, 0.82f, 2.23f, 0.82f, 3.1f, 0.0f) - lineToRelative(2.2f, -2.1f) - close() - moveTo(9.75f, 7.0f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 7.0f, 9.75f) - verticalLineToRelative(4.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 9.75f, 17.0f) - horizontalLineToRelative(4.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 17.0f, 14.25f) - verticalLineToRelative(-4.5f) - arcTo(2.75f, 2.75f, 0.0f, false, false, 14.25f, 7.0f) - horizontalLineToRelative(-4.5f) - close() - moveTo(8.5f, 9.75f) - curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) - horizontalLineToRelative(4.5f) - curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) - verticalLineToRelative(4.5f) - curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) - horizontalLineToRelative(-4.5f) - curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) - verticalLineToRelative(-4.5f) - close() - } - } - return _zoomFit!! - } - -private var _zoomFit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ZoomIn.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ZoomIn.kt deleted file mode 100644 index 5edcc74d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ZoomIn.kt +++ /dev/null @@ -1,49 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ZoomIn: ImageVector - get() { - if (_zoomIn != null) { - return _zoomIn!! - } - _zoomIn = fluentIcon(name = "Regular.ZoomIn") { - fluentPath { - moveTo(13.5f, 10.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) - horizontalLineToRelative(-2.0f) - verticalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) - verticalLineToRelative(2.0f) - horizontalLineToRelative(-2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) - horizontalLineToRelative(2.0f) - verticalLineToRelative(2.0f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) - verticalLineToRelative(-2.0f) - horizontalLineToRelative(2.0f) - curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) - close() - moveTo(10.0f, 2.75f) - arcToRelative(7.25f, 7.25f, 0.0f, false, true, 5.63f, 11.82f) - lineToRelative(4.9f, 4.9f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) - lineToRelative(-0.08f, -0.07f) - lineToRelative(-4.9f, -4.9f) - arcTo(7.25f, 7.25f, 0.0f, true, true, 10.0f, 2.75f) - close() - moveTo(10.0f, 4.25f) - arcToRelative(5.75f, 5.75f, 0.0f, true, false, 0.0f, 11.5f) - arcToRelative(5.75f, 5.75f, 0.0f, false, false, 0.0f, -11.5f) - close() - } - } - return _zoomIn!! - } - -private var _zoomIn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ZoomOut.kt b/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ZoomOut.kt deleted file mode 100644 index 8a38e50d..00000000 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ZoomOut.kt +++ /dev/null @@ -1,40 +0,0 @@ - - -package com.konyaco.fluent.icons.regular - -import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath - -public val Icons.Regular.ZoomOut: ImageVector - get() { - if (_zoomOut != null) { - return _zoomOut!! - } - _zoomOut = fluentIcon(name = "Regular.ZoomOut") { - fluentPath { - moveTo(12.75f, 9.25f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) - horizontalLineToRelative(-5.5f) - arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) - horizontalLineToRelative(5.5f) - close() - moveTo(17.25f, 10.0f) - arcToRelative(7.25f, 7.25f, 0.0f, true, false, -2.68f, 5.63f) - lineToRelative(4.9f, 4.9f) - lineToRelative(0.08f, 0.07f) - arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, -1.13f) - lineToRelative(-4.9f, -4.9f) - arcTo(7.22f, 7.22f, 0.0f, false, false, 17.25f, 10.0f) - close() - moveTo(4.25f, 10.0f) - arcToRelative(5.75f, 5.75f, 0.0f, true, true, 11.5f, 0.0f) - arcToRelative(5.75f, 5.75f, 0.0f, false, true, -11.5f, 0.0f) - close() - } - } - return _zoomOut!! - } - -private var _zoomOut: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AccessTime.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AccessTime.kt new file mode 100644 index 00000000..2832e5ff --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AccessTime.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AccessTime: ImageVector + get() { + if (_accessTime != null) { + return _accessTime!! + } + _accessTime = fluentIcon(name = "Filled.AccessTime") { + fluentPath { + moveTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 20.0f, 0.0f) + close() + moveTo(7.5f, 8.74f) + arcTo(2.3f, 2.3f, 0.0f, false, true, 9.25f, 8.0f) + curveToRelative(1.15f, 0.0f, 1.9f, 0.8f, 2.15f, 1.66f) + curveToRelative(0.26f, 0.85f, 0.1f, 1.9f, -0.62f, 2.62f) + arcToRelative(8.1f, 8.1f, 0.0f, false, true, -0.79f, 0.67f) + lineToRelative(-0.04f, 0.03f) + curveToRelative(-0.28f, 0.22f, -0.53f, 0.41f, -0.75f, 0.63f) + arcToRelative(2.3f, 2.3f, 0.0f, false, false, -0.58f, 0.89f) + horizontalLineToRelative(2.13f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + curveToRelative(0.0f, -1.25f, 0.52f, -2.08f, 1.14f, -2.7f) + curveToRelative(0.3f, -0.3f, 0.62f, -0.55f, 0.9f, -0.76f) + curveToRelative(0.28f, -0.22f, 0.5f, -0.4f, 0.68f, -0.57f) + curveToRelative(0.27f, -0.27f, 0.37f, -0.72f, 0.25f, -1.13f) + curveToRelative(-0.12f, -0.38f, -0.37f, -0.59f, -0.72f, -0.59f) + reflectiveCurveToRelative(-0.53f, 0.14f, -0.64f, 0.25f) + arcToRelative(0.84f, 0.84f, 0.0f, false, false, -0.15f, 0.23f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.43f, -0.46f) + lineToRelative(0.04f, -0.1f) + lineToRelative(0.08f, -0.17f) + curveToRelative(0.07f, -0.14f, 0.18f, -0.32f, 0.35f, -0.5f) + close() + moveTo(13.25f, 8.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.75f) + horizontalLineToRelative(1.5f) + verticalLineTo(8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(6.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineTo(13.0f) + horizontalLineToRelative(-2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _accessTime!! + } + +private var _accessTime: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Accessibility.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Accessibility.kt new file mode 100644 index 00000000..41981696 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Accessibility.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Accessibility: ImageVector + get() { + if (_accessibility != null) { + return _accessibility!! + } + _accessibility = fluentIcon(name = "Filled.Accessibility") { + fluentPath { + moveTo(12.0f, 6.5f) + arcTo(2.25f, 2.25f, 0.0f, true, false, 12.0f, 2.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) + close() + moveTo(6.15f, 4.18f) + arcToRelative(2.27f, 2.27f, 0.0f, false, false, -2.96f, 1.18f) + arcToRelative(2.24f, 2.24f, 0.0f, false, false, 1.18f, 2.96f) + lineTo(7.39f, 9.6f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.61f, 0.92f) + verticalLineToRelative(3.04f) + lineToRelative(-1.88f, 5.46f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 4.26f, 1.46f) + lineToRelative(1.38f, -4.02f) + curveToRelative(0.08f, -0.23f, 0.4f, -0.23f, 0.48f, 0.0f) + lineToRelative(1.38f, 4.02f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 4.26f, -1.46f) + lineTo(16.0f, 13.56f) + verticalLineToRelative(-3.04f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.61f, -0.92f) + lineToRelative(3.02f, -1.28f) + arcToRelative(2.24f, 2.24f, 0.0f, false, false, 1.18f, -2.96f) + arcToRelative(2.27f, 2.27f, 0.0f, false, false, -2.96f, -1.18f) + lineToRelative(-1.6f, 0.68f) + curveToRelative(-0.35f, 0.14f, -0.58f, 0.42f, -0.7f, 0.73f) + arcToRelative(3.8f, 3.8f, 0.0f, false, true, -7.1f, 0.0f) + curveToRelative(-0.12f, -0.3f, -0.35f, -0.59f, -0.7f, -0.73f) + lineToRelative(-1.6f, -0.68f) + close() + } + } + return _accessibility!! + } + +private var _accessibility: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AccessibilityCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AccessibilityCheckmark.kt new file mode 100644 index 00000000..27464466 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AccessibilityCheckmark.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AccessibilityCheckmark: ImageVector + get() { + if (_accessibilityCheckmark != null) { + return _accessibilityCheckmark!! + } + _accessibilityCheckmark = fluentIcon(name = "Filled.AccessibilityCheckmark") { + fluentPath { + moveTo(12.0f, 6.5f) + arcTo(2.25f, 2.25f, 0.0f, true, false, 12.0f, 2.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) + close() + moveTo(6.15f, 4.18f) + arcToRelative(2.27f, 2.27f, 0.0f, false, false, -2.96f, 1.18f) + arcToRelative(2.24f, 2.24f, 0.0f, false, false, 1.18f, 2.96f) + lineTo(7.39f, 9.6f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.61f, 0.92f) + verticalLineToRelative(3.04f) + lineToRelative(-1.88f, 5.46f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 4.26f, 1.46f) + lineToRelative(0.7f, -2.01f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, 4.93f, -7.3f) + verticalLineToRelative(-0.65f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.6f, -0.92f) + lineToRelative(3.02f, -1.28f) + arcToRelative(2.24f, 2.24f, 0.0f, false, false, 1.18f, -2.96f) + arcToRelative(2.27f, 2.27f, 0.0f, false, false, -2.96f, -1.18f) + lineToRelative(-1.6f, 0.68f) + curveToRelative(-0.35f, 0.14f, -0.58f, 0.42f, -0.7f, 0.73f) + arcToRelative(3.8f, 3.8f, 0.0f, false, true, -7.1f, 0.0f) + curveToRelative(-0.12f, -0.3f, -0.35f, -0.59f, -0.7f, -0.73f) + lineToRelative(-1.6f, -0.68f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-3.65f, 3.64f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _accessibilityCheckmark!! + } + +private var _accessibilityCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AddCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AddCircle.kt new file mode 100644 index 00000000..9c55022a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AddCircle.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AddCircle: ImageVector + get() { + if (_addCircle != null) { + return _addCircle!! + } + _addCircle = fluentIcon(name = "Filled.AddCircle") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(12.0f, 7.0f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + horizontalLineToRelative(3.6f) + verticalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.1f) + verticalLineToRelative(-3.6f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + horizontalLineToRelative(-3.6f) + verticalLineToRelative(-3.5f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 12.0f, 7.0f) + close() + } + } + return _addCircle!! + } + +private var _addCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AddSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AddSquare.kt new file mode 100644 index 00000000..7584bf34 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AddSquare.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AddSquare: ImageVector + get() { + if (_addSquare != null) { + return _addSquare!! + } + _addSquare = fluentIcon(name = "Filled.AddSquare") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(12.75f, 7.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + verticalLineToRelative(-3.5f) + close() + } + } + return _addSquare!! + } + +private var _addSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AddSubtractCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AddSubtractCircle.kt new file mode 100644 index 00000000..8453695b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AddSubtractCircle.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AddSubtractCircle: ImageVector + get() { + if (_addSubtractCircle != null) { + return _addSubtractCircle!! + } + _addSubtractCircle = fluentIcon(name = "Filled.AddSubtractCircle") { + fluentPath { + moveTo(13.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + close() + moveTo(12.0f, 22.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) + close() + moveTo(18.52f, 6.54f) + arcTo(8.5f, 8.5f, 0.0f, false, true, 6.55f, 18.51f) + lineTo(18.51f, 6.55f) + close() + moveTo(6.0f, 8.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + lineTo(8.0f, 8.0f) + lineTo(8.0f, 6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(9.5f, 8.0f) + horizontalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(9.5f, 9.5f) + verticalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(8.0f, 9.5f) + lineTo(6.75f, 9.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 6.0f, 8.75f) + close() + } + } + return _addSubtractCircle!! + } + +private var _addSubtractCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Airplane.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Airplane.kt new file mode 100644 index 00000000..af3eb71f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Airplane.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Airplane: ImageVector + get() { + if (_airplane != null) { + return _airplane!! + } + _airplane = fluentIcon(name = "Filled.Airplane") { + fluentPath { + moveTo(21.99f, 11.95f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.05f, 1.99f) + lineToRelative(-4.74f, -0.14f) + lineToRelative(-3.45f, 7.14f) + curveToRelative(-0.28f, 0.57f, -0.86f, 0.94f, -1.5f, 0.94f) + arcToRelative(0.93f, 0.93f, 0.0f, false, true, -0.92f, -1.04f) + lineToRelative(0.86f, -7.19f) + lineToRelative(-3.76f, -0.1f) + lineToRelative(-0.5f, 1.33f) + curveToRelative(-0.18f, 0.51f, -0.66f, 0.85f, -1.2f, 0.85f) + arcToRelative(0.9f, 0.9f, 0.0f, false, true, -0.9f, -0.9f) + verticalLineToRelative(-1.48f) + lineTo(3.0f, 13.18f) + arcToRelative(1.26f, 1.26f, 0.0f, false, true, 0.0f, -2.47f) + lineToRelative(0.82f, -0.17f) + verticalLineTo(9.07f) + arcToRelative(0.9f, 0.9f, 0.0f, false, true, 0.78f, -0.9f) + horizontalLineToRelative(0.12f) + curveToRelative(0.54f, 0.0f, 1.02f, 0.33f, 1.2f, 0.84f) + lineToRelative(0.5f, 1.34f) + lineToRelative(3.75f, -0.1f) + lineToRelative(-0.85f, -7.1f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.51f, 0.4f, -0.93f, 0.92f, -0.93f) + curveToRelative(0.58f, 0.0f, 1.12f, 0.3f, 1.42f, 0.8f) + lineToRelative(0.08f, 0.14f) + lineToRelative(3.4f, 7.04f) + lineToRelative(4.79f, -0.14f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.05f, 1.93f) + verticalLineToRelative(0.06f) + close() + } + } + return _airplane!! + } + +private var _airplane: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AirplaneTakeOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AirplaneTakeOff.kt new file mode 100644 index 00000000..f0857bdf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AirplaneTakeOff.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AirplaneTakeOff: ImageVector + get() { + if (_airplaneTakeOff != null) { + return _airplaneTakeOff!! + } + _airplaneTakeOff = fluentIcon(name = "Filled.AirplaneTakeOff") { + fluentPath { + moveTo(12.4f, 5.93f) + lineTo(10.51f, 4.4f) + arcToRelative(1.84f, 1.84f, 0.0f, false, false, -2.76f, 2.33f) + lineToRelative(0.38f, 0.68f) + lineToRelative(3.46f, -0.72f) + curveToRelative(0.06f, -0.01f, 0.17f, -0.06f, 0.3f, -0.2f) + curveToRelative(0.14f, -0.18f, 0.3f, -0.37f, 0.5f, -0.57f) + close() + moveTo(3.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineTo(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(21.55f, 6.83f) + curveToRelative(-0.95f, -1.08f, -2.62f, -2.5f, -4.86f, -2.33f) + arcToRelative(4.7f, 4.7f, 0.0f, false, false, -2.43f, 1.06f) + curveToRelative(-0.67f, 0.52f, -1.22f, 1.12f, -1.6f, 1.57f) + curveToRelative(-0.24f, 0.3f, -0.54f, 0.49f, -0.85f, 0.55f) + lineToRelative(-4.67f, 0.97f) + lineToRelative(-0.96f, -1.77f) + arcTo(1.7f, 1.7f, 0.0f, false, false, 3.0f, 7.7f) + verticalLineToRelative(3.7f) + arcToRelative(2.3f, 2.3f, 0.0f, false, false, 2.73f, 2.24f) + lineToRelative(3.3f, -0.63f) + lineToRelative(-0.51f, 1.23f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 3.46f, 1.97f) + lineToRelative(3.23f, -4.32f) + lineToRelative(5.37f, -1.85f) + arcToRelative(2.14f, 2.14f, 0.0f, false, false, 1.34f, -1.32f) + arcToRelative(1.9f, 1.9f, 0.0f, false, false, -0.37f, -1.88f) + close() + } + } + return _airplaneTakeOff!! + } + +private var _airplaneTakeOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Album.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Album.kt new file mode 100644 index 00000000..efc071a9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Album.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Album: ImageVector + get() { + if (_album != null) { + return _album!! + } + _album = fluentIcon(name = "Filled.Album") { + fluentPath { + moveTo(2.0f, 6.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(1.0f) + verticalLineToRelative(16.0f) + lineTo(4.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(2.0f, 6.0f) + close() + moveTo(16.0f, 8.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(16.5f, 9.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(6.5f, 20.0f) + lineTo(20.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(22.0f, 6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + lineTo(6.5f, 4.0f) + verticalLineToRelative(16.0f) + close() + moveTo(12.0f, 7.0f) + horizontalLineToRelative(4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + verticalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(10.0f, 9.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + close() + } + } + return _album!! + } + +private var _album: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlbumAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlbumAdd.kt new file mode 100644 index 00000000..2dcb5c69 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlbumAdd.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AlbumAdd: ImageVector + get() { + if (_albumAdd != null) { + return _albumAdd!! + } + _albumAdd = fluentIcon(name = "Filled.AlbumAdd") { + fluentPath { + moveTo(2.0f, 6.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(1.0f) + verticalLineToRelative(7.17f) + arcToRelative(6.49f, 6.49f, 0.0f, false, false, -3.0f, 1.64f) + lineTo(2.0f, 6.0f) + close() + moveTo(16.0f, 8.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(16.5f, 9.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(12.5f, 20.0f) + lineTo(20.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(22.0f, 6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + lineTo(6.5f, 4.0f) + verticalLineToRelative(7.0f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, 6.0f, 9.0f) + close() + moveTo(10.0f, 9.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + verticalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(10.0f, 9.0f) + close() + moveTo(6.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(7.0f, 20.5f) + lineTo(7.0f, 18.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + lineTo(7.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -1.0f, 0.0f) + lineTo(6.0f, 17.0f) + lineTo(3.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + lineTo(6.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) + close() + } + } + return _albumAdd!! + } + +private var _albumAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlertBadge.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlertBadge.kt new file mode 100644 index 00000000..eff6f9cc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlertBadge.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AlertBadge: ImageVector + get() { + if (_alertBadge != null) { + return _alertBadge!! + } + _alertBadge = fluentIcon(name = "Filled.AlertBadge") { + fluentPath { + moveTo(18.5f, 9.0f) + curveToRelative(0.34f, 0.0f, 0.66f, -0.05f, 0.97f, -0.14f) + curveToRelative(0.02f, 0.21f, 0.03f, 0.43f, 0.03f, 0.64f) + verticalLineToRelative(4.0f) + lineToRelative(1.42f, 3.16f) + arcToRelative(0.95f, 0.95f, 0.0f, false, true, -0.87f, 1.34f) + lineTo(3.95f, 18.0f) + arcToRelative(0.95f, 0.95f, 0.0f, false, true, -0.86f, -1.34f) + lineTo(4.5f, 13.5f) + lineTo(4.5f, 9.24f) + arcToRelative(7.5f, 7.5f, 0.0f, false, true, 11.44f, -6.12f) + arcTo(3.49f, 3.49f, 0.0f, false, false, 18.5f, 9.0f) + close() + moveTo(14.96f, 19.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -5.92f, 0.0f) + horizontalLineToRelative(5.92f) + close() + moveTo(18.5f, 8.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) + close() + } + } + return _alertBadge!! + } + +private var _alertBadge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlertOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlertOff.kt new file mode 100644 index 00000000..bf31f663 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlertOff.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AlertOff: ImageVector + get() { + if (_alertOff != null) { + return _alertOff!! + } + _alertOff = fluentIcon(name = "Filled.AlertOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(3.0f, 3.0f) + curveToRelative(-0.42f, 0.9f, -0.68f, 1.9f, -0.72f, 2.96f) + verticalLineToRelative(4.26f) + lineToRelative(-1.41f, 3.16f) + arcTo(0.95f, 0.95f, 0.0f, false, false, 3.95f, 18.0f) + horizontalLineToRelative(13.0f) + lineToRelative(3.77f, 3.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(21.0f, 17.05f) + curveToRelative(0.0f, 0.22f, -0.07f, 0.42f, -0.2f, 0.58f) + lineTo(7.06f, 3.87f) + arcTo(7.5f, 7.5f, 0.0f, false, true, 19.5f, 9.5f) + verticalLineToRelative(4.0f) + lineToRelative(1.42f, 3.15f) + curveToRelative(0.05f, 0.12f, 0.08f, 0.26f, 0.08f, 0.4f) + close() + moveTo(14.96f, 19.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -5.92f, 0.0f) + horizontalLineToRelative(5.92f) + close() + } + } + return _alertOff!! + } + +private var _alertOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlertOn.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlertOn.kt new file mode 100644 index 00000000..dd9cdb3d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlertOn.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AlertOn: ImageVector + get() { + if (_alertOn != null) { + return _alertOn!! + } + _alertOn = fluentIcon(name = "Filled.AlertOn") { + fluentPath { + moveTo(9.04f, 19.0f) + horizontalLineToRelative(5.92f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -5.92f, 0.0f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(7.5f, 7.5f, 0.0f, false, true, 7.5f, 7.5f) + verticalLineToRelative(4.0f) + lineToRelative(1.42f, 3.16f) + arcToRelative(0.95f, 0.95f, 0.0f, false, true, -0.87f, 1.34f) + lineTo(3.95f, 18.0f) + arcToRelative(0.95f, 0.95f, 0.0f, false, true, -0.86f, -1.34f) + lineTo(4.5f, 13.5f) + lineTo(4.5f, 9.24f) + arcTo(7.5f, 7.5f, 0.0f, false, true, 12.0f, 2.0f) + close() + moveTo(23.0f, 8.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(21.0f, 9.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(23.0f, 8.25f) + close() + moveTo(3.0f, 8.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(1.0f, 9.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(3.0f, 8.25f) + close() + moveTo(22.6f, 2.55f) + curveToRelative(0.23f, 0.3f, 0.2f, 0.72f, -0.07f, 0.98f) + lineToRelative(-0.08f, 0.07f) + lineToRelative(-2.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, -1.13f) + lineToRelative(0.08f, -0.07f) + lineToRelative(2.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, 0.15f) + close() + moveTo(2.45f, 2.4f) + lineToRelative(2.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.9f, 1.2f) + lineToRelative(-2.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.9f, -1.2f) + close() + } + } + return _alertOn!! + } + +private var _alertOn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlertSnooze.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlertSnooze.kt new file mode 100644 index 00000000..dabb3146 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlertSnooze.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AlertSnooze: ImageVector + get() { + if (_alertSnooze != null) { + return _alertSnooze!! + } + _alertSnooze = fluentIcon(name = "Filled.AlertSnooze") { + fluentPath { + moveTo(15.25f, 7.0f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(1.04f) + lineToRelative(-1.65f, 2.31f) + lineToRelative(-0.06f, 0.1f) + curveToRelative(-0.25f, 0.48f, 0.1f, 1.09f, 0.67f, 1.09f) + horizontalLineToRelative(2.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-1.04f) + lineToRelative(1.65f, -2.31f) + lineToRelative(0.06f, -0.1f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 15.25f, 7.0f) + close() + moveTo(21.25f, 2.0f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(2.13f) + lineToRelative(-2.76f, 4.35f) + lineToRelative(-0.05f, 0.09f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 17.75f, 9.0f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-2.13f) + lineToRelative(2.76f, -4.35f) + lineToRelative(0.05f, -0.09f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 21.25f, 2.0f) + close() + moveTo(12.7f, 5.5f) + horizontalLineToRelative(2.55f) + curveToRelative(0.5f, 0.0f, 0.96f, 0.16f, 1.32f, 0.42f) + lineToRelative(0.62f, -0.99f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -1.69f, -2.06f) + arcToRelative(7.5f, 7.5f, 0.0f, false, false, -11.0f, 6.37f) + verticalLineToRelative(4.26f) + lineToRelative(-1.41f, 3.16f) + arcTo(0.95f, 0.95f, 0.0f, false, false, 3.95f, 18.0f) + horizontalLineToRelative(16.1f) + arcToRelative(0.95f, 0.95f, 0.0f, false, false, 0.87f, -1.34f) + lineTo(19.5f, 13.5f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(-1.75f) + lineToRelative(-0.39f, -0.03f) + arcToRelative(2.24f, 2.24f, 0.0f, false, true, -1.8f, 3.0f) + lineToRelative(-0.06f, 0.02f) + lineToRelative(-0.2f, 0.01f) + horizontalLineToRelative(-2.55f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.0f, -3.3f) + lineToRelative(0.03f, -0.04f) + lineToRelative(0.11f, -0.18f) + lineToRelative(0.38f, -0.53f) + arcToRelative(2.24f, 2.24f, 0.0f, false, true, 1.18f, -3.93f) + horizontalLineToRelative(0.05f) + lineToRelative(0.2f, -0.02f) + close() + moveTo(14.96f, 19.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -5.92f, 0.0f) + horizontalLineToRelative(5.92f) + close() + } + } + return _alertSnooze!! + } + +private var _alertSnooze: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlertUrgent.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlertUrgent.kt new file mode 100644 index 00000000..6cddcd32 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlertUrgent.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AlertUrgent: ImageVector + get() { + if (_alertUrgent != null) { + return _alertUrgent!! + } + _alertUrgent = fluentIcon(name = "Filled.AlertUrgent") { + fluentPath { + moveToRelative(10.43f, 19.92f) + lineToRelative(3.56f, -1.5f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -3.56f, 1.5f) + close() + moveTo(15.86f, 2.1f) + arcToRelative(11.72f, 11.72f, 0.0f, false, true, 4.68f, 4.4f) + arcTo(11.72f, 11.72f, 0.0f, false, true, 22.0f, 12.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, -0.04f) + curveToRelative(0.05f, -2.1f, -0.37f, -3.92f, -1.26f, -5.46f) + arcToRelative(10.23f, 10.23f, 0.0f, false, false, -4.1f, -3.82f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.72f, -1.32f) + close() + moveTo(6.71f, 6.52f) + arcToRelative(5.82f, 5.82f, 0.0f, false, true, 7.6f, 2.74f) + lineToRelative(0.1f, 0.21f) + lineToRelative(1.29f, 2.9f) + lineToRelative(1.7f, 1.46f) + curveToRelative(0.09f, 0.08f, 0.17f, 0.18f, 0.26f, 0.33f) + lineToRelative(0.06f, 0.11f) + curveToRelative(0.28f, 0.63f, 0.0f, 1.37f, -0.64f, 1.65f) + lineTo(6.76f, 20.49f) + arcTo(1.25f, 1.25f, 0.0f, false, true, 5.0f, 19.35f) + lineTo(5.0f, 17.0f) + lineToRelative(-1.24f, -2.79f) + arcToRelative(5.82f, 5.82f, 0.0f, false, true, 2.95f, -7.7f) + close() + moveTo(15.62f, 5.69f) + curveToRelative(0.97f, 0.53f, 1.75f, 1.3f, 2.32f, 2.3f) + curveToRelative(0.57f, 0.99f, 0.85f, 2.04f, 0.82f, 3.14f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, -0.03f) + curveToRelative(0.02f, -0.82f, -0.18f, -1.6f, -0.62f, -2.37f) + arcToRelative(4.42f, 4.42f, 0.0f, false, false, -1.73f, -1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.71f, -1.32f) + close() + } + } + return _alertUrgent!! + } + +private var _alertUrgent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlignBottom.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlignBottom.kt new file mode 100644 index 00000000..1fdac8a7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlignBottom.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AlignBottom: ImageVector + get() { + if (_alignBottom != null) { + return _alignBottom!! + } + _alignBottom = fluentIcon(name = "Filled.AlignBottom") { + fluentPath { + moveTo(2.75f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(2.75f, 21.0f) + close() + moveTo(4.0f, 15.75f) + curveTo(4.0f, 16.99f, 5.0f, 18.0f, 6.25f, 18.0f) + horizontalLineToRelative(2.5f) + curveTo(9.99f, 18.0f, 11.0f, 17.0f, 11.0f, 15.75f) + lineTo(11.0f, 5.25f) + curveTo(11.0f, 4.01f, 10.0f, 3.0f, 8.75f, 3.0f) + horizontalLineToRelative(-2.5f) + curveTo(5.01f, 3.0f, 4.0f, 4.0f, 4.0f, 5.25f) + verticalLineToRelative(10.5f) + close() + moveTo(13.0f, 15.75f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(2.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-7.0f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-2.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(7.0f) + close() + } + } + return _alignBottom!! + } + +private var _alignBottom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlignCenterHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlignCenterHorizontal.kt new file mode 100644 index 00000000..59a9add8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlignCenterHorizontal.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AlignCenterHorizontal: ImageVector + get() { + if (_alignCenterHorizontal != null) { + return _alignCenterHorizontal!! + } + _alignCenterHorizontal = fluentIcon(name = "Filled.AlignCenterHorizontal") { + fluentPath { + moveTo(21.25f, 12.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(20.0f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-2.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-2.5f) + curveTo(5.01f, 4.5f, 4.0f, 5.5f, 4.0f, 6.75f) + verticalLineToRelative(4.5f) + horizontalLineTo(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineTo(4.0f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(2.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-4.5f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(2.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-2.5f) + horizontalLineToRelative(1.25f) + close() + } + } + return _alignCenterHorizontal!! + } + +private var _alignCenterHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlignCenterVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlignCenterVertical.kt new file mode 100644 index 00000000..49d93ddd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlignCenterVertical.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AlignCenterVertical: ImageVector + get() { + if (_alignCenterVertical != null) { + return _alignCenterVertical!! + } + _alignCenterVertical = fluentIcon(name = "Filled.AlignCenterVertical") { + fluentPath { + moveTo(11.25f, 21.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineTo(20.0f) + horizontalLineToRelative(2.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-2.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(4.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-4.5f) + verticalLineTo(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineTo(4.0f) + horizontalLineToRelative(-4.5f) + curveTo(5.51f, 4.0f, 4.5f, 5.0f, 4.5f, 6.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-2.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(1.25f) + close() + } + } + return _alignCenterVertical!! + } + +private var _alignCenterVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlignLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlignLeft.kt new file mode 100644 index 00000000..ec66613c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlignLeft.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AlignLeft: ImageVector + get() { + if (_alignLeft != null) { + return _alignLeft!! + } + _alignLeft = fluentIcon(name = "Filled.AlignLeft") { + fluentPath { + moveTo(3.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(3.0f, 2.75f) + close() + moveTo(8.25f, 4.0f) + curveTo(7.01f, 4.0f, 6.0f, 5.0f, 6.0f, 6.25f) + verticalLineToRelative(2.5f) + curveTo(6.0f, 9.99f, 7.0f, 11.0f, 8.25f, 11.0f) + horizontalLineToRelative(10.5f) + curveTo(19.99f, 11.0f, 21.0f, 10.0f, 21.0f, 8.75f) + verticalLineToRelative(-2.5f) + curveTo(21.0f, 5.01f, 20.0f, 4.0f, 18.75f, 4.0f) + lineTo(8.25f, 4.0f) + close() + moveTo(8.25f, 13.0f) + curveTo(7.01f, 13.0f, 6.0f, 14.0f, 6.0f, 15.25f) + verticalLineToRelative(2.5f) + curveTo(6.0f, 18.99f, 7.0f, 20.0f, 8.25f, 20.0f) + horizontalLineToRelative(7.0f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-7.0f) + close() + } + } + return _alignLeft!! + } + +private var _alignLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlignRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlignRight.kt new file mode 100644 index 00000000..490a247e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlignRight.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AlignRight: ImageVector + get() { + if (_alignRight != null) { + return _alignRight!! + } + _alignRight = fluentIcon(name = "Filled.AlignRight") { + fluentPath { + moveTo(21.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(21.0f, 2.75f) + close() + moveTo(15.75f, 4.0f) + curveTo(16.99f, 4.0f, 18.0f, 5.0f, 18.0f, 6.25f) + verticalLineToRelative(2.5f) + curveTo(18.0f, 9.99f, 17.0f, 11.0f, 15.75f, 11.0f) + lineTo(5.25f, 11.0f) + curveTo(4.01f, 11.0f, 3.0f, 10.0f, 3.0f, 8.75f) + verticalLineToRelative(-2.5f) + curveTo(3.0f, 5.01f, 4.0f, 4.0f, 5.25f, 4.0f) + horizontalLineToRelative(10.5f) + close() + moveTo(15.75f, 13.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-7.0f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(7.0f) + close() + } + } + return _alignRight!! + } + +private var _alignRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlignTop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlignTop.kt new file mode 100644 index 00000000..bcecba8f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AlignTop.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AlignTop: ImageVector + get() { + if (_alignTop != null) { + return _alignTop!! + } + _alignTop = fluentIcon(name = "Filled.AlignTop") { + fluentPath { + moveTo(2.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(2.75f, 3.0f) + close() + moveTo(4.0f, 8.25f) + curveTo(4.0f, 7.01f, 5.0f, 6.0f, 6.25f, 6.0f) + horizontalLineToRelative(2.5f) + curveTo(9.99f, 6.0f, 11.0f, 7.0f, 11.0f, 8.25f) + verticalLineToRelative(10.5f) + curveTo(11.0f, 19.99f, 10.0f, 21.0f, 8.75f, 21.0f) + horizontalLineToRelative(-2.5f) + curveTo(5.01f, 21.0f, 4.0f, 20.0f, 4.0f, 18.75f) + lineTo(4.0f, 8.25f) + close() + moveTo(13.0f, 8.25f) + curveTo(13.0f, 7.01f, 14.0f, 6.0f, 15.25f, 6.0f) + horizontalLineToRelative(2.5f) + curveTo(18.99f, 6.0f, 20.0f, 7.0f, 20.0f, 8.25f) + verticalLineToRelative(7.0f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-2.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-7.0f) + close() + } + } + return _alignTop!! + } + +private var _alignTop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AnimalCat.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AnimalCat.kt new file mode 100644 index 00000000..53dff641 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AnimalCat.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AnimalCat: ImageVector + get() { + if (_animalCat != null) { + return _animalCat!! + } + _animalCat = fluentIcon(name = "Filled.AnimalCat") { + fluentPath { + moveTo(7.25f, 22.0f) + horizontalLineTo(5.8f) + arcToRelative(3.8f, 3.8f, 0.0f, false, true, -2.78f, -6.39f) + lineToRelative(1.14f, -1.22f) + arcToRelative(3.06f, 3.06f, 0.0f, false, false, -0.08f, -4.25f) + lineTo(2.97f, 9.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineToRelative(1.11f, 1.11f) + arcToRelative(4.56f, 4.56f, 0.0f, false, true, 0.11f, 6.34f) + lineToRelative(-1.13f, 1.21f) + arcTo(2.3f, 2.3f, 0.0f, false, false, 5.8f, 20.5f) + horizontalLineToRelative(0.67f) + arcTo(23.84f, 23.84f, 0.0f, false, true, 7.0f, 15.45f) + curveToRelative(0.34f, -1.46f, 0.91f, -3.0f, 1.9f, -4.17f) + arcToRelative(5.4f, 5.4f, 0.0f, false, true, 3.6f, -1.99f) + verticalLineTo(5.15f) + arcTo(3.15f, 3.15f, 0.0f, false, true, 15.64f, 2.0f) + curveTo(16.4f, 2.0f, 17.0f, 2.6f, 17.0f, 3.35f) + verticalLineTo(4.0f) + horizontalLineToRelative(1.64f) + curveToRelative(0.95f, 0.0f, 1.83f, 0.5f, 2.33f, 1.3f) + lineToRelative(0.62f, 1.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.09f, 4.19f) + verticalLineToRelative(9.26f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-0.75f) + verticalLineToRelative(-2.25f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 12.74f, 16.0f) + horizontalLineTo(11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.25f) + curveToRelative(1.25f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineTo(22.0f) + horizontalLineTo(7.25f) + close() + } + } + return _animalCat!! + } + +private var _animalCat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AnimalDog.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AnimalDog.kt new file mode 100644 index 00000000..2c39e312 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AnimalDog.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AnimalDog: ImageVector + get() { + if (_animalDog != null) { + return _animalDog!! + } + _animalDog = fluentIcon(name = "Filled.AnimalDog") { + fluentPath { + moveTo(10.88f, 8.66f) + curveToRelative(0.38f, 0.22f, 0.84f, 0.34f, 1.37f, 0.34f) + curveToRelative(0.84f, 0.0f, 1.55f, -0.3f, 2.04f, -0.84f) + curveToRelative(0.48f, -0.53f, 0.7f, -1.22f, 0.7f, -1.91f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + curveToRelative(0.0f, 0.38f, -0.11f, 0.69f, -0.3f, 0.9f) + curveToRelative(-0.18f, 0.19f, -0.48f, 0.35f, -0.94f, 0.35f) + curveToRelative(-0.45f, 0.0f, -0.73f, -0.16f, -0.92f, -0.37f) + curveToRelative(-0.18f, -0.21f, -0.3f, -0.5f, -0.33f, -0.84f) + verticalLineTo(4.25f) + curveTo(11.0f, 3.01f, 12.0f, 2.0f, 13.25f, 2.0f) + horizontalLineToRelative(3.18f) + curveToRelative(0.51f, 0.0f, 1.01f, 0.14f, 1.45f, 0.4f) + lineToRelative(2.76f, 1.71f) + curveToRelative(0.22f, 0.14f, 0.36f, 0.38f, 0.36f, 0.64f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-0.25f) + verticalLineToRelative(9.53f) + curveToRelative(0.92f, 0.1f, 1.62f, 0.37f, 2.05f, 0.97f) + curveToRelative(0.25f, 0.36f, 0.36f, 0.76f, 0.4f, 1.13f) + curveToRelative(0.05f, 0.35f, 0.05f, 0.73f, 0.05f, 1.09f) + verticalLineToRelative(0.03f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineTo(17.0f) + verticalLineToRelative(-0.77f) + curveToRelative(0.0f, -0.58f, 0.0f, -2.21f, -1.5f, -3.17f) + verticalLineToRelative(-2.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.26f) + arcToRelative(4.62f, 4.62f, 0.0f, false, false, -0.7f, -0.02f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.08f, 1.5f) + horizontalLineTo(13.5f) + arcToRelative(1.94f, 1.94f, 0.0f, false, true, 0.93f, 0.18f) + curveToRelative(1.04f, 0.48f, 1.07f, 1.44f, 1.07f, 2.07f) + verticalLineTo(22.0f) + horizontalLineTo(5.83f) + arcToRelative(3.83f, 3.83f, 0.0f, false, true, -1.97f, -7.12f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.78f, 1.28f) + arcToRelative(2.33f, 2.33f, 0.0f, false, false, 1.2f, 4.34f) + curveToRelative(0.31f, 0.0f, 0.51f, -0.08f, 0.64f, -0.18f) + curveToRelative(0.14f, -0.1f, 0.25f, -0.23f, 0.33f, -0.4f) + arcToRelative(1.93f, 1.93f, 0.0f, false, false, 0.19f, -0.7f) + verticalLineToRelative(-0.03f) + arcToRelative(7.94f, 7.94f, 0.0f, false, true, 0.03f, -0.65f) + curveToRelative(0.04f, -0.43f, 0.1f, -1.02f, 0.23f, -1.68f) + curveToRelative(0.26f, -1.29f, 0.8f, -2.97f, 1.96f, -4.14f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.54f, -3.36f) + lineToRelative(0.12f, -0.7f) + close() + } + } + return _animalDog!! + } + +private var _animalDog: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AnimalRabbit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AnimalRabbit.kt new file mode 100644 index 00000000..ef382ed6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AnimalRabbit.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AnimalRabbit: ImageVector + get() { + if (_animalRabbit != null) { + return _animalRabbit!! + } + _animalRabbit = fluentIcon(name = "Filled.AnimalRabbit") { + fluentPath { + moveToRelative(15.53f, 5.44f) + lineToRelative(5.43f, 5.43f) + arcToRelative(3.58f, 3.58f, 0.0f, false, true, -3.35f, 6.0f) + verticalLineTo(17.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-2.1f) + verticalLineToRelative(-0.75f) + lineToRelative(-0.01f, -0.17f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.57f, -2.58f) + horizontalLineTo(9.66f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineTo(10.87f) + curveToRelative(0.6f, 0.07f, 1.06f, 0.53f, 1.12f, 1.12f) + verticalLineTo(19.0f) + horizontalLineTo(7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.2f, 0.02f, -0.39f, 0.04f, -0.57f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 1.87f, -3.12f) + arcTo(4.46f, 4.46f, 0.0f, false, true, 9.5f, 10.0f) + horizontalLineToRelative(3.6f) + curveToRelative(0.6f, 0.0f, 1.18f, 0.11f, 1.71f, 0.33f) + curveToRelative(0.16f, -0.28f, 0.36f, -0.54f, 0.6f, -0.78f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.11f, -2.1f) + close() + } + } + return _animalRabbit!! + } + +private var _animalRabbit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AnimalTurtle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AnimalTurtle.kt new file mode 100644 index 00000000..0f7c78f4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AnimalTurtle.kt @@ -0,0 +1,94 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AnimalTurtle: ImageVector + get() { + if (_animalTurtle != null) { + return _animalTurtle!! + } + _animalTurtle = fluentIcon(name = "Filled.AnimalTurtle") { + fluentPath { + moveTo(11.0f, 6.0f) + arcToRelative(6.14f, 6.14f, 0.0f, false, true, 5.8f, 4.12f) + lineToRelative(0.07f, 0.24f) + lineToRelative(0.05f, 0.14f) + horizontalLineToRelative(2.33f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.74f, 2.58f) + verticalLineToRelative(1.17f) + curveToRelative(0.0f, 0.92f, -0.7f, 1.67f, -1.6f, 1.74f) + horizontalLineToRelative(-1.77f) + lineToRelative(0.24f, 0.6f) + curveToRelative(0.35f, 0.84f, -0.01f, 1.8f, -0.81f, 2.21f) + lineToRelative(-0.14f, 0.07f) + curveToRelative(-0.16f, 0.06f, -0.32f, 0.1f, -0.5f, 0.12f) + horizontalLineToRelative(-1.95f) + curveToRelative(-0.63f, 0.0f, -1.2f, -0.33f, -1.51f, -0.86f) + lineToRelative(-0.08f, -0.14f) + lineToRelative(-0.53f, -1.14f) + horizontalLineToRelative(0.05f) + curveToRelative(-1.4f, 0.18f, -2.82f, 0.2f, -4.22f, 0.06f) + lineToRelative(-0.5f, -0.06f) + lineTo(8.14f, 18.0f) + curveToRelative(-0.3f, 0.61f, -0.9f, 1.0f, -1.59f, 1.0f) + horizontalLineToRelative(-1.8f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.62f, -2.41f) + lineToRelative(0.44f, -1.05f) + arcTo(3.24f, 3.24f, 0.0f, false, true, 2.0f, 12.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.64f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(1.89f) + lineToRelative(0.5f, -1.64f) + arcTo(6.14f, 6.14f, 0.0f, false, true, 11.0f, 6.0f) + close() + moveTo(17.77f, 15.7f) + curveToRelative(-0.77f, 0.3f, -1.55f, 0.56f, -2.35f, 0.76f) + lineToRelative(-0.55f, 0.13f) + lineToRelative(0.36f, 0.77f) + curveToRelative(0.03f, 0.05f, 0.07f, 0.09f, 0.12f, 0.11f) + lineToRelative(0.05f, 0.02f) + horizontalLineToRelative(1.84f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.25f, -0.27f) + lineToRelative(-0.02f, -0.07f) + lineTo(17.0f, 16.0f) + horizontalLineToRelative(-0.05f) + lineToRelative(0.42f, -0.15f) + lineToRelative(0.4f, -0.16f) + close() + moveTo(4.22f, 15.7f) + lineTo(4.62f, 15.84f) + lineTo(5.0f, 15.98f) + lineTo(4.52f, 17.15f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.23f, 0.34f) + horizontalLineToRelative(1.86f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.17f, -0.14f) + lineToRelative(0.36f, -0.76f) + horizontalLineToRelative(0.04f) + curveToRelative(-1.0f, -0.2f, -2.0f, -0.51f, -2.96f, -0.9f) + close() + moveTo(4.02f, 14.0f) + lineTo(4.17f, 13.5f) + horizontalLineToRelative(-0.5f) + lineToRelative(0.02f, 0.05f) + curveToRelative(0.09f, 0.17f, 0.2f, 0.32f, 0.33f, 0.45f) + close() + moveTo(17.37f, 12.0f) + lineTo(18.13f, 14.5f) + horizontalLineToRelative(2.12f) + curveToRelative(0.11f, 0.0f, 0.21f, -0.08f, 0.24f, -0.2f) + verticalLineToRelative(-1.05f) + curveToRelative(0.0f, -0.65f, -0.49f, -1.18f, -1.12f, -1.24f) + horizontalLineToRelative(-0.12f) + lineTo(17.37f, 12.0f) + close() + } + } + return _animalTurtle!! + } + +private var _animalTurtle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AppFolder.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AppFolder.kt new file mode 100644 index 00000000..06bc35e3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AppFolder.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AppFolder: ImageVector + get() { + if (_appFolder != null) { + return _appFolder!! + } + _appFolder = fluentIcon(name = "Filled.AppFolder") { + fluentPath { + moveTo(11.5f, 14.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-2.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(2.0f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-2.0f) + close() + moveTo(18.0f, 14.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-2.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(2.0f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-2.0f) + close() + moveTo(11.5f, 7.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-2.0f) + curveTo(6.78f, 6.0f, 6.0f, 6.78f, 6.0f, 7.75f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(2.0f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-2.0f) + close() + moveTo(18.0f, 7.75f) + curveTo(18.0f, 6.78f, 17.2f, 6.0f, 16.25f, 6.0f) + horizontalLineToRelative(-2.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(2.0f) + curveToRelative(0.96f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-2.0f) + close() + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 6.25f) + close() + } + } + return _appFolder!! + } + +private var _appFolder: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AppGeneric.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AppGeneric.kt new file mode 100644 index 00000000..6d9a27c9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AppGeneric.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AppGeneric: ImageVector + get() { + if (_appGeneric != null) { + return _appGeneric!! + } + _appGeneric = fluentIcon(name = "Filled.AppGeneric") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(4.5f, 8.0f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(9.75f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 8.0f) + close() + moveTo(6.0f, 10.35f) + curveToRelative(0.0f, -0.47f, 0.38f, -0.85f, 0.85f, -0.85f) + horizontalLineToRelative(3.3f) + curveToRelative(0.47f, 0.0f, 0.85f, 0.38f, 0.85f, 0.85f) + verticalLineToRelative(6.8f) + curveToRelative(0.0f, 0.47f, -0.38f, 0.85f, -0.85f, 0.85f) + horizontalLineToRelative(-3.3f) + arcToRelative(0.85f, 0.85f, 0.0f, false, true, -0.85f, -0.85f) + verticalLineToRelative(-6.8f) + close() + moveTo(7.5f, 11.0f) + verticalLineToRelative(5.5f) + horizontalLineToRelative(2.0f) + lineTo(9.5f, 11.0f) + horizontalLineToRelative(-2.0f) + close() + moveTo(12.75f, 9.5f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(12.0f, 13.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _appGeneric!! + } + +private var _appGeneric: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AppRecent.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AppRecent.kt new file mode 100644 index 00000000..bce247e3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AppRecent.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AppRecent: ImageVector + get() { + if (_appRecent != null) { + return _appRecent!! + } + _appRecent = fluentIcon(name = "Filled.AppRecent") { + fluentPath { + moveTo(18.0f, 19.75f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + horizontalLineToRelative(-7.5f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(6.0f, 19.75f) + verticalLineTo(4.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(8.25f, 2.0f) + horizontalLineToRelative(7.5f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(15.5f) + close() + moveTo(19.0f, 5.0f) + horizontalLineToRelative(0.75f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + horizontalLineTo(19.0f) + verticalLineTo(5.0f) + close() + moveTo(5.0f, 19.0f) + horizontalLineToRelative(-0.75f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(2.0f, 16.75f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 5.0f) + horizontalLineTo(5.0f) + verticalLineToRelative(14.0f) + close() + } + } + return _appRecent!! + } + +private var _appRecent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AppStore.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AppStore.kt new file mode 100644 index 00000000..164db619 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AppStore.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AppStore: ImageVector + get() { + if (_appStore != null) { + return _appStore!! + } + _appStore = fluentIcon(name = "Filled.AppStore") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(9.37f, 15.25f) + lineTo(7.63f, 15.25f) + lineToRelative(-0.07f, 0.12f) + lineToRelative(-0.04f, 0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.28f, 0.74f) + lineToRelative(0.06f, -0.08f) + lineToRelative(0.5f, -0.88f) + close() + moveTo(13.29f, 10.02f) + lineTo(12.42f, 11.52f) + lineTo(15.08f, 16.12f) + lineTo(15.14f, 16.21f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.28f, -0.74f) + lineToRelative(-0.04f, -0.1f) + lineToRelative(-0.5f, -0.87f) + horizontalLineToRelative(0.97f) + curveToRelative(0.34f, -0.05f, 0.6f, -0.31f, 0.64f, -0.64f) + lineToRelative(0.01f, -0.1f) + verticalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, -0.65f) + horizontalLineToRelative(-1.84f) + lineToRelative(-1.72f, -2.99f) + close() + moveTo(13.26f, 7.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, 0.19f) + lineToRelative(-0.05f, 0.08f) + lineToRelative(-0.24f, 0.41f) + lineToRelative(-0.24f, -0.4f) + lineToRelative(-0.05f, -0.09f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.87f, -0.24f) + lineToRelative(-0.1f, 0.05f) + lineToRelative(-0.09f, 0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.23f, 0.86f) + lineToRelative(0.04f, 0.1f) + lineToRelative(0.67f, 1.15f) + lineTo(8.95f, 13.0f) + horizontalLineToRelative(-1.7f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) + horizontalLineToRelative(6.13f) + lineTo(12.4f, 13.0f) + horizontalLineToRelative(-1.73f) + lineToRelative(2.85f, -4.87f) + lineToRelative(0.05f, -0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.32f, -0.93f) + close() + } + } + return _appStore!! + } + +private var _appStore: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AppTitle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AppTitle.kt new file mode 100644 index 00000000..241896af --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AppTitle.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AppTitle: ImageVector + get() { + if (_appTitle != null) { + return _appTitle!! + } + _appTitle = fluentIcon(name = "Filled.AppTitle") { + fluentPath { + moveTo(4.75f, 20.5f) + horizontalLineToRelative(14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineTo(4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(14.6f) + horizontalLineToRelative(-14.5f) + close() + moveTo(16.25f, 3.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 20.0f, 6.75f) + verticalLineToRelative(8.5f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 16.25f, 19.0f) + horizontalLineToRelative(-8.5f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 4.0f, 15.25f) + verticalLineToRelative(-8.5f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 7.75f, 3.0f) + horizontalLineToRelative(8.5f) + close() + } + } + return _appTitle!! + } + +private var _appTitle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ApprovalsApp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ApprovalsApp.kt new file mode 100644 index 00000000..7d161227 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ApprovalsApp.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ApprovalsApp: ImageVector + get() { + if (_approvalsApp != null) { + return _approvalsApp!! + } + _approvalsApp = fluentIcon(name = "Filled.ApprovalsApp") { + fluentPath { + moveTo(10.54f, 1.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 0.0f) + lineToRelative(2.5f, 2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.4f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.42f, -1.4f) + lineToRelative(0.76f, -0.77f) + arcToRelative(7.0f, 7.0f, 0.0f, true, false, 7.65f, 7.85f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.98f, 0.24f) + arcToRelative(9.0f, 9.0f, 0.0f, true, true, -9.57f, -10.1f) + lineToRelative(-0.82f, -0.81f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.42f) + close() + moveTo(16.21f, 9.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.4f) + lineToRelative(-4.5f, 4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 0.0f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.42f, -1.4f) + lineTo(11.0f, 13.58f) + lineToRelative(3.8f, -3.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) + close() + } + } + return _approvalsApp!! + } + +private var _approvalsApp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Apps.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Apps.kt new file mode 100644 index 00000000..ff967d00 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Apps.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Apps: ImageVector + get() { + if (_apps != null) { + return _apps!! + } + _apps = fluentIcon(name = "Filled.Apps") { + fluentPath { + moveToRelative(18.5f, 2.33f) + lineToRelative(3.17f, 3.18f) + curveToRelative(0.88f, 0.88f, 0.88f, 2.3f, 0.0f, 3.18f) + lineToRelative(-2.58f, 2.59f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 21.0f, 13.5f) + verticalLineToRelative(5.25f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(5.25f, 21.0f) + curveTo(4.01f, 21.0f, 3.0f, 20.0f, 3.0f, 18.75f) + lineTo(3.0f, 5.25f) + curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(5.25f) + curveToRelative(1.13f, 0.0f, 2.06f, 0.83f, 2.23f, 1.92f) + lineToRelative(2.58f, -2.59f) + curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.0f) + close() + moveTo(4.5f, 18.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(-6.75f) + lineTo(4.5f, 12.75f) + verticalLineToRelative(6.0f) + close() + moveTo(12.75f, 19.5f) + horizontalLineToRelative(6.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(19.5f, 13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-6.0f) + verticalLineToRelative(6.75f) + close() + moveTo(10.5f, 4.5f) + lineTo(5.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.0f) + horizontalLineToRelative(6.75f) + verticalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(12.75f, 9.3f) + verticalLineToRelative(1.95f) + horizontalLineToRelative(1.94f) + lineTo(12.75f, 9.3f) + close() + } + } + return _apps!! + } + +private var _apps: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AppsAddIn.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AppsAddIn.kt new file mode 100644 index 00000000..c8deb251 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AppsAddIn.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AppsAddIn: ImageVector + get() { + if (_appsAddIn != null) { + return _appsAddIn!! + } + _appsAddIn = fluentIcon(name = "Filled.AppsAddIn") { + fluentPath { + moveTo(10.5f, 3.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 13.0f, 5.5f) + lineTo(13.0f, 11.0f) + horizontalLineToRelative(5.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) + verticalLineToRelative(5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.5f, 2.5f) + horizontalLineToRelative(-13.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 3.0f, 18.5f) + verticalLineToRelative(-13.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 5.5f, 3.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(11.0f, 13.0f) + lineTo(5.0f, 13.0f) + verticalLineToRelative(5.5f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + lineTo(11.0f, 19.0f) + verticalLineToRelative(-6.0f) + close() + moveTo(18.5f, 13.0f) + lineTo(13.0f, 13.0f) + verticalLineToRelative(6.0f) + horizontalLineToRelative(5.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(10.5f, 5.0f) + horizontalLineToRelative(-5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + lineTo(5.0f, 11.0f) + horizontalLineToRelative(6.0f) + lineTo(11.0f, 5.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(17.88f, 2.0f) + lineTo(18.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(19.0f, 5.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(22.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + lineTo(19.0f, 7.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + lineTo(18.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + lineTo(17.0f, 7.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + lineTo(14.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) + lineTo(17.0f, 5.0f) + lineTo(17.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) + lineTo(18.0f, 2.0f) + horizontalLineToRelative(-0.12f) + close() + } + } + return _appsAddIn!! + } + +private var _appsAddIn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AppsList.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AppsList.kt new file mode 100644 index 00000000..844c58f2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AppsList.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AppsList: ImageVector + get() { + if (_appsList != null) { + return _appsList!! + } + _appsList = fluentIcon(name = "Filled.AppsList") { + fluentPath { + moveTo(6.25f, 16.0f) + curveTo(7.2f, 16.0f, 8.0f, 16.8f, 8.0f, 17.75f) + verticalLineToRelative(2.5f) + curveTo(8.0f, 21.22f, 7.2f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(-2.5f) + curveTo(2.78f, 22.0f, 2.0f, 21.22f, 2.0f, 20.25f) + verticalLineToRelative(-2.5f) + curveTo(2.0f, 16.8f, 2.78f, 16.0f, 3.75f, 16.0f) + horizontalLineToRelative(2.5f) + close() + moveTo(9.75f, 18.0f) + horizontalLineToRelative(11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(9.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(11.6f) + horizontalLineToRelative(-11.5f) + close() + moveTo(6.25f, 9.0f) + curveTo(7.2f, 9.0f, 8.0f, 9.78f, 8.0f, 10.75f) + verticalLineToRelative(2.5f) + curveTo(8.0f, 14.22f, 7.2f, 15.0f, 6.25f, 15.0f) + horizontalLineToRelative(-2.5f) + curveTo(2.78f, 15.0f, 2.0f, 14.22f, 2.0f, 13.25f) + verticalLineToRelative(-2.5f) + curveTo(2.0f, 9.78f, 2.78f, 9.0f, 3.75f, 9.0f) + horizontalLineToRelative(2.5f) + close() + moveTo(9.75f, 11.0f) + horizontalLineToRelative(11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(9.75f, 12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(11.6f) + horizontalLineToRelative(-11.5f) + close() + moveTo(6.25f, 2.0f) + curveTo(7.2f, 2.0f, 8.0f, 2.78f, 8.0f, 3.75f) + verticalLineToRelative(2.5f) + curveTo(8.0f, 7.2f, 7.2f, 8.0f, 6.25f, 8.0f) + horizontalLineToRelative(-2.5f) + curveTo(2.78f, 8.0f, 2.0f, 7.2f, 2.0f, 6.25f) + verticalLineToRelative(-2.5f) + curveTo(2.0f, 2.78f, 2.78f, 2.0f, 3.75f, 2.0f) + horizontalLineToRelative(2.5f) + close() + moveTo(9.75f, 4.0f) + horizontalLineToRelative(11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(9.75f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(11.6f) + horizontalLineToRelative(-11.5f) + close() + } + } + return _appsList!! + } + +private var _appsList: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AppsListDetail.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AppsListDetail.kt new file mode 100644 index 00000000..88901589 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AppsListDetail.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AppsListDetail: ImageVector + get() { + if (_appsListDetail != null) { + return _appsListDetail!! + } + _appsListDetail = fluentIcon(name = "Filled.AppsListDetail") { + fluentPath { + moveTo(4.25f, 4.0f) + curveTo(3.01f, 4.0f, 2.0f, 5.0f, 2.0f, 6.25f) + verticalLineToRelative(2.5f) + curveTo(2.0f, 9.99f, 3.0f, 11.0f, 4.25f, 11.0f) + horizontalLineToRelative(2.5f) + curveTo(7.99f, 11.0f, 9.0f, 10.0f, 9.0f, 8.75f) + verticalLineToRelative(-2.5f) + curveTo(9.0f, 5.01f, 8.0f, 4.0f, 6.75f, 4.0f) + horizontalLineToRelative(-2.5f) + close() + moveTo(11.25f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-10.0f) + close() + moveTo(11.25f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-7.0f) + close() + moveTo(4.25f, 13.0f) + curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) + verticalLineToRelative(2.5f) + curveTo(2.0f, 18.99f, 3.0f, 20.0f, 4.25f, 20.0f) + horizontalLineToRelative(2.5f) + curveTo(7.99f, 20.0f, 9.0f, 19.0f, 9.0f, 17.75f) + verticalLineToRelative(-2.5f) + curveTo(9.0f, 14.01f, 8.0f, 13.0f, 6.75f, 13.0f) + horizontalLineToRelative(-2.5f) + close() + moveTo(11.25f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-10.0f) + close() + moveTo(11.25f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-7.0f) + close() + } + } + return _appsListDetail!! + } + +private var _appsListDetail: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Archive.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Archive.kt new file mode 100644 index 00000000..0ed6ce00 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Archive.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Archive: ImageVector + get() { + if (_archive != null) { + return _archive!! + } + _archive = fluentIcon(name = "Filled.Archive") { + fluentPath { + moveTo(3.0f, 4.5f) + curveTo(3.0f, 3.67f, 3.67f, 3.0f, 4.5f, 3.0f) + horizontalLineToRelative(15.0f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + lineTo(21.0f, 6.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-15.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 3.0f, 6.0f) + lineTo(3.0f, 4.5f) + close() + moveTo(4.0f, 9.0f) + horizontalLineToRelative(16.0f) + verticalLineToRelative(8.25f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 16.25f, 21.0f) + horizontalLineToRelative(-8.5f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 4.0f, 17.25f) + lineTo(4.0f, 9.0f) + close() + moveTo(10.25f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + close() + } + } + return _archive!! + } + +private var _archive: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArchiveArrowBack.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArchiveArrowBack.kt new file mode 100644 index 00000000..fa4462c6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArchiveArrowBack.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArchiveArrowBack: ImageVector + get() { + if (_archiveArrowBack != null) { + return _archiveArrowBack!! + } + _archiveArrowBack = fluentIcon(name = "Filled.ArchiveArrowBack") { + fluentPath { + moveTo(3.0f, 4.5f) + curveTo(3.0f, 3.67f, 3.67f, 3.0f, 4.5f, 3.0f) + horizontalLineToRelative(15.0f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + lineTo(21.0f, 6.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-15.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 3.0f, 6.0f) + lineTo(3.0f, 4.5f) + close() + moveTo(4.0f, 9.0f) + horizontalLineToRelative(16.0f) + verticalLineToRelative(2.5f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, -5.5f, 0.23f) + curveToRelative(-0.01f, -0.4f, -0.34f, -0.73f, -0.75f, -0.73f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.1f) + arcToRelative(6.49f, 6.49f, 0.0f, false, false, -1.33f, 8.5f) + lineTo(7.75f, 21.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 4.0f, 17.25f) + lineTo(4.0f, 9.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(16.35f, 15.35f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(1.5f, 1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-0.64f, -0.65f) + horizontalLineToRelative(2.04f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(0.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-0.25f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-2.04f) + lineToRelative(0.64f, -0.65f) + close() + } + } + return _archiveArrowBack!! + } + +private var _archiveArrowBack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArchiveMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArchiveMultiple.kt new file mode 100644 index 00000000..fbddb88a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArchiveMultiple.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArchiveMultiple: ImageVector + get() { + if (_archiveMultiple != null) { + return _archiveMultiple!! + } + _archiveMultiple = fluentIcon(name = "Filled.ArchiveMultiple") { + fluentPath { + moveTo(4.75f, 2.0f) + curveTo(3.78f, 2.0f, 3.0f, 2.78f, 3.0f, 3.75f) + verticalLineToRelative(1.5f) + curveTo(3.0f, 6.22f, 3.78f, 7.0f, 4.75f, 7.0f) + horizontalLineToRelative(13.5f) + curveTo(19.22f, 7.0f, 20.0f, 6.22f, 20.0f, 5.25f) + verticalLineToRelative(-1.5f) + curveTo(20.0f, 2.78f, 19.22f, 2.0f, 18.25f, 2.0f) + lineTo(4.75f, 2.0f) + close() + moveTo(19.0f, 8.0f) + lineTo(4.0f, 8.0f) + verticalLineToRelative(7.75f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 3.75f, 3.75f) + horizontalLineToRelative(7.5f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 19.0f, 15.75f) + lineTo(19.0f, 8.0f) + close() + moveTo(9.0f, 11.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.48f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(9.75f, 12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(21.5f, 11.75f) + curveToRelative(0.0f, -1.23f, -0.59f, -2.32f, -1.5f, -3.0f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 2.35f, -1.9f, 4.25f, -4.25f, 4.25f) + horizontalLineToRelative(-8.5f) + curveToRelative(0.68f, 0.91f, 1.77f, 1.5f, 3.0f, 1.5f) + horizontalLineToRelative(5.5f) + arcToRelative(5.75f, 5.75f, 0.0f, false, false, 5.75f, -5.75f) + verticalLineToRelative(-4.5f) + close() + } + } + return _archiveMultiple!! + } + +private var _archiveMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArchiveSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArchiveSettings.kt new file mode 100644 index 00000000..e1f76bcd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArchiveSettings.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArchiveSettings: ImageVector + get() { + if (_archiveSettings != null) { + return _archiveSettings!! + } + _archiveSettings = fluentIcon(name = "Filled.ArchiveSettings") { + fluentPath { + moveTo(3.0f, 4.5f) + curveTo(3.0f, 3.67f, 3.67f, 3.0f, 4.5f, 3.0f) + horizontalLineToRelative(15.0f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + lineTo(21.0f, 6.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-15.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 3.0f, 6.0f) + lineTo(3.0f, 4.5f) + close() + moveTo(4.0f, 9.0f) + horizontalLineToRelative(16.0f) + verticalLineToRelative(2.5f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, -5.5f, 0.23f) + curveToRelative(-0.01f, -0.4f, -0.34f, -0.73f, -0.75f, -0.73f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.1f) + arcToRelative(6.49f, 6.49f, 0.0f, false, false, -1.33f, 8.5f) + lineTo(7.75f, 21.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 4.0f, 17.25f) + lineTo(4.0f, 9.0f) + close() + moveTo(14.28f, 13.98f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.59f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) + lineToRelative(0.55f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) + lineToRelative(-0.19f, 0.64f) + curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) + lineToRelative(0.49f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.9f) + lineToRelative(-0.2f, -0.7f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) + lineToRelative(0.59f, -0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, -0.01f, -1.8f) + lineToRelative(-0.54f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.19f, -0.63f) + curveToRelative(-0.44f, -0.39f, -0.94f, -0.7f, -1.49f, -0.93f) + lineToRelative(-0.49f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.91f) + lineToRelative(0.2f, 0.69f) + close() + moveTo(17.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) + close() + } + } + return _archiveSettings!! + } + +private var _archiveSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowAutofitContent.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowAutofitContent.kt new file mode 100644 index 00000000..062bc07a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowAutofitContent.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowAutofitContent: ImageVector + get() { + if (_arrowAutofitContent != null) { + return _arrowAutofitContent!! + } + _arrowAutofitContent = fluentIcon(name = "Filled.ArrowAutofitContent") { + fluentPath { + moveTo(6.06f, 5.24f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.12f, -0.98f) + lineToRelative(-1.75f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 0.98f) + lineToRelative(1.75f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.12f, -0.98f) + lineTo(5.4f, 7.5f) + horizontalLineToRelative(2.86f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(5.4f) + lineToRelative(0.66f, -0.76f) + close() + moveTo(18.02f, 4.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 1.05f) + lineToRelative(0.66f, 0.76f) + horizontalLineToRelative(-2.86f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.86f) + lineToRelative(-0.66f, 0.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, 0.98f) + lineToRelative(1.75f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -0.98f) + lineToRelative(-1.75f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -0.07f) + close() + moveTo(5.75f, 11.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 13.75f) + verticalLineToRelative(4.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, 2.75f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 17.75f) + verticalLineToRelative(-4.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 11.0f) + horizontalLineTo(5.75f) + close() + moveTo(6.0f, 15.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineTo(6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _arrowAutofitContent!! + } + +private var _arrowAutofitContent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowAutofitDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowAutofitDown.kt new file mode 100644 index 00000000..da2aeb7f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowAutofitDown.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowAutofitDown: ImageVector + get() { + if (_arrowAutofitDown != null) { + return _arrowAutofitDown!! + } + _arrowAutofitDown = fluentIcon(name = "Filled.ArrowAutofitDown") { + fluentPath { + moveToRelative(12.95f, 18.1f) + lineToRelative(0.09f, 0.1f) + lineToRelative(2.35f, 2.36f) + curveToRelative(0.18f, 0.27f, 0.5f, 0.44f, 0.86f, 0.44f) + curveToRelative(0.32f, 0.0f, 0.62f, -0.14f, 0.8f, -0.37f) + horizontalLineToRelative(0.01f) + lineToRelative(0.05f, -0.07f) + lineToRelative(2.36f, -2.36f) + lineToRelative(0.08f, -0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.01f, -1.18f) + verticalLineToRelative(-0.01f) + lineToRelative(-0.1f, -0.12f) + lineToRelative(-0.1f, -0.09f) + horizontalLineToRelative(-0.01f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.18f, -0.01f) + lineToRelative(-0.12f, 0.1f) + lineToRelative(-0.8f, 0.8f) + verticalLineTo(3.79f) + lineToRelative(-0.01f, -0.01f) + curveToRelative(-0.07f, -0.47f, -0.51f, -0.78f, -0.99f, -0.78f) + reflectiveCurveToRelative(-0.92f, 0.31f, -0.99f, 0.78f) + lineToRelative(-0.01f, 0.12f) + verticalLineToRelative(13.69f) + lineToRelative(-0.8f, -0.8f) + lineToRelative(-0.1f, -0.09f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.4f) + close() + moveTo(4.0f, 17.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 20.0f) + horizontalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + verticalLineToRelative(-11.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-6.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 6.5f) + verticalLineToRelative(11.0f) + close() + } + } + return _arrowAutofitDown!! + } + +private var _arrowAutofitDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowAutofitHeight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowAutofitHeight.kt new file mode 100644 index 00000000..c5c31dbb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowAutofitHeight.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowAutofitHeight: ImageVector + get() { + if (_arrowAutofitHeight != null) { + return _arrowAutofitHeight!! + } + _arrowAutofitHeight = fluentIcon(name = "Filled.ArrowAutofitHeight") { + fluentPath { + moveToRelative(12.95f, 5.9f) + lineToRelative(0.09f, -0.1f) + lineToRelative(2.35f, -2.36f) + curveToRelative(0.18f, -0.27f, 0.5f, -0.44f, 0.86f, -0.44f) + curveToRelative(0.32f, 0.0f, 0.62f, 0.14f, 0.8f, 0.37f) + horizontalLineToRelative(0.01f) + lineToRelative(0.05f, 0.07f) + lineToRelative(2.36f, 2.36f) + lineToRelative(0.08f, 0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.01f, 1.18f) + verticalLineToRelative(0.01f) + lineToRelative(-0.1f, 0.12f) + lineToRelative(-0.1f, 0.09f) + horizontalLineToRelative(-0.01f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.18f, 0.01f) + lineToRelative(-0.12f, -0.1f) + lineToRelative(-0.8f, -0.8f) + lineTo(17.25f, 9.71f) + lineToRelative(-0.01f, 0.01f) + curveToRelative(-0.07f, 0.47f, -0.51f, 0.78f, -0.99f, 0.78f) + reflectiveCurveToRelative(-0.92f, -0.31f, -0.99f, -0.78f) + lineToRelative(-0.01f, -0.12f) + lineTo(15.25f, 6.41f) + lineToRelative(-0.8f, 0.8f) + lineToRelative(-0.1f, 0.09f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.4f) + close() + moveTo(4.0f, 6.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 4.0f) + horizontalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(11.0f) + curveToRelative(0.0f, 0.27f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-4.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 17.5f) + verticalLineToRelative(-11.0f) + close() + moveTo(14.45f, 16.79f) + lineTo(14.35f, 16.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.3f, 1.5f) + lineToRelative(2.34f, 2.36f) + curveToRelative(0.18f, 0.27f, 0.5f, 0.44f, 0.86f, 0.44f) + reflectiveCurveToRelative(0.68f, -0.17f, 0.86f, -0.44f) + lineToRelative(2.36f, -2.36f) + lineToRelative(0.08f, -0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.09f, -1.3f) + verticalLineToRelative(-0.01f) + lineToRelative(-0.1f, -0.09f) + horizontalLineToRelative(-0.01f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.3f, 0.1f) + lineToRelative(-0.8f, 0.79f) + verticalLineToRelative(-3.31f) + curveToRelative(-0.08f, -0.47f, -0.52f, -0.78f, -1.0f, -0.78f) + curveToRelative(-0.52f, 0.0f, -1.0f, 0.38f, -1.0f, 0.9f) + verticalLineToRelative(3.19f) + lineToRelative(-0.8f, -0.8f) + close() + } + } + return _arrowAutofitHeight!! + } + +private var _arrowAutofitHeight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowAutofitHeightDotted.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowAutofitHeightDotted.kt new file mode 100644 index 00000000..3cb534c0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowAutofitHeightDotted.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowAutofitHeightDotted: ImageVector + get() { + if (_arrowAutofitHeightDotted != null) { + return _arrowAutofitHeightDotted!! + } + _arrowAutofitHeightDotted = fluentIcon(name = "Filled.ArrowAutofitHeightDotted") { + fluentPath { + moveTo(17.2f, 3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 1.4f) + lineToRelative(1.8f, -1.79f) + lineToRelative(1.8f, 1.8f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, -1.42f) + lineToRelative(-2.5f, -2.5f) + close() + moveTo(6.5f, 4.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 6.5f) + verticalLineToRelative(11.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 20.0f) + horizontalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + verticalLineToRelative(-11.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(17.2f, 20.7f) + lineTo(19.7f, 18.2f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.4f) + lineToRelative(-1.8f, 1.79f) + lineToRelative(-1.8f, -1.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) + lineToRelative(2.5f, 2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(16.5f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(16.5f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(17.5f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + } + } + return _arrowAutofitHeightDotted!! + } + +private var _arrowAutofitHeightDotted: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowAutofitUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowAutofitUp.kt new file mode 100644 index 00000000..f8f2ff6e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowAutofitUp.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowAutofitUp: ImageVector + get() { + if (_arrowAutofitUp != null) { + return _arrowAutofitUp!! + } + _arrowAutofitUp = fluentIcon(name = "Filled.ArrowAutofitUp") { + fluentPath { + moveToRelative(12.95f, 5.9f) + lineToRelative(0.09f, -0.1f) + lineToRelative(2.35f, -2.36f) + curveToRelative(0.18f, -0.27f, 0.5f, -0.44f, 0.86f, -0.44f) + curveToRelative(0.32f, 0.0f, 0.62f, 0.14f, 0.8f, 0.37f) + horizontalLineToRelative(0.01f) + lineToRelative(0.05f, 0.07f) + lineToRelative(2.36f, 2.36f) + lineToRelative(0.08f, 0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.01f, 1.18f) + verticalLineToRelative(0.01f) + lineToRelative(-0.1f, 0.12f) + lineToRelative(-0.1f, 0.09f) + horizontalLineToRelative(-0.01f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.18f, 0.01f) + lineToRelative(-0.12f, -0.1f) + lineToRelative(-0.8f, -0.8f) + verticalLineTo(20.21f) + lineToRelative(-0.01f, 0.01f) + curveToRelative(-0.07f, 0.47f, -0.51f, 0.78f, -0.99f, 0.78f) + reflectiveCurveToRelative(-0.92f, -0.31f, -0.99f, -0.78f) + lineToRelative(-0.01f, -0.12f) + verticalLineTo(6.41f) + lineToRelative(-0.8f, 0.8f) + lineToRelative(-0.1f, 0.09f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.4f) + close() + moveTo(4.0f, 6.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 4.0f) + horizontalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(11.0f) + curveToRelative(0.0f, 0.27f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-6.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 17.5f) + verticalLineToRelative(-11.0f) + close() + } + } + return _arrowAutofitUp!! + } + +private var _arrowAutofitUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowAutofitWidth.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowAutofitWidth.kt new file mode 100644 index 00000000..10df2612 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowAutofitWidth.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowAutofitWidth: ImageVector + get() { + if (_arrowAutofitWidth != null) { + return _arrowAutofitWidth!! + } + _arrowAutofitWidth = fluentIcon(name = "Filled.ArrowAutofitWidth") { + fluentPath { + moveTo(17.5f, 4.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 20.0f, 6.5f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + horizontalLineToRelative(-11.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-4.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 4.0f) + horizontalLineToRelative(11.0f) + close() + moveTo(18.2f, 13.04f) + lineTo(18.1f, 12.95f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.4f) + lineToRelative(0.09f, 0.1f) + lineToRelative(0.8f, 0.8f) + lineTo(14.29f, 15.25f) + lineToRelative(-0.01f, 0.01f) + curveToRelative(-0.47f, 0.07f, -0.78f, 0.51f, -0.78f, 0.99f) + reflectiveCurveToRelative(0.31f, 0.92f, 0.78f, 0.99f) + lineToRelative(0.12f, 0.01f) + horizontalLineToRelative(3.19f) + lineToRelative(-0.8f, 0.8f) + lineToRelative(-0.1f, 0.11f) + verticalLineToRelative(0.01f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.18f) + horizontalLineToRelative(0.01f) + lineToRelative(0.1f, 0.11f) + lineToRelative(0.1f, 0.1f) + horizontalLineToRelative(0.02f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.17f, 0.0f) + lineToRelative(0.01f, -0.01f) + lineToRelative(0.1f, -0.08f) + lineToRelative(2.36f, -2.36f) + lineToRelative(0.07f, -0.05f) + curveToRelative(0.23f, -0.19f, 0.37f, -0.49f, 0.37f, -0.8f) + curveToRelative(0.0f, -0.37f, -0.17f, -0.69f, -0.44f, -0.87f) + lineToRelative(-2.36f, -2.35f) + close() + moveTo(7.27f, 14.36f) + lineToRelative(-0.08f, 0.1f) + lineToRelative(-0.8f, 0.8f) + horizontalLineToRelative(3.18f) + curveToRelative(0.53f, 0.0f, 0.9f, 0.47f, 0.9f, 1.0f) + curveToRelative(0.0f, 0.47f, -0.31f, 0.91f, -0.77f, 0.98f) + horizontalLineToRelative(-0.01f) + lineToRelative(-0.11f, 0.01f) + horizontalLineToRelative(-3.2f) + lineToRelative(0.8f, 0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.1f, 1.3f) + lineToRelative(-0.1f, 0.1f) + verticalLineToRelative(0.01f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.3f, 0.1f) + lineToRelative(-0.1f, -0.1f) + lineToRelative(-2.36f, -2.35f) + curveToRelative(-0.28f, -0.17f, -0.45f, -0.5f, -0.45f, -0.86f) + curveToRelative(0.0f, -0.35f, 0.17f, -0.68f, 0.45f, -0.86f) + lineToRelative(2.35f, -2.34f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.5f, 1.3f) + close() + } + } + return _arrowAutofitWidth!! + } + +private var _arrowAutofitWidth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowAutofitWidthDotted.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowAutofitWidthDotted.kt new file mode 100644 index 00000000..47a35c27 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowAutofitWidthDotted.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowAutofitWidthDotted: ImageVector + get() { + if (_arrowAutofitWidthDotted != null) { + return _arrowAutofitWidthDotted!! + } + _arrowAutofitWidthDotted = fluentIcon(name = "Filled.ArrowAutofitWidthDotted") { + fluentPath { + moveTo(20.0f, 6.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 17.5f, 4.0f) + horizontalLineToRelative(-11.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 6.5f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.28f, 0.23f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(11.0f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(18.2f, 19.7f) + lineTo(20.7f, 17.2f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.4f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.4f) + lineToRelative(1.79f, 1.8f) + lineToRelative(-1.8f, 1.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.4f) + close() + moveTo(3.3f, 15.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.4f) + lineToRelative(2.5f, 2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, -1.4f) + lineToRelative(-1.79f, -1.8f) + lineToRelative(1.8f, -1.8f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.42f, -1.4f) + lineToRelative(-2.5f, 2.5f) + close() + moveTo(13.0f, 16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(9.0f, 15.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(8.0f, 17.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(1.0f) + close() + moveTo(17.0f, 16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + close() + } + } + return _arrowAutofitWidthDotted!! + } + +private var _arrowAutofitWidthDotted: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowBetweenDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowBetweenDown.kt new file mode 100644 index 00000000..56a23d94 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowBetweenDown.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowBetweenDown: ImageVector + get() { + if (_arrowBetweenDown != null) { + return _arrowBetweenDown!! + } + _arrowBetweenDown = fluentIcon(name = "Filled.ArrowBetweenDown") { + fluentPath { + moveTo(6.5f, 2.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) + verticalLineToRelative(0.25f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 7.0f, 5.0f) + horizontalLineToRelative(10.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) + verticalLineToRelative(-0.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(0.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + lineTo(7.0f, 3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + verticalLineToRelative(-0.25f) + close() + moveTo(12.0f, 6.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(7.09f) + lineToRelative(2.8f, -2.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.42f) + lineToRelative(-4.5f, 4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) + lineToRelative(-4.5f, -4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, -1.42f) + lineToRelative(2.8f, 2.8f) + lineTo(11.0f, 7.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(4.5f, 21.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 7.0f, 19.0f) + horizontalLineToRelative(10.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) + verticalLineToRelative(0.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-0.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + lineTo(7.0f, 21.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(0.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-0.25f) + close() + } + } + return _arrowBetweenDown!! + } + +private var _arrowBetweenDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowBidirectionalUpDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowBidirectionalUpDown.kt new file mode 100644 index 00000000..e934b170 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowBidirectionalUpDown.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowBidirectionalUpDown: ImageVector + get() { + if (_arrowBidirectionalUpDown != null) { + return _arrowBidirectionalUpDown!! + } + _arrowBidirectionalUpDown = fluentIcon(name = "Filled.ArrowBidirectionalUpDown") { + fluentPath { + moveTo(7.97f, 9.69f) + arcTo(1.0f, 1.0f, 0.0f, true, true, 6.54f, 8.3f) + lineToRelative(4.75f, -5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.45f, 0.0f) + lineToRelative(4.75f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.46f, 1.38f) + lineTo(13.0f, 6.5f) + verticalLineToRelative(11.0f) + lineToRelative(3.02f, -3.19f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.46f, 1.38f) + lineToRelative(-4.76f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.45f, 0.0f) + lineToRelative(-4.74f, -5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.44f, -1.38f) + lineTo(11.0f, 17.5f) + verticalLineToRelative(-11.0f) + lineTo(7.97f, 9.7f) + close() + } + } + return _arrowBidirectionalUpDown!! + } + +private var _arrowBidirectionalUpDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowBounce.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowBounce.kt new file mode 100644 index 00000000..af678065 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowBounce.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowBounce: ImageVector + get() { + if (_arrowBounce != null) { + return _arrowBounce!! + } + _arrowBounce = fluentIcon(name = "Filled.ArrowBounce") { + fluentPath { + moveTo(11.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineTo(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineTo(9.41f) + lineToRelative(8.04f, 8.05f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 0.0f) + lineTo(21.7f, 9.2f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, -1.42f) + lineToRelative(-7.54f, 7.55f) + lineTo(5.41f, 8.0f) + horizontalLineTo(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + close() + } + } + return _arrowBounce!! + } + +private var _arrowBounce: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCircleDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCircleDown.kt new file mode 100644 index 00000000..b4efaa04 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCircleDown.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowCircleDown: ImageVector + get() { + if (_arrowCircleDown != null) { + return _arrowCircleDown!! + } + _arrowCircleDown = fluentIcon(name = "Filled.ArrowCircleDown") { + fluentPath { + moveTo(2.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, -20.0f, 0.0f) + close() + moveTo(16.53f, 11.72f) + curveToRelative(0.27f, 0.27f, 0.29f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-4.0f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-4.0f, -4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -1.13f) + lineToRelative(0.09f, 0.07f) + lineToRelative(2.72f, 2.72f) + lineTo(11.25f, 7.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineTo(12.0f, 7.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + verticalLineToRelative(0.1f) + lineToRelative(0.01f, 6.69f) + lineToRelative(2.72f, -2.72f) + curveToRelative(0.27f, -0.27f, 0.68f, -0.3f, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + close() + } + } + return _arrowCircleDown!! + } + +private var _arrowCircleDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCircleDownDouble.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCircleDownDouble.kt new file mode 100644 index 00000000..320698de --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCircleDownDouble.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowCircleDownDouble: ImageVector + get() { + if (_arrowCircleDownDouble != null) { + return _arrowCircleDownDouble!! + } + _arrowCircleDownDouble = fluentIcon(name = "Filled.ArrowCircleDownDouble") { + fluentPath { + moveTo(11.25f, 13.75f) + curveToRelative(0.27f, 0.27f, 0.29f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-1.97f, 1.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-1.97f, -1.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) + lineToRelative(0.08f, 0.07f) + lineToRelative(0.69f, 0.7f) + verticalLineToRelative(-6.7f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + verticalLineToRelative(0.1f) + lineToRelative(0.01f, 6.69f) + lineToRelative(0.69f, -0.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + close() + moveTo(2.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, -20.0f, 0.0f) + close() + moveTo(17.67f, 13.68f) + lineTo(17.75f, 13.75f) + curveToRelative(0.27f, 0.27f, 0.29f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-1.97f, 1.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-1.97f, -1.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) + lineToRelative(0.08f, 0.07f) + lineToRelative(0.69f, 0.7f) + verticalLineToRelative(-6.7f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + verticalLineToRelative(6.79f) + lineToRelative(0.7f, -0.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + close() + } + } + return _arrowCircleDownDouble!! + } + +private var _arrowCircleDownDouble: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCircleDownRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCircleDownRight.kt new file mode 100644 index 00000000..83e7dac3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCircleDownRight.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowCircleDownRight: ImageVector + get() { + if (_arrowCircleDownRight != null) { + return _arrowCircleDownRight!! + } + _arrowCircleDownRight = fluentIcon(name = "Filled.ArrowCircleDownRight") { + fluentPath { + moveTo(12.0f, 22.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) + close() + moveTo(14.5f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(4.74f) + lineTo(8.22f, 9.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineToRelative(5.22f, 5.17f) + lineTo(14.5f, 8.75f) + close() + } + } + return _arrowCircleDownRight!! + } + +private var _arrowCircleDownRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCircleDownSplit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCircleDownSplit.kt new file mode 100644 index 00000000..bc5bd79d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCircleDownSplit.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowCircleDownSplit: ImageVector + get() { + if (_arrowCircleDownSplit != null) { + return _arrowCircleDownSplit!! + } + _arrowCircleDownSplit = fluentIcon(name = "Filled.ArrowCircleDownSplit") { + fluentPath { + moveTo(12.0f, 22.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, -20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, 20.0f) + close() + moveTo(11.0f, 14.0f) + lineTo(10.92f, 13.93f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) + lineToRelative(-0.44f, 0.44f) + lineTo(9.5f, 10.5f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(3.94f) + lineToRelative(-0.51f, -0.44f) + lineToRelative(-0.09f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, 1.13f) + lineToRelative(1.79f, 1.72f) + lineToRelative(0.08f, 0.07f) + curveToRelative(0.3f, 0.22f, 0.71f, 0.2f, 0.98f, -0.07f) + lineToRelative(1.72f, -1.72f) + lineToRelative(0.07f, -0.08f) + curveToRelative(0.22f, -0.3f, 0.2f, -0.72f, -0.07f, -0.98f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) + lineToRelative(-0.44f, 0.44f) + verticalLineToRelative(-4.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.64f) + horizontalLineToRelative(-2.5f) + lineTo(12.75f, 5.65f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 12.0f, 5.0f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + lineTo(11.25f, 9.0f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + verticalLineToRelative(4.69f) + lineTo(7.56f, 14.0f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 1.13f) + lineToRelative(1.72f, 1.72f) + lineToRelative(0.08f, 0.07f) + curveToRelative(0.3f, 0.22f, 0.71f, 0.2f, 0.98f, -0.07f) + lineTo(11.0f, 15.06f) + lineToRelative(0.07f, -0.09f) + curveToRelative(0.22f, -0.29f, 0.2f, -0.7f, -0.07f, -0.97f) + close() + } + } + return _arrowCircleDownSplit!! + } + +private var _arrowCircleDownSplit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCircleLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCircleLeft.kt new file mode 100644 index 00000000..fcda40ec --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCircleLeft.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowCircleLeft: ImageVector + get() { + if (_arrowCircleLeft != null) { + return _arrowCircleLeft!! + } + _arrowCircleLeft = fluentIcon(name = "Filled.ArrowCircleLeft") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) + close() + moveTo(12.28f, 16.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-4.0f, -4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-2.72f, 2.72f) + horizontalLineToRelative(6.69f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(9.56f, 12.75f) + lineToRelative(2.72f, 2.72f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + close() + } + } + return _arrowCircleLeft!! + } + +private var _arrowCircleLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCircleRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCircleRight.kt new file mode 100644 index 00000000..b83ea26d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCircleRight.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowCircleRight: ImageVector + get() { + if (_arrowCircleRight != null) { + return _arrowCircleRight!! + } + _arrowCircleRight = fluentIcon(name = "Filled.ArrowCircleRight") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(12.78f, 7.47f) + lineTo(12.7f, 7.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.89f, -0.01f) + lineToRelative(-0.09f, 0.08f) + lineToRelative(-0.07f, 0.08f) + curveToRelative(-0.2f, 0.26f, -0.2f, 0.62f, 0.0f, 0.89f) + lineToRelative(0.07f, 0.09f) + lineToRelative(2.72f, 2.72f) + lineTo(7.65f, 11.25f) + curveToRelative(-0.33f, 0.05f, -0.6f, 0.31f, -0.64f, 0.65f) + lineTo(7.0f, 12.0f) + verticalLineToRelative(0.1f) + curveToRelative(0.05f, 0.33f, 0.32f, 0.6f, 0.65f, 0.64f) + horizontalLineToRelative(6.79f) + lineToRelative(-2.72f, 2.73f) + lineToRelative(-0.07f, 0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.05f, 1.05f) + lineToRelative(0.08f, -0.07f) + lineToRelative(4.0f, -4.0f) + lineToRelative(0.07f, -0.08f) + curveToRelative(0.2f, -0.26f, 0.2f, -0.62f, 0.01f, -0.89f) + lineToRelative(-0.08f, -0.09f) + lineToRelative(-4.0f, -4.0f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(0.08f, 0.07f) + close() + } + } + return _arrowCircleRight!! + } + +private var _arrowCircleRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCircleUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCircleUp.kt new file mode 100644 index 00000000..5d64c710 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCircleUp.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowCircleUp: ImageVector + get() { + if (_arrowCircleUp != null) { + return _arrowCircleUp!! + } + _arrowCircleUp = fluentIcon(name = "Filled.ArrowCircleUp") { + fluentPath { + moveTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 20.0f, 0.0f) + close() + moveTo(7.47f, 12.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + lineToRelative(4.0f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 1.13f) + lineToRelative(-0.09f, -0.07f) + lineToRelative(-2.72f, -2.72f) + verticalLineToRelative(6.69f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineTo(12.0f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + verticalLineToRelative(-0.1f) + lineToRelative(-0.01f, -6.69f) + lineToRelative(-2.72f, 2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + close() + } + } + return _arrowCircleUp!! + } + +private var _arrowCircleUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCircleUpLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCircleUpLeft.kt new file mode 100644 index 00000000..2958caad --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCircleUpLeft.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowCircleUpLeft: ImageVector + get() { + if (_arrowCircleUpLeft != null) { + return _arrowCircleUpLeft!! + } + _arrowCircleUpLeft = fluentIcon(name = "Filled.ArrowCircleUpLeft") { + fluentPath { + moveTo(12.0f, 22.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) + close() + moveTo(15.25f, 9.5f) + horizontalLineToRelative(-4.74f) + lineToRelative(5.27f, 5.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(9.5f, 10.61f) + verticalLineToRelative(4.64f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-6.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + } + } + return _arrowCircleUpLeft!! + } + +private var _arrowCircleUpLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowClockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowClockwise.kt new file mode 100644 index 00000000..1b1f4210 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowClockwise.kt @@ -0,0 +1,39 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowClockwise: ImageVector + get() { + if (_arrowClockwise != null) { + return _arrowClockwise!! + } + _arrowClockwise = fluentIcon(name = "Filled.ArrowClockwise") { + fluentPath { + moveTo(12.0f, 4.75f) + arcToRelative(7.25f, 7.25f, 0.0f, true, false, 7.2f, 6.4f) + curveToRelative(-0.07f, -0.58f, 0.36f, -1.15f, 0.95f, -1.15f) + curveToRelative(0.52f, 0.0f, 0.97f, 0.36f, 1.03f, 0.87f) + arcToRelative(9.25f, 9.25f, 0.0f, true, true, -3.43f, -6.12f) + verticalLineToRelative(-0.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(2.7f) + lineToRelative(0.03f, 0.05f) + horizontalLineToRelative(-0.03f) + verticalLineToRelative(0.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(0.67f) + arcTo(7.22f, 7.22f, 0.0f, false, false, 12.0f, 4.75f) + close() + } + } + return _arrowClockwise!! + } + +private var _arrowClockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowClockwiseDashes.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowClockwiseDashes.kt new file mode 100644 index 00000000..1324bf54 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowClockwiseDashes.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowClockwiseDashes: ImageVector + get() { + if (_arrowClockwiseDashes != null) { + return _arrowClockwiseDashes!! + } + _arrowClockwiseDashes = fluentIcon(name = "Filled.ArrowClockwiseDashes") { + fluentPath { + moveTo(12.0f, 2.75f) + curveToRelative(-0.66f, 0.0f, -1.3f, 0.07f, -1.92f, 0.2f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.41f, 1.96f) + arcToRelative(7.28f, 7.28f, 0.0f, false, true, 3.02f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.41f, -1.96f) + arcToRelative(9.28f, 9.28f, 0.0f, false, false, -1.92f, -0.2f) + close() + moveTo(17.75f, 4.75f) + verticalLineToRelative(-0.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(0.67f) + curveToRelative(-0.15f, -0.12f, -0.31f, -0.23f, -0.47f, -0.33f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.09f, -1.68f) + curveToRelative(0.24f, 0.16f, 0.48f, 0.33f, 0.71f, 0.51f) + close() + moveTo(8.35f, 4.53f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.39f, -0.29f) + arcToRelative(9.3f, 9.3f, 0.0f, false, false, -2.72f, 2.72f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.68f, 1.1f) + arcToRelative(7.3f, 7.3f, 0.0f, false, true, 2.13f, -2.14f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.3f, -1.39f) + close() + moveTo(4.13f, 9.31f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.19f, 0.77f) + arcToRelative(9.28f, 9.28f, 0.0f, false, false, 0.0f, 3.84f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.96f, -0.41f) + arcToRelative(7.28f, 7.28f, 0.0f, false, true, 0.0f, -3.02f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.77f, -1.18f) + close() + moveTo(20.24f, 10.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + lineTo(19.24f, 12.0f) + curveToRelative(0.0f, 0.52f, -0.05f, 1.02f, -0.16f, 1.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.96f, 0.42f) + curveToRelative(0.13f, -0.62f, 0.2f, -1.26f, 0.2f, -1.92f) + verticalLineToRelative(-0.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + moveTo(19.46f, 15.65f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.39f, 0.3f) + arcToRelative(7.3f, 7.3f, 0.0f, false, true, -2.13f, 2.13f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.09f, 1.68f) + arcToRelative(9.3f, 9.3f, 0.0f, false, false, 2.72f, -2.72f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.3f, -1.38f) + close() + moveTo(5.91f, 15.95f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.68f, 1.09f) + arcToRelative(9.3f, 9.3f, 0.0f, false, false, 2.72f, 2.72f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.1f, -1.68f) + arcToRelative(7.3f, 7.3f, 0.0f, false, true, -2.14f, -2.13f) + close() + moveTo(10.48f, 19.09f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -0.41f, 1.96f) + arcToRelative(9.28f, 9.28f, 0.0f, false, false, 3.84f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -0.41f, -1.96f) + arcToRelative(7.29f, 7.29f, 0.0f, false, true, -3.02f, 0.0f) + close() + } + } + return _arrowClockwiseDashes!! + } + +private var _arrowClockwiseDashes: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCollapseAll.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCollapseAll.kt new file mode 100644 index 00000000..ae5abe28 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCollapseAll.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowCollapseAll: ImageVector + get() { + if (_arrowCollapseAll != null) { + return _arrowCollapseAll!! + } + _arrowCollapseAll = fluentIcon(name = "Filled.ArrowCollapseAll") { + fluentPath { + moveTo(2.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(3.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(6.3f, 8.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) + lineToRelative(3.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 1.4f) + lineTo(8.0f, 11.42f) + lineTo(8.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-7.59f) + lineToRelative(-1.3f, 1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.42f) + lineToRelative(3.0f, -3.0f) + close() + moveTo(21.0f, 10.0f) + horizontalLineToRelative(-9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + close() + } + } + return _arrowCollapseAll!! + } + +private var _arrowCollapseAll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCounterclockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCounterclockwise.kt new file mode 100644 index 00000000..07f91be2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCounterclockwise.kt @@ -0,0 +1,39 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowCounterclockwise: ImageVector + get() { + if (_arrowCounterclockwise != null) { + return _arrowCounterclockwise!! + } + _arrowCounterclockwise = fluentIcon(name = "Filled.ArrowCounterclockwise") { + fluentPath { + moveTo(12.0f, 4.75f) + arcToRelative(7.25f, 7.25f, 0.0f, true, true, -7.2f, 6.4f) + curveToRelative(0.07f, -0.58f, -0.36f, -1.15f, -0.95f, -1.15f) + curveToRelative(-0.52f, 0.0f, -0.97f, 0.36f, -1.03f, 0.87f) + arcToRelative(9.25f, 9.25f, 0.0f, true, false, 3.43f, -6.12f) + verticalLineToRelative(-0.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) + verticalLineToRelative(2.7f) + lineTo(4.22f, 7.0f) + horizontalLineToRelative(0.03f) + verticalLineToRelative(0.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + horizontalLineToRelative(-0.67f) + arcTo(7.22f, 7.22f, 0.0f, false, true, 12.0f, 4.75f) + close() + } + } + return _arrowCounterclockwise!! + } + +private var _arrowCounterclockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCounterclockwiseDashes.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCounterclockwiseDashes.kt new file mode 100644 index 00000000..57ba4e56 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCounterclockwiseDashes.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowCounterclockwiseDashes: ImageVector + get() { + if (_arrowCounterclockwiseDashes != null) { + return _arrowCounterclockwiseDashes!! + } + _arrowCounterclockwiseDashes = fluentIcon(name = "Filled.ArrowCounterclockwiseDashes") { + fluentPath { + moveTo(12.0f, 2.75f) + curveToRelative(0.66f, 0.0f, 1.3f, 0.07f, 1.92f, 0.2f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -0.41f, 1.96f) + arcToRelative(7.28f, 7.28f, 0.0f, false, false, -3.02f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -0.41f, -1.96f) + curveToRelative(0.62f, -0.13f, 1.26f, -0.2f, 1.92f, -0.2f) + close() + moveTo(6.25f, 4.75f) + verticalLineToRelative(-0.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) + verticalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-0.67f) + curveToRelative(0.15f, -0.12f, 0.31f, -0.23f, 0.47f, -0.33f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.09f, -1.68f) + curveToRelative(-0.24f, 0.16f, -0.48f, 0.33f, -0.71f, 0.51f) + close() + moveTo(15.65f, 4.53f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.39f, -0.29f) + arcToRelative(9.3f, 9.3f, 0.0f, false, true, 2.72f, 2.72f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.68f, 1.1f) + arcToRelative(7.3f, 7.3f, 0.0f, false, false, -2.13f, -2.14f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.3f, -1.39f) + close() + moveTo(19.86f, 9.31f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.19f, 0.77f) + arcToRelative(9.28f, 9.28f, 0.0f, false, true, 0.0f, 3.84f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.96f, -0.41f) + arcToRelative(7.29f, 7.29f, 0.0f, false, false, 0.0f, -3.02f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.77f, -1.18f) + close() + moveTo(3.75f, 10.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + lineTo(4.75f, 12.0f) + curveToRelative(0.0f, 0.52f, 0.05f, 1.02f, 0.16f, 1.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.96f, 0.42f) + arcToRelative(9.28f, 9.28f, 0.0f, false, true, -0.2f, -1.92f) + verticalLineToRelative(-0.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(4.53f, 15.65f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.39f, 0.3f) + arcToRelative(7.3f, 7.3f, 0.0f, false, false, 2.13f, 2.13f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.09f, 1.68f) + arcToRelative(9.3f, 9.3f, 0.0f, false, true, -2.72f, -2.72f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.3f, -1.38f) + close() + moveTo(18.08f, 15.95f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.68f, 1.09f) + arcToRelative(9.3f, 9.3f, 0.0f, false, true, -2.72f, 2.72f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.1f, -1.68f) + arcToRelative(7.3f, 7.3f, 0.0f, false, false, 2.14f, -2.13f) + close() + moveTo(13.51f, 19.09f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.41f, 1.96f) + arcToRelative(9.28f, 9.28f, 0.0f, false, true, -3.84f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.41f, -1.96f) + arcToRelative(7.29f, 7.29f, 0.0f, false, false, 3.02f, 0.0f) + close() + } + } + return _arrowCounterclockwiseDashes!! + } + +private var _arrowCounterclockwiseDashes: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCurveDownLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCurveDownLeft.kt new file mode 100644 index 00000000..a85d1d05 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowCurveDownLeft.kt @@ -0,0 +1,39 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowCurveDownLeft: ImageVector + get() { + if (_arrowCurveDownLeft != null) { + return _arrowCurveDownLeft!! + } + _arrowCurveDownLeft = fluentIcon(name = "Filled.ArrowCurveDownLeft") { + fluentPath { + moveTo(16.87f, 3.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.37f, 1.37f) + arcToRelative(6.18f, 6.18f, 0.0f, false, false, -3.12f, 3.7f) + arcToRelative(13.87f, 13.87f, 0.0f, false, false, -0.38f, 4.06f) + verticalLineToRelative(5.46f) + lineToRelative(3.3f, -3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, 1.42f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) + lineToRelative(-5.0f, -5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, -1.42f) + lineToRelative(3.3f, 3.3f) + verticalLineToRelative(-5.49f) + curveToRelative(0.0f, -1.37f, -0.01f, -3.02f, 0.47f, -4.61f) + arcToRelative(8.17f, 8.17f, 0.0f, false, true, 4.03f, -4.86f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.37f, 0.37f) + close() + } + } + return _arrowCurveDownLeft!! + } + +private var _arrowCurveDownLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowEnterLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowEnterLeft.kt new file mode 100644 index 00000000..dcfb1785 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowEnterLeft.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowEnterLeft: ImageVector + get() { + if (_arrowEnterLeft != null) { + return _arrowEnterLeft!! + } + _arrowEnterLeft = fluentIcon(name = "Filled.ArrowEnterLeft") { + fluentPath { + moveTo(21.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + verticalLineToRelative(6.62f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.3f, 3.5f) + horizontalLineTo(5.4f) + lineToRelative(3.3f, 3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.31f) + lineToRelative(-0.08f, 0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.08f) + lineToRelative(-0.1f, -0.08f) + lineToRelative(-5.0f, -5.0f) + arcToRelative(1.01f, 1.01f, 0.0f, false, true, -0.1f, -0.11f) + lineToRelative(-0.07f, -0.12f) + lineToRelative(-0.05f, -0.1f) + lineToRelative(-0.03f, -0.11f) + lineToRelative(-0.03f, -0.12f) + verticalLineToRelative(-0.06f) + lineTo(2.0f, 14.0f) + verticalLineToRelative(-0.08f) + lineToRelative(0.02f, -0.12f) + lineToRelative(0.03f, -0.11f) + lineToRelative(0.04f, -0.11f) + lineToRelative(0.06f, -0.1f) + lineToRelative(0.06f, -0.1f) + lineToRelative(0.08f, -0.09f) + lineToRelative(5.0f, -5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.5f, 1.32f) + lineToRelative(-0.08f, 0.1f) + lineTo(5.4f, 13.0f) + horizontalLineTo(18.5f) + curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) + verticalLineTo(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + } + } + return _arrowEnterLeft!! + } + +private var _arrowEnterLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowEnterUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowEnterUp.kt new file mode 100644 index 00000000..00c5e5d9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowEnterUp.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowEnterUp: ImageVector + get() { + if (_arrowEnterUp != null) { + return _arrowEnterUp!! + } + _arrowEnterUp = fluentIcon(name = "Filled.ArrowEnterUp") { + fluentPath { + moveTo(20.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + horizontalLineTo(12.5f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 9.0f, 18.7f) + verticalLineTo(5.4f) + lineToRelative(-3.3f, 3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.31f, 0.08f) + lineToRelative(-0.1f, -0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.32f) + lineToRelative(0.08f, -0.1f) + lineToRelative(5.0f, -5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.11f, -0.1f) + lineToRelative(0.12f, -0.07f) + lineToRelative(0.1f, -0.05f) + lineToRelative(0.11f, -0.03f) + lineToRelative(0.12f, -0.03f) + horizontalLineToRelative(0.06f) + lineTo(10.0f, 2.0f) + horizontalLineToRelative(0.08f) + lineToRelative(0.12f, 0.02f) + lineToRelative(0.11f, 0.03f) + lineToRelative(0.11f, 0.04f) + lineToRelative(0.1f, 0.06f) + lineToRelative(0.1f, 0.06f) + lineToRelative(0.09f, 0.08f) + lineToRelative(5.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 1.5f) + lineToRelative(-0.1f, -0.08f) + lineTo(11.0f, 5.4f) + verticalLineTo(18.5f) + curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.36f, 1.5f) + horizontalLineTo(19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + close() + } + } + return _arrowEnterUp!! + } + +private var _arrowEnterUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowExportLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowExportLtr.kt new file mode 100644 index 00000000..ceddd7bd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowExportLtr.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowExportLtr: ImageVector + get() { + if (_arrowExportLtr != null) { + return _arrowExportLtr!! + } + _arrowExportLtr = fluentIcon(name = "Filled.ArrowExportLtr") { + fluentPath { + moveTo(2.75f, 4.5f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.29f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineTo(5.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(15.21f, 6.4f) + lineToRelative(0.08f, -0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) + lineToRelative(0.1f, 0.08f) + lineToRelative(5.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.32f) + lineToRelative(-0.09f, 0.1f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.5f, -1.32f) + lineToRelative(0.1f, -0.1f) + lineTo(18.57f, 13.0f) + horizontalLineTo(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + verticalLineTo(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) + horizontalLineToRelative(12.7f) + lineTo(15.3f, 7.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.31f) + lineToRelative(0.08f, -0.1f) + lineToRelative(-0.08f, 0.1f) + close() + } + } + return _arrowExportLtr!! + } + +private var _arrowExportLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowExportRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowExportRtl.kt new file mode 100644 index 00000000..a264fe5c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowExportRtl.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowExportRtl: ImageVector + get() { + if (_arrowExportRtl != null) { + return _arrowExportRtl!! + } + _arrowExportRtl = fluentIcon(name = "Filled.ArrowExportRtl") { + fluentPath { + moveTo(21.25f, 4.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.29f, -0.75f, 0.65f) + verticalLineToRelative(13.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.49f, 0.1f) + verticalLineTo(5.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.74f, -0.75f) + close() + moveTo(8.79f, 6.4f) + lineToRelative(-0.09f, -0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.32f, -0.08f) + lineToRelative(-0.1f, 0.08f) + lineToRelative(-4.99f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.08f, 1.32f) + lineToRelative(0.08f, 0.1f) + lineToRelative(5.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.5f, -1.32f) + lineToRelative(-0.09f, -0.1f) + lineTo(5.42f, 13.0f) + horizontalLineTo(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.99f, -0.88f) + verticalLineTo(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.88f, -1.0f) + horizontalLineTo(5.41f) + lineToRelative(3.3f, -3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.08f, -1.31f) + lineToRelative(-0.09f, -0.1f) + lineToRelative(0.09f, 0.1f) + close() + } + } + return _arrowExportRtl!! + } + +private var _arrowExportRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowExportUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowExportUp.kt new file mode 100644 index 00000000..623fc2e7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowExportUp.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowExportUp: ImageVector + get() { + if (_arrowExportUp != null) { + return _arrowExportUp!! + } + _arrowExportUp = fluentIcon(name = "Filled.ArrowExportUp") { + fluentPath { + moveTo(12.7f, 2.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 1.4f) + lineTo(11.0f, 5.42f) + verticalLineTo(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineTo(5.41f) + lineToRelative(3.3f, 3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, -1.42f) + lineToRelative(-5.0f, -5.0f) + close() + moveTo(5.26f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(5.25f) + close() + } + } + return _arrowExportUp!! + } + +private var _arrowExportUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowForwardDownLightning.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowForwardDownLightning.kt new file mode 100644 index 00000000..eac527bf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowForwardDownLightning.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowForwardDownLightning: ImageVector + get() { + if (_arrowForwardDownLightning != null) { + return _arrowForwardDownLightning!! + } + _arrowForwardDownLightning = fluentIcon(name = "Filled.ArrowForwardDownLightning") { + fluentPath { + moveTo(13.0f, 16.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(8.53f, 13.0f) + lineTo(7.1f, 13.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.47f, 0.32f) + lineToRelative(-1.13f, 3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.47f, 0.68f) + horizontalLineToRelative(0.78f) + lineToRelative(-0.77f, 2.32f) + arcToRelative(0.52f, 0.52f, 0.0f, false, false, 0.92f, 0.44f) + lineToRelative(2.63f, -4.03f) + arcToRelative(0.47f, 0.47f, 0.0f, false, false, -0.4f, -0.73f) + lineTo(8.5f, 15.0f) + lineToRelative(0.5f, -1.32f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.47f, -0.68f) + close() + moveTo(16.3f, 4.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.4f) + lineTo(19.59f, 9.0f) + horizontalLineToRelative(-6.81f) + arcTo(6.0f, 6.0f, 0.0f, false, true, 7.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(0.25f) + arcTo(8.0f, 8.0f, 0.0f, false, false, 13.0f, 11.0f) + horizontalLineToRelative(6.59f) + lineToRelative(-3.3f, 3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.42f, 1.4f) + lineToRelative(5.0f, -5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.4f) + lineToRelative(-5.0f, -5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.41f, 0.0f) + close() + } + } + return _arrowForwardDownLightning!! + } + +private var _arrowForwardDownLightning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowForwardDownPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowForwardDownPerson.kt new file mode 100644 index 00000000..ff259981 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowForwardDownPerson.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowForwardDownPerson: ImageVector + get() { + if (_arrowForwardDownPerson != null) { + return _arrowForwardDownPerson!! + } + _arrowForwardDownPerson = fluentIcon(name = "Filled.ArrowForwardDownPerson") { + fluentPath { + moveTo(16.3f, 5.7f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.41f, -1.4f) + lineToRelative(5.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.4f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.41f, -1.4f) + lineToRelative(3.29f, -3.3f) + lineTo(13.0f, 11.0f) + arcToRelative(8.0f, 8.0f, 0.0f, false, true, -8.0f, -7.75f) + lineTo(5.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, 5.78f, 6.0f) + horizontalLineToRelative(6.81f) + lineToRelative(-3.3f, -3.3f) + close() + moveTo(9.0f, 13.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(11.0f, 18.88f) + curveTo(11.0f, 20.43f, 9.71f, 22.0f, 6.5f, 22.0f) + reflectiveCurveTo(2.0f, 20.44f, 2.0f, 18.87f) + verticalLineToRelative(-0.1f) + curveTo(2.0f, 17.8f, 2.8f, 17.0f, 3.77f, 17.0f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _arrowForwardDownPerson!! + } + +private var _arrowForwardDownPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowHookDownLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowHookDownLeft.kt new file mode 100644 index 00000000..e79d25f6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowHookDownLeft.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowHookDownLeft: ImageVector + get() { + if (_arrowHookDownLeft != null) { + return _arrowHookDownLeft!! + } + _arrowHookDownLeft = fluentIcon(name = "Filled.ArrowHookDownLeft") { + fluentPath { + moveTo(7.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(5.0f) + curveToRelative(2.24f, 0.0f, 4.01f, 0.78f, 5.22f, 2.02f) + arcTo(6.42f, 6.42f, 0.0f, false, true, 20.0f, 10.5f) + curveToRelative(0.0f, 1.61f, -0.59f, 3.24f, -1.78f, 4.48f) + arcTo(7.06f, 7.06f, 0.0f, false, true, 13.0f, 17.0f) + horizontalLineTo(8.41f) + lineToRelative(2.05f, 2.04f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 1.42f) + lineTo(5.3f, 16.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.42f) + lineToRelative(3.75f, -3.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 1.42f) + lineTo(8.4f, 15.0f) + horizontalLineTo(13.0f) + curveToRelative(1.76f, 0.0f, 2.99f, -0.6f, 3.78f, -1.41f) + arcTo(4.42f, 4.42f, 0.0f, false, false, 18.0f, 10.5f) + curveToRelative(0.0f, -1.14f, -0.41f, -2.26f, -1.22f, -3.09f) + arcTo(5.07f, 5.07f, 0.0f, false, false, 13.0f, 6.0f) + horizontalLineTo(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + } + } + return _arrowHookDownLeft!! + } + +private var _arrowHookDownLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowHookDownRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowHookDownRight.kt new file mode 100644 index 00000000..a2b1f2ce --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowHookDownRight.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowHookDownRight: ImageVector + get() { + if (_arrowHookDownRight != null) { + return _arrowHookDownRight!! + } + _arrowHookDownRight = fluentIcon(name = "Filled.ArrowHookDownRight") { + fluentPath { + moveTo(10.5f, 6.0f) + horizontalLineTo(16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-5.5f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, 0.0f, 13.0f) + horizontalLineToRelative(5.14f) + lineToRelative(-1.93f, 1.93f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.41f, 1.42f) + lineToRelative(3.53f, -3.53f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.21f, -0.31f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.18f, -1.24f) + lineToRelative(-0.03f, -0.03f) + lineToRelative(-3.53f, -3.53f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.41f, 1.41f) + lineTo(15.59f, 15.0f) + horizontalLineTo(10.5f) + arcToRelative(4.5f, 4.5f, 0.0f, true, true, 0.0f, -9.0f) + close() + } + } + return _arrowHookDownRight!! + } + +private var _arrowHookDownRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowHookUpLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowHookUpLeft.kt new file mode 100644 index 00000000..8296842a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowHookUpLeft.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowHookUpLeft: ImageVector + get() { + if (_arrowHookUpLeft != null) { + return _arrowHookUpLeft!! + } + _arrowHookUpLeft = fluentIcon(name = "Filled.ArrowHookUpLeft") { + fluentPath { + moveTo(7.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(5.0f) + curveToRelative(2.24f, 0.0f, 4.01f, -0.78f, 5.22f, -2.02f) + arcTo(6.42f, 6.42f, 0.0f, false, false, 20.0f, 13.5f) + curveToRelative(0.0f, -1.61f, -0.59f, -3.24f, -1.78f, -4.48f) + arcTo(7.06f, 7.06f, 0.0f, false, false, 13.0f, 7.0f) + horizontalLineTo(8.41f) + lineToRelative(2.05f, -2.04f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, -1.42f) + lineTo(5.3f, 7.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.42f) + lineToRelative(3.75f, 3.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, -1.42f) + lineTo(8.4f, 9.0f) + horizontalLineTo(13.0f) + curveToRelative(1.76f, 0.0f, 2.99f, 0.6f, 3.78f, 1.41f) + curveToRelative(0.8f, 0.83f, 1.22f, 1.95f, 1.22f, 3.09f) + reflectiveCurveToRelative(-0.41f, 2.26f, -1.22f, 3.09f) + arcTo(5.07f, 5.07f, 0.0f, false, true, 13.0f, 18.0f) + horizontalLineTo(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + close() + } + } + return _arrowHookUpLeft!! + } + +private var _arrowHookUpLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowHookUpRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowHookUpRight.kt new file mode 100644 index 00000000..59818dc0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowHookUpRight.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowHookUpRight: ImageVector + get() { + if (_arrowHookUpRight != null) { + return _arrowHookUpRight!! + } + _arrowHookUpRight = fluentIcon(name = "Filled.ArrowHookUpRight") { + fluentPath { + moveTo(10.5f, 18.0f) + horizontalLineTo(16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-5.5f) + arcToRelative(6.5f, 6.5f, 0.0f, true, true, 0.0f, -13.0f) + horizontalLineToRelative(5.14f) + lineToRelative(-1.93f, -1.93f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, -1.42f) + lineToRelative(3.53f, 3.53f) + curveToRelative(0.1f, 0.1f, 0.16f, 0.2f, 0.21f, 0.31f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.18f, 1.24f) + lineToRelative(-0.03f, 0.03f) + lineToRelative(-3.53f, 3.53f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.41f, -1.41f) + lineTo(15.59f, 9.0f) + horizontalLineTo(10.5f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, 0.0f, 9.0f) + close() + } + } + return _arrowHookUpRight!! + } + +private var _arrowHookUpRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowImport.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowImport.kt new file mode 100644 index 00000000..949aee99 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowImport.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowImport: ImageVector + get() { + if (_arrowImport != null) { + return _arrowImport!! + } + _arrowImport = fluentIcon(name = "Filled.ArrowImport") { + fluentPath { + moveTo(21.25f, 4.5f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(20.5f, 5.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(12.21f, 6.39f) + lineTo(12.29f, 6.29f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) + lineToRelative(0.1f, 0.08f) + lineToRelative(5.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.32f) + lineToRelative(-0.09f, 0.1f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.5f, -1.32f) + lineToRelative(0.1f, -0.1f) + lineTo(15.57f, 13.0f) + lineTo(3.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + lineTo(2.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) + horizontalLineToRelative(12.7f) + lineTo(12.3f, 7.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.31f) + lineToRelative(0.08f, -0.1f) + lineToRelative(-0.08f, 0.1f) + close() + } + } + return _arrowImport!! + } + +private var _arrowImport: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowMaximize.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowMaximize.kt new file mode 100644 index 00000000..5520a2cb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowMaximize.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowMaximize: ImageVector + get() { + if (_arrowMaximize != null) { + return _arrowMaximize!! + } + _arrowMaximize = fluentIcon(name = "Filled.ArrowMaximize") { + fluentPath { + moveTo(12.5f, 3.0f) + horizontalLineToRelative(7.55f) + lineToRelative(0.12f, 0.02f) + lineToRelative(0.09f, 0.02f) + lineToRelative(0.1f, 0.03f) + lineToRelative(0.1f, 0.04f) + lineToRelative(0.06f, 0.04f) + lineToRelative(0.06f, 0.04f) + lineToRelative(0.06f, 0.05f) + lineToRelative(0.07f, 0.06f) + lineToRelative(0.1f, 0.1f) + lineToRelative(0.06f, 0.12f) + lineToRelative(0.06f, 0.11f) + lineToRelative(0.03f, 0.1f) + lineToRelative(0.02f, 0.07f) + verticalLineToRelative(0.05f) + lineTo(21.0f, 4.0f) + verticalLineToRelative(7.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + verticalLineTo(6.41f) + lineTo(6.4f, 19.0f) + horizontalLineToRelative(5.09f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + verticalLineTo(20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + horizontalLineTo(3.94f) + lineToRelative(-0.1f, -0.01f) + lineToRelative(-0.07f, -0.02f) + lineToRelative(-0.08f, -0.02f) + lineToRelative(-0.07f, -0.02f) + lineToRelative(-0.09f, -0.05f) + lineToRelative(-0.09f, -0.05f) + lineToRelative(-0.1f, -0.07f) + lineToRelative(0.04f, 0.03f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.17f, -0.17f) + lineToRelative(-0.05f, -0.07f) + lineToRelative(-0.04f, -0.06f) + lineToRelative(-0.03f, -0.07f) + lineToRelative(-0.03f, -0.08f) + lineToRelative(-0.03f, -0.08f) + lineToRelative(-0.02f, -0.1f) + verticalLineToRelative(-0.07f) + lineTo(3.0f, 20.0f) + verticalLineToRelative(-7.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + verticalLineToRelative(5.21f) + lineTo(17.58f, 5.0f) + horizontalLineTo(12.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + verticalLineTo(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + } + } + return _arrowMaximize!! + } + +private var _arrowMaximize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowMaximizeVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowMaximizeVertical.kt new file mode 100644 index 00000000..9ed2a8b8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowMaximizeVertical.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowMaximizeVertical: ImageVector + get() { + if (_arrowMaximizeVertical != null) { + return _arrowMaximizeVertical!! + } + _arrowMaximizeVertical = fluentIcon(name = "Filled.ArrowMaximizeVertical") { + fluentPath { + moveTo(15.2f, 6.2f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) + lineToRelative(-0.8f, -0.79f) + verticalLineTo(9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineTo(5.41f) + lineToRelative(-0.8f, 0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.42f) + lineToRelative(2.5f, -2.5f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 12.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.7f, 0.3f) + lineToRelative(2.5f, 2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.4f) + close() + } + fluentPath { + moveTo(5.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineTo(5.0f) + close() + } + fluentPath { + moveTo(12.0f, 22.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.7f, -0.3f) + lineToRelative(2.5f, -2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.4f) + lineToRelative(-0.8f, 0.79f) + verticalLineTo(15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(3.59f) + lineToRelative(-0.8f, -0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) + lineToRelative(2.5f, 2.5f) + curveToRelative(0.19f, 0.19f, 0.44f, 0.29f, 0.7f, 0.29f) + } + } + return _arrowMaximizeVertical!! + } + +private var _arrowMaximizeVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowMinimize.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowMinimize.kt new file mode 100644 index 00000000..26e39c85 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowMinimize.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowMinimize: ImageVector + get() { + if (_arrowMinimize != null) { + return _arrowMinimize!! + } + _arrowMinimize = fluentIcon(name = "Filled.ArrowMinimize") { + fluentPath { + moveTo(10.5f, 12.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.89f) + lineTo(11.5f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(9.5f, 15.9f) + lineToRelative(-5.8f, 5.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.31f, 0.08f) + lineToRelative(-0.1f, -0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.32f) + lineToRelative(0.08f, -0.1f) + lineToRelative(5.79f, -5.78f) + lineTo(3.0f, 14.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + horizontalLineToRelative(7.62f) + close() + moveTo(13.5f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(14.5f, 8.1f) + lineToRelative(5.8f, -5.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.31f, -0.08f) + lineToRelative(0.1f, 0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.32f) + lineToRelative(-0.08f, 0.1f) + lineToRelative(-5.8f, 5.8f) + lineTo(21.0f, 9.52f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 1.99f) + lineTo(13.5f, 11.51f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + lineTo(12.5f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + } + } + return _arrowMinimize!! + } + +private var _arrowMinimize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowMinimizeVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowMinimizeVertical.kt new file mode 100644 index 00000000..3156a1fc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowMinimizeVertical.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowMinimizeVertical: ImageVector + get() { + if (_arrowMinimizeVertical != null) { + return _arrowMinimizeVertical!! + } + _arrowMinimizeVertical = fluentIcon(name = "Filled.ArrowMinimizeVertical") { + fluentPath { + moveTo(13.8f, 18.7f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, -1.4f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, 1.4f) + lineToRelative(0.8f, -0.79f) + lineTo(11.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-3.09f) + lineToRelative(0.8f, 0.8f) + close() + moveTo(4.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(5.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(13.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(3.09f) + lineToRelative(-0.8f, -0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) + lineToRelative(2.5f, 2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) + lineToRelative(2.5f, -2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.42f) + lineToRelative(-0.8f, 0.8f) + lineTo(13.0f, 3.0f) + close() + } + } + return _arrowMinimizeVertical!! + } + +private var _arrowMinimizeVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowMove.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowMove.kt new file mode 100644 index 00000000..59103428 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowMove.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowMove: ImageVector + get() { + if (_arrowMove != null) { + return _arrowMove!! + } + _arrowMove = fluentIcon(name = "Filled.ArrowMove") { + fluentPath { + moveTo(15.46f, 6.46f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 0.0f) + lineTo(13.0f, 5.4f) + verticalLineToRelative(2.84f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(11.0f, 5.41f) + lineTo(9.96f, 6.46f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, -1.42f) + lineTo(11.3f, 2.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 0.0f) + lineToRelative(2.75f, 2.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.42f) + close() + moveTo(6.46f, 14.04f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.42f, 1.42f) + lineTo(2.3f, 12.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.42f) + lineToRelative(2.75f, -2.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 1.42f) + lineTo(5.4f, 11.0f) + horizontalLineToRelative(2.84f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(5.41f, 13.0f) + lineToRelative(1.05f, 1.04f) + close() + moveTo(18.96f, 15.46f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, -1.42f) + lineTo(18.6f, 13.0f) + horizontalLineToRelative(-2.84f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(2.84f) + lineToRelative(-1.05f, -1.04f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, -1.42f) + lineToRelative(2.75f, 2.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.42f) + lineToRelative(-2.75f, 2.75f) + close() + moveTo(11.0f, 18.59f) + verticalLineToRelative(-2.84f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(2.84f) + lineToRelative(1.04f, -1.05f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 1.42f) + lineTo(12.7f, 21.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 0.0f) + lineToRelative(-2.75f, -2.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.42f, -1.42f) + lineTo(11.0f, 18.6f) + close() + } + } + return _arrowMove!! + } + +private var _arrowMove: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowNext.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowNext.kt new file mode 100644 index 00000000..b8c8a5e1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowNext.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowNext: ImageVector + get() { + if (_arrowNext != null) { + return _arrowNext!! + } + _arrowNext = fluentIcon(name = "Filled.ArrowNext") { + fluentPath { + moveTo(18.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(19.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(17.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(5.3f, 3.3f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 6.6f, 3.2f) + lineToRelative(0.1f, 0.08f) + lineToRelative(8.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.32f) + lineToRelative(-0.08f, 0.1f) + lineToRelative(-8.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.5f, -1.32f) + lineToRelative(0.08f, -0.1f) + lineTo(12.6f, 12.0f) + lineToRelative(-7.3f, -7.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) + close() + } + } + return _arrowNext!! + } + +private var _arrowNext: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowOutlineUpRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowOutlineUpRight.kt new file mode 100644 index 00000000..285ee0ec --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowOutlineUpRight.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowOutlineUpRight: ImageVector + get() { + if (_arrowOutlineUpRight != null) { + return _arrowOutlineUpRight!! + } + _arrowOutlineUpRight = fluentIcon(name = "Filled.ArrowOutlineUpRight") { + fluentPath { + moveTo(19.83f, 2.01f) + curveToRelative(1.24f, -0.14f, 2.3f, 0.91f, 2.16f, 2.16f) + lineToRelative(-1.34f, 12.06f) + arcToRelative(1.95f, 1.95f, 0.0f, false, true, -3.32f, 1.16f) + lineToRelative(-1.27f, -1.27f) + lineToRelative(-5.3f, 5.3f) + curveToRelative(-0.76f, 0.77f, -2.0f, 0.77f, -2.76f, 0.0f) + lineTo(2.57f, 16.0f) + curveToRelative(-0.76f, -0.76f, -0.76f, -2.0f, 0.0f, -2.76f) + lineToRelative(5.3f, -5.3f) + lineToRelative(-1.26f, -1.27f) + arcToRelative(1.95f, 1.95f, 0.0f, false, true, 1.16f, -3.32f) + lineToRelative(12.06f, -1.34f) + close() + } + } + return _arrowOutlineUpRight!! + } + +private var _arrowOutlineUpRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowParagraph.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowParagraph.kt new file mode 100644 index 00000000..9f9f4685 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowParagraph.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowParagraph: ImageVector + get() { + if (_arrowParagraph != null) { + return _arrowParagraph!! + } + _arrowParagraph = fluentIcon(name = "Filled.ArrowParagraph") { + fluentPath { + moveTo(21.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + horizontalLineToRelative(-4.59f) + lineToRelative(2.3f, 2.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 1.4f) + lineToRelative(-4.0f, -4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) + lineToRelative(4.0f, -4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.42f, 1.4f) + lineTo(14.4f, 8.0f) + horizontalLineTo(19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineTo(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(7.3f, 11.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.4f) + lineTo(9.58f, 15.0f) + horizontalLineTo(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(6.59f) + lineToRelative(-2.3f, 2.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.42f, 1.4f) + lineToRelative(4.0f, -4.0f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 13.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.3f, -0.71f) + lineToRelative(-4.0f, -4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) + close() + } + } + return _arrowParagraph!! + } + +private var _arrowParagraph: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowPrevious.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowPrevious.kt new file mode 100644 index 00000000..2c639e65 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowPrevious.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowPrevious: ImageVector + get() { + if (_arrowPrevious != null) { + return _arrowPrevious!! + } + _arrowPrevious = fluentIcon(name = "Filled.ArrowPrevious") { + fluentPath { + moveTo(6.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 0.88f) + lineTo(5.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.12f) + lineTo(7.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + moveTo(18.7f, 3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.31f, -0.09f) + lineToRelative(-0.1f, 0.08f) + lineToRelative(-8.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.08f, 1.32f) + lineToRelative(0.08f, 0.1f) + lineToRelative(8.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.5f, -1.32f) + lineToRelative(-0.08f, -0.1f) + lineTo(11.4f, 12.0f) + lineToRelative(7.3f, -7.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.4f) + close() + } + } + return _arrowPrevious!! + } + +private var _arrowPrevious: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowRedo.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowRedo.kt new file mode 100644 index 00000000..5f6acce5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowRedo.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowRedo: ImageVector + get() { + if (_arrowRedo != null) { + return _arrowRedo!! + } + _arrowRedo = fluentIcon(name = "Filled.ArrowRedo") { + fluentPath { + moveToRelative(18.0f, 7.59f) + lineToRelative(-3.64f, -3.64f) + arcToRelative(6.66f, 6.66f, 0.0f, true, false, -9.42f, 9.42f) + lineToRelative(8.34f, 8.34f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.41f, -1.42f) + lineToRelative(-8.34f, -8.33f) + arcToRelative(4.66f, 4.66f, 0.0f, false, true, 6.42f, -6.76f) + lineToRelative(0.18f, 0.17f) + lineTo(16.59f, 9.0f) + horizontalLineTo(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 0.88f) + verticalLineTo(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.88f, 1.0f) + horizontalLineTo(19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -0.88f) + verticalLineTo(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, -0.11f) + verticalLineToRelative(4.7f) + lineToRelative(-3.64f, -3.64f) + lineTo(18.0f, 7.6f) + close() + } + } + return _arrowRedo!! + } + +private var _arrowRedo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowRepeat1.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowRepeat1.kt new file mode 100644 index 00000000..2f414eab --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowRepeat1.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowRepeat1: ImageVector + get() { + if (_arrowRepeat1 != null) { + return _arrowRepeat1!! + } + _arrowRepeat1 = fluentIcon(name = "Filled.ArrowRepeat1") { + fluentPath { + moveToRelative(14.71f, 2.29f) + lineToRelative(-0.08f, -0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.33f, 0.08f) + lineToRelative(-0.08f, 0.09f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.08f, 1.32f) + lineTo(14.6f, 5.0f) + lineTo(8.76f, 5.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, false, -5.57f, 10.9f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.63f, -1.17f) + lineToRelative(-0.14f, -0.22f) + arcTo(5.0f, 5.0f, 0.0f, false, true, 9.0f, 7.0f) + horizontalLineToRelative(5.6f) + lineToRelative(-1.3f, 1.3f) + lineToRelative(-0.08f, 0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.5f, 1.33f) + lineToRelative(3.0f, -3.0f) + lineToRelative(0.08f, -0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.08f, -1.32f) + lineToRelative(-3.0f, -3.0f) + close() + moveTo(20.79f, 8.06f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.62f, 1.18f) + curveToRelative(0.44f, 0.66f, 0.72f, 1.42f, 0.8f, 2.25f) + curveToRelative(0.74f, 0.3f, 1.41f, 0.74f, 1.99f, 1.28f) + arcToRelative(7.07f, 7.07f, 0.0f, false, false, -1.17f, -4.71f) + close() + moveTo(9.4f, 16.99f) + horizontalLineToRelative(1.61f) + arcToRelative(6.6f, 6.6f, 0.0f, false, false, 0.15f, 2.0f) + lineTo(9.4f, 18.99f) + lineToRelative(1.3f, 1.3f) + lineToRelative(0.09f, 0.09f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 1.4f) + lineToRelative(-0.1f, -0.08f) + lineToRelative(-3.0f, -3.0f) + lineToRelative(-0.08f, -0.09f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.23f) + lineToRelative(0.08f, -0.1f) + lineToRelative(3.0f, -3.0f) + lineToRelative(0.1f, -0.07f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.22f, -0.01f) + lineToRelative(0.1f, 0.08f) + lineToRelative(0.08f, 0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.22f) + lineToRelative(-0.08f, 0.1f) + lineToRelative(-1.3f, 1.29f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(18.11f, 14.01f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.56f, 0.27f) + curveToRelative(-0.05f, 0.11f, -0.27f, 0.45f, -0.61f, 0.82f) + curveToRelative(-0.33f, 0.38f, -0.74f, 0.74f, -1.16f, 0.95f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.44f, 0.9f) + curveToRelative(0.5f, -0.25f, 0.93f, -0.62f, 1.28f, -0.98f) + verticalLineToRelative(4.53f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.39f, -0.49f) + close() + } + } + return _arrowRepeat1!! + } + +private var _arrowRepeat1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowRepeatAll.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowRepeatAll.kt new file mode 100644 index 00000000..1efdae5f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowRepeatAll.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowRepeatAll: ImageVector + get() { + if (_arrowRepeatAll != null) { + return _arrowRepeatAll!! + } + _arrowRepeatAll = fluentIcon(name = "Filled.ArrowRepeatAll") { + fluentPath { + moveToRelative(14.71f, 2.29f) + lineToRelative(-0.08f, -0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.33f, 0.08f) + lineToRelative(-0.08f, 0.09f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.08f, 1.32f) + lineTo(14.6f, 5.0f) + lineTo(8.76f, 5.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, false, -5.57f, 10.9f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.63f, -1.17f) + lineToRelative(-0.14f, -0.22f) + arcTo(5.0f, 5.0f, 0.0f, false, true, 9.0f, 7.0f) + horizontalLineToRelative(5.6f) + lineToRelative(-1.3f, 1.3f) + lineToRelative(-0.08f, 0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.5f, 1.33f) + lineToRelative(3.0f, -3.0f) + lineToRelative(0.08f, -0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.08f, -1.32f) + lineToRelative(-3.0f, -3.0f) + close() + moveTo(20.79f, 8.06f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.62f, 1.18f) + arcTo(5.0f, 5.0f, 0.0f, false, true, 15.0f, 16.99f) + lineTo(9.41f, 16.99f) + lineToRelative(1.3f, -1.3f) + lineToRelative(0.08f, -0.09f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.23f) + lineToRelative(-0.08f, -0.09f) + lineToRelative(-0.1f, -0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.23f, 0.0f) + lineToRelative(-0.09f, 0.08f) + lineToRelative(-3.0f, 3.0f) + lineToRelative(-0.08f, 0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.23f) + lineToRelative(0.08f, 0.09f) + lineToRelative(3.0f, 3.0f) + lineToRelative(0.1f, 0.09f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, -1.41f) + lineToRelative(-0.08f, -0.09f) + lineToRelative(-1.3f, -1.3f) + horizontalLineToRelative(5.83f) + arcTo(7.0f, 7.0f, 0.0f, false, false, 20.8f, 8.05f) + close() + } + } + return _arrowRepeatAll!! + } + +private var _arrowRepeatAll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowRepeatAllOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowRepeatAllOff.kt new file mode 100644 index 00000000..3b11cb89 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowRepeatAllOff.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowRepeatAllOff: ImageVector + get() { + if (_arrowRepeatAllOff != null) { + return _arrowRepeatAllOff!! + } + _arrowRepeatAllOff = fluentIcon(name = "Filled.ArrowRepeatAllOff") { + fluentPath { + moveToRelative(3.61f, 2.2f) + lineToRelative(0.1f, 0.1f) + lineToRelative(18.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 1.49f) + lineToRelative(-0.1f, -0.08f) + lineToRelative(-3.07f, -3.07f) + curveToRelative(-0.6f, 0.2f, -1.23f, 0.32f, -1.89f, 0.35f) + lineTo(15.0f, 19.0f) + lineTo(9.4f, 19.0f) + lineToRelative(1.3f, 1.3f) + lineToRelative(0.09f, 0.09f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 1.41f) + lineToRelative(-0.1f, -0.08f) + lineToRelative(-3.0f, -3.0f) + lineToRelative(-0.08f, -0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.23f) + lineToRelative(0.08f, -0.1f) + lineToRelative(3.0f, -3.0f) + lineToRelative(0.1f, -0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.22f, 0.0f) + lineToRelative(0.1f, 0.08f) + lineToRelative(0.08f, 0.09f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.23f) + lineToRelative(-0.08f, 0.1f) + lineTo(9.4f, 17.0f) + horizontalLineToRelative(5.6f) + lineToRelative(0.54f, -0.03f) + lineToRelative(-9.2f, -9.2f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, -1.67f, 6.75f) + lineToRelative(0.14f, 0.22f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.63f, 1.16f) + arcTo(6.99f, 6.99f, 0.0f, false, true, 4.9f, 6.32f) + lineTo(2.29f, 3.71f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -1.5f) + close() + moveTo(20.0f, 7.69f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.79f, 0.38f) + lineToRelative(0.05f, 0.08f) + lineToRelative(0.02f, 0.03f) + arcToRelative(6.96f, 6.96f, 0.0f, false, true, -1.0f, 8.87f) + lineToRelative(-1.41f, -1.42f) + arcToRelative(4.99f, 4.99f, 0.0f, false, false, 0.86f, -6.16f) + lineToRelative(-0.14f, -0.22f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 20.0f, 7.68f) + close() + moveTo(14.63f, 2.22f) + lineTo(14.71f, 2.3f) + lineTo(17.71f, 5.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.09f, 1.33f) + lineToRelative(-0.08f, 0.09f) + lineToRelative(-3.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.5f, -1.32f) + lineToRelative(0.08f, -0.1f) + lineTo(14.6f, 7.0f) + lineTo(9.83f, 7.0f) + lineTo(7.9f, 5.1f) + curveToRelative(0.28f, -0.05f, 0.56f, -0.07f, 0.85f, -0.08f) + horizontalLineToRelative(5.84f) + lineToRelative(-1.3f, -1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.33f) + lineToRelative(0.08f, -0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.33f, -0.07f) + close() + } + } + return _arrowRepeatAllOff!! + } + +private var _arrowRepeatAllOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowReply.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowReply.kt new file mode 100644 index 00000000..668dae31 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowReply.kt @@ -0,0 +1,37 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowReply: ImageVector + get() { + if (_arrowReply != null) { + return _arrowReply!! + } + _arrowReply = fluentIcon(name = "Filled.ArrowReply") { + fluentPath { + moveTo(9.7f, 16.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.41f, 1.4f) + lineToRelative(-5.0f, -5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) + lineToRelative(5.0f, -5.0f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 9.7f, 7.7f) + lineTo(6.41f, 11.0f) + horizontalLineTo(13.0f) + arcToRelative(8.0f, 8.0f, 0.0f, false, true, 8.0f, 7.75f) + verticalLineTo(19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, -5.78f, -6.0f) + horizontalLineTo(6.41f) + lineToRelative(3.3f, 3.3f) + close() + } + } + return _arrowReply!! + } + +private var _arrowReply: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowReplyAll.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowReplyAll.kt new file mode 100644 index 00000000..6f10686e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowReplyAll.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowReplyAll: ImageVector + get() { + if (_arrowReplyAll != null) { + return _arrowReplyAll!! + } + _arrowReplyAll = fluentIcon(name = "Filled.ArrowReplyAll") { + fluentPath { + moveTo(13.7f, 16.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.41f, 1.4f) + lineToRelative(-5.0f, -5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) + lineToRelative(5.0f, -5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, 1.4f) + lineTo(10.41f, 11.0f) + lineTo(13.0f, 11.0f) + arcToRelative(8.0f, 8.0f, 0.0f, false, true, 8.0f, 7.75f) + lineTo(21.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, -5.78f, -6.0f) + horizontalLineToRelative(-2.81f) + lineToRelative(3.3f, 3.3f) + close() + moveTo(8.7f, 6.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.4f) + lineTo(4.41f, 12.0f) + lineToRelative(4.3f, 4.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.42f, 1.4f) + lineToRelative(-5.0f, -5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) + lineToRelative(5.0f, -5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, 0.0f) + close() + } + } + return _arrowReplyAll!! + } + +private var _arrowReplyAll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowReplyDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowReplyDown.kt new file mode 100644 index 00000000..8035cbf3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowReplyDown.kt @@ -0,0 +1,37 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowReplyDown: ImageVector + get() { + if (_arrowReplyDown != null) { + return _arrowReplyDown!! + } + _arrowReplyDown = fluentIcon(name = "Filled.ArrowReplyDown") { + fluentPath { + moveTo(9.7f, 8.7f) + arcTo(1.0f, 1.0f, 0.0f, true, false, 8.3f, 7.3f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.4f) + lineToRelative(5.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.41f, -1.4f) + lineTo(6.41f, 14.0f) + horizontalLineTo(13.0f) + arcToRelative(8.0f, 8.0f, 0.0f, false, false, 8.0f, -7.75f) + verticalLineTo(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, -5.78f, 6.0f) + horizontalLineTo(6.41f) + lineToRelative(3.3f, -3.3f) + close() + } + } + return _arrowReplyDown!! + } + +private var _arrowReplyDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowReset.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowReset.kt new file mode 100644 index 00000000..9bb63429 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowReset.kt @@ -0,0 +1,37 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowReset: ImageVector + get() { + if (_arrowReset != null) { + return _arrowReset!! + } + _arrowReset = fluentIcon(name = "Filled.ArrowReset") { + fluentPath { + moveTo(7.2f, 2.54f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.42f) + lineTo(5.42f, 5.75f) + horizontalLineToRelative(7.84f) + arcToRelative(8.0f, 8.0f, 0.0f, true, true, -8.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(6.0f, 6.0f, 0.0f, true, false, 6.0f, -6.0f) + horizontalLineTo(5.41f) + lineToRelative(1.8f, 1.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 1.4f) + lineToRelative(-3.5f, -3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) + lineToRelative(3.5f, -3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 0.0f) + close() + } + } + return _arrowReset!! + } + +private var _arrowReset: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowRotateClockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowRotateClockwise.kt new file mode 100644 index 00000000..a5243e8c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowRotateClockwise.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowRotateClockwise: ImageVector + get() { + if (_arrowRotateClockwise != null) { + return _arrowRotateClockwise!! + } + _arrowRotateClockwise = fluentIcon(name = "Filled.ArrowRotateClockwise") { + fluentPath { + moveTo(12.0f, 3.0f) + arcToRelative(9.0f, 9.0f, 0.0f, false, true, 4.13f, 17.0f) + lineTo(18.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(14.0f, 22.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + lineTo(13.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(15.0f, 18.33f) + arcTo(7.0f, 7.0f, 0.0f, true, false, 5.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(9.0f, 9.0f, 0.0f, false, true, 9.0f, -9.0f) + close() + moveTo(12.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) + close() + moveTo(12.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + } + } + return _arrowRotateClockwise!! + } + +private var _arrowRotateClockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowRotateCounterclockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowRotateCounterclockwise.kt new file mode 100644 index 00000000..2b5449df --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowRotateCounterclockwise.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowRotateCounterclockwise: ImageVector + get() { + if (_arrowRotateCounterclockwise != null) { + return _arrowRotateCounterclockwise!! + } + _arrowRotateCounterclockwise = fluentIcon(name = "Filled.ArrowRotateCounterclockwise") { + fluentPath { + moveTo(12.0f, 3.0f) + arcToRelative(9.0f, 9.0f, 0.0f, false, false, -4.13f, 17.0f) + lineTo(6.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, 2.0f) + lineTo(10.0f, 22.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -0.88f) + lineTo(11.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, -0.12f) + lineTo(9.0f, 18.33f) + arcTo(7.0f, 7.0f, 0.0f, true, true, 19.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + arcToRelative(9.0f, 9.0f, 0.0f, false, false, -9.0f, -9.0f) + close() + moveTo(12.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + moveTo(12.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + } + } + return _arrowRotateCounterclockwise!! + } + +private var _arrowRotateCounterclockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowRouting.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowRouting.kt new file mode 100644 index 00000000..3a06e353 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowRouting.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowRouting: ImageVector + get() { + if (_arrowRouting != null) { + return _arrowRouting!! + } + _arrowRouting = fluentIcon(name = "Filled.ArrowRouting") { + fluentPath { + moveTo(18.7f, 2.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.4f, 1.4f) + lineTo(18.59f, 5.0f) + horizontalLineToRelative(-5.6f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineTo(7.84f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineTo(9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) + verticalLineTo(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(5.58f) + lineTo(17.3f, 8.29f) + arcTo(1.0f, 1.0f, 0.0f, true, false, 18.7f, 9.7f) + lineToRelative(3.01f, -3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.41f) + lineToRelative(-3.0f, -3.0f) + close() + } + } + return _arrowRouting!! + } + +private var _arrowRouting: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowRoutingRectangleMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowRoutingRectangleMultiple.kt new file mode 100644 index 00000000..d90e9842 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowRoutingRectangleMultiple.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowRoutingRectangleMultiple: ImageVector + get() { + if (_arrowRoutingRectangleMultiple != null) { + return _arrowRoutingRectangleMultiple!! + } + _arrowRoutingRectangleMultiple = fluentIcon(name = "Filled.ArrowRoutingRectangleMultiple") { + fluentPath { + moveTo(18.7f, 2.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.4f, 1.4f) + lineTo(18.59f, 5.0f) + horizontalLineToRelative(-5.6f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + lineTo(7.84f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 2.0f) + lineTo(9.0f, 20.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) + lineTo(12.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(5.58f) + lineTo(17.3f, 8.29f) + arcTo(1.0f, 1.0f, 0.0f, true, false, 18.7f, 9.7f) + lineToRelative(3.01f, -3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.41f) + lineToRelative(-3.0f, -3.0f) + close() + moveTo(14.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -1.0f, 0.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) + horizontalLineToRelative(4.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) + verticalLineToRelative(-3.0f) + close() + } + } + return _arrowRoutingRectangleMultiple!! + } + +private var _arrowRoutingRectangleMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowShuffle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowShuffle.kt new file mode 100644 index 00000000..2087d44d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowShuffle.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowShuffle: ImageVector + get() { + if (_arrowShuffle != null) { + return _arrowShuffle!! + } + _arrowShuffle = fluentIcon(name = "Filled.ArrowShuffle") { + fluentPath { + moveTo(19.2f, 4.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.4f, 1.4f) + lineToRelative(0.8f, 0.8f) + curveToRelative(-3.81f, 0.17f, -6.17f, 2.6f, -8.23f, 4.72f) + lineToRelative(-0.09f, 0.08f) + curveTo(8.06f, 13.6f, 6.15f, 15.5f, 3.0f, 15.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + curveToRelative(4.05f, 0.0f, 6.5f, -2.52f, 8.63f, -4.72f) + lineToRelative(0.09f, -0.08f) + curveToRelative(2.12f, -2.19f, 3.96f, -4.02f, 6.85f, -4.19f) + lineToRelative(-0.78f, 0.78f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.42f) + lineToRelative(2.5f, -2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) + lineToRelative(-2.5f, -2.5f) + close() + moveTo(3.0f, 6.5f) + curveToRelative(3.23f, 0.0f, 5.44f, 1.6f, 7.29f, 3.37f) + lineToRelative(-0.58f, 0.58f) + lineToRelative(-0.14f, 0.16f) + lineToRelative(-0.68f, 0.69f) + curveTo(7.19f, 9.68f, 5.48f, 8.5f, 3.0f, 8.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + close() + moveTo(18.6f, 17.5f) + curveToRelative(-3.02f, -0.14f, -5.12f, -1.68f, -6.89f, -3.37f) + lineToRelative(0.58f, -0.58f) + lineToRelative(0.14f, -0.16f) + lineToRelative(0.68f, -0.69f) + curveToRelative(1.6f, 1.53f, 3.21f, 2.66f, 5.46f, 2.79f) + lineToRelative(-0.78f, -0.78f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, -1.42f) + lineToRelative(2.5f, 2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.42f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, -1.42f) + lineToRelative(0.8f, -0.8f) + close() + } + } + return _arrowShuffle!! + } + +private var _arrowShuffle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowShuffleOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowShuffleOff.kt new file mode 100644 index 00000000..753bf697 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowShuffleOff.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowShuffleOff: ImageVector + get() { + if (_arrowShuffleOff != null) { + return _arrowShuffleOff!! + } + _arrowShuffleOff = fluentIcon(name = "Filled.ArrowShuffleOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(3.7f, 3.7f) + arcTo(8.81f, 8.81f, 0.0f, false, false, 3.0f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + curveToRelative(2.48f, 0.0f, 4.19f, 1.18f, 5.89f, 2.8f) + arcToRelative(85.0f, 85.0f, 0.0f, false, false, 0.67f, -0.68f) + lineToRelative(0.7f, 0.7f) + curveTo(8.05f, 13.6f, 6.14f, 15.5f, 3.0f, 15.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + curveToRelative(4.05f, 0.0f, 6.5f, -2.52f, 8.63f, -4.72f) + lineToRelative(0.05f, -0.04f) + lineToRelative(0.7f, 0.7f) + lineToRelative(-0.1f, 0.1f) + lineToRelative(-0.57f, 0.6f) + arcToRelative(12.4f, 12.4f, 0.0f, false, false, 4.18f, 2.8f) + lineToRelative(1.68f, 1.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.3f, 1.29f) + lineToRelative(1.85f, 1.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(17.58f, 14.4f) + lineTo(21.05f, 17.87f) + lineTo(21.71f, 17.21f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.63f, 1.11f) + close() + moveTo(12.41f, 9.23f) + lineTo(13.83f, 10.65f) + curveToRelative(1.38f, -1.19f, 2.83f, -2.03f, 4.74f, -2.14f) + lineToRelative(-0.78f, 0.78f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.42f) + lineToRelative(2.5f, -2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.42f, 1.42f) + lineToRelative(0.8f, 0.8f) + curveToRelative(-2.62f, 0.11f, -4.56f, 1.3f, -6.18f, 2.72f) + close() + } + } + return _arrowShuffleOff!! + } + +private var _arrowShuffleOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSort.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSort.kt new file mode 100644 index 00000000..8cdb4d5b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSort.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowSort: ImageVector + get() { + if (_arrowSort != null) { + return _arrowSort!! + } + _arrowSort = fluentIcon(name = "Filled.ArrowSort") { + fluentPath { + moveToRelative(6.29f, 4.3f) + lineToRelative(-4.0f, 4.0f) + lineToRelative(-0.08f, 0.09f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.08f, 1.32f) + lineToRelative(0.1f, 0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.32f, -0.08f) + lineTo(6.0f, 7.4f) + verticalLineToRelative(11.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 0.9f) + lineToRelative(0.1f, -0.02f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.9f, -0.99f) + verticalLineTo(7.42f) + lineToRelative(2.28f, 2.29f) + lineToRelative(0.1f, 0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.32f, -1.5f) + lineToRelative(-4.0f, -4.0f) + lineToRelative(-0.1f, -0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.32f, 0.08f) + close() + moveTo(17.0f, 4.0f) + lineToRelative(-0.12f, 0.01f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.88f, 1.0f) + verticalLineToRelative(11.57f) + lineToRelative(-2.3f, -2.29f) + lineToRelative(-0.09f, -0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.32f, 1.5f) + lineToRelative(4.0f, 4.0f) + lineToRelative(0.1f, 0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.32f, -0.08f) + lineToRelative(4.0f, -4.0f) + lineToRelative(0.08f, -0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.08f, -1.32f) + lineToRelative(-0.1f, -0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.32f, 0.08f) + lineTo(18.0f, 16.6f) + verticalLineTo(4.89f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 17.0f, 4.0f) + close() + } + } + return _arrowSort!! + } + +private var _arrowSort: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSortDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSortDown.kt new file mode 100644 index 00000000..448706ec --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSortDown.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowSortDown: ImageVector + get() { + if (_arrowSortDown != null) { + return _arrowSortDown!! + } + _arrowSortDown = fluentIcon(name = "Filled.ArrowSortDown") { + fluentPath { + moveTo(11.88f, 4.01f) + horizontalLineTo(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + verticalLineToRelative(11.7f) + lineToRelative(2.3f, -2.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.31f, -0.08f) + lineToRelative(0.1f, 0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.32f) + lineToRelative(-0.08f, 0.1f) + lineToRelative(-4.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.08f) + lineToRelative(-0.1f, -0.08f) + lineToRelative(-4.0f, -4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -1.5f) + lineToRelative(0.1f, 0.08f) + lineTo(11.0f, 16.6f) + verticalLineTo(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -0.99f) + horizontalLineTo(12.0f) + horizontalLineToRelative(-0.12f) + close() + } + } + return _arrowSortDown!! + } + +private var _arrowSortDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSortDownLines.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSortDownLines.kt new file mode 100644 index 00000000..8b2b17d4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSortDownLines.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowSortDownLines: ImageVector + get() { + if (_arrowSortDownLines != null) { + return _arrowSortDownLines!! + } + _arrowSortDownLines = fluentIcon(name = "Filled.ArrowSortDownLines") { + fluentPath { + moveToRelative(8.5f, 4.0f) + lineToRelative(-0.12f, 0.01f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.88f, 1.0f) + verticalLineToRelative(11.57f) + lineTo(5.2f, 14.3f) + lineToRelative(-0.09f, -0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.32f, 1.5f) + lineToRelative(4.0f, 4.0f) + lineToRelative(0.1f, 0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.32f, -0.08f) + lineToRelative(4.0f, -4.0f) + lineToRelative(0.08f, -0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.08f, -1.32f) + lineToRelative(-0.1f, -0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.32f, 0.08f) + lineTo(9.5f, 16.6f) + lineTo(9.5f, 4.89f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -0.89f) + close() + moveTo(13.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-8.0f) + close() + moveTo(13.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-5.0f) + close() + moveTo(12.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + } + } + return _arrowSortDownLines!! + } + +private var _arrowSortDownLines: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSortUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSortUp.kt new file mode 100644 index 00000000..8e985325 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSortUp.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowSortUp: ImageVector + get() { + if (_arrowSortUp != null) { + return _arrowSortUp!! + } + _arrowSortUp = fluentIcon(name = "Filled.ArrowSortUp") { + fluentPath { + moveToRelative(7.3f, 8.3f) + lineToRelative(3.99f, -4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.1f) + lineToRelative(0.1f, 0.1f) + lineToRelative(4.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 1.5f) + lineToRelative(-0.1f, -0.1f) + lineTo(13.0f, 7.43f) + verticalLineTo(19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + horizontalLineTo(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + verticalLineTo(7.4f) + lineToRelative(-2.3f, 2.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.31f, 0.08f) + lineToRelative(-0.1f, -0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.32f) + lineToRelative(0.08f, -0.1f) + lineToRelative(4.0f, -4.0f) + lineToRelative(-4.0f, 4.0f) + close() + } + } + return _arrowSortUp!! + } + +private var _arrowSortUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSplit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSplit.kt new file mode 100644 index 00000000..b87e45f1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSplit.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowSplit: ImageVector + get() { + if (_arrowSplit != null) { + return _arrowSplit!! + } + _arrowSplit = fluentIcon(name = "Filled.ArrowSplit") { + fluentPath { + moveTo(12.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(2.25f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.0f, 11.75f) + verticalLineToRelative(5.84f) + lineToRelative(1.3f, -1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.42f) + lineToRelative(-3.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) + lineToRelative(-3.0f, -3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, -1.42f) + lineToRelative(1.3f, 1.3f) + verticalLineToRelative(-5.84f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(5.84f) + lineToRelative(1.3f, -1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.42f) + lineToRelative(-3.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) + lineToRelative(-3.0f, -3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, -1.42f) + lineTo(6.0f, 17.6f) + verticalLineToRelative(-5.84f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 8.75f, 9.0f) + horizontalLineTo(11.0f) + verticalLineTo(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + } + } + return _arrowSplit!! + } + +private var _arrowSplit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSquareDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSquareDown.kt new file mode 100644 index 00000000..1588ff42 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSquareDown.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowSquareDown: ImageVector + get() { + if (_arrowSquareDown != null) { + return _arrowSquareDown!! + } + _arrowSquareDown = fluentIcon(name = "Filled.ArrowSquareDown") { + fluentPath { + moveTo(5.5f, 3.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 3.0f, 5.5f) + verticalLineToRelative(13.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 5.5f, 21.0f) + horizontalLineToRelative(13.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) + verticalLineToRelative(-13.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 18.5f, 3.0f) + horizontalLineToRelative(-13.0f) + close() + moveTo(16.53f, 11.72f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-4.0f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-4.0f, -4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) + lineToRelative(0.08f, 0.07f) + lineToRelative(2.72f, 2.72f) + lineTo(11.25f, 7.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineTo(12.0f, 7.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(6.69f) + lineToRelative(2.72f, -2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + close() + } + } + return _arrowSquareDown!! + } + +private var _arrowSquareDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowStepIn.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowStepIn.kt new file mode 100644 index 00000000..243e2d3b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowStepIn.kt @@ -0,0 +1,39 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowStepIn: ImageVector + get() { + if (_arrowStepIn != null) { + return _arrowStepIn!! + } + _arrowStepIn = fluentIcon(name = "Filled.ArrowStepIn") { + fluentPath { + moveTo(12.0f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(9.26f) + lineToRelative(3.48f, -3.3f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.04f, 1.08f) + lineToRelative(-4.75f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.04f, 0.0f) + lineTo(6.73f, 9.8f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.04f, -1.08f) + lineToRelative(3.48f, 3.3f) + lineTo(11.25f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(15.0f, 19.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) + close() + } + } + return _arrowStepIn!! + } + +private var _arrowStepIn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowStepInLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowStepInLeft.kt new file mode 100644 index 00000000..3b7d30c0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowStepInLeft.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowStepInLeft: ImageVector + get() { + if (_arrowStepInLeft != null) { + return _arrowStepInLeft!! + } + _arrowStepInLeft = fluentIcon(name = "Filled.ArrowStepInLeft") { + fluentPath { + moveTo(15.3f, 16.23f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.1f, 1.04f) + lineToRelative(-4.5f, -4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.04f) + lineToRelative(4.5f, -4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.1f, 1.04f) + lineTo(12.0f, 11.25f) + horizontalLineToRelative(9.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-9.26f) + lineToRelative(3.3f, 3.48f) + close() + moveTo(2.0f, 12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.0f) + close() + } + } + return _arrowStepInLeft!! + } + +private var _arrowStepInLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowStepInRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowStepInRight.kt new file mode 100644 index 00000000..aa4e818f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowStepInRight.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowStepInRight: ImageVector + get() { + if (_arrowStepInRight != null) { + return _arrowStepInRight!! + } + _arrowStepInRight = fluentIcon(name = "Filled.ArrowStepInRight") { + fluentPath { + moveTo(8.7f, 16.23f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.1f, 1.04f) + lineToRelative(4.5f, -4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.04f) + lineTo(9.8f, 6.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.1f, 1.04f) + lineToRelative(3.3f, 3.48f) + horizontalLineTo(2.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(9.26f) + lineToRelative(-3.3f, 3.48f) + close() + moveTo(22.0f, 12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, -6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 6.0f, 0.0f) + close() + } + } + return _arrowStepInRight!! + } + +private var _arrowStepInRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowStepOut.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowStepOut.kt new file mode 100644 index 00000000..eaefe3dc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowStepOut.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowStepOut: ImageVector + get() { + if (_arrowStepOut != null) { + return _arrowStepOut!! + } + _arrowStepOut = fluentIcon(name = "Filled.ArrowStepOut") { + fluentPath { + moveTo(12.75f, 13.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineTo(4.49f) + lineTo(7.77f, 7.8f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.04f, -1.08f) + lineToRelative(4.75f, -4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.04f, 0.0f) + lineToRelative(4.75f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.04f, 1.08f) + lineToRelative(-3.48f, -3.3f) + verticalLineToRelative(9.26f) + close() + moveTo(15.0f, 19.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) + close() + } + } + return _arrowStepOut!! + } + +private var _arrowStepOut: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSwap.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSwap.kt new file mode 100644 index 00000000..49c76200 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSwap.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowSwap: ImageVector + get() { + if (_arrowSwap != null) { + return _arrowSwap!! + } + _arrowSwap = fluentIcon(name = "Filled.ArrowSwap") { + fluentPath { + moveToRelative(15.2f, 2.3f) + lineToRelative(4.0f, 3.99f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.1f, 1.32f) + lineToRelative(-0.1f, 0.09f) + lineToRelative(-4.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.49f, -1.31f) + lineToRelative(0.08f, -0.1f) + lineTo(16.1f, 8.0f) + lineTo(5.5f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.87f) + lineTo(4.5f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) + lineTo(16.1f, 6.0f) + lineToRelative(-2.3f, -2.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.09f, -1.31f) + lineToRelative(0.08f, -0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) + lineToRelative(0.1f, 0.08f) + lineToRelative(4.0f, 4.0f) + lineToRelative(-4.0f, -4.0f) + close() + moveTo(19.5f, 16.88f) + lineTo(19.5f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.89f, 1.0f) + lineTo(7.91f, 18.0f) + lineToRelative(2.3f, 2.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.31f) + lineToRelative(-0.08f, 0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.08f) + lineToRelative(-0.1f, -0.08f) + lineToRelative(-4.0f, -4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.32f) + lineToRelative(0.08f, -0.1f) + lineToRelative(4.0f, -4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.5f, 1.32f) + lineToRelative(-0.08f, 0.1f) + lineTo(7.9f, 16.0f) + lineTo(18.5f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(19.5f, 17.0f) + verticalLineToRelative(-0.12f) + close() + } + } + return _arrowSwap!! + } + +private var _arrowSwap: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSyncCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSyncCheckmark.kt new file mode 100644 index 00000000..d18dc606 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSyncCheckmark.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowSyncCheckmark: ImageVector + get() { + if (_arrowSyncCheckmark != null) { + return _arrowSyncCheckmark!! + } + _arrowSyncCheckmark = fluentIcon(name = "Filled.ArrowSyncCheckmark") { + fluentPath { + moveTo(16.25f, 5.18f) + curveToRelative(-0.25f, 0.33f, -0.19f, 0.8f, 0.14f, 1.05f) + arcToRelative(7.24f, 7.24f, 0.0f, false, true, -3.6f, 12.98f) + arcToRelative(7.3f, 7.3f, 0.0f, false, true, -2.05f, -0.07f) + lineToRelative(-0.33f, 0.33f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.98f) + lineToRelative(0.07f, 0.08f) + lineToRelative(2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, -0.98f) + lineToRelative(-0.07f, -0.08f) + lineToRelative(-0.75f, -0.75f) + arcTo(8.75f, 8.75f, 0.0f, false, false, 17.3f, 5.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.05f, 0.14f) + close() + moveTo(10.53f, 1.47f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(0.75f, 0.75f) + arcToRelative(8.75f, 8.75f, 0.0f, false, false, -4.85f, 15.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.96f, -1.16f) + arcTo(7.23f, 7.23f, 0.0f, false, true, 11.2f, 4.8f) + horizontalLineToRelative(-0.01f) + arcToRelative(7.32f, 7.32f, 0.0f, false, true, 2.06f, 0.07f) + lineToRelative(0.33f, -0.33f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + close() + moveTo(18.0f, 12.0f) + arcToRelative(6.0f, 6.0f, 0.0f, true, true, -12.0f, 0.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 12.0f, 0.0f) + close() + moveTo(15.03f, 9.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineTo(11.0f, 12.94f) + lineToRelative(-0.97f, -0.97f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.5f, 1.5f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(3.5f, -3.5f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + close() + } + } + return _arrowSyncCheckmark!! + } + +private var _arrowSyncCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSyncCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSyncCircle.kt new file mode 100644 index 00000000..62c4f67e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSyncCircle.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowSyncCircle: ImageVector + get() { + if (_arrowSyncCircle != null) { + return _arrowSyncCircle!! + } + _arrowSyncCircle = fluentIcon(name = "Filled.ArrowSyncCircle") { + fluentPath { + moveTo(12.0f, 22.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, -20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, 20.0f) + close() + moveTo(15.27f, 10.75f) + lineTo(14.0f, 10.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.75f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(17.5f, 8.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + lineTo(16.0f, 9.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, -7.83f, -0.23f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.16f, 0.96f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.94f, 1.02f) + close() + moveTo(8.0f, 15.75f) + lineTo(8.0f, 15.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 7.82f, 0.24f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.14f, -0.97f) + arcToRelative(3.51f, 3.51f, 0.0f, false, true, -5.84f, -0.77f) + lineTo(10.0f, 13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(7.25f, 12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + close() + } + } + return _arrowSyncCircle!! + } + +private var _arrowSyncCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSyncDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSyncDismiss.kt new file mode 100644 index 00000000..a6843083 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowSyncDismiss.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowSyncDismiss: ImageVector + get() { + if (_arrowSyncDismiss != null) { + return _arrowSyncDismiss!! + } + _arrowSyncDismiss = fluentIcon(name = "Filled.ArrowSyncDismiss") { + fluentPath { + moveTo(16.25f, 5.18f) + curveToRelative(-0.25f, 0.33f, -0.19f, 0.8f, 0.14f, 1.05f) + arcToRelative(7.24f, 7.24f, 0.0f, false, true, -3.6f, 12.98f) + lineToRelative(0.01f, -0.01f) + arcToRelative(7.33f, 7.33f, 0.0f, false, true, -2.05f, -0.07f) + lineToRelative(-0.34f, 0.34f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.98f) + lineToRelative(0.07f, 0.08f) + lineToRelative(2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, -0.98f) + lineToRelative(-0.07f, -0.08f) + lineToRelative(-0.75f, -0.75f) + arcTo(8.75f, 8.75f, 0.0f, false, false, 17.3f, 5.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.05f, 0.14f) + close() + moveTo(10.53f, 1.47f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(0.75f, 0.75f) + arcToRelative(8.75f, 8.75f, 0.0f, false, false, -4.85f, 15.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.96f, -1.16f) + arcTo(7.23f, 7.23f, 0.0f, false, true, 11.2f, 4.8f) + lineToRelative(-0.01f, 0.01f) + arcToRelative(7.32f, 7.32f, 0.0f, false, true, 2.05f, 0.07f) + lineToRelative(0.34f, -0.34f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + close() + moveTo(18.0f, 12.0f) + arcToRelative(6.0f, 6.0f, 0.0f, true, true, -12.0f, 0.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 12.0f, 0.0f) + close() + moveTo(10.53f, 9.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(10.94f, 12.0f) + lineToRelative(-1.47f, 1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineTo(12.0f, 13.06f) + lineToRelative(1.47f, 1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineTo(13.06f, 12.0f) + lineToRelative(1.47f, -1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineTo(12.0f, 10.94f) + lineToRelative(-1.47f, -1.47f) + close() + } + } + return _arrowSyncDismiss!! + } + +private var _arrowSyncDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTrending.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTrending.kt new file mode 100644 index 00000000..064cd3ac --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTrending.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowTrending: ImageVector + get() { + if (_arrowTrending != null) { + return _arrowTrending!! + } + _arrowTrending = fluentIcon(name = "Filled.ArrowTrending") { + fluentPath { + moveTo(14.0f, 5.5f) + horizontalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + verticalLineToRelative(7.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + verticalLineTo(8.9f) + lineToRelative(-7.3f, 7.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.31f, 0.08f) + lineToRelative(-0.1f, -0.08f) + lineTo(9.0f, 13.9f) + lineToRelative(-5.28f, 5.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.5f, -1.32f) + lineToRelative(0.08f, -0.1f) + lineToRelative(6.0f, -6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) + lineToRelative(0.1f, 0.08f) + lineTo(12.0f, 14.1f) + lineToRelative(6.58f, -6.59f) + horizontalLineTo(14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.99f, -0.88f) + verticalLineTo(6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) + horizontalLineTo(21.0f) + horizontalLineToRelative(-7.0f) + close() + } + } + return _arrowTrending!! + } + +private var _arrowTrending: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTrendingCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTrendingCheckmark.kt new file mode 100644 index 00000000..4bb9eea7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTrendingCheckmark.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowTrendingCheckmark: ImageVector + get() { + if (_arrowTrendingCheckmark != null) { + return _arrowTrendingCheckmark!! + } + _arrowTrendingCheckmark = fluentIcon(name = "Filled.ArrowTrendingCheckmark") { + fluentPath { + moveTo(20.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(19.0f, 6.41f) + lineToRelative(-5.8f, 5.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) + lineTo(10.0f, 10.4f) + lineToRelative(-5.3f, 5.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.42f) + lineToRelative(6.0f, -6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) + lineToRelative(1.8f, 1.8f) + lineTo(17.59f, 5.0f) + lineTo(15.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-3.65f, 3.64f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _arrowTrendingCheckmark!! + } + +private var _arrowTrendingCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTrendingDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTrendingDown.kt new file mode 100644 index 00000000..0bcffdb9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTrendingDown.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowTrendingDown: ImageVector + get() { + if (_arrowTrendingDown != null) { + return _arrowTrendingDown!! + } + _arrowTrendingDown = fluentIcon(name = "Filled.ArrowTrendingDown") { + fluentPath { + moveTo(14.0f, 19.0f) + horizontalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -0.88f) + verticalLineTo(11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, -0.12f) + verticalLineToRelative(4.7f) + lineTo(12.7f, 8.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.31f, -0.08f) + lineToRelative(-0.1f, 0.08f) + lineTo(9.0f, 10.6f) + lineToRelative(-5.28f, -5.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.5f, 1.32f) + lineToRelative(0.08f, 0.1f) + lineToRelative(6.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.32f, 0.08f) + lineToRelative(0.1f, -0.09f) + lineTo(12.0f, 10.41f) + lineTo(18.58f, 17.0f) + horizontalLineTo(14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.99f, 0.88f) + verticalLineTo(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.88f, 1.0f) + horizontalLineTo(14.0f) + close() + } + } + return _arrowTrendingDown!! + } + +private var _arrowTrendingDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTrendingLines.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTrendingLines.kt new file mode 100644 index 00000000..a9007e75 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTrendingLines.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowTrendingLines: ImageVector + get() { + if (_arrowTrendingLines != null) { + return _arrowTrendingLines!! + } + _arrowTrendingLines = fluentIcon(name = "Filled.ArrowTrendingLines") { + fluentPath { + moveTo(17.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(20.0f, 5.41f) + lineToRelative(-5.8f, 5.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) + lineTo(10.0f, 8.4f) + lineToRelative(-5.3f, 5.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.42f) + lineToRelative(6.0f, -6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) + lineToRelative(2.8f, 2.8f) + lineTo(18.59f, 4.0f) + lineTo(17.0f, 4.0f) + close() + moveTo(5.0f, 18.0f) + verticalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + close() + moveTo(10.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-7.0f) + close() + moveTo(14.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(20.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(20.0f, 11.0f) + close() + } + } + return _arrowTrendingLines!! + } + +private var _arrowTrendingLines: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTrendingSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTrendingSettings.kt new file mode 100644 index 00000000..6911e209 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTrendingSettings.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowTrendingSettings: ImageVector + get() { + if (_arrowTrendingSettings != null) { + return _arrowTrendingSettings!! + } + _arrowTrendingSettings = fluentIcon(name = "Filled.ArrowTrendingSettings") { + fluentPath { + moveTo(20.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(19.0f, 6.41f) + lineToRelative(-5.8f, 5.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) + lineTo(10.0f, 10.4f) + lineToRelative(-5.3f, 5.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.42f) + lineToRelative(6.0f, -6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) + lineToRelative(1.8f, 1.8f) + lineTo(17.59f, 5.0f) + lineTo(15.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(14.28f, 13.98f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.59f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) + lineToRelative(0.55f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) + lineToRelative(-0.19f, 0.64f) + curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) + lineToRelative(0.49f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) + lineToRelative(-0.2f, -0.69f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) + lineToRelative(0.59f, -0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, -1.8f) + lineToRelative(-0.55f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.19f, -0.63f) + curveToRelative(-0.44f, -0.4f, -0.94f, -0.7f, -1.49f, -0.93f) + lineToRelative(-0.49f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) + lineToRelative(0.2f, 0.7f) + close() + moveTo(17.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) + close() + } + } + return _arrowTrendingSettings!! + } + +private var _arrowTrendingSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTrendingSparkle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTrendingSparkle.kt new file mode 100644 index 00000000..fbcee13d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTrendingSparkle.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowTrendingSparkle: ImageVector + get() { + if (_arrowTrendingSparkle != null) { + return _arrowTrendingSparkle!! + } + _arrowTrendingSparkle = fluentIcon(name = "Filled.ArrowTrendingSparkle") { + fluentPath { + moveTo(4.85f, 8.15f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, 0.69f, 1.11f) + lineToRelative(0.45f, 1.38f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 1.02f, 0.0f) + lineToRelative(0.45f, -1.38f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, 1.8f, -1.8f) + lineToRelative(1.38f, -0.44f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, -1.03f) + horizontalLineToRelative(-0.03f) + lineToRelative(-1.38f, -0.45f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.8f, -1.8f) + lineTo(7.0f, 2.36f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, -1.03f, 0.0f) + lineTo(5.5f, 3.74f) + lineToRelative(-0.01f, 0.03f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.76f, 1.77f) + lineToRelative(-1.38f, 0.44f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, 1.03f) + lineToRelative(1.38f, 0.45f) + curveToRelative(0.42f, 0.14f, 0.8f, 0.37f, 1.11f, 0.69f) + close() + moveTo(20.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-2.59f) + lineToRelative(-5.8f, 5.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) + lineTo(10.0f, 14.4f) + lineToRelative(-5.3f, 5.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.42f) + lineToRelative(6.0f, -6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) + lineToRelative(1.8f, 1.8f) + lineTo(17.59f, 9.0f) + lineTo(15.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(20.02f, 17.96f) + lineTo(20.78f, 18.21f) + horizontalLineToRelative(0.02f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, 0.47f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, 0.1f) + lineToRelative(-0.77f, 0.26f) + arcToRelative(1.58f, 1.58f, 0.0f, false, false, -1.0f, 1.0f) + lineToRelative(-0.24f, 0.76f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.58f, 0.0f) + lineToRelative(-0.24f, -0.77f) + arcToRelative(1.57f, 1.57f, 0.0f, false, false, -1.0f, -1.0f) + lineToRelative(-0.77f, -0.25f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, -0.46f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, -0.1f) + lineToRelative(0.77f, -0.26f) + arcToRelative(1.58f, 1.58f, 0.0f, false, false, 0.98f, -1.0f) + lineToRelative(0.25f, -0.76f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.57f, 0.0f) + lineToRelative(0.25f, 0.77f) + arcToRelative(1.58f, 1.58f, 0.0f, false, false, 1.0f, 1.0f) + close() + } + } + return _arrowTrendingSparkle!! + } + +private var _arrowTrendingSparkle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTrendingText.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTrendingText.kt new file mode 100644 index 00000000..9bb77f60 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTrendingText.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowTrendingText: ImageVector + get() { + if (_arrowTrendingText != null) { + return _arrowTrendingText!! + } + _arrowTrendingText = fluentIcon(name = "Filled.ArrowTrendingText") { + fluentPath { + moveTo(21.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineToRelative(-5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(2.59f) + lineToRelative(-5.09f, 5.09f) + lineToRelative(-1.8f, -1.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) + lineToRelative(-6.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, 1.42f) + lineToRelative(5.3f, -5.3f) + lineToRelative(1.8f, 1.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.56f, 0.28f) + curveToRelative(0.3f, -0.2f, 0.63f, -0.34f, 0.98f, -0.42f) + lineTo(19.0f, 6.41f) + lineTo(19.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(21.0f, 4.0f) + close() + moveTo(14.0f, 13.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + verticalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + horizontalLineToRelative(-7.0f) + close() + moveTo(14.0f, 16.5f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + moveTo(14.0f, 19.5f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + } + } + return _arrowTrendingText!! + } + +private var _arrowTrendingText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTrendingWrench.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTrendingWrench.kt new file mode 100644 index 00000000..cc81851f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTrendingWrench.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowTrendingWrench: ImageVector + get() { + if (_arrowTrendingWrench != null) { + return _arrowTrendingWrench!! + } + _arrowTrendingWrench = fluentIcon(name = "Filled.ArrowTrendingWrench") { + fluentPath { + moveTo(21.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineToRelative(-5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(2.59f) + lineToRelative(-5.09f, 5.09f) + lineToRelative(-1.8f, -1.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) + lineToRelative(-6.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, 1.42f) + lineToRelative(5.3f, -5.3f) + lineToRelative(1.8f, 1.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) + lineTo(19.0f, 6.4f) + lineTo(19.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(21.0f, 4.0f) + close() + moveTo(20.48f, 11.83f) + curveToRelative(0.25f, -0.25f, 0.17f, -0.67f, -0.18f, -0.75f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.54f, 5.47f) + lineToRelative(-3.74f, 3.75f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 2.12f, 2.12f) + lineToRelative(3.74f, -3.74f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 5.47f, -4.54f) + curveToRelative(-0.08f, -0.35f, -0.5f, -0.44f, -0.75f, -0.19f) + lineToRelative(-1.74f, 1.75f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.12f, -2.12f) + lineToRelative(1.74f, -1.75f) + close() + } + } + return _arrowTrendingWrench!! + } + +private var _arrowTrendingWrench: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTurnBidirectionalDownRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTurnBidirectionalDownRight.kt new file mode 100644 index 00000000..0b879592 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTurnBidirectionalDownRight.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowTurnBidirectionalDownRight: ImageVector + get() { + if (_arrowTurnBidirectionalDownRight != null) { + return _arrowTurnBidirectionalDownRight!! + } + _arrowTurnBidirectionalDownRight = fluentIcon(name = + "Filled.ArrowTurnBidirectionalDownRight") { + fluentPath { + moveTo(17.7f, 3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.4f, 1.4f) + lineTo(18.58f, 7.0f) + horizontalLineTo(11.5f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 7.0f, 11.5f) + verticalLineToRelative(7.09f) + lineToRelative(-2.3f, -2.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.4f, 1.42f) + lineToRelative(4.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.42f) + lineTo(9.0f, 18.6f) + verticalLineTo(11.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 11.5f, 9.0f) + horizontalLineToRelative(7.09f) + lineToRelative(-2.3f, 2.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.42f, 1.4f) + lineToRelative(4.0f, -4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.4f) + lineToRelative(-4.0f, -4.0f) + close() + } + } + return _arrowTurnBidirectionalDownRight!! + } + +private var _arrowTurnBidirectionalDownRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTurnRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTurnRight.kt new file mode 100644 index 00000000..6bb1ae8b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowTurnRight.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowTurnRight: ImageVector + get() { + if (_arrowTurnRight != null) { + return _arrowTurnRight!! + } + _arrowTurnRight = fluentIcon(name = "Filled.ArrowTurnRight") { + fluentPath { + moveTo(16.46f, 3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.42f, 1.4f) + lineToRelative(2.3f, 2.3f) + horizontalLineTo(10.5f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 6.0f, 11.5f) + verticalLineTo(20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-8.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 10.5f, 9.0f) + horizontalLineToRelative(7.34f) + lineToRelative(-2.8f, 2.8f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.42f, 1.4f) + lineToRelative(4.25f, -4.24f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) + lineTo(16.46f, 3.3f) + close() + } + } + return _arrowTurnRight!! + } + +private var _arrowTurnRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowUndo.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowUndo.kt new file mode 100644 index 00000000..b74689bf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowUndo.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowUndo: ImageVector + get() { + if (_arrowUndo != null) { + return _arrowUndo!! + } + _arrowUndo = fluentIcon(name = "Filled.ArrowUndo") { + fluentPath { + moveToRelative(6.9f, 6.68f) + lineToRelative(2.74f, -2.73f) + arcToRelative(6.66f, 6.66f, 0.0f, true, true, 9.42f, 9.42f) + lineToRelative(-8.34f, 8.34f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.41f, -1.42f) + lineToRelative(8.34f, -8.33f) + arcToRelative(4.66f, 4.66f, 0.0f, false, false, -6.42f, -6.76f) + lineToRelative(-0.18f, 0.17f) + lineTo(7.41f, 9.0f) + horizontalLineTo(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + verticalLineTo(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + horizontalLineTo(4.94f) + lineToRelative(-0.1f, -0.01f) + lineToRelative(-0.1f, -0.03f) + lineToRelative(-0.14f, -0.04f) + lineToRelative(-0.08f, -0.04f) + lineToRelative(-0.1f, -0.07f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.13f, -0.1f) + lineToRelative(-0.09f, -0.1f) + lineToRelative(-0.07f, -0.12f) + lineToRelative(-0.05f, -0.1f) + lineToRelative(-0.04f, -0.1f) + lineToRelative(-0.01f, -0.06f) + lineToRelative(-0.02f, -0.08f) + verticalLineToRelative(-0.06f) + lineTo(4.0f, 10.0f) + verticalLineTo(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.11f) + verticalLineToRelative(4.7f) + lineToRelative(3.64f, -3.64f) + lineToRelative(-2.73f, 2.73f) + close() + } + } + return _arrowUndo!! + } + +private var _arrowUndo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowUpload.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowUpload.kt new file mode 100644 index 00000000..71fd7bcf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowUpload.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowUpload: ImageVector + get() { + if (_arrowUpload != null) { + return _arrowUpload!! + } + _arrowUpload = fluentIcon(name = "Filled.ArrowUpload") { + fluentPath { + moveTo(5.25f, 3.5f) + horizontalLineToRelative(13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + horizontalLineTo(5.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.49f) + horizontalLineToRelative(0.1f) + close() + moveTo(11.88f, 22.0f) + horizontalLineTo(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -0.88f) + verticalLineTo(8.4f) + lineToRelative(3.3f, 3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.31f, 0.08f) + lineToRelative(0.1f, -0.09f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.08f, -1.32f) + lineToRelative(-0.08f, -0.1f) + lineToRelative(-5.0f, -4.99f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.32f, -0.08f) + lineToRelative(-0.1f, 0.08f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.32f, 1.5f) + lineToRelative(0.1f, -0.09f) + lineTo(11.0f, 8.42f) + verticalLineTo(21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.88f, 1.0f) + close() + } + } + return _arrowUpload!! + } + +private var _arrowUpload: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowsBidirectional.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowsBidirectional.kt new file mode 100644 index 00000000..812a1740 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ArrowsBidirectional.kt @@ -0,0 +1,41 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ArrowsBidirectional: ImageVector + get() { + if (_arrowsBidirectional != null) { + return _arrowsBidirectional!! + } + _arrowsBidirectional = fluentIcon(name = "Filled.ArrowsBidirectional") { + fluentPath { + moveTo(15.0f, 9.0f) + horizontalLineTo(9.0f) + verticalLineTo(6.75f) + curveToRelative(0.0f, -0.66f, -0.78f, -1.0f, -1.26f, -0.54f) + lineToRelative(-5.5f, 5.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.08f) + lineToRelative(5.5f, 5.25f) + lineToRelative(0.08f, 0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.19f, -0.61f) + verticalLineTo(15.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.66f, 0.78f, 1.0f, 1.26f, 0.54f) + lineToRelative(5.5f, -5.25f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.79f, 0.0f, -1.08f) + lineToRelative(-5.5f, -5.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.27f, 0.54f) + verticalLineTo(9.0f) + close() + } + } + return _arrowsBidirectional!! + } + +private var _arrowsBidirectional: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AttachArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AttachArrowRight.kt new file mode 100644 index 00000000..f301079b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AttachArrowRight.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AttachArrowRight: ImageVector + get() { + if (_attachArrowRight != null) { + return _attachArrowRight!! + } + _attachArrowRight = fluentIcon(name = "Filled.AttachArrowRight") { + fluentPath { + moveTo(16.0f, 2.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 4.64f, 9.8f) + arcToRelative(6.45f, 6.45f, 0.0f, false, false, -2.07f, -0.71f) + lineToRelative(0.23f, -0.23f) + lineToRelative(0.16f, -0.17f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -5.75f, -5.55f) + lineToRelative(-0.16f, 0.16f) + lineToRelative(-0.02f, 0.01f) + lineToRelative(-9.32f, 9.33f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, -1.41f) + lineTo(11.6f, 3.9f) + lineToRelative(0.05f, -0.04f) + arcTo(5.98f, 5.98f, 0.0f, false, true, 16.0f, 2.0f) + close() + moveTo(11.1f, 18.57f) + curveToRelative(0.12f, 0.75f, 0.37f, 1.45f, 0.73f, 2.1f) + lineToRelative(-0.34f, 0.34f) + lineToRelative(-0.05f, 0.04f) + lineToRelative(-0.06f, 0.05f) + arcToRelative(3.71f, 3.71f, 0.0f, false, true, -6.15f, -2.82f) + curveToRelative(0.0f, -0.9f, 0.33f, -1.76f, 0.9f, -2.42f) + lineToRelative(0.15f, -0.17f) + horizontalLineToRelative(0.01f) + lineToRelative(7.3f, -7.31f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.41f) + lineTo(7.7f, 17.1f) + lineToRelative(-0.01f, 0.01f) + arcToRelative(1.72f, 1.72f, 0.0f, false, false, 2.29f, 2.55f) + lineToRelative(0.12f, -0.1f) + lineToRelative(0.99f, -0.98f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(19.29f, 17.0f) + lineTo(14.5f, 17.0f) + close() + } + } + return _attachArrowRight!! + } + +private var _attachArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AttachText.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AttachText.kt new file mode 100644 index 00000000..9ccfb0c1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AttachText.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AttachText: ImageVector + get() { + if (_attachText != null) { + return _attachText!! + } + _attachText = fluentIcon(name = "Filled.AttachText") { + fluentPath { + moveTo(7.0f, 3.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 5.0f, 4.78f) + lineTo(12.0f, 19.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.18f) + lineTo(6.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(8.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.12f) + lineTo(10.0f, 8.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -6.0f, -0.18f) + lineTo(4.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(2.0f, 8.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 5.0f, -5.0f) + close() + moveTo(15.0f, 17.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(15.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(17.0f, 17.0f) + horizontalLineToRelative(-2.0f) + close() + moveTo(15.0f, 13.0f) + horizontalLineToRelative(5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(15.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + horizontalLineToRelative(5.62f) + lineTo(15.0f, 13.0f) + close() + moveTo(15.0f, 9.0f) + horizontalLineToRelative(5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(15.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + horizontalLineToRelative(5.62f) + lineTo(15.0f, 9.0f) + close() + moveTo(15.0f, 5.0f) + horizontalLineToRelative(5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(15.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + horizontalLineToRelative(5.62f) + lineTo(15.0f, 5.0f) + close() + } + } + return _attachText!! + } + +private var _attachText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AutoFitHeight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AutoFitHeight.kt new file mode 100644 index 00000000..9376e34a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AutoFitHeight.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AutoFitHeight: ImageVector + get() { + if (_autoFitHeight != null) { + return _autoFitHeight!! + } + _autoFitHeight = fluentIcon(name = "Filled.AutoFitHeight") { + fluentPath { + moveTo(6.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(6.0f, 3.0f) + close() + moveTo(10.35f, 13.7f) + lineTo(10.45f, 13.79f) + lineTo(11.25f, 14.59f) + lineTo(11.25f, 9.4f) + lineToRelative(-0.8f, 0.8f) + lineToRelative(-0.1f, 0.09f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.4f) + lineToRelative(0.09f, -0.1f) + lineToRelative(2.35f, -2.36f) + curveToRelative(0.18f, -0.27f, 0.5f, -0.44f, 0.86f, -0.44f) + curveToRelative(0.32f, 0.0f, 0.62f, 0.14f, 0.8f, 0.37f) + horizontalLineToRelative(0.01f) + lineToRelative(0.05f, 0.07f) + lineToRelative(2.36f, 2.36f) + lineToRelative(0.08f, 0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.01f, 1.18f) + verticalLineToRelative(0.01f) + lineToRelative(-0.1f, 0.12f) + lineToRelative(-0.1f, 0.09f) + horizontalLineToRelative(-0.01f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.18f, 0.01f) + lineToRelative(-0.12f, -0.1f) + lineToRelative(-0.8f, -0.8f) + verticalLineToRelative(5.18f) + lineToRelative(0.8f, -0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.3f, -0.1f) + verticalLineToRelative(0.01f) + lineToRelative(0.1f, 0.09f) + horizontalLineToRelative(0.01f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.1f, 1.3f) + verticalLineToRelative(0.01f) + lineToRelative(-0.1f, 0.1f) + lineToRelative(-2.35f, 2.36f) + curveToRelative(-0.18f, 0.27f, -0.5f, 0.44f, -0.86f, 0.44f) + curveToRelative(-0.35f, 0.0f, -0.68f, -0.17f, -0.86f, -0.44f) + lineTo(9.04f, 15.2f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.3f, -1.51f) + horizontalLineToRelative(0.01f) + close() + moveTo(5.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(6.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + } + } + return _autoFitHeight!! + } + +private var _autoFitHeight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AutoFitWidth.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AutoFitWidth.kt new file mode 100644 index 00000000..d79282f6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/AutoFitWidth.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.AutoFitWidth: ImageVector + get() { + if (_autoFitWidth != null) { + return _autoFitWidth!! + } + _autoFitWidth = fluentIcon(name = "Filled.AutoFitWidth") { + fluentPath { + moveTo(3.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(5.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) + verticalLineToRelative(12.0f) + close() + moveTo(19.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(21.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(12.0f) + close() + moveTo(13.79f, 13.8f) + lineTo(13.7f, 13.9f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.5f, 1.3f) + lineToRelative(2.36f, -2.34f) + curveToRelative(0.27f, -0.18f, 0.44f, -0.5f, 0.44f, -0.86f) + reflectiveCurveToRelative(-0.17f, -0.68f, -0.44f, -0.86f) + lineTo(15.2f, 8.78f) + lineToRelative(-0.1f, -0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.3f, 0.1f) + horizontalLineToRelative(-0.01f) + lineToRelative(-0.09f, 0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.1f, 1.3f) + lineToRelative(0.79f, 0.8f) + lineTo(9.4f, 11.0f) + lineToRelative(0.8f, -0.8f) + lineToRelative(0.1f, -0.11f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.19f) + horizontalLineToRelative(-0.01f) + lineToRelative(-0.1f, -0.1f) + lineToRelative(-0.1f, -0.1f) + lineToRelative(-0.02f, -0.01f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.17f, 0.0f) + lineToRelative(-0.01f, 0.01f) + lineToRelative(-0.1f, 0.09f) + lineToRelative(-2.36f, 2.35f) + lineToRelative(-0.07f, 0.05f) + curveToRelative(-0.23f, 0.2f, -0.37f, 0.49f, -0.37f, 0.81f) + curveToRelative(0.0f, 0.36f, 0.17f, 0.68f, 0.44f, 0.86f) + lineToRelative(2.36f, 2.36f) + lineToRelative(0.1f, 0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, -1.4f) + lineToRelative(-0.09f, -0.1f) + lineToRelative(-0.8f, -0.8f) + horizontalLineToRelative(5.18f) + lineToRelative(-0.8f, 0.8f) + close() + } + } + return _autoFitWidth!! + } + +private var _autoFitWidth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Autocorrect.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Autocorrect.kt new file mode 100644 index 00000000..e57006be --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Autocorrect.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Autocorrect: ImageVector + get() { + if (_autocorrect != null) { + return _autocorrect!! + } + _autocorrect = fluentIcon(name = "Filled.Autocorrect") { + fluentPath { + moveTo(13.6f, 4.72f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.94f, 0.95f) + lineToRelative(2.87f, 4.58f) + horizontalLineToRelative(4.09f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + horizontalLineToRelative(-2.75f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, -4.0f, -2.0f) + horizontalLineToRelative(0.3f) + lineToRelative(-0.28f, -0.45f) + lineToRelative(-1.92f, -3.07f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.63f, -0.1f) + lineToRelative(-0.07f, 0.1f) + lineTo(3.6f, 18.78f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.75f, -0.96f) + lineToRelative(0.05f, -0.1f) + lineTo(9.46f, 5.67f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 4.13f, -0.95f) + close() + moveTo(14.75f, 12.25f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + } + } + return _autocorrect!! + } + +private var _autocorrect: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Autosum.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Autosum.kt new file mode 100644 index 00000000..bd0a1f07 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Autosum.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Autosum: ImageVector + get() { + if (_autosum != null) { + return _autosum!! + } + _autosum = fluentIcon(name = "Filled.Autosum") { + fluentPath { + moveTo(4.83f, 4.61f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 5.75f, 4.0f) + horizontalLineToRelative(12.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineTo(8.11f) + lineToRelative(4.95f, 5.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.04f, 1.34f) + lineTo(7.92f, 18.5f) + horizontalLineToRelative(10.33f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineTo(5.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.76f, -1.65f) + lineToRelative(6.0f, -7.0f) + lineTo(5.03f, 5.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.2f, -1.09f) + close() + } + } + return _autosum!! + } + +private var _autosum: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Backpack.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Backpack.kt new file mode 100644 index 00000000..44808322 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Backpack.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Backpack: ImageVector + get() { + if (_backpack != null) { + return _backpack!! + } + _backpack = fluentIcon(name = "Filled.Backpack") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.74f, 3.42f) + arcTo(8.0f, 8.0f, 0.0f, false, false, 4.0f, 12.5f) + lineTo(4.0f, 14.0f) + horizontalLineToRelative(16.0f) + verticalLineToRelative(-1.5f) + arcToRelative(8.0f, 8.0f, 0.0f, false, false, -4.26f, -7.08f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 12.0f, 2.0f) + close() + moveTo(20.0f, 15.71f) + lineTo(9.5f, 15.71f) + verticalLineToRelative(1.54f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.54f) + lineTo(4.0f, 15.71f) + verticalLineToRelative(3.04f) + curveTo(4.0f, 20.55f, 5.46f, 22.0f, 7.25f, 22.0f) + horizontalLineToRelative(9.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-3.04f) + close() + moveTo(12.0f, 4.5f) + curveToRelative(-0.7f, 0.0f, -1.37f, 0.09f, -2.02f, 0.26f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.04f, 0.0f) + arcTo(8.01f, 8.01f, 0.0f, false, false, 12.0f, 4.5f) + close() + moveTo(8.0f, 10.42f) + arcTo(2.42f, 2.42f, 0.0f, false, true, 10.42f, 8.0f) + horizontalLineToRelative(3.16f) + arcTo(2.42f, 2.42f, 0.0f, false, true, 16.0f, 10.42f) + curveToRelative(0.0f, 0.87f, -0.7f, 1.58f, -1.58f, 1.58f) + lineTo(9.58f, 12.0f) + curveTo(8.71f, 12.0f, 8.0f, 11.3f, 8.0f, 10.42f) + close() + moveTo(10.42f, 9.5f) + curveToRelative(-0.51f, 0.0f, -0.92f, 0.41f, -0.92f, 0.92f) + curveToRelative(0.0f, 0.04f, 0.04f, 0.08f, 0.08f, 0.08f) + horizontalLineToRelative(4.84f) + curveToRelative(0.04f, 0.0f, 0.08f, -0.04f, 0.08f, -0.08f) + curveToRelative(0.0f, -0.51f, -0.41f, -0.92f, -0.92f, -0.92f) + horizontalLineToRelative(-3.16f) + close() + } + } + return _backpack!! + } + +private var _backpack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BackpackAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BackpackAdd.kt new file mode 100644 index 00000000..76652854 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BackpackAdd.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BackpackAdd: ImageVector + get() { + if (_backpackAdd != null) { + return _backpackAdd!! + } + _backpackAdd = fluentIcon(name = "Filled.BackpackAdd") { + fluentPath { + moveTo(8.26f, 5.42f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 7.48f, 0.0f) + arcToRelative(8.0f, 8.0f, 0.0f, false, true, 4.2f, 6.05f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, -4.17f, -0.24f) + curveToRelative(0.15f, -0.24f, 0.23f, -0.52f, 0.23f, -0.81f) + arcTo(2.42f, 2.42f, 0.0f, false, false, 13.58f, 8.0f) + horizontalLineToRelative(-3.16f) + arcTo(2.42f, 2.42f, 0.0f, false, false, 8.0f, 10.42f) + curveToRelative(0.0f, 0.87f, 0.7f, 1.58f, 1.58f, 1.58f) + horizontalLineToRelative(4.45f) + curveToRelative(-0.8f, 0.51f, -1.5f, 1.2f, -2.0f, 2.0f) + lineTo(4.0f, 14.0f) + verticalLineToRelative(-1.5f) + arcToRelative(8.0f, 8.0f, 0.0f, false, true, 4.26f, -7.08f) + close() + moveTo(9.98f, 4.76f) + arcToRelative(8.01f, 8.01f, 0.0f, false, true, 4.04f, 0.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -4.04f, 0.0f) + close() + moveTo(11.25f, 15.71f) + lineTo(9.5f, 15.71f) + verticalLineToRelative(1.54f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.54f) + lineTo(4.0f, 15.71f) + verticalLineToRelative(3.04f) + curveTo(4.0f, 20.55f, 5.46f, 22.0f, 7.25f, 22.0f) + horizontalLineToRelative(5.56f) + arcToRelative(6.48f, 6.48f, 0.0f, false, true, -1.56f, -6.29f) + close() + moveTo(9.5f, 10.41f) + curveToRelative(0.0f, -0.5f, 0.41f, -0.91f, 0.92f, -0.91f) + horizontalLineToRelative(3.16f) + curveToRelative(0.51f, 0.0f, 0.92f, 0.41f, 0.92f, 0.92f) + curveToRelative(0.0f, 0.04f, -0.04f, 0.08f, -0.08f, 0.08f) + lineTo(9.58f, 10.5f) + arcToRelative(0.08f, 0.08f, 0.0f, false, true, -0.08f, -0.08f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(18.0f, 20.5f) + lineTo(18.0f, 18.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + lineTo(18.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -1.0f, 0.0f) + lineTo(17.0f, 17.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + lineTo(17.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) + close() + } + } + return _backpackAdd!! + } + +private var _backpackAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Badge.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Badge.kt new file mode 100644 index 00000000..59e21b51 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Badge.kt @@ -0,0 +1,37 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Badge: ImageVector + get() { + if (_badge != null) { + return _badge!! + } + _badge = fluentIcon(name = "Filled.Badge") { + fluentPath { + moveTo(16.0f, 4.5f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 5.0f, 3.16f) + verticalLineToRelative(10.59f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) + horizontalLineTo(5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + verticalLineTo(5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(10.59f) + curveToRelative(-0.22f, 0.46f, -0.34f, 0.96f, -0.34f, 1.5f) + close() + moveTo(19.5f, 2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + } + } + return _badge!! + } + +private var _badge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Balloon.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Balloon.kt new file mode 100644 index 00000000..8d7752b0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Balloon.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Balloon: ImageVector + get() { + if (_balloon != null) { + return _balloon!! + } + _balloon = fluentIcon(name = "Filled.Balloon") { + fluentPath { + moveTo(5.0f, 9.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, 14.0f, 0.0f) + curveToRelative(0.0f, 2.03f, -0.67f, 4.24f, -1.85f, 5.96f) + arcToRelative(6.58f, 6.58f, 0.0f, false, true, -4.4f, 2.99f) + verticalLineToRelative(0.3f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.25f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(13.5f, 20.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-0.3f) + arcToRelative(6.58f, 6.58f, 0.0f, false, true, -4.4f, -3.0f) + arcTo(10.88f, 10.88f, 0.0f, false, true, 5.0f, 9.0f) + close() + moveTo(12.92f, 5.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.34f, 1.47f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 1.85f, 1.85f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.46f, -0.35f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -2.97f, -2.96f) + close() + } + } + return _balloon!! + } + +private var _balloon: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BarcodeScanner.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BarcodeScanner.kt new file mode 100644 index 00000000..8495f473 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BarcodeScanner.kt @@ -0,0 +1,91 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BarcodeScanner: ImageVector + get() { + if (_barcodeScanner != null) { + return _barcodeScanner!! + } + _barcodeScanner = fluentIcon(name = "Filled.BarcodeScanner") { + fluentPath { + moveTo(2.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(1.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + lineTo(5.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(1.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + lineTo(2.0f, 6.0f) + close() + moveTo(16.5f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + lineTo(19.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(1.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(20.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineToRelative(-1.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(3.0f, 15.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + lineTo(4.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(1.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(5.0f, 21.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + verticalLineToRelative(-1.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(21.0f, 15.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + lineTo(22.0f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + horizontalLineToRelative(-1.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + lineTo(19.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineToRelative(-1.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(6.0f, 6.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(8.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-8.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(11.0f, 7.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(8.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-8.5f) + close() + moveTo(14.0f, 6.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(8.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-8.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(19.0f, 7.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(8.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-8.5f) + close() + } + } + return _barcodeScanner!! + } + +private var _barcodeScanner: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery0.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery0.kt new file mode 100644 index 00000000..0948b14f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery0.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Battery0: ImageVector + get() { + if (_battery0 != null) { + return _battery0!! + } + _battery0 = fluentIcon(name = "Filled.Battery0") { + fluentPath { + moveTo(2.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + horizontalLineTo(5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + verticalLineTo(9.0f) + close() + } + } + return _battery0!! + } + +private var _battery0: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery1.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery1.kt new file mode 100644 index 00000000..a58e0fee --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery1.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Battery1: ImageVector + get() { + if (_battery1 != null) { + return _battery1!! + } + _battery1 = fluentIcon(name = "Filled.Battery1") { + fluentPath { + moveTo(17.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + horizontalLineTo(5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + verticalLineTo(9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(7.0f, 9.0f) + horizontalLineTo(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineToRelative(-4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + } + } + return _battery1!! + } + +private var _battery1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery10.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery10.kt new file mode 100644 index 00000000..20c5e4f0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery10.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Battery10: ImageVector + get() { + if (_battery10 != null) { + return _battery10!! + } + _battery10 = fluentIcon(name = "Filled.Battery10") { + fluentPath { + moveTo(17.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + lineTo(5.0f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(2.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(16.0f, 9.0f) + lineTo(6.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineToRelative(-4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + } + } + return _battery10!! + } + +private var _battery10: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery2.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery2.kt new file mode 100644 index 00000000..71a16d91 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery2.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Battery2: ImageVector + get() { + if (_battery2 != null) { + return _battery2!! + } + _battery2 = fluentIcon(name = "Filled.Battery2") { + fluentPath { + moveTo(17.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + horizontalLineTo(5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + verticalLineTo(9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(8.0f, 9.0f) + horizontalLineTo(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineToRelative(-4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + } + } + return _battery2!! + } + +private var _battery2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery3.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery3.kt new file mode 100644 index 00000000..385d62eb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery3.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Battery3: ImageVector + get() { + if (_battery3 != null) { + return _battery3!! + } + _battery3 = fluentIcon(name = "Filled.Battery3") { + fluentPath { + moveTo(17.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + horizontalLineTo(5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + verticalLineTo(9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(9.0f, 9.0f) + horizontalLineTo(6.02f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineTo(9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineToRelative(-4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + } + } + return _battery3!! + } + +private var _battery3: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery4.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery4.kt new file mode 100644 index 00000000..a90b6a5e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery4.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Battery4: ImageVector + get() { + if (_battery4 != null) { + return _battery4!! + } + _battery4 = fluentIcon(name = "Filled.Battery4") { + fluentPath { + moveTo(17.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + lineTo(5.0f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(2.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(10.0f, 9.0f) + lineTo(6.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineToRelative(-4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + } + } + return _battery4!! + } + +private var _battery4: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery5.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery5.kt new file mode 100644 index 00000000..10ab8eb6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery5.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Battery5: ImageVector + get() { + if (_battery5 != null) { + return _battery5!! + } + _battery5 = fluentIcon(name = "Filled.Battery5") { + fluentPath { + moveTo(17.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + lineTo(5.0f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(2.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(11.0f, 9.0f) + lineTo(6.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineToRelative(-4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + } + } + return _battery5!! + } + +private var _battery5: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery6.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery6.kt new file mode 100644 index 00000000..227773d5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery6.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Battery6: ImageVector + get() { + if (_battery6 != null) { + return _battery6!! + } + _battery6 = fluentIcon(name = "Filled.Battery6") { + fluentPath { + moveTo(17.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + lineTo(5.0f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(2.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(12.0f, 9.0f) + lineTo(6.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineToRelative(-4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + } + } + return _battery6!! + } + +private var _battery6: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery7.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery7.kt new file mode 100644 index 00000000..dd4d316c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery7.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Battery7: ImageVector + get() { + if (_battery7 != null) { + return _battery7!! + } + _battery7 = fluentIcon(name = "Filled.Battery7") { + fluentPath { + moveTo(17.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + lineTo(5.0f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(2.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(13.0f, 9.0f) + lineTo(6.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineToRelative(-4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + } + } + return _battery7!! + } + +private var _battery7: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery8.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery8.kt new file mode 100644 index 00000000..642193c2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery8.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Battery8: ImageVector + get() { + if (_battery8 != null) { + return _battery8!! + } + _battery8 = fluentIcon(name = "Filled.Battery8") { + fluentPath { + moveTo(17.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + lineTo(5.0f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(2.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(14.0f, 9.0f) + lineTo(6.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineToRelative(-4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + } + } + return _battery8!! + } + +private var _battery8: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery9.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery9.kt new file mode 100644 index 00000000..cd4dbebd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Battery9.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Battery9: ImageVector + get() { + if (_battery9 != null) { + return _battery9!! + } + _battery9 = fluentIcon(name = "Filled.Battery9") { + fluentPath { + moveTo(6.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineToRelative(-4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineTo(6.0f) + close() + moveTo(2.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.5f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(0.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-0.5f) + verticalLineToRelative(1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + horizontalLineTo(5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + verticalLineTo(9.0f) + close() + } + } + return _battery9!! + } + +private var _battery9: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BatteryCharge.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BatteryCharge.kt new file mode 100644 index 00000000..7f6c5db3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BatteryCharge.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BatteryCharge: ImageVector + get() { + if (_batteryCharge != null) { + return _batteryCharge!! + } + _batteryCharge = fluentIcon(name = "Filled.BatteryCharge") { + fluentPath { + moveTo(10.75f, 6.0f) + lineTo(17.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) + lineTo(20.0f, 10.0f) + lineToRelative(1.0f, 0.02f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + verticalLineToRelative(2.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.87f, 0.99f) + lineTo(21.0f, 14.01f) + lineTo(20.0f, 14.0f) + verticalLineToRelative(1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.82f, 3.0f) + lineTo(8.0f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.65f) + verticalLineToRelative(-4.6f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.64f, -0.74f) + lineTo(8.0f, 12.0f) + horizontalLineToRelative(0.63f) + curveToRelative(0.72f, 0.0f, 1.3f, -0.55f, 1.37f, -1.24f) + lineToRelative(0.01f, -0.14f) + lineTo(10.01f, 6.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + lineTo(17.0f, 6.0f) + horizontalLineToRelative(-6.25f) + close() + moveTo(6.65f, 4.0f) + horizontalLineToRelative(0.1f) + curveToRelative(0.38f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) + lineTo(7.49f, 6.0f) + horizontalLineToRelative(0.76f) + curveToRelative(0.42f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + curveTo(9.0f, 10.22f, 8.22f, 11.0f, 7.25f, 11.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(6.24f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.75f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) + lineTo(4.76f, 11.0f) + lineTo(3.74f, 11.0f) + curveTo(2.78f, 11.0f, 2.0f, 10.22f, 2.0f, 9.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(0.75f) + lineTo(3.5f, 4.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + lineTo(5.0f, 6.0f) + horizontalLineToRelative(1.0f) + lineTo(6.0f, 4.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(-0.1f) + close() + } + } + return _batteryCharge!! + } + +private var _batteryCharge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BatteryCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BatteryCheckmark.kt new file mode 100644 index 00000000..b246d696 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BatteryCheckmark.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BatteryCheckmark: ImageVector + get() { + if (_batteryCheckmark != null) { + return _batteryCheckmark!! + } + _batteryCheckmark = fluentIcon(name = "Filled.BatteryCheckmark") { + fluentPath { + moveTo(2.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + horizontalLineToRelative(-4.17f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -6.33f, -8.0f) + curveToRelative(-1.75f, 0.0f, -3.33f, 0.69f, -4.5f, 1.81f) + lineTo(2.0f, 9.0f) + close() + moveTo(12.0f, 16.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(9.85f, 14.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineTo(5.5f, 17.79f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _batteryCheckmark!! + } + +private var _batteryCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BatterySaver.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BatterySaver.kt new file mode 100644 index 00000000..bbedf4fa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BatterySaver.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BatterySaver: ImageVector + get() { + if (_batterySaver != null) { + return _batterySaver!! + } + _batterySaver = fluentIcon(name = "Filled.BatterySaver") { + fluentPath { + moveTo(8.65f, 4.36f) + curveTo(10.2f, 7.21f, 11.0f, 9.51f, 11.0f, 11.08f) + curveToRelative(0.0f, 1.58f, -0.74f, 2.9f, -1.46f, 3.52f) + lineToRelative(-0.2f, 0.14f) + lineToRelative(-0.11f, 0.06f) + arcToRelative(0.45f, 0.45f, 0.0f, false, true, -0.64f, -0.5f) + lineToRelative(0.03f, -0.09f) + curveToRelative(0.61f, -1.51f, 0.9f, -3.0f, 0.88f, -4.46f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 8.0f, 9.73f) + verticalLineToRelative(0.02f) + curveToRelative(0.01f, 0.37f, 0.0f, 0.74f, -0.05f, 1.12f) + lineToRelative(-0.06f, 0.48f) + lineToRelative(-0.04f, 0.23f) + lineToRelative(-0.07f, 0.33f) + lineToRelative(-0.1f, 0.42f) + lineToRelative(-0.05f, 0.15f) + curveToRelative(-0.17f, 0.6f, -0.4f, 1.21f, -0.68f, 1.83f) + arcToRelative(7.1f, 7.1f, 0.0f, false, true, -3.91f, 3.64f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.58f, -1.39f) + curveToRelative(0.97f, -0.4f, 1.74f, -0.94f, 2.33f, -1.62f) + curveToRelative(-1.67f, -0.53f, -2.63f, -1.67f, -2.77f, -3.27f) + curveToRelative(-0.15f, -1.81f, 0.54f, -3.04f, 2.26f, -4.41f) + lineToRelative(0.5f, -0.38f) + lineToRelative(0.35f, -0.27f) + lineToRelative(0.37f, -0.29f) + arcToRelative(8.81f, 8.81f, 0.0f, false, false, 1.87f, -1.98f) + curveToRelative(0.3f, -0.46f, 1.0f, -0.47f, 1.28f, 0.02f) + close() + moveTo(17.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) + verticalLineTo(10.0f) + lineToRelative(1.0f, 0.02f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + verticalLineToRelative(2.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.87f, 0.99f) + horizontalLineTo(20.0f) + verticalLineToRelative(1.0f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 17.18f, 18.0f) + horizontalLineTo(8.24f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.11f, -2.0f) + horizontalLineToRelative(0.82f) + lineToRelative(0.1f, -0.02f) + curveToRelative(0.75f, -0.17f, 2.95f, -1.2f, 2.95f, -4.96f) + curveToRelative(0.0f, -1.22f, -0.3f, -2.57f, -0.9f, -4.06f) + arcToRelative(0.7f, 0.7f, 0.0f, false, true, 0.55f, -0.95f) + horizontalLineTo(17.0f) + close() + } + } + return _batterySaver!! + } + +private var _batterySaver: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BatteryWarning.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BatteryWarning.kt new file mode 100644 index 00000000..1eb20447 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BatteryWarning.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BatteryWarning: ImageVector + get() { + if (_batteryWarning != null) { + return _batteryWarning!! + } + _batteryWarning = fluentIcon(name = "Filled.BatteryWarning") { + fluentPath { + moveTo(8.24f, 11.2f) + curveToRelative(0.24f, 0.13f, 0.43f, 0.32f, 0.56f, 0.56f) + lineToRelative(4.0f, 7.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 11.5f, 21.0f) + lineTo(3.5f, 21.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.3f, -2.25f) + lineToRelative(4.0f, -7.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.05f, -0.55f) + close() + moveTo(7.5f, 18.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + close() + moveTo(17.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + horizontalLineToRelative(-3.47f) + lineToRelative(-3.86f, -6.74f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.34f, 0.0f) + lineToRelative(-2.97f, 5.17f) + arcTo(2.99f, 2.99f, 0.0f, false, true, 2.0f, 15.0f) + lineTo(2.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(7.5f, 13.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(3.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, -0.09f) + verticalLineToRelative(-3.0f) + lineToRelative(-0.01f, -0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.41f) + close() + } + } + return _batteryWarning!! + } + +private var _batteryWarning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Beach.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Beach.kt new file mode 100644 index 00000000..606a697e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Beach.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Beach: ImageVector + get() { + if (_beach != null) { + return _beach!! + } + _beach = fluentIcon(name = "Filled.Beach") { + fluentPath { + moveTo(18.57f, 2.85f) + arcToRelative(6.75f, 6.75f, 0.0f, false, false, -9.22f, 2.47f) + lineToRelative(-0.25f, 0.43f) + curveToRelative(-0.2f, 0.36f, -0.08f, 0.82f, 0.28f, 1.03f) + lineTo(13.9f, 9.4f) + lineToRelative(-2.8f, 4.9f) + arcToRelative(7.76f, 7.76f, 0.0f, false, false, -4.79f, 2.61f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.58f, 1.37f) + curveToRelative(0.24f, 0.73f, 0.73f, 0.95f, 1.12f, 0.96f) + curveToRelative(0.4f, 0.0f, 0.86f, -0.22f, 1.08f, -0.87f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 3.8f, 0.0f) + curveToRelative(0.22f, 0.65f, 0.68f, 0.87f, 1.08f, 0.87f) + reflectiveCurveToRelative(0.88f, -0.23f, 1.12f, -0.96f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.58f, -1.37f) + arcToRelative(7.75f, 7.75f, 0.0f, false, false, -4.84f, -2.61f) + lineToRelative(2.37f, -4.15f) + lineToRelative(4.56f, 2.63f) + curveToRelative(0.36f, 0.2f, 0.81f, 0.08f, 1.02f, -0.28f) + lineToRelative(0.25f, -0.43f) + arcToRelative(6.75f, 6.75f, 0.0f, false, false, -2.47f, -9.22f) + close() + moveTo(6.71f, 18.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.44f, 0.07f) + curveToRelative(-0.21f, 0.89f, -0.6f, 1.36f, -1.04f, 1.63f) + curveToRelative(-0.46f, 0.29f, -1.05f, 0.4f, -1.73f, 0.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + curveToRelative(0.82f, 0.0f, 1.73f, -0.13f, 2.52f, -0.63f) + curveToRelative(0.41f, -0.25f, 0.77f, -0.6f, 1.06f, -1.03f) + arcToRelative(3.81f, 3.81f, 0.0f, false, false, 5.92f, -0.02f) + arcToRelative(3.82f, 3.82f, 0.0f, false, false, 6.0f, -0.08f) + arcToRelative(4.46f, 4.46f, 0.0f, false, false, 3.5f, 1.76f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + curveToRelative(-1.18f, 0.0f, -2.38f, -0.8f, -2.78f, -2.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.43f, -0.01f) + curveToRelative(-0.79f, 2.44f, -3.81f, 2.4f, -4.58f, 0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.42f, 0.0f) + curveToRelative(-0.77f, 2.3f, -3.8f, 2.34f, -4.58f, -0.1f) + close() + } + } + return _beach!! + } + +private var _beach: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Beaker.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Beaker.kt new file mode 100644 index 00000000..250dd3d4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Beaker.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Beaker: ImageVector + get() { + if (_beaker != null) { + return _beaker!! + } + _beaker = fluentIcon(name = "Filled.Beaker") { + fluentPath { + moveTo(9.0f, 4.5f) + verticalLineToRelative(6.24f) + curveToRelative(0.0f, 0.37f, -0.1f, 0.74f, -0.27f, 1.07f) + lineTo(7.53f, 14.0f) + horizontalLineToRelative(8.93f) + lineToRelative(-1.19f, -2.19f) + curveToRelative(-0.18f, -0.33f, -0.27f, -0.7f, -0.27f, -1.07f) + lineTo(15.0f, 4.5f) + horizontalLineToRelative(1.0f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 16.0f, 3.0f) + lineTo(8.0f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.0f) + close() + moveTo(17.27f, 15.5f) + lineTo(6.73f, 15.5f) + lineToRelative(-1.59f, 2.91f) + arcTo(1.75f, 1.75f, 0.0f, false, false, 6.68f, 21.0f) + horizontalLineToRelative(10.64f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 1.54f, -2.59f) + lineToRelative(-1.59f, -2.91f) + close() + } + } + return _beaker!! + } + +private var _beaker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BeakerEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BeakerEdit.kt new file mode 100644 index 00000000..e78071f3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BeakerEdit.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BeakerEdit: ImageVector + get() { + if (_beakerEdit != null) { + return _beakerEdit!! + } + _beakerEdit = fluentIcon(name = "Filled.BeakerEdit") { + fluentPath { + moveTo(7.0f, 3.5f) + verticalLineToRelative(6.24f) + curveToRelative(0.0f, 0.37f, -0.1f, 0.74f, -0.27f, 1.07f) + lineTo(5.53f, 13.0f) + horizontalLineToRelative(8.93f) + lineToRelative(-1.19f, -2.19f) + curveToRelative(-0.18f, -0.33f, -0.27f, -0.7f, -0.27f, -1.07f) + lineTo(13.0f, 3.5f) + horizontalLineToRelative(1.0f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 14.0f, 2.0f) + lineTo(6.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.0f) + close() + moveTo(15.27f, 14.5f) + lineTo(4.73f, 14.5f) + lineToRelative(-1.59f, 2.91f) + arcTo(1.75f, 1.75f, 0.0f, false, false, 4.68f, 20.0f) + horizontalLineToRelative(6.74f) + lineToRelative(0.1f, -0.42f) + curveToRelative(0.16f, -0.65f, 0.5f, -1.24f, 0.97f, -1.72f) + lineToRelative(2.99f, -2.98f) + lineToRelative(-0.2f, -0.38f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _beakerEdit!! + } + +private var _beakerEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Bed.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Bed.kt new file mode 100644 index 00000000..76a2bbf4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Bed.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Bed: ImageVector + get() { + if (_bed != null) { + return _bed!! + } + _bed = fluentIcon(name = "Filled.Bed") { + fluentPath { + moveTo(19.25f, 11.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 13.58f) + verticalLineToRelative(6.67f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineTo(18.0f) + horizontalLineToRelative(-17.0f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-6.5f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.58f, -2.74f) + lineToRelative(0.17f, -0.01f) + horizontalLineToRelative(14.5f) + close() + moveTo(6.75f, 4.0f) + horizontalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 20.0f, 6.58f) + verticalLineTo(10.0f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(-0.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.88f, -0.87f) + lineTo(16.0f, 9.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 0.88f) + verticalLineTo(10.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-0.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.88f, -0.87f) + lineTo(10.0f, 9.0f) + horizontalLineTo(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 0.88f) + verticalLineTo(10.0f) + horizontalLineTo(4.0f) + verticalLineTo(6.75f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.58f, -2.74f) + lineTo(6.75f, 4.0f) + close() + } + } + return _bed!! + } + +private var _bed: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BinFull.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BinFull.kt new file mode 100644 index 00000000..920d6a90 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BinFull.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BinFull: ImageVector + get() { + if (_binFull != null) { + return _binFull!! + } + _binFull = fluentIcon(name = "Filled.BinFull") { + fluentPath { + moveTo(17.16f, 3.38f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.82f, -1.26f) + lineToRelative(-14.0f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.34f, 0.63f) + verticalLineToRelative(7.0f) + curveTo(2.0f, 20.55f, 3.46f, 22.0f, 5.25f, 22.0f) + horizontalLineToRelative(13.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.45f, 3.25f, -3.25f) + verticalLineToRelative(-7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(21.0f, 11.0f) + lineTo(21.0f, 7.75f) + curveTo(21.0f, 6.78f, 20.22f, 6.0f, 19.25f, 6.0f) + horizontalLineToRelative(-3.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(-3.25f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(9.5f, 11.0f) + lineTo(5.3f, 11.0f) + lineToRelative(11.86f, -7.62f) + close() + moveTo(14.5f, 10.0f) + verticalLineToRelative(1.0f) + lineTo(11.0f, 11.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(3.25f) + close() + moveTo(19.5f, 11.0f) + lineTo(16.0f, 11.0f) + lineTo(16.0f, 7.75f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(3.0f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + lineTo(19.5f, 11.0f) + close() + } + } + return _binFull!! + } + +private var _binFull: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Bluetooth.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Bluetooth.kt new file mode 100644 index 00000000..3bdb4c02 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Bluetooth.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Bluetooth: ImageVector + get() { + if (_bluetooth != null) { + return _bluetooth!! + } + _bluetooth = fluentIcon(name = "Filled.Bluetooth") { + fluentPath { + moveTo(11.62f, 2.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.09f, 0.21f) + lineToRelative(5.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.09f, 1.5f) + lineTo(13.6f, 12.0f) + lineToRelative(4.02f, 3.22f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.09f, 1.49f) + lineToRelative(-5.0f, 5.0f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 11.0f, 21.0f) + verticalLineToRelative(-6.92f) + lineToRelative(-3.38f, 2.7f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.24f, -1.56f) + lineTo(10.4f, 12.0f) + lineTo(6.38f, 8.78f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.24f, -1.56f) + lineTo(11.0f, 9.92f) + lineTo(11.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.62f, -0.92f) + close() + moveTo(13.0f, 14.08f) + verticalLineToRelative(4.5f) + lineToRelative(2.5f, -2.5f) + lineToRelative(-2.5f, -2.0f) + close() + moveTo(13.0f, 9.92f) + lineTo(15.5f, 7.92f) + lineTo(13.0f, 5.42f) + verticalLineToRelative(4.5f) + close() + } + } + return _bluetooth!! + } + +private var _bluetooth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BluetoothConnected.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BluetoothConnected.kt new file mode 100644 index 00000000..1817a302 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BluetoothConnected.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BluetoothConnected: ImageVector + get() { + if (_bluetoothConnected != null) { + return _bluetoothConnected!! + } + _bluetoothConnected = fluentIcon(name = "Filled.BluetoothConnected") { + fluentPath { + moveTo(11.62f, 2.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.09f, 0.21f) + lineToRelative(5.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.09f, 1.5f) + lineTo(13.6f, 12.0f) + lineToRelative(4.02f, 3.22f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.09f, 1.49f) + lineToRelative(-5.0f, 5.0f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 11.0f, 21.0f) + verticalLineToRelative(-6.92f) + lineToRelative(-3.38f, 2.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.24f, -1.56f) + lineTo(10.4f, 12.0f) + lineTo(6.38f, 8.78f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.24f, -1.56f) + lineTo(11.0f, 9.92f) + lineTo(11.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.62f, -0.92f) + close() + moveTo(13.0f, 14.08f) + verticalLineToRelative(4.5f) + lineToRelative(2.5f, -2.5f) + lineToRelative(-2.5f, -2.0f) + close() + moveTo(13.0f, 9.92f) + lineTo(15.5f, 7.92f) + lineTo(13.0f, 5.42f) + verticalLineToRelative(4.5f) + close() + moveTo(20.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(5.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + } + } + return _bluetoothConnected!! + } + +private var _bluetoothConnected: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BluetoothDisabled.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BluetoothDisabled.kt new file mode 100644 index 00000000..7ff8456c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BluetoothDisabled.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BluetoothDisabled: ImageVector + get() { + if (_bluetoothDisabled != null) { + return _bluetoothDisabled!! + } + _bluetoothDisabled = fluentIcon(name = "Filled.BluetoothDisabled") { + fluentPath { + moveToRelative(16.68f, 17.74f) + lineToRelative(4.04f, 4.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(8.48f, 8.48f) + lineToRelative(-4.32f, 3.46f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.24f, 1.56f) + lineToRelative(3.38f, -2.7f) + lineTo(11.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.7f, 0.7f) + lineToRelative(3.98f, -3.96f) + close() + moveTo(13.1f, 14.16f) + lineTo(15.26f, 16.32f) + lineTo(13.0f, 18.6f) + verticalLineToRelative(-4.5f) + lineToRelative(0.1f, 0.07f) + close() + moveTo(17.62f, 8.78f) + lineTo(14.48f, 11.3f) + lineTo(13.06f, 9.87f) + lineTo(15.5f, 7.92f) + lineTo(13.0f, 5.42f) + verticalLineToRelative(4.4f) + lineToRelative(-2.0f, -2.0f) + lineTo(11.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.7f, -0.7f) + lineToRelative(5.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, 1.48f) + close() + } + } + return _bluetoothDisabled!! + } + +private var _bluetoothDisabled: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BluetoothSearching.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BluetoothSearching.kt new file mode 100644 index 00000000..e3f3f265 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BluetoothSearching.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BluetoothSearching: ImageVector + get() { + if (_bluetoothSearching != null) { + return _bluetoothSearching!! + } + _bluetoothSearching = fluentIcon(name = "Filled.BluetoothSearching") { + fluentPath { + moveTo(11.62f, 2.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.09f, 0.21f) + lineToRelative(5.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.09f, 1.5f) + lineTo(13.6f, 12.0f) + lineToRelative(4.02f, 3.22f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.09f, 1.49f) + lineToRelative(-5.0f, 5.0f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 11.0f, 21.0f) + verticalLineToRelative(-6.92f) + lineToRelative(-3.38f, 2.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.24f, -1.56f) + lineTo(10.4f, 12.0f) + lineTo(6.38f, 8.78f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.24f, -1.56f) + lineTo(11.0f, 9.92f) + lineTo(11.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.62f, -0.92f) + close() + moveTo(13.0f, 14.08f) + verticalLineToRelative(4.5f) + lineToRelative(2.5f, -2.5f) + lineToRelative(-2.5f, -2.0f) + close() + moveTo(13.0f, 9.92f) + lineTo(15.5f, 7.92f) + lineTo(13.0f, 5.42f) + verticalLineToRelative(4.5f) + close() + moveTo(18.5f, 9.13f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.37f, 0.37f) + curveToRelative(0.44f, 0.76f, 0.63f, 1.63f, 0.63f, 2.5f) + curveToRelative(0.0f, 0.87f, -0.2f, 1.74f, -0.63f, 2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.74f, -1.0f) + curveToRelative(0.24f, -0.41f, 0.37f, -0.92f, 0.37f, -1.5f) + reflectiveCurveToRelative(-0.13f, -1.09f, -0.37f, -1.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.37f, -1.37f) + close() + moveTo(21.79f, 7.05f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.58f, 1.24f) + arcToRelative(5.97f, 5.97f, 0.0f, false, true, 0.0f, 7.42f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.58f, 1.24f) + arcToRelative(7.97f, 7.97f, 0.0f, false, false, 0.0f, -9.9f) + close() + } + } + return _bluetoothSearching!! + } + +private var _bluetoothSearching: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Blur.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Blur.kt new file mode 100644 index 00000000..3ab838ec --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Blur.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Blur: ImageVector + get() { + if (_blur != null) { + return _blur!! + } + _blur = fluentIcon(name = "Filled.Blur") { + fluentPath { + moveTo(3.0f, 12.0f) + arcToRelative(9.0f, 9.0f, 0.0f, false, true, 13.98f, -7.5f) + horizontalLineTo(12.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(6.23f) + curveToRelative(0.47f, 0.45f, 0.89f, 0.95f, 1.25f, 1.5f) + horizontalLineTo(12.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(8.06f) + curveToRelative(0.24f, 0.48f, 0.44f, 0.98f, 0.59f, 1.5f) + horizontalLineTo(12.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(8.88f) + curveToRelative(0.08f, 0.49f, 0.12f, 0.99f, 0.12f, 1.5f) + horizontalLineToRelative(-9.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(8.95f) + arcToRelative(8.96f, 8.96f, 0.0f, false, true, -0.3f, 1.5f) + horizontalLineTo(12.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(8.3f) + curveToRelative(-0.23f, 0.53f, -0.5f, 1.03f, -0.82f, 1.5f) + horizontalLineTo(12.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(6.7f) + arcTo(9.0f, 9.0f, 0.0f, false, true, 3.0f, 12.0f) + close() + } + } + return _blur!! + } + +private var _blur: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Board.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Board.kt new file mode 100644 index 00000000..52766744 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Board.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Board: ImageVector + get() { + if (_board != null) { + return _board!! + } + _board = fluentIcon(name = "Filled.Board") { + fluentPath { + moveTo(11.5f, 9.5f) + lineTo(11.5f, 21.0f) + lineTo(6.25f, 21.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.06f) + lineTo(3.0f, 17.75f) + lineTo(3.0f, 9.5f) + horizontalLineToRelative(8.5f) + close() + moveTo(13.0f, 15.5f) + horizontalLineToRelative(8.5f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 1.8f, -1.45f, 3.25f, -3.25f, 3.25f) + lineTo(13.0f, 21.0f) + verticalLineToRelative(-5.5f) + close() + moveTo(18.25f, 2.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.25f, 3.06f) + lineTo(21.5f, 14.0f) + lineTo(13.0f, 14.0f) + lineTo(13.0f, 2.5f) + horizontalLineToRelative(5.25f) + close() + moveTo(11.5f, 2.5f) + lineTo(11.5f, 8.0f) + lineTo(3.0f, 8.0f) + lineTo(3.0f, 5.75f) + curveTo(3.0f, 3.95f, 4.46f, 2.5f, 6.25f, 2.5f) + horizontalLineToRelative(5.25f) + close() + } + } + return _board!! + } + +private var _board: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoardHeart.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoardHeart.kt new file mode 100644 index 00000000..9d0f3528 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoardHeart.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BoardHeart: ImageVector + get() { + if (_boardHeart != null) { + return _boardHeart!! + } + _boardHeart = fluentIcon(name = "Filled.BoardHeart") { + fluentPath { + moveTo(11.5f, 21.0f) + verticalLineToRelative(-1.93f) + lineToRelative(-0.2f, -0.2f) + arcToRelative(4.7f, 4.7f, 0.0f, false, true, 0.2f, -6.7f) + lineTo(11.5f, 9.5f) + lineTo(3.0f, 9.5f) + verticalLineToRelative(8.44f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 6.26f, 21.0f) + horizontalLineToRelative(5.25f) + close() + moveTo(21.5f, 5.75f) + verticalLineToRelative(5.73f) + arcToRelative(4.4f, 4.4f, 0.0f, false, false, -4.5f, 0.3f) + arcToRelative(4.4f, 4.4f, 0.0f, false, false, -4.0f, -0.52f) + lineTo(13.0f, 2.5f) + horizontalLineToRelative(5.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.25f, 3.06f) + verticalLineToRelative(0.19f) + close() + moveTo(11.5f, 17.48f) + arcToRelative(3.73f, 3.73f, 0.0f, false, true, 0.52f, -4.42f) + arcToRelative(3.4f, 3.4f, 0.0f, false, true, 4.94f, 0.0f) + lineToRelative(0.04f, 0.04f) + lineToRelative(0.04f, -0.04f) + lineToRelative(0.2f, -0.2f) + arcToRelative(3.4f, 3.4f, 0.0f, false, true, 4.74f, 0.2f) + arcToRelative(3.7f, 3.7f, 0.0f, false, true, 0.0f, 5.11f) + lineToRelative(-4.45f, 4.6f) + arcToRelative(0.74f, 0.74f, 0.0f, false, true, -1.06f, 0.0f) + lineToRelative(-4.45f, -4.6f) + curveToRelative(-0.2f, -0.21f, -0.38f, -0.44f, -0.52f, -0.69f) + close() + moveTo(11.5f, 8.0f) + lineTo(11.5f, 2.5f) + lineTo(6.25f, 2.5f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 5.75f) + lineTo(3.0f, 8.0f) + horizontalLineToRelative(8.5f) + close() + } + } + return _boardHeart!! + } + +private var _boardHeart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoardSplit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoardSplit.kt new file mode 100644 index 00000000..bfd15a67 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoardSplit.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BoardSplit: ImageVector + get() { + if (_boardSplit != null) { + return _boardSplit!! + } + _boardSplit = fluentIcon(name = "Filled.BoardSplit") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + lineTo(3.0f, 11.0f) + horizontalLineToRelative(11.0f) + lineTo(14.0f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(3.0f, 17.75f) + lineTo(3.0f, 12.5f) + horizontalLineToRelative(11.0f) + lineTo(14.0f, 21.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + close() + moveTo(15.5f, 16.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(2.25f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 16.0f) + horizontalLineToRelative(-5.5f) + close() + moveTo(21.0f, 14.5f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(-5.5f) + verticalLineToRelative(5.0f) + lineTo(21.0f, 14.5f) + close() + moveTo(21.0f, 8.0f) + horizontalLineToRelative(-5.5f) + lineTo(15.5f, 3.0f) + horizontalLineToRelative(2.25f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + lineTo(21.0f, 8.0f) + close() + } + } + return _boardSplit!! + } + +private var _boardSplit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Book.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Book.kt new file mode 100644 index 00000000..e8169417 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Book.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Book: ImageVector + get() { + if (_book != null) { + return _book!! + } + _book = fluentIcon(name = "Filled.Book") { + fluentPath { + moveTo(6.5f, 2.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) + verticalLineToRelative(15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + horizontalLineToRelative(14.25f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineTo(4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) + horizontalLineTo(6.5f) + close() + moveTo(8.0f, 5.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineTo(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineTo(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + } + } + return _book!! + } + +private var _book: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookAdd.kt new file mode 100644 index 00000000..b8007f2e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookAdd.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BookAdd: ImageVector + get() { + if (_bookAdd != null) { + return _bookAdd!! + } + _bookAdd = fluentIcon(name = "Filled.BookAdd") { + fluentPath { + moveTo(5.5f, 2.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 3.0f, 4.5f) + verticalLineToRelative(15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 5.5f, 22.0f) + horizontalLineToRelative(7.31f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, -1.5f) + lineTo(5.5f, 20.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + horizontalLineToRelative(6.81f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, 8.19f, -8.19f) + lineTo(19.5f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 17.0f, 2.0f) + lineTo(5.5f, 2.0f) + close() + moveTo(7.0f, 5.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + lineTo(7.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(6.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _bookAdd!! + } + +private var _bookAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookArrowClockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookArrowClockwise.kt new file mode 100644 index 00000000..c34db2db --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookArrowClockwise.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BookArrowClockwise: ImageVector + get() { + if (_bookArrowClockwise != null) { + return _bookArrowClockwise!! + } + _bookArrowClockwise = fluentIcon(name = "Filled.BookArrowClockwise") { + fluentPath { + moveTo(22.0f, 4.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineTo(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.33f) + lineToRelative(-0.02f, -0.01f) + arcTo(4.5f, 4.5f, 0.0f, true, false, 21.5f, 7.0f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 23.0f, 7.0f) + arcToRelative(6.0f, 6.0f, 0.0f, true, true, -2.5f, -4.87f) + verticalLineTo(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.75f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.75f) + close() + moveTo(12.1f, 2.0f) + horizontalLineTo(6.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) + verticalLineToRelative(15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + horizontalLineToRelative(14.25f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-5.69f) + arcTo(7.0f, 7.0f, 0.0f, false, true, 12.1f, 2.0f) + close() + } + } + return _bookArrowClockwise!! + } + +private var _bookArrowClockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookClock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookClock.kt new file mode 100644 index 00000000..76a163a9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookClock.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BookClock: ImageVector + get() { + if (_bookClock != null) { + return _bookClock!! + } + _bookClock = fluentIcon(name = "Filled.BookClock") { + fluentPath { + moveTo(11.75f, 11.38f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.69f, 0.62f) + horizontalLineToRelative(1.31f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) + horizontalLineTo(13.0f) + verticalLineTo(9.12f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, -1.25f, 0.0f) + verticalLineToRelative(2.26f) + close() + moveTo(4.0f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) + horizontalLineTo(18.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) + verticalLineToRelative(14.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineTo(5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineTo(6.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) + verticalLineToRelative(-15.0f) + close() + moveTo(12.38f, 6.0f) + arcToRelative(4.75f, 4.75f, 0.0f, true, false, 0.0f, 9.5f) + arcToRelative(4.75f, 4.75f, 0.0f, false, false, 0.0f, -9.5f) + close() + } + } + return _bookClock!! + } + +private var _bookClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookCoins.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookCoins.kt new file mode 100644 index 00000000..b8337aad --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookCoins.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BookCoins: ImageVector + get() { + if (_bookCoins != null) { + return _bookCoins!! + } + _bookCoins = fluentIcon(name = "Filled.BookCoins") { + fluentPath { + moveTo(4.0f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) + lineTo(18.0f, 2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) + verticalLineToRelative(14.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(5.5f, 19.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(6.5f, 22.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) + verticalLineToRelative(-15.0f) + close() + moveTo(10.2f, 7.46f) + curveTo(9.62f, 7.74f, 9.0f, 8.24f, 9.0f, 9.0f) + reflectiveCurveToRelative(0.62f, 1.26f, 1.2f, 1.54f) + curveToRelative(0.62f, 0.3f, 1.43f, 0.46f, 2.3f, 0.46f) + curveToRelative(0.87f, 0.0f, 1.68f, -0.17f, 2.3f, -0.46f) + curveToRelative(0.58f, -0.28f, 1.2f, -0.78f, 1.2f, -1.54f) + reflectiveCurveToRelative(-0.62f, -1.26f, -1.2f, -1.54f) + arcTo(5.46f, 5.46f, 0.0f, false, false, 12.5f, 7.0f) + curveToRelative(-0.87f, 0.0f, -1.68f, 0.17f, -2.3f, 0.46f) + close() + moveTo(16.0f, 10.9f) + arcTo(5.58f, 5.58f, 0.0f, false, true, 12.5f, 12.0f) + arcTo(5.58f, 5.58f, 0.0f, false, true, 9.0f, 10.89f) + lineTo(9.0f, 11.0f) + curveToRelative(0.0f, 1.1f, 1.57f, 2.0f, 3.5f, 2.0f) + reflectiveCurveToRelative(3.5f, -0.9f, 3.5f, -2.0f) + verticalLineToRelative(-0.11f) + close() + moveTo(12.5f, 14.0f) + arcTo(5.58f, 5.58f, 0.0f, false, true, 9.0f, 12.89f) + lineTo(9.0f, 13.0f) + curveToRelative(0.0f, 1.1f, 1.57f, 2.0f, 3.5f, 2.0f) + reflectiveCurveToRelative(3.5f, -0.9f, 3.5f, -2.0f) + verticalLineToRelative(-0.11f) + arcTo(5.58f, 5.58f, 0.0f, false, true, 12.5f, 14.0f) + close() + } + } + return _bookCoins!! + } + +private var _bookCoins: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookCompass.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookCompass.kt new file mode 100644 index 00000000..121eba01 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookCompass.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BookCompass: ImageVector + get() { + if (_bookCompass != null) { + return _bookCompass!! + } + _bookCompass = fluentIcon(name = "Filled.BookCompass") { + fluentPath { + moveTo(11.0f, 10.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) + close() + moveTo(4.0f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) + lineTo(18.0f, 2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) + verticalLineToRelative(14.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(5.5f, 19.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(6.5f, 22.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) + verticalLineToRelative(-15.0f) + close() + moveTo(13.0f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.6f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 10.35f, 12.0f) + lineToRelative(-1.3f, 3.23f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.4f, 0.56f) + lineToRelative(1.23f, -3.09f) + arcToRelative(2.76f, 2.76f, 0.0f, false, false, 1.14f, 0.0f) + lineToRelative(1.23f, 3.09f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.4f, -0.56f) + lineTo(14.15f, 12.0f) + arcTo(2.74f, 2.74f, 0.0f, false, false, 13.0f, 7.35f) + verticalLineToRelative(-1.6f) + close() + } + } + return _bookCompass!! + } + +private var _bookCompass: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookContacts.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookContacts.kt new file mode 100644 index 00000000..2e9fec1f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookContacts.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BookContacts: ImageVector + get() { + if (_bookContacts != null) { + return _bookContacts!! + } + _bookContacts = fluentIcon(name = "Filled.BookContacts") { + fluentPath { + moveTo(6.5f, 2.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) + verticalLineToRelative(15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(6.5f, 20.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + horizontalLineToRelative(14.25f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(20.5f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) + lineTo(6.5f, 2.0f) + close() + moveTo(15.5f, 12.25f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 1.0f, -1.38f, 1.75f, -3.25f, 1.75f) + reflectiveCurveTo(9.0f, 13.75f, 9.0f, 12.75f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(14.0f, 8.75f) + arcToRelative(1.75f, 1.75f, 0.0f, true, true, -3.5f, 0.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 3.5f, 0.0f) + close() + } + } + return _bookContacts!! + } + +private var _bookContacts: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookDatabase.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookDatabase.kt new file mode 100644 index 00000000..4edabe00 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookDatabase.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BookDatabase: ImageVector + get() { + if (_bookDatabase != null) { + return _bookDatabase!! + } + _bookDatabase = fluentIcon(name = "Filled.BookDatabase") { + fluentPath { + moveTo(10.56f, 8.42f) + curveToRelative(-0.5f, 0.27f, -0.56f, 0.5f, -0.56f, 0.58f) + curveToRelative(0.0f, 0.08f, 0.07f, 0.31f, 0.56f, 0.58f) + curveToRelative(0.46f, 0.24f, 1.14f, 0.42f, 1.94f, 0.42f) + reflectiveCurveToRelative(1.48f, -0.18f, 1.94f, -0.42f) + curveToRelative(0.5f, -0.27f, 0.56f, -0.5f, 0.56f, -0.58f) + curveToRelative(0.0f, -0.08f, -0.07f, -0.31f, -0.56f, -0.58f) + arcTo(4.21f, 4.21f, 0.0f, false, false, 12.5f, 8.0f) + curveToRelative(-0.8f, 0.0f, -1.48f, 0.18f, -1.94f, 0.42f) + close() + moveTo(15.0f, 13.0f) + verticalLineToRelative(-2.02f) + curveToRelative(-0.7f, 0.33f, -1.57f, 0.52f, -2.5f, 0.52f) + curveToRelative(-0.93f, 0.0f, -1.8f, -0.19f, -2.5f, -0.52f) + lineTo(10.0f, 13.0f) + curveToRelative(0.0f, 0.08f, 0.07f, 0.31f, 0.56f, 0.58f) + curveToRelative(0.46f, 0.24f, 1.14f, 0.42f, 1.94f, 0.42f) + reflectiveCurveToRelative(1.48f, -0.18f, 1.94f, -0.42f) + curveToRelative(0.5f, -0.27f, 0.56f, -0.5f, 0.56f, -0.58f) + close() + moveTo(4.0f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) + lineTo(18.0f, 2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) + verticalLineToRelative(14.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(5.5f, 19.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(6.5f, 22.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) + verticalLineToRelative(-15.0f) + close() + moveTo(9.85f, 7.1f) + curveToRelative(-0.7f, 0.37f, -1.35f, 1.0f, -1.35f, 1.9f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.9f, 0.66f, 1.53f, 1.35f, 1.9f) + curveToRelative(0.71f, 0.38f, 1.65f, 0.6f, 2.65f, 0.6f) + reflectiveCurveToRelative(1.94f, -0.22f, 2.65f, -0.6f) + curveToRelative(0.7f, -0.37f, 1.35f, -1.0f, 1.35f, -1.9f) + lineTo(16.5f, 9.0f) + curveToRelative(0.0f, -0.9f, -0.66f, -1.53f, -1.35f, -1.9f) + arcToRelative(5.7f, 5.7f, 0.0f, false, false, -2.65f, -0.6f) + curveToRelative(-1.0f, 0.0f, -1.94f, 0.22f, -2.65f, 0.6f) + close() + } + } + return _bookDatabase!! + } + +private var _bookDatabase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookExclamationMark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookExclamationMark.kt new file mode 100644 index 00000000..1757a8d2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookExclamationMark.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BookExclamationMark: ImageVector + get() { + if (_bookExclamationMark != null) { + return _bookExclamationMark!! + } + _bookExclamationMark = fluentIcon(name = "Filled.BookExclamationMark") { + fluentPath { + moveTo(4.0f, 4.5f) + verticalLineToRelative(15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(6.5f, 20.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + horizontalLineToRelative(14.25f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(20.5f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) + lineTo(6.5f, 2.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) + close() + moveTo(11.5f, 11.75f) + verticalLineToRelative(-5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(13.25f, 14.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + } + } + return _bookExclamationMark!! + } + +private var _bookExclamationMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookGlobe.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookGlobe.kt new file mode 100644 index 00000000..4ef986c1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookGlobe.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BookGlobe: ImageVector + get() { + if (_bookGlobe != null) { + return _bookGlobe!! + } + _bookGlobe = fluentIcon(name = "Filled.BookGlobe") { + fluentPath { + moveTo(4.0f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) + lineTo(18.0f, 2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) + verticalLineToRelative(14.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(5.5f, 19.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(6.5f, 22.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) + verticalLineToRelative(-15.0f) + close() + moveTo(10.55f, 6.37f) + arcToRelative(4.75f, 4.75f, 0.0f, false, false, -2.9f, 3.88f) + horizontalLineToRelative(2.1f) + curveToRelative(0.05f, -1.25f, 0.24f, -2.4f, 0.55f, -3.28f) + lineToRelative(0.25f, -0.6f) + close() + moveTo(13.89f, 6.25f) + curveToRelative(0.12f, 0.22f, 0.22f, 0.46f, 0.3f, 0.72f) + curveToRelative(0.32f, 0.88f, 0.51f, 2.03f, 0.55f, 3.28f) + horizontalLineToRelative(2.36f) + arcToRelative(4.75f, 4.75f, 0.0f, false, false, -3.2f, -4.0f) + close() + moveTo(13.24f, 10.25f) + arcToRelative(9.84f, 9.84f, 0.0f, false, false, -0.46f, -2.79f) + curveToRelative(-0.14f, -0.4f, -0.3f, -0.68f, -0.43f, -0.84f) + arcToRelative(0.68f, 0.68f, 0.0f, false, false, -0.1f, -0.1f) + arcToRelative(0.68f, 0.68f, 0.0f, false, false, -0.1f, 0.1f) + curveToRelative(-0.14f, 0.16f, -0.29f, 0.44f, -0.43f, 0.84f) + curveToRelative(-0.25f, 0.7f, -0.42f, 1.68f, -0.46f, 2.79f) + horizontalLineToRelative(1.98f) + close() + moveTo(11.29f, 11.75f) + curveToRelative(0.07f, 0.9f, 0.22f, 1.7f, 0.43f, 2.29f) + curveToRelative(0.14f, 0.4f, 0.3f, 0.68f, 0.43f, 0.84f) + lineToRelative(0.1f, 0.1f) + arcToRelative(0.68f, 0.68f, 0.0f, false, false, 0.1f, -0.1f) + curveToRelative(0.14f, -0.16f, 0.29f, -0.44f, 0.43f, -0.84f) + curveToRelative(0.2f, -0.6f, 0.37f, -1.39f, 0.43f, -2.29f) + lineTo(11.3f, 11.75f) + close() + moveTo(9.79f, 11.75f) + lineTo(7.72f, 11.75f) + arcToRelative(4.76f, 4.76f, 0.0f, false, false, 2.83f, 3.4f) + curveToRelative(-0.1f, -0.2f, -0.18f, -0.4f, -0.26f, -0.62f) + curveToRelative(-0.26f, -0.76f, -0.45f, -1.73f, -0.52f, -2.78f) + close() + moveTo(13.89f, 15.26f) + arcToRelative(4.76f, 4.76f, 0.0f, false, false, 3.13f, -3.51f) + horizontalLineToRelative(-2.3f) + arcToRelative(10.82f, 10.82f, 0.0f, false, true, -0.52f, 2.78f) + curveToRelative(-0.1f, 0.26f, -0.2f, 0.5f, -0.32f, 0.73f) + close() + moveTo(12.29f, 15.0f) + close() + } + } + return _bookGlobe!! + } + +private var _bookGlobe: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookInformation.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookInformation.kt new file mode 100644 index 00000000..6ac627e3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookInformation.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BookInformation: ImageVector + get() { + if (_bookInformation != null) { + return _bookInformation!! + } + _bookInformation = fluentIcon(name = "Filled.BookInformation") { + fluentPath { + moveTo(4.0f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) + lineTo(18.0f, 2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) + verticalLineToRelative(14.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(5.5f, 19.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(6.5f, 22.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) + verticalLineToRelative(-15.0f) + close() + moveTo(12.25f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(11.5f, 9.75f) + verticalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + close() + } + } + return _bookInformation!! + } + +private var _bookInformation: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookLetter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookLetter.kt new file mode 100644 index 00000000..7cc70475 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookLetter.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BookLetter: ImageVector + get() { + if (_bookLetter != null) { + return _bookLetter!! + } + _bookLetter = fluentIcon(name = "Filled.BookLetter") { + fluentPath { + moveToRelative(12.5f, 8.74f) + lineToRelative(1.12f, 2.76f) + horizontalLineToRelative(-2.24f) + lineToRelative(1.12f, -2.76f) + close() + moveTo(4.0f, 4.5f) + verticalLineToRelative(15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + horizontalLineToRelative(14.25f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineTo(4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) + horizontalLineTo(6.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) + close() + moveTo(12.5f, 6.0f) + curveToRelative(0.3f, 0.0f, 0.58f, 0.18f, 0.7f, 0.47f) + lineToRelative(3.24f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.38f, 0.56f) + lineTo(14.23f, 13.0f) + horizontalLineToRelative(-3.46f) + lineToRelative(-0.83f, 2.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.38f, -0.56f) + lineToRelative(3.25f, -8.0f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 12.5f, 6.0f) + close() + } + } + return _bookLetter!! + } + +private var _bookLetter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookNumber.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookNumber.kt new file mode 100644 index 00000000..e6da8dc0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookNumber.kt @@ -0,0 +1,91 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BookNumber: ImageVector + get() { + if (_bookNumber != null) { + return _bookNumber!! + } + _bookNumber = fluentIcon(name = "Filled.BookNumber") { + fluentPath { + moveTo(11.98f, 9.98f) + horizontalLineToRelative(1.49f) + lineToRelative(-0.36f, 1.59f) + horizontalLineToRelative(-1.52f) + lineToRelative(0.39f, -1.59f) + close() + moveTo(4.0f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) + lineTo(18.0f, 2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) + verticalLineToRelative(14.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(5.5f, 19.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(6.5f, 22.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) + verticalLineToRelative(-15.0f) + close() + moveTo(11.02f, 7.57f) + lineTo(10.8f, 8.48f) + lineTo(9.63f, 8.48f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + verticalLineToRelative(0.1f) + curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) + horizontalLineToRelative(0.7f) + lineToRelative(-0.38f, 1.59f) + horizontalLineToRelative(-0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + verticalLineToRelative(0.1f) + curveToRelative(0.06f, 0.36f, 0.37f, 0.65f, 0.75f, 0.65f) + horizontalLineToRelative(0.43f) + lineToRelative(-0.12f, 0.5f) + lineToRelative(-0.02f, 0.1f) + curveToRelative(-0.04f, 0.37f, 0.2f, 0.72f, 0.57f, 0.81f) + lineToRelative(0.1f, 0.02f) + curveToRelative(0.36f, 0.04f, 0.71f, -0.2f, 0.8f, -0.57f) + lineToRelative(0.21f, -0.86f) + horizontalLineToRelative(1.54f) + lineToRelative(-0.12f, 0.51f) + lineToRelative(-0.01f, 0.1f) + curveToRelative(-0.04f, 0.37f, 0.2f, 0.72f, 0.58f, 0.8f) + lineToRelative(0.1f, 0.02f) + curveToRelative(0.37f, 0.03f, 0.71f, -0.21f, 0.8f, -0.58f) + lineToRelative(0.2f, -0.85f) + horizontalLineToRelative(0.93f) + lineToRelative(0.1f, -0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.74f) + verticalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) + horizontalLineToRelative(-0.6f) + lineToRelative(0.37f, -1.59f) + horizontalLineToRelative(0.82f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + verticalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) + horizontalLineToRelative(-0.38f) + lineToRelative(0.13f, -0.56f) + lineToRelative(0.02f, -0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.58f, -0.8f) + lineToRelative(-0.1f, -0.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.8f, 0.58f) + lineToRelative(-0.2f, 0.9f) + horizontalLineToRelative(-1.48f) + lineToRelative(0.14f, -0.55f) + lineToRelative(0.02f, -0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.48f, -0.26f) + close() + } + } + return _bookNumber!! + } + +private var _bookNumber: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookOpen.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookOpen.kt new file mode 100644 index 00000000..6fd9ed92 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookOpen.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BookOpen: ImageVector + get() { + if (_bookOpen != null) { + return _bookOpen!! + } + _bookOpen = fluentIcon(name = "Filled.BookOpen") { + fluentPath { + moveTo(4.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(12.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + curveToRelative(0.77f, 0.0f, 1.47f, -0.29f, 2.0f, -0.76f) + curveToRelative(0.53f, 0.47f, 1.23f, 0.76f, 2.0f, 0.76f) + horizontalLineToRelative(6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(22.0f, 6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + horizontalLineToRelative(-6.0f) + curveToRelative(-0.77f, 0.0f, -1.47f, 0.29f, -2.0f, 0.76f) + arcTo(2.99f, 2.99f, 0.0f, false, false, 10.0f, 4.0f) + lineTo(4.0f, 4.0f) + close() + moveTo(11.0f, 7.0f) + verticalLineToRelative(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + lineTo(4.0f, 18.0f) + lineTo(4.0f, 6.0f) + horizontalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + close() + moveTo(13.0f, 17.0f) + lineTo(13.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(12.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + } + } + return _bookOpen!! + } + +private var _bookOpen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookOpenGlobe.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookOpenGlobe.kt new file mode 100644 index 00000000..f12b2414 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookOpenGlobe.kt @@ -0,0 +1,103 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BookOpenGlobe: ImageVector + get() { + if (_bookOpenGlobe != null) { + return _bookOpenGlobe!! + } + _bookOpenGlobe = fluentIcon(name = "Filled.BookOpenGlobe") { + fluentPath { + moveTo(4.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(12.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + curveToRelative(0.5f, 0.0f, 0.96f, -0.12f, 1.37f, -0.33f) + arcTo(6.49f, 6.49f, 0.0f, false, true, 13.0f, 12.8f) + lineTo(13.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(5.5f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, 2.0f, 1.31f) + lineTo(22.0f, 6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + horizontalLineToRelative(-6.0f) + curveToRelative(-0.77f, 0.0f, -1.47f, 0.29f, -2.0f, 0.76f) + arcTo(2.99f, 2.99f, 0.0f, false, false, 10.0f, 4.0f) + lineTo(4.0f, 4.0f) + close() + moveTo(11.0f, 7.0f) + verticalLineToRelative(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + lineTo(4.0f, 18.0f) + lineTo(4.0f, 6.0f) + horizontalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + close() + } + fluentPath { + moveTo(16.0f, 17.0f) + curveToRelative(0.05f, -1.41f, 0.25f, -2.67f, 0.56f, -3.58f) + curveToRelative(0.17f, -0.52f, 0.36f, -0.9f, 0.55f, -1.14f) + curveToRelative(0.2f, -0.25f, 0.33f, -0.28f, 0.39f, -0.28f) + reflectiveCurveToRelative(0.2f, 0.03f, 0.39f, 0.28f) + curveToRelative(0.19f, 0.24f, 0.38f, 0.62f, 0.55f, 1.14f) + curveToRelative(0.3f, 0.91f, 0.51f, 2.17f, 0.55f, 3.58f) + horizontalLineToRelative(-2.98f) + close() + } + fluentPath { + moveTo(15.61f, 13.1f) + curveToRelative(0.1f, -0.32f, 0.23f, -0.62f, 0.37f, -0.89f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 12.02f, 17.0f) + horizontalLineToRelative(2.99f) + curveToRelative(0.04f, -1.5f, 0.26f, -2.87f, 0.6f, -3.9f) + close() + } + fluentPath { + moveTo(19.39f, 13.1f) + curveToRelative(-0.1f, -0.32f, -0.23f, -0.62f, -0.37f, -0.89f) + arcTo(5.5f, 5.5f, 0.0f, false, true, 22.98f, 17.0f) + horizontalLineToRelative(-2.99f) + curveToRelative(-0.04f, -1.5f, -0.26f, -2.87f, -0.6f, -3.9f) + close() + } + fluentPath { + moveTo(20.0f, 18.0f) + horizontalLineToRelative(2.98f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, -3.96f, 4.79f) + curveToRelative(0.14f, -0.27f, 0.26f, -0.57f, 0.37f, -0.89f) + curveToRelative(0.34f, -1.03f, 0.56f, -2.4f, 0.6f, -3.9f) + close() + } + fluentPath { + moveTo(17.89f, 22.72f) + curveToRelative(-0.2f, 0.25f, -0.33f, 0.28f, -0.39f, 0.28f) + reflectiveCurveToRelative(-0.2f, -0.03f, -0.39f, -0.28f) + arcToRelative(3.84f, 3.84f, 0.0f, false, true, -0.55f, -1.14f) + curveToRelative(-0.3f, -0.91f, -0.51f, -2.17f, -0.55f, -3.58f) + horizontalLineToRelative(2.98f) + arcToRelative(12.91f, 12.91f, 0.0f, false, true, -0.55f, 3.58f) + curveToRelative(-0.17f, 0.52f, -0.36f, 0.9f, -0.55f, 1.14f) + close() + } + fluentPath { + moveTo(12.02f, 18.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 3.96f, 4.79f) + arcToRelative(6.13f, 6.13f, 0.0f, false, true, -0.37f, -0.89f) + curveToRelative(-0.34f, -1.03f, -0.56f, -2.4f, -0.6f, -3.9f) + horizontalLineToRelative(-2.99f) + close() + } + } + return _bookOpenGlobe!! + } + +private var _bookOpenGlobe: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookOpenMicrophone.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookOpenMicrophone.kt new file mode 100644 index 00000000..d4a1ab4a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookOpenMicrophone.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BookOpenMicrophone: ImageVector + get() { + if (_bookOpenMicrophone != null) { + return _bookOpenMicrophone!! + } + _bookOpenMicrophone = fluentIcon(name = "Filled.BookOpenMicrophone") { + fluentPath { + moveTo(4.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(12.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + curveToRelative(0.77f, 0.0f, 1.47f, -0.29f, 2.0f, -0.76f) + curveToRelative(0.47f, 0.42f, 1.08f, 0.7f, 1.75f, 0.75f) + arcTo(4.73f, 4.73f, 0.0f, false, true, 13.0f, 17.5f) + curveToRelative(0.0f, -0.1f, 0.0f, -0.19f, 0.03f, -0.28f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 13.0f, 17.0f) + lineTo(13.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(5.33f) + arcToRelative(3.53f, 3.53f, 0.0f, false, true, 2.0f, 3.17f) + lineTo(22.0f, 6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + horizontalLineToRelative(-6.0f) + curveToRelative(-0.77f, 0.0f, -1.47f, 0.29f, -2.0f, 0.76f) + arcTo(2.99f, 2.99f, 0.0f, false, false, 10.0f, 4.0f) + lineTo(4.0f, 4.0f) + close() + moveTo(11.0f, 7.0f) + verticalLineToRelative(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + lineTo(4.0f, 18.0f) + lineTo(4.0f, 6.0f) + horizontalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + close() + moveTo(22.0f, 17.5f) + curveToRelative(0.0f, 1.01f, -0.52f, 1.85f, -1.34f, 2.39f) + curveToRelative(-0.6f, 0.39f, -1.34f, 0.61f, -2.16f, 0.61f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -1.98f, -0.5f) + curveToRelative(-0.3f, -0.17f, -0.58f, -0.4f, -0.8f, -0.64f) + arcTo(2.8f, 2.8f, 0.0f, false, true, 15.0f, 17.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + arcToRelative(3.43f, 3.43f, 0.0f, false, false, 0.28f, 1.35f) + curveToRelative(0.17f, 0.42f, 0.42f, 0.8f, 0.74f, 1.15f) + arcTo(4.77f, 4.77f, 0.0f, false, false, 18.0f, 21.47f) + verticalLineToRelative(1.03f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-1.03f) + curveToRelative(2.25f, -0.25f, 4.0f, -1.97f, 4.0f, -3.97f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + close() + moveTo(16.5f, 18.5f) + arcTo(2.58f, 2.58f, 0.0f, false, true, 16.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + lineTo(21.0f, 17.0f) + curveToRelative(0.0f, 1.25f, -1.0f, 2.5f, -2.5f, 2.5f) + curveToRelative(-0.86f, 0.0f, -1.56f, -0.41f, -2.0f, -1.0f) + close() + } + } + return _bookOpenMicrophone!! + } + +private var _bookOpenMicrophone: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookPulse.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookPulse.kt new file mode 100644 index 00000000..cabc0f38 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookPulse.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BookPulse: ImageVector + get() { + if (_bookPulse != null) { + return _bookPulse!! + } + _bookPulse = fluentIcon(name = "Filled.BookPulse") { + fluentPath { + moveTo(4.0f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) + lineTo(18.0f, 2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) + verticalLineToRelative(14.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(5.5f, 19.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(6.5f, 22.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) + verticalLineToRelative(-15.0f) + close() + moveTo(11.7f, 7.46f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.37f, -0.05f) + lineTo(8.79f, 10.5f) + lineTo(7.75f, 10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.5f) + curveToRelative(0.28f, 0.0f, 0.54f, -0.16f, 0.67f, -0.41f) + lineToRelative(1.02f, -2.05f) + lineToRelative(2.12f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.34f, 0.09f) + lineTo(15.93f, 12.0f) + horizontalLineToRelative(0.82f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(15.5f, 10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.37f) + lineToRelative(-1.0f, 1.7f) + lineToRelative(-2.16f, -5.11f) + close() + } + } + return _bookPulse!! + } + +private var _bookPulse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookQuestionMark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookQuestionMark.kt new file mode 100644 index 00000000..3f9c6676 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookQuestionMark.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BookQuestionMark: ImageVector + get() { + if (_bookQuestionMark != null) { + return _bookQuestionMark!! + } + _bookQuestionMark = fluentIcon(name = "Filled.BookQuestionMark") { + fluentPath { + moveTo(4.0f, 4.5f) + verticalLineToRelative(15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(6.5f, 20.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + horizontalLineToRelative(14.25f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(20.5f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) + lineTo(6.5f, 2.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) + close() + moveTo(11.0f, 8.02f) + curveToRelative(0.0f, 0.4f, -0.34f, 0.73f, -0.75f, 0.73f) + curveTo(9.5f, 8.75f, 9.5f, 8.0f, 9.5f, 8.0f) + verticalLineToRelative(-0.01f) + arcToRelative(1.4f, 1.4f, 0.0f, false, true, 0.0f, -0.13f) + lineToRelative(0.06f, -0.28f) + curveToRelative(0.05f, -0.22f, 0.16f, -0.5f, 0.37f, -0.8f) + curveToRelative(0.45f, -0.6f, 1.27f, -1.05f, 2.58f, -1.03f) + curveToRelative(0.95f, 0.02f, 1.8f, 0.41f, 2.32f, 1.07f) + curveToRelative(0.54f, 0.67f, 0.72f, 1.57f, 0.37f, 2.46f) + curveToRelative(-0.37f, 0.9f, -1.19f, 1.26f, -1.66f, 1.47f) + lineToRelative(-0.05f, 0.02f) + curveToRelative(-0.28f, 0.13f, -0.4f, 0.19f, -0.49f, 0.25f) + verticalLineToRelative(0.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(11.5f, 11.0f) + curveToRelative(0.0f, -0.52f, 0.25f, -0.9f, 0.56f, -1.15f) + curveToRelative(0.25f, -0.2f, 0.57f, -0.34f, 0.79f, -0.43f) + lineToRelative(0.04f, -0.02f) + curveToRelative(0.54f, -0.24f, 0.8f, -0.39f, 0.91f, -0.68f) + arcToRelative(0.92f, 0.92f, 0.0f, false, false, -0.13f, -0.96f) + curveToRelative(-0.23f, -0.27f, -0.63f, -0.5f, -1.18f, -0.51f) + curveToRelative(-0.94f, -0.02f, -1.25f, 0.29f, -1.36f, 0.43f) + arcToRelative(0.72f, 0.72f, 0.0f, false, false, -0.13f, 0.33f) + close() + moveTo(13.25f, 14.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + } + } + return _bookQuestionMark!! + } + +private var _bookQuestionMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookQuestionMarkRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookQuestionMarkRtl.kt new file mode 100644 index 00000000..bda87727 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookQuestionMarkRtl.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BookQuestionMarkRtl: ImageVector + get() { + if (_bookQuestionMarkRtl != null) { + return _bookQuestionMarkRtl!! + } + _bookQuestionMarkRtl = fluentIcon(name = "Filled.BookQuestionMarkRtl") { + fluentPath { + moveTo(4.0f, 4.5f) + verticalLineToRelative(15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(6.5f, 20.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + horizontalLineToRelative(14.25f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(20.5f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) + lineTo(6.5f, 2.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) + close() + moveTo(14.5f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.73f) + lineToRelative(-0.01f, -0.08f) + arcToRelative(0.72f, 0.72f, 0.0f, false, false, -0.12f, -0.26f) + curveToRelative(-0.11f, -0.15f, -0.42f, -0.45f, -1.36f, -0.43f) + curveToRelative(-0.55f, 0.0f, -0.95f, 0.24f, -1.18f, 0.51f) + arcToRelative(0.92f, 0.92f, 0.0f, false, false, -0.13f, 0.96f) + curveToRelative(0.11f, 0.3f, 0.37f, 0.44f, 0.91f, 0.68f) + lineToRelative(0.04f, 0.02f) + curveToRelative(0.22f, 0.1f, 0.54f, 0.23f, 0.79f, 0.43f) + curveToRelative(0.3f, 0.25f, 0.56f, 0.63f, 0.56f, 1.15f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + verticalLineToRelative(-0.73f) + arcToRelative(2.49f, 2.49f, 0.0f, false, false, -0.5f, -0.25f) + lineToRelative(-0.04f, -0.02f) + curveToRelative(-0.47f, -0.2f, -1.3f, -0.57f, -1.66f, -1.47f) + curveToRelative(-0.35f, -0.89f, -0.17f, -1.8f, 0.37f, -2.46f) + arcToRelative(3.02f, 3.02f, 0.0f, false, true, 2.32f, -1.07f) + curveToRelative(1.31f, -0.02f, 2.13f, 0.43f, 2.58f, 1.04f) + arcToRelative(2.22f, 2.22f, 0.0f, false, true, 0.43f, 1.2f) + reflectiveCurveToRelative(0.0f, 0.76f, -0.75f, 0.76f) + close() + moveTo(11.5f, 14.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + close() + } + } + return _bookQuestionMarkRtl!! + } + +private var _bookQuestionMarkRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookSearch.kt new file mode 100644 index 00000000..124370c5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookSearch.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BookSearch: ImageVector + get() { + if (_bookSearch != null) { + return _bookSearch!! + } + _bookSearch = fluentIcon(name = "Filled.BookSearch") { + fluentPath { + moveTo(11.72f, 7.45f) + arcToRelative(2.28f, 2.28f, 0.0f, true, false, 0.0f, 4.55f) + arcToRelative(2.28f, 2.28f, 0.0f, false, false, 0.0f, -4.55f) + close() + moveTo(4.0f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) + lineTo(18.0f, 2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) + verticalLineToRelative(14.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(5.5f, 19.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(6.5f, 22.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) + verticalLineToRelative(-15.0f) + close() + moveTo(14.82f, 11.8f) + arcToRelative(3.72f, 3.72f, 0.0f, true, false, -1.02f, 1.02f) + lineToRelative(2.47f, 2.47f) + lineToRelative(0.07f, 0.06f) + arcToRelative(0.72f, 0.72f, 0.0f, false, false, 0.95f, -1.09f) + lineToRelative(-2.47f, -2.46f) + close() + } + } + return _bookSearch!! + } + +private var _bookSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookStar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookStar.kt new file mode 100644 index 00000000..8ce0f84f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookStar.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BookStar: ImageVector + get() { + if (_bookStar != null) { + return _bookStar!! + } + _bookStar = fluentIcon(name = "Filled.BookStar") { + fluentPath { + moveTo(11.6f, 9.53f) + curveToRelative(-0.1f, 0.2f, -0.29f, 0.34f, -0.51f, 0.37f) + lineToRelative(-1.45f, 0.21f) + lineToRelative(1.05f, 1.02f) + curveToRelative(0.16f, 0.16f, 0.23f, 0.39f, 0.2f, 0.6f) + lineToRelative(-0.26f, 1.45f) + lineToRelative(1.3f, -0.68f) + curveToRelative(0.2f, -0.1f, 0.44f, -0.1f, 0.64f, 0.0f) + lineToRelative(1.3f, 0.68f) + lineToRelative(-0.25f, -1.44f) + arcToRelative(0.68f, 0.68f, 0.0f, false, true, 0.2f, -0.6f) + lineToRelative(1.04f, -1.03f) + lineToRelative(-1.45f, -0.21f) + arcToRelative(0.68f, 0.68f, 0.0f, false, true, -0.51f, -0.37f) + lineToRelative(-0.65f, -1.32f) + lineToRelative(-0.65f, 1.32f) + close() + moveTo(4.0f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) + lineTo(18.0f, 2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) + verticalLineToRelative(14.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(5.5f, 19.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(6.5f, 22.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) + verticalLineToRelative(-15.0f) + close() + moveTo(10.54f, 8.6f) + lineTo(8.08f, 8.97f) + arcToRelative(0.68f, 0.68f, 0.0f, false, false, -0.37f, 1.15f) + lineToRelative(1.78f, 1.74f) + lineToRelative(-0.42f, 2.45f) + curveToRelative(-0.1f, 0.55f, 0.48f, 0.97f, 0.98f, 0.71f) + lineToRelative(2.2f, -1.15f) + lineToRelative(2.2f, 1.15f) + arcToRelative(0.68f, 0.68f, 0.0f, false, false, 0.98f, -0.71f) + lineToRelative(-0.42f, -2.45f) + lineToRelative(1.78f, -1.74f) + arcToRelative(0.68f, 0.68f, 0.0f, false, false, -0.37f, -1.15f) + lineToRelative(-2.46f, -0.36f) + lineToRelative(-1.1f, -2.23f) + arcToRelative(0.68f, 0.68f, 0.0f, false, false, -1.22f, 0.0f) + lineToRelative(-1.1f, 2.23f) + close() + } + } + return _bookStar!! + } + +private var _bookStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookTheta.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookTheta.kt new file mode 100644 index 00000000..ff3ae479 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookTheta.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BookTheta: ImageVector + get() { + if (_bookTheta != null) { + return _bookTheta!! + } + _bookTheta = fluentIcon(name = "Filled.BookTheta") { + fluentPath { + moveTo(14.12f, 14.0f) + curveToRelative(0.37f, -0.5f, 0.66f, -1.2f, 0.8f, -2.0f) + horizontalLineToRelative(-4.84f) + curveToRelative(0.14f, 0.8f, 0.43f, 1.5f, 0.8f, 2.0f) + curveToRelative(0.52f, 0.72f, 1.11f, 1.0f, 1.62f, 1.0f) + curveToRelative(0.5f, 0.0f, 1.1f, -0.28f, 1.62f, -1.0f) + close() + moveTo(14.12f, 8.0f) + curveToRelative(0.44f, 0.6f, 0.78f, 1.48f, 0.86f, 2.5f) + horizontalLineToRelative(-4.96f) + curveToRelative(0.08f, -1.02f, 0.42f, -1.9f, 0.86f, -2.5f) + curveToRelative(0.52f, -0.72f, 1.11f, -1.0f, 1.62f, -1.0f) + curveToRelative(0.5f, 0.0f, 1.1f, 0.28f, 1.62f, 1.0f) + close() + moveTo(4.0f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) + lineTo(18.0f, 2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) + verticalLineToRelative(14.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(5.5f, 19.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(6.5f, 22.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) + verticalLineToRelative(-15.0f) + close() + moveTo(12.5f, 16.5f) + curveToRelative(2.2f, 0.0f, 4.0f, -2.46f, 4.0f, -5.5f) + reflectiveCurveToRelative(-1.8f, -5.5f, -4.0f, -5.5f) + reflectiveCurveToRelative(-4.0f, 2.46f, -4.0f, 5.5f) + reflectiveCurveToRelative(1.8f, 5.5f, 4.0f, 5.5f) + close() + } + } + return _bookTheta!! + } + +private var _bookTheta: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookToolbox.kt new file mode 100644 index 00000000..48c19479 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookToolbox.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BookToolbox: ImageVector + get() { + if (_bookToolbox != null) { + return _bookToolbox!! + } + _bookToolbox = fluentIcon(name = "Filled.BookToolbox") { + fluentPath { + moveTo(14.0f, 4.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + lineTo(12.0f, 7.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(16.0f, 7.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(20.5f, 7.0f) + lineTo(23.0f, 7.0f) + lineTo(23.0f, 5.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(21.0f, 4.0f) + lineTo(21.0f, 3.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.5f) + curveTo(14.78f, 1.25f, 14.0f, 2.03f, 14.0f, 3.0f) + verticalLineToRelative(1.0f) + close() + moveTo(15.5f, 3.0f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-4.0f) + lineTo(15.5f, 3.0f) + close() + moveTo(12.0f, 10.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(16.0f, 8.5f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(20.5f, 8.5f) + lineTo(23.0f, 8.5f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + close() + moveTo(13.0f, 3.05f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.0f, 2.45f) + verticalLineToRelative(5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, 2.5f) + horizontalLineToRelative(7.0f) + verticalLineToRelative(5.75f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(5.5f, 19.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(6.5f, 22.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) + verticalLineToRelative(-15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) + horizontalLineToRelative(6.69f) + curveToRelative(-0.12f, 0.31f, -0.19f, 0.65f, -0.19f, 1.0f) + verticalLineToRelative(0.05f) + close() + } + } + return _bookToolbox!! + } + +private var _bookToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Bookmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Bookmark.kt new file mode 100644 index 00000000..3a7850d5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Bookmark.kt @@ -0,0 +1,33 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Bookmark: ImageVector + get() { + if (_bookmark != null) { + return _bookmark!! + } + _bookmark = fluentIcon(name = "Filled.Bookmark") { + fluentPath { + moveTo(6.2f, 21.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.2f, -0.6f) + verticalLineToRelative(-15.0f) + curveTo(5.0f, 4.45f, 6.46f, 3.0f, 8.25f, 3.0f) + horizontalLineToRelative(7.5f) + curveTo(17.55f, 3.0f, 19.0f, 4.46f, 19.0f, 6.25f) + verticalLineToRelative(15.0f) + curveToRelative(0.0f, 0.6f, -0.7f, 0.96f, -1.19f, 0.6f) + lineToRelative(-5.8f, -4.18f) + lineToRelative(-5.82f, 4.18f) + close() + } + } + return _bookmark!! + } + +private var _bookmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookmarkAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookmarkAdd.kt new file mode 100644 index 00000000..e735802b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookmarkAdd.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BookmarkAdd: ImageVector + get() { + if (_bookmarkAdd != null) { + return _bookmarkAdd!! + } + _bookmarkAdd = fluentIcon(name = "Filled.BookmarkAdd") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 7.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 7.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 6.0f) + lineTo(17.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + lineTo(18.0f, 6.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 7.0f) + close() + moveTo(17.5f, 13.0f) + curveToRelative(0.52f, 0.0f, 1.02f, -0.06f, 1.5f, -0.17f) + verticalLineToRelative(8.42f) + curveToRelative(0.0f, 0.6f, -0.7f, 0.96f, -1.19f, 0.6f) + lineToRelative(-5.8f, -4.18f) + lineToRelative(-5.82f, 4.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.19f, -0.6f) + verticalLineToRelative(-15.0f) + curveTo(5.0f, 4.45f, 6.46f, 3.0f, 8.25f, 3.0f) + horizontalLineToRelative(3.77f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, 5.48f, 10.0f) + close() + } + } + return _bookmarkAdd!! + } + +private var _bookmarkAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookmarkMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookmarkMultiple.kt new file mode 100644 index 00000000..e8d0cd37 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookmarkMultiple.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BookmarkMultiple: ImageVector + get() { + if (_bookmarkMultiple != null) { + return _bookmarkMultiple!! + } + _bookmarkMultiple = fluentIcon(name = "Filled.BookmarkMultiple") { + fluentPath { + moveTo(4.0f, 6.75f) + curveTo(4.0f, 5.5f, 5.0f, 4.5f, 6.25f, 4.5f) + horizontalLineToRelative(9.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, 0.65f) + lineToRelative(-5.62f, -3.28f) + lineToRelative(-5.62f, 3.28f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 4.0f, 21.25f) + verticalLineTo(6.75f) + close() + moveTo(15.25f, 2.0f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 20.0f, 6.75f) + verticalLineToRelative(11.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineTo(6.75f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineTo(6.64f) + reflectiveCurveToRelative(0.11f, -0.56f, 0.8f, -1.08f) + curveTo(8.0f, 2.0f, 8.6f, 2.0f, 8.6f, 2.0f) + horizontalLineToRelative(6.65f) + close() + } + } + return _bookmarkMultiple!! + } + +private var _bookmarkMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookmarkOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookmarkOff.kt new file mode 100644 index 00000000..25243515 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookmarkOff.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BookmarkOff: ImageVector + get() { + if (_bookmarkOff != null) { + return _bookmarkOff!! + } + _bookmarkOff = fluentIcon(name = "Filled.BookmarkOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(2.79f, 2.79f) + verticalLineToRelative(15.18f) + curveToRelative(0.0f, 0.6f, 0.68f, 0.96f, 1.18f, 0.6f) + lineTo(12.0f, 17.67f) + lineToRelative(5.81f, 4.18f) + curveToRelative(0.5f, 0.36f, 1.2f, 0.0f, 1.2f, -0.6f) + verticalLineToRelative(-1.19f) + lineToRelative(1.7f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.07f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(19.0f, 6.25f) + verticalLineToRelative(9.57f) + lineTo(6.62f, 3.44f) + arcTo(3.24f, 3.24f, 0.0f, false, true, 8.25f, 3.0f) + horizontalLineToRelative(7.5f) + curveTo(17.55f, 3.0f, 19.0f, 4.45f, 19.0f, 6.25f) + close() + } + } + return _bookmarkOff!! + } + +private var _bookmarkOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookmarkSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookmarkSearch.kt new file mode 100644 index 00000000..f58f2231 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BookmarkSearch.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BookmarkSearch: ImageVector + get() { + if (_bookmarkSearch != null) { + return _bookmarkSearch!! + } + _bookmarkSearch = fluentIcon(name = "Filled.BookmarkSearch") { + fluentPath { + moveTo(19.1f, 9.17f) + arcToRelative(4.5f, 4.5f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(2.62f, 2.61f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(19.1f, 9.17f) + close() + moveTo(19.5f, 5.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, -6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 6.0f, 0.0f) + close() + moveTo(19.0f, 10.48f) + verticalLineToRelative(10.76f) + curveToRelative(0.0f, 0.62f, -0.7f, 0.97f, -1.19f, 0.61f) + lineToRelative(-5.8f, -4.18f) + lineToRelative(-5.82f, 4.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.19f, -0.6f) + verticalLineToRelative(-15.0f) + curveTo(5.0f, 4.45f, 6.46f, 3.0f, 8.25f, 3.0f) + horizontalLineToRelative(3.35f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 7.35f, 7.43f) + lineToRelative(0.05f, 0.05f) + close() + } + } + return _bookmarkSearch!! + } + +private var _bookmarkSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderAll.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderAll.kt new file mode 100644 index 00000000..62041e58 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderAll.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BorderAll: ImageVector + get() { + if (_borderAll != null) { + return _borderAll!! + } + _borderAll = fluentIcon(name = "Filled.BorderAll") { + fluentPath { + moveTo(3.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + lineTo(6.0f, 21.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(3.0f, 6.0f) + close() + moveTo(13.0f, 19.0f) + horizontalLineToRelative(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(-6.0f) + verticalLineToRelative(6.0f) + close() + moveTo(11.0f, 13.0f) + lineTo(5.0f, 13.0f) + verticalLineToRelative(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-6.0f) + close() + moveTo(13.0f, 11.0f) + horizontalLineToRelative(6.0f) + lineTo(19.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(6.0f) + close() + moveTo(11.0f, 5.0f) + lineTo(6.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(6.0f) + lineTo(11.0f, 5.0f) + close() + } + } + return _borderAll!! + } + +private var _borderAll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderBottom.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderBottom.kt new file mode 100644 index 00000000..eb2c574c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderBottom.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BorderBottom: ImageVector + get() { + if (_borderBottom != null) { + return _borderBottom!! + } + _borderBottom = fluentIcon(name = "Filled.BorderBottom") { + fluentPath { + moveTo(13.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(2.0f) + close() + moveTo(5.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(3.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + lineTo(6.0f, 21.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + close() + moveTo(20.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + moveTo(7.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + close() + moveTo(18.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + close() + } + } + return _borderBottom!! + } + +private var _borderBottom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderBottomDouble.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderBottomDouble.kt new file mode 100644 index 00000000..3a761a9a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderBottomDouble.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BorderBottomDouble: ImageVector + get() { + if (_borderBottomDouble != null) { + return _borderBottomDouble!! + } + _borderBottomDouble = fluentIcon(name = "Filled.BorderBottomDouble") { + fluentPath { + moveTo(13.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(2.0f) + close() + moveTo(5.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(4.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(4.0f, 18.0f) + close() + moveTo(4.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(4.0f, 21.0f) + close() + moveTo(20.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + moveTo(7.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + close() + moveTo(18.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + close() + } + } + return _borderBottomDouble!! + } + +private var _borderBottomDouble: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderBottomThick.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderBottomThick.kt new file mode 100644 index 00000000..23c3fa42 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderBottomThick.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BorderBottomThick: ImageVector + get() { + if (_borderBottomThick != null) { + return _borderBottomThick!! + } + _borderBottomThick = fluentIcon(name = "Filled.BorderBottomThick") { + fluentPath { + moveTo(14.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + close() + moveTo(5.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(19.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(6.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + close() + moveTo(17.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(5.5f, 17.25f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-0.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + lineTo(21.0f, 18.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.25f, 3.0f) + lineTo(6.25f, 21.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.0f) + lineTo(3.0f, 18.0f) + verticalLineToRelative(-0.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + close() + } + } + return _borderBottomThick!! + } + +private var _borderBottomThick: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderLeft.kt new file mode 100644 index 00000000..e813f2e0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderLeft.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BorderLeft: ImageVector + get() { + if (_borderLeft != null) { + return _borderLeft!! + } + _borderLeft = fluentIcon(name = "Filled.BorderLeft") { + fluentPath { + moveTo(6.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(5.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) + close() + moveTo(13.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(2.0f) + close() + moveTo(19.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(14.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + close() + moveTo(18.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + close() + moveTo(17.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + close() + } + } + return _borderLeft!! + } + +private var _borderLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderLeftRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderLeftRight.kt new file mode 100644 index 00000000..d389b4cf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderLeftRight.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BorderLeftRight: ImageVector + get() { + if (_borderLeftRight != null) { + return _borderLeftRight!! + } + _borderLeftRight = fluentIcon(name = "Filled.BorderLeftRight") { + fluentPath { + moveTo(17.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + lineTo(19.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(13.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(2.0f) + close() + moveTo(13.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(2.0f) + close() + moveTo(6.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(3.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + close() + } + } + return _borderLeftRight!! + } + +private var _borderLeftRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderNone.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderNone.kt new file mode 100644 index 00000000..4a659918 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderNone.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BorderNone: ImageVector + get() { + if (_borderNone != null) { + return _borderNone!! + } + _borderNone = fluentIcon(name = "Filled.BorderNone") { + fluentPath { + moveTo(14.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + close() + moveTo(5.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(19.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(13.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(2.0f) + close() + moveTo(7.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + close() + moveTo(18.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + close() + moveTo(7.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + close() + moveTo(18.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + close() + } + } + return _borderNone!! + } + +private var _borderNone: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderOutside.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderOutside.kt new file mode 100644 index 00000000..ec2260f4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderOutside.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BorderOutside: ImageVector + get() { + if (_borderOutside != null) { + return _borderOutside!! + } + _borderOutside = fluentIcon(name = "Filled.BorderOutside") { + fluentPath { + moveTo(3.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + lineTo(6.0f, 21.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(3.0f, 6.0f) + close() + moveTo(6.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + lineTo(19.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(6.0f, 5.0f) + close() + } + } + return _borderOutside!! + } + +private var _borderOutside: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderOutsideThick.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderOutsideThick.kt new file mode 100644 index 00000000..570522f9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderOutsideThick.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BorderOutsideThick: ImageVector + get() { + if (_borderOutsideThick != null) { + return _borderOutsideThick!! + } + _borderOutsideThick = fluentIcon(name = "Filled.BorderOutsideThick") { + fluentPath { + moveTo(2.5f, 5.75f) + curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) + horizontalLineToRelative(12.5f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineTo(5.75f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.25f, -3.25f) + verticalLineTo(5.75f) + close() + moveTo(5.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(12.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineTo(5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineTo(5.75f) + close() + } + } + return _borderOutsideThick!! + } + +private var _borderOutsideThick: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderRight.kt new file mode 100644 index 00000000..d1d40d6a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderRight.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BorderRight: ImageVector + get() { + if (_borderRight != null) { + return _borderRight!! + } + _borderRight = fluentIcon(name = "Filled.BorderRight") { + fluentPath { + moveTo(13.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(2.0f) + close() + moveTo(5.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(14.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + close() + moveTo(6.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + close() + moveTo(7.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + close() + moveTo(18.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + lineTo(19.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + close() + } + } + return _borderRight!! + } + +private var _borderRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderTop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderTop.kt new file mode 100644 index 00000000..1218c4c5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderTop.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BorderTop: ImageVector + get() { + if (_borderTop != null) { + return _borderTop!! + } + _borderTop = fluentIcon(name = "Filled.BorderTop") { + fluentPath { + moveTo(3.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + lineTo(6.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + close() + moveTo(5.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(19.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(14.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + close() + moveTo(6.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) + close() + moveTo(17.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + close() + } + } + return _borderTop!! + } + +private var _borderTop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderTopBottom.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderTopBottom.kt new file mode 100644 index 00000000..83301a1c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderTopBottom.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BorderTopBottom: ImageVector + get() { + if (_borderTopBottom != null) { + return _borderTopBottom!! + } + _borderTopBottom = fluentIcon(name = "Filled.BorderTopBottom") { + fluentPath { + moveTo(4.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(6.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + close() + moveTo(5.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(19.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(3.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + lineTo(6.0f, 21.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + close() + } + } + return _borderTopBottom!! + } + +private var _borderTopBottom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderTopBottomDouble.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderTopBottomDouble.kt new file mode 100644 index 00000000..6585d286 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderTopBottomDouble.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BorderTopBottomDouble: ImageVector + get() { + if (_borderTopBottomDouble != null) { + return _borderTopBottomDouble!! + } + _borderTopBottomDouble = fluentIcon(name = "Filled.BorderTopBottomDouble") { + fluentPath { + moveTo(3.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + lineTo(6.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + close() + moveTo(5.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(4.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(4.0f, 18.0f) + close() + moveTo(4.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(4.0f, 21.0f) + close() + moveTo(20.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + } + } + return _borderTopBottomDouble!! + } + +private var _borderTopBottomDouble: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderTopBottomThick.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderTopBottomThick.kt new file mode 100644 index 00000000..518f86e2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BorderTopBottomThick.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BorderTopBottomThick: ImageVector + get() { + if (_borderTopBottomThick != null) { + return _borderTopBottomThick!! + } + _borderTopBottomThick = fluentIcon(name = "Filled.BorderTopBottomThick") { + fluentPath { + moveTo(3.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + lineTo(6.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + close() + moveTo(5.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(5.5f, 17.25f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-0.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + lineTo(21.0f, 18.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.25f, 3.0f) + lineTo(6.25f, 21.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.0f) + lineTo(3.0f, 18.0f) + verticalLineToRelative(-0.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + close() + moveTo(20.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + } + } + return _borderTopBottomThick!! + } + +private var _borderTopBottomThick: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Bot.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Bot.kt new file mode 100644 index 00000000..d52ec26d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Bot.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Bot: ImageVector + get() { + if (_bot != null) { + return _bot!! + } + _bot = fluentIcon(name = "Filled.Bot") { + fluentPath { + moveTo(17.75f, 14.0f) + curveTo(19.0f, 14.0f, 20.0f, 15.0f, 20.0f, 16.25f) + verticalLineToRelative(0.9f) + curveToRelative(0.0f, 1.1f, -0.47f, 2.14f, -1.3f, 2.85f) + curveToRelative(-1.57f, 1.34f, -3.81f, 2.0f, -6.7f, 2.0f) + reflectiveCurveToRelative(-5.13f, -0.66f, -6.7f, -2.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 4.0f, 17.16f) + verticalLineToRelative(-0.91f) + curveTo(4.0f, 15.0f, 5.01f, 14.0f, 6.25f, 14.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(11.9f, 2.0f) + horizontalLineToRelative(0.1f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(3.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 1.25f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-8.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineTo(12.0f, 2.0f) + horizontalLineToRelative(-0.1f) + close() + moveTo(9.75f, 6.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(14.25f, 6.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + } + } + return _bot!! + } + +private var _bot: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BotAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BotAdd.kt new file mode 100644 index 00000000..4391dc30 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BotAdd.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BotAdd: ImageVector + get() { + if (_botAdd != null) { + return _botAdd!! + } + _botAdd = fluentIcon(name = "Filled.BotAdd") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(12.02f, 14.0f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, 0.6f, 7.79f) + curveToRelative(-0.8f, 0.14f, -1.68f, 0.21f, -2.62f, 0.21f) + curveToRelative(-2.89f, 0.0f, -5.13f, -0.66f, -6.7f, -2.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 2.0f, 17.16f) + verticalLineToRelative(-0.91f) + curveTo(2.0f, 15.0f, 3.01f, 14.0f, 4.25f, 14.0f) + horizontalLineToRelative(7.77f) + close() + moveTo(17.5f, 14.0f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) + lineToRelative(-0.01f, 0.1f) + lineTo(17.0f, 17.0f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(0.18f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) + lineToRelative(0.1f, 0.01f) + lineTo(17.0f, 18.0f) + verticalLineToRelative(2.6f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + horizontalLineToRelative(0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) + lineToRelative(0.01f, -0.1f) + lineTo(18.0f, 18.0f) + horizontalLineToRelative(2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + verticalLineToRelative(-0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) + lineToRelative(-0.1f, -0.01f) + lineTo(18.0f, 17.0f) + verticalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) + horizontalLineToRelative(-0.09f) + close() + moveTo(10.0f, 2.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(3.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.3f, -0.06f, 0.6f, -0.17f, 0.86f) + curveToRelative(-1.12f, 0.2f, -2.15f, 0.7f, -2.99f, 1.4f) + lineTo(5.75f, 12.51f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.01f, -2.25f, -2.26f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.35f, 0.23f, -0.64f, 0.55f, -0.72f) + lineTo(9.9f, 2.0f) + lineTo(10.0f, 2.0f) + close() + moveTo(7.75f, 6.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(12.25f, 6.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + } + } + return _botAdd!! + } + +private var _botAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BotSparkle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BotSparkle.kt new file mode 100644 index 00000000..75401070 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BotSparkle.kt @@ -0,0 +1,108 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BotSparkle: ImageVector + get() { + if (_botSparkle != null) { + return _botSparkle!! + } + _botSparkle = fluentIcon(name = "Filled.BotSparkle") { + fluentPath { + moveToRelative(18.36f, 10.28f) + lineToRelative(0.14f, 0.1f) + lineTo(18.5f, 5.76f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-3.5f) + verticalLineToRelative(-0.85f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 12.0f, 2.0f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(-3.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 1.25f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(7.78f) + lineToRelative(0.02f, -0.05f) + lineToRelative(0.01f, -0.02f) + lineToRelative(0.45f, -1.39f) + verticalLineToRelative(-0.01f) + arcToRelative(1.54f, 1.54f, 0.0f, false, true, 2.35f, -0.75f) + close() + moveTo(9.75f, 6.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(14.25f, 6.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(13.05f, 14.04f) + lineTo(13.15f, 14.0f) + horizontalLineToRelative(-6.9f) + curveTo(5.01f, 14.0f, 4.0f, 15.0f, 4.0f, 16.25f) + verticalLineToRelative(0.9f) + curveToRelative(0.0f, 1.1f, 0.48f, 2.14f, 1.3f, 2.85f) + curveToRelative(1.57f, 1.34f, 3.81f, 2.0f, 6.7f, 2.0f) + curveToRelative(2.08f, 0.0f, 3.82f, -0.34f, 5.21f, -1.03f) + arcToRelative(1.55f, 1.55f, 0.0f, false, true, -1.17f, -1.0f) + verticalLineToRelative(-0.01f) + lineToRelative(-0.45f, -1.39f) + arcToRelative(1.84f, 1.84f, 0.0f, false, false, -0.44f, -0.72f) + lineToRelative(-0.36f, -0.26f) + lineToRelative(-0.36f, -0.18f) + lineToRelative(-1.39f, -0.45f) + arcToRelative(1.55f, 1.55f, 0.0f, false, true, 0.0f, -2.92f) + close() + moveTo(15.85f, 17.14f) + arcToRelative(2.83f, 2.83f, 0.0f, false, true, 0.69f, 1.12f) + lineToRelative(0.45f, 1.38f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 1.02f, 0.0f) + lineToRelative(0.45f, -1.38f) + arcToRelative(2.83f, 2.83f, 0.0f, false, true, 1.8f, -1.8f) + lineToRelative(1.38f, -0.44f) + arcToRelative(0.55f, 0.55f, 0.0f, false, false, 0.0f, -1.03f) + horizontalLineToRelative(-0.03f) + lineToRelative(-1.38f, -0.45f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.8f, -1.8f) + lineTo(18.0f, 11.36f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, -1.03f, 0.0f) + lineToRelative(-0.45f, 1.38f) + lineToRelative(-0.01f, 0.03f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.76f, 1.77f) + lineToRelative(-1.38f, 0.44f) + arcToRelative(0.55f, 0.55f, 0.0f, false, false, 0.0f, 1.03f) + lineToRelative(1.38f, 0.45f) + curveToRelative(0.42f, 0.14f, 0.8f, 0.37f, 1.11f, 0.69f) + close() + moveTo(23.02f, 20.96f) + lineTo(23.78f, 21.21f) + horizontalLineToRelative(0.02f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.0f, 0.58f) + lineToRelative(-0.77f, 0.25f) + arcToRelative(1.58f, 1.58f, 0.0f, false, false, -1.0f, 1.0f) + lineToRelative(-0.24f, 0.76f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.57f, 0.0f) + lineToRelative(-0.25f, -0.77f) + arcToRelative(1.57f, 1.57f, 0.0f, false, false, -1.0f, -1.0f) + lineToRelative(-0.77f, -0.25f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.0f, -0.57f) + lineToRelative(0.77f, -0.25f) + arcToRelative(1.58f, 1.58f, 0.0f, false, false, 0.98f, -1.0f) + lineToRelative(0.25f, -0.76f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.57f, 0.0f) + lineToRelative(0.25f, 0.77f) + arcToRelative(1.58f, 1.58f, 0.0f, false, false, 1.0f, 1.0f) + close() + } + } + return _botSparkle!! + } + +private var _botSparkle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BowlChopsticks.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BowlChopsticks.kt new file mode 100644 index 00000000..25f1734c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BowlChopsticks.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BowlChopsticks: ImageVector + get() { + if (_bowlChopsticks != null) { + return _bowlChopsticks!! + } + _bowlChopsticks = fluentIcon(name = "Filled.BowlChopsticks") { + fluentPath { + moveTo(5.38f, 2.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.02f, 0.28f) + lineTo(11.37f, 11.0f) + horizontalLineToRelative(2.26f) + lineTo(9.1f, 3.12f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.3f, -0.74f) + lineTo(15.37f, 11.0f) + horizontalLineToRelative(5.93f) + curveToRelative(0.39f, 0.0f, 0.7f, 0.31f, 0.7f, 0.7f) + verticalLineToRelative(0.3f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -0.46f, 3.0f) + horizontalLineTo(2.46f) + arcTo(10.0f, 10.0f, 0.0f, false, true, 2.0f, 12.0f) + verticalLineToRelative(-0.3f) + curveToRelative(0.0f, -0.39f, 0.31f, -0.7f, 0.7f, -0.7f) + horizontalLineToRelative(6.93f) + lineTo(5.1f, 3.12f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.28f, -1.02f) + close() + moveTo(3.07f, 16.5f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 17.86f, 0.0f) + horizontalLineTo(3.07f) + close() + } + } + return _bowlChopsticks!! + } + +private var _bowlChopsticks: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BowlSalad.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BowlSalad.kt new file mode 100644 index 00000000..931c96de --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BowlSalad.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BowlSalad: ImageVector + get() { + if (_bowlSalad != null) { + return _bowlSalad!! + } + _bowlSalad = fluentIcon(name = "Filled.BowlSalad") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -5.14f, 3.53f) + arcTo(12.95f, 12.95f, 0.0f, false, false, 3.56f, 5.0f) + arcToRelative(12.05f, 12.05f, 0.0f, false, false, -0.78f, 0.0f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.71f, 0.7f) + verticalLineToRelative(0.07f) + arcToRelative(7.84f, 7.84f, 0.0f, false, false, 0.0f, 0.79f) + curveToRelative(0.02f, 0.51f, 0.08f, 1.23f, 0.22f, 2.03f) + curveToRelative(0.14f, 0.74f, 0.35f, 1.57f, 0.7f, 2.4f) + horizontalLineToRelative(-0.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(2.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.46f, 3.0f) + horizontalLineToRelative(19.08f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.46f, -3.0f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(21.0f, 11.0f) + verticalLineToRelative(-0.13f) + arcToRelative(4.88f, 4.88f, 0.0f, false, false, -3.67f, -4.72f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 12.0f, 2.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 3.72f, 2.52f) + arcToRelative(4.88f, 4.88f, 0.0f, false, false, -4.03f, 2.82f) + arcToRelative(7.61f, 7.61f, 0.0f, false, false, -3.42f, -2.8f) + arcTo(4.0f, 4.0f, 0.0f, false, true, 12.0f, 3.5f) + close() + moveTo(19.5f, 10.88f) + lineTo(19.5f, 11.0f) + horizontalLineToRelative(-6.73f) + lineToRelative(-0.02f, -0.05f) + verticalLineToRelative(-0.07f) + arcToRelative(3.37f, 3.37f, 0.0f, true, true, 6.75f, 0.0f) + close() + moveTo(9.72f, 8.78f) + curveToRelative(0.64f, 0.65f, 1.1f, 1.42f, 1.44f, 2.22f) + horizontalLineToRelative(-2.1f) + lineTo(7.28f, 9.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(0.72f, 0.72f) + lineTo(4.57f, 11.0f) + curveToRelative(-0.44f, -0.88f, -0.7f, -1.81f, -0.86f, -2.67f) + curveToRelative(-0.13f, -0.72f, -0.18f, -1.36f, -0.2f, -1.82f) + curveToRelative(0.46f, 0.02f, 1.1f, 0.07f, 1.82f, 0.2f) + curveToRelative(1.46f, 0.27f, 3.16f, 0.85f, 4.39f, 2.07f) + close() + moveTo(3.07f, 16.5f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 17.86f, 0.0f) + lineTo(3.07f, 16.5f) + close() + moveTo(12.75f, 10.95f) + lineTo(12.77f, 11.0f) + close() + } + } + return _bowlSalad!! + } + +private var _bowlSalad: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Box.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Box.kt new file mode 100644 index 00000000..a4e47db0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Box.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Box: ImageVector + get() { + if (_box != null) { + return _box!! + } + _box = fluentIcon(name = "Filled.Box") { + fluentPath { + moveTo(13.4f, 2.51f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.8f, 0.0f) + lineToRelative(-2.2f, 0.9f) + lineTo(18.0f, 7.12f) + lineToRelative(3.37f, -1.3f) + curveToRelative(-0.14f, -0.12f, -0.3f, -0.2f, -0.46f, -0.28f) + lineToRelative(-7.5f, -3.04f) + close() + moveTo(22.0f, 7.2f) + lineToRelative(-9.25f, 3.58f) + verticalLineToRelative(10.92f) + curveToRelative(0.22f, -0.05f, 0.44f, -0.11f, 0.66f, -0.2f) + lineToRelative(7.5f, -3.04f) + curveToRelative(0.66f, -0.27f, 1.09f, -0.91f, 1.09f, -1.62f) + verticalLineTo(7.19f) + close() + moveTo(11.25f, 21.7f) + verticalLineTo(10.77f) + lineTo(2.0f, 7.19f) + verticalLineToRelative(9.64f) + curveToRelative(0.0f, 0.71f, 0.43f, 1.35f, 1.1f, 1.62f) + lineToRelative(7.5f, 3.04f) + curveToRelative(0.2f, 0.09f, 0.43f, 0.15f, 0.65f, 0.2f) + close() + moveTo(2.63f, 5.83f) + lineTo(12.0f, 9.45f) + lineToRelative(3.92f, -1.52f) + lineToRelative(-9.55f, -3.7f) + lineTo(3.1f, 5.54f) + curveToRelative(-0.17f, 0.07f, -0.32f, 0.16f, -0.46f, 0.28f) + close() + } + } + return _box!! + } + +private var _box: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxArrowLeft.kt new file mode 100644 index 00000000..49edf883 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxArrowLeft.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BoxArrowLeft: ImageVector + get() { + if (_boxArrowLeft != null) { + return _boxArrowLeft!! + } + _boxArrowLeft = fluentIcon(name = "Filled.BoxArrowLeft") { + fluentPath { + moveTo(13.4f, 2.51f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.8f, 0.0f) + lineToRelative(-2.2f, 0.9f) + lineTo(18.0f, 7.12f) + lineToRelative(3.37f, -1.3f) + curveToRelative(-0.14f, -0.12f, -0.3f, -0.2f, -0.46f, -0.28f) + lineToRelative(-7.5f, -3.04f) + close() + moveTo(22.0f, 7.2f) + lineToRelative(-9.25f, 3.58f) + verticalLineToRelative(2.3f) + arcTo(6.48f, 6.48f, 0.0f, false, true, 22.0f, 12.8f) + lineTo(22.0f, 7.19f) + close() + moveTo(11.25f, 15.72f) + verticalLineToRelative(-4.94f) + lineTo(2.0f, 7.19f) + verticalLineToRelative(9.64f) + curveToRelative(0.0f, 0.71f, 0.43f, 1.35f, 1.1f, 1.62f) + lineToRelative(7.5f, 3.04f) + curveToRelative(0.2f, 0.09f, 0.43f, 0.15f, 0.65f, 0.2f) + verticalLineToRelative(-2.4f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, 0.0f, -3.58f) + close() + moveTo(2.63f, 5.83f) + lineTo(12.0f, 9.45f) + lineToRelative(3.92f, -1.52f) + lineToRelative(-9.55f, -3.7f) + lineTo(3.1f, 5.54f) + curveToRelative(-0.17f, 0.07f, -0.32f, 0.16f, -0.46f, 0.28f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, -11.0f) + close() + moveTo(14.0f, 17.46f) + lineToRelative(0.02f, -0.09f) + lineToRelative(0.02f, -0.06f) + lineToRelative(0.03f, -0.07f) + lineToRelative(0.03f, -0.04f) + lineToRelative(2.55f, -2.55f) + lineToRelative(0.07f, -0.06f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, 0.7f) + lineToRelative(-0.07f, 0.06f) + lineTo(15.71f, 17.0f) + horizontalLineToRelative(5.38f) + curveToRelative(0.2f, 0.05f, 0.36f, 0.2f, 0.4f, 0.41f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(0.08f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.41f, 0.4f) + lineTo(21.0f, 18.0f) + horizontalLineToRelative(-5.3f) + lineToRelative(1.65f, 1.65f) + lineToRelative(0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 0.57f) + lineToRelative(-0.06f, 0.06f) + lineToRelative(-0.07f, 0.06f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.56f, 0.0f) + lineToRelative(-0.07f, -0.06f) + lineToRelative(-2.52f, -2.5f) + lineToRelative(-0.04f, -0.06f) + lineToRelative(-0.04f, -0.08f) + lineToRelative(-0.03f, -0.08f) + lineToRelative(-0.01f, -0.06f) + lineToRelative(-0.01f, -0.06f) + verticalLineToRelative(-0.05f) + close() + } + } + return _boxArrowLeft!! + } + +private var _boxArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxArrowUp.kt new file mode 100644 index 00000000..102241b3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxArrowUp.kt @@ -0,0 +1,88 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BoxArrowUp: ImageVector + get() { + if (_boxArrowUp != null) { + return _boxArrowUp!! + } + _boxArrowUp = fluentIcon(name = "Filled.BoxArrowUp") { + fluentPath { + moveTo(13.4f, 2.51f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.8f, 0.0f) + lineToRelative(-2.2f, 0.9f) + lineTo(18.0f, 7.12f) + lineToRelative(3.37f, -1.3f) + curveToRelative(-0.14f, -0.12f, -0.3f, -0.2f, -0.46f, -0.28f) + lineToRelative(-7.5f, -3.04f) + close() + moveTo(22.0f, 7.2f) + lineToRelative(-9.25f, 3.58f) + verticalLineToRelative(2.3f) + arcTo(6.48f, 6.48f, 0.0f, false, true, 22.0f, 12.8f) + lineTo(22.0f, 7.19f) + close() + moveTo(11.25f, 10.78f) + verticalLineToRelative(4.94f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, 0.0f, 3.58f) + verticalLineToRelative(2.4f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.66f, -0.2f) + lineToRelative(-7.5f, -3.04f) + curveTo(2.43f, 18.18f, 2.0f, 17.54f, 2.0f, 16.83f) + lineTo(2.0f, 7.19f) + lineToRelative(9.25f, 3.58f) + close() + moveTo(2.63f, 5.83f) + lineTo(12.0f, 9.45f) + lineToRelative(3.92f, -1.52f) + lineToRelative(-9.55f, -3.7f) + lineTo(3.1f, 5.54f) + curveToRelative(-0.17f, 0.07f, -0.32f, 0.16f, -0.46f, 0.28f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(17.54f, 14.0f) + lineToRelative(0.09f, 0.02f) + lineToRelative(0.06f, 0.02f) + lineToRelative(0.07f, 0.03f) + lineToRelative(0.05f, 0.04f) + lineToRelative(2.54f, 2.54f) + lineToRelative(0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.7f) + lineToRelative(-0.06f, -0.07f) + lineTo(18.0f, 15.71f) + verticalLineToRelative(5.38f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.41f, 0.4f) + lineToRelative(-0.09f, 0.01f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, -0.4f) + lineTo(17.0f, 21.0f) + verticalLineToRelative(-5.3f) + lineToRelative(-1.65f, 1.65f) + lineToRelative(-0.07f, 0.06f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.56f, 0.0f) + lineToRelative(-0.07f, -0.06f) + lineToRelative(-0.06f, -0.06f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -0.57f) + lineToRelative(0.06f, -0.07f) + lineToRelative(2.5f, -2.51f) + lineToRelative(0.07f, -0.05f) + lineToRelative(0.07f, -0.04f) + lineToRelative(0.08f, -0.03f) + lineToRelative(0.06f, -0.01f) + horizontalLineToRelative(0.11f) + close() + } + } + return _boxArrowUp!! + } + +private var _boxArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxCheckmark.kt new file mode 100644 index 00000000..dd9588f4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxCheckmark.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BoxCheckmark: ImageVector + get() { + if (_boxCheckmark != null) { + return _boxCheckmark!! + } + _boxCheckmark = fluentIcon(name = "Filled.BoxCheckmark") { + fluentPath { + moveTo(13.4f, 2.51f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.8f, 0.0f) + lineToRelative(-2.2f, 0.9f) + lineTo(18.0f, 7.12f) + lineToRelative(3.37f, -1.3f) + curveToRelative(-0.14f, -0.12f, -0.3f, -0.2f, -0.46f, -0.28f) + lineToRelative(-7.5f, -3.04f) + close() + moveTo(22.0f, 7.2f) + lineToRelative(-9.25f, 3.58f) + verticalLineToRelative(2.3f) + arcTo(6.48f, 6.48f, 0.0f, false, true, 22.0f, 12.8f) + lineTo(22.0f, 7.19f) + close() + moveTo(11.25f, 10.78f) + verticalLineToRelative(4.94f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, 0.0f, 3.58f) + verticalLineToRelative(2.4f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.66f, -0.2f) + lineToRelative(-7.5f, -3.04f) + curveTo(2.43f, 18.18f, 2.0f, 17.54f, 2.0f, 16.83f) + lineTo(2.0f, 7.19f) + lineToRelative(9.25f, 3.58f) + close() + moveTo(2.63f, 5.83f) + lineTo(12.0f, 9.45f) + lineToRelative(3.92f, -1.52f) + lineToRelative(-9.55f, -3.7f) + lineTo(3.1f, 5.54f) + curveToRelative(-0.17f, 0.07f, -0.32f, 0.16f, -0.46f, 0.28f) + close() + moveTo(17.5f, 23.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) + close() + moveTo(20.15f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, 0.7f) + lineToRelative(-4.0f, 4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.0f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, -0.7f) + lineToRelative(1.65f, 1.64f) + lineToRelative(3.65f, -3.64f) + close() + } + } + return _boxCheckmark!! + } + +private var _boxCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxDismiss.kt new file mode 100644 index 00000000..8fadc524 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxDismiss.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BoxDismiss: ImageVector + get() { + if (_boxDismiss != null) { + return _boxDismiss!! + } + _boxDismiss = fluentIcon(name = "Filled.BoxDismiss") { + fluentPath { + moveTo(13.4f, 2.51f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.8f, 0.0f) + lineToRelative(-2.2f, 0.9f) + lineTo(18.0f, 7.12f) + lineToRelative(3.37f, -1.3f) + curveToRelative(-0.14f, -0.12f, -0.3f, -0.2f, -0.46f, -0.28f) + lineToRelative(-7.5f, -3.04f) + close() + moveTo(22.0f, 7.2f) + lineToRelative(-9.25f, 3.58f) + verticalLineToRelative(2.3f) + arcTo(6.48f, 6.48f, 0.0f, false, true, 22.0f, 12.8f) + lineTo(22.0f, 7.19f) + close() + moveTo(11.25f, 10.78f) + verticalLineToRelative(4.94f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, 0.0f, 3.58f) + verticalLineToRelative(2.4f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.66f, -0.2f) + lineToRelative(-7.5f, -3.04f) + curveTo(2.43f, 18.18f, 2.0f, 17.54f, 2.0f, 16.83f) + lineTo(2.0f, 7.19f) + lineToRelative(9.25f, 3.58f) + close() + moveTo(2.63f, 5.83f) + lineTo(12.0f, 9.45f) + lineToRelative(3.92f, -1.52f) + lineToRelative(-9.55f, -3.7f) + lineTo(3.1f, 5.54f) + curveToRelative(-0.17f, 0.07f, -0.32f, 0.16f, -0.46f, 0.28f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-1.64f, -1.65f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.65f, 1.64f) + lineToRelative(-1.65f, -1.64f) + close() + } + } + return _boxDismiss!! + } + +private var _boxDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxEdit.kt new file mode 100644 index 00000000..58138b71 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxEdit.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BoxEdit: ImageVector + get() { + if (_boxEdit != null) { + return _boxEdit!! + } + _boxEdit = fluentIcon(name = "Filled.BoxEdit") { + fluentPath { + moveTo(13.4f, 2.51f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.8f, 0.0f) + lineToRelative(-2.2f, 0.9f) + lineTo(18.0f, 7.12f) + lineToRelative(3.37f, -1.3f) + curveToRelative(-0.14f, -0.12f, -0.3f, -0.2f, -0.46f, -0.28f) + lineToRelative(-7.5f, -3.04f) + close() + moveTo(22.0f, 7.2f) + lineToRelative(-9.25f, 3.58f) + verticalLineToRelative(6.84f) + lineToRelative(5.64f, -5.65f) + arcToRelative(3.29f, 3.29f, 0.0f, false, true, 3.61f, -0.7f) + lineTo(22.0f, 7.2f) + close() + moveTo(11.25f, 10.78f) + verticalLineToRelative(9.9f) + lineToRelative(-0.19f, 0.74f) + lineToRelative(-0.04f, 0.22f) + arcToRelative(3.73f, 3.73f, 0.0f, false, true, -0.43f, -0.14f) + lineToRelative(-7.5f, -3.04f) + curveTo(2.43f, 18.18f, 2.0f, 17.54f, 2.0f, 16.83f) + lineTo(2.0f, 7.19f) + lineToRelative(9.25f, 3.58f) + close() + moveTo(2.63f, 5.83f) + lineTo(12.0f, 9.45f) + lineToRelative(3.92f, -1.52f) + lineToRelative(-9.55f, -3.7f) + lineTo(3.1f, 5.54f) + curveToRelative(-0.17f, 0.07f, -0.32f, 0.16f, -0.46f, 0.28f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _boxEdit!! + } + +private var _boxEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxMultiple.kt new file mode 100644 index 00000000..7785beab --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxMultiple.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BoxMultiple: ImageVector + get() { + if (_boxMultiple != null) { + return _boxMultiple!! + } + _boxMultiple = fluentIcon(name = "Filled.BoxMultiple") { + fluentPath { + moveTo(16.3f, 2.33f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.6f, 0.0f) + lineToRelative(-4.3f, 1.6f) + curveToRelative(-0.7f, 0.25f, -1.15f, 0.9f, -1.15f, 1.63f) + verticalLineToRelative(2.8f) + curveToRelative(0.8f, -0.13f, 1.63f, -0.05f, 2.4f, 0.23f) + lineToRelative(4.3f, 1.6f) + curveToRelative(1.08f, 0.4f, 1.8f, 1.42f, 1.8f, 2.57f) + verticalLineToRelative(5.67f) + curveToRelative(0.0f, 0.32f, -0.06f, 0.64f, -0.16f, 0.93f) + lineToRelative(4.02f, -1.49f) + curveToRelative(0.68f, -0.25f, 1.14f, -0.9f, 1.14f, -1.64f) + lineTo(21.75f, 5.56f) + curveToRelative(0.0f, -0.73f, -0.46f, -1.38f, -1.14f, -1.64f) + lineTo(16.3f, 2.33f) + close() + moveTo(11.77f, 7.21f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.49f, -1.42f) + lineToRelative(2.66f, 0.92f) + curveToRelative(0.05f, 0.02f, 0.1f, 0.02f, 0.16f, 0.0f) + lineToRelative(2.65f, -0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.5f, 1.42f) + lineToRelative(-2.66f, 0.92f) + curveToRelative(-0.37f, 0.13f, -0.77f, 0.13f, -1.14f, 0.0f) + lineToRelative(-2.66f, -0.92f) + close() + moveTo(7.7f, 9.53f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.6f, 0.0f) + lineToRelative(4.3f, 1.6f) + curveToRelative(0.7f, 0.24f, 1.15f, 0.9f, 1.15f, 1.63f) + verticalLineToRelative(5.67f) + curveToRelative(0.0f, 0.73f, -0.46f, 1.39f, -1.14f, 1.64f) + lineToRelative(-4.31f, 1.6f) + curveToRelative(-0.84f, 0.3f, -1.76f, 0.3f, -2.6f, 0.0f) + lineToRelative(-4.3f, -1.6f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.15f, -1.64f) + verticalLineToRelative(-5.67f) + curveToRelative(0.0f, -0.73f, 0.46f, -1.39f, 1.14f, -1.64f) + lineToRelative(4.31f, -1.6f) + close() + moveTo(5.3f, 13.7f) + curveToRelative(-0.13f, 0.4f, 0.08f, 0.82f, 0.47f, 0.96f) + lineToRelative(2.48f, 0.85f) + verticalLineToRelative(2.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.7f) + lineToRelative(2.47f, -0.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.49f, -1.42f) + lineTo(9.0f, 14.2f) + lineToRelative(-2.74f, -0.95f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.95f, 0.46f) + close() + } + } + return _boxMultiple!! + } + +private var _boxMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxMultipleArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxMultipleArrowLeft.kt new file mode 100644 index 00000000..5a6778a3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxMultipleArrowLeft.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BoxMultipleArrowLeft: ImageVector + get() { + if (_boxMultipleArrowLeft != null) { + return _boxMultipleArrowLeft!! + } + _boxMultipleArrowLeft = fluentIcon(name = "Filled.BoxMultipleArrowLeft") { + fluentPath { + moveTo(16.3f, 2.33f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.6f, 0.0f) + lineToRelative(-4.3f, 1.6f) + curveToRelative(-0.7f, 0.25f, -1.15f, 0.9f, -1.15f, 1.63f) + verticalLineToRelative(2.8f) + curveToRelative(0.8f, -0.13f, 1.63f, -0.05f, 2.4f, 0.23f) + lineToRelative(4.3f, 1.6f) + curveToRelative(0.52f, 0.18f, 0.95f, 0.52f, 1.26f, 0.94f) + arcToRelative(6.53f, 6.53f, 0.0f, false, true, 5.54f, 1.45f) + lineTo(21.75f, 5.56f) + curveToRelative(0.0f, -0.73f, -0.46f, -1.38f, -1.14f, -1.64f) + lineTo(16.3f, 2.33f) + close() + moveTo(11.77f, 7.21f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.49f, -1.42f) + lineToRelative(2.66f, 0.92f) + curveToRelative(0.05f, 0.02f, 0.1f, 0.02f, 0.16f, 0.0f) + lineToRelative(2.65f, -0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.5f, 1.42f) + lineToRelative(-2.66f, 0.92f) + curveToRelative(-0.37f, 0.13f, -0.77f, 0.13f, -1.14f, 0.0f) + lineToRelative(-2.66f, -0.92f) + close() + moveTo(14.61f, 11.12f) + curveToRelative(0.2f, 0.08f, 0.38f, 0.18f, 0.53f, 0.32f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -2.68f, 1.95f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.73f, -0.14f) + lineTo(9.0f, 14.2f) + lineToRelative(-2.74f, -0.95f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.5f, 1.42f) + lineToRelative(2.49f, 0.85f) + verticalLineToRelative(2.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.7f) + lineToRelative(1.79f, -0.62f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, 0.5f, 6.12f) + lineToRelative(-1.74f, 0.65f) + curveToRelative(-0.84f, 0.3f, -1.76f, 0.3f, -2.6f, 0.0f) + lineToRelative(-4.3f, -1.6f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.15f, -1.64f) + verticalLineToRelative(-5.67f) + curveToRelative(0.0f, -0.73f, 0.46f, -1.39f, 1.14f, -1.64f) + lineToRelative(4.31f, -1.6f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.6f, 0.0f) + lineToRelative(4.3f, 1.6f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.5f, 18.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) + horizontalLineToRelative(-4.8f) + lineToRelative(1.65f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineTo(15.71f, 18.0f) + horizontalLineToRelative(4.79f) + close() + } + } + return _boxMultipleArrowLeft!! + } + +private var _boxMultipleArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxMultipleArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxMultipleArrowRight.kt new file mode 100644 index 00000000..4f037630 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxMultipleArrowRight.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BoxMultipleArrowRight: ImageVector + get() { + if (_boxMultipleArrowRight != null) { + return _boxMultipleArrowRight!! + } + _boxMultipleArrowRight = fluentIcon(name = "Filled.BoxMultipleArrowRight") { + fluentPath { + moveTo(16.3f, 2.33f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.6f, 0.0f) + lineToRelative(-4.3f, 1.6f) + curveToRelative(-0.7f, 0.25f, -1.15f, 0.9f, -1.15f, 1.63f) + verticalLineToRelative(2.8f) + curveToRelative(0.8f, -0.13f, 1.63f, -0.05f, 2.4f, 0.23f) + lineToRelative(4.3f, 1.6f) + curveToRelative(0.52f, 0.18f, 0.95f, 0.52f, 1.26f, 0.94f) + arcToRelative(6.53f, 6.53f, 0.0f, false, true, 5.54f, 1.45f) + lineTo(21.75f, 5.56f) + curveToRelative(0.0f, -0.73f, -0.46f, -1.38f, -1.14f, -1.64f) + lineTo(16.3f, 2.33f) + close() + moveTo(11.77f, 7.21f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.49f, -1.42f) + lineToRelative(2.66f, 0.92f) + curveToRelative(0.05f, 0.02f, 0.1f, 0.02f, 0.16f, 0.0f) + lineToRelative(2.65f, -0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.5f, 1.42f) + lineToRelative(-2.66f, 0.92f) + curveToRelative(-0.37f, 0.13f, -0.77f, 0.13f, -1.14f, 0.0f) + lineToRelative(-2.66f, -0.92f) + close() + moveTo(14.61f, 11.12f) + curveToRelative(0.2f, 0.08f, 0.38f, 0.18f, 0.53f, 0.32f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -2.68f, 1.95f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.73f, -0.14f) + lineTo(9.0f, 14.2f) + lineToRelative(-2.74f, -0.95f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.5f, 1.42f) + lineToRelative(2.49f, 0.85f) + verticalLineToRelative(2.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.7f) + lineToRelative(1.79f, -0.62f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, 0.5f, 6.12f) + lineToRelative(-1.74f, 0.65f) + curveToRelative(-0.84f, 0.3f, -1.76f, 0.3f, -2.6f, 0.0f) + lineToRelative(-4.3f, -1.6f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.15f, -1.64f) + verticalLineToRelative(-5.67f) + curveToRelative(0.0f, -0.73f, 0.46f, -1.39f, 1.14f, -1.64f) + lineToRelative(4.31f, -1.6f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.6f, 0.0f) + lineToRelative(4.3f, 1.6f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(19.29f, 17.0f) + lineTo(14.5f, 17.0f) + close() + } + } + return _boxMultipleArrowRight!! + } + +private var _boxMultipleArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxMultipleCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxMultipleCheckmark.kt new file mode 100644 index 00000000..3ee77cc9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxMultipleCheckmark.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BoxMultipleCheckmark: ImageVector + get() { + if (_boxMultipleCheckmark != null) { + return _boxMultipleCheckmark!! + } + _boxMultipleCheckmark = fluentIcon(name = "Filled.BoxMultipleCheckmark") { + fluentPath { + moveTo(16.3f, 2.33f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.6f, 0.0f) + lineToRelative(-4.3f, 1.6f) + curveToRelative(-0.7f, 0.25f, -1.15f, 0.9f, -1.15f, 1.63f) + verticalLineToRelative(2.8f) + curveToRelative(0.8f, -0.13f, 1.63f, -0.05f, 2.4f, 0.23f) + lineToRelative(4.3f, 1.6f) + curveToRelative(0.52f, 0.18f, 0.95f, 0.52f, 1.26f, 0.94f) + arcToRelative(6.53f, 6.53f, 0.0f, false, true, 5.54f, 1.45f) + lineTo(21.75f, 5.56f) + curveToRelative(0.0f, -0.73f, -0.46f, -1.38f, -1.14f, -1.64f) + lineTo(16.3f, 2.33f) + close() + moveTo(11.77f, 7.21f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.49f, -1.42f) + lineToRelative(2.66f, 0.92f) + curveToRelative(0.05f, 0.02f, 0.1f, 0.02f, 0.16f, 0.0f) + lineToRelative(2.65f, -0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.5f, 1.42f) + lineToRelative(-2.66f, 0.92f) + curveToRelative(-0.37f, 0.13f, -0.77f, 0.13f, -1.14f, 0.0f) + lineToRelative(-2.66f, -0.92f) + close() + moveTo(14.61f, 11.12f) + curveToRelative(0.2f, 0.08f, 0.38f, 0.18f, 0.53f, 0.32f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -2.68f, 1.95f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.73f, -0.14f) + lineTo(9.0f, 14.2f) + lineToRelative(-2.74f, -0.95f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.5f, 1.42f) + lineToRelative(2.49f, 0.85f) + verticalLineToRelative(2.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.7f) + lineToRelative(1.79f, -0.62f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, 0.5f, 6.12f) + lineToRelative(-1.74f, 0.65f) + curveToRelative(-0.84f, 0.3f, -1.76f, 0.3f, -2.6f, 0.0f) + lineToRelative(-4.3f, -1.6f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.15f, -1.64f) + verticalLineToRelative(-5.67f) + curveToRelative(0.0f, -0.73f, 0.46f, -1.39f, 1.14f, -1.64f) + lineToRelative(4.31f, -1.6f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.6f, 0.0f) + lineToRelative(4.3f, 1.6f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-3.65f, 3.64f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _boxMultipleCheckmark!! + } + +private var _boxMultipleCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxMultipleSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxMultipleSearch.kt new file mode 100644 index 00000000..4d326324 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxMultipleSearch.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BoxMultipleSearch: ImageVector + get() { + if (_boxMultipleSearch != null) { + return _boxMultipleSearch!! + } + _boxMultipleSearch = fluentIcon(name = "Filled.BoxMultipleSearch") { + fluentPath { + moveTo(13.7f, 2.33f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.6f, 0.0f) + lineToRelative(4.3f, 1.6f) + curveToRelative(0.7f, 0.25f, 1.15f, 0.9f, 1.15f, 1.63f) + verticalLineToRelative(9.3f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 16.12f, 11.0f) + curveToRelative(-0.3f, -0.36f, -0.7f, -0.65f, -1.17f, -0.83f) + lineToRelative(-4.3f, -1.59f) + arcToRelative(4.75f, 4.75f, 0.0f, false, false, -2.4f, -0.23f) + verticalLineToRelative(-2.8f) + curveToRelative(0.0f, -0.73f, 0.46f, -1.38f, 1.14f, -1.64f) + lineToRelative(4.31f, -1.59f) + close() + moveTo(11.3f, 6.25f) + curveToRelative(-0.13f, 0.4f, 0.08f, 0.82f, 0.47f, 0.96f) + lineToRelative(2.66f, 0.92f) + curveToRelative(0.37f, 0.13f, 0.77f, 0.13f, 1.14f, 0.0f) + lineToRelative(2.65f, -0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.49f, -1.42f) + lineToRelative(-2.65f, 0.92f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.16f, 0.0f) + lineToRelative(-2.66f, -0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.95f, 0.46f) + close() + moveTo(14.87f, 11.25f) + arcToRelative(1.74f, 1.74f, 0.0f, false, false, -0.26f, -0.13f) + lineToRelative(-4.31f, -1.6f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.6f, 0.0f) + lineToRelative(-4.3f, 1.6f) + curveToRelative(-0.7f, 0.25f, -1.15f, 0.91f, -1.15f, 1.64f) + verticalLineToRelative(5.67f) + curveToRelative(0.0f, 0.73f, 0.46f, 1.39f, 1.14f, 1.64f) + lineToRelative(4.31f, 1.6f) + curveToRelative(0.84f, 0.3f, 1.76f, 0.3f, 2.6f, 0.0f) + lineToRelative(2.64f, -0.98f) + arcToRelative(5.49f, 5.49f, 0.0f, false, true, -1.74f, -5.67f) + lineToRelative(-1.45f, 0.5f) + verticalLineToRelative(2.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.7f) + lineToRelative(-2.48f, -0.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.49f, -1.42f) + lineTo(9.0f, 14.2f) + lineToRelative(2.73f, -0.95f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.36f, -0.03f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 2.78f, -1.98f) + close() + moveTo(20.17f, 19.11f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(2.61f, 2.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.05f) + lineToRelative(-2.61f, -2.61f) + close() + moveTo(19.5f, 16.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) + close() + } + } + return _boxMultipleSearch!! + } + +private var _boxMultipleSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxSearch.kt new file mode 100644 index 00000000..c2260696 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxSearch.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BoxSearch: ImageVector + get() { + if (_boxSearch != null) { + return _boxSearch!! + } + _boxSearch = fluentIcon(name = "Filled.BoxSearch") { + fluentPath { + moveTo(13.4f, 2.51f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.8f, 0.0f) + lineToRelative(-2.2f, 0.89f) + lineTo(18.0f, 7.13f) + lineToRelative(3.37f, -1.3f) + curveToRelative(-0.14f, -0.12f, -0.3f, -0.2f, -0.46f, -0.28f) + lineToRelative(-7.5f, -3.04f) + close() + moveTo(22.0f, 7.2f) + lineToRelative(-9.25f, 3.57f) + lineTo(12.75f, 21.7f) + curveToRelative(0.22f, -0.05f, 0.44f, -0.11f, 0.66f, -0.2f) + lineToRelative(7.5f, -3.04f) + curveToRelative(0.66f, -0.27f, 1.09f, -0.91f, 1.09f, -1.62f) + lineTo(22.0f, 7.19f) + close() + moveTo(11.25f, 10.77f) + verticalLineToRelative(10.01f) + lineToRelative(-1.82f, -1.82f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 2.0f, 11.6f) + lineTo(2.0f, 7.19f) + lineToRelative(9.25f, 3.57f) + close() + moveTo(2.63f, 5.83f) + lineTo(12.0f, 9.45f) + lineToRelative(3.92f, -1.52f) + lineToRelative(-9.55f, -3.7f) + lineTo(3.1f, 5.54f) + curveToRelative(-0.17f, 0.07f, -0.32f, 0.16f, -0.46f, 0.28f) + close() + moveTo(4.5f, 21.0f) + curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) + lineToRelative(2.62f, 2.61f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.61f, -2.61f) + arcTo(4.5f, 4.5f, 0.0f, true, false, 4.5f, 21.0f) + close() + moveTo(4.5f, 19.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) + close() + } + } + return _boxSearch!! + } + +private var _boxSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxToolbox.kt new file mode 100644 index 00000000..bbf45a07 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BoxToolbox.kt @@ -0,0 +1,103 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BoxToolbox: ImageVector + get() { + if (_boxToolbox != null) { + return _boxToolbox!! + } + _boxToolbox = fluentIcon(name = "Filled.BoxToolbox") { + fluentPath { + moveTo(13.4f, 2.51f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.8f, 0.0f) + lineToRelative(-2.2f, 0.9f) + lineTo(18.0f, 7.12f) + lineToRelative(3.37f, -1.3f) + curveToRelative(-0.14f, -0.12f, -0.3f, -0.2f, -0.46f, -0.28f) + lineToRelative(-7.5f, -3.04f) + close() + moveTo(22.0f, 7.2f) + lineToRelative(-9.25f, 3.58f) + verticalLineToRelative(3.35f) + lineToRelative(0.25f, -0.07f) + lineTo(13.0f, 14.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, -2.75f) + horizontalLineToRelative(3.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 14.0f) + verticalLineToRelative(-6.8f) + close() + moveTo(11.25f, 10.78f) + verticalLineToRelative(4.64f) + curveToRelative(-0.16f, 0.33f, -0.25f, 0.7f, -0.25f, 1.1f) + verticalLineToRelative(5.12f) + arcToRelative(3.73f, 3.73f, 0.0f, false, true, -0.4f, -0.14f) + lineToRelative(-7.5f, -3.04f) + curveToRelative(-0.67f, -0.27f, -1.1f, -0.91f, -1.1f, -1.62f) + lineTo(2.0f, 7.19f) + lineToRelative(9.25f, 3.58f) + close() + moveTo(2.63f, 5.83f) + lineTo(12.0f, 9.45f) + lineToRelative(3.92f, -1.52f) + lineToRelative(-9.55f, -3.7f) + lineTo(3.1f, 5.54f) + curveToRelative(-0.17f, 0.07f, -0.32f, 0.16f, -0.46f, 0.28f) + close() + moveTo(14.0f, 15.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + lineTo(12.0f, 18.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(16.0f, 18.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(20.5f, 18.0f) + lineTo(23.0f, 18.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(21.0f, 15.0f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(1.0f) + close() + moveTo(15.5f, 14.0f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(12.0f, 21.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + lineTo(23.0f, 19.5f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + close() + } + } + return _boxToolbox!! + } + +private var _boxToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Braces.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Braces.kt new file mode 100644 index 00000000..5469aa43 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Braces.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Braces: ImageVector + get() { + if (_braces != null) { + return _braces!! + } + _braces = fluentIcon(name = "Filled.Braces") { + fluentPath { + moveTo(4.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(3.94f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 5.18f, 12.0f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 6.0f, 14.06f) + lineTo(6.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + verticalLineToRelative(-3.94f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.76f, -0.97f) + lineToRelative(-0.48f, -0.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.94f) + lineToRelative(0.48f, -0.12f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 4.0f, 9.94f) + lineTo(4.0f, 6.0f) + close() + moveTo(20.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(3.94f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.82f, 2.06f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -0.82f, 2.06f) + lineTo(18.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) + verticalLineToRelative(-3.94f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.76f, -0.97f) + lineToRelative(0.48f, -0.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.94f) + lineToRelative(-0.48f, -0.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.76f, -0.97f) + lineTo(20.0f, 6.0f) + close() + } + } + return _braces!! + } + +private var _braces: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BracesVariable.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BracesVariable.kt new file mode 100644 index 00000000..c0209f28 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BracesVariable.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BracesVariable: ImageVector + get() { + if (_bracesVariable != null) { + return _bracesVariable!! + } + _bracesVariable = fluentIcon(name = "Filled.BracesVariable") { + fluentPath { + moveTo(3.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(3.94f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 4.18f, 12.0f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 5.0f, 14.06f) + lineTo(5.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + verticalLineToRelative(-3.94f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.76f, -0.97f) + lineToRelative(-0.48f, -0.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.94f) + lineToRelative(0.48f, -0.12f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 9.94f) + lineTo(3.0f, 6.0f) + close() + moveTo(21.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(3.94f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.82f, 2.06f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -0.82f, 2.06f) + lineTo(19.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) + verticalLineToRelative(-3.94f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.76f, -0.97f) + lineToRelative(0.48f, -0.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.94f) + lineToRelative(-0.48f, -0.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.76f, -0.97f) + lineTo(21.0f, 6.0f) + close() + moveTo(9.29f, 6.89f) + arcTo(1.0f, 1.0f, 0.0f, true, false, 7.7f, 8.1f) + lineTo(10.73f, 12.0f) + lineToRelative(-3.02f, 3.89f) + arcTo(1.0f, 1.0f, 0.0f, true, false, 9.3f, 17.1f) + lineTo(12.0f, 13.63f) + lineToRelative(2.71f, 3.48f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.58f, -1.22f) + lineTo(13.27f, 12.0f) + lineToRelative(3.02f, -3.89f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 14.7f, 6.9f) + lineTo(12.0f, 10.37f) + lineTo(9.29f, 6.9f) + close() + } + } + return _bracesVariable!! + } + +private var _bracesVariable: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BrainCircuit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BrainCircuit.kt new file mode 100644 index 00000000..edbade9d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BrainCircuit.kt @@ -0,0 +1,88 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BrainCircuit: ImageVector + get() { + if (_brainCircuit != null) { + return _brainCircuit!! + } + _brainCircuit = fluentIcon(name = "Filled.BrainCircuit") { + fluentPath { + moveTo(10.14f, 2.0f) + curveToRelative(0.7f, 0.0f, 1.11f, 0.71f, 1.11f, 1.42f) + verticalLineToRelative(4.33f) + horizontalLineToRelative(-0.9f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(0.9f) + verticalLineToRelative(10.9f) + curveToRelative(0.0f, 0.6f, -0.25f, 1.19f, -0.78f, 1.46f) + arcTo(3.4f, 3.4f, 0.0f, false, true, 8.9f, 22.0f) + arcToRelative(4.24f, 4.24f, 0.0f, false, true, -3.36f, -1.67f) + arcToRelative(5.17f, 5.17f, 0.0f, false, true, -1.02f, -2.14f) + curveToRelative(-0.4f, -0.12f, -0.86f, -0.34f, -1.27f, -0.69f) + arcTo(3.83f, 3.83f, 0.0f, false, true, 2.0f, 14.47f) + curveToRelative(0.0f, -0.76f, 0.05f, -1.42f, 0.19f, -1.97f) + lineTo(6.4f, 12.5f) + curveToRelative(0.68f, 0.0f, 1.24f, 0.5f, 1.34f, 1.15f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 1.5f, 0.0f) + arcTo(2.85f, 2.85f, 0.0f, false, false, 6.4f, 11.0f) + lineTo(3.04f, 11.0f) + arcToRelative(2.04f, 2.04f, 0.0f, false, true, 0.5f, -0.3f) + arcToRelative(4.9f, 4.9f, 0.0f, false, true, -0.18f, -1.13f) + curveToRelative(-0.04f, -0.73f, 0.07f, -1.5f, 0.3f, -2.18f) + arcToRelative(4.2f, 4.2f, 0.0f, false, true, 1.03f, -1.77f) + curveToRelative(0.3f, -0.29f, 0.68f, -0.5f, 1.1f, -0.57f) + curveToRelative(0.2f, -0.84f, 0.7f, -1.53f, 1.35f, -2.04f) + curveToRelative(0.83f, -0.65f, 1.92f, -1.0f, 3.0f, -1.0f) + close() + moveTo(12.75f, 17.0f) + horizontalLineToRelative(1.65f) + arcToRelative(2.85f, 2.85f, 0.0f, false, false, 2.85f, -2.85f) + verticalLineToRelative(-1.8f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, -1.5f, 0.0f) + verticalLineToRelative(1.8f) + curveToRelative(0.0f, 0.75f, -0.6f, 1.35f, -1.35f, 1.35f) + horizontalLineToRelative(-1.65f) + lineTo(12.75f, 3.42f) + curveToRelative(0.0f, -0.71f, 0.4f, -1.41f, 1.11f, -1.41f) + curveToRelative(1.08f, 0.0f, 2.17f, 0.35f, 3.0f, 1.0f) + curveToRelative(0.65f, 0.5f, 1.16f, 1.2f, 1.35f, 2.04f) + curveToRelative(0.42f, 0.07f, 0.8f, 0.28f, 1.1f, 0.57f) + curveToRelative(0.48f, 0.45f, 0.82f, 1.1f, 1.04f, 1.77f) + curveToRelative(0.22f, 0.68f, 0.33f, 1.45f, 0.3f, 2.18f) + arcToRelative(4.9f, 4.9f, 0.0f, false, true, -0.18f, 1.13f) + lineToRelative(0.06f, 0.03f) + curveToRelative(0.37f, 0.17f, 0.67f, 0.45f, 0.9f, 0.8f) + curveToRelative(0.42f, 0.7f, 0.57f, 1.68f, 0.57f, 2.94f) + curveToRelative(0.0f, 1.44f, -0.55f, 2.42f, -1.26f, 3.03f) + curveToRelative(-0.41f, 0.35f, -0.87f, 0.57f, -1.27f, 0.7f) + curveToRelative(-0.14f, 0.68f, -0.49f, 1.46f, -1.02f, 2.13f) + arcTo(4.24f, 4.24f, 0.0f, false, true, 15.09f, 22.0f) + arcToRelative(3.4f, 3.4f, 0.0f, false, true, -1.56f, -0.4f) + curveToRelative(-0.53f, -0.26f, -0.78f, -0.86f, -0.78f, -1.45f) + lineTo(12.75f, 17.0f) + close() + moveTo(8.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + close() + moveTo(8.5f, 15.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + close() + moveTo(16.0f, 10.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + close() + } + } + return _brainCircuit!! + } + +private var _brainCircuit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Branch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Branch.kt new file mode 100644 index 00000000..3eb0b024 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Branch.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Branch: ImageVector + get() { + if (_branch != null) { + return _branch!! + } + _branch = fluentIcon(name = "Filled.Branch") { + fluentPath { + moveTo(4.0f, 5.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 4.49f, 3.36f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 5.26f, 3.89f) + horizontalLineToRelative(0.33f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.33f) + arcToRelative(6.99f, 6.99f, 0.0f, false, true, -5.5f, -2.67f) + verticalLineToRelative(3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, -1.5f, 0.0f) + verticalLineTo(8.92f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 4.0f, 5.5f) + close() + } + } + return _branch!! + } + +private var _branch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BranchCompare.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BranchCompare.kt new file mode 100644 index 00000000..fd81cc40 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BranchCompare.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BranchCompare: ImageVector + get() { + if (_branchCompare != null) { + return _branchCompare!! + } + _branchCompare = fluentIcon(name = "Filled.BranchCompare") { + fluentPath { + moveTo(9.0f, 5.5f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.0f, 3.46f) + lineTo(6.0f, 15.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) + horizontalLineToRelative(2.69f) + lineToRelative(-0.97f, -0.97f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(2.25f, 2.25f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-2.25f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(0.97f, -0.97f) + lineTo(9.0f, 19.5f) + arcTo(4.5f, 4.5f, 0.0f, false, true, 4.5f, 15.0f) + lineTo(4.5f, 8.86f) + arcTo(3.5f, 3.5f, 0.0f, true, true, 9.0f, 5.5f) + close() + moveTo(22.0f, 18.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, -4.0f, -3.46f) + lineTo(18.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + horizontalLineToRelative(-1.94f) + lineToRelative(0.97f, 0.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineToRelative(-2.25f, -2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(2.25f, -2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-0.97f, 0.97f) + lineTo(15.0f, 4.5f) + arcTo(4.5f, 4.5f, 0.0f, false, true, 19.5f, 9.0f) + verticalLineToRelative(6.14f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 22.0f, 18.5f) + close() + } + } + return _branchCompare!! + } + +private var _branchCompare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BranchFork.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BranchFork.kt new file mode 100644 index 00000000..cb9ad1ef --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BranchFork.kt @@ -0,0 +1,37 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BranchFork: ImageVector + get() { + if (_branchFork != null) { + return _branchFork!! + } + _branchFork = fluentIcon(name = "Filled.BranchFork") { + fluentPath { + moveTo(11.0f, 5.5f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.0f, 3.46f) + verticalLineToRelative(2.54f) + horizontalLineToRelative(6.25f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-0.4f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 1.5f, 0.11f) + verticalLineToRelative(0.29f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 14.25f, 13.0f) + horizontalLineTo(8.0f) + verticalLineToRelative(2.04f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, -1.5f, 0.1f) + verticalLineTo(8.86f) + arcTo(3.5f, 3.5f, 0.0f, true, true, 11.0f, 5.5f) + close() + } + } + return _branchFork!! + } + +private var _branchFork: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BranchForkHint.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BranchForkHint.kt new file mode 100644 index 00000000..c80b15b6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BranchForkHint.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BranchForkHint: ImageVector + get() { + if (_branchForkHint != null) { + return _branchForkHint!! + } + _branchForkHint = fluentIcon(name = "Filled.BranchForkHint") { + fluentPath { + moveTo(6.5f, 2.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -1.0f, 6.86f) + verticalLineToRelative(5.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(7.0f, 13.0f) + horizontalLineToRelative(6.25f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 17.0f, 9.25f) + verticalLineToRelative(-0.29f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, -1.5f, -0.1f) + verticalLineToRelative(0.39f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(7.0f, 11.5f) + lineTo(7.0f, 8.96f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 6.5f, 2.0f) + close() + moveTo(5.34f, 16.88f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.87f, -1.22f) + arcToRelative(3.52f, 3.52f, 0.0f, false, false, -1.23f, 1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.4f, 0.53f) + arcToRelative(1.99f, 1.99f, 0.0f, false, true, 0.7f, -0.9f) + close() + moveTo(8.54f, 15.66f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.88f, 1.22f) + arcToRelative(2.01f, 2.01f, 0.0f, false, true, 0.7f, 0.91f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.4f, -0.54f) + arcToRelative(3.49f, 3.49f, 0.0f, false, false, -1.23f, -1.59f) + close() + moveTo(4.78f, 19.52f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.3f, 0.76f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 1.48f, 1.37f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.66f, -1.35f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.84f, -0.78f) + close() + moveTo(9.52f, 20.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.3f, -0.76f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.84f, 0.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.66f, 1.35f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 1.48f, -1.37f) + close() + } + } + return _branchForkHint!! + } + +private var _branchForkHint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BranchForkLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BranchForkLink.kt new file mode 100644 index 00000000..715af101 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BranchForkLink.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BranchForkLink: ImageVector + get() { + if (_branchForkLink != null) { + return _branchForkLink!! + } + _branchForkLink = fluentIcon(name = "Filled.BranchForkLink") { + fluentPath { + moveTo(6.0f, 8.96f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, -1.5f, -0.1f) + verticalLineToRelative(6.28f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 1.5f, -0.1f) + lineTo(6.0f, 13.0f) + horizontalLineToRelative(6.25f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 16.0f, 9.25f) + verticalLineToRelative(-0.29f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, -1.5f, -0.1f) + verticalLineToRelative(0.39f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(6.0f, 11.5f) + lineTo(6.0f, 8.96f) + close() + moveTo(23.0f, 18.75f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 19.25f, 15.0f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + verticalLineToRelative(-0.01f) + horizontalLineToRelative(0.2f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 18.74f) + close() + moveTo(16.5f, 15.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-0.2f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(20.0f, 18.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + } + } + return _branchForkLink!! + } + +private var _branchForkLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BreakoutRoom.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BreakoutRoom.kt new file mode 100644 index 00000000..0e5ac448 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BreakoutRoom.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BreakoutRoom: ImageVector + get() { + if (_breakoutRoom != null) { + return _breakoutRoom!! + } + _breakoutRoom = fluentIcon(name = "Filled.BreakoutRoom") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-5.04f) + curveToRelative(0.8f, -0.85f, 1.29f, -2.0f, 1.29f, -3.25f) + verticalLineToRelative(-3.0f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 9.25f, 10.0f) + horizontalLineToRelative(-3.0f) + curveToRelative(-1.26f, 0.0f, -2.4f, 0.49f, -3.25f, 1.29f) + lineTo(3.0f, 6.25f) + close() + moveTo(3.0f, 14.75f) + verticalLineToRelative(3.0f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(3.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 14.75f) + close() + } + } + return _breakoutRoom!! + } + +private var _breakoutRoom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Briefcase.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Briefcase.kt new file mode 100644 index 00000000..a84a26d5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Briefcase.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Briefcase: ImageVector + get() { + if (_briefcase != null) { + return _briefcase!! + } + _briefcase = fluentIcon(name = "Filled.Briefcase") { + fluentPath { + moveTo(15.25f, 3.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(16.0f, 7.0f) + horizontalLineToRelative(1.75f) + curveTo(19.55f, 7.0f, 21.0f, 8.46f, 21.0f, 10.25f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 16.75f) + verticalLineToRelative(-6.5f) + curveTo(3.0f, 8.45f, 4.46f, 7.0f, 6.25f, 7.0f) + lineTo(8.0f, 7.0f) + lineTo(8.0f, 3.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(6.5f) + close() + moveTo(14.5f, 4.5f) + horizontalLineToRelative(-5.0f) + lineTo(9.5f, 7.0f) + horizontalLineToRelative(5.0f) + lineTo(14.5f, 4.5f) + close() + } + } + return _briefcase!! + } + +private var _briefcase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BriefcaseMedical.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BriefcaseMedical.kt new file mode 100644 index 00000000..5594d964 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BriefcaseMedical.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BriefcaseMedical: ImageVector + get() { + if (_briefcaseMedical != null) { + return _briefcaseMedical!! + } + _briefcaseMedical = fluentIcon(name = "Filled.BriefcaseMedical") { + fluentPath { + moveTo(16.0f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-6.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + lineTo(8.0f, 7.0f) + lineTo(6.25f, 7.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 10.25f) + verticalLineToRelative(6.5f) + curveTo(3.0f, 18.55f, 4.46f, 20.0f, 6.25f, 20.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-6.5f) + curveTo(21.0f, 8.45f, 19.54f, 7.0f, 17.75f, 7.0f) + lineTo(16.0f, 7.0f) + lineTo(16.0f, 3.75f) + close() + moveTo(9.5f, 4.5f) + horizontalLineToRelative(5.0f) + lineTo(14.5f, 7.0f) + horizontalLineToRelative(-5.0f) + lineTo(9.5f, 4.5f) + close() + moveTo(11.5f, 15.75f) + lineTo(11.5f, 14.0f) + lineTo(9.75f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.75f) + verticalLineToRelative(-1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(1.75f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(13.0f, 14.0f) + verticalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + } + } + return _briefcaseMedical!! + } + +private var _briefcaseMedical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BriefcaseOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BriefcaseOff.kt new file mode 100644 index 00000000..142f3c6a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BriefcaseOff.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BriefcaseOff: ImageVector + get() { + if (_briefcaseOff != null) { + return _briefcaseOff!! + } + _briefcaseOff = fluentIcon(name = "Filled.BriefcaseOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(3.73f, 3.73f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 10.25f) + verticalLineToRelative(6.5f) + curveTo(3.0f, 18.55f, 4.46f, 20.0f, 6.25f, 20.0f) + horizontalLineToRelative(11.5f) + curveToRelative(0.36f, 0.0f, 0.7f, -0.06f, 1.02f, -0.16f) + lineToRelative(1.95f, 1.94f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(21.0f, 16.75f) + curveToRelative(0.0f, 0.32f, -0.05f, 0.64f, -0.14f, 0.93f) + lineTo(10.18f, 7.0f) + horizontalLineToRelative(4.32f) + verticalLineTo(4.5f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(1.82f) + lineTo(8.0f, 4.82f) + verticalLineTo(3.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(6.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineTo(7.0f) + horizontalLineToRelative(1.75f) + curveTo(19.55f, 7.0f, 21.0f, 8.46f, 21.0f, 10.25f) + verticalLineToRelative(6.5f) + close() + } + } + return _briefcaseOff!! + } + +private var _briefcaseOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BrightnessHigh.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BrightnessHigh.kt new file mode 100644 index 00000000..4ed203d4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BrightnessHigh.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BrightnessHigh: ImageVector + get() { + if (_brightnessHigh != null) { + return _brightnessHigh!! + } + _brightnessHigh = fluentIcon(name = "Filled.BrightnessHigh") { + fluentPath { + moveTo(12.75f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.5f) + close() + moveTo(17.0f, 12.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, -10.0f, 0.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 10.0f, 0.0f) + close() + moveTo(15.5f, 12.0f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 12.0f, 8.5f) + verticalLineToRelative(7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 3.5f, -3.5f) + close() + moveTo(22.0f, 12.0f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(12.75f, 19.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.5f) + close() + moveTo(5.0f, 12.0f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(5.28f, 4.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.5f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineToRelative(-1.5f, -1.5f) + close() + moveTo(4.22f, 19.78f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(1.5f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineToRelative(-1.5f, 1.5f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + close() + moveTo(18.72f, 4.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(1.5f, -1.5f) + close() + moveTo(19.78f, 19.78f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-1.5f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineToRelative(1.5f, 1.5f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + close() + } + } + return _brightnessHigh!! + } + +private var _brightnessHigh: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BrightnessLow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BrightnessLow.kt new file mode 100644 index 00000000..0136e4eb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BrightnessLow.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BrightnessLow: ImageVector + get() { + if (_brightnessLow != null) { + return _brightnessLow!! + } + _brightnessLow = fluentIcon(name = "Filled.BrightnessLow") { + fluentPath { + moveTo(12.75f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(17.0f, 12.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, -10.0f, 0.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 10.0f, 0.0f) + close() + moveTo(15.5f, 12.0f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 12.0f, 8.5f) + verticalLineToRelative(7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 3.5f, -3.5f) + close() + moveTo(20.5f, 12.0f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(12.75f, 18.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(6.0f, 12.0f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(7.28f, 6.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(0.5f, 0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineToRelative(-0.5f, -0.5f) + close() + moveTo(6.22f, 17.78f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(0.5f, -0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-0.5f, 0.5f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + close() + moveTo(16.72f, 6.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-0.5f, 0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(0.5f, -0.5f) + close() + moveTo(17.78f, 17.78f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-0.5f, -0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(0.5f, 0.5f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + close() + } + } + return _brightnessLow!! + } + +private var _brightnessLow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BroadActivityFeed.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BroadActivityFeed.kt new file mode 100644 index 00000000..5de9773a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BroadActivityFeed.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BroadActivityFeed: ImageVector + get() { + if (_broadActivityFeed != null) { + return _broadActivityFeed!! + } + _broadActivityFeed = fluentIcon(name = "Filled.BroadActivityFeed") { + fluentPath { + moveTo(9.25f, 14.0f) + curveToRelative(0.96f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-5.5f) + curveTo(2.78f, 21.0f, 2.0f, 20.22f, 2.0f, 19.25f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(5.5f) + close() + moveTo(20.25f, 14.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-5.5f) + curveToRelative(-0.96f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.97f, 0.79f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(5.5f) + close() + moveTo(20.25f, 3.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(5.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(3.75f, 12.0f) + curveTo(2.78f, 12.0f, 2.0f, 11.22f, 2.0f, 10.25f) + verticalLineToRelative(-5.5f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.68f, 1.6f, -1.75f) + horizontalLineToRelative(16.65f) + close() + } + } + return _broadActivityFeed!! + } + +private var _broadActivityFeed: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Broom.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Broom.kt new file mode 100644 index 00000000..ac370c9b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Broom.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Broom: ImageVector + get() { + if (_broom != null) { + return _broom!! + } + _broom = fluentIcon(name = "Filled.Broom") { + fluentPath { + moveTo(22.45f, 1.92f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineTo(16.14f, 9.3f) + arcToRelative(6.81f, 6.81f, 0.0f, false, false, -1.07f, -1.06f) + lineToRelative(6.32f, -6.32f) + curveToRelative(0.3f, -0.29f, 0.77f, -0.29f, 1.06f, 0.0f) + close() + moveTo(15.03f, 9.35f) + arcToRelative(5.75f, 5.75f, 0.0f, false, false, -8.13f, 0.0f) + lineToRelative(-0.25f, 0.24f) + lineToRelative(8.13f, 8.13f) + lineToRelative(0.25f, -0.24f) + arcToRelative(5.75f, 5.75f, 0.0f, false, false, 0.0f, -8.13f) + close() + moveTo(1.88f, 12.97f) + lineToRelative(3.62f, -2.41f) + lineToRelative(8.32f, 8.32f) + lineToRelative(-2.41f, 3.61f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.15f, 0.12f) + lineToRelative(-8.49f, -8.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.11f, -1.15f) + close() + } + } + return _broom!! + } + +private var _broom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Bug.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Bug.kt new file mode 100644 index 00000000..93a64332 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Bug.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Bug: ImageVector + get() { + if (_bug != null) { + return _bug!! + } + _bug = fluentIcon(name = "Filled.Bug") { + fluentPath { + moveTo(14.25f, 2.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.64f, -0.2f, 1.22f, -0.53f, 1.7f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.52f, 3.3f) + horizontalLineToRelative(0.26f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.24f, -2.26f) + verticalLineTo(4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(1.48f) + curveToRelative(0.0f, 2.0f, -1.56f, 3.65f, -3.54f, 3.76f) + horizontalLineTo(17.0f) + verticalLineToRelative(1.51f) + horizontalLineToRelative(4.25f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.75f, 0.65f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineTo(17.0f) + verticalLineToRelative(2.0f) + horizontalLineTo(17.45f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 3.53f, 3.57f) + verticalLineToRelative(1.68f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-1.59f) + curveToRelative(0.01f, -1.2f, -0.9f, -2.17f, -2.08f, -2.25f) + horizontalLineToRelative(-0.15f) + lineToRelative(-0.48f, -0.01f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, -9.54f, 0.0f) + horizontalLineToRelative(-0.49f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, 2.26f) + verticalLineToRelative(1.49f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + verticalLineToRelative(-1.48f) + curveToRelative(0.0f, -2.0f, 1.56f, -3.65f, 3.54f, -3.76f) + horizontalLineToRelative(0.21f) + lineTo(7.0f, 15.0f) + verticalLineToRelative(-2.0f) + horizontalLineTo(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + horizontalLineToRelative(0.1f) + lineTo(7.0f, 11.5f) + verticalLineTo(10.0f) + horizontalLineTo(6.54f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 3.0f, 6.42f) + verticalLineTo(4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(1.59f) + curveToRelative(0.0f, 1.19f, 0.92f, 2.17f, 2.09f, 2.25f) + horizontalLineTo(7.0f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.52f, -3.28f) + curveToRelative(-0.3f, -0.43f, -0.48f, -0.94f, -0.52f, -1.5f) + lineTo(9.0f, 3.51f) + verticalLineToRelative(-0.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.85f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.15f) + verticalLineToRelative(-0.9f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _bug!! + } + +private var _bug: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Building.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Building.kt new file mode 100644 index 00000000..5fddf673 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Building.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Building: ImageVector + get() { + if (_building != null) { + return _building!! + } + _building = fluentIcon(name = "Filled.Building") { + fluentPath { + moveTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(8.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + lineTo(16.5f, 9.5f) + horizontalLineToRelative(1.25f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(16.5f, 22.0f) + verticalLineToRelative(-3.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-6.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + lineTo(7.5f, 22.0f) + lineTo(4.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-17.0f) + close() + moveTo(15.0f, 18.5f) + lineTo(15.0f, 22.0f) + horizontalLineToRelative(-2.25f) + verticalLineToRelative(-3.5f) + lineTo(15.0f, 18.5f) + close() + moveTo(11.25f, 18.5f) + lineTo(11.25f, 22.0f) + lineTo(9.0f, 22.0f) + verticalLineToRelative(-3.5f) + horizontalLineToRelative(2.25f) + close() + moveTo(7.5f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) + close() + moveTo(8.5f, 12.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(8.5f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(12.0f, 5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(12.0f, 12.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(15.5f, 12.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(12.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + } + } + return _building!! + } + +private var _building: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingBank.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingBank.kt new file mode 100644 index 00000000..36a87452 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingBank.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BuildingBank: ImageVector + get() { + if (_buildingBank != null) { + return _buildingBank!! + } + _buildingBank = fluentIcon(name = "Filled.BuildingBank") { + fluentPath { + moveTo(10.97f, 2.32f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 2.06f, 0.0f) + lineToRelative(7.42f, 5.42f) + curveToRelative(0.98f, 0.71f, 0.48f, 2.26f, -0.73f, 2.26f) + lineTo(4.28f, 10.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.73f, -2.26f) + lineToRelative(7.42f, -5.42f) + close() + moveTo(13.0f, 6.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(11.25f, 16.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(5.0f) + close() + moveTo(14.75f, 16.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(5.0f) + close() + moveTo(18.5f, 16.0f) + horizontalLineToRelative(-2.25f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(2.25f) + verticalLineToRelative(5.0f) + close() + moveTo(18.75f, 17.0f) + lineTo(5.25f, 17.0f) + curveTo(4.01f, 17.0f, 3.0f, 18.0f, 3.0f, 19.25f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(16.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + close() + moveTo(7.75f, 16.0f) + lineTo(5.5f, 16.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(2.25f) + verticalLineToRelative(5.0f) + close() + } + } + return _buildingBank!! + } + +private var _buildingBank: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingBankLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingBankLink.kt new file mode 100644 index 00000000..339341c4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingBankLink.kt @@ -0,0 +1,97 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BuildingBankLink: ImageVector + get() { + if (_buildingBankLink != null) { + return _buildingBankLink!! + } + _buildingBankLink = fluentIcon(name = "Filled.BuildingBankLink") { + fluentPath { + moveTo(10.97f, 2.32f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 2.06f, 0.0f) + lineToRelative(7.42f, 5.42f) + curveToRelative(0.98f, 0.71f, 0.48f, 2.26f, -0.73f, 2.26f) + lineTo(4.28f, 10.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.73f, -2.26f) + lineToRelative(7.42f, -5.42f) + close() + moveTo(13.0f, 6.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(11.25f, 16.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(5.0f) + close() + moveTo(12.75f, 15.57f) + curveToRelative(0.57f, -0.47f, 1.25f, -0.8f, 2.0f, -0.96f) + lineTo(14.75f, 11.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(4.57f) + close() + moveTo(16.25f, 14.5f) + horizontalLineToRelative(2.25f) + lineTo(18.5f, 11.0f) + horizontalLineToRelative(-2.25f) + verticalLineToRelative(3.5f) + close() + moveTo(11.0f, 19.25f) + curveToRelative(0.0f, -0.81f, 0.2f, -1.58f, 0.57f, -2.25f) + lineTo(5.25f, 17.0f) + curveTo(4.01f, 17.0f, 3.0f, 18.0f, 3.0f, 19.25f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(7.42f) + curveToRelative(-0.11f, -0.4f, -0.17f, -0.82f, -0.17f, -1.25f) + close() + moveTo(7.75f, 16.0f) + lineTo(5.5f, 16.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(2.25f) + verticalLineToRelative(5.0f) + close() + moveTo(23.0f, 19.25f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.75f, -3.75f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + lineTo(19.25f, 23.0f) + horizontalLineToRelative(0.2f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 19.25f) + close() + moveTo(16.5f, 16.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-0.2f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(20.0f, 19.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + } + } + return _buildingBankLink!! + } + +private var _buildingBankLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingBankToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingBankToolbox.kt new file mode 100644 index 00000000..7c7d5dfb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingBankToolbox.kt @@ -0,0 +1,111 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BuildingBankToolbox: ImageVector + get() { + if (_buildingBankToolbox != null) { + return _buildingBankToolbox!! + } + _buildingBankToolbox = fluentIcon(name = "Filled.BuildingBankToolbox") { + fluentPath { + moveTo(13.03f, 2.34f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.06f, 0.0f) + lineToRelative(-7.42f, 5.4f) + curveToRelative(-0.98f, 0.72f, -0.48f, 2.26f, 0.73f, 2.27f) + lineTo(16.0f, 10.01f) + lineTo(16.0f, 10.0f) + lineTo(19.72f, 10.0f) + curveToRelative(1.2f, 0.0f, 1.71f, -1.54f, 0.73f, -2.25f) + lineToRelative(-7.42f, -5.41f) + close() + moveTo(12.0f, 5.26f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(11.25f, 15.41f) + curveToRelative(-0.1f, 0.19f, -0.16f, 0.38f, -0.2f, 0.6f) + horizontalLineToRelative(-1.8f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(4.4f) + close() + moveTo(14.75f, 11.44f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 13.0f, 14.0f) + verticalLineToRelative(0.05f) + lineToRelative(-0.25f, 0.06f) + verticalLineToRelative(-3.1f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(0.43f) + close() + moveTo(11.0f, 17.0f) + verticalLineToRelative(3.5f) + lineTo(3.75f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-0.5f) + curveTo(3.0f, 18.01f, 4.0f, 17.0f, 5.25f, 17.0f) + lineTo(11.0f, 17.0f) + close() + moveTo(5.5f, 16.0f) + horizontalLineToRelative(2.25f) + verticalLineToRelative(-5.0f) + lineTo(5.5f, 11.0f) + verticalLineToRelative(5.0f) + close() + moveTo(14.0f, 15.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + lineTo(12.0f, 18.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(16.0f, 18.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(20.5f, 18.0f) + lineTo(23.0f, 18.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(21.0f, 15.0f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(1.0f) + close() + moveTo(15.5f, 14.0f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(13.5f, 23.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + lineTo(23.0f, 19.5f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-8.0f) + close() + } + } + return _buildingBankToolbox!! + } + +private var _buildingBankToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingDesktop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingDesktop.kt new file mode 100644 index 00000000..9fcf16e0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingDesktop.kt @@ -0,0 +1,102 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BuildingDesktop: ImageVector + get() { + if (_buildingDesktop != null) { + return _buildingDesktop!! + } + _buildingDesktop = fluentIcon(name = "Filled.BuildingDesktop") { + fluentPath { + moveTo(8.5f, 12.75f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.43f, 0.08f, 0.85f, 0.22f, 1.25f) + lineTo(3.5f, 18.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 2.0f, 16.5f) + verticalLineToRelative(-13.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 3.5f, 2.0f) + horizontalLineToRelative(6.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 11.0f, 3.5f) + lineTo(11.0f, 7.0f) + horizontalLineToRelative(1.5f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 14.0f, 8.5f) + lineTo(14.0f, 9.0f) + horizontalLineToRelative(-1.75f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.75f, 3.75f) + close() + moveTo(8.17f, 5.13f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 7.75f, 5.0f) + arcToRelative(0.76f, 0.76f, 0.0f, false, false, -0.75f, 0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.17f, -0.62f) + close() + moveTo(8.17f, 8.13f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 7.75f, 8.0f) + arcToRelative(0.76f, 0.76f, 0.0f, false, false, -0.75f, 0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.17f, -0.62f) + close() + moveTo(4.83f, 12.37f) + curveToRelative(0.13f, 0.09f, 0.27f, 0.13f, 0.42f, 0.13f) + arcToRelative(0.76f, 0.76f, 0.0f, false, false, 0.75f, -0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.17f, 0.62f) + close() + moveTo(4.83f, 9.37f) + curveToRelative(0.13f, 0.09f, 0.27f, 0.13f, 0.42f, 0.13f) + arcTo(0.76f, 0.76f, 0.0f, false, false, 6.0f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.17f, 0.62f) + close() + moveTo(4.83f, 6.37f) + curveToRelative(0.13f, 0.09f, 0.27f, 0.13f, 0.42f, 0.13f) + arcTo(0.76f, 0.76f, 0.0f, false, false, 6.0f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.17f, 0.62f) + close() + moveTo(7.33f, 12.37f) + curveToRelative(0.13f, 0.09f, 0.27f, 0.13f, 0.42f, 0.13f) + arcToRelative(0.76f, 0.76f, 0.0f, false, false, 0.75f, -0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.17f, 0.62f) + close() + moveTo(9.5f, 12.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 12.25f, 10.0f) + horizontalLineToRelative(7.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 12.75f) + verticalLineToRelative(4.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) + lineTo(18.0f, 19.5f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.25f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(-1.25f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, -2.75f) + verticalLineToRelative(-4.0f) + close() + moveTo(15.0f, 19.5f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.5f) + verticalLineToRelative(-1.0f) + lineTo(15.0f, 19.5f) + close() + moveTo(12.25f, 11.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(7.0f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-7.0f) + close() + } + } + return _buildingDesktop!! + } + +private var _buildingDesktop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingFactory.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingFactory.kt new file mode 100644 index 00000000..814b72f2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingFactory.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BuildingFactory: ImageVector + get() { + if (_buildingFactory != null) { + return _buildingFactory!! + } + _buildingFactory = fluentIcon(name = "Filled.BuildingFactory") { + fluentPath { + moveTo(2.92f, 4.13f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 5.17f, 2.0f) + horizontalLineToRelative(1.16f) + curveToRelative(1.2f, 0.0f, 2.18f, 0.93f, 2.24f, 2.13f) + lineToRelative(0.84f, 15.5f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 7.17f, 22.0f) + horizontalLineTo(4.33f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.24f, -2.37f) + lineToRelative(0.83f, -15.5f) + close() + moveTo(9.52f, 22.0f) + horizontalLineToRelative(10.23f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineTo(6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.26f, -0.55f) + lineToRelative(-5.24f, 4.84f) + verticalLineTo(6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.26f, -0.55f) + lineTo(9.87f, 9.49f) + lineToRelative(0.54f, 10.08f) + curveToRelative(0.05f, 0.94f, -0.3f, 1.8f, -0.9f, 2.43f) + close() + moveTo(13.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(4.5f) + horizontalLineToRelative(-6.0f) + verticalLineTo(16.0f) + close() + } + } + return _buildingFactory!! + } + +private var _buildingFactory: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingGovernment.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingGovernment.kt new file mode 100644 index 00000000..70b8728f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingGovernment.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BuildingGovernment: ImageVector + get() { + if (_buildingGovernment != null) { + return _buildingGovernment!! + } + _buildingGovernment = fluentIcon(name = "Filled.BuildingGovernment") { + fluentPath { + moveTo(15.5f, 2.0f) + horizontalLineToRelative(-3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.32f) + arcTo(7.0f, 7.0f, 0.0f, false, false, 5.0f, 13.0f) + horizontalLineToRelative(-0.75f) + curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(10.0f, 22.0f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(2.5f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(7.25f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-6.0f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + lineTo(19.0f, 13.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, false, -6.5f, -6.98f) + lineTo(12.5f, 5.0f) + horizontalLineToRelative(3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(15.5f, 11.75f) + verticalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(11.75f, 11.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(9.5f, 11.75f) + verticalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(5.75f, 15.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(19.0f, 16.25f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + } + } + return _buildingGovernment!! + } + +private var _buildingGovernment: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingHome.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingHome.kt new file mode 100644 index 00000000..6e1e07d3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingHome.kt @@ -0,0 +1,98 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BuildingHome: ImageVector + get() { + if (_buildingHome != null) { + return _buildingHome!! + } + _buildingHome = fluentIcon(name = "Filled.BuildingHome") { + fluentPath { + moveTo(3.5f, 2.0f) + curveTo(2.67f, 2.0f, 2.0f, 2.67f, 2.0f, 3.5f) + verticalLineToRelative(13.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + lineTo(9.0f, 18.0f) + verticalLineToRelative(-3.32f) + curveToRelative(0.0f, -0.76f, 0.32f, -1.49f, 0.87f, -2.0f) + lineTo(14.0f, 8.81f) + lineTo(14.0f, 8.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(11.0f, 7.0f) + lineTo(11.0f, 3.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + horizontalLineToRelative(-6.0f) + close() + moveTo(6.0f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(5.25f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(6.0f, 11.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(7.75f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(8.5f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(7.75f, 12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(17.19f, 9.44f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.38f, 0.0f) + lineToRelative(-4.25f, 3.97f) + curveToRelative(-0.36f, 0.33f, -0.56f, 0.79f, -0.56f, 1.27f) + verticalLineToRelative(5.82f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(2.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + lineTo(15.0f, 18.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(2.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-5.82f) + curveToRelative(0.0f, -0.48f, -0.2f, -0.94f, -0.56f, -1.27f) + lineTo(17.2f, 9.44f) + close() + moveTo(15.83f, 10.54f) + curveToRelative(0.1f, -0.1f, 0.24f, -0.1f, 0.34f, 0.0f) + lineToRelative(4.25f, 3.96f) + curveToRelative(0.05f, 0.05f, 0.08f, 0.12f, 0.08f, 0.18f) + verticalLineToRelative(5.82f) + horizontalLineToRelative(-2.0f) + lineTo(18.5f, 18.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + horizontalLineToRelative(-2.0f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-5.82f) + curveToRelative(0.0f, -0.06f, 0.03f, -0.13f, 0.08f, -0.18f) + lineToRelative(4.25f, -3.96f) + close() + moveTo(9.25f, 2.0f) + horizontalLineToRelative(-5.5f) + close() + } + } + return _buildingHome!! + } + +private var _buildingHome: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingMultiple.kt new file mode 100644 index 00000000..debb3153 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingMultiple.kt @@ -0,0 +1,96 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BuildingMultiple: ImageVector + get() { + if (_buildingMultiple != null) { + return _buildingMultiple!! + } + _buildingMultiple = fluentIcon(name = "Filled.BuildingMultiple") { + fluentPath { + moveTo(7.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(8.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(7.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(8.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(7.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(14.0f, 4.25f) + lineTo(14.0f, 5.0f) + horizontalLineToRelative(4.75f) + curveTo(19.99f, 5.0f, 21.0f, 6.0f, 21.0f, 7.25f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(-2.75f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(2.75f) + horizontalLineToRelative(-10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(3.0f, 4.25f) + curveTo(3.0f, 3.01f, 4.0f, 2.0f, 5.25f, 2.0f) + horizontalLineToRelative(6.5f) + curveTo(12.99f, 2.0f, 14.0f, 3.0f, 14.0f, 4.25f) + close() + moveTo(5.25f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(4.5f, 20.0f) + lineTo(10.0f, 20.0f) + lineTo(10.0f, 7.25f) + curveTo(10.0f, 6.01f, 11.0f, 5.0f, 12.25f, 5.0f) + horizontalLineToRelative(0.25f) + verticalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-6.5f) + close() + moveTo(18.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(14.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(18.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(14.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(18.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(14.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + } + } + return _buildingMultiple!! + } + +private var _buildingMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingPeople.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingPeople.kt new file mode 100644 index 00000000..8e249f76 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingPeople.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BuildingPeople: ImageVector + get() { + if (_buildingPeople != null) { + return _buildingPeople!! + } + _buildingPeople = fluentIcon(name = "Filled.BuildingPeople") { + fluentPath { + moveTo(8.5f, 12.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(7.5f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) + close() + moveTo(12.0f, 5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(8.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + lineTo(16.5f, 9.5f) + horizontalLineToRelative(1.25f) + curveToRelative(1.25f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(1.35f) + curveToRelative(-0.44f, 0.13f, -0.83f, 0.36f, -1.15f, 0.66f) + arcToRelative(3.25f, 3.25f, 0.0f, true, false, -5.44f, 3.25f) + curveToRelative(-1.47f, 0.11f, -2.41f, 1.49f, -2.41f, 2.86f) + curveToRelative(0.0f, 0.55f, 0.1f, 1.1f, 0.32f, 1.63f) + lineTo(4.75f, 21.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(4.0f, 4.25f) + close() + moveTo(8.5f, 5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(11.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) + close() + moveTo(18.0f, 14.75f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.5f, 0.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.5f, 0.0f) + close() + moveTo(19.5f, 19.88f) + curveToRelative(0.0f, 1.55f, -1.07f, 3.12f, -3.75f, 3.12f) + curveToRelative(-2.68f, 0.0f, -3.75f, -1.56f, -3.75f, -3.13f) + curveToRelative(0.0f, -1.03f, 0.72f, -1.87f, 1.6f, -1.87f) + horizontalLineToRelative(4.3f) + curveToRelative(0.88f, 0.0f, 1.6f, 0.84f, 1.6f, 1.88f) + close() + moveTo(20.75f, 17.5f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, -3.5f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, 3.5f) + close() + moveTo(20.5f, 19.88f) + curveToRelative(0.0f, 0.71f, -0.18f, 1.46f, -0.58f, 2.12f) + lineTo(20.0f, 22.0f) + curveToRelative(2.15f, 0.0f, 3.0f, -1.1f, 3.0f, -2.19f) + arcToRelative(1.3f, 1.3f, 0.0f, false, false, -1.28f, -1.31f) + horizontalLineToRelative(-1.54f) + curveToRelative(0.2f, 0.42f, 0.32f, 0.9f, 0.32f, 1.38f) + close() + } + } + return _buildingPeople!! + } + +private var _buildingPeople: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingRetail.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingRetail.kt new file mode 100644 index 00000000..97798906 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingRetail.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BuildingRetail: ImageVector + get() { + if (_buildingRetail != null) { + return _buildingRetail!! + } + _buildingRetail = fluentIcon(name = "Filled.BuildingRetail") { + fluentPath { + moveTo(7.5f, 11.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(9.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-9.0f) + close() + moveTo(4.0f, 3.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.0f, 3.73f) + verticalLineToRelative(13.52f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(6.0f, 21.0f) + verticalLineToRelative(-5.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(11.5f, 21.0f) + horizontalLineToRelative(8.75f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(21.0f, 6.73f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 20.0f, 3.0f) + lineTo(4.0f, 3.0f) + close() + moveTo(3.5f, 5.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(16.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(4.0f, 5.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + moveTo(6.75f, 8.0f) + horizontalLineToRelative(10.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(6.75f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(14.75f, 15.0f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(10.0f, 16.5f) + lineTo(10.0f, 21.0f) + lineTo(7.5f, 21.0f) + verticalLineToRelative(-4.5f) + lineTo(10.0f, 16.5f) + close() + } + } + return _buildingRetail!! + } + +private var _buildingRetail: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingRetailMoney.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingRetailMoney.kt new file mode 100644 index 00000000..b6089b18 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingRetailMoney.kt @@ -0,0 +1,105 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BuildingRetailMoney: ImageVector + get() { + if (_buildingRetailMoney != null) { + return _buildingRetailMoney!! + } + _buildingRetailMoney = fluentIcon(name = "Filled.BuildingRetailMoney") { + fluentPath { + moveTo(7.5f, 11.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(9.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-9.0f) + close() + moveTo(4.0f, 3.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.0f, 3.73f) + verticalLineToRelative(13.52f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(6.0f, 21.0f) + verticalLineToRelative(-5.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(11.5f, 16.0f) + curveToRelative(0.46f, -0.6f, 1.18f, -1.0f, 2.0f, -1.0f) + lineTo(21.0f, 15.0f) + lineTo(21.0f, 6.73f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 20.0f, 3.0f) + lineTo(4.0f, 3.0f) + close() + moveTo(3.5f, 5.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(16.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(4.0f, 5.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + moveTo(6.75f, 8.0f) + horizontalLineToRelative(10.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(6.75f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(10.0f, 16.5f) + lineTo(10.0f, 21.0f) + lineTo(7.5f, 21.0f) + verticalLineToRelative(-4.5f) + lineTo(10.0f, 16.5f) + close() + moveTo(12.0f, 17.5f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(8.0f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + verticalLineToRelative(-4.0f) + close() + moveTo(22.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + horizontalLineToRelative(-1.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(22.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(14.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + verticalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + horizontalLineToRelative(-1.0f) + close() + moveTo(15.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + verticalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + horizontalLineToRelative(1.0f) + close() + moveTo(19.25f, 19.5f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, -3.5f, 0.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 3.5f, 0.0f) + close() + } + } + return _buildingRetailMoney!! + } + +private var _buildingRetailMoney: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingRetailMore.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingRetailMore.kt new file mode 100644 index 00000000..de1d40e1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingRetailMore.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BuildingRetailMore: ImageVector + get() { + if (_buildingRetailMore != null) { + return _buildingRetailMore!! + } + _buildingRetailMore = fluentIcon(name = "Filled.BuildingRetailMore") { + fluentPath { + moveTo(6.22f, 3.0f) + curveToRelative(-0.52f, 0.0f, -1.01f, 0.23f, -1.35f, 0.63f) + lineTo(1.3f, 7.95f) + curveToRelative(-0.67f, 0.82f, -0.1f, 2.05f, 0.96f, 2.05f) + horizontalLineToRelative(19.5f) + curveToRelative(1.05f, 0.0f, 1.63f, -1.23f, 0.96f, -2.05f) + lineToRelative(-3.58f, -4.32f) + curveToRelative(-0.33f, -0.4f, -0.83f, -0.63f, -1.35f, -0.63f) + lineTo(6.22f, 3.0f) + close() + moveTo(3.0f, 11.5f) + verticalLineToRelative(7.25f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, 2.5f) + horizontalLineToRelative(13.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) + lineTo(21.0f, 11.5f) + lineTo(3.0f, 11.5f) + close() + moveTo(9.0f, 15.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(12.0f, 16.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, 2.5f) + close() + moveTo(17.5f, 15.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + } + } + return _buildingRetailMore!! + } + +private var _buildingRetailMore: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingRetailShield.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingRetailShield.kt new file mode 100644 index 00000000..71315cfd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingRetailShield.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BuildingRetailShield: ImageVector + get() { + if (_buildingRetailShield != null) { + return _buildingRetailShield!! + } + _buildingRetailShield = fluentIcon(name = "Filled.BuildingRetailShield") { + fluentPath { + moveTo(7.5f, 11.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(9.0f) + verticalLineToRelative(1.21f) + curveToRelative(-0.36f, 0.27f, -0.81f, 0.55f, -1.33f, 0.79f) + lineTo(7.5f, 11.5f) + close() + moveTo(18.0f, 8.75f) + verticalLineToRelative(1.22f) + curveToRelative(0.37f, 0.0f, 0.74f, 0.12f, 1.04f, 0.38f) + curveToRelative(0.4f, 0.34f, 1.1f, 0.86f, 1.96f, 1.22f) + lineTo(21.0f, 6.73f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 20.0f, 3.0f) + lineTo(4.0f, 3.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.0f, 3.73f) + verticalLineToRelative(13.52f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(6.0f, 21.0f) + verticalLineToRelative(-5.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(11.5f, 21.0f) + horizontalLineToRelative(1.82f) + arcTo(6.5f, 6.5f, 0.0f, false, true, 12.0f, 17.0f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.18f, 0.03f, -0.35f, 0.08f, -0.5f) + lineTo(6.75f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(10.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(3.5f, 5.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(16.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(4.0f, 5.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + moveTo(10.0f, 16.5f) + lineTo(10.0f, 21.0f) + lineTo(7.5f, 21.0f) + verticalLineToRelative(-4.5f) + lineTo(10.0f, 16.5f) + close() + moveTo(22.5f, 12.98f) + arcToRelative(7.7f, 7.7f, 0.0f, false, true, -4.11f, -1.87f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.77f, 0.0f) + curveToRelative(-0.69f, 0.58f, -2.21f, 1.7f, -4.12f, 1.87f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, -0.5f, 0.52f) + lineTo(13.0f, 17.0f) + curveToRelative(0.0f, 4.22f, 4.1f, 5.72f, 4.87f, 5.96f) + curveToRelative(0.09f, 0.03f, 0.17f, 0.03f, 0.26f, 0.0f) + curveTo(18.9f, 22.72f, 23.0f, 21.22f, 23.0f, 17.0f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.28f, -0.22f, -0.5f, -0.5f, -0.52f) + close() + } + } + return _buildingRetailShield!! + } + +private var _buildingRetailShield: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingRetailToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingRetailToolbox.kt new file mode 100644 index 00000000..5e027043 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingRetailToolbox.kt @@ -0,0 +1,114 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BuildingRetailToolbox: ImageVector + get() { + if (_buildingRetailToolbox != null) { + return _buildingRetailToolbox!! + } + _buildingRetailToolbox = fluentIcon(name = "Filled.BuildingRetailToolbox") { + fluentPath { + moveTo(7.5f, 11.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(9.0f) + verticalLineToRelative(1.75f) + horizontalLineToRelative(-0.75f) + curveToRelative(-0.4f, 0.0f, -0.8f, 0.09f, -1.15f, 0.25f) + lineTo(7.5f, 11.5f) + close() + moveTo(18.0f, 8.75f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(1.25f) + curveToRelative(0.66f, 0.0f, 1.27f, 0.24f, 1.75f, 0.63f) + lineTo(21.0f, 6.73f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 20.0f, 3.0f) + lineTo(4.0f, 3.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.0f, 3.73f) + verticalLineToRelative(13.52f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(6.0f, 21.0f) + verticalLineToRelative(-5.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.0f) + curveToRelative(0.23f, 0.0f, 0.44f, 0.1f, 0.57f, 0.27f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 13.0f, 14.05f) + lineTo(13.0f, 14.0f) + curveToRelative(0.0f, -0.35f, 0.07f, -0.69f, 0.19f, -1.0f) + lineTo(6.75f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(10.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(3.5f, 5.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(16.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(4.0f, 5.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + moveTo(10.0f, 16.5f) + lineTo(10.0f, 21.0f) + lineTo(7.5f, 21.0f) + verticalLineToRelative(-4.5f) + lineTo(10.0f, 16.5f) + close() + moveTo(14.0f, 15.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + lineTo(12.0f, 18.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(16.0f, 18.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(20.5f, 18.0f) + lineTo(23.0f, 18.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(21.0f, 15.0f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(1.0f) + close() + moveTo(15.5f, 14.0f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(12.0f, 21.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + lineTo(23.0f, 19.5f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + close() + } + } + return _buildingRetailToolbox!! + } + +private var _buildingRetailToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingShop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingShop.kt new file mode 100644 index 00000000..108e664b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingShop.kt @@ -0,0 +1,119 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BuildingShop: ImageVector + get() { + if (_buildingShop != null) { + return _buildingShop!! + } + _buildingShop = fluentIcon(name = "Filled.BuildingShop") { + fluentPath { + moveTo(10.5f, 14.5f) + lineTo(10.5f, 22.0f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(-7.5f) + horizontalLineToRelative(3.0f) + close() + moveTo(17.26f, 13.0f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.76f, 0.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.5f) + curveToRelative(0.42f, 0.0f, 0.76f, -0.33f, 0.76f, -0.75f) + verticalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(16.5f, 14.5f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(2.0f) + close() + moveTo(8.17f, 7.0f) + lineTo(3.5f, 7.0f) + verticalLineToRelative(1.17f) + curveToRelative(0.0f, 1.18f, 0.88f, 2.15f, 2.02f, 2.3f) + lineToRelative(0.15f, 0.02f) + horizontalLineToRelative(0.16f) + curveToRelative(1.24f, 0.0f, 2.25f, -0.95f, 2.33f, -2.16f) + lineTo(8.16f, 7.0f) + close() + moveTo(14.33f, 7.0f) + lineTo(9.67f, 7.0f) + verticalLineToRelative(1.17f) + curveToRelative(0.0f, 1.18f, 0.87f, 2.15f, 2.01f, 2.3f) + lineToRelative(0.16f, 0.02f) + lineTo(12.0f, 10.49f) + curveToRelative(1.23f, 0.0f, 2.24f, -0.95f, 2.33f, -2.16f) + lineTo(14.33f, 7.0f) + close() + moveTo(20.5f, 7.0f) + horizontalLineToRelative(-4.67f) + verticalLineToRelative(1.17f) + curveToRelative(0.0f, 1.18f, 0.88f, 2.15f, 2.02f, 2.3f) + lineToRelative(0.16f, 0.02f) + horizontalLineToRelative(0.16f) + curveToRelative(1.23f, 0.0f, 2.24f, -0.95f, 2.32f, -2.16f) + lineTo(20.49f, 7.0f) + close() + moveTo(9.06f, 3.5f) + lineTo(6.33f, 3.5f) + lineToRelative(-1.86f, 2.0f) + horizontalLineToRelative(3.98f) + lineToRelative(0.61f, -2.0f) + close() + moveTo(13.36f, 3.5f) + horizontalLineToRelative(-2.73f) + lineToRelative(-0.62f, 2.0f) + horizontalLineToRelative(3.97f) + lineToRelative(-0.61f, -2.0f) + close() + moveTo(17.67f, 3.5f) + horizontalLineToRelative(-2.73f) + lineToRelative(0.61f, 2.0f) + horizontalLineToRelative(3.98f) + lineToRelative(-1.86f, -2.0f) + close() + moveTo(2.2f, 5.74f) + lineToRelative(3.25f, -3.5f) + curveToRelative(0.12f, -0.13f, 0.28f, -0.2f, 0.45f, -0.23f) + lineTo(6.0f, 2.0f) + horizontalLineToRelative(12.0f) + curveToRelative(0.17f, 0.0f, 0.34f, 0.06f, 0.47f, 0.17f) + lineToRelative(0.08f, 0.07f) + lineToRelative(3.27f, 3.53f) + lineToRelative(0.03f, 0.04f) + curveToRelative(0.1f, 0.13f, 0.15f, 0.29f, 0.15f, 0.44f) + verticalLineToRelative(1.92f) + curveToRelative(0.0f, 1.0f, -0.38f, 1.9f, -1.0f, 2.58f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(12.0f, 22.0f) + verticalLineToRelative(-8.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(6.0f, 22.0f) + lineTo(3.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + verticalLineToRelative(-10.6f) + arcToRelative(3.82f, 3.82f, 0.0f, false, true, -1.0f, -2.39f) + lineTo(2.01f, 6.3f) + curveToRelative(-0.02f, -0.14f, 0.01f, -0.28f, 0.09f, -0.4f) + lineToRelative(0.05f, -0.08f) + lineToRelative(0.05f, -0.07f) + close() + } + } + return _buildingShop!! + } + +private var _buildingShop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingSkyscraper.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingSkyscraper.kt new file mode 100644 index 00000000..a853bcec --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingSkyscraper.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BuildingSkyscraper: ImageVector + get() { + if (_buildingSkyscraper != null) { + return _buildingSkyscraper!! + } + _buildingSkyscraper = fluentIcon(name = "Filled.BuildingSkyscraper") { + fluentPath { + moveTo(8.75f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(8.0f, 4.0f) + horizontalLineToRelative(3.0f) + lineTo(11.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-1.5f) + close() + moveTo(11.0f, 5.0f) + lineTo(6.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(6.0f, 7.0f) + horizontalLineToRelative(7.0f) + lineTo(13.0f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(11.0f, 5.0f) + close() + moveTo(17.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(18.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(4.0f, 10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.96f, -2.0f) + horizontalLineToRelative(7.08f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 15.0f, 10.0f) + arcToRelative(5.75f, 5.75f, 0.0f, false, true, 5.5f, 5.75f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-8.5f) + verticalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(4.0f, 10.0f) + close() + moveTo(19.0f, 15.75f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, -4.0f, -4.24f) + lineTo(15.0f, 20.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.25f) + close() + moveTo(12.25f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(11.25f, 15.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(8.75f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(7.75f, 15.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + } + } + return _buildingSkyscraper!! + } + +private var _buildingSkyscraper: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingTownhouse.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingTownhouse.kt new file mode 100644 index 00000000..f5f11c15 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/BuildingTownhouse.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.BuildingTownhouse: ImageVector + get() { + if (_buildingTownhouse != null) { + return _buildingTownhouse!! + } + _buildingTownhouse = fluentIcon(name = "Filled.BuildingTownhouse") { + fluentPath { + moveTo(8.48f, 3.53f) + curveToRelative(-0.69f, -0.7f, -1.82f, -0.7f, -2.5f, 0.0f) + lineToRelative(-2.34f, 2.4f) + curveTo(3.23f, 6.35f, 3.0f, 6.91f, 3.0f, 7.5f) + verticalLineToRelative(11.75f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(8.0f, 21.0f) + verticalLineToRelative(-4.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + lineTo(11.25f, 7.29f) + curveToRelative(0.0f, -0.59f, -0.23f, -1.15f, -0.64f, -1.57f) + lineTo(8.48f, 3.53f) + close() + moveTo(12.75f, 7.29f) + lineTo(12.75f, 16.0f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(16.0f, 21.0f) + horizontalLineToRelative(3.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(21.0f, 7.5f) + curveToRelative(0.0f, -0.59f, -0.23f, -1.15f, -0.64f, -1.57f) + lineToRelative(-2.33f, -2.4f) + curveToRelative(-0.69f, -0.7f, -1.82f, -0.7f, -2.51f, 0.0f) + lineToRelative(-2.13f, 2.19f) + curveToRelative(-0.41f, 0.42f, -0.64f, 0.98f, -0.64f, 1.57f) + close() + moveTo(12.75f, 17.5f) + lineTo(12.75f, 21.0f) + horizontalLineToRelative(1.75f) + verticalLineToRelative(-3.5f) + horizontalLineToRelative(-1.75f) + close() + moveTo(11.25f, 21.0f) + verticalLineToRelative(-3.5f) + lineTo(9.5f, 17.5f) + lineTo(9.5f, 21.0f) + horizontalLineToRelative(1.75f) + close() + moveTo(8.12f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(16.88f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + close() + moveTo(8.13f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(16.87f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + close() + } + } + return _buildingTownhouse!! + } + +private var _buildingTownhouse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Calculator.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Calculator.kt new file mode 100644 index 00000000..bad0fe72 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Calculator.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Calculator: ImageVector + get() { + if (_calculator != null) { + return _calculator!! + } + _calculator = fluentIcon(name = "Filled.Calculator") { + fluentPath { + moveTo(4.0f, 5.25f) + curveTo(4.0f, 3.45f, 5.46f, 2.0f, 7.25f, 2.0f) + horizontalLineToRelative(9.5f) + curveTo(18.55f, 2.0f, 20.0f, 3.46f, 20.0f, 5.25f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-9.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 4.0f, 18.75f) + lineTo(4.0f, 5.25f) + close() + moveTo(9.0f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(17.0f, 7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + lineTo(9.0f, 5.0f) + close() + moveTo(9.5f, 13.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) + close() + moveTo(8.25f, 18.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + moveTo(17.0f, 13.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) + close() + moveTo(15.75f, 18.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + moveTo(13.25f, 13.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) + close() + moveTo(12.0f, 18.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + } + } + return _calculator!! + } + +private var _calculator: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalculatorArrowClockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalculatorArrowClockwise.kt new file mode 100644 index 00000000..490b8696 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalculatorArrowClockwise.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalculatorArrowClockwise: ImageVector + get() { + if (_calculatorArrowClockwise != null) { + return _calculatorArrowClockwise!! + } + _calculatorArrowClockwise = fluentIcon(name = "Filled.CalculatorArrowClockwise") { + fluentPath { + moveTo(4.0f, 5.25f) + curveTo(4.0f, 3.45f, 5.46f, 2.0f, 7.25f, 2.0f) + horizontalLineToRelative(9.5f) + curveTo(18.55f, 2.0f, 20.0f, 3.46f, 20.0f, 5.25f) + verticalLineToRelative(5.03f) + arcToRelative(1.76f, 1.76f, 0.0f, false, false, -0.23f, 0.29f) + arcTo(7.0f, 7.0f, 0.0f, false, false, 12.1f, 22.0f) + lineTo(7.25f, 22.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 4.0f, 18.75f) + lineTo(4.0f, 5.25f) + close() + moveTo(9.0f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(17.0f, 7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + lineTo(9.0f, 5.0f) + close() + moveTo(9.5f, 13.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) + close() + moveTo(8.25f, 18.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + moveTo(21.25f, 15.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(22.0f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(0.63f) + arcTo(6.0f, 6.0f, 0.0f, true, false, 23.0f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, true, true, -1.69f, -3.51f) + horizontalLineToRelative(0.01f) + verticalLineToRelative(0.01f) + lineTo(18.5f, 13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.75f) + close() + } + } + return _calculatorArrowClockwise!! + } + +private var _calculatorArrowClockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalculatorMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalculatorMultiple.kt new file mode 100644 index 00000000..98d77d4e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalculatorMultiple.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalculatorMultiple: ImageVector + get() { + if (_calculatorMultiple != null) { + return _calculatorMultiple!! + } + _calculatorMultiple = fluentIcon(name = "Filled.CalculatorMultiple") { + fluentPath { + moveTo(6.14f, 2.0f) + arcTo(3.14f, 3.14f, 0.0f, false, false, 3.0f, 5.14f) + verticalLineToRelative(11.22f) + curveToRelative(0.0f, 1.74f, 1.4f, 3.14f, 3.14f, 3.14f) + horizontalLineToRelative(8.72f) + curveToRelative(1.74f, 0.0f, 3.14f, -1.4f, 3.14f, -3.14f) + lineTo(18.0f, 5.14f) + curveTo(18.0f, 3.4f, 16.6f, 2.0f, 14.86f, 2.0f) + lineTo(6.14f, 2.0f) + close() + moveTo(7.75f, 5.0f) + horizontalLineToRelative(5.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-5.5f) + curveTo(6.78f, 9.5f, 6.0f, 8.72f, 6.0f, 7.75f) + verticalLineToRelative(-1.0f) + curveTo(6.0f, 5.78f, 6.78f, 5.0f, 7.75f, 5.0f) + close() + moveTo(5.75f, 12.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) + close() + moveTo(10.5f, 10.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(10.5f, 14.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(7.0f, 14.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(12.75f, 12.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) + close() + moveTo(14.0f, 14.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(5.8f, 20.49f) + curveToRelative(0.45f, 0.9f, 1.38f, 1.51f, 2.46f, 1.51f) + horizontalLineToRelative(6.99f) + curveToRelative(2.9f, 0.0f, 5.25f, -2.35f, 5.25f, -5.25f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -1.07f, -0.62f, -2.0f, -1.51f, -2.46f) + lineToRelative(0.01f, 0.35f) + lineTo(19.0f, 16.75f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.75f, 3.75f) + lineTo(6.14f, 20.5f) + lineToRelative(-0.34f, -0.01f) + close() + } + } + return _calculatorMultiple!! + } + +private var _calculatorMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Calendar3Day.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Calendar3Day.kt new file mode 100644 index 00000000..31ed1153 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Calendar3Day.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Calendar3Day: ImageVector + get() { + if (_calendar3Day != null) { + return _calendar3Day!! + } + _calendar3Day = fluentIcon(name = "Filled.Calendar3Day") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(7.75f, 7.0f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(8.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-8.7f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 7.74f, 7.0f) + close() + moveTo(16.25f, 7.0f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(8.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-8.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) + close() + moveTo(12.0f, 7.0f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(8.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-8.7f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 12.0f, 7.0f) + close() + } + } + return _calendar3Day!! + } + +private var _calendar3Day: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarAdd.kt new file mode 100644 index 00000000..68843649 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarAdd.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarAdd: ImageVector + get() { + if (_calendarAdd != null) { + return _calendarAdd!! + } + _calendarAdd = fluentIcon(name = "Filled.CalendarAdd") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(21.0f, 8.5f) + verticalLineToRelative(3.52f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 8.5f) + horizontalLineToRelative(18.0f) + close() + moveTo(17.5f, 14.0f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + lineToRelative(-0.01f, 0.09f) + lineTo(17.0f, 17.0f) + horizontalLineToRelative(-2.59f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + lineToRelative(-0.01f, 0.09f) + verticalLineToRelative(0.09f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + lineToRelative(0.09f, 0.01f) + lineTo(17.0f, 18.0f) + verticalLineToRelative(2.59f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + lineToRelative(0.09f, 0.01f) + horizontalLineToRelative(0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + lineToRelative(0.01f, -0.09f) + lineTo(18.0f, 18.0f) + horizontalLineToRelative(2.59f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + lineToRelative(0.01f, -0.09f) + verticalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) + lineTo(20.5f, 17.0f) + lineTo(18.0f, 17.0f) + verticalLineToRelative(-2.59f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) + lineTo(17.5f, 14.0f) + close() + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + lineTo(21.0f, 7.0f) + lineTo(3.0f, 7.0f) + verticalLineToRelative(-0.75f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + } + } + return _calendarAdd!! + } + +private var _calendarAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarAgenda.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarAgenda.kt new file mode 100644 index 00000000..130d2a03 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarAgenda.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarAgenda: ImageVector + get() { + if (_calendarAgenda != null) { + return _calendarAgenda!! + } + _calendarAgenda = fluentIcon(name = "Filled.CalendarAgenda") { + fluentPath { + moveTo(21.0f, 17.75f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + close() + moveTo(17.0f, 7.75f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-8.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(17.0f, 16.25f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-8.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(17.0f, 12.0f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-8.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.7f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 17.0f, 12.0f) + close() + } + } + return _calendarAgenda!! + } + +private var _calendarAgenda: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarArrowCounterclockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarArrowCounterclockwise.kt new file mode 100644 index 00000000..71f22600 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarArrowCounterclockwise.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarArrowCounterclockwise: ImageVector + get() { + if (_calendarArrowCounterclockwise != null) { + return _calendarArrowCounterclockwise!! + } + _calendarArrowCounterclockwise = fluentIcon(name = "Filled.CalendarArrowCounterclockwise") { + fluentPath { + moveTo(21.0f, 17.75f) + lineTo(21.0f, 8.5f) + lineTo(7.48f, 8.5f) + curveToRelative(0.08f, 0.53f, -0.09f, 1.08f, -0.5f, 1.49f) + lineToRelative(-2.0f, 2.0f) + curveToRelative(-0.53f, 0.54f, -1.33f, 0.65f, -1.98f, 0.34f) + verticalLineToRelative(5.42f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + close() + moveTo(6.0f, 16.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) + close() + moveTo(10.75f, 16.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) + close() + moveTo(6.0f, 11.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) + close() + moveTo(10.75f, 11.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) + close() + moveTo(15.5f, 11.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) + close() + moveTo(21.0f, 7.0f) + verticalLineToRelative(-0.75f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(2.69f) + lineToRelative(-0.72f, -0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineToRelative(-0.72f, 0.72f) + lineTo(4.5f, 7.0f) + lineTo(21.0f, 7.0f) + close() + } + } + return _calendarArrowCounterclockwise!! + } + +private var _calendarArrowCounterclockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarArrowDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarArrowDown.kt new file mode 100644 index 00000000..587179cf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarArrowDown.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarArrowDown: ImageVector + get() { + if (_calendarArrowDown != null) { + return _calendarArrowDown!! + } + _calendarArrowDown = fluentIcon(name = "Filled.CalendarArrowDown") { + fluentPath { + moveTo(21.0f, 8.5f) + verticalLineToRelative(3.52f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 8.5f) + horizontalLineToRelative(18.0f) + close() + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + lineTo(21.0f, 7.0f) + lineTo(3.0f, 7.0f) + verticalLineToRelative(-0.75f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(18.0f, 14.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(4.8f) + lineToRelative(-1.65f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.5f, 2.5f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineTo(18.0f, 19.29f) + lineTo(18.0f, 14.5f) + close() + } + } + return _calendarArrowDown!! + } + +private var _calendarArrowDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarArrowRight.kt new file mode 100644 index 00000000..e5dbb006 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarArrowRight.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarArrowRight: ImageVector + get() { + if (_calendarArrowRight != null) { + return _calendarArrowRight!! + } + _calendarArrowRight = fluentIcon(name = "Filled.CalendarArrowRight") { + fluentPath { + moveTo(21.0f, 8.5f) + verticalLineToRelative(3.52f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 8.5f) + horizontalLineToRelative(18.0f) + close() + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + lineTo(21.0f, 7.0f) + lineTo(3.0f, 7.0f) + verticalLineToRelative(-0.75f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(19.29f, 17.0f) + lineTo(14.5f, 17.0f) + close() + } + } + return _calendarArrowRight!! + } + +private var _calendarArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarAssistant.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarAssistant.kt new file mode 100644 index 00000000..9c7ec2df --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarAssistant.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarAssistant: ImageVector + get() { + if (_calendarAssistant != null) { + return _calendarAssistant!! + } + _calendarAssistant = fluentIcon(name = "Filled.CalendarAssistant") { + fluentPath { + moveTo(21.0f, 8.5f) + verticalLineToRelative(3.52f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) + horizontalLineTo(6.25f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + verticalLineTo(8.5f) + horizontalLineToRelative(18.0f) + close() + } + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineTo(7.0f) + horizontalLineTo(3.0f) + verticalLineToRelative(-0.75f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + } + fluentPath { + moveTo(17.5f, 23.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) + close() + moveTo(17.1f, 14.0f) + horizontalLineToRelative(1.43f) + curveToRelative(0.35f, 0.0f, 0.59f, 0.35f, 0.47f, 0.68f) + lineTo(18.5f, 16.0f) + horizontalLineToRelative(0.63f) + curveToRelative(0.38f, 0.0f, 0.6f, 0.41f, 0.4f, 0.73f) + lineToRelative(-2.63f, 4.03f) + arcToRelative(0.52f, 0.52f, 0.0f, false, true, -0.92f, -0.44f) + lineToRelative(0.77f, -2.32f) + horizontalLineToRelative(-0.78f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.47f, -0.68f) + lineToRelative(1.13f, -3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.47f, -0.32f) + close() + } + } + return _calendarAssistant!! + } + +private var _calendarAssistant: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarCancel.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarCancel.kt new file mode 100644 index 00000000..63316076 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarCancel.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarCancel: ImageVector + get() { + if (_calendarCancel != null) { + return _calendarCancel!! + } + _calendarCancel = fluentIcon(name = "Filled.CalendarCancel") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(15.02f, 15.02f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.71f) + lineToRelative(1.77f, 1.77f) + lineToRelative(-1.76f, 1.77f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, 0.7f) + lineToRelative(1.77f, -1.76f) + lineToRelative(1.77f, 1.77f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, -0.71f) + lineToRelative(-1.76f, -1.77f) + lineToRelative(1.77f, -1.77f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.78f, 1.76f) + lineToRelative(-1.77f, -1.77f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + close() + moveTo(21.0f, 8.5f) + verticalLineToRelative(3.52f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 8.5f) + horizontalLineToRelative(18.0f) + close() + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + lineTo(21.0f, 7.0f) + lineTo(3.0f, 7.0f) + verticalLineToRelative(-0.75f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + } + } + return _calendarCancel!! + } + +private var _calendarCancel: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarChat.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarChat.kt new file mode 100644 index 00000000..32172e86 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarChat.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarChat: ImageVector + get() { + if (_calendarChat != null) { + return _calendarChat!! + } + _calendarChat = fluentIcon(name = "Filled.CalendarChat") { + fluentPath { + moveTo(21.0f, 8.5f) + verticalLineToRelative(3.52f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, -10.0f, 5.48f) + curveToRelative(0.0f, 0.99f, 0.22f, 1.92f, 0.61f, 2.76f) + lineToRelative(-0.22f, 0.74f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 8.5f) + horizontalLineToRelative(18.0f) + close() + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + lineTo(21.0f, 7.0f) + lineTo(3.0f, 7.0f) + verticalLineToRelative(-0.75f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(21.0f, 13.26f) + arcTo(5.48f, 5.48f, 0.0f, false, false, 17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -4.81f, 8.17f) + lineToRelative(-0.67f, 2.19f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.63f, 0.62f) + lineToRelative(2.18f, -0.67f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 21.0f, 13.25f) + close() + moveTo(15.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + horizontalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(17.5f, 19.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + close() + } + } + return _calendarChat!! + } + +private var _calendarChat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarCheckmark.kt new file mode 100644 index 00000000..edda0dc0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarCheckmark.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarCheckmark: ImageVector + get() { + if (_calendarCheckmark != null) { + return _calendarCheckmark!! + } + _calendarCheckmark = fluentIcon(name = "Filled.CalendarCheckmark") { + fluentPath { + moveTo(21.0f, 8.5f) + verticalLineToRelative(3.52f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 8.5f) + horizontalLineToRelative(18.0f) + close() + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + lineTo(21.0f, 7.0f) + lineTo(3.0f, 7.0f) + verticalLineToRelative(-0.75f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-3.65f, 3.64f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _calendarCheckmark!! + } + +private var _calendarCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarClock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarClock.kt new file mode 100644 index 00000000..2faa67d2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarClock.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarClock: ImageVector + get() { + if (_calendarClock != null) { + return _calendarClock!! + } + _calendarClock = fluentIcon(name = "Filled.CalendarClock") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + lineTo(21.0f, 7.0f) + lineTo(3.0f, 7.0f) + verticalLineToRelative(-0.75f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(21.0f, 8.5f) + verticalLineToRelative(3.52f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 8.5f) + horizontalLineToRelative(18.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(17.5f, 17.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + lineTo(17.0f, 18.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + verticalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + verticalLineToRelative(2.5f) + close() + } + } + return _calendarClock!! + } + +private var _calendarClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarDataBar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarDataBar.kt new file mode 100644 index 00000000..c630d776 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarDataBar.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarDataBar: ImageVector + get() { + if (_calendarDataBar != null) { + return _calendarDataBar!! + } + _calendarDataBar = fluentIcon(name = "Filled.CalendarDataBar") { + fluentPath { + moveTo(21.0f, 8.5f) + verticalLineToRelative(4.55f) + curveToRelative(-0.37f, 0.07f, -0.7f, 0.23f, -1.0f, 0.45f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) + verticalLineToRelative(2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.0f, 2.0f) + lineTo(11.0f, 21.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 8.5f) + horizontalLineToRelative(18.0f) + close() + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + lineTo(21.0f, 7.0f) + lineTo(3.0f, 7.0f) + verticalLineToRelative(-0.75f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.5f, 12.0f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) + verticalLineToRelative(-8.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + close() + moveTo(13.5f, 16.0f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(4.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + close() + moveTo(20.0f, 15.5f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + verticalLineToRelative(6.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + verticalLineToRelative(-6.0f) + close() + } + } + return _calendarDataBar!! + } + +private var _calendarDataBar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarDay.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarDay.kt new file mode 100644 index 00000000..0ee8703f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarDay.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarDay: ImageVector + get() { + if (_calendarDay != null) { + return _calendarDay!! + } + _calendarDay = fluentIcon(name = "Filled.CalendarDay") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(16.25f, 11.0f) + horizontalLineToRelative(-8.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(8.5f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + close() + moveTo(15.5f, 12.5f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(-7.0f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(7.0f) + close() + moveTo(16.25f, 7.25f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + } + } + return _calendarDay!! + } + +private var _calendarDay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarEdit.kt new file mode 100644 index 00000000..6bfafd90 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarEdit.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarEdit: ImageVector + get() { + if (_calendarEdit != null) { + return _calendarEdit!! + } + _calendarEdit = fluentIcon(name = "Filled.CalendarEdit") { + fluentPath { + moveTo(11.52f, 19.58f) + lineTo(11.16f, 21.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 8.5f) + horizontalLineToRelative(18.0f) + verticalLineToRelative(2.51f) + curveToRelative(-0.93f, -0.08f, -1.9f, 0.24f, -2.6f, 0.95f) + lineToRelative(-5.91f, 5.9f) + curveToRelative(-0.47f, 0.48f, -0.8f, 1.07f, -0.97f, 1.72f) + close() + moveTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + lineTo(3.0f, 7.0f) + horizontalLineToRelative(18.0f) + verticalLineToRelative(-0.75f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.34f, -0.6f, 0.78f, -0.71f, 1.25f) + lineToRelative(-0.46f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _calendarEdit!! + } + +private var _calendarEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarEmpty.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarEmpty.kt new file mode 100644 index 00000000..7071c838 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarEmpty.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarEmpty: ImageVector + get() { + if (_calendarEmpty != null) { + return _calendarEmpty!! + } + _calendarEmpty = fluentIcon(name = "Filled.CalendarEmpty") { + fluentPath { + moveTo(21.0f, 8.5f) + verticalLineToRelative(9.25f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineTo(6.25f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + verticalLineTo(8.5f) + horizontalLineToRelative(18.0f) + close() + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineTo(7.0f) + horizontalLineTo(3.0f) + verticalLineToRelative(-0.75f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + } + } + return _calendarEmpty!! + } + +private var _calendarEmpty: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarError.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarError.kt new file mode 100644 index 00000000..1882808d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarError.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarError: ImageVector + get() { + if (_calendarError != null) { + return _calendarError!! + } + _calendarError = fluentIcon(name = "Filled.CalendarError") { + fluentPath { + moveTo(21.0f, 12.02f) + lineTo(21.0f, 8.5f) + lineTo(3.0f, 8.5f) + verticalLineToRelative(9.25f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(5.77f) + arcTo(6.5f, 6.5f, 0.0f, false, true, 21.0f, 12.02f) + close() + moveTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + lineTo(3.0f, 7.0f) + horizontalLineToRelative(18.0f) + verticalLineToRelative(-0.75f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(17.0f, 14.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + verticalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(18.13f, 20.5f) + arcToRelative(0.62f, 0.62f, 0.0f, true, true, -1.25f, 0.0f) + arcToRelative(0.62f, 0.62f, 0.0f, false, true, 1.25f, 0.0f) + close() + } + } + return _calendarError!! + } + +private var _calendarError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarLock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarLock.kt new file mode 100644 index 00000000..4999de3e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarLock.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarLock: ImageVector + get() { + if (_calendarLock != null) { + return _calendarLock!! + } + _calendarLock = fluentIcon(name = "Filled.CalendarLock") { + fluentPath { + moveTo(21.0f, 8.5f) + verticalLineToRelative(3.05f) + arcTo(3.49f, 3.49f, 0.0f, false, false, 15.0f, 14.0f) + verticalLineToRelative(0.05f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.0f, 2.45f) + lineTo(13.0f, 21.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 8.5f) + horizontalLineToRelative(18.0f) + close() + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + lineTo(21.0f, 7.0f) + lineTo(3.0f, 7.0f) + verticalLineToRelative(-0.75f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(16.0f, 15.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(6.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(21.0f, 15.0f) + verticalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) + verticalLineToRelative(1.0f) + close() + moveTo(17.5f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(19.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + } + } + return _calendarLock!! + } + +private var _calendarLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarMonth.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarMonth.kt new file mode 100644 index 00000000..41de8502 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarMonth.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarMonth: ImageVector + get() { + if (_calendarMonth != null) { + return _calendarMonth!! + } + _calendarMonth = fluentIcon(name = "Filled.CalendarMonth") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(7.75f, 13.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(12.0f, 13.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(7.75f, 8.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(12.0f, 8.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(16.25f, 8.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + } + } + return _calendarMonth!! + } + +private var _calendarMonth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarMultiple.kt new file mode 100644 index 00000000..a7a307c1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarMultiple.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarMultiple: ImageVector + get() { + if (_calendarMultiple != null) { + return _calendarMultiple!! + } + _calendarMultiple = fluentIcon(name = "Filled.CalendarMultiple") { + fluentPath { + moveTo(20.0f, 5.0f) + verticalLineToRelative(11.35f) + arcTo(3.65f, 3.65f, 0.0f, false, true, 16.35f, 20.0f) + horizontalLineTo(5.01f) + curveToRelative(0.57f, 0.9f, 1.59f, 1.5f, 2.74f, 1.5f) + horizontalLineToRelative(8.6f) + curveToRelative(2.84f, 0.0f, 5.15f, -2.3f, 5.15f, -5.15f) + verticalLineToRelative(-8.6f) + curveToRelative(0.0f, -1.15f, -0.6f, -2.17f, -1.5f, -2.74f) + close() + moveTo(2.0f, 7.5f) + verticalLineToRelative(8.25f) + curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) + horizontalLineToRelative(10.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineTo(7.5f) + horizontalLineTo(2.0f) + close() + moveTo(5.25f, 2.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) + verticalLineTo(6.0f) + horizontalLineToRelative(17.0f) + verticalLineToRelative(-0.75f) + curveTo(19.0f, 3.45f, 17.54f, 2.0f, 15.75f, 2.0f) + horizontalLineTo(5.25f) + close() + } + } + return _calendarMultiple!! + } + +private var _calendarMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarPerson.kt new file mode 100644 index 00000000..156fbcb4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarPerson.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarPerson: ImageVector + get() { + if (_calendarPerson != null) { + return _calendarPerson!! + } + _calendarPerson = fluentIcon(name = "Filled.CalendarPerson") { + fluentPath { + moveTo(21.0f, 12.05f) + lineTo(21.0f, 8.5f) + lineTo(3.0f, 8.5f) + verticalLineToRelative(9.25f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(6.92f) + arcToRelative(3.74f, 3.74f, 0.0f, false, true, -0.17f, -1.13f) + verticalLineToRelative(-0.1f) + arcTo(2.77f, 2.77f, 0.0f, false, true, 15.77f, 17.0f) + horizontalLineToRelative(0.28f) + arcToRelative(3.49f, 3.49f, 0.0f, false, true, 2.45f, -6.0f) + curveToRelative(0.98f, 0.0f, 1.86f, 0.4f, 2.5f, 1.05f) + close() + moveTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + lineTo(3.0f, 7.0f) + horizontalLineToRelative(18.0f) + verticalLineToRelative(-0.75f) + close() + moveTo(21.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(23.0f, 19.88f) + curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) + reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _calendarPerson!! + } + +private var _calendarPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarPlay.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarPlay.kt new file mode 100644 index 00000000..f9cfa8b9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarPlay.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarPlay: ImageVector + get() { + if (_calendarPlay != null) { + return _calendarPlay!! + } + _calendarPlay = fluentIcon(name = "Filled.CalendarPlay") { + fluentPath { + moveTo(21.0f, 8.5f) + verticalLineToRelative(3.52f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 8.5f) + horizontalLineToRelative(18.0f) + close() + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + lineTo(21.0f, 7.0f) + lineTo(3.0f, 7.0f) + verticalLineToRelative(-0.75f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.5f, 23.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) + close() + moveTo(16.6f, 15.0f) + curveToRelative(0.11f, 0.0f, 0.22f, 0.03f, 0.31f, 0.1f) + lineToRelative(2.81f, 1.84f) + arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.28f, 0.52f) + arcToRelative(0.65f, 0.65f, 0.0f, false, true, -0.11f, 0.36f) + arcToRelative(0.56f, 0.56f, 0.0f, false, true, -0.16f, 0.16f) + lineToRelative(-2.8f, 1.92f) + arcToRelative(0.66f, 0.66f, 0.0f, false, true, -0.17f, 0.07f) + arcToRelative(0.55f, 0.55f, 0.0f, false, true, -0.4f, -0.02f) + arcToRelative(0.7f, 0.7f, 0.0f, false, true, -0.18f, -0.13f) + arcToRelative(0.61f, 0.61f, 0.0f, false, true, -0.18f, -0.44f) + verticalLineToRelative(-3.76f) + arcToRelative(0.62f, 0.62f, 0.0f, false, true, 0.37f, -0.57f) + arcToRelative(0.53f, 0.53f, 0.0f, false, true, 0.23f, -0.05f) + close() + } + } + return _calendarPlay!! + } + +private var _calendarPlay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarQuestionMark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarQuestionMark.kt new file mode 100644 index 00000000..2464ec96 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarQuestionMark.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarQuestionMark: ImageVector + get() { + if (_calendarQuestionMark != null) { + return _calendarQuestionMark!! + } + _calendarQuestionMark = fluentIcon(name = "Filled.CalendarQuestionMark") { + fluentPath { + moveTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + lineTo(3.0f, 7.0f) + horizontalLineToRelative(18.0f) + verticalLineToRelative(-0.75f) + close() + moveTo(21.0f, 12.02f) + lineTo(21.0f, 8.5f) + lineTo(3.0f, 8.5f) + verticalLineToRelative(9.25f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(5.77f) + arcTo(6.5f, 6.5f, 0.0f, false, true, 21.0f, 12.02f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(16.88f, 20.38f) + arcToRelative(0.62f, 0.62f, 0.0f, true, true, 1.24f, 0.0f) + arcToRelative(0.62f, 0.62f, 0.0f, false, true, -1.24f, 0.0f) + close() + moveTo(15.65f, 15.83f) + curveToRelative(-0.01f, -1.14f, 0.8f, -1.96f, 1.85f, -1.96f) + curveToRelative(1.03f, 0.0f, 1.85f, 0.85f, 1.85f, 1.95f) + curveToRelative(0.0f, 0.51f, -0.15f, 0.85f, -0.52f, 1.3f) + lineToRelative(-0.14f, 0.15f) + lineToRelative(-0.27f, 0.3f) + lineToRelative(-0.1f, 0.1f) + lineToRelative(-0.08f, 0.11f) + curveToRelative(-0.18f, 0.23f, -0.24f, 0.39f, -0.24f, 0.6f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + curveToRelative(0.0f, -0.53f, 0.15f, -0.86f, 0.53f, -1.32f) + lineToRelative(0.14f, -0.16f) + lineToRelative(0.27f, -0.29f) + lineToRelative(0.1f, -0.1f) + lineToRelative(0.09f, -0.12f) + curveToRelative(0.17f, -0.22f, 0.22f, -0.37f, 0.22f, -0.57f) + curveToRelative(0.0f, -0.55f, -0.38f, -0.95f, -0.85f, -0.95f) + curveToRelative(-0.5f, 0.0f, -0.86f, 0.37f, -0.85f, 0.95f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + close() + } + } + return _calendarQuestionMark!! + } + +private var _calendarQuestionMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarReply.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarReply.kt new file mode 100644 index 00000000..6a8ca0b5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarReply.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarReply: ImageVector + get() { + if (_calendarReply != null) { + return _calendarReply!! + } + _calendarReply = fluentIcon(name = "Filled.CalendarReply") { + fluentPath { + moveTo(21.0f, 8.5f) + verticalLineToRelative(3.52f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 8.5f) + horizontalLineToRelative(18.0f) + close() + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + lineTo(21.0f, 7.0f) + lineTo(3.0f, 7.0f) + verticalLineToRelative(-0.75f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(16.35f, 15.35f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(1.5f, 1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-0.64f, -0.65f) + horizontalLineToRelative(2.04f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(0.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-0.25f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-2.04f) + lineToRelative(0.64f, -0.65f) + close() + } + } + return _calendarReply!! + } + +private var _calendarReply: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarRtl.kt new file mode 100644 index 00000000..272d6602 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarRtl.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarRtl: ImageVector + get() { + if (_calendarRtl != null) { + return _calendarRtl!! + } + _calendarRtl = fluentIcon(name = "Filled.CalendarRtl") { + fluentPath { + moveTo(3.0f, 8.5f) + verticalLineToRelative(9.25f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 8.5f) + lineTo(3.0f, 8.5f) + close() + moveTo(16.75f, 15.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(12.0f, 15.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(16.75f, 10.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(12.0f, 10.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(7.25f, 10.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + lineTo(3.0f, 7.0f) + horizontalLineToRelative(18.0f) + verticalLineToRelative(-0.75f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + } + } + return _calendarRtl!! + } + +private var _calendarRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarSettings.kt new file mode 100644 index 00000000..83f175f3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarSettings.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarSettings: ImageVector + get() { + if (_calendarSettings != null) { + return _calendarSettings!! + } + _calendarSettings = fluentIcon(name = "Filled.CalendarSettings") { + fluentPath { + moveTo(21.0f, 8.5f) + verticalLineToRelative(3.52f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 8.5f) + horizontalLineToRelative(18.0f) + close() + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + lineTo(21.0f, 7.0f) + lineTo(3.0f, 7.0f) + verticalLineToRelative(-0.75f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(14.28f, 13.98f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.58f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) + lineToRelative(0.54f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) + lineToRelative(-0.18f, 0.64f) + curveToRelative(0.43f, 0.38f, 0.93f, 0.7f, 1.48f, 0.92f) + lineToRelative(0.5f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.47f, -0.9f) + lineToRelative(-0.2f, -0.7f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, -2.5f) + lineToRelative(0.58f, -0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, -1.8f) + lineToRelative(-0.55f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.2f, -0.63f) + curveToRelative(-0.45f, -0.39f, -0.95f, -0.7f, -1.5f, -0.93f) + lineToRelative(-0.49f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.91f) + lineToRelative(0.2f, 0.69f) + close() + moveTo(17.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) + close() + } + } + return _calendarSettings!! + } + +private var _calendarSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarShield.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarShield.kt new file mode 100644 index 00000000..acb1120f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarShield.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarShield: ImageVector + get() { + if (_calendarShield != null) { + return _calendarShield!! + } + _calendarShield = fluentIcon(name = "Filled.CalendarShield") { + fluentPath { + moveTo(21.0f, 8.5f) + verticalLineToRelative(4.11f) + arcToRelative(3.16f, 3.16f, 0.0f, false, true, -1.0f, -0.38f) + curveToRelative(-0.33f, -0.19f, -0.66f, -0.45f, -1.0f, -0.8f) + arcToRelative(1.39f, 1.39f, 0.0f, false, false, -2.0f, 0.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -2.6f, 1.24f) + curveToRelative(-0.81f, 0.0f, -1.4f, 0.67f, -1.4f, 1.41f) + verticalLineToRelative(2.8f) + curveToRelative(0.04f, 1.15f, 0.3f, 2.2f, 0.82f, 3.1f) + curveToRelative(0.2f, 0.37f, 0.44f, 0.71f, 0.72f, 1.02f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 8.5f) + horizontalLineToRelative(18.0f) + close() + moveTo(18.0f, 12.0f) + arcToRelative(0.4f, 0.4f, 0.0f, false, false, -0.28f, 0.12f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -3.32f, 1.55f) + arcToRelative(0.4f, 0.4f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(2.77f) + curveToRelative(0.04f, 1.01f, 0.27f, 1.9f, 0.69f, 2.65f) + curveToRelative(0.32f, 0.58f, 0.76f, 1.08f, 1.31f, 1.5f) + curveToRelative(0.52f, 0.4f, 1.15f, 0.73f, 1.87f, 0.98f) + curveToRelative(0.09f, 0.03f, 0.18f, 0.03f, 0.26f, 0.0f) + curveToRelative(2.56f, -0.89f, 3.87f, -2.71f, 3.87f, -5.4f) + lineTo(22.0f, 14.0f) + arcToRelative(0.4f, 0.4f, 0.0f, false, false, -0.4f, -0.33f) + arcToRelative(4.21f, 4.21f, 0.0f, false, true, -2.1f, -0.57f) + arcToRelative(5.55f, 5.55f, 0.0f, false, true, -1.22f, -0.98f) + arcTo(0.4f, 0.4f, 0.0f, false, false, 18.0f, 12.0f) + close() + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + lineTo(21.0f, 7.0f) + lineTo(3.0f, 7.0f) + verticalLineToRelative(-0.75f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + } + } + return _calendarShield!! + } + +private var _calendarShield: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarStar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarStar.kt new file mode 100644 index 00000000..1f67f46b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarStar.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarStar: ImageVector + get() { + if (_calendarStar != null) { + return _calendarStar!! + } + _calendarStar = fluentIcon(name = "Filled.CalendarStar") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(21.0f, 8.5f) + verticalLineToRelative(3.52f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 8.5f) + horizontalLineToRelative(18.0f) + close() + moveTo(16.98f, 14.05f) + lineTo(16.94f, 14.15f) + lineTo(16.39f, 15.93f) + horizontalLineToRelative(-1.8f) + curveToRelative(-0.54f, 0.0f, -0.78f, 0.67f, -0.42f, 1.04f) + lineToRelative(0.07f, 0.06f) + lineToRelative(1.46f, 1.1f) + lineToRelative(-0.56f, 1.8f) + curveToRelative(-0.16f, 0.52f, 0.38f, 0.97f, 0.82f, 0.72f) + lineToRelative(0.08f, -0.05f) + lineToRelative(1.46f, -1.1f) + lineToRelative(1.46f, 1.1f) + curveToRelative(0.43f, 0.33f, 1.0f, -0.07f, 0.92f, -0.58f) + lineToRelative(-0.02f, -0.1f) + lineToRelative(-0.56f, -1.78f) + lineToRelative(1.46f, -1.1f) + curveToRelative(0.43f, -0.33f, 0.25f, -1.02f, -0.25f, -1.1f) + lineTo(18.61f, 15.94f) + lineToRelative(-0.55f, -1.8f) + arcToRelative(0.58f, 0.58f, 0.0f, false, false, -1.08f, -0.1f) + close() + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + lineTo(21.0f, 7.0f) + lineTo(3.0f, 7.0f) + verticalLineToRelative(-0.75f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + } + } + return _calendarStar!! + } + +private var _calendarStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarSync.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarSync.kt new file mode 100644 index 00000000..b34d8491 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarSync.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarSync: ImageVector + get() { + if (_calendarSync != null) { + return _calendarSync!! + } + _calendarSync = fluentIcon(name = "Filled.CalendarSync") { + fluentPath { + moveTo(21.0f, 8.5f) + verticalLineToRelative(3.52f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 8.5f) + horizontalLineToRelative(18.0f) + close() + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + lineTo(21.0f, 7.0f) + lineTo(3.0f, 7.0f) + verticalLineToRelative(-0.75f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) + close() + moveTo(20.5f, 14.0f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + verticalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.8f, -0.59f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) + verticalLineToRelative(-0.55f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + close() + moveTo(15.0f, 19.95f) + verticalLineToRelative(0.55f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.77f, 0.65f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) + close() + } + } + return _calendarSync!! + } + +private var _calendarSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarToday.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarToday.kt new file mode 100644 index 00000000..36a6f1ee --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarToday.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarToday: ImageVector + get() { + if (_calendarToday != null) { + return _calendarToday!! + } + _calendarToday = fluentIcon(name = "Filled.CalendarToday") { + fluentPath { + moveTo(13.25f, 11.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(21.0f, 8.5f) + verticalLineToRelative(9.25f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-4.0f) + lineTo(13.75f, 19.43f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 1.66f, -2.99f) + lineToRelative(-2.25f, -2.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.32f, 0.0f) + lineToRelative(-2.25f, 2.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 1.66f, 2.99f) + lineTo(10.25f, 21.0f) + horizontalLineToRelative(-4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 8.5f) + horizontalLineToRelative(18.0f) + close() + moveTo(12.0f, 14.0f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, -4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) + close() + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + lineTo(21.0f, 7.0f) + lineTo(3.0f, 7.0f) + verticalLineToRelative(-0.75f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(14.81f, 18.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 0.06f) + lineToRelative(-1.0f, -0.89f) + verticalLineToRelative(3.83f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-3.83f) + lineToRelative(-1.0f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.0f, -1.13f) + lineToRelative(2.25f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.0f, 0.0f) + lineToRelative(2.25f, 2.0f) + curveToRelative(0.3f, 0.27f, 0.34f, 0.75f, 0.06f, 1.06f) + close() + } + } + return _calendarToday!! + } + +private var _calendarToday: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarToolbox.kt new file mode 100644 index 00000000..f52ea379 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarToolbox.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarToolbox: ImageVector + get() { + if (_calendarToolbox != null) { + return _calendarToolbox!! + } + _calendarToolbox = fluentIcon(name = "Filled.CalendarToolbox") { + fluentPath { + moveTo(11.0f, 16.5f) + lineTo(11.0f, 21.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 8.5f) + horizontalLineToRelative(18.0f) + verticalLineToRelative(3.38f) + arcToRelative(2.74f, 2.74f, 0.0f, false, false, -1.75f, -0.63f) + lineTo(15.6f, 11.25f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 13.0f, 14.0f) + verticalLineToRelative(0.05f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.0f, 2.45f) + close() + moveTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + lineTo(3.0f, 7.0f) + horizontalLineToRelative(18.0f) + verticalLineToRelative(-0.75f) + close() + moveTo(14.0f, 15.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + lineTo(12.0f, 18.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(16.0f, 18.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(20.5f, 18.0f) + lineTo(23.0f, 18.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(21.0f, 15.0f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(1.0f) + close() + moveTo(15.5f, 14.0f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(12.0f, 21.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + lineTo(23.0f, 19.5f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + close() + } + } + return _calendarToolbox!! + } + +private var _calendarToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarWeekNumbers.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarWeekNumbers.kt new file mode 100644 index 00000000..9fd671e2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarWeekNumbers.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarWeekNumbers: ImageVector + get() { + if (_calendarWeekNumbers != null) { + return _calendarWeekNumbers!! + } + _calendarWeekNumbers = fluentIcon(name = "Filled.CalendarWeekNumbers") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(8.49f, 7.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.49f, 0.1f) + verticalLineToRelative(1.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + verticalLineToRelative(-1.1f) + close() + moveTo(8.49f, 15.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.49f, 0.1f) + verticalLineToRelative(1.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + verticalLineToRelative(-1.1f) + close() + moveTo(7.76f, 10.67f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(7.0f, 12.57f) + verticalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + verticalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.74f, -0.65f) + close() + } + } + return _calendarWeekNumbers!! + } + +private var _calendarWeekNumbers: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarWeekStart.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarWeekStart.kt new file mode 100644 index 00000000..01cdb167 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarWeekStart.kt @@ -0,0 +1,39 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarWeekStart: ImageVector + get() { + if (_calendarWeekStart != null) { + return _calendarWeekStart!! + } + _calendarWeekStart = fluentIcon(name = "Filled.CalendarWeekStart") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(7.75f, 7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-8.5f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 7.75f, 7.0f) + close() + } + } + return _calendarWeekStart!! + } + +private var _calendarWeekStart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarWorkWeek.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarWorkWeek.kt new file mode 100644 index 00000000..0e1e8c88 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalendarWorkWeek.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalendarWorkWeek: ImageVector + get() { + if (_calendarWorkWeek != null) { + return _calendarWorkWeek!! + } + _calendarWorkWeek = fluentIcon(name = "Filled.CalendarWorkWeek") { + fluentPath { + moveTo(8.5f, 11.0f) + lineTo(8.5f, 8.5f) + horizontalLineToRelative(7.0f) + lineTo(15.5f, 11.0f) + horizontalLineToRelative(-7.0f) + close() + moveTo(17.75f, 21.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(7.75f, 7.0f) + horizontalLineToRelative(8.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _calendarWorkWeek!! + } + +private var _calendarWorkWeek: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Call.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Call.kt new file mode 100644 index 00000000..c9730cf6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Call.kt @@ -0,0 +1,39 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Call: ImageVector + get() { + if (_call != null) { + return _call!! + } + _call = fluentIcon(name = "Filled.Call") { + fluentPath { + moveToRelative(7.77f, 2.44f) + lineToRelative(1.08f, -0.35f) + curveToRelative(1.0f, -0.32f, 2.09f, 0.2f, 2.52f, 1.22f) + lineToRelative(0.86f, 2.03f) + curveToRelative(0.37f, 0.88f, 0.16f, 1.92f, -0.52f, 2.57f) + lineToRelative(-1.9f, 1.8f) + arcToRelative(8.68f, 8.68f, 0.0f, false, false, 3.36f, 5.77f) + lineToRelative(2.28f, -0.76f) + curveToRelative(0.86f, -0.29f, 1.8f, 0.04f, 2.33f, 0.82f) + lineToRelative(1.23f, 1.8f) + curveToRelative(0.62f, 0.91f, 0.5f, 2.16f, -0.26f, 2.93f) + lineToRelative(-0.81f, 0.82f) + arcToRelative(3.02f, 3.02f, 0.0f, false, true, -3.06f, 0.77f) + curveToRelative(-2.53f, -0.79f, -4.87f, -3.14f, -7.0f, -7.05f) + curveTo(5.75f, 10.9f, 5.0f, 7.57f, 5.62f, 4.84f) + arcToRelative(3.26f, 3.26f, 0.0f, false, true, 2.15f, -2.4f) + close() + } + } + return _call!! + } + +private var _call: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallAdd.kt new file mode 100644 index 00000000..03e585fa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallAdd.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CallAdd: ImageVector + get() { + if (_callAdd != null) { + return _callAdd!! + } + _callAdd = fluentIcon(name = "Filled.CallAdd") { + fluentPath { + moveToRelative(9.37f, 3.31f) + lineToRelative(0.86f, 2.03f) + curveToRelative(0.37f, 0.88f, 0.16f, 1.92f, -0.52f, 2.57f) + lineToRelative(-1.9f, 1.8f) + arcToRelative(8.01f, 8.01f, 0.0f, false, false, 1.1f, 3.17f) + arcToRelative(8.68f, 8.68f, 0.0f, false, false, 2.26f, 2.6f) + lineToRelative(2.28f, -0.76f) + curveToRelative(0.86f, -0.29f, 1.8f, 0.04f, 2.33f, 0.82f) + lineToRelative(1.23f, 1.8f) + curveToRelative(0.62f, 0.91f, 0.5f, 2.16f, -0.26f, 2.92f) + lineToRelative(-0.81f, 0.83f) + arcToRelative(3.02f, 3.02f, 0.0f, false, true, -3.06f, 0.77f) + curveToRelative(-2.53f, -0.79f, -4.87f, -3.14f, -7.0f, -7.05f) + curveTo(3.75f, 10.89f, 3.0f, 7.57f, 3.62f, 4.84f) + arcToRelative(3.26f, 3.26f, 0.0f, false, true, 2.15f, -2.4f) + lineToRelative(1.08f, -0.35f) + curveToRelative(1.0f, -0.32f, 2.09f, 0.2f, 2.52f, 1.22f) + close() + moveTo(17.15f, 2.01f) + lineTo(17.25f, 2.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.64f) + lineToRelative(0.01f, 0.1f) + lineTo(18.0f, 6.0f) + horizontalLineToRelative(3.25f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.75f, 0.65f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(18.0f, 7.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) + verticalLineToRelative(-0.1f) + lineTo(16.5f, 7.5f) + horizontalLineToRelative(-3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + horizontalLineToRelative(0.1f) + lineTo(16.5f, 6.0f) + lineTo(16.5f, 2.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.75f) + horizontalLineToRelative(0.1f) + horizontalLineToRelative(-0.1f) + close() + } + } + return _callAdd!! + } + +private var _callAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallCheckmark.kt new file mode 100644 index 00000000..071257ba --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallCheckmark.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CallCheckmark: ImageVector + get() { + if (_callCheckmark != null) { + return _callCheckmark!! + } + _callCheckmark = fluentIcon(name = "Filled.CallCheckmark") { + fluentPath { + moveTo(21.78f, 3.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineTo(15.0f, 7.94f) + lineToRelative(-1.87f, -1.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(2.4f, 2.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 0.0f) + lineToRelative(6.25f, -6.25f) + close() + moveTo(6.85f, 2.1f) + lineToRelative(-1.08f, 0.34f) + arcToRelative(3.26f, 3.26f, 0.0f, false, false, -2.15f, 2.4f) + curveToRelative(-0.62f, 2.73f, 0.13f, 6.05f, 2.26f, 9.97f) + curveToRelative(2.13f, 3.91f, 4.47f, 6.26f, 7.0f, 7.05f) + curveToRelative(1.08f, 0.34f, 2.24f, 0.04f, 3.06f, -0.77f) + lineToRelative(0.81f, -0.82f) + curveToRelative(0.77f, -0.77f, 0.88f, -2.02f, 0.26f, -2.92f) + lineToRelative(-1.23f, -1.81f) + arcToRelative(2.03f, 2.03f, 0.0f, false, false, -2.33f, -0.82f) + lineToRelative(-2.28f, 0.76f) + arcToRelative(8.68f, 8.68f, 0.0f, false, true, -2.27f, -2.6f) + arcToRelative(8.01f, 8.01f, 0.0f, false, true, -1.08f, -3.17f) + lineToRelative(1.9f, -1.8f) + curveToRelative(0.67f, -0.65f, 0.88f, -1.69f, 0.5f, -2.57f) + lineToRelative(-0.85f, -2.03f) + arcTo(2.06f, 2.06f, 0.0f, false, false, 6.85f, 2.1f) + close() + } + } + return _callCheckmark!! + } + +private var _callCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallDismiss.kt new file mode 100644 index 00000000..243723b2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallDismiss.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CallDismiss: ImageVector + get() { + if (_callDismiss != null) { + return _callDismiss!! + } + _callDismiss = fluentIcon(name = "Filled.CallDismiss") { + fluentPath { + moveTo(21.78f, 2.22f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineTo(18.56f, 6.5f) + lineToRelative(3.22f, 3.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(17.5f, 7.56f) + lineToRelative(-3.22f, 3.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(3.22f, -3.22f) + lineToRelative(-3.22f, -3.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(3.22f, 3.22f) + lineToRelative(3.22f, -3.22f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(9.37f, 3.32f) + lineToRelative(0.86f, 2.02f) + curveToRelative(0.37f, 0.88f, 0.16f, 1.92f, -0.52f, 2.57f) + lineToRelative(-1.9f, 1.8f) + arcToRelative(8.01f, 8.01f, 0.0f, false, false, 1.1f, 3.17f) + arcToRelative(8.68f, 8.68f, 0.0f, false, false, 2.26f, 2.6f) + lineToRelative(2.28f, -0.76f) + curveToRelative(0.86f, -0.29f, 1.8f, 0.04f, 2.33f, 0.82f) + lineToRelative(1.23f, 1.8f) + curveToRelative(0.62f, 0.91f, 0.5f, 2.16f, -0.26f, 2.93f) + lineToRelative(-0.81f, 0.82f) + arcToRelative(3.02f, 3.02f, 0.0f, false, true, -3.06f, 0.77f) + curveToRelative(-2.53f, -0.79f, -4.87f, -3.14f, -7.0f, -7.05f) + curveTo(3.75f, 10.9f, 3.0f, 7.57f, 3.62f, 4.84f) + arcToRelative(3.26f, 3.26f, 0.0f, false, true, 2.15f, -2.4f) + lineToRelative(1.08f, -0.35f) + curveToRelative(1.0f, -0.32f, 2.09f, 0.2f, 2.52f, 1.22f) + close() + } + } + return _callDismiss!! + } + +private var _callDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallEnd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallEnd.kt new file mode 100644 index 00000000..51d02d06 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallEnd.kt @@ -0,0 +1,39 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CallEnd: ImageVector + get() { + if (_callEnd != null) { + return _callEnd!! + } + _callEnd = fluentIcon(name = "Filled.CallEnd") { + fluentPath { + moveToRelative(21.95f, 13.0f) + lineToRelative(-0.2f, 1.03f) + arcToRelative(1.92f, 1.92f, 0.0f, false, true, -2.12f, 1.52f) + lineToRelative(-2.05f, -0.2f) + arcToRelative(2.16f, 2.16f, 0.0f, false, true, -1.87f, -1.56f) + lineToRelative(-0.64f, -2.36f) + arcToRelative(8.1f, 8.1f, 0.0f, false, false, -6.23f, 0.18f) + lineToRelative(-0.39f, 2.21f) + arcToRelative(1.9f, 1.9f, 0.0f, false, true, -1.7f, 1.55f) + lineToRelative(-2.04f, 0.2f) + arcToRelative(2.17f, 2.17f, 0.0f, false, true, -2.28f, -1.5f) + lineToRelative(-0.3f, -1.05f) + arcToRelative(2.82f, 2.82f, 0.0f, false, true, 0.71f, -2.85f) + curveToRelative(1.78f, -1.73f, 4.75f, -2.6f, 8.9f, -2.6f) + curveToRelative(4.17f, 0.0f, 7.23f, 0.86f, 9.2f, 2.59f) + curveToRelative(0.82f, 0.73f, 1.2f, 1.8f, 1.0f, 2.83f) + close() + } + } + return _callEnd!! + } + +private var _callEnd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallForward.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallForward.kt new file mode 100644 index 00000000..8b25effd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallForward.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CallForward: ImageVector + get() { + if (_callForward != null) { + return _callForward!! + } + _callForward = fluentIcon(name = "Filled.CallForward") { + fluentPath { + moveToRelative(9.93f, 2.05f) + lineToRelative(1.03f, 0.2f) + curveToRelative(0.97f, 0.18f, 1.63f, 1.1f, 1.53f, 2.12f) + lineToRelative(-0.2f, 2.05f) + curveToRelative(-0.09f, 0.89f, -0.72f, 1.65f, -1.57f, 1.88f) + lineToRelative(-2.35f, 0.63f) + arcToRelative(8.1f, 8.1f, 0.0f, false, false, 0.18f, 6.23f) + lineToRelative(2.2f, 0.4f) + arcToRelative(1.9f, 1.9f, 0.0f, false, true, 1.55f, 1.7f) + lineToRelative(0.2f, 2.04f) + arcToRelative(2.17f, 2.17f, 0.0f, false, true, -1.5f, 2.28f) + lineToRelative(-1.04f, 0.3f) + curveToRelative(-1.04f, 0.32f, -2.12f, 0.04f, -2.85f, -0.71f) + curveToRelative(-1.74f, -1.78f, -2.6f, -4.75f, -2.61f, -8.91f) + curveToRelative(0.0f, -4.17f, 0.86f, -7.23f, 2.59f, -9.2f) + arcToRelative(3.05f, 3.05f, 0.0f, false, true, 2.84f, -1.01f) + close() + moveTo(16.7f, 7.15f) + lineTo(16.78f, 7.22f) + lineTo(20.78f, 11.22f) + curveToRelative(0.26f, 0.26f, 0.29f, 0.68f, 0.07f, 0.97f) + lineToRelative(-0.07f, 0.09f) + lineToRelative(-4.0f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.97f) + lineToRelative(0.07f, -0.09f) + lineToRelative(2.71f, -2.72f) + lineTo(12.0f, 12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.39f, 0.27f, -0.7f, 0.64f, -0.75f) + horizontalLineToRelative(6.54f) + lineToRelative(-2.72f, -2.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + curveToRelative(0.24f, -0.24f, 0.6f, -0.28f, 0.87f, -0.14f) + lineToRelative(0.1f, 0.07f) + close() + } + } + return _callForward!! + } + +private var _callForward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallInbound.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallInbound.kt new file mode 100644 index 00000000..d6963689 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallInbound.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CallInbound: ImageVector + get() { + if (_callInbound != null) { + return _callInbound!! + } + _callInbound = fluentIcon(name = "Filled.CallInbound") { + fluentPath { + moveToRelative(9.37f, 3.31f) + lineToRelative(0.86f, 2.03f) + curveToRelative(0.37f, 0.88f, 0.16f, 1.92f, -0.52f, 2.57f) + lineToRelative(-1.9f, 1.8f) + arcToRelative(8.01f, 8.01f, 0.0f, false, false, 1.1f, 3.17f) + arcToRelative(8.68f, 8.68f, 0.0f, false, false, 2.26f, 2.6f) + lineToRelative(2.28f, -0.76f) + curveToRelative(0.86f, -0.29f, 1.8f, 0.04f, 2.33f, 0.82f) + lineToRelative(1.23f, 1.81f) + curveToRelative(0.62f, 0.9f, 0.5f, 2.15f, -0.26f, 2.92f) + lineToRelative(-0.81f, 0.82f) + arcToRelative(3.02f, 3.02f, 0.0f, false, true, -3.06f, 0.77f) + curveToRelative(-2.53f, -0.79f, -4.87f, -3.14f, -7.0f, -7.05f) + curveTo(3.75f, 10.9f, 3.0f, 7.57f, 3.62f, 4.84f) + arcToRelative(3.26f, 3.26f, 0.0f, false, true, 2.15f, -2.4f) + lineToRelative(1.08f, -0.34f) + curveToRelative(1.0f, -0.33f, 2.09f, 0.2f, 2.52f, 1.21f) + close() + moveTo(14.5f, 8.44f) + lineTo(20.72f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.97f) + lineToRelative(-0.07f, 0.09f) + lineToRelative(-6.22f, 6.22f) + horizontalLineToRelative(4.69f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineTo(13.6f, 10.99f) + lineToRelative(-0.1f, -0.03f) + lineToRelative(-0.07f, -0.03f) + arcToRelative(0.72f, 0.72f, 0.0f, false, true, -0.21f, -0.15f) + lineToRelative(-0.04f, -0.04f) + lineToRelative(-0.03f, -0.04f) + lineToRelative(-0.04f, -0.06f) + lineToRelative(-0.05f, -0.1f) + lineToRelative(-0.03f, -0.09f) + lineToRelative(-0.02f, -0.07f) + verticalLineToRelative(-0.08f) + lineToRelative(-0.01f, -0.05f) + verticalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(4.79f) + lineToRelative(6.22f, -6.22f) + lineToRelative(-6.22f, 6.22f) + close() + } + } + return _callInbound!! + } + +private var _callInbound: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallMissed.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallMissed.kt new file mode 100644 index 00000000..5a741588 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallMissed.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CallMissed: ImageVector + get() { + if (_callMissed != null) { + return _callMissed!! + } + _callMissed = fluentIcon(name = "Filled.CallMissed") { + fluentPath { + moveTo(20.93f, 5.66f) + curveToRelative(-1.96f, -1.73f, -5.02f, -2.6f, -9.18f, -2.59f) + curveToRelative(-4.16f, 0.0f, -7.13f, 0.88f, -8.9f, 2.6f) + arcToRelative(2.82f, 2.82f, 0.0f, false, false, -0.73f, 2.86f) + lineToRelative(0.31f, 1.03f) + arcToRelative(2.17f, 2.17f, 0.0f, false, false, 2.28f, 1.51f) + lineToRelative(2.03f, -0.2f) + arcToRelative(1.9f, 1.9f, 0.0f, false, false, 1.71f, -1.55f) + lineToRelative(0.4f, -2.2f) + arcToRelative(8.1f, 8.1f, 0.0f, false, true, 6.22f, -0.18f) + lineToRelative(0.64f, 2.35f) + curveToRelative(0.22f, 0.85f, 0.98f, 1.48f, 1.87f, 1.57f) + lineToRelative(2.05f, 0.2f) + curveToRelative(1.03f, 0.1f, 1.94f, -0.56f, 2.12f, -1.53f) + lineToRelative(0.2f, -1.04f) + curveToRelative(0.2f, -1.02f, -0.2f, -2.1f, -1.02f, -2.83f) + close() + moveTo(11.75f, 14.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.75f) + horizontalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(12.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, -11.0f) + close() + moveTo(8.0f, 16.5f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, 8.0f, 0.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -8.0f, 0.0f) + close() + } + } + return _callMissed!! + } + +private var _callMissed: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallOutbound.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallOutbound.kt new file mode 100644 index 00000000..52669854 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallOutbound.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CallOutbound: ImageVector + get() { + if (_callOutbound != null) { + return _callOutbound!! + } + _callOutbound = fluentIcon(name = "Filled.CallOutbound") { + fluentPath { + moveToRelative(9.37f, 3.31f) + lineToRelative(0.86f, 2.03f) + curveToRelative(0.37f, 0.88f, 0.16f, 1.92f, -0.52f, 2.57f) + lineToRelative(-1.9f, 1.8f) + arcToRelative(8.01f, 8.01f, 0.0f, false, false, 1.1f, 3.17f) + arcToRelative(8.68f, 8.68f, 0.0f, false, false, 2.26f, 2.6f) + lineToRelative(2.28f, -0.76f) + curveToRelative(0.86f, -0.29f, 1.8f, 0.04f, 2.33f, 0.82f) + lineToRelative(1.23f, 1.8f) + curveToRelative(0.62f, 0.91f, 0.5f, 2.16f, -0.26f, 2.93f) + lineToRelative(-0.81f, 0.82f) + arcToRelative(3.02f, 3.02f, 0.0f, false, true, -3.06f, 0.77f) + curveToRelative(-2.53f, -0.79f, -4.87f, -3.14f, -7.0f, -7.05f) + curveTo(3.75f, 10.9f, 3.0f, 7.57f, 3.62f, 4.84f) + arcToRelative(3.26f, 3.26f, 0.0f, false, true, 2.15f, -2.4f) + lineToRelative(1.08f, -0.35f) + curveToRelative(1.0f, -0.32f, 2.09f, 0.2f, 2.52f, 1.22f) + close() + moveTo(14.75f, 2.01f) + lineTo(21.4f, 2.01f) + lineToRelative(0.1f, 0.03f) + lineToRelative(0.06f, 0.03f) + curveToRelative(0.08f, 0.03f, 0.16f, 0.09f, 0.22f, 0.15f) + lineToRelative(0.04f, 0.04f) + lineToRelative(0.04f, 0.06f) + lineToRelative(0.06f, 0.09f) + lineToRelative(0.04f, 0.09f) + lineToRelative(0.02f, 0.1f) + lineToRelative(0.02f, 0.09f) + lineTo(22.0f, 9.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(20.5f, 4.57f) + lineToRelative(-6.22f, 6.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.08f) + lineToRelative(-0.08f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.97f) + lineToRelative(0.07f, -0.09f) + lineToRelative(6.22f, -6.22f) + horizontalLineToRelative(-4.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.73f, -0.65f) + lineToRelative(-0.01f, -0.1f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + horizontalLineToRelative(0.1f) + close() + } + } + return _callOutbound!! + } + +private var _callOutbound: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallPark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallPark.kt new file mode 100644 index 00000000..6378c6a1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallPark.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CallPark: ImageVector + get() { + if (_callPark != null) { + return _callPark!! + } + _callPark = fluentIcon(name = "Filled.CallPark") { + fluentPath { + moveToRelative(9.37f, 3.31f) + lineToRelative(0.86f, 2.03f) + curveToRelative(0.37f, 0.88f, 0.16f, 1.92f, -0.52f, 2.57f) + lineToRelative(-1.9f, 1.8f) + arcToRelative(8.01f, 8.01f, 0.0f, false, false, 1.1f, 3.17f) + arcToRelative(8.68f, 8.68f, 0.0f, false, false, 2.26f, 2.6f) + lineToRelative(2.28f, -0.76f) + curveToRelative(0.86f, -0.29f, 1.8f, 0.04f, 2.33f, 0.82f) + lineToRelative(1.23f, 1.81f) + curveToRelative(0.62f, 0.9f, 0.5f, 2.15f, -0.26f, 2.92f) + lineToRelative(-0.81f, 0.82f) + arcToRelative(3.02f, 3.02f, 0.0f, false, true, -3.06f, 0.77f) + curveToRelative(-2.53f, -0.79f, -4.87f, -3.14f, -7.0f, -7.05f) + curveTo(3.75f, 10.9f, 3.0f, 7.57f, 3.62f, 4.84f) + arcToRelative(3.26f, 3.26f, 0.0f, false, true, 2.15f, -2.4f) + lineToRelative(1.08f, -0.34f) + curveToRelative(1.0f, -0.33f, 2.09f, 0.2f, 2.52f, 1.21f) + close() + moveTo(14.75f, 2.0f) + horizontalLineToRelative(2.5f) + curveTo(19.64f, 2.0f, 21.0f, 3.14f, 21.0f, 5.25f) + curveToRelative(0.0f, 2.04f, -1.28f, 3.17f, -3.52f, 3.24f) + lineTo(15.5f, 8.49f) + verticalLineToRelative(2.77f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(14.0f, 2.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(2.5f) + horizontalLineToRelative(-2.5f) + close() + moveTo(17.25f, 3.5f) + lineTo(15.5f, 3.5f) + lineTo(15.5f, 7.0f) + horizontalLineToRelative(1.75f) + curveToRelative(1.61f, 0.0f, 2.25f, -0.53f, 2.25f, -1.75f) + curveToRelative(0.0f, -1.17f, -0.59f, -1.7f, -2.06f, -1.75f) + horizontalLineToRelative(-0.2f) + close() + } + } + return _callPark!! + } + +private var _callPark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallPause.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallPause.kt new file mode 100644 index 00000000..13517fb8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallPause.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CallPause: ImageVector + get() { + if (_callPause != null) { + return _callPause!! + } + _callPause = fluentIcon(name = "Filled.CallPause") { + fluentPath { + moveTo(15.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-7.5f) + close() + moveTo(19.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-7.5f) + close() + moveTo(10.23f, 5.34f) + lineTo(9.37f, 3.31f) + arcTo(2.06f, 2.06f, 0.0f, false, false, 6.85f, 2.1f) + lineToRelative(-1.08f, 0.34f) + arcToRelative(3.26f, 3.26f, 0.0f, false, false, -2.15f, 2.4f) + curveToRelative(-0.63f, 2.73f, 0.13f, 6.05f, 2.26f, 9.97f) + curveToRelative(2.13f, 3.91f, 4.46f, 6.26f, 7.0f, 7.05f) + curveToRelative(1.08f, 0.34f, 2.24f, 0.04f, 3.06f, -0.77f) + lineToRelative(0.81f, -0.82f) + curveToRelative(0.77f, -0.77f, 0.88f, -2.02f, 0.26f, -2.92f) + lineToRelative(-1.23f, -1.81f) + arcToRelative(2.03f, 2.03f, 0.0f, false, false, -2.33f, -0.82f) + lineToRelative(-2.28f, 0.76f) + arcToRelative(8.68f, 8.68f, 0.0f, false, true, -2.27f, -2.6f) + arcToRelative(8.01f, 8.01f, 0.0f, false, true, -1.08f, -3.17f) + lineToRelative(1.9f, -1.8f) + curveToRelative(0.67f, -0.65f, 0.88f, -1.69f, 0.5f, -2.57f) + close() + } + } + return _callPause!! + } + +private var _callPause: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallProhibited.kt new file mode 100644 index 00000000..d7d704aa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallProhibited.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CallProhibited: ImageVector + get() { + if (_callProhibited != null) { + return _callProhibited!! + } + _callProhibited = fluentIcon(name = "Filled.CallProhibited") { + fluentPath { + moveTo(20.93f, 5.66f) + curveToRelative(-1.96f, -1.73f, -5.02f, -2.6f, -9.18f, -2.59f) + curveToRelative(-4.16f, 0.0f, -7.13f, 0.88f, -8.9f, 2.6f) + arcToRelative(2.82f, 2.82f, 0.0f, false, false, -0.73f, 2.86f) + lineToRelative(0.31f, 1.03f) + arcToRelative(2.17f, 2.17f, 0.0f, false, false, 2.28f, 1.51f) + lineToRelative(2.03f, -0.2f) + arcToRelative(1.9f, 1.9f, 0.0f, false, false, 1.71f, -1.55f) + lineToRelative(0.4f, -2.2f) + arcToRelative(8.1f, 8.1f, 0.0f, false, true, 6.22f, -0.18f) + lineToRelative(0.64f, 2.35f) + curveToRelative(0.22f, 0.85f, 0.98f, 1.48f, 1.87f, 1.57f) + lineToRelative(2.05f, 0.2f) + curveToRelative(1.03f, 0.1f, 1.94f, -0.56f, 2.12f, -1.53f) + lineToRelative(0.2f, -1.04f) + curveToRelative(0.2f, -1.02f, -0.2f, -2.1f, -1.02f, -2.83f) + close() + moveTo(12.0f, 22.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, 11.0f) + close() + moveTo(12.0f, 20.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) + lineToRelative(-5.55f, 5.56f) + curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) + close() + moveTo(8.7f, 18.75f) + lineTo(14.25f, 13.19f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -5.56f, 5.56f) + close() + } + } + return _callProhibited!! + } + +private var _callProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallTransfer.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallTransfer.kt new file mode 100644 index 00000000..001fe516 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CallTransfer.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CallTransfer: ImageVector + get() { + if (_callTransfer != null) { + return _callTransfer!! + } + _callTransfer = fluentIcon(name = "Filled.CallTransfer") { + fluentPath { + moveTo(14.0f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(20.5f, 4.56f) + lineToRelative(-3.97f, 3.97f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(3.97f, -3.97f) + horizontalLineToRelative(-4.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(14.0f, 10.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(12.75f, 12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(10.22f, 5.34f) + lineTo(9.36f, 3.31f) + arcTo(2.06f, 2.06f, 0.0f, false, false, 6.85f, 2.1f) + lineToRelative(-1.08f, 0.35f) + arcToRelative(3.26f, 3.26f, 0.0f, false, false, -2.15f, 2.4f) + curveToRelative(-0.63f, 2.73f, 0.13f, 6.05f, 2.26f, 9.97f) + curveToRelative(2.13f, 3.91f, 4.46f, 6.26f, 7.0f, 7.05f) + curveToRelative(1.08f, 0.34f, 2.24f, 0.04f, 3.05f, -0.77f) + lineToRelative(0.82f, -0.82f) + curveToRelative(0.76f, -0.77f, 0.87f, -2.02f, 0.26f, -2.92f) + lineToRelative(-1.23f, -1.81f) + arcToRelative(2.03f, 2.03f, 0.0f, false, false, -2.33f, -0.82f) + lineToRelative(-2.28f, 0.76f) + arcTo(8.68f, 8.68f, 0.0f, false, true, 7.82f, 9.7f) + lineTo(9.7f, 7.9f) + curveToRelative(0.68f, -0.65f, 0.89f, -1.69f, 0.51f, -2.57f) + close() + } + } + return _callTransfer!! + } + +private var _callTransfer: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalligraphyPen.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalligraphyPen.kt new file mode 100644 index 00000000..6414d753 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CalligraphyPen.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CalligraphyPen: ImageVector + get() { + if (_calligraphyPen != null) { + return _calligraphyPen!! + } + _calligraphyPen = fluentIcon(name = "Filled.CalligraphyPen") { + fluentPath { + moveTo(7.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.9f, 0.67f, 1.64f, 1.54f, 1.74f) + lineToRelative(-1.01f, 2.5f) + curveToRelative(-0.41f, 1.0f, -0.37f, 2.19f, 0.12f, 3.15f) + lineToRelative(3.99f, 7.95f) + curveToRelative(0.14f, 0.3f, 0.36f, 0.53f, 0.61f, 0.69f) + verticalLineTo(12.3f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 1.5f, 0.0f) + verticalLineToRelative(9.48f) + curveToRelative(0.25f, -0.16f, 0.47f, -0.4f, 0.61f, -0.7f) + lineToRelative(4.0f, -7.94f) + curveToRelative(0.48f, -0.96f, 0.52f, -2.14f, 0.11f, -3.15f) + lineToRelative(-1.01f, -2.5f) + curveToRelative(0.87f, -0.1f, 1.54f, -0.84f, 1.54f, -1.74f) + verticalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-3.0f) + close() + } + } + return _calligraphyPen!! + } + +private var _calligraphyPen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Camera.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Camera.kt new file mode 100644 index 00000000..1c178025 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Camera.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Camera: ImageVector + get() { + if (_camera != null) { + return _camera!! + } + _camera = fluentIcon(name = "Filled.Camera") { + fluentPath { + moveTo(13.92f, 2.5f) + curveToRelative(0.8f, 0.0f, 1.54f, 0.43f, 1.94f, 1.11f) + lineToRelative(0.82f, 1.4f) + horizontalLineToRelative(2.07f) + curveTo(20.55f, 5.0f, 22.0f, 6.45f, 22.0f, 8.24f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(5.25f, 20.99f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 17.75f) + verticalLineToRelative(-9.5f) + curveTo(2.0f, 6.45f, 3.46f, 5.0f, 5.25f, 5.0f) + horizontalLineToRelative(2.08f) + lineToRelative(0.88f, -1.42f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 1.91f, -1.08f) + horizontalLineToRelative(3.8f) + close() + moveTo(12.0f, 8.0f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, 0.0f, 9.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 0.0f, -9.0f) + close() + moveTo(12.0f, 9.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) + close() + } + } + return _camera!! + } + +private var _camera: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CameraAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CameraAdd.kt new file mode 100644 index 00000000..62b36d63 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CameraAdd.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CameraAdd: ImageVector + get() { + if (_cameraAdd != null) { + return _cameraAdd!! + } + _cameraAdd = fluentIcon(name = "Filled.CameraAdd") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(17.5f, 14.0f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + lineToRelative(-0.01f, 0.09f) + lineTo(17.0f, 17.0f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(0.18f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.37f, 0.4f, 0.4f) + lineToRelative(0.1f, 0.01f) + lineTo(17.0f, 18.0f) + verticalLineToRelative(2.6f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + horizontalLineToRelative(0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) + lineToRelative(0.01f, -0.1f) + lineTo(18.0f, 18.0f) + horizontalLineToRelative(2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) + verticalLineToRelative(-0.19f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) + horizontalLineToRelative(-0.1f) + lineTo(18.0f, 17.0f) + verticalLineToRelative(-2.59f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) + lineTo(17.5f, 14.0f) + close() + moveTo(13.92f, 2.5f) + curveToRelative(0.8f, 0.0f, 1.54f, 0.43f, 1.94f, 1.11f) + lineToRelative(0.82f, 1.4f) + horizontalLineToRelative(2.07f) + curveTo(20.55f, 5.0f, 22.0f, 6.45f, 22.0f, 8.24f) + verticalLineToRelative(4.56f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, -5.72f, -1.7f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, -5.25f, 5.79f) + arcToRelative(6.51f, 6.51f, 0.0f, false, false, 1.0f, 4.1f) + lineTo(5.24f, 20.99f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 17.75f) + verticalLineToRelative(-9.5f) + curveTo(2.0f, 6.45f, 3.46f, 5.0f, 5.25f, 5.0f) + horizontalLineToRelative(2.08f) + lineToRelative(0.88f, -1.42f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 1.91f, -1.08f) + horizontalLineToRelative(3.8f) + close() + moveTo(12.0f, 9.5f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.85f, 2.06f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -3.51f, 3.87f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 12.0f, 9.5f) + close() + } + } + return _cameraAdd!! + } + +private var _cameraAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CameraDome.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CameraDome.kt new file mode 100644 index 00000000..9c6cfd95 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CameraDome.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CameraDome: ImageVector + get() { + if (_cameraDome != null) { + return _cameraDome!! + } + _cameraDome = fluentIcon(name = "Filled.CameraDome") { + fluentPath { + moveTo(2.0f, 3.75f) + curveTo(2.0f, 2.78f, 2.78f, 2.0f, 3.75f, 2.0f) + horizontalLineToRelative(16.5f) + arcToRelative(1.75f, 1.75f, 0.0f, true, true, 0.0f, 3.5f) + lineTo(3.75f, 5.5f) + curveTo(2.78f, 5.5f, 2.0f, 4.72f, 2.0f, 3.75f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, -8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 8.0f) + close() + moveTo(14.5f, 13.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(3.0f, 7.0f) + horizontalLineToRelative(18.0f) + verticalLineToRelative(6.0f) + arcToRelative(9.0f, 9.0f, 0.0f, true, true, -18.0f, 0.0f) + lineTo(3.0f, 7.0f) + close() + moveTo(12.0f, 19.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) + close() + } + } + return _cameraDome!! + } + +private var _cameraDome: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CameraOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CameraOff.kt new file mode 100644 index 00000000..0a0b2566 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CameraOff.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CameraOff: ImageVector + get() { + if (_cameraOff != null) { + return _cameraOff!! + } + _cameraOff = fluentIcon(name = "Filled.CameraOff") { + fluentPath { + moveTo(2.22f, 2.22f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(18.5f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineToRelative(-0.95f, -0.94f) + curveToRelative(-0.32f, 0.1f, -0.66f, 0.16f, -1.02f, 0.16f) + lineTo(5.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 17.75f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -1.4f, 0.89f, -2.6f, 2.14f, -3.05f) + lineTo(2.22f, 3.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + moveTo(13.82f, 14.88f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -4.2f, -4.2f) + lineTo(8.55f, 9.6f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 6.34f, 6.34f) + lineToRelative(-1.07f, -1.07f) + close() + moveTo(16.44f, 13.26f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, -5.2f, -5.2f) + lineTo(7.65f, 4.47f) + lineToRelative(0.55f, -0.9f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 1.92f, -1.07f) + horizontalLineToRelative(3.8f) + curveToRelative(0.8f, 0.0f, 1.54f, 0.43f, 1.94f, 1.11f) + lineTo(16.68f, 5.0f) + horizontalLineToRelative(2.07f) + curveTo(20.55f, 5.0f, 22.0f, 6.46f, 22.0f, 8.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.32f, -0.05f, 0.64f, -0.14f, 0.93f) + lineToRelative(-5.42f, -5.42f) + close() + } + } + return _cameraOff!! + } + +private var _cameraOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CameraSparkles.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CameraSparkles.kt new file mode 100644 index 00000000..80b3067e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CameraSparkles.kt @@ -0,0 +1,111 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CameraSparkles: ImageVector + get() { + if (_cameraSparkles != null) { + return _cameraSparkles!! + } + _cameraSparkles = fluentIcon(name = "Filled.CameraSparkles") { + fluentPath { + moveTo(15.85f, 6.15f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, 0.69f, 1.11f) + lineToRelative(0.45f, 1.38f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 1.02f, 0.0f) + lineToRelative(0.45f, -1.38f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, 1.8f, -1.8f) + lineToRelative(1.38f, -0.44f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, -1.03f) + horizontalLineToRelative(-0.03f) + lineToRelative(-1.38f, -0.45f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.8f, -1.8f) + lineTo(18.0f, 0.36f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, -1.03f, 0.0f) + lineToRelative(-0.45f, 1.38f) + lineToRelative(-0.01f, 0.03f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.0f, 1.37f) + arcToRelative(2.91f, 2.91f, 0.0f, false, true, -0.76f, 0.4f) + lineToRelative(-0.6f, 0.2f) + lineToRelative(-0.78f, 0.24f) + curveToRelative(-0.1f, 0.04f, -0.2f, 0.1f, -0.26f, 0.2f) + arcToRelative(0.51f, 0.51f, 0.0f, false, false, -0.1f, 0.34f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.1f, 0.3f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.26f, 0.19f) + lineToRelative(1.38f, 0.45f) + arcToRelative(2.83f, 2.83f, 0.0f, false, true, 1.11f, 0.69f) + close() + moveTo(23.02f, 9.96f) + lineTo(23.78f, 10.21f) + horizontalLineToRelative(0.02f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, 0.47f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, 0.1f) + lineToRelative(-0.77f, 0.26f) + arcToRelative(1.58f, 1.58f, 0.0f, false, false, -1.0f, 1.0f) + lineToRelative(-0.24f, 0.76f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.39f, 0.18f) + arcToRelative(0.27f, 0.27f, 0.0f, false, true, -0.1f, -0.05f) + arcToRelative(0.28f, 0.28f, 0.0f, false, true, -0.13f, -0.14f) + lineToRelative(-0.1f, -0.41f) + lineToRelative(-0.1f, -0.35f) + arcToRelative(1.57f, 1.57f, 0.0f, false, false, -1.0f, -1.0f) + lineToRelative(-0.77f, -0.25f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, -0.46f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, -0.1f) + lineToRelative(0.77f, -0.26f) + arcToRelative(1.58f, 1.58f, 0.0f, false, false, 0.98f, -1.0f) + lineToRelative(0.25f, -0.76f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.57f, 0.0f) + lineToRelative(0.25f, 0.77f) + arcToRelative(1.57f, 1.57f, 0.0f, false, false, 1.0f, 1.0f) + close() + moveTo(15.0f, 12.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, -6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 6.0f, 0.0f) + close() + moveTo(22.0f, 17.75f) + verticalLineToRelative(-3.86f) + arcToRelative(1.29f, 1.29f, 0.0f, false, true, -1.29f, -0.12f) + curveToRelative(-0.23f, -0.16f, -0.4f, -0.39f, -0.49f, -0.65f) + lineToRelative(-0.24f, -0.76f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.14f, -0.23f) + arcToRelative(0.74f, 0.74f, 0.0f, false, false, -0.22f, -0.14f) + lineToRelative(-0.79f, -0.25f) + arcToRelative(1.31f, 1.31f, 0.0f, false, true, -0.69f, -1.89f) + arcToRelative(1.57f, 1.57f, 0.0f, false, true, -1.57f, -0.12f) + curveToRelative(-0.26f, -0.2f, -0.46f, -0.46f, -0.57f, -0.77f) + lineToRelative(-0.44f, -1.38f) + curveToRelative(-0.07f, -0.2f, -0.16f, -0.38f, -0.29f, -0.55f) + lineToRelative(-0.15f, -0.17f) + arcToRelative(1.8f, 1.8f, 0.0f, false, false, -0.72f, -0.44f) + lineTo(13.0f, 5.96f) + arcToRelative(1.57f, 1.57f, 0.0f, false, true, -0.74f, -2.36f) + curveToRelative(0.2f, -0.26f, 0.46f, -0.46f, 0.77f, -0.57f) + lineToRelative(1.36f, -0.44f) + lineToRelative(0.07f, -0.02f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.54f, -0.07f) + horizontalLineToRelative(-3.8f) + curveToRelative(-0.78f, 0.0f, -1.5f, 0.4f, -1.91f, 1.08f) + lineTo(7.33f, 5.0f) + lineTo(5.25f, 5.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 8.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 19.55f, 3.46f, 21.0f, 5.25f, 21.0f) + horizontalLineToRelative(13.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + close() + moveTo(7.5f, 12.5f) + arcToRelative(4.5f, 4.5f, 0.0f, true, true, 9.0f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -9.0f, 0.0f) + close() + } + } + return _cameraSparkles!! + } + +private var _cameraSparkles: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CameraSwitch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CameraSwitch.kt new file mode 100644 index 00000000..34e237c3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CameraSwitch.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CameraSwitch: ImageVector + get() { + if (_cameraSwitch != null) { + return _cameraSwitch!! + } + _cameraSwitch = fluentIcon(name = "Filled.CameraSwitch") { + fluentPath { + moveTo(21.25f, 7.5f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(8.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + horizontalLineTo(6.06f) + lineToRelative(0.72f, 0.72f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-2.0f, -2.0f) + lineToRelative(-0.06f, -0.07f) + lineToRelative(-0.01f, -0.01f) + lineToRelative(0.07f, 0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-0.72f, 0.72f) + horizontalLineToRelative(12.69f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(18.2f, 2.15f) + lineToRelative(0.08f, 0.07f) + lineToRelative(2.0f, 2.0f) + lineToRelative(0.07f, 0.08f) + lineToRelative(-0.07f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.06f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(0.72f, -0.72f) + horizontalLineTo(5.25f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + lineToRelative(-0.01f, 0.15f) + verticalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-8.6f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(5.25f, 4.0f) + horizontalLineToRelative(12.69f) + lineToRelative(-0.72f, -0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + close() + moveTo(12.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, 0.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, -8.0f) + close() + } + } + return _cameraSwitch!! + } + +private var _cameraSwitch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cart.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cart.kt new file mode 100644 index 00000000..b8fa30d7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cart.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Cart: ImageVector + get() { + if (_cart != null) { + return _cart!! + } + _cart = fluentIcon(name = "Filled.Cart") { + fluentPath { + moveTo(2.5f, 4.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(0.56f) + curveToRelative(0.95f, 0.0f, 1.52f, 0.64f, 1.84f, 1.23f) + curveToRelative(0.22f, 0.4f, 0.38f, 0.86f, 0.5f, 1.27f) + horizontalLineToRelative(12.6f) + curveToRelative(0.83f, 0.0f, 1.43f, 0.8f, 1.2f, 1.6f) + lineTo(18.12f, 14.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.64f, 2.0f) + lineTo(9.53f, 16.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.65f, -2.02f) + lineToRelative(-0.76f, -2.78f) + lineToRelative(-1.26f, -4.24f) + verticalLineToRelative(-0.01f) + curveToRelative(-0.16f, -0.57f, -0.3f, -1.1f, -0.52f, -1.5f) + curveTo(4.13f, 5.07f, 3.96f, 5.0f, 3.8f, 5.0f) + horizontalLineToRelative(-0.56f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(9.0f, 21.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) + close() + moveTo(16.0f, 21.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) + close() + } + } + return _cart!! + } + +private var _cart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cast.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cast.kt new file mode 100644 index 00000000..90c7af2b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cast.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Cast: ImageVector + get() { + if (_cast != null) { + return _cast!! + } + _cast = fluentIcon(name = "Filled.Cast") { + fluentPath { + moveTo(4.25f, 4.0f) + curveTo(3.01f, 4.0f, 2.0f, 5.0f, 2.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(2.0f, 18.99f, 3.0f, 20.0f, 4.25f, 20.0f) + horizontalLineToRelative(15.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(22.0f, 6.25f) + curveTo(22.0f, 5.01f, 21.0f, 4.0f, 19.75f, 4.0f) + lineTo(4.25f, 4.0f) + close() + moveTo(5.75f, 9.0f) + curveToRelative(4.0f, 0.0f, 7.25f, 3.24f, 7.25f, 7.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(5.75f, 5.75f, 0.0f, false, false, -5.75f, -5.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(5.0f, 12.74f) + curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.75f, -0.75f) + curveToRelative(2.34f, 0.0f, 4.24f, 1.9f, 4.24f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.74f, -2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(7.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + } + } + return _cast!! + } + +private var _cast: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CatchUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CatchUp.kt new file mode 100644 index 00000000..5c0b3f91 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CatchUp.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CatchUp: ImageVector + get() { + if (_catchUp != null) { + return _catchUp!! + } + _catchUp = fluentIcon(name = "Filled.CatchUp") { + fluentPath { + moveTo(11.37f, 7.27f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -3.73f, 0.01f) + lineToRelative(-1.2f, 3.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.47f, 0.32f) + horizontalLineToRelative(-1.4f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.28f, 2.0f) + horizontalLineToRelative(1.12f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.33f, -1.6f) + lineTo(9.51f, 8.0f) + lineToRelative(3.22f, 8.23f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 3.67f, 0.13f) + lineToRelative(1.6f, -3.32f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.44f, -0.29f) + horizontalLineToRelative(0.7f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.3f, -2.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.25f, 1.42f) + lineToRelative(-1.6f, 3.33f) + lineToRelative(-3.22f, -8.23f) + close() + } + } + return _catchUp!! + } + +private var _catchUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cellular3G.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cellular3G.kt new file mode 100644 index 00000000..984656a5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cellular3G.kt @@ -0,0 +1,124 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Cellular3G: ImageVector + get() { + if (_cellular3G != null) { + return _cellular3G!! + } + _cellular3G = fluentIcon(name = "Filled.Cellular3G") { + fluentPath { + moveToRelative(12.9f, 3.62f) + lineToRelative(-0.01f, -0.02f) + arcToRelative(1.03f, 1.03f, 0.0f, false, false, -0.06f, -0.08f) + lineToRelative(-0.13f, -0.16f) + arcToRelative(2.13f, 2.13f, 0.0f, false, false, -0.52f, -0.4f) + arcToRelative(3.03f, 3.03f, 0.0f, false, false, -2.07f, -0.25f) + curveToRelative(-1.09f, 0.2f, -1.63f, 0.97f, -1.87f, 1.6f) + arcTo(3.6f, 3.6f, 0.0f, false, false, 8.0f, 5.45f) + verticalLineToRelative(1.29f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, 2.5f) + horizontalLineToRelative(0.25f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) + verticalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.47f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.97f, 0.75f) + horizontalLineToRelative(-0.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineTo(5.5f) + arcToRelative(1.09f, 1.09f, 0.0f, false, true, 0.02f, -0.18f) + curveToRelative(0.01f, -0.13f, 0.05f, -0.3f, 0.12f, -0.47f) + curveToRelative(0.13f, -0.34f, 0.34f, -0.6f, 0.75f, -0.67f) + curveToRelative(0.6f, -0.1f, 0.91f, 0.01f, 1.06f, 0.1f) + arcToRelative(0.64f, 0.64f, 0.0f, false, true, 0.17f, 0.13f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.28f, -0.79f) + close() + } + fluentPath { + moveTo(4.44f, 4.61f) + arcToRelative(0.8f, 0.8f, 0.0f, false, false, 0.05f, -0.04f) + lineToRelative(0.02f, -0.02f) + lineToRelative(0.02f, -0.01f) + arcToRelative(1.1f, 1.1f, 0.0f, false, true, 0.2f, -0.15f) + curveToRelative(0.13f, -0.07f, 0.3f, -0.14f, 0.52f, -0.14f) + curveToRelative(0.16f, 0.0f, 0.26f, 0.05f, 0.32f, 0.1f) + curveToRelative(0.08f, 0.06f, 0.14f, 0.16f, 0.17f, 0.28f) + curveToRelative(0.04f, 0.18f, 0.0f, 0.34f, -0.06f, 0.44f) + curveToRelative(-0.05f, 0.08f, -0.15f, 0.18f, -0.43f, 0.18f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + curveToRelative(0.25f, 0.0f, 0.36f, 0.08f, 0.4f, 0.14f) + curveToRelative(0.07f, 0.08f, 0.12f, 0.2f, 0.1f, 0.36f) + arcToRelative(0.59f, 0.59f, 0.0f, false, true, -0.14f, 0.36f) + curveToRelative(-0.07f, 0.08f, -0.18f, 0.14f, -0.36f, 0.14f) + curveToRelative(-0.4f, 0.0f, -0.67f, -0.24f, -0.75f, -0.3f) + lineToRelative(-0.01f, -0.02f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.98f, 1.14f) + curveToRelative(-0.01f, -0.01f, 0.18f, 0.17f, 0.47f, 0.34f) + curveToRelative(0.3f, 0.17f, 0.73f, 0.34f, 1.27f, 0.34f) + curveToRelative(1.26f, 0.0f, 1.94f, -0.99f, 2.0f, -1.9f) + curveToRelative(0.03f, -0.46f, -0.08f, -0.95f, -0.39f, -1.35f) + lineToRelative(0.07f, -0.1f) + curveToRelative(0.33f, -0.5f, 0.4f, -1.1f, 0.26f, -1.64f) + curveToRelative(-0.2f, -0.79f, -0.88f, -1.51f, -1.94f, -1.51f) + curveToRelative(-1.05f, 0.0f, -1.76f, 0.7f, -1.69f, 0.64f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.88f, 1.22f) + close() + } + fluentPath { + moveTo(21.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) + verticalLineToRelative(13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + verticalLineTo(7.0f) + close() + } + fluentPath { + moveTo(17.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) + verticalLineToRelative(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + verticalLineTo(10.0f) + close() + } + fluentPath { + moveTo(13.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-7.0f) + close() + } + fluentPath { + moveTo(9.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineToRelative(-4.0f) + close() + } + fluentPath { + moveTo(5.0f, 18.98f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 4.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 0.98f) + verticalLineToRelative(1.04f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 4.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -0.98f) + verticalLineToRelative(-1.04f) + close() + } + } + return _cellular3G!! + } + +private var _cellular3G: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cellular4G.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cellular4G.kt new file mode 100644 index 00000000..19a4beb8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cellular4G.kt @@ -0,0 +1,116 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Cellular4G: ImageVector + get() { + if (_cellular4G != null) { + return _cellular4G!! + } + _cellular4G = fluentIcon(name = "Filled.Cellular4G") { + fluentPath { + moveTo(12.9f, 3.62f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.28f, 0.79f) + lineToRelative(-0.02f, -0.02f) + arcToRelative(0.64f, 0.64f, 0.0f, false, false, -0.15f, -0.12f) + curveToRelative(-0.15f, -0.08f, -0.47f, -0.2f, -1.06f, -0.09f) + curveToRelative(-0.41f, 0.08f, -0.62f, 0.33f, -0.75f, 0.67f) + arcToRelative(2.1f, 2.1f, 0.0f, false, false, -0.14f, 0.65f) + verticalLineToRelative(1.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(0.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.97f, -0.75f) + horizontalLineToRelative(-0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(1.25f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.5f, 2.5f) + horizontalLineToRelative(-0.25f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 8.0f, 6.75f) + verticalLineTo(5.46f) + arcToRelative(2.6f, 2.6f, 0.0f, false, true, 0.03f, -0.34f) + curveToRelative(0.03f, -0.22f, 0.09f, -0.5f, 0.2f, -0.82f) + curveToRelative(0.25f, -0.62f, 0.8f, -1.4f, 1.88f, -1.6f) + curveToRelative(0.92f, -0.16f, 1.6f, 0.0f, 2.07f, 0.26f) + arcToRelative(2.13f, 2.13f, 0.0f, false, true, 0.7f, 0.64f) + lineToRelative(0.01f, 0.01f) + close() + } + fluentPath { + moveTo(4.73f, 3.06f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.77f, 0.64f) + verticalLineToRelative(2.8f) + horizontalLineToRelative(0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineTo(6.5f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + verticalLineTo(8.0f) + horizontalLineTo(3.2f) + arcToRelative(1.2f, 1.2f, 0.0f, false, true, -0.92f, -1.96f) + lineToRelative(2.45f, -2.98f) + close() + moveTo(5.0f, 6.5f) + verticalLineTo(5.09f) + lineTo(3.84f, 6.5f) + horizontalLineTo(5.0f) + close() + } + fluentPath { + moveTo(20.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + verticalLineTo(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + } + fluentPath { + moveTo(16.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + verticalLineTo(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + } + fluentPath { + moveTo(12.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + } + fluentPath { + moveTo(8.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineToRelative(-4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + } + fluentPath { + moveTo(4.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.98f) + verticalLineToRelative(1.04f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.98f) + verticalLineToRelative(-1.04f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 18.0f) + close() + } + } + return _cellular4G!! + } + +private var _cellular4G: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cellular5G.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cellular5G.kt new file mode 100644 index 00000000..12f40805 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cellular5G.kt @@ -0,0 +1,116 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Cellular5G: ImageVector + get() { + if (_cellular5G != null) { + return _cellular5G!! + } + _cellular5G = fluentIcon(name = "Filled.Cellular5G") { + fluentPath { + moveToRelative(12.9f, 3.62f) + lineToRelative(-0.01f, -0.02f) + arcToRelative(1.03f, 1.03f, 0.0f, false, false, -0.06f, -0.08f) + lineToRelative(-0.13f, -0.16f) + arcToRelative(2.13f, 2.13f, 0.0f, false, false, -0.52f, -0.4f) + arcToRelative(3.03f, 3.03f, 0.0f, false, false, -2.07f, -0.25f) + curveToRelative(-1.09f, 0.2f, -1.63f, 0.97f, -1.87f, 1.6f) + arcTo(3.6f, 3.6f, 0.0f, false, false, 8.0f, 5.45f) + verticalLineToRelative(1.29f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, 2.5f) + horizontalLineToRelative(0.25f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) + verticalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.47f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.97f, 0.75f) + horizontalLineToRelative(-0.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineTo(5.5f) + arcToRelative(1.09f, 1.09f, 0.0f, false, true, 0.02f, -0.18f) + curveToRelative(0.01f, -0.13f, 0.05f, -0.3f, 0.12f, -0.47f) + curveToRelative(0.13f, -0.34f, 0.34f, -0.6f, 0.75f, -0.67f) + curveToRelative(0.6f, -0.1f, 0.91f, 0.01f, 1.06f, 0.1f) + arcToRelative(0.64f, 0.64f, 0.0f, false, true, 0.17f, 0.13f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.28f, -0.79f) + close() + } + fluentPath { + moveTo(4.0f, 2.75f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.29f, -0.75f, 0.67f) + lineTo(3.0f, 5.67f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.88f, 0.82f) + lineTo(4.9f, 6.3f) + arcToRelative(0.73f, 0.73f, 0.0f, true, true, 0.13f, 1.45f) + horizontalLineTo(4.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.62f, -0.33f) + lineToRelative(-0.06f, -0.09f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.24f, 0.84f) + lineToRelative(0.05f, 0.08f) + curveToRelative(0.42f, 0.62f, 1.12f, 1.0f, 1.87f, 1.0f) + horizontalLineToRelative(0.22f) + arcToRelative(2.23f, 2.23f, 0.0f, true, false, -0.4f, -4.42f) + horizontalLineToRelative(-0.01f) + lineToRelative(0.06f, -0.58f) + horizontalLineTo(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(4.0f) + close() + } + fluentPath { + moveTo(21.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) + verticalLineToRelative(13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + verticalLineTo(7.0f) + close() + } + fluentPath { + moveTo(17.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) + verticalLineToRelative(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + verticalLineTo(10.0f) + close() + } + fluentPath { + moveTo(13.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-7.0f) + close() + } + fluentPath { + moveTo(9.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineToRelative(-4.0f) + close() + } + fluentPath { + moveTo(5.0f, 18.98f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 4.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 0.98f) + verticalLineToRelative(1.04f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 4.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -0.98f) + verticalLineToRelative(-1.04f) + close() + } + } + return _cellular5G!! + } + +private var _cellular5G: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CellularData1.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CellularData1.kt new file mode 100644 index 00000000..af802e27 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CellularData1.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CellularData1: ImageVector + get() { + if (_cellularData1 != null) { + return _cellularData1!! + } + _cellularData1 = fluentIcon(name = "Filled.CellularData1") { + fluentPath { + moveTo(20.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + lineTo(19.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(16.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + lineTo(15.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(12.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(8.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineToRelative(-4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(4.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.98f) + verticalLineToRelative(1.04f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.98f) + verticalLineToRelative(-1.04f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 17.0f) + close() + } + } + return _cellularData1!! + } + +private var _cellularData1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CellularData2.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CellularData2.kt new file mode 100644 index 00000000..d5075098 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CellularData2.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CellularData2: ImageVector + get() { + if (_cellularData2 != null) { + return _cellularData2!! + } + _cellularData2 = fluentIcon(name = "Filled.CellularData2") { + fluentPath { + moveTo(16.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + lineTo(15.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(12.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(8.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineToRelative(-4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(4.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.98f) + verticalLineToRelative(1.04f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.98f) + verticalLineToRelative(-1.04f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 17.0f) + close() + } + } + return _cellularData2!! + } + +private var _cellularData2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CellularData3.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CellularData3.kt new file mode 100644 index 00000000..6c296e04 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CellularData3.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CellularData3: ImageVector + get() { + if (_cellularData3 != null) { + return _cellularData3!! + } + _cellularData3 = fluentIcon(name = "Filled.CellularData3") { + fluentPath { + moveTo(12.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(8.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineToRelative(-4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(4.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.98f) + verticalLineToRelative(1.04f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.98f) + verticalLineToRelative(-1.04f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 17.0f) + close() + } + } + return _cellularData3!! + } + +private var _cellularData3: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CellularData4.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CellularData4.kt new file mode 100644 index 00000000..fbe64a0b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CellularData4.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CellularData4: ImageVector + get() { + if (_cellularData4 != null) { + return _cellularData4!! + } + _cellularData4 = fluentIcon(name = "Filled.CellularData4") { + fluentPath { + moveTo(8.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineToRelative(-4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(4.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.98f) + verticalLineToRelative(1.04f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.98f) + verticalLineToRelative(-1.04f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 17.0f) + close() + } + } + return _cellularData4!! + } + +private var _cellularData4: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CellularData5.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CellularData5.kt new file mode 100644 index 00000000..a1321c84 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CellularData5.kt @@ -0,0 +1,30 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CellularData5: ImageVector + get() { + if (_cellularData5 != null) { + return _cellularData5!! + } + _cellularData5 = fluentIcon(name = "Filled.CellularData5") { + fluentPath { + moveTo(4.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.98f) + verticalLineToRelative(1.04f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.98f) + verticalLineToRelative(-1.04f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 17.0f) + close() + } + } + return _cellularData5!! + } + +private var _cellularData5: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CellularOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CellularOff.kt new file mode 100644 index 00000000..70ad13e5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CellularOff.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CellularOff: ImageVector + get() { + if (_cellularOff != null) { + return _cellularOff!! + } + _cellularOff = fluentIcon(name = "Filled.CellularOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(11.0f, 12.06f) + lineTo(11.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-4.94f) + lineToRelative(2.0f, 2.0f) + lineTo(15.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + verticalLineToRelative(-0.94f) + lineToRelative(3.72f, 3.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(19.0f, 15.82f) + lineToRelative(2.0f, 2.0f) + lineTo(21.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) + verticalLineToRelative(9.82f) + close() + moveTo(15.0f, 11.82f) + lineTo(17.0f, 13.82f) + lineTo(17.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) + verticalLineToRelative(2.82f) + close() + moveTo(8.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineToRelative(-4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(4.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.98f) + verticalLineToRelative(1.04f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.98f) + verticalLineToRelative(-1.04f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 17.0f) + close() + } + } + return _cellularOff!! + } + +private var _cellularOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CellularWarning.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CellularWarning.kt new file mode 100644 index 00000000..50047a50 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CellularWarning.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CellularWarning: ImageVector + get() { + if (_cellularWarning != null) { + return _cellularWarning!! + } + _cellularWarning = fluentIcon(name = "Filled.CellularWarning") { + fluentPath { + moveTo(16.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(1.05f) + curveToRelative(-0.7f, 0.14f, -1.36f, 0.59f, -1.74f, 1.33f) + lineToRelative(-0.26f, 0.53f) + lineTo(15.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(19.0f, 7.0f) + verticalLineToRelative(4.5f) + curveToRelative(0.3f, 0.21f, 0.55f, 0.51f, 0.74f, 0.88f) + lineTo(21.0f, 14.91f) + lineTo(21.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) + close() + moveTo(11.27f, 20.38f) + lineTo(13.0f, 16.91f) + lineTo(13.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.18f, 0.57f) + lineToRelative(0.09f, -0.19f) + close() + moveTo(8.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineToRelative(-4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(4.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.98f) + verticalLineToRelative(1.04f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.98f) + verticalLineToRelative(-1.04f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 4.0f, 18.0f) + close() + moveTo(16.16f, 12.83f) + lineTo(12.16f, 20.83f) + arcTo(1.5f, 1.5f, 0.0f, false, false, 13.5f, 23.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.34f, -2.17f) + lineToRelative(-4.0f, -8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.68f, 0.0f) + close() + moveTo(18.0f, 15.5f) + verticalLineToRelative(3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + close() + moveTo(17.5f, 21.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + close() + } + } + return _cellularWarning!! + } + +private var _cellularWarning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CenterHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CenterHorizontal.kt new file mode 100644 index 00000000..54c58182 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CenterHorizontal.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CenterHorizontal: ImageVector + get() { + if (_centerHorizontal != null) { + return _centerHorizontal!! + } + _centerHorizontal = fluentIcon(name = "Filled.CenterHorizontal") { + fluentPath { + moveTo(3.75f, 3.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(3.0f, 3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(20.25f, 3.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(19.5f, 3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(10.25f, 5.0f) + curveTo(9.01f, 5.0f, 8.0f, 6.0f, 8.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(8.0f, 17.99f, 9.0f, 19.0f, 10.25f, 19.0f) + horizontalLineToRelative(3.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-9.5f) + curveTo(16.0f, 6.01f, 15.0f, 5.0f, 13.75f, 5.0f) + horizontalLineToRelative(-3.5f) + close() + } + } + return _centerHorizontal!! + } + +private var _centerHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CenterVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CenterVertical.kt new file mode 100644 index 00000000..f7684662 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CenterVertical.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CenterVertical: ImageVector + get() { + if (_centerVertical != null) { + return _centerVertical!! + } + _centerVertical = fluentIcon(name = "Filled.CenterVertical") { + fluentPath { + moveTo(21.0f, 3.75f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(3.75f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(16.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(21.0f, 20.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(3.75f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(16.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(7.25f, 8.0f) + curveTo(6.01f, 8.0f, 5.0f, 9.0f, 5.0f, 10.25f) + verticalLineToRelative(3.5f) + curveTo(5.0f, 14.99f, 6.0f, 16.0f, 7.25f, 16.0f) + horizontalLineToRelative(9.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-3.5f) + curveTo(19.0f, 9.01f, 18.0f, 8.0f, 16.75f, 8.0f) + horizontalLineToRelative(-9.5f) + close() + } + } + return _centerVertical!! + } + +private var _centerVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Certificate.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Certificate.kt new file mode 100644 index 00000000..5e9c6551 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Certificate.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Certificate: ImageVector + get() { + if (_certificate != null) { + return _certificate!! + } + _certificate = fluentIcon(name = "Filled.Certificate") { + fluentPath { + moveTo(4.75f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 5.75f) + lineTo(2.0f, 11.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 8.0f, 6.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(9.25f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 15.25f) + verticalLineToRelative(-9.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 3.0f) + lineTo(4.75f, 3.0f) + close() + moveTo(6.75f, 7.0f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(6.75f, 8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(12.0f, 12.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(6.0f, 10.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) + close() + moveTo(9.0f, 18.0f) + arcToRelative(4.98f, 4.98f, 0.0f, false, true, -6.0f, 0.0f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 0.57f, 0.6f, 0.92f, 1.09f, 0.67f) + lineToRelative(0.09f, -0.06f) + lineTo(6.0f, 20.6f) + lineToRelative(1.82f, 1.27f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.17f, -0.5f) + verticalLineToRelative(-0.11f) + lineTo(9.0f, 18.0f) + close() + } + } + return _certificate!! + } + +private var _certificate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Channel.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Channel.kt new file mode 100644 index 00000000..81391104 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Channel.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Channel: ImageVector + get() { + if (_channel != null) { + return _channel!! + } + _channel = fluentIcon(name = "Filled.Channel") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.45f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 9.37f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.22f, -4.3f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(13.25f, 13.0f) + horizontalLineToRelative(-4.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) + lineTo(13.35f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(15.25f, 9.5f) + horizontalLineToRelative(-6.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) + lineTo(15.35f, 10.99f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(3.75f, 6.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + } + } + return _channel!! + } + +private var _channel: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChannelAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChannelAdd.kt new file mode 100644 index 00000000..ffc36b21 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChannelAdd.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChannelAdd: ImageVector + get() { + if (_channelAdd != null) { + return _channelAdd!! + } + _channelAdd = fluentIcon(name = "Filled.ChannelAdd") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(5.77f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, -8.2f, 0.98f) + lineTo(8.76f, 13.0f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) + horizontalLineToRelative(3.08f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, 0.3f, 6.5f) + lineTo(6.24f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 9.37f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.22f, -4.3f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(15.25f, 9.5f) + horizontalLineToRelative(-6.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) + lineTo(15.35f, 10.99f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(3.75f, 6.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _channelAdd!! + } + +private var _channelAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChannelAlert.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChannelAlert.kt new file mode 100644 index 00000000..7b0c7001 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChannelAlert.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChannelAlert: ImageVector + get() { + if (_channelAlert != null) { + return _channelAlert!! + } + _channelAlert = fluentIcon(name = "Filled.ChannelAlert") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(17.75f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 21.0f, 6.07f) + lineTo(21.0f, 12.02f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, -8.2f, 0.98f) + lineTo(8.76f, 13.0f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) + horizontalLineToRelative(3.08f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, 0.3f, 6.5f) + lineTo(6.24f, 21.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(3.0f, 17.75f) + lineTo(3.0f, 9.37f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.22f, -4.3f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 6.05f, 3.0f) + lineToRelative(0.2f, -0.01f) + horizontalLineToRelative(11.5f) + close() + moveTo(18.5f, 20.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(0.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) + close() + moveTo(17.5f, 14.0f) + horizontalLineToRelative(-0.16f) + curveToRelative(-0.94f, 0.1f, -1.67f, 0.77f, -1.81f, 1.64f) + lineToRelative(-0.02f, 0.16f) + verticalLineToRelative(1.5f) + lineToRelative(-0.86f, 0.85f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.26f, 0.84f) + lineTo(15.0f, 19.0f) + horizontalLineToRelative(5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.41f, -0.79f) + lineToRelative(-0.06f, -0.06f) + lineToRelative(-0.85f, -0.85f) + verticalLineToRelative(-1.5f) + arcToRelative(1.98f, 1.98f, 0.0f, false, false, -2.0f, -1.8f) + close() + moveTo(15.25f, 9.5f) + horizontalLineToRelative(-6.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) + lineTo(15.35f, 10.99f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(3.75f, 6.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + } + } + return _channelAlert!! + } + +private var _channelAlert: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChannelArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChannelArrowLeft.kt new file mode 100644 index 00000000..9af35072 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChannelArrowLeft.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChannelArrowLeft: ImageVector + get() { + if (_channelArrowLeft != null) { + return _channelArrowLeft!! + } + _channelArrowLeft = fluentIcon(name = "Filled.ChannelArrowLeft") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(17.75f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 21.0f, 6.07f) + lineTo(21.0f, 12.02f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, -8.2f, 0.98f) + lineTo(8.76f, 13.0f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) + horizontalLineToRelative(3.08f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, 0.3f, 6.5f) + lineTo(6.24f, 21.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(3.0f, 17.75f) + lineTo(3.0f, 9.37f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.22f, -4.3f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 6.05f, 3.0f) + lineToRelative(0.2f, -0.01f) + horizontalLineToRelative(11.5f) + close() + moveTo(16.72f, 14.59f) + lineTo(16.65f, 14.65f) + lineTo(14.13f, 17.16f) + lineTo(14.09f, 17.21f) + lineTo(14.05f, 17.29f) + lineTo(14.03f, 17.35f) + lineTo(14.01f, 17.43f) + verticalLineToRelative(0.11f) + lineToRelative(0.01f, 0.09f) + lineToRelative(0.03f, 0.08f) + lineToRelative(0.03f, 0.06f) + lineToRelative(0.05f, 0.07f) + lineToRelative(2.52f, 2.51f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.77f, -0.63f) + lineToRelative(-0.06f, -0.07f) + lineTo(15.7f, 18.0f) + horizontalLineToRelative(4.79f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.41f) + verticalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.5f) + horizontalLineToRelative(-4.88f) + lineToRelative(1.65f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.05f, -0.63f) + lineToRelative(-0.05f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.64f, -0.06f) + close() + moveTo(15.25f, 9.49f) + horizontalLineToRelative(-6.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) + lineTo(15.35f, 10.99f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(3.75f, 6.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + } + } + return _channelArrowLeft!! + } + +private var _channelArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChannelDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChannelDismiss.kt new file mode 100644 index 00000000..f7224c70 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChannelDismiss.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChannelDismiss: ImageVector + get() { + if (_channelDismiss != null) { + return _channelDismiss!! + } + _channelDismiss = fluentIcon(name = "Filled.ChannelDismiss") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(17.75f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 21.0f, 6.07f) + lineTo(21.0f, 12.02f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, -8.2f, 0.98f) + lineTo(8.76f, 13.0f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) + horizontalLineToRelative(3.08f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, 0.3f, 6.5f) + lineTo(6.24f, 21.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(3.0f, 17.75f) + lineTo(3.0f, 9.37f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.22f, -4.3f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 6.05f, 3.0f) + lineToRelative(0.2f, -0.01f) + horizontalLineToRelative(11.5f) + close() + moveTo(15.09f, 14.97f) + lineTo(15.02f, 15.02f) + lineTo(14.97f, 15.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.05f, 0.07f) + lineToRelative(1.77f, 1.77f) + lineToRelative(-1.76f, 1.77f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.06f, 0.06f) + lineToRelative(0.07f, 0.06f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) + lineToRelative(0.07f, -0.06f) + lineToRelative(1.77f, -1.76f) + lineToRelative(1.77f, 1.77f) + lineToRelative(0.07f, 0.05f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.57f, 0.0f) + lineToRelative(0.07f, -0.05f) + lineToRelative(0.05f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) + lineToRelative(-0.05f, -0.07f) + lineToRelative(-1.77f, -1.77f) + lineToRelative(1.77f, -1.77f) + lineToRelative(0.06f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) + lineToRelative(-0.06f, -0.07f) + lineToRelative(-0.07f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) + lineToRelative(-0.07f, 0.05f) + lineToRelative(-1.77f, 1.77f) + lineToRelative(-1.77f, -1.77f) + lineToRelative(-0.07f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.05f) + lineToRelative(-0.07f, 0.05f) + close() + moveTo(15.25f, 9.5f) + horizontalLineToRelative(-6.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) + lineTo(15.35f, 10.99f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(3.75f, 6.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + } + } + return _channelDismiss!! + } + +private var _channelDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChannelShare.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChannelShare.kt new file mode 100644 index 00000000..1f47a254 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChannelShare.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChannelShare: ImageVector + get() { + if (_channelShare != null) { + return _channelShare!! + } + _channelShare = fluentIcon(name = "Filled.ChannelShare") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(6.0f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-6.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(5.85f) + arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, 1.5f) + horizontalLineTo(6.25f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 12.25f) + verticalLineToRelative(-6.0f) + close() + moveTo(17.75f, 10.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-6.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(6.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-6.0f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineTo(11.9f) + arcToRelative(2.75f, 2.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(5.85f) + close() + } + } + return _channelShare!! + } + +private var _channelShare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChannelSubtract.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChannelSubtract.kt new file mode 100644 index 00000000..a556fdae --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChannelSubtract.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChannelSubtract: ImageVector + get() { + if (_channelSubtract != null) { + return _channelSubtract!! + } + _channelSubtract = fluentIcon(name = "Filled.ChannelSubtract") { + fluentPath { + moveTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.55f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + curveToRelative(-1.38f, 0.0f, -2.55f, 0.85f, -3.03f, 2.06f) + arcTo(2.26f, 2.26f, 0.0f, true, true, 3.0f, 9.37f) + verticalLineToRelative(8.38f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(5.77f) + arcToRelative(6.47f, 6.47f, 0.0f, false, true, -0.29f, -6.5f) + lineTo(8.65f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.49f) + lineTo(12.8f, 13.01f) + arcToRelative(6.48f, 6.48f, 0.0f, false, true, 8.19f, -0.99f) + lineTo(20.99f, 6.25f) + close() + moveTo(8.75f, 9.5f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.49f) + lineTo(8.65f, 10.99f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.49f) + horizontalLineToRelative(0.1f) + close() + moveTo(5.0f, 7.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(20.5f, 18.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(6.0f) + close() + } + } + return _channelSubtract!! + } + +private var _channelSubtract: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChartMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChartMultiple.kt new file mode 100644 index 00000000..a9defafc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChartMultiple.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChartMultiple: ImageVector + get() { + if (_chartMultiple != null) { + return _chartMultiple!! + } + _chartMultiple = fluentIcon(name = "Filled.ChartMultiple") { + fluentPath { + moveTo(19.0f, 13.5f) + curveToRelative(0.0f, -0.68f, 0.27f, -1.3f, 0.71f, -1.75f) + lineTo(13.0f, 11.75f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(11.25f, 2.0f) + arcTo(9.5f, 9.5f, 0.0f, false, false, 11.0f, 21.0f) + lineTo(11.0f, 19.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 4.0f, -2.0f) + verticalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 4.0f, -2.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(12.75f, 2.08f) + lineTo(12.75f, 10.0f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(7.92f) + arcToRelative(9.5f, 9.5f, 0.0f, false, false, -8.17f, -8.17f) + close() + moveTo(21.5f, 12.0f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) + verticalLineToRelative(-8.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + close() + moveTo(13.5f, 18.0f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(2.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + close() + moveTo(16.0f, 16.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + verticalLineToRelative(5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + verticalLineToRelative(-5.0f) + close() + } + } + return _chartMultiple!! + } + +private var _chartMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChartPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChartPerson.kt new file mode 100644 index 00000000..6dd16c2e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChartPerson.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChartPerson: ImageVector + get() { + if (_chartPerson != null) { + return _chartPerson!! + } + _chartPerson = fluentIcon(name = "Filled.ChartPerson") { + fluentPath { + moveTo(12.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + lineTo(11.0f, 3.0f) + lineTo(5.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 6.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) + horizontalLineToRelative(2.4f) + lineToRelative(-1.48f, 1.77f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.16f, 0.96f) + lineTo(9.6f, 19.0f) + horizontalLineToRelative(3.5f) + curveToRelative(0.34f, -1.16f, 1.41f, -2.0f, 2.67f, -2.0f) + horizontalLineToRelative(0.28f) + arcToRelative(3.49f, 3.49f, 0.0f, false, true, 2.45f, -6.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 3.5f, 3.5f) + lineTo(22.0f, 6.25f) + curveTo(22.0f, 4.45f, 20.54f, 3.0f, 18.75f, 3.0f) + lineTo(12.5f, 3.0f) + verticalLineToRelative(-0.25f) + close() + moveTo(6.0f, 7.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.0f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 6.0f, 7.75f) + close() + moveTo(6.75f, 10.0f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(6.75f, 13.0f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(21.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(23.0f, 19.88f) + curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) + reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _chartPerson!! + } + +private var _chartPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Chat.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Chat.kt new file mode 100644 index 00000000..875b781f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Chat.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Chat: ImageVector + get() { + if (_chat != null) { + return _chat!! + } + _chat = fluentIcon(name = "Filled.Chat") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, -4.64f, 18.86f) + lineToRelative(-4.3f, 1.12f) + arcToRelative(0.85f, 0.85f, 0.0f, false, true, -1.03f, -1.04f) + lineToRelative(1.11f, -4.29f) + arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 2.0f) + close() + moveTo(13.25f, 13.0f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(13.35f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(15.25f, 9.5f) + horizontalLineToRelative(-6.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(15.35f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + } + } + return _chat!! + } + +private var _chat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatAdd.kt new file mode 100644 index 00000000..200c21f5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatAdd.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChatAdd: ImageVector + get() { + if (_chatAdd != null) { + return _chatAdd!! + } + _chatAdd = fluentIcon(name = "Filled.ChatAdd") { + fluentPath { + moveTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -18.86f, 4.65f) + lineToRelative(-1.11f, 4.29f) + arcToRelative(0.85f, 0.85f, 0.0f, false, false, 1.04f, 1.04f) + lineToRelative(4.29f, -1.12f) + arcToRelative(9.96f, 9.96f, 0.0f, false, false, 5.42f, 1.11f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, 9.19f, -9.19f) + lineTo(22.0f, 12.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _chatAdd!! + } + +private var _chatAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatBubblesQuestion.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatBubblesQuestion.kt new file mode 100644 index 00000000..cb9466fe --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatBubblesQuestion.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChatBubblesQuestion: ImageVector + get() { + if (_chatBubblesQuestion != null) { + return _chatBubblesQuestion!! + } + _chatBubblesQuestion = fluentIcon(name = "Filled.ChatBubblesQuestion") { + fluentPath { + moveTo(9.5f, 3.0f) + arcToRelative(7.5f, 7.5f, 0.0f, false, false, -6.8f, 10.67f) + arcToRelative(68.1f, 68.1f, 0.0f, false, false, -0.68f, 3.15f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.15f, 1.17f) + curveToRelative(0.63f, -0.11f, 1.98f, -0.36f, 3.24f, -0.65f) + arcTo(7.5f, 7.5f, 0.0f, true, false, 9.5f, 3.0f) + close() + moveTo(7.1f, 7.4f) + curveToRelative(0.25f, -0.49f, 0.6f, -0.86f, 1.04f, -1.1f) + arcToRelative(2.83f, 2.83f, 0.0f, false, true, 3.0f, 0.28f) + curveToRelative(0.5f, 0.42f, 0.86f, 1.07f, 0.86f, 1.92f) + curveToRelative(0.0f, 0.97f, -0.69f, 1.5f, -1.08f, 1.8f) + arcToRelative(8.4f, 8.4f, 0.0f, false, false, -0.08f, 0.07f) + curveToRelative(-0.43f, 0.33f, -0.59f, 0.51f, -0.59f, 0.88f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + curveToRelative(0.0f, -1.13f, 0.71f, -1.7f, 1.16f, -2.06f) + curveToRelative(0.51f, -0.4f, 0.59f, -0.5f, 0.59f, -0.69f) + curveToRelative(0.0f, -0.4f, -0.15f, -0.62f, -0.32f, -0.76f) + curveToRelative(-0.2f, -0.16f, -0.46f, -0.24f, -0.68f, -0.24f) + curveToRelative(-0.3f, 0.0f, -0.5f, 0.05f, -0.65f, 0.13f) + curveToRelative(-0.14f, 0.08f, -0.3f, 0.21f, -0.44f, 0.48f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.32f, -0.71f) + close() + moveTo(9.5f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(9.4f, 19.0f) + arcToRelative(7.47f, 7.47f, 0.0f, false, false, 8.19f, 1.34f) + curveToRelative(1.04f, 0.24f, 2.18f, 0.48f, 2.91f, 0.64f) + curveToRelative(0.9f, 0.18f, 1.67f, -0.62f, 1.47f, -1.5f) + curveToRelative(-0.16f, -0.7f, -0.42f, -1.8f, -0.67f, -2.8f) + arcToRelative(7.5f, 7.5f, 0.0f, false, false, -4.34f, -10.26f) + curveToRelative(0.34f, 0.63f, 0.61f, 1.31f, 0.8f, 2.04f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 2.08f, 7.79f) + lineToRelative(-0.13f, 0.25f) + lineToRelative(0.07f, 0.28f) + lineToRelative(0.64f, 2.65f) + lineToRelative(-2.74f, -0.61f) + lineToRelative(-0.27f, -0.07f) + lineToRelative(-0.24f, 0.12f) + arcToRelative(5.97f, 5.97f, 0.0f, false, true, -5.59f, -0.13f) + arcTo(8.52f, 8.52f, 0.0f, false, true, 9.4f, 19.0f) + close() + } + } + return _chatBubblesQuestion!! + } + +private var _chatBubblesQuestion: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatCursor.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatCursor.kt new file mode 100644 index 00000000..235879fa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatCursor.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChatCursor: ImageVector + get() { + if (_chatCursor != null) { + return _chatCursor!! + } + _chatCursor = fluentIcon(name = "Filled.ChatCursor") { + fluentPath { + moveTo(10.0f, 1.0f) + arcToRelative(8.0f, 8.0f, 0.0f, false, true, 7.48f, 10.86f) + lineTo(14.2f, 9.4f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 11.0f, 11.0f) + verticalLineToRelative(5.94f) + arcToRelative(8.07f, 8.07f, 0.0f, false, true, -4.61f, -0.8f) + lineToRelative(-0.12f, -0.07f) + lineToRelative(-3.65f, 0.92f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.62f, -0.45f) + verticalLineToRelative(-0.08f) + lineToRelative(0.01f, -0.08f) + lineToRelative(0.92f, -3.64f) + lineToRelative(-0.07f, -0.12f) + arcToRelative(7.95f, 7.95f, 0.0f, false, true, -0.83f, -2.9f) + lineToRelative(-0.02f, -0.37f) + lineTo(2.0f, 9.0f) + arcToRelative(8.0f, 8.0f, 0.0f, false, true, 8.0f, -8.0f) + close() + moveTo(13.6f, 10.2f) + lineTo(21.6f, 16.2f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 21.0f, 18.0f) + horizontalLineToRelative(-4.4f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.88f, 0.53f) + lineToRelative(-1.84f, 3.44f) + curveToRelative(-0.49f, 0.92f, -1.88f, 0.57f, -1.88f, -0.47f) + lineTo(12.0f, 11.0f) + arcToRelative(1.05f, 1.05f, 0.0f, false, true, 0.12f, -0.47f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.48f, -0.33f) + close() + } + } + return _chatCursor!! + } + +private var _chatCursor: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatDismiss.kt new file mode 100644 index 00000000..07d7bdc1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatDismiss.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChatDismiss: ImageVector + get() { + if (_chatDismiss != null) { + return _chatDismiss!! + } + _chatDismiss = fluentIcon(name = "Filled.ChatDismiss") { + fluentPath { + moveTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -18.89f, 4.6f) + lineToRelative(-1.06f, 3.82f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 1.54f, 1.54f) + lineToRelative(3.82f, -1.07f) + arcTo(10.0f, 10.0f, 0.0f, false, false, 22.0f, 12.0f) + close() + moveTo(9.28f, 8.22f) + lineTo(12.0f, 10.94f) + lineToRelative(2.72f, -2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineTo(13.06f, 12.0f) + lineToRelative(2.72f, 2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(12.0f, 13.06f) + lineToRelative(-2.72f, 2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineTo(10.94f, 12.0f) + lineTo(8.22f, 9.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + close() + } + } + return _chatDismiss!! + } + +private var _chatDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatEmpty.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatEmpty.kt new file mode 100644 index 00000000..c5a125fa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatEmpty.kt @@ -0,0 +1,29 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChatEmpty: ImageVector + get() { + if (_chatEmpty != null) { + return _chatEmpty!! + } + _chatEmpty = fluentIcon(name = "Filled.ChatEmpty") { + fluentPath { + moveTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -18.86f, 4.65f) + lineToRelative(-1.11f, 4.29f) + arcToRelative(0.85f, 0.85f, 0.0f, false, false, 1.04f, 1.04f) + lineToRelative(4.29f, -1.12f) + arcTo(10.0f, 10.0f, 0.0f, false, false, 22.0f, 12.0f) + close() + } + } + return _chatEmpty!! + } + +private var _chatEmpty: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatHelp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatHelp.kt new file mode 100644 index 00000000..4fae4ca9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatHelp.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChatHelp: ImageVector + get() { + if (_chatHelp != null) { + return _chatHelp!! + } + _chatHelp = fluentIcon(name = "Filled.ChatHelp") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, -4.64f, 18.86f) + lineToRelative(-4.3f, 1.12f) + arcToRelative(0.85f, 0.85f, 0.0f, false, true, -1.03f, -1.04f) + lineToRelative(1.11f, -4.29f) + arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 2.0f) + close() + moveTo(12.0f, 15.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(12.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 9.25f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.1f) + verticalLineToRelative(-0.23f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.13f) + curveToRelative(0.0f, 0.54f, -0.13f, 0.8f, -0.64f, 1.33f) + lineToRelative(-0.3f, 0.31f) + curveToRelative(-0.76f, 0.79f, -1.06f, 1.35f, -1.06f, 2.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + curveToRelative(0.0f, -0.54f, 0.13f, -0.8f, 0.64f, -1.33f) + lineToRelative(0.3f, -0.31f) + curveToRelative(0.76f, -0.79f, 1.06f, -1.35f, 1.06f, -2.36f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 12.0f, 6.75f) + close() + } + } + return _chatHelp!! + } + +private var _chatHelp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatMultiple.kt new file mode 100644 index 00000000..244518f8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatMultiple.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChatMultiple: ImageVector + get() { + if (_chatMultiple != null) { + return _chatMultiple!! + } + _chatMultiple = fluentIcon(name = "Filled.ChatMultiple") { + fluentPath { + moveTo(9.5f, 3.0f) + arcToRelative(7.5f, 7.5f, 0.0f, false, false, -6.8f, 10.67f) + arcToRelative(68.1f, 68.1f, 0.0f, false, false, -0.68f, 3.15f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.15f, 1.17f) + curveToRelative(0.63f, -0.11f, 1.98f, -0.36f, 3.24f, -0.65f) + arcTo(7.5f, 7.5f, 0.0f, true, false, 9.5f, 3.0f) + close() + moveTo(9.46f, 19.0f) + arcToRelative(7.47f, 7.47f, 0.0f, false, false, 8.19f, 1.34f) + curveToRelative(1.04f, 0.24f, 2.19f, 0.48f, 2.91f, 0.64f) + curveToRelative(0.9f, 0.18f, 1.67f, -0.62f, 1.47f, -1.5f) + curveToRelative(-0.16f, -0.7f, -0.42f, -1.8f, -0.67f, -2.8f) + arcToRelative(7.5f, 7.5f, 0.0f, false, false, -4.34f, -10.26f) + curveToRelative(0.35f, 0.63f, 0.62f, 1.31f, 0.8f, 2.04f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 2.08f, 7.79f) + lineToRelative(-0.13f, 0.25f) + lineToRelative(0.07f, 0.28f) + curveToRelative(0.23f, 0.9f, 0.46f, 1.9f, 0.64f, 2.65f) + lineToRelative(-2.74f, -0.61f) + lineToRelative(-0.26f, -0.07f) + lineToRelative(-0.25f, 0.13f) + arcToRelative(5.97f, 5.97f, 0.0f, false, true, -5.59f, -0.14f) + arcToRelative(8.52f, 8.52f, 0.0f, false, true, -2.18f, 0.26f) + close() + } + } + return _chatMultiple!! + } + +private var _chatMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatMultipleHeart.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatMultipleHeart.kt new file mode 100644 index 00000000..c114907e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatMultipleHeart.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChatMultipleHeart: ImageVector + get() { + if (_chatMultipleHeart != null) { + return _chatMultipleHeart!! + } + _chatMultipleHeart = fluentIcon(name = "Filled.ChatMultipleHeart") { + fluentPath { + moveTo(2.0f, 10.5f) + arcToRelative(7.5f, 7.5f, 0.0f, true, true, 4.41f, 6.84f) + curveToRelative(-1.26f, 0.29f, -2.61f, 0.54f, -3.24f, 0.65f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.15f, -1.17f) + curveToRelative(0.12f, -0.61f, 0.38f, -1.92f, 0.68f, -3.15f) + arcTo(7.47f, 7.47f, 0.0f, false, true, 2.0f, 10.5f) + close() + moveTo(6.34f, 8.34f) + curveToRelative(-0.79f, 0.8f, -0.79f, 2.08f, 0.0f, 2.87f) + lineToRelative(2.95f, 2.95f) + curveToRelative(0.12f, 0.12f, 0.32f, 0.12f, 0.44f, 0.0f) + lineToRelative(2.93f, -2.93f) + arcToRelative(2.03f, 2.03f, 0.0f, false, false, -2.88f, -2.88f) + lineToRelative(-0.28f, 0.28f) + lineToRelative(-0.29f, -0.28f) + curveToRelative(-0.8f, -0.8f, -2.08f, -0.8f, -2.87f, 0.0f) + close() + moveTo(14.56f, 21.0f) + arcToRelative(7.47f, 7.47f, 0.0f, false, true, -5.1f, -2.0f) + arcToRelative(8.28f, 8.28f, 0.0f, false, false, 2.18f, -0.26f) + arcToRelative(5.97f, 5.97f, 0.0f, false, false, 5.6f, 0.14f) + lineToRelative(0.24f, -0.13f) + lineToRelative(0.26f, 0.07f) + curveToRelative(0.92f, 0.22f, 1.96f, 0.44f, 2.74f, 0.6f) + curveToRelative(-0.18f, -0.74f, -0.41f, -1.75f, -0.64f, -2.64f) + lineToRelative(-0.07f, -0.28f) + lineToRelative(0.13f, -0.25f) + arcToRelative(5.97f, 5.97f, 0.0f, false, false, -2.09f, -7.8f) + arcToRelative(8.44f, 8.44f, 0.0f, false, false, -0.8f, -2.04f) + arcToRelative(7.5f, 7.5f, 0.0f, false, true, 4.35f, 10.26f) + lineToRelative(0.67f, 2.8f) + curveToRelative(0.2f, 0.9f, -0.57f, 1.7f, -1.47f, 1.5f) + curveToRelative(-0.72f, -0.15f, -1.87f, -0.39f, -2.91f, -0.63f) + curveToRelative(-0.94f, 0.42f, -1.99f, 0.66f, -3.09f, 0.66f) + close() + } + } + return _chatMultipleHeart!! + } + +private var _chatMultipleHeart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatOff.kt new file mode 100644 index 00000000..921dbb73 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatOff.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChatOff: ImageVector + get() { + if (_chatOff != null) { + return _chatOff!! + } + _chatOff = fluentIcon(name = "Filled.ChatOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(2.2f, 2.2f) + arcToRelative(9.96f, 9.96f, 0.0f, false, false, -1.28f, 11.17f) + lineToRelative(-1.11f, 4.29f) + arcToRelative(0.85f, 0.85f, 0.0f, false, false, 1.04f, 1.04f) + lineToRelative(4.29f, -1.12f) + arcToRelative(9.96f, 9.96f, 0.0f, false, false, 11.16f, -1.28f) + lineToRelative(2.2f, 2.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(13.42f, 14.48f) + lineTo(13.35f, 14.49f) + lineTo(13.25f, 14.5f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.29f) + lineToRelative(1.48f, 1.48f) + close() + moveTo(9.94f, 11.0f) + lineTo(8.65f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.16f, -1.45f) + lineTo(9.94f, 11.0f) + close() + } + fluentPath { + moveTo(15.25f, 11.0f) + horizontalLineToRelative(-1.07f) + lineToRelative(6.3f, 6.3f) + arcTo(10.0f, 10.0f, 0.0f, false, false, 6.7f, 3.52f) + lineToRelative(5.98f, 5.98f) + horizontalLineToRelative(2.67f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.1f) + close() + } + } + return _chatOff!! + } + +private var _chatOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatSettings.kt new file mode 100644 index 00000000..ef1b20f0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatSettings.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChatSettings: ImageVector + get() { + if (_chatSettings != null) { + return _chatSettings!! + } + _chatSettings = fluentIcon(name = "Filled.ChatSettings") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 9.97f, 10.78f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -9.19f, 9.19f) + arcToRelative(10.14f, 10.14f, 0.0f, false, true, -5.42f, -1.11f) + lineToRelative(-4.3f, 1.12f) + arcToRelative(0.85f, 0.85f, 0.0f, false, true, -1.03f, -1.04f) + lineToRelative(1.11f, -4.29f) + arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 2.0f) + close() + moveTo(14.28f, 13.98f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.59f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) + lineToRelative(0.55f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) + lineToRelative(-0.19f, 0.64f) + curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) + lineToRelative(0.49f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) + lineToRelative(-0.2f, -0.69f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) + lineToRelative(0.59f, -0.14f) + arcToRelative(5.72f, 5.72f, 0.0f, false, false, 0.0f, -1.8f) + lineToRelative(-0.55f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.19f, -0.63f) + curveToRelative(-0.44f, -0.4f, -0.94f, -0.7f, -1.49f, -0.93f) + lineToRelative(-0.49f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) + lineToRelative(0.2f, 0.7f) + close() + moveTo(17.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) + close() + } + } + return _chatSettings!! + } + +private var _chatSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatSparkle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatSparkle.kt new file mode 100644 index 00000000..1113eabf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatSparkle.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChatSparkle: ImageVector + get() { + if (_chatSparkle != null) { + return _chatSparkle!! + } + _chatSparkle = fluentIcon(name = "Filled.ChatSparkle") { + fluentPath { + moveTo(16.09f, 6.41f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.35f, -0.95f) + lineTo(13.36f, 5.0f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, -1.03f) + lineToRelative(1.38f, -0.44f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.76f, -1.77f) + lineToRelative(0.01f, -0.03f) + lineToRelative(0.45f, -1.38f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, 1.03f, 0.0f) + lineToRelative(0.44f, 1.38f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.8f, 1.8f) + lineToRelative(1.38f, 0.44f) + lineToRelative(0.03f, 0.01f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, 1.03f) + lineToRelative(-1.38f, 0.44f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.8f, 1.8f) + lineToRelative(-0.45f, 1.38f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, -1.03f, 0.0f) + lineToRelative(-0.44f, -1.38f) + curveToRelative(-0.1f, -0.3f, -0.25f, -0.6f, -0.45f, -0.85f) + close() + moveTo(23.79f, 10.21f) + lineTo(23.02f, 9.96f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, -1.0f, -1.0f) + lineToRelative(-0.25f, -0.76f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, -0.57f, 0.0f) + lineToRelative(-0.25f, 0.77f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, -0.98f, 1.0f) + lineToRelative(-0.77f, 0.24f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.77f, 0.25f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, 1.0f) + lineToRelative(0.24f, 0.77f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.58f, 0.0f) + lineToRelative(0.24f, -0.77f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, -1.0f) + lineToRelative(0.77f, -0.24f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, -0.57f) + horizontalLineToRelative(-0.02f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 2.76f, 0.39f) + curveToRelative(-0.12f, 0.07f, -0.24f, 0.13f, -0.37f, 0.17f) + lineTo(13.05f, 3.0f) + curveToRelative(-0.3f, 0.1f, -0.58f, 0.3f, -0.77f, 0.57f) + arcToRelative(1.57f, 1.57f, 0.0f, false, false, 0.0f, 1.79f) + curveToRelative(0.17f, 0.28f, 0.42f, 0.5f, 0.72f, 0.64f) + lineToRelative(1.4f, 0.46f) + curveToRelative(0.27f, 0.09f, 0.52f, 0.24f, 0.72f, 0.44f) + lineToRelative(0.18f, 0.1f) + curveToRelative(0.13f, 0.17f, 0.22f, 0.35f, 0.29f, 0.55f) + lineTo(16.0f, 9.0f) + curveToRelative(0.1f, 0.3f, 0.3f, 0.58f, 0.57f, 0.77f) + arcToRelative(1.57f, 1.57f, 0.0f, false, false, 1.57f, 0.12f) + arcToRelative(1.28f, 1.28f, 0.0f, false, false, 0.06f, 1.4f) + curveToRelative(0.16f, 0.23f, 0.38f, 0.4f, 0.63f, 0.49f) + lineToRelative(0.79f, 0.25f) + arcToRelative(0.59f, 0.59f, 0.0f, false, true, 0.36f, 0.37f) + lineToRelative(0.24f, 0.76f) + curveToRelative(0.1f, 0.26f, 0.26f, 0.49f, 0.49f, 0.65f) + arcToRelative(1.29f, 1.29f, 0.0f, false, false, 1.09f, 0.2f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -14.44f, 6.85f) + lineToRelative(-4.3f, 1.12f) + arcToRelative(0.85f, 0.85f, 0.0f, false, true, -1.03f, -1.04f) + lineToRelative(1.11f, -4.29f) + arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 2.0f) + close() + } + } + return _chatSparkle!! + } + +private var _chatSparkle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatVideo.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatVideo.kt new file mode 100644 index 00000000..30f44062 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatVideo.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChatVideo: ImageVector + get() { + if (_chatVideo != null) { + return _chatVideo!! + } + _chatVideo = fluentIcon(name = "Filled.ChatVideo") { + fluentPath { + moveTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -18.86f, 4.65f) + lineToRelative(-1.11f, 4.29f) + arcToRelative(0.85f, 0.85f, 0.0f, false, false, 1.04f, 1.04f) + lineToRelative(4.29f, -1.12f) + arcTo(10.0f, 10.0f, 0.0f, false, false, 22.0f, 12.0f) + close() + moveTo(12.0f, 8.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + verticalLineToRelative(4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + lineTo(9.0f, 16.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(3.0f) + close() + moveTo(15.0f, 13.16f) + verticalLineToRelative(-2.32f) + lineToRelative(1.73f, -1.64f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.27f, 0.54f) + verticalLineToRelative(4.52f) + curveToRelative(0.0f, 0.66f, -0.79f, 1.0f, -1.27f, 0.54f) + lineTo(15.0f, 13.16f) + close() + } + } + return _chatVideo!! + } + +private var _chatVideo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatWarning.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatWarning.kt new file mode 100644 index 00000000..bac6d15b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChatWarning.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChatWarning: ImageVector + get() { + if (_chatWarning != null) { + return _chatWarning!! + } + _chatWarning = fluentIcon(name = "Filled.ChatWarning") { + fluentPath { + moveTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -18.86f, 4.65f) + lineToRelative(-1.11f, 4.29f) + arcToRelative(0.85f, 0.85f, 0.0f, false, false, 1.04f, 1.03f) + lineToRelative(4.29f, -1.11f) + arcTo(10.0f, 10.0f, 0.0f, false, false, 22.0f, 12.0f) + close() + moveTo(12.0f, 6.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(11.25f, 7.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(13.0f, 16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + } + } + return _chatWarning!! + } + +private var _chatWarning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Check.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Check.kt new file mode 100644 index 00000000..04d81ecc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Check.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Check: ImageVector + get() { + if (_check != null) { + return _check!! + } + _check = fluentIcon(name = "Filled.Check") { + fluentPath { + moveTo(21.77f, 5.79f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.04f, -1.08f) + lineToRelative(-6.75f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.04f, 1.08f) + lineToRelative(6.75f, -6.5f) + close() + moveTo(18.99f, 5.0f) + lineTo(4.55f, 5.0f) + arcTo(2.55f, 2.55f, 0.0f, false, false, 2.0f, 7.55f) + verticalLineToRelative(6.9f) + curveTo(2.0f, 15.85f, 3.14f, 17.0f, 4.55f, 17.0f) + horizontalLineToRelative(14.9f) + curveToRelative(1.4f, 0.0f, 2.55f, -1.14f, 2.55f, -2.55f) + verticalLineToRelative(-6.9f) + curveToRelative(0.0f, -0.18f, -0.02f, -0.36f, -0.06f, -0.54f) + lineToRelative(-6.23f, 6.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -2.42f, -2.52f) + lineTo(18.99f, 5.0f) + close() + moveTo(4.5f, 9.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(4.5f, 12.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _check!! + } + +private var _check: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Checkbox1.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Checkbox1.kt new file mode 100644 index 00000000..aa254282 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Checkbox1.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Checkbox1: ImageVector + get() { + if (_checkbox1 != null) { + return _checkbox1!! + } + _checkbox1 = fluentIcon(name = "Filled.Checkbox1") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(0.64f, 0.0f, 1.24f, -0.19f, 1.75f, -0.51f) + verticalLineToRelative(-1.66f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.84f, -2.95f) + lineToRelative(2.5f, -2.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.84f, -0.36f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(17.28f, 9.28f) + lineTo(10.53f, 16.03f) + curveToRelative(-0.3f, 0.29f, -0.77f, 0.29f, -1.06f, 0.0f) + lineToRelative(-2.75f, -2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineTo(10.0f, 14.44f) + lineToRelative(6.22f, -6.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + close() + moveTo(21.0f, 14.54f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.22f, 0.12f) + lineToRelative(-2.5f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.94f, 1.18f) + lineToRelative(1.28f, -1.03f) + verticalLineToRelative(4.44f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, -0.7f) + close() + } + } + return _checkbox1!! + } + +private var _checkbox1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Checkbox2.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Checkbox2.kt new file mode 100644 index 00000000..33743554 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Checkbox2.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Checkbox2: ImageVector + get() { + if (_checkbox2 != null) { + return _checkbox2!! + } + _checkbox2 = fluentIcon(name = "Filled.Checkbox2") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(10.0f) + curveToRelative(0.11f, -1.86f, 1.38f, -2.85f, 2.1f, -3.38f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.65f, -2.88f) + arcToRelative(3.8f, 3.8f, 0.0f, false, true, 3.47f, -1.18f) + curveToRelative(0.28f, 0.06f, 0.56f, 0.15f, 0.83f, 0.29f) + verticalLineToRelative(-7.6f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(19.06f, 18.35f) + curveToRelative(-0.7f, 0.5f, -1.7f, 1.23f, -1.8f, 2.65f) + lineToRelative(-0.01f, 0.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.06f) + arcToRelative(3.45f, 3.45f, 0.0f, false, true, 1.09f, -1.0f) + lineToRelative(0.04f, -0.03f) + curveToRelative(0.22f, -0.16f, 0.47f, -0.34f, 0.72f, -0.56f) + curveToRelative(0.5f, -0.46f, 0.96f, -1.08f, 0.96f, -2.0f) + curveToRelative(0.0f, -0.63f, -0.17f, -1.18f, -0.5f, -1.6f) + arcToRelative(2.05f, 2.05f, 0.0f, false, false, -1.27f, -0.76f) + arcToRelative(2.8f, 2.8f, 0.0f, false, false, -2.54f, 0.86f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.12f, 1.0f) + curveToRelative(0.27f, -0.3f, 0.76f, -0.47f, 1.13f, -0.4f) + curveToRelative(0.17f, 0.04f, 0.3f, 0.12f, 0.38f, 0.22f) + curveToRelative(0.09f, 0.11f, 0.18f, 0.31f, 0.18f, 0.68f) + curveToRelative(0.0f, 0.55f, -0.35f, 0.83f, -1.19f, 1.44f) + close() + moveTo(17.28f, 9.28f) + lineTo(10.53f, 16.03f) + curveToRelative(-0.3f, 0.29f, -0.77f, 0.29f, -1.06f, 0.0f) + lineToRelative(-2.75f, -2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineTo(10.0f, 14.44f) + lineToRelative(6.22f, -6.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + close() + } + } + return _checkbox2!! + } + +private var _checkbox2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckboxArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckboxArrowRight.kt new file mode 100644 index 00000000..46d7d295 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckboxArrowRight.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CheckboxArrowRight: ImageVector + get() { + if (_checkboxArrowRight != null) { + return _checkboxArrowRight!! + } + _checkboxArrowRight = fluentIcon(name = "Filled.CheckboxArrowRight") { + fluentPath { + moveTo(5.25f, 2.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) + verticalLineToRelative(11.5f) + curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) + horizontalLineToRelative(6.25f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, 8.5f, -8.5f) + lineTo(20.0f, 5.25f) + curveTo(20.0f, 3.45f, 18.54f, 2.0f, 16.75f, 2.0f) + lineTo(5.25f, 2.0f) + close() + moveTo(16.28f, 8.28f) + lineTo(9.53f, 15.03f) + curveToRelative(-0.3f, 0.29f, -0.77f, 0.29f, -1.06f, 0.0f) + lineToRelative(-2.75f, -2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineTo(9.0f, 13.44f) + lineToRelative(6.22f, -6.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(14.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(19.29f, 17.0f) + lineTo(14.5f, 17.0f) + close() + } + } + return _checkboxArrowRight!! + } + +private var _checkboxArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckboxChecked.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckboxChecked.kt new file mode 100644 index 00000000..ff10a7a8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckboxChecked.kt @@ -0,0 +1,41 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CheckboxChecked: ImageVector + get() { + if (_checkboxChecked != null) { + return _checkboxChecked!! + } + _checkboxChecked = fluentIcon(name = "Filled.CheckboxChecked") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(17.28f, 9.28f) + lineTo(10.53f, 16.03f) + curveToRelative(-0.3f, 0.29f, -0.77f, 0.29f, -1.06f, 0.0f) + lineToRelative(-2.75f, -2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineTo(10.0f, 14.44f) + lineToRelative(6.22f, -6.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + close() + } + } + return _checkboxChecked!! + } + +private var _checkboxChecked: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckboxIndeterminate.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckboxIndeterminate.kt new file mode 100644 index 00000000..7f952b63 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckboxIndeterminate.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CheckboxIndeterminate: ImageVector + get() { + if (_checkboxIndeterminate != null) { + return _checkboxIndeterminate!! + } + _checkboxIndeterminate = fluentIcon(name = "Filled.CheckboxIndeterminate") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(5.0f, 6.25f) + curveTo(5.0f, 5.56f, 5.56f, 5.0f, 6.25f, 5.0f) + horizontalLineToRelative(11.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + lineTo(6.25f, 19.0f) + curveTo(5.56f, 19.0f, 5.0f, 18.44f, 5.0f, 17.75f) + lineTo(5.0f, 6.25f) + close() + moveTo(7.5f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineToRelative(-9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineToRelative(-9.0f) + close() + } + } + return _checkboxIndeterminate!! + } + +private var _checkboxIndeterminate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckboxPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckboxPerson.kt new file mode 100644 index 00000000..ef4fc187 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckboxPerson.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CheckboxPerson: ImageVector + get() { + if (_checkboxPerson != null) { + return _checkboxPerson!! + } + _checkboxPerson = fluentIcon(name = "Filled.CheckboxPerson") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(6.92f) + arcToRelative(3.74f, 3.74f, 0.0f, false, true, -0.17f, -1.13f) + verticalLineToRelative(-0.1f) + arcTo(2.77f, 2.77f, 0.0f, false, true, 15.77f, 17.0f) + horizontalLineToRelative(0.28f) + arcToRelative(3.49f, 3.49f, 0.0f, false, true, 2.45f, -6.0f) + curveToRelative(0.98f, 0.0f, 1.86f, 0.4f, 2.5f, 1.05f) + verticalLineToRelative(-5.8f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(17.28f, 9.28f) + lineTo(10.53f, 16.03f) + curveToRelative(-0.3f, 0.29f, -0.77f, 0.29f, -1.06f, 0.0f) + lineToRelative(-2.75f, -2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineTo(10.0f, 14.44f) + lineToRelative(6.22f, -6.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + close() + moveTo(21.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(23.0f, 19.88f) + curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) + reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _checkboxPerson!! + } + +private var _checkboxPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckboxUnchecked.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckboxUnchecked.kt new file mode 100644 index 00000000..d71aba61 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckboxUnchecked.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CheckboxUnchecked: ImageVector + get() { + if (_checkboxUnchecked != null) { + return _checkboxUnchecked!! + } + _checkboxUnchecked = fluentIcon(name = "Filled.CheckboxUnchecked") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineTo(6.25f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + verticalLineTo(6.25f) + close() + moveTo(6.25f, 5.0f) + curveTo(5.56f, 5.0f, 5.0f, 5.56f, 5.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(11.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineTo(6.25f) + curveTo(19.0f, 5.56f, 18.44f, 5.0f, 17.75f, 5.0f) + horizontalLineTo(6.25f) + close() + } + } + return _checkboxUnchecked!! + } + +private var _checkboxUnchecked: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckboxWarning.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckboxWarning.kt new file mode 100644 index 00000000..715318d9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckboxWarning.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CheckboxWarning: ImageVector + get() { + if (_checkboxWarning != null) { + return _checkboxWarning!! + } + _checkboxWarning = fluentIcon(name = "Filled.CheckboxWarning") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(4.8f) + curveToRelative(0.05f, -0.2f, 0.12f, -0.42f, 0.22f, -0.62f) + lineToRelative(4.0f, -8.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 4.47f, 0.0f) + lineTo(21.0f, 14.9f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(17.28f, 9.28f) + lineTo(10.53f, 16.03f) + curveToRelative(-0.3f, 0.29f, -0.77f, 0.29f, -1.06f, 0.0f) + lineToRelative(-2.75f, -2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineTo(10.0f, 14.44f) + lineToRelative(6.22f, -6.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + close() + moveTo(16.16f, 12.83f) + lineTo(12.16f, 20.83f) + arcTo(1.5f, 1.5f, 0.0f, false, false, 13.51f, 23.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.33f, -2.17f) + lineToRelative(-4.0f, -8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.68f, 0.0f) + close() + moveTo(18.0f, 15.5f) + verticalLineToRelative(3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + close() + moveTo(17.5f, 21.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + close() + } + } + return _checkboxWarning!! + } + +private var _checkboxWarning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckmarkCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckmarkCircle.kt new file mode 100644 index 00000000..60853564 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckmarkCircle.kt @@ -0,0 +1,35 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CheckmarkCircle: ImageVector + get() { + if (_checkmarkCircle != null) { + return _checkmarkCircle!! + } + _checkmarkCircle = fluentIcon(name = "Filled.CheckmarkCircle") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(15.22f, 8.97f) + lineTo(10.75f, 13.44f) + lineTo(8.78f, 11.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(2.5f, 2.5f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(5.0f, -5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + close() + } + } + return _checkmarkCircle!! + } + +private var _checkmarkCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckmarkLock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckmarkLock.kt new file mode 100644 index 00000000..d46a9b34 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckmarkLock.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CheckmarkLock: ImageVector + get() { + if (_checkmarkLock != null) { + return _checkmarkLock!! + } + _checkmarkLock = fluentIcon(name = "Filled.CheckmarkLock") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 9.92f, 11.26f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 15.0f, 14.0f) + verticalLineToRelative(0.05f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.0f, 2.45f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.15f, 0.01f, 0.3f, 0.04f, 0.45f) + arcTo(10.0f, 10.0f, 0.0f, true, true, 12.0f, 2.0f) + close() + moveTo(15.22f, 8.97f) + lineTo(10.75f, 13.44f) + lineTo(8.78f, 11.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(2.5f, 2.5f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(5.0f, -5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + close() + moveTo(18.5f, 11.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 21.0f, 14.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(0.54f) + curveToRelative(0.81f, 0.02f, 1.46f, 0.69f, 1.46f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-6.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(0.5f) + verticalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, -2.5f) + close() + moveTo(18.1f, 19.92f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.35f, -1.24f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.34f, 1.24f) + close() + moveTo(17.5f, 14.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + close() + } + } + return _checkmarkLock!! + } + +private var _checkmarkLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckmarkSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckmarkSquare.kt new file mode 100644 index 00000000..8dfb8252 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckmarkSquare.kt @@ -0,0 +1,41 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CheckmarkSquare: ImageVector + get() { + if (_checkmarkSquare != null) { + return _checkmarkSquare!! + } + _checkmarkSquare = fluentIcon(name = "Filled.CheckmarkSquare") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(16.28f, 9.78f) + lineTo(11.28f, 14.78f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(1.47f, 1.47f) + lineToRelative(4.47f, -4.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + close() + } + } + return _checkmarkSquare!! + } + +private var _checkmarkSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckmarkStarburst.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckmarkStarburst.kt new file mode 100644 index 00000000..e860998f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CheckmarkStarburst.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CheckmarkStarburst: ImageVector + get() { + if (_checkmarkStarburst != null) { + return _checkmarkStarburst!! + } + _checkmarkStarburst = fluentIcon(name = "Filled.CheckmarkStarburst") { + fluentPath { + moveToRelative(9.84f, 2.03f) + lineToRelative(0.32f, 0.14f) + lineToRelative(1.29f, 0.63f) + curveToRelative(0.35f, 0.17f, 0.75f, 0.17f, 1.1f, 0.0f) + lineToRelative(1.28f, -0.63f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 3.69f, 1.25f) + lineToRelative(0.07f, 0.17f) + lineToRelative(0.06f, 0.16f) + lineToRelative(0.46f, 1.36f) + curveToRelative(0.13f, 0.36f, 0.42f, 0.65f, 0.78f, 0.78f) + lineToRelative(1.36f, 0.46f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 1.58f, 3.81f) + lineToRelative(-0.63f, 1.29f) + curveToRelative(-0.17f, 0.35f, -0.17f, 0.75f, 0.0f, 1.1f) + lineToRelative(0.63f, 1.28f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -1.58f, 3.82f) + lineToRelative(-1.36f, 0.46f) + curveToRelative(-0.36f, 0.13f, -0.65f, 0.42f, -0.78f, 0.78f) + lineToRelative(-0.46f, 1.36f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -3.82f, 1.58f) + lineToRelative(-1.28f, -0.63f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.1f, 0.0f) + lineToRelative(-1.29f, 0.63f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -3.81f, -1.58f) + lineToRelative(-0.46f, -1.36f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -0.78f, -0.78f) + lineToRelative(-1.36f, -0.46f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -1.58f, -3.82f) + lineToRelative(0.63f, -1.28f) + curveToRelative(0.17f, -0.35f, 0.17f, -0.75f, 0.0f, -1.1f) + lineToRelative(-0.63f, -1.29f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 1.58f, -3.81f) + lineToRelative(1.36f, -0.46f) + curveToRelative(0.36f, -0.13f, 0.65f, -0.42f, 0.78f, -0.78f) + lineToRelative(0.46f, -1.36f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 3.49f, -1.72f) + close() + moveTo(15.47f, 8.97f) + lineTo(10.05f, 14.39f) + lineTo(8.08f, 12.02f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.16f, 0.96f) + lineToRelative(2.5f, 3.0f) + curveToRelative(0.29f, 0.34f, 0.8f, 0.36f, 1.11f, 0.05f) + lineToRelative(6.0f, -6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + close() + } + } + return _checkmarkStarburst!! + } + +private var _checkmarkStarburst: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChevronCircleDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChevronCircleDown.kt new file mode 100644 index 00000000..c12e9ddc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChevronCircleDown.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChevronCircleDown: ImageVector + get() { + if (_chevronCircleDown != null) { + return _chevronCircleDown!! + } + _chevronCircleDown = fluentIcon(name = "Filled.ChevronCircleDown") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(7.47f, 9.97f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(4.0f, 4.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineTo(12.0f, 13.44f) + lineTo(8.53f, 9.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + close() + } + } + return _chevronCircleDown!! + } + +private var _chevronCircleDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChevronCircleLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChevronCircleLeft.kt new file mode 100644 index 00000000..0ddae2a8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChevronCircleLeft.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChevronCircleLeft: ImageVector + get() { + if (_chevronCircleLeft != null) { + return _chevronCircleLeft!! + } + _chevronCircleLeft = fluentIcon(name = "Filled.ChevronCircleLeft") { + fluentPath { + moveTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, -20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 20.0f, 0.0f) + close() + moveTo(14.03f, 7.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-4.0f, 4.0f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(4.0f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineTo(10.56f, 12.0f) + lineToRelative(3.47f, -3.47f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + close() + } + } + return _chevronCircleLeft!! + } + +private var _chevronCircleLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChevronCircleRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChevronCircleRight.kt new file mode 100644 index 00000000..a3f647b7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChevronCircleRight.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChevronCircleRight: ImageVector + get() { + if (_chevronCircleRight != null) { + return _chevronCircleRight!! + } + _chevronCircleRight = fluentIcon(name = "Filled.ChevronCircleRight") { + fluentPath { + moveTo(2.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) + close() + moveTo(9.97f, 16.53f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(4.0f, -4.0f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-4.0f, -4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(13.44f, 12.0f) + lineToRelative(-3.47f, 3.47f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + close() + } + } + return _chevronCircleRight!! + } + +private var _chevronCircleRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChevronCircleUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChevronCircleUp.kt new file mode 100644 index 00000000..b9182cd2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChevronCircleUp.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChevronCircleUp: ImageVector + get() { + if (_chevronCircleUp != null) { + return _chevronCircleUp!! + } + _chevronCircleUp = fluentIcon(name = "Filled.ChevronCircleUp") { + fluentPath { + moveTo(12.0f, 22.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) + close() + moveTo(7.47f, 14.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(4.0f, -4.0f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(4.0f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(12.0f, 10.56f) + lineToRelative(-3.47f, 3.47f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + close() + } + } + return _chevronCircleUp!! + } + +private var _chevronCircleUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChevronUpDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChevronUpDown.kt new file mode 100644 index 00000000..9a0e73d8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ChevronUpDown.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ChevronUpDown: ImageVector + get() { + if (_chevronUpDown != null) { + return _chevronUpDown!! + } + _chevronUpDown = fluentIcon(name = "Filled.ChevronUpDown") { + fluentPath { + moveTo(18.79f, 8.39f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.5f, 1.32f) + lineTo(12.0f, 4.4f) + lineToRelative(-5.3f, 5.3f) + lineToRelative(-0.09f, 0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, -1.5f) + lineToRelative(6.0f, -6.0f) + lineToRelative(0.1f, -0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, 0.08f) + lineToRelative(6.0f, 6.0f) + lineToRelative(0.08f, 0.1f) + close() + moveTo(5.21f, 15.6f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.5f, -1.32f) + lineTo(12.0f, 19.6f) + lineToRelative(5.3f, -5.3f) + lineToRelative(0.09f, -0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, 1.5f) + lineToRelative(-6.0f, 6.0f) + lineToRelative(-0.1f, 0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, -0.08f) + lineToRelative(-6.0f, -6.0f) + lineToRelative(-0.08f, -0.1f) + close() + } + } + return _chevronUpDown!! + } + +private var _chevronUpDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Circle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Circle.kt new file mode 100644 index 00000000..248f31d5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Circle.kt @@ -0,0 +1,26 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Circle: ImageVector + get() { + if (_circle != null) { + return _circle!! + } + _circle = fluentIcon(name = "Filled.Circle") { + fluentPath { + moveTo(2.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) + close() + } + } + return _circle!! + } + +private var _circle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CircleEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CircleEdit.kt new file mode 100644 index 00000000..982b2e95 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CircleEdit.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CircleEdit: ImageVector + get() { + if (_circleEdit != null) { + return _circleEdit!! + } + _circleEdit = fluentIcon(name = "Filled.CircleEdit") { + fluentPath { + moveTo(20.72f, 11.0f) + curveToRelative(0.42f, 0.0f, 0.85f, 0.08f, 1.25f, 0.25f) + arcTo(10.0f, 10.0f, 0.0f, true, false, 11.0f, 21.95f) + curveToRelative(0.0f, -0.18f, 0.02f, -0.36f, 0.06f, -0.54f) + lineToRelative(0.46f, -1.83f) + curveToRelative(0.16f, -0.65f, 0.5f, -1.24f, 0.97f, -1.72f) + lineToRelative(5.9f, -5.9f) + arcToRelative(3.28f, 3.28f, 0.0f, false, true, 2.32f, -0.96f) + close() + } + fluentPath { + moveTo(20.72f, 12.0f) + curveToRelative(-0.6f, 0.0f, -1.18f, 0.22f, -1.62f, 0.67f) + lineToRelative(-5.9f, 5.9f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.71f, 1.25f) + lineToRelative(-0.46f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcTo(2.29f, 2.29f, 0.0f, false, false, 20.72f, 12.0f) + close() + } + } + return _circleEdit!! + } + +private var _circleEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CircleHalfFill.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CircleHalfFill.kt new file mode 100644 index 00000000..92111d30 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CircleHalfFill.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CircleHalfFill: ImageVector + get() { + if (_circleHalfFill != null) { + return _circleHalfFill!! + } + _circleHalfFill = fluentIcon(name = "Filled.CircleHalfFill") { + fluentPath { + moveTo(2.03f, 11.25f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 19.94f, 0.0f) + lineTo(22.0f, 11.25f) + lineTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(0.03f) + close() + moveTo(4.03f, 11.25f) + horizontalLineToRelative(15.94f) + arcToRelative(8.0f, 8.0f, 0.0f, false, false, -15.94f, 0.0f) + close() + } + } + return _circleHalfFill!! + } + +private var _circleHalfFill: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CircleImage.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CircleImage.kt new file mode 100644 index 00000000..3e4938b9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CircleImage.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CircleImage: ImageVector + get() { + if (_circleImage != null) { + return _circleImage!! + } + _circleImage = fluentIcon(name = "Filled.CircleImage") { + fluentPath { + moveTo(12.25f, 8.0f) + horizontalLineToRelative(3.68f) + arcTo(7.0f, 7.0f, 0.0f, true, false, 8.0f, 15.93f) + verticalLineToRelative(-3.68f) + curveTo(8.0f, 9.9f, 9.9f, 8.0f, 12.25f, 8.0f) + close() + moveTo(12.25f, 9.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 9.0f, 12.25f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 0.63f, 0.18f, 1.21f, 0.48f, 1.7f) + lineToRelative(4.25f, -4.24f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 3.54f, 0.0f) + lineToRelative(4.25f, 4.25f) + curveToRelative(0.3f, -0.5f, 0.48f, -1.08f, 0.48f, -1.71f) + verticalLineToRelative(-6.5f) + curveTo(22.0f, 10.45f, 20.54f, 9.0f, 18.75f, 9.0f) + horizontalLineToRelative(-6.5f) + close() + moveTo(20.45f, 21.52f) + lineTo(16.21f, 17.27f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, 0.0f) + lineToRelative(-4.25f, 4.25f) + curveToRelative(0.5f, 0.3f, 1.08f, 0.48f, 1.71f, 0.48f) + horizontalLineToRelative(6.5f) + curveToRelative(0.63f, 0.0f, 1.21f, -0.18f, 1.7f, -0.48f) + close() + moveTo(19.26f, 13.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + } + } + return _circleImage!! + } + +private var _circleImage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CircleLine.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CircleLine.kt new file mode 100644 index 00000000..55ff0db9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CircleLine.kt @@ -0,0 +1,30 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CircleLine: ImageVector + get() { + if (_circleLine != null) { + return _circleLine!! + } + _circleLine = fluentIcon(name = "Filled.CircleLine") { + fluentPath { + moveTo(21.97f, 12.75f) + lineTo(2.03f, 12.75f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 19.94f, 0.0f) + close() + moveTo(21.97f, 11.25f) + lineTo(2.03f, 11.25f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 19.94f, 0.0f) + close() + } + } + return _circleLine!! + } + +private var _circleLine: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CircleSmall.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CircleSmall.kt new file mode 100644 index 00000000..a545e3e7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CircleSmall.kt @@ -0,0 +1,26 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CircleSmall: ImageVector + get() { + if (_circleSmall != null) { + return _circleSmall!! + } + _circleSmall = fluentIcon(name = "Filled.CircleSmall") { + fluentPath { + moveTo(8.0f, 12.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, 8.0f, 0.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -8.0f, 0.0f) + close() + } + } + return _circleSmall!! + } + +private var _circleSmall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/City.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/City.kt new file mode 100644 index 00000000..46ab5e4e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/City.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.City: ImageVector + get() { + if (_city != null) { + return _city!! + } + _city = fluentIcon(name = "Filled.City") { + fluentPath { + moveTo(12.75f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + lineTo(11.25f, 4.0f) + horizontalLineToRelative(-2.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(7.5f, 7.9f) + curveToRelative(1.52f, -0.13f, 3.0f, 1.04f, 3.0f, 2.75f) + lineTo(10.5f, 22.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-8.75f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, -2.75f) + horizontalLineToRelative(0.25f) + lineTo(16.5f, 5.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-2.0f) + lineTo(12.75f, 2.75f) + close() + moveTo(14.5f, 22.0f) + horizontalLineToRelative(4.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-7.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-2.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(14.5f, 22.0f) + close() + moveTo(9.5f, 20.75f) + lineTo(9.5f, 22.0f) + lineTo(5.25f, 22.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-7.96f) + curveToRelative(0.0f, -0.59f, 0.3f, -1.14f, 0.79f, -1.46f) + lineToRelative(2.5f, -1.65f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 2.71f, 1.47f) + verticalLineToRelative(10.1f) + close() + } + } + return _city!! + } + +private var _city: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Class.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Class.kt new file mode 100644 index 00000000..654ff928 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Class.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Class: ImageVector + get() { + if (_class != null) { + return _class!! + } + _class = fluentIcon(name = "Filled.Class") { + fluentPath { + moveTo(17.25f, 2.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 20.0f, 4.75f) + verticalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 17.25f, 22.0f) + lineTo(6.75f, 22.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.0f, 19.25f) + lineTo(4.0f, 4.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 6.75f, 2.0f) + horizontalLineToRelative(0.3f) + verticalLineToRelative(8.17f) + curveToRelative(0.0f, 0.75f, 0.78f, 1.01f, 1.31f, 0.74f) + lineToRelative(0.09f, -0.06f) + lineToRelative(2.1f, -1.2f) + lineToRelative(2.13f, 1.23f) + curveToRelative(0.45f, 0.31f, 1.26f, 0.1f, 1.35f, -0.59f) + lineToRelative(0.01f, -0.12f) + lineTo(14.04f, 2.0f) + horizontalLineToRelative(3.21f) + close() + moveTo(12.55f, 2.0f) + verticalLineToRelative(7.08f) + lineToRelative(-1.63f, -0.94f) + arcToRelative(0.93f, 0.93f, 0.0f, false, false, -0.8f, 0.03f) + lineToRelative(-0.1f, 0.06f) + lineToRelative(-1.48f, 0.85f) + lineTo(8.54f, 2.0f) + horizontalLineToRelative(4.0f) + close() + } + } + return _class!! + } + +private var _class: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Classification.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Classification.kt new file mode 100644 index 00000000..af188bfd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Classification.kt @@ -0,0 +1,100 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Classification: ImageVector + get() { + if (_classification != null) { + return _classification!! + } + _classification = fluentIcon(name = "Filled.Classification") { + fluentPath { + moveToRelative(9.02f, 6.0f) + lineToRelative(-1.5f, 1.5f) + lineTo(4.26f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.76f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.4f, 0.34f, 0.74f, 0.75f, 0.74f) + horizontalLineToRelative(11.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-3.28f) + lineToRelative(1.5f, -1.49f) + verticalLineToRelative(4.77f) + curveTo(18.0f, 21.0f, 17.0f, 22.0f, 15.75f, 22.0f) + lineTo(4.25f, 22.0f) + curveTo(3.01f, 22.0f, 2.0f, 21.0f, 2.0f, 19.75f) + lineTo(2.0f, 8.25f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.24f, 2.25f, -2.24f) + horizontalLineToRelative(4.77f) + close() + moveTo(5.22f, 12.22f) + lineTo(7.22f, 10.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + lineToRelative(5.5f, 5.5f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-5.5f, -5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(2.0f, -2.0f) + lineToRelative(-2.0f, 2.0f) + close() + moveTo(21.28f, 2.72f) + arcToRelative(2.58f, 2.58f, 0.0f, false, true, -0.47f, 4.02f) + lineToRelative(-0.14f, 0.08f) + lineToRelative(-1.17f, 0.62f) + lineToRelative(0.51f, 0.51f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.14f, 4.45f) + lineToRelative(-0.14f, 0.15f) + lineToRelative(-1.23f, 1.23f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-0.47f, -0.47f) + lineToRelative(-1.47f, 1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-5.5f, -5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(1.47f, -1.47f) + lineToRelative(-0.47f, -0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(1.23f, -1.23f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 4.45f, -0.14f) + lineToRelative(0.15f, 0.14f) + lineToRelative(0.51f, 0.51f) + lineToRelative(0.62f, -1.16f) + curveToRelative(0.09f, -0.17f, 0.2f, -0.33f, 0.32f, -0.48f) + lineToRelative(0.13f, -0.14f) + curveToRelative(1.01f, -1.0f, 2.64f, -1.0f, 3.65f, 0.0f) + close() + moveTo(11.75f, 7.82f) + lineTo(10.81f, 8.75f) + lineTo(15.25f, 13.19f) + lineTo(16.19f, 12.25f) + lineTo(11.75f, 7.81f) + close() + moveTo(18.69f, 3.78f) + curveToRelative(-0.05f, 0.05f, -0.1f, 0.1f, -0.13f, 0.17f) + lineToRelative(-0.06f, 0.09f) + lineToRelative(-0.83f, 1.57f) + lineToRelative(0.72f, 0.72f) + lineToRelative(1.57f, -0.84f) + arcToRelative(1.08f, 1.08f, 0.0f, true, false, -1.27f, -1.7f) + close() + } + } + return _classification!! + } + +private var _classification: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClearFormatting.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClearFormatting.kt new file mode 100644 index 00000000..81130af4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClearFormatting.kt @@ -0,0 +1,94 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClearFormatting: ImageVector + get() { + if (_clearFormatting != null) { + return _clearFormatting!! + } + _clearFormatting = fluentIcon(name = "Filled.ClearFormatting") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(3.0f, 19.0f) + horizontalLineToRelative(8.17f) + curveToRelative(0.17f, 0.72f, 0.46f, 1.4f, 0.85f, 2.0f) + lineTo(3.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(3.0f, 19.0f) + close() + moveTo(15.1f, 14.97f) + lineTo(15.02f, 15.02f) + lineTo(14.97f, 15.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.05f, 0.07f) + lineToRelative(1.77f, 1.77f) + lineToRelative(-1.76f, 1.77f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.06f, 0.06f) + lineToRelative(0.07f, 0.06f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) + lineToRelative(0.07f, -0.06f) + lineToRelative(1.77f, -1.76f) + lineToRelative(1.77f, 1.77f) + lineToRelative(0.07f, 0.05f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.57f, 0.0f) + lineToRelative(0.07f, -0.05f) + lineToRelative(0.05f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) + lineToRelative(-0.05f, -0.07f) + lineToRelative(-1.77f, -1.77f) + lineToRelative(1.77f, -1.77f) + lineToRelative(0.06f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) + lineToRelative(-0.06f, -0.07f) + lineToRelative(-0.07f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) + lineToRelative(-0.07f, 0.05f) + lineToRelative(-1.77f, 1.77f) + lineToRelative(-1.77f, -1.77f) + lineToRelative(-0.07f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.05f) + lineToRelative(-0.07f, 0.05f) + close() + moveTo(16.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.05f) + lineToRelative(-0.01f, 0.11f) + lineToRelative(-0.25f, 1.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.98f, -0.2f) + verticalLineToRelative(-0.12f) + lineToRelative(0.06f, -0.34f) + horizontalLineToRelative(-3.39f) + lineTo(9.67f, 16.0f) + lineTo(10.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(11.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + lineTo(7.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + horizontalLineToRelative(0.77f) + lineTo(9.4f, 5.0f) + lineTo(5.85f, 5.0f) + lineToRelative(-0.11f, 0.66f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.99f, -0.2f) + lineToRelative(0.01f, -0.12f) + lineToRelative(0.25f, -1.5f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 4.88f, 3.0f) + lineTo(5.0f, 3.0f) + horizontalLineToRelative(11.0f) + close() + } + } + return _clearFormatting!! + } + +private var _clearFormatting: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Clipboard.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Clipboard.kt new file mode 100644 index 00000000..a3f2d21f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Clipboard.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Clipboard: ImageVector + get() { + if (_clipboard != null) { + return _clipboard!! + } + _clipboard = fluentIcon(name = "Filled.Clipboard") { + fluentPath { + moveTo(13.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(10.25f, 2.0f) + horizontalLineToRelative(3.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 2.24f, 2.0f) + horizontalLineToRelative(1.76f) + curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineTo(6.25f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + verticalLineTo(6.25f) + curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(1.76f) + lineTo(8.0f, 4.25f) + curveTo(8.0f, 3.01f, 9.0f, 2.0f, 10.25f, 2.0f) + close() + } + } + return _clipboard!! + } + +private var _clipboard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Clipboard3Day.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Clipboard3Day.kt new file mode 100644 index 00000000..3d75910d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Clipboard3Day.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Clipboard3Day: ImageVector + get() { + if (_clipboard3Day != null) { + return _clipboard3Day!! + } + _clipboard3Day = fluentIcon(name = "Filled.Clipboard3Day") { + fluentPath { + moveTo(13.75f, 2.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) + lineTo(6.25f, 4.0f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 6.25f) + curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) + horizontalLineToRelative(-1.76f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) + close() + moveTo(10.25f, 3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(8.0f, 17.25f) + verticalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(15.25f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + close() + moveTo(11.25f, 17.25f) + verticalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + } + } + return _clipboard3Day!! + } + +private var _clipboard3Day: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardArrowRight.kt new file mode 100644 index 00000000..20ff91c9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardArrowRight.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClipboardArrowRight: ImageVector + get() { + if (_clipboardArrowRight != null) { + return _clipboardArrowRight!! + } + _clipboardArrowRight = fluentIcon(name = "Filled.ClipboardArrowRight") { + fluentPath { + moveTo(10.25f, 2.0f) + horizontalLineToRelative(3.5f) + curveToRelative(1.16f, 0.0f, 2.11f, 0.87f, 2.24f, 2.0f) + horizontalLineToRelative(1.76f) + curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) + verticalLineToRelative(5.25f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.81f, 22.0f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 6.25f) + curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(1.76f) + curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) + close() + moveTo(13.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(19.29f, 17.0f) + lineTo(14.5f, 17.0f) + close() + } + } + return _clipboardArrowRight!! + } + +private var _clipboardArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardCheckmark.kt new file mode 100644 index 00000000..a6e9fd1f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardCheckmark.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClipboardCheckmark: ImageVector + get() { + if (_clipboardCheckmark != null) { + return _clipboardCheckmark!! + } + _clipboardCheckmark = fluentIcon(name = "Filled.ClipboardCheckmark") { + fluentPath { + moveTo(10.25f, 2.0f) + horizontalLineToRelative(3.5f) + curveToRelative(1.16f, 0.0f, 2.11f, 0.87f, 2.24f, 2.0f) + horizontalLineToRelative(1.76f) + curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) + verticalLineToRelative(5.25f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.81f, 22.0f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 6.25f) + curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(1.76f) + curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) + close() + moveTo(13.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-3.65f, 3.64f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _clipboardCheckmark!! + } + +private var _clipboardCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardClock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardClock.kt new file mode 100644 index 00000000..05cb14ce --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardClock.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClipboardClock: ImageVector + get() { + if (_clipboardClock != null) { + return _clipboardClock!! + } + _clipboardClock = fluentIcon(name = "Filled.ClipboardClock") { + fluentPath { + moveTo(11.38f, 13.62f) + curveToRelative(0.0f, 0.34f, 0.27f, 0.63f, 0.62f, 0.63f) + horizontalLineToRelative(1.38f) + arcToRelative(0.63f, 0.63f, 0.0f, false, false, 0.0f, -1.25f) + horizontalLineToRelative(-0.76f) + verticalLineToRelative(-1.63f) + arcToRelative(0.63f, 0.63f, 0.0f, false, false, -1.24f, 0.0f) + verticalLineToRelative(2.25f) + close() + moveTo(13.75f, 2.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) + lineTo(6.25f, 4.0f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 6.25f) + curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) + horizontalLineToRelative(-1.76f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) + close() + moveTo(10.25f, 3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(12.0f, 8.25f) + arcToRelative(4.75f, 4.75f, 0.0f, true, true, 0.0f, 9.5f) + arcToRelative(4.75f, 4.75f, 0.0f, false, true, 0.0f, -9.5f) + close() + } + } + return _clipboardClock!! + } + +private var _clipboardClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardCode.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardCode.kt new file mode 100644 index 00000000..a19a6eea --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardCode.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClipboardCode: ImageVector + get() { + if (_clipboardCode != null) { + return _clipboardCode!! + } + _clipboardCode = fluentIcon(name = "Filled.ClipboardCode") { + fluentPath { + moveTo(10.25f, 2.0f) + horizontalLineToRelative(3.5f) + curveToRelative(1.16f, 0.0f, 2.11f, 0.87f, 2.24f, 2.0f) + horizontalLineToRelative(1.76f) + curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) + verticalLineToRelative(7.46f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -3.43f, -0.45f) + lineTo(16.06f, 15.0f) + horizontalLineToRelative(-0.73f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.89f, -0.41f) + lineToRelative(-2.0f, 2.25f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, 2.32f) + lineToRelative(2.0f, 2.25f) + curveToRelative(0.35f, 0.39f, 0.82f, 0.59f, 1.3f, 0.59f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 6.25f) + curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(1.76f) + curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) + close() + moveTo(13.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(11.19f, 18.5f) + lineTo(13.19f, 20.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.12f, -1.0f) + lineTo(12.75f, 18.0f) + lineToRelative(1.56f, -1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.12f, -1.0f) + lineToRelative(-2.0f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.0f) + close() + moveTo(17.53f, 13.54f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.44f, 0.42f) + lineToRelative(-2.5f, 8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.44f, -0.42f) + lineToRelative(2.5f, -8.5f) + close() + moveTo(19.75f, 20.81f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.06f, -1.06f) + lineTo(21.25f, 18.0f) + lineToRelative(-1.56f, -1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.12f, -1.0f) + lineToRelative(2.0f, 2.25f) + curveToRelative(0.25f, 0.29f, 0.25f, 0.71f, 0.0f, 1.0f) + lineToRelative(-2.0f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 0.06f) + close() + } + } + return _clipboardCode!! + } + +private var _clipboardCode: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardDataBar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardDataBar.kt new file mode 100644 index 00000000..07e70623 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardDataBar.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClipboardDataBar: ImageVector + get() { + if (_clipboardDataBar != null) { + return _clipboardDataBar!! + } + _clipboardDataBar = fluentIcon(name = "Filled.ClipboardDataBar") { + fluentPath { + moveTo(10.25f, 3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(13.75f, 2.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) + lineTo(6.25f, 4.0f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 6.25f) + curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) + horizontalLineToRelative(-1.76f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) + close() + moveTo(16.5f, 13.75f) + verticalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(12.0f, 11.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-5.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(9.0f, 9.75f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + } + } + return _clipboardDataBar!! + } + +private var _clipboardDataBar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardDay.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardDay.kt new file mode 100644 index 00000000..91fc3fc2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardDay.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClipboardDay: ImageVector + get() { + if (_clipboardDay != null) { + return _clipboardDay!! + } + _clipboardDay = fluentIcon(name = "Filled.ClipboardDay") { + fluentPath { + moveTo(9.5f, 13.75f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(4.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-2.5f) + close() + moveTo(10.25f, 2.0f) + horizontalLineToRelative(3.5f) + curveToRelative(1.16f, 0.0f, 2.11f, 0.87f, 2.24f, 2.0f) + horizontalLineToRelative(1.76f) + curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 6.25f) + curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(1.76f) + curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) + close() + moveTo(13.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(8.0f, 9.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(9.75f, 12.0f) + curveTo(8.78f, 12.0f, 8.0f, 12.78f, 8.0f, 13.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(4.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-4.5f) + close() + } + } + return _clipboardDay!! + } + +private var _clipboardDay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardError.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardError.kt new file mode 100644 index 00000000..45927a50 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardError.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClipboardError: ImageVector + get() { + if (_clipboardError != null) { + return _clipboardError!! + } + _clipboardError = fluentIcon(name = "Filled.ClipboardError") { + fluentPath { + moveTo(10.25f, 2.0f) + horizontalLineToRelative(3.5f) + curveToRelative(1.16f, 0.0f, 2.11f, 0.87f, 2.24f, 2.0f) + horizontalLineToRelative(1.76f) + curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) + verticalLineToRelative(5.25f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.81f, 22.0f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 6.25f) + curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(1.76f) + curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) + close() + moveTo(13.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(17.5f, 14.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(17.5f, 21.13f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.25f) + close() + } + } + return _clipboardError!! + } + +private var _clipboardError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardHeart.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardHeart.kt new file mode 100644 index 00000000..904abc1f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardHeart.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClipboardHeart: ImageVector + get() { + if (_clipboardHeart != null) { + return _clipboardHeart!! + } + _clipboardHeart = fluentIcon(name = "Filled.ClipboardHeart") { + fluentPath { + moveTo(10.25f, 2.0f) + horizontalLineToRelative(3.5f) + curveToRelative(1.16f, 0.0f, 2.11f, 0.87f, 2.24f, 2.0f) + horizontalLineToRelative(1.76f) + curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) + verticalLineToRelative(4.98f) + arcToRelative(4.46f, 4.46f, 0.0f, false, false, -2.99f, 0.73f) + arcToRelative(4.47f, 4.47f, 0.0f, false, false, -5.64f, 6.87f) + lineTo(14.54f, 22.0f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 6.25f) + curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(1.76f) + curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) + close() + moveTo(13.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(17.01f, 22.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.53f, -0.22f) + lineToRelative(-4.4f, -4.4f) + arcToRelative(3.47f, 3.47f, 0.0f, true, true, 4.9f, -4.91f) + lineToRelative(0.03f, 0.04f) + lineToRelative(0.04f, -0.04f) + arcToRelative(3.47f, 3.47f, 0.0f, true, true, 4.9f, 4.9f) + lineToRelative(-4.4f, 4.41f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.22f) + close() + } + } + return _clipboardHeart!! + } + +private var _clipboardHeart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardImage.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardImage.kt new file mode 100644 index 00000000..a6bf943d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardImage.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClipboardImage: ImageVector + get() { + if (_clipboardImage != null) { + return _clipboardImage!! + } + _clipboardImage = fluentIcon(name = "Filled.ClipboardImage") { + fluentPath { + moveTo(13.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(10.25f, 2.0f) + horizontalLineToRelative(3.5f) + curveToRelative(1.16f, 0.0f, 2.11f, 0.87f, 2.24f, 2.0f) + horizontalLineToRelative(1.76f) + curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) + lineTo(20.0f, 11.0f) + horizontalLineToRelative(-5.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, 4.0f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.73f, 0.2f, 1.41f, 0.54f, 2.0f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 6.25f) + curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(1.76f) + curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) + close() + moveTo(15.0f, 12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.56f, 0.15f, 1.08f, 0.42f, 1.52f) + lineToRelative(3.49f, -3.49f) + curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.0f) + lineToRelative(3.5f, 3.5f) + curveToRelative(0.26f, -0.45f, 0.41f, -0.97f, 0.41f, -1.53f) + verticalLineToRelative(-5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + horizontalLineToRelative(-5.0f) + close() + moveTo(15.0f, 23.0f) + curveToRelative(-0.56f, 0.0f, -1.08f, -0.15f, -1.52f, -0.42f) + lineToRelative(3.49f, -3.49f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(3.5f, 3.5f) + curveToRelative(-0.45f, 0.26f, -0.97f, 0.41f, -1.53f, 0.41f) + horizontalLineToRelative(-5.0f) + close() + moveTo(20.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + close() + } + } + return _clipboardImage!! + } + +private var _clipboardImage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardLetter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardLetter.kt new file mode 100644 index 00000000..871e473f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardLetter.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClipboardLetter: ImageVector + get() { + if (_clipboardLetter != null) { + return _clipboardLetter!! + } + _clipboardLetter = fluentIcon(name = "Filled.ClipboardLetter") { + fluentPath { + moveTo(13.75f, 2.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) + lineTo(6.25f, 4.0f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(4.83f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.05f, -1.12f) + lineToRelative(1.79f, -3.98f) + lineToRelative(0.01f, -0.03f) + lineToRelative(0.84f, -1.86f) + lineTo(13.77f, 15.0f) + lineToRelative(1.85f, -4.12f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.74f, 0.0f) + lineTo(20.0f, 14.52f) + lineTo(20.0f, 6.25f) + curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) + horizontalLineToRelative(-1.76f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) + close() + moveTo(10.25f, 3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(12.51f, 22.0f) + arcToRelative(0.51f, 0.51f, 0.0f, false, true, -0.22f, -0.04f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.25f, -0.66f) + lineToRelative(1.8f, -4.0f) + verticalLineToRelative(-0.01f) + lineToRelative(2.7f, -6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.9f, 0.0f) + lineToRelative(2.7f, 6.0f) + lineToRelative(0.02f, 0.02f) + lineToRelative(1.8f, 3.98f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -0.92f, 0.42f) + lineTo(19.37f, 18.0f) + horizontalLineToRelative(-4.75f) + lineToRelative(-1.67f, 3.7f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.44f, 0.3f) + close() + moveTo(16.99f, 12.72f) + lineTo(15.07f, 17.0f) + horizontalLineToRelative(3.85f) + lineTo(17.0f, 12.72f) + close() + } + } + return _clipboardLetter!! + } + +private var _clipboardLetter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardLink.kt new file mode 100644 index 00000000..a2791fe6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardLink.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClipboardLink: ImageVector + get() { + if (_clipboardLink != null) { + return _clipboardLink!! + } + _clipboardLink = fluentIcon(name = "Filled.ClipboardLink") { + fluentPath { + moveTo(10.25f, 2.0f) + horizontalLineToRelative(3.5f) + curveToRelative(1.16f, 0.0f, 2.11f, 0.87f, 2.24f, 2.0f) + horizontalLineToRelative(1.76f) + curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) + lineTo(20.0f, 14.0f) + horizontalLineToRelative(-5.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, -4.0f, 8.0f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 6.25f) + curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(1.76f) + curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) + close() + moveTo(13.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(23.0f, 19.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, -4.0f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(0.16f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -0.16f, 5.0f) + horizontalLineToRelative(-0.1f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 19.0f, 23.0f) + horizontalLineToRelative(0.2f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.8f, -4.0f) + close() + moveTo(15.75f, 15.75f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 15.0f, 15.0f) + horizontalLineToRelative(-0.2f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.2f, 8.0f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-0.16f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.16f, -5.0f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(18.75f, 18.25f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + } + } + return _clipboardLink!! + } + +private var _clipboardLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardMonth.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardMonth.kt new file mode 100644 index 00000000..064293f8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardMonth.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClipboardMonth: ImageVector + get() { + if (_clipboardMonth != null) { + return _clipboardMonth!! + } + _clipboardMonth = fluentIcon(name = "Filled.ClipboardMonth") { + fluentPath { + moveTo(13.75f, 2.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) + lineTo(6.25f, 4.0f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 6.25f) + curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) + horizontalLineToRelative(-1.76f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) + close() + moveTo(10.25f, 3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(8.25f, 12.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, 2.5f) + close() + moveTo(8.25f, 16.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, 2.5f) + close() + moveTo(17.5f, 11.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(12.25f, 12.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, 2.5f) + close() + moveTo(13.5f, 15.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + } + } + return _clipboardMonth!! + } + +private var _clipboardMonth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardMore.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardMore.kt new file mode 100644 index 00000000..f96dfa59 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardMore.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClipboardMore: ImageVector + get() { + if (_clipboardMore != null) { + return _clipboardMore!! + } + _clipboardMore = fluentIcon(name = "Filled.ClipboardMore") { + fluentPath { + moveTo(10.25f, 3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(13.75f, 2.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) + lineTo(6.25f, 4.0f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + lineTo(8.5f, 22.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 4.5f, -1.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + curveToRelative(0.0f, -1.2f, 0.86f, -2.22f, 2.0f, -2.45f) + lineTo(20.0f, 6.25f) + curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) + horizontalLineToRelative(-1.76f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) + close() + moveTo(12.0f, 20.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + moveTo(15.5f, 22.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + close() + moveTo(20.5f, 22.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + close() + } + } + return _clipboardMore!! + } + +private var _clipboardMore: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardPulse.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardPulse.kt new file mode 100644 index 00000000..6bc5c4ab --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardPulse.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClipboardPulse: ImageVector + get() { + if (_clipboardPulse != null) { + return _clipboardPulse!! + } + _clipboardPulse = fluentIcon(name = "Filled.ClipboardPulse") { + fluentPath { + moveTo(10.25f, 2.0f) + horizontalLineToRelative(3.5f) + curveToRelative(1.16f, 0.0f, 2.11f, 0.87f, 2.24f, 2.0f) + horizontalLineToRelative(1.76f) + curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) + lineTo(20.0f, 13.0f) + horizontalLineToRelative(-2.26f) + lineToRelative(-0.99f, -1.65f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -3.07f, 0.12f) + lineToRelative(-0.5f, 1.02f) + lineToRelative(-1.25f, -4.23f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -3.25f, -0.3f) + lineTo(6.17f, 13.0f) + lineTo(4.0f, 13.0f) + lineTo(4.0f, 6.25f) + curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(1.76f) + curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) + close() + moveTo(13.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(16.75f, 16.5f) + lineTo(20.0f, 16.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 16.5f) + horizontalLineToRelative(3.25f) + curveToRelative(0.66f, 0.0f, 1.27f, -0.37f, 1.57f, -0.97f) + lineToRelative(1.0f, -2.02f) + lineToRelative(1.25f, 4.23f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 3.25f, 0.3f) + lineToRelative(1.08f, -2.18f) + curveToRelative(0.33f, 0.4f, 0.82f, 0.64f, 1.35f, 0.64f) + close() + moveTo(10.97f, 8.54f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.4f, -0.13f) + lineTo(6.8f, 14.0f) + lineTo(2.75f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.5f) + curveToRelative(0.28f, 0.0f, 0.54f, -0.16f, 0.67f, -0.41f) + lineToRelative(2.15f, -4.3f) + lineToRelative(1.96f, 6.67f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.4f, 0.13f) + lineToRelative(1.88f, -3.78f) + lineToRelative(0.8f, 1.33f) + curveToRelative(0.13f, 0.22f, 0.38f, 0.36f, 0.64f, 0.36f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.08f) + lineToRelative(-1.28f, -2.14f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.31f, 0.05f) + lineToRelative(-1.65f, 3.3f) + lineToRelative(-1.96f, -6.67f) + close() + } + } + return _clipboardPulse!! + } + +private var _clipboardPulse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardSearch.kt new file mode 100644 index 00000000..bfb769a5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardSearch.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClipboardSearch: ImageVector + get() { + if (_clipboardSearch != null) { + return _clipboardSearch!! + } + _clipboardSearch = fluentIcon(name = "Filled.ClipboardSearch") { + fluentPath { + moveTo(13.75f, 2.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) + lineTo(6.25f, 4.0f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) + verticalLineToRelative(3.85f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 7.25f, 7.67f) + lineToRelative(2.24f, 2.24f) + curveToRelative(0.53f, 0.54f, 0.65f, 1.34f, 0.34f, 1.99f) + horizontalLineToRelative(3.92f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 6.25f) + curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) + horizontalLineToRelative(-1.76f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) + close() + moveTo(10.25f, 3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(9.95f, 17.89f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, -1.15f, 0.98f) + lineToRelative(2.92f, 2.91f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.83f, -2.83f) + close() + moveTo(6.5f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) + close() + } + } + return _clipboardSearch!! + } + +private var _clipboardSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardSettings.kt new file mode 100644 index 00000000..a343b4e9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardSettings.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClipboardSettings: ImageVector + get() { + if (_clipboardSettings != null) { + return _clipboardSettings!! + } + _clipboardSettings = fluentIcon(name = "Filled.ClipboardSettings") { + fluentPath { + moveTo(10.25f, 2.0f) + horizontalLineToRelative(3.5f) + curveToRelative(1.16f, 0.0f, 2.11f, 0.87f, 2.24f, 2.0f) + horizontalLineToRelative(1.76f) + curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) + verticalLineToRelative(5.25f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.81f, 22.0f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 6.25f) + curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(1.76f) + curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) + close() + moveTo(13.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(14.28f, 13.98f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.59f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) + lineToRelative(0.55f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) + lineToRelative(-0.19f, 0.64f) + curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) + lineToRelative(0.49f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) + lineToRelative(-0.2f, -0.69f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) + lineToRelative(0.59f, -0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, -1.8f) + lineToRelative(-0.55f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.19f, -0.63f) + curveToRelative(-0.44f, -0.4f, -0.94f, -0.7f, -1.49f, -0.93f) + lineToRelative(-0.49f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) + lineToRelative(0.2f, 0.7f) + close() + moveTo(17.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) + close() + } + } + return _clipboardSettings!! + } + +private var _clipboardSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardTask.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardTask.kt new file mode 100644 index 00000000..e9414fc8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardTask.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClipboardTask: ImageVector + get() { + if (_clipboardTask != null) { + return _clipboardTask!! + } + _clipboardTask = fluentIcon(name = "Filled.ClipboardTask") { + fluentPath { + moveTo(13.75f, 2.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) + lineTo(6.25f, 4.0f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 6.25f) + curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) + horizontalLineToRelative(-1.76f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) + close() + moveTo(10.25f, 3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(17.03f, 11.03f) + lineTo(11.53f, 16.53f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineTo(11.0f, 14.94f) + lineToRelative(4.97f, -4.97f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + close() + } + } + return _clipboardTask!! + } + +private var _clipboardTask: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardTaskAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardTaskAdd.kt new file mode 100644 index 00000000..5fb10dde --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardTaskAdd.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClipboardTaskAdd: ImageVector + get() { + if (_clipboardTaskAdd != null) { + return _clipboardTaskAdd!! + } + _clipboardTaskAdd = fluentIcon(name = "Filled.ClipboardTaskAdd") { + fluentPath { + moveTo(11.75f, 2.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) + lineTo(4.25f, 4.0f) + curveTo(3.01f, 4.0f, 2.0f, 5.0f, 2.0f, 6.25f) + verticalLineToRelative(13.5f) + curveTo(2.0f, 20.99f, 3.0f, 22.0f, 4.25f, 22.0f) + horizontalLineToRelative(8.56f) + arcToRelative(6.48f, 6.48f, 0.0f, false, true, -0.85f, -7.9f) + lineToRelative(-2.43f, 2.43f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineTo(9.0f, 14.94f) + lineToRelative(4.97f, -4.97f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-0.93f, 0.93f) + arcToRelative(6.47f, 6.47f, 0.0f, false, true, 3.9f, -0.94f) + lineTo(18.0f, 6.25f) + curveTo(18.0f, 5.01f, 17.0f, 4.0f, 15.75f, 4.0f) + horizontalLineToRelative(-1.76f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) + close() + moveTo(8.25f, 3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _clipboardTaskAdd!! + } + +private var _clipboardTaskAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardTaskListLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardTaskListLtr.kt new file mode 100644 index 00000000..e3a93e2c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardTaskListLtr.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClipboardTaskListLtr: ImageVector + get() { + if (_clipboardTaskListLtr != null) { + return _clipboardTaskListLtr!! + } + _clipboardTaskListLtr = fluentIcon(name = "Filled.ClipboardTaskListLtr") { + fluentPath { + moveTo(13.75f, 2.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) + lineTo(6.25f, 4.0f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 6.25f) + curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) + horizontalLineToRelative(-1.76f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) + close() + moveTo(10.25f, 3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(12.5f, 10.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(13.25f, 15.0f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + close() + moveTo(10.78f, 9.78f) + lineTo(8.78f, 11.78f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-1.0f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(0.47f, 0.47f) + lineToRelative(1.47f, -1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + close() + moveTo(10.78f, 14.22f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-2.0f, 2.0f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-1.0f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(0.47f, 0.47f) + lineToRelative(1.47f, -1.47f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + } + } + return _clipboardTaskListLtr!! + } + +private var _clipboardTaskListLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardTaskListRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardTaskListRtl.kt new file mode 100644 index 00000000..0e493247 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardTaskListRtl.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClipboardTaskListRtl: ImageVector + get() { + if (_clipboardTaskListRtl != null) { + return _clipboardTaskListRtl!! + } + _clipboardTaskListRtl = fluentIcon(name = "Filled.ClipboardTaskListRtl") { + fluentPath { + moveTo(13.75f, 2.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) + lineTo(6.25f, 4.0f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 6.25f) + curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) + horizontalLineToRelative(-1.76f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) + close() + moveTo(10.25f, 3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(17.28f, 8.72f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-2.0f, 2.0f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-1.0f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(0.47f, 0.47f) + lineToRelative(1.47f, -1.47f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(17.28f, 15.28f) + lineTo(15.28f, 17.28f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-1.0f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(0.47f, 0.47f) + lineToRelative(1.47f, -1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + close() + moveTo(7.0f, 10.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(7.75f, 15.0f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + } + } + return _clipboardTaskListRtl!! + } + +private var _clipboardTaskListRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardTextEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardTextEdit.kt new file mode 100644 index 00000000..5cd6b41b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardTextEdit.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClipboardTextEdit: ImageVector + get() { + if (_clipboardTextEdit != null) { + return _clipboardTextEdit!! + } + _clipboardTextEdit = fluentIcon(name = "Filled.ClipboardTextEdit") { + fluentPath { + moveTo(15.98f, 3.94f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 13.75f, 2.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-1.14f, 0.0f, -2.08f, 0.85f, -2.23f, 1.94f) + lineToRelative(-0.01f, 0.14f) + lineTo(8.01f, 4.0f) + lineTo(6.25f, 4.0f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + lineTo(11.0f, 22.0f) + curveToRelative(0.0f, -0.2f, 0.01f, -0.4f, 0.06f, -0.6f) + lineToRelative(0.46f, -1.82f) + curveToRelative(0.1f, -0.39f, 0.25f, -0.75f, 0.46f, -1.08f) + lineTo(8.0f, 18.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 17.0f) + horizontalLineToRelative(5.36f) + lineToRelative(5.03f, -5.04f) + arcToRelative(3.27f, 3.27f, 0.0f, false, true, 1.61f, -0.88f) + lineTo(20.0f, 6.25f) + curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) + horizontalLineToRelative(-1.76f) + verticalLineToRelative(0.08f) + lineToRelative(-0.01f, -0.14f) + close() + moveTo(10.25f, 3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(8.0f, 13.0f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(8.0f, 14.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 13.0f) + close() + moveTo(8.0f, 9.0f) + horizontalLineToRelative(8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(8.0f, 10.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 9.0f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _clipboardTextEdit!! + } + +private var _clipboardTextEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardTextLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardTextLtr.kt new file mode 100644 index 00000000..8e5cbb30 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardTextLtr.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClipboardTextLtr: ImageVector + get() { + if (_clipboardTextLtr != null) { + return _clipboardTextLtr!! + } + _clipboardTextLtr = fluentIcon(name = "Filled.ClipboardTextLtr") { + fluentPath { + moveTo(13.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(13.75f, 2.0f) + curveToRelative(1.14f, 0.0f, 2.08f, 0.85f, 2.23f, 1.94f) + lineToRelative(0.01f, 0.14f) + lineTo(15.99f, 4.0f) + horizontalLineToRelative(1.76f) + curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 6.25f) + curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(1.76f) + verticalLineToRelative(0.08f) + lineToRelative(0.01f, -0.14f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 10.25f, 2.0f) + horizontalLineToRelative(3.5f) + close() + moveTo(14.0f, 17.0f) + lineTo(8.0f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(12.0f, 13.0f) + lineTo(8.0f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(16.0f, 9.0f) + lineTo(8.0f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.0f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 16.0f, 9.0f) + close() + } + } + return _clipboardTextLtr!! + } + +private var _clipboardTextLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardTextRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardTextRtl.kt new file mode 100644 index 00000000..6311bef4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClipboardTextRtl.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClipboardTextRtl: ImageVector + get() { + if (_clipboardTextRtl != null) { + return _clipboardTextRtl!! + } + _clipboardTextRtl = fluentIcon(name = "Filled.ClipboardTextRtl") { + fluentPath { + moveTo(15.98f, 3.94f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 13.75f, 2.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-1.14f, 0.0f, -2.08f, 0.85f, -2.23f, 1.94f) + lineToRelative(-0.01f, 0.14f) + lineTo(8.01f, 4.0f) + lineTo(6.25f, 4.0f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 6.25f) + curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) + horizontalLineToRelative(-1.76f) + verticalLineToRelative(0.08f) + lineToRelative(-0.01f, -0.14f) + close() + moveTo(10.25f, 3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(8.0f, 9.0f) + horizontalLineToRelative(8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(8.0f, 10.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 9.0f) + close() + moveTo(11.25f, 13.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(10.0f, 17.0f) + horizontalLineToRelative(6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + } + } + return _clipboardTextRtl!! + } + +private var _clipboardTextRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClockAlarm.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClockAlarm.kt new file mode 100644 index 00000000..46733331 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClockAlarm.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClockAlarm: ImageVector + get() { + if (_clockAlarm != null) { + return _clockAlarm!! + } + _clockAlarm = fluentIcon(name = "Filled.ClockAlarm") { + fluentPath { + moveTo(9.1f, 3.48f) + arcTo(4.0f, 4.0f, 0.0f, true, false, 3.48f, 9.1f) + arcToRelative(8.99f, 8.99f, 0.0f, false, false, 1.65f, 8.71f) + lineToRelative(-1.91f, 1.91f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(1.9f, -1.9f) + arcToRelative(8.96f, 8.96f, 0.0f, false, false, 11.63f, 0.0f) + lineToRelative(1.91f, 1.9f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-1.9f, -1.9f) + arcToRelative(8.96f, 8.96f, 0.0f, false, false, 1.64f, -8.72f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, -5.62f, -5.62f) + arcToRelative(8.99f, 8.99f, 0.0f, false, false, -5.8f, 0.0f) + close() + moveTo(6.0f, 3.5f) + curveToRelative(0.63f, 0.0f, 1.2f, 0.23f, 1.65f, 0.62f) + arcToRelative(9.04f, 9.04f, 0.0f, false, false, -3.53f, 3.53f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 6.0f, 3.5f) + close() + moveTo(16.35f, 4.12f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 3.53f, 3.53f) + arcToRelative(9.04f, 9.04f, 0.0f, false, false, -3.53f, -3.53f) + close() + moveTo(11.25f, 7.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(12.0f, 12.0f) + horizontalLineToRelative(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _clockAlarm!! + } + +private var _clockAlarm: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClockArrowDownload.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClockArrowDownload.kt new file mode 100644 index 00000000..44648ea1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClockArrowDownload.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClockArrowDownload: ImageVector + get() { + if (_clockArrowDownload != null) { + return _clockArrowDownload!! + } + _clockArrowDownload = fluentIcon(name = "Filled.ClockArrowDownload") { + fluentPath { + moveTo(16.25f, 12.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(13.0f, 11.0f) + horizontalLineToRelative(3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(13.0f, 1.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, -9.95f, 11.0f) + arcTo(6.5f, 6.5f, 0.0f, false, true, 12.0f, 20.95f) + arcTo(10.0f, 10.0f, 0.0f, true, false, 13.0f, 1.0f) + close() + moveTo(1.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 5.0f, -5.48f) + verticalLineToRelative(5.77f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.5f, 2.5f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineTo(7.0f, 17.79f) + verticalLineToRelative(-5.77f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -6.0f, 5.48f) + close() + moveTo(3.5f, 20.5f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + lineTo(4.0f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + close() + } + } + return _clockArrowDownload!! + } + +private var _clockArrowDownload: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClockDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClockDismiss.kt new file mode 100644 index 00000000..e521b449 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClockDismiss.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClockDismiss: ImageVector + get() { + if (_clockDismiss != null) { + return _clockDismiss!! + } + _clockDismiss = fluentIcon(name = "Filled.ClockDismiss") { + fluentPath { + moveTo(16.25f, 12.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(13.0f, 11.0f) + horizontalLineToRelative(3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(13.0f, 1.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, -9.95f, 11.0f) + arcTo(6.5f, 6.5f, 0.0f, false, true, 12.0f, 20.95f) + arcTo(10.0f, 10.0f, 0.0f, true, false, 13.0f, 1.0f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(4.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineTo(7.21f, 17.5f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineTo(6.5f, 16.79f) + lineToRelative(-1.65f, -1.64f) + close() + } + } + return _clockDismiss!! + } + +private var _clockDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClockLock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClockLock.kt new file mode 100644 index 00000000..b73b32c7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClockLock.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClockLock: ImageVector + get() { + if (_clockLock != null) { + return _clockLock!! + } + _clockLock = fluentIcon(name = "Filled.ClockLock") { + fluentPath { + moveTo(15.25f, 13.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(12.0f, 12.0f) + horizontalLineToRelative(3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, -9.92f, 11.26f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 9.0f, 14.0f) + verticalLineToRelative(0.05f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.0f, 2.45f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.15f, -0.01f, 0.3f, -0.04f, 0.45f) + arcTo(10.0f, 10.0f, 0.0f, true, false, 12.0f, 2.0f) + close() + moveTo(3.0f, 15.0f) + verticalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(0.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-6.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 1.0f, 21.5f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + lineTo(3.0f, 15.0f) + close() + moveTo(4.5f, 14.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + close() + moveTo(6.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + } + } + return _clockLock!! + } + +private var _clockLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClockPause.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClockPause.kt new file mode 100644 index 00000000..4cc217f8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClockPause.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClockPause: ImageVector + get() { + if (_clockPause != null) { + return _clockPause!! + } + _clockPause = fluentIcon(name = "Filled.ClockPause") { + fluentPath { + moveTo(16.25f, 12.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(13.0f, 11.0f) + horizontalLineToRelative(3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(13.0f, 1.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, -9.95f, 11.0f) + arcTo(6.5f, 6.5f, 0.0f, false, true, 12.0f, 20.95f) + arcTo(10.0f, 10.0f, 0.0f, true, false, 13.0f, 1.0f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(4.5f, 20.5f) + arcTo(0.5f, 0.5f, 0.0f, false, false, 5.0f, 20.0f) + verticalLineToRelative(-5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + close() + moveTo(8.5f, 20.5f) + arcTo(0.5f, 0.5f, 0.0f, false, false, 9.0f, 20.0f) + verticalLineToRelative(-5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + close() + } + } + return _clockPause!! + } + +private var _clockPause: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClockToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClockToolbox.kt new file mode 100644 index 00000000..c1b1e80a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClockToolbox.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClockToolbox: ImageVector + get() { + if (_clockToolbox != null) { + return _clockToolbox!! + } + _clockToolbox = fluentIcon(name = "Filled.ClockToolbox") { + fluentPath { + moveTo(16.25f, 12.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(13.0f, 11.0f) + horizontalLineToRelative(3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(13.0f, 1.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, -9.98f, 10.61f) + arcTo(2.74f, 2.74f, 0.0f, false, true, 4.75f, 11.0f) + horizontalLineToRelative(3.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 11.0f, 13.75f) + verticalLineToRelative(0.3f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.0f, 2.45f) + lineTo(13.0f, 21.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) + close() + moveTo(8.25f, 13.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + lineTo(4.5f, 15.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-1.25f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(3.0f, 15.0f) + verticalLineToRelative(-1.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(3.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(10.0f, 15.0f) + horizontalLineToRelative(0.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + lineTo(12.0f, 18.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(0.5f) + lineTo(4.0f, 18.0f) + verticalLineToRelative(-0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(0.5f) + lineTo(1.0f, 18.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + lineTo(3.0f, 15.0f) + close() + moveTo(9.0f, 19.5f) + lineTo(9.0f, 19.0f) + lineTo(4.0f, 19.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + lineTo(3.0f, 19.0f) + lineTo(1.0f, 19.0f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(8.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + lineTo(12.0f, 19.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + close() + } + } + return _clockToolbox!! + } + +private var _clockToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClosedCaption.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClosedCaption.kt new file mode 100644 index 00000000..3661711e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClosedCaption.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClosedCaption: ImageVector + get() { + if (_closedCaption != null) { + return _closedCaption!! + } + _closedCaption = fluentIcon(name = "Filled.ClosedCaption") { + fluentPath { + moveTo(18.75f, 4.0f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(5.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(5.25f, 4.0f) + horizontalLineToRelative(13.5f) + close() + moveTo(10.62f, 8.6f) + curveTo(8.22f, 7.22f, 5.5f, 8.85f, 5.5f, 12.0f) + curveToRelative(0.0f, 3.14f, 2.72f, 4.77f, 5.12f, 3.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.74f, -1.3f) + curveTo(8.48f, 14.9f, 7.0f, 14.0f, 7.0f, 12.0f) + reflectiveCurveToRelative(1.48f, -2.9f, 2.88f, -2.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.74f, -1.3f) + close() + moveTo(18.12f, 8.6f) + curveTo(15.72f, 7.22f, 13.0f, 8.85f, 13.0f, 12.0f) + curveToRelative(0.0f, 3.14f, 2.72f, 4.77f, 5.12f, 3.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.74f, -1.3f) + curveToRelative(-1.4f, 0.8f, -2.88f, -0.1f, -2.88f, -2.1f) + reflectiveCurveToRelative(1.48f, -2.9f, 2.88f, -2.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.74f, -1.3f) + close() + } + } + return _closedCaption!! + } + +private var _closedCaption: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClosedCaptionOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClosedCaptionOff.kt new file mode 100644 index 00000000..ca14a2a3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ClosedCaptionOff.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ClosedCaptionOff: ImageVector + get() { + if (_closedCaptionOff != null) { + return _closedCaptionOff!! + } + _closedCaptionOff = fluentIcon(name = "Filled.ClosedCaptionOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(1.25f, 1.25f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) + horizontalLineToRelative(13.69f) + lineToRelative(1.78f, 1.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(8.58f, 9.63f) + curveTo(7.68f, 9.78f, 7.0f, 10.63f, 7.0f, 12.0f) + curveToRelative(0.0f, 2.0f, 1.48f, 2.9f, 2.88f, 2.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.74f, 1.3f) + curveToRelative(-2.4f, 1.37f, -5.12f, -0.26f, -5.12f, -3.4f) + curveToRelative(0.0f, -1.7f, 0.8f, -2.96f, 1.9f, -3.54f) + lineToRelative(1.17f, 1.17f) + close() + moveTo(17.38f, 9.9f) + curveToRelative(-1.24f, -0.7f, -2.55f, -0.08f, -2.83f, 1.47f) + lineToRelative(7.01f, 7.01f) + curveToRelative(0.28f, -0.48f, 0.44f, -1.03f, 0.44f, -1.63f) + verticalLineToRelative(-9.5f) + curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) + lineTo(7.18f, 4.0f) + lineToRelative(6.18f, 6.17f) + arcToRelative(3.26f, 3.26f, 0.0f, false, true, 4.76f, -1.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 1.3f) + close() + } + } + return _closedCaptionOff!! + } + +private var _closedCaptionOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudAdd.kt new file mode 100644 index 00000000..249c09d7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudAdd.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CloudAdd: ImageVector + get() { + if (_cloudAdd != null) { + return _cloudAdd!! + } + _cloudAdd = fluentIcon(name = "Filled.CloudAdd") { + fluentPath { + moveTo(6.08f, 8.02f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.05f, 4.97f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 10.02f, 17.0f) + lineTo(6.5f, 17.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) + close() + moveTo(22.0f, 16.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(17.0f, 17.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(16.0f, 17.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(16.0f, 16.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(17.0f, 16.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(17.0f, 17.0f) + close() + } + } + return _cloudAdd!! + } + +private var _cloudAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudArchive.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudArchive.kt new file mode 100644 index 00000000..9f8575fb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudArchive.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CloudArchive: ImageVector + get() { + if (_cloudArchive != null) { + return _cloudArchive!! + } + _cloudArchive = fluentIcon(name = "Filled.CloudArchive") { + fluentPath { + moveTo(6.08f, 9.02f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) + arcTo(4.5f, 4.5f, 0.0f, false, true, 21.74f, 12.0f) + lineTo(13.0f, 12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.0f, 1.73f) + lineTo(12.0f, 18.0f) + lineTo(6.5f, 18.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) + close() + moveTo(13.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineToRelative(-9.0f) + close() + moveTo(22.0f, 17.0f) + horizontalLineToRelative(-9.0f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(15.5f, 18.5f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + } + } + return _cloudArchive!! + } + +private var _cloudArchive: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudArrowDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudArrowDown.kt new file mode 100644 index 00000000..25d98105 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudArrowDown.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CloudArrowDown: ImageVector + get() { + if (_cloudArrowDown != null) { + return _cloudArrowDown!! + } + _cloudArrowDown = fluentIcon(name = "Filled.CloudArrowDown") { + fluentPath { + moveTo(6.08f, 8.02f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.05f, 4.97f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 10.02f, 17.0f) + lineTo(6.5f, 17.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) + close() + moveTo(22.0f, 16.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(17.0f, 13.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(4.8f) + lineToRelative(-1.65f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.5f, 2.5f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineTo(17.0f, 18.29f) + lineTo(17.0f, 13.5f) + close() + } + } + return _cloudArrowDown!! + } + +private var _cloudArrowDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudArrowUp.kt new file mode 100644 index 00000000..e916d069 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudArrowUp.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CloudArrowUp: ImageVector + get() { + if (_cloudArrowUp != null) { + return _cloudArrowUp!! + } + _cloudArrowUp = fluentIcon(name = "Filled.CloudArrowUp") { + fluentPath { + moveTo(6.08f, 8.02f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.05f, 4.97f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 10.02f, 17.0f) + lineTo(6.5f, 17.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) + close() + moveTo(22.0f, 16.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(16.0f, 19.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-4.8f) + lineToRelative(1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineTo(16.0f, 14.71f) + verticalLineToRelative(4.79f) + close() + } + } + return _cloudArrowUp!! + } + +private var _cloudArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudCheckmark.kt new file mode 100644 index 00000000..7cc69a51 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudCheckmark.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CloudCheckmark: ImageVector + get() { + if (_cloudCheckmark != null) { + return _cloudCheckmark!! + } + _cloudCheckmark = fluentIcon(name = "Filled.CloudCheckmark") { + fluentPath { + moveTo(6.08f, 8.02f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.05f, 4.97f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 10.02f, 17.0f) + lineTo(6.5f, 17.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) + close() + moveTo(22.0f, 16.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(19.85f, 14.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-3.65f, 3.64f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _cloudCheckmark!! + } + +private var _cloudCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudDismiss.kt new file mode 100644 index 00000000..206d6dc1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudDismiss.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CloudDismiss: ImageVector + get() { + if (_cloudDismiss != null) { + return _cloudDismiss!! + } + _cloudDismiss = fluentIcon(name = "Filled.CloudDismiss") { + fluentPath { + moveTo(6.08f, 8.02f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.05f, 4.97f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 10.02f, 17.0f) + lineTo(6.5f, 17.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) + close() + moveTo(22.0f, 16.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.85f, 14.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-1.64f, -1.65f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.65f, 1.64f) + lineToRelative(-1.65f, -1.64f) + close() + } + } + return _cloudDismiss!! + } + +private var _cloudDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudEdit.kt new file mode 100644 index 00000000..577c8aef --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudEdit.kt @@ -0,0 +1,41 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CloudEdit: ImageVector + get() { + if (_cloudEdit != null) { + return _cloudEdit!! + } + _cloudEdit = fluentIcon(name = "Filled.CloudEdit") { + fluentPath { + moveTo(6.08f, 9.02f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) + curveToRelative(0.92f, 0.08f, 1.76f, 0.45f, 2.43f, 1.0f) + curveToRelative(-0.71f, 0.08f, -1.4f, 0.4f, -1.96f, 0.94f) + lineToRelative(-5.9f, 5.9f) + curveToRelative(-0.33f, 0.33f, -0.59f, 0.72f, -0.77f, 1.14f) + lineTo(6.5f, 18.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) + close() + moveTo(19.1f, 11.67f) + lineTo(13.2f, 17.57f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _cloudEdit!! + } + +private var _cloudEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudError.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudError.kt new file mode 100644 index 00000000..f8fb614c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudError.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CloudError: ImageVector + get() { + if (_cloudError != null) { + return _cloudError!! + } + _cloudError = fluentIcon(name = "Filled.CloudError") { + fluentPath { + moveTo(6.08f, 8.02f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.05f, 4.97f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 10.02f, 17.0f) + lineTo(6.5f, 17.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) + close() + moveTo(22.0f, 16.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(16.5f, 13.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(16.5f, 20.13f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.25f) + close() + } + } + return _cloudError!! + } + +private var _cloudError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudFlow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudFlow.kt new file mode 100644 index 00000000..7a019177 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudFlow.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CloudFlow: ImageVector + get() { + if (_cloudFlow != null) { + return _cloudFlow!! + } + _cloudFlow = fluentIcon(name = "Filled.CloudFlow") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, -5.92f, 5.02f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 6.5f, 16.0f) + horizontalLineToRelative(6.68f) + lineToRelative(0.13f, -0.5f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.49f, -2.22f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 6.15f, -1.13f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.03f, -5.13f) + arcTo(6.0f, 6.0f, 0.0f, false, false, 12.0f, 2.0f) + close() + moveTo(19.25f, 13.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(16.22f, 15.75f) + horizontalLineToRelative(0.47f) + arcToRelative(2.75f, 2.75f, 0.0f, true, false, -0.14f, -1.5f) + horizontalLineToRelative(-0.33f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.94f, 1.5f) + lineToRelative(-1.01f, 3.88f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.49f, 0.37f) + horizontalLineToRelative(-0.8f) + arcToRelative(2.75f, 2.75f, 0.0f, true, false, -0.28f, 1.5f) + horizontalLineToRelative(1.08f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.94f, -1.5f) + lineToRelative(1.01f, -3.88f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.49f, -0.37f) + close() + moveTo(8.0f, 20.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) + close() + } + } + return _cloudFlow!! + } + +private var _cloudFlow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudLink.kt new file mode 100644 index 00000000..b9f8a343 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudLink.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CloudLink: ImageVector + get() { + if (_cloudLink != null) { + return _cloudLink!! + } + _cloudLink = fluentIcon(name = "Filled.CloudLink") { + fluentPath { + moveTo(6.08f, 9.02f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) + curveToRelative(2.23f, 0.2f, 4.0f, 2.04f, 4.08f, 4.31f) + arcToRelative(4.74f, 4.74f, 0.0f, false, false, -3.75f, -1.83f) + horizontalLineToRelative(-3.5f) + arcToRelative(4.75f, 4.75f, 0.0f, false, false, -4.42f, 6.5f) + lineTo(6.5f, 18.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) + close() + moveTo(22.0f, 16.25f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.75f, -3.75f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + lineTo(18.25f, 20.0f) + horizontalLineToRelative(0.2f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 22.0f, 16.24f) + close() + moveTo(15.5f, 13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-0.2f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(19.0f, 16.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + } + } + return _cloudLink!! + } + +private var _cloudLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudOff.kt new file mode 100644 index 00000000..c85701a3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudOff.kt @@ -0,0 +1,39 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CloudOff: ImageVector + get() { + if (_cloudOff != null) { + return _cloudOff!! + } + _cloudOff = fluentIcon(name = "Filled.CloudOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(4.63f, 4.63f) + arcToRelative(5.96f, 5.96f, 0.0f, false, false, -0.77f, 2.1f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 6.5f, 19.0f) + horizontalLineToRelative(11.0f) + curveToRelative(0.14f, 0.0f, 0.28f, 0.0f, 0.42f, -0.02f) + lineToRelative(2.8f, 2.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(22.0f, 14.5f) + curveToRelative(0.0f, 1.2f, -0.47f, 2.28f, -1.23f, 3.09f) + lineTo(9.0f, 5.81f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 8.93f, 4.21f) + arcTo(4.5f, 4.5f, 0.0f, false, true, 22.0f, 14.5f) + close() + } + } + return _cloudOff!! + } + +private var _cloudOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudSwap.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudSwap.kt new file mode 100644 index 00000000..48755f48 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudSwap.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CloudSwap: ImageVector + get() { + if (_cloudSwap != null) { + return _cloudSwap!! + } + _cloudSwap = fluentIcon(name = "Filled.CloudSwap") { + fluentPath { + moveTo(6.08f, 9.02f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 3.75f, 6.18f) + lineToRelative(-1.68f, -1.69f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.82f, 1.99f) + horizontalLineToRelative(-2.34f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.82f, -1.99f) + lineToRelative(-2.5f, 2.5f) + arcTo(1.75f, 1.75f, 0.0f, false, false, 9.17f, 18.0f) + lineTo(6.5f, 18.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) + close() + moveTo(13.78f, 15.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-2.5f, 2.5f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineTo(12.56f, 18.0f) + horizontalLineToRelative(6.88f) + lineToRelative(-1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(2.5f, -2.5f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.22f, 1.22f) + horizontalLineToRelative(-6.88f) + lineToRelative(1.22f, -1.22f) + close() + } + } + return _cloudSwap!! + } + +private var _cloudSwap: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudSync.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudSync.kt new file mode 100644 index 00000000..1d7be0ac --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudSync.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CloudSync: ImageVector + get() { + if (_cloudSync != null) { + return _cloudSync!! + } + _cloudSync = fluentIcon(name = "Filled.CloudSync") { + fluentPath { + moveTo(6.08f, 8.02f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.05f, 4.97f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 10.02f, 17.0f) + lineTo(6.5f, 17.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) + close() + moveTo(16.5f, 22.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) + close() + moveTo(18.5f, 15.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -3.86f, -0.17f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.75f, -0.66f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.11f, -0.12f) + verticalLineToRelative(-0.55f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + verticalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineToRelative(1.0f) + close() + moveTo(13.0f, 17.5f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.86f, 0.17f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.75f, 0.66f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.11f, 0.12f) + verticalLineToRelative(0.55f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-2.0f) + close() + } + } + return _cloudSync!! + } + +private var _cloudSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudWords.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudWords.kt new file mode 100644 index 00000000..75396d3a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CloudWords.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CloudWords: ImageVector + get() { + if (_cloudWords != null) { + return _cloudWords!! + } + _cloudWords = fluentIcon(name = "Filled.CloudWords") { + fluentPath { + moveTo(12.0f, 5.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, -5.92f, 5.02f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 6.5f, 19.0f) + horizontalLineToRelative(11.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 0.42f, -8.98f) + arcTo(6.0f, 6.0f, 0.0f, false, false, 12.0f, 5.0f) + close() + moveTo(10.0f, 9.5f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(5.5f, 14.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(13.75f, 13.5f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + } + } + return _cloudWords!! + } + +private var _cloudWords: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Clover.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Clover.kt new file mode 100644 index 00000000..2d251ad3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Clover.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Clover: ImageVector + get() { + if (_clover != null) { + return _clover!! + } + _clover = fluentIcon(name = "Filled.Clover") { + fluentPath { + moveTo(6.75f, 2.0f) + arcToRelative(4.75f, 4.75f, 0.0f, false, false, 0.0f, 9.5f) + horizontalLineToRelative(4.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-4.0f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 6.75f, 2.0f) + close() + moveTo(6.75f, 22.0f) + arcToRelative(4.75f, 4.75f, 0.0f, true, true, 0.0f, -9.5f) + horizontalLineToRelative(4.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(4.0f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 6.75f, 22.0f) + close() + moveTo(17.25f, 2.0f) + arcToRelative(4.75f, 4.75f, 0.0f, true, true, 0.0f, 9.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-4.0f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 17.25f, 2.0f) + close() + moveTo(17.25f, 22.0f) + arcToRelative(4.75f, 4.75f, 0.0f, true, false, 0.0f, -9.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.0f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 17.25f, 22.0f) + close() + } + } + return _clover!! + } + +private var _clover: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Code.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Code.kt new file mode 100644 index 00000000..10292b0c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Code.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Code: ImageVector + get() { + if (_code != null) { + return _code!! + } + _code = fluentIcon(name = "Filled.Code") { + fluentPath { + moveToRelative(8.09f, 18.61f) + lineToRelative(6.0f, -14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.87f, 0.67f) + lineToRelative(-0.04f, 0.11f) + lineToRelative(-6.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.87f, -0.67f) + lineToRelative(0.04f, -0.1f) + lineToRelative(6.0f, -14.01f) + lineToRelative(-6.0f, 14.0f) + close() + moveTo(2.29f, 11.29f) + lineTo(6.29f, 7.29f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.5f, 1.32f) + lineToRelative(-0.08f, 0.1f) + lineTo(4.4f, 12.0f) + lineToRelative(3.3f, 3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 1.5f) + lineToRelative(-0.1f, -0.1f) + lineToRelative(-4.0f, -4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.31f) + lineToRelative(0.08f, -0.1f) + lineToRelative(4.0f, -4.0f) + lineToRelative(-4.0f, 4.0f) + close() + moveTo(16.29f, 7.29f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) + lineToRelative(0.1f, 0.08f) + lineToRelative(4.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.32f) + lineToRelative(-0.08f, 0.1f) + lineToRelative(-4.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.5f, -1.33f) + lineToRelative(0.08f, -0.1f) + lineTo(19.6f, 12.0f) + lineToRelative(-3.3f, -3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) + close() + } + } + return _code!! + } + +private var _code: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CodeBlock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CodeBlock.kt new file mode 100644 index 00000000..5f447173 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CodeBlock.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CodeBlock: ImageVector + get() { + if (_codeBlock != null) { + return _codeBlock!! + } + _codeBlock = fluentIcon(name = "Filled.CodeBlock") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(10.53f, 9.28f) + lineTo(7.81f, 12.0f) + lineToRelative(2.72f, 2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-3.25f, -3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(3.25f, -3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + close() + moveTo(14.53f, 8.22f) + lineTo(17.78f, 11.47f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-3.25f, 3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineTo(16.19f, 12.0f) + lineToRelative(-2.72f, -2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + close() + } + } + return _codeBlock!! + } + +private var _codeBlock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Collections.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Collections.kt new file mode 100644 index 00000000..b20b2438 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Collections.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Collections: ImageVector + get() { + if (_collections != null) { + return _collections!! + } + _collections = fluentIcon(name = "Filled.Collections") { + fluentPath { + moveTo(9.11f, 8.8f) + curveToRelative(0.34f, -0.3f, 0.75f, -0.53f, 1.2f, -0.66f) + lineToRelative(0.24f, -0.07f) + lineToRelative(0.16f, -0.03f) + lineToRelative(0.18f, -0.02f) + lineToRelative(0.18f, -0.02f) + horizontalLineToRelative(7.68f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.24f, 3.06f) + lineToRelative(0.01f, 0.19f) + verticalLineToRelative(7.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + horizontalLineToRelative(-7.68f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.06f) + lineTo(8.0f, 18.75f) + lineTo(8.0f, 11.1f) + lineToRelative(0.02f, -0.19f) + lineToRelative(0.02f, -0.2f) + lineToRelative(0.04f, -0.18f) + lineToRelative(0.06f, -0.22f) + lineToRelative(0.08f, -0.24f) + lineToRelative(0.08f, -0.2f) + lineToRelative(0.09f, -0.16f) + lineToRelative(0.1f, -0.16f) + lineToRelative(0.14f, -0.22f) + lineToRelative(0.1f, -0.12f) + lineToRelative(0.13f, -0.16f) + lineToRelative(0.1f, -0.11f) + lineToRelative(0.15f, -0.14f) + close() + moveTo(15.0f, 11.0f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(-2.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineTo(11.0f, 15.0f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + horizontalLineToRelative(2.6f) + verticalLineToRelative(2.51f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + verticalLineToRelative(-2.5f) + horizontalLineToRelative(2.5f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineTo(19.0f, 15.0f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-2.5f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineTo(15.0f, 11.0f) + close() + moveTo(15.58f, 4.23f) + lineTo(15.63f, 4.41f) + lineTo(16.33f, 7.0f) + horizontalLineToRelative(-5.08f) + arcTo(4.25f, 4.25f, 0.0f, false, false, 7.0f, 11.25f) + verticalLineToRelative(6.43f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -2.9f, -2.23f) + lineToRelative(-0.05f, -0.17f) + lineToRelative(-1.94f, -7.25f) + curveToRelative(-0.45f, -1.67f, 0.5f, -3.39f, 2.12f, -3.92f) + lineToRelative(0.18f, -0.06f) + lineToRelative(7.24f, -1.94f) + curveToRelative(1.68f, -0.45f, 3.4f, 0.5f, 3.93f, 2.12f) + close() + } + } + return _collections!! + } + +private var _collections: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CollectionsAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CollectionsAdd.kt new file mode 100644 index 00000000..d15cfd27 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CollectionsAdd.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CollectionsAdd: ImageVector + get() { + if (_collectionsAdd != null) { + return _collectionsAdd!! + } + _collectionsAdd = fluentIcon(name = "Filled.CollectionsAdd") { + fluentPath { + moveTo(14.78f, 2.45f) + curveToRelative(0.82f, 0.44f, 1.47f, 1.2f, 1.78f, 2.14f) + lineToRelative(0.52f, 1.91f) + horizontalLineToRelative(-6.04f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.54f, 3.75f) + verticalLineToRelative(7.71f) + curveToRelative(0.02f, 0.25f, 0.06f, 0.5f, 0.12f, 0.73f) + arcToRelative(3.74f, 3.74f, 0.0f, false, true, -3.5f, -2.6f) + lineToRelative(-2.0f, -7.43f) + arcTo(3.74f, 3.74f, 0.0f, false, true, 4.6f, 4.13f) + lineToRelative(7.43f, -2.0f) + arcToRelative(3.74f, 3.74f, 0.0f, false, true, 2.76f, 0.32f) + close() + moveTo(11.26f, 7.5f) + horizontalLineToRelative(-0.17f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.59f, 2.75f) + verticalLineToRelative(7.66f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, 2.59f) + horizontalLineToRelative(0.48f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, 9.77f, -8.12f) + verticalLineToRelative(-2.29f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.75f, -2.59f) + horizontalLineToRelative(-7.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(17.41f, 14.0f) + horizontalLineToRelative(0.18f) + curveToRelative(0.2f, 0.04f, 0.36f, 0.2f, 0.4f, 0.4f) + lineToRelative(0.01f, 0.1f) + verticalLineTo(17.0f) + horizontalLineToRelative(2.6f) + curveToRelative(0.2f, 0.05f, 0.36f, 0.2f, 0.4f, 0.41f) + verticalLineToRelative(0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, 0.4f) + lineToRelative(-0.1f, 0.01f) + horizontalLineTo(18.0f) + verticalLineToRelative(2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, 0.4f) + horizontalLineToRelative(-0.19f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, -0.4f) + verticalLineTo(18.0f) + horizontalLineTo(14.4f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, -0.41f) + verticalLineToRelative(-0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.4f, -0.4f) + lineToRelative(0.1f, -0.01f) + horizontalLineTo(17.0f) + verticalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.41f, -0.4f) + close() + } + } + return _collectionsAdd!! + } + +private var _collectionsAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Color.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Color.kt new file mode 100644 index 00000000..f7efe499 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Color.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Color: ImageVector + get() { + if (_color != null) { + return _color!! + } + _color = fluentIcon(name = "Filled.Color") { + fluentPath { + moveTo(3.84f, 5.86f) + curveTo(6.78f, 1.94f, 12.87f, 0.8f, 17.2f, 3.5f) + curveToRelative(4.28f, 2.66f, 5.86f, 7.77f, 4.1f, 12.57f) + curveToRelative(-1.65f, 4.54f, -6.01f, 6.33f, -9.16f, 4.05f) + curveToRelative(-1.17f, -0.85f, -1.63f, -1.92f, -1.85f, -3.66f) + lineToRelative(-0.1f, -0.99f) + lineToRelative(-0.05f, -0.4f) + curveToRelative(-0.12f, -0.93f, -0.31f, -1.35f, -0.7f, -1.57f) + curveToRelative(-0.54f, -0.3f, -0.9f, -0.3f, -1.6f, -0.03f) + lineToRelative(-0.35f, 0.14f) + lineToRelative(-0.18f, 0.08f) + curveToRelative(-1.01f, 0.44f, -1.69f, 0.6f, -2.54f, 0.42f) + lineToRelative(-0.2f, -0.05f) + lineToRelative(-0.17f, -0.04f) + curveToRelative(-2.78f, -0.87f, -3.2f, -4.65f, -0.56f, -8.16f) + close() + moveTo(16.77f, 10.58f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 2.41f, -0.65f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.41f, 0.65f) + close() + moveTo(17.27f, 14.07f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 2.4f, -0.65f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.4f, 0.65f) + close() + moveTo(14.79f, 7.57f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 2.41f, -0.64f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.41f, 0.65f) + close() + moveTo(14.76f, 16.57f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 2.41f, -0.64f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.41f, 0.65f) + close() + moveTo(11.26f, 6.61f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 2.42f, -0.65f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.42f, 0.65f) + close() + } + } + return _color!! + } + +private var _color: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ColorBackground.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ColorBackground.kt new file mode 100644 index 00000000..ffa05b8e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ColorBackground.kt @@ -0,0 +1,96 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ColorBackground: ImageVector + get() { + if (_colorBackground != null) { + return _colorBackground!! + } + _colorBackground = fluentIcon(name = "Filled.ColorBackground") { + fluentPath { + moveTo(2.0f, 12.41f) + verticalLineToRelative(5.09f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.5f, 20.0f) + horizontalLineToRelative(15.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) + verticalLineToRelative(-11.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 19.5f, 4.0f) + horizontalLineToRelative(-8.94f) + lineToRelative(2.42f, 2.42f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.72f, 3.1f) + curveToRelative(0.38f, 0.03f, 0.75f, 0.2f, 1.04f, 0.5f) + horizontalLineToRelative(0.01f) + lineToRelative(0.02f, 0.03f) + arcToRelative(7.46f, 7.46f, 0.0f, false, true, 0.31f, 0.34f) + arcToRelative(7.98f, 7.98f, 0.0f, false, true, 1.48f, 2.2f) + curveToRelative(0.23f, 0.46f, 0.44f, 1.1f, 0.44f, 1.78f) + curveToRelative(0.0f, 1.86f, -1.4f, 3.63f, -3.5f, 3.63f) + reflectiveCurveTo(10.0f, 16.23f, 10.0f, 14.37f) + curveToRelative(0.0f, -0.29f, 0.04f, -0.56f, 0.1f, -0.82f) + lineTo(8.74f, 14.9f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -4.25f, 0.0f) + lineTo(2.0f, 12.4f) + close() + moveTo(11.34f, 12.99f) + curveToRelative(-0.19f, 0.41f, -0.34f, 0.9f, -0.34f, 1.38f) + curveToRelative(0.0f, 1.4f, 1.03f, 2.63f, 2.5f, 2.63f) + reflectiveCurveToRelative(2.5f, -1.23f, 2.5f, -2.63f) + curveToRelative(0.0f, -0.49f, -0.15f, -0.97f, -0.34f, -1.38f) + curveToRelative(-0.2f, -0.41f, -0.44f, -0.8f, -0.68f, -1.13f) + curveToRelative(-0.23f, -0.33f, -0.47f, -0.61f, -0.64f, -0.81f) + lineToRelative(-0.31f, -0.33f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-0.3f, 0.33f) + arcTo(6.98f, 6.98f, 0.0f, false, false, 11.34f, 13.0f) + close() + moveTo(13.5f, 12.39f) + arcToRelative(8.42f, 8.42f, 0.0f, false, true, 0.8f, 1.23f) + curveToRelative(0.14f, 0.3f, 0.2f, 0.56f, 0.2f, 0.76f) + curveToRelative(0.0f, 0.69f, -0.48f, 1.12f, -1.0f, 1.12f) + reflectiveCurveToRelative(-1.0f, -0.43f, -1.0f, -1.13f) + curveToRelative(0.0f, -0.19f, 0.06f, -0.44f, 0.2f, -0.75f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.8f, -1.24f) + close() + moveTo(6.75f, 1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(1.76f) + lineToRelative(-0.1f, 0.08f) + lineToRelative(-4.24f, 4.25f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 2.82f) + lineTo(5.2f, 14.2f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.83f, 0.0f) + lineToRelative(4.24f, -4.24f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, -2.83f) + lineTo(8.73f, 3.59f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.23f, -0.57f) + lineTo(7.5f, 1.75f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 6.75f, 1.0f) + close() + moveTo(6.0f, 5.62f) + verticalLineToRelative(0.63f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) + lineTo(7.5f, 4.54f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.17f, 0.11f) + lineToRelative(3.54f, 3.54f) + curveToRelative(0.09f, 0.09f, 0.14f, 0.2f, 0.15f, 0.32f) + lineTo(3.1f, 8.51f) + lineTo(6.0f, 5.62f) + close() + moveTo(6.26f, 13.14f) + lineTo(3.13f, 10.0f) + horizontalLineToRelative(6.97f) + lineToRelative(-3.13f, 3.13f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.71f, 0.0f) + close() + } + } + return _colorBackground!! + } + +private var _colorBackground: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ColorFill.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ColorFill.kt new file mode 100644 index 00000000..a109f321 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ColorFill.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ColorFill: ImageVector + get() { + if (_colorFill != null) { + return _colorFill!! + } + _colorFill = fluentIcon(name = "Filled.ColorFill") { + fluentPath { + moveToRelative(13.02f, 14.0f) + lineToRelative(-0.02f, 0.37f) + curveToRelative(0.0f, 1.86f, 1.4f, 3.63f, 3.5f, 3.63f) + arcToRelative(3.54f, 3.54f, 0.0f, false, false, 3.48f, -3.95f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 22.0f, 16.5f) + verticalLineToRelative(3.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.5f, 2.5f) + horizontalLineToRelative(-15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 2.0f, 19.5f) + verticalLineToRelative(-3.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.5f, 14.0f) + horizontalLineToRelative(2.09f) + lineToRelative(0.9f, 0.9f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 4.25f, 0.0f) + lineToRelative(0.9f, -0.9f) + horizontalLineToRelative(0.38f) + close() + moveTo(14.34f, 13.0f) + curveToRelative(-0.19f, 0.4f, -0.34f, 0.88f, -0.34f, 1.38f) + curveToRelative(0.0f, 1.39f, 1.03f, 2.62f, 2.5f, 2.62f) + reflectiveCurveToRelative(2.5f, -1.23f, 2.5f, -2.63f) + curveToRelative(0.0f, -0.49f, -0.15f, -0.97f, -0.34f, -1.38f) + curveToRelative(-0.2f, -0.41f, -0.44f, -0.8f, -0.68f, -1.13f) + curveToRelative(-0.23f, -0.33f, -0.47f, -0.61f, -0.64f, -0.81f) + lineToRelative(-0.31f, -0.33f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-0.3f, 0.33f) + arcTo(6.98f, 6.98f, 0.0f, false, false, 14.34f, 13.0f) + close() + moveTo(16.5f, 12.38f) + arcToRelative(8.42f, 8.42f, 0.0f, false, true, 0.8f, 1.24f) + curveToRelative(0.14f, 0.3f, 0.2f, 0.56f, 0.2f, 0.76f) + curveToRelative(0.0f, 0.69f, -0.48f, 1.12f, -1.0f, 1.12f) + reflectiveCurveToRelative(-1.0f, -0.43f, -1.0f, -1.13f) + curveToRelative(0.0f, -0.19f, 0.06f, -0.44f, 0.2f, -0.75f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.8f, -1.24f) + close() + moveTo(9.75f, 1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(1.76f) + lineToRelative(-0.1f, 0.08f) + lineToRelative(-4.24f, 4.25f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 2.82f) + lineTo(8.2f, 14.2f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.83f, 0.0f) + lineToRelative(4.24f, -4.24f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, -2.83f) + lineToRelative(-3.53f, -3.54f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.24f, -0.57f) + lineTo(10.5f, 1.75f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 9.75f, 1.0f) + close() + moveTo(9.0f, 5.62f) + verticalLineToRelative(0.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(10.5f, 4.54f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.17f, 0.11f) + lineToRelative(3.54f, 3.54f) + curveToRelative(0.09f, 0.09f, 0.14f, 0.2f, 0.15f, 0.32f) + lineTo(6.1f, 8.51f) + lineTo(9.0f, 5.62f) + close() + moveTo(9.26f, 13.14f) + lineTo(6.13f, 10.0f) + horizontalLineToRelative(6.97f) + lineToRelative(-3.13f, 3.13f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.71f, 0.0f) + close() + } + } + return _colorFill!! + } + +private var _colorFill: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ColorLine.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ColorLine.kt new file mode 100644 index 00000000..160cd9ef --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ColorLine.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ColorLine: ImageVector + get() { + if (_colorLine != null) { + return _colorLine!! + } + _colorLine = fluentIcon(name = "Filled.ColorLine") { + fluentPath { + moveTo(4.38f, 14.0f) + horizontalLineTo(4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(16.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + verticalLineToRelative(-4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + horizontalLineToRelative(-6.45f) + lineToRelative(-1.32f, 1.31f) + curveToRelative(-0.38f, 0.38f, -0.85f, 0.66f, -1.36f, 0.82f) + lineToRelative(-4.3f, 1.29f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.47f, -2.53f) + lineToRelative(0.28f, -0.89f) + close() + moveTo(18.65f, 2.94f) + arcToRelative(3.22f, 3.22f, 0.0f, false, true, 0.0f, 4.56f) + lineToRelative(-7.13f, 7.1f) + curveToRelative(-0.26f, 0.27f, -0.58f, 0.46f, -0.94f, 0.57f) + lineToRelative(-4.3f, 1.29f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.23f, -1.27f) + lineToRelative(1.36f, -4.22f) + curveToRelative(0.1f, -0.35f, 0.3f, -0.65f, 0.55f, -0.9f) + lineToRelative(7.13f, -7.13f) + arcToRelative(3.22f, 3.22f, 0.0f, false, true, 4.56f, 0.0f) + close() + } + } + return _colorLine!! + } + +private var _colorLine: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ColumnEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ColumnEdit.kt new file mode 100644 index 00000000..fbc61ffc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ColumnEdit.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ColumnEdit: ImageVector + get() { + if (_columnEdit != null) { + return _columnEdit!! + } + _columnEdit = fluentIcon(name = "Filled.ColumnEdit") { + fluentPath { + moveTo(5.25f, 5.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(4.0f, 3.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.0f, 21.0f) + horizontalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(4.0f, 19.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + lineTo(5.25f, 5.75f) + close() + moveTo(10.75f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 8.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 10.75f, 21.0f) + horizontalLineToRelative(0.42f) + lineToRelative(0.35f, -1.42f) + curveToRelative(0.16f, -0.65f, 0.5f, -1.24f, 0.97f, -1.72f) + lineToRelative(3.51f, -3.5f) + lineTo(16.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 13.25f, 3.0f) + horizontalLineToRelative(-2.5f) + close() + moveTo(19.0f, 5.75f) + verticalLineToRelative(5.73f) + curveToRelative(-0.22f, 0.14f, -0.42f, 0.3f, -0.6f, 0.48f) + lineToRelative(-0.9f, 0.9f) + lineTo(17.5f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 20.25f, 3.0f) + lineTo(21.0f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.75f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _columnEdit!! + } + +private var _columnEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ColumnTriple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ColumnTriple.kt new file mode 100644 index 00000000..0a8a892c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ColumnTriple.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ColumnTriple: ImageVector + get() { + if (_columnTriple != null) { + return _columnTriple!! + } + _columnTriple = fluentIcon(name = "Filled.ColumnTriple") { + fluentPath { + moveTo(6.24f, 3.0f) + curveToRelative(0.96f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(14.5f) + curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(1.99f, 4.75f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) + horizontalLineToRelative(2.65f) + close() + moveTo(20.26f, 3.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(14.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.5f) + curveToRelative(-0.96f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(16.01f, 4.75f) + curveToRelative(0.0f, -0.97f, 0.79f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.5f) + close() + moveTo(13.24f, 3.0f) + curveToRelative(0.96f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(14.5f) + curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(8.99f, 4.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.5f) + close() + } + } + return _columnTriple!! + } + +private var _columnTriple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ColumnTripleEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ColumnTripleEdit.kt new file mode 100644 index 00000000..20e385c2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ColumnTripleEdit.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ColumnTripleEdit: ImageVector + get() { + if (_columnTripleEdit != null) { + return _columnTripleEdit!! + } + _columnTripleEdit = fluentIcon(name = "Filled.ColumnTripleEdit") { + fluentPath { + moveTo(6.24f, 3.0f) + curveToRelative(0.96f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(14.5f) + curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(1.99f, 4.75f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) + horizontalLineToRelative(2.65f) + close() + moveTo(20.26f, 3.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(6.52f) + arcToRelative(3.29f, 3.29f, 0.0f, false, false, -3.62f, 0.7f) + lineToRelative(-2.38f, 2.37f) + lineTo(16.01f, 4.75f) + curveToRelative(0.0f, -0.97f, 0.79f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.5f) + close() + moveTo(18.65f, 21.0f) + lineTo(22.0f, 17.64f) + verticalLineToRelative(1.61f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-1.61f) + close() + moveTo(12.49f, 17.86f) + lineTo(14.99f, 15.36f) + lineTo(14.99f, 4.76f) + curveToRelative(0.0f, -0.97f, -0.79f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-2.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(14.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(0.43f) + lineToRelative(0.35f, -1.42f) + curveToRelative(0.16f, -0.65f, 0.5f, -1.24f, 0.97f, -1.72f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.35f, -0.59f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.48f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _columnTripleEdit!! + } + +private var _columnTripleEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Comma.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Comma.kt new file mode 100644 index 00000000..c6c9d514 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Comma.kt @@ -0,0 +1,30 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Comma: ImageVector + get() { + if (_comma != null) { + return _comma!! + } + _comma = fluentIcon(name = "Filled.Comma") { + fluentPath { + moveTo(14.2f, 12.34f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, 1.77f, -3.87f) + curveToRelative(0.36f, 1.8f, 0.5f, 3.95f, -0.21f, 5.9f) + curveToRelative(-0.77f, 2.09f, -2.47f, 3.8f, -5.5f, 4.6f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.51f, -1.94f) + curveToRelative(2.46f, -0.64f, 3.6f, -1.93f, 4.13f, -3.35f) + curveToRelative(0.16f, -0.43f, 0.26f, -0.88f, 0.32f, -1.34f) + close() + } + } + return _comma!! + } + +private var _comma: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Comment.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Comment.kt new file mode 100644 index 00000000..053e8b61 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Comment.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Comment: ImageVector + get() { + if (_comment != null) { + return _comment!! + } + _comment = fluentIcon(name = "Filled.Comment") { + fluentPath { + moveTo(5.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 6.25f) + verticalLineToRelative(8.5f) + curveTo(2.0f, 16.55f, 3.46f, 18.0f, 5.25f, 18.0f) + horizontalLineTo(6.0f) + verticalLineToRelative(2.75f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.0f, 1.0f) + lineTo(13.0f, 18.0f) + horizontalLineToRelative(5.75f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-8.5f) + curveTo(22.0f, 4.45f, 20.54f, 3.0f, 18.75f, 3.0f) + horizontalLineTo(5.25f) + close() + } + } + return _comment!! + } + +private var _comment: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentAdd.kt new file mode 100644 index 00000000..50902d6b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentAdd.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CommentAdd: ImageVector + get() { + if (_commentAdd != null) { + return _commentAdd!! + } + _commentAdd = fluentIcon(name = "Filled.CommentAdd") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 7.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 7.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 6.0f) + lineTo(17.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + lineTo(18.0f, 6.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 7.0f) + close() + moveTo(17.5f, 13.0f) + curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.81f) + verticalLineToRelative(3.56f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(13.0f, 18.0f) + lineToRelative(-5.0f, 3.75f) + curveToRelative(-0.82f, 0.62f, -2.0f, 0.03f, -2.0f, -1.0f) + lineTo(6.0f, 18.0f) + horizontalLineToRelative(-0.75f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) + verticalLineToRelative(-8.5f) + curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(6.77f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, 5.48f, 10.0f) + close() + } + } + return _commentAdd!! + } + +private var _commentAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentArrowLeft.kt new file mode 100644 index 00000000..777ccd8d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentArrowLeft.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CommentArrowLeft: ImageVector + get() { + if (_commentArrowLeft != null) { + return _commentArrowLeft!! + } + _commentArrowLeft = fluentIcon(name = "Filled.CommentArrowLeft") { + fluentPath { + moveTo(12.02f, 3.0f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 22.0f, 11.2f) + verticalLineToRelative(3.55f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-5.79f) + lineToRelative(-5.38f, 3.82f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 6.0f, 21.0f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(-0.75f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) + verticalLineToRelative(-8.5f) + curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(6.77f) + close() + moveTo(17.5f, 1.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(17.72f, 3.59f) + lineTo(17.65f, 3.65f) + lineTo(17.59f, 3.72f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) + lineToRelative(0.06f, 0.07f) + lineTo(19.29f, 6.0f) + horizontalLineToRelative(-5.38f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + lineToRelative(-0.01f, 0.09f) + verticalLineToRelative(0.09f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + lineTo(14.0f, 7.0f) + horizontalLineToRelative(5.3f) + lineToRelative(-1.65f, 1.65f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(0.06f, -0.07f) + lineToRelative(2.54f, -2.54f) + lineToRelative(0.04f, -0.05f) + lineToRelative(0.03f, -0.07f) + lineToRelative(0.02f, -0.06f) + lineToRelative(0.02f, -0.08f) + verticalLineToRelative(-0.1f) + lineToRelative(-0.02f, -0.08f) + lineToRelative(-0.03f, -0.08f) + lineToRelative(-0.04f, -0.07f) + lineToRelative(-0.04f, -0.06f) + lineToRelative(-2.52f, -2.51f) + lineToRelative(-0.07f, -0.06f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.56f, 0.0f) + close() + } + } + return _commentArrowLeft!! + } + +private var _commentArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentArrowRight.kt new file mode 100644 index 00000000..906f2392 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentArrowRight.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CommentArrowRight: ImageVector + get() { + if (_commentArrowRight != null) { + return _commentArrowRight!! + } + _commentArrowRight = fluentIcon(name = "Filled.CommentArrowRight") { + fluentPath { + moveTo(12.02f, 3.0f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 22.0f, 11.2f) + verticalLineToRelative(3.55f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-5.79f) + lineToRelative(-5.38f, 3.82f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 6.0f, 21.0f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(-0.75f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) + verticalLineToRelative(-8.5f) + curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(6.77f) + close() + moveTo(17.5f, 1.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(16.22f, 3.59f) + lineTo(16.15f, 3.65f) + lineTo(13.62f, 6.18f) + lineTo(13.59f, 6.22f) + lineTo(13.55f, 6.29f) + lineTo(13.52f, 6.37f) + lineTo(13.5f, 6.45f) + verticalLineToRelative(0.14f) + lineToRelative(0.02f, 0.06f) + lineToRelative(0.03f, 0.06f) + lineToRelative(0.03f, 0.06f) + lineToRelative(0.04f, 0.05f) + lineToRelative(2.53f, 2.53f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.76f, -0.63f) + lineToRelative(-0.06f, -0.07f) + lineTo(15.21f, 7.0f) + horizontalLineToRelative(5.29f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.41f) + lineTo(21.0f, 6.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.5f) + lineTo(15.2f, 6.0f) + lineToRelative(1.65f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.06f, -0.63f) + lineToRelative(-0.06f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.63f, -0.06f) + close() + } + } + return _commentArrowRight!! + } + +private var _commentArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentCheckmark.kt new file mode 100644 index 00000000..4a52583c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentCheckmark.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CommentCheckmark: ImageVector + get() { + if (_commentCheckmark != null) { + return _commentCheckmark!! + } + _commentCheckmark = fluentIcon(name = "Filled.CommentCheckmark") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.85f, 4.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineTo(16.5f, 7.79f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + moveTo(17.5f, 13.0f) + curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.81f) + verticalLineToRelative(3.56f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(13.0f, 18.0f) + lineToRelative(-5.0f, 3.75f) + curveToRelative(-0.82f, 0.62f, -2.0f, 0.03f, -2.0f, -1.0f) + lineTo(6.0f, 18.0f) + horizontalLineToRelative(-0.75f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) + verticalLineToRelative(-8.5f) + curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(6.77f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, 5.48f, 10.0f) + close() + } + } + return _commentCheckmark!! + } + +private var _commentCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentDismiss.kt new file mode 100644 index 00000000..27b5ea3d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentDismiss.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CommentDismiss: ImageVector + get() { + if (_commentDismiss != null) { + return _commentDismiss!! + } + _commentDismiss = fluentIcon(name = "Filled.CommentDismiss") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 4.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineTo(18.21f, 6.5f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineTo(17.5f, 5.79f) + lineToRelative(-1.65f, -1.64f) + close() + moveTo(17.5f, 13.0f) + curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.81f) + verticalLineToRelative(3.56f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(13.0f, 18.0f) + lineToRelative(-5.0f, 3.75f) + curveToRelative(-0.82f, 0.62f, -2.0f, 0.03f, -2.0f, -1.0f) + lineTo(6.0f, 18.0f) + horizontalLineToRelative(-0.75f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) + verticalLineToRelative(-8.5f) + curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(6.77f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, 5.48f, 10.0f) + close() + } + } + return _commentDismiss!! + } + +private var _commentDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentEdit.kt new file mode 100644 index 00000000..6227e31a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentEdit.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CommentEdit: ImageVector + get() { + if (_commentEdit != null) { + return _commentEdit!! + } + _commentEdit = fluentIcon(name = "Filled.CommentEdit") { + fluentPath { + moveTo(2.0f, 6.25f) + curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(13.5f) + curveTo(20.55f, 3.0f, 22.0f, 4.46f, 22.0f, 6.25f) + verticalLineToRelative(4.67f) + arcToRelative(3.29f, 3.29f, 0.0f, false, false, -4.6f, 0.04f) + lineToRelative(-5.91f, 5.9f) + curveToRelative(-0.47f, 0.48f, -0.8f, 1.07f, -0.97f, 1.72f) + lineToRelative(-0.4f, 1.58f) + lineTo(8.0f, 21.75f) + curveToRelative(-0.82f, 0.62f, -2.0f, 0.03f, -2.0f, -1.0f) + lineTo(6.0f, 18.0f) + horizontalLineToRelative(-0.75f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) + verticalLineToRelative(-8.5f) + close() + moveTo(18.1f, 11.67f) + lineTo(12.2f, 17.57f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _commentEdit!! + } + +private var _commentEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentError.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentError.kt new file mode 100644 index 00000000..4c5fae12 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentError.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CommentError: ImageVector + get() { + if (_commentError != null) { + return _commentError!! + } + _commentError = fluentIcon(name = "Filled.CommentError") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(17.5f, 3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(17.5f, 10.13f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.24f) + close() + moveTo(17.5f, 13.0f) + curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.81f) + verticalLineToRelative(3.56f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(13.0f, 18.0f) + lineToRelative(-5.0f, 3.75f) + curveToRelative(-0.82f, 0.62f, -2.0f, 0.03f, -2.0f, -1.0f) + lineTo(6.0f, 18.0f) + horizontalLineToRelative(-0.75f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) + verticalLineToRelative(-8.5f) + curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(6.77f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, 5.48f, 10.0f) + close() + } + } + return _commentError!! + } + +private var _commentError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentLightning.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentLightning.kt new file mode 100644 index 00000000..0060d193 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentLightning.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CommentLightning: ImageVector + get() { + if (_commentLightning != null) { + return _commentLightning!! + } + _commentLightning = fluentIcon(name = "Filled.CommentLightning") { + fluentPath { + moveTo(16.32f, 1.0f) + horizontalLineToRelative(4.83f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.43f, 0.75f) + lineTo(19.75f, 5.0f) + horizontalLineToRelative(1.5f) + curveToRelative(0.64f, 0.0f, 0.99f, 0.76f, 0.56f, 1.24f) + lineTo(17.0f, 11.75f) + curveToRelative(-0.5f, 0.58f, -1.45f, 0.09f, -1.26f, -0.66f) + lineTo(16.5f, 8.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.45f, -0.71f) + lineToRelative(2.82f, -6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.45f, -0.29f) + close() + moveTo(5.25f, 3.0f) + horizontalLineToRelative(8.7f) + lineToRelative(-1.81f, 3.86f) + arcTo(1.5f, 1.5f, 0.0f, false, false, 13.5f, 9.0f) + horizontalLineToRelative(1.72f) + lineToRelative(-0.46f, 1.85f) + curveToRelative(-0.44f, 1.76f, 1.78f, 2.93f, 2.98f, 1.56f) + lineTo(22.0f, 7.55f) + verticalLineToRelative(7.2f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineTo(13.0f) + lineToRelative(-5.0f, 3.75f) + curveToRelative(-0.82f, 0.62f, -2.0f, 0.03f, -2.0f, -1.0f) + verticalLineTo(18.0f) + horizontalLineToRelative(-0.75f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) + verticalLineToRelative(-8.5f) + curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) + close() + } + } + return _commentLightning!! + } + +private var _commentLightning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentLink.kt new file mode 100644 index 00000000..a4188082 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentLink.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CommentLink: ImageVector + get() { + if (_commentLink != null) { + return _commentLink!! + } + _commentLink = fluentIcon(name = "Filled.CommentLink") { + fluentPath { + moveTo(23.0f, 5.75f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 19.25f, 2.0f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + lineTo(19.25f, 9.5f) + horizontalLineToRelative(0.2f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 5.74f) + close() + moveTo(16.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-0.2f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(20.0f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(11.0f, 5.75f) + curveToRelative(0.0f, -1.02f, 0.32f, -1.97f, 0.88f, -2.75f) + lineTo(5.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 6.25f) + verticalLineToRelative(8.5f) + curveTo(2.0f, 16.55f, 3.46f, 18.0f, 5.25f, 18.0f) + lineTo(6.0f, 18.0f) + verticalLineToRelative(2.75f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.0f, 1.0f) + lineTo(13.0f, 18.0f) + horizontalLineToRelative(5.75f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(22.0f, 9.62f) + curveToRelative(-0.78f, 0.56f, -1.73f, 0.88f, -2.75f, 0.88f) + horizontalLineToRelative(-3.5f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 11.0f, 5.75f) + close() + } + } + return _commentLink!! + } + +private var _commentLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentMention.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentMention.kt new file mode 100644 index 00000000..bb6aa7e0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentMention.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CommentMention: ImageVector + get() { + if (_commentMention != null) { + return _commentMention!! + } + _commentMention = fluentIcon(name = "Filled.CommentMention") { + fluentPath { + moveTo(14.0f, 6.0f) + arcTo(4.0f, 4.0f, 0.0f, false, true, 22.0f, 6.0f) + verticalLineToRelative(0.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(20.5f, 4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.3f, 3.73f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 3.2f, -0.98f) + verticalLineToRelative(-0.74f) + arcToRelative(5.0f, 5.0f, 0.0f, true, false, -2.22f, 4.16f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.56f, -0.83f) + arcTo(4.0f, 4.0f, 0.0f, false, true, 14.0f, 6.0f) + close() + moveTo(18.0f, 7.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) + close() + moveTo(5.25f, 3.0f) + horizontalLineToRelative(7.55f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, 9.2f, 7.47f) + verticalLineToRelative(4.28f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(13.0f, 18.0f) + lineToRelative(-5.0f, 3.75f) + curveToRelative(-0.82f, 0.62f, -2.0f, 0.03f, -2.0f, -1.0f) + lineTo(6.0f, 18.0f) + horizontalLineToRelative(-0.75f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) + verticalLineToRelative(-8.5f) + curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) + close() + } + } + return _commentMention!! + } + +private var _commentMention: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentMultiple.kt new file mode 100644 index 00000000..52d6fe1f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentMultiple.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CommentMultiple: ImageVector + get() { + if (_commentMultiple != null) { + return _commentMultiple!! + } + _commentMultiple = fluentIcon(name = "Filled.CommentMultiple") { + fluentPath { + moveTo(8.25f, 2.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.24f, 3.0f) + horizontalLineToRelative(9.74f) + curveTo(17.1f, 5.0f, 19.0f, 6.9f, 19.0f, 9.25f) + verticalLineToRelative(6.74f) + curveToRelative(1.67f, -0.12f, 3.0f, -1.53f, 3.0f, -3.24f) + verticalLineToRelative(-6.0f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 17.25f, 2.0f) + horizontalLineToRelative(-9.0f) + close() + moveTo(17.99f, 16.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, 3.0f) + horizontalLineToRelative(-4.08f) + lineTo(7.0f, 21.75f) + curveToRelative(-0.82f, 0.62f, -2.0f, 0.03f, -2.0f, -1.0f) + verticalLineToRelative(-1.76f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.0f, -3.24f) + verticalLineToRelative(-6.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 5.25f, 6.0f) + horizontalLineToRelative(9.5f) + curveTo(16.55f, 6.0f, 18.0f, 7.46f, 18.0f, 9.25f) + lineTo(18.0f, 16.0f) + close() + } + } + return _commentMultiple!! + } + +private var _commentMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentMultipleCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentMultipleCheckmark.kt new file mode 100644 index 00000000..f7640d75 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentMultipleCheckmark.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CommentMultipleCheckmark: ImageVector + get() { + if (_commentMultipleCheckmark != null) { + return _commentMultipleCheckmark!! + } + _commentMultipleCheckmark = fluentIcon(name = "Filled.CommentMultipleCheckmark") { + fluentPath { + moveTo(8.25f, 2.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.24f, 3.0f) + horizontalLineToRelative(9.74f) + curveTo(17.1f, 5.0f, 19.0f, 6.9f, 19.0f, 9.25f) + verticalLineToRelative(1.92f) + curveToRelative(1.15f, 0.27f, 2.18f, 0.85f, 3.0f, 1.64f) + lineTo(22.0f, 6.75f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 17.25f, 2.0f) + horizontalLineToRelative(-9.0f) + close() + moveTo(18.0f, 9.25f) + verticalLineToRelative(1.77f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 11.17f, 19.0f) + horizontalLineToRelative(-0.5f) + lineTo(7.0f, 21.75f) + curveToRelative(-0.82f, 0.62f, -2.0f, 0.03f, -2.0f, -1.0f) + verticalLineToRelative(-1.76f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.0f, -3.24f) + verticalLineToRelative(-6.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 5.25f, 6.0f) + horizontalLineToRelative(9.5f) + curveTo(16.55f, 6.0f, 18.0f, 7.46f, 18.0f, 9.25f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(20.85f, 15.15f) + curveToRelative(0.2f, 0.2f, 0.2f, 0.5f, 0.0f, 0.7f) + lineToRelative(-4.0f, 4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.0f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, -0.7f) + lineToRelative(1.65f, 1.64f) + lineToRelative(3.65f, -3.64f) + curveToRelative(0.2f, -0.2f, 0.5f, -0.2f, 0.7f, 0.0f) + close() + } + } + return _commentMultipleCheckmark!! + } + +private var _commentMultipleCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentMultipleLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentMultipleLink.kt new file mode 100644 index 00000000..30d42fd6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentMultipleLink.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CommentMultipleLink: ImageVector + get() { + if (_commentMultipleLink != null) { + return _commentMultipleLink!! + } + _commentMultipleLink = fluentIcon(name = "Filled.CommentMultipleLink") { + fluentPath { + moveTo(8.25f, 2.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.24f, 3.0f) + horizontalLineToRelative(9.74f) + curveTo(17.1f, 5.0f, 19.0f, 6.9f, 19.0f, 9.25f) + lineTo(19.0f, 13.0f) + horizontalLineToRelative(0.25f) + curveToRelative(0.95f, 0.0f, 1.84f, 0.28f, 2.59f, 0.77f) + curveToRelative(0.1f, -0.32f, 0.16f, -0.67f, 0.16f, -1.02f) + verticalLineToRelative(-6.0f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 17.25f, 2.0f) + horizontalLineToRelative(-9.0f) + close() + moveTo(18.0f, 9.25f) + lineTo(18.0f, 13.0f) + horizontalLineToRelative(-2.25f) + arcToRelative(4.75f, 4.75f, 0.0f, false, false, -4.58f, 6.0f) + horizontalLineToRelative(-0.5f) + lineTo(7.0f, 21.75f) + curveToRelative(-0.82f, 0.62f, -2.0f, 0.03f, -2.0f, -1.0f) + verticalLineToRelative(-1.76f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.0f, -3.24f) + verticalLineToRelative(-6.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 5.25f, 6.0f) + horizontalLineToRelative(9.5f) + curveTo(16.55f, 6.0f, 18.0f, 7.46f, 18.0f, 9.25f) + close() + moveTo(23.0f, 17.75f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 19.25f, 14.0f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + verticalLineToRelative(-0.01f) + horizontalLineToRelative(0.2f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 17.74f) + close() + moveTo(16.5f, 14.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-0.2f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(20.0f, 17.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + } + } + return _commentMultipleLink!! + } + +private var _commentMultipleLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentNote.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentNote.kt new file mode 100644 index 00000000..5a43c2ae --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentNote.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CommentNote: ImageVector + get() { + if (_commentNote != null) { + return _commentNote!! + } + _commentNote = fluentIcon(name = "Filled.CommentNote") { + fluentPath { + moveTo(14.0f, 1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(23.0f, 3.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + horizontalLineToRelative(-7.0f) + close() + moveTo(14.0f, 4.5f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + moveTo(14.0f, 7.5f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + moveTo(5.25f, 3.0f) + lineTo(11.0f, 3.0f) + verticalLineToRelative(6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) + horizontalLineToRelative(7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 1.0f, -0.17f) + verticalLineToRelative(2.92f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(13.0f, 18.0f) + lineToRelative(-5.0f, 3.75f) + curveToRelative(-0.82f, 0.62f, -2.0f, 0.03f, -2.0f, -1.0f) + lineTo(6.0f, 18.0f) + horizontalLineToRelative(-0.75f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) + verticalLineToRelative(-8.5f) + curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) + close() + } + } + return _commentNote!! + } + +private var _commentNote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentOff.kt new file mode 100644 index 00000000..15fb41ad --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommentOff.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CommentOff: ImageVector + get() { + if (_commentOff != null) { + return _commentOff!! + } + _commentOff = fluentIcon(name = "Filled.CommentOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(0.7f, 0.7f) + arcTo(3.24f, 3.24f, 0.0f, false, false, 2.0f, 6.25f) + verticalLineToRelative(8.5f) + curveTo(2.0f, 16.55f, 3.46f, 18.0f, 5.25f, 18.0f) + horizontalLineTo(6.0f) + verticalLineToRelative(2.75f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.0f, 1.0f) + lineTo(13.0f, 18.0f) + horizontalLineToRelative(3.94f) + lineToRelative(3.78f, 3.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(22.0f, 14.75f) + curveToRelative(0.0f, 1.1f, -0.55f, 2.08f, -1.4f, 2.67f) + lineTo(6.18f, 3.0f) + horizontalLineToRelative(12.57f) + curveTo(20.55f, 3.0f, 22.0f, 4.46f, 22.0f, 6.25f) + verticalLineToRelative(8.5f) + close() + } + } + return _commentOff!! + } + +private var _commentOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Communication.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Communication.kt new file mode 100644 index 00000000..b4778ba3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Communication.kt @@ -0,0 +1,41 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Communication: ImageVector + get() { + if (_communication != null) { + return _communication!! + } + _communication = fluentIcon(name = "Filled.Communication") { + fluentPath { + moveTo(12.0f, 5.0f) + arcToRelative(8.0f, 8.0f, 0.0f, false, false, -5.66f, 13.65f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.42f, 1.41f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 14.16f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, -1.4f) + arcTo(8.0f, 8.0f, 0.0f, false, false, 12.0f, 5.0f) + close() + moveTo(12.0f, 11.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, -4.0f) + close() + moveTo(8.0f, 13.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, 6.83f, 2.83f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.41f, 1.41f) + arcTo(5.98f, 5.98f, 0.0f, false, false, 12.0f, 7.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, -4.24f, 10.24f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.41f, -1.41f) + arcTo(3.98f, 3.98f, 0.0f, false, true, 8.0f, 13.0f) + close() + } + } + return _communication!! + } + +private var _communication: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommunicationPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommunicationPerson.kt new file mode 100644 index 00000000..538e112d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CommunicationPerson.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CommunicationPerson: ImageVector + get() { + if (_communicationPerson != null) { + return _communicationPerson!! + } + _communicationPerson = fluentIcon(name = "Filled.CommunicationPerson") { + fluentPath { + moveTo(4.0f, 13.0f) + arcToRelative(8.0f, 8.0f, 0.0f, false, true, 15.8f, -1.75f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 2.16f, 2.7f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -17.03f, 6.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, -1.42f) + arcTo(7.97f, 7.97f, 0.0f, false, true, 4.0f, 13.0f) + close() + moveTo(17.7f, 11.1f) + arcToRelative(6.0f, 6.0f, 0.0f, true, false, -9.94f, 6.14f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.41f, -1.41f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, 6.74f, -3.68f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 1.78f, -1.06f) + close() + moveTo(10.0f, 13.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -4.0f, 0.0f) + close() + moveTo(21.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(23.0f, 19.88f) + curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) + reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _communicationPerson!! + } + +private var _communicationPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CompassNorthwest.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CompassNorthwest.kt new file mode 100644 index 00000000..c6c4db14 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CompassNorthwest.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CompassNorthwest: ImageVector + get() { + if (_compassNorthwest != null) { + return _compassNorthwest!! + } + _compassNorthwest = fluentIcon(name = "Filled.CompassNorthwest") { + fluentPath { + moveTo(12.0f, 22.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) + close() + moveTo(12.46f, 9.39f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 2.2f, 2.14f) + lineToRelative(1.85f, 4.32f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.66f, 0.66f) + lineToRelative(-4.32f, -1.86f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -2.14f, -2.2f) + lineTo(7.78f, 8.44f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.65f, -0.65f) + lineToRelative(4.03f, 1.6f) + close() + } + } + return _compassNorthwest!! + } + +private var _compassNorthwest: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Component2DoubleTapSwipeDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Component2DoubleTapSwipeDown.kt new file mode 100644 index 00000000..3458531e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Component2DoubleTapSwipeDown.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Component2DoubleTapSwipeDown: ImageVector + get() { + if (_component2DoubleTapSwipeDown != null) { + return _component2DoubleTapSwipeDown!! + } + _component2DoubleTapSwipeDown = fluentIcon(name = "Filled.Component2DoubleTapSwipeDown") { + fluentPath { + moveTo(10.0f, 15.71f) + verticalLineToRelative(-1.58f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 4.21f, -0.1f) + lineToRelative(-0.2f, 0.1f) + verticalLineToRelative(1.58f) + arcToRelative(7.0f, 7.0f, 0.0f, true, false, -4.26f, -0.08f) + lineToRelative(0.25f, 0.08f) + close() + moveTo(10.0f, 13.03f) + verticalLineToRelative(-1.8f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 12.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.14f, 5.1f) + lineToRelative(-0.14f, 0.14f) + verticalLineToRelative(1.8f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, -4.2f, -0.1f) + lineToRelative(0.2f, 0.1f) + close() + moveTo(11.39f, 21.79f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.22f, 0.0f) + lineToRelative(0.1f, -0.08f) + lineToRelative(3.0f, -3.0f) + lineToRelative(0.08f, -0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.22f) + lineToRelative(-0.08f, -0.1f) + lineToRelative(-0.1f, -0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.22f, 0.0f) + lineToRelative(-0.1f, 0.08f) + lineTo(13.0f, 18.6f) + lineTo(13.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, -0.12f) + lineTo(11.0f, 18.6f) + lineToRelative(-1.3f, -1.3f) + lineToRelative(-0.09f, -0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.4f) + lineToRelative(0.08f, 0.1f) + lineToRelative(3.0f, 3.0f) + lineToRelative(0.1f, 0.08f) + close() + } + } + return _component2DoubleTapSwipeDown!! + } + +private var _component2DoubleTapSwipeDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Component2DoubleTapSwipeUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Component2DoubleTapSwipeUp.kt new file mode 100644 index 00000000..9f34127c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Component2DoubleTapSwipeUp.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Component2DoubleTapSwipeUp: ImageVector + get() { + if (_component2DoubleTapSwipeUp != null) { + return _component2DoubleTapSwipeUp!! + } + _component2DoubleTapSwipeUp = fluentIcon(name = "Filled.Component2DoubleTapSwipeUp") { + fluentPath { + moveTo(10.0f, 8.29f) + verticalLineToRelative(1.58f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 4.21f, 0.1f) + lineToRelative(-0.2f, -0.1f) + lineTo(14.01f, 8.3f) + arcToRelative(7.0f, 7.0f, 0.0f, true, true, -4.26f, 0.08f) + lineToRelative(0.25f, -0.08f) + close() + moveTo(10.0f, 10.97f) + verticalLineToRelative(1.8f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 12.0f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 2.14f, -5.1f) + lineToRelative(-0.14f, -0.14f) + verticalLineToRelative(-1.8f) + arcToRelative(4.5f, 4.5f, 0.0f, true, true, -4.2f, 0.1f) + lineToRelative(0.2f, -0.1f) + close() + moveTo(11.39f, 2.21f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.22f, 0.0f) + lineToRelative(0.1f, 0.08f) + lineToRelative(3.0f, 3.0f) + lineToRelative(0.08f, 0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.22f) + lineToRelative(-0.08f, 0.1f) + lineToRelative(-0.1f, 0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.22f, 0.0f) + lineToRelative(-0.1f, -0.08f) + lineTo(13.0f, 5.4f) + lineTo(13.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(11.0f, 5.4f) + lineToRelative(-1.3f, 1.3f) + lineToRelative(-0.09f, 0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.4f) + lineToRelative(0.08f, -0.1f) + lineToRelative(3.0f, -3.0f) + lineToRelative(0.1f, -0.08f) + close() + } + } + return _component2DoubleTapSwipeUp!! + } + +private var _component2DoubleTapSwipeUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Compose.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Compose.kt new file mode 100644 index 00000000..69f24bbd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Compose.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Compose: ImageVector + get() { + if (_compose != null) { + return _compose!! + } + _compose = fluentIcon(name = "Filled.Compose") { + fluentPath { + moveTo(11.96f, 13.46f) + lineTo(21.7f, 3.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, -1.42f) + lineToRelative(-9.75f, 9.75f) + lineToRelative(-0.29f, 1.71f) + lineToRelative(1.7f, -0.3f) + close() + moveTo(6.5f, 3.0f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 3.0f, 6.5f) + verticalLineToRelative(11.0f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 6.5f, 21.0f) + horizontalLineToRelative(11.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 3.5f, -3.5f) + verticalLineTo(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-11.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 5.0f, 17.5f) + verticalLineToRelative(-11.0f) + curveTo(5.0f, 5.67f, 5.67f, 5.0f, 6.5f, 5.0f) + horizontalLineTo(14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineTo(6.5f) + close() + } + } + return _compose!! + } + +private var _compose: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ConferenceRoom.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ConferenceRoom.kt new file mode 100644 index 00000000..d74deef4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ConferenceRoom.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ConferenceRoom: ImageVector + get() { + if (_conferenceRoom != null) { + return _conferenceRoom!! + } + _conferenceRoom = fluentIcon(name = "Filled.ConferenceRoom") { + fluentPath { + moveToRelative(10.6f, 2.01f) + lineToRelative(9.0f, 2.0f) + curveToRelative(0.23f, 0.05f, 0.4f, 0.25f, 0.4f, 0.49f) + verticalLineToRelative(15.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, 0.5f) + lineToRelative(-9.0f, 2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.6f, -0.5f) + verticalLineToRelative(-19.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.6f, -0.49f) + close() + moveTo(9.0f, 4.0f) + verticalLineToRelative(16.0f) + lineTo(4.75f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + lineTo(4.0f, 4.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + lineTo(9.0f, 4.0f) + close() + moveTo(13.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + } + } + return _conferenceRoom!! + } + +private var _conferenceRoom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Connector.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Connector.kt new file mode 100644 index 00000000..8c2fbcec --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Connector.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Connector: ImageVector + get() { + if (_connector != null) { + return _connector!! + } + _connector = fluentIcon(name = "Filled.Connector") { + fluentPath { + moveTo(8.25f, 4.0f) + curveToRelative(0.42f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.77f) + lineToRelative(1.88f, 2.82f) + curveToRelative(0.08f, 0.12f, 0.12f, 0.27f, 0.12f, 0.41f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.41f, -0.33f, 0.75f, -0.75f, 0.75f) + lineTo(9.0f, 16.0f) + verticalLineToRelative(3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(7.5f, 16.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(3.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, 0.1f) + lineTo(4.01f, 16.0f) + lineTo(2.74f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.14f, 0.05f, -0.29f, 0.13f, -0.41f) + lineTo(4.0f, 7.52f) + lineTo(4.0f, 4.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + close() + moveTo(15.25f, 4.0f) + horizontalLineToRelative(4.5f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + lineTo(20.5f, 8.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.42f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.14f, -0.04f, 0.29f, -0.12f, 0.41f) + lineTo(20.0f, 16.48f) + verticalLineToRelative(2.77f) + curveToRelative(0.0f, 0.41f, -0.33f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-2.77f) + lineToRelative(-1.87f, -2.82f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.13f, -0.41f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(0.76f) + lineTo(14.51f, 4.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.64f, -0.74f) + horizontalLineToRelative(4.6f) + horizontalLineToRelative(-4.5f) + close() + moveTo(19.0f, 5.5f) + horizontalLineToRelative(-3.0f) + lineTo(16.0f, 8.0f) + horizontalLineToRelative(3.0f) + lineTo(19.0f, 5.5f) + close() + } + } + return _connector!! + } + +private var _connector: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ContactCard.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ContactCard.kt new file mode 100644 index 00000000..206b5dea --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ContactCard.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ContactCard: ImageVector + get() { + if (_contactCard != null) { + return _contactCard!! + } + _contactCard = fluentIcon(name = "Filled.ContactCard") { + fluentPath { + moveTo(19.75f, 4.0f) + curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(22.0f, 19.0f, 21.0f, 20.0f, 19.75f, 20.0f) + lineTo(4.25f, 20.0f) + curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) + lineTo(2.0f, 6.25f) + curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) + horizontalLineToRelative(15.5f) + close() + moveTo(9.75f, 12.5f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(0.6f) + curveToRelative(0.17f, 1.11f, 1.1f, 1.65f, 2.5f, 1.65f) + curveToRelative(1.33f, 0.0f, 2.24f, -0.49f, 2.46f, -1.5f) + lineToRelative(0.03f, -0.15f) + lineToRelative(0.01f, -0.1f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + close() + moveTo(17.75f, 13.0f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) + lineTo(17.85f, 14.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.49f) + horizontalLineToRelative(-0.1f) + close() + moveTo(8.0f, 8.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(17.75f, 9.5f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(17.85f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + } + } + return _contactCard!! + } + +private var _contactCard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ContactCardGroup.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ContactCardGroup.kt new file mode 100644 index 00000000..5db3f305 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ContactCardGroup.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ContactCardGroup: ImageVector + get() { + if (_contactCardGroup != null) { + return _contactCardGroup!! + } + _contactCardGroup = fluentIcon(name = "Filled.ContactCardGroup") { + fluentPath { + moveTo(18.75f, 4.0f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(5.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(5.25f, 4.0f) + horizontalLineToRelative(13.5f) + close() + moveTo(9.25f, 12.5f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(0.58f) + curveToRelative(0.0f, 1.27f, 0.97f, 1.92f, 2.5f, 1.92f) + curveToRelative(1.47f, 0.0f, 2.42f, -0.6f, 2.5f, -1.76f) + verticalLineToRelative(-0.74f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + close() + moveTo(12.25f, 12.5f) + horizontalLineToRelative(-1.42f) + curveToRelative(0.09f, 0.18f, 0.15f, 0.38f, 0.17f, 0.59f) + verticalLineToRelative(1.0f) + curveToRelative(-0.03f, 0.33f, -0.1f, 0.63f, -0.21f, 0.9f) + lineToRelative(0.34f, 0.01f) + curveToRelative(1.05f, 0.0f, 1.79f, -0.4f, 1.86f, -1.27f) + lineToRelative(0.01f, -0.15f) + verticalLineToRelative(-0.33f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-1.42f) + horizontalLineToRelative(1.42f) + close() + moveTo(18.25f, 12.5f) + horizontalLineToRelative(-3.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(7.5f, 8.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(11.37f, 9.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(18.25f, 9.5f) + horizontalLineToRelative(-3.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + } + } + return _contactCardGroup!! + } + +private var _contactCardGroup: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ContactCardRibbon.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ContactCardRibbon.kt new file mode 100644 index 00000000..5b052a93 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ContactCardRibbon.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ContactCardRibbon: ImageVector + get() { + if (_contactCardRibbon != null) { + return _contactCardRibbon!! + } + _contactCardRibbon = fluentIcon(name = "Filled.ContactCardRibbon") { + fluentPath { + moveTo(19.75f, 4.0f) + curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) + verticalLineToRelative(5.5f) + arcTo(4.48f, 4.48f, 0.0f, false, false, 15.76f, 13.0f) + horizontalLineToRelative(-2.61f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) + lineTo(15.11f, 14.49f) + arcToRelative(4.51f, 4.51f, 0.0f, false, false, 0.89f, 3.84f) + lineTo(16.0f, 20.0f) + lineTo(4.25f, 20.0f) + curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) + lineTo(2.0f, 6.25f) + curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) + horizontalLineToRelative(15.5f) + close() + moveTo(6.25f, 12.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(0.6f) + curveToRelative(0.17f, 1.11f, 1.1f, 1.65f, 2.5f, 1.65f) + curveToRelative(1.33f, 0.0f, 2.24f, -0.49f, 2.46f, -1.5f) + lineToRelative(0.03f, -0.15f) + lineToRelative(0.01f, -0.1f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-3.5f) + close() + moveTo(8.0f, 8.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(17.75f, 9.5f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(17.85f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(23.0f, 15.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, -7.0f, 0.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 7.0f, 0.0f) + close() + moveTo(17.0f, 19.24f) + verticalLineToRelative(3.05f) + curveToRelative(0.0f, 0.63f, 0.76f, 0.95f, 1.21f, 0.5f) + lineToRelative(1.29f, -1.29f) + lineToRelative(1.29f, 1.29f) + arcToRelative(0.71f, 0.71f, 0.0f, false, false, 1.21f, -0.5f) + verticalLineToRelative(-3.05f) + arcToRelative(4.48f, 4.48f, 0.0f, false, true, -5.0f, 0.0f) + close() + } + } + return _contactCardRibbon!! + } + +private var _contactCardRibbon: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ContentSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ContentSettings.kt new file mode 100644 index 00000000..3963116e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ContentSettings.kt @@ -0,0 +1,93 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ContentSettings: ImageVector + get() { + if (_contentSettings != null) { + return _contentSettings!! + } + _contentSettings = fluentIcon(name = "Filled.ContentSettings") { + fluentPath { + moveTo(17.93f, 3.0f) + lineTo(6.07f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.26f) + verticalLineToRelative(11.68f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 6.26f, 21.0f) + horizontalLineToRelative(5.77f) + arcToRelative(6.46f, 6.46f, 0.0f, false, true, -0.85f, -2.0f) + lineTo(6.12f, 19.0f) + arcTo(1.25f, 1.25f, 0.0f, false, true, 5.0f, 17.74f) + lineTo(5.0f, 8.0f) + horizontalLineToRelative(14.0f) + verticalLineToRelative(3.17f) + curveToRelative(0.72f, 0.17f, 1.4f, 0.46f, 2.0f, 0.85f) + lineTo(21.0f, 6.07f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 17.93f, 3.0f) + close() + moveTo(11.0f, 10.16f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.74f, -0.65f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + verticalLineToRelative(7.1f) + curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + verticalLineToRelative(-7.1f) + close() + moveTo(7.5f, 11.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(5.5f) + horizontalLineToRelative(-2.0f) + lineTo(7.5f, 11.0f) + close() + moveTo(18.0f, 10.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(14.28f, 13.98f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.59f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.01f, 1.8f) + lineToRelative(0.54f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) + lineToRelative(-0.19f, 0.63f) + curveToRelative(0.44f, 0.39f, 0.94f, 0.7f, 1.49f, 0.93f) + lineToRelative(0.49f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) + lineToRelative(-0.2f, -0.69f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) + lineToRelative(0.59f, -0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, -1.8f) + lineToRelative(-0.55f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.19f, -0.63f) + curveToRelative(-0.44f, -0.4f, -0.94f, -0.7f, -1.49f, -0.93f) + lineToRelative(-0.49f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) + lineToRelative(0.2f, 0.7f) + close() + moveTo(17.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) + close() + } + } + return _contentSettings!! + } + +private var _contentSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ContentView.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ContentView.kt new file mode 100644 index 00000000..d7ca9907 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ContentView.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ContentView: ImageVector + get() { + if (_contentView != null) { + return _contentView!! + } + _contentView = fluentIcon(name = "Filled.ContentView") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(6.0f, 8.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(8.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-8.5f) + curveTo(6.78f, 11.5f, 6.0f, 10.72f, 6.0f, 9.75f) + verticalLineToRelative(-1.5f) + close() + moveTo(7.75f, 8.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(8.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-1.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-8.5f) + close() + moveTo(6.75f, 13.0f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(6.0f, 16.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(15.25f, 13.0f) + horizontalLineToRelative(1.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-1.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + close() + moveTo(15.0f, 14.75f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(1.0f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-1.0f) + close() + } + } + return _contentView!! + } + +private var _contentView: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ContentViewGallery.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ContentViewGallery.kt new file mode 100644 index 00000000..bd19b61b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ContentViewGallery.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ContentViewGallery: ImageVector + get() { + if (_contentViewGallery != null) { + return _contentViewGallery!! + } + _contentViewGallery = fluentIcon(name = "Filled.ContentViewGallery") { + fluentPath { + moveTo(6.25f, 3.0f) + horizontalLineToRelative(8.25f) + verticalLineToRelative(18.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + close() + moveTo(17.75f, 21.0f) + lineTo(16.0f, 21.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(1.75f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + close() + moveTo(21.0f, 14.5f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(5.0f) + close() + moveTo(16.0f, 8.0f) + lineTo(16.0f, 3.0f) + horizontalLineToRelative(1.75f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + lineTo(21.0f, 8.0f) + horizontalLineToRelative(-5.0f) + close() + moveTo(6.0f, 13.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(7.25f, 6.5f) + curveTo(6.56f, 6.5f, 6.0f, 7.06f, 6.0f, 7.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-3.5f) + close() + moveTo(7.5f, 10.0f) + lineTo(7.5f, 8.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-3.0f) + close() + moveTo(6.0f, 16.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + } + } + return _contentViewGallery!! + } + +private var _contentViewGallery: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ContractDownLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ContractDownLeft.kt new file mode 100644 index 00000000..94546f7b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ContractDownLeft.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ContractDownLeft: ImageVector + get() { + if (_contractDownLeft != null) { + return _contractDownLeft!! + } + _contractDownLeft = fluentIcon(name = "Filled.ContractDownLeft") { + fluentPath { + moveTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 12.0f) + horizontalLineToRelative(4.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 12.0f, 14.75f) + verticalLineToRelative(4.75f) + horizontalLineToRelative(5.75f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.0f) + close() + moveTo(15.56f, 9.5f) + horizontalLineToRelative(4.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(4.69f) + lineToRelative(5.22f, -5.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineTo(15.56f, 9.5f) + close() + } + } + return _contractDownLeft!! + } + +private var _contractDownLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ControlButton.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ControlButton.kt new file mode 100644 index 00000000..70f0891c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ControlButton.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ControlButton: ImageVector + get() { + if (_controlButton != null) { + return _controlButton!! + } + _controlButton = fluentIcon(name = "Filled.ControlButton") { + fluentPath { + moveTo(2.0f, 7.25f) + curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) + horizontalLineToRelative(13.5f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(5.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + close() + moveTo(7.75f, 8.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 5.0f, 10.75f) + verticalLineToRelative(2.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 7.75f, 16.0f) + horizontalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.5f) + close() + moveTo(11.5f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + lineTo(10.0f, 11.0f) + horizontalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(10.0f, 12.5f) + lineTo(10.0f, 14.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(12.0f, 14.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.75f) + lineTo(11.5f, 8.75f) + close() + moveTo(19.5f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-6.5f) + close() + moveTo(15.5f, 13.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(16.0f, 11.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(15.5f, 13.0f) + close() + } + } + return _controlButton!! + } + +private var _controlButton: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ConvertRange.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ConvertRange.kt new file mode 100644 index 00000000..f91b17c0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ConvertRange.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ConvertRange: ImageVector + get() { + if (_convertRange != null) { + return _convertRange!! + } + _convertRange = fluentIcon(name = "Filled.ConvertRange") { + fluentPath { + moveTo(6.25f, 3.0f) + curveTo(5.01f, 3.0f, 4.0f, 4.0f, 4.0f, 5.25f) + verticalLineToRelative(2.5f) + curveTo(4.0f, 8.99f, 5.0f, 10.0f, 6.25f, 10.0f) + horizontalLineToRelative(9.5f) + curveTo(16.99f, 10.0f, 18.0f, 9.0f, 18.0f, 7.75f) + verticalLineToRelative(-2.5f) + curveTo(18.0f, 4.01f, 17.0f, 3.0f, 15.75f, 3.0f) + horizontalLineToRelative(-9.5f) + close() + moveTo(17.35f, 16.45f) + lineTo(17.28f, 16.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-0.72f, 0.72f) + horizontalLineToRelative(1.5f) + curveToRelative(0.65f, 0.0f, 1.18f, -0.5f, 1.24f, -1.12f) + lineToRelative(0.01f, -0.13f) + lineTo(19.31f, 9.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + lineTo(20.81f, 12.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.58f, 2.74f) + lineToRelative(-0.17f, 0.01f) + horizontalLineToRelative(-1.5f) + lineToRelative(0.72f, 0.72f) + curveToRelative(0.27f, 0.26f, 0.3f, 0.68f, 0.07f, 0.98f) + close() + moveTo(14.27f, 12.0f) + lineToRelative(-0.78f, 0.79f) + lineToRelative(-0.12f, 0.14f) + lineToRelative(-0.03f, 0.03f) + curveToRelative(-0.5f, 0.68f, -0.45f, 1.65f, 0.17f, 2.28f) + lineToRelative(2.03f, 2.02f) + lineToRelative(0.14f, 0.12f) + lineToRelative(0.03f, 0.03f) + curveToRelative(0.68f, 0.5f, 1.66f, 0.45f, 2.28f, -0.17f) + lineToRelative(0.01f, -0.02f) + verticalLineToRelative(2.03f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-9.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-5.0f) + curveTo(4.0f, 13.01f, 5.0f, 12.0f, 6.25f, 12.0f) + horizontalLineToRelative(8.02f) + close() + moveTo(8.0f, 16.75f) + curveToRelative(0.0f, 0.41f, 0.31f, 0.75f, 0.7f, 0.75f) + horizontalLineToRelative(4.6f) + curveToRelative(0.39f, 0.0f, 0.7f, -0.34f, 0.7f, -0.75f) + reflectiveCurveToRelative(-0.31f, -0.75f, -0.7f, -0.75f) + lineTo(8.7f, 16.0f) + curveToRelative(-0.39f, 0.0f, -0.7f, 0.34f, -0.7f, 0.75f) + close() + } + } + return _convertRange!! + } + +private var _convertRange: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cookies.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cookies.kt new file mode 100644 index 00000000..9cf08e54 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cookies.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Cookies: ImageVector + get() { + if (_cookies != null) { + return _cookies!! + } + _cookies = fluentIcon(name = "Filled.Cookies") { + fluentPath { + moveTo(12.0f, 2.0f) + curveToRelative(0.71f, 0.0f, 1.42f, 0.07f, 2.1f, 0.22f) + curveToRelative(0.59f, 0.13f, 0.8f, 0.84f, 0.38f, 1.27f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 1.2f, 4.2f) + curveToRelative(0.38f, 0.08f, 0.62f, 0.43f, 0.58f, 0.8f) + lineToRelative(-0.01f, 0.26f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 4.37f, 1.66f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.31f, 0.4f) + arcTo(10.0f, 10.0f, 0.0f, true, true, 12.0f, 2.0f) + close() + moveTo(15.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(8.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(12.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(7.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + } + } + return _cookies!! + } + +private var _cookies: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CopyAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CopyAdd.kt new file mode 100644 index 00000000..a5cad7c3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CopyAdd.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CopyAdd: ImageVector + get() { + if (_copyAdd != null) { + return _copyAdd!! + } + _copyAdd = fluentIcon(name = "Filled.CopyAdd") { + fluentPath { + moveTo(5.5f, 4.63f) + lineTo(5.5f, 17.25f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(1.98f) + curveToRelative(0.3f, 0.56f, 0.66f, 1.06f, 1.08f, 1.5f) + lineTo(8.75f, 22.0f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 4.0f, 17.25f) + lineTo(4.0f, 6.75f) + curveToRelative(0.0f, -0.98f, 0.63f, -1.81f, 1.5f, -2.12f) + close() + moveTo(16.5f, 11.0f) + curveToRelative(1.29f, 0.0f, 2.49f, 0.38f, 3.5f, 1.02f) + lineTo(20.0f, 4.25f) + curveTo(20.0f, 3.01f, 19.0f, 2.0f, 17.75f, 2.0f) + horizontalLineToRelative(-9.0f) + curveTo(7.51f, 2.0f, 6.5f, 3.0f, 6.5f, 4.25f) + verticalLineToRelative(13.0f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(1.56f) + arcTo(6.5f, 6.5f, 0.0f, false, true, 16.5f, 11.0f) + close() + moveTo(22.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(17.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(16.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(16.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(17.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(17.0f, 18.0f) + close() + } + } + return _copyAdd!! + } + +private var _copyAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CopyArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CopyArrowRight.kt new file mode 100644 index 00000000..e177582c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CopyArrowRight.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CopyArrowRight: ImageVector + get() { + if (_copyArrowRight != null) { + return _copyArrowRight!! + } + _copyArrowRight = fluentIcon(name = "Filled.CopyArrowRight") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(5.5f, 4.63f) + lineTo(5.5f, 17.25f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(2.98f) + curveToRelative(0.3f, 0.56f, 0.66f, 1.06f, 1.08f, 1.5f) + lineTo(8.75f, 22.0f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 4.0f, 17.25f) + lineTo(4.0f, 6.75f) + curveToRelative(0.0f, -0.98f, 0.63f, -1.81f, 1.5f, -2.12f) + close() + moveTo(18.28f, 14.59f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.56f, 0.0f) + lineToRelative(-0.07f, 0.06f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) + lineToRelative(0.06f, 0.07f) + lineTo(19.29f, 17.0f) + lineTo(14.4f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(0.18f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(0.06f, -0.07f) + lineToRelative(2.53f, -2.53f) + lineToRelative(0.04f, -0.05f) + lineToRelative(0.04f, -0.08f) + lineToRelative(0.03f, -0.08f) + lineTo(20.99f, 17.39f) + lineToRelative(-0.01f, -0.04f) + lineToRelative(-0.04f, -0.08f) + lineToRelative(-0.02f, -0.04f) + lineToRelative(-0.04f, -0.05f) + lineToRelative(-2.53f, -2.53f) + lineToRelative(-0.07f, -0.06f) + close() + moveTo(17.75f, 2.0f) + curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) + verticalLineToRelative(7.25f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -8.69f, 8.0f) + lineTo(8.75f, 19.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-13.0f) + curveTo(6.5f, 3.01f, 7.5f, 2.0f, 8.75f, 2.0f) + horizontalLineToRelative(9.0f) + close() + } + } + return _copyArrowRight!! + } + +private var _copyArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CopySelect.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CopySelect.kt new file mode 100644 index 00000000..9ebbc75d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CopySelect.kt @@ -0,0 +1,98 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CopySelect: ImageVector + get() { + if (_copySelect != null) { + return _copySelect!! + } + _copySelect = fluentIcon(name = "Filled.CopySelect") { + fluentPath { + moveTo(9.25f, 3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.0f) + curveTo(6.0f, 3.45f, 7.46f, 2.0f, 9.25f, 2.0f) + horizontalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.0f) + close() + moveTo(12.0f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(12.75f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.5f) + close() + moveTo(6.75f, 8.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(22.0f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.5f) + close() + moveTo(18.75f, 16.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.0f) + close() + moveTo(20.5f, 5.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.0f) + curveTo(20.55f, 2.0f, 22.0f, 3.46f, 22.0f, 5.25f) + verticalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(9.25f, 16.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.0f) + curveTo(6.0f, 16.55f, 7.46f, 18.0f, 9.25f, 18.0f) + horizontalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.0f) + close() + moveTo(2.0f, 9.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.0f, -3.24f) + lineTo(5.0f, 15.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, 4.0f) + horizontalLineToRelative(9.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.25f, 3.0f) + horizontalLineToRelative(-7.0f) + arcTo(5.75f, 5.75f, 0.0f, false, true, 2.0f, 16.25f) + verticalLineToRelative(-7.0f) + close() + } + } + return _copySelect!! + } + +private var _copySelect: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Couch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Couch.kt new file mode 100644 index 00000000..abbf6971 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Couch.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Couch: ImageVector + get() { + if (_couch != null) { + return _couch!! + } + _couch = fluentIcon(name = "Filled.Couch") { + fluentPath { + moveTo(16.75f, 4.0f) + horizontalLineToRelative(-9.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.5f, 6.75f) + lineTo(4.5f, 8.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 3.46f, 3.0f) + horizontalLineToRelative(8.08f) + curveToRelative(0.24f, -1.7f, 1.7f, -3.0f, 3.46f, -3.0f) + lineTo(19.5f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 16.75f, 4.0f) + close() + moveTo(17.0f, 11.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + verticalLineToRelative(2.75f) + curveToRelative(0.0f, 1.43f, -1.1f, 2.61f, -2.5f, 2.74f) + verticalLineToRelative(1.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(18.0f, 17.0f) + lineTo(6.0f, 17.0f) + verticalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.26f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 14.25f) + lineTo(2.0f, 11.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(9.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + close() + } + } + return _couch!! + } + +private var _couch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CreditCardClock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CreditCardClock.kt new file mode 100644 index 00000000..3a381d01 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CreditCardClock.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CreditCardClock: ImageVector + get() { + if (_creditCardClock != null) { + return _creditCardClock!! + } + _creditCardClock = fluentIcon(name = "Filled.CreditCardClock") { + fluentPath { + moveTo(2.0f, 8.25f) + curveTo(2.0f, 6.45f, 3.46f, 5.0f, 5.25f, 5.0f) + horizontalLineToRelative(13.5f) + curveTo(20.55f, 5.0f, 22.0f, 6.46f, 22.0f, 8.25f) + lineTo(22.0f, 9.5f) + lineTo(2.0f, 9.5f) + lineTo(2.0f, 8.25f) + close() + moveTo(11.17f, 19.0f) + lineTo(5.25f, 19.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 15.75f) + lineTo(2.0f, 11.0f) + horizontalLineToRelative(15.5f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -6.33f, 8.0f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(19.5f, 17.5f) + horizontalLineToRelative(-2.0f) + lineTo(17.5f, 15.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + close() + } + } + return _creditCardClock!! + } + +private var _creditCardClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CreditCardPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CreditCardPerson.kt new file mode 100644 index 00000000..c367a1df --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CreditCardPerson.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CreditCardPerson: ImageVector + get() { + if (_creditCardPerson != null) { + return _creditCardPerson!! + } + _creditCardPerson = fluentIcon(name = "Filled.CreditCardPerson") { + fluentPath { + moveTo(5.25f, 5.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 8.25f) + lineTo(2.0f, 9.5f) + horizontalLineToRelative(20.0f) + lineTo(22.0f, 8.25f) + curveTo(22.0f, 6.45f, 20.54f, 5.0f, 18.75f, 5.0f) + lineTo(5.25f, 5.0f) + close() + moveTo(2.0f, 15.75f) + lineTo(2.0f, 11.0f) + horizontalLineToRelative(16.5f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -2.45f, 6.0f) + horizontalLineToRelative(-0.28f) + curveToRelative(-1.26f, 0.0f, -2.33f, 0.84f, -2.66f, 2.0f) + lineTo(5.25f, 19.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 15.75f) + close() + moveTo(21.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(23.0f, 19.88f) + curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) + reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _creditCardPerson!! + } + +private var _creditCardPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CreditCardToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CreditCardToolbox.kt new file mode 100644 index 00000000..df7c782a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CreditCardToolbox.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CreditCardToolbox: ImageVector + get() { + if (_creditCardToolbox != null) { + return _creditCardToolbox!! + } + _creditCardToolbox = fluentIcon(name = "Filled.CreditCardToolbox") { + fluentPath { + moveTo(2.0f, 8.25f) + curveTo(2.0f, 6.45f, 3.46f, 5.0f, 5.25f, 5.0f) + horizontalLineToRelative(13.5f) + curveTo(20.55f, 5.0f, 22.0f, 6.46f, 22.0f, 8.25f) + lineTo(22.0f, 9.5f) + lineTo(2.0f, 9.5f) + lineTo(2.0f, 8.25f) + close() + moveTo(15.75f, 11.0f) + lineTo(2.0f, 11.0f) + verticalLineToRelative(4.75f) + curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) + lineTo(11.0f, 19.0f) + verticalLineToRelative(-2.75f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.0f, -2.45f) + verticalLineToRelative(-0.05f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 15.75f, 11.0f) + close() + moveTo(13.5f, 14.75f) + horizontalLineToRelative(0.5f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(3.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(0.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + lineTo(23.0f, 18.0f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(-0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(0.5f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(-0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(0.5f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(-1.75f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + close() + moveTo(15.75f, 13.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-1.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-3.5f) + close() + moveTo(19.0f, 19.5f) + lineTo(19.0f, 19.0f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + lineTo(15.0f, 19.0f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(8.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + lineTo(23.0f, 19.0f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + close() + } + } + return _creditCardToolbox!! + } + +private var _creditCardToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Crop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Crop.kt new file mode 100644 index 00000000..33427961 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Crop.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Crop: ImageVector + get() { + if (_crop != null) { + return _crop!! + } + _crop = fluentIcon(name = "Filled.Crop") { + fluentPath { + moveTo(7.0f, 15.5f) + curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.36f, 1.5f) + horizontalLineTo(21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + horizontalLineTo(19.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + verticalLineTo(19.0f) + horizontalLineTo(8.5f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 5.0f, 15.7f) + verticalLineTo(7.0f) + horizontalLineTo(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + horizontalLineTo(5.0f) + verticalLineTo(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + verticalLineTo(15.5f) + close() + moveTo(8.0f, 5.0f) + horizontalLineToRelative(7.5f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 19.0f, 8.3f) + verticalLineTo(16.0f) + horizontalLineToRelative(-2.0f) + verticalLineTo(8.5f) + curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) + horizontalLineTo(8.0f) + verticalLineTo(5.0f) + close() + } + } + return _crop!! + } + +private var _crop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CropInterim.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CropInterim.kt new file mode 100644 index 00000000..c698b97a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CropInterim.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CropInterim: ImageVector + get() { + if (_cropInterim != null) { + return _cropInterim!! + } + _cropInterim = fluentIcon(name = "Filled.CropInterim") { + fluentPath { + moveTo(16.67f, 9.1f) + arcToRelative(6.5f, 6.5f, 0.0f, true, true, -5.17f, 11.52f) + verticalLineToRelative(0.63f) + curveToRelative(0.0f, 0.38f, -0.29f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.65f) + verticalLineToRelative(-2.6f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.64f, -0.74f) + horizontalLineToRelative(2.61f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.48f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-0.74f) + arcToRelative(4.98f, 4.98f, 0.0f, false, false, 8.0f, -4.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, -3.6f, -4.8f) + lineToRelative(-0.24f, -1.6f) + close() + moveTo(14.5f, 3.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.97f, 4.8f) + lineToRelative(0.82f, 5.32f) + arcTo(2.5f, 2.5f, 0.0f, true, true, 13.5f, 17.0f) + lineTo(6.5f, 17.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -2.78f, -3.88f) + lineToRelative(0.82f, -5.3f) + arcTo(2.5f, 2.5f, 0.0f, true, true, 7.5f, 4.0f) + horizontalLineToRelative(4.99f) + curveToRelative(0.46f, -0.6f, 1.18f, -1.0f, 2.0f, -1.0f) + close() + moveTo(12.0f, 5.5f) + lineTo(8.0f, 5.5f) + curveToRelative(0.0f, 1.2f, -0.84f, 2.2f, -1.96f, 2.45f) + lineToRelative(-0.8f, 5.16f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 7.0f, 15.31f) + lineToRelative(0.01f, 0.19f) + horizontalLineToRelative(6.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 1.76f, -2.39f) + lineToRelative(-0.8f, -5.16f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 12.0f, 5.67f) + lineTo(12.0f, 5.5f) + close() + } + } + return _cropInterim!! + } + +private var _cropInterim: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CropInterimOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CropInterimOff.kt new file mode 100644 index 00000000..dcc723cf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CropInterimOff.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CropInterimOff: ImageVector + get() { + if (_cropInterimOff != null) { + return _cropInterimOff!! + } + _cropInterimOff = fluentIcon(name = "Filled.CropInterimOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.06f, 1.06f) + arcToRelative(2.49f, 2.49f, 0.0f, false, false, 1.26f, 3.47f) + lineToRelative(-0.82f, 5.31f) + arcTo(2.5f, 2.5f, 0.0f, true, false, 6.5f, 17.0f) + horizontalLineToRelative(7.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.16f, 0.72f) + lineToRelative(1.8f, 1.8f) + arcToRelative(4.98f, 4.98f, 0.0f, false, true, -5.95f, -0.02f) + horizontalLineToRelative(0.84f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + verticalLineToRelative(2.6f) + curveToRelative(0.05f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + verticalLineToRelative(-0.63f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, 8.04f, -0.02f) + lineToRelative(1.18f, 1.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(13.28f, 14.35f) + curveToRelative(-0.17f, 0.34f, -0.28f, 0.73f, -0.28f, 1.15f) + lineTo(7.0f, 15.5f) + verticalLineToRelative(-0.19f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -1.76f, -2.2f) + lineToRelative(0.8f, -5.16f) + curveToRelative(0.22f, -0.05f, 0.42f, -0.13f, 0.62f, -0.23f) + lineToRelative(6.63f, 6.63f) + close() + moveTo(7.19f, 4.0f) + lineToRelative(1.5f, 1.5f) + horizontalLineToRelative(3.3f) + lineToRelative(0.01f, 0.17f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 1.97f, 2.28f) + lineToRelative(0.52f, 3.35f) + lineToRelative(1.8f, 1.8f) + lineToRelative(-0.82f, -5.3f) + arcTo(2.5f, 2.5f, 0.0f, true, false, 12.49f, 4.0f) + horizontalLineToRelative(-5.3f) + close() + moveTo(20.26f, 17.07f) + lineTo(21.42f, 18.23f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -4.74f, -9.12f) + lineToRelative(0.25f, 1.6f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 3.33f, 6.36f) + close() + } + } + return _cropInterimOff!! + } + +private var _cropInterimOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cube.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cube.kt new file mode 100644 index 00000000..5ae3121a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cube.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Cube: ImageVector + get() { + if (_cube != null) { + return _cube!! + } + _cube = fluentIcon(name = "Filled.Cube") { + fluentPath { + moveTo(13.4f, 2.51f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.8f, 0.0f) + lineTo(3.1f, 5.55f) + curveToRelative(-0.67f, 0.27f, -1.1f, 0.91f, -1.1f, 1.62f) + verticalLineToRelative(9.66f) + curveToRelative(0.0f, 0.7f, 0.43f, 1.35f, 1.1f, 1.62f) + lineToRelative(7.5f, 3.04f) + curveToRelative(0.9f, 0.36f, 1.9f, 0.36f, 2.8f, 0.0f) + lineToRelative(7.5f, -3.04f) + curveToRelative(0.67f, -0.27f, 1.1f, -0.91f, 1.1f, -1.62f) + verticalLineTo(7.17f) + curveToRelative(0.0f, -0.71f, -0.43f, -1.35f, -1.1f, -1.62f) + lineToRelative(-7.5f, -3.04f) + close() + moveTo(6.06f, 7.98f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -0.43f) + lineTo(12.0f, 9.44f) + lineToRelative(4.98f, -1.9f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.54f, 1.41f) + lineToRelative(-4.77f, 1.8f) + verticalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + verticalLineToRelative(-5.5f) + lineToRelative(-4.77f, -1.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.43f, -0.97f) + close() + } + } + return _cube!! + } + +private var _cube: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CubeMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CubeMultiple.kt new file mode 100644 index 00000000..b80f142d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CubeMultiple.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CubeMultiple: ImageVector + get() { + if (_cubeMultiple != null) { + return _cubeMultiple!! + } + _cubeMultiple = fluentIcon(name = "Filled.CubeMultiple") { + fluentPath { + moveTo(10.52f, 4.25f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 3.07f, 0.04f) + lineToRelative(5.91f, 2.1f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 1.0f, 0.59f) + verticalLineToRelative(-0.42f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.33f, -1.88f) + lineTo(14.0f, 2.85f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, -4.02f, 0.0f) + lineTo(4.83f, 4.68f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 3.5f, 6.56f) + verticalLineToRelative(0.42f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 1.0f, -0.6f) + lineToRelative(5.91f, -2.1f) + curveToRelative(0.04f, 0.0f, 0.07f, -0.02f, 0.1f, -0.03f) + close() + moveTo(13.25f, 5.23f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.5f, 0.0f) + lineToRelative(-5.92f, 2.1f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 3.5f, 9.2f) + verticalLineToRelative(8.24f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.33f, 1.88f) + lineToRelative(5.92f, 2.1f) + curveToRelative(0.8f, 0.29f, 1.7f, 0.29f, 2.5f, 0.0f) + lineToRelative(5.92f, -2.1f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.33f, -1.88f) + lineTo(20.5f, 9.2f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.33f, -1.88f) + lineToRelative(-5.92f, -2.1f) + close() + moveTo(6.45f, 10.11f) + curveToRelative(0.14f, -0.39f, 0.57f, -0.6f, 0.96f, -0.45f) + lineTo(12.0f, 11.29f) + lineToRelative(4.6f, -1.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.5f, 1.4f) + lineToRelative(-4.35f, 1.55f) + verticalLineToRelative(4.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-4.72f) + lineToRelative(-4.34f, -1.54f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.46f, -0.96f) + close() + } + } + return _cubeMultiple!! + } + +private var _cubeMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CubeQuick.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CubeQuick.kt new file mode 100644 index 00000000..9a4d0336 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CubeQuick.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CubeQuick: ImageVector + get() { + if (_cubeQuick != null) { + return _cubeQuick!! + } + _cubeQuick = fluentIcon(name = "Filled.CubeQuick") { + fluentPath { + moveTo(15.6f, 6.22f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.8f, 0.0f) + lineToRelative(3.5f, 1.76f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 22.0f, 9.77f) + verticalLineToRelative(4.46f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.1f, 1.79f) + lineToRelative(-3.5f, 1.77f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.8f, 0.0f) + lineToRelative(-3.5f, -1.77f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.1f, -1.79f) + lineTo(11.0f, 9.77f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.1f, -1.79f) + lineToRelative(3.5f, -1.76f) + close() + moveTo(13.58f, 10.41f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.33f, 1.0f) + lineToRelative(1.84f, 0.94f) + verticalLineToRelative(1.9f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) + verticalLineToRelative(-1.9f) + lineToRelative(1.84f, -0.94f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.68f, -1.33f) + lineToRelative(-1.91f, 0.97f) + lineToRelative(-1.91f, -0.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, 0.33f) + close() + moveTo(4.75f, 7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + close() + moveTo(2.75f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + close() + moveTo(4.0f, 15.75f) + curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _cubeQuick!! + } + +private var _cubeQuick: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CubeSync.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CubeSync.kt new file mode 100644 index 00000000..3dcfa722 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CubeSync.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CubeSync: ImageVector + get() { + if (_cubeSync != null) { + return _cubeSync!! + } + _cubeSync = fluentIcon(name = "Filled.CubeSync") { + fluentPath { + moveTo(13.4f, 2.51f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.8f, 0.0f) + lineTo(3.1f, 5.55f) + curveToRelative(-0.67f, 0.27f, -1.1f, 0.91f, -1.1f, 1.62f) + verticalLineToRelative(9.66f) + curveToRelative(0.0f, 0.71f, 0.43f, 1.35f, 1.1f, 1.62f) + lineToRelative(7.5f, 3.04f) + curveToRelative(0.62f, 0.25f, 1.3f, 0.33f, 1.96f, 0.23f) + arcToRelative(6.47f, 6.47f, 0.0f, false, true, -1.31f, -6.01f) + verticalLineToRelative(-4.95f) + lineToRelative(-4.77f, -1.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.54f, -1.41f) + lineTo(12.0f, 9.45f) + lineToRelative(4.98f, -1.9f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.54f, 1.4f) + lineToRelative(-4.77f, 1.81f) + verticalLineToRelative(2.3f) + arcToRelative(6.48f, 6.48f, 0.0f, false, true, 9.25f, -0.25f) + lineTo(22.0f, 7.17f) + curveToRelative(0.0f, -0.7f, -0.43f, -1.35f, -1.1f, -1.62f) + lineToRelative(-7.5f, -3.04f) + close() + moveTo(12.0f, 17.51f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) + close() + moveTo(20.5f, 14.01f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.21f, 0.5f, 0.5f) + verticalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.03f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.8f, -0.59f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) + verticalLineToRelative(-0.55f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + close() + moveTo(15.0f, 19.94f) + verticalLineToRelative(0.55f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.77f, 0.65f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) + close() + } + } + return _cubeSync!! + } + +private var _cubeSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CubeTree.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CubeTree.kt new file mode 100644 index 00000000..6f6af476 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CubeTree.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CubeTree: ImageVector + get() { + if (_cubeTree != null) { + return _cubeTree!! + } + _cubeTree = fluentIcon(name = "Filled.CubeTree") { + fluentPath { + moveTo(11.76f, 2.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.48f, 0.0f) + lineToRelative(3.75f, 1.25f) + curveToRelative(0.3f, 0.1f, 0.51f, 0.39f, 0.51f, 0.71f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.32f, -0.2f, 0.6f, -0.51f, 0.71f) + lineToRelative(-3.24f, 1.08f) + verticalLineTo(13.0f) + horizontalLineToRelative(1.75f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(0.84f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, -1.5f, 0.0f) + verticalLineToRelative(-0.84f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.84f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, -1.5f, 0.0f) + verticalLineToRelative(-0.84f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(1.75f) + verticalLineToRelative(-2.2f) + lineTo(8.01f, 9.7f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 7.5f, 9.0f) + verticalLineTo(4.0f) + curveToRelative(0.0f, -0.32f, 0.2f, -0.6f, 0.51f, -0.71f) + lineToRelative(3.75f, -1.25f) + close() + moveTo(9.8f, 5.5f) + curveToRelative(-0.13f, 0.4f, 0.08f, 0.82f, 0.47f, 0.95f) + lineToRelative(0.99f, 0.33f) + verticalLineToRelative(0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.96f) + lineToRelative(0.99f, -0.33f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.48f, -1.42f) + lineTo(12.0f, 5.46f) + lineToRelative(-1.26f, -0.42f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.95f, 0.47f) + close() + } + } + return _cubeTree!! + } + +private var _cubeTree: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CurrencyDollarEuro.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CurrencyDollarEuro.kt new file mode 100644 index 00000000..957e6668 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CurrencyDollarEuro.kt @@ -0,0 +1,95 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CurrencyDollarEuro: ImageVector + get() { + if (_currencyDollarEuro != null) { + return _currencyDollarEuro!! + } + _currencyDollarEuro = fluentIcon(name = "Filled.CurrencyDollarEuro") { + fluentPath { + moveTo(6.5f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(0.11f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 2.0f, 7.5f) + verticalLineToRelative(0.38f) + curveToRelative(0.0f, 1.9f, 1.09f, 3.61f, 2.8f, 4.42f) + lineToRelative(0.7f, 0.33f) + verticalLineToRelative(6.14f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -1.5f, -2.3f) + verticalLineToRelative(-0.84f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(0.85f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 3.5f, 4.39f) + verticalLineToRelative(0.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + verticalLineToRelative(-0.12f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 3.5f, -4.4f) + verticalLineToRelative(-0.36f) + curveToRelative(0.0f, -1.89f, -1.09f, -3.6f, -2.8f, -4.41f) + lineToRelative(-0.7f, -0.34f) + lineTo(7.5f, 5.21f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 9.0f, 7.5f) + verticalLineToRelative(0.86f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(11.0f, 7.5f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, -3.5f, -4.39f) + lineTo(7.5f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + moveTo(4.0f, 7.5f) + curveToRelative(0.0f, -1.03f, 0.62f, -1.9f, 1.5f, -2.3f) + verticalLineToRelative(5.21f) + arcTo(2.88f, 2.88f, 0.0f, false, true, 4.0f, 7.88f) + lineTo(4.0f, 7.5f) + close() + moveTo(7.5f, 18.77f) + verticalLineToRelative(-5.19f) + curveToRelative(0.92f, 0.5f, 1.5f, 1.47f, 1.5f, 2.53f) + verticalLineToRelative(0.37f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -1.5f, 2.3f) + close() + moveTo(15.0f, 12.0f) + curveToRelative(0.0f, -0.33f, 0.01f, -0.66f, 0.04f, -0.98f) + lineTo(16.0f, 11.02f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + horizontalLineToRelative(-0.58f) + curveToRelative(0.24f, -0.8f, 0.58f, -1.52f, 0.98f, -2.12f) + curveToRelative(0.85f, -1.27f, 1.92f, -1.9f, 2.96f, -1.9f) + curveToRelative(0.38f, 0.0f, 0.79f, 0.12f, 1.07f, 0.31f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.13f, -1.65f) + arcToRelative(3.97f, 3.97f, 0.0f, false, false, -2.2f, -0.66f) + curveToRelative(-1.91f, 0.0f, -3.53f, 1.16f, -4.62f, 2.79f) + curveToRelative(-0.62f, 0.92f, -1.1f, 2.02f, -1.39f, 3.23f) + lineTo(12.0f, 9.02f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(1.04f) + curveToRelative(-0.03f, 0.33f, -0.04f, 0.65f, -0.04f, 0.98f) + verticalLineToRelative(0.03f) + horizontalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(1.16f) + curveToRelative(0.25f, 1.59f, 0.8f, 3.03f, 1.58f, 4.18f) + curveToRelative(1.1f, 1.63f, 2.7f, 2.79f, 4.62f, 2.79f) + curveToRelative(0.7f, 0.0f, 1.54f, -0.17f, 2.23f, -0.67f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.18f, -1.62f) + curveToRelative(-0.25f, 0.18f, -0.64f, 0.29f, -1.05f, 0.29f) + curveToRelative(-1.04f, 0.0f, -2.1f, -0.63f, -2.96f, -1.9f) + arcToRelative(8.4f, 8.4f, 0.0f, false, true, -1.21f, -3.07f) + lineTo(16.0f, 14.03f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + horizontalLineToRelative(-1.0f) + lineTo(15.0f, 12.0f) + close() + } + } + return _currencyDollarEuro!! + } + +private var _currencyDollarEuro: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CurrencyDollarRupee.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CurrencyDollarRupee.kt new file mode 100644 index 00000000..5ae6097d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CurrencyDollarRupee.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CurrencyDollarRupee: ImageVector + get() { + if (_currencyDollarRupee != null) { + return _currencyDollarRupee!! + } + _currencyDollarRupee = fluentIcon(name = "Filled.CurrencyDollarRupee") { + fluentPath { + moveTo(7.5f, 3.0f) + verticalLineToRelative(0.11f) + arcTo(4.5f, 4.5f, 0.0f, false, true, 11.0f, 7.5f) + verticalLineToRelative(0.86f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(9.0f, 7.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -1.5f, -2.3f) + verticalLineToRelative(6.16f) + lineToRelative(0.7f, 0.34f) + curveToRelative(1.71f, 0.8f, 2.8f, 2.52f, 2.8f, 4.4f) + verticalLineToRelative(0.38f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -3.5f, 4.39f) + verticalLineToRelative(0.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + verticalLineToRelative(-0.12f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -3.5f, -4.4f) + verticalLineToRelative(-0.84f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(0.85f) + curveToRelative(0.0f, 1.02f, 0.62f, 1.9f, 1.5f, 2.3f) + verticalLineToRelative(-6.15f) + lineToRelative(-0.7f, -0.33f) + arcTo(4.88f, 4.88f, 0.0f, false, true, 2.0f, 7.88f) + lineTo(2.0f, 7.5f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 3.5f, -4.39f) + lineTo(5.5f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(5.5f, 5.2f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 7.5f) + verticalLineToRelative(0.38f) + curveToRelative(0.0f, 1.06f, 0.58f, 2.03f, 1.5f, 2.53f) + verticalLineToRelative(-5.2f) + close() + moveTo(7.5f, 13.58f) + verticalLineToRelative(5.2f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 1.5f, -2.3f) + verticalLineToRelative(-0.37f) + curveToRelative(0.0f, -1.06f, -0.58f, -2.03f, -1.5f, -2.53f) + close() + moveTo(13.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(2.5f) + curveToRelative(0.82f, 0.0f, 1.54f, 0.4f, 2.0f, 1.0f) + lineTo(13.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(4.95f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.45f, 2.0f) + lineTo(13.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.82f, 1.57f) + lineToRelative(7.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.64f, -1.14f) + lineTo(14.92f, 12.0f) + horizontalLineToRelative(0.58f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 4.47f, -4.0f) + lineTo(21.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-1.26f) + curveToRelative(-0.12f, -0.36f, -0.3f, -0.7f, -0.5f, -1.0f) + lineTo(21.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-8.0f) + close() + } + } + return _currencyDollarRupee!! + } + +private var _currencyDollarRupee: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cursor.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cursor.kt new file mode 100644 index 00000000..4bb14d0c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Cursor.kt @@ -0,0 +1,32 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Cursor: ImageVector + get() { + if (_cursor != null) { + return _cursor!! + } + _cursor = fluentIcon(name = "Filled.Cursor") { + fluentPath { + moveTo(7.92f, 2.3f) + arcTo(1.5f, 1.5f, 0.0f, false, false, 5.5f, 3.48f) + verticalLineTo(20.5f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 2.68f, 0.93f) + lineToRelative(4.19f, -5.3f) + curveToRelative(0.31f, -0.4f, 0.79f, -0.62f, 1.3f, -0.62f) + horizontalLineToRelative(6.84f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.93f, -2.69f) + lineTo(7.92f, 2.3f) + close() + } + } + return _cursor!! + } + +private var _cursor: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CursorClick.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CursorClick.kt new file mode 100644 index 00000000..50132a9e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CursorClick.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CursorClick: ImageVector + get() { + if (_cursorClick != null) { + return _cursorClick!! + } + _cursorClick = fluentIcon(name = "Filled.CursorClick") { + fluentPath { + moveTo(9.25f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(4.47f, 3.97f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(1.75f, 1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(4.47f, 5.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + moveTo(14.03f, 3.97f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-1.75f, 1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(1.75f, -1.75f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(2.5f, 8.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(8.5f, 9.49f) + arcToRelative(1.32f, 1.32f, 0.0f, false, true, 2.18f, -1.0f) + lineToRelative(8.46f, 7.25f) + curveToRelative(0.9f, 0.78f, 0.39f, 2.27f, -0.8f, 2.32f) + lineToRelative(-3.85f, 0.15f) + curveToRelative(-0.41f, 0.02f, -0.8f, 0.2f, -1.07f, 0.5f) + lineToRelative(-2.62f, 2.93f) + curveToRelative(-0.8f, 0.9f, -2.3f, 0.33f, -2.3f, -0.88f) + lineTo(8.5f, 9.5f) + close() + } + } + return _cursorClick!! + } + +private var _cursorClick: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CursorHover.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CursorHover.kt new file mode 100644 index 00000000..3fb33dfc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CursorHover.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CursorHover: ImageVector + get() { + if (_cursorHover != null) { + return _cursorHover!! + } + _cursorHover = fluentIcon(name = "Filled.CursorHover") { + fluentPath { + moveTo(4.5f, 4.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 2.0f, 6.5f) + verticalLineToRelative(9.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.5f, 18.0f) + lineTo(9.0f, 18.0f) + verticalLineToRelative(-7.25f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 2.78f, -1.41f) + lineToRelative(7.5f, 7.5f) + curveToRelative(0.38f, 0.27f, 0.62f, 0.68f, 0.7f, 1.11f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 22.0f, 15.5f) + verticalLineToRelative(-9.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 19.5f, 4.0f) + horizontalLineToRelative(-15.0f) + close() + moveTo(11.28f, 10.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.28f, 0.53f) + verticalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.37f, 0.42f) + lineToRelative(2.46f, -3.58f) + lineToRelative(4.27f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.68f, -1.27f) + lineToRelative(-7.5f, -7.5f) + close() + } + } + return _cursorHover!! + } + +private var _cursorHover: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CursorHoverOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CursorHoverOff.kt new file mode 100644 index 00000000..e59d28c2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/CursorHoverOff.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.CursorHoverOff: ImageVector + get() { + if (_cursorHoverOff != null) { + return _cursorHoverOff!! + } + _cursorHoverOff = fluentIcon(name = "Filled.CursorHoverOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.05f, 1.05f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 2.0f, 6.5f) + verticalLineToRelative(9.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.5f, 18.0f) + horizontalLineTo(9.0f) + verticalLineToRelative(-7.25f) + curveToRelative(0.0f, -0.2f, 0.04f, -0.4f, 0.1f, -0.59f) + lineToRelative(0.9f, 0.9f) + verticalLineToRelative(10.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.37f, 0.42f) + lineToRelative(2.46f, -3.58f) + lineToRelative(4.05f, 0.85f) + lineToRelative(2.84f, 2.84f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(7.18f, 4.0f) + lineToRelative(13.63f, 13.63f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 22.0f, 15.5f) + verticalLineToRelative(-9.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 19.5f, 4.0f) + horizontalLineTo(7.18f) + close() + } + } + return _cursorHoverOff!! + } + +private var _cursorHoverOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DarkTheme.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DarkTheme.kt new file mode 100644 index 00000000..db56df98 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DarkTheme.kt @@ -0,0 +1,30 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DarkTheme: ImageVector + get() { + if (_darkTheme != null) { + return _darkTheme!! + } + _darkTheme = fluentIcon(name = "Filled.DarkTheme") { + fluentPath { + moveTo(12.0f, 22.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) + close() + moveTo(12.0f, 20.0f) + lineTo(12.0f, 4.0f) + arcToRelative(8.0f, 8.0f, 0.0f, true, true, 0.0f, 16.0f) + close() + } + } + return _darkTheme!! + } + +private var _darkTheme: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataArea.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataArea.kt new file mode 100644 index 00000000..43bca816 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataArea.kt @@ -0,0 +1,41 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DataArea: ImageVector + get() { + if (_dataArea != null) { + return _dataArea!! + } + _dataArea = fluentIcon(name = "Filled.DataArea") { + fluentPath { + moveTo(3.0f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(4.5f, 19.5f) + horizontalLineToRelative(15.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(3.75f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(3.0f, 3.75f) + close() + moveTo(19.5f, 6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.2f, -0.6f) + lineToRelative(-5.6f, 4.2f) + lineTo(8.88f, 8.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.72f, -0.02f) + lineTo(5.5f, 9.4f) + verticalLineToRelative(9.09f) + horizontalLineToRelative(14.0f) + lineTo(19.5f, 6.75f) + close() + } + } + return _dataArea!! + } + +private var _dataArea: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataBarHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataBarHorizontal.kt new file mode 100644 index 00000000..e4183411 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataBarHorizontal.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DataBarHorizontal: ImageVector + get() { + if (_dataBarHorizontal != null) { + return _dataBarHorizontal!! + } + _dataBarHorizontal = fluentIcon(name = "Filled.DataBarHorizontal") { + fluentPath { + moveTo(21.0f, 18.25f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + lineTo(5.25f, 16.0f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, 4.5f) + horizontalLineToRelative(13.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + close() + moveTo(17.0f, 11.75f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-9.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, 4.5f) + horizontalLineToRelative(9.5f) + curveTo(16.0f, 14.0f, 17.0f, 13.0f, 17.0f, 11.75f) + close() + moveTo(13.0f, 5.25f) + curveTo(13.0f, 4.01f, 12.0f, 3.0f, 10.75f, 3.0f) + horizontalLineToRelative(-5.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) + horizontalLineToRelative(5.5f) + curveTo(12.0f, 7.5f, 13.0f, 6.5f, 13.0f, 5.25f) + close() + } + } + return _dataBarHorizontal!! + } + +private var _dataBarHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataBarVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataBarVertical.kt new file mode 100644 index 00000000..502a07d5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataBarVertical.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DataBarVertical: ImageVector + get() { + if (_dataBarVertical != null) { + return _dataBarVertical!! + } + _dataBarVertical = fluentIcon(name = "Filled.DataBarVertical") { + fluentPath { + moveTo(5.75f, 3.0f) + curveTo(6.99f, 3.0f, 8.0f, 4.0f, 8.0f, 5.25f) + verticalLineToRelative(13.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.5f, 0.0f) + lineTo(3.5f, 5.25f) + curveTo(3.5f, 4.0f, 4.5f, 3.0f, 5.75f, 3.0f) + close() + moveTo(12.25f, 7.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(9.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.5f, 0.0f) + verticalLineToRelative(-9.5f) + curveTo(10.0f, 8.0f, 11.0f, 7.0f, 12.25f, 7.0f) + close() + moveTo(18.75f, 11.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(5.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.5f, 0.0f) + verticalLineToRelative(-5.5f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + close() + } + } + return _dataBarVertical!! + } + +private var _dataBarVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataBarVerticalAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataBarVerticalAdd.kt new file mode 100644 index 00000000..23856f43 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataBarVerticalAdd.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DataBarVerticalAdd: ImageVector + get() { + if (_dataBarVerticalAdd != null) { + return _dataBarVerticalAdd!! + } + _dataBarVerticalAdd = fluentIcon(name = "Filled.DataBarVerticalAdd") { + fluentPath { + moveTo(18.25f, 3.0f) + curveTo(17.0f, 3.0f, 16.0f, 4.0f, 16.0f, 5.25f) + verticalLineToRelative(5.92f) + arcToRelative(6.47f, 6.47f, 0.0f, false, true, 4.5f, 0.56f) + lineTo(20.5f, 5.25f) + curveTo(20.5f, 4.0f, 19.5f, 3.0f, 18.25f, 3.0f) + close() + moveTo(14.0f, 9.25f) + verticalLineToRelative(2.77f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.0f, 20.98f) + lineToRelative(-0.26f, 0.02f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-9.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) + close() + moveTo(3.0f, 13.25f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) + verticalLineToRelative(5.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.5f, 0.0f) + verticalLineToRelative(-5.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _dataBarVerticalAdd!! + } + +private var _dataBarVerticalAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataBarVerticalStar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataBarVerticalStar.kt new file mode 100644 index 00000000..4fad2f34 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataBarVerticalStar.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DataBarVerticalStar: ImageVector + get() { + if (_dataBarVerticalStar != null) { + return _dataBarVerticalStar!! + } + _dataBarVerticalStar = fluentIcon(name = "Filled.DataBarVerticalStar") { + fluentPath { + moveTo(18.25f, 3.0f) + curveTo(17.01f, 3.0f, 16.0f, 4.0f, 16.0f, 5.25f) + verticalLineToRelative(5.92f) + arcToRelative(6.51f, 6.51f, 0.0f, false, true, 4.5f, 0.56f) + lineTo(20.5f, 5.25f) + curveTo(20.5f, 4.0f, 19.5f, 3.0f, 18.25f, 3.0f) + close() + moveTo(14.0f, 9.25f) + verticalLineToRelative(2.77f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.99f, 8.96f) + lineToRelative(-0.26f, 0.02f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-9.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) + close() + moveTo(3.0f, 13.25f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) + verticalLineToRelative(5.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.5f, 0.0f) + verticalLineToRelative(-5.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(18.06f, 14.42f) + arcToRelative(0.58f, 0.58f, 0.0f, false, false, -1.12f, 0.0f) + lineToRelative(-0.55f, 1.79f) + horizontalLineToRelative(-1.8f) + curveToRelative(-0.57f, 0.0f, -0.8f, 0.75f, -0.35f, 1.1f) + lineToRelative(1.46f, 1.1f) + lineToRelative(-0.56f, 1.79f) + curveToRelative(-0.17f, 0.56f, 0.44f, 1.03f, 0.9f, 0.68f) + lineToRelative(1.46f, -1.1f) + lineToRelative(1.46f, 1.1f) + curveToRelative(0.46f, 0.35f, 1.07f, -0.12f, 0.9f, -0.68f) + lineToRelative(-0.56f, -1.79f) + lineToRelative(1.46f, -1.1f) + curveToRelative(0.46f, -0.35f, 0.22f, -1.1f, -0.35f, -1.1f) + horizontalLineToRelative(-1.8f) + lineToRelative(-0.55f, -1.79f) + close() + } + } + return _dataBarVerticalStar!! + } + +private var _dataBarVerticalStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataFunnel.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataFunnel.kt new file mode 100644 index 00000000..88b9fcaa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataFunnel.kt @@ -0,0 +1,41 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DataFunnel: ImageVector + get() { + if (_dataFunnel != null) { + return _dataFunnel!! + } + _dataFunnel = fluentIcon(name = "Filled.DataFunnel") { + fluentPath { + moveTo(19.25f, 7.5f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 0.0f, -5.5f) + lineTo(4.75f, 2.0f) + arcToRelative(2.75f, 2.75f, 0.0f, true, false, 0.0f, 5.5f) + horizontalLineToRelative(14.5f) + close() + moveTo(17.25f, 14.5f) + arcToRelative(2.75f, 2.75f, 0.0f, true, false, 0.0f, -5.5f) + lineTo(6.75f, 9.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 0.0f, 5.5f) + horizontalLineToRelative(10.5f) + close() + moveTo(17.0f, 18.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 14.25f, 16.0f) + horizontalLineToRelative(-4.5f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 0.0f, 5.5f) + horizontalLineToRelative(4.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 17.0f, 18.75f) + close() + } + } + return _dataFunnel!! + } + +private var _dataFunnel: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataHistogram.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataHistogram.kt new file mode 100644 index 00000000..3f22aa86 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataHistogram.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DataHistogram: ImageVector + get() { + if (_dataHistogram != null) { + return _dataHistogram!! + } + _dataHistogram = fluentIcon(name = "Filled.DataHistogram") { + fluentPath { + moveTo(9.0f, 5.23f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(1.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + lineTo(15.0f, 21.0f) + lineTo(9.0f, 21.0f) + lineTo(9.0f, 5.23f) + close() + moveTo(7.5f, 10.0f) + lineTo(5.25f, 10.0f) + curveTo(4.01f, 10.0f, 3.0f, 11.0f, 3.0f, 12.25f) + verticalLineToRelative(8.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(7.5f, 21.0f) + lineTo(7.5f, 10.0f) + close() + moveTo(16.5f, 21.0f) + horizontalLineToRelative(3.75f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-11.0f) + curveTo(21.0f, 8.01f, 20.0f, 7.0f, 18.75f, 7.0f) + lineTo(16.5f, 7.0f) + verticalLineToRelative(14.0f) + close() + } + } + return _dataHistogram!! + } + +private var _dataHistogram: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataLine.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataLine.kt new file mode 100644 index 00000000..d41f9fa6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataLine.kt @@ -0,0 +1,35 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DataLine: ImageVector + get() { + if (_dataLine != null) { + return _dataLine!! + } + _dataLine = fluentIcon(name = "Filled.DataLine") { + fluentPath { + moveTo(16.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 2.52f, 2.96f) + lineToRelative(-2.03f, 3.36f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -4.75f, 3.65f) + lineTo(8.0f, 17.84f) + verticalLineTo(18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, -0.47f, -1.6f) + lineToRelative(3.54f, -1.77f) + arcTo(3.01f, 3.01f, 0.0f, false, true, 14.0f, 11.0f) + curveToRelative(0.48f, 0.0f, 0.94f, 0.11f, 1.34f, 0.32f) + lineToRelative(1.8f, -2.97f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 16.0f, 6.0f) + close() + } + } + return _dataLine!! + } + +private var _dataLine: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataPie.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataPie.kt new file mode 100644 index 00000000..9562ab45 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataPie.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DataPie: ImageVector + get() { + if (_dataPie != null) { + return _dataPie!! + } + _dataPie = fluentIcon(name = "Filled.DataPie") { + fluentPath { + moveTo(10.25f, 4.25f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(8.0f) + horizontalLineToRelative(8.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + curveToRelative(0.0f, 4.97f, -4.03f, 8.5f, -9.0f, 8.5f) + arcToRelative(9.0f, 9.0f, 0.0f, false, true, -9.0f, -9.0f) + curveToRelative(0.0f, -4.97f, 3.53f, -9.0f, 8.5f, -9.0f) + close() + moveTo(13.25f, 1.75f) + arcToRelative(9.0f, 9.0f, 0.0f, false, true, 9.0f, 9.0f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-8.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(12.5f, 2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _dataPie!! + } + +private var _dataPie: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataScatter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataScatter.kt new file mode 100644 index 00000000..c9446e37 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataScatter.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DataScatter: ImageVector + get() { + if (_dataScatter != null) { + return _dataScatter!! + } + _dataScatter = fluentIcon(name = "Filled.DataScatter") { + fluentPath { + moveTo(3.0f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(4.5f, 19.5f) + horizontalLineToRelative(15.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(3.75f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(3.0f, 3.75f) + close() + moveTo(14.0f, 7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.0f) + close() + moveTo(9.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + moveTo(15.0f, 12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + } + } + return _dataScatter!! + } + +private var _dataScatter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataSunburst.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataSunburst.kt new file mode 100644 index 00000000..39095799 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataSunburst.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DataSunburst: ImageVector + get() { + if (_dataSunburst != null) { + return _dataSunburst!! + } + _dataSunburst = fluentIcon(name = "Filled.DataSunburst") { + fluentPath { + moveTo(15.0f, 3.51f) + curveToRelative(0.0f, 0.32f, 0.2f, 0.6f, 0.5f, 0.74f) + arcToRelative(8.53f, 8.53f, 0.0f, false, true, 4.25f, 4.26f) + curveToRelative(0.13f, 0.29f, 0.42f, 0.5f, 0.74f, 0.5f) + curveToRelative(0.52f, 0.0f, 0.9f, -0.52f, 0.68f, -1.0f) + curveToRelative(-1.0f, -2.31f, -2.87f, -4.17f, -5.18f, -5.18f) + curveToRelative(-0.48f, -0.21f, -0.99f, 0.16f, -0.99f, 0.68f) + close() + moveTo(8.01f, 2.83f) + curveToRelative(0.48f, -0.21f, 0.99f, 0.16f, 0.99f, 0.68f) + curveToRelative(0.0f, 0.32f, -0.2f, 0.6f, -0.5f, 0.74f) + arcTo(8.53f, 8.53f, 0.0f, false, false, 4.26f, 8.5f) + curveToRelative(-0.13f, 0.29f, -0.42f, 0.5f, -0.74f, 0.5f) + curveToRelative(-0.52f, 0.0f, -0.9f, -0.52f, -0.68f, -1.0f) + curveTo(3.83f, 5.7f, 5.7f, 3.84f, 8.0f, 2.83f) + close() + moveTo(15.0f, 20.49f) + curveToRelative(0.0f, -0.32f, 0.2f, -0.6f, 0.5f, -0.74f) + arcToRelative(8.53f, 8.53f, 0.0f, false, false, 4.25f, -4.26f) + curveToRelative(0.13f, -0.29f, 0.42f, -0.49f, 0.74f, -0.49f) + curveToRelative(0.52f, 0.0f, 0.9f, 0.5f, 0.68f, 0.99f) + curveToRelative(-1.0f, 2.31f, -2.87f, 4.18f, -5.18f, 5.18f) + curveToRelative(-0.48f, 0.21f, -0.99f, -0.16f, -0.99f, -0.68f) + close() + moveTo(4.25f, 15.49f) + arcTo(0.82f, 0.82f, 0.0f, false, false, 3.5f, 15.0f) + curveToRelative(-0.52f, 0.0f, -0.9f, 0.5f, -0.68f, 0.99f) + curveToRelative(1.0f, 2.31f, 2.87f, 4.18f, 5.18f, 5.18f) + curveToRelative(0.48f, 0.21f, 0.99f, -0.16f, 0.99f, -0.68f) + curveToRelative(0.0f, -0.32f, -0.2f, -0.6f, -0.5f, -0.74f) + arcToRelative(8.53f, 8.53f, 0.0f, false, true, -4.25f, -4.26f) + close() + moveTo(12.0f, 6.5f) + curveToRelative(-0.2f, 0.0f, -0.38f, 0.01f, -0.57f, 0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.16f, -1.5f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, 7.55f, 5.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.46f, 0.35f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 12.0f, 6.5f) + close() + moveTo(9.12f, 6.4f) + curveToRelative(0.23f, 0.34f, 0.14f, 0.81f, -0.2f, 1.04f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -1.48f, 7.64f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.24f, 0.84f) + arcTo(6.97f, 6.97f, 0.0f, false, true, 8.08f, 6.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.04f, 0.2f) + close() + moveTo(18.23f, 12.9f) + curveToRelative(0.4f, 0.11f, 0.64f, 0.52f, 0.53f, 0.92f) + arcTo(7.0f, 7.0f, 0.0f, false, true, 8.75f, 18.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.7f, -1.33f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 7.86f, -3.44f) + curveToRelative(0.1f, -0.4f, 0.52f, -0.63f, 0.92f, -0.52f) + close() + moveTo(12.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) + close() + } + } + return _dataSunburst!! + } + +private var _dataSunburst: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataTreemap.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataTreemap.kt new file mode 100644 index 00000000..bde50636 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataTreemap.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DataTreemap: ImageVector + get() { + if (_dataTreemap != null) { + return _dataTreemap!! + } + _dataTreemap = fluentIcon(name = "Filled.DataTreemap") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineTo(9.0f) + verticalLineToRelative(18.0f) + horizontalLineTo(6.25f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + verticalLineTo(6.25f) + close() + moveTo(10.5f, 21.0f) + horizontalLineToRelative(7.25f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineTo(15.5f) + horizontalLineTo(10.5f) + verticalLineTo(21.0f) + close() + moveTo(21.0f, 14.0f) + verticalLineTo(6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + horizontalLineTo(10.5f) + verticalLineToRelative(11.0f) + horizontalLineTo(21.0f) + close() + } + } + return _dataTreemap!! + } + +private var _dataTreemap: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataTrending.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataTrending.kt new file mode 100644 index 00000000..1b7e7903 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataTrending.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DataTrending: ImageVector + get() { + if (_dataTrending != null) { + return _dataTrending!! + } + _dataTrending = fluentIcon(name = "Filled.DataTrending") { + fluentPath { + moveTo(5.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) + verticalLineToRelative(13.5f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 6.5f, 21.0f) + lineTo(20.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(6.5f, 19.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 5.0f, 17.5f) + lineTo(5.0f, 4.0f) + close() + moveTo(15.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(2.09f) + lineToRelative(-3.84f, 3.84f) + lineToRelative(-1.8f, -1.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) + lineTo(6.78f, 13.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.42f, 1.42f) + lineToRelative(2.54f, -2.55f) + lineToRelative(1.8f, 1.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) + lineTo(18.5f, 9.4f) + verticalLineToRelative(2.09f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(20.5f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(15.0f, 6.0f) + close() + } + } + return _dataTrending!! + } + +private var _dataTrending: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataUsage.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataUsage.kt new file mode 100644 index 00000000..bee48c30 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataUsage.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DataUsage: ImageVector + get() { + if (_dataUsage != null) { + return _dataUsage!! + } + _dataUsage = fluentIcon(name = "Filled.DataUsage") { + fluentPath { + moveTo(18.25f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) + lineTo(5.75f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(12.5f) + close() + moveTo(7.75f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-6.5f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 7.75f, 9.0f) + close() + moveTo(16.25f, 7.0f) + arcToRelative(0.74f, 0.74f, 0.0f, false, false, -0.75f, 0.73f) + verticalLineToRelative(8.54f) + curveToRelative(0.0f, 0.4f, 0.34f, 0.73f, 0.75f, 0.73f) + reflectiveCurveToRelative(0.75f, -0.33f, 0.75f, -0.73f) + lineTo(17.0f, 7.73f) + curveToRelative(0.0f, -0.4f, -0.34f, -0.73f, -0.75f, -0.73f) + close() + moveTo(11.98f, 12.0f) + curveToRelative(-0.4f, 0.0f, -0.73f, 0.33f, -0.73f, 0.73f) + lineToRelative(0.04f, 3.55f) + curveToRelative(0.0f, 0.4f, 0.33f, 0.72f, 0.73f, 0.72f) + curveToRelative(0.4f, 0.0f, 0.73f, -0.34f, 0.73f, -0.74f) + lineToRelative(-0.04f, -3.54f) + curveToRelative(0.0f, -0.4f, -0.33f, -0.73f, -0.73f, -0.72f) + close() + } + } + return _dataUsage!! + } + +private var _dataUsage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataUsageEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataUsageEdit.kt new file mode 100644 index 00000000..54e6d050 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataUsageEdit.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DataUsageEdit: ImageVector + get() { + if (_dataUsageEdit != null) { + return _dataUsageEdit!! + } + _dataUsageEdit = fluentIcon(name = "Filled.DataUsageEdit") { + fluentPath { + moveTo(20.0f, 4.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 17.25f, 2.0f) + lineTo(4.75f, 2.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 4.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 20.0f) + horizontalLineToRelative(6.67f) + lineToRelative(0.1f, -0.42f) + curveToRelative(0.16f, -0.65f, 0.5f, -1.24f, 0.97f, -1.72f) + lineToRelative(2.16f, -2.15f) + arcToRelative(0.71f, 0.71f, 0.0f, false, true, -0.15f, -0.44f) + lineTo(14.5f, 6.73f) + curveToRelative(0.0f, -0.4f, 0.34f, -0.73f, 0.75f, -0.73f) + reflectiveCurveToRelative(0.75f, 0.33f, 0.75f, 0.73f) + verticalLineToRelative(7.62f) + lineToRelative(2.4f, -2.39f) + arcToRelative(3.27f, 3.27f, 0.0f, false, true, 1.6f, -0.88f) + lineTo(20.0f, 4.75f) + close() + moveTo(6.0f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-6.5f) + close() + moveTo(10.25f, 11.73f) + curveToRelative(0.0f, -0.4f, 0.32f, -0.73f, 0.73f, -0.73f) + curveToRelative(0.4f, 0.0f, 0.73f, 0.31f, 0.73f, 0.72f) + lineToRelative(0.04f, 3.54f) + curveToRelative(0.0f, 0.4f, -0.32f, 0.73f, -0.73f, 0.74f) + arcToRelative(0.73f, 0.73f, 0.0f, false, true, -0.73f, -0.72f) + lineToRelative(-0.04f, -3.55f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _dataUsageEdit!! + } + +private var _dataUsageEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataUsageToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataUsageToolbox.kt new file mode 100644 index 00000000..388bb7de --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataUsageToolbox.kt @@ -0,0 +1,100 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DataUsageToolbox: ImageVector + get() { + if (_dataUsageToolbox != null) { + return _dataUsageToolbox!! + } + _dataUsageToolbox = fluentIcon(name = "Filled.DataUsageToolbox") { + fluentPath { + moveTo(17.25f, 2.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 20.0f, 4.75f) + verticalLineToRelative(6.6f) + curveToRelative(-0.24f, -0.06f, -0.49f, -0.1f, -0.75f, -0.1f) + lineTo(16.0f, 11.25f) + lineTo(16.0f, 6.73f) + curveToRelative(0.0f, -0.4f, -0.34f, -0.73f, -0.75f, -0.73f) + arcToRelative(0.74f, 0.74f, 0.0f, false, false, -0.75f, 0.73f) + verticalLineToRelative(4.82f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 13.0f, 14.0f) + verticalLineToRelative(0.05f) + curveToRelative(-0.48f, 0.1f, -0.92f, 0.34f, -1.26f, 0.67f) + lineToRelative(-0.03f, -3.0f) + arcToRelative(0.73f, 0.73f, 0.0f, false, false, -1.46f, 0.01f) + lineToRelative(0.04f, 3.55f) + curveToRelative(0.0f, 0.4f, 0.33f, 0.72f, 0.73f, 0.72f) + horizontalLineToRelative(0.03f) + curveToRelative(-0.03f, 0.16f, -0.05f, 0.33f, -0.05f, 0.5f) + lineTo(11.0f, 20.0f) + lineTo(4.75f, 20.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) + lineTo(2.0f, 4.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 2.0f) + horizontalLineToRelative(12.5f) + close() + moveTo(6.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-6.5f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 6.75f, 8.0f) + close() + moveTo(14.0f, 15.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + lineTo(12.0f, 18.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(16.0f, 18.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(20.5f, 18.0f) + lineTo(23.0f, 18.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(21.0f, 15.0f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(1.0f) + close() + moveTo(15.5f, 14.0f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(12.0f, 21.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + lineTo(23.0f, 19.5f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + close() + } + } + return _dataUsageToolbox!! + } + +private var _dataUsageToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataWaterfall.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataWaterfall.kt new file mode 100644 index 00000000..eba4edb7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataWaterfall.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DataWaterfall: ImageVector + get() { + if (_dataWaterfall != null) { + return _dataWaterfall!! + } + _dataWaterfall = fluentIcon(name = "Filled.DataWaterfall") { + fluentPath { + moveTo(2.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineTo(4.0f) + verticalLineToRelative(5.75f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(6.25f) + verticalLineToRelative(6.25f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(20.0f) + verticalLineToRelative(-6.25f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineTo(11.5f) + verticalLineTo(5.25f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-6.5f) + close() + } + } + return _dataWaterfall!! + } + +private var _dataWaterfall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataWhisker.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataWhisker.kt new file mode 100644 index 00000000..774ae821 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DataWhisker.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DataWhisker: ImageVector + get() { + if (_dataWhisker != null) { + return _dataWhisker!! + } + _dataWhisker = fluentIcon(name = "Filled.DataWhisker") { + fluentPath { + moveTo(5.75f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.0f) + lineTo(6.75f, 5.0f) + horizontalLineToRelative(-0.5f) + curveTo(5.01f, 5.0f, 4.0f, 6.0f, 4.0f, 7.25f) + lineTo(4.0f, 11.0f) + horizontalLineToRelative(7.0f) + lineTo(11.0f, 7.25f) + curveTo(11.0f, 6.01f, 10.0f, 5.0f, 8.75f, 5.0f) + horizontalLineToRelative(-0.5f) + lineTo(8.25f, 3.5f) + horizontalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + close() + moveTo(5.75f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(0.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(11.0f, 12.5f) + lineTo(4.0f, 12.5f) + verticalLineToRelative(1.75f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(0.5f) + lineTo(6.75f, 18.0f) + horizontalLineToRelative(-1.0f) + close() + moveTo(14.0f, 4.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.0f) + lineTo(17.25f, 7.0f) + horizontalLineToRelative(0.5f) + curveTo(18.99f, 7.0f, 20.0f, 8.0f, 20.0f, 9.25f) + lineTo(20.0f, 11.0f) + horizontalLineToRelative(-7.0f) + lineTo(13.0f, 9.25f) + curveTo(13.0f, 8.01f, 14.0f, 7.0f, 15.25f, 7.0f) + horizontalLineToRelative(0.5f) + lineTo(15.75f, 5.5f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(13.0f, 16.25f) + lineTo(13.0f, 12.5f) + horizontalLineToRelative(7.0f) + verticalLineToRelative(3.75f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-0.5f) + lineTo(17.25f, 20.0f) + horizontalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(-0.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + close() + } + } + return _dataWhisker!! + } + +private var _dataWhisker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Database.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Database.kt new file mode 100644 index 00000000..57d23acc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Database.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Database: ImageVector + get() { + if (_database != null) { + return _database!! + } + _database = fluentIcon(name = "Filled.Database") { + fluentPath { + moveTo(12.0f, 10.0f) + curveToRelative(4.42f, 0.0f, 8.0f, -1.8f, 8.0f, -4.0f) + reflectiveCurveToRelative(-3.58f, -4.0f, -8.0f, -4.0f) + reflectiveCurveToRelative(-8.0f, 1.8f, -8.0f, 4.0f) + reflectiveCurveToRelative(3.58f, 4.0f, 8.0f, 4.0f) + close() + moveTo(18.33f, 10.17f) + curveToRelative(0.59f, -0.3f, 1.17f, -0.67f, 1.67f, -1.12f) + lineTo(20.0f, 18.0f) + curveToRelative(0.0f, 2.2f, -3.58f, 4.0f, -8.0f, 4.0f) + reflectiveCurveToRelative(-8.0f, -1.8f, -8.0f, -4.0f) + lineTo(4.0f, 9.05f) + curveToRelative(0.5f, 0.45f, 1.08f, 0.83f, 1.67f, 1.12f) + curveToRelative(1.7f, 0.85f, 3.94f, 1.33f, 6.33f, 1.33f) + curveToRelative(2.4f, 0.0f, 4.63f, -0.48f, 6.33f, -1.33f) + close() + } + } + return _database!! + } + +private var _database: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DatabaseArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DatabaseArrowRight.kt new file mode 100644 index 00000000..c9509370 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DatabaseArrowRight.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DatabaseArrowRight: ImageVector + get() { + if (_databaseArrowRight != null) { + return _databaseArrowRight!! + } + _databaseArrowRight = fluentIcon(name = "Filled.DatabaseArrowRight") { + fluentPath { + moveTo(12.0f, 10.0f) + curveToRelative(4.42f, 0.0f, 8.0f, -1.8f, 8.0f, -4.0f) + reflectiveCurveToRelative(-3.58f, -4.0f, -8.0f, -4.0f) + reflectiveCurveToRelative(-8.0f, 1.8f, -8.0f, 4.0f) + reflectiveCurveToRelative(3.58f, 4.0f, 8.0f, 4.0f) + close() + moveTo(18.33f, 10.17f) + curveToRelative(0.59f, -0.3f, 1.17f, -0.67f, 1.67f, -1.12f) + verticalLineToRelative(2.45f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -7.2f, 10.48f) + lineTo(12.0f, 22.0f) + curveToRelative(-4.42f, 0.0f, -8.0f, -1.8f, -8.0f, -4.0f) + lineTo(4.0f, 9.05f) + curveToRelative(0.5f, 0.45f, 1.08f, 0.83f, 1.67f, 1.12f) + curveToRelative(1.7f, 0.85f, 3.94f, 1.33f, 6.33f, 1.33f) + curveToRelative(2.4f, 0.0f, 4.63f, -0.48f, 6.33f, -1.33f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(14.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(19.29f, 17.0f) + lineTo(14.5f, 17.0f) + close() + } + } + return _databaseArrowRight!! + } + +private var _databaseArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DatabaseLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DatabaseLink.kt new file mode 100644 index 00000000..f1ce49df --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DatabaseLink.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DatabaseLink: ImageVector + get() { + if (_databaseLink != null) { + return _databaseLink!! + } + _databaseLink = fluentIcon(name = "Filled.DatabaseLink") { + fluentPath { + moveTo(12.0f, 10.0f) + curveToRelative(4.42f, 0.0f, 8.0f, -1.8f, 8.0f, -4.0f) + reflectiveCurveToRelative(-3.58f, -4.0f, -8.0f, -4.0f) + reflectiveCurveToRelative(-8.0f, 1.8f, -8.0f, 4.0f) + reflectiveCurveToRelative(3.58f, 4.0f, 8.0f, 4.0f) + close() + moveTo(18.33f, 10.17f) + curveToRelative(0.59f, -0.3f, 1.17f, -0.67f, 1.67f, -1.12f) + verticalLineToRelative(4.0f) + curveToRelative(-0.24f, -0.03f, -0.5f, -0.05f, -0.75f, -0.05f) + horizontalLineToRelative(-3.5f) + arcToRelative(4.75f, 4.75f, 0.0f, false, false, -2.26f, 8.93f) + curveToRelative(-0.48f, 0.05f, -0.98f, 0.07f, -1.49f, 0.07f) + curveToRelative(-4.42f, 0.0f, -8.0f, -1.8f, -8.0f, -4.0f) + lineTo(4.0f, 9.05f) + curveToRelative(0.5f, 0.45f, 1.08f, 0.83f, 1.67f, 1.12f) + curveToRelative(1.7f, 0.85f, 3.94f, 1.33f, 6.33f, 1.33f) + curveToRelative(2.4f, 0.0f, 4.63f, -0.48f, 6.33f, -1.33f) + close() + moveTo(23.0f, 17.75f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 19.25f, 14.0f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + verticalLineToRelative(-0.01f) + horizontalLineToRelative(0.2f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 17.74f) + close() + moveTo(16.5f, 14.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-0.2f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(20.0f, 17.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + } + } + return _databaseLink!! + } + +private var _databaseLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DatabasePerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DatabasePerson.kt new file mode 100644 index 00000000..28bb6800 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DatabasePerson.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DatabasePerson: ImageVector + get() { + if (_databasePerson != null) { + return _databasePerson!! + } + _databasePerson = fluentIcon(name = "Filled.DatabasePerson") { + fluentPath { + moveTo(20.0f, 6.5f) + curveToRelative(0.0f, 2.2f, -3.58f, 4.0f, -8.0f, 4.0f) + reflectiveCurveToRelative(-8.0f, -1.8f, -8.0f, -4.0f) + reflectiveCurveToRelative(3.58f, -4.0f, 8.0f, -4.0f) + reflectiveCurveToRelative(8.0f, 1.8f, 8.0f, 4.0f) + close() + moveTo(17.77f, 10.93f) + arcTo(15.0f, 15.0f, 0.0f, false, true, 12.0f, 12.0f) + curveToRelative(-2.4f, 0.0f, -4.63f, -0.48f, -6.33f, -1.33f) + arcTo(7.61f, 7.61f, 0.0f, false, true, 4.0f, 9.55f) + verticalLineToRelative(8.95f) + curveToRelative(0.0f, 2.2f, 3.58f, 4.0f, 8.0f, 4.0f) + curveToRelative(0.55f, 0.0f, 1.09f, -0.03f, 1.61f, -0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, false, true, -0.61f, -2.05f) + verticalLineToRelative(-0.1f) + arcToRelative(2.77f, 2.77f, 0.0f, false, true, 2.77f, -2.77f) + horizontalLineToRelative(0.28f) + arcToRelative(3.49f, 3.49f, 0.0f, false, true, 0.88f, -5.63f) + curveToRelative(0.4f, -0.2f, 0.73f, -0.52f, 0.84f, -0.94f) + close() + moveTo(21.0f, 15.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(23.0f, 20.38f) + curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) + reflectiveCurveTo(14.0f, 21.94f, 14.0f, 20.37f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _databasePerson!! + } + +private var _databasePerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DatabaseSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DatabaseSearch.kt new file mode 100644 index 00000000..63ccd5fe --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DatabaseSearch.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DatabaseSearch: ImageVector + get() { + if (_databaseSearch != null) { + return _databaseSearch!! + } + _databaseSearch = fluentIcon(name = "Filled.DatabaseSearch") { + fluentPath { + moveTo(12.0f, 10.0f) + curveToRelative(4.42f, 0.0f, 8.0f, -1.8f, 8.0f, -4.0f) + reflectiveCurveToRelative(-3.58f, -4.0f, -8.0f, -4.0f) + reflectiveCurveToRelative(-8.0f, 1.8f, -8.0f, 4.0f) + reflectiveCurveToRelative(3.58f, 4.0f, 8.0f, 4.0f) + close() + moveTo(18.33f, 10.17f) + curveToRelative(0.59f, -0.3f, 1.17f, -0.67f, 1.67f, -1.12f) + verticalLineToRelative(3.2f) + arcToRelative(5.48f, 5.48f, 0.0f, false, false, -4.02f, -1.23f) + curveToRelative(0.86f, -0.21f, 1.65f, -0.5f, 2.35f, -0.85f) + close() + moveTo(11.0f, 16.5f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 3.83f, 5.24f) + curveToRelative(-0.88f, 0.17f, -1.83f, 0.26f, -2.83f, 0.26f) + curveToRelative(-4.42f, 0.0f, -8.0f, -1.8f, -8.0f, -4.0f) + lineTo(4.0f, 9.05f) + curveToRelative(0.5f, 0.45f, 1.08f, 0.83f, 1.67f, 1.12f) + curveToRelative(1.7f, 0.85f, 3.94f, 1.33f, 6.33f, 1.33f) + curveToRelative(0.96f, 0.0f, 1.9f, -0.08f, 2.78f, -0.22f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 11.0f, 16.5f) + close() + moveTo(16.5f, 21.0f) + curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) + lineToRelative(2.62f, 2.61f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.61f, -2.61f) + arcTo(4.5f, 4.5f, 0.0f, true, false, 16.5f, 21.0f) + close() + moveTo(16.5f, 19.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) + close() + } + } + return _databaseSearch!! + } + +private var _databaseSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DecimalArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DecimalArrowLeft.kt new file mode 100644 index 00000000..a79bd26c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DecimalArrowLeft.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DecimalArrowLeft: ImageVector + get() { + if (_decimalArrowLeft != null) { + return _decimalArrowLeft!! + } + _decimalArrowLeft = fluentIcon(name = "Filled.DecimalArrowLeft") { + fluentPath { + moveTo(10.0f, 4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 6.0f, 0.0f) + lineTo(13.0f, 7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + close() + moveTo(11.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(9.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + verticalLineToRelative(4.0f) + close() + moveTo(5.0f, 12.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + moveTo(19.0f, 7.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.01f, 0.17f) + curveToRelative(0.66f, 0.16f, 1.3f, 0.42f, 1.86f, 0.76f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 21.0f, 11.0f) + lineTo(21.0f, 7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, -6.0f, 0.0f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.16f, 0.01f, 0.33f, 0.04f, 0.48f) + arcToRelative(6.47f, 6.47f, 0.0f, false, true, 1.96f, -0.46f) + lineTo(17.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.5f, 18.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + horizontalLineToRelative(-4.8f) + lineToRelative(1.65f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineTo(15.71f, 18.0f) + horizontalLineToRelative(4.79f) + close() + } + } + return _decimalArrowLeft!! + } + +private var _decimalArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DecimalArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DecimalArrowRight.kt new file mode 100644 index 00000000..e6ad7f91 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DecimalArrowRight.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DecimalArrowRight: ImageVector + get() { + if (_decimalArrowRight != null) { + return _decimalArrowRight!! + } + _decimalArrowRight = fluentIcon(name = "Filled.DecimalArrowRight") { + fluentPath { + moveTo(10.0f, 4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 6.0f, 0.0f) + lineTo(13.0f, 7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + close() + moveTo(11.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(9.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + verticalLineToRelative(4.0f) + close() + moveTo(5.0f, 12.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + moveTo(19.0f, 7.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.01f, 0.17f) + curveToRelative(0.66f, 0.16f, 1.3f, 0.42f, 1.86f, 0.76f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 21.0f, 11.0f) + lineTo(21.0f, 7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, -6.0f, 0.0f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.16f, 0.01f, 0.33f, 0.04f, 0.48f) + arcToRelative(6.47f, 6.47f, 0.0f, false, true, 1.96f, -0.46f) + lineTo(17.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(19.29f, 17.0f) + lineTo(14.5f, 17.0f) + close() + } + } + return _decimalArrowRight!! + } + +private var _decimalArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DeleteDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DeleteDismiss.kt new file mode 100644 index 00000000..1b73b0c2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DeleteDismiss.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DeleteDismiss: ImageVector + get() { + if (_deleteDismiss != null) { + return _deleteDismiss!! + } + _deleteDismiss = fluentIcon(name = "Filled.DeleteDismiss") { + fluentPath { + moveTo(14.0f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, -4.0f, 0.0f) + horizontalLineToRelative(4.0f) + close() + moveTo(8.5f, 5.0f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 7.0f, 0.0f) + horizontalLineToRelative(5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.32f) + lineToRelative(-0.5f, 5.2f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 11.8f, 22.0f) + lineTo(8.97f, 22.0f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.73f, -3.39f) + lineTo(4.07f, 6.5f) + lineTo(2.75f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(8.5f, 5.0f) + close() + moveTo(22.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-1.64f, -1.65f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.65f, 1.64f) + lineToRelative(-1.65f, -1.64f) + close() + } + } + return _deleteDismiss!! + } + +private var _deleteDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DeleteOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DeleteOff.kt new file mode 100644 index 00000000..d4f2bdd9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DeleteOff.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DeleteOff: ImageVector + get() { + if (_deleteOff != null) { + return _deleteOff!! + } + _deleteOff = fluentIcon(name = "Filled.DeleteOff") { + fluentPath { + moveTo(3.94f, 5.0f) + lineTo(2.22f, 3.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(18.5f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineToRelative(-2.2f, -2.19f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.5f, 2.41f) + lineTo(8.98f, 22.0f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.73f, -3.39f) + lineTo(4.07f, 6.5f) + lineTo(2.75f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.19f) + close() + moveTo(15.0f, 16.06f) + lineToRelative(-1.5f, -1.5f) + verticalLineToRelative(2.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.19f) + close() + moveTo(10.5f, 11.56f) + lineTo(9.0f, 10.06f) + verticalLineToRelative(7.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-5.69f) + close() + moveTo(15.0f, 9.75f) + verticalLineToRelative(2.07f) + lineToRelative(4.03f, 4.03f) + lineToRelative(0.9f, -9.35f) + horizontalLineToRelative(1.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(15.5f, 5.0f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, -7.0f, 0.0f) + horizontalLineToRelative(-0.32f) + lineToRelative(5.32f, 5.32f) + verticalLineToRelative(-0.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(14.0f, 5.0f) + horizontalLineToRelative(-4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) + close() + } + } + return _deleteOff!! + } + +private var _deleteOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Dentist.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Dentist.kt new file mode 100644 index 00000000..3416c5de --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Dentist.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Dentist: ImageVector + get() { + if (_dentist != null) { + return _dentist!! + } + _dentist = fluentIcon(name = "Filled.Dentist") { + fluentPath { + moveTo(4.35f, 4.39f) + curveToRelative(1.0f, -0.84f, 2.3f, -1.39f, 3.4f, -1.39f) + curveToRelative(0.87f, 0.0f, 1.55f, 0.14f, 2.1f, 0.37f) + curveToRelative(0.57f, 0.23f, 0.96f, 0.55f, 1.26f, 0.84f) + lineToRelative(0.35f, 0.37f) + lineToRelative(0.03f, 0.03f) + curveToRelative(0.1f, 0.12f, 0.19f, 0.2f, 0.26f, 0.27f) + curveToRelative(0.12f, 0.1f, 0.18f, 0.12f, 0.25f, 0.12f) + reflectiveCurveToRelative(0.13f, -0.01f, 0.25f, -0.12f) + lineToRelative(0.26f, -0.27f) + lineToRelative(0.03f, -0.03f) + lineToRelative(0.35f, -0.37f) + curveToRelative(0.3f, -0.3f, 0.7f, -0.6f, 1.25f, -0.84f) + arcTo(5.4f, 5.4f, 0.0f, false, true, 16.25f, 3.0f) + curveToRelative(1.1f, 0.0f, 2.4f, 0.55f, 3.4f, 1.39f) + curveToRelative(1.0f, 0.84f, 1.85f, 2.08f, 1.85f, 3.56f) + curveToRelative(0.0f, 0.78f, 0.0f, 2.3f, -1.37f, 3.94f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -0.63f, 1.86f) + arcToRelative(10.02f, 10.02f, 0.0f, false, true, -1.08f, 4.73f) + curveToRelative(-0.62f, 1.12f, -1.56f, 2.02f, -2.67f, 2.02f) + curveToRelative(-0.36f, 0.0f, -0.7f, -0.1f, -0.98f, -0.31f) + arcToRelative(1.9f, 1.9f, 0.0f, false, true, -0.58f, -0.74f) + arcToRelative(6.13f, 6.13f, 0.0f, false, true, -0.41f, -1.8f) + lineToRelative(-0.09f, -0.8f) + curveToRelative(-0.11f, -1.11f, -0.23f, -2.26f, -0.63f, -3.3f) + curveToRelative(-0.18f, -0.35f, -0.5f, -0.55f, -0.81f, -0.55f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.31f, 0.0f, -0.64f, 0.2f, -0.83f, 0.58f) + arcToRelative(9.08f, 9.08f, 0.0f, false, false, -0.67f, 3.56f) + lineToRelative(-0.03f, 0.47f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, -0.33f, 1.83f) + curveToRelative(-0.13f, 0.28f, -0.32f, 0.56f, -0.62f, 0.77f) + curveToRelative(-0.3f, 0.2f, -0.65f, 0.29f, -1.02f, 0.29f) + curveToRelative(-1.24f, 0.0f, -2.19f, -0.87f, -2.79f, -2.04f) + arcToRelative(10.6f, 10.6f, 0.0f, false, true, -0.96f, -4.7f) + arcToRelative(3.62f, 3.62f, 0.0f, false, false, -0.79f, -2.05f) + curveTo(2.5f, 10.27f, 2.5f, 8.68f, 2.5f, 7.97f) + verticalLineToRelative(-0.02f) + curveToRelative(0.0f, -1.48f, 0.85f, -2.72f, 1.85f, -3.56f) + close() + moveTo(15.75f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + curveToRelative(0.71f, 0.0f, 1.25f, 0.54f, 1.25f, 1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + curveTo(18.5f, 7.21f, 17.3f, 6.0f, 15.75f, 6.0f) + close() + } + } + return _dentist!! + } + +private var _dentist: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesignIdeas.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesignIdeas.kt new file mode 100644 index 00000000..cebac69c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesignIdeas.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DesignIdeas: ImageVector + get() { + if (_designIdeas != null) { + return _designIdeas!! + } + _designIdeas = fluentIcon(name = "Filled.DesignIdeas") { + fluentPath { + moveTo(5.57f, 2.07f) + curveToRelative(0.26f, 0.13f, 0.43f, 0.4f, 0.43f, 0.68f) + curveToRelative(0.0f, 0.83f, 0.31f, 1.3f, 0.7f, 1.89f) + lineToRelative(0.03f, 0.04f) + curveToRelative(0.33f, 0.5f, 0.77f, 1.14f, 0.77f, 2.07f) + curveToRelative(0.0f, 0.95f, -0.48f, 1.78f, -1.2f, 2.27f) + curveToRelative(0.19f, 0.16f, 0.36f, 0.36f, 0.5f, 0.6f) + curveToRelative(0.48f, 0.77f, 0.7f, 1.94f, 0.7f, 3.63f) + curveToRelative(0.0f, 1.72f, -0.23f, 3.77f, -0.6f, 5.41f) + curveToRelative(-0.2f, 0.82f, -0.42f, 1.57f, -0.7f, 2.14f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.5f, 0.77f) + curveToRelative(-0.21f, 0.21f, -0.53f, 0.43f, -0.95f, 0.43f) + curveToRelative(-0.42f, 0.0f, -0.74f, -0.22f, -0.94f, -0.43f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.51f, -0.77f) + curveToRelative(-0.28f, -0.57f, -0.5f, -1.32f, -0.7f, -2.14f) + curveToRelative(-0.37f, -1.64f, -0.6f, -3.7f, -0.6f, -5.4f) + curveToRelative(0.0f, -1.7f, 0.22f, -2.87f, 0.7f, -3.64f) + curveToRelative(0.14f, -0.24f, 0.31f, -0.44f, 0.5f, -0.6f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 6.75f) + curveToRelative(0.0f, -0.37f, 0.0f, -1.0f, 0.38f, -1.82f) + arcToRelative(8.1f, 8.1f, 0.0f, false, true, 2.4f, -2.77f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.8f, -0.09f) + close() + moveTo(10.0f, 14.92f) + arcToRelative(5.96f, 5.96f, 0.0f, false, true, -1.53f, -0.48f) + arcToRelative(23.1f, 23.1f, 0.0f, false, false, 0.0f, -2.35f) + curveToRelative(0.43f, 0.37f, 0.96f, 0.64f, 1.53f, 0.78f) + lineTo(10.0f, 10.5f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + lineTo(15.0f, 9.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.58f, -3.05f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, -0.84f, -1.8f) + lineToRelative(-0.04f, -0.05f) + arcTo(6.0f, 6.0f, 0.0f, false, true, 17.0f, 9.0f) + horizontalLineToRelative(3.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-9.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + verticalLineToRelative(-4.58f) + close() + moveTo(12.0f, 14.92f) + lineTo(12.0f, 19.0f) + horizontalLineToRelative(8.0f) + verticalLineToRelative(-8.0f) + horizontalLineToRelative(-3.34f) + arcTo(6.0f, 6.0f, 0.0f, false, true, 12.0f, 14.92f) + close() + moveTo(14.46f, 11.0f) + lineTo(12.0f, 11.0f) + verticalLineToRelative(1.87f) + arcTo(4.0f, 4.0f, 0.0f, false, false, 14.46f, 11.0f) + close() + } + } + return _designIdeas!! + } + +private var _designIdeas: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Desktop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Desktop.kt new file mode 100644 index 00000000..82d853a4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Desktop.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Desktop: ImageVector + get() { + if (_desktop != null) { + return _desktop!! + } + _desktop = fluentIcon(name = "Filled.Desktop") { + fluentPath { + moveTo(6.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineTo(8.5f) + verticalLineTo(18.0f) + horizontalLineTo(4.25f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) + lineTo(2.0f, 15.76f) + verticalLineTo(5.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 3.0f) + horizontalLineToRelative(15.5f) + curveToRelative(1.19f, 0.0f, 2.16f, 0.93f, 2.24f, 2.1f) + verticalLineToRelative(10.65f) + curveToRelative(0.0f, 1.2f, -0.92f, 2.17f, -2.09f, 2.25f) + horizontalLineToRelative(-4.4f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineTo(6.75f) + close() + moveTo(14.0f, 18.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(4.0f) + verticalLineTo(18.0f) + close() + } + } + return _desktop!! + } + +private var _desktop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopArrowRight.kt new file mode 100644 index 00000000..9c102fc6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopArrowRight.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DesktopArrowRight: ImageVector + get() { + if (_desktopArrowRight != null) { + return _desktopArrowRight!! + } + _desktopArrowRight = fluentIcon(name = "Filled.DesktopArrowRight") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.5f, 6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(19.29f, 6.0f) + lineTo(14.5f, 6.0f) + close() + moveTo(17.5f, 13.0f) + curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.8f) + verticalLineToRelative(4.55f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.25f) + horizontalLineToRelative(-4.4f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(8.5f, 20.5f) + lineTo(8.5f, 18.0f) + lineTo(4.25f, 18.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) + lineTo(2.0f, 15.76f) + lineTo(2.0f, 5.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.25f) + horizontalLineToRelative(7.92f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, 5.48f, 10.0f) + close() + moveTo(14.0f, 18.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(4.0f) + lineTo(14.0f, 18.0f) + close() + } + } + return _desktopArrowRight!! + } + +private var _desktopArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopCheckmark.kt new file mode 100644 index 00000000..ab647598 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopCheckmark.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DesktopCheckmark: ImageVector + get() { + if (_desktopCheckmark != null) { + return _desktopCheckmark!! + } + _desktopCheckmark = fluentIcon(name = "Filled.DesktopCheckmark") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.85f, 4.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineTo(16.5f, 7.79f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + moveTo(17.5f, 13.0f) + curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.8f) + verticalLineToRelative(4.55f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.25f) + horizontalLineToRelative(-4.4f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(8.5f, 20.5f) + lineTo(8.5f, 18.0f) + lineTo(4.25f, 18.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) + lineTo(2.0f, 15.76f) + lineTo(2.0f, 5.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.25f) + horizontalLineToRelative(7.92f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, 5.48f, 10.0f) + close() + moveTo(14.0f, 18.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(4.0f) + lineTo(14.0f, 18.0f) + close() + } + } + return _desktopCheckmark!! + } + +private var _desktopCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopCursor.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopCursor.kt new file mode 100644 index 00000000..ca5eda54 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopCursor.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DesktopCursor: ImageVector + get() { + if (_desktopCursor != null) { + return _desktopCursor!! + } + _desktopCursor = fluentIcon(name = "Filled.DesktopCursor") { + fluentPath { + moveTo(6.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(8.5f, 20.5f) + lineTo(8.5f, 18.0f) + lineTo(4.25f, 18.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) + lineTo(2.0f, 15.76f) + lineTo(2.0f, 5.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 3.0f) + horizontalLineToRelative(15.5f) + curveToRelative(1.19f, 0.0f, 2.16f, 0.93f, 2.24f, 2.1f) + verticalLineToRelative(10.65f) + curveToRelative(0.0f, 0.37f, -0.08f, 0.72f, -0.24f, 1.03f) + lineToRelative(-4.7f, -5.2f) + arcTo(1.75f, 1.75f, 0.0f, false, false, 14.0f, 12.75f) + lineTo(14.0f, 18.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(4.0f) + lineTo(14.0f, 22.0f) + lineTo(6.75f, 22.0f) + close() + moveTo(15.49f, 12.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.82f, 0.2f) + lineToRelative(6.37f, 7.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 1.23f) + lineToRelative(-3.54f, -0.88f) + lineToRelative(-2.03f, 3.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.37f, -0.42f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.31f, 0.2f, -0.59f, 0.49f, -0.7f) + close() + } + } + return _desktopCursor!! + } + +private var _desktopCursor: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopEdit.kt new file mode 100644 index 00000000..2c4093db --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopEdit.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DesktopEdit: ImageVector + get() { + if (_desktopEdit != null) { + return _desktopEdit!! + } + _desktopEdit = fluentIcon(name = "Filled.DesktopEdit") { + fluentPath { + moveToRelative(19.1f, 1.67f) + lineToRelative(-5.9f, 5.9f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + moveTo(12.49f, 6.87f) + lineTo(16.36f, 3.0f) + lineTo(4.1f, 3.0f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 5.25f) + verticalLineToRelative(10.66f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 18.0f) + lineTo(8.5f, 18.0f) + verticalLineToRelative(2.49f) + lineTo(6.65f, 20.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(10.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + lineTo(15.5f, 20.49f) + lineTo(15.5f, 18.0f) + horizontalLineToRelative(4.4f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.1f, -2.25f) + verticalLineToRelative(-9.1f) + lineToRelative(-4.86f, 4.86f) + curveToRelative(-0.48f, 0.47f, -1.07f, 0.8f, -1.72f, 0.97f) + lineToRelative(-1.83f, 0.46f) + curveToRelative(-1.52f, 0.38f, -2.9f, -1.0f, -2.53f, -2.53f) + lineToRelative(0.46f, -1.83f) + curveToRelative(0.16f, -0.65f, 0.5f, -1.24f, 0.97f, -1.72f) + close() + moveTo(13.99f, 18.0f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(-4.0f) + lineTo(9.99f, 18.0f) + horizontalLineToRelative(4.0f) + close() + } + } + return _desktopEdit!! + } + +private var _desktopEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopFlow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopFlow.kt new file mode 100644 index 00000000..0af680f5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopFlow.kt @@ -0,0 +1,91 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DesktopFlow: ImageVector + get() { + if (_desktopFlow != null) { + return _desktopFlow!! + } + _desktopFlow = fluentIcon(name = "Filled.DesktopFlow") { + fluentPath { + moveTo(16.5f, 3.75f) + curveToRelative(0.0f, -0.27f, 0.06f, -0.52f, 0.17f, -0.75f) + lineTo(4.1f, 3.0f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 5.26f) + verticalLineToRelative(10.66f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 18.0f) + lineTo(8.5f, 18.0f) + verticalLineToRelative(2.49f) + lineTo(6.65f, 20.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(10.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + lineTo(15.5f, 20.49f) + lineTo(15.5f, 18.0f) + horizontalLineToRelative(4.4f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.1f, -2.25f) + lineTo(22.0f, 9.5f) + horizontalLineToRelative(-3.75f) + curveToRelative(-0.42f, 0.0f, -0.8f, -0.15f, -1.1f, -0.4f) + lineToRelative(-0.45f, 1.32f) + curveToRelative(-0.4f, 1.19f, -1.47f, 2.0f, -2.7f, 2.08f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-4.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(4.0f) + curveToRelative(0.62f, 0.0f, 1.16f, 0.32f, 1.47f, 0.8f) + lineToRelative(0.58f, -1.72f) + arcToRelative(3.04f, 3.04f, 0.0f, false, true, 2.2f, -2.0f) + verticalLineToRelative(-0.83f) + close() + moveTo(14.0f, 18.0f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(-4.0f) + lineTo(10.0f, 18.0f) + horizontalLineToRelative(4.0f) + close() + moveTo(18.25f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(17.5f, 5.5f) + horizontalLineToRelative(-0.32f) + curveToRelative(-0.88f, 0.0f, -1.66f, 0.56f, -1.93f, 1.4f) + lineToRelative(-0.92f, 2.73f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, -0.5f, 0.37f) + lineTo(13.0f, 10.0f) + verticalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(13.0f, 11.5f) + horizontalLineToRelative(0.82f) + curveToRelative(0.88f, 0.0f, 1.66f, -0.56f, 1.93f, -1.4f) + lineToRelative(0.92f, -2.73f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.5f, -0.37f) + horizontalLineToRelative(0.33f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-4.0f) + close() + } + } + return _desktopFlow!! + } + +private var _desktopFlow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopKeyboard.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopKeyboard.kt new file mode 100644 index 00000000..d8ae277a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopKeyboard.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DesktopKeyboard: ImageVector + get() { + if (_desktopKeyboard != null) { + return _desktopKeyboard!! + } + _desktopKeyboard = fluentIcon(name = "Filled.DesktopKeyboard") { + fluentPath { + moveTo(6.72f, 22.0f) + horizontalLineToRelative(2.53f) + curveToRelative(-0.16f, -0.38f, -0.25f, -0.8f, -0.25f, -1.25f) + verticalLineToRelative(-5.5f) + curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) + horizontalLineToRelative(8.5f) + curveToRelative(0.44f, 0.0f, 0.86f, 0.09f, 1.25f, 0.25f) + lineTo(22.0f, 5.1f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 19.74f, 3.0f) + lineTo(4.1f, 3.0f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 5.26f) + verticalLineToRelative(10.66f) + curveToRelative(0.08f, 1.13f, 1.0f, 2.04f, 2.15f, 2.09f) + lineTo(4.0f, 18.01f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(2.5f) + lineTo(5.65f, 20.51f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.07f, 1.5f) + horizontalLineToRelative(1.0f) + close() + moveTo(10.0f, 15.25f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(8.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(5.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-8.5f) + curveTo(11.01f, 23.0f, 10.0f, 22.0f, 10.0f, 20.75f) + verticalLineToRelative(-5.5f) + close() + moveTo(14.0f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + close() + moveTo(17.5f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + close() + moveTo(20.0f, 16.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(19.25f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + close() + moveTo(15.0f, 18.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(13.0f, 20.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + } + } + return _desktopKeyboard!! + } + +private var _desktopKeyboard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopMac.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopMac.kt new file mode 100644 index 00000000..5e9397f6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopMac.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DesktopMac: ImageVector + get() { + if (_desktopMac != null) { + return _desktopMac!! + } + _desktopMac = fluentIcon(name = "Filled.DesktopMac") { + fluentPath { + moveTo(4.25f, 3.0f) + curveTo(3.01f, 3.0f, 2.0f, 4.0f, 2.0f, 5.25f) + verticalLineToRelative(10.5f) + curveTo(2.0f, 16.99f, 3.0f, 18.0f, 4.25f, 18.0f) + lineTo(9.5f, 18.0f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + lineTo(14.5f, 18.0f) + horizontalLineToRelative(5.25f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(22.0f, 5.25f) + curveTo(22.0f, 4.01f, 21.0f, 3.0f, 19.75f, 3.0f) + lineTo(4.25f, 3.0f) + close() + moveTo(13.0f, 18.0f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.45f, 0.1f, 0.88f, 0.3f, 1.25f) + horizontalLineToRelative(-2.6f) + curveToRelative(0.2f, -0.38f, 0.3f, -0.8f, 0.3f, -1.25f) + lineTo(11.0f, 18.0f) + horizontalLineToRelative(2.0f) + close() + moveTo(3.5f, 14.5f) + horizontalLineToRelative(17.0f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(4.25f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(3.5f, 14.5f) + close() + } + } + return _desktopMac!! + } + +private var _desktopMac: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopPulse.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopPulse.kt new file mode 100644 index 00000000..091ddc95 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopPulse.kt @@ -0,0 +1,91 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DesktopPulse: ImageVector + get() { + if (_desktopPulse != null) { + return _desktopPulse!! + } + _desktopPulse = fluentIcon(name = "Filled.DesktopPulse") { + fluentPath { + moveTo(6.0f, 21.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(10.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineTo(15.5f) + verticalLineTo(18.0f) + horizontalLineToRelative(4.4f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.1f, -2.25f) + verticalLineTo(13.0f) + horizontalLineToRelative(-5.0f) + curveToRelative(-0.57f, 0.0f, -1.1f, -0.28f, -1.43f, -0.75f) + lineToRelative(-0.2f, -0.27f) + lineToRelative(-1.86f, 3.16f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -3.13f, -0.24f) + lineTo(8.9f, 11.23f) + lineToRelative(-0.33f, 0.74f) + curveToRelative(-0.29f, 0.63f, -0.91f, 1.03f, -1.6f, 1.03f) + horizontalLineTo(2.0f) + verticalLineToRelative(2.91f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 18.0f) + horizontalLineTo(8.5f) + verticalLineToRelative(2.49f) + horizontalLineTo(6.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + close() + moveTo(10.0f, 18.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(-4.0f) + verticalLineTo(18.0f) + close() + moveTo(22.0f, 5.25f) + verticalLineTo(9.5f) + horizontalLineTo(17.9f) + lineToRelative(-1.23f, -1.75f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.94f, 0.11f) + lineTo(12.3f, 10.3f) + lineToRelative(-1.68f, -4.2f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -3.22f, -0.07f) + lineTo(5.85f, 9.5f) + horizontalLineTo(2.0f) + verticalLineTo(5.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 3.0f) + horizontalLineToRelative(15.5f) + curveToRelative(1.19f, 0.0f, 2.16f, 0.93f, 2.24f, 2.1f) + verticalLineToRelative(0.15f) + close() + moveTo(9.7f, 6.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.38f, -0.03f) + lineTo(6.49f, 10.5f) + horizontalLineTo(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.23f) + curveToRelative(0.3f, 0.0f, 0.56f, -0.17f, 0.68f, -0.44f) + lineToRelative(1.3f, -2.89f) + lineToRelative(2.34f, 5.86f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.35f, 0.1f) + lineToRelative(2.65f, -4.5f) + lineToRelative(1.09f, 1.55f) + curveToRelative(0.14f, 0.2f, 0.37f, 0.32f, 0.61f, 0.32f) + horizontalLineToRelative(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.86f) + lineToRelative(-1.53f, -2.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.26f, 0.05f) + lineToRelative(-2.47f, 4.19f) + lineTo(9.7f, 6.47f) + close() + } + } + return _desktopPulse!! + } + +private var _desktopPulse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopSignal.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopSignal.kt new file mode 100644 index 00000000..9d18e1fb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopSignal.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DesktopSignal: ImageVector + get() { + if (_desktopSignal != null) { + return _desktopSignal!! + } + _desktopSignal = fluentIcon(name = "Filled.DesktopSignal") { + fluentPath { + moveTo(15.0f, 1.5f) + curveToRelative(-0.18f, 0.0f, -0.37f, 0.0f, -0.55f, 0.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + curveTo(14.7f, 3.0f, 14.85f, 3.0f, 15.0f, 3.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, 6.99f, 7.45f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.1f) + lineToRelative(0.01f, -0.55f) + curveToRelative(0.0f, -4.7f, -3.8f, -8.5f, -8.5f, -8.5f) + close() + moveTo(15.0f, 4.0f) + curveToRelative(-0.2f, 0.0f, -0.38f, 0.0f, -0.57f, 0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.14f, 1.49f) + lineTo(15.0f, 5.5f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.48f, 4.93f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.14f) + lineTo(21.0f, 10.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, -6.0f, -6.0f) + close() + moveTo(15.0f, 6.5f) + curveToRelative(-0.22f, 0.0f, -0.43f, 0.02f, -0.64f, 0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.28f, 1.47f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.33f, 2.33f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.47f, 0.28f) + arcTo(3.51f, 3.51f, 0.0f, false, false, 15.0f, 6.5f) + close() + moveTo(12.91f, 3.0f) + lineTo(4.1f, 3.0f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 5.26f) + verticalLineToRelative(10.66f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 18.0f) + lineTo(8.5f, 18.0f) + verticalLineToRelative(2.49f) + lineTo(6.65f, 20.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(10.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + lineTo(15.5f, 20.49f) + lineTo(15.5f, 18.0f) + horizontalLineToRelative(4.4f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.1f, -2.25f) + lineTo(22.0f, 12.1f) + curveToRelative(-0.2f, -0.1f, -0.37f, -0.22f, -0.52f, -0.37f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -2.51f, 0.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -2.68f, -0.19f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.82f, -2.82f) + arcToRelative(1.74f, 1.74f, 0.0f, false, true, -0.18f, -2.68f) + arcToRelative(1.74f, 1.74f, 0.0f, false, true, -0.01f, -2.51f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 12.9f, 3.0f) + close() + moveTo(10.0f, 18.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(-4.0f) + lineTo(10.0f, 18.0f) + close() + moveTo(16.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + } + } + return _desktopSignal!! + } + +private var _desktopSignal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopSpeaker.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopSpeaker.kt new file mode 100644 index 00000000..d60f866f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopSpeaker.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DesktopSpeaker: ImageVector + get() { + if (_desktopSpeaker != null) { + return _desktopSpeaker!! + } + _desktopSpeaker = fluentIcon(name = "Filled.DesktopSpeaker") { + fluentPath { + moveTo(6.0f, 21.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(8.93f) + curveToRelative(-0.25f, -0.09f, -0.5f, -0.24f, -0.7f, -0.46f) + lineTo(14.0f, 20.5f) + horizontalLineToRelative(-4.0f) + lineTo(10.0f, 18.0f) + horizontalLineToRelative(1.0f) + verticalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(1.53f) + lineToRelative(1.44f, -1.54f) + arcToRelative(1.76f, 1.76f, 0.0f, false, true, 2.8f, 0.33f) + curveToRelative(0.37f, -0.24f, 0.82f, -0.33f, 1.25f, -0.27f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 2.98f, -1.0f) + lineTo(22.0f, 5.1f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 19.74f, 3.0f) + lineTo(4.1f, 3.0f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 5.26f) + verticalLineToRelative(10.66f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 18.0f) + lineTo(8.5f, 18.0f) + verticalLineToRelative(2.49f) + lineTo(6.65f, 20.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + close() + moveTo(22.14f, 14.3f) + arcToRelative(4.53f, 4.53f, 0.0f, false, false, -0.91f, -1.13f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.96f, 1.16f) + curveToRelative(0.13f, 0.1f, 0.35f, 0.35f, 0.59f, 0.74f) + curveToRelative(0.4f, 0.67f, 0.64f, 1.48f, 0.64f, 2.43f) + curveToRelative(0.0f, 0.95f, -0.24f, 1.76f, -0.64f, 2.43f) + curveToRelative(-0.24f, 0.39f, -0.46f, 0.64f, -0.59f, 0.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.96f, 1.16f) + curveToRelative(0.25f, -0.21f, 0.59f, -0.58f, 0.91f, -1.13f) + curveToRelative(0.54f, -0.9f, 0.86f, -1.96f, 0.86f, -3.2f) + curveToRelative(0.0f, -1.24f, -0.32f, -2.3f, -0.86f, -3.2f) + close() + moveTo(19.87f, 15.4f) + curveToRelative(-0.23f, -0.36f, -0.48f, -0.6f, -0.67f, -0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 1.2f) + arcToRelative(2.24f, 2.24f, 0.0f, false, true, 0.7f, 1.65f) + arcToRelative(2.24f, 2.24f, 0.0f, false, true, -0.7f, 1.65f) + lineToRelative(-0.08f, 0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) + arcToRelative(3.73f, 3.73f, 0.0f, false, false, 1.3f, -2.85f) + curveToRelative(0.0f, -0.81f, -0.23f, -1.52f, -0.63f, -2.1f) + close() + moveTo(17.0f, 14.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.31f, -0.5f) + lineTo(14.16f, 16.0f) + horizontalLineToRelative(-1.41f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(1.41f) + lineToRelative(1.53f, 1.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.31f, -0.49f) + verticalLineToRelative(-5.5f) + close() + moveTo(16.8f, 22.0f) + horizontalLineToRelative(0.45f) + close() + } + } + return _desktopSpeaker!! + } + +private var _desktopSpeaker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopSpeakerOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopSpeakerOff.kt new file mode 100644 index 00000000..0c5bdc2a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopSpeakerOff.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DesktopSpeakerOff: ImageVector + get() { + if (_desktopSpeakerOff != null) { + return _desktopSpeakerOff!! + } + _desktopSpeakerOff = fluentIcon(name = "Filled.DesktopSpeakerOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(0.4f, 0.4f) + curveTo(2.25f, 4.1f, 2.0f, 4.65f, 2.0f, 5.26f) + verticalLineToRelative(10.66f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 18.0f) + lineTo(8.5f, 18.0f) + verticalLineToRelative(2.49f) + lineTo(6.65f, 20.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(8.93f) + curveToRelative(-0.25f, -0.09f, -0.5f, -0.24f, -0.7f, -0.46f) + lineTo(14.0f, 20.5f) + horizontalLineToRelative(-4.0f) + lineTo(10.0f, 18.0f) + horizontalLineToRelative(1.0f) + verticalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(1.53f) + lineToRelative(0.2f, -0.21f) + lineToRelative(0.8f, 0.8f) + lineToRelative(-0.37f, 0.41f) + horizontalLineToRelative(-1.41f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(1.41f) + lineToRelative(1.53f, 1.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.31f, -0.49f) + verticalLineToRelative(-2.19f) + lineToRelative(3.72f, 3.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(20.5f, 17.32f) + lineTo(18.08f, 14.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.12f, -0.25f) + arcToRelative(3.71f, 3.71f, 0.0f, false, true, 1.3f, 2.66f) + close() + moveTo(22.69f, 19.51f) + lineTo(21.45f, 18.26f) + curveToRelative(0.03f, -0.24f, 0.05f, -0.5f, 0.05f, -0.76f) + curveToRelative(0.0f, -0.95f, -0.24f, -1.76f, -0.64f, -2.43f) + curveToRelative(-0.24f, -0.39f, -0.46f, -0.64f, -0.59f, -0.74f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.96f, -1.16f) + curveToRelative(0.25f, 0.21f, 0.59f, 0.58f, 0.91f, 1.13f) + arcToRelative(6.39f, 6.39f, 0.0f, false, true, 0.55f, 5.2f) + close() + moveTo(16.09f, 12.91f) + lineTo(6.2f, 3.0f) + horizontalLineToRelative(13.56f) + curveToRelative(1.19f, 0.0f, 2.16f, 0.92f, 2.24f, 2.1f) + verticalLineToRelative(7.42f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.98f, 1.0f) + curveToRelative(-0.42f, -0.07f, -0.87f, 0.03f, -1.23f, 0.27f) + arcToRelative(1.78f, 1.78f, 0.0f, false, false, -1.69f, -0.88f) + close() + moveTo(16.8f, 22.0f) + horizontalLineToRelative(0.45f) + close() + } + } + return _desktopSpeakerOff!! + } + +private var _desktopSpeakerOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopSync.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopSync.kt new file mode 100644 index 00000000..aadf079b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopSync.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DesktopSync: ImageVector + get() { + if (_desktopSync != null) { + return _desktopSync!! + } + _desktopSync = fluentIcon(name = "Filled.DesktopSync") { + fluentPath { + moveTo(12.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) + close() + moveTo(20.5f, 3.0f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + verticalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.8f, -0.59f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) + verticalLineTo(3.5f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + close() + moveTo(15.0f, 8.95f) + verticalLineToRelative(0.55f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.77f, 0.65f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) + close() + moveTo(17.5f, 13.0f) + curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.8f) + verticalLineToRelative(4.55f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.25f) + horizontalLineToRelative(-4.4f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineTo(6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineTo(8.5f) + verticalLineTo(18.0f) + horizontalLineTo(4.25f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) + lineTo(2.0f, 15.76f) + verticalLineTo(5.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.25f) + horizontalLineToRelative(7.92f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, 5.48f, 10.0f) + close() + moveTo(14.0f, 18.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(4.0f) + verticalLineTo(18.0f) + close() + } + } + return _desktopSync!! + } + +private var _desktopSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopToolbox.kt new file mode 100644 index 00000000..bf15e9a5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DesktopToolbox.kt @@ -0,0 +1,94 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DesktopToolbox: ImageVector + get() { + if (_desktopToolbox != null) { + return _desktopToolbox!! + } + _desktopToolbox = fluentIcon(name = "Filled.DesktopToolbox") { + fluentPath { + moveTo(6.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(8.5f, 20.5f) + lineTo(8.5f, 18.0f) + lineTo(4.25f, 18.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) + lineTo(2.0f, 15.76f) + lineTo(2.0f, 5.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 3.0f) + horizontalLineToRelative(15.5f) + curveToRelative(1.19f, 0.0f, 2.16f, 0.93f, 2.24f, 2.1f) + verticalLineToRelative(8.82f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.74f, -2.67f) + horizontalLineToRelative(-3.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 13.0f, 14.0f) + verticalLineToRelative(0.05f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.0f, 2.45f) + lineTo(11.0f, 18.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(1.0f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 0.17f, 0.02f, 0.34f, 0.05f, 0.5f) + horizontalLineToRelative(-4.3f) + close() + moveTo(14.0f, 15.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + lineTo(12.0f, 18.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(16.0f, 18.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(20.5f, 18.0f) + lineTo(23.0f, 18.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(21.0f, 15.0f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(1.0f) + close() + moveTo(15.5f, 14.0f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(12.0f, 21.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + lineTo(23.0f, 19.5f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + close() + } + } + return _desktopToolbox!! + } + +private var _desktopToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DeveloperBoard.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DeveloperBoard.kt new file mode 100644 index 00000000..75c7db3b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DeveloperBoard.kt @@ -0,0 +1,103 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DeveloperBoard: ImageVector + get() { + if (_developerBoard != null) { + return _developerBoard!! + } + _developerBoard = fluentIcon(name = "Filled.DeveloperBoard") { + fluentPath { + moveTo(15.25f, 2.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(2.33f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 18.93f, 8.0f) + horizontalLineToRelative(2.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(19.0f, 9.5f) + verticalLineToRelative(1.75f) + horizontalLineToRelative(2.25f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.29f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.75f) + lineTo(19.0f, 12.75f) + verticalLineToRelative(1.75f) + horizontalLineToRelative(2.25f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.29f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.75f) + horizontalLineToRelative(-2.43f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 16.0f, 18.92f) + verticalLineToRelative(2.33f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(14.5f, 19.0f) + horizontalLineToRelative(-1.75f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineTo(12.0f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + lineTo(11.25f, 19.0f) + lineTo(9.5f, 19.0f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-2.32f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 5.08f, 16.0f) + lineTo(2.75f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(5.0f, 14.5f) + verticalLineToRelative(-1.75f) + lineTo(2.75f, 12.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineTo(2.0f, 12.0f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + lineTo(5.0f, 11.25f) + lineTo(5.0f, 9.5f) + lineTo(2.75f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineTo(2.0f, 8.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(2.33f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 8.0f, 5.07f) + lineTo(8.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + lineTo(9.5f, 5.0f) + horizontalLineToRelative(1.75f) + lineTo(11.25f, 2.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineTo(12.0f, 2.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + lineTo(12.75f, 5.0f) + horizontalLineToRelative(1.75f) + lineTo(14.5f, 2.75f) + curveToRelative(0.0f, -0.35f, 0.23f, -0.64f, 0.55f, -0.72f) + lineToRelative(0.1f, -0.02f) + lineToRelative(0.1f, -0.01f) + close() + moveTo(12.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + moveTo(12.0f, 10.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + } + } + return _developerBoard!! + } + +private var _developerBoard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DeveloperBoardSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DeveloperBoardSearch.kt new file mode 100644 index 00000000..459e208c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DeveloperBoardSearch.kt @@ -0,0 +1,98 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DeveloperBoardSearch: ImageVector + get() { + if (_developerBoardSearch != null) { + return _developerBoardSearch!! + } + _developerBoardSearch = fluentIcon(name = "Filled.DeveloperBoardSearch") { + fluentPath { + moveTo(17.0f, 1.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) + horizontalLineToRelative(-0.1f) + lineToRelative(-0.1f, 0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.55f, 0.72f) + lineTo(15.5f, 4.0f) + horizontalLineToRelative(-1.75f) + lineTo(13.75f, 1.65f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 13.0f, 1.0f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + lineTo(12.25f, 4.0f) + lineTo(10.5f, 4.0f) + lineTo(10.5f, 1.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + verticalLineToRelative(2.32f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 6.08f, 7.0f) + lineTo(3.65f, 7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + verticalLineToRelative(0.1f) + curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) + lineTo(6.0f, 8.5f) + verticalLineToRelative(1.75f) + lineTo(3.65f, 10.25f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 3.0f, 11.0f) + verticalLineToRelative(0.1f) + curveToRelative(0.03f, 0.16f, 0.1f, 0.3f, 0.2f, 0.4f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 7.6f, 6.5f) + horizontalLineToRelative(1.45f) + verticalLineToRelative(2.35f) + curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + lineTo(13.75f, 18.0f) + horizontalLineToRelative(1.75f) + verticalLineToRelative(2.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + verticalLineToRelative(-2.33f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 19.92f, 15.0f) + horizontalLineToRelative(2.43f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + verticalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) + lineTo(20.0f, 13.5f) + verticalLineToRelative(-1.75f) + horizontalLineToRelative(2.35f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 23.0f, 11.0f) + verticalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) + lineTo(20.0f, 10.25f) + lineTo(20.0f, 8.5f) + horizontalLineToRelative(2.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-2.32f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 17.0f, 4.08f) + lineTo(17.0f, 1.65f) + close() + moveTo(10.0f, 11.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.0f) + close() + moveTo(14.5f, 11.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) + close() + moveTo(5.5f, 21.0f) + curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) + lineToRelative(2.62f, 2.61f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.61f, -2.61f) + arcTo(4.5f, 4.5f, 0.0f, true, false, 5.5f, 21.0f) + close() + moveTo(5.5f, 19.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) + close() + } + } + return _developerBoardSearch!! + } + +private var _developerBoardSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DeviceEq.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DeviceEq.kt new file mode 100644 index 00000000..4863a34a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DeviceEq.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DeviceEq: ImageVector + get() { + if (_deviceEq != null) { + return _deviceEq!! + } + _deviceEq = fluentIcon(name = "Filled.DeviceEq") { + fluentPath { + moveTo(12.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(13.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(11.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(8.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(9.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(7.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(16.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(17.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(15.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(4.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(5.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(3.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(20.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(21.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(19.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + } + } + return _deviceEq!! + } + +private var _deviceEq: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DeviceMeetingRoom.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DeviceMeetingRoom.kt new file mode 100644 index 00000000..c675d86e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DeviceMeetingRoom.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DeviceMeetingRoom: ImageVector + get() { + if (_deviceMeetingRoom != null) { + return _deviceMeetingRoom!! + } + _deviceMeetingRoom = fluentIcon(name = "Filled.DeviceMeetingRoom") { + fluentPath { + moveTo(4.1f, 5.35f) + arcTo(3.06f, 3.06f, 0.0f, false, true, 7.06f, 3.0f) + horizontalLineToRelative(9.86f) + curveToRelative(1.41f, 0.0f, 2.65f, 0.97f, 2.98f, 2.35f) + lineToRelative(1.99f, 8.27f) + arcTo(3.55f, 3.55f, 0.0f, false, true, 18.45f, 18.0f) + horizontalLineTo(5.55f) + arcToRelative(3.55f, 3.55f, 0.0f, false, true, -3.45f, -4.38f) + lineToRelative(2.0f, -8.27f) + close() + moveTo(6.74f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineTo(6.75f) + close() + } + } + return _deviceMeetingRoom!! + } + +private var _deviceMeetingRoom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DeviceMeetingRoomRemote.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DeviceMeetingRoomRemote.kt new file mode 100644 index 00000000..45543c8b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DeviceMeetingRoomRemote.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DeviceMeetingRoomRemote: ImageVector + get() { + if (_deviceMeetingRoomRemote != null) { + return _deviceMeetingRoomRemote!! + } + _deviceMeetingRoomRemote = fluentIcon(name = "Filled.DeviceMeetingRoomRemote") { + fluentPath { + moveTo(7.07f, 3.0f) + curveToRelative(-1.41f, 0.0f, -2.64f, 0.97f, -2.97f, 2.35f) + lineToRelative(-0.77f, 3.18f) + lineToRelative(0.42f, -0.03f) + horizontalLineToRelative(4.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.75f) + lineTo(10.5f, 18.0f) + horizontalLineToRelative(7.95f) + curveToRelative(2.3f, 0.0f, 3.99f, -2.15f, 3.45f, -4.38f) + lineToRelative(-2.0f, -8.27f) + arcTo(3.06f, 3.06f, 0.0f, false, false, 16.94f, 3.0f) + lineTo(7.07f, 3.0f) + close() + moveTo(10.49f, 20.5f) + lineTo(10.5f, 20.25f) + lineTo(10.5f, 19.0f) + horizontalLineToRelative(6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(10.5f, 20.5f) + close() + moveTo(5.75f, 14.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + moveTo(2.0f, 11.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(4.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-4.0f) + curveTo(2.78f, 22.0f, 2.0f, 21.22f, 2.0f, 20.25f) + verticalLineToRelative(-9.0f) + close() + moveTo(3.75f, 11.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(4.0f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-9.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-4.0f) + close() + } + } + return _deviceMeetingRoomRemote!! + } + +private var _deviceMeetingRoomRemote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Diagram.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Diagram.kt new file mode 100644 index 00000000..7fcb58eb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Diagram.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Diagram: ImageVector + get() { + if (_diagram != null) { + return _diagram!! + } + _diagram = fluentIcon(name = "Filled.Diagram") { + fluentPath { + moveTo(2.0f, 5.25f) + curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) + horizontalLineToRelative(10.5f) + curveTo(17.55f, 2.0f, 19.0f, 3.46f, 19.0f, 5.25f) + verticalLineToRelative(6.03f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -1.22f, -0.28f) + horizontalLineToRelative(-0.28f) + lineTo(17.5f, 5.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(5.25f, 3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(3.37f) + lineTo(7.36f, 20.0f) + lineTo(5.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + lineTo(2.0f, 5.25f) + close() + moveTo(6.75f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-7.5f) + close() + moveTo(7.07f, 12.43f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.68f, -0.43f) + horizontalLineToRelative(10.03f) + curveToRelative(0.52f, 0.0f, 1.01f, 0.23f, 1.34f, 0.62f) + lineToRelative(3.7f, 4.4f) + curveToRelative(0.24f, 0.28f, 0.24f, 0.68f, 0.0f, 0.96f) + lineToRelative(-3.7f, 4.4f) + curveToRelative(-0.33f, 0.4f, -0.82f, 0.62f, -1.34f, 0.62f) + lineTo(7.75f, 23.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.57f, -1.23f) + lineToRelative(3.59f, -4.27f) + lineToRelative(-3.6f, -4.27f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -0.8f) + close() + moveTo(6.75f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + close() + } + } + return _diagram!! + } + +private var _diagram: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Dialpad.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Dialpad.kt new file mode 100644 index 00000000..676c62d5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Dialpad.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Dialpad: ImageVector + get() { + if (_dialpad != null) { + return _dialpad!! + } + _dialpad = fluentIcon(name = "Filled.Dialpad") { + fluentPath { + moveTo(12.0f, 17.75f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(12.0f, 12.75f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(17.0f, 12.75f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(7.0f, 12.75f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(12.0f, 7.75f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(17.0f, 7.75f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(7.0f, 7.75f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(12.0f, 2.75f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(17.0f, 2.75f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(7.0f, 2.75f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + } + } + return _dialpad!! + } + +private var _dialpad: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DialpadOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DialpadOff.kt new file mode 100644 index 00000000..af5aaf80 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DialpadOff.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DialpadOff: ImageVector + get() { + if (_dialpadOff != null) { + return _dialpadOff!! + } + _dialpadOff = fluentIcon(name = "Filled.DialpadOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(4.5f, 4.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 1.76f, 1.76f) + lineToRelative(3.24f, 3.24f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 1.75f, 1.75f) + lineToRelative(7.25f, 7.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(18.5f, 14.25f) + curveToRelative(0.0f, 0.3f, -0.1f, 0.58f, -0.25f, 0.82f) + lineToRelative(-2.07f, -2.08f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.32f, 1.26f) + close() + moveTo(13.5f, 9.25f) + curveToRelative(0.0f, 0.3f, -0.09f, 0.59f, -0.25f, 0.82f) + lineTo(11.18f, 8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.32f, 1.25f) + close() + moveTo(8.5f, 4.25f) + curveToRelative(0.0f, 0.3f, -0.09f, 0.59f, -0.24f, 0.83f) + lineTo(6.18f, 3.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 8.5f, 4.25f) + close() + moveTo(12.0f, 17.75f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(7.0f, 12.75f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(17.0f, 7.75f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(12.0f, 2.75f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(17.0f, 2.75f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + } + } + return _dialpadOff!! + } + +private var _dialpadOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Diamond.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Diamond.kt new file mode 100644 index 00000000..a7c94b25 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Diamond.kt @@ -0,0 +1,32 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Diamond: ImageVector + get() { + if (_diamond != null) { + return _diamond!! + } + _diamond = fluentIcon(name = "Filled.Diamond") { + fluentPath { + moveTo(2.66f, 13.6f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -3.19f) + lineToRelative(7.75f, -7.75f) + curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.0f) + lineToRelative(7.75f, 7.75f) + curveToRelative(0.88f, 0.88f, 0.88f, 2.3f, 0.0f, 3.18f) + lineToRelative(-7.75f, 7.75f) + curveToRelative(-0.88f, 0.88f, -2.3f, 0.88f, -3.18f, 0.0f) + lineTo(2.66f, 13.6f) + close() + } + } + return _diamond!! + } + +private var _diamond: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Directions.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Directions.kt new file mode 100644 index 00000000..611ddffc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Directions.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Directions: ImageVector + get() { + if (_directions != null) { + return _directions!! + } + _directions = fluentIcon(name = "Filled.Directions") { + fluentPath { + moveToRelative(14.3f, 2.99f) + lineToRelative(6.72f, 6.71f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, 4.6f) + lineToRelative(-6.72f, 6.72f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -4.6f, 0.0f) + lineTo(2.98f, 14.3f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.6f) + lineTo(9.7f, 3.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 4.6f, 0.0f) + close() + moveTo(13.6f, 7.22f) + lineTo(13.5f, 7.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.88f, 0.0f) + lineToRelative(-0.09f, 0.07f) + lineToRelative(-0.07f, 0.09f) + curveToRelative(-0.2f, 0.26f, -0.2f, 0.61f, -0.01f, 0.88f) + lineToRelative(0.08f, 0.1f) + lineToRelative(0.72f, 0.71f) + horizontalLineToRelative(-1.67f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.57f, 2.58f) + lineToRelative(-0.01f, 0.17f) + verticalLineToRelative(3.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-3.48f) + curveToRelative(0.07f, -0.59f, 0.53f, -1.05f, 1.12f, -1.11f) + horizontalLineToRelative(0.13f) + lineToRelative(1.5f, -0.01f) + lineToRelative(-0.72f, 0.72f) + lineToRelative(-0.07f, 0.09f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.05f, 1.04f) + lineToRelative(0.08f, -0.07f) + lineToRelative(2.0f, -2.0f) + lineToRelative(0.07f, -0.08f) + curveToRelative(0.2f, -0.26f, 0.2f, -0.62f, 0.01f, -0.88f) + lineToRelative(-0.08f, -0.1f) + lineToRelative(-2.0f, -2.0f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(0.08f, 0.07f) + close() + } + } + return _directions!! + } + +private var _directions: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Dishwasher.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Dishwasher.kt new file mode 100644 index 00000000..90e4873c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Dishwasher.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Dishwasher: ImageVector + get() { + if (_dishwasher != null) { + return _dishwasher!! + } + _dishwasher = fluentIcon(name = "Filled.Dishwasher") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + lineTo(21.0f, 9.0f) + lineTo(3.0f, 9.0f) + lineTo(3.0f, 6.25f) + close() + moveTo(8.99f, 10.51f) + lineTo(8.97f, 10.5f) + lineTo(21.0f, 10.5f) + verticalLineToRelative(7.25f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(8.48f, 21.0f) + arcTo(1.75f, 1.75f, 0.0f, false, false, 7.0f, 19.52f) + verticalLineToRelative(-1.9f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, 2.5f, -3.87f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.46f, -0.18f, -0.9f, -0.51f, -1.24f) + close() + moveTo(9.0f, 6.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(12.75f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + close() + moveTo(2.75f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(2.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 2.5f, 3.16f) + verticalLineToRelative(3.59f) + horizontalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(6.0f, 20.5f) + verticalLineToRelative(-3.59f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 2.5f, -3.16f) + verticalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-5.0f) + close() + } + } + return _dishwasher!! + } + +private var _dishwasher: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DismissCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DismissCircle.kt new file mode 100644 index 00000000..c99f600d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DismissCircle.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DismissCircle: ImageVector + get() { + if (_dismissCircle != null) { + return _dismissCircle!! + } + _dismissCircle = fluentIcon(name = "Filled.DismissCircle") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(15.53f, 8.47f) + lineTo(15.45f, 8.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.89f, -0.01f) + lineToRelative(-0.09f, 0.08f) + lineTo(12.0f, 10.94f) + lineTo(9.53f, 8.47f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.89f, -0.01f) + lineToRelative(-0.09f, 0.08f) + lineToRelative(-0.07f, 0.08f) + curveToRelative(-0.2f, 0.26f, -0.2f, 0.62f, -0.01f, 0.89f) + lineToRelative(0.08f, 0.09f) + lineTo(10.94f, 12.0f) + lineToRelative(-2.47f, 2.47f) + lineToRelative(-0.07f, 0.08f) + curveToRelative(-0.2f, 0.26f, -0.2f, 0.62f, -0.01f, 0.89f) + lineToRelative(0.08f, 0.09f) + lineToRelative(0.08f, 0.07f) + curveToRelative(0.26f, 0.2f, 0.62f, 0.2f, 0.89f, 0.01f) + lineToRelative(0.09f, -0.08f) + lineTo(12.0f, 13.06f) + lineToRelative(2.47f, 2.47f) + lineToRelative(0.08f, 0.07f) + curveToRelative(0.26f, 0.2f, 0.62f, 0.2f, 0.89f, 0.01f) + lineToRelative(0.09f, -0.08f) + lineToRelative(0.07f, -0.08f) + curveToRelative(0.2f, -0.26f, 0.2f, -0.62f, 0.01f, -0.89f) + lineToRelative(-0.08f, -0.09f) + lineTo(13.06f, 12.0f) + lineToRelative(2.47f, -2.47f) + lineToRelative(0.07f, -0.08f) + curveToRelative(0.2f, -0.26f, 0.2f, -0.62f, 0.01f, -0.89f) + lineToRelative(-0.08f, -0.09f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(0.08f, 0.07f) + close() + } + } + return _dismissCircle!! + } + +private var _dismissCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DismissSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DismissSquare.kt new file mode 100644 index 00000000..94cbd078 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DismissSquare.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DismissSquare: ImageVector + get() { + if (_dismissSquare != null) { + return _dismissSquare!! + } + _dismissSquare = fluentIcon(name = "Filled.DismissSquare") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(8.22f, 8.22f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineTo(12.0f, 10.94f) + lineToRelative(2.72f, -2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineTo(13.06f, 12.0f) + lineToRelative(2.72f, 2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(12.0f, 13.06f) + lineToRelative(-2.72f, 2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineTo(10.94f, 12.0f) + lineTo(8.22f, 9.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + } + } + return _dismissSquare!! + } + +private var _dismissSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Diversity.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Diversity.kt new file mode 100644 index 00000000..51cadbc6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Diversity.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Diversity: ImageVector + get() { + if (_diversity != null) { + return _diversity!! + } + _diversity = fluentIcon(name = "Filled.Diversity") { + fluentPath { + moveTo(16.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(2.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) + horizontalLineToRelative(2.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) + lineTo(21.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + horizontalLineToRelative(-2.0f) + close() + moveTo(5.55f, 3.9f) + curveToRelative(0.6f, -1.2f, 2.3f, -1.2f, 2.9f, 0.0f) + lineToRelative(2.37f, 4.71f) + arcTo(1.64f, 1.64f, 0.0f, false, true, 9.37f, 11.0f) + lineTo(4.63f, 11.0f) + curveToRelative(-1.22f, 0.0f, -2.0f, -1.3f, -1.45f, -2.39f) + lineTo(5.55f, 3.9f) + close() + moveTo(10.93f, 17.76f) + curveToRelative(-0.1f, 0.54f, -0.32f, 1.05f, -0.62f, 1.49f) + lineToRelative(-5.56f, -5.56f) + arcTo(3.98f, 3.98f, 0.0f, false, true, 7.0f, 13.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 3.93f, 4.75f) + verticalLineToRelative(0.01f) + close() + moveTo(7.69f, 20.94f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.62f, -4.69f) + verticalLineToRelative(-0.01f) + curveToRelative(0.1f, -0.54f, 0.32f, -1.05f, 0.62f, -1.49f) + lineToRelative(5.56f, 5.56f) + arcToRelative(3.98f, 3.98f, 0.0f, false, true, -1.56f, 0.63f) + close() + moveTo(16.52f, 13.12f) + curveToRelative(0.3f, -0.16f, 0.66f, -0.16f, 0.96f, 0.0f) + lineToRelative(2.97f, 1.53f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.55f, 0.89f) + verticalLineToRelative(2.92f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.55f, 0.89f) + lineToRelative(-2.97f, 1.53f) + curveToRelative(-0.3f, 0.16f, -0.66f, 0.16f, -0.96f, 0.0f) + lineToRelative(-2.97f, -1.53f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.55f, -0.89f) + verticalLineToRelative(-2.92f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.55f, -0.89f) + lineToRelative(2.97f, -1.53f) + close() + } + } + return _diversity!! + } + +private var _diversity: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DividerShort.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DividerShort.kt new file mode 100644 index 00000000..244e1ea1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DividerShort.kt @@ -0,0 +1,28 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DividerShort: ImageVector + get() { + if (_dividerShort != null) { + return _dividerShort!! + } + _dividerShort = fluentIcon(name = "Filled.DividerShort") { + fluentPath { + moveTo(11.0f, 5.0f) + verticalLineToRelative(14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineTo(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + close() + } + } + return _dividerShort!! + } + +private var _dividerShort: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DividerTall.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DividerTall.kt new file mode 100644 index 00000000..b3a871c4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DividerTall.kt @@ -0,0 +1,28 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DividerTall: ImageVector + get() { + if (_dividerTall != null) { + return _dividerTall!! + } + _dividerTall = fluentIcon(name = "Filled.DividerTall") { + fluentPath { + moveTo(11.0f, 3.0f) + verticalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineTo(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + close() + } + } + return _dividerTall!! + } + +private var _dividerTall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Dock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Dock.kt new file mode 100644 index 00000000..f39767f2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Dock.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Dock: ImageVector + get() { + if (_dock != null) { + return _dock!! + } + _dock = fluentIcon(name = "Filled.Dock") { + fluentPath { + moveTo(12.7f, 3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) + lineTo(7.8f, 6.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 1.4f) + lineTo(11.0f, 6.42f) + verticalLineTo(15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineTo(6.41f) + lineToRelative(1.8f, 1.8f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, -1.42f) + lineToRelative(-3.5f, -3.5f) + close() + moveTo(4.0f, 12.74f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineTo(9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineTo(4.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 12.75f) + verticalLineToRelative(4.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 20.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 17.25f) + verticalLineToRelative(-4.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 10.0f) + horizontalLineTo(15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(4.25f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineTo(4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-4.5f) + close() + } + } + return _dock!! + } + +private var _dock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DockRow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DockRow.kt new file mode 100644 index 00000000..1a12c4d1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DockRow.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DockRow: ImageVector + get() { + if (_dockRow != null) { + return _dockRow!! + } + _dockRow = fluentIcon(name = "Filled.DockRow") { + fluentPath { + moveTo(20.25f, 12.03f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.5f) + close() + moveTo(6.25f, 12.03f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.5f) + close() + moveTo(13.25f, 12.03f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.5f) + close() + moveTo(13.25f, 5.03f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.5f) + close() + moveTo(20.25f, 5.03f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.5f) + close() + moveTo(6.25f, 5.03f) + curveTo(7.22f, 5.03f, 8.0f, 5.8f, 8.0f, 6.78f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) + lineToRelative(0.15f, -0.01f) + horizontalLineToRelative(2.5f) + close() + } + } + return _dockRow!! + } + +private var _dockRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Doctor.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Doctor.kt new file mode 100644 index 00000000..c06289bc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Doctor.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Doctor: ImageVector + get() { + if (_doctor != null) { + return _doctor!! + } + _doctor = fluentIcon(name = "Filled.Doctor") { + fluentPath { + moveTo(10.0f, 3.25f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(3.25f) + horizontalLineTo(5.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(3.25f) + verticalLineTo(19.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(4.0f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-3.25f) + horizontalLineTo(19.0f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.25f) + verticalLineTo(5.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-4.0f) + close() + } + } + return _doctor!! + } + +private var _doctor: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Document100.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Document100.kt new file mode 100644 index 00000000..c8c51304 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Document100.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Document100: ImageVector + get() { + if (_document100 != null) { + return _document100!! + } + _document100 = fluentIcon(name = "Filled.Document100") { + fluentPath { + moveTo(12.0f, 8.0f) + lineTo(12.0f, 2.0f) + lineTo(6.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(10.23f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.86f, 0.97f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.64f, 0.5f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 6.5f, 1.8f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.98f, -0.4f, 1.86f, -1.05f, 2.5f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 10.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + close() + moveTo(13.5f, 8.0f) + lineTo(13.5f, 2.5f) + lineToRelative(6.0f, 6.0f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + moveTo(7.5f, 15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 5.0f, 17.5f) + verticalLineToRelative(2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 5.0f, 0.0f) + verticalLineToRelative(-2.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 7.5f, 15.0f) + close() + moveTo(6.5f, 17.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(11.0f, 17.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + verticalLineToRelative(2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(13.5f, 16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + moveTo(4.0f, 15.94f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.74f, -0.95f) + curveToRelative(-0.31f, -0.09f, -0.8f, -0.06f, -1.11f, 0.37f) + curveToRelative(-0.32f, 0.44f, -0.76f, 0.94f, -1.28f, 1.24f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.76f, 1.3f) + curveToRelative(0.32f, -0.2f, 0.61f, -0.43f, 0.87f, -0.67f) + verticalLineToRelative(4.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-5.31f) + close() + } + } + return _document100!! + } + +private var _document100: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentAdd.kt new file mode 100644 index 00000000..9bf63c09 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentAdd.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentAdd: ImageVector + get() { + if (_documentAdd != null) { + return _documentAdd!! + } + _documentAdd = fluentIcon(name = "Filled.DocumentAdd") { + fluentPath { + moveTo(12.0f, 2.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-6.81f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.0f) + close() + moveTo(13.5f, 2.5f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.5f) + lineToRelative(-6.0f, -6.0f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(7.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(6.0f, 18.0f) + lineTo(3.5f, 18.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(6.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(7.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(7.0f, 18.0f) + close() + } + } + return _documentAdd!! + } + +private var _documentAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentArrowLeft.kt new file mode 100644 index 00000000..6aeb4d13 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentArrowLeft.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentArrowLeft: ImageVector + get() { + if (_documentArrowLeft != null) { + return _documentArrowLeft!! + } + _documentArrowLeft = fluentIcon(name = "Filled.DocumentArrowLeft") { + fluentPath { + moveTo(12.0f, 2.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-6.81f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.0f) + close() + moveTo(13.5f, 2.5f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.5f) + lineToRelative(-6.0f, -6.0f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(9.5f, 18.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + lineTo(4.7f, 17.0f) + lineToRelative(1.65f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineTo(4.71f, 18.0f) + lineTo(9.5f, 18.0f) + close() + } + } + return _documentArrowLeft!! + } + +private var _documentArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentArrowRight.kt new file mode 100644 index 00000000..b4121ccb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentArrowRight.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentArrowRight: ImageVector + get() { + if (_documentArrowRight != null) { + return _documentArrowRight!! + } + _documentArrowRight = fluentIcon(name = "Filled.DocumentArrowRight") { + fluentPath { + moveTo(12.0f, 2.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-6.81f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) + verticalLineTo(4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.0f) + close() + } + fluentPath { + moveTo(13.5f, 2.5f) + verticalLineTo(8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.5f) + lineToRelative(-6.0f, -6.0f) + close() + } + fluentPath { + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(3.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(8.29f, 17.0f) + horizontalLineTo(3.5f) + close() + } + } + return _documentArrowRight!! + } + +private var _documentArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentBorder.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentBorder.kt new file mode 100644 index 00000000..7d7bb646 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentBorder.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentBorder: ImageVector + get() { + if (_documentBorder != null) { + return _documentBorder!! + } + _documentBorder = fluentIcon(name = "Filled.DocumentBorder") { + fluentPath { + moveTo(7.25f, 2.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 4.0f, 5.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.55f, 5.46f, 22.0f, 7.25f, 22.0f) + horizontalLineToRelative(9.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineTo(5.25f) + curveTo(20.0f, 3.45f, 18.54f, 2.0f, 16.75f, 2.0f) + horizontalLineToRelative(-9.5f) + close() + moveTo(5.5f, 5.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(9.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-9.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineTo(5.25f) + close() + moveTo(8.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineTo(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineTo(8.0f) + close() + } + } + return _documentBorder!! + } + +private var _documentBorder: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentBorderPrint.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentBorderPrint.kt new file mode 100644 index 00000000..b62ac69c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentBorderPrint.kt @@ -0,0 +1,96 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentBorderPrint: ImageVector + get() { + if (_documentBorderPrint != null) { + return _documentBorderPrint!! + } + _documentBorderPrint = fluentIcon(name = "Filled.DocumentBorderPrint") { + fluentPath { + moveTo(7.25f, 2.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 4.0f, 5.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.55f, 5.46f, 22.0f, 7.25f, 22.0f) + horizontalLineToRelative(5.85f) + arcToRelative(2.74f, 2.74f, 0.0f, false, true, -0.09f, -0.5f) + lineTo(13.0f, 21.5f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.73f, -1.0f) + lineTo(7.25f, 20.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(5.5f, 5.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(9.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(18.5f, 11.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.26f, 0.0f, 0.51f, 0.04f, 0.75f, 0.1f) + lineTo(20.0f, 5.25f) + curveTo(20.0f, 3.45f, 18.54f, 2.0f, 16.75f, 2.0f) + horizontalLineToRelative(-9.5f) + close() + moveTo(15.75f, 11.0f) + lineTo(17.0f, 11.0f) + lineTo(17.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(8.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-3.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.0f, -2.45f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 15.76f, 11.0f) + close() + moveTo(14.0f, 13.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(3.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(0.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(12.0f, 16.0f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(0.5f) + verticalLineToRelative(-0.75f) + close() + moveTo(19.5f, 13.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-0.75f) + close() + moveTo(15.5f, 19.25f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-2.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + close() + } + } + return _documentBorderPrint!! + } + +private var _documentBorderPrint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentBriefcase.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentBriefcase.kt new file mode 100644 index 00000000..2843ff8b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentBriefcase.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentBriefcase: ImageVector + get() { + if (_documentBriefcase != null) { + return _documentBriefcase!! + } + _documentBriefcase = fluentIcon(name = "Filled.DocumentBriefcase") { + fluentPath { + moveTo(12.0f, 2.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-5.05f) + curveToRelative(0.03f, -0.16f, 0.05f, -0.33f, 0.05f, -0.5f) + verticalLineToRelative(-5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.0f, -2.45f) + verticalLineToRelative(-0.3f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 8.25f, 11.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.26f, 0.0f, -0.51f, 0.04f, -0.75f, 0.1f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.0f) + close() + moveTo(13.5f, 2.5f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.5f) + lineToRelative(-6.0f, -6.0f) + close() + moveTo(3.0f, 15.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(8.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(10.0f, 15.0f) + verticalLineToRelative(-1.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.5f) + curveTo(3.78f, 12.0f, 3.0f, 12.78f, 3.0f, 13.75f) + lineTo(3.0f, 15.0f) + close() + moveTo(4.5f, 13.75f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + lineTo(8.5f, 15.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-1.25f) + close() + } + } + return _documentBriefcase!! + } + +private var _documentBriefcase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentBulletList.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentBulletList.kt new file mode 100644 index 00000000..9fe851f6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentBulletList.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentBulletList: ImageVector + get() { + if (_documentBulletList != null) { + return _documentBulletList!! + } + _documentBulletList = fluentIcon(name = "Filled.DocumentBulletList") { + fluentPath { + moveTo(12.0f, 8.0f) + lineTo(12.0f, 2.0f) + lineTo(6.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(16.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 10.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + close() + moveTo(7.0f, 12.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(7.0f, 15.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(7.0f, 18.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(10.0f, 12.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(10.0f, 15.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(10.0f, 18.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(13.5f, 8.0f) + lineTo(13.5f, 2.5f) + lineToRelative(6.0f, 6.0f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + } + } + return _documentBulletList!! + } + +private var _documentBulletList: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentBulletListArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentBulletListArrowLeft.kt new file mode 100644 index 00000000..a281d0e8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentBulletListArrowLeft.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentBulletListArrowLeft: ImageVector + get() { + if (_documentBulletListArrowLeft != null) { + return _documentBulletListArrowLeft!! + } + _documentBulletListArrowLeft = fluentIcon(name = "Filled.DocumentBulletListArrowLeft") { + fluentPath { + moveTo(12.0f, 8.0f) + lineTo(12.0f, 2.0f) + lineTo(6.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.5f) + arcToRelative(6.48f, 6.48f, 0.0f, false, true, 6.03f, 0.54f) + curveToRelative(0.09f, -0.31f, 0.38f, -0.54f, 0.72f, -0.54f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.06f) + curveToRelative(0.43f, 0.44f, 0.8f, 0.95f, 1.08f, 1.5f) + horizontalLineToRelative(3.98f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.42f) + curveToRelative(0.11f, 0.48f, 0.17f, 0.98f, 0.17f, 1.5f) + horizontalLineToRelative(3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.42f) + arcToRelative(6.49f, 6.49f, 0.0f, false, true, -1.64f, 3.0f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 10.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + close() + moveTo(13.5f, 8.0f) + lineTo(13.5f, 2.5f) + lineToRelative(6.0f, 6.0f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + moveTo(6.5f, 23.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, 11.0f) + close() + moveTo(9.5f, 18.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + lineTo(4.7f, 17.0f) + lineToRelative(1.65f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineTo(4.71f, 18.0f) + lineTo(9.5f, 18.0f) + close() + } + } + return _documentBulletListArrowLeft!! + } + +private var _documentBulletListArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentBulletListClock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentBulletListClock.kt new file mode 100644 index 00000000..c78fb001 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentBulletListClock.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentBulletListClock: ImageVector + get() { + if (_documentBulletListClock != null) { + return _documentBulletListClock!! + } + _documentBulletListClock = fluentIcon(name = "Filled.DocumentBulletListClock") { + fluentPath { + moveTo(12.0f, 8.0f) + lineTo(12.0f, 2.0f) + lineTo(6.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(16.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.81f) + arcToRelative(6.49f, 6.49f, 0.0f, false, true, -1.64f, -3.0f) + horizontalLineToRelative(-0.42f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(11.0f, 17.5f) + curveToRelative(0.0f, -0.52f, 0.06f, -1.02f, 0.17f, -1.5f) + horizontalLineToRelative(-0.42f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.98f) + curveToRelative(0.29f, -0.55f, 0.65f, -1.06f, 1.08f, -1.5f) + horizontalLineToRelative(-2.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(15.0f, 11.5f) + arcToRelative(6.48f, 6.48f, 0.0f, false, true, 5.0f, 0.0f) + lineTo(20.0f, 10.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + close() + moveTo(7.0f, 12.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(7.0f, 15.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(7.0f, 18.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(13.5f, 8.0f) + lineTo(13.5f, 2.5f) + lineToRelative(6.0f, 6.0f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(17.22f, 17.92f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.22f, -0.5f) + lineTo(17.0f, 13.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-2.94f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.34f, -0.08f) + close() + } + } + return _documentBulletListClock!! + } + +private var _documentBulletListClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentBulletListCube.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentBulletListCube.kt new file mode 100644 index 00000000..03337207 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentBulletListCube.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentBulletListCube: ImageVector + get() { + if (_documentBulletListCube != null) { + return _documentBulletListCube!! + } + _documentBulletListCube = fluentIcon(name = "Filled.DocumentBulletListCube") { + fluentPath { + moveTo(12.0f, 2.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-7.4f) + lineToRelative(0.02f, -0.01f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 12.0f, 19.75f) + lineTo(12.0f, 19.0f) + horizontalLineToRelative(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(12.0f, 17.5f) + lineTo(12.0f, 16.0f) + horizontalLineToRelative(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.37f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -1.26f, -1.49f) + lineToRelative(-0.1f, -0.05f) + curveToRelative(0.07f, 0.03f, 0.15f, 0.04f, 0.23f, 0.04f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.43f, 1.37f) + lineToRelative(-3.2f, -1.6f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.24f, 0.0f) + lineTo(4.0f, 11.7f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.0f) + close() + moveTo(13.5f, 2.5f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.5f) + lineToRelative(-6.0f, -6.0f) + close() + moveTo(10.17f, 13.9f) + lineTo(6.67f, 12.16f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -1.34f, 0.0f) + lineToRelative(-3.5f, 1.75f) + curveToRelative(-0.5f, 0.25f, -0.83f, 0.77f, -0.83f, 1.34f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.57f, 0.32f, 1.09f, 0.83f, 1.34f) + lineToRelative(3.5f, 1.75f) + curveToRelative(0.42f, 0.22f, 0.92f, 0.22f, 1.34f, 0.0f) + lineToRelative(3.5f, -1.75f) + curveToRelative(0.5f, -0.25f, 0.83f, -0.77f, 0.83f, -1.34f) + verticalLineToRelative(-4.5f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -0.83f, -1.34f) + close() + moveTo(2.55f, 15.28f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.67f, -0.23f) + lineTo(6.0f, 16.45f) + lineToRelative(2.78f, -1.4f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.44f, 0.9f) + lineTo(6.5f, 17.3f) + verticalLineToRelative(3.19f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + verticalLineToRelative(-3.2f) + lineToRelative(-2.72f, -1.35f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.23f, -0.67f) + close() + } + } + return _documentBulletListCube!! + } + +private var _documentBulletListCube: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentBulletListMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentBulletListMultiple.kt new file mode 100644 index 00000000..44fca2d0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentBulletListMultiple.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentBulletListMultiple: ImageVector + get() { + if (_documentBulletListMultiple != null) { + return _documentBulletListMultiple!! + } + _documentBulletListMultiple = fluentIcon(name = "Filled.DocumentBulletListMultiple") { + fluentPath { + moveTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(4.25f) + verticalLineToRelative(4.75f) + curveTo(10.5f, 7.99f, 11.51f, 9.0f, 12.75f, 9.0f) + horizontalLineToRelative(4.75f) + verticalLineToRelative(8.25f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-9.0f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-13.0f) + close() + moveTo(7.75f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(7.0f, 15.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + close() + moveTo(10.0f, 12.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(10.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.05f) + close() + moveTo(12.0f, 6.75f) + lineTo(12.0f, 2.47f) + lineToRelative(0.22f, 0.19f) + lineToRelative(4.62f, 4.62f) + lineToRelative(0.2f, 0.22f) + horizontalLineToRelative(-4.29f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(6.63f, 20.5f) + curveToRelative(0.3f, 0.87f, 1.14f, 1.5f, 2.12f, 1.5f) + horizontalLineToRelative(6.5f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 20.0f, 17.25f) + verticalLineToRelative(-5.88f) + curveToRelative(0.0f, -0.6f, -0.24f, -1.17f, -0.66f, -1.6f) + lineToRelative(-0.84f, -0.83f) + verticalLineToRelative(8.31f) + curveToRelative(0.0f, 1.8f, -1.45f, 3.25f, -3.25f, 3.25f) + lineTo(6.63f, 20.5f) + close() + } + } + return _documentBulletListMultiple!! + } + +private var _documentBulletListMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentBulletListOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentBulletListOff.kt new file mode 100644 index 00000000..75cdb82e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentBulletListOff.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentBulletListOff: ImageVector + get() { + if (_documentBulletListOff != null) { + return _documentBulletListOff!! + } + _documentBulletListOff = fluentIcon(name = "Filled.DocumentBulletListOff") { + fluentPath { + moveTo(4.0f, 5.06f) + lineTo(4.0f, 20.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.8f, -1.14f) + lineToRelative(0.92f, 0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(4.0f, 5.06f) + close() + moveTo(16.47f, 17.53f) + lineTo(16.97f, 18.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.72f, 0.97f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(5.5f) + curveToRelative(0.08f, 0.0f, 0.15f, 0.01f, 0.22f, 0.03f) + close() + moveTo(14.94f, 16.0f) + horizontalLineToRelative(-4.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.69f) + lineToRelative(1.5f, 1.5f) + close() + moveTo(11.94f, 13.0f) + horizontalLineToRelative(-1.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.26f, -1.45f) + lineTo(11.94f, 13.0f) + close() + moveTo(7.0f, 12.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(7.0f, 15.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(7.0f, 18.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(16.25f, 13.0f) + horizontalLineToRelative(-0.07f) + lineTo(20.0f, 16.82f) + lineTo(20.0f, 10.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.29f, -0.47f) + lineToRelative(1.97f, 1.97f) + horizontalLineToRelative(1.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(12.0f, 8.0f) + curveToRelative(0.0f, 0.5f, 0.18f, 0.94f, 0.47f, 1.29f) + lineTo(5.31f, 2.12f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 6.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(6.0f) + close() + moveTo(13.5f, 8.0f) + lineTo(13.5f, 2.5f) + lineToRelative(6.0f, 6.0f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + } + } + return _documentBulletListOff!! + } + +private var _documentBulletListOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentCatchUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentCatchUp.kt new file mode 100644 index 00000000..75ab88cc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentCatchUp.kt @@ -0,0 +1,93 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentCatchUp: ImageVector + get() { + if (_documentCatchUp != null) { + return _documentCatchUp!! + } + _documentCatchUp = fluentIcon(name = "Filled.DocumentCatchUp") { + fluentPath { + moveTo(12.0f, 2.0f) + lineTo(6.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(8.0f) + horizontalLineToRelative(0.6f) + lineToRelative(1.3f, -2.95f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 3.1f, -0.2f) + lineToRelative(0.02f, 0.04f) + lineToRelative(0.09f, 0.18f) + lineToRelative(1.73f, 4.31f) + lineToRelative(0.34f, -0.5f) + curveToRelative(0.27f, -0.47f, 0.73f, -0.78f, 1.24f, -0.86f) + horizontalLineToRelative(0.06f) + lineToRelative(0.18f, -0.02f) + horizontalLineToRelative(2.04f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.26f, 3.48f) + horizontalLineToRelative(-0.05f) + lineToRelative(-0.18f, 0.02f) + lineTo(13.7f, 15.5f) + lineToRelative(-1.66f, 2.6f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -3.03f, 0.05f) + lineToRelative(-0.03f, -0.05f) + lineToRelative(-0.08f, -0.17f) + lineToRelative(-1.46f, -3.65f) + lineToRelative(-0.08f, 0.17f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.32f, 1.03f) + horizontalLineToRelative(-0.06f) + lineToRelative(-0.19f, 0.02f) + lineTo(4.0f, 15.5f) + lineTo(4.0f, 20.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 10.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(12.0f, 2.0f) + close() + moveTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 2.5f) + lineToRelative(6.0f, 6.0f) + lineTo(14.0f, 8.5f) + close() + moveTo(5.26f, 13.0f) + lineTo(2.64f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.11f, 1.5f) + horizontalLineToRelative(3.1f) + lineToRelative(0.02f, -0.01f) + horizontalLineToRelative(0.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.52f, -0.44f) + lineToRelative(1.04f, -2.36f) + lineToRelative(2.33f, 5.83f) + lineToRelative(0.05f, 0.1f) + verticalLineToRelative(0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.31f, -0.04f) + lineToRelative(1.98f, -3.09f) + lineTo(14.81f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.11f, -1.5f) + horizontalLineToRelative(-2.12f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.55f, 0.4f) + lineToRelative(-1.42f, 2.1f) + lineToRelative(-2.42f, -6.03f) + lineToRelative(-0.05f, -0.1f) + verticalLineToRelative(-0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.33f, 0.09f) + lineTo(5.26f, 13.0f) + close() + moveTo(5.75f, 14.5f) + lineTo(4.0f, 14.5f) + close() + } + } + return _documentCatchUp!! + } + +private var _documentCatchUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentCheckmark.kt new file mode 100644 index 00000000..35e8b4f5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentCheckmark.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentCheckmark: ImageVector + get() { + if (_documentCheckmark != null) { + return _documentCheckmark!! + } + _documentCheckmark = fluentIcon(name = "Filled.DocumentCheckmark") { + fluentPath { + moveTo(12.0f, 2.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-6.81f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) + verticalLineTo(4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.0f) + close() + } + fluentPath { + moveTo(13.5f, 2.5f) + verticalLineTo(8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.5f) + lineToRelative(-6.0f, -6.0f) + close() + } + fluentPath { + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(9.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineTo(5.5f, 18.79f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _documentCheckmark!! + } + +private var _documentCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentChevronDouble.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentChevronDouble.kt new file mode 100644 index 00000000..570314bc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentChevronDouble.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentChevronDouble: ImageVector + get() { + if (_documentChevronDouble != null) { + return _documentChevronDouble!! + } + _documentChevronDouble = fluentIcon(name = "Filled.DocumentChevronDouble") { + fluentPath { + moveTo(12.0f, 2.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-6.81f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.0f) + close() + moveTo(13.5f, 2.5f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.5f) + lineToRelative(-6.0f, -6.0f) + close() + moveTo(6.5f, 23.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, 11.0f) + close() + moveTo(5.35f, 15.35f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineTo(3.21f, 17.5f) + lineToRelative(2.14f, -2.15f) + close() + moveTo(7.65f, 14.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(2.14f, 2.15f) + lineToRelative(-2.14f, 2.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + close() + } + } + return _documentChevronDouble!! + } + +private var _documentChevronDouble: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentCopy.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentCopy.kt new file mode 100644 index 00000000..11023a1a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentCopy.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentCopy: ImageVector + get() { + if (_documentCopy != null) { + return _documentCopy!! + } + _documentCopy = fluentIcon(name = "Filled.DocumentCopy") { + fluentPath { + moveTo(13.0f, 6.75f) + lineTo(13.0f, 2.0f) + lineTo(8.75f, 2.0f) + curveTo(7.51f, 2.0f, 6.5f, 3.0f, 6.5f, 4.25f) + verticalLineToRelative(13.0f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(9.0f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 9.0f) + horizontalLineToRelative(-4.75f) + curveTo(14.01f, 9.0f, 13.0f, 8.0f, 13.0f, 6.75f) + close() + moveTo(14.5f, 6.75f) + lineTo(14.5f, 2.5f) + lineToRelative(5.0f, 5.0f) + horizontalLineToRelative(-4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(5.5f, 4.63f) + curveTo(4.63f, 4.93f, 4.0f, 5.77f, 4.0f, 6.75f) + verticalLineToRelative(10.5f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 8.75f, 22.0f) + horizontalLineToRelative(6.5f) + curveToRelative(0.97f, 0.0f, 1.8f, -0.62f, 2.12f, -1.5f) + lineTo(8.75f, 20.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.25f, -3.25f) + lineTo(5.5f, 4.63f) + close() + } + } + return _documentCopy!! + } + +private var _documentCopy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentCss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentCss.kt new file mode 100644 index 00000000..d5d6e66c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentCss.kt @@ -0,0 +1,135 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentCss: ImageVector + get() { + if (_documentCss != null) { + return _documentCss!! + } + _documentCss = fluentIcon(name = "Filled.DocumentCss") { + fluentPath { + moveTo(12.0f, 8.0f) + lineTo(12.0f, 2.0f) + lineTo(6.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(10.04f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 2.38f, 1.47f) + curveToRelative(0.5f, -0.9f, 1.47f, -1.51f, 2.57f, -1.51f) + horizontalLineToRelative(0.1f) + curveToRelative(1.02f, 0.0f, 1.92f, 0.52f, 2.45f, 1.3f) + arcToRelative(2.95f, 2.95f, 0.0f, false, true, 2.45f, -1.3f) + horizontalLineToRelative(0.1f) + arcTo(2.95f, 2.95f, 0.0f, false, true, 17.0f, 16.95f) + lineTo(17.0f, 17.0f) + curveToRelative(0.0f, 0.45f, -0.17f, 0.86f, -0.45f, 1.17f) + curveToRelative(0.29f, 0.44f, 0.45f, 0.96f, 0.45f, 1.5f) + verticalLineToRelative(0.38f) + curveToRelative(0.0f, 0.75f, -0.28f, 1.43f, -0.74f, 1.95f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 10.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + close() + moveTo(14.05f, 22.0f) + curveToRelative(1.08f, 0.0f, 1.95f, -0.87f, 1.95f, -1.95f) + verticalLineToRelative(-0.37f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.1f, -1.63f) + lineToRelative(-0.57f, -0.22f) + lineToRelative(-0.7f, -0.43f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.13f, -0.22f) + verticalLineToRelative(-0.23f) + curveToRelative(0.0f, -0.25f, 0.2f, -0.45f, 0.45f, -0.45f) + horizontalLineToRelative(0.1f) + arcToRelative(0.45f, 0.45f, 0.0f, false, true, 0.45f, 0.45f) + lineTo(14.5f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.05f) + curveToRelative(0.0f, -1.08f, -0.87f, -1.95f, -1.95f, -1.95f) + horizontalLineToRelative(-0.1f) + curveToRelative(-1.08f, 0.0f, -1.95f, 0.87f, -1.95f, 1.95f) + verticalLineToRelative(0.37f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 1.1f, 1.63f) + lineToRelative(0.57f, 0.22f) + lineToRelative(0.7f, 0.43f) + curveToRelative(0.08f, 0.05f, 0.13f, 0.13f, 0.13f, 0.22f) + verticalLineToRelative(0.23f) + curveToRelative(0.0f, 0.25f, -0.2f, 0.45f, -0.45f, 0.45f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.45f, 0.45f, 0.0f, false, true, -0.45f, -0.45f) + lineTo(13.5f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(0.05f) + curveToRelative(0.0f, 1.08f, 0.87f, 1.95f, 1.95f, 1.95f) + horizontalLineToRelative(0.1f) + close() + moveTo(11.0f, 20.05f) + arcTo(1.94f, 1.94f, 0.0f, false, true, 9.05f, 22.0f) + horizontalLineToRelative(-0.1f) + arcTo(1.95f, 1.95f, 0.0f, false, true, 7.0f, 20.05f) + lineTo(7.0f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -0.72f) + curveToRelative(0.3f, 0.1f, 0.53f, 0.38f, 0.53f, 0.72f) + verticalLineToRelative(0.05f) + arcToRelative(0.45f, 0.45f, 0.0f, false, false, 0.45f, 0.45f) + horizontalLineToRelative(0.1f) + curveToRelative(0.25f, 0.0f, 0.45f, -0.2f, 0.45f, -0.45f) + verticalLineToRelative(-0.23f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.12f, -0.22f) + lineToRelative(-0.71f, -0.43f) + lineToRelative(-0.57f, -0.22f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 7.0f, 17.32f) + verticalLineToRelative(-0.37f) + curveTo(7.0f, 15.87f, 7.87f, 15.0f, 8.95f, 15.0f) + horizontalLineToRelative(0.1f) + curveToRelative(1.08f, 0.0f, 1.95f, 0.87f, 1.95f, 1.95f) + lineTo(11.0f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.53f, -0.72f) + verticalLineToRelative(-0.05f) + arcToRelative(0.45f, 0.45f, 0.0f, false, false, -0.45f, -0.45f) + horizontalLineToRelative(-0.1f) + curveToRelative(-0.25f, 0.0f, -0.45f, 0.2f, -0.45f, 0.45f) + verticalLineToRelative(0.23f) + curveToRelative(0.0f, 0.1f, 0.05f, 0.17f, 0.12f, 0.22f) + lineToRelative(0.71f, 0.43f) + lineToRelative(0.57f, 0.22f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 1.1f, 1.63f) + verticalLineToRelative(0.37f) + close() + moveTo(5.95f, 22.0f) + lineToRelative(0.05f, -0.05f) + lineTo(6.0f, 22.0f) + horizontalLineToRelative(-0.05f) + close() + moveTo(4.83f, 21.62f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 6.0f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, 0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, -0.75f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) + verticalLineToRelative(2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.83f, 2.12f) + close() + moveTo(13.5f, 8.0f) + lineTo(13.5f, 2.5f) + lineToRelative(6.0f, 6.0f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + } + } + return _documentCss!! + } + +private var _documentCss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentData.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentData.kt new file mode 100644 index 00000000..e7a97edc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentData.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentData: ImageVector + get() { + if (_documentData != null) { + return _documentData!! + } + _documentData = fluentIcon(name = "Filled.DocumentData") { + fluentPath { + moveTo(12.0f, 8.0f) + lineTo(12.0f, 2.0f) + lineTo(6.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(16.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 10.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + close() + moveTo(12.0f, 12.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-5.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(8.75f, 16.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(15.25f, 14.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(13.5f, 8.0f) + lineTo(13.5f, 2.5f) + lineToRelative(6.0f, 6.0f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + } + } + return _documentData!! + } + +private var _documentData: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentDataLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentDataLink.kt new file mode 100644 index 00000000..02a85918 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentDataLink.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentDataLink: ImageVector + get() { + if (_documentDataLink != null) { + return _documentDataLink!! + } + _documentDataLink = fluentIcon(name = "Filled.DocumentDataLink") { + fluentPath { + moveTo(12.0f, 8.0f) + lineTo(12.0f, 2.0f) + lineTo(6.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(10.56f) + curveToRelative(0.24f, -0.04f, 0.5f, -0.06f, 0.75f, -0.06f) + horizontalLineToRelative(3.5f) + curveToRelative(1.14f, 0.0f, 2.18f, 0.4f, 3.0f, 1.07f) + verticalLineToRelative(-2.82f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(4.98f) + arcToRelative(4.74f, 4.74f, 0.0f, false, true, -0.63f, 4.27f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 10.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + close() + moveTo(15.25f, 14.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(13.5f, 8.0f) + lineTo(13.5f, 2.5f) + lineToRelative(6.0f, 6.0f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + moveTo(12.0f, 19.25f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.75f, -3.75f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + lineTo(8.25f, 23.0f) + horizontalLineToRelative(0.2f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 12.0f, 19.24f) + close() + moveTo(5.5f, 16.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-0.2f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + lineTo(4.6f, 21.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(9.0f, 19.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + } + } + return _documentDataLink!! + } + +private var _documentDataLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentDatabase.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentDatabase.kt new file mode 100644 index 00000000..e13d48c5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentDatabase.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentDatabase: ImageVector + get() { + if (_documentDatabase != null) { + return _documentDatabase!! + } + _documentDatabase = fluentIcon(name = "Filled.DocumentDatabase") { + fluentPath { + moveTo(12.0f, 2.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-6.53f) + curveToRelative(0.32f, -0.42f, 0.53f, -0.92f, 0.53f, -1.5f) + verticalLineToRelative(-6.2f) + arcToRelative(2.65f, 2.65f, 0.0f, false, false, -0.85f, -1.65f) + arcToRelative(5.17f, 5.17f, 0.0f, false, false, -1.8f, -1.09f) + arcToRelative(8.66f, 8.66f, 0.0f, false, false, -1.7f, -0.43f) + arcToRelative(10.68f, 10.68f, 0.0f, false, false, -3.65f, 0.06f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.0f) + close() + moveTo(11.0f, 20.5f) + curveToRelative(0.0f, 0.56f, -0.37f, 1.08f, -1.0f, 1.5f) + curveToRelative(-0.91f, 0.6f, -2.36f, 1.0f, -4.0f, 1.0f) + curveToRelative(-2.05f, 0.0f, -3.81f, -0.62f, -4.58f, -1.5f) + curveToRelative(-0.27f, -0.3f, -0.42f, -0.64f, -0.42f, -1.0f) + verticalLineToRelative(-4.0f) + curveToRelative(0.31f, 0.26f, 0.66f, 0.49f, 1.02f, 0.66f) + curveToRelative(0.57f, 0.29f, 1.25f, 0.51f, 1.98f, 0.65f) + arcToRelative(10.53f, 10.53f, 0.0f, false, false, 5.0f, -0.25f) + curveToRelative(0.35f, -0.11f, 0.68f, -0.25f, 0.98f, -0.4f) + lineTo(10.0f, 17.16f) + lineToRelative(0.02f, -0.02f) + curveToRelative(0.34f, -0.17f, 0.68f, -0.39f, 0.98f, -0.65f) + verticalLineToRelative(4.01f) + close() + moveTo(6.0f, 17.0f) + curveToRelative(-0.71f, 0.0f, -1.39f, -0.07f, -2.0f, -0.2f) + curveToRelative(-1.77f, -0.4f, -3.0f, -1.27f, -3.0f, -2.3f) + curveToRelative(0.0f, -1.03f, 1.23f, -1.9f, 3.0f, -2.3f) + arcToRelative(9.42f, 9.42f, 0.0f, false, true, 5.0f, 0.3f) + curveToRelative(1.21f, 0.46f, 2.0f, 1.18f, 2.0f, 2.0f) + curveToRelative(0.0f, 0.43f, -0.21f, 0.83f, -0.6f, 1.18f) + arcToRelative(0.82f, 0.82f, 0.0f, false, true, -0.06f, 0.06f) + arcToRelative(3.83f, 3.83f, 0.0f, false, true, -1.15f, 0.69f) + arcToRelative(5.95f, 5.95f, 0.0f, false, true, -1.26f, 0.38f) + arcToRelative(8.58f, 8.58f, 0.0f, false, true, -0.55f, 0.1f) + horizontalLineToRelative(-0.02f) + arcTo(9.7f, 9.7f, 0.0f, false, true, 6.0f, 17.0f) + close() + moveTo(13.5f, 2.5f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.5f) + lineToRelative(-6.0f, -6.0f) + close() + } + } + return _documentDatabase!! + } + +private var _documentDatabase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentDismiss.kt new file mode 100644 index 00000000..92c38c89 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentDismiss.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentDismiss: ImageVector + get() { + if (_documentDismiss != null) { + return _documentDismiss!! + } + _documentDismiss = fluentIcon(name = "Filled.DocumentDismiss") { + fluentPath { + moveTo(12.0f, 2.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-6.81f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.0f) + close() + moveTo(13.5f, 2.5f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.5f) + lineToRelative(-6.0f, -6.0f) + close() + moveTo(6.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, -11.0f) + close() + moveTo(8.98f, 15.73f) + lineTo(7.2f, 17.5f) + lineToRelative(1.77f, 1.77f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -0.7f, 0.7f) + lineTo(6.5f, 18.22f) + lineToRelative(-1.77f, 1.76f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -0.7f, -0.7f) + lineToRelative(1.76f, -1.77f) + lineToRelative(-1.76f, -1.77f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.7f, -0.7f) + lineToRelative(1.77f, 1.76f) + lineToRelative(1.77f, -1.77f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, 0.71f) + close() + } + } + return _documentDismiss!! + } + +private var _documentDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentEdit.kt new file mode 100644 index 00000000..0f644e0b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentEdit.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentEdit: ImageVector + get() { + if (_documentEdit != null) { + return _documentEdit!! + } + _documentEdit = fluentIcon(name = "Filled.DocumentEdit") { + fluentPath { + moveTo(12.0f, 2.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.92f) + arcToRelative(4.3f, 4.3f, 0.0f, false, false, -1.56f, 0.97f) + lineToRelative(-6.05f, 6.1f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.79f, -0.73f, 1.27f) + lineToRelative(-0.52f, 2.03f) + curveToRelative(-0.16f, 0.6f, -0.04f, 1.17f, 0.24f, 1.63f) + lineTo(5.5f, 22.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 4.0f, 20.5f) + verticalLineToRelative(-17.0f) + curveTo(4.0f, 2.67f, 4.67f, 2.0f, 5.5f, 2.0f) + lineTo(12.0f, 2.0f) + close() + moveTo(13.5f, 2.5f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.5f) + lineToRelative(-6.0f, -6.0f) + close() + moveTo(12.2f, 17.57f) + lineTo(18.1f, 11.67f) + arcToRelative(2.29f, 2.29f, 0.0f, true, true, 3.23f, 3.23f) + lineToRelative(-5.9f, 5.9f) + curveToRelative(-0.35f, 0.35f, -0.78f, 0.6f, -1.25f, 0.71f) + lineToRelative(-1.83f, 0.46f) + curveToRelative(-0.8f, 0.2f, -1.52f, -0.52f, -1.32f, -1.32f) + lineToRelative(0.46f, -1.83f) + curveToRelative(0.12f, -0.47f, 0.36f, -0.9f, 0.7f, -1.25f) + close() + } + } + return _documentEdit!! + } + +private var _documentEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentEndnote.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentEndnote.kt new file mode 100644 index 00000000..a56a0a08 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentEndnote.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentEndnote: ImageVector + get() { + if (_documentEndnote != null) { + return _documentEndnote!! + } + _documentEndnote = fluentIcon(name = "Filled.DocumentEndnote") { + fluentPath { + moveTo(12.0f, 2.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + lineTo(13.0f, 22.0f) + verticalLineToRelative(-8.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + lineTo(4.0f, 12.0f) + lineTo(4.0f, 3.5f) + curveTo(4.0f, 2.67f, 4.67f, 2.0f, 5.5f, 2.0f) + lineTo(12.0f, 2.0f) + close() + moveTo(13.5f, 2.5f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.5f) + lineToRelative(-6.0f, -6.0f) + close() + moveTo(7.25f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + lineTo(5.75f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-3.5f) + close() + moveTo(7.25f, 15.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(4.5f, 13.75f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(2.5f, 14.5f) + verticalLineToRelative(7.0f) + horizontalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(2.5f, 23.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 1.0f, 21.5f) + verticalLineToRelative(-7.0f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(1.25f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(9.25f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.25f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(7.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + lineTo(9.25f, 23.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.25f) + verticalLineToRelative(-7.0f) + lineTo(9.25f, 14.5f) + close() + } + } + return _documentEndnote!! + } + +private var _documentEndnote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentError.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentError.kt new file mode 100644 index 00000000..7004c2bd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentError.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentError: ImageVector + get() { + if (_documentError != null) { + return _documentError!! + } + _documentError = fluentIcon(name = "Filled.DocumentError") { + fluentPath { + moveTo(12.0f, 2.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-6.81f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.0f) + close() + moveTo(13.5f, 2.5f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.5f) + lineToRelative(-6.0f, -6.0f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(6.5f, 14.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(6.5f, 21.13f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.25f) + close() + } + } + return _documentError!! + } + +private var _documentError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentFit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentFit.kt new file mode 100644 index 00000000..f693bf2d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentFit.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentFit: ImageVector + get() { + if (_documentFit != null) { + return _documentFit!! + } + _documentFit = fluentIcon(name = "Filled.DocumentFit") { + fluentPath { + moveTo(6.25f, 2.0f) + curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) + verticalLineToRelative(15.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 4.25f) + curveTo(20.0f, 3.01f, 19.0f, 2.0f, 17.75f, 2.0f) + lineTo(6.25f, 2.0f) + close() + moveTo(9.0f, 6.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(7.0f, 7.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(9.0f, 6.5f) + close() + moveTo(9.0f, 17.5f) + horizontalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(9.0f, 19.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + verticalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(8.5f, 17.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + close() + moveTo(15.5f, 7.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + horizontalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(15.0f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + verticalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(15.5f, 7.0f) + close() + moveTo(15.0f, 17.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(17.0f, 17.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(15.0f, 17.5f) + close() + } + } + return _documentFit!! + } + +private var _documentFit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentFlowchart.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentFlowchart.kt new file mode 100644 index 00000000..44d27db2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentFlowchart.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentFlowchart: ImageVector + get() { + if (_documentFlowchart != null) { + return _documentFlowchart!! + } + _documentFlowchart = fluentIcon(name = "Filled.DocumentFlowchart") { + fluentPath { + moveTo(12.0f, 8.0f) + lineTo(12.0f, 2.0f) + lineTo(6.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(16.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 10.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + close() + moveTo(6.5f, 8.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-0.5f) + verticalLineToRelative(2.69f) + lineToRelative(1.56f, 1.56f) + horizontalLineToRelative(2.69f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-0.5f) + horizontalLineToRelative(-2.69f) + lineToRelative(-1.78f, 1.78f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(1.78f, -1.78f) + lineTo(7.75f, 11.5f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-2.5f) + close() + moveTo(13.5f, 8.0f) + lineTo(13.5f, 2.5f) + lineToRelative(6.0f, 6.0f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + } + } + return _documentFlowchart!! + } + +private var _documentFlowchart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentFolder.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentFolder.kt new file mode 100644 index 00000000..ac29da47 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentFolder.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentFolder: ImageVector + get() { + if (_documentFolder != null) { + return _documentFolder!! + } + _documentFolder = fluentIcon(name = "Filled.DocumentFolder") { + fluentPath { + moveTo(18.5f, 6.75f) + verticalLineTo(4.63f) + curveToRelative(0.87f, 0.3f, 1.5f, 1.14f, 1.5f, 2.12f) + verticalLineToRelative(7.5f) + curveToRelative(-0.38f, -0.16f, -0.8f, -0.25f, -1.25f, -0.25f) + horizontalLineToRelative(-0.25f) + verticalLineTo(6.75f) + close() + moveTo(4.0f, 4.25f) + verticalLineToRelative(3.0f) + curveToRelative(0.38f, -0.16f, 0.8f, -0.25f, 1.25f, -0.25f) + horizontalLineTo(8.1f) + curveToRelative(0.9f, 0.0f, 1.76f, 0.38f, 2.38f, 1.04f) + lineTo(16.0f, 14.0f) + horizontalLineToRelative(1.49f) + verticalLineTo(4.25f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-9.0f) + curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) + close() + moveTo(5.25f, 8.0f) + curveTo(4.01f, 8.0f, 3.0f, 9.0f, 3.0f, 10.25f) + verticalLineToRelative(8.5f) + curveTo(3.0f, 20.55f, 4.46f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineTo(15.9f) + curveToRelative(-0.2f, 0.0f, -0.4f, -0.09f, -0.55f, -0.24f) + lineToRelative(-5.6f, -6.04f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 8.1f, 8.0f) + horizontalLineTo(5.25f) + close() + } + } + return _documentFolder!! + } + +private var _documentFolder: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentFooter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentFooter.kt new file mode 100644 index 00000000..b2a4ed90 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentFooter.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentFooter: ImageVector + get() { + if (_documentFooter != null) { + return _documentFooter!! + } + _documentFooter = fluentIcon(name = "Filled.DocumentFooter") { + fluentPath { + moveTo(17.75f, 2.0f) + curveToRelative(1.19f, 0.0f, 2.16f, 0.92f, 2.24f, 2.1f) + verticalLineToRelative(15.65f) + curveToRelative(0.0f, 1.18f, -0.92f, 2.16f, -2.09f, 2.24f) + horizontalLineTo(6.25f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.25f, -2.1f) + verticalLineTo(4.25f) + curveTo(4.0f, 3.07f, 4.92f, 2.09f, 6.1f, 2.0f) + horizontalLineToRelative(11.65f) + close() + moveTo(8.5f, 16.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + horizontalLineToRelative(7.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + horizontalLineToRelative(-7.0f) + close() + } + } + return _documentFooter!! + } + +private var _documentFooter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentFooterDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentFooterDismiss.kt new file mode 100644 index 00000000..27e140a1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentFooterDismiss.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentFooterDismiss: ImageVector + get() { + if (_documentFooterDismiss != null) { + return _documentFooterDismiss!! + } + _documentFooterDismiss = fluentIcon(name = "Filled.DocumentFooterDismiss") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.86f, 4.15f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.71f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, -0.71f) + lineTo(18.21f, 6.5f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineTo(17.5f, 5.79f) + lineToRelative(-1.64f, -1.64f) + close() + moveTo(17.5f, 13.0f) + curveToRelative(0.89f, 0.0f, 1.73f, -0.17f, 2.5f, -0.5f) + verticalLineToRelative(7.25f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + lineTo(6.25f, 22.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveToRelative(0.0f, -1.2f, 0.92f, -2.17f, 2.1f, -2.25f) + lineTo(12.82f, 2.0f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, 4.69f, 11.0f) + close() + moveTo(8.5f, 16.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + horizontalLineToRelative(7.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + horizontalLineToRelative(-7.0f) + close() + } + } + return _documentFooterDismiss!! + } + +private var _documentFooterDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentHeader.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentHeader.kt new file mode 100644 index 00000000..e0db5dcc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentHeader.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentHeader: ImageVector + get() { + if (_documentHeader != null) { + return _documentHeader!! + } + _documentHeader = fluentIcon(name = "Filled.DocumentHeader") { + fluentPath { + moveTo(17.75f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + horizontalLineTo(6.25f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(4.0f, 19.75f) + verticalLineTo(4.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(6.25f, 2.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(8.51f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + horizontalLineToRelative(7.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + horizontalLineToRelative(-7.0f) + close() + } + } + return _documentHeader!! + } + +private var _documentHeader: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentHeaderArrowDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentHeaderArrowDown.kt new file mode 100644 index 00000000..07fa5bd7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentHeaderArrowDown.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentHeaderArrowDown: ImageVector + get() { + if (_documentHeaderArrowDown != null) { + return _documentHeaderArrowDown!! + } + _documentHeaderArrowDown = fluentIcon(name = "Filled.DocumentHeaderArrowDown") { + fluentPath { + moveTo(17.75f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(7.25f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.81f, 22.0f) + lineTo(6.25f, 22.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(6.25f, 2.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(8.51f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + horizontalLineToRelative(7.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + horizontalLineToRelative(-7.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(18.0f, 14.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(4.8f) + lineToRelative(-1.65f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.5f, 2.5f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineTo(18.0f, 19.29f) + lineTo(18.0f, 14.5f) + close() + } + } + return _documentHeaderArrowDown!! + } + +private var _documentHeaderArrowDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentHeaderDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentHeaderDismiss.kt new file mode 100644 index 00000000..9fbc102b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentHeaderDismiss.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentHeaderDismiss: ImageVector + get() { + if (_documentHeaderDismiss != null) { + return _documentHeaderDismiss!! + } + _documentHeaderDismiss = fluentIcon(name = "Filled.DocumentHeaderDismiss") { + fluentPath { + moveTo(17.75f, 2.0f) + curveToRelative(1.19f, 0.0f, 2.16f, 0.92f, 2.24f, 2.1f) + verticalLineToRelative(7.4f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.8f, 22.0f) + lineTo(6.26f, 22.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(4.0f, 19.74f) + lineTo(4.0f, 4.25f) + curveToRelative(0.0f, -1.2f, 0.92f, -2.17f, 2.1f, -2.24f) + lineTo(6.25f, 2.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(8.5f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + horizontalLineToRelative(7.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + horizontalLineToRelative(-7.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.86f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.71f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-1.64f, -1.65f) + lineToRelative(1.64f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.71f) + lineToRelative(-1.65f, 1.64f) + lineToRelative(-1.64f, -1.64f) + close() + } + } + return _documentHeaderDismiss!! + } + +private var _documentHeaderDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentHeaderFooter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentHeaderFooter.kt new file mode 100644 index 00000000..e2a125d2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentHeaderFooter.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentHeaderFooter: ImageVector + get() { + if (_documentHeaderFooter != null) { + return _documentHeaderFooter!! + } + _documentHeaderFooter = fluentIcon(name = "Filled.DocumentHeaderFooter") { + fluentPath { + moveTo(17.75f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + lineTo(6.25f, 22.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(6.25f, 2.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(7.01f, 6.5f) + curveTo(7.0f, 7.33f, 7.68f, 8.0f, 8.5f, 8.0f) + horizontalLineToRelative(7.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + horizontalLineToRelative(-7.0f) + curveTo(7.68f, 5.0f, 7.0f, 5.68f, 7.0f, 6.5f) + close() + moveTo(7.01f, 17.5f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(7.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + horizontalLineToRelative(-7.0f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.68f, -1.5f, 1.5f) + close() + } + } + return _documentHeaderFooter!! + } + +private var _documentHeaderFooter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentHeart.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentHeart.kt new file mode 100644 index 00000000..dab7522c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentHeart.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentHeart: ImageVector + get() { + if (_documentHeart != null) { + return _documentHeart!! + } + _documentHeart = fluentIcon(name = "Filled.DocumentHeart") { + fluentPath { + moveTo(12.0f, 2.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + lineTo(9.49f, 22.0f) + lineToRelative(3.17f, -3.17f) + arcToRelative(4.47f, 4.47f, 0.0f, false, false, -5.65f, -6.87f) + curveToRelative(-0.9f, -0.6f, -1.97f, -0.85f, -3.01f, -0.73f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.0f) + close() + moveTo(13.5f, 2.5f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.5f) + lineToRelative(-6.0f, -6.0f) + close() + moveTo(7.01f, 22.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.53f, -0.22f) + lineToRelative(-4.4f, -4.4f) + arcToRelative(3.47f, 3.47f, 0.0f, true, true, 4.9f, -4.91f) + lineToRelative(0.03f, 0.04f) + lineToRelative(0.04f, -0.04f) + arcToRelative(3.47f, 3.47f, 0.0f, true, true, 4.9f, 4.9f) + lineToRelative(-4.4f, 4.41f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.22f) + close() + } + } + return _documentHeart!! + } + +private var _documentHeart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentHeartPulse.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentHeartPulse.kt new file mode 100644 index 00000000..743ac8df --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentHeartPulse.kt @@ -0,0 +1,88 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentHeartPulse: ImageVector + get() { + if (_documentHeartPulse != null) { + return _documentHeartPulse!! + } + _documentHeartPulse = fluentIcon(name = "Filled.DocumentHeartPulse") { + fluentPath { + moveTo(12.0f, 2.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + lineTo(9.73f, 22.0f) + lineToRelative(2.58f, -2.58f) + lineToRelative(0.02f, -0.02f) + lineToRelative(0.34f, -0.34f) + arcToRelative(4.6f, 4.6f, 0.0f, false, false, -5.63f, -7.2f) + curveToRelative(-0.92f, -0.58f, -2.0f, -0.8f, -3.04f, -0.66f) + lineTo(4.0f, 3.5f) + curveTo(4.0f, 2.67f, 4.67f, 2.0f, 5.5f, 2.0f) + lineTo(12.0f, 2.0f) + close() + moveTo(13.5f, 2.5f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.5f) + lineToRelative(-6.0f, -6.0f) + close() + moveTo(2.06f, 13.22f) + arcToRelative(3.6f, 3.6f, 0.0f, false, true, 4.97f, -0.12f) + arcToRelative(3.6f, 3.6f, 0.0f, false, true, 5.99f, 2.9f) + horizontalLineToRelative(-2.05f) + lineToRelative(-0.73f, -0.74f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.55f, 0.08f) + lineToRelative(-0.5f, 0.55f) + lineToRelative(-0.73f, -1.11f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -3.03f, 0.19f) + lineTo(2.92f, 16.0f) + horizontalLineToRelative(-1.9f) + arcToRelative(3.6f, 3.6f, 0.0f, false, true, 1.04f, -2.78f) + close() + moveTo(3.25f, 19.5f) + lineTo(6.5f, 22.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 0.0f) + lineToRelative(3.26f, -3.25f) + lineTo(8.67f, 19.5f) + lineToRelative(-0.36f, 0.41f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -2.77f, -0.19f) + lineToRelative(-0.14f, -0.22f) + lineTo(3.25f, 19.5f) + close() + moveTo(5.62f, 15.33f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.3f, 0.08f) + lineTo(3.55f, 17.0f) + lineTo(1.75f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(4.0f, 18.5f) + curveToRelative(0.28f, 0.0f, 0.54f, -0.16f, 0.67f, -0.41f) + lineToRelative(0.42f, -0.85f) + lineToRelative(1.29f, 1.93f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.18f, 0.08f) + lineToRelative(1.47f, -1.66f) + lineToRelative(0.69f, 0.69f) + curveToRelative(0.14f, 0.14f, 0.33f, 0.22f, 0.53f, 0.22f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.69f) + lineToRelative(-1.03f, -1.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.1f, 0.03f) + lineTo(7.1f, 17.53f) + lineToRelative(-1.47f, -2.2f) + close() + } + } + return _documentHeartPulse!! + } + +private var _documentHeartPulse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentJavascript.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentJavascript.kt new file mode 100644 index 00000000..1f254af5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentJavascript.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentJavascript: ImageVector + get() { + if (_documentJavascript != null) { + return _documentJavascript!! + } + _documentJavascript = fluentIcon(name = "Filled.DocumentJavascript") { + fluentPath { + moveTo(12.0f, 8.0f) + lineTo(12.0f, 2.0f) + lineTo(6.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(10.02f) + arcToRelative(1.76f, 1.76f, 0.0f, false, true, 1.8f, 0.91f) + curveToRelative(0.54f, -0.57f, 1.3f, -0.93f, 2.15f, -0.93f) + horizontalLineToRelative(0.1f) + arcTo(2.95f, 2.95f, 0.0f, false, true, 11.0f, 16.95f) + lineTo(11.0f, 17.0f) + curveToRelative(0.0f, 0.45f, -0.17f, 0.86f, -0.45f, 1.17f) + curveToRelative(0.29f, 0.44f, 0.45f, 0.96f, 0.45f, 1.5f) + verticalLineToRelative(0.38f) + curveToRelative(0.0f, 0.75f, -0.28f, 1.43f, -0.74f, 1.95f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 10.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + close() + moveTo(13.5f, 8.0f) + lineTo(13.5f, 2.5f) + lineToRelative(6.0f, 6.0f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + moveTo(4.25f, 15.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(5.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(2.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-4.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(7.95f, 15.0f) + curveTo(6.87f, 15.0f, 6.0f, 15.87f, 6.0f, 16.95f) + verticalLineToRelative(0.23f) + curveToRelative(0.0f, 0.62f, 0.32f, 1.19f, 0.85f, 1.5f) + lineToRelative(1.53f, 0.92f) + curveToRelative(0.07f, 0.05f, 0.12f, 0.13f, 0.12f, 0.22f) + verticalLineToRelative(0.23f) + curveToRelative(0.0f, 0.25f, -0.2f, 0.45f, -0.45f, 0.45f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.45f, 0.45f, 0.0f, false, true, -0.45f, -0.45f) + lineTo(7.5f, 20.0f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 6.0f, 20.0f) + verticalLineToRelative(0.05f) + curveTo(6.0f, 21.13f, 6.87f, 22.0f, 7.95f, 22.0f) + horizontalLineToRelative(0.1f) + curveToRelative(1.08f, 0.0f, 1.95f, -0.87f, 1.95f, -1.95f) + verticalLineToRelative(-0.23f) + curveToRelative(0.0f, -0.62f, -0.32f, -1.19f, -0.85f, -1.5f) + lineToRelative(-1.53f, -0.92f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.12f, -0.22f) + verticalLineToRelative(-0.23f) + curveToRelative(0.0f, -0.25f, 0.2f, -0.45f, 0.45f, -0.45f) + horizontalLineToRelative(0.1f) + curveToRelative(0.25f, 0.0f, 0.45f, 0.2f, 0.45f, 0.45f) + lineTo(8.5f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.05f) + curveTo(10.0f, 15.87f, 9.13f, 15.0f, 8.05f, 15.0f) + horizontalLineToRelative(-0.1f) + close() + } + } + return _documentJavascript!! + } + +private var _documentJavascript: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentLandscape.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentLandscape.kt new file mode 100644 index 00000000..f38bd255 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentLandscape.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentLandscape: ImageVector + get() { + if (_documentLandscape != null) { + return _documentLandscape!! + } + _documentLandscape = fluentIcon(name = "Filled.DocumentLandscape") { + fluentPath { + moveTo(22.0f, 12.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(14.0f, 4.0f) + lineTo(4.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(12.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(16.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + verticalLineToRelative(-6.0f) + close() + moveTo(21.5f, 10.5f) + lineTo(16.0f, 10.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(15.5f, 4.5f) + lineToRelative(6.0f, 6.0f) + close() + } + } + return _documentLandscape!! + } + +private var _documentLandscape: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentLandscapeData.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentLandscapeData.kt new file mode 100644 index 00000000..cfecb061 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentLandscapeData.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentLandscapeData: ImageVector + get() { + if (_documentLandscapeData != null) { + return _documentLandscapeData!! + } + _documentLandscapeData = fluentIcon(name = "Filled.DocumentLandscapeData") { + fluentPath { + moveTo(2.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) + verticalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) + lineTo(4.75f, 20.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) + lineTo(2.0f, 6.75f) + close() + moveTo(12.0f, 7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 4.0f, 0.0f) + lineTo(14.0f, 9.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + close() + moveTo(7.0f, 12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 4.0f, 0.0f) + verticalLineToRelative(-1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + close() + moveTo(15.0f, 12.0f) + verticalLineToRelative(3.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 4.0f, 0.0f) + verticalLineToRelative(-3.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, -4.0f, 0.0f) + close() + } + } + return _documentLandscapeData!! + } + +private var _documentLandscapeData: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentLandscapeSplit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentLandscapeSplit.kt new file mode 100644 index 00000000..7642fabc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentLandscapeSplit.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentLandscapeSplit: ImageVector + get() { + if (_documentLandscapeSplit != null) { + return _documentLandscapeSplit!! + } + _documentLandscapeSplit = fluentIcon(name = "Filled.DocumentLandscapeSplit") { + fluentPath { + moveTo(10.5f, 4.0f) + lineTo(4.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(12.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.5f) + lineTo(10.5f, 4.0f) + close() + moveTo(12.0f, 20.0f) + horizontalLineToRelative(8.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + verticalLineToRelative(-6.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(14.0f, 4.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(16.0f) + close() + moveTo(16.0f, 10.5f) + horizontalLineToRelative(5.5f) + lineToRelative(-6.0f, -6.0f) + lineTo(15.5f, 10.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + close() + } + } + return _documentLandscapeSplit!! + } + +private var _documentLandscapeSplit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentLandscapeSplitHint.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentLandscapeSplitHint.kt new file mode 100644 index 00000000..a2a21382 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentLandscapeSplitHint.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentLandscapeSplitHint: ImageVector + get() { + if (_documentLandscapeSplitHint != null) { + return _documentLandscapeSplitHint!! + } + _documentLandscapeSplitHint = fluentIcon(name = "Filled.DocumentLandscapeSplitHint") { + fluentPath { + moveTo(12.75f, 4.0f) + lineTo(14.0f, 4.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-7.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(12.0f, 4.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(21.49f, 10.43f) + lineTo(21.56f, 10.5f) + lineTo(16.0f, 10.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(15.5f, 4.44f) + lineToRelative(0.07f, 0.07f) + lineToRelative(5.92f, 5.92f) + close() + moveTo(3.5f, 10.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-3.5f) + close() + moveTo(7.0f, 4.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.0f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 4.75f) + close() + moveTo(7.75f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.0f) + close() + moveTo(2.0f, 6.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(4.0f, 5.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(2.0f, 6.0f) + close() + moveTo(4.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + verticalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(3.5f, 18.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(4.0f, 20.0f) + close() + } + } + return _documentLandscapeSplitHint!! + } + +private var _documentLandscapeSplitHint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentLink.kt new file mode 100644 index 00000000..712ed2c0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentLink.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentLink: ImageVector + get() { + if (_documentLink != null) { + return _documentLink!! + } + _documentLink = fluentIcon(name = "Filled.DocumentLink") { + fluentPath { + moveTo(12.0f, 2.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-5.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, -4.0f, -8.0f) + lineTo(4.0f, 14.0f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.0f) + close() + moveTo(13.5f, 2.5f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.5f) + lineToRelative(-6.0f, -6.0f) + close() + moveTo(5.75f, 15.75f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 5.0f, 15.0f) + horizontalLineToRelative(-0.2f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.2f, 8.0f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-0.16f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.16f, -5.0f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(13.0f, 19.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, -4.0f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(0.16f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -0.16f, 5.0f) + horizontalLineToRelative(-0.1f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 9.0f, 23.0f) + horizontalLineToRelative(0.2f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.8f, -4.0f) + close() + moveTo(8.75f, 18.25f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + } + } + return _documentLink!! + } + +private var _documentLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentLock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentLock.kt new file mode 100644 index 00000000..38594d8a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentLock.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentLock: ImageVector + get() { + if (_documentLock != null) { + return _documentLock!! + } + _documentLock = fluentIcon(name = "Filled.DocumentLock") { + fluentPath { + moveTo(12.0f, 2.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-6.05f) + curveToRelative(0.03f, -0.16f, 0.05f, -0.33f, 0.05f, -0.5f) + verticalLineToRelative(-5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.0f, -2.45f) + lineTo(10.0f, 14.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -6.0f, -2.45f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.0f) + close() + moveTo(13.5f, 2.5f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.5f) + lineToRelative(-6.0f, -6.0f) + close() + moveTo(4.0f, 15.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(6.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(9.0f, 15.0f) + verticalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) + verticalLineToRelative(1.0f) + close() + moveTo(5.5f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(7.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + } + } + return _documentLock!! + } + +private var _documentLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentMargins.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentMargins.kt new file mode 100644 index 00000000..0c320f3a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentMargins.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentMargins: ImageVector + get() { + if (_documentMargins != null) { + return _documentMargins!! + } + _documentMargins = fluentIcon(name = "Filled.DocumentMargins") { + fluentPath { + moveTo(15.5f, 2.0f) + horizontalLineToRelative(-7.0f) + verticalLineToRelative(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(7.0f, 2.0f) + horizontalLineToRelative(-0.75f) + curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) + verticalLineToRelative(15.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + lineTo(7.0f, 22.0f) + verticalLineToRelative(-4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(8.5f, 22.0f) + horizontalLineToRelative(7.0f) + verticalLineToRelative(-4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(17.0f, 22.0f) + horizontalLineToRelative(0.75f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 4.25f) + curveTo(20.0f, 3.01f, 19.0f, 2.0f, 17.75f, 2.0f) + lineTo(17.0f, 2.0f) + verticalLineToRelative(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(15.5f, 2.0f) + close() + moveTo(7.75f, 8.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-5.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(17.0f, 9.25f) + verticalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + } + } + return _documentMargins!! + } + +private var _documentMargins: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentMention.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentMention.kt new file mode 100644 index 00000000..719dca67 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentMention.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentMention: ImageVector + get() { + if (_documentMention != null) { + return _documentMention!! + } + _documentMention = fluentIcon(name = "Filled.DocumentMention") { + fluentPath { + moveTo(12.0f, 2.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-7.98f) + curveToRelative(0.0f, -0.15f, -0.02f, -0.3f, -0.07f, -0.46f) + curveToRelative(1.97f, -0.21f, 3.25f, -2.1f, 3.25f, -4.04f) + arcTo(6.7f, 6.7f, 0.0f, false, false, 4.0f, 11.28f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.0f) + close() + moveTo(13.5f, 2.5f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.5f) + lineToRelative(-6.0f, -6.0f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -3.84f, 5.24f) + lineToRelative(0.23f, -0.07f) + lineToRelative(0.08f, -0.04f) + arcToRelative(0.66f, 0.66f, 0.0f, false, false, -0.53f, -1.2f) + lineToRelative(-0.17f, 0.06f) + lineToRelative(-0.25f, 0.06f) + arcToRelative(4.2f, 4.2f, 0.0f, false, true, -5.2f, -4.05f) + arcToRelative(4.18f, 4.18f, 0.0f, false, true, 8.36f, 0.0f) + curveToRelative(0.0f, 0.9f, -0.55f, 1.54f, -1.1f, 1.54f) + curveToRelative(-0.41f, 0.0f, -0.66f, -0.45f, -0.66f, -1.54f) + verticalLineToRelative(-2.29f) + arcToRelative(0.66f, 0.66f, 0.0f, false, false, -1.23f, -0.24f) + arcToRelative(2.2f, 2.2f, 0.0f, false, false, -1.19f, -0.33f) + curveToRelative(-1.49f, 0.0f, -2.42f, 1.33f, -2.42f, 2.86f) + curveToRelative(0.0f, 1.53f, 0.93f, 2.86f, 2.42f, 2.86f) + curveToRelative(0.67f, 0.0f, 1.23f, -0.27f, 1.64f, -0.7f) + curveToRelative(0.32f, 0.44f, 0.8f, 0.7f, 1.44f, 0.7f) + curveToRelative(1.33f, 0.0f, 2.42f, -1.27f, 2.42f, -2.86f) + close() + moveTo(5.4f, 17.5f) + curveToRelative(0.0f, -0.88f, 0.46f, -1.54f, 1.1f, -1.54f) + curveToRelative(0.64f, 0.0f, 1.1f, 0.66f, 1.1f, 1.54f) + reflectiveCurveToRelative(-0.46f, 1.54f, -1.1f, 1.54f) + curveToRelative(-0.64f, 0.0f, -1.1f, -0.66f, -1.1f, -1.54f) + close() + } + } + return _documentMention!! + } + +private var _documentMention: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentMultiple.kt new file mode 100644 index 00000000..9e8ccff6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentMultiple.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentMultiple: ImageVector + get() { + if (_documentMultiple != null) { + return _documentMultiple!! + } + _documentMultiple = fluentIcon(name = "Filled.DocumentMultiple") { + fluentPath { + moveTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(4.25f) + verticalLineToRelative(4.75f) + curveTo(10.5f, 7.99f, 11.51f, 9.0f, 12.75f, 9.0f) + horizontalLineToRelative(4.75f) + verticalLineToRelative(8.25f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-9.0f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-13.0f) + close() + } + fluentPath { + moveTo(12.0f, 6.75f) + verticalLineTo(2.47f) + lineToRelative(0.22f, 0.19f) + lineToRelative(4.62f, 4.62f) + lineToRelative(0.2f, 0.22f) + horizontalLineToRelative(-4.29f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + fluentPath { + moveTo(8.75f, 22.0f) + curveToRelative(-0.98f, 0.0f, -1.81f, -0.63f, -2.12f, -1.5f) + horizontalLineToRelative(8.62f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineTo(8.94f) + lineToRelative(0.84f, 0.84f) + curveToRelative(0.42f, 0.42f, 0.66f, 1.0f, 0.66f, 1.59f) + verticalLineToRelative(5.88f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 15.25f, 22.0f) + horizontalLineToRelative(-6.5f) + close() + } + } + return _documentMultiple!! + } + +private var _documentMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentMultiplePercent.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentMultiplePercent.kt new file mode 100644 index 00000000..8baecfb6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentMultiplePercent.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentMultiplePercent: ImageVector + get() { + if (_documentMultiplePercent != null) { + return _documentMultiplePercent!! + } + _documentMultiplePercent = fluentIcon(name = "Filled.DocumentMultiplePercent") { + fluentPath { + moveTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(4.25f) + verticalLineToRelative(4.75f) + curveTo(10.5f, 7.99f, 11.51f, 9.0f, 12.75f, 9.0f) + horizontalLineToRelative(4.75f) + verticalLineToRelative(8.25f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-2.4f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 9.5f, 17.0f) + horizontalLineToRelative(-0.03f) + lineToRelative(2.02f, -2.01f) + arcTo(1.75f, 1.75f, 0.0f, true, false, 9.0f, 12.5f) + lineTo(7.0f, 14.53f) + verticalLineToRelative(-0.03f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -3.0f, -3.46f) + lineTo(4.0f, 4.25f) + close() + moveTo(13.0f, 20.5f) + curveToRelative(0.0f, 0.54f, -0.12f, 1.05f, -0.34f, 1.5f) + horizontalLineToRelative(2.6f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 20.0f, 17.25f) + verticalLineToRelative(-5.88f) + curveToRelative(0.0f, -0.6f, -0.24f, -1.17f, -0.66f, -1.6f) + lineToRelative(-0.84f, -0.83f) + verticalLineToRelative(8.31f) + curveToRelative(0.0f, 1.8f, -1.45f, 3.25f, -3.25f, 3.25f) + lineTo(13.0f, 20.5f) + close() + moveTo(12.0f, 6.75f) + lineTo(12.0f, 2.47f) + lineToRelative(0.22f, 0.19f) + lineToRelative(4.62f, 4.62f) + lineToRelative(0.2f, 0.22f) + horizontalLineToRelative(-4.29f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(3.5f, 17.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) + close() + moveTo(3.5f, 13.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(9.5f, 23.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) + close() + moveTo(9.5f, 19.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(10.78f, 14.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-7.5f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(7.5f, -7.5f) + close() + } + } + return _documentMultiplePercent!! + } + +private var _documentMultiplePercent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentMultipleProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentMultipleProhibited.kt new file mode 100644 index 00000000..c1ec6cd0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentMultipleProhibited.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentMultipleProhibited: ImageVector + get() { + if (_documentMultipleProhibited != null) { + return _documentMultipleProhibited!! + } + _documentMultipleProhibited = fluentIcon(name = "Filled.DocumentMultipleProhibited") { + fluentPath { + moveTo(13.0f, 6.75f) + lineTo(13.0f, 2.0f) + lineTo(8.75f, 2.0f) + curveTo(7.51f, 2.0f, 6.5f, 3.0f, 6.5f, 4.25f) + lineTo(6.5f, 11.0f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, 6.19f, 8.5f) + horizontalLineToRelative(5.06f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 9.0f) + horizontalLineToRelative(-4.75f) + curveTo(14.01f, 9.0f, 13.0f, 8.0f, 13.0f, 6.75f) + close() + moveTo(5.5f, 4.63f) + verticalLineToRelative(6.45f) + curveToRelative(-0.52f, 0.08f, -1.03f, 0.22f, -1.5f, 0.42f) + lineTo(4.0f, 6.75f) + curveToRelative(0.0f, -0.98f, 0.63f, -1.81f, 1.5f, -2.12f) + close() + moveTo(15.24f, 22.0f) + lineTo(11.2f, 22.0f) + curveToRelative(0.42f, -0.44f, 0.79f, -0.94f, 1.08f, -1.5f) + horizontalLineToRelative(5.1f) + curveToRelative(-0.31f, 0.88f, -1.15f, 1.5f, -2.13f, 1.5f) + close() + moveTo(14.5f, 6.75f) + lineTo(14.5f, 2.5f) + lineToRelative(5.0f, 5.0f) + horizontalLineToRelative(-4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(2.5f, 17.5f) + curveToRelative(0.0f, 0.83f, 0.25f, 1.6f, 0.7f, 2.25f) + lineToRelative(5.55f, -5.56f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) + close() + moveTo(6.5f, 21.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) + lineToRelative(-5.55f, 5.56f) + curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) + close() + } + } + return _documentMultipleProhibited!! + } + +private var _documentMultipleProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentOnePage.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentOnePage.kt new file mode 100644 index 00000000..87b3d882 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentOnePage.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentOnePage: ImageVector + get() { + if (_documentOnePage != null) { + return _documentOnePage!! + } + _documentOnePage = fluentIcon(name = "Filled.DocumentOnePage") { + fluentPath { + moveTo(6.25f, 2.0f) + curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) + verticalLineToRelative(15.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 4.25f) + curveTo(20.0f, 3.01f, 19.0f, 2.0f, 17.75f, 2.0f) + lineTo(6.25f, 2.0f) + close() + moveTo(7.75f, 6.0f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(7.0f, 16.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(7.75f, 11.0f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + } + } + return _documentOnePage!! + } + +private var _documentOnePage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentOnePageAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentOnePageAdd.kt new file mode 100644 index 00000000..41d8be56 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentOnePageAdd.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentOnePageAdd: ImageVector + get() { + if (_documentOnePageAdd != null) { + return _documentOnePageAdd!! + } + _documentOnePageAdd = fluentIcon(name = "Filled.DocumentOnePageAdd") { + fluentPath { + moveTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(11.5f) + curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) + verticalLineToRelative(7.25f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, -3.44f, -0.43f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.31f, -0.07f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.6f) + arcToRelative(6.49f, 6.49f, 0.0f, false, false, -0.54f, 9.5f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 4.25f) + close() + moveTo(16.25f, 6.0f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _documentOnePageAdd!! + } + +private var _documentOnePageAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentOnePageColumns.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentOnePageColumns.kt new file mode 100644 index 00000000..02ffdbb1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentOnePageColumns.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentOnePageColumns: ImageVector + get() { + if (_documentOnePageColumns != null) { + return _documentOnePageColumns!! + } + _documentOnePageColumns = fluentIcon(name = "Filled.DocumentOnePageColumns") { + fluentPath { + moveTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(11.5f) + curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 4.25f) + close() + moveTo(8.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(9.5f, 5.75f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 8.75f, 5.0f) + close() + moveTo(16.0f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(16.0f, 5.75f) + close() + } + } + return _documentOnePageColumns!! + } + +private var _documentOnePageColumns: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentOnePageLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentOnePageLink.kt new file mode 100644 index 00000000..e2b56938 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentOnePageLink.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentOnePageLink: ImageVector + get() { + if (_documentOnePageLink != null) { + return _documentOnePageLink!! + } + _documentOnePageLink = fluentIcon(name = "Filled.DocumentOnePageLink") { + fluentPath { + moveTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(11.5f) + curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) + verticalLineToRelative(9.58f) + arcToRelative(4.74f, 4.74f, 0.0f, false, false, -1.75f, -0.33f) + horizontalLineToRelative(-3.5f) + arcToRelative(4.75f, 4.75f, 0.0f, false, false, -2.92f, 8.5f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 4.25f) + close() + moveTo(16.25f, 6.0f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(16.25f, 11.0f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(22.0f, 18.25f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.75f, -3.75f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + lineTo(18.25f, 22.0f) + horizontalLineToRelative(0.2f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 22.0f, 18.24f) + close() + moveTo(15.5f, 15.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-0.2f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(19.0f, 18.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + } + } + return _documentOnePageLink!! + } + +private var _documentOnePageLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPageBottomCenter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPageBottomCenter.kt new file mode 100644 index 00000000..b79f9295 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPageBottomCenter.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentPageBottomCenter: ImageVector + get() { + if (_documentPageBottomCenter != null) { + return _documentPageBottomCenter!! + } + _documentPageBottomCenter = fluentIcon(name = "Filled.DocumentPageBottomCenter") { + fluentPath { + moveToRelative(11.26f, 16.88f) + lineToRelative(0.23f, -1.5f) + horizontalLineToRelative(1.48f) + lineToRelative(-0.23f, 1.5f) + horizontalLineToRelative(-1.48f) + close() + moveTo(17.75f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.19f, -0.93f, 2.16f, -2.1f, 2.24f) + horizontalLineTo(6.25f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.09f) + lineTo(4.0f, 19.75f) + verticalLineTo(4.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(6.25f, 2.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(12.4f, 19.04f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.48f, 0.24f) + lineToRelative(0.14f, -0.9f) + horizontalLineToRelative(0.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.5f) + lineToRelative(0.24f, -1.5f) + horizontalLineToRelative(0.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.52f) + lineToRelative(0.16f, -1.02f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.48f, -0.24f) + lineToRelative(-0.2f, 1.26f) + horizontalLineToRelative(-1.48f) + lineToRelative(0.16f, -1.02f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.48f, -0.24f) + lineToRelative(-0.2f, 1.26f) + horizontalLineToRelative(-0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.73f) + lineToRelative(-0.24f, 1.5f) + horizontalLineToRelative(-0.99f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.75f) + lineToRelative(-0.1f, 0.66f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.48f, 0.24f) + lineToRelative(0.14f, -0.9f) + horizontalLineToRelative(1.48f) + lineToRelative(-0.1f, 0.66f) + close() + } + } + return _documentPageBottomCenter!! + } + +private var _documentPageBottomCenter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPageBottomLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPageBottomLeft.kt new file mode 100644 index 00000000..08d9e9aa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPageBottomLeft.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentPageBottomLeft: ImageVector + get() { + if (_documentPageBottomLeft != null) { + return _documentPageBottomLeft!! + } + _documentPageBottomLeft = fluentIcon(name = "Filled.DocumentPageBottomLeft") { + fluentPath { + moveToRelative(9.26f, 16.88f) + lineToRelative(0.23f, -1.5f) + horizontalLineToRelative(1.48f) + lineToRelative(-0.23f, 1.5f) + horizontalLineTo(9.26f) + close() + moveTo(17.75f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.19f, -0.93f, 2.16f, -2.1f, 2.24f) + horizontalLineTo(6.25f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.09f) + lineTo(4.0f, 19.75f) + verticalLineTo(4.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(6.25f, 2.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(10.4f, 19.04f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.48f, 0.24f) + lineToRelative(0.14f, -0.9f) + horizontalLineToRelative(0.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.5f) + lineToRelative(0.24f, -1.5f) + horizontalLineToRelative(0.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.52f) + lineToRelative(0.16f, -1.02f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.48f, -0.24f) + lineToRelative(-0.2f, 1.26f) + horizontalLineTo(9.73f) + lineToRelative(0.16f, -1.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.48f, -0.24f) + lineToRelative(-0.2f, 1.26f) + horizontalLineToRelative(-0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.73f) + lineToRelative(-0.24f, 1.5f) + horizontalLineToRelative(-0.99f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.75f) + lineToRelative(-0.1f, 0.66f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.48f, 0.24f) + lineToRelative(0.14f, -0.9f) + horizontalLineToRelative(1.48f) + lineToRelative(-0.1f, 0.66f) + close() + } + } + return _documentPageBottomLeft!! + } + +private var _documentPageBottomLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPageBottomRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPageBottomRight.kt new file mode 100644 index 00000000..8bac567b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPageBottomRight.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentPageBottomRight: ImageVector + get() { + if (_documentPageBottomRight != null) { + return _documentPageBottomRight!! + } + _documentPageBottomRight = fluentIcon(name = "Filled.DocumentPageBottomRight") { + fluentPath { + moveToRelative(13.26f, 16.88f) + lineToRelative(0.23f, -1.5f) + horizontalLineToRelative(1.48f) + lineToRelative(-0.23f, 1.5f) + horizontalLineToRelative(-1.48f) + close() + moveTo(17.75f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.19f, -0.93f, 2.16f, -2.1f, 2.24f) + horizontalLineTo(6.25f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.09f) + lineTo(4.0f, 19.75f) + verticalLineTo(4.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(6.25f, 2.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(14.4f, 19.04f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.48f, 0.24f) + lineToRelative(0.14f, -0.9f) + horizontalLineToRelative(0.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.5f) + lineToRelative(0.24f, -1.5f) + horizontalLineToRelative(0.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.52f) + lineToRelative(0.16f, -1.02f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.48f, -0.24f) + lineToRelative(-0.2f, 1.26f) + horizontalLineToRelative(-1.48f) + lineToRelative(0.16f, -1.02f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.48f, -0.24f) + lineToRelative(-0.2f, 1.26f) + horizontalLineToRelative(-0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.72f) + lineToRelative(-0.23f, 1.5f) + horizontalLineToRelative(-0.99f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.75f) + lineToRelative(-0.1f, 0.66f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.48f, 0.24f) + lineToRelative(0.14f, -0.9f) + horizontalLineToRelative(1.48f) + lineToRelative(-0.1f, 0.66f) + close() + } + } + return _documentPageBottomRight!! + } + +private var _documentPageBottomRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPageBreak.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPageBreak.kt new file mode 100644 index 00000000..4a89c718 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPageBreak.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentPageBreak: ImageVector + get() { + if (_documentPageBreak != null) { + return _documentPageBreak!! + } + _documentPageBreak = fluentIcon(name = "Filled.DocumentPageBreak") { + fluentPath { + moveTo(2.5f, 12.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 2.5f, 12.0f) + close() + moveTo(6.5f, 12.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 6.5f, 12.0f) + close() + moveTo(10.5f, 12.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(14.5f, 12.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(18.5f, 12.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(5.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(5.0f, 2.0f) + close() + moveTo(19.0f, 22.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineToRelative(-4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + lineTo(6.0f, 15.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(14.0f) + close() + } + } + return _documentPageBreak!! + } + +private var _documentPageBreak: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPageNumber.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPageNumber.kt new file mode 100644 index 00000000..4829ff2a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPageNumber.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentPageNumber: ImageVector + get() { + if (_documentPageNumber != null) { + return _documentPageNumber!! + } + _documentPageNumber = fluentIcon(name = "Filled.DocumentPageNumber") { + fluentPath { + moveToRelative(11.26f, 13.0f) + lineToRelative(0.23f, -1.5f) + horizontalLineToRelative(1.48f) + lineToRelative(-0.23f, 1.5f) + horizontalLineToRelative(-1.48f) + close() + moveTo(17.75f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.19f, -0.93f, 2.16f, -2.1f, 2.24f) + lineTo(6.25f, 21.99f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.09f) + lineTo(4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(6.25f, 2.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(12.4f, 15.16f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.48f, 0.23f) + lineToRelative(0.14f, -0.9f) + horizontalLineToRelative(0.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.5f) + lineToRelative(0.24f, -1.5f) + horizontalLineToRelative(0.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.52f) + lineToRelative(0.16f, -1.02f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.48f, -0.23f) + lineToRelative(-0.2f, 1.26f) + horizontalLineToRelative(-1.48f) + lineToRelative(0.16f, -1.03f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.48f, -0.23f) + lineToRelative(-0.2f, 1.26f) + horizontalLineToRelative(-0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.73f) + lineTo(9.74f, 13.0f) + horizontalLineToRelative(-0.99f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.75f) + lineToRelative(-0.1f, 0.66f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.48f, 0.23f) + lineToRelative(0.14f, -0.9f) + horizontalLineToRelative(1.48f) + lineToRelative(-0.1f, 0.67f) + close() + } + } + return _documentPageNumber!! + } + +private var _documentPageNumber: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPageTopCenter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPageTopCenter.kt new file mode 100644 index 00000000..4f0289f0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPageTopCenter.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentPageTopCenter: ImageVector + get() { + if (_documentPageTopCenter != null) { + return _documentPageTopCenter!! + } + _documentPageTopCenter = fluentIcon(name = "Filled.DocumentPageTopCenter") { + fluentPath { + moveToRelative(11.26f, 9.0f) + lineToRelative(0.23f, -1.5f) + horizontalLineToRelative(1.48f) + lineTo(12.74f, 9.0f) + horizontalLineToRelative(-1.48f) + close() + moveTo(17.75f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.19f, -0.93f, 2.16f, -2.1f, 2.24f) + lineTo(6.25f, 21.99f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.09f) + lineTo(4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(6.25f, 2.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(12.4f, 11.16f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.48f, 0.23f) + lineToRelative(0.14f, -0.9f) + horizontalLineToRelative(0.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.5f) + lineToRelative(0.24f, -1.5f) + horizontalLineToRelative(0.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.52f) + lineToRelative(0.16f, -1.02f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.48f, -0.23f) + lineTo(13.21f, 6.0f) + horizontalLineToRelative(-1.48f) + lineToRelative(0.16f, -1.03f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.48f, -0.23f) + lineTo(10.21f, 6.0f) + horizontalLineToRelative(-0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(0.73f) + lineTo(9.74f, 9.0f) + horizontalLineToRelative(-0.99f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(0.75f) + lineToRelative(-0.1f, 0.66f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.48f, 0.23f) + lineToRelative(0.14f, -0.9f) + horizontalLineToRelative(1.48f) + lineToRelative(-0.1f, 0.67f) + close() + } + } + return _documentPageTopCenter!! + } + +private var _documentPageTopCenter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPageTopLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPageTopLeft.kt new file mode 100644 index 00000000..2febc579 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPageTopLeft.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentPageTopLeft: ImageVector + get() { + if (_documentPageTopLeft != null) { + return _documentPageTopLeft!! + } + _documentPageTopLeft = fluentIcon(name = "Filled.DocumentPageTopLeft") { + fluentPath { + moveToRelative(9.26f, 9.0f) + lineToRelative(0.23f, -1.5f) + horizontalLineToRelative(1.48f) + lineTo(10.74f, 9.0f) + lineTo(9.26f, 9.0f) + close() + moveTo(17.75f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.19f, -0.93f, 2.16f, -2.1f, 2.24f) + lineTo(6.25f, 21.99f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.09f) + lineTo(4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(6.25f, 2.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(10.4f, 11.16f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.48f, 0.23f) + lineToRelative(0.14f, -0.9f) + horizontalLineToRelative(0.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.5f) + lineToRelative(0.24f, -1.5f) + horizontalLineToRelative(0.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.52f) + lineToRelative(0.16f, -1.02f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.48f, -0.23f) + lineTo(11.21f, 6.0f) + lineTo(9.73f, 6.0f) + lineToRelative(0.16f, -1.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.48f, -0.23f) + lineTo(8.21f, 6.0f) + horizontalLineToRelative(-0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(0.73f) + lineTo(7.74f, 9.0f) + horizontalLineToRelative(-0.99f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(0.75f) + lineToRelative(-0.1f, 0.66f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.48f, 0.23f) + lineToRelative(0.14f, -0.9f) + horizontalLineToRelative(1.48f) + lineToRelative(-0.1f, 0.67f) + close() + } + } + return _documentPageTopLeft!! + } + +private var _documentPageTopLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPageTopRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPageTopRight.kt new file mode 100644 index 00000000..08e4ec66 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPageTopRight.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentPageTopRight: ImageVector + get() { + if (_documentPageTopRight != null) { + return _documentPageTopRight!! + } + _documentPageTopRight = fluentIcon(name = "Filled.DocumentPageTopRight") { + fluentPath { + moveToRelative(13.26f, 9.0f) + lineToRelative(0.23f, -1.5f) + horizontalLineToRelative(1.48f) + lineTo(14.74f, 9.0f) + horizontalLineToRelative(-1.48f) + close() + moveTo(17.75f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.19f, -0.93f, 2.16f, -2.1f, 2.24f) + lineTo(6.25f, 21.99f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.09f) + lineTo(4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(6.25f, 2.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(14.4f, 11.16f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.48f, 0.23f) + lineToRelative(0.14f, -0.9f) + horizontalLineToRelative(0.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.5f) + lineToRelative(0.24f, -1.5f) + horizontalLineToRelative(0.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.52f) + lineToRelative(0.16f, -1.02f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.48f, -0.23f) + lineTo(15.21f, 6.0f) + horizontalLineToRelative(-1.48f) + lineToRelative(0.16f, -1.03f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.48f, -0.23f) + lineTo(12.21f, 6.0f) + horizontalLineToRelative(-0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.72f) + lineTo(11.74f, 9.0f) + horizontalLineToRelative(-0.99f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.75f) + lineToRelative(-0.1f, 0.66f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.48f, 0.23f) + lineToRelative(0.14f, -0.9f) + horizontalLineToRelative(1.48f) + lineToRelative(-0.1f, 0.67f) + close() + } + } + return _documentPageTopRight!! + } + +private var _documentPageTopRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPdf.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPdf.kt new file mode 100644 index 00000000..8617e144 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPdf.kt @@ -0,0 +1,98 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentPdf: ImageVector + get() { + if (_documentPdf != null) { + return _documentPdf!! + } + _documentPdf = fluentIcon(name = "Filled.DocumentPdf") { + fluentPath { + moveTo(7.5f, 13.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + lineTo(8.0f, 16.0f) + horizontalLineToRelative(0.5f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + horizontalLineToRelative(-1.0f) + close() + moveTo(8.5f, 15.0f) + lineTo(8.0f, 15.0f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + close() + moveTo(15.0f, 13.5f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + lineTo(17.0f, 13.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-3.0f) + close() + moveTo(11.5f, 13.0f) + horizontalLineToRelative(0.5f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, 4.0f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + close() + moveTo(12.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + verticalLineToRelative(2.0f) + close() + moveTo(12.0f, 8.0f) + lineTo(12.0f, 2.0f) + lineTo(6.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(6.67f) + curveToRelative(-0.6f, 0.28f, -1.0f, 0.88f, -1.0f, 1.58f) + verticalLineToRelative(5.5f) + curveToRelative(0.0f, 0.7f, 0.4f, 1.3f, 1.0f, 1.58f) + lineTo(4.0f, 20.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + verticalLineToRelative(-0.67f) + curveToRelative(0.6f, -0.28f, 1.0f, -0.88f, 1.0f, -1.58f) + verticalLineToRelative(-5.5f) + curveToRelative(0.0f, -0.7f, -0.4f, -1.3f, -1.0f, -1.58f) + lineTo(20.0f, 10.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + close() + moveTo(4.75f, 12.0f) + horizontalLineToRelative(14.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(5.5f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + lineTo(4.75f, 18.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-5.5f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + close() + moveTo(13.5f, 8.0f) + lineTo(13.5f, 2.5f) + lineToRelative(6.0f, 6.0f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + } + } + return _documentPdf!! + } + +private var _documentPdf: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPercent.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPercent.kt new file mode 100644 index 00000000..fb29b6f9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPercent.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentPercent: ImageVector + get() { + if (_documentPercent != null) { + return _documentPercent!! + } + _documentPercent = fluentIcon(name = "Filled.DocumentPercent") { + fluentPath { + moveTo(12.0f, 8.0f) + lineTo(12.0f, 2.0f) + lineTo(6.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.04f) + curveToRelative(1.7f, 0.24f, 3.0f, 1.7f, 3.0f, 3.46f) + verticalLineToRelative(0.03f) + lineToRelative(2.01f, -2.02f) + arcTo(1.75f, 1.75f, 0.0f, true, true, 11.5f, 15.0f) + lineTo(9.47f, 17.0f) + horizontalLineToRelative(0.03f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 3.16f, 5.0f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 10.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + close() + moveTo(5.13f, 16.4f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 1.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 4.13f, 1.9f) + close() + moveTo(4.0f, 13.63f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.0f, 1.73f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.73f) + close() + moveTo(10.78f, 14.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-7.5f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(7.5f, -7.5f) + close() + moveTo(7.0f, 20.5f) + arcTo(2.49f, 2.49f, 0.0f, false, false, 9.5f, 23.0f) + arcTo(2.5f, 2.5f, 0.0f, true, false, 7.0f, 20.5f) + close() + moveTo(10.5f, 20.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(13.5f, 8.0f) + lineTo(13.5f, 2.5f) + lineToRelative(6.0f, 6.0f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + } + } + return _documentPercent!! + } + +private var _documentPercent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPill.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPill.kt new file mode 100644 index 00000000..778442d2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPill.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentPill: ImageVector + get() { + if (_documentPill != null) { + return _documentPill!! + } + _documentPill = fluentIcon(name = "Filled.DocumentPill") { + fluentPath { + moveTo(12.0f, 8.0f) + lineTo(12.0f, 2.0f) + lineTo(5.5f, 2.0f) + curveTo(4.67f, 2.0f, 4.0f, 2.67f, 4.0f, 3.5f) + verticalLineToRelative(17.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(5.97f) + lineToRelative(0.2f, -0.01f) + arcToRelative(3.87f, 3.87f, 0.0f, false, true, 0.6f, -4.73f) + lineToRelative(5.0f, -5.0f) + arcTo(3.86f, 3.86f, 0.0f, false, true, 20.0f, 11.13f) + lineTo(20.0f, 10.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + close() + moveTo(13.5f, 8.0f) + lineTo(13.5f, 2.5f) + lineToRelative(6.0f, 6.0f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + moveTo(22.03f, 12.97f) + arcToRelative(2.87f, 2.87f, 0.0f, false, false, -4.06f, 0.0f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(2.87f, 2.87f, 0.0f, true, false, 4.06f, 4.06f) + lineToRelative(5.0f, -5.0f) + arcToRelative(2.87f, 2.87f, 0.0f, false, false, 0.0f, -4.06f) + close() + moveTo(19.03f, 14.03f) + arcToRelative(1.37f, 1.37f, 0.0f, true, true, 1.94f, 1.94f) + lineTo(19.0f, 17.94f) + lineTo(17.06f, 16.0f) + lineToRelative(1.97f, -1.97f) + close() + moveTo(17.03f, 18.97f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-1.0f, 1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(1.0f, -1.0f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + } + } + return _documentPill!! + } + +private var _documentPill: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPrint.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPrint.kt new file mode 100644 index 00000000..9eb70465 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentPrint.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentPrint: ImageVector + get() { + if (_documentPrint != null) { + return _documentPrint!! + } + _documentPrint = fluentIcon(name = "Filled.DocumentPrint") { + fluentPath { + moveTo(12.0f, 2.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-7.1f) + curveToRelative(0.04f, -0.16f, 0.07f, -0.33f, 0.09f, -0.5f) + lineTo(11.0f, 21.5f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(13.0f, 16.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.0f, -2.45f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 8.24f, 11.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.26f, 0.0f, -0.51f, 0.04f, -0.75f, 0.1f) + lineTo(3.99f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.0f) + close() + moveTo(13.5f, 2.5f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.5f) + lineToRelative(-6.0f, -6.0f) + close() + moveTo(3.0f, 13.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(3.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(0.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-3.5f) + curveTo(3.78f, 23.0f, 3.0f, 22.22f, 3.0f, 21.25f) + verticalLineToRelative(-0.75f) + lineTo(2.0f, 20.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(1.0f, 16.0f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + lineTo(3.0f, 14.5f) + verticalLineToRelative(-0.75f) + close() + moveTo(8.5f, 13.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-0.75f) + close() + moveTo(4.5f, 19.25f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-2.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + close() + } + } + return _documentPrint!! + } + +private var _documentPrint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentProhibited.kt new file mode 100644 index 00000000..25ba72b3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentProhibited.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentProhibited: ImageVector + get() { + if (_documentProhibited != null) { + return _documentProhibited!! + } + _documentProhibited = fluentIcon(name = "Filled.DocumentProhibited") { + fluentPath { + moveTo(12.0f, 2.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-6.81f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.0f) + close() + moveTo(13.5f, 2.5f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.5f) + lineToRelative(-6.0f, -6.0f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(2.5f, 17.5f) + curveToRelative(0.0f, 0.83f, 0.25f, 1.6f, 0.7f, 2.25f) + lineToRelative(5.55f, -5.56f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) + close() + moveTo(6.5f, 21.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) + lineToRelative(-5.55f, 5.56f) + curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) + close() + } + } + return _documentProhibited!! + } + +private var _documentProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentQuestionMark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentQuestionMark.kt new file mode 100644 index 00000000..cf2f9462 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentQuestionMark.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentQuestionMark: ImageVector + get() { + if (_documentQuestionMark != null) { + return _documentQuestionMark!! + } + _documentQuestionMark = fluentIcon(name = "Filled.DocumentQuestionMark") { + fluentPath { + moveTo(12.0f, 2.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-6.81f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.0f) + close() + moveTo(13.5f, 2.5f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.5f) + lineToRelative(-6.0f, -6.0f) + close() + moveTo(1.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) + close() + moveTo(5.75f, 20.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(4.5f, 16.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) + curveToRelative(0.0f, 0.73f, -0.21f, 1.14f, -0.75f, 1.7f) + lineToRelative(-0.27f, 0.28f) + lineToRelative(-0.11f, 0.12f) + curveToRelative(-0.29f, 0.32f, -0.37f, 0.53f, -0.37f, 0.9f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + curveToRelative(0.0f, -0.73f, 0.21f, -1.14f, 0.75f, -1.7f) + lineToRelative(0.27f, -0.28f) + lineToRelative(0.11f, -0.12f) + curveToRelative(0.29f, -0.32f, 0.37f, -0.53f, 0.37f, -0.9f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + close() + } + } + return _documentQuestionMark!! + } + +private var _documentQuestionMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentQueue.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentQueue.kt new file mode 100644 index 00000000..46ecf6cc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentQueue.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentQueue: ImageVector + get() { + if (_documentQueue != null) { + return _documentQueue!! + } + _documentQueue = fluentIcon(name = "Filled.DocumentQueue") { + fluentPath { + moveTo(7.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(13.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(19.0f, 8.5f) + horizontalLineToRelative(-4.75f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(12.5f, 2.0f) + lineTo(7.0f, 2.0f) + close() + moveTo(8.75f, 5.0f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(8.0f, 8.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 8.75f) + close() + moveTo(8.75f, 11.0f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(14.0f, 2.0f) + lineToRelative(5.0f, 5.0f) + horizontalLineToRelative(-4.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + lineTo(14.0f, 2.0f) + close() + moveTo(2.75f, 15.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.75f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) + horizontalLineToRelative(11.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) + verticalLineToRelative(-1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(1.75f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -4.5f, 4.5f) + horizontalLineToRelative(-11.0f) + arcTo(4.5f, 4.5f, 0.0f, false, true, 2.0f, 17.5f) + verticalLineToRelative(-1.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(12.5f, 2.0f) + lineTo(14.0f, 2.0f) + close() + } + } + return _documentQueue!! + } + +private var _documentQueue: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentQueueAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentQueueAdd.kt new file mode 100644 index 00000000..d0ad086d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentQueueAdd.kt @@ -0,0 +1,91 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentQueueAdd: ImageVector + get() { + if (_documentQueueAdd != null) { + return _documentQueueAdd!! + } + _documentQueueAdd = fluentIcon(name = "Filled.DocumentQueueAdd") { + fluentPath { + moveTo(5.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(5.5f) + verticalLineToRelative(4.75f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(19.0f, 8.5f) + verticalLineToRelative(2.67f) + arcTo(6.52f, 6.52f, 0.0f, false, false, 11.17f, 19.0f) + lineTo(7.0f, 19.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(5.0f, 4.0f) + close() + moveTo(8.0f, 5.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(8.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.5f) + close() + moveTo(8.0f, 11.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(12.81f, 22.0f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, -1.5f) + lineTo(6.5f, 20.5f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + verticalLineToRelative(-1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.75f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 6.5f, 22.0f) + horizontalLineToRelative(6.31f) + close() + moveTo(19.0f, 7.0f) + lineToRelative(-5.0f, -5.0f) + verticalLineToRelative(4.75f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + lineTo(19.0f, 7.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + moveTo(12.5f, 2.0f) + lineTo(14.0f, 2.0f) + close() + } + } + return _documentQueueAdd!! + } + +private var _documentQueueAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentQueueMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentQueueMultiple.kt new file mode 100644 index 00000000..f500a68a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentQueueMultiple.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentQueueMultiple: ImageVector + get() { + if (_documentQueueMultiple != null) { + return _documentQueueMultiple!! + } + _documentQueueMultiple = fluentIcon(name = "Filled.DocumentQueueMultiple") { + fluentPath { + moveTo(17.35f, 6.16f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.07f, 0.08f) + lineTo(19.0f, 7.82f) + verticalLineTo(6.5f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(16.7f, 3.4f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 13.35f, 2.0f) + horizontalLineTo(7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(0.13f) + curveToRelative(0.57f, -0.4f, 1.26f, -0.63f, 2.0f, -0.63f) + horizontalLineToRelative(6.35f) + curveToRelative(0.86f, 0.0f, 1.68f, 0.34f, 2.29f, 0.95f) + lineToRelative(1.71f, 1.7f) + close() + moveTo(2.75f, 15.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.75f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) + horizontalLineToRelative(11.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) + verticalLineToRelative(-1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(1.75f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -4.5f, 4.5f) + horizontalLineToRelative(-11.0f) + arcTo(4.5f, 4.5f, 0.0f, false, true, 2.0f, 17.5f) + verticalLineToRelative(-1.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(12.5f, 5.0f) + verticalLineToRelative(4.75f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineTo(19.0f) + verticalLineTo(17.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineTo(7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + verticalLineTo(7.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(5.5f) + close() + moveTo(8.0f, 8.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(8.75f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.5f) + close() + moveTo(8.0f, 14.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(14.0f, 5.0f) + verticalLineToRelative(4.75f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineTo(19.0f) + lineToRelative(-5.0f, -5.0f) + close() + } + } + return _documentQueueMultiple!! + } + +private var _documentQueueMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentRibbon.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentRibbon.kt new file mode 100644 index 00000000..743da4da --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentRibbon.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentRibbon: ImageVector + get() { + if (_documentRibbon != null) { + return _documentRibbon!! + } + _documentRibbon = fluentIcon(name = "Filled.DocumentRibbon") { + fluentPath { + moveTo(12.0f, 2.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + lineTo(9.0f, 22.0f) + verticalLineToRelative(-3.67f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, -5.0f, -7.07f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.0f) + close() + moveTo(13.5f, 2.5f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.5f) + lineToRelative(-6.0f, -6.0f) + close() + moveTo(9.0f, 15.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, -7.0f, 0.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 7.0f, 0.0f) + close() + moveTo(3.0f, 19.24f) + verticalLineToRelative(3.05f) + curveToRelative(0.0f, 0.63f, 0.76f, 0.95f, 1.21f, 0.5f) + lineTo(5.5f, 21.5f) + lineToRelative(1.29f, 1.3f) + arcTo(0.71f, 0.71f, 0.0f, false, false, 8.0f, 22.28f) + verticalLineToRelative(-3.05f) + arcToRelative(4.48f, 4.48f, 0.0f, false, true, -5.0f, 0.0f) + close() + } + } + return _documentRibbon!! + } + +private var _documentRibbon: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentSave.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentSave.kt new file mode 100644 index 00000000..703cce20 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentSave.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentSave: ImageVector + get() { + if (_documentSave != null) { + return _documentSave!! + } + _documentSave = fluentIcon(name = "Filled.DocumentSave") { + fluentPath { + moveTo(12.0f, 2.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-5.05f) + curveToRelative(0.03f, -0.16f, 0.05f, -0.33f, 0.05f, -0.5f) + verticalLineToRelative(-6.88f) + curveToRelative(0.0f, -0.66f, -0.26f, -1.3f, -0.73f, -1.77f) + lineToRelative(-1.12f, -1.12f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 9.38f, 11.0f) + lineTo(4.0f, 11.0f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.0f) + close() + moveTo(13.5f, 2.5f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.5f) + lineToRelative(-6.0f, -6.0f) + close() + moveTo(5.0f, 12.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(2.0f) + lineTo(5.0f, 14.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(2.5f, 12.0f) + lineTo(4.0f, 12.0f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(9.0f, 12.0f) + horizontalLineToRelative(0.38f) + curveToRelative(0.4f, 0.0f, 0.78f, 0.16f, 1.06f, 0.44f) + lineToRelative(1.12f, 1.12f) + curveToRelative(0.28f, 0.28f, 0.44f, 0.66f, 0.44f, 1.06f) + verticalLineToRelative(6.88f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + lineTo(10.0f, 23.0f) + verticalLineToRelative(-5.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + horizontalLineToRelative(-6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + lineTo(3.0f, 23.0f) + horizontalLineToRelative(-0.5f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 1.0f, 21.5f) + verticalLineToRelative(-8.0f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + close() + moveTo(9.0f, 18.0f) + verticalLineToRelative(5.0f) + lineTo(4.0f, 23.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(5.0f) + close() + } + } + return _documentSave!! + } + +private var _documentSave: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentSearch.kt new file mode 100644 index 00000000..17f94cb5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentSearch.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentSearch: ImageVector + get() { + if (_documentSearch != null) { + return _documentSearch!! + } + _documentSearch = fluentIcon(name = "Filled.DocumentSearch") { + fluentPath { + moveTo(13.0f, 8.0f) + lineTo(13.0f, 2.0f) + lineTo(7.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(5.3f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 8.2f, 8.18f) + lineToRelative(3.54f, 3.53f) + curveToRelative(0.28f, 0.28f, 0.44f, 0.63f, 0.5f, 0.99f) + lineTo(19.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(21.0f, 10.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + close() + moveTo(14.97f, 22.78f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-4.11f, -4.11f) + arcToRelative(4.98f, 4.98f, 0.0f, false, false, -0.35f, -6.61f) + arcTo(4.98f, 4.98f, 0.0f, false, false, 3.0f, 14.5f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 7.82f, 4.13f) + lineToRelative(4.15f, 4.15f) + close() + moveTo(8.0f, 11.0f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 0.0f, -7.0f) + close() + moveTo(14.5f, 8.0f) + lineTo(14.5f, 2.5f) + lineToRelative(6.0f, 6.0f) + lineTo(15.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + } + } + return _documentSearch!! + } + +private var _documentSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentSplitHint.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentSplitHint.kt new file mode 100644 index 00000000..5d1766d1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentSplitHint.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentSplitHint: ImageVector + get() { + if (_documentSplitHint != null) { + return _documentSplitHint!! + } + _documentSplitHint = fluentIcon(name = "Filled.DocumentSplitHint") { + fluentPath { + moveTo(12.0f, 8.0f) + lineTo(12.0f, 2.0f) + lineTo(6.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(15.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(20.0f, 10.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + close() + moveTo(13.5f, 8.0f) + lineTo(13.5f, 2.5f) + lineToRelative(6.0f, 6.0f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + moveTo(5.5f, 13.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.5f) + close() + moveTo(19.25f, 13.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(10.25f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + close() + moveTo(4.75f, 18.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(5.5f, 20.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(6.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(18.5f, 19.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(20.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(18.0f, 20.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-0.75f) + close() + } + } + return _documentSplitHint!! + } + +private var _documentSplitHint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentSplitHintOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentSplitHintOff.kt new file mode 100644 index 00000000..c500b505 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentSplitHintOff.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentSplitHintOff: ImageVector + get() { + if (_documentSplitHintOff != null) { + return _documentSplitHintOff!! + } + _documentSplitHintOff = fluentIcon(name = "Filled.DocumentSplitHintOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineTo(4.0f, 5.06f) + verticalLineToRelative(6.44f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(6.44f) + lineToRelative(7.56f, 7.56f) + lineTo(18.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.8f, -1.14f) + lineToRelative(0.92f, 0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(18.5f, 15.32f) + lineTo(19.86f, 16.68f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.14f, -0.44f) + verticalLineToRelative(-2.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.57f) + close() + moveTo(12.71f, 9.53f) + lineTo(15.18f, 12.0f) + horizontalLineToRelative(4.32f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(20.0f, 10.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.29f, -0.47f) + close() + moveTo(12.0f, 8.0f) + curveToRelative(0.0f, 0.5f, 0.18f, 0.94f, 0.47f, 1.29f) + lineTo(5.31f, 2.12f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 6.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(6.0f) + close() + moveTo(13.5f, 8.0f) + lineTo(13.5f, 2.5f) + lineToRelative(6.0f, 6.0f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + moveTo(5.5f, 13.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.5f) + close() + moveTo(10.25f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + close() + moveTo(4.75f, 18.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(5.5f, 20.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(6.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _documentSplitHintOff!! + } + +private var _documentSplitHintOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentSync.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentSync.kt new file mode 100644 index 00000000..1bc25eaa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentSync.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentSync: ImageVector + get() { + if (_documentSync != null) { + return _documentSync!! + } + _documentSync = fluentIcon(name = "Filled.DocumentSync") { + fluentPath { + moveTo(12.0f, 2.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-6.81f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.0f) + close() + moveTo(13.5f, 2.5f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.5f) + lineToRelative(-6.0f, -6.0f) + close() + moveTo(1.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) + close() + moveTo(9.5f, 14.0f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + verticalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -0.8f, -0.59f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) + verticalLineToRelative(-0.55f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + close() + moveTo(4.0f, 19.95f) + verticalLineToRelative(0.55f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.77f, 0.65f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) + close() + } + } + return _documentSync!! + } + +private var _documentSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTable.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTable.kt new file mode 100644 index 00000000..7bd89448 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTable.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentTable: ImageVector + get() { + if (_documentTable != null) { + return _documentTable!! + } + _documentTable = fluentIcon(name = "Filled.DocumentTable") { + fluentPath { + moveTo(8.5f, 13.25f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + lineTo(10.0f, 13.0f) + verticalLineToRelative(1.5f) + lineTo(8.5f, 14.5f) + verticalLineToRelative(-1.25f) + close() + moveTo(8.5f, 16.0f) + lineTo(10.0f, 16.0f) + verticalLineToRelative(1.5f) + lineTo(8.75f, 17.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + lineTo(8.5f, 16.0f) + close() + moveTo(15.5f, 17.25f) + lineTo(15.5f, 16.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(3.75f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + close() + moveTo(11.5f, 13.0f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-1.25f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + lineTo(11.5f, 13.0f) + close() + moveTo(12.0f, 8.0f) + lineTo(12.0f, 2.0f) + lineTo(6.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(16.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 10.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + close() + moveTo(8.75f, 11.5f) + horizontalLineToRelative(6.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-6.5f) + curveTo(7.78f, 19.0f, 7.0f, 18.22f, 7.0f, 17.25f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + close() + moveTo(13.5f, 8.0f) + lineTo(13.5f, 2.5f) + lineToRelative(6.0f, 6.0f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + } + } + return _documentTable!! + } + +private var _documentTable: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTableArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTableArrowRight.kt new file mode 100644 index 00000000..e42f5774 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTableArrowRight.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentTableArrowRight: ImageVector + get() { + if (_documentTableArrowRight != null) { + return _documentTableArrowRight!! + } + _documentTableArrowRight = fluentIcon(name = "Filled.DocumentTableArrowRight") { + fluentPath { + moveTo(15.5f, 17.25f) + lineTo(15.5f, 16.0f) + horizontalLineToRelative(-2.67f) + curveToRelative(0.11f, 0.48f, 0.17f, 0.98f, 0.17f, 1.5f) + horizontalLineToRelative(2.25f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + close() + moveTo(15.5f, 14.5f) + horizontalLineToRelative(-3.23f) + curveToRelative(-0.22f, -0.41f, -0.48f, -0.8f, -0.77f, -1.15f) + lineTo(11.5f, 13.0f) + horizontalLineToRelative(3.75f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.25f) + close() + moveTo(6.5f, 11.0f) + curveToRelative(0.89f, 0.0f, 1.73f, 0.18f, 2.5f, 0.5f) + horizontalLineToRelative(6.25f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.42f) + arcToRelative(6.49f, 6.49f, 0.0f, false, true, -1.64f, 3.0f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 10.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(12.0f, 2.0f) + lineTo(6.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.5f) + curveToRelative(0.77f, -0.32f, 1.61f, -0.5f, 2.5f, -0.5f) + close() + moveTo(13.5f, 8.0f) + lineTo(13.5f, 2.5f) + lineToRelative(6.0f, 6.0f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(3.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(8.29f, 17.0f) + lineTo(3.5f, 17.0f) + close() + } + } + return _documentTableArrowRight!! + } + +private var _documentTableArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTableCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTableCheckmark.kt new file mode 100644 index 00000000..ff9e29c4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTableCheckmark.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentTableCheckmark: ImageVector + get() { + if (_documentTableCheckmark != null) { + return _documentTableCheckmark!! + } + _documentTableCheckmark = fluentIcon(name = "Filled.DocumentTableCheckmark") { + fluentPath { + moveTo(15.5f, 17.25f) + lineTo(15.5f, 16.0f) + horizontalLineToRelative(-2.67f) + curveToRelative(0.11f, 0.48f, 0.17f, 0.98f, 0.17f, 1.5f) + horizontalLineToRelative(2.25f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + close() + moveTo(15.5f, 14.5f) + horizontalLineToRelative(-3.23f) + curveToRelative(-0.22f, -0.41f, -0.48f, -0.8f, -0.77f, -1.15f) + lineTo(11.5f, 13.0f) + horizontalLineToRelative(3.75f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.25f) + close() + moveTo(6.5f, 11.0f) + curveToRelative(0.89f, 0.0f, 1.73f, 0.18f, 2.5f, 0.5f) + horizontalLineToRelative(6.25f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.42f) + arcToRelative(6.49f, 6.49f, 0.0f, false, true, -1.64f, 3.0f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 10.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(12.0f, 2.0f) + lineTo(6.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.5f) + curveToRelative(0.77f, -0.32f, 1.61f, -0.5f, 2.5f, -0.5f) + close() + moveTo(13.5f, 8.0f) + lineTo(13.5f, 2.5f) + lineToRelative(6.0f, 6.0f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(9.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineTo(5.5f, 18.79f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _documentTableCheckmark!! + } + +private var _documentTableCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTableCube.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTableCube.kt new file mode 100644 index 00000000..15fe0885 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTableCube.kt @@ -0,0 +1,91 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentTableCube: ImageVector + get() { + if (_documentTableCube != null) { + return _documentTableCube!! + } + _documentTableCube = fluentIcon(name = "Filled.DocumentTableCube") { + fluentPath { + moveTo(11.72f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -0.22f, -0.37f) + lineTo(11.5f, 13.0f) + horizontalLineToRelative(3.75f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.25f) + horizontalLineToRelative(-3.78f) + close() + moveTo(11.98f, 17.5f) + lineTo(11.98f, 16.0f) + horizontalLineToRelative(3.52f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-3.27f) + close() + moveTo(11.98f, 19.0f) + horizontalLineToRelative(3.27f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-6.5f) + curveToRelative(-0.42f, 0.0f, -0.8f, 0.15f, -1.1f, 0.4f) + lineToRelative(-0.55f, -0.28f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.24f, 0.0f) + lineToRelative(-0.86f, 0.43f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-7.43f) + lineToRelative(0.03f, -0.02f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 1.38f, -2.23f) + lineTo(11.98f, 19.0f) + close() + moveTo(13.5f, 2.5f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.5f) + lineToRelative(-6.0f, -6.0f) + close() + moveTo(0.98f, 15.6f) + verticalLineToRelative(4.15f) + curveToRelative(0.0f, 0.57f, 0.32f, 1.09f, 0.83f, 1.34f) + lineToRelative(3.5f, 1.75f) + curveToRelative(0.42f, 0.21f, 0.92f, 0.21f, 1.34f, 0.0f) + lineToRelative(3.5f, -1.75f) + curveToRelative(0.5f, -0.25f, 0.83f, -0.77f, 0.83f, -1.34f) + lineTo(10.98f, 15.6f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -0.83f, -1.34f) + lineToRelative(-3.5f, -1.75f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -1.34f, 0.0f) + lineToRelative(-3.5f, 1.75f) + curveToRelative(-0.5f, 0.26f, -0.83f, 0.77f, -0.83f, 1.34f) + close() + moveTo(2.76f, 16.37f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.44f, -0.9f) + lineToRelative(2.78f, 1.4f) + lineToRelative(2.78f, -1.4f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.44f, 0.9f) + lineToRelative(-2.72f, 1.36f) + verticalLineToRelative(2.95f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-2.95f) + lineToRelative(-2.72f, -1.36f) + close() + } + } + return _documentTableCube!! + } + +private var _documentTableCube: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTableSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTableSearch.kt new file mode 100644 index 00000000..a4f92d9f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTableSearch.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentTableSearch: ImageVector + get() { + if (_documentTableSearch != null) { + return _documentTableSearch!! + } + _documentTableSearch = fluentIcon(name = "Filled.DocumentTableSearch") { + fluentPath { + moveTo(10.47f, 19.5f) + horizontalLineToRelative(4.78f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-6.5f) + curveToRelative(-0.24f, 0.0f, -0.47f, 0.05f, -0.68f, 0.14f) + arcTo(5.48f, 5.48f, 0.0f, false, false, 4.0f, 11.7f) + lineTo(4.0f, 4.5f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-5.02f) + curveToRelative(-0.05f, -0.36f, -0.21f, -0.7f, -0.5f, -0.99f) + lineToRelative(-2.0f, -2.01f) + close() + moveTo(15.5f, 16.5f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + lineTo(11.5f, 18.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(4.0f) + close() + moveTo(11.5f, 15.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(3.75f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + lineTo(15.5f, 15.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(13.5f, 3.0f) + verticalLineToRelative(5.5f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.5f) + lineToRelative(-6.0f, -6.0f) + close() + moveTo(9.17f, 19.6f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(2.61f, 2.62f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.61f, -2.61f) + close() + moveTo(8.5f, 17.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) + close() + } + } + return _documentTableSearch!! + } + +private var _documentTableSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTableTruck.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTableTruck.kt new file mode 100644 index 00000000..9fe459a5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTableTruck.kt @@ -0,0 +1,99 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentTableTruck: ImageVector + get() { + if (_documentTableTruck != null) { + return _documentTableTruck!! + } + _documentTableTruck = fluentIcon(name = "Filled.DocumentTableTruck") { + fluentPath { + moveTo(15.11f, 17.25f) + lineTo(15.11f, 16.0f) + horizontalLineToRelative(-2.46f) + lineToRelative(0.1f, 0.2f) + curveToRelative(0.16f, 0.33f, 0.25f, 0.69f, 0.25f, 1.06f) + verticalLineToRelative(0.24f) + horizontalLineToRelative(1.86f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + close() + moveTo(15.11f, 14.5f) + horizontalLineToRelative(-3.2f) + lineToRelative(-0.19f, -0.35f) + curveToRelative(-0.15f, -0.3f, -0.36f, -0.57f, -0.6f, -0.77f) + lineTo(11.12f, 13.0f) + horizontalLineToRelative(3.74f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.25f) + close() + moveTo(13.0f, 20.25f) + lineTo(13.0f, 19.0f) + horizontalLineToRelative(1.86f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(9.18f, 11.5f) + arcToRelative(2.6f, 2.6f, 0.0f, false, false, -1.53f, -0.5f) + lineTo(3.6f, 11.0f) + lineTo(3.6f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-5.38f) + curveToRelative(0.47f, -0.43f, 0.77f, -1.06f, 0.77f, -1.75f) + close() + moveTo(13.11f, 8.0f) + lineTo(13.11f, 2.5f) + lineToRelative(6.0f, 6.0f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + moveTo(1.0f, 13.6f) + curveToRelative(0.0f, -0.88f, 0.72f, -1.6f, 1.6f, -1.6f) + horizontalLineToRelative(5.05f) + curveToRelative(0.88f, 0.0f, 1.6f, 0.72f, 1.6f, 1.6f) + verticalLineToRelative(0.23f) + horizontalLineToRelative(0.35f) + curveToRelative(0.52f, 0.0f, 1.0f, 0.3f, 1.23f, 0.76f) + lineToRelative(1.02f, 2.05f) + curveToRelative(0.1f, 0.2f, 0.15f, 0.4f, 0.15f, 0.62f) + verticalLineToRelative(2.99f) + curveToRelative(0.0f, 0.76f, -0.62f, 1.38f, -1.38f, 1.38f) + horizontalLineToRelative(-0.51f) + arcToRelative(1.83f, 1.83f, 0.0f, false, true, -3.55f, 0.0f) + lineTo(5.53f, 21.63f) + arcToRelative(1.83f, 1.83f, 0.0f, false, true, -3.59f, -0.15f) + arcTo(1.6f, 1.6f, 0.0f, false, true, 1.0f, 20.02f) + lineTo(1.0f, 13.6f) + close() + moveTo(9.25f, 14.75f) + verticalLineToRelative(1.83f) + horizontalLineToRelative(1.55f) + lineTo(10.01f, 15.0f) + arcToRelative(0.46f, 0.46f, 0.0f, false, false, -0.41f, -0.25f) + horizontalLineToRelative(-0.35f) + close() + moveTo(3.75f, 20.25f) + arcToRelative(0.92f, 0.92f, 0.0f, true, false, 0.0f, 1.83f) + arcToRelative(0.92f, 0.92f, 0.0f, false, false, 0.0f, -1.83f) + close() + moveTo(7.42f, 21.17f) + arcToRelative(0.92f, 0.92f, 0.0f, true, false, 1.83f, 0.0f) + arcToRelative(0.92f, 0.92f, 0.0f, false, false, -1.83f, 0.0f) + close() + } + } + return _documentTableTruck!! + } + +private var _documentTableTruck: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentText.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentText.kt new file mode 100644 index 00000000..ea67eabb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentText.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentText: ImageVector + get() { + if (_documentText != null) { + return _documentText!! + } + _documentText = fluentIcon(name = "Filled.DocumentText") { + fluentPath { + moveTo(12.0f, 8.0f) + lineTo(12.0f, 2.0f) + lineTo(6.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(16.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 10.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + close() + moveTo(8.25f, 11.5f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(8.25f, 14.25f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(8.25f, 17.0f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(13.5f, 8.0f) + lineTo(13.5f, 2.5f) + lineToRelative(6.0f, 6.0f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + } + } + return _documentText!! + } + +private var _documentText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTextClock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTextClock.kt new file mode 100644 index 00000000..5f7087e5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTextClock.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentTextClock: ImageVector + get() { + if (_documentTextClock != null) { + return _documentTextClock!! + } + _documentTextClock = fluentIcon(name = "Filled.DocumentTextClock") { + fluentPath { + moveTo(12.0f, 8.0f) + lineTo(12.0f, 2.0f) + lineTo(6.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.5f) + arcToRelative(6.48f, 6.48f, 0.0f, false, true, 5.0f, 0.0f) + horizontalLineToRelative(6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.56f) + curveToRelative(0.36f, 0.38f, 0.68f, 0.8f, 0.94f, 1.25f) + horizontalLineToRelative(3.62f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.99f) + curveToRelative(0.11f, 0.4f, 0.19f, 0.82f, 0.22f, 1.25f) + horizontalLineToRelative(2.77f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.83f) + arcTo(6.48f, 6.48f, 0.0f, false, true, 11.2f, 22.0f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 10.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + close() + moveTo(13.5f, 8.0f) + lineTo(13.5f, 2.5f) + lineToRelative(6.0f, 6.0f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(6.5f, 17.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + lineTo(6.0f, 18.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + verticalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + verticalLineToRelative(2.5f) + close() + } + } + return _documentTextClock!! + } + +private var _documentTextClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTextExtract.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTextExtract.kt new file mode 100644 index 00000000..9e00464b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTextExtract.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentTextExtract: ImageVector + get() { + if (_documentTextExtract != null) { + return _documentTextExtract!! + } + _documentTextExtract = fluentIcon(name = "Filled.DocumentTextExtract") { + fluentPath { + moveTo(12.0f, 8.0f) + lineTo(12.0f, 2.0f) + lineTo(6.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(9.5f) + horizontalLineToRelative(6.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) + lineTo(4.0f, 17.5f) + lineTo(4.0f, 20.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 10.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + close() + moveTo(7.5f, 11.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(7.5f, 19.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(13.5f, 8.0f) + lineTo(13.5f, 2.5f) + lineToRelative(6.0f, 6.0f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + moveTo(2.75f, 14.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-7.5f) + close() + } + } + return _documentTextExtract!! + } + +private var _documentTextExtract: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTextLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTextLink.kt new file mode 100644 index 00000000..32383ea9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTextLink.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentTextLink: ImageVector + get() { + if (_documentTextLink != null) { + return _documentTextLink!! + } + _documentTextLink = fluentIcon(name = "Filled.DocumentTextLink") { + fluentPath { + moveTo(12.0f, 8.0f) + lineTo(12.0f, 2.0f) + lineTo(6.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(10.06f) + curveToRelative(0.24f, -0.04f, 0.5f, -0.06f, 0.75f, -0.06f) + horizontalLineToRelative(3.5f) + curveToRelative(0.53f, 0.0f, 1.05f, 0.09f, 1.52f, 0.25f) + horizontalLineToRelative(5.98f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.82f) + curveToRelative(0.3f, 0.37f, 0.56f, 0.8f, 0.74f, 1.25f) + horizontalLineToRelative(3.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.76f) + arcToRelative(4.82f, 4.82f, 0.0f, false, true, -1.28f, 3.5f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 10.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + close() + moveTo(8.25f, 11.5f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(13.5f, 8.0f) + lineTo(13.5f, 2.5f) + lineToRelative(6.0f, 6.0f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + moveTo(12.0f, 18.75f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 8.25f, 15.0f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + verticalLineToRelative(-0.01f) + horizontalLineToRelative(0.2f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 12.0f, 18.74f) + close() + moveTo(5.5f, 15.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-0.2f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + lineTo(4.6f, 21.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(9.0f, 18.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + } + } + return _documentTextLink!! + } + +private var _documentTextLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTextToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTextToolbox.kt new file mode 100644 index 00000000..9103ed95 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentTextToolbox.kt @@ -0,0 +1,104 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentTextToolbox: ImageVector + get() { + if (_documentTextToolbox != null) { + return _documentTextToolbox!! + } + _documentTextToolbox = fluentIcon(name = "Filled.DocumentTextToolbox") { + fluentPath { + moveTo(12.0f, 8.0f) + lineTo(12.0f, 2.0f) + lineTo(6.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.35f) + curveToRelative(0.24f, -0.06f, 0.49f, -0.1f, 0.75f, -0.1f) + horizontalLineToRelative(3.5f) + curveToRelative(0.41f, 0.0f, 0.8f, 0.09f, 1.15f, 0.25f) + horizontalLineToRelative(6.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.94f) + curveToRelative(0.12f, 0.31f, 0.19f, 0.65f, 0.19f, 1.0f) + verticalLineToRelative(0.05f) + curveToRelative(0.2f, 0.04f, 0.4f, 0.11f, 0.6f, 0.2f) + horizontalLineToRelative(4.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.86f) + curveToRelative(0.07f, 0.24f, 0.11f, 0.49f, 0.11f, 0.75f) + verticalLineToRelative(0.5f) + horizontalLineToRelative(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(13.0f, 18.5f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.17f, -0.02f, 0.34f, -0.05f, 0.5f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 10.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + close() + moveTo(13.5f, 8.0f) + lineTo(13.5f, 2.5f) + lineToRelative(6.0f, 6.0f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + moveTo(3.0f, 15.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + lineTo(1.0f, 18.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(5.0f, 18.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(9.5f, 18.0f) + lineTo(12.0f, 18.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(10.0f, 15.0f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.5f) + curveTo(3.78f, 12.25f, 3.0f, 13.03f, 3.0f, 14.0f) + verticalLineToRelative(1.0f) + close() + moveTo(4.5f, 14.0f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(1.0f, 21.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + lineTo(12.0f, 19.5f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-8.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 1.0f, 21.5f) + close() + } + } + return _documentTextToolbox!! + } + +private var _documentTextToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentToolbox.kt new file mode 100644 index 00000000..f30e8c6e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentToolbox.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentToolbox: ImageVector + get() { + if (_documentToolbox != null) { + return _documentToolbox!! + } + _documentToolbox = fluentIcon(name = "Filled.DocumentToolbox") { + fluentPath { + moveTo(12.0f, 2.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + lineTo(13.0f, 22.0f) + verticalLineToRelative(-5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(-1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + lineTo(5.0f, 12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.0f, 0.27f) + lineTo(4.0f, 3.5f) + curveTo(4.0f, 2.67f, 4.67f, 2.0f, 5.5f, 2.0f) + lineTo(12.0f, 2.0f) + close() + moveTo(13.5f, 2.5f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.5f) + lineToRelative(-6.0f, -6.0f) + close() + moveTo(4.0f, 16.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(2.0f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + lineTo(9.0f, 16.0f) + horizontalLineToRelative(1.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + lineTo(12.0f, 19.0f) + lineTo(9.0f, 19.0f) + verticalLineToRelative(-0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(0.5f) + lineTo(5.0f, 19.0f) + verticalLineToRelative(-0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(0.5f) + lineTo(1.0f, 19.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + lineTo(4.0f, 16.0f) + close() + moveTo(5.0f, 14.5f) + lineTo(5.0f, 16.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + close() + moveTo(9.0f, 20.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-8.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 1.0f, 21.5f) + lineTo(1.0f, 20.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + lineTo(5.0f, 20.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + lineTo(9.0f, 20.0f) + close() + } + } + return _documentToolbox!! + } + +private var _documentToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentWidth.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentWidth.kt new file mode 100644 index 00000000..05516d89 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DocumentWidth.kt @@ -0,0 +1,111 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DocumentWidth: ImageVector + get() { + if (_documentWidth != null) { + return _documentWidth!! + } + _documentWidth = fluentIcon(name = "Filled.DocumentWidth") { + fluentPath { + moveTo(17.75f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(3.52f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.49f, 0.5f) + arcTo(1.73f, 1.73f, 0.0f, false, false, 18.1f, 10.0f) + lineToRelative(0.05f, 0.16f) + lineToRelative(0.04f, 0.09f) + horizontalLineToRelative(-1.52f) + curveToRelative(-0.85f, 0.0f, -1.5f, 0.65f, -1.64f, 1.46f) + lineToRelative(-0.01f, 0.14f) + lineTo(15.0f, 12.0f) + curveToRelative(0.0f, 0.8f, 0.51f, 1.51f, 1.33f, 1.7f) + lineToRelative(0.16f, 0.04f) + horizontalLineToRelative(1.68f) + lineToRelative(-0.02f, 0.04f) + curveToRelative(-0.2f, 0.47f, -0.2f, 1.02f, 0.05f, 1.51f) + lineToRelative(0.1f, 0.17f) + lineToRelative(0.09f, 0.14f) + lineToRelative(0.12f, 0.14f) + curveToRelative(0.4f, 0.4f, 0.95f, 0.57f, 1.49f, 0.48f) + verticalLineToRelative(3.53f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + lineTo(6.25f, 22.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(4.0f, 19.75f) + verticalLineToRelative(-3.53f) + curveToRelative(0.54f, 0.09f, 1.09f, -0.08f, 1.49f, -0.48f) + lineToRelative(0.12f, -0.14f) + lineToRelative(0.1f, -0.14f) + curveToRelative(0.33f, -0.54f, 0.37f, -1.16f, 0.14f, -1.68f) + lineToRelative(-0.02f, -0.03f) + horizontalLineToRelative(1.51f) + lineToRelative(0.17f, -0.01f) + curveTo(8.42f, 13.6f, 9.0f, 12.84f, 9.0f, 12.0f) + verticalLineToRelative(-0.15f) + arcToRelative(1.7f, 1.7f, 0.0f, false, false, -1.66f, -1.6f) + lineTo(5.82f, 10.25f) + lineToRelative(0.04f, -0.1f) + arcTo(1.74f, 1.74f, 0.0f, false, false, 4.0f, 7.78f) + lineTo(4.0f, 4.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(6.25f, 2.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(4.78f, 8.97f) + curveToRelative(0.27f, 0.26f, 0.3f, 0.68f, 0.07f, 0.97f) + lineToRelative(-0.07f, 0.09f) + lineToRelative(-1.22f, 1.22f) + horizontalLineToRelative(3.78f) + curveToRelative(0.37f, 0.0f, 0.66f, 0.33f, 0.66f, 0.75f) + curveToRelative(0.0f, 0.38f, -0.25f, 0.7f, -0.57f, 0.74f) + lineTo(3.56f, 12.74f) + lineToRelative(1.22f, 1.23f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-2.37f, -2.37f) + arcTo(0.77f, 0.77f, 0.0f, false, true, 1.0f, 12.0f) + curveToRelative(0.0f, -0.29f, 0.14f, -0.54f, 0.35f, -0.66f) + lineToRelative(2.37f, -2.37f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(19.22f, 8.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.08f) + lineToRelative(0.08f, 0.08f) + lineToRelative(2.37f, 2.36f) + curveToRelative(0.2f, 0.13f, 0.35f, 0.38f, 0.35f, 0.67f) + curveToRelative(0.0f, 0.25f, -0.1f, 0.47f, -0.28f, 0.6f) + lineToRelative(-0.07f, 0.06f) + lineToRelative(-2.37f, 2.37f) + lineToRelative(-0.08f, 0.07f) + curveToRelative(-0.27f, 0.2f, -0.62f, 0.2f, -0.89f, 0.0f) + lineToRelative(-0.1f, -0.07f) + lineToRelative(-0.06f, -0.09f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.01f, -0.88f) + lineToRelative(0.08f, -0.1f) + lineToRelative(1.22f, -1.21f) + horizontalLineToRelative(-3.78f) + lineToRelative(-0.1f, -0.01f) + curveToRelative(-0.31f, -0.05f, -0.56f, -0.37f, -0.56f, -0.74f) + curveToRelative(0.0f, -0.38f, 0.25f, -0.7f, 0.57f, -0.75f) + lineTo(20.44f, 11.25f) + lineToRelative(-1.22f, -1.22f) + lineToRelative(-0.07f, -0.09f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.07f, -0.97f) + close() + } + } + return _documentWidth!! + } + +private var _documentWidth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DoorArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DoorArrowLeft.kt new file mode 100644 index 00000000..cb4a6458 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DoorArrowLeft.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DoorArrowLeft: ImageVector + get() { + if (_doorArrowLeft != null) { + return _doorArrowLeft!! + } + _doorArrowLeft = fluentIcon(name = "Filled.DoorArrowLeft") { + fluentPath { + moveTo(6.25f, 2.75f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(5.94f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, 7.06f, -10.01f) + lineTo(19.25f, 4.25f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(6.25f, 2.75f) + close() + moveTo(8.5f, 13.25f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) + close() + moveTo(17.5f, 23.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) + close() + moveTo(21.0f, 17.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-4.8f) + lineToRelative(1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, 0.7f) + lineTo(15.71f, 17.0f) + horizontalLineToRelative(4.79f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + close() + } + } + return _doorArrowLeft!! + } + +private var _doorArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DoorTag.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DoorTag.kt new file mode 100644 index 00000000..717367c1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DoorTag.kt @@ -0,0 +1,41 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DoorTag: ImageVector + get() { + if (_doorTag != null) { + return _doorTag!! + } + _doorTag = fluentIcon(name = "Filled.DoorTag") { + fluentPath { + moveTo(12.0f, 6.5f) + curveToRelative(-0.49f, 0.0f, -0.92f, 0.23f, -1.2f, 0.6f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -3.6f, -2.7f) + arcTo(6.0f, 6.0f, 0.0f, false, true, 18.0f, 8.0f) + verticalLineToRelative(12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + lineTo(8.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(4.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(9.75f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + close() + } + } + return _doorTag!! + } + +private var _doorTag: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DoubleSwipeDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DoubleSwipeDown.kt new file mode 100644 index 00000000..5f366f16 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DoubleSwipeDown.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DoubleSwipeDown: ImageVector + get() { + if (_doubleSwipeDown != null) { + return _doubleSwipeDown!! + } + _doubleSwipeDown = fluentIcon(name = "Filled.DoubleSwipeDown") { + fluentPath { + moveTo(18.2f, 21.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) + lineToRelative(-3.0f, -3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, -1.4f) + lineToRelative(1.3f, 1.29f) + lineTo(16.5f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(11.59f) + lineToRelative(1.3f, -1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, 1.42f) + lineToRelative(-3.0f, 3.0f) + close() + moveTo(12.5f, 7.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 3.0f, 4.58f) + lineTo(15.5f, 9.24f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.0f, -5.24f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.0f, 5.24f) + verticalLineToRelative(2.34f) + arcToRelative(5.0f, 5.0f, 0.0f, true, false, -7.0f, -4.58f) + close() + moveTo(4.5f, 11.58f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 4.0f, 0.0f) + lineTo(8.5f, 9.24f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 6.5f, 4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -2.0f, 5.24f) + verticalLineToRelative(2.34f) + close() + moveTo(7.2f, 21.71f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) + lineToRelative(-3.0f, -3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, -1.42f) + lineToRelative(1.3f, 1.3f) + lineTo(5.5f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + verticalLineToRelative(11.59f) + lineToRelative(1.3f, -1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, 1.42f) + lineToRelative(-3.0f, 3.0f) + close() + } + } + return _doubleSwipeDown!! + } + +private var _doubleSwipeDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DoubleSwipeUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DoubleSwipeUp.kt new file mode 100644 index 00000000..517f96cd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DoubleSwipeUp.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DoubleSwipeUp: ImageVector + get() { + if (_doubleSwipeUp != null) { + return _doubleSwipeUp!! + } + _doubleSwipeUp = fluentIcon(name = "Filled.DoubleSwipeUp") { + fluentPath { + moveTo(18.2f, 2.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) + lineToRelative(-3.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 1.4f) + lineToRelative(1.3f, -1.29f) + lineTo(16.5f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(18.5f, 5.41f) + lineToRelative(1.3f, 1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, -1.42f) + lineToRelative(-3.0f, -3.0f) + close() + moveTo(12.5f, 17.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 3.0f, -4.58f) + verticalLineToRelative(2.34f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 2.0f, 5.24f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 2.0f, -5.24f) + verticalLineToRelative(-2.34f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, -7.0f, 4.58f) + close() + moveTo(4.5f, 12.42f) + arcToRelative(5.0f, 5.0f, 0.0f, true, false, 4.0f, 0.0f) + verticalLineToRelative(2.34f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.0f, 5.24f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.0f, -5.24f) + verticalLineToRelative(-2.34f) + close() + moveTo(7.2f, 2.29f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) + lineToRelative(-3.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 1.42f) + lineToRelative(1.3f, -1.3f) + lineTo(5.5f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(7.5f, 5.41f) + lineToRelative(1.3f, 1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, -1.42f) + lineToRelative(-3.0f, -3.0f) + close() + } + } + return _doubleSwipeUp!! + } + +private var _doubleSwipeUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DoubleTapSwipeDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DoubleTapSwipeDown.kt new file mode 100644 index 00000000..010b0318 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DoubleTapSwipeDown.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DoubleTapSwipeDown: ImageVector + get() { + if (_doubleTapSwipeDown != null) { + return _doubleTapSwipeDown!! + } + _doubleTapSwipeDown = fluentIcon(name = "Filled.DoubleTapSwipeDown") { + fluentPath { + moveTo(12.7f, 21.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) + lineToRelative(-3.0f, -3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, -1.4f) + lineToRelative(1.3f, 1.29f) + lineTo(11.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(9.59f) + lineToRelative(1.3f, -1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.42f) + lineToRelative(-3.0f, 3.0f) + close() + moveTo(4.5f, 9.0f) + arcToRelative(7.5f, 7.5f, 0.0f, false, false, 5.5f, 7.23f) + verticalLineToRelative(-2.1f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 4.0f, 0.0f) + verticalLineToRelative(2.1f) + arcTo(7.5f, 7.5f, 0.0f, true, false, 4.5f, 9.0f) + close() + moveTo(7.5f, 9.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 2.5f, 4.03f) + lineTo(10.0f, 10.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 4.0f, 0.0f) + verticalLineToRelative(2.53f) + arcTo(4.5f, 4.5f, 0.0f, true, false, 7.5f, 9.0f) + close() + } + } + return _doubleTapSwipeDown!! + } + +private var _doubleTapSwipeDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DoubleTapSwipeUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DoubleTapSwipeUp.kt new file mode 100644 index 00000000..04c4e99f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DoubleTapSwipeUp.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DoubleTapSwipeUp: ImageVector + get() { + if (_doubleTapSwipeUp != null) { + return _doubleTapSwipeUp!! + } + _doubleTapSwipeUp = fluentIcon(name = "Filled.DoubleTapSwipeUp") { + fluentPath { + moveTo(12.7f, 2.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) + lineToRelative(-3.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 1.4f) + lineTo(11.0f, 5.42f) + lineTo(11.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(13.0f, 5.41f) + lineToRelative(1.3f, 1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, -1.42f) + lineToRelative(-3.0f, -3.0f) + close() + moveTo(4.5f, 15.0f) + arcTo(7.5f, 7.5f, 0.0f, false, true, 10.0f, 7.77f) + verticalLineToRelative(2.1f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 4.0f, 0.0f) + verticalLineToRelative(-2.1f) + arcTo(7.5f, 7.5f, 0.0f, true, true, 4.5f, 15.0f) + close() + moveTo(7.5f, 15.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 2.5f, -4.03f) + verticalLineToRelative(2.53f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 4.0f, 0.0f) + verticalLineToRelative(-2.53f) + arcTo(4.5f, 4.5f, 0.0f, true, true, 7.5f, 15.0f) + close() + } + } + return _doubleTapSwipeUp!! + } + +private var _doubleTapSwipeUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Drafts.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Drafts.kt new file mode 100644 index 00000000..725bd4ea --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Drafts.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Drafts: ImageVector + get() { + if (_drafts != null) { + return _drafts!! + } + _drafts = fluentIcon(name = "Filled.Drafts") { + fluentPath { + moveTo(13.94f, 5.0f) + lineTo(19.0f, 10.06f) + lineTo(9.06f, 20.0f) + curveToRelative(-0.27f, 0.28f, -0.62f, 0.48f, -1.0f, 0.58f) + lineToRelative(-5.11f, 1.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.92f, -0.93f) + lineToRelative(1.4f, -5.11f) + curveToRelative(0.1f, -0.38f, 0.3f, -0.72f, 0.57f, -1.0f) + lineTo(13.94f, 5.0f) + close() + moveTo(6.53f, 11.0f) + lineTo(5.03f, 12.5f) + lineTo(2.75f, 12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.78f) + close() + moveTo(20.88f, 2.83f) + lineTo(21.03f, 2.97f) + lineTo(21.18f, 3.12f) + arcToRelative(3.58f, 3.58f, 0.0f, false, true, -0.15f, 4.91f) + lineToRelative(-0.97f, 0.97f) + lineTo(15.0f, 3.94f) + lineToRelative(0.97f, -0.97f) + arcToRelative(3.58f, 3.58f, 0.0f, false, true, 4.9f, -0.14f) + close() + moveTo(10.53f, 7.0f) + lineToRelative(-1.5f, 1.5f) + lineTo(2.75f, 8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(7.78f) + close() + moveTo(14.53f, 3.0f) + lineTo(13.03f, 4.5f) + lineTo(2.75f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(11.78f) + close() + } + } + return _drafts!! + } + +private var _drafts: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Drag.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Drag.kt new file mode 100644 index 00000000..8dc1517d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Drag.kt @@ -0,0 +1,145 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Drag: ImageVector + get() { + if (_drag != null) { + return _drag!! + } + _drag = fluentIcon(name = "Filled.Drag") { + fluentPath { + moveTo(12.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(13.0f, 18.58f) + lineToRelative(0.3f, -0.29f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.31f, -0.08f) + lineToRelative(0.1f, 0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.32f) + lineToRelative(-0.08f, 0.1f) + lineToRelative(-2.0f, 2.0f) + lineToRelative(-0.05f, 0.04f) + lineToRelative(-0.06f, 0.05f) + lineToRelative(-0.12f, 0.08f) + lineToRelative(-0.1f, 0.05f) + lineToRelative(-0.11f, 0.03f) + lineToRelative(-0.12f, 0.03f) + horizontalLineToRelative(-0.27f) + lineToRelative(-0.11f, -0.02f) + lineToRelative(-0.11f, -0.03f) + lineToRelative(-0.08f, -0.03f) + lineToRelative(-0.1f, -0.06f) + lineToRelative(-0.1f, -0.06f) + arcToRelative(1.01f, 1.01f, 0.0f, false, true, -0.09f, -0.08f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -1.5f) + lineToRelative(0.1f, 0.08f) + lineToRelative(0.29f, 0.3f) + lineTo(11.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) + lineTo(12.0f, 16.0f) + close() + moveTo(18.3f, 9.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.31f, -0.09f) + lineToRelative(0.1f, 0.08f) + lineToRelative(2.0f, 2.0f) + lineToRelative(0.04f, 0.05f) + lineToRelative(0.05f, 0.07f) + lineToRelative(0.08f, 0.1f) + lineToRelative(0.05f, 0.12f) + lineToRelative(0.03f, 0.1f) + lineToRelative(0.03f, 0.12f) + verticalLineToRelative(0.27f) + lineToRelative(-0.02f, 0.11f) + lineToRelative(-0.03f, 0.11f) + lineToRelative(-0.03f, 0.08f) + lineToRelative(-0.06f, 0.1f) + lineToRelative(-0.07f, 0.1f) + lineToRelative(-0.07f, 0.09f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.5f, -1.32f) + lineToRelative(0.08f, -0.1f) + lineToRelative(0.3f, -0.29f) + lineTo(17.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + lineTo(16.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) + lineTo(18.58f, 11.0f) + lineToRelative(-0.29f, -0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.31f) + lineToRelative(0.08f, -0.1f) + close() + moveTo(4.3f, 9.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.49f, 1.31f) + lineToRelative(-0.08f, 0.1f) + lineToRelative(-0.3f, 0.29f) + lineTo(7.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(8.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + lineTo(5.4f, 13.0f) + lineToRelative(0.3f, 0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.31f) + lineToRelative(-0.08f, 0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.08f) + lineToRelative(-0.1f, -0.08f) + lineToRelative(-2.0f, -2.0f) + lineToRelative(-0.1f, -0.11f) + lineToRelative(-0.07f, -0.12f) + lineToRelative(-0.05f, -0.1f) + lineToRelative(-0.03f, -0.11f) + lineToRelative(-0.03f, -0.12f) + verticalLineToRelative(-0.06f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-0.08f) + lineToRelative(0.02f, -0.11f) + lineToRelative(0.03f, -0.11f) + lineToRelative(0.04f, -0.11f) + lineToRelative(0.06f, -0.1f) + lineToRelative(0.06f, -0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, -0.09f) + lineToRelative(2.0f, -2.0f) + close() + moveTo(12.0f, 9.25f) + arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, 5.5f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.0f, -5.5f) + close() + moveTo(11.85f, 2.01f) + horizontalLineToRelative(0.32f) + lineToRelative(0.14f, 0.04f) + lineToRelative(0.11f, 0.04f) + lineToRelative(0.1f, 0.06f) + lineToRelative(0.1f, 0.07f) + lineToRelative(0.09f, 0.07f) + lineToRelative(2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 1.5f) + lineToRelative(-0.1f, -0.08f) + lineToRelative(-0.29f, -0.3f) + lineTo(13.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + lineTo(12.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + lineTo(11.0f, 5.4f) + lineToRelative(-0.3f, 0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.31f, 0.08f) + lineToRelative(-0.1f, -0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.32f) + lineToRelative(0.08f, -0.1f) + lineToRelative(2.0f, -2.0f) + lineToRelative(0.11f, -0.1f) + lineToRelative(0.12f, -0.06f) + lineToRelative(0.1f, -0.06f) + lineToRelative(0.11f, -0.03f) + lineToRelative(0.12f, -0.03f) + close() + } + } + return _drag!! + } + +private var _drag: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrawImage.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrawImage.kt new file mode 100644 index 00000000..f494295c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrawImage.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DrawImage: ImageVector + get() { + if (_drawImage != null) { + return _drawImage!! + } + _drawImage = fluentIcon(name = "Filled.DrawImage") { + fluentPath { + moveToRelative(15.66f, 14.7f) + lineToRelative(-2.08f, -2.05f) + lineToRelative(-0.13f, -0.12f) + curveToRelative(-0.84f, -0.7f, -2.06f, -0.7f, -2.9f, 0.0f) + lineToRelative(-0.13f, 0.12f) + lineToRelative(-6.23f, 6.12f) + arcToRelative(0.7f, 0.7f, 0.0f, false, true, -1.2f, -0.5f) + lineTo(2.99f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.26f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(4.76f) + curveToRelative(-0.93f, -0.08f, -1.9f, 0.24f, -2.6f, 0.95f) + lineToRelative(-2.74f, 2.73f) + close() + moveTo(13.5f, 8.24f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 4.5f, 0.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -4.5f, 0.0f) + close() + moveTo(15.75f, 7.49f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(11.47f, 13.71f) + lineTo(11.56f, 13.64f) + curveToRelative(0.26f, -0.2f, 0.61f, -0.2f, 0.87f, -0.01f) + lineToRelative(0.1f, 0.08f) + lineToRelative(2.07f, 2.03f) + lineToRelative(-2.11f, 2.11f) + curveToRelative(-0.44f, 0.44f, -0.76f, 0.98f, -0.93f, 1.57f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -1.41f, -1.13f) + arcToRelative(2.7f, 2.7f, 0.0f, false, false, -1.94f, 0.04f) + lineToRelative(-0.11f, 0.04f) + curveToRelative(-0.48f, 0.17f, -0.87f, -0.41f, -0.53f, -0.8f) + lineToRelative(0.2f, -0.24f) + lineToRelative(3.7f, -3.62f) + close() + moveTo(19.1f, 12.66f) + lineTo(13.2f, 18.56f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.44f, 1.71f) + curveToRelative(-0.35f, 0.17f, -0.7f, 0.2f, -1.13f, 0.1f) + curveToRelative(-0.13f, -0.02f, -0.18f, -0.17f, -0.13f, -0.29f) + curveToRelative(0.43f, -0.96f, -0.19f, -1.77f, -1.03f, -2.11f) + curveToRelative(-0.95f, -0.38f, -2.22f, 0.51f, -3.29f, 1.27f) + curveToRelative(-0.6f, 0.42f, -1.12f, 0.8f, -1.5f, 0.87f) + curveToRelative(-0.52f, 0.12f, -1.16f, -0.12f, -1.63f, -0.38f) + curveToRelative(-0.2f, -0.1f, -0.48f, 0.08f, -0.38f, 0.3f) + curveToRelative(0.24f, 0.52f, 0.73f, 1.12f, 1.7f, 1.25f) + curveToRelative(0.99f, 0.12f, 1.77f, -0.35f, 2.56f, -0.82f) + curveToRelative(0.58f, -0.35f, 1.16f, -0.7f, 1.82f, -0.8f) + curveToRelative(0.09f, -0.01f, 0.15f, 0.1f, 0.1f, 0.17f) + curveToRelative(-0.24f, 0.48f, -0.35f, 1.37f, 0.22f, 1.82f) + curveToRelative(0.85f, 0.66f, 3.24f, 0.29f, 3.83f, 0.09f) + lineToRelative(0.15f, -0.03f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _drawImage!! + } + +private var _drawImage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrawShape.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrawShape.kt new file mode 100644 index 00000000..f6b5f7ce --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrawShape.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DrawShape: ImageVector + get() { + if (_drawShape != null) { + return _drawShape!! + } + _drawShape = fluentIcon(name = "Filled.DrawShape") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.45f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(4.76f) + curveToRelative(-0.93f, -0.08f, -1.9f, 0.24f, -2.61f, 0.95f) + lineToRelative(-5.9f, 5.9f) + curveToRelative(-0.44f, 0.44f, -0.76f, 0.98f, -0.93f, 1.57f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -1.42f, -1.13f) + arcToRelative(2.7f, 2.7f, 0.0f, false, false, -1.93f, 0.04f) + arcToRelative(5.46f, 5.46f, 0.0f, false, false, -0.82f, 0.4f) + lineToRelative(-1.7f, 1.03f) + curveToRelative(-0.46f, 0.28f, -0.9f, 0.37f, -1.3f, 0.34f) + arcToRelative(1.9f, 1.9f, 0.0f, false, true, -0.9f, -0.32f) + curveToRelative(-0.38f, -0.25f, -0.5f, -0.68f, -0.5f, -1.0f) + lineTo(2.99f, 6.25f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.44f, 1.71f) + curveToRelative(-0.35f, 0.17f, -0.7f, 0.2f, -1.13f, 0.1f) + curveToRelative(-0.13f, -0.02f, -0.18f, -0.17f, -0.13f, -0.29f) + curveToRelative(0.43f, -0.96f, -0.19f, -1.77f, -1.03f, -2.11f) + curveToRelative(-0.95f, -0.38f, -2.22f, 0.51f, -3.29f, 1.27f) + curveToRelative(-0.6f, 0.42f, -1.12f, 0.8f, -1.5f, 0.87f) + curveToRelative(-0.52f, 0.12f, -1.16f, -0.12f, -1.63f, -0.38f) + curveToRelative(-0.2f, -0.1f, -0.48f, 0.08f, -0.38f, 0.3f) + curveToRelative(0.24f, 0.52f, 0.73f, 1.12f, 1.7f, 1.25f) + curveToRelative(0.99f, 0.12f, 1.77f, -0.35f, 2.56f, -0.82f) + curveToRelative(0.58f, -0.35f, 1.16f, -0.7f, 1.82f, -0.8f) + curveToRelative(0.09f, -0.01f, 0.15f, 0.1f, 0.1f, 0.17f) + curveToRelative(-0.24f, 0.48f, -0.35f, 1.37f, 0.22f, 1.82f) + curveToRelative(0.85f, 0.66f, 3.24f, 0.29f, 3.83f, 0.09f) + lineToRelative(0.15f, -0.03f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _drawShape!! + } + +private var _drawShape: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrawText.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrawText.kt new file mode 100644 index 00000000..68bd298d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrawText.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DrawText: ImageVector + get() { + if (_drawText != null) { + return _drawText!! + } + _drawText = fluentIcon(name = "Filled.DrawText") { + fluentPath { + moveTo(12.24f, 13.15f) + lineTo(7.76f, 13.15f) + lineTo(10.0f, 6.75f) + lineToRelative(2.24f, 6.4f) + close() + moveTo(12.94f, 15.15f) + lineTo(13.27f, 16.08f) + lineTo(14.84f, 14.51f) + lineTo(11.08f, 3.76f) + arcToRelative(1.14f, 1.14f, 0.0f, false, false, -2.15f, 0.0f) + lineTo(4.06f, 17.67f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.88f, 0.66f) + lineToRelative(1.12f, -3.18f) + horizontalLineToRelative(5.88f) + close() + moveTo(13.2f, 17.57f) + lineTo(19.1f, 11.67f) + arcToRelative(2.29f, 2.29f, 0.0f, true, true, 3.23f, 3.23f) + lineToRelative(-5.9f, 5.9f) + curveToRelative(-0.34f, 0.35f, -0.78f, 0.6f, -1.25f, 0.71f) + lineToRelative(-1.83f, 0.46f) + lineToRelative(-0.15f, 0.03f) + curveToRelative(-0.59f, 0.2f, -2.98f, 0.57f, -3.82f, -0.1f) + curveToRelative(-0.58f, -0.44f, -0.47f, -1.33f, -0.22f, -1.81f) + curveToRelative(0.04f, -0.08f, -0.02f, -0.18f, -0.1f, -0.17f) + curveToRelative(-0.67f, 0.1f, -1.25f, 0.45f, -1.83f, 0.8f) + curveToRelative(-0.79f, 0.47f, -1.57f, 0.94f, -2.55f, 0.82f) + arcToRelative(2.08f, 2.08f, 0.0f, false, true, -1.71f, -1.26f) + curveToRelative(-0.1f, -0.21f, 0.18f, -0.4f, 0.38f, -0.29f) + curveToRelative(0.47f, 0.26f, 1.11f, 0.5f, 1.64f, 0.38f) + curveToRelative(0.37f, -0.08f, 0.9f, -0.45f, 1.5f, -0.87f) + curveToRelative(1.06f, -0.76f, 2.33f, -1.65f, 3.28f, -1.27f) + curveToRelative(0.84f, 0.34f, 1.46f, 1.15f, 1.03f, 2.11f) + curveToRelative(-0.05f, 0.12f, 0.0f, 0.27f, 0.13f, 0.3f) + curveToRelative(0.42f, 0.1f, 0.78f, 0.06f, 1.13f, -0.1f) + lineToRelative(0.43f, -1.72f) + curveToRelative(0.12f, -0.47f, 0.36f, -0.9f, 0.7f, -1.25f) + close() + } + } + return _drawText!! + } + +private var _drawText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrawerAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrawerAdd.kt new file mode 100644 index 00000000..0ca5d99f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrawerAdd.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DrawerAdd: ImageVector + get() { + if (_drawerAdd != null) { + return _drawerAdd!! + } + _drawerAdd = fluentIcon(name = "Filled.DrawerAdd") { + fluentPath { + moveTo(22.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(17.0f, 7.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + verticalLineTo(7.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineTo(16.0f) + verticalLineTo(3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + verticalLineTo(6.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineTo(17.0f) + close() + moveTo(6.25f, 4.0f) + horizontalLineToRelative(4.25f) + curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) + horizontalLineTo(6.25f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineTo(8.0f) + horizontalLineToRelative(5.67f) + curveToRelative(0.13f, 0.53f, 0.32f, 1.03f, 0.56f, 1.5f) + horizontalLineTo(4.5f) + verticalLineTo(14.0f) + horizontalLineToRelative(4.56f) + curveToRelative(0.38f, 0.0f, 0.69f, 0.31f, 0.69f, 0.7f) + verticalLineToRelative(0.05f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) + verticalLineToRelative(-0.06f) + curveToRelative(0.0f, -0.38f, 0.31f, -0.69f, 0.7f, -0.69f) + horizontalLineToRelative(4.55f) + verticalLineToRelative(-1.73f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(7.56f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineTo(6.25f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 18.75f) + verticalLineTo(7.25f) + curveTo(3.0f, 5.45f, 4.46f, 4.0f, 6.25f, 4.0f) + close() + } + } + return _drawerAdd!! + } + +private var _drawerAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrawerArrowDownload.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrawerArrowDownload.kt new file mode 100644 index 00000000..07c9837f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrawerArrowDownload.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DrawerArrowDownload: ImageVector + get() { + if (_drawerArrowDownload != null) { + return _drawerArrowDownload!! + } + _drawerArrowDownload = fluentIcon(name = "Filled.DrawerArrowDownload") { + fluentPath { + moveTo(11.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 5.0f, -5.48f) + lineTo(16.0f, 6.8f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.5f, 2.5f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineTo(17.0f, 6.79f) + lineTo(17.0f, 1.02f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -6.0f, 5.48f) + close() + moveTo(19.5f, 9.5f) + arcTo(0.5f, 0.5f, 0.0f, false, false, 19.0f, 9.0f) + horizontalLineToRelative(-5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + close() + moveTo(6.25f, 4.0f) + horizontalLineToRelative(4.25f) + curveToRelative(-0.2f, 0.48f, -0.34f, 0.98f, -0.42f, 1.5f) + lineTo(6.25f, 5.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 8.0f) + horizontalLineToRelative(5.67f) + curveToRelative(0.13f, 0.53f, 0.32f, 1.03f, 0.56f, 1.5f) + lineTo(4.5f, 9.5f) + lineTo(4.5f, 14.0f) + horizontalLineToRelative(4.56f) + curveToRelative(0.38f, 0.0f, 0.69f, 0.31f, 0.69f, 0.7f) + verticalLineToRelative(0.05f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) + verticalLineToRelative(-0.06f) + curveToRelative(0.0f, -0.38f, 0.31f, -0.69f, 0.7f, -0.69f) + horizontalLineToRelative(4.55f) + verticalLineToRelative(-1.73f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(7.56f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 22.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 18.75f) + lineTo(3.0f, 7.25f) + curveTo(3.0f, 5.45f, 4.46f, 4.0f, 6.25f, 4.0f) + close() + } + } + return _drawerArrowDownload!! + } + +private var _drawerArrowDownload: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrawerDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrawerDismiss.kt new file mode 100644 index 00000000..066c9ce1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrawerDismiss.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DrawerDismiss: ImageVector + get() { + if (_drawerDismiss != null) { + return _drawerDismiss!! + } + _drawerDismiss = fluentIcon(name = "Filled.DrawerDismiss") { + fluentPath { + moveTo(22.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.85f, 4.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineTo(17.21f, 6.5f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineTo(16.5f, 5.79f) + lineToRelative(-1.65f, -1.64f) + close() + moveTo(6.25f, 4.0f) + horizontalLineToRelative(4.25f) + curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) + lineTo(6.25f, 5.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 8.0f) + horizontalLineToRelative(5.67f) + curveToRelative(0.13f, 0.53f, 0.32f, 1.03f, 0.56f, 1.5f) + lineTo(4.5f, 9.5f) + lineTo(4.5f, 14.0f) + horizontalLineToRelative(4.56f) + curveToRelative(0.38f, 0.0f, 0.69f, 0.31f, 0.69f, 0.7f) + verticalLineToRelative(0.05f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) + verticalLineToRelative(-0.06f) + curveToRelative(0.0f, -0.38f, 0.31f, -0.69f, 0.7f, -0.69f) + horizontalLineToRelative(4.55f) + verticalLineToRelative(-1.73f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(7.56f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 22.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 18.75f) + lineTo(3.0f, 7.25f) + curveTo(3.0f, 5.45f, 4.46f, 4.0f, 6.25f, 4.0f) + close() + } + } + return _drawerDismiss!! + } + +private var _drawerDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrawerPlay.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrawerPlay.kt new file mode 100644 index 00000000..ae9ec83f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrawerPlay.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DrawerPlay: ImageVector + get() { + if (_drawerPlay != null) { + return _drawerPlay!! + } + _drawerPlay = fluentIcon(name = "Filled.DrawerPlay") { + fluentPath { + moveTo(22.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.0f, 8.61f) + curveToRelative(0.0f, 0.4f, 0.42f, 0.63f, 0.76f, 0.43f) + lineToRelative(3.53f, -2.11f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.86f) + lineToRelative(-3.53f, -2.12f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.76f, 0.43f) + verticalLineToRelative(4.23f) + close() + moveTo(6.25f, 4.0f) + horizontalLineToRelative(4.25f) + curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) + lineTo(6.25f, 5.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 8.0f) + horizontalLineToRelative(5.67f) + curveToRelative(0.13f, 0.53f, 0.32f, 1.03f, 0.56f, 1.5f) + lineTo(4.5f, 9.5f) + lineTo(4.5f, 14.0f) + horizontalLineToRelative(4.56f) + curveToRelative(0.38f, 0.0f, 0.69f, 0.31f, 0.69f, 0.7f) + verticalLineToRelative(0.05f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) + verticalLineToRelative(-0.06f) + curveToRelative(0.0f, -0.38f, 0.31f, -0.69f, 0.7f, -0.69f) + horizontalLineToRelative(4.55f) + verticalLineToRelative(-1.73f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(7.56f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 22.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 18.75f) + lineTo(3.0f, 7.25f) + curveTo(3.0f, 5.45f, 4.46f, 4.0f, 6.25f, 4.0f) + close() + } + } + return _drawerPlay!! + } + +private var _drawerPlay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrawerSubtract.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrawerSubtract.kt new file mode 100644 index 00000000..3d35c35f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrawerSubtract.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DrawerSubtract: ImageVector + get() { + if (_drawerSubtract != null) { + return _drawerSubtract!! + } + _drawerSubtract = fluentIcon(name = "Filled.DrawerSubtract") { + fluentPath { + moveTo(22.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(13.5f, 7.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineToRelative(6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-6.0f) + close() + moveTo(6.25f, 4.0f) + horizontalLineToRelative(4.25f) + curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) + lineTo(6.25f, 5.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 8.0f) + horizontalLineToRelative(5.67f) + curveToRelative(0.13f, 0.53f, 0.32f, 1.03f, 0.56f, 1.5f) + lineTo(4.5f, 9.5f) + lineTo(4.5f, 14.0f) + horizontalLineToRelative(4.56f) + curveToRelative(0.38f, 0.0f, 0.69f, 0.31f, 0.69f, 0.7f) + verticalLineToRelative(0.05f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) + verticalLineToRelative(-0.06f) + curveToRelative(0.0f, -0.38f, 0.31f, -0.69f, 0.7f, -0.69f) + horizontalLineToRelative(4.55f) + verticalLineToRelative(-1.73f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(7.56f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 22.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 18.75f) + lineTo(3.0f, 7.25f) + curveTo(3.0f, 5.45f, 4.46f, 4.0f, 6.25f, 4.0f) + close() + } + } + return _drawerSubtract!! + } + +private var _drawerSubtract: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrinkBeer.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrinkBeer.kt new file mode 100644 index 00000000..3ebd9b38 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrinkBeer.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DrinkBeer: ImageVector + get() { + if (_drinkBeer != null) { + return _drinkBeer!! + } + _drinkBeer = fluentIcon(name = "Filled.DrinkBeer") { + fluentPath { + moveTo(7.25f, 2.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 4.0f, 5.25f) + verticalLineToRelative(14.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(9.0f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(17.5f, 18.0f) + horizontalLineToRelative(1.25f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-5.5f) + curveTo(22.0f, 7.45f, 20.54f, 6.0f, 18.75f, 6.0f) + lineTo(17.5f, 6.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-7.0f) + close() + moveTo(18.75f, 16.5f) + lineTo(17.5f, 16.5f) + verticalLineToRelative(-9.0f) + horizontalLineToRelative(1.25f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(5.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + close() + moveTo(16.0f, 6.0f) + lineTo(5.5f, 6.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(7.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(16.0f, 6.0f) + close() + moveTo(8.5f, 10.0f) + verticalLineToRelative(7.0f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 17.0f) + verticalLineToRelative(-7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(11.5f, 10.0f) + verticalLineToRelative(7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(14.5f, 10.0f) + verticalLineToRelative(7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + } + } + return _drinkBeer!! + } + +private var _drinkBeer: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrinkCoffee.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrinkCoffee.kt new file mode 100644 index 00000000..c4c69537 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrinkCoffee.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DrinkCoffee: ImageVector + get() { + if (_drinkCoffee != null) { + return _drinkCoffee!! + } + _drinkCoffee = fluentIcon(name = "Filled.DrinkCoffee") { + fluentPath { + moveTo(5.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + curveToRelative(0.0f, 1.27f, 0.93f, 1.92f, 1.5f, 2.32f) + lineToRelative(0.07f, 0.04f) + curveToRelative(0.68f, 0.48f, 0.93f, 0.7f, 0.93f, 1.14f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + curveToRelative(0.0f, -1.27f, -0.93f, -1.92f, -1.5f, -2.32f) + lineToRelative(-0.07f, -0.04f) + curveToRelative(-0.68f, -0.48f, -0.93f, -0.7f, -0.93f, -1.14f) + close() + moveTo(4.82f, 8.0f) + curveTo(3.82f, 8.0f, 3.0f, 8.82f, 3.0f, 9.82f) + lineTo(3.0f, 14.0f) + arcToRelative(8.0f, 8.0f, 0.0f, false, false, 15.42f, 3.0f) + horizontalLineToRelative(1.33f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 0.0f, -6.5f) + lineTo(19.0f, 10.5f) + verticalLineToRelative(-0.68f) + curveToRelative(0.0f, -1.0f, -0.82f, -1.82f, -1.82f, -1.82f) + lineTo(4.82f, 8.0f) + close() + moveTo(19.75f, 15.5f) + horizontalLineToRelative(-0.89f) + curveToRelative(0.1f, -0.49f, 0.14f, -0.99f, 0.14f, -1.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(0.75f) + arcToRelative(1.75f, 1.75f, 0.0f, true, true, 0.0f, 3.5f) + close() + moveTo(8.75f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + curveToRelative(0.0f, 0.43f, 0.25f, 0.66f, 0.93f, 1.14f) + lineToRelative(0.06f, 0.04f) + curveToRelative(0.58f, 0.4f, 1.51f, 1.05f, 1.51f, 2.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + curveToRelative(0.0f, -0.43f, -0.25f, -0.66f, -0.93f, -1.14f) + lineToRelative(-0.06f, -0.04f) + curveTo(8.93f, 4.67f, 8.0f, 4.02f, 8.0f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(13.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + curveToRelative(0.0f, 1.27f, 0.93f, 1.92f, 1.5f, 2.32f) + lineToRelative(0.07f, 0.04f) + curveToRelative(0.68f, 0.48f, 0.93f, 0.7f, 0.93f, 1.14f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + curveToRelative(0.0f, -1.27f, -0.93f, -1.92f, -1.5f, -2.32f) + lineToRelative(-0.07f, -0.04f) + curveToRelative(-0.68f, -0.48f, -0.93f, -0.7f, -0.93f, -1.14f) + close() + } + } + return _drinkCoffee!! + } + +private var _drinkCoffee: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrinkMargarita.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrinkMargarita.kt new file mode 100644 index 00000000..b950a480 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrinkMargarita.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DrinkMargarita: ImageVector + get() { + if (_drinkMargarita != null) { + return _drinkMargarita!! + } + _drinkMargarita = fluentIcon(name = "Filled.DrinkMargarita") { + fluentPath { + moveTo(20.49f, 2.63f) + curveToRelative(0.07f, 0.4f, -0.2f, 0.8f, -0.62f, 0.86f) + lineToRelative(-5.49f, 0.91f) + lineToRelative(-0.12f, 0.6f) + horizontalLineToRelative(3.99f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(4.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.0f, 3.24f) + verticalLineToRelative(0.51f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -3.25f, 3.93f) + verticalLineToRelative(3.07f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(-3.07f) + arcTo(4.0f, 4.0f, 0.0f, false, true, 8.0f, 13.5f) + lineTo(8.0f, 13.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.0f, -3.25f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.98f) + lineToRelative(0.28f, -1.4f) + curveToRelative(0.07f, -0.3f, 0.3f, -0.54f, 0.62f, -0.59f) + lineToRelative(6.0f, -1.0f) + curveToRelative(0.4f, -0.07f, 0.8f, 0.2f, 0.86f, 0.62f) + close() + moveTo(11.99f, 8.75f) + lineTo(12.44f, 6.5f) + lineTo(6.5f, 6.5f) + verticalLineToRelative(2.25f) + horizontalLineToRelative(5.48f) + close() + moveTo(17.5f, 8.75f) + lineTo(17.5f, 6.5f) + horizontalLineToRelative(-3.54f) + lineToRelative(-0.45f, 2.25f) + horizontalLineToRelative(3.99f) + close() + } + } + return _drinkMargarita!! + } + +private var _drinkMargarita: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrinkToGo.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrinkToGo.kt new file mode 100644 index 00000000..564e46e7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrinkToGo.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DrinkToGo: ImageVector + get() { + if (_drinkToGo != null) { + return _drinkToGo!! + } + _drinkToGo = fluentIcon(name = "Filled.DrinkToGo") { + fluentPath { + moveTo(15.72f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) + lineTo(15.56f, 4.5f) + horizontalLineToRelative(2.2f) + curveToRelative(0.3f, 0.0f, 0.59f, 0.2f, 0.7f, 0.5f) + lineToRelative(1.25f, 3.5f) + curveToRelative(0.17f, 0.49f, -0.2f, 1.0f, -0.7f, 1.0f) + horizontalLineToRelative(-1.05f) + lineToRelative(-1.6f, 10.05f) + arcTo(2.89f, 2.89f, 0.0f, false, true, 13.4f, 22.0f) + horizontalLineToRelative(-2.8f) + curveToRelative(-1.5f, 0.0f, -2.76f, -0.99f, -2.97f, -2.44f) + lineTo(6.05f, 9.5f) + horizontalLineTo(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, -1.0f) + lineTo(5.53f, 5.0f) + curveToRelative(0.11f, -0.3f, 0.4f, -0.5f, 0.71f, -0.5f) + horizontalLineToRelative(7.19f) + lineToRelative(2.28f, -2.28f) + close() + moveTo(17.22f, 6.0f) + horizontalLineTo(6.78f) + lineToRelative(-0.72f, 2.0f) + horizontalLineToRelative(11.88f) + lineToRelative(-0.72f, -2.0f) + close() + } + } + return _drinkToGo!! + } + +private var _drinkToGo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrinkWine.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrinkWine.kt new file mode 100644 index 00000000..88f37bf8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DrinkWine.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DrinkWine: ImageVector + get() { + if (_drinkWine != null) { + return _drinkWine!! + } + _drinkWine = fluentIcon(name = "Filled.DrinkWine") { + fluentPath { + moveTo(6.75f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(7.0f) + arcToRelative(5.75f, 5.75f, 0.0f, false, false, 5.0f, 5.7f) + verticalLineToRelative(5.06f) + lineToRelative(-2.25f, -0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineToRelative(3.0f, 0.01f) + lineToRelative(3.5f, -0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(12.5f, 20.5f) + verticalLineToRelative(-5.04f) + curveToRelative(3.1f, -0.38f, 5.5f, -3.01f, 5.5f, -6.21f) + verticalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(6.75f, 2.0f) + close() + moveTo(7.5f, 7.0f) + lineTo(7.5f, 3.5f) + horizontalLineToRelative(9.0f) + lineTo(16.5f, 7.0f) + horizontalLineToRelative(-9.0f) + close() + moveTo(15.68f, 9.7f) + arcToRelative(3.73f, 3.73f, 0.0f, false, true, -2.91f, 2.97f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.2f, -0.98f) + arcToRelative(2.74f, 2.74f, 0.0f, false, false, 2.13f, -2.17f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.98f, 0.19f) + close() + } + } + return _drinkWine!! + } + +private var _drinkWine: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DriveTrain.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DriveTrain.kt new file mode 100644 index 00000000..3b47fa93 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DriveTrain.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DriveTrain: ImageVector + get() { + if (_driveTrain != null) { + return _driveTrain!! + } + _driveTrain = fluentIcon(name = "Filled.DriveTrain") { + fluentPath { + moveTo(3.0f, 5.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(2.06f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 3.88f, 0.0f) + horizontalLineTo(16.0f) + verticalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + verticalLineToRelative(3.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) + verticalLineTo(8.0f) + horizontalLineToRelative(-2.27f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.98f, 0.85f) + verticalLineToRelative(6.3f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.98f, 0.85f) + horizontalLineTo(16.0f) + verticalLineToRelative(-0.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + verticalLineToRelative(3.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(-2.06f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -3.88f, 0.0f) + horizontalLineTo(8.0f) + verticalLineToRelative(1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) + verticalLineToRelative(-3.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + verticalLineToRelative(0.5f) + horizontalLineToRelative(2.27f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.98f, -0.85f) + verticalLineToRelative(-6.3f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.98f, -0.85f) + horizontalLineTo(8.0f) + verticalLineToRelative(0.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) + verticalLineToRelative(-3.0f) + close() + } + } + return _driveTrain!! + } + +private var _driveTrain: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Drop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Drop.kt new file mode 100644 index 00000000..e896cbc6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Drop.kt @@ -0,0 +1,33 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Drop: ImageVector + get() { + if (_drop != null) { + return _drop!! + } + _drop = fluentIcon(name = "Filled.Drop") { + fluentPath { + moveTo(11.47f, 2.22f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + curveToRelative(0.4f, 0.4f, 2.0f, 2.13f, 3.5f, 4.36f) + curveTo(17.5f, 8.78f, 19.0f, 11.63f, 19.0f, 14.25f) + curveToRelative(0.0f, 2.52f, -0.75f, 4.48f, -2.04f, 5.8f) + arcTo(6.78f, 6.78f, 0.0f, false, true, 12.0f, 22.0f) + arcToRelative(6.78f, 6.78f, 0.0f, false, true, -4.96f, -1.94f) + curveTo(5.74f, 18.73f, 5.0f, 16.77f, 5.0f, 14.25f) + curveToRelative(0.0f, -2.62f, 1.5f, -5.46f, 2.97f, -7.67f) + curveToRelative(1.5f, -2.23f, 3.1f, -3.96f, 3.5f, -4.36f) + close() + } + } + return _drop!! + } + +private var _drop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreen.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreen.kt new file mode 100644 index 00000000..116ead26 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreen.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DualScreen: ImageVector + get() { + if (_dualScreen != null) { + return _dualScreen!! + } + _dualScreen = fluentIcon(name = "Filled.DualScreen") { + fluentPath { + moveTo(20.25f, 4.0f) + curveTo(21.2f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.96f, -0.79f, 1.75f, -1.75f, 1.75f) + lineTo(13.0f, 20.0f) + curveToRelative(-0.09f, 0.0f, -0.17f, 0.0f, -0.26f, -0.02f) + lineTo(12.74f, 4.02f) + lineTo(13.0f, 4.0f) + horizontalLineToRelative(7.25f) + close() + moveTo(11.0f, 4.0f) + curveToRelative(0.08f, 0.0f, 0.16f, 0.0f, 0.24f, 0.02f) + verticalLineToRelative(15.96f) + lineTo(11.0f, 20.0f) + lineTo(3.75f, 20.0f) + curveTo(2.78f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) + lineTo(2.0f, 5.75f) + curveTo(2.0f, 4.78f, 2.78f, 4.0f, 3.75f, 4.0f) + lineTo(11.0f, 4.0f) + close() + moveTo(9.24f, 15.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(9.34f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(16.24f, 15.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(16.34f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + } + } + return _dualScreen!! + } + +private var _dualScreen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenAdd.kt new file mode 100644 index 00000000..8badbfae --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenAdd.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DualScreenAdd: ImageVector + get() { + if (_dualScreenAdd != null) { + return _dualScreenAdd!! + } + _dualScreenAdd = fluentIcon(name = "Filled.DualScreenAdd") { + fluentPath { + moveTo(22.0f, 9.97f) + verticalLineToRelative(10.28f) + curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) + lineTo(13.0f, 22.0f) + curveToRelative(-0.09f, 0.0f, -0.17f, 0.0f, -0.26f, -0.02f) + lineTo(12.74f, 11.8f) + arcTo(6.47f, 6.47f, 0.0f, false, false, 22.0f, 9.97f) + close() + moveTo(10.02f, 6.0f) + arcToRelative(6.63f, 6.63f, 0.0f, false, false, 1.22f, 4.32f) + verticalLineToRelative(11.66f) + lineTo(11.0f, 22.0f) + lineTo(3.75f, 22.0f) + curveTo(2.78f, 22.0f, 2.0f, 21.2f, 2.0f, 20.25f) + lineTo(2.0f, 7.75f) + curveTo(2.0f, 6.78f, 2.78f, 6.0f, 3.75f, 6.0f) + horizontalLineToRelative(6.27f) + close() + moveTo(9.24f, 17.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(9.34f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(16.24f, 17.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(16.34f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(16.5f, 1.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(16.5f, 3.0f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) + lineToRelative(-0.01f, 0.1f) + lineTo(16.0f, 6.0f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(0.18f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) + lineToRelative(0.1f, 0.01f) + lineTo(16.0f, 7.0f) + verticalLineToRelative(2.6f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + horizontalLineToRelative(0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) + lineToRelative(0.01f, -0.1f) + lineTo(17.0f, 7.0f) + horizontalLineToRelative(2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + verticalLineToRelative(-0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) + lineTo(19.5f, 6.0f) + lineTo(17.0f, 6.0f) + lineTo(17.0f, 3.4f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.4f) + close() + } + } + return _dualScreenAdd!! + } + +private var _dualScreenAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenArrowRight.kt new file mode 100644 index 00000000..b34071a6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenArrowRight.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DualScreenArrowRight: ImageVector + get() { + if (_dualScreenArrowRight != null) { + return _dualScreenArrowRight!! + } + _dualScreenArrowRight = fluentIcon(name = "Filled.DualScreenArrowRight") { + fluentPath { + moveTo(22.0f, 9.97f) + verticalLineToRelative(10.28f) + curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) + lineTo(13.0f, 22.0f) + curveToRelative(-0.09f, 0.0f, -0.17f, 0.0f, -0.26f, -0.02f) + lineTo(12.74f, 11.8f) + arcTo(6.47f, 6.47f, 0.0f, false, false, 22.0f, 9.97f) + close() + moveTo(10.02f, 6.0f) + arcToRelative(6.63f, 6.63f, 0.0f, false, false, 1.22f, 4.32f) + verticalLineToRelative(11.66f) + lineTo(11.0f, 22.0f) + lineTo(3.75f, 22.0f) + curveTo(2.78f, 22.0f, 2.0f, 21.2f, 2.0f, 20.25f) + lineTo(2.0f, 7.75f) + curveTo(2.0f, 6.78f, 2.78f, 6.0f, 3.75f, 6.0f) + horizontalLineToRelative(6.27f) + close() + moveTo(9.24f, 17.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(9.34f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(16.24f, 17.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(16.34f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(16.5f, 1.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(16.8f, 3.55f) + lineTo(16.72f, 3.59f) + lineTo(16.65f, 3.65f) + lineTo(16.59f, 3.72f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) + lineToRelative(0.06f, 0.07f) + lineTo(18.29f, 6.0f) + lineTo(13.4f, 6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(0.18f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(0.06f, -0.07f) + lineToRelative(2.53f, -2.53f) + lineToRelative(0.04f, -0.05f) + lineToRelative(0.04f, -0.08f) + lineToRelative(0.03f, -0.08f) + lineTo(19.99f, 6.39f) + lineToRelative(-0.03f, -0.08f) + lineToRelative(-0.04f, -0.08f) + lineToRelative(-0.04f, -0.05f) + lineToRelative(-2.53f, -2.53f) + lineToRelative(-0.07f, -0.06f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.49f, -0.04f) + close() + } + } + return _dualScreenArrowRight!! + } + +private var _dualScreenArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenArrowUp.kt new file mode 100644 index 00000000..2c8e47a1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenArrowUp.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DualScreenArrowUp: ImageVector + get() { + if (_dualScreenArrowUp != null) { + return _dualScreenArrowUp!! + } + _dualScreenArrowUp = fluentIcon(name = "Filled.DualScreenArrowUp") { + fluentPath { + moveTo(22.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(16.0f, 4.7f) + verticalLineToRelative(4.8f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + lineTo(17.0f, 4.7f) + lineToRelative(1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineTo(16.0f, 4.71f) + close() + moveTo(22.0f, 20.25f) + lineTo(22.0f, 9.97f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, -9.26f, 1.83f) + verticalLineToRelative(10.18f) + lineTo(13.0f, 22.0f) + horizontalLineToRelative(7.25f) + curveToRelative(0.96f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + close() + moveTo(14.74f, 17.5f) + horizontalLineToRelative(1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(14.64f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(10.0f, 6.5f) + curveToRelative(0.0f, -0.17f, 0.0f, -0.33f, 0.02f, -0.5f) + lineTo(3.75f, 6.0f) + curveTo(2.78f, 6.0f, 2.0f, 6.78f, 2.0f, 7.75f) + verticalLineToRelative(12.5f) + curveTo(2.0f, 21.2f, 2.78f, 22.0f, 3.75f, 22.0f) + lineTo(11.0f, 22.0f) + curveToRelative(0.08f, 0.0f, 0.16f, 0.0f, 0.24f, -0.02f) + lineTo(11.24f, 10.32f) + arcTo(6.47f, 6.47f, 0.0f, false, true, 10.0f, 6.5f) + close() + moveTo(7.74f, 17.5f) + horizontalLineToRelative(1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(7.64f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.1f) + close() + } + } + return _dualScreenArrowUp!! + } + +private var _dualScreenArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenClock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenClock.kt new file mode 100644 index 00000000..138d3816 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenClock.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DualScreenClock: ImageVector + get() { + if (_dualScreenClock != null) { + return _dualScreenClock!! + } + _dualScreenClock = fluentIcon(name = "Filled.DualScreenClock") { + fluentPath { + moveTo(22.0f, 9.97f) + verticalLineToRelative(10.28f) + curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) + lineTo(13.0f, 22.0f) + curveToRelative(-0.09f, 0.0f, -0.17f, 0.0f, -0.26f, -0.02f) + lineTo(12.74f, 11.8f) + arcTo(6.47f, 6.47f, 0.0f, false, false, 22.0f, 9.97f) + close() + moveTo(10.02f, 6.0f) + arcToRelative(6.63f, 6.63f, 0.0f, false, false, 1.22f, 4.32f) + verticalLineToRelative(11.66f) + lineTo(11.0f, 22.0f) + lineTo(3.75f, 22.0f) + curveTo(2.78f, 22.0f, 2.0f, 21.2f, 2.0f, 20.25f) + lineTo(2.0f, 7.75f) + curveTo(2.0f, 6.78f, 2.78f, 6.0f, 3.75f, 6.0f) + horizontalLineToRelative(6.27f) + close() + moveTo(9.24f, 17.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(9.34f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(16.24f, 17.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(16.34f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(16.5f, 1.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(15.5f, 3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + lineTo(16.0f, 7.0f) + lineTo(16.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + } + } + return _dualScreenClock!! + } + +private var _dualScreenClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenClosedAlert.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenClosedAlert.kt new file mode 100644 index 00000000..090d0b17 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenClosedAlert.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DualScreenClosedAlert: ImageVector + get() { + if (_dualScreenClosedAlert != null) { + return _dualScreenClosedAlert!! + } + _dualScreenClosedAlert = fluentIcon(name = "Filled.DualScreenClosedAlert") { + fluentPath { + moveTo(16.5f, 2.0f) + arcToRelative(4.01f, 4.01f, 0.0f, false, true, 4.0f, 4.0f) + verticalLineToRelative(2.52f) + lineToRelative(1.38f, 1.66f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.38f, 0.82f) + horizontalLineToRelative(-10.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.38f, -0.82f) + lineToRelative(1.38f, -1.66f) + lineTo(12.5f, 6.0f) + arcToRelative(4.01f, 4.01f, 0.0f, false, true, 4.0f, -4.0f) + close() + moveTo(5.75f, 5.0f) + horizontalLineToRelative(5.85f) + curveToRelative(-0.06f, 0.33f, -0.1f, 0.66f, -0.1f, 1.0f) + verticalLineToRelative(2.16f) + lineToRelative(-1.15f, 1.38f) + arcTo(1.5f, 1.5f, 0.0f, false, false, 11.5f, 12.0f) + horizontalLineToRelative(2.17f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 17.0f, 13.96f) + verticalLineToRelative(4.79f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(5.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(15.5f, 12.73f) + curveToRelative(-0.3f, -0.17f, -0.55f, -0.43f, -0.72f, -0.73f) + horizontalLineToRelative(3.44f) + arcToRelative(1.98f, 1.98f, 0.0f, false, true, -2.72f, 0.73f) + close() + } + } + return _dualScreenClosedAlert!! + } + +private var _dualScreenClosedAlert: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenDesktop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenDesktop.kt new file mode 100644 index 00000000..78900507 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenDesktop.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DualScreenDesktop: ImageVector + get() { + if (_dualScreenDesktop != null) { + return _dualScreenDesktop!! + } + _dualScreenDesktop = fluentIcon(name = "Filled.DualScreenDesktop") { + fluentPath { + moveTo(7.5f, 10.0f) + verticalLineToRelative(12.0f) + lineTo(3.75f, 22.0f) + curveToRelative(-0.92f, 0.0f, -1.67f, -0.7f, -1.74f, -1.6f) + lineTo(2.0f, 20.24f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) + lineToRelative(0.15f, -0.01f) + lineTo(7.5f, 9.99f) + close() + moveTo(12.25f, 10.0f) + curveToRelative(0.92f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.92f, -0.7f, 1.67f, -1.6f, 1.74f) + lineToRelative(-0.15f, 0.01f) + lineTo(8.5f, 22.0f) + lineTo(8.5f, 10.0f) + horizontalLineToRelative(3.75f) + close() + moveTo(10.65f, 18.5f) + horizontalLineToRelative(-0.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(5.89f, 18.5f) + horizontalLineToRelative(-0.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(6.0f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(19.75f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + lineTo(17.0f, 15.5f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(15.0f, 19.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(0.5f) + verticalLineToRelative(-2.0f) + lineTo(15.0f, 15.5f) + verticalLineToRelative(-4.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 12.66f, 9.0f) + lineTo(4.0f, 9.0f) + lineTo(4.0f, 4.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(6.25f, 2.0f) + horizontalLineToRelative(13.5f) + close() + } + } + return _dualScreenDesktop!! + } + +private var _dualScreenDesktop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenDismiss.kt new file mode 100644 index 00000000..f46dd2cc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenDismiss.kt @@ -0,0 +1,93 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DualScreenDismiss: ImageVector + get() { + if (_dualScreenDismiss != null) { + return _dualScreenDismiss!! + } + _dualScreenDismiss = fluentIcon(name = "Filled.DualScreenDismiss") { + fluentPath { + moveTo(22.0f, 9.97f) + verticalLineToRelative(10.28f) + curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) + lineTo(13.0f, 22.0f) + curveToRelative(-0.09f, 0.0f, -0.17f, 0.0f, -0.26f, -0.02f) + lineTo(12.74f, 11.8f) + arcTo(6.47f, 6.47f, 0.0f, false, false, 22.0f, 9.97f) + close() + moveTo(10.02f, 6.0f) + arcToRelative(6.63f, 6.63f, 0.0f, false, false, 1.22f, 4.32f) + verticalLineToRelative(11.66f) + lineTo(11.0f, 22.0f) + lineTo(3.75f, 22.0f) + curveTo(2.78f, 22.0f, 2.0f, 21.2f, 2.0f, 20.25f) + lineTo(2.0f, 7.75f) + curveTo(2.0f, 6.78f, 2.78f, 6.0f, 3.75f, 6.0f) + horizontalLineToRelative(6.27f) + close() + moveTo(9.24f, 17.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(9.34f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(16.24f, 17.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(16.34f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(16.5f, 1.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(14.1f, 3.97f) + lineTo(14.02f, 4.02f) + lineTo(13.97f, 4.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.05f, 0.07f) + lineTo(15.8f, 6.5f) + lineToRelative(-1.76f, 1.77f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.06f, 0.06f) + lineToRelative(0.07f, 0.06f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) + lineToRelative(0.07f, -0.06f) + lineToRelative(1.77f, -1.76f) + lineToRelative(1.77f, 1.77f) + lineToRelative(0.07f, 0.05f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.57f, 0.0f) + lineToRelative(0.07f, -0.05f) + lineToRelative(0.05f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) + lineToRelative(-0.05f, -0.07f) + lineTo(17.2f, 6.5f) + lineToRelative(1.77f, -1.77f) + lineToRelative(0.06f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) + lineToRelative(-0.06f, -0.07f) + lineToRelative(-0.07f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) + lineToRelative(-0.07f, 0.05f) + lineTo(16.5f, 5.8f) + lineToRelative(-1.77f, -1.77f) + lineToRelative(-0.07f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.05f) + lineToRelative(-0.07f, 0.05f) + close() + } + } + return _dualScreenDismiss!! + } + +private var _dualScreenDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenGroup.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenGroup.kt new file mode 100644 index 00000000..e18aff21 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenGroup.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DualScreenGroup: ImageVector + get() { + if (_dualScreenGroup != null) { + return _dualScreenGroup!! + } + _dualScreenGroup = fluentIcon(name = "Filled.DualScreenGroup") { + fluentPath { + moveTo(20.25f, 4.0f) + curveTo(21.22f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-7.24f) + curveToRelative(-0.1f, 0.0f, -0.18f, 0.0f, -0.26f, -0.02f) + lineTo(12.75f, 4.02f) + lineToRelative(0.26f, -0.02f) + horizontalLineToRelative(7.24f) + close() + moveTo(11.01f, 4.0f) + curveToRelative(0.08f, 0.0f, 0.16f, 0.0f, 0.24f, 0.02f) + verticalLineToRelative(15.96f) + lineToRelative(-0.24f, 0.02f) + lineTo(3.76f, 20.0f) + curveTo(2.79f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) + lineTo(2.0f, 5.75f) + curveTo(2.0f, 4.8f, 2.79f, 4.0f, 3.76f, 4.0f) + lineTo(11.0f, 4.0f) + close() + } + } + return _dualScreenGroup!! + } + +private var _dualScreenGroup: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenHeader.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenHeader.kt new file mode 100644 index 00000000..aa07b3de --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenHeader.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DualScreenHeader: ImageVector + get() { + if (_dualScreenHeader != null) { + return _dualScreenHeader!! + } + _dualScreenHeader = fluentIcon(name = "Filled.DualScreenHeader") { + fluentPath { + moveTo(22.0f, 8.0f) + verticalLineToRelative(10.25f) + curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) + lineTo(13.0f, 20.0f) + curveToRelative(-0.09f, 0.0f, -0.17f, 0.0f, -0.26f, -0.02f) + lineTo(12.74f, 8.0f) + lineTo(22.0f, 8.0f) + close() + moveTo(11.24f, 8.0f) + verticalLineToRelative(11.98f) + lineTo(11.0f, 20.0f) + lineTo(3.75f, 20.0f) + curveTo(2.78f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) + lineTo(2.0f, 8.0f) + horizontalLineToRelative(9.24f) + close() + moveTo(11.0f, 4.0f) + curveToRelative(0.08f, 0.0f, 0.16f, 0.0f, 0.24f, 0.02f) + lineTo(11.24f, 7.0f) + lineTo(2.0f, 7.0f) + lineTo(2.0f, 5.75f) + curveTo(2.0f, 4.8f, 2.78f, 4.0f, 3.75f, 4.0f) + lineTo(11.0f, 4.0f) + close() + moveTo(20.25f, 4.0f) + curveTo(21.2f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) + lineTo(22.0f, 7.0f) + horizontalLineToRelative(-9.26f) + lineTo(12.74f, 4.02f) + lineTo(13.0f, 4.0f) + horizontalLineToRelative(7.25f) + close() + } + } + return _dualScreenHeader!! + } + +private var _dualScreenHeader: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenLock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenLock.kt new file mode 100644 index 00000000..acd4ef90 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenLock.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DualScreenLock: ImageVector + get() { + if (_dualScreenLock != null) { + return _dualScreenLock!! + } + _dualScreenLock = fluentIcon(name = "Filled.DualScreenLock") { + fluentPath { + moveTo(17.0f, 5.0f) + horizontalLineToRelative(-0.5f) + arcTo(1.5f, 1.5f, 0.0f, false, false, 15.0f, 6.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(6.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(22.0f, 5.0f) + lineTo(22.0f, 4.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) + verticalLineToRelative(1.0f) + close() + moveTo(18.5f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-2.0f) + lineTo(18.5f, 4.0f) + close() + moveTo(20.5f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(13.0f, 6.0f) + horizontalLineToRelative(1.05f) + curveToRelative(-0.03f, 0.16f, -0.05f, 0.33f, -0.05f, 0.5f) + verticalLineToRelative(5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, 2.5f) + lineTo(22.0f, 14.0f) + verticalLineToRelative(6.25f) + curveToRelative(0.0f, 0.96f, -0.79f, 1.75f, -1.75f, 1.75f) + lineTo(13.0f, 22.0f) + curveToRelative(-0.09f, 0.0f, -0.17f, 0.0f, -0.26f, -0.02f) + lineTo(12.74f, 6.02f) + lineTo(13.0f, 6.0f) + close() + moveTo(16.24f, 17.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(16.34f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(11.0f, 6.0f) + curveToRelative(0.08f, 0.0f, 0.16f, 0.0f, 0.24f, 0.02f) + verticalLineToRelative(15.96f) + lineTo(11.0f, 22.0f) + lineTo(3.75f, 22.0f) + curveTo(2.78f, 22.0f, 2.0f, 21.2f, 2.0f, 20.25f) + lineTo(2.0f, 7.75f) + curveTo(2.0f, 6.78f, 2.78f, 6.0f, 3.75f, 6.0f) + lineTo(11.0f, 6.0f) + close() + moveTo(9.24f, 17.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(9.34f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + } + } + return _dualScreenLock!! + } + +private var _dualScreenLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenMirror.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenMirror.kt new file mode 100644 index 00000000..b150580f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenMirror.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DualScreenMirror: ImageVector + get() { + if (_dualScreenMirror != null) { + return _dualScreenMirror!! + } + _dualScreenMirror = fluentIcon(name = "Filled.DualScreenMirror") { + fluentPath { + moveTo(20.25f, 4.0f) + curveTo(21.22f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-7.24f) + curveToRelative(-0.1f, 0.0f, -0.18f, 0.0f, -0.26f, -0.02f) + lineTo(12.75f, 4.02f) + lineToRelative(0.26f, -0.02f) + horizontalLineToRelative(7.24f) + close() + moveTo(18.17f, 9.42f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.34f, 0.0f) + lineToRelative(-2.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.67f, 1.08f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.67f, -1.08f) + lineToRelative(-2.25f, -4.5f) + close() + moveTo(11.01f, 4.0f) + curveToRelative(0.08f, 0.0f, 0.16f, 0.0f, 0.24f, 0.02f) + verticalLineToRelative(15.96f) + lineToRelative(-0.24f, 0.02f) + lineTo(3.76f, 20.0f) + curveTo(2.79f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) + lineTo(2.0f, 5.75f) + curveTo(2.0f, 4.8f, 2.79f, 4.0f, 3.76f, 4.0f) + lineTo(11.0f, 4.0f) + close() + moveTo(7.17f, 9.42f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.34f, 0.0f) + lineToRelative(-2.25f, 4.5f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 4.25f, 15.0f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.67f, -1.08f) + lineToRelative(-2.25f, -4.5f) + close() + } + } + return _dualScreenMirror!! + } + +private var _dualScreenMirror: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenPagination.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenPagination.kt new file mode 100644 index 00000000..1a60f1e5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenPagination.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DualScreenPagination: ImageVector + get() { + if (_dualScreenPagination != null) { + return _dualScreenPagination!! + } + _dualScreenPagination = fluentIcon(name = "Filled.DualScreenPagination") { + fluentPath { + moveTo(20.25f, 4.0f) + curveTo(21.2f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) + lineTo(13.0f, 20.0f) + curveToRelative(-0.09f, 0.0f, -0.17f, 0.0f, -0.26f, -0.02f) + lineTo(12.74f, 4.02f) + lineTo(13.0f, 4.0f) + horizontalLineToRelative(7.25f) + close() + moveTo(11.0f, 4.0f) + curveToRelative(0.08f, 0.0f, 0.16f, 0.0f, 0.24f, 0.02f) + verticalLineToRelative(15.96f) + lineTo(11.0f, 20.0f) + lineTo(3.75f, 20.0f) + curveTo(2.78f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) + lineTo(2.0f, 5.75f) + curveTo(2.0f, 4.8f, 2.78f, 4.0f, 3.75f, 4.0f) + lineTo(11.0f, 4.0f) + close() + moveTo(17.63f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(20.13f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(15.13f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + } + } + return _dualScreenPagination!! + } + +private var _dualScreenPagination: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenSettings.kt new file mode 100644 index 00000000..8ae203b4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenSettings.kt @@ -0,0 +1,88 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DualScreenSettings: ImageVector + get() { + if (_dualScreenSettings != null) { + return _dualScreenSettings!! + } + _dualScreenSettings = fluentIcon(name = "Filled.DualScreenSettings") { + fluentPath { + moveTo(13.27f, 2.98f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.58f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) + lineToRelative(0.54f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) + lineToRelative(-0.18f, 0.64f) + curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.48f, 0.92f) + lineToRelative(0.5f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.9f) + lineToRelative(-0.2f, -0.7f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) + lineToRelative(0.59f, -0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, -0.01f, -1.8f) + lineToRelative(-0.54f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.19f, -0.63f) + curveToRelative(-0.44f, -0.39f, -0.94f, -0.7f, -1.49f, -0.93f) + lineToRelative(-0.5f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.53f, 0.22f, -1.03f, 0.53f, -1.47f, 0.91f) + lineToRelative(0.2f, 0.69f) + close() + moveTo(16.5f, 8.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(15.7f, 5.0f, 16.5f, 5.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(17.3f, 8.0f, 16.5f, 8.0f) + close() + moveTo(16.5f, 13.0f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 22.0f, 9.96f) + verticalLineToRelative(10.29f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(13.0f, 22.0f) + curveToRelative(-0.09f, 0.0f, -0.17f, 0.0f, -0.26f, -0.02f) + lineTo(12.74f, 11.81f) + arcTo(6.47f, 6.47f, 0.0f, false, false, 16.5f, 13.0f) + close() + moveTo(16.24f, 17.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(16.34f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(10.0f, 6.5f) + lineTo(10.0f, 6.0f) + lineTo(3.75f, 6.0f) + curveTo(2.78f, 6.0f, 2.0f, 6.78f, 2.0f, 7.75f) + verticalLineToRelative(12.5f) + curveTo(2.0f, 21.2f, 2.78f, 22.0f, 3.75f, 22.0f) + lineTo(11.0f, 22.0f) + curveToRelative(0.08f, 0.0f, 0.16f, 0.0f, 0.25f, -0.02f) + lineTo(11.25f, 10.33f) + arcTo(6.47f, 6.47f, 0.0f, false, true, 10.0f, 6.5f) + close() + moveTo(9.24f, 17.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(7.65f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.6f) + close() + } + } + return _dualScreenSettings!! + } + +private var _dualScreenSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenSpan.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenSpan.kt new file mode 100644 index 00000000..7ed3e87a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenSpan.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DualScreenSpan: ImageVector + get() { + if (_dualScreenSpan != null) { + return _dualScreenSpan!! + } + _dualScreenSpan = fluentIcon(name = "Filled.DualScreenSpan") { + fluentPath { + moveTo(22.0f, 5.75f) + curveTo(22.0f, 4.8f, 21.22f, 4.0f, 20.25f, 4.0f) + horizontalLineToRelative(-7.24f) + lineToRelative(-0.26f, 0.02f) + verticalLineToRelative(7.23f) + horizontalLineToRelative(4.83f) + lineToRelative(-0.89f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.12f, -1.0f) + lineToRelative(2.0f, 2.25f) + curveToRelative(0.25f, 0.29f, 0.25f, 0.71f, 0.0f, 1.0f) + lineToRelative(-2.0f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.12f, -1.0f) + lineToRelative(0.9f, -1.0f) + horizontalLineToRelative(-4.84f) + verticalLineToRelative(7.23f) + lineToRelative(0.26f, 0.02f) + horizontalLineToRelative(7.24f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(22.0f, 5.75f) + close() + moveTo(11.25f, 11.25f) + lineTo(6.42f, 11.25f) + lineToRelative(0.9f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.13f, -1.0f) + lineToRelative(-2.0f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.0f) + lineToRelative(2.0f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.12f, -1.0f) + lineToRelative(-0.89f, -1.0f) + horizontalLineToRelative(4.83f) + verticalLineToRelative(7.23f) + lineToRelative(-0.24f, 0.02f) + lineTo(3.76f, 20.0f) + curveTo(2.79f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) + lineTo(2.0f, 5.75f) + curveTo(2.0f, 4.8f, 2.79f, 4.0f, 3.76f, 4.0f) + lineTo(11.0f, 4.0f) + curveToRelative(0.08f, 0.0f, 0.16f, 0.0f, 0.24f, 0.02f) + verticalLineToRelative(7.23f) + close() + } + } + return _dualScreenSpan!! + } + +private var _dualScreenSpan: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenSpeaker.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenSpeaker.kt new file mode 100644 index 00000000..71efa7b5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenSpeaker.kt @@ -0,0 +1,104 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DualScreenSpeaker: ImageVector + get() { + if (_dualScreenSpeaker != null) { + return _dualScreenSpeaker!! + } + _dualScreenSpeaker = fluentIcon(name = "Filled.DualScreenSpeaker") { + fluentPath { + moveTo(22.14f, 3.3f) + arcToRelative(4.53f, 4.53f, 0.0f, false, false, -0.9f, -1.13f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, 1.16f) + curveToRelative(0.13f, 0.1f, 0.35f, 0.35f, 0.59f, 0.74f) + curveToRelative(0.4f, 0.67f, 0.64f, 1.48f, 0.64f, 2.43f) + curveToRelative(0.0f, 0.95f, -0.24f, 1.76f, -0.64f, 2.43f) + curveToRelative(-0.24f, 0.39f, -0.46f, 0.64f, -0.59f, 0.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.96f, 1.16f) + curveToRelative(0.25f, -0.21f, 0.59f, -0.58f, 0.91f, -1.13f) + curveToRelative(0.54f, -0.9f, 0.86f, -1.96f, 0.86f, -3.2f) + curveToRelative(0.0f, -1.24f, -0.32f, -2.3f, -0.86f, -3.2f) + close() + } + fluentPath { + moveTo(19.87f, 4.4f) + curveToRelative(-0.23f, -0.36f, -0.48f, -0.6f, -0.67f, -0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 1.2f) + arcTo(2.24f, 2.24f, 0.0f, false, true, 19.0f, 6.5f) + arcToRelative(2.24f, 2.24f, 0.0f, false, true, -0.7f, 1.65f) + lineToRelative(-0.08f, 0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) + arcToRelative(3.73f, 3.73f, 0.0f, false, false, 1.3f, -2.85f) + curveToRelative(0.0f, -0.81f, -0.23f, -1.52f, -0.63f, -2.1f) + close() + } + fluentPath { + moveTo(17.0f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.31f, -0.5f) + lineTo(14.16f, 5.0f) + horizontalLineToRelative(-1.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.76f, 0.75f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(1.41f) + lineToRelative(1.53f, 1.74f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 17.0f, 9.25f) + verticalLineToRelative(-5.5f) + close() + } + fluentPath { + moveTo(11.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.25f, -0.66f) + verticalLineToRelative(-0.32f) + arcToRelative(1.76f, 1.76f, 0.0f, false, false, -0.24f, -0.02f) + horizontalLineTo(3.76f) + curveTo(2.79f, 4.0f, 2.0f, 4.78f, 2.0f, 5.75f) + verticalLineToRelative(12.5f) + curveTo(2.0f, 19.2f, 2.79f, 20.0f, 3.76f, 20.0f) + horizontalLineTo(11.0f) + lineToRelative(0.24f, -0.02f) + verticalLineTo(8.66f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 11.0f, 8.0f) + verticalLineTo(5.0f) + close() + moveTo(9.25f, 15.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineTo(7.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.6f) + close() + } + fluentPath { + moveTo(13.53f, 9.0f) + horizontalLineToRelative(-0.78f) + verticalLineToRelative(10.98f) + lineToRelative(0.26f, 0.02f) + horizontalLineToRelative(7.24f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.79f, 1.75f, -1.75f) + verticalLineToRelative(-6.77f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -2.99f, -1.0f) + curveToRelative(-0.42f, 0.07f, -0.87f, -0.03f, -1.23f, -0.27f) + arcToRelative(1.76f, 1.76f, 0.0f, false, true, -2.8f, 0.33f) + lineTo(13.52f, 9.0f) + close() + moveTo(16.25f, 15.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(14.65f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.6f) + close() + } + } + return _dualScreenSpeaker!! + } + +private var _dualScreenSpeaker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenStatusBar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenStatusBar.kt new file mode 100644 index 00000000..10f53848 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenStatusBar.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DualScreenStatusBar: ImageVector + get() { + if (_dualScreenStatusBar != null) { + return _dualScreenStatusBar!! + } + _dualScreenStatusBar = fluentIcon(name = "Filled.DualScreenStatusBar") { + fluentPath { + moveTo(20.25f, 4.0f) + curveTo(21.2f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) + lineTo(13.0f, 20.0f) + curveToRelative(-0.09f, 0.0f, -0.17f, 0.0f, -0.26f, -0.02f) + lineTo(12.74f, 4.02f) + lineTo(13.0f, 4.0f) + horizontalLineToRelative(7.25f) + close() + moveTo(11.0f, 4.0f) + curveToRelative(0.08f, 0.0f, 0.16f, 0.0f, 0.24f, 0.02f) + verticalLineToRelative(15.96f) + lineTo(11.0f, 20.0f) + lineTo(3.75f, 20.0f) + curveTo(2.78f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) + lineTo(2.0f, 5.75f) + curveTo(2.0f, 4.8f, 2.78f, 4.0f, 3.75f, 4.0f) + lineTo(11.0f, 4.0f) + close() + moveTo(19.75f, 6.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + horizontalLineToRelative(4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + } + } + return _dualScreenStatusBar!! + } + +private var _dualScreenStatusBar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenTablet.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenTablet.kt new file mode 100644 index 00000000..bfe8e2fe --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenTablet.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DualScreenTablet: ImageVector + get() { + if (_dualScreenTablet != null) { + return _dualScreenTablet!! + } + _dualScreenTablet = fluentIcon(name = "Filled.DualScreenTablet") { + fluentPath { + moveTo(7.5f, 9.0f) + verticalLineToRelative(12.0f) + lineTo(3.75f, 21.0f) + curveToRelative(-0.92f, 0.0f, -1.67f, -0.7f, -1.74f, -1.6f) + lineTo(2.0f, 19.24f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) + lineTo(3.76f, 9.0f) + lineTo(7.5f, 9.0f) + close() + moveTo(12.25f, 9.0f) + curveToRelative(0.92f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.92f, -0.7f, 1.67f, -1.6f, 1.74f) + lineToRelative(-0.15f, 0.01f) + lineTo(8.5f, 21.0f) + lineTo(8.5f, 9.0f) + horizontalLineToRelative(3.75f) + close() + moveTo(10.65f, 17.5f) + horizontalLineToRelative(-0.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(5.89f, 17.5f) + horizontalLineToRelative(-0.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(6.0f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(19.75f, 3.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + lineTo(15.0f, 16.0f) + verticalLineToRelative(-2.5f) + horizontalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(15.0f, 12.0f) + verticalLineToRelative(-1.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 12.66f, 8.0f) + lineTo(6.0f, 8.0f) + lineTo(6.0f, 5.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(8.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + } + } + return _dualScreenTablet!! + } + +private var _dualScreenTablet: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenUpdate.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenUpdate.kt new file mode 100644 index 00000000..bd91b628 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenUpdate.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DualScreenUpdate: ImageVector + get() { + if (_dualScreenUpdate != null) { + return _dualScreenUpdate!! + } + _dualScreenUpdate = fluentIcon(name = "Filled.DualScreenUpdate") { + fluentPath { + moveTo(20.25f, 4.0f) + curveTo(21.2f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) + lineTo(13.0f, 20.0f) + curveToRelative(-0.09f, 0.0f, -0.17f, 0.0f, -0.26f, -0.02f) + lineTo(12.74f, 4.02f) + lineTo(13.0f, 4.0f) + horizontalLineToRelative(7.25f) + close() + moveTo(11.0f, 4.0f) + curveToRelative(0.08f, 0.0f, 0.16f, 0.0f, 0.24f, 0.02f) + verticalLineToRelative(15.96f) + lineTo(11.0f, 20.0f) + lineTo(3.75f, 20.0f) + curveTo(2.78f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) + lineTo(2.0f, 5.75f) + curveTo(2.0f, 4.8f, 2.78f, 4.0f, 3.75f, 4.0f) + lineTo(11.0f, 4.0f) + close() + moveTo(17.5f, 7.0f) + horizontalLineToRelative(-0.1f) + lineToRelative(-0.1f, 0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.54f, 0.6f) + lineToRelative(-0.01f, 0.12f) + verticalLineToRelative(6.7f) + lineToRelative(-0.97f, -0.96f) + lineToRelative(-0.08f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.97f) + lineToRelative(0.07f, 0.09f) + lineToRelative(2.25f, 2.23f) + lineToRelative(0.1f, 0.1f) + lineToRelative(0.08f, 0.04f) + lineToRelative(0.11f, 0.04f) + lineToRelative(0.1f, 0.03f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(0.09f) + lineToRelative(0.09f, -0.01f) + lineToRelative(0.06f, -0.02f) + lineToRelative(0.1f, -0.03f) + lineToRelative(0.06f, -0.03f) + lineToRelative(0.07f, -0.04f) + lineToRelative(0.06f, -0.05f) + lineToRelative(0.04f, -0.04f) + lineToRelative(2.25f, -2.23f) + lineToRelative(0.07f, -0.09f) + curveToRelative(0.2f, -0.26f, 0.2f, -0.62f, 0.01f, -0.88f) + lineToRelative(-0.08f, -0.1f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.76f, 0.76f, 0.0f, false, false, -0.89f, 0.0f) + lineToRelative(-0.1f, 0.08f) + lineToRelative(-0.96f, 0.96f) + verticalLineToRelative(-6.8f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 17.6f, 7.0f) + horizontalLineToRelative(-0.1f) + close() + } + } + return _dualScreenUpdate!! + } + +private var _dualScreenUpdate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenVerticalScroll.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenVerticalScroll.kt new file mode 100644 index 00000000..58e8bd7f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenVerticalScroll.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DualScreenVerticalScroll: ImageVector + get() { + if (_dualScreenVerticalScroll != null) { + return _dualScreenVerticalScroll!! + } + _dualScreenVerticalScroll = fluentIcon(name = "Filled.DualScreenVerticalScroll") { + fluentPath { + moveTo(20.25f, 4.0f) + curveTo(21.2f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) + lineTo(13.0f, 20.0f) + curveToRelative(-0.09f, 0.0f, -0.17f, 0.0f, -0.26f, -0.02f) + lineTo(12.74f, 4.02f) + lineTo(13.0f, 4.0f) + horizontalLineToRelative(7.25f) + close() + moveTo(11.0f, 4.0f) + curveToRelative(0.08f, 0.0f, 0.16f, 0.0f, 0.24f, 0.02f) + verticalLineToRelative(15.96f) + lineTo(11.0f, 20.0f) + lineTo(3.75f, 20.0f) + curveTo(2.78f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) + lineTo(2.0f, 5.75f) + curveTo(2.0f, 4.8f, 2.78f, 4.0f, 3.75f, 4.0f) + lineTo(11.0f, 4.0f) + close() + moveTo(15.7f, 13.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.04f) + lineToRelative(0.07f, 0.09f) + lineToRelative(2.26f, 2.3f) + lineToRelative(0.08f, 0.07f) + curveToRelative(0.27f, 0.2f, 0.64f, 0.2f, 0.9f, 0.0f) + lineToRelative(0.09f, -0.08f) + lineToRelative(2.25f, -2.3f) + lineToRelative(0.07f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.04f) + lineToRelative(-0.08f, 0.08f) + lineToRelative(-1.72f, 1.75f) + lineToRelative(-1.71f, -1.75f) + lineToRelative(-0.09f, -0.08f) + close() + moveTo(18.04f, 7.23f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.99f, -0.08f) + lineToRelative(-0.08f, 0.08f) + lineToRelative(-2.26f, 2.3f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.0f, 1.12f) + lineToRelative(0.08f, -0.08f) + lineToRelative(1.71f, -1.75f) + lineToRelative(1.72f, 1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.14f, -0.96f) + lineToRelative(-0.07f, -0.09f) + lineToRelative(-2.25f, -2.3f) + close() + } + } + return _dualScreenVerticalScroll!! + } + +private var _dualScreenVerticalScroll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenVibrate.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenVibrate.kt new file mode 100644 index 00000000..55dca7fa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/DualScreenVibrate.kt @@ -0,0 +1,93 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.DualScreenVibrate: ImageVector + get() { + if (_dualScreenVibrate != null) { + return _dualScreenVibrate!! + } + _dualScreenVibrate = fluentIcon(name = "Filled.DualScreenVibrate") { + fluentPath { + moveTo(11.5f, 6.0f) + verticalLineToRelative(13.0f) + lineTo(7.25f, 19.0f) + curveToRelative(-0.92f, 0.0f, -1.67f, -0.7f, -1.74f, -1.6f) + lineToRelative(-0.01f, -0.15f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.75f) + horizontalLineToRelative(4.4f) + close() + moveTo(16.75f, 6.0f) + curveToRelative(0.92f, 0.0f, 1.67f, 0.7f, 1.75f, 1.6f) + verticalLineToRelative(9.65f) + curveToRelative(0.0f, 0.92f, -0.7f, 1.67f, -1.6f, 1.74f) + horizontalLineToRelative(-4.4f) + lineTo(12.5f, 6.0f) + horizontalLineToRelative(4.25f) + close() + moveTo(15.25f, 15.5f) + horizontalLineToRelative(-1.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(15.35f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(9.75f, 15.5f) + horizontalLineToRelative(-1.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(9.85f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(21.12f, 8.04f) + lineTo(21.18f, 8.13f) + lineTo(21.22f, 8.23f) + lineTo(21.8f, 9.68f) + curveToRelative(0.34f, 0.83f, 0.24f, 1.77f, -0.24f, 2.51f) + lineToRelative(-0.11f, 0.16f) + lineToRelative(-0.15f, 0.2f) + curveToRelative(-0.23f, 0.31f, -0.3f, 0.7f, -0.2f, 1.08f) + lineToRelative(0.04f, 0.13f) + lineToRelative(0.58f, 1.46f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.65f) + lineToRelative(-0.04f, -0.1f) + lineToRelative(-0.58f, -1.45f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.24f, -2.51f) + lineToRelative(0.1f, -0.16f) + lineToRelative(0.16f, -0.2f) + curveToRelative(0.23f, -0.31f, 0.3f, -0.71f, 0.2f, -1.08f) + lineToRelative(-0.04f, -0.14f) + lineToRelative(-0.58f, -1.45f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.29f, -0.74f) + close() + moveTo(3.57f, 8.04f) + lineTo(3.63f, 8.13f) + lineTo(3.67f, 8.23f) + lineTo(4.25f, 9.68f) + curveToRelative(0.34f, 0.83f, 0.24f, 1.77f, -0.24f, 2.51f) + lineToRelative(-0.1f, 0.16f) + lineToRelative(-0.16f, 0.2f) + curveToRelative(-0.23f, 0.31f, -0.3f, 0.7f, -0.2f, 1.08f) + lineToRelative(0.04f, 0.13f) + lineToRelative(0.58f, 1.46f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.65f) + lineToRelative(-0.04f, -0.1f) + lineToRelative(-0.58f, -1.45f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.24f, -2.51f) + lineToRelative(0.11f, -0.16f) + lineToRelative(0.15f, -0.2f) + curveToRelative(0.23f, -0.31f, 0.3f, -0.71f, 0.2f, -1.08f) + lineToRelative(-0.04f, -0.14f) + lineToRelative(-0.58f, -1.45f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.29f, -0.74f) + close() + } + } + return _dualScreenVibrate!! + } + +private var _dualScreenVibrate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Dumbbell.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Dumbbell.kt new file mode 100644 index 00000000..e08425ca --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Dumbbell.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Dumbbell: ImageVector + get() { + if (_dumbbell != null) { + return _dumbbell!! + } + _dumbbell = fluentIcon(name = "Filled.Dumbbell") { + fluentPath { + moveTo(17.34f, 3.52f) + arcToRelative(2.45f, 2.45f, 0.0f, false, false, -3.7f, 0.28f) + arcTo(2.97f, 2.97f, 0.0f, false, false, 11.0f, 8.83f) + lineToRelative(1.25f, 1.24f) + lineToRelative(-1.13f, 1.13f) + lineToRelative(1.69f, 1.69f) + lineToRelative(1.13f, -1.13f) + lineToRelative(1.24f, 1.25f) + arcToRelative(2.97f, 2.97f, 0.0f, false, false, 5.03f, -2.63f) + arcToRelative(2.46f, 2.46f, 0.0f, false, false, 0.28f, -3.7f) + lineToRelative(-0.74f, -0.73f) + lineToRelative(0.65f, -0.65f) + arcToRelative(1.2f, 1.2f, 0.0f, true, false, -1.69f, -1.68f) + lineToRelative(-0.64f, 0.64f) + lineToRelative(-0.74f, -0.74f) + close() + moveTo(17.77f, 8.86f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineTo(15.14f, 7.3f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(1.57f, 1.57f) + curveToRelative(0.29f, 0.3f, 0.29f, 0.77f, 0.0f, 1.06f) + close() + moveTo(4.62f, 11.02f) + arcToRelative(2.97f, 2.97f, 0.0f, false, true, 4.2f, 0.0f) + lineToRelative(4.19f, 4.18f) + arcToRelative(2.97f, 2.97f, 0.0f, false, true, -2.63f, 5.02f) + arcToRelative(2.45f, 2.45f, 0.0f, false, true, -3.7f, 0.28f) + lineToRelative(-0.74f, -0.74f) + lineToRelative(-0.66f, 0.67f) + arcToRelative(1.2f, 1.2f, 0.0f, false, true, -1.69f, -1.68f) + lineToRelative(0.67f, -0.67f) + lineToRelative(-0.74f, -0.74f) + arcToRelative(2.45f, 2.45f, 0.0f, false, true, 0.28f, -3.7f) + curveToRelative(-0.16f, -0.92f, 0.11f, -1.9f, 0.82f, -2.62f) + close() + moveTo(8.35f, 18.28f) + curveToRelative(0.3f, -0.29f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-1.57f, -1.57f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.57f, 1.57f) + curveToRelative(0.29f, 0.3f, 0.76f, 0.3f, 1.06f, 0.0f) + close() + } + } + return _dumbbell!! + } + +private var _dumbbell: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Earth.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Earth.kt new file mode 100644 index 00000000..0403c0c5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Earth.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Earth: ImageVector + get() { + if (_earth != null) { + return _earth!! + } + _earth = fluentIcon(name = "Filled.Earth") { + fluentPath { + moveTo(10.95f, 2.05f) + arcTo(10.0f, 10.0f, 0.0f, true, true, 4.1f, 18.13f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 6.83f, -16.08f) + horizontalLineToRelative(0.02f) + close() + moveTo(12.0f, 3.5f) + horizontalLineToRelative(-0.16f) + curveToRelative(0.12f, 0.25f, 0.26f, 0.53f, 0.37f, 0.85f) + curveToRelative(0.35f, 0.92f, 0.67f, 2.28f, 0.1f, 3.49f) + curveToRelative(-0.52f, 1.11f, -1.42f, 1.4f, -2.09f, 1.57f) + lineToRelative(-0.08f, 0.02f) + curveToRelative(-0.66f, 0.17f, -0.9f, 0.24f, -1.1f, 0.52f) + curveToRelative(-0.16f, 0.25f, -0.14f, 0.58f, 0.07f, 1.25f) + lineToRelative(0.04f, 0.14f) + curveToRelative(0.09f, 0.26f, 0.18f, 0.57f, 0.23f, 0.87f) + curveToRelative(0.07f, 0.36f, 0.09f, 0.82f, -0.15f, 1.27f) + curveToRelative(-0.23f, 0.45f, -0.54f, 0.75f, -0.9f, 0.95f) + curveToRelative(-0.34f, 0.18f, -0.7f, 0.25f, -0.96f, 0.3f) + lineToRelative(-0.09f, 0.02f) + curveToRelative(-0.51f, 0.09f, -0.76f, 0.13f, -1.0f, 0.39f) + curveToRelative(-0.19f, 0.2f, -0.3f, 0.55f, -0.38f, 1.07f) + lineToRelative(-0.06f, 0.65f) + verticalLineToRelative(0.12f) + curveToRelative(-0.03f, 0.24f, -0.05f, 0.52f, -0.1f, 0.76f) + arcToRelative(8.48f, 8.48f, 0.0f, false, false, 10.58f, 1.58f) + lineToRelative(-0.31f, -0.35f) + curveToRelative(-0.34f, -0.43f, -0.79f, -1.16f, -0.63f, -2.03f) + curveToRelative(0.07f, -0.42f, 0.3f, -0.77f, 0.51f, -1.04f) + curveToRelative(0.22f, -0.27f, 0.49f, -0.52f, 0.72f, -0.74f) + lineToRelative(0.16f, -0.14f) + curveToRelative(0.18f, -0.17f, 0.33f, -0.3f, 0.46f, -0.44f) + curveToRelative(0.17f, -0.18f, 0.21f, -0.26f, 0.21f, -0.27f) + curveToRelative(0.07f, -0.22f, -0.01f, -0.38f, -0.1f, -0.45f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, -0.2f, -0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.4f, 0.14f) + arcToRelative(0.91f, 0.91f, 0.0f, false, true, -0.83f, 0.08f) + curveToRelative(-0.27f, -0.1f, -0.41f, -0.31f, -0.49f, -0.43f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.27f, -0.77f) + lineToRelative(-0.12f, -0.55f) + lineToRelative(-0.04f, -0.21f) + lineToRelative(-0.13f, -0.54f) + lineToRelative(-0.02f, -0.04f) + arcToRelative(6.23f, 6.23f, 0.0f, false, false, -0.3f, -0.42f) + lineToRelative(-0.1f, -0.14f) + curveToRelative(-0.16f, -0.21f, -0.36f, -0.47f, -0.52f, -0.71f) + curveToRelative(-0.2f, -0.3f, -0.42f, -0.7f, -0.49f, -1.1f) + arcToRelative(1.39f, 1.39f, 0.0f, false, true, 0.54f, -1.38f) + arcToRelative(13.0f, 13.0f, 0.0f, false, false, 1.83f, -1.97f) + curveToRelative(0.29f, -0.36f, 0.54f, -0.7f, 0.73f, -0.95f) + arcTo(8.46f, 8.46f, 0.0f, false, false, 12.0f, 3.5f) + close() + } + } + return _earth!! + } + +private var _earth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EarthLeaf.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EarthLeaf.kt new file mode 100644 index 00000000..ddadb251 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EarthLeaf.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.EarthLeaf: ImageVector + get() { + if (_earthLeaf != null) { + return _earthLeaf!! + } + _earthLeaf = fluentIcon(name = "Filled.EarthLeaf") { + fluentPath { + moveTo(10.95f, 2.05f) + arcTo(10.0f, 10.0f, 0.0f, false, true, 22.0f, 11.75f) + curveToRelative(-1.17f, -0.24f, -2.85f, -0.4f, -5.23f, -0.08f) + curveToRelative(-0.64f, 0.09f, -1.22f, 0.26f, -1.76f, 0.5f) + arcToRelative(25.3f, 25.3f, 0.0f, false, false, -0.15f, -0.65f) + lineToRelative(-0.02f, -0.04f) + arcToRelative(6.23f, 6.23f, 0.0f, false, false, -0.3f, -0.42f) + lineToRelative(-0.1f, -0.14f) + curveToRelative(-0.16f, -0.21f, -0.36f, -0.47f, -0.52f, -0.71f) + curveToRelative(-0.2f, -0.3f, -0.42f, -0.7f, -0.49f, -1.1f) + arcToRelative(1.39f, 1.39f, 0.0f, false, true, 0.54f, -1.38f) + arcToRelative(13.0f, 13.0f, 0.0f, false, false, 1.83f, -1.97f) + curveToRelative(0.29f, -0.36f, 0.54f, -0.7f, 0.73f, -0.95f) + arcToRelative(8.46f, 8.46f, 0.0f, false, false, -4.69f, -1.3f) + curveToRelative(0.12f, 0.24f, 0.25f, 0.52f, 0.37f, 0.84f) + curveToRelative(0.35f, 0.92f, 0.67f, 2.28f, 0.1f, 3.49f) + curveToRelative(-0.52f, 1.11f, -1.42f, 1.4f, -2.09f, 1.57f) + lineToRelative(-0.08f, 0.02f) + curveToRelative(-0.66f, 0.17f, -0.9f, 0.24f, -1.1f, 0.52f) + curveToRelative(-0.16f, 0.25f, -0.14f, 0.58f, 0.07f, 1.25f) + lineToRelative(0.04f, 0.14f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, 0.23f, 0.87f) + curveToRelative(0.07f, 0.36f, 0.09f, 0.82f, -0.15f, 1.27f) + curveToRelative(-0.23f, 0.45f, -0.54f, 0.75f, -0.9f, 0.95f) + curveToRelative(-0.34f, 0.18f, -0.7f, 0.25f, -0.96f, 0.3f) + lineToRelative(-0.09f, 0.02f) + curveToRelative(-0.51f, 0.09f, -0.76f, 0.13f, -1.0f, 0.39f) + curveToRelative(-0.19f, 0.2f, -0.3f, 0.55f, -0.38f, 1.07f) + lineToRelative(-0.06f, 0.65f) + lineToRelative(-0.01f, 0.12f) + curveToRelative(-0.02f, 0.24f, -0.04f, 0.52f, -0.1f, 0.76f) + arcToRelative(8.48f, 8.48f, 0.0f, false, false, 5.63f, 2.74f) + curveToRelative(-0.17f, 0.5f, -0.29f, 1.0f, -0.34f, 1.47f) + arcTo(9.96f, 9.96f, 0.0f, false, true, 2.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 8.93f, -9.94f) + lineToRelative(0.02f, -0.01f) + close() + moveTo(12.0f, 22.2f) + curveToRelative(0.05f, -0.97f, 0.49f, -2.15f, 1.23f, -3.26f) + arcToRelative(8.9f, 8.9f, 0.0f, false, true, 5.38f, -3.97f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.24f, -0.96f) + arcToRelative(9.9f, 9.9f, 0.0f, false, false, -5.73f, 4.0f) + curveToRelative(-0.1f, -0.3f, -0.15f, -0.64f, -0.15f, -1.02f) + curveToRelative(0.0f, -0.92f, 0.46f, -1.91f, 1.2f, -2.7f) + arcToRelative(5.33f, 5.33f, 0.0f, false, true, 3.2f, -1.64f) + arcToRelative(13.5f, 13.5f, 0.0f, false, true, 5.56f, 0.23f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.21f, 1.35f) + arcToRelative(0.92f, 0.92f, 0.0f, false, false, -0.26f, 0.34f) + curveToRelative(-0.1f, 0.2f, -0.2f, 0.48f, -0.32f, 0.82f) + lineToRelative(-0.26f, 0.93f) + lineToRelative(-0.05f, 0.21f) + curveToRelative(-0.12f, 0.41f, -0.24f, 0.85f, -0.39f, 1.29f) + curveToRelative(-0.29f, 0.86f, -0.7f, 1.78f, -1.4f, 2.48f) + arcToRelative(4.02f, 4.02f, 0.0f, false, true, -3.0f, 1.2f) + arcToRelative(3.82f, 3.82f, 0.0f, false, true, -2.84f, -1.16f) + curveToRelative(-0.4f, 0.74f, -0.62f, 1.43f, -0.65f, 1.95f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, -0.1f) + close() + } + } + return _earthLeaf!! + } + +private var _earthLeaf: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EditOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EditOff.kt new file mode 100644 index 00000000..cff1345a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EditOff.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.EditOff: ImageVector + get() { + if (_editOff != null) { + return _editOff!! + } + _editOff = fluentIcon(name = "Filled.EditOff") { + fluentPath { + moveToRelative(14.0f, 15.06f) + lineToRelative(6.72f, 6.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineTo(8.94f, 10.0f) + lineToRelative(-5.0f, 5.0f) + curveToRelative(-0.4f, 0.4f, -0.7f, 0.92f, -0.82f, 1.48f) + lineToRelative(-1.1f, 4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.9f, 0.9f) + lineToRelative(4.6f, -1.1f) + arcTo(3.1f, 3.1f, 0.0f, false, false, 9.0f, 20.07f) + lineToRelative(5.0f, -5.0f) + close() + moveTo(19.0f, 10.06f) + lineTo(16.12f, 12.94f) + lineTo(11.06f, 7.88f) + lineTo(13.94f, 5.0f) + lineTo(19.0f, 10.06f) + close() + moveTo(15.9f, 3.05f) + arcToRelative(3.58f, 3.58f, 0.0f, true, true, 5.05f, 5.06f) + lineToRelative(-0.89f, 0.9f) + lineTo(15.0f, 3.93f) + lineToRelative(0.9f, -0.9f) + close() + } + } + return _editOff!! + } + +private var _editOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EditProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EditProhibited.kt new file mode 100644 index 00000000..25cf8ee5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EditProhibited.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.EditProhibited: ImageVector + get() { + if (_editProhibited != null) { + return _editProhibited!! + } + _editProhibited = fluentIcon(name = "Filled.EditProhibited") { + fluentPath { + moveTo(15.9f, 3.05f) + arcToRelative(3.58f, 3.58f, 0.0f, true, true, 5.05f, 5.06f) + lineToRelative(-0.89f, 0.9f) + lineTo(15.0f, 3.93f) + lineToRelative(0.9f, -0.9f) + close() + moveTo(13.93f, 5.0f) + lineToRelative(-10.0f, 10.0f) + curveToRelative(-0.4f, 0.4f, -0.7f, 0.92f, -0.82f, 1.48f) + lineToRelative(-1.1f, 4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.9f, 0.9f) + lineToRelative(4.6f, -1.1f) + arcTo(3.1f, 3.1f, 0.0f, false, false, 9.0f, 20.07f) + lineToRelative(1.15f, -1.15f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, 7.76f, -7.76f) + lineTo(19.0f, 10.06f) + lineTo(13.94f, 5.0f) + close() + moveTo(22.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(12.5f, 17.5f) + curveToRelative(0.0f, 0.83f, 0.26f, 1.6f, 0.7f, 2.25f) + lineToRelative(5.55f, -5.56f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) + close() + moveTo(16.5f, 21.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) + lineToRelative(-5.55f, 5.56f) + curveToRelative(0.64f, 0.44f, 1.42f, 0.7f, 2.25f, 0.7f) + close() + moveTo(9.0f, 20.06f) + lineToRelative(-0.53f, -0.53f) + close() + } + } + return _editProhibited!! + } + +private var _editProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EditSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EditSettings.kt new file mode 100644 index 00000000..31478948 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EditSettings.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.EditSettings: ImageVector + get() { + if (_editSettings != null) { + return _editSettings!! + } + _editSettings = fluentIcon(name = "Filled.EditSettings") { + fluentPath { + moveTo(15.9f, 3.05f) + arcToRelative(3.58f, 3.58f, 0.0f, true, true, 5.05f, 5.06f) + lineToRelative(-0.89f, 0.9f) + lineTo(15.0f, 3.93f) + lineToRelative(0.9f, -0.9f) + close() + moveTo(13.93f, 5.0f) + lineToRelative(-10.0f, 10.0f) + curveToRelative(-0.4f, 0.4f, -0.7f, 0.92f, -0.82f, 1.48f) + lineToRelative(-1.1f, 4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.9f, 0.9f) + lineToRelative(4.6f, -1.1f) + arcTo(3.1f, 3.1f, 0.0f, false, false, 9.0f, 20.07f) + lineToRelative(1.15f, -1.15f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, 7.76f, -7.76f) + lineTo(19.0f, 10.06f) + lineTo(13.94f, 5.0f) + close() + moveTo(13.27f, 13.98f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.59f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) + lineToRelative(0.55f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) + lineToRelative(-0.19f, 0.64f) + curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) + lineToRelative(0.49f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.9f) + lineToRelative(-0.2f, -0.7f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) + lineToRelative(0.59f, -0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, -0.01f, -1.8f) + lineToRelative(-0.54f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.19f, -0.63f) + curveToRelative(-0.44f, -0.39f, -0.94f, -0.7f, -1.49f, -0.93f) + lineToRelative(-0.49f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.91f) + lineToRelative(0.2f, 0.69f) + close() + moveTo(16.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(15.7f, 16.0f, 16.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(17.3f, 19.0f, 16.5f, 19.0f) + close() + } + } + return _editSettings!! + } + +private var _editSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Elevator.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Elevator.kt new file mode 100644 index 00000000..fa968960 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Elevator.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Elevator: ImageVector + get() { + if (_elevator != null) { + return _elevator!! + } + _elevator = fluentIcon(name = "Filled.Elevator") { + fluentPath { + moveTo(12.75f, 20.0f) + horizontalLineToRelative(6.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-9.5f) + curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) + horizontalLineToRelative(-6.0f) + verticalLineToRelative(16.0f) + close() + moveTo(16.72f, 14.78f) + lineTo(14.97f, 13.03f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(0.47f, 0.47f) + lineTo(16.5f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(2.94f) + lineToRelative(0.47f, -0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-1.75f, 1.75f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + close() + moveTo(11.25f, 4.0f) + horizontalLineToRelative(-6.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) + horizontalLineToRelative(6.0f) + lineTo(11.25f, 4.0f) + close() + moveTo(7.28f, 8.97f) + lineToRelative(1.75f, 1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-0.47f, -0.47f) + verticalLineToRelative(2.94f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.94f) + lineToRelative(-0.47f, 0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(1.75f, -1.75f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + } + } + return _elevator!! + } + +private var _elevator: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Emoji.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Emoji.kt new file mode 100644 index 00000000..de38ba04 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Emoji.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Emoji: ImageVector + get() { + if (_emoji != null) { + return _emoji!! + } + _emoji = fluentIcon(name = "Filled.Emoji") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(8.46f, 14.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.18f, 0.93f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, 9.43f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.18f, -0.92f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -7.07f, 0.0f) + close() + moveTo(9.0f, 8.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(15.0f, 8.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + } + } + return _emoji!! + } + +private var _emoji: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiAdd.kt new file mode 100644 index 00000000..b4e61517 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiAdd.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.EmojiAdd: ImageVector + get() { + if (_emojiAdd != null) { + return _emojiAdd!! + } + _emojiAdd = fluentIcon(name = "Filled.EmojiAdd") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 9.97f, 10.78f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -10.88f, 3.63f) + arcToRelative(4.49f, 4.49f, 0.0f, false, true, -2.63f, -1.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.18f, 0.93f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, 3.73f, 2.21f) + curveToRelative(0.1f, 1.56f, 0.76f, 2.98f, 1.77f, 4.05f) + lineTo(12.0f, 22.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, -20.0f) + close() + moveTo(17.5f, 14.0f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) + lineToRelative(-0.01f, 0.1f) + lineTo(17.0f, 17.0f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) + verticalLineToRelative(0.19f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) + lineTo(17.0f, 17.99f) + verticalLineToRelative(2.61f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + horizontalLineToRelative(0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) + lineToRelative(0.01f, -0.1f) + lineTo(18.0f, 18.0f) + horizontalLineToRelative(2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + verticalLineToRelative(-0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) + lineToRelative(-0.1f, -0.01f) + lineTo(18.0f, 17.0f) + verticalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) + horizontalLineToRelative(-0.09f) + close() + moveTo(9.0f, 8.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(15.0f, 8.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + } + } + return _emojiAdd!! + } + +private var _emojiAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiAngry.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiAngry.kt new file mode 100644 index 00000000..fd623044 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiAngry.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.EmojiAngry: ImageVector + get() { + if (_emojiAngry != null) { + return _emojiAngry!! + } + _emojiAngry = fluentIcon(name = "Filled.EmojiAngry") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(12.0f, 13.5f) + curveToRelative(-1.63f, 0.0f, -3.17f, 0.66f, -4.29f, 1.8f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.07f, 1.05f) + arcToRelative(4.48f, 4.48f, 0.0f, false, true, 6.43f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.07f, -1.06f) + arcTo(5.98f, 5.98f, 0.0f, false, false, 12.0f, 13.5f) + close() + moveTo(8.22f, 6.66f) + lineToRelative(-0.1f, -0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.92f, 1.16f) + lineToRelative(0.08f, 0.07f) + lineToRelative(1.26f, 1.0f) + arcTo(1.25f, 1.25f, 0.0f, true, false, 10.25f, 10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.55f, -1.26f) + lineToRelative(-0.08f, -0.08f) + lineToRelative(-2.5f, -2.0f) + lineToRelative(-0.1f, -0.06f) + lineToRelative(0.1f, 0.06f) + close() + moveTo(16.84f, 6.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, -0.18f) + lineToRelative(-0.09f, 0.06f) + lineToRelative(-2.5f, 2.0f) + lineToRelative(-0.08f, 0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.44f, 1.25f) + horizontalLineToRelative(0.11f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 1.83f, -1.1f) + lineToRelative(-0.12f, -0.05f) + lineToRelative(1.26f, -1.0f) + lineToRelative(0.08f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.04f, -0.98f) + close() + } + } + return _emojiAngry!! + } + +private var _emojiAngry: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiEdit.kt new file mode 100644 index 00000000..452e2fa4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiEdit.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.EmojiEdit: ImageVector + get() { + if (_emojiEdit != null) { + return _emojiEdit!! + } + _emojiEdit = fluentIcon(name = "Filled.EmojiEdit") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 9.97f, 9.25f) + arcToRelative(3.29f, 3.29f, 0.0f, false, false, -3.58f, 0.71f) + lineToRelative(-2.63f, 2.64f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.23f, 0.19f) + lineToRelative(-0.16f, 0.2f) + lineToRelative(-0.39f, 0.38f) + arcToRelative(4.49f, 4.49f, 0.0f, false, true, -6.52f, -0.59f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.18f, 0.93f) + arcTo(6.0f, 6.0f, 0.0f, false, false, 12.37f, 18.0f) + curveToRelative(-0.4f, 0.45f, -0.7f, 1.0f, -0.85f, 1.59f) + lineToRelative(-0.46f, 1.83f) + curveToRelative(-0.04f, 0.18f, -0.06f, 0.36f, -0.06f, 0.54f) + arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 2.0f) + close() + moveTo(9.0f, 8.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(15.0f, 8.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _emojiEdit!! + } + +private var _emojiEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiHand.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiHand.kt new file mode 100644 index 00000000..ecb2da58 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiHand.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.EmojiHand: ImageVector + get() { + if (_emojiHand != null) { + return _emojiHand!! + } + _emojiHand = fluentIcon(name = "Filled.EmojiHand") { + fluentPath { + moveTo(7.5f, 7.5f) + lineTo(7.5f, 1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(9.0f, 7.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) + verticalLineToRelative(-5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(5.81f) + arcTo(4.4f, 4.4f, 0.0f, false, true, 13.0f, 8.0f) + curveToRelative(0.5f, 0.0f, 0.93f, 0.12f, 1.24f, 0.28f) + curveToRelative(0.16f, 0.08f, 0.3f, 0.17f, 0.42f, 0.28f) + lineToRelative(0.19f, 0.21f) + curveToRelative(0.05f, 0.07f, 0.15f, 0.24f, 0.15f, 0.48f) + curveToRelative(0.0f, 0.26f, -0.13f, 0.5f, -0.35f, 0.64f) + lineToRelative(-1.9f, 1.19f) + lineToRelative(-1.67f, 1.89f) + lineToRelative(-1.37f, 1.9f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 7.48f, 16.0f) + lineTo(6.34f, 16.0f) + curveToRelative(-0.93f, 0.0f, -1.82f, -0.47f, -2.3f, -1.31f) + arcToRelative(20.7f, 20.7f, 0.0f, false, true, -0.98f, -1.9f) + arcToRelative(5.58f, 5.58f, 0.0f, false, true, -0.56f, -2.04f) + verticalLineToRelative(-7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(4.0f, 8.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + lineTo(5.0f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) + close() + moveTo(15.0f, 22.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, -6.73f, -5.08f) + curveToRelative(0.9f, -0.2f, 1.7f, -0.71f, 2.25f, -1.47f) + lineToRelative(1.35f, -1.86f) + lineToRelative(1.53f, -1.74f) + lineToRelative(1.78f, -1.12f) + curveToRelative(0.5f, -0.32f, 0.82f, -0.88f, 0.82f, -1.48f) + arcToRelative(1.86f, 1.86f, 0.0f, false, false, -0.47f, -1.23f) + arcTo(7.0f, 7.0f, 0.0f, false, true, 15.0f, 22.0f) + close() + moveTo(18.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(12.14f, 16.71f) + curveToRelative(-0.3f, 0.29f, -0.31f, 0.76f, -0.02f, 1.06f) + arcToRelative(3.99f, 3.99f, 0.0f, false, false, 5.76f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.08f, -1.04f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -3.6f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -0.02f) + close() + moveTo(14.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + } + } + return _emojiHand!! + } + +private var _emojiHand: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiLaugh.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiLaugh.kt new file mode 100644 index 00000000..1c057dd1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiLaugh.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.EmojiLaugh: ImageVector + get() { + if (_emojiLaugh != null) { + return _emojiLaugh!! + } + _emojiLaugh = fluentIcon(name = "Filled.EmojiLaugh") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) + close() + moveTo(14.5f, 9.36f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, -0.22f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 2.25f, -1.89f) + curveToRelative(1.12f, 0.0f, 2.08f, 0.8f, 2.24f, 1.89f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.48f, 0.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.76f, -0.61f) + curveToRelative(-0.4f, 0.0f, -0.71f, 0.29f, -0.76f, 0.61f) + close() + moveTo(12.0f, 18.0f) + curveToRelative(-3.14f, 0.0f, -5.24f, -2.36f, -5.5f, -5.25f) + horizontalLineToRelative(11.0f) + curveTo(17.24f, 15.64f, 15.14f, 18.0f, 12.0f, 18.0f) + close() + moveTo(8.75f, 8.75f) + curveToRelative(-0.4f, 0.0f, -0.71f, 0.29f, -0.76f, 0.61f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.48f, -0.22f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 2.24f, -1.89f) + curveToRelative(1.12f, 0.0f, 2.08f, 0.8f, 2.24f, 1.89f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.48f, 0.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.76f, -0.61f) + close() + } + } + return _emojiLaugh!! + } + +private var _emojiLaugh: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiMeh.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiMeh.kt new file mode 100644 index 00000000..c84a763c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiMeh.kt @@ -0,0 +1,41 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.EmojiMeh: ImageVector + get() { + if (_emojiMeh != null) { + return _emojiMeh!! + } + _emojiMeh = fluentIcon(name = "Filled.EmojiMeh") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) + close() + moveTo(10.25f, 10.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(16.25f, 10.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(7.5f, 15.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _emojiMeh!! + } + +private var _emojiMeh: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiMultiple.kt new file mode 100644 index 00000000..74f3b48b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiMultiple.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.EmojiMultiple: ImageVector + get() { + if (_emojiMultiple != null) { + return _emojiMultiple!! + } + _emojiMultiple = fluentIcon(name = "Filled.EmojiMultiple") { + fluentPath { + moveTo(2.0f, 8.5f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, 4.94f, 6.31f) + arcToRelative(8.0f, 8.0f, 0.0f, false, true, 1.72f, -4.8f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.68f, 0.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.14f, -0.97f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 4.02f, -0.95f) + arcToRelative(8.0f, 8.0f, 0.0f, false, true, 4.95f, -1.84f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 2.0f, 8.5f) + close() + moveTo(7.5f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(11.5f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(22.0f, 15.0f) + arcToRelative(7.0f, 7.0f, 0.0f, true, true, -14.0f, 0.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, 14.0f, 0.0f) + close() + moveTo(13.5f, 13.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(17.97f, 16.72f) + arcToRelative(0.63f, 0.63f, 0.0f, false, false, -0.88f, 0.07f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -4.18f, 0.0f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, -0.95f, 0.82f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 6.08f, -0.01f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, -0.07f, -0.88f) + close() + moveTo(17.5f, 14.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + } + } + return _emojiMultiple!! + } + +private var _emojiMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiSad.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiSad.kt new file mode 100644 index 00000000..60ad0bc3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiSad.kt @@ -0,0 +1,41 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.EmojiSad: ImageVector + get() { + if (_emojiSad != null) { + return _emojiSad!! + } + _emojiSad = fluentIcon(name = "Filled.EmojiSad") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(12.0f, 13.5f) + curveToRelative(-1.63f, 0.0f, -3.17f, 0.65f, -4.29f, 1.8f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.07f, 1.05f) + arcToRelative(4.48f, 4.48f, 0.0f, false, true, 6.43f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.07f, -1.06f) + arcTo(5.98f, 5.98f, 0.0f, false, false, 12.0f, 13.5f) + close() + moveTo(9.0f, 8.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(15.0f, 8.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + } + } + return _emojiSad!! + } + +private var _emojiSad: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiSadSlight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiSadSlight.kt new file mode 100644 index 00000000..1791077e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiSadSlight.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.EmojiSadSlight: ImageVector + get() { + if (_emojiSadSlight != null) { + return _emojiSadSlight!! + } + _emojiSadSlight = fluentIcon(name = "Filled.EmojiSadSlight") { + fluentPath { + moveTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 20.0f, 0.0f) + close() + moveTo(7.75f, 10.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) + close() + moveTo(13.75f, 10.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) + close() + moveTo(15.75f, 14.0f) + horizontalLineToRelative(0.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.6f) + arcToRelative(5.75f, 5.75f, 0.0f, false, false, -3.47f, 1.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + arcTo(7.24f, 7.24f, 0.0f, false, true, 15.75f, 14.0f) + close() + } + } + return _emojiSadSlight!! + } + +private var _emojiSadSlight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiSmileSlight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiSmileSlight.kt new file mode 100644 index 00000000..4e9d6951 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiSmileSlight.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.EmojiSmileSlight: ImageVector + get() { + if (_emojiSmileSlight != null) { + return _emojiSmileSlight!! + } + _emojiSmileSlight = fluentIcon(name = "Filled.EmojiSmileSlight") { + fluentPath { + moveTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 20.0f, 0.0f) + close() + moveTo(7.75f, 10.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) + close() + moveTo(13.75f, 10.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) + close() + moveTo(10.14f, 15.1f) + curveToRelative(0.48f, 0.3f, 1.15f, 0.46f, 1.86f, 0.46f) + curveToRelative(0.7f, 0.0f, 1.38f, -0.16f, 1.86f, -0.45f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.78f, 1.28f) + arcToRelative(5.2f, 5.2f, 0.0f, false, true, -2.64f, 0.67f) + arcToRelative(5.2f, 5.2f, 0.0f, false, true, -2.64f, -0.67f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.78f, -1.28f) + close() + } + } + return _emojiSmileSlight!! + } + +private var _emojiSmileSlight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiSparkle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiSparkle.kt new file mode 100644 index 00000000..dd59a2df --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiSparkle.kt @@ -0,0 +1,98 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.EmojiSparkle: ImageVector + get() { + if (_emojiSparkle != null) { + return _emojiSparkle!! + } + _emojiSparkle = fluentIcon(name = "Filled.EmojiSparkle") { + fluentPath { + moveTo(14.74f, 5.46f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, 1.8f, 1.8f) + lineToRelative(0.45f, 1.38f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 1.01f, 0.03f) + lineToRelative(0.01f, -0.02f) + lineToRelative(0.05f, -0.15f) + lineToRelative(0.4f, -1.24f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, 1.3f, -1.57f) + curveToRelative(0.16f, -0.1f, 0.32f, -0.17f, 0.5f, -0.23f) + lineToRelative(1.38f, -0.44f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, -1.03f) + horizontalLineToRelative(-0.03f) + lineToRelative(-1.38f, -0.45f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.8f, -1.8f) + lineTo(18.0f, 0.36f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, -1.03f, 0.0f) + lineToRelative(-0.45f, 1.38f) + lineToRelative(-0.01f, 0.03f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.76f, 1.76f) + lineToRelative(-1.38f, 0.45f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, 1.03f) + lineToRelative(1.38f, 0.45f) + close() + moveTo(23.78f, 10.21f) + lineTo(23.02f, 9.96f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, -1.0f, -1.0f) + lineToRelative(-0.25f, -0.76f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, -0.57f, 0.0f) + lineToRelative(-0.25f, 0.77f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, -0.98f, 1.0f) + lineToRelative(-0.1f, 0.03f) + lineToRelative(-0.67f, 0.21f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, -0.2f, 0.29f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.2f, 0.28f) + lineToRelative(0.76f, 0.25f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, 1.0f) + lineToRelative(0.25f, 0.77f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.12f, 0.14f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.46f, -0.14f) + lineToRelative(0.24f, -0.77f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, -1.0f) + lineToRelative(0.77f, -0.24f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, -0.57f) + horizontalLineToRelative(-0.02f) + close() + moveTo(12.0f, 22.01f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 9.8f, -8.04f) + arcToRelative(1.3f, 1.3f, 0.0f, false, true, -1.54f, -0.86f) + lineToRelative(-0.25f, -0.76f) + arcToRelative(0.57f, 0.57f, 0.0f, false, false, -0.36f, -0.36f) + lineToRelative(-0.78f, -0.26f) + arcToRelative(1.3f, 1.3f, 0.0f, false, true, -0.7f, -1.88f) + arcToRelative(1.55f, 1.55f, 0.0f, false, true, -2.14f, -0.9f) + lineToRelative(-0.44f, -1.38f) + arcToRelative(1.81f, 1.81f, 0.0f, false, false, -1.16f, -1.16f) + lineToRelative(-1.4f, -0.46f) + arcToRelative(1.54f, 1.54f, 0.0f, false, true, 0.02f, -2.92f) + lineToRelative(1.36f, -0.44f) + curveToRelative(0.14f, -0.05f, 0.28f, -0.11f, 0.4f, -0.2f) + arcTo(10.0f, 10.0f, 0.0f, true, false, 12.0f, 22.0f) + close() + moveTo(7.4f, 14.66f) + curveToRelative(0.33f, -0.26f, 0.8f, -0.2f, 1.06f, 0.12f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 7.07f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.18f, 0.94f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, -9.43f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.13f, -1.06f) + close() + moveTo(7.76f, 10.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) + close() + moveTo(13.76f, 10.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) + close() + } + } + return _emojiSparkle!! + } + +private var _emojiSparkle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiSurprise.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiSurprise.kt new file mode 100644 index 00000000..555b0203 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EmojiSurprise.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.EmojiSurprise: ImageVector + get() { + if (_emojiSurprise != null) { + return _emojiSurprise!! + } + _emojiSurprise = fluentIcon(name = "Filled.EmojiSurprise") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(12.0f, 13.0f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, 4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, -4.5f) + close() + moveTo(9.0f, 8.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(15.0f, 8.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + } + } + return _emojiSurprise!! + } + +private var _emojiSurprise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Engine.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Engine.kt new file mode 100644 index 00000000..f078e24f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Engine.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Engine: ImageVector + get() { + if (_engine != null) { + return _engine!! + } + _engine = fluentIcon(name = "Filled.Engine") { + fluentPath { + moveTo(9.75f, 3.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(10.5f, 5.0f) + horizontalLineToRelative(2.0f) + lineTo(12.5f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(14.0f, 5.0f) + horizontalLineToRelative(2.75f) + curveToRelative(0.3f, 0.0f, 0.58f, 0.19f, 0.7f, 0.47f) + lineToRelative(0.8f, 2.03f) + horizontalLineToRelative(1.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 10.25f) + verticalLineToRelative(5.5f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) + horizontalLineToRelative(-1.0f) + lineToRelative(-0.8f, 2.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, 0.47f) + horizontalLineToRelative(-7.5f) + curveToRelative(-0.2f, 0.0f, -0.4f, -0.09f, -0.55f, -0.24f) + lineTo(5.74f, 17.6f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.0f, 15.7f) + lineTo(5.0f, 12.5f) + lineTo(3.5f, 12.5f) + verticalLineToRelative(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(3.5f, 11.0f) + lineTo(5.0f, 11.0f) + lineTo(5.0f, 7.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 7.75f, 5.0f) + lineTo(9.0f, 5.0f) + lineTo(9.0f, 3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(10.5f, 9.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 11.75f, 15.0f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(14.0f, 13.5f) + lineTo(14.0f, 9.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.75f) + horizontalLineToRelative(-0.75f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + verticalLineToRelative(-2.5f) + close() + } + } + return _engine!! + } + +private var _engine: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EqualCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EqualCircle.kt new file mode 100644 index 00000000..592d4b55 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EqualCircle.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.EqualCircle: ImageVector + get() { + if (_equalCircle != null) { + return _equalCircle!! + } + _equalCircle = fluentIcon(name = "Filled.EqualCircle") { + fluentPath { + moveTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 20.0f, 0.0f) + close() + moveTo(16.25f, 10.5f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(16.25f, 15.0f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + } + } + return _equalCircle!! + } + +private var _equalCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EqualOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EqualOff.kt new file mode 100644 index 00000000..872b07d6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EqualOff.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.EqualOff: ImageVector + get() { + if (_equalOff != null) { + return _equalOff!! + } + _equalOff = fluentIcon(name = "Filled.EqualOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(6.94f, 8.0f) + lineTo(4.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(4.94f) + lineToRelative(4.0f, 4.0f) + lineTo(4.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(10.94f) + lineToRelative(5.78f, 5.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(20.0f, 14.0f) + horizontalLineToRelative(-2.82f) + lineToRelative(2.0f, 2.0f) + lineTo(20.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + close() + moveTo(11.18f, 8.0f) + lineTo(13.18f, 10.0f) + lineTo(20.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-8.82f) + close() + } + } + return _equalOff!! + } + +private var _equalOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Eraser.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Eraser.kt new file mode 100644 index 00000000..ebe61217 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Eraser.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Eraser: ImageVector + get() { + if (_eraser != null) { + return _eraser!! + } + _eraser = fluentIcon(name = "Filled.Eraser") { + fluentPath { + moveToRelative(15.87f, 2.67f) + lineToRelative(4.97f, 4.97f) + curveToRelative(0.88f, 0.88f, 0.88f, 2.3f, 0.0f, 3.18f) + lineToRelative(-8.68f, 8.68f) + horizontalLineToRelative(6.1f) + curveToRelative(0.37f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.64f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineTo(9.83f) + arcToRelative(2.24f, 2.24f, 0.0f, false, true, -1.71f, -0.65f) + lineToRelative(-4.97f, -4.97f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -3.18f) + lineToRelative(9.53f, -9.53f) + curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.0f) + close() + moveTo(11.7f, 17.76f) + lineTo(5.74f, 11.8f) + lineToRelative(-1.5f, 1.47f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(4.94f, 4.95f) + curveToRelative(0.3f, 0.28f, 0.77f, 0.28f, 1.06f, -0.02f) + lineToRelative(1.46f, -1.5f) + close() + } + } + return _eraser!! + } + +private var _eraser: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EraserMedium.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EraserMedium.kt new file mode 100644 index 00000000..6b983227 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EraserMedium.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.EraserMedium: ImageVector + get() { + if (_eraserMedium != null) { + return _eraserMedium!! + } + _eraserMedium = fluentIcon(name = "Filled.EraserMedium") { + fluentPath { + moveTo(12.65f, 2.64f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.2f, 0.02f) + lineToRelative(4.9f, 5.0f) + curveToRelative(0.86f, 0.89f, 0.86f, 2.3f, 0.0f, 3.17f) + lineToRelative(-0.7f, 0.7f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -9.04f, 5.55f) + lineTo(5.64f, 11.7f) + lineTo(4.1f, 13.2f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.78f, 0.0f, 1.07f) + lineToRelative(5.1f, 5.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(0.8f, -0.81f) + curveToRelative(0.09f, 0.58f, 0.25f, 1.13f, 0.48f, 1.65f) + lineToRelative(-0.22f, 0.22f) + curveToRelative(-0.87f, 0.88f, -2.29f, 0.89f, -3.17f, 0.02f) + lineToRelative(-5.1f, -5.01f) + curveToRelative(-0.9f, -0.88f, -0.9f, -2.32f, 0.0f, -3.2f) + lineToRelative(9.6f, -9.51f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.01f, 10.99f) + arcTo(5.5f, 5.5f, 0.0f, false, true, 17.5f, 12.0f) + close() + } + } + return _eraserMedium!! + } + +private var _eraserMedium: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EraserSegment.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EraserSegment.kt new file mode 100644 index 00000000..c1029964 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EraserSegment.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.EraserSegment: ImageVector + get() { + if (_eraserSegment != null) { + return _eraserSegment!! + } + _eraserSegment = fluentIcon(name = "Filled.EraserSegment") { + fluentPath { + moveTo(12.65f, 2.64f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.2f, 0.02f) + lineToRelative(4.9f, 5.0f) + curveToRelative(0.86f, 0.89f, 0.86f, 2.3f, 0.0f, 3.17f) + lineToRelative(-8.59f, 8.67f) + horizontalLineToRelative(3.95f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 1.5f) + horizontalLineTo(9.85f) + curveToRelative(-0.6f, 0.03f, -1.22f, -0.18f, -1.7f, -0.64f) + lineToRelative(-5.09f, -5.01f) + curveToRelative(-0.9f, -0.88f, -0.9f, -2.32f, 0.0f, -3.2f) + lineToRelative(9.6f, -9.51f) + close() + moveTo(9.8f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.47f, -0.22f) + lineToRelative(1.47f, -1.48f) + lineToRelative(-6.1f, -6.1f) + lineTo(4.1f, 13.2f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.78f, 0.0f, 1.07f) + lineToRelative(5.1f, 5.0f) + curveToRelative(0.15f, 0.15f, 0.35f, 0.23f, 0.54f, 0.22f) + horizontalLineToRelative(0.05f) + close() + } + } + return _eraserSegment!! + } + +private var _eraserSegment: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EraserSmall.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EraserSmall.kt new file mode 100644 index 00000000..85dacb98 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EraserSmall.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.EraserSmall: ImageVector + get() { + if (_eraserSmall != null) { + return _eraserSmall!! + } + _eraserSmall = fluentIcon(name = "Filled.EraserSmall") { + fluentPath { + moveTo(12.65f, 2.64f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.2f, 0.02f) + lineToRelative(4.9f, 5.0f) + curveToRelative(0.86f, 0.89f, 0.86f, 2.3f, 0.0f, 3.17f) + lineToRelative(-2.26f, 2.28f) + arcToRelative(4.51f, 4.51f, 0.0f, false, false, -5.37f, 5.42f) + lineToRelative(-1.79f, 1.8f) + curveToRelative(-0.87f, 0.89f, -2.29f, 0.9f, -3.17f, 0.03f) + lineToRelative(-5.1f, -5.01f) + curveToRelative(-0.9f, -0.88f, -0.9f, -2.32f, 0.0f, -3.2f) + lineToRelative(9.6f, -9.51f) + close() + moveTo(4.11f, 13.2f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.78f, 0.0f, 1.07f) + lineToRelative(5.1f, 5.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(1.47f, -1.48f) + lineToRelative(-6.1f, -6.1f) + lineTo(4.1f, 13.2f) + close() + moveTo(17.5f, 21.0f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, -7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, 7.0f) + close() + } + } + return _eraserSmall!! + } + +private var _eraserSmall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EraserTool.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EraserTool.kt new file mode 100644 index 00000000..42d3ae50 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EraserTool.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.EraserTool: ImageVector + get() { + if (_eraserTool != null) { + return _eraserTool!! + } + _eraserTool = fluentIcon(name = "Filled.EraserTool") { + fluentPath { + moveTo(4.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(14.5f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 7.75f, 22.0f) + horizontalLineToRelative(8.5f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 21.0f, 17.25f) + lineTo(21.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + lineTo(19.5f, 7.0f) + horizontalLineToRelative(-15.0f) + lineTo(4.5f, 2.75f) + close() + moveTo(4.5f, 8.5f) + horizontalLineToRelative(15.0f) + lineTo(19.5f, 12.0f) + horizontalLineToRelative(-15.0f) + lineTo(4.5f, 8.5f) + close() + } + } + return _eraserTool!! + } + +private var _eraserTool: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ExpandUpLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ExpandUpLeft.kt new file mode 100644 index 00000000..e1f63ee8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ExpandUpLeft.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ExpandUpLeft: ImageVector + get() { + if (_expandUpLeft != null) { + return _expandUpLeft!! + } + _expandUpLeft = fluentIcon(name = "Filled.ExpandUpLeft") { + fluentPath { + moveTo(11.0f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(4.5f, 5.56f) + lineToRelative(5.22f, 5.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(5.56f, 4.5f) + horizontalLineToRelative(4.69f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + close() + moveTo(17.75f, 4.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(19.5f, 12.0f) + horizontalLineToRelative(-4.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 12.0f, 14.75f) + verticalLineToRelative(4.75f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(4.0f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(4.0f) + close() + } + } + return _expandUpLeft!! + } + +private var _expandUpLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ExpandUpRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ExpandUpRight.kt new file mode 100644 index 00000000..cde946fc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ExpandUpRight.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ExpandUpRight: ImageVector + get() { + if (_expandUpRight != null) { + return _expandUpRight!! + } + _expandUpRight = fluentIcon(name = "Filled.ExpandUpRight") { + fluentPath { + moveTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineTo(12.0f) + horizontalLineToRelative(4.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 12.0f, 14.75f) + verticalLineToRelative(4.75f) + horizontalLineToRelative(5.75f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineTo(6.25f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + verticalLineTo(6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.0f) + close() + moveTo(13.0f, 3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineTo(5.56f) + lineToRelative(-5.22f, 5.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(5.22f, -5.22f) + horizontalLineToRelative(-4.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _expandUpRight!! + } + +private var _expandUpRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ExtendedDock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ExtendedDock.kt new file mode 100644 index 00000000..952bf151 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ExtendedDock.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ExtendedDock: ImageVector + get() { + if (_extendedDock != null) { + return _extendedDock!! + } + _extendedDock = fluentIcon(name = "Filled.ExtendedDock") { + fluentPath { + moveTo(6.25f, 11.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(2.5f) + curveTo(8.0f, 16.2f, 7.22f, 17.0f, 6.25f, 17.0f) + horizontalLineToRelative(-2.5f) + curveTo(2.78f, 17.0f, 2.0f, 16.2f, 2.0f, 15.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.5f) + close() + moveTo(13.25f, 11.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.96f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.5f) + curveTo(9.78f, 17.0f, 9.0f, 16.2f, 9.0f, 15.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.5f) + close() + moveTo(20.25f, 11.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.96f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.79f, -1.75f, -1.75f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.5f) + close() + moveTo(7.97f, 7.72f) + lineToRelative(3.5f, -3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -0.08f) + lineToRelative(0.08f, 0.07f) + lineToRelative(3.6f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.95f, 1.15f) + lineToRelative(-0.09f, -0.07f) + lineToRelative(-3.07f, -2.99f) + lineToRelative(-2.98f, 2.98f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 7.9f, 7.8f) + lineToRelative(0.07f, -0.08f) + lineToRelative(3.5f, -3.5f) + lineToRelative(-3.5f, 3.5f) + close() + } + } + return _extendedDock!! + } + +private var _extendedDock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EyeLines.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EyeLines.kt new file mode 100644 index 00000000..a5ec5cca --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EyeLines.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.EyeLines: ImageVector + get() { + if (_eyeLines != null) { + return _eyeLines!! + } + _eyeLines = fluentIcon(name = "Filled.EyeLines") { + fluentPath { + moveTo(4.39f, 7.06f) + curveToRelative(0.3f, -0.37f, 0.63f, -0.72f, 1.0f, -1.06f) + horizontalLineToRelative(6.6f) + lineTo(11.99f, 5.0f) + lineTo(6.69f, 5.0f) + arcTo(9.65f, 9.65f, 0.0f, false, true, 12.0f, 3.5f) + curveToRelative(3.64f, 0.0f, 6.1f, 1.7f, 7.61f, 3.56f) + curveToRelative(0.76f, 0.92f, 1.28f, 1.88f, 1.63f, 2.7f) + curveToRelative(0.33f, 0.8f, 0.51f, 1.53f, 0.51f, 1.99f) + curveToRelative(0.0f, 0.46f, -0.18f, 1.2f, -0.51f, 1.99f) + curveToRelative(-0.35f, 0.82f, -0.87f, 1.78f, -1.63f, 2.7f) + arcTo(9.51f, 9.51f, 0.0f, false, true, 12.0f, 20.0f) + arcToRelative(9.65f, 9.65f, 0.0f, false, true, -5.32f, -1.5f) + lineTo(12.0f, 18.5f) + verticalLineToRelative(-1.0f) + lineTo(5.38f, 17.5f) + arcTo(10.2f, 10.2f, 0.0f, false, true, 4.04f, 16.0f) + lineTo(12.0f, 16.0f) + verticalLineToRelative(-0.75f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + lineTo(12.0f, 7.5f) + lineTo(4.04f, 7.5f) + lineToRelative(0.35f, -0.44f) + close() + moveTo(10.69f, 8.5f) + lineTo(3.4f, 8.5f) + arcToRelative(10.8f, 10.8f, 0.0f, false, false, -0.72f, 1.5f) + horizontalLineToRelative(6.3f) + curveToRelative(0.39f, -0.67f, 1.0f, -1.2f, 1.73f, -1.5f) + close() + moveTo(8.6f, 11.0f) + lineTo(2.34f, 11.0f) + curveToRelative(-0.06f, 0.3f, -0.1f, 0.55f, -0.1f, 0.75f) + curveToRelative(0.0f, 0.2f, 0.04f, 0.46f, 0.1f, 0.75f) + horizontalLineToRelative(6.23f) + arcToRelative(3.51f, 3.51f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(8.98f, 13.5f) + horizontalLineToRelative(-6.3f) + arcToRelative(9.7f, 9.7f, 0.0f, false, false, 0.72f, 1.5f) + horizontalLineToRelative(7.3f) + arcToRelative(3.51f, 3.51f, 0.0f, false, true, -1.72f, -1.5f) + close() + } + } + return _eyeLines!! + } + +private var _eyeLines: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EyeOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EyeOff.kt new file mode 100644 index 00000000..1e2bbfb9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EyeOff.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.EyeOff: ImageVector + get() { + if (_eyeOff != null) { + return _eyeOff!! + } + _eyeOff = fluentIcon(name = "Filled.EyeOff") { + fluentPath { + moveTo(2.22f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.98f) + lineToRelative(0.07f, 0.08f) + lineToRelative(4.03f, 4.03f) + arcToRelative(9.99f, 9.99f, 0.0f, false, false, -3.95f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.45f, 0.37f) + arcToRelative(8.49f, 8.49f, 0.0f, false, true, 3.58f, -5.04f) + lineToRelative(1.81f, 1.81f) + arcTo(3.99f, 3.99f, 0.0f, false, false, 12.0f, 17.0f) + curveToRelative(1.09f, 0.0f, 2.08f, -0.43f, 2.8f, -1.14f) + lineToRelative(5.92f, 5.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, -0.98f) + lineToRelative(-0.07f, -0.08f) + lineToRelative(-6.11f, -6.11f) + lineToRelative(-6.95f, -6.95f) + lineToRelative(-1.13f, -1.13f) + lineToRelative(-4.31f, -4.31f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + close() + moveTo(12.0f, 5.5f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, -2.89f, 0.42f) + lineToRelative(1.24f, 1.24f) + arcToRelative(8.52f, 8.52f, 0.0f, false, true, 9.9f, 6.27f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.45f, -0.36f) + arcTo(10.0f, 10.0f, 0.0f, false, false, 12.0f, 5.5f) + close() + moveTo(12.2f, 9.0f) + lineTo(16.0f, 12.81f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -3.8f, -3.8f) + close() + } + } + return _eyeOff!! + } + +private var _eyeOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EyeTracking.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EyeTracking.kt new file mode 100644 index 00000000..d546cf6d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EyeTracking.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.EyeTracking: ImageVector + get() { + if (_eyeTracking != null) { + return _eyeTracking!! + } + _eyeTracking = fluentIcon(name = "Filled.EyeTracking") { + fluentPath { + moveTo(3.49f, 15.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.49f, 0.0f) + lineTo(2.0f, 19.43f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.58f, 22.0f) + horizontalLineToRelative(3.77f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(4.62f, 20.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.12f, -1.12f) + verticalLineToRelative(-3.63f) + lineToRelative(-0.01f, -0.1f) + close() + moveTo(21.99f, 15.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + verticalLineToRelative(3.63f) + curveToRelative(-0.06f, 0.63f, -0.6f, 1.12f, -1.24f, 1.12f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.66f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 19.25f) + verticalLineToRelative(-3.5f) + lineToRelative(-0.01f, -0.1f) + close() + moveTo(8.99f, 2.75f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 8.26f, 2.0f) + lineTo(4.58f, 2.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 4.76f) + verticalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + lineTo(3.5f, 4.62f) + curveTo(3.57f, 4.0f, 4.1f, 3.5f, 4.75f, 3.5f) + horizontalLineToRelative(3.6f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 9.0f, 2.74f) + close() + moveTo(19.41f, 2.01f) + lineTo(19.25f, 2.0f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.72f) + curveToRelative(0.6f, 0.07f, 1.06f, 0.53f, 1.12f, 1.12f) + verticalLineToRelative(3.63f) + lineToRelative(0.01f, 0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.49f, 0.0f) + lineTo(21.99f, 4.58f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 19.41f, 2.0f) + close() + moveTo(8.5f, 13.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 7.0f, 0.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -7.0f, 0.0f) + close() + moveTo(6.21f, 11.74f) + verticalLineToRelative(0.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 0.44f) + curveToRelative(-0.6f, -0.22f, -0.44f, -0.97f, -0.44f, -0.97f) + verticalLineToRelative(-0.02f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.1f, -0.2f) + arcTo(7.57f, 7.57f, 0.0f, false, true, 12.0f, 6.75f) + arcToRelative(7.73f, 7.73f, 0.0f, false, true, 6.84f, 3.75f) + arcToRelative(6.3f, 6.3f, 0.0f, false, true, 0.35f, 0.71f) + verticalLineToRelative(0.02f) + horizontalLineToRelative(0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.4f, 0.53f) + lineToRelative(-0.01f, -0.02f) + lineToRelative(-0.04f, -0.1f) + lineToRelative(-0.21f, -0.39f) + arcToRelative(6.07f, 6.07f, 0.0f, false, false, -5.54f, -3.0f) + arcToRelative(6.24f, 6.24f, 0.0f, false, false, -5.54f, 3.0f) + arcToRelative(4.78f, 4.78f, 0.0f, false, false, -0.25f, 0.5f) + close() + } + } + return _eyeTracking!! + } + +private var _eyeTracking: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EyeTrackingOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EyeTrackingOff.kt new file mode 100644 index 00000000..e914e9fd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EyeTrackingOff.kt @@ -0,0 +1,101 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.EyeTrackingOff: ImageVector + get() { + if (_eyeTrackingOff != null) { + return _eyeTrackingOff!! + } + _eyeTrackingOff = fluentIcon(name = "Filled.EyeTrackingOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(0.13f, 0.13f) + curveToRelative(-0.23f, 0.4f, -0.35f, 0.85f, -0.35f, 1.34f) + verticalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + lineTo(3.5f, 4.62f) + lineToRelative(0.01f, -0.05f) + lineToRelative(3.68f, 3.68f) + arcTo(7.44f, 7.44f, 0.0f, false, false, 4.8f, 11.2f) + verticalLineToRelative(0.02f) + curveToRelative(-0.01f, 0.0f, -0.17f, 0.75f, 0.43f, 0.97f) + curveToRelative(0.38f, 0.15f, 0.81f, -0.05f, 0.96f, -0.43f) + lineToRelative(0.01f, -0.03f) + arcToRelative(2.85f, 2.85f, 0.0f, false, true, 0.25f, -0.49f) + arcToRelative(6.07f, 6.07f, 0.0f, false, true, 1.8f, -1.93f) + lineToRelative(1.5f, 1.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 4.92f, 4.93f) + lineToRelative(4.75f, 4.74f) + lineToRelative(-0.18f, 0.01f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.66f) + curveToRelative(0.43f, -0.03f, 0.83f, -0.15f, 1.18f, -0.35f) + lineToRelative(0.13f, 0.13f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(11.45f, 8.27f) + lineTo(10.12f, 6.94f) + curveToRelative(0.57f, -0.12f, 1.2f, -0.19f, 1.88f, -0.19f) + arcToRelative(7.73f, 7.73f, 0.0f, false, true, 6.84f, 3.75f) + arcToRelative(6.3f, 6.3f, 0.0f, false, true, 0.33f, 0.67f) + lineToRelative(0.02f, 0.04f) + verticalLineToRelative(0.02f) + horizontalLineToRelative(0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.4f, 0.53f) + lineToRelative(-0.01f, -0.02f) + lineToRelative(-0.04f, -0.1f) + lineToRelative(-0.21f, -0.39f) + arcToRelative(6.07f, 6.07f, 0.0f, false, false, -5.54f, -3.0f) + curveToRelative(-0.19f, 0.0f, -0.37f, 0.0f, -0.55f, 0.02f) + close() + moveTo(22.0f, 18.82f) + lineToRelative(-1.5f, -1.5f) + verticalLineToRelative(-1.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.49f, -0.1f) + verticalLineToRelative(3.17f) + close() + moveTo(6.68f, 3.5f) + lineTo(5.18f, 2.0f) + horizontalLineToRelative(3.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.68f, 3.5f) + close() + moveTo(2.75f, 15.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + verticalLineToRelative(3.6f) + lineToRelative(0.01f, 0.13f) + curveToRelative(0.06f, 0.59f, 0.53f, 1.06f, 1.12f, 1.12f) + horizontalLineToRelative(3.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(4.58f, 22.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 19.43f) + lineTo(2.0f, 15.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) + close() + moveTo(19.25f, 2.0f) + horizontalLineToRelative(0.16f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 4.59f) + verticalLineToRelative(3.77f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, 0.0f) + lineTo(20.51f, 4.62f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.13f, -1.11f) + lineToRelative(-0.12f, -0.01f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.6f) + close() + } + } + return _eyeTrackingOff!! + } + +private var _eyeTrackingOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Eyedropper.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Eyedropper.kt new file mode 100644 index 00000000..20e267f9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Eyedropper.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Eyedropper: ImageVector + get() { + if (_eyedropper != null) { + return _eyedropper!! + } + _eyedropper = fluentIcon(name = "Filled.Eyedropper") { + fluentPath { + moveTo(21.03f, 2.97f) + arcToRelative(3.58f, 3.58f, 0.0f, false, false, -5.06f, 0.0f) + lineTo(14.0f, 4.94f) + lineToRelative(-0.01f, -0.01f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.48f, 0.0f) + lineToRelative(-0.58f, 0.58f) + curveToRelative(-0.69f, 0.69f, -0.69f, 1.8f, 0.0f, 2.48f) + verticalLineTo(8.0f) + lineToRelative(-6.77f, 6.78f) + curveToRelative(-0.42f, 0.42f, -0.66f, 1.0f, -0.66f, 1.6f) + verticalLineToRelative(0.68f) + lineTo(2.22f, 19.4f) + curveToRelative(-0.84f, 1.53f, 0.84f, 3.2f, 2.37f, 2.37f) + lineToRelative(2.35f, -1.28f) + horizontalLineToRelative(0.69f) + curveToRelative(0.6f, 0.0f, 1.17f, -0.24f, 1.59f, -0.66f) + lineTo(16.0f, 13.06f) + lineToRelative(0.01f, 0.01f) + curveToRelative(0.69f, 0.69f, 1.8f, 0.69f, 2.48f, 0.0f) + lineToRelative(0.58f, -0.58f) + curveToRelative(0.69f, -0.69f, 0.69f, -1.8f, 0.0f, -2.48f) + verticalLineTo(10.0f) + lineToRelative(1.96f, -1.97f) + arcToRelative(3.58f, 3.58f, 0.0f, false, false, 0.0f, -5.06f) + close() + moveTo(12.0f, 9.07f) + lineTo(14.94f, 12.0f) + lineToRelative(-6.78f, 6.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.53f, 0.22f) + horizontalLineToRelative(-0.88f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.36f, 0.1f) + lineToRelative(-2.51f, 1.36f) + arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.16f, 0.04f) + arcToRelative(0.26f, 0.26f, 0.0f, false, true, -0.14f, -0.08f) + arcToRelative(0.26f, 0.26f, 0.0f, false, true, -0.08f, -0.14f) + curveToRelative(0.0f, -0.03f, 0.0f, -0.09f, 0.04f, -0.16f) + lineToRelative(1.37f, -2.51f) + curveToRelative(0.06f, -0.11f, 0.09f, -0.23f, 0.09f, -0.36f) + verticalLineToRelative(-0.88f) + curveToRelative(0.0f, -0.2f, 0.08f, -0.39f, 0.22f, -0.53f) + lineTo(12.0f, 9.06f) + close() + } + } + return _eyedropper!! + } + +private var _eyedropper: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EyedropperOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EyedropperOff.kt new file mode 100644 index 00000000..7df7c296 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/EyedropperOff.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.EyedropperOff: ImageVector + get() { + if (_eyedropperOff != null) { + return _eyedropperOff!! + } + _eyedropperOff = fluentIcon(name = "Filled.EyedropperOff") { + fluentPath { + moveToRelative(8.94f, 10.0f) + lineToRelative(-4.78f, 4.78f) + curveToRelative(-0.42f, 0.42f, -0.66f, 1.0f, -0.66f, 1.6f) + verticalLineToRelative(0.68f) + lineTo(2.22f, 19.4f) + curveToRelative(-0.84f, 1.53f, 0.84f, 3.2f, 2.38f, 2.37f) + lineToRelative(2.34f, -1.28f) + horizontalLineToRelative(0.69f) + curveToRelative(0.6f, 0.0f, 1.17f, -0.24f, 1.6f, -0.66f) + lineTo(14.0f, 15.06f) + lineToRelative(6.72f, 6.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineTo(8.94f, 10.0f) + close() + moveTo(12.94f, 14.0f) + lineTo(8.16f, 18.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.53f, 0.22f) + horizontalLineToRelative(-0.88f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.36f, 0.1f) + lineToRelative(-2.51f, 1.36f) + arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.16f, 0.04f) + arcToRelative(0.26f, 0.26f, 0.0f, false, true, -0.14f, -0.08f) + arcToRelative(0.26f, 0.26f, 0.0f, false, true, -0.07f, -0.14f) + curveToRelative(-0.01f, -0.03f, -0.01f, -0.09f, 0.03f, -0.16f) + lineToRelative(1.37f, -2.51f) + curveToRelative(0.06f, -0.11f, 0.1f, -0.23f, 0.1f, -0.36f) + verticalLineToRelative(-0.88f) + curveToRelative(0.0f, -0.2f, 0.07f, -0.39f, 0.21f, -0.53f) + lineTo(10.0f, 11.06f) + lineTo(12.94f, 14.0f) + close() + moveTo(18.49f, 13.07f) + curveToRelative(-0.5f, 0.5f, -1.2f, 0.63f, -1.82f, 0.42f) + lineToRelative(-6.16f, -6.16f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.42f, -1.82f) + lineToRelative(0.58f, -0.58f) + curveToRelative(0.69f, -0.69f, 1.8f, -0.69f, 2.48f, 0.0f) + lineToRelative(0.01f, 0.01f) + lineToRelative(1.97f, -1.97f) + arcToRelative(3.58f, 3.58f, 0.0f, false, true, 5.06f, 5.06f) + lineTo(19.06f, 10.0f) + lineToRelative(0.01f, 0.01f) + curveToRelative(0.69f, 0.69f, 0.69f, 1.8f, 0.0f, 2.48f) + lineToRelative(-0.58f, 0.58f) + close() + } + } + return _eyedropperOff!! + } + +private var _eyedropperOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FStop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FStop.kt new file mode 100644 index 00000000..41c8ee1a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FStop.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FStop: ImageVector + get() { + if (_fStop != null) { + return _fStop!! + } + _fStop = fluentIcon(name = "Filled.FStop") { + fluentPath { + moveTo(13.44f, 6.57f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.94f, -2.33f) + lineToRelative(0.6f, 0.2f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.65f, -1.88f) + lineToRelative(-0.6f, -0.21f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, -6.56f, 3.88f) + lineToRelative(-0.73f, 4.27f) + horizontalLineTo(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(3.4f) + lineToRelative(-0.69f, 4.04f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -4.4f, 2.13f) + lineToRelative(-0.08f, -0.05f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.96f, 1.76f) + lineToRelative(0.07f, 0.04f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 7.34f, -3.54f) + lineToRelative(0.75f, -4.38f) + horizontalLineTo(16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-3.23f) + lineToRelative(0.67f, -3.93f) + close() + } + } + return _fStop!! + } + +private var _fStop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FastAcceleration.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FastAcceleration.kt new file mode 100644 index 00000000..3b0a19e5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FastAcceleration.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FastAcceleration: ImageVector + get() { + if (_fastAcceleration != null) { + return _fastAcceleration!! + } + _fastAcceleration = fluentIcon(name = "Filled.FastAcceleration") { + fluentPath { + moveTo(13.5f, 4.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, -4.82f, 15.5f) + lineTo(1.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(7.02f, 18.0f) + curveToRelative(-0.4f, -0.46f, -0.73f, -0.96f, -1.02f, -1.5f) + lineTo(3.75f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(5.37f, 15.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, 1.65f, -8.0f) + lineTo(2.75f, 7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(8.68f, 5.5f) + arcTo(8.46f, 8.46f, 0.0f, false, true, 13.5f, 4.0f) + close() + moveTo(14.65f, 14.72f) + arcToRelative(2.49f, 2.49f, 0.0f, false, true, -2.3f, 0.0f) + lineToRelative(-1.09f, 1.1f) + arcToRelative(3.98f, 3.98f, 0.0f, false, false, 4.5f, 0.0f) + lineToRelative(-1.1f, -1.1f) + close() + moveTo(9.5f, 12.5f) + curveToRelative(0.0f, 0.84f, 0.26f, 1.62f, 0.7f, 2.26f) + lineToRelative(1.09f, -1.1f) + arcToRelative(2.49f, 2.49f, 0.0f, false, true, 0.0f, -2.32f) + lineToRelative(-1.1f, -1.09f) + curveToRelative(-0.43f, 0.65f, -0.69f, 1.42f, -0.69f, 2.25f) + close() + moveTo(16.82f, 10.26f) + lineTo(15.72f, 11.36f) + arcToRelative(2.49f, 2.49f, 0.0f, false, true, 0.0f, 2.3f) + lineToRelative(1.1f, 1.1f) + arcToRelative(3.98f, 3.98f, 0.0f, false, false, 0.0f, -4.5f) + close() + moveTo(13.5f, 11.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(13.5f, 8.5f) + curveToRelative(-0.83f, 0.0f, -1.6f, 0.26f, -2.25f, 0.7f) + lineToRelative(1.1f, 1.08f) + arcToRelative(2.49f, 2.49f, 0.0f, false, true, 2.32f, 0.0f) + lineToRelative(1.09f, -1.08f) + arcToRelative(3.98f, 3.98f, 0.0f, false, false, -2.26f, -0.7f) + close() + } + } + return _fastAcceleration!! + } + +private var _fastAcceleration: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FastForward.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FastForward.kt new file mode 100644 index 00000000..c4fb0493 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FastForward.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FastForward: ImageVector + get() { + if (_fastForward != null) { + return _fastForward!! + } + _fastForward = fluentIcon(name = "Filled.FastForward") { + fluentPath { + moveTo(13.97f, 4.36f) + arcTo(1.5f, 1.5f, 0.0f, false, false, 11.5f, 5.5f) + verticalLineToRelative(4.0f) + lineTo(5.47f, 4.35f) + arcTo(1.5f, 1.5f, 0.0f, false, false, 3.0f, 5.51f) + verticalLineTo(18.5f) + curveToRelative(0.0f, 0.88f, 0.7f, 1.48f, 1.46f, 1.5f) + horizontalLineToRelative(0.09f) + curveToRelative(0.32f, 0.0f, 0.64f, -0.12f, 0.92f, -0.36f) + lineToRelative(6.03f, -5.13f) + verticalLineToRelative(3.99f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 2.47f, 1.14f) + lineToRelative(7.41f, -6.3f) + curveToRelative(0.82f, -0.7f, 0.82f, -1.97f, 0.0f, -2.67f) + lineToRelative(-7.4f, -6.3f) + close() + } + } + return _fastForward!! + } + +private var _fastForward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Feed.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Feed.kt new file mode 100644 index 00000000..7828ceab --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Feed.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Feed: ImageVector + get() { + if (_feed != null) { + return _feed!! + } + _feed = fluentIcon(name = "Filled.Feed") { + fluentPath { + moveTo(15.0f, 21.0f) + curveToRelative(0.94f, 0.0f, 1.75f, -0.67f, 1.93f, -1.6f) + lineToRelative(0.48f, -2.4f) + horizontalLineToRelative(2.84f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(22.0f, 9.26f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.26f) + lineTo(14.5f, 7.0f) + lineTo(14.5f, 5.25f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-8.0f) + curveTo(3.01f, 3.0f, 2.0f, 4.0f, 2.0f, 5.25f) + verticalLineToRelative(12.5f) + curveTo(2.0f, 19.55f, 3.46f, 21.0f, 5.25f, 21.0f) + lineTo(15.0f, 21.0f) + close() + moveTo(17.52f, 8.82f) + lineTo(15.46f, 19.1f) + arcToRelative(0.49f, 0.49f, 0.0f, false, true, -0.96f, -0.1f) + lineTo(14.5f, 8.5f) + horizontalLineToRelative(3.11f) + curveToRelative(-0.04f, 0.1f, -0.07f, 0.2f, -0.09f, 0.32f) + close() + moveTo(5.78f, 8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(5.03f, 15.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(5.78f, 11.0f) + horizontalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + } + } + return _feed!! + } + +private var _feed: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Filmstrip.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Filmstrip.kt new file mode 100644 index 00000000..139206ac --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Filmstrip.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Filmstrip: ImageVector + get() { + if (_filmstrip != null) { + return _filmstrip!! + } + _filmstrip = fluentIcon(name = "Filled.Filmstrip") { + fluentPath { + moveTo(2.0f, 7.25f) + curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) + horizontalLineToRelative(13.5f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(5.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + close() + moveTo(18.5f, 7.75f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + close() + moveTo(19.25f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(18.5f, 11.75f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + close() + moveTo(4.75f, 7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 4.75f, 7.0f) + close() + moveTo(4.0f, 15.75f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + close() + moveTo(4.75f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + } + } + return _filmstrip!! + } + +private var _filmstrip: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FilmstripPlay.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FilmstripPlay.kt new file mode 100644 index 00000000..07a9b542 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FilmstripPlay.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FilmstripPlay: ImageVector + get() { + if (_filmstripPlay != null) { + return _filmstripPlay!! + } + _filmstripPlay = fluentIcon(name = "Filled.FilmstripPlay") { + fluentPath { + moveTo(5.25f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) + horizontalLineToRelative(13.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-9.5f) + curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) + lineTo(5.25f, 4.0f) + close() + moveTo(19.25f, 7.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(18.5f, 15.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.5f) + close() + moveTo(19.25f, 11.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(4.0f, 7.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.5f) + close() + moveTo(4.75f, 15.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(4.0f, 11.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.5f) + close() + moveTo(10.0f, 9.75f) + curveToRelative(0.0f, -0.58f, 0.58f, -0.94f, 1.03f, -0.65f) + lineToRelative(3.68f, 2.35f) + curveToRelative(0.39f, 0.24f, 0.39f, 0.86f, 0.0f, 1.1f) + lineToRelative(-3.68f, 2.35f) + curveToRelative(-0.45f, 0.29f, -1.03f, -0.07f, -1.03f, -0.65f) + verticalLineToRelative(-4.5f) + close() + } + } + return _filmstripPlay!! + } + +private var _filmstripPlay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FilterDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FilterDismiss.kt new file mode 100644 index 00000000..b6f9f58a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FilterDismiss.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FilterDismiss: ImageVector + get() { + if (_filterDismiss != null) { + return _filterDismiss!! + } + _filterDismiss = fluentIcon(name = "Filled.FilterDismiss") { + fluentPath { + moveTo(23.0f, 7.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 5.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineTo(18.21f, 7.5f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineTo(17.5f, 6.79f) + lineToRelative(-1.65f, -1.64f) + close() + } + fluentPath { + moveTo(8.0f, 11.0f) + horizontalLineToRelative(4.02f) + curveToRelative(0.52f, 0.8f, 1.2f, 1.49f, 2.01f, 2.0f) + horizontalLineTo(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + horizontalLineTo(8.0f) + close() + } + fluentPath { + moveTo(5.0f, 6.0f) + horizontalLineToRelative(6.17f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -0.15f, 2.0f) + horizontalLineTo(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + horizontalLineTo(5.0f) + close() + } + fluentPath { + moveTo(9.88f, 16.0f) + horizontalLineTo(14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + horizontalLineTo(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + close() + } + } + return _filterDismiss!! + } + +private var _filterDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FilterSync.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FilterSync.kt new file mode 100644 index 00000000..092a5b2f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FilterSync.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FilterSync: ImageVector + get() { + if (_filterSync != null) { + return _filterSync!! + } + _filterSync = fluentIcon(name = "Filled.FilterSync") { + fluentPath { + moveTo(12.0f, 7.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) + close() + moveTo(20.5f, 4.0f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + verticalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.8f, -0.59f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) + lineTo(20.0f, 4.5f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + close() + moveTo(15.0f, 9.95f) + verticalLineToRelative(0.55f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.77f, 0.65f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) + close() + moveTo(8.0f, 13.0f) + horizontalLineToRelative(6.03f) + curveToRelative(-0.8f, -0.51f, -1.5f, -1.2f, -2.0f, -2.0f) + lineTo(7.87f, 11.0f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 8.0f, 13.0f) + close() + moveTo(5.0f, 6.0f) + horizontalLineToRelative(6.17f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -0.15f, 2.0f) + lineTo(5.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(5.0f, 6.0f) + close() + moveTo(9.88f, 16.0f) + lineTo(14.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(10.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + close() + } + } + return _filterSync!! + } + +private var _filterSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fingerprint.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fingerprint.kt new file mode 100644 index 00000000..cc18d1ba --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fingerprint.kt @@ -0,0 +1,107 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Fingerprint: ImageVector + get() { + if (_fingerprint != null) { + return _fingerprint!! + } + _fingerprint = fluentIcon(name = "Filled.Fingerprint") { + fluentPath { + moveTo(14.98f, 11.97f) + curveToRelative(0.6f, 0.61f, 0.93f, 1.34f, 1.16f, 2.33f) + lineToRelative(0.12f, 0.53f) + lineToRelative(0.1f, 0.5f) + curveToRelative(0.12f, 0.68f, 0.2f, 0.98f, 0.3f, 1.22f) + curveToRelative(0.29f, 0.64f, 0.8f, 1.3f, 1.54f, 1.97f) + curveToRelative(0.4f, 0.37f, 0.43f, 1.0f, 0.06f, 1.4f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.41f, 0.07f) + arcToRelative(8.13f, 8.13f, 0.0f, false, true, -2.01f, -2.63f) + arcToRelative(5.36f, 5.36f, 0.0f, false, true, -0.37f, -1.21f) + lineToRelative(-0.18f, -1.0f) + lineToRelative(-0.04f, -0.16f) + curveToRelative(-0.17f, -0.8f, -0.38f, -1.3f, -0.7f, -1.63f) + curveToRelative(-0.6f, -0.6f, -2.06f, -0.44f, -2.41f, 0.12f) + curveToRelative(-0.52f, 0.82f, -0.66f, 2.24f, -0.23f, 3.69f) + curveToRelative(0.34f, 1.15f, 0.79f, 2.28f, 1.35f, 3.4f) + arcToRelative(0.99f, 0.99f, 0.0f, false, true, -0.44f, 1.33f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.35f, -0.44f) + arcTo(22.26f, 22.26f, 0.0f, false, true, 9.0f, 17.72f) + curveToRelative(-0.58f, -1.96f, -0.39f, -3.97f, 0.46f, -5.3f) + curveToRelative(1.04f, -1.63f, 4.02f, -1.98f, 5.53f, -0.45f) + close() + moveTo(12.48f, 14.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.03f, 0.97f) + curveToRelative(0.05f, 1.5f, 0.53f, 2.94f, 1.4f, 4.17f) + lineToRelative(0.18f, 0.25f) + lineToRelative(0.3f, 0.4f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.5f, 1.3f) + lineToRelative(-0.08f, -0.09f) + lineToRelative(-0.3f, -0.39f) + arcToRelative(9.68f, 9.68f, 0.0f, false, true, -2.0f, -5.58f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.96f, -1.03f) + close() + moveTo(8.57f, 9.2f) + arcToRelative(6.27f, 6.27f, 0.0f, false, true, 7.01f, -0.3f) + curveToRelative(0.96f, 0.62f, 1.7f, 1.35f, 2.18f, 2.18f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.72f, 1.01f) + arcToRelative(4.62f, 4.62f, 0.0f, false, false, -1.54f, -1.5f) + arcToRelative(4.28f, 4.28f, 0.0f, false, false, -4.75f, 0.22f) + curveToRelative(-1.56f, 1.15f, -2.22f, 3.14f, -2.02f, 5.25f) + curveToRelative(0.11f, 1.2f, 0.47f, 2.41f, 1.09f, 3.64f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.79f, 0.9f) + arcToRelative(12.24f, 12.24f, 0.0f, false, true, -1.3f, -4.35f) + curveToRelative(-0.25f, -2.75f, 0.64f, -5.43f, 2.83f, -7.05f) + close() + moveTo(19.14f, 14.36f) + curveToRelative(0.03f, 0.56f, 0.16f, 1.0f, 0.4f, 1.37f) + curveToRelative(0.22f, 0.33f, 0.4f, 0.5f, 0.49f, 0.52f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -0.58f, 1.91f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -1.58f, -1.33f) + arcToRelative(4.66f, 4.66f, 0.0f, false, true, -0.73f, -2.37f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, -0.1f) + close() + moveTo(10.46f, 5.96f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.5f, 1.33f) + curveToRelative(-1.8f, 0.8f, -3.11f, 1.95f, -3.98f, 3.44f) + arcToRelative(9.58f, 9.58f, 0.0f, false, false, -1.13f, 5.92f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.98f, 0.26f) + curveToRelative(-0.3f, -2.25f, 0.05f, -4.88f, 1.38f, -7.18f) + arcToRelative(10.35f, 10.35f, 0.0f, false, true, 4.88f, -4.27f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.33f, 0.5f) + close() + moveTo(12.92f, 4.93f) + curveToRelative(1.9f, 0.04f, 3.77f, 0.9f, 5.62f, 2.55f) + curveToRelative(1.87f, 1.66f, 3.0f, 3.92f, 3.37f, 6.74f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.98f, 0.26f) + arcToRelative(8.6f, 8.6f, 0.0f, false, false, -2.72f, -5.5f) + curveToRelative(-1.52f, -1.35f, -2.96f, -2.02f, -4.33f, -2.05f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.04f, -2.0f) + close() + moveTo(5.6f, 5.16f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, 1.41f) + arcToRelative(7.22f, 7.22f, 0.0f, false, false, -1.64f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.73f, -0.99f) + arcToRelative(9.16f, 9.16f, 0.0f, false, true, 2.04f, -2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, 0.08f) + close() + moveTo(12.49f, 2.03f) + curveToRelative(2.24f, 0.1f, 4.32f, 0.6f, 5.86f, 1.78f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.22f, 1.59f) + curveToRelative(-1.2f, -0.93f, -2.89f, -1.29f, -4.74f, -1.37f) + arcToRelative(7.83f, 7.83f, 0.0f, false, false, -4.55f, 0.97f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.05f, -1.7f) + arcToRelative(9.79f, 9.79f, 0.0f, false, true, 5.7f, -1.27f) + close() + } + } + return _fingerprint!! + } + +private var _fingerprint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fire.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fire.kt new file mode 100644 index 00000000..fd0b094e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fire.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Fire: ImageVector + get() { + if (_fire != null) { + return _fire!! + } + _fire = fluentIcon(name = "Filled.Fire") { + fluentPath { + moveTo(6.16f, 9.32f) + horizontalLineToRelative(-0.01f) + lineToRelative(-0.01f, 0.02f) + arcToRelative(1.94f, 1.94f, 0.0f, false, false, -0.13f, 0.1f) + curveToRelative(-0.07f, 0.07f, -0.18f, 0.16f, -0.3f, 0.3f) + curveToRelative(-0.24f, 0.24f, -0.55f, 0.62f, -0.83f, 1.12f) + arcToRelative(7.06f, 7.06f, 0.0f, false, false, -0.8f, 4.55f) + curveToRelative(0.27f, 2.0f, 1.1f, 3.67f, 2.53f, 4.83f) + curveTo(8.02f, 21.4f, 9.94f, 22.0f, 12.25f, 22.0f) + curveToRelative(2.39f, 0.0f, 4.3f, -0.9f, 5.55f, -2.43f) + arcToRelative(8.35f, 8.35f, 0.0f, false, false, 1.68f, -5.86f) + curveToRelative(-0.13f, -2.18f, -1.31f, -3.83f, -2.36f, -5.29f) + lineToRelative(-0.3f, -0.42f) + curveTo(15.68f, 6.4f, 14.78f, 4.9f, 15.0f, 2.83f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.83f) + curveToRelative(-0.38f, 0.0f, -0.82f, 0.12f, -1.24f, 0.3f) + arcToRelative(6.82f, 6.82f, 0.0f, false, false, -3.72f, 3.96f) + curveToRelative(-0.49f, 1.4f, -0.24f, 2.73f, 0.12f, 3.7f) + curveToRelative(0.24f, 0.64f, -0.02f, 1.27f, -0.4f, 1.46f) + arcToRelative(0.7f, 0.7f, 0.0f, false, true, -0.93f, -0.31f) + lineToRelative(-0.81f, -1.54f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.11f, -0.25f) + close() + } + } + return _fire!! + } + +private var _fire: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fireplace.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fireplace.kt new file mode 100644 index 00000000..94cd602e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fireplace.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Fireplace: ImageVector + get() { + if (_fireplace != null) { + return _fireplace!! + } + _fireplace = fluentIcon(name = "Filled.Fireplace") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(9.0f, 9.0f, 0.0f, false, false, -9.0f, 9.0f) + verticalLineToRelative(6.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(16.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(21.0f, 11.0f) + arcToRelative(9.0f, 9.0f, 0.0f, false, false, -9.0f, -9.0f) + close() + moveTo(4.5f, 11.0f) + arcToRelative(7.5f, 7.5f, 0.0f, true, true, 15.0f, 0.0f) + verticalLineToRelative(5.5f) + horizontalLineToRelative(-4.3f) + arcToRelative(4.16f, 4.16f, 0.0f, false, false, 1.3f, -3.01f) + curveToRelative(0.0f, -1.73f, -0.87f, -2.78f, -1.6f, -3.66f) + lineToRelative(-0.07f, -0.09f) + curveToRelative(-0.74f, -0.9f, -1.33f, -1.65f, -1.33f, -2.99f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.95f, -0.72f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -1.74f, 1.55f) + curveToRelative(-0.23f, 0.57f, -0.29f, 1.2f, -0.33f, 1.66f) + verticalLineToRelative(0.13f) + lineToRelative(-0.07f, 0.5f) + arcToRelative(3.2f, 3.2f, 0.0f, false, true, -0.53f, -0.27f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.89f, 0.1f) + lineToRelative(-0.01f, 0.01f) + lineToRelative(-0.02f, 0.02f) + arcToRelative(2.53f, 2.53f, 0.0f, false, false, -0.23f, 0.25f) + arcToRelative(5.57f, 5.57f, 0.0f, false, false, -1.23f, 3.5f) + curveToRelative(0.0f, 1.19f, 0.49f, 2.25f, 1.3f, 3.02f) + lineTo(4.5f, 16.5f) + lineTo(4.5f, 11.0f) + close() + moveTo(2.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(2.75f, 19.5f) + close() + } + } + return _fireplace!! + } + +private var _fireplace: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FixedWidth.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FixedWidth.kt new file mode 100644 index 00000000..38e7abd0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FixedWidth.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FixedWidth: ImageVector + get() { + if (_fixedWidth != null) { + return _fixedWidth!! + } + _fixedWidth = fluentIcon(name = "Filled.FixedWidth") { + fluentPath { + moveTo(3.75f, 4.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.3f, 0.75f, 0.69f) + lineTo(4.5f, 6.0f) + horizontalLineToRelative(6.75f) + lineTo(11.25f, 4.69f) + curveToRelative(0.0f, -0.38f, 0.34f, -0.69f, 0.75f, -0.69f) + reflectiveCurveToRelative(0.75f, 0.3f, 0.75f, 0.69f) + lineTo(12.75f, 6.0f) + horizontalLineToRelative(6.75f) + lineTo(19.5f, 4.69f) + curveToRelative(0.0f, -0.38f, 0.34f, -0.69f, 0.75f, -0.69f) + reflectiveCurveToRelative(0.75f, 0.3f, 0.75f, 0.69f) + lineTo(21.0f, 8.8f) + curveToRelative(0.0f, 0.38f, -0.34f, 0.69f, -0.75f, 0.69f) + reflectiveCurveToRelative(-0.75f, -0.3f, -0.75f, -0.69f) + lineTo(19.5f, 7.5f) + horizontalLineToRelative(-6.75f) + verticalLineToRelative(1.31f) + curveToRelative(0.0f, 0.38f, -0.34f, 0.69f, -0.75f, 0.69f) + reflectiveCurveToRelative(-0.75f, -0.3f, -0.75f, -0.69f) + lineTo(11.25f, 7.5f) + lineTo(4.5f, 7.5f) + verticalLineToRelative(1.31f) + curveToRelative(0.0f, 0.38f, -0.34f, 0.69f, -0.75f, 0.69f) + reflectiveCurveTo(3.0f, 9.2f, 3.0f, 8.81f) + lineTo(3.0f, 4.7f) + curveToRelative(0.0f, -0.38f, 0.34f, -0.69f, 0.75f, -0.69f) + close() + moveTo(5.75f, 11.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 13.75f) + verticalLineToRelative(4.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, 2.75f) + horizontalLineToRelative(5.5f) + lineTo(11.25f, 11.0f) + horizontalLineToRelative(-5.5f) + close() + moveTo(18.25f, 20.5f) + horizontalLineToRelative(-5.5f) + lineTo(12.75f, 11.0f) + horizontalLineToRelative(5.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 13.75f) + verticalLineToRelative(4.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) + close() + } + } + return _fixedWidth!! + } + +private var _fixedWidth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlagClock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlagClock.kt new file mode 100644 index 00000000..e445c6f5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlagClock.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FlagClock: ImageVector + get() { + if (_flagClock != null) { + return _flagClock!! + } + _flagClock = fluentIcon(name = "Filled.FlagClock") { + fluentPath { + moveTo(3.0f, 3.75f) + curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(16.5f) + curveToRelative(0.62f, 0.0f, 0.98f, 0.7f, 0.6f, 1.2f) + lineTo(16.7f, 9.75f) + lineToRelative(0.94f, 1.25f) + horizontalLineToRelative(-0.13f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -6.42f, 5.5f) + lineTo(4.5f, 16.5f) + verticalLineToRelative(4.75f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + lineTo(3.0f, 3.75f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(19.5f, 17.5f) + horizontalLineToRelative(-2.0f) + lineTo(17.5f, 15.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + close() + } + } + return _flagClock!! + } + +private var _flagClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlagOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlagOff.kt new file mode 100644 index 00000000..68dfc434 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlagOff.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FlagOff: ImageVector + get() { + if (_flagOff != null) { + return _flagOff!! + } + _flagOff = fluentIcon(name = "Filled.FlagOff") { + fluentPath { + moveToRelative(2.5f, 2.5f) + lineToRelative(18.0f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineToRelative(-5.06f, -5.06f) + lineTo(4.5f, 16.5f) + verticalLineToRelative(4.75f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + lineTo(3.0f, 5.12f) + lineTo(1.44f, 3.56f) + arcTo(0.75f, 0.75f, 0.0f, true, true, 2.5f, 2.5f) + close() + moveTo(5.12f, 3.0f) + horizontalLineToRelative(15.13f) + curveToRelative(0.62f, 0.0f, 0.98f, 0.7f, 0.6f, 1.2f) + lineTo(16.7f, 9.75f) + lineToRelative(4.16f, 5.55f) + curveToRelative(0.38f, 0.5f, 0.02f, 1.2f, -0.6f, 1.2f) + horizontalLineToRelative(-1.63f) + lineTo(5.12f, 3.0f) + close() + } + } + return _flagOff!! + } + +private var _flagOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlagPride.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlagPride.kt similarity index 93% rename from fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlagPride.kt rename to fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlagPride.kt index 19d32a1c..b162feb2 100644 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/FlagPride.kt +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlagPride.kt @@ -1,11 +1,11 @@ -package com.konyaco.fluent.icons.filled +package io.github.composefluent.icons.filled import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath public val Icons.Filled.FlagPride: ImageVector get() { diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlashAuto.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlashAuto.kt new file mode 100644 index 00000000..1464f356 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlashAuto.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FlashAuto: ImageVector + get() { + if (_flashAuto != null) { + return _flashAuto!! + } + _flashAuto = fluentIcon(name = "Filled.FlashAuto") { + fluentPath { + moveTo(7.43f, 2.83f) + curveTo(7.6f, 2.33f, 8.07f, 2.0f, 8.6f, 2.0f) + horizontalLineToRelative(6.46f) + curveToRelative(0.85f, 0.0f, 1.45f, 0.84f, 1.18f, 1.65f) + lineTo(14.8f, 8.0f) + horizontalLineToRelative(3.96f) + curveToRelative(1.1f, 0.0f, 1.67f, 1.33f, 0.9f, 2.12f) + lineToRelative(-0.67f, 0.7f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -3.11f, 0.29f) + lineToRelative(-1.94f, 4.91f) + lineToRelative(-5.34f, 5.52f) + curveToRelative(-1.06f, 1.08f, -2.88f, 0.1f, -2.55f, -1.38f) + lineToRelative(1.27f, -5.66f) + lineToRelative(-1.56f, -0.01f) + curveToRelative(-1.21f, 0.0f, -2.05f, -1.2f, -1.65f, -2.34f) + lineToRelative(3.33f, -9.32f) + close() + moveTo(18.19f, 11.47f) + lineTo(21.94f, 20.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.64f) + lineToRelative(-0.04f, -0.09f) + lineToRelative(-1.0f, -2.52f) + horizontalLineToRelative(-4.11f) + lineToRelative(-1.0f, 2.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.87f, 0.45f) + lineToRelative(-0.1f, -0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.45f, -0.87f) + lineToRelative(0.03f, -0.1f) + lineToRelative(3.75f, -9.5f) + arcToRelative(0.73f, 0.73f, 0.0f, false, true, 0.45f, -0.43f) + arcToRelative(0.77f, 0.77f, 0.0f, false, true, 0.54f, 0.02f) + curveToRelative(0.14f, 0.06f, 0.27f, 0.16f, 0.35f, 0.3f) + lineToRelative(0.05f, 0.11f) + close() + moveTo(16.03f, 17.5f) + horizontalLineToRelative(2.93f) + lineToRelative(-1.46f, -3.7f) + lineToRelative(-1.47f, 3.7f) + close() + } + } + return _flashAuto!! + } + +private var _flashAuto: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlashCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlashCheckmark.kt new file mode 100644 index 00000000..8c06605b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlashCheckmark.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FlashCheckmark: ImageVector + get() { + if (_flashCheckmark != null) { + return _flashCheckmark!! + } + _flashCheckmark = fluentIcon(name = "Filled.FlashCheckmark") { + fluentPath { + moveTo(7.42f, 2.83f) + curveTo(7.6f, 2.33f, 8.07f, 2.0f, 8.6f, 2.0f) + horizontalLineToRelative(6.46f) + curveToRelative(0.85f, 0.0f, 1.45f, 0.84f, 1.18f, 1.65f) + lineTo(14.8f, 8.0f) + horizontalLineToRelative(3.96f) + curveToRelative(1.1f, 0.0f, 1.66f, 1.33f, 0.9f, 2.12f) + lineToRelative(-0.96f, 0.99f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -7.54f, 7.78f) + lineToRelative(-2.56f, 2.65f) + curveToRelative(-1.06f, 1.08f, -2.88f, 0.1f, -2.55f, -1.38f) + lineToRelative(1.27f, -5.66f) + lineToRelative(-1.57f, -0.01f) + curveToRelative(-1.2f, 0.0f, -2.04f, -1.2f, -1.64f, -2.34f) + lineToRelative(3.32f, -9.32f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(20.85f, 15.15f) + curveToRelative(0.2f, 0.2f, 0.2f, 0.5f, 0.0f, 0.7f) + lineToRelative(-4.0f, 4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.0f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, -0.7f) + lineToRelative(1.65f, 1.64f) + lineToRelative(3.65f, -3.64f) + curveToRelative(0.2f, -0.2f, 0.5f, -0.2f, 0.7f, 0.0f) + close() + } + } + return _flashCheckmark!! + } + +private var _flashCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlashFlow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlashFlow.kt new file mode 100644 index 00000000..5d46f298 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlashFlow.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FlashFlow: ImageVector + get() { + if (_flashFlow != null) { + return _flashFlow!! + } + _flashFlow = fluentIcon(name = "Filled.FlashFlow") { + fluentPath { + moveTo(7.43f, 2.83f) + lineTo(4.1f, 12.15f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 1.65f, 2.34f) + horizontalLineToRelative(1.57f) + lineToRelative(-1.27f, 5.67f) + curveToRelative(-0.33f, 1.48f, 1.48f, 2.46f, 2.54f, 1.38f) + lineToRelative(5.02f, -5.19f) + arcToRelative(85.15f, 85.15f, 0.0f, false, false, -0.55f, -2.12f) + arcToRelative(3.74f, 3.74f, 0.0f, false, true, -6.56f, -2.48f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 7.2f, -1.47f) + curveToRelative(0.42f, 0.06f, 0.87f, 0.22f, 1.29f, 0.51f) + curveToRelative(0.55f, 0.4f, 0.93f, 0.97f, 1.15f, 1.6f) + curveToRelative(0.1f, 0.27f, 0.21f, 0.63f, 0.32f, 1.01f) + lineToRelative(3.19f, -3.28f) + curveToRelative(0.77f, -0.8f, 0.2f, -2.12f, -0.9f, -2.12f) + horizontalLineToRelative(-3.96f) + lineToRelative(1.45f, -4.35f) + curveToRelative(0.27f, -0.81f, -0.33f, -1.65f, -1.18f, -1.65f) + lineTo(8.6f, 2.0f) + curveToRelative(-0.53f, 0.0f, -1.0f, 0.33f, -1.17f, 0.83f) + close() + moveTo(11.5f, 11.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) + close() + moveTo(12.81f, 12.75f) + arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.14f, -1.5f) + horizontalLineToRelative(0.3f) + curveToRelative(0.38f, 0.0f, 0.79f, 0.1f, 1.15f, 0.36f) + curveToRelative(0.37f, 0.26f, 0.64f, 0.64f, 0.8f, 1.13f) + curveToRelative(0.2f, 0.48f, 0.45f, 1.46f, 0.65f, 2.27f) + arcToRelative(89.58f, 89.58f, 0.0f, false, true, 0.35f, 1.44f) + lineToRelative(0.02f, 0.1f) + curveToRelative(0.08f, 0.22f, 0.18f, 0.32f, 0.25f, 0.37f) + curveToRelative(0.07f, 0.05f, 0.16f, 0.08f, 0.28f, 0.08f) + horizontalLineToRelative(0.76f) + arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.29f, 1.5f) + horizontalLineToRelative(-1.05f) + curveToRelative(-0.38f, 0.0f, -0.79f, -0.1f, -1.15f, -0.36f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.83f, -1.22f) + verticalLineToRelative(-0.03f) + lineToRelative(-0.03f, -0.1f) + arcToRelative(88.51f, 88.51f, 0.0f, false, false, -0.34f, -1.42f) + arcToRelative(22.53f, 22.53f, 0.0f, false, false, -0.61f, -2.13f) + curveToRelative(-0.09f, -0.26f, -0.19f, -0.36f, -0.26f, -0.41f) + arcToRelative(0.47f, 0.47f, 0.0f, false, false, -0.28f, -0.08f) + horizontalLineToRelative(-0.44f) + close() + moveTo(20.25f, 18.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + } + } + return _flashFlow!! + } + +private var _flashFlow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlashOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlashOff.kt new file mode 100644 index 00000000..b3f18c19 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlashOff.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FlashOff: ImageVector + get() { + if (_flashOff != null) { + return _flashOff!! + } + _flashOff = fluentIcon(name = "Filled.FlashOff") { + fluentPath { + moveToRelative(14.44f, 15.5f) + lineToRelative(6.28f, 6.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(5.94f, 7.0f) + lineTo(4.1f, 12.15f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 1.64f, 2.34f) + horizontalLineToRelative(1.57f) + lineToRelative(-1.27f, 5.67f) + curveToRelative(-0.33f, 1.48f, 1.5f, 2.46f, 2.55f, 1.38f) + lineToRelative(5.85f, -6.04f) + close() + moveTo(19.64f, 10.12f) + lineTo(16.52f, 13.34f) + lineTo(7.05f, 3.87f) + lineTo(7.42f, 2.83f) + curveTo(7.6f, 2.33f, 8.07f, 2.0f, 8.6f, 2.0f) + horizontalLineToRelative(6.46f) + curveToRelative(0.85f, 0.0f, 1.45f, 0.84f, 1.18f, 1.65f) + lineTo(14.8f, 8.0f) + horizontalLineToRelative(3.96f) + curveToRelative(1.1f, 0.0f, 1.66f, 1.33f, 0.9f, 2.12f) + close() + } + } + return _flashOff!! + } + +private var _flashOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlashSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlashSettings.kt new file mode 100644 index 00000000..5a436b1b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlashSettings.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FlashSettings: ImageVector + get() { + if (_flashSettings != null) { + return _flashSettings!! + } + _flashSettings = fluentIcon(name = "Filled.FlashSettings") { + fluentPath { + moveTo(7.42f, 2.83f) + curveTo(7.6f, 2.33f, 8.07f, 2.0f, 8.6f, 2.0f) + horizontalLineToRelative(6.46f) + curveToRelative(0.85f, 0.0f, 1.45f, 0.84f, 1.18f, 1.65f) + lineTo(14.8f, 8.0f) + horizontalLineToRelative(3.96f) + curveToRelative(1.1f, 0.0f, 1.66f, 1.33f, 0.9f, 2.12f) + lineToRelative(-0.96f, 0.99f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -7.54f, 7.78f) + lineToRelative(-2.56f, 2.65f) + curveToRelative(-1.06f, 1.08f, -2.88f, 0.1f, -2.55f, -1.38f) + lineToRelative(1.27f, -5.66f) + lineToRelative(-1.57f, -0.01f) + curveToRelative(-1.2f, 0.0f, -2.04f, -1.2f, -1.64f, -2.34f) + lineToRelative(3.32f, -9.32f) + close() + moveTo(14.28f, 13.98f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.59f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) + lineToRelative(0.55f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) + lineToRelative(-0.19f, 0.64f) + curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) + lineToRelative(0.49f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.9f) + lineToRelative(-0.2f, -0.7f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) + lineToRelative(0.59f, -0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, -0.01f, -1.8f) + lineToRelative(-0.54f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.19f, -0.63f) + curveToRelative(-0.44f, -0.39f, -0.94f, -0.7f, -1.49f, -0.93f) + lineToRelative(-0.49f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.91f) + lineToRelative(0.2f, 0.69f) + close() + moveTo(17.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) + close() + } + } + return _flashSettings!! + } + +private var _flashSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Flashlight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Flashlight.kt new file mode 100644 index 00000000..2b6d0574 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Flashlight.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Flashlight: ImageVector + get() { + if (_flashlight != null) { + return _flashlight!! + } + _flashlight = fluentIcon(name = "Filled.Flashlight") { + fluentPath { + moveTo(16.75f, 1.25f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.0f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 16.0f, 3.0f) + lineTo(16.0f, 2.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(20.47f, 2.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(2.0f, -2.0f) + close() + moveTo(8.25f, 6.31f) + lineTo(8.25f, 9.2f) + lineToRelative(6.56f, 6.56f) + horizontalLineToRelative(2.88f) + lineTo(8.25f, 6.31f) + close() + moveTo(19.06f, 15.0f) + lineToRelative(1.4f, -1.4f) + curveToRelative(0.89f, -0.89f, 0.89f, -2.31f, 0.0f, -3.2f) + lineTo(13.6f, 3.54f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.18f, 0.0f) + lineTo(9.0f, 4.93f) + lineTo(19.06f, 15.0f) + close() + moveTo(13.0f, 16.06f) + lineTo(7.94f, 11.0f) + lineToRelative(-4.91f, 4.9f) + curveToRelative(-0.88f, 0.89f, -0.88f, 2.31f, 0.0f, 3.2f) + lineToRelative(1.88f, 1.87f) + curveToRelative(0.88f, 0.88f, 2.3f, 0.88f, 3.18f, 0.0f) + lineToRelative(4.91f, -4.9f) + close() + moveTo(9.53f, 14.47f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(1.5f, -1.5f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(22.0f, 8.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.0f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 22.0f, 8.0f) + close() + } + } + return _flashlight!! + } + +private var _flashlight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlashlightOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlashlightOff.kt new file mode 100644 index 00000000..eaf5f653 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlashlightOff.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FlashlightOff: ImageVector + get() { + if (_flashlightOff != null) { + return _flashlightOff!! + } + _flashlightOff = fluentIcon(name = "Filled.FlashlightOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(18.5f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(19.06f, 15.0f) + lineToRelative(1.4f, -1.4f) + curveToRelative(0.89f, -0.89f, 0.89f, -2.31f, 0.0f, -3.2f) + lineTo(13.6f, 3.54f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.18f, 0.0f) + lineTo(9.0f, 4.93f) + lineTo(19.06f, 15.0f) + close() + moveTo(13.0f, 16.06f) + lineTo(7.94f, 11.0f) + lineToRelative(-4.91f, 4.9f) + curveToRelative(-0.88f, 0.89f, -0.88f, 2.31f, 0.0f, 3.2f) + lineToRelative(1.88f, 1.87f) + curveToRelative(0.88f, 0.88f, 2.3f, 0.88f, 3.18f, 0.0f) + lineToRelative(4.91f, -4.9f) + close() + moveTo(9.53f, 15.53f) + lineTo(8.03f, 17.03f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(1.5f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + close() + } + } + return _flashlightOff!! + } + +private var _flashlightOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlipHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlipHorizontal.kt new file mode 100644 index 00000000..6e4b461c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlipHorizontal.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FlipHorizontal: ImageVector + get() { + if (_flipHorizontal != null) { + return _flipHorizontal!! + } + _flipHorizontal = fluentIcon(name = "Filled.FlipHorizontal") { + fluentPath { + moveTo(21.84f, 19.55f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 21.0f, 20.0f) + horizontalLineToRelative(-7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineTo(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.92f, -0.4f) + lineToRelative(7.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, 0.95f) + close() + moveTo(15.0f, 7.78f) + verticalLineTo(18.0f) + horizontalLineToRelative(4.47f) + lineTo(15.0f, 7.78f) + close() + moveTo(2.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.45f, -0.71f) + lineToRelative(8.0f, -17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.95f, 0.21f) + verticalLineToRelative(17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-8.0f) + close() + } + } + return _flipHorizontal!! + } + +private var _flipHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlipVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlipVertical.kt new file mode 100644 index 00000000..54710a65 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlipVertical.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FlipVertical: ImageVector + get() { + if (_flipVertical != null) { + return _flipVertical!! + } + _flipVertical = fluentIcon(name = "Filled.FlipVertical") { + fluentPath { + moveTo(19.55f, 2.16f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 20.0f, 3.0f) + verticalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineTo(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.4f, -1.92f) + lineToRelative(16.0f, -7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.95f, 0.08f) + close() + moveTo(7.78f, 9.0f) + horizontalLineTo(18.0f) + verticalLineTo(4.53f) + lineTo(7.78f, 9.0f) + close() + moveTo(20.0f, 21.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.71f, 0.45f) + lineToRelative(-17.0f, -8.0f) + arcTo(0.5f, 0.5f, 0.0f, false, true, 2.5f, 13.0f) + horizontalLineToRelative(17.0f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + verticalLineToRelative(8.0f) + close() + } + } + return _flipVertical!! + } + +private var _flipVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Flowchart.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Flowchart.kt new file mode 100644 index 00000000..a7bad2e3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Flowchart.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Flowchart: ImageVector + get() { + if (_flowchart != null) { + return _flowchart!! + } + _flowchart = fluentIcon(name = "Filled.Flowchart") { + fluentPath { + moveTo(3.0f, 5.25f) + curveTo(3.0f, 4.0f, 4.0f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(2.5f) + curveTo(9.0f, 3.0f, 10.0f, 4.0f, 10.0f, 5.25f) + verticalLineToRelative(2.5f) + curveTo(10.0f, 9.0f, 9.0f, 10.0f, 7.75f, 10.0f) + horizontalLineToRelative(-0.5f) + verticalLineToRelative(3.71f) + curveToRelative(0.05f, 0.03f, 0.1f, 0.07f, 0.13f, 0.12f) + lineToRelative(2.8f, 2.79f) + lineToRelative(0.11f, 0.13f) + horizontalLineTo(14.0f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -1.24f, 1.01f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(2.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(2.5f) + curveTo(21.0f, 20.0f, 20.0f, 21.0f, 18.75f, 21.0f) + horizontalLineToRelative(-2.5f) + curveTo(15.01f, 21.0f, 14.0f, 20.0f, 14.0f, 18.75f) + verticalLineToRelative(-0.5f) + horizontalLineTo(10.3f) + curveToRelative(-0.03f, 0.05f, -0.07f, 0.1f, -0.12f, 0.13f) + lineToRelative(-2.79f, 2.8f) + curveToRelative(-0.48f, 0.48f, -1.28f, 0.48f, -1.76f, 0.0f) + lineToRelative(-2.8f, -2.8f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -1.76f) + lineToRelative(2.8f, -2.8f) + lineToRelative(0.13f, -0.11f) + verticalLineTo(10.0f) + horizontalLineToRelative(-0.5f) + curveTo(4.0f, 10.0f, 3.0f, 9.0f, 3.0f, 7.74f) + verticalLineToRelative(-2.5f) + close() + } + } + return _flowchart!! + } + +private var _flowchart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlowchartCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlowchartCircle.kt new file mode 100644 index 00000000..754f66ca --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FlowchartCircle.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FlowchartCircle: ImageVector + get() { + if (_flowchartCircle != null) { + return _flowchartCircle!! + } + _flowchartCircle = fluentIcon(name = "Filled.FlowchartCircle") { + fluentPath { + moveTo(2.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) + close() + moveTo(6.5f, 7.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(0.5f) + verticalLineToRelative(2.69f) + lineToRelative(-1.78f, 1.78f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(1.78f, -1.78f) + horizontalLineToRelative(2.69f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.5f) + horizontalLineToRelative(-2.69f) + lineToRelative(-1.56f, -1.56f) + lineTo(9.25f, 10.5f) + horizontalLineToRelative(0.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + } + } + return _flowchartCircle!! + } + +private var _flowchartCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fluent.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fluent.kt new file mode 100644 index 00000000..9929c6ee --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fluent.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Fluent: ImageVector + get() { + if (_fluent != null) { + return _fluent!! + } + _fluent = fluentIcon(name = "Filled.Fluent") { + fluentPath { + moveTo(12.41f, 2.5f) + horizontalLineToRelative(0.13f) + lineToRelative(0.11f, 0.02f) + lineToRelative(0.07f, 0.03f) + lineToRelative(6.0f, 3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 0.9f) + lineTo(13.62f, 9.0f) + lineToRelative(5.1f, 2.55f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 0.9f) + lineToRelative(-5.76f, 2.84f) + lineToRelative(0.04f, 5.7f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.75f, 0.44f) + lineToRelative(-6.0f, -3.5f) + arcTo(0.5f, 0.5f, 0.0f, false, true, 6.0f, 17.5f) + verticalLineTo(5.96f) + lineToRelative(0.02f, -0.1f) + lineToRelative(0.02f, -0.06f) + lineToRelative(0.01f, -0.03f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.06f, -0.09f) + lineToRelative(0.07f, -0.06f) + lineToRelative(0.07f, -0.05f) + lineToRelative(6.08f, -3.04f) + lineToRelative(0.08f, -0.02f) + close() + } + } + return _fluent!! + } + +private var _fluent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fluid.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fluid.kt new file mode 100644 index 00000000..a1a05394 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fluid.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Fluid: ImageVector + get() { + if (_fluid != null) { + return _fluid!! + } + _fluid = fluentIcon(name = "Filled.Fluid") { + fluentPath { + moveTo(11.0f, 5.0f) + horizontalLineToRelative(5.75f) + curveTo(17.98f, 5.0f, 19.0f, 6.0f, 19.0f, 7.25f) + lineTo(19.0f, 11.0f) + horizontalLineToRelative(-1.5f) + lineTo(17.5f, 7.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(11.0f, 6.5f) + lineTo(11.0f, 5.0f) + close() + moveTo(6.5f, 11.0f) + verticalLineToRelative(5.75f) + curveToRelative(0.0f, 0.4f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(11.0f, 17.5f) + lineTo(11.0f, 19.0f) + lineTo(7.25f, 19.0f) + curveTo(6.01f, 19.0f, 5.0f, 17.98f, 5.0f, 16.75f) + lineTo(5.0f, 11.0f) + horizontalLineToRelative(1.5f) + close() + moveTo(2.0f, 4.25f) + curveTo(2.0f, 3.01f, 3.0f, 2.0f, 4.25f, 2.0f) + horizontalLineToRelative(3.5f) + curveTo(8.99f, 2.0f, 10.0f, 3.0f, 10.0f, 4.25f) + verticalLineToRelative(3.5f) + curveTo(10.0f, 8.99f, 9.0f, 10.0f, 7.75f, 10.0f) + horizontalLineToRelative(-3.5f) + curveTo(3.01f, 10.0f, 2.0f, 9.0f, 2.0f, 7.75f) + verticalLineToRelative(-3.5f) + close() + moveTo(12.0f, 14.25f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(5.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(5.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-5.5f) + curveTo(13.01f, 22.0f, 12.0f, 21.0f, 12.0f, 19.75f) + verticalLineToRelative(-5.5f) + close() + } + } + return _fluid!! + } + +private var _fluid: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderAdd.kt new file mode 100644 index 00000000..08027e83 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderAdd.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FolderAdd: ImageVector + get() { + if (_folderAdd != null) { + return _folderAdd!! + } + _folderAdd = fluentIcon(name = "Filled.FolderAdd") { + fluentPath { + moveTo(17.5f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(17.5f, 13.0f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) + lineToRelative(-0.01f, 0.1f) + lineTo(17.0f, 16.0f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(0.18f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) + lineToRelative(0.1f, 0.01f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(2.6f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + horizontalLineToRelative(0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) + lineToRelative(0.01f, -0.1f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + verticalLineToRelative(-0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) + lineToRelative(-0.1f, -0.01f) + lineTo(18.0f, 16.0f) + verticalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) + horizontalLineToRelative(-0.09f) + close() + moveTo(19.75f, 6.5f) + curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) + lineToRelative(0.01f, 0.16f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(3.06f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -9.98f, 8.2f) + lineTo(4.25f, 20.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(2.0f, 17.75f) + lineTo(2.0f, 10.5f) + horizontalLineToRelative(6.4f) + curveToRelative(0.4f, -0.04f, 0.77f, -0.18f, 1.1f, -0.4f) + lineToRelative(0.15f, -0.12f) + lineToRelative(4.17f, -3.48f) + horizontalLineToRelative(5.93f) + close() + moveTo(8.21f, 4.0f) + curveToRelative(0.46f, 0.0f, 0.9f, 0.14f, 1.28f, 0.4f) + lineToRelative(0.16f, 0.12f) + lineToRelative(2.1f, 1.75f) + lineToRelative(-3.06f, 2.56f) + lineToRelative(-0.09f, 0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.29f, 0.1f) + lineToRelative(-0.1f, 0.01f) + lineTo(2.0f, 9.0f) + lineTo(2.0f, 6.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 4.0f) + horizontalLineToRelative(3.96f) + close() + } + } + return _folderAdd!! + } + +private var _folderAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderArrowLeft.kt new file mode 100644 index 00000000..423d90ea --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderArrowLeft.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FolderArrowLeft: ImageVector + get() { + if (_folderArrowLeft != null) { + return _folderArrowLeft!! + } + _folderArrowLeft = fluentIcon(name = "Filled.FolderArrowLeft") { + fluentPath { + moveTo(21.98f, 8.44f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.23f, -1.94f) + horizontalLineToRelative(-5.93f) + lineTo(9.65f, 9.98f) + lineToRelative(-0.16f, 0.12f) + curveToRelative(-0.32f, 0.22f, -0.7f, 0.36f, -1.09f, 0.4f) + lineTo(2.0f, 10.5f) + verticalLineToRelative(7.4f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 20.0f) + horizontalLineToRelative(7.77f) + arcTo(6.5f, 6.5f, 0.0f, false, true, 22.0f, 11.8f) + lineTo(22.0f, 8.61f) + lineToRelative(-0.02f, -0.16f) + close() + moveTo(9.49f, 4.4f) + curveToRelative(-0.37f, -0.26f, -0.82f, -0.4f, -1.28f, -0.4f) + lineTo(4.1f, 4.0f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 6.26f) + lineTo(2.0f, 9.0f) + lineTo(8.31f, 9.0f) + curveToRelative(0.1f, -0.02f, 0.2f, -0.06f, 0.3f, -0.11f) + lineToRelative(0.08f, -0.06f) + lineToRelative(3.06f, -2.56f) + lineToRelative(-2.1f, -1.75f) + lineToRelative(-0.16f, -0.12f) + close() + moveTo(17.5f, 22.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, 11.0f) + close() + moveTo(20.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + horizontalLineToRelative(-4.8f) + lineToRelative(1.65f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineTo(15.71f, 17.0f) + horizontalLineToRelative(4.79f) + close() + } + } + return _folderArrowLeft!! + } + +private var _folderArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderArrowRight.kt new file mode 100644 index 00000000..9cd25283 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderArrowRight.kt @@ -0,0 +1,88 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FolderArrowRight: ImageVector + get() { + if (_folderArrowRight != null) { + return _folderArrowRight!! + } + _folderArrowRight = fluentIcon(name = "Filled.FolderArrowRight") { + fluentPath { + moveTo(17.5f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(19.75f, 6.5f) + curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) + lineToRelative(0.01f, 0.16f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(3.06f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -9.98f, 8.2f) + lineTo(4.25f, 20.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(2.0f, 17.75f) + lineTo(2.0f, 10.5f) + horizontalLineToRelative(6.4f) + curveToRelative(0.4f, -0.04f, 0.77f, -0.18f, 1.1f, -0.4f) + lineToRelative(0.15f, -0.12f) + lineToRelative(4.17f, -3.48f) + horizontalLineToRelative(5.93f) + close() + moveTo(17.79f, 13.55f) + lineTo(17.72f, 13.59f) + lineTo(17.65f, 13.65f) + lineTo(17.59f, 13.72f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) + lineToRelative(0.06f, 0.07f) + lineTo(19.29f, 16.0f) + horizontalLineToRelative(-5.38f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + lineToRelative(-0.01f, 0.09f) + verticalLineToRelative(0.09f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + lineTo(14.0f, 17.0f) + horizontalLineToRelative(5.3f) + lineToRelative(-1.65f, 1.65f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(0.06f, -0.07f) + lineToRelative(2.53f, -2.53f) + lineToRelative(0.05f, -0.06f) + lineToRelative(0.03f, -0.07f) + lineToRelative(0.02f, -0.06f) + lineToRelative(0.02f, -0.08f) + verticalLineToRelative(-0.1f) + lineToRelative(-0.02f, -0.08f) + lineToRelative(-0.03f, -0.08f) + lineToRelative(-0.04f, -0.07f) + lineToRelative(-0.04f, -0.06f) + lineToRelative(-2.52f, -2.51f) + lineToRelative(-0.07f, -0.06f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.49f, -0.04f) + close() + moveTo(8.21f, 4.0f) + curveToRelative(0.46f, 0.0f, 0.9f, 0.14f, 1.28f, 0.4f) + lineToRelative(0.16f, 0.12f) + lineToRelative(2.1f, 1.75f) + lineToRelative(-3.06f, 2.56f) + lineToRelative(-0.09f, 0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.29f, 0.1f) + lineToRelative(-0.1f, 0.01f) + lineTo(2.0f, 9.0f) + lineTo(2.0f, 6.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 4.0f) + horizontalLineToRelative(3.96f) + close() + } + } + return _folderArrowRight!! + } + +private var _folderArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderArrowUp.kt new file mode 100644 index 00000000..bd4643fe --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderArrowUp.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FolderArrowUp: ImageVector + get() { + if (_folderArrowUp != null) { + return _folderArrowUp!! + } + _folderArrowUp = fluentIcon(name = "Filled.FolderArrowUp") { + fluentPath { + moveTo(19.75f, 6.5f) + curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) + lineToRelative(0.01f, 0.16f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(3.06f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -9.98f, 8.2f) + lineTo(4.25f, 20.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(2.0f, 17.75f) + lineTo(2.0f, 10.5f) + horizontalLineToRelative(6.4f) + curveToRelative(0.4f, -0.04f, 0.77f, -0.18f, 1.1f, -0.4f) + lineToRelative(0.15f, -0.12f) + lineToRelative(4.17f, -3.48f) + horizontalLineToRelative(5.93f) + close() + moveTo(8.21f, 4.0f) + curveToRelative(0.46f, 0.0f, 0.9f, 0.14f, 1.28f, 0.4f) + lineToRelative(0.16f, 0.12f) + lineToRelative(2.1f, 1.75f) + lineToRelative(-3.06f, 2.56f) + lineToRelative(-0.09f, 0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.29f, 0.1f) + lineToRelative(-0.1f, 0.01f) + lineTo(2.0f, 9.0f) + lineTo(2.0f, 6.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 4.0f) + horizontalLineToRelative(3.96f) + close() + moveTo(23.0f, 16.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(17.0f, 14.7f) + verticalLineToRelative(4.8f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-4.8f) + lineToRelative(1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineTo(17.0f, 14.71f) + close() + } + } + return _folderArrowUp!! + } + +private var _folderArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderLink.kt new file mode 100644 index 00000000..eaafeb7c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderLink.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FolderLink: ImageVector + get() { + if (_folderLink != null) { + return _folderLink!! + } + _folderLink = fluentIcon(name = "Filled.FolderLink") { + fluentPath { + moveTo(18.25f, 14.5f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 0.2f, 7.5f) + horizontalLineToRelative(-1.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + horizontalLineToRelative(0.1f) + lineToRelative(1.0f, -0.01f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.15f, -4.5f) + horizontalLineToRelative(-1.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(1.1f) + close() + moveTo(13.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-1.1f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.15f, 4.5f) + horizontalLineToRelative(1.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-1.1f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.2f, -7.5f) + horizontalLineToRelative(1.2f) + close() + moveTo(19.75f, 6.5f) + curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) + lineToRelative(0.01f, 0.16f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(6.59f) + arcToRelative(4.74f, 4.74f, 0.0f, false, false, -3.75f, -1.84f) + horizontalLineToRelative(-5.5f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 8.33f, 20.0f) + lineTo(4.25f, 20.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(2.0f, 17.75f) + lineTo(2.0f, 10.5f) + horizontalLineToRelative(6.4f) + curveToRelative(0.4f, -0.04f, 0.77f, -0.18f, 1.1f, -0.4f) + lineToRelative(0.15f, -0.12f) + lineToRelative(4.17f, -3.48f) + horizontalLineToRelative(5.93f) + close() + moveTo(18.25f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-5.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(5.6f) + close() + moveTo(8.21f, 4.0f) + curveToRelative(0.46f, 0.0f, 0.9f, 0.14f, 1.28f, 0.4f) + lineToRelative(0.16f, 0.12f) + lineToRelative(2.1f, 1.75f) + lineToRelative(-3.06f, 2.56f) + lineToRelative(-0.09f, 0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.29f, 0.1f) + lineToRelative(-0.1f, 0.01f) + lineTo(2.0f, 9.0f) + lineTo(2.0f, 6.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 4.0f) + horizontalLineToRelative(3.96f) + close() + } + } + return _folderLink!! + } + +private var _folderLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderMail.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderMail.kt new file mode 100644 index 00000000..3efb9da8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderMail.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FolderMail: ImageVector + get() { + if (_folderMail != null) { + return _folderMail!! + } + _folderMail = fluentIcon(name = "Filled.FolderMail") { + fluentPath { + moveTo(19.75f, 6.5f) + horizontalLineToRelative(-5.93f) + lineTo(9.65f, 9.98f) + lineToRelative(-0.16f, 0.12f) + curveToRelative(-0.32f, 0.22f, -0.7f, 0.36f, -1.09f, 0.4f) + lineTo(2.0f, 10.5f) + verticalLineToRelative(7.4f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 20.0f) + lineTo(11.0f, 20.0f) + verticalLineToRelative(-4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 1.0f, 0.17f) + lineTo(22.0f, 8.6f) + lineToRelative(-0.02f, -0.16f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.23f, -1.94f) + close() + moveTo(9.49f, 4.4f) + curveToRelative(-0.37f, -0.26f, -0.82f, -0.4f, -1.28f, -0.4f) + lineTo(4.1f, 4.0f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 6.26f) + lineTo(2.0f, 9.0f) + lineTo(8.31f, 9.0f) + curveToRelative(0.1f, -0.02f, 0.2f, -0.06f, 0.3f, -0.11f) + lineToRelative(0.08f, -0.06f) + lineToRelative(3.06f, -2.56f) + lineToRelative(-2.1f, -1.75f) + lineToRelative(-0.16f, -0.12f) + close() + moveTo(17.51f, 18.93f) + lineTo(12.01f, 15.73f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 14.0f, 14.0f) + horizontalLineToRelative(7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 1.97f) + lineToRelative(-5.49f, 2.96f) + close() + moveTo(17.74f, 19.94f) + lineTo(23.0f, 17.11f) + lineTo(23.0f, 21.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + verticalLineToRelative(-4.13f) + lineToRelative(5.25f, 3.06f) + curveToRelative(0.15f, 0.09f, 0.33f, 0.1f, 0.49f, 0.01f) + close() + } + } + return _folderMail!! + } + +private var _folderMail: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderOpen.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderOpen.kt new file mode 100644 index 00000000..ff376a5c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderOpen.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FolderOpen: ImageVector + get() { + if (_folderOpen != null) { + return _folderOpen!! + } + _folderOpen = fluentIcon(name = "Filled.FolderOpen") { + fluentPath { + moveTo(2.0f, 6.25f) + curveTo(2.0f, 5.0f, 3.0f, 4.0f, 4.25f, 4.0f) + horizontalLineToRelative(3.96f) + curveToRelative(0.52f, 0.0f, 1.03f, 0.18f, 1.43f, 0.52f) + lineToRelative(2.39f, 1.98f) + horizontalLineToRelative(5.72f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(0.75f) + lineTo(6.42f, 9.5f) + curveToRelative(-1.03f, 0.0f, -1.93f, 0.7f, -2.18f, 1.7f) + lineToRelative(-1.92f, 7.7f) + curveToRelative(0.04f, -0.16f, 0.0f, 0.01f, 0.0f, 0.0f) + curveToRelative(-0.2f, -0.33f, -0.32f, -0.73f, -0.32f, -1.15f) + lineTo(2.0f, 6.25f) + close() + moveTo(3.74f, 19.38f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.49f, 0.62f) + horizontalLineToRelative(14.24f) + curveToRelative(0.8f, 0.0f, 1.5f, -0.55f, 1.7f, -1.33f) + lineToRelative(1.76f, -7.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.48f, -0.62f) + lineTo(6.42f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.73f, 0.57f) + lineToRelative(-1.95f, 7.8f) + close() + } + } + return _folderOpen!! + } + +private var _folderOpen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderPeople.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderPeople.kt new file mode 100644 index 00000000..f4897584 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderPeople.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FolderPeople: ImageVector + get() { + if (_folderPeople != null) { + return _folderPeople!! + } + _folderPeople = fluentIcon(name = "Filled.FolderPeople") { + fluentPath { + moveTo(13.82f, 6.5f) + horizontalLineToRelative(5.93f) + curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) + lineToRelative(0.01f, 0.16f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(4.55f) + arcToRelative(2.74f, 2.74f, 0.0f, false, false, -3.15f, 0.46f) + arcToRelative(3.25f, 3.25f, 0.0f, true, false, -5.43f, 3.26f) + curveToRelative(-1.43f, 0.15f, -2.42f, 1.45f, -2.42f, 2.86f) + lineTo(11.0f, 20.0f) + lineTo(4.25f, 20.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(2.0f, 17.75f) + lineTo(2.0f, 10.5f) + horizontalLineToRelative(6.4f) + curveToRelative(0.4f, -0.04f, 0.77f, -0.18f, 1.1f, -0.4f) + lineToRelative(0.15f, -0.12f) + lineToRelative(4.17f, -3.48f) + close() + moveTo(8.21f, 4.0f) + curveToRelative(0.46f, 0.0f, 0.9f, 0.14f, 1.28f, 0.4f) + lineToRelative(0.16f, 0.12f) + lineToRelative(2.1f, 1.75f) + lineToRelative(-3.06f, 2.56f) + lineToRelative(-0.09f, 0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.29f, 0.1f) + lineToRelative(-0.1f, 0.01f) + lineTo(2.0f, 9.0f) + lineTo(2.0f, 6.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 4.0f) + horizontalLineToRelative(3.96f) + close() + moveTo(15.75f, 17.0f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, -4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) + close() + moveTo(15.75f, 23.0f) + curveToRelative(2.68f, 0.0f, 3.75f, -1.57f, 3.75f, -3.13f) + curveToRelative(0.0f, -1.03f, -0.72f, -1.87f, -1.6f, -1.87f) + horizontalLineToRelative(-4.3f) + curveToRelative(-0.88f, 0.0f, -1.6f, 0.84f, -1.6f, 1.88f) + curveToRelative(0.0f, 1.56f, 1.07f, 3.12f, 3.75f, 3.12f) + close() + moveTo(22.5f, 15.75f) + arcToRelative(1.75f, 1.75f, 0.0f, true, true, -3.5f, 0.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 3.5f, 0.0f) + close() + moveTo(19.92f, 22.0f) + curveToRelative(0.4f, -0.66f, 0.58f, -1.4f, 0.58f, -2.13f) + curveToRelative(0.0f, -0.47f, -0.11f, -0.95f, -0.32f, -1.37f) + horizontalLineToRelative(1.54f) + curveToRelative(0.7f, 0.0f, 1.28f, 0.59f, 1.28f, 1.31f) + curveToRelative(0.0f, 1.1f, -0.85f, 2.19f, -3.0f, 2.19f) + horizontalLineToRelative(-0.08f) + close() + } + } + return _folderPeople!! + } + +private var _folderPeople: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderProhibited.kt new file mode 100644 index 00000000..8b2f3856 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderProhibited.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FolderProhibited: ImageVector + get() { + if (_folderProhibited != null) { + return _folderProhibited!! + } + _folderProhibited = fluentIcon(name = "Filled.FolderProhibited") { + fluentPath { + moveTo(17.5f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(20.8f, 14.25f) + lineTo(15.25f, 19.81f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 5.56f, -5.56f) + close() + moveTo(19.76f, 6.5f) + curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) + lineToRelative(0.01f, 0.16f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(3.06f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -9.98f, 8.2f) + lineTo(4.25f, 20.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(2.0f, 17.75f) + lineTo(2.0f, 10.5f) + horizontalLineToRelative(6.4f) + curveToRelative(0.4f, -0.04f, 0.77f, -0.18f, 1.1f, -0.4f) + lineToRelative(0.15f, -0.12f) + lineToRelative(4.17f, -3.48f) + horizontalLineToRelative(5.93f) + close() + moveTo(17.51f, 12.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -3.3f, 6.25f) + lineToRelative(5.55f, -5.56f) + arcToRelative(3.98f, 3.98f, 0.0f, false, false, -2.25f, -0.69f) + close() + moveTo(8.2f, 4.0f) + curveToRelative(0.47f, 0.0f, 0.92f, 0.14f, 1.3f, 0.4f) + lineToRelative(0.15f, 0.12f) + lineToRelative(2.1f, 1.75f) + lineToRelative(-3.06f, 2.56f) + lineToRelative(-0.09f, 0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.29f, 0.1f) + lineToRelative(-0.1f, 0.01f) + lineTo(2.0f, 9.0f) + lineTo(2.0f, 6.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 4.0f) + horizontalLineToRelative(3.96f) + close() + } + } + return _folderProhibited!! + } + +private var _folderProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderSwap.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderSwap.kt new file mode 100644 index 00000000..f7b4b8cd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderSwap.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FolderSwap: ImageVector + get() { + if (_folderSwap != null) { + return _folderSwap!! + } + _folderSwap = fluentIcon(name = "Filled.FolderSwap") { + fluentPath { + moveTo(13.82f, 6.5f) + horizontalLineToRelative(5.93f) + curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) + lineToRelative(0.01f, 0.16f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(8.28f) + lineToRelative(-2.01f, -2.01f) + arcTo(1.75f, 1.75f, 0.0f, false, false, 17.17f, 17.0f) + horizontalLineToRelative(-2.33f) + arcTo(1.75f, 1.75f, 0.0f, false, false, 12.0f, 15.02f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, 2.48f) + lineTo(4.26f, 20.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(2.0f, 17.75f) + lineTo(2.0f, 10.5f) + horizontalLineToRelative(6.4f) + curveToRelative(0.4f, -0.04f, 0.77f, -0.18f, 1.1f, -0.4f) + lineToRelative(0.15f, -0.12f) + lineToRelative(4.17f, -3.48f) + close() + moveTo(8.21f, 4.0f) + curveToRelative(0.46f, 0.0f, 0.9f, 0.14f, 1.28f, 0.4f) + lineToRelative(0.16f, 0.12f) + lineToRelative(2.1f, 1.75f) + lineToRelative(-3.06f, 2.56f) + lineToRelative(-0.09f, 0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.29f, 0.1f) + lineToRelative(-0.1f, 0.01f) + lineTo(2.0f, 9.0f) + lineTo(2.0f, 6.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 4.0f) + horizontalLineToRelative(3.96f) + close() + moveTo(13.78f, 16.79f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.06f) + lineToRelative(2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.07f) + lineToRelative(-1.22f, -1.22f) + horizontalLineToRelative(6.88f) + lineToRelative(-1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.06f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineTo(19.44f, 18.0f) + horizontalLineToRelative(-6.87f) + lineToRelative(1.21f, -1.21f) + close() + } + } + return _folderSwap!! + } + +private var _folderSwap: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderSync.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderSync.kt new file mode 100644 index 00000000..83b56955 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderSync.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FolderSync: ImageVector + get() { + if (_folderSync != null) { + return _folderSync!! + } + _folderSync = fluentIcon(name = "Filled.FolderSync") { + fluentPath { + moveTo(13.82f, 6.5f) + horizontalLineToRelative(5.93f) + curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) + lineToRelative(0.01f, 0.16f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(3.06f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 20.0f) + lineTo(4.25f, 20.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(2.0f, 17.75f) + lineTo(2.0f, 10.5f) + horizontalLineToRelative(6.4f) + curveToRelative(0.4f, -0.04f, 0.77f, -0.18f, 1.1f, -0.4f) + lineToRelative(0.15f, -0.12f) + lineToRelative(4.17f, -3.48f) + close() + moveTo(8.21f, 4.0f) + curveToRelative(0.46f, 0.0f, 0.9f, 0.14f, 1.28f, 0.4f) + lineToRelative(0.16f, 0.12f) + lineToRelative(2.1f, 1.75f) + lineToRelative(-3.06f, 2.56f) + lineToRelative(-0.09f, 0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.29f, 0.1f) + lineToRelative(-0.1f, 0.01f) + lineTo(2.0f, 9.0f) + lineTo(2.0f, 6.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 4.0f) + horizontalLineToRelative(3.96f) + close() + moveTo(12.0f, 16.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) + close() + moveTo(20.5f, 13.0f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + verticalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.8f, -0.59f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) + verticalLineToRelative(-0.55f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + close() + moveTo(15.0f, 18.95f) + verticalLineToRelative(0.55f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.77f, 0.65f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) + close() + } + } + return _folderSync!! + } + +private var _folderSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderZip.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderZip.kt new file mode 100644 index 00000000..9456b154 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FolderZip.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FolderZip: ImageVector + get() { + if (_folderZip != null) { + return _folderZip!! + } + _folderZip = fluentIcon(name = "Filled.FolderZip") { + fluentPath { + moveTo(14.0f, 6.5f) + horizontalLineToRelative(-0.18f) + lineTo(9.65f, 9.98f) + lineToRelative(-0.16f, 0.12f) + curveToRelative(-0.32f, 0.22f, -0.7f, 0.36f, -1.09f, 0.4f) + lineTo(2.0f, 10.5f) + verticalLineToRelative(7.4f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 20.0f) + lineTo(15.5f, 20.0f) + verticalLineToRelative(-3.5f) + horizontalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.25f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.25f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(14.0f, 6.5f) + close() + moveTo(15.5f, 6.5f) + lineTo(17.0f, 6.5f) + verticalLineToRelative(2.75f) + horizontalLineToRelative(-1.5f) + lineTo(15.5f, 6.5f) + close() + moveTo(18.5f, 6.5f) + horizontalLineToRelative(1.25f) + curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) + lineToRelative(0.01f, 0.16f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + lineTo(17.0f, 20.0f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(17.0f, 16.5f) + lineTo(17.0f, 15.0f) + horizontalLineToRelative(0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(17.0f, 13.5f) + lineTo(17.0f, 11.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(18.5f, 6.5f) + close() + moveTo(9.5f, 4.4f) + curveToRelative(-0.38f, -0.26f, -0.83f, -0.4f, -1.3f, -0.4f) + lineTo(4.1f, 4.0f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 6.26f) + lineTo(2.0f, 9.0f) + lineTo(8.31f, 9.0f) + curveToRelative(0.1f, -0.02f, 0.2f, -0.06f, 0.3f, -0.11f) + lineToRelative(0.08f, -0.06f) + lineToRelative(3.06f, -2.56f) + lineToRelative(-2.1f, -1.75f) + lineToRelative(-0.16f, -0.12f) + close() + } + } + return _folderZip!! + } + +private var _folderZip: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FontDecrease.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FontDecrease.kt new file mode 100644 index 00000000..683ac5f5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FontDecrease.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FontDecrease: ImageVector + get() { + if (_fontDecrease != null) { + return _fontDecrease!! + } + _fontDecrease = fluentIcon(name = "Filled.FontDecrease") { + fluentPath { + moveTo(16.62f, 2.22f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.24f, 1.56f) + lineToRelative(2.5f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.24f, 0.0f) + lineToRelative(2.5f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.24f, -1.56f) + lineToRelative(-1.88f, 1.5f) + lineToRelative(-1.88f, -1.5f) + close() + moveTo(12.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.92f, 0.6f) + lineToRelative(6.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.84f, 0.8f) + lineTo(15.2f, 15.0f) + lineTo(8.8f, 15.0f) + lineToRelative(-1.88f, 4.4f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.84f, -0.8f) + lineToRelative(6.0f, -14.0f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 12.0f, 4.0f) + close() + moveTo(12.0f, 7.54f) + lineTo(9.66f, 13.0f) + horizontalLineToRelative(4.68f) + lineTo(12.0f, 7.54f) + close() + } + } + return _fontDecrease!! + } + +private var _fontDecrease: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FontIncrease.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FontIncrease.kt new file mode 100644 index 00000000..135b7e95 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FontIncrease.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FontIncrease: ImageVector + get() { + if (_fontIncrease != null) { + return _fontIncrease!! + } + _fontIncrease = fluentIcon(name = "Filled.FontIncrease") { + fluentPath { + moveTo(16.62f, 5.78f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.24f, -1.56f) + lineToRelative(2.5f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.24f, 0.0f) + lineToRelative(2.5f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.24f, 1.56f) + lineToRelative(-1.88f, -1.5f) + lineToRelative(-1.88f, 1.5f) + close() + moveTo(12.92f, 4.61f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.84f, 0.0f) + lineToRelative(-6.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.84f, 0.78f) + lineTo(8.8f, 15.0f) + horizontalLineToRelative(6.4f) + lineToRelative(1.88f, 4.4f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.84f, -0.8f) + lineToRelative(-6.0f, -14.0f) + close() + moveTo(12.0f, 7.54f) + lineTo(14.34f, 13.0f) + lineTo(9.66f, 13.0f) + lineTo(12.0f, 7.54f) + close() + } + } + return _fontIncrease!! + } + +private var _fontIncrease: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FontSpaceTrackingIn.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FontSpaceTrackingIn.kt new file mode 100644 index 00000000..418b57b9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FontSpaceTrackingIn.kt @@ -0,0 +1,99 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FontSpaceTrackingIn: ImageVector + get() { + if (_fontSpaceTrackingIn != null) { + return _fontSpaceTrackingIn!! + } + _fontSpaceTrackingIn = fluentIcon(name = "Filled.FontSpaceTrackingIn") { + fluentPath { + moveToRelative(8.61f, 16.21f) + lineToRelative(0.1f, 0.08f) + lineToRelative(2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.32f) + lineToRelative(-0.08f, 0.1f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.5f, -1.32f) + lineToRelative(0.08f, -0.1f) + lineToRelative(0.3f, -0.3f) + lineTo(4.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + horizontalLineToRelative(3.7f) + lineToRelative(-0.29f, -0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.31f) + lineToRelative(0.08f, -0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) + close() + moveTo(15.39f, 16.21f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.22f, 0.0f) + lineToRelative(0.1f, 0.08f) + lineToRelative(0.08f, 0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.22f) + lineToRelative(-0.08f, 0.1f) + lineToRelative(-0.3f, 0.29f) + lineTo(20.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(16.4f, 20.0f) + lineToRelative(0.3f, 0.3f) + lineToRelative(0.08f, 0.09f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 1.4f) + lineToRelative(-0.1f, -0.08f) + lineToRelative(-2.0f, -2.0f) + lineToRelative(-0.08f, -0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.22f) + lineToRelative(0.08f, -0.1f) + lineToRelative(2.0f, -2.0f) + lineToRelative(0.1f, -0.08f) + close() + moveTo(9.12f, 2.45f) + lineToRelative(0.06f, 0.1f) + lineToRelative(0.06f, 0.12f) + lineToRelative(4.3f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.81f, 0.83f) + lineToRelative(-0.05f, -0.1f) + lineToRelative(-1.11f, -2.85f) + lineTo(6.04f, 11.55f) + lineToRelative(-1.1f, 2.84f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.2f, 0.6f) + lineToRelative(-0.1f, -0.03f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.6f, -1.18f) + lineToRelative(0.03f, -0.11f) + lineToRelative(4.3f, -11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.75f, -0.22f) + close() + moveTo(19.14f, 2.53f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.85f, 0.72f) + lineToRelative(-0.04f, 0.11f) + lineToRelative(-4.3f, 11.0f) + lineToRelative(-0.05f, 0.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.76f, 0.0f) + lineToRelative(-0.05f, -0.12f) + lineToRelative(-4.3f, -11.0f) + lineToRelative(-0.04f, -0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.5f, -1.14f) + lineToRelative(0.1f, -0.05f) + lineToRelative(0.11f, -0.04f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.14f, 0.5f) + lineToRelative(0.05f, 0.1f) + lineToRelative(3.37f, 8.63f) + lineToRelative(3.37f, -8.62f) + lineToRelative(0.05f, -0.11f) + close() + moveTo(8.3f, 5.77f) + lineTo(6.83f, 9.55f) + horizontalLineToRelative(2.95f) + lineTo(8.3f, 5.77f) + close() + } + } + return _fontSpaceTrackingIn!! + } + +private var _fontSpaceTrackingIn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FontSpaceTrackingOut.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FontSpaceTrackingOut.kt new file mode 100644 index 00000000..98dafbde --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FontSpaceTrackingOut.kt @@ -0,0 +1,93 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FontSpaceTrackingOut: ImageVector + get() { + if (_fontSpaceTrackingOut != null) { + return _fontSpaceTrackingOut!! + } + _fontSpaceTrackingOut = fluentIcon(name = "Filled.FontSpaceTrackingOut") { + fluentPath { + moveTo(4.39f, 16.21f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.22f, 0.0f) + lineToRelative(0.1f, 0.08f) + lineToRelative(0.08f, 0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.22f) + lineToRelative(-0.08f, 0.1f) + lineToRelative(-0.3f, 0.29f) + lineTo(18.6f, 18.0f) + lineToRelative(-0.3f, -0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.31f) + lineToRelative(0.08f, -0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) + lineToRelative(0.1f, 0.08f) + lineToRelative(2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.32f) + lineToRelative(-0.08f, 0.1f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.5f, -1.32f) + lineToRelative(0.08f, -0.1f) + lineToRelative(0.3f, -0.29f) + lineTo(5.4f, 20.0f) + lineToRelative(0.3f, 0.3f) + lineToRelative(0.08f, 0.09f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 1.4f) + lineToRelative(-0.1f, -0.08f) + lineToRelative(-2.0f, -2.0f) + lineToRelative(-0.08f, -0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.22f) + lineToRelative(0.08f, -0.1f) + lineToRelative(2.0f, -2.0f) + lineToRelative(0.1f, -0.08f) + close() + moveTo(8.12f, 2.41f) + lineTo(8.18f, 2.52f) + lineTo(8.24f, 2.64f) + lineTo(12.54f, 13.64f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.81f, 0.83f) + lineToRelative(-0.05f, -0.1f) + lineToRelative(-1.11f, -2.84f) + lineTo(5.04f, 11.53f) + lineToRelative(-1.1f, 2.83f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.2f, 0.6f) + lineToRelative(-0.1f, -0.03f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.6f, -1.18f) + lineToRelative(0.03f, -0.11f) + lineToRelative(4.3f, -11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.75f, -0.22f) + close() + moveTo(20.09f, 2.53f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.85f, 0.72f) + lineToRelative(-0.03f, 0.11f) + lineToRelative(-4.3f, 11.0f) + lineToRelative(-0.06f, 0.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.76f, 0.0f) + lineToRelative(-0.05f, -0.12f) + lineToRelative(-4.3f, -11.0f) + lineToRelative(-0.04f, -0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.5f, -1.14f) + lineToRelative(0.1f, -0.05f) + lineToRelative(0.11f, -0.04f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.14f, 0.5f) + lineToRelative(0.05f, 0.1f) + lineToRelative(3.37f, 8.63f) + lineToRelative(3.37f, -8.62f) + lineToRelative(0.05f, -0.11f) + close() + moveTo(7.3f, 5.74f) + lineTo(5.82f, 9.53f) + horizontalLineToRelative(2.96f) + lineTo(7.3f, 5.74f) + close() + } + } + return _fontSpaceTrackingOut!! + } + +private var _fontSpaceTrackingOut: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Food.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Food.kt new file mode 100644 index 00000000..7fb83772 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Food.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Food: ImageVector + get() { + if (_food != null) { + return _food!! + } + _food = fluentIcon(name = "Filled.Food") { + fluentPath { + moveTo(18.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(19.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(17.0f, 15.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + lineTo(15.0f, 8.0f) + curveToRelative(0.0f, -2.2f, 1.5f, -5.0f, 3.0f, -5.0f) + close() + moveTo(12.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(13.0f, 9.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -3.0f, 3.87f) + lineTo(10.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + verticalLineToRelative(-7.25f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -3.0f, -3.66f) + lineTo(5.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(7.0f, 9.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.0f, 1.73f) + lineTo(8.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(10.0f, 10.73f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.0f, -1.56f) + lineTo(11.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + } + } + return _food!! + } + +private var _food: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FoodApple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FoodApple.kt new file mode 100644 index 00000000..ffd08324 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FoodApple.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FoodApple: ImageVector + get() { + if (_foodApple != null) { + return _foodApple!! + } + _foodApple = fluentIcon(name = "Filled.FoodApple") { + fluentPath { + moveTo(5.47f, 3.42f) + arcTo(5.18f, 5.18f, 0.0f, false, false, 6.9f, 7.3f) + arcToRelative(5.12f, 5.12f, 0.0f, false, false, -3.66f, 4.22f) + curveToRelative(-0.33f, 2.35f, 0.15f, 4.75f, 1.37f, 6.8f) + lineToRelative(0.35f, 0.58f) + lineToRelative(0.04f, 0.07f) + lineToRelative(1.42f, 1.9f) + arcToRelative(3.46f, 3.46f, 0.0f, false, false, 5.28f, 0.34f) + arcToRelative(0.44f, 0.44f, 0.0f, false, true, 0.62f, 0.0f) + arcToRelative(3.46f, 3.46f, 0.0f, false, false, 5.28f, -0.34f) + lineToRelative(1.42f, -1.9f) + arcToRelative(0.74f, 0.74f, 0.0f, false, false, 0.04f, -0.07f) + lineToRelative(0.35f, -0.59f) + arcToRelative(10.46f, 10.46f, 0.0f, false, false, 1.37f, -6.8f) + arcToRelative(5.12f, 5.12f, 0.0f, false, false, -6.1f, -4.3f) + lineToRelative(-1.9f, 0.4f) + horizontalLineToRelative(-0.01f) + arcToRelative(8.7f, 8.7f, 0.0f, false, true, 0.39f, -2.34f) + curveToRelative(0.29f, -0.87f, 0.7f, -1.4f, 1.14f, -1.58f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.58f, -1.38f) + curveToRelative(-1.05f, 0.44f, -1.65f, 1.48f, -1.98f, 2.48f) + lineToRelative(-0.05f, 0.15f) + arcToRelative(5.19f, 5.19f, 0.0f, false, false, -4.92f, -2.8f) + curveToRelative(-0.7f, 0.04f, -1.25f, 0.59f, -1.29f, 1.28f) + close() + moveTo(8.4f, 11.23f) + curveToRelative(-0.35f, 0.07f, -0.67f, 0.32f, -0.87f, 0.78f) + curveToRelative(-0.2f, 0.48f, -0.27f, 1.18f, -0.05f, 2.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.46f, 0.36f) + arcToRelative(4.74f, 4.74f, 0.0f, false, true, 0.13f, -3.0f) + arcTo(2.7f, 2.7f, 0.0f, false, true, 8.1f, 9.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.3f, 1.47f) + close() + } + } + return _foodApple!! + } + +private var _foodApple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FoodCake.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FoodCake.kt new file mode 100644 index 00000000..aaffc730 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FoodCake.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FoodCake: ImageVector + get() { + if (_foodCake != null) { + return _foodCake!! + } + _foodCake = fluentIcon(name = "Filled.FoodCake") { + fluentPath { + moveTo(12.0f, 7.0f) + curveToRelative(1.71f, 0.0f, 2.0f, -1.34f, 2.0f, -2.44f) + curveToRelative(0.0f, -1.1f, -0.74f, -3.06f, -2.0f, -3.06f) + reflectiveCurveToRelative(-2.0f, 1.95f, -2.0f, 3.06f) + curveToRelative(0.0f, 1.1f, 0.29f, 2.44f, 2.0f, 2.44f) + close() + moveTo(3.5f, 10.25f) + curveTo(3.5f, 9.01f, 4.5f, 8.0f, 5.75f, 8.0f) + horizontalLineToRelative(12.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(0.88f) + lineToRelative(-3.63f, 2.72f) + curveToRelative(-0.4f, 0.3f, -0.95f, 0.33f, -1.39f, 0.08f) + lineToRelative(-2.04f, -1.2f) + curveToRelative(-0.9f, -0.53f, -2.0f, -0.5f, -2.88f, 0.06f) + lineTo(8.8f, 13.92f) + curveToRelative(-0.41f, 0.27f, -0.94f, 0.27f, -1.35f, 0.0f) + lineTo(3.5f, 11.42f) + verticalLineToRelative(-1.16f) + close() + moveTo(3.5f, 13.19f) + verticalLineToRelative(5.31f) + horizontalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.75f) + lineTo(20.5f, 13.0f) + lineToRelative(-2.73f, 2.05f) + curveToRelative(-0.9f, 0.67f, -2.1f, 0.73f, -3.05f, 0.17f) + lineToRelative(-2.04f, -1.2f) + curveToRelative(-0.4f, -0.24f, -0.91f, -0.23f, -1.3f, 0.03f) + lineTo(9.6f, 15.18f) + curveToRelative(-0.9f, 0.59f, -2.06f, 0.59f, -2.97f, 0.01f) + lineToRelative(-3.14f, -2.0f) + close() + } + } + return _foodCake!! + } + +private var _foodCake: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FoodCarrot.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FoodCarrot.kt new file mode 100644 index 00000000..36ab2d3e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FoodCarrot.kt @@ -0,0 +1,39 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FoodCarrot: ImageVector + get() { + if (_foodCarrot != null) { + return _foodCarrot!! + } + _foodCarrot = fluentIcon(name = "Filled.FoodCarrot") { + fluentPath { + moveTo(17.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(4.01f) + arcToRelative(4.56f, 4.56f, 0.0f, false, false, -6.3f, 1.22f) + lineToRelative(-7.35f, 10.8f) + curveToRelative(-0.55f, 0.82f, -0.45f, 1.92f, 0.26f, 2.61f) + curveToRelative(0.71f, 0.71f, 1.84f, 0.8f, 2.67f, 0.23f) + lineToRelative(10.78f, -7.46f) + arcTo(4.45f, 4.45f, 0.0f, false, false, 17.24f, 8.0f) + horizontalLineToRelative(4.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.69f) + lineToRelative(3.22f, -3.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineTo(17.5f, 5.44f) + verticalLineTo(2.75f) + close() + } + } + return _foodCarrot!! + } + +private var _foodCarrot: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FoodChickenLeg.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FoodChickenLeg.kt new file mode 100644 index 00000000..4540923e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FoodChickenLeg.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FoodChickenLeg: ImageVector + get() { + if (_foodChickenLeg != null) { + return _foodChickenLeg!! + } + _foodChickenLeg = fluentIcon(name = "Filled.FoodChickenLeg") { + fluentPath { + moveTo(22.0f, 8.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, -11.9f, -1.1f) + arcToRelative(15.12f, 15.12f, 0.0f, false, true, -1.36f, 3.3f) + lineToRelative(-2.52f, 2.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.28f, 1.24f) + lineTo(4.46f, 16.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -1.42f, 4.53f) + curveToRelative(0.17f, 0.12f, 0.31f, 0.26f, 0.43f, 0.43f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 8.0f, 19.53f) + lineToRelative(2.04f, -2.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.24f, 0.29f) + lineToRelative(2.52f, -2.52f) + curveToRelative(0.48f, -0.29f, 1.48f, -0.8f, 3.32f, -1.36f) + arcTo(6.0f, 6.0f, 0.0f, false, false, 22.0f, 8.0f) + close() + moveTo(8.58f, 14.0f) + horizontalLineTo(10.0f) + verticalLineToRelative(1.41f) + lineToRelative(-3.12f, 3.12f) + curveToRelative(-0.29f, 0.3f, -0.38f, 0.67f, -0.38f, 0.97f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.81f, 0.58f) + curveToRelative(-0.21f, -0.3f, -0.48f, -0.55f, -0.77f, -0.77f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.58f, -1.81f) + curveToRelative(0.3f, 0.0f, 0.67f, -0.09f, 0.96f, -0.38f) + lineTo(8.58f, 14.0f) + close() + } + } + return _foodChickenLeg!! + } + +private var _foodChickenLeg: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FoodEgg.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FoodEgg.kt new file mode 100644 index 00000000..d8421057 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FoodEgg.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FoodEgg: ImageVector + get() { + if (_foodEgg != null) { + return _foodEgg!! + } + _foodEgg = fluentIcon(name = "Filled.FoodEgg") { + fluentPath { + moveTo(11.5f, 12.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + curveTo(11.01f, 10.0f, 10.0f, 11.0f, 10.0f, 12.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + close() + moveTo(13.5f, 2.0f) + arcToRelative(8.38f, 8.38f, 0.0f, false, false, -7.29f, 4.5f) + curveToRelative(-0.24f, 0.43f, -0.6f, 0.8f, -1.05f, 1.1f) + arcTo(7.38f, 7.38f, 0.0f, false, false, 2.0f, 13.76f) + curveTo(2.0f, 17.7f, 4.97f, 21.0f, 8.75f, 21.0f) + curveToRelative(0.32f, 0.0f, 0.64f, -0.02f, 0.95f, -0.07f) + curveToRelative(0.87f, -0.13f, 1.8f, 0.0f, 2.57f, 0.38f) + arcTo(6.75f, 6.75f, 0.0f, false, false, 21.9f, 14.0f) + arcToRelative(3.14f, 3.14f, 0.0f, false, true, -0.03f, -1.07f) + curveToRelative(0.1f, -0.54f, 0.14f, -1.1f, 0.14f, -1.66f) + curveTo(22.0f, 6.22f, 18.26f, 2.0f, 13.5f, 2.0f) + close() + moveTo(17.25f, 12.5f) + arcToRelative(4.75f, 4.75f, 0.0f, true, true, -9.5f, 0.0f) + arcToRelative(4.75f, 4.75f, 0.0f, false, true, 9.5f, 0.0f) + close() + } + } + return _foodEgg!! + } + +private var _foodEgg: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FoodFish.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FoodFish.kt new file mode 100644 index 00000000..54fd6f19 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FoodFish.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FoodFish: ImageVector + get() { + if (_foodFish != null) { + return _foodFish!! + } + _foodFish = fluentIcon(name = "Filled.FoodFish") { + fluentPath { + moveTo(10.36f, 4.1f) + curveToRelative(-1.0f, 1.0f, -1.58f, 2.34f, -1.91f, 3.68f) + arcTo(16.66f, 16.66f, 0.0f, false, false, 8.0f, 11.73f) + curveToRelative(0.0f, 0.17f, -0.14f, 0.32f, -0.32f, 0.32f) + curveToRelative(-1.77f, 0.0f, -4.01f, 0.22f, -5.83f, 1.09f) + curveToRelative(-0.68f, 0.32f, -0.97f, 1.0f, -0.82f, 1.63f) + curveToRelative(0.13f, 0.6f, 0.61f, 1.09f, 1.26f, 1.25f) + curveToRelative(0.8f, 0.19f, 1.72f, 0.44f, 2.52f, 0.72f) + curveToRelative(0.4f, 0.15f, 0.76f, 0.3f, 1.05f, 0.44f) + curveToRelative(0.3f, 0.15f, 0.49f, 0.28f, 0.58f, 0.37f) + curveToRelative(0.1f, 0.1f, 0.22f, 0.28f, 0.37f, 0.58f) + curveToRelative(0.15f, 0.29f, 0.3f, 0.65f, 0.44f, 1.05f) + curveToRelative(0.28f, 0.8f, 0.53f, 1.72f, 0.72f, 2.52f) + curveToRelative(0.16f, 0.65f, 0.65f, 1.13f, 1.25f, 1.26f) + curveToRelative(0.64f, 0.14f, 1.3f, -0.14f, 1.63f, -0.82f) + curveToRelative(0.87f, -1.82f, 1.08f, -4.06f, 1.1f, -5.82f) + curveToRelative(0.0f, -0.18f, 0.14f, -0.33f, 0.32f, -0.33f) + curveToRelative(1.2f, 0.0f, 2.6f, -0.1f, 3.95f, -0.43f) + arcToRelative(7.78f, 7.78f, 0.0f, false, false, 3.67f, -1.91f) + arcToRelative(7.4f, 7.4f, 0.0f, false, false, 1.92f, -4.06f) + curveToRelative(0.25f, -1.45f, 0.2f, -2.92f, 0.1f, -4.09f) + arcToRelative(3.77f, 3.77f, 0.0f, false, false, -3.41f, -3.4f) + arcToRelative(15.68f, 15.68f, 0.0f, false, false, -4.1f, 0.09f) + arcToRelative(7.4f, 7.4f, 0.0f, false, false, -4.05f, 1.91f) + close() + moveTo(16.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + } + } + return _foodFish!! + } + +private var _foodFish: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FoodGrains.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FoodGrains.kt new file mode 100644 index 00000000..0085a353 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FoodGrains.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FoodGrains: ImageVector + get() { + if (_foodGrains != null) { + return _foodGrains!! + } + _foodGrains = fluentIcon(name = "Filled.FoodGrains") { + fluentPath { + moveTo(12.61f, 2.29f) + arcToRelative(0.93f, 0.93f, 0.0f, false, false, -1.22f, 0.0f) + arcTo(7.2f, 7.2f, 0.0f, false, false, 8.9f, 7.57f) + curveToRelative(0.0f, 0.19f, 0.11f, 0.36f, 0.28f, 0.45f) + arcToRelative(9.06f, 9.06f, 0.0f, false, true, 2.4f, 1.83f) + curveToRelative(0.23f, 0.24f, 0.62f, 0.24f, 0.84f, 0.0f) + arcToRelative(9.04f, 9.04f, 0.0f, false, true, 2.4f, -1.83f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.28f, -0.45f) + arcToRelative(7.2f, 7.2f, 0.0f, false, false, -2.49f, -5.28f) + close() + moveTo(12.01f, 18.04f) + arcToRelative(8.16f, 8.16f, 0.0f, false, true, 8.16f, -4.06f) + curveToRelative(0.49f, 0.07f, 0.85f, 0.5f, 0.81f, 1.0f) + arcTo(7.6f, 7.6f, 0.0f, false, true, 13.41f, 22.0f) + lineTo(10.6f, 22.0f) + arcToRelative(7.6f, 7.6f, 0.0f, false, true, -7.57f, -7.01f) + arcToRelative(0.94f, 0.94f, 0.0f, false, true, 0.81f, -1.0f) + arcTo(8.16f, 8.16f, 0.0f, false, true, 12.0f, 18.03f) + close() + moveTo(19.65f, 12.93f) + arcToRelative(9.9f, 9.9f, 0.0f, false, false, -5.13f, 1.16f) + arcToRelative(8.61f, 8.61f, 0.0f, false, false, -2.32f, 1.78f) + curveToRelative(-0.1f, 0.11f, -0.3f, 0.11f, -0.4f, 0.0f) + arcToRelative(8.6f, 8.6f, 0.0f, false, false, -2.32f, -1.78f) + arcToRelative(9.9f, 9.9f, 0.0f, false, false, -5.11f, -1.16f) + arcToRelative(8.66f, 8.66f, 0.0f, false, true, -1.35f, -3.8f) + arcToRelative(0.96f, 0.96f, 0.0f, false, true, 0.87f, -1.04f) + curveToRelative(2.46f, -0.2f, 4.5f, 0.28f, 6.35f, 1.84f) + curveToRelative(0.82f, 0.7f, 1.38f, 1.54f, 1.76f, 2.26f) + curveToRelative(0.38f, -0.72f, 0.94f, -1.56f, 1.77f, -2.26f) + curveToRelative(1.84f, -1.56f, 3.9f, -2.04f, 6.35f, -1.84f) + curveToRelative(0.53f, 0.04f, 0.93f, 0.5f, 0.88f, 1.04f) + arcToRelative(8.66f, 8.66f, 0.0f, false, true, -1.35f, 3.8f) + close() + } + } + return _foodGrains!! + } + +private var _foodGrains: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FoodPizza.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FoodPizza.kt new file mode 100644 index 00000000..bbca92d3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FoodPizza.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FoodPizza: ImageVector + get() { + if (_foodPizza != null) { + return _foodPizza!! + } + _foodPizza = fluentIcon(name = "Filled.FoodPizza") { + fluentPath { + moveTo(5.0f, 4.66f) + arcToRelative(2.6f, 2.6f, 0.0f, false, true, 2.82f, -2.65f) + arcToRelative(20.78f, 20.78f, 0.0f, false, true, 13.45f, 6.83f) + arcToRelative(2.6f, 2.6f, 0.0f, false, true, -0.48f, 3.85f) + lineToRelative(-0.43f, 0.3f) + lineToRelative(-0.36f, -0.54f) + arcTo(17.55f, 17.55f, 0.0f, false, false, 5.74f, 5.16f) + lineTo(5.0f, 5.16f) + verticalLineToRelative(-0.5f) + close() + moveTo(18.77f, 13.31f) + lineTo(19.15f, 13.87f) + lineTo(15.2f, 16.74f) + lineTo(15.0f, 16.89f) + verticalLineToRelative(2.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + verticalLineToRelative(-0.06f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.06f) + verticalLineToRelative(1.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.1f) + lineToRelative(-1.43f, 1.04f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 5.0f, 19.81f) + lineTo(5.0f, 6.67f) + horizontalLineToRelative(0.75f) + curveToRelative(5.36f, 0.0f, 10.1f, 2.61f, 13.02f, 6.64f) + close() + moveTo(9.0f, 10.99f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(13.0f, 13.99f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(9.0f, 16.99f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + } + } + return _foodPizza!! + } + +private var _foodPizza: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FoodToast.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FoodToast.kt new file mode 100644 index 00000000..58cd2765 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FoodToast.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FoodToast: ImageVector + get() { + if (_foodToast != null) { + return _foodToast!! + } + _foodToast = fluentIcon(name = "Filled.FoodToast") { + fluentPath { + moveTo(8.25f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-4.5f) + close() + moveTo(9.0f, 13.5f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(3.0f) + horizontalLineTo(9.0f) + close() + moveTo(2.0f, 7.75f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 6.75f, 3.0f) + horizontalLineToRelative(10.5f) + arcToRelative(4.75f, 4.75f, 0.0f, false, true, 3.5f, 7.96f) + verticalLineToRelative(7.79f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-13.0f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-7.79f) + arcTo(4.74f, 4.74f, 0.0f, false, true, 2.0f, 7.75f) + close() + moveTo(6.75f, 4.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -2.23f, 5.61f) + curveToRelative(0.15f, 0.14f, 0.23f, 0.34f, 0.23f, 0.54f) + verticalLineToRelative(8.1f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(10.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-7.7f) + curveToRelative(0.0f, -0.24f, 0.12f, -0.47f, 0.33f, -0.61f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -1.83f, -5.94f) + horizontalLineToRelative(-8.0f) + close() + } + } + return _foodToast!! + } + +private var _foodToast: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Form.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Form.kt new file mode 100644 index 00000000..1fb2daa0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Form.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Form: ImageVector + get() { + if (_form != null) { + return _form!! + } + _form = fluentIcon(name = "Filled.Form") { + fluentPath { + moveTo(8.25f, 10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(7.5f, 16.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(6.0f, 10.75f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 4.5f, 0.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -4.5f, 0.0f) + close() + moveTo(8.25f, 14.0f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, 4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, -4.5f) + close() + moveTo(12.0f, 10.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(12.75f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + close() + moveTo(6.0f, 6.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(6.75f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + } + } + return _form!! + } + +private var _form: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FormMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FormMultiple.kt new file mode 100644 index 00000000..41627437 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FormMultiple.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FormMultiple: ImageVector + get() { + if (_formMultiple != null) { + return _formMultiple!! + } + _formMultiple = fluentIcon(name = "Filled.FormMultiple") { + fluentPath { + moveTo(7.25f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + } + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(9.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-9.0f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-9.0f) + close() + moveTo(5.0f, 12.25f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) + close() + moveTo(10.5f, 12.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(5.0f, 7.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-10.0f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 5.0f, 7.75f) + close() + } + fluentPath { + moveTo(8.75f, 21.0f) + curveToRelative(-1.15f, 0.0f, -2.16f, -0.6f, -2.74f, -1.5f) + horizontalLineToRelative(9.74f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 3.75f, -3.75f) + verticalLineTo(6.01f) + curveToRelative(0.9f, 0.58f, 1.5f, 1.59f, 1.5f, 2.74f) + verticalLineToRelative(7.0f) + curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) + horizontalLineToRelative(-7.0f) + close() + } + } + return _formMultiple!! + } + +private var _formMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FormNew.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FormNew.kt new file mode 100644 index 00000000..7555a111 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FormNew.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FormNew: ImageVector + get() { + if (_formNew != null) { + return _formNew!! + } + _formNew = fluentIcon(name = "Filled.FormNew") { + fluentPath { + moveTo(7.5f, 10.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(8.25f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(5.77f) + arcToRelative(6.46f, 6.46f, 0.0f, false, false, -3.05f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.7f, -1.02f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(15.0f, 11.5f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -2.98f, 9.5f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(6.0f, 10.75f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 4.5f, 0.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -4.5f, 0.0f) + close() + moveTo(8.25f, 14.0f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, 4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, -4.5f) + close() + moveTo(6.0f, 6.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(6.75f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _formNew!! + } + +private var _formNew: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fps1.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fps1.kt new file mode 100644 index 00000000..b8e65fe9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fps1.kt @@ -0,0 +1,120 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Fps1: ImageVector + get() { + if (_fps1 != null) { + return _fps1!! + } + _fps1 = fluentIcon(name = "Filled.Fps1") { + fluentPath { + moveTo(5.26f, 3.03f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.76f, 0.97f) + verticalLineToRelative(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + lineTo(4.02f, 6.5f) + lineToRelative(-0.47f, 0.33f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.1f, -1.66f) + arcToRelative(6.55f, 6.55f, 0.0f, false, false, 1.69f, -1.63f) + verticalLineToRelative(-0.01f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.12f, -0.5f) + close() + moveTo(18.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 6.0f, 0.0f) + lineTo(21.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + close() + moveTo(17.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + lineTo(17.0f, 6.0f) + close() + moveTo(4.0f, 15.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(5.5f, 16.5f) + lineTo(5.5f, 18.0f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(5.5f, 19.5f) + verticalLineToRelative(1.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-5.48f) + close() + moveTo(10.25f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(11.0f, 19.5f) + horizontalLineToRelative(0.75f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, -4.5f) + horizontalLineToRelative(-1.5f) + close() + moveTo(11.75f, 18.0f) + lineTo(11.0f, 18.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(15.25f, 17.12f) + curveToRelative(0.0f, -1.17f, 0.95f, -2.12f, 2.13f, -2.12f) + lineTo(18.0f, 15.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + horizontalLineToRelative(-0.63f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, 1.25f) + horizontalLineToRelative(0.5f) + arcToRelative(2.13f, 2.13f, 0.0f, false, true, 0.0f, 4.25f) + horizontalLineToRelative(-0.62f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(0.63f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) + horizontalLineToRelative(-0.5f) + arcToRelative(2.13f, 2.13f, 0.0f, false, true, -2.13f, -2.13f) + close() + moveTo(8.13f, 6.19f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.29f, -0.54f) + lineToRelative(0.03f, -0.05f) + curveToRelative(0.04f, -0.06f, 0.1f, -0.14f, 0.2f, -0.22f) + curveToRelative(0.16f, -0.16f, 0.49f, -0.37f, 1.1f, -0.37f) + curveToRelative(0.42f, 0.0f, 0.75f, 0.13f, 0.94f, 0.3f) + curveToRelative(0.19f, 0.15f, 0.31f, 0.37f, 0.31f, 0.7f) + curveToRelative(0.0f, 0.55f, -0.17f, 0.86f, -0.42f, 1.12f) + curveToRelative(-0.3f, 0.32f, -0.73f, 0.56f, -1.33f, 0.9f) + arcToRelative(6.9f, 6.9f, 0.0f, false, false, -1.8f, 1.33f) + arcTo(3.82f, 3.82f, 0.0f, false, false, 7.5f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + lineTo(13.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(9.72f, 11.0f) + curveToRelative(0.07f, -0.12f, 0.15f, -0.22f, 0.23f, -0.32f) + curveToRelative(0.3f, -0.33f, 0.72f, -0.6f, 1.3f, -0.92f) + lineToRelative(0.1f, -0.06f) + curveToRelative(0.51f, -0.3f, 1.16f, -0.66f, 1.67f, -1.19f) + curveTo(13.6f, 7.9f, 14.0f, 7.1f, 14.0f, 6.0f) + curveToRelative(0.0f, -0.91f, -0.38f, -1.7f, -1.01f, -2.23f) + arcTo(3.44f, 3.44f, 0.0f, false, false, 10.75f, 3.0f) + curveToRelative(-1.14f, 0.0f, -1.94f, 0.42f, -2.45f, 0.89f) + arcToRelative(3.11f, 3.11f, 0.0f, false, false, -0.73f, 0.99f) + reflectiveCurveToRelative(-0.2f, 0.52f, 0.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.56f, 1.3f) + close() + } + } + return _fps1!! + } + +private var _fps1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fps120.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fps120.kt new file mode 100644 index 00000000..3e5bca45 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fps120.kt @@ -0,0 +1,120 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Fps120: ImageVector + get() { + if (_fps120 != null) { + return _fps120!! + } + _fps120 = fluentIcon(name = "Filled.Fps120") { + fluentPath { + moveTo(5.26f, 3.03f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.76f, 0.97f) + verticalLineToRelative(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + lineTo(4.02f, 6.5f) + lineToRelative(-0.47f, 0.33f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.1f, -1.66f) + arcToRelative(6.55f, 6.55f, 0.0f, false, false, 1.69f, -1.63f) + verticalLineToRelative(-0.01f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.12f, -0.5f) + close() + moveTo(18.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 6.0f, 0.0f) + lineTo(21.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + close() + moveTo(17.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + lineTo(17.0f, 6.0f) + close() + moveTo(4.0f, 15.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(5.5f, 16.5f) + lineTo(5.5f, 18.0f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(5.5f, 19.5f) + verticalLineToRelative(1.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-5.48f) + close() + moveTo(10.25f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(11.0f, 19.5f) + horizontalLineToRelative(0.75f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, -4.5f) + horizontalLineToRelative(-1.5f) + close() + moveTo(11.75f, 18.0f) + lineTo(11.0f, 18.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(15.25f, 17.12f) + curveToRelative(0.0f, -1.17f, 0.95f, -2.12f, 2.13f, -2.12f) + lineTo(18.0f, 15.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + horizontalLineToRelative(-0.63f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, 1.25f) + horizontalLineToRelative(0.5f) + arcToRelative(2.13f, 2.13f, 0.0f, false, true, 0.0f, 4.25f) + horizontalLineToRelative(-0.62f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(0.63f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) + horizontalLineToRelative(-0.5f) + arcToRelative(2.13f, 2.13f, 0.0f, false, true, -2.13f, -2.13f) + close() + moveTo(8.13f, 6.19f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.29f, -0.54f) + lineToRelative(0.03f, -0.05f) + curveToRelative(0.04f, -0.06f, 0.1f, -0.14f, 0.2f, -0.22f) + curveToRelative(0.16f, -0.16f, 0.49f, -0.37f, 1.1f, -0.37f) + curveToRelative(0.42f, 0.0f, 0.75f, 0.13f, 0.94f, 0.3f) + curveToRelative(0.19f, 0.15f, 0.31f, 0.37f, 0.31f, 0.7f) + curveToRelative(0.0f, 0.55f, -0.17f, 0.86f, -0.42f, 1.12f) + curveToRelative(-0.3f, 0.32f, -0.73f, 0.56f, -1.33f, 0.9f) + arcToRelative(6.9f, 6.9f, 0.0f, false, false, -1.8f, 1.33f) + arcTo(3.82f, 3.82f, 0.0f, false, false, 7.5f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + lineTo(13.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(9.72f, 11.0f) + curveToRelative(0.07f, -0.12f, 0.15f, -0.22f, 0.23f, -0.32f) + curveToRelative(0.3f, -0.33f, 0.72f, -0.6f, 1.3f, -0.92f) + lineToRelative(0.1f, -0.06f) + curveToRelative(0.51f, -0.3f, 1.16f, -0.66f, 1.67f, -1.19f) + curveTo(13.6f, 7.9f, 14.0f, 7.1f, 14.0f, 6.0f) + curveToRelative(0.0f, -0.91f, -0.38f, -1.7f, -1.01f, -2.23f) + arcTo(3.44f, 3.44f, 0.0f, false, false, 10.75f, 3.0f) + curveToRelative(-1.14f, 0.0f, -1.94f, 0.42f, -2.45f, 0.89f) + arcToRelative(3.11f, 3.11f, 0.0f, false, false, -0.73f, 0.99f) + reflectiveCurveToRelative(-0.2f, 0.52f, 0.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.56f, 1.3f) + close() + } + } + return _fps120!! + } + +private var _fps120: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fps2.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fps2.kt new file mode 100644 index 00000000..2fb9cb89 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fps2.kt @@ -0,0 +1,131 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Fps2: ImageVector + get() { + if (_fps2 != null) { + return _fps2!! + } + _fps2 = fluentIcon(name = "Filled.Fps2") { + fluentPath { + moveTo(2.99f, 4.38f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.48f, -0.25f) + verticalLineToRelative(-0.05f) + arcToRelative(1.92f, 1.92f, 0.0f, false, true, 0.1f, -0.32f) + arcTo(2.7f, 2.7f, 0.0f, false, true, 4.25f, 2.0f) + curveToRelative(0.96f, 0.0f, 1.73f, 0.38f, 2.22f, 1.0f) + curveToRelative(0.48f, 0.61f, 0.65f, 1.4f, 0.52f, 2.13f) + curveToRelative(-0.14f, 0.81f, -0.6f, 1.3f, -1.15f, 1.63f) + arcToRelative(6.71f, 6.71f, 0.0f, false, true, -1.48f, 0.59f) + curveToRelative(-0.45f, 0.16f, -0.76f, 0.33f, -0.98f, 0.57f) + curveToRelative(-0.11f, 0.13f, -0.22f, 0.3f, -0.3f, 0.58f) + horizontalLineToRelative(3.17f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + curveToRelative(0.0f, -1.01f, 0.27f, -1.77f, 0.76f, -2.33f) + curveToRelative(0.48f, -0.53f, 1.09f, -0.8f, 1.59f, -0.98f) + lineToRelative(0.45f, -0.16f) + curveToRelative(0.32f, -0.1f, 0.56f, -0.2f, 0.79f, -0.32f) + curveToRelative(0.24f, -0.14f, 0.37f, -0.3f, 0.42f, -0.59f) + arcToRelative(1.2f, 1.2f, 0.0f, false, false, -0.22f, -0.94f) + curveToRelative(-0.18f, -0.23f, -0.5f, -0.43f, -1.04f, -0.43f) + curveToRelative(-0.62f, 0.0f, -0.9f, 0.25f, -1.06f, 0.45f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -0.2f, 0.43f) + close() + moveTo(2.99f, 4.38f) + close() + moveTo(2.99f, 4.38f) + close() + moveTo(16.5f, 2.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 14.0f, 4.5f) + verticalLineToRelative(3.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 5.0f, 0.0f) + verticalLineToRelative(-3.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 16.5f, 2.0f) + close() + moveTo(17.5f, 7.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(3.0f) + close() + moveTo(3.5f, 12.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + lineTo(4.0f, 16.0f) + horizontalLineToRelative(1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + lineTo(4.0f, 15.0f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + horizontalLineToRelative(-3.0f) + close() + moveTo(8.5f, 12.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + lineTo(9.0f, 16.0f) + horizontalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) + lineTo(8.5f, 12.0f) + close() + moveTo(9.0f, 15.0f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(9.0f, 15.0f) + close() + moveTo(13.0f, 13.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(0.76f) + curveToRelative(0.82f, 0.0f, 1.49f, 0.67f, 1.49f, 1.49f) + verticalLineToRelative(0.01f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-0.01f) + arcToRelative(0.49f, 0.49f, 0.0f, false, false, -0.49f, -0.49f) + horizontalLineToRelative(-0.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.5f) + arcToRelative(1.75f, 1.75f, 0.0f, true, true, 0.0f, 3.5f) + horizontalLineToRelative(-0.76f) + curveToRelative(-0.82f, 0.0f, -1.49f, -0.67f, -1.49f, -1.49f) + verticalLineToRelative(-0.01f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + verticalLineToRelative(0.01f) + curveToRelative(0.0f, 0.27f, 0.22f, 0.49f, 0.49f, 0.49f) + horizontalLineToRelative(0.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + close() + moveTo(8.75f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(9.5f, 5.5f) + lineTo(11.0f, 5.5f) + lineTo(11.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(12.5f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(11.0f, 7.0f) + lineTo(8.75f, 7.0f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 6.25f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(2.99f, 4.38f) + close() + } + } + return _fps2!! + } + +private var _fps2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fps240.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fps240.kt new file mode 100644 index 00000000..7d5fb5d5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fps240.kt @@ -0,0 +1,124 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Fps240: ImageVector + get() { + if (_fps240 != null) { + return _fps240!! + } + _fps240 = fluentIcon(name = "Filled.Fps240") { + fluentPath { + moveTo(2.15f, 6.18f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.29f, -0.54f) + lineToRelative(0.03f, -0.05f) + curveToRelative(0.03f, -0.06f, 0.1f, -0.14f, 0.19f, -0.23f) + curveToRelative(0.17f, -0.15f, 0.5f, -0.36f, 1.1f, -0.36f) + curveToRelative(0.43f, 0.0f, 0.75f, 0.13f, 0.95f, 0.3f) + curveToRelative(0.18f, 0.15f, 0.3f, 0.37f, 0.3f, 0.7f) + curveToRelative(0.0f, 0.55f, -0.17f, 0.86f, -0.42f, 1.12f) + curveToRelative(-0.3f, 0.32f, -0.72f, 0.56f, -1.32f, 0.9f) + arcToRelative(6.9f, 6.9f, 0.0f, false, false, -1.8f, 1.33f) + arcTo(3.83f, 3.83f, 0.0f, false, false, 1.53f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + lineTo(3.74f, 11.0f) + curveToRelative(0.07f, -0.12f, 0.14f, -0.22f, 0.23f, -0.32f) + curveToRelative(0.3f, -0.33f, 0.71f, -0.6f, 1.3f, -0.92f) + lineToRelative(0.1f, -0.06f) + curveToRelative(0.5f, -0.3f, 1.15f, -0.66f, 1.66f, -1.19f) + curveToRelative(0.6f, -0.61f, 0.98f, -1.42f, 0.98f, -2.51f) + curveToRelative(0.0f, -0.91f, -0.38f, -1.7f, -1.0f, -2.23f) + arcTo(3.44f, 3.44f, 0.0f, false, false, 4.76f, 3.0f) + curveToRelative(-1.14f, 0.0f, -1.94f, 0.42f, -2.45f, 0.89f) + arcToRelative(3.11f, 3.11f, 0.0f, false, false, -0.72f, 0.97f) + verticalLineToRelative(0.01f) + reflectiveCurveToRelative(-0.22f, 0.53f, 0.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.55f, 1.3f) + close() + moveTo(16.0f, 6.0f) + arcTo(3.0f, 3.0f, 0.0f, true, true, 22.0f, 6.0f) + verticalLineToRelative(4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) + lineTo(16.0f, 6.0f) + close() + moveTo(19.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(20.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + moveTo(4.76f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(5.48f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) + lineTo(5.51f, 19.5f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(5.52f, 18.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(2.24f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.0f) + close() + moveTo(9.5f, 15.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, 4.5f) + horizontalLineToRelative(-0.75f) + verticalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + verticalLineToRelative(-5.5f) + close() + moveTo(11.0f, 18.0f) + horizontalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.75f) + lineTo(11.0f, 18.0f) + close() + moveTo(17.37f, 15.0f) + arcToRelative(2.12f, 2.12f, 0.0f, false, false, 0.0f, 4.25f) + horizontalLineToRelative(0.5f) + arcToRelative(0.62f, 0.62f, 0.0f, false, true, 0.0f, 1.25f) + horizontalLineToRelative(-0.63f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(0.63f) + arcToRelative(2.12f, 2.12f, 0.0f, false, false, 0.0f, -4.25f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.62f, 0.62f, 0.0f, false, true, 0.0f, -1.25f) + lineTo(18.0f, 16.5f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + horizontalLineToRelative(-0.62f) + close() + moveTo(15.01f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + lineToRelative(0.02f, 3.0f) + lineTo(11.0f, 7.0f) + lineTo(11.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(3.02f) + verticalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(15.02f, 7.4f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -0.09f) + lineTo(15.0f, 4.0f) + close() + } + } + return _fps240!! + } + +private var _fps240: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fps30.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fps30.kt new file mode 100644 index 00000000..d8c600de --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fps30.kt @@ -0,0 +1,109 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Fps30: ImageVector + get() { + if (_fps30 != null) { + return _fps30!! + } + _fps30 = fluentIcon(name = "Filled.Fps30") { + fluentPath { + moveTo(11.75f, 15.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, 4.5f) + lineTo(11.0f, 19.5f) + verticalLineToRelative(1.75f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-5.5f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(1.5f) + close() + moveTo(11.75f, 16.5f) + lineTo(11.0f, 16.5f) + lineTo(11.0f, 18.0f) + horizontalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(18.0f, 15.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(18.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.5f) + horizontalLineToRelative(-0.72f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, -0.09f, 1.24f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(0.5f) + arcToRelative(2.13f, 2.13f, 0.0f, false, true, 0.15f, 4.24f) + lineToRelative(-0.16f, 0.01f) + horizontalLineToRelative(-0.62f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 0.25f, 0.18f, 0.45f, 0.41f, 0.5f) + horizontalLineToRelative(0.72f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.09f, -1.24f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-0.5f) + arcToRelative(2.13f, 2.13f, 0.0f, false, true, -0.15f, -4.24f) + lineToRelative(0.16f, -0.01f) + lineTo(18.0f, 15.0f) + close() + moveTo(7.75f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(5.5f, 16.5f) + lineTo(5.5f, 18.0f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(5.5f, 19.5f) + verticalLineToRelative(1.73f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-5.48f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(3.0f) + close() + moveTo(15.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) + lineTo(18.0f, 10.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.18f) + lineTo(12.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + close() + moveTo(15.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 0.88f) + lineTo(14.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.12f) + lineTo(16.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + moveTo(8.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -0.5f, -1.86f) + lineToRelative(-0.12f, 0.06f) + curveToRelative(-0.24f, 0.15f, -0.48f, 0.3f, -0.76f, 0.3f) + curveToRelative(-0.83f, 0.0f, -1.46f, -0.78f, -0.93f, -1.42f) + arcTo(3.0f, 3.0f, 0.0f, true, true, 10.24f, 8.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, -4.54f, 3.92f) + curveToRelative(-0.54f, -0.64f, 0.1f, -1.42f, 0.92f, -1.42f) + curveToRelative(0.28f, 0.0f, 0.52f, 0.15f, 0.76f, 0.3f) + lineToRelative(0.11f, 0.06f) + arcTo(1.0f, 1.0f, 0.0f, true, true, 8.0f, 7.0f) + close() + } + } + return _fps30!! + } + +private var _fps30: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fps60.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fps60.kt new file mode 100644 index 00000000..57198324 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fps60.kt @@ -0,0 +1,115 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Fps60: ImageVector + get() { + if (_fps60 != null) { + return _fps60!! + } + _fps60 = fluentIcon(name = "Filled.Fps60") { + fluentPath { + moveTo(11.75f, 15.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, 4.5f) + lineTo(11.0f, 19.5f) + verticalLineToRelative(1.75f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-5.5f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(1.5f) + close() + moveTo(18.0f, 15.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(18.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.5f) + horizontalLineToRelative(-0.72f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, -0.09f, 1.24f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(0.5f) + arcToRelative(2.13f, 2.13f, 0.0f, false, true, 0.15f, 4.24f) + lineToRelative(-0.16f, 0.01f) + horizontalLineToRelative(-0.62f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 0.25f, 0.18f, 0.45f, 0.41f, 0.5f) + horizontalLineToRelative(0.72f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.09f, -1.24f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-0.5f) + arcToRelative(2.13f, 2.13f, 0.0f, false, true, -0.15f, -4.24f) + lineToRelative(0.16f, -0.01f) + lineTo(18.0f, 15.0f) + close() + moveTo(7.75f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(5.5f, 16.5f) + lineTo(5.5f, 18.0f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(5.5f, 19.5f) + verticalLineToRelative(1.73f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-5.48f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(3.0f) + close() + moveTo(11.75f, 16.5f) + lineTo(11.0f, 16.5f) + lineTo(11.0f, 18.0f) + horizontalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(8.25f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 11.0f, 5.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + verticalLineToRelative(-0.12f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineTo(8.25f, 5.0f) + lineTo(8.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 0.88f) + verticalLineToRelative(1.29f) + arcTo(3.0f, 3.0f, 0.0f, true, true, 5.0f, 10.0f) + lineTo(5.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.83f, -3.0f) + lineTo(8.25f, 3.0f) + close() + moveTo(15.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) + lineTo(18.0f, 10.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.18f) + lineTo(12.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + close() + moveTo(8.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(15.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 0.88f) + lineTo(14.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.12f) + lineTo(16.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + } + } + return _fps60!! + } + +private var _fps60: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fps960.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fps960.kt new file mode 100644 index 00000000..d7ec6f98 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Fps960.kt @@ -0,0 +1,134 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Fps960: ImageVector + get() { + if (_fps960 != null) { + return _fps960!! + } + _fps960 = fluentIcon(name = "Filled.Fps960") { + fluentPath { + moveTo(11.75f, 15.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, 4.5f) + lineTo(11.0f, 19.5f) + verticalLineToRelative(1.75f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-5.5f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(1.5f) + close() + moveTo(18.0f, 15.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(18.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.5f) + horizontalLineToRelative(-0.72f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, -0.09f, 1.24f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(0.5f) + arcToRelative(2.13f, 2.13f, 0.0f, false, true, 0.15f, 4.24f) + lineToRelative(-0.16f, 0.01f) + horizontalLineToRelative(-0.62f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 0.25f, 0.18f, 0.45f, 0.41f, 0.5f) + horizontalLineToRelative(0.72f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.09f, -1.24f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-0.5f) + arcToRelative(2.13f, 2.13f, 0.0f, false, true, -0.15f, -4.24f) + lineToRelative(0.16f, -0.01f) + lineTo(18.0f, 15.0f) + close() + moveTo(7.75f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(5.5f, 16.5f) + lineTo(5.5f, 18.0f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(5.5f, 19.5f) + verticalLineToRelative(1.73f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-5.48f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(3.0f) + close() + moveTo(11.75f, 16.5f) + lineTo(11.0f, 16.5f) + lineTo(11.0f, 18.0f) + horizontalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(5.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.82f, 3.0f) + horizontalLineToRelative(-0.43f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 10.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + verticalLineToRelative(0.12f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + lineTo(5.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -0.88f) + lineTo(6.0f, 8.83f) + arcTo(3.0f, 3.0f, 0.0f, true, true, 5.0f, 3.0f) + close() + moveTo(12.25f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 15.0f, 5.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + verticalLineToRelative(-0.12f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + lineTo(12.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 0.88f) + verticalLineToRelative(1.29f) + arcTo(3.0f, 3.0f, 0.0f, true, true, 9.0f, 10.0f) + lineTo(9.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.83f, -3.0f) + lineTo(12.25f, 3.0f) + close() + moveTo(19.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) + lineTo(22.0f, 10.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.18f) + lineTo(16.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + close() + moveTo(12.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(19.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 0.88f) + lineTo(18.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.12f) + lineTo(20.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + moveTo(5.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + } + } + return _fps960!! + } + +private var _fps960: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FullScreenMaximize.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FullScreenMaximize.kt new file mode 100644 index 00000000..34c2c1ea --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FullScreenMaximize.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FullScreenMaximize: ImageVector + get() { + if (_fullScreenMaximize != null) { + return _fullScreenMaximize!! + } + _fullScreenMaximize = fluentIcon(name = "Filled.FullScreenMaximize") { + fluentPath { + moveTo(5.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + lineTo(6.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + lineTo(5.0f, 6.0f) + close() + moveTo(5.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(6.0f, 21.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + verticalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(2.0f) + close() + moveTo(18.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(21.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(2.0f) + close() + moveTo(19.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(2.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) + verticalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(2.0f) + close() + } + } + return _fullScreenMaximize!! + } + +private var _fullScreenMaximize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FullScreenMinimize.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FullScreenMinimize.kt new file mode 100644 index 00000000..4d3069ae --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/FullScreenMinimize.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.FullScreenMinimize: ImageVector + get() { + if (_fullScreenMinimize != null) { + return _fullScreenMinimize!! + } + _fullScreenMinimize = fluentIcon(name = "Filled.FullScreenMinimize") { + fluentPath { + moveTo(9.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + lineTo(4.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(2.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 9.0f, 6.5f) + lineTo(9.0f, 4.0f) + close() + moveTo(9.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + lineTo(4.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(2.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 9.0f, 17.5f) + lineTo(9.0f, 20.0f) + close() + moveTo(16.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(2.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 17.5f, 9.0f) + lineTo(20.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(17.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + moveTo(15.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + lineTo(20.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.5f, 2.5f) + lineTo(15.0f, 20.0f) + close() + } + } + return _fullScreenMinimize!! + } + +private var _fullScreenMinimize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Games.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Games.kt new file mode 100644 index 00000000..1f152174 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Games.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Games: ImageVector + get() { + if (_games != null) { + return _games!! + } + _games = fluentIcon(name = "Filled.Games") { + fluentPath { + moveTo(15.0f, 5.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, 0.24f, 14.0f) + lineTo(9.0f, 19.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, -0.24f, -14.0f) + lineTo(15.0f, 5.0f) + close() + moveTo(14.75f, 12.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(8.0f, 9.0f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + horizontalLineToRelative(1.6f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.1f) + verticalLineToRelative(-1.6f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + horizontalLineToRelative(-1.6f) + verticalLineToRelative(-1.5f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 8.0f, 9.0f) + close() + moveTo(16.75f, 9.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + } + } + return _games!! + } + +private var _games: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GanttChart.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GanttChart.kt new file mode 100644 index 00000000..42fe5420 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GanttChart.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.GanttChart: ImageVector + get() { + if (_ganttChart != null) { + return _ganttChart!! + } + _ganttChart = fluentIcon(name = "Filled.GanttChart") { + fluentPath { + moveTo(2.0f, 7.25f) + curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(3.0f) + lineTo(6.0f, 7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, 4.0f) + horizontalLineToRelative(2.25f) + verticalLineToRelative(9.0f) + horizontalLineToRelative(-3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + close() + moveTo(9.25f, 20.0f) + verticalLineToRelative(-9.0f) + lineTo(10.0f, 11.0f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(1.0f) + verticalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.75f, 1.98f) + lineTo(14.75f, 20.0f) + horizontalLineToRelative(-5.5f) + close() + moveTo(12.0f, 10.0f) + horizontalLineToRelative(2.75f) + lineTo(14.75f, 4.0f) + horizontalLineToRelative(-5.5f) + verticalLineToRelative(3.0f) + lineTo(10.0f, 7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + verticalLineToRelative(1.0f) + close() + moveTo(18.0f, 17.0f) + horizontalLineToRelative(-2.25f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(3.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-9.5f) + curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(6.0f) + lineTo(16.0f, 10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + verticalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) + close() + moveTo(6.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(6.0f, 8.0f) + close() + moveTo(11.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(15.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-3.0f) + close() + } + } + return _ganttChart!! + } + +private var _ganttChart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Gas.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Gas.kt new file mode 100644 index 00000000..7111a6bf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Gas.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Gas: ImageVector + get() { + if (_gas != null) { + return _gas!! + } + _gas = fluentIcon(name = "Filled.Gas") { + fluentPath { + moveTo(13.15f, 2.3f) + curveToRelative(0.14f, -0.19f, 0.36f, -0.3f, 0.6f, -0.3f) + horizontalLineToRelative(4.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(19.0f, 6.5f) + lineToRelative(-0.01f, 0.12f) + curveToRelative(0.62f, 0.5f, 1.01f, 1.27f, 1.01f, 2.13f) + verticalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 17.25f, 22.0f) + lineTo(6.75f, 22.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.0f, 19.25f) + lineTo(4.0f, 8.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 6.75f, 6.0f) + horizontalLineToRelative(0.75f) + verticalLineToRelative(-0.25f) + curveTo(7.5f, 4.78f, 6.72f, 4.0f, 5.75f, 4.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.0f) + curveTo(7.55f, 2.5f, 9.0f, 3.96f, 9.0f, 5.75f) + lineTo(9.0f, 6.0f) + horizontalLineToRelative(1.44f) + lineToRelative(2.7f, -3.7f) + close() + moveTo(17.5f, 3.5f) + horizontalLineToRelative(-3.37f) + lineTo(12.3f, 6.0f) + horizontalLineToRelative(4.95f) + lineToRelative(0.25f, 0.01f) + lineTo(17.5f, 3.5f) + close() + moveTo(8.22f, 10.22f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineTo(10.94f, 14.0f) + lineToRelative(-2.72f, 2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineTo(12.0f, 15.06f) + lineToRelative(2.72f, 2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineTo(13.06f, 14.0f) + lineToRelative(2.72f, -2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineTo(12.0f, 12.94f) + lineToRelative(-2.72f, -2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + close() + } + } + return _gas!! + } + +private var _gas: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GasPump.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GasPump.kt new file mode 100644 index 00000000..df0bbbaa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GasPump.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.GasPump: ImageVector + get() { + if (_gasPump != null) { + return _gasPump!! + } + _gasPump = fluentIcon(name = "Filled.GasPump") { + fluentPath { + moveTo(6.75f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.0f, 5.75f) + verticalLineTo(20.5f) + horizontalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(17.0f) + verticalLineToRelative(-1.8f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 4.0f, -2.44f) + verticalLineToRelative(-5.84f) + curveToRelative(0.0f, -0.6f, -0.2f, -1.18f, -0.55f, -1.65f) + lineToRelative(-1.1f, -1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.2f, 0.9f) + lineToRelative(1.1f, 1.47f) + curveToRelative(0.16f, 0.21f, 0.25f, 0.48f, 0.25f, 0.75f) + verticalLineToRelative(5.83f) + arcToRelative(1.24f, 1.24f, 0.0f, true, true, -2.49f, 0.0f) + verticalLineTo(14.5f) + lineToRelative(-0.01f, -0.12f) + verticalLineTo(5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 14.25f, 3.0f) + horizontalLineToRelative(-7.5f) + close() + moveTo(7.0f, 6.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-3.5f) + close() + } + } + return _gasPump!! + } + +private var _gasPump: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Gauge.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Gauge.kt new file mode 100644 index 00000000..65cad7ec --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Gauge.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Gauge: ImageVector + get() { + if (_gauge != null) { + return _gauge!! + } + _gauge = fluentIcon(name = "Filled.Gauge") { + fluentPath { + moveTo(12.0f, 22.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) + close() + moveTo(15.88f, 6.67f) + arcToRelative(0.63f, 0.63f, 0.0f, false, true, 0.96f, 0.76f) + lineToRelative(-0.13f, 0.25f) + arcToRelative(354.7f, 354.7f, 0.0f, false, true, -3.02f, 5.67f) + curveToRelative(-0.12f, 0.2f, -0.24f, 0.4f, -0.32f, 0.5f) + arcToRelative(1.88f, 1.88f, 0.0f, false, true, -2.94f, -2.33f) + arcToRelative(37.2f, 37.2f, 0.0f, false, true, 1.1f, -1.05f) + arcToRelative(154.39f, 154.39f, 0.0f, false, true, 4.14f, -3.62f) + lineToRelative(0.2f, -0.18f) + close() + moveTo(7.93f, 17.13f) + curveToRelative(-0.29f, 0.29f, -0.76f, 0.29f, -1.06f, 0.0f) + arcToRelative(7.25f, 7.25f, 0.0f, false, true, 6.8f, -12.19f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.34f, 1.46f) + arcToRelative(5.75f, 5.75f, 0.0f, false, false, -5.4f, 9.67f) + curveToRelative(0.3f, 0.29f, 0.3f, 0.76f, 0.0f, 1.06f) + close() + moveTo(17.89f, 9.14f) + curveToRelative(0.39f, -0.14f, 0.82f, 0.07f, 0.95f, 0.46f) + arcToRelative(7.25f, 7.25f, 0.0f, false, true, -1.71f, 7.53f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + arcToRelative(5.75f, 5.75f, 0.0f, false, false, 1.36f, -5.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.46f, -0.96f) + close() + } + } + return _gauge!! + } + +private var _gauge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Gavel.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Gavel.kt new file mode 100644 index 00000000..22556aa1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Gavel.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Gavel: ImageVector + get() { + if (_gavel != null) { + return _gavel!! + } + _gavel = fluentIcon(name = "Filled.Gavel") { + fluentPath { + moveTo(10.73f, 2.71f) + curveToRelative(0.98f, -0.98f, 2.6f, -0.85f, 3.4f, 0.27f) + lineToRelative(0.33f, 0.44f) + lineToRelative(-6.47f, 6.47f) + lineToRelative(-0.38f, -0.25f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.35f, -3.46f) + lineToRelative(3.47f, -3.47f) + close() + moveTo(9.26f, 10.74f) + lineTo(11.82f, 12.44f) + curveToRelative(0.09f, 0.07f, 0.16f, 0.14f, 0.22f, 0.23f) + lineToRelative(1.23f, 1.94f) + lineToRelative(6.01f, -6.01f) + lineToRelative(-2.15f, -1.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.16f, -0.16f) + lineToRelative(-1.62f, -2.22f) + lineToRelative(-6.1f, 6.1f) + close() + moveTo(14.36f, 16.33f) + lineTo(14.1f, 15.91f) + lineTo(20.51f, 9.49f) + lineTo(21.02f, 9.86f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.27f, 3.41f) + lineToRelative(-3.44f, 3.44f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -3.49f, -0.38f) + close() + moveTo(9.34f, 12.3f) + lineToRelative(-6.07f, 5.96f) + arcToRelative(1.76f, 1.76f, 0.0f, true, false, 2.47f, 2.5f) + lineToRelative(6.09f, -6.09f) + lineToRelative(-0.8f, -1.24f) + lineToRelative(-1.69f, -1.13f) + close() + moveTo(14.75f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + close() + } + } + return _gavel!! + } + +private var _gavel: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Gesture.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Gesture.kt new file mode 100644 index 00000000..7c00e27d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Gesture.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Gesture: ImageVector + get() { + if (_gesture != null) { + return _gesture!! + } + _gesture = fluentIcon(name = "Filled.Gesture") { + fluentPath { + moveTo(3.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(7.0f, 4.0f) + horizontalLineToRelative(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(12.35f, 6.0f) + lineToRelative(8.01f, 3.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.2f, 1.77f) + lineToRelative(-0.11f, 0.06f) + lineToRelative(-14.0f, 6.97f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.74f) + lineToRelative(0.1f, -0.06f) + lineToRelative(11.98f, -5.95f) + lineToRelative(-10.9f, -4.22f) + curveToRelative(-0.99f, -0.38f, -0.76f, -1.82f, 0.25f, -1.92f) + lineTo(7.0f, 4.0f) + horizontalLineToRelative(10.0f) + lineTo(7.0f, 4.0f) + close() + moveTo(20.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + } + } + return _gesture!! + } + +private var _gesture: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Gif.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Gif.kt new file mode 100644 index 00000000..398c03f4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Gif.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Gif: ImageVector + get() { + if (_gif != null) { + return _gif!! + } + _gif = fluentIcon(name = "Filled.Gif") { + fluentPath { + moveTo(18.75f, 3.5f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(5.25f, 20.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 17.25f) + lineTo(2.0f, 6.75f) + curveTo(2.0f, 4.95f, 3.46f, 3.5f, 5.25f, 3.5f) + horizontalLineToRelative(13.5f) + close() + moveTo(8.01f, 8.87f) + curveToRelative(-1.62f, 0.0f, -2.75f, 1.41f, -2.75f, 3.12f) + curveToRelative(0.0f, 1.72f, 1.13f, 3.13f, 2.75f, 3.13f) + curveToRelative(0.9f, 0.0f, 1.7f, -0.43f, 2.12f, -1.21f) + lineToRelative(0.07f, -0.17f) + lineToRelative(0.03f, -0.07f) + lineToRelative(0.01f, -0.07f) + lineToRelative(0.01f, -0.08f) + lineTo(10.25f, 11.9f) + arcToRelative(0.63f, 0.63f, 0.0f, false, false, -0.52f, -0.52f) + lineTo(8.53f, 11.38f) + arcToRelative(0.63f, 0.63f, 0.0f, false, false, -0.52f, 0.51f) + lineTo(8.0f, 12.0f) + verticalLineToRelative(0.1f) + curveToRelative(0.05f, 0.27f, 0.26f, 0.48f, 0.52f, 0.52f) + lineToRelative(0.1f, 0.01f) + lineTo(9.0f, 12.63f) + verticalLineToRelative(0.75f) + curveToRelative(-0.2f, 0.32f, -0.56f, 0.5f, -0.99f, 0.5f) + curveToRelative(-0.86f, 0.0f, -1.5f, -0.8f, -1.5f, -1.88f) + curveToRelative(0.0f, -1.07f, 0.64f, -1.87f, 1.5f, -1.87f) + curveToRelative(0.43f, 0.0f, 0.67f, 0.05f, 0.97f, 0.2f) + arcToRelative(0.63f, 0.63f, 0.0f, false, false, 0.54f, -1.14f) + curveToRelative(-0.49f, -0.23f, -0.9f, -0.3f, -1.5f, -0.3f) + close() + moveTo(12.63f, 8.99f) + arcToRelative(0.63f, 0.63f, 0.0f, false, false, -0.62f, 0.54f) + lineTo(12.01f, 14.48f) + arcToRelative(0.63f, 0.63f, 0.0f, false, false, 1.24f, 0.0f) + lineTo(13.25f, 9.51f) + arcToRelative(0.63f, 0.63f, 0.0f, false, false, -0.62f, -0.53f) + close() + moveTo(17.63f, 9.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.63f, 0.63f, 0.0f, false, false, -0.63f, 0.52f) + lineTo(15.0f, 14.46f) + curveToRelative(0.04f, 0.26f, 0.25f, 0.48f, 0.52f, 0.52f) + horizontalLineToRelative(0.2f) + arcToRelative(0.63f, 0.63f, 0.0f, false, false, 0.52f, -0.51f) + lineTo(16.24f, 13.25f) + horizontalLineToRelative(1.23f) + arcToRelative(0.63f, 0.63f, 0.0f, false, false, 0.52f, -0.52f) + verticalLineToRelative(-0.2f) + arcToRelative(0.63f, 0.63f, 0.0f, false, false, -0.52f, -0.52f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-1.12f) + verticalLineToRelative(-1.76f) + lineToRelative(1.37f, 0.01f) + horizontalLineToRelative(0.09f) + arcToRelative(0.63f, 0.63f, 0.0f, false, false, 0.0f, -1.24f) + lineTo(17.62f, 9.0f) + horizontalLineToRelative(-2.0f) + horizontalLineToRelative(2.0f) + close() + } + } + return _gif!! + } + +private var _gif: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Gift.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Gift.kt new file mode 100644 index 00000000..b3f93b86 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Gift.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Gift: ImageVector + get() { + if (_gift != null) { + return _gift!! + } + _gift = fluentIcon(name = "Filled.Gift") { + fluentPath { + moveTo(11.25f, 13.0f) + verticalLineToRelative(9.0f) + horizontalLineToRelative(-4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 4.0f, 18.75f) + lineTo(4.0f, 13.0f) + horizontalLineToRelative(7.25f) + close() + moveTo(20.0f, 13.0f) + verticalLineToRelative(5.75f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-9.0f) + lineTo(20.0f, 13.0f) + close() + moveTo(14.5f, 2.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.74f, 5.0f) + horizontalLineToRelative(2.51f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.47f, 1.25f, 1.04f) + verticalLineToRelative(2.92f) + curveToRelative(0.0f, 0.57f, -0.56f, 1.04f, -1.25f, 1.04f) + horizontalLineToRelative(-7.0f) + lineTo(12.75f, 7.0f) + horizontalLineToRelative(-1.5f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(-7.0f) + curveTo(3.56f, 12.0f, 3.0f, 11.53f, 3.0f, 10.96f) + lineTo(3.0f, 8.04f) + curveTo(3.0f, 7.47f, 3.56f, 7.0f, 4.25f, 7.0f) + horizontalLineToRelative(2.51f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 12.0f, 3.17f) + curveTo(12.6f, 2.46f, 13.5f, 2.0f, 14.5f, 2.0f) + close() + moveTo(9.5f, 3.5f) + arcTo(1.75f, 1.75f, 0.0f, false, false, 9.36f, 7.0f) + lineTo(11.25f, 7.0f) + lineTo(11.25f, 5.11f) + curveToRelative(-0.08f, -0.9f, -0.83f, -1.61f, -1.75f, -1.61f) + close() + moveTo(14.5f, 3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(12.75f, 7.0f) + horizontalLineToRelative(1.75f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, -3.5f) + close() + } + } + return _gift!! + } + +private var _gift: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GiftCard.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GiftCard.kt new file mode 100644 index 00000000..c62ac9c7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GiftCard.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.GiftCard: ImageVector + get() { + if (_giftCard != null) { + return _giftCard!! + } + _giftCard = fluentIcon(name = "Filled.GiftCard") { + fluentPath { + moveTo(9.5f, 19.0f) + lineTo(19.0f, 19.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) + verticalLineToRelative(-4.5f) + lineTo(10.56f, 11.5f) + lineToRelative(1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(9.5f, 12.56f) + lineTo(9.5f, 19.0f) + close() + moveTo(8.0f, 10.0f) + lineTo(8.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.0f, 1.0f) + horizontalLineToRelative(1.0f) + close() + moveTo(9.5f, 9.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.0f, -1.0f) + close() + moveTo(9.5f, 6.7f) + lineTo(9.5f, 4.0f) + lineTo(19.0f, 4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(-9.2f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.3f, -3.5f) + curveToRelative(-0.36f, 0.0f, -0.7f, 0.07f, -1.0f, 0.2f) + close() + moveTo(8.0f, 4.0f) + verticalLineToRelative(2.7f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.5f, 9.0f) + curveToRelative(0.0f, 0.36f, 0.07f, 0.7f, 0.2f, 1.0f) + lineTo(2.0f, 10.0f) + lineTo(2.0f, 7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(3.0f) + close() + moveTo(8.0f, 12.56f) + lineTo(8.0f, 19.0f) + lineTo(5.0f, 19.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + verticalLineToRelative(-4.5f) + horizontalLineToRelative(4.94f) + lineToRelative(-1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineTo(8.0f, 12.56f) + close() + } + } + return _giftCard!! + } + +private var _giftCard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GiftCardAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GiftCardAdd.kt new file mode 100644 index 00000000..39936990 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GiftCardAdd.kt @@ -0,0 +1,88 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.GiftCardAdd: ImageVector + get() { + if (_giftCardAdd != null) { + return _giftCardAdd!! + } + _giftCardAdd = fluentIcon(name = "Filled.GiftCardAdd") { + fluentPath { + moveTo(8.0f, 2.0f) + lineTo(5.0f, 2.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(2.7f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 7.0f, 4.5f) + curveToRelative(0.36f, 0.0f, 0.7f, 0.07f, 1.0f, 0.2f) + lineTo(8.0f, 2.0f) + close() + moveTo(2.0f, 9.5f) + lineTo(2.0f, 14.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-6.44f) + lineToRelative(-1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineTo(6.94f, 9.5f) + lineTo(2.0f, 9.5f) + close() + moveTo(9.5f, 17.0f) + horizontalLineToRelative(1.52f) + arcTo(6.5f, 6.5f, 0.0f, false, true, 22.0f, 12.81f) + lineTo(22.0f, 9.5f) + lineTo(10.56f, 9.5f) + lineToRelative(1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(9.5f, 10.56f) + lineTo(9.5f, 17.0f) + close() + moveTo(22.0f, 8.0f) + horizontalLineToRelative(-9.2f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.3f, -3.5f) + curveToRelative(-0.36f, 0.0f, -0.7f, 0.07f, -1.0f, 0.2f) + lineTo(9.5f, 2.0f) + lineTo(19.0f, 2.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(3.0f) + close() + moveTo(10.5f, 8.0f) + horizontalLineToRelative(-1.0f) + lineTo(9.5f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.0f, 1.0f) + close() + moveTo(8.0f, 8.0f) + lineTo(7.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.0f, -1.0f) + verticalLineToRelative(1.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _giftCardAdd!! + } + +private var _giftCardAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GiftCardArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GiftCardArrowRight.kt new file mode 100644 index 00000000..b8e2d7fe --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GiftCardArrowRight.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.GiftCardArrowRight: ImageVector + get() { + if (_giftCardArrowRight != null) { + return _giftCardArrowRight!! + } + _giftCardArrowRight = fluentIcon(name = "Filled.GiftCardArrowRight") { + fluentPath { + moveTo(8.0f, 2.0f) + lineTo(5.0f, 2.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(2.7f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 7.0f, 4.5f) + curveToRelative(0.36f, 0.0f, 0.7f, 0.07f, 1.0f, 0.2f) + lineTo(8.0f, 2.0f) + close() + moveTo(2.0f, 9.5f) + lineTo(2.0f, 14.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-6.44f) + lineToRelative(-1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineTo(6.94f, 9.5f) + lineTo(2.0f, 9.5f) + close() + moveTo(9.5f, 17.0f) + horizontalLineToRelative(1.52f) + arcTo(6.5f, 6.5f, 0.0f, false, true, 22.0f, 12.81f) + lineTo(22.0f, 9.5f) + lineTo(10.56f, 9.5f) + lineToRelative(1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(9.5f, 10.56f) + lineTo(9.5f, 17.0f) + close() + moveTo(22.0f, 8.0f) + horizontalLineToRelative(-9.2f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.3f, -3.5f) + curveToRelative(-0.36f, 0.0f, -0.7f, 0.07f, -1.0f, 0.2f) + lineTo(9.5f, 2.0f) + lineTo(19.0f, 2.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(3.0f) + close() + moveTo(10.5f, 8.0f) + horizontalLineToRelative(-1.0f) + lineTo(9.5f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.0f, 1.0f) + close() + moveTo(8.0f, 8.0f) + lineTo(7.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.0f, -1.0f) + verticalLineToRelative(1.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(19.29f, 17.0f) + lineTo(14.5f, 17.0f) + close() + } + } + return _giftCardArrowRight!! + } + +private var _giftCardArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GiftCardMoney.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GiftCardMoney.kt new file mode 100644 index 00000000..4d51aae4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GiftCardMoney.kt @@ -0,0 +1,111 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.GiftCardMoney: ImageVector + get() { + if (_giftCardMoney != null) { + return _giftCardMoney!! + } + _giftCardMoney = fluentIcon(name = "Filled.GiftCardMoney") { + fluentPath { + moveTo(8.0f, 2.0f) + lineTo(5.0f, 2.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(2.7f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 7.0f, 4.5f) + curveToRelative(0.36f, 0.0f, 0.7f, 0.07f, 1.0f, 0.2f) + lineTo(8.0f, 2.0f) + close() + moveTo(2.0f, 9.5f) + lineTo(2.0f, 14.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-6.44f) + lineToRelative(-1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineTo(6.94f, 9.5f) + lineTo(2.0f, 9.5f) + close() + moveTo(9.5f, 17.0f) + lineTo(11.0f, 17.0f) + verticalLineToRelative(-0.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, -2.5f) + horizontalLineToRelative(8.0f) + curveToRelative(0.17f, 0.0f, 0.34f, 0.02f, 0.5f, 0.05f) + lineTo(22.0f, 9.5f) + lineTo(10.56f, 9.5f) + lineToRelative(1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(9.5f, 10.56f) + lineTo(9.5f, 17.0f) + close() + moveTo(22.0f, 8.0f) + horizontalLineToRelative(-9.2f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.3f, -3.5f) + curveToRelative(-0.36f, 0.0f, -0.7f, 0.07f, -1.0f, 0.2f) + lineTo(9.5f, 2.0f) + lineTo(19.0f, 2.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(3.0f) + close() + moveTo(10.5f, 8.0f) + horizontalLineToRelative(-1.0f) + lineTo(9.5f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.0f, 1.0f) + close() + moveTo(8.0f, 8.0f) + lineTo(7.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.0f, -1.0f) + verticalLineToRelative(1.0f) + close() + moveTo(12.0f, 16.5f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(8.0f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + verticalLineToRelative(-4.0f) + close() + moveTo(22.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + horizontalLineToRelative(-1.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(22.0f, 19.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(14.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + verticalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + horizontalLineToRelative(-1.0f) + close() + moveTo(15.0f, 21.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + verticalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + horizontalLineToRelative(1.0f) + close() + moveTo(19.25f, 18.5f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, -3.5f, 0.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 3.5f, 0.0f) + close() + } + } + return _giftCardMoney!! + } + +private var _giftCardMoney: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GiftCardMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GiftCardMultiple.kt new file mode 100644 index 00000000..f1edfefe --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GiftCardMultiple.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.GiftCardMultiple: ImageVector + get() { + if (_giftCardMultiple != null) { + return _giftCardMultiple!! + } + _giftCardMultiple = fluentIcon(name = "Filled.GiftCardMultiple") { + fluentPath { + moveTo(5.0f, 4.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(2.7f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.5f, 9.0f) + curveToRelative(0.0f, 0.36f, 0.07f, 0.7f, 0.2f, 1.0f) + lineTo(2.0f, 10.0f) + lineTo(2.0f, 7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + close() + moveTo(2.0f, 14.5f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(4.94f) + lineToRelative(-1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineTo(8.0f, 12.56f) + verticalLineToRelative(4.94f) + lineTo(5.0f, 17.5f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + close() + moveTo(9.5f, 17.5f) + horizontalLineToRelative(7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(-8.94f) + lineToRelative(1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(9.5f, 12.56f) + verticalLineToRelative(4.94f) + close() + moveTo(12.8f, 10.0f) + horizontalLineToRelative(6.7f) + lineTo(19.5f, 7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + horizontalLineToRelative(-7.0f) + verticalLineToRelative(2.7f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 13.0f, 9.0f) + curveToRelative(0.0f, 0.36f, -0.07f, 0.7f, -0.2f, 1.0f) + close() + moveTo(10.5f, 10.0f) + horizontalLineToRelative(-1.0f) + lineTo(9.5f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.0f, 1.0f) + close() + moveTo(7.0f, 10.0f) + horizontalLineToRelative(1.0f) + lineTo(8.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.0f, 1.0f) + close() + moveTo(7.5f, 20.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.6f, -1.5f) + horizontalLineToRelative(11.6f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, -4.0f) + lineTo(20.5f, 6.9f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 22.0f, 9.5f) + verticalLineToRelative(5.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, -5.5f, 5.5f) + horizontalLineToRelative(-9.0f) + close() + } + } + return _giftCardMultiple!! + } + +private var _giftCardMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Glance.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Glance.kt new file mode 100644 index 00000000..f9e9511a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Glance.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Glance: ImageVector + get() { + if (_glance != null) { + return _glance!! + } + _glance = fluentIcon(name = "Filled.Glance") { + fluentPath { + moveTo(19.25f, 11.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.79f, 1.75f, 1.75f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-6.5f) + curveToRelative(0.0f, -0.96f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(4.5f) + close() + moveTo(9.27f, 15.01f) + curveToRelative(0.96f, 0.0f, 1.75f, 0.79f, 1.75f, 1.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.96f, -0.79f, 1.74f, -1.75f, 1.74f) + lineTo(4.75f, 21.0f) + curveTo(3.8f, 21.0f, 3.0f, 20.22f, 3.0f, 19.25f) + verticalLineToRelative(-2.49f) + curveToRelative(0.0f, -0.96f, 0.79f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(4.52f) + close() + moveTo(9.25f, 3.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 0.92f, -0.7f, 1.67f, -1.6f, 1.74f) + lineToRelative(-0.15f, 0.01f) + horizontalLineToRelative(-4.5f) + curveTo(3.8f, 13.0f, 3.0f, 12.22f, 3.0f, 11.25f) + verticalLineToRelative(-6.5f) + curveTo(3.0f, 3.78f, 3.8f, 3.0f, 4.75f, 3.0f) + horizontalLineToRelative(4.5f) + close() + moveTo(19.25f, 3.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(2.5f) + curveTo(21.0f, 8.22f, 20.22f, 9.0f, 19.25f, 9.0f) + horizontalLineToRelative(-4.5f) + curveTo(13.78f, 9.0f, 13.0f, 8.22f, 13.0f, 7.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(4.5f) + close() + } + } + return _glance!! + } + +private var _glance: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlanceHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlanceHorizontal.kt new file mode 100644 index 00000000..1a646fcf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlanceHorizontal.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.GlanceHorizontal: ImageVector + get() { + if (_glanceHorizontal != null) { + return _glanceHorizontal!! + } + _glanceHorizontal = fluentIcon(name = "Filled.GlanceHorizontal") { + fluentPath { + moveTo(13.0f, 4.75f) + curveTo(13.0f, 3.8f, 12.22f, 3.0f, 11.25f, 3.0f) + horizontalLineToRelative(-6.5f) + curveTo(3.78f, 3.0f, 3.0f, 3.8f, 3.0f, 4.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(6.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-4.5f) + close() + moveTo(9.0f, 14.73f) + curveToRelative(0.0f, -0.96f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(4.75f, 12.98f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.79f, -1.75f, 1.75f) + verticalLineToRelative(4.52f) + curveTo(3.0f, 20.2f, 3.78f, 21.0f, 4.75f, 21.0f) + horizontalLineToRelative(2.49f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.79f, 1.75f, -1.75f) + verticalLineToRelative(-4.52f) + close() + moveTo(21.01f, 14.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-6.5f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + verticalLineToRelative(4.65f) + curveToRelative(0.0f, 0.96f, 0.78f, 1.75f, 1.74f, 1.75f) + horizontalLineToRelative(6.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.79f, 1.75f, -1.75f) + verticalLineToRelative(-4.5f) + close() + moveTo(21.01f, 4.75f) + curveTo(21.0f, 3.8f, 20.22f, 3.0f, 19.25f, 3.0f) + horizontalLineToRelative(-2.5f) + curveTo(15.8f, 3.0f, 15.0f, 3.8f, 15.0f, 4.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.97f, 0.79f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-4.5f) + close() + } + } + return _glanceHorizontal!! + } + +private var _glanceHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlanceHorizontalSparkles.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlanceHorizontalSparkles.kt new file mode 100644 index 00000000..2ba31a30 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlanceHorizontalSparkles.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.GlanceHorizontalSparkles: ImageVector + get() { + if (_glanceHorizontalSparkles != null) { + return _glanceHorizontalSparkles!! + } + _glanceHorizontalSparkles = fluentIcon(name = "Filled.GlanceHorizontalSparkles") { + fluentPath { + moveTo(16.09f, 6.41f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.35f, -0.95f) + lineTo(13.36f, 5.0f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, -1.03f) + lineToRelative(1.38f, -0.44f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.76f, -1.77f) + lineToRelative(0.01f, -0.03f) + lineToRelative(0.45f, -1.38f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, 1.03f, 0.0f) + lineToRelative(0.44f, 1.38f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.8f, 1.8f) + lineToRelative(1.38f, 0.44f) + lineToRelative(0.03f, 0.01f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, 1.03f) + lineToRelative(-1.38f, 0.44f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.8f, 1.8f) + lineToRelative(-0.45f, 1.38f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, -1.03f, 0.0f) + lineToRelative(-0.44f, -1.38f) + curveToRelative(-0.1f, -0.3f, -0.25f, -0.6f, -0.45f, -0.85f) + close() + moveTo(23.79f, 10.21f) + lineTo(23.02f, 9.96f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, -1.0f, -1.0f) + lineToRelative(-0.25f, -0.76f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, -0.57f, 0.0f) + lineToRelative(-0.25f, 0.77f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, -0.98f, 1.0f) + lineToRelative(-0.77f, 0.24f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.77f, 0.25f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, 1.0f) + lineToRelative(0.24f, 0.77f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.58f, 0.0f) + lineToRelative(0.24f, -0.77f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, -1.0f) + lineToRelative(0.77f, -0.24f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, -0.57f) + horizontalLineToRelative(-0.02f) + close() + moveTo(10.25f, 3.01f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.74f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-5.5f) + curveTo(3.78f, 11.0f, 3.0f, 10.22f, 3.0f, 9.25f) + verticalLineToRelative(-4.5f) + curveTo(3.0f, 3.8f, 3.78f, 3.0f, 4.75f, 3.0f) + horizontalLineToRelative(5.5f) + close() + moveTo(7.24f, 12.98f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.79f, 1.75f, 1.75f) + verticalLineToRelative(4.52f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(4.75f, 21.0f) + curveTo(3.78f, 21.0f, 3.0f, 20.22f, 3.0f, 19.25f) + verticalLineToRelative(-4.52f) + curveToRelative(0.0f, -0.96f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.49f) + close() + moveTo(19.25f, 13.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-6.5f) + curveToRelative(-0.96f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(11.0f, 14.6f) + curveToRelative(0.08f, -0.9f, 0.83f, -1.61f, 1.75f, -1.61f) + horizontalLineToRelative(6.5f) + close() + } + } + return _glanceHorizontalSparkles!! + } + +private var _glanceHorizontalSparkles: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Glasses.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Glasses.kt new file mode 100644 index 00000000..f2b60ef0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Glasses.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Glasses: ImageVector + get() { + if (_glasses != null) { + return _glasses!! + } + _glasses = fluentIcon(name = "Filled.Glasses") { + fluentPath { + moveTo(7.9f, 5.0f) + horizontalLineToRelative(0.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-0.94f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.48f, 0.17f) + lineToRelative(-0.07f, 0.07f) + lineTo(5.28f, 9.0f) + horizontalLineToRelative(3.47f) + curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) + horizontalLineTo(13.0f) + curveToRelative(0.13f, -1.12f, 1.08f, -2.0f, 2.24f, -2.0f) + horizontalLineToRelative(3.48f) + lineToRelative(-2.09f, -2.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.44f, -0.23f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-0.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.94f) + curveToRelative(0.57f, 0.0f, 1.11f, 0.21f, 1.52f, 0.6f) + lineToRelative(0.14f, 0.12f) + lineToRelative(3.64f, 3.95f) + lineToRelative(0.12f, 0.18f) + curveToRelative(0.3f, 0.38f, 0.49f, 0.87f, 0.49f, 1.4f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-2.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 13.0f, 14.75f) + verticalLineTo(12.5f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(2.25f) + curveTo(11.0f, 16.55f, 9.54f, 18.0f, 7.75f, 18.0f) + horizontalLineToRelative(-2.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.56f, 0.2f, -1.08f, 0.55f, -1.47f) + lineToRelative(0.03f, -0.06f) + lineToRelative(0.05f, -0.05f) + lineToRelative(3.62f, -3.94f) + curveToRelative(0.39f, -0.42f, 0.91f, -0.68f, 1.47f, -0.72f) + lineTo(7.91f, 5.0f) + horizontalLineToRelative(0.84f) + horizontalLineToRelative(-0.84f) + close() + } + } + return _glasses!! + } + +private var _glasses: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlassesOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlassesOff.kt new file mode 100644 index 00000000..ad5d37cd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlassesOff.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.GlassesOff: ImageVector + get() { + if (_glassesOff != null) { + return _glassesOff!! + } + _glassesOff = fluentIcon(name = "Filled.GlassesOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(3.27f, 3.27f) + lineToRelative(-2.86f, 3.12f) + lineToRelative(-0.05f, 0.05f) + lineToRelative(-0.03f, 0.06f) + curveToRelative(-0.34f, 0.4f, -0.55f, 0.9f, -0.55f, 1.47f) + verticalLineToRelative(3.5f) + curveTo(2.0f, 16.55f, 3.46f, 18.0f, 5.25f, 18.0f) + horizontalLineToRelative(2.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(11.0f, 12.5f) + horizontalLineToRelative(0.44f) + lineTo(13.0f, 14.06f) + verticalLineToRelative(0.69f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(0.69f) + lineToRelative(3.78f, 3.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(7.94f, 9.0f) + lineTo(5.28f, 9.0f) + lineToRelative(1.27f, -1.38f) + lineTo(7.94f, 9.0f) + close() + moveTo(13.3f, 10.12f) + lineTo(20.6f, 17.42f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 1.4f, -2.67f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.53f, -0.18f, -1.02f, -0.49f, -1.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.12f, -0.18f) + lineToRelative(-3.64f, -3.95f) + lineToRelative(-0.14f, -0.13f) + curveTo(17.2f, 5.21f, 16.66f, 5.0f, 16.1f, 5.0f) + horizontalLineToRelative(-0.94f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(0.94f) + curveToRelative(0.18f, 0.03f, 0.34f, 0.11f, 0.45f, 0.24f) + lineTo(18.73f, 9.0f) + horizontalLineToRelative(-3.48f) + curveToRelative(-0.83f, 0.0f, -1.56f, 0.45f, -1.95f, 1.12f) + close() + } + } + return _glassesOff!! + } + +private var _glassesOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Globe.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Globe.kt new file mode 100644 index 00000000..1c859e91 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Globe.kt @@ -0,0 +1,93 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Globe: ImageVector + get() { + if (_globe != null) { + return _globe!! + } + _globe = fluentIcon(name = "Filled.Globe") { + fluentPath { + moveTo(8.9f, 16.5f) + horizontalLineToRelative(6.2f) + curveToRelative(-0.62f, 3.27f, -1.87f, 5.5f, -3.1f, 5.5f) + curveToRelative(-1.2f, 0.0f, -2.4f, -2.1f, -3.04f, -5.2f) + lineToRelative(-0.06f, -0.3f) + horizontalLineToRelative(6.2f) + horizontalLineToRelative(-6.2f) + close() + moveTo(3.07f, 16.5f) + horizontalLineToRelative(4.3f) + curveToRelative(0.37f, 2.08f, 0.98f, 3.85f, 1.8f, 5.1f) + arcToRelative(10.03f, 10.03f, 0.0f, false, true, -5.96f, -4.82f) + lineToRelative(-0.14f, -0.28f) + close() + moveTo(16.63f, 16.5f) + horizontalLineToRelative(4.3f) + arcToRelative(10.03f, 10.03f, 0.0f, false, true, -6.1f, 5.1f) + arcToRelative(13.47f, 13.47f, 0.0f, false, false, 1.72f, -4.69f) + lineToRelative(0.08f, -0.4f) + horizontalLineToRelative(4.3f) + horizontalLineToRelative(-4.3f) + close() + moveTo(16.93f, 10.0f) + horizontalLineToRelative(4.87f) + arcToRelative(10.05f, 10.05f, 0.0f, false, true, -0.26f, 5.0f) + horizontalLineToRelative(-4.7f) + arcToRelative(27.53f, 27.53f, 0.0f, false, false, 0.13f, -4.34f) + lineToRelative(-0.04f, -0.66f) + horizontalLineToRelative(4.87f) + horizontalLineToRelative(-4.87f) + close() + moveTo(2.2f, 10.0f) + horizontalLineToRelative(4.87f) + arcToRelative(28.21f, 28.21f, 0.0f, false, false, 0.03f, 4.42f) + lineToRelative(0.06f, 0.58f) + horizontalLineToRelative(-4.7f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -0.26f, -5.0f) + close() + moveTo(8.58f, 10.0f) + horizontalLineToRelative(6.84f) + arcToRelative(25.84f, 25.84f, 0.0f, false, true, -0.03f, 4.43f) + lineToRelative(-0.06f, 0.57f) + lineTo(8.67f, 15.0f) + arcToRelative(25.36f, 25.36f, 0.0f, false, true, -0.13f, -4.51f) + lineToRelative(0.04f, -0.49f) + horizontalLineToRelative(6.84f) + horizontalLineToRelative(-6.84f) + close() + moveTo(14.94f, 2.58f) + lineTo(14.84f, 2.41f) + curveToRelative(3.01f, 0.89f, 5.44f, 3.16f, 6.53f, 6.09f) + horizontalLineToRelative(-4.59f) + curveToRelative(-0.31f, -2.42f, -0.96f, -4.5f, -1.84f, -5.92f) + lineToRelative(-0.1f, -0.17f) + lineToRelative(0.1f, 0.17f) + close() + moveTo(9.04f, 2.44f) + lineTo(9.16f, 2.41f) + arcToRelative(14.57f, 14.57f, 0.0f, false, false, -1.88f, 5.65f) + lineToRelative(-0.06f, 0.44f) + horizontalLineToRelative(-4.6f) + arcToRelative(10.03f, 10.03f, 0.0f, false, true, 6.42f, -6.06f) + lineToRelative(0.12f, -0.03f) + lineToRelative(-0.12f, 0.03f) + close() + moveTo(12.0f, 2.0f) + curveToRelative(1.32f, 0.0f, 2.65f, 2.54f, 3.21f, 6.19f) + lineToRelative(0.05f, 0.31f) + lineTo(8.74f, 8.5f) + curveTo(9.28f, 4.7f, 10.64f, 2.0f, 12.0f, 2.0f) + close() + } + } + return _globe!! + } + +private var _globe: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlobeAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlobeAdd.kt new file mode 100644 index 00000000..112d0598 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlobeAdd.kt @@ -0,0 +1,108 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.GlobeAdd: ImageVector + get() { + if (_globeAdd != null) { + return _globeAdd!! + } + _globeAdd = fluentIcon(name = "Filled.GlobeAdd") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(11.08f, 16.5f) + arcToRelative(6.55f, 6.55f, 0.0f, false, false, 1.55f, 5.3f) + curveToRelative(-0.2f, 0.13f, -0.42f, 0.2f, -0.63f, 0.2f) + curveToRelative(-1.2f, 0.0f, -2.4f, -2.1f, -3.04f, -5.2f) + lineToRelative(-0.05f, -0.3f) + horizontalLineToRelative(2.17f) + close() + moveTo(7.38f, 16.5f) + curveToRelative(0.36f, 2.08f, 0.98f, 3.85f, 1.79f, 5.1f) + arcToRelative(10.03f, 10.03f, 0.0f, false, true, -6.1f, -5.1f) + horizontalLineToRelative(4.3f) + close() + moveTo(17.5f, 14.0f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) + lineToRelative(-0.01f, 0.1f) + lineTo(17.0f, 17.0f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(0.18f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) + lineToRelative(0.1f, 0.01f) + lineTo(17.0f, 18.0f) + verticalLineToRelative(2.6f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + horizontalLineToRelative(0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) + lineToRelative(0.01f, -0.1f) + lineTo(18.0f, 18.0f) + horizontalLineToRelative(2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + verticalLineToRelative(-0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) + lineToRelative(-0.1f, -0.01f) + lineTo(18.0f, 17.0f) + verticalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) + horizontalLineToRelative(-0.09f) + close() + moveTo(7.07f, 10.0f) + arcToRelative(28.2f, 28.2f, 0.0f, false, false, 0.03f, 4.42f) + lineToRelative(0.06f, 0.58f) + horizontalLineToRelative(-4.7f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -0.26f, -5.0f) + horizontalLineToRelative(4.87f) + close() + moveTo(15.43f, 10.0f) + curveToRelative(0.03f, 0.43f, 0.05f, 0.87f, 0.06f, 1.31f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -4.0f, 3.69f) + lineTo(8.69f, 15.0f) + arcToRelative(25.36f, 25.36f, 0.0f, false, true, -0.14f, -4.51f) + lineToRelative(0.04f, -0.5f) + horizontalLineToRelative(6.85f) + close() + moveTo(21.8f, 10.0f) + arcToRelative(10.05f, 10.05f, 0.0f, false, true, 0.17f, 2.78f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, -4.99f, -1.76f) + verticalLineToRelative(-0.37f) + lineToRelative(-0.05f, -0.65f) + horizontalLineToRelative(4.87f) + close() + moveTo(14.84f, 2.4f) + curveToRelative(3.02f, 0.9f, 5.44f, 3.17f, 6.53f, 6.1f) + horizontalLineToRelative(-4.59f) + curveToRelative(-0.3f, -2.27f, -0.88f, -4.23f, -1.67f, -5.65f) + lineToRelative(-0.16f, -0.27f) + lineToRelative(-0.11f, -0.18f) + close() + moveTo(9.17f, 2.4f) + arcToRelative(14.57f, 14.57f, 0.0f, false, false, -1.89f, 5.66f) + lineToRelative(-0.06f, 0.44f) + lineTo(2.63f, 8.5f) + arcToRelative(10.03f, 10.03f, 0.0f, false, true, 6.1f, -5.96f) + lineToRelative(0.31f, -0.1f) + lineToRelative(0.13f, -0.04f) + close() + moveTo(12.0f, 2.0f) + curveToRelative(1.32f, 0.0f, 2.65f, 2.54f, 3.22f, 6.18f) + lineToRelative(0.04f, 0.32f) + lineTo(8.74f, 8.5f) + curveTo(9.28f, 4.69f, 10.64f, 2.0f, 12.0f, 2.0f) + close() + } + } + return _globeAdd!! + } + +private var _globeAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlobeClock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlobeClock.kt new file mode 100644 index 00000000..2a9d73aa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlobeClock.kt @@ -0,0 +1,94 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.GlobeClock: ImageVector + get() { + if (_globeClock != null) { + return _globeClock!! + } + _globeClock = fluentIcon(name = "Filled.GlobeClock") { + fluentPath { + moveTo(11.0f, 17.5f) + curveToRelative(0.0f, -0.34f, 0.03f, -0.68f, 0.08f, -1.0f) + lineTo(8.9f, 16.5f) + lineToRelative(0.05f, 0.3f) + curveTo(9.6f, 19.9f, 10.8f, 22.0f, 12.0f, 22.0f) + curveToRelative(0.21f, 0.0f, 0.42f, -0.07f, 0.63f, -0.2f) + arcTo(6.48f, 6.48f, 0.0f, false, true, 11.0f, 17.5f) + close() + moveTo(9.17f, 21.6f) + arcToRelative(13.93f, 13.93f, 0.0f, false, true, -1.8f, -5.1f) + horizontalLineToRelative(-4.3f) + arcToRelative(10.03f, 10.03f, 0.0f, false, false, 6.1f, 5.1f) + close() + moveTo(7.0f, 12.0f) + curveToRelative(0.0f, -0.68f, 0.02f, -1.35f, 0.07f, -2.0f) + lineTo(2.2f, 10.0f) + arcToRelative(10.05f, 10.05f, 0.0f, false, false, 0.26f, 5.0f) + horizontalLineToRelative(4.7f) + lineToRelative(-0.06f, -0.58f) + curveToRelative(-0.06f, -0.78f, -0.1f, -1.6f, -0.1f, -2.42f) + close() + moveTo(15.5f, 11.31f) + lineTo(15.42f, 10.0f) + lineTo(8.58f, 10.0f) + lineToRelative(-0.04f, 0.49f) + arcToRelative(25.97f, 25.97f, 0.0f, false, false, 0.14f, 4.5f) + horizontalLineToRelative(2.82f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, 4.0f, -3.68f) + close() + moveTo(22.0f, 12.0f) + curveToRelative(0.0f, -0.69f, -0.07f, -1.36f, -0.2f, -2.0f) + horizontalLineToRelative(-4.87f) + lineToRelative(0.04f, 0.65f) + lineToRelative(0.01f, 0.37f) + lineToRelative(0.52f, -0.02f) + curveToRelative(1.73f, 0.0f, 3.3f, 0.68f, 4.47f, 1.78f) + lineTo(22.0f, 12.0f) + close() + moveTo(21.37f, 8.5f) + arcToRelative(10.03f, 10.03f, 0.0f, false, false, -6.53f, -6.1f) + lineToRelative(0.1f, 0.18f) + lineToRelative(0.17f, 0.27f) + curveToRelative(0.8f, 1.42f, 1.38f, 3.38f, 1.67f, 5.65f) + horizontalLineToRelative(4.6f) + close() + moveTo(7.28f, 8.06f) + curveToRelative(0.35f, -2.33f, 1.0f, -4.3f, 1.89f, -5.66f) + lineToRelative(-0.13f, 0.04f) + lineToRelative(-0.3f, 0.1f) + arcTo(10.03f, 10.03f, 0.0f, false, false, 2.63f, 8.5f) + horizontalLineToRelative(4.6f) + lineToRelative(0.05f, -0.44f) + close() + moveTo(15.22f, 8.18f) + curveTo(14.65f, 4.54f, 13.32f, 2.0f, 12.0f, 2.0f) + curveToRelative(-1.35f, 0.0f, -2.72f, 2.69f, -3.26f, 6.5f) + horizontalLineToRelative(6.52f) + lineToRelative(-0.04f, -0.32f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(17.5f, 17.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(17.0f, 18.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + verticalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + verticalLineToRelative(2.5f) + close() + } + } + return _globeClock!! + } + +private var _globeClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlobeDesktop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlobeDesktop.kt new file mode 100644 index 00000000..3350e7f9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlobeDesktop.kt @@ -0,0 +1,98 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.GlobeDesktop: ImageVector + get() { + if (_globeDesktop != null) { + return _globeDesktop!! + } + _globeDesktop = fluentIcon(name = "Filled.GlobeDesktop") { + fluentPath { + moveTo(11.0f, 16.5f) + lineTo(8.9f, 16.5f) + lineToRelative(0.06f, 0.3f) + curveTo(9.6f, 19.9f, 10.8f, 22.0f, 12.0f, 22.0f) + curveToRelative(0.5f, 0.0f, 1.0f, -0.36f, 1.45f, -1.0f) + lineTo(13.0f, 21.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + verticalLineToRelative(-2.5f) + close() + moveTo(11.0f, 15.0f) + lineTo(8.67f, 15.0f) + arcToRelative(25.36f, 25.36f, 0.0f, false, true, -0.13f, -4.51f) + lineToRelative(0.04f, -0.49f) + horizontalLineToRelative(6.84f) + curveToRelative(0.05f, 0.65f, 0.08f, 1.31f, 0.08f, 2.0f) + lineTo(13.0f, 12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(1.0f) + close() + moveTo(22.0f, 12.0f) + horizontalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.45f, 0.0f, -0.9f, -0.03f, -1.34f) + lineToRelative(-0.04f, -0.66f) + horizontalLineToRelative(4.87f) + curveToRelative(0.13f, 0.65f, 0.2f, 1.32f, 0.2f, 2.0f) + close() + moveTo(7.37f, 16.5f) + horizontalLineToRelative(-4.3f) + lineToRelative(0.14f, 0.28f) + arcToRelative(10.03f, 10.03f, 0.0f, false, false, 5.95f, 4.81f) + arcToRelative(13.93f, 13.93f, 0.0f, false, true, -1.79f, -5.09f) + close() + moveTo(7.07f, 10.0f) + lineTo(2.2f, 10.0f) + arcToRelative(10.05f, 10.05f, 0.0f, false, false, 0.26f, 5.0f) + horizontalLineToRelative(4.7f) + lineToRelative(-0.06f, -0.58f) + arcTo(27.94f, 27.94f, 0.0f, false, true, 7.07f, 10.0f) + close() + moveTo(14.84f, 2.4f) + lineTo(14.94f, 2.58f) + curveToRelative(0.88f, 1.43f, 1.53f, 3.5f, 1.84f, 5.92f) + horizontalLineToRelative(4.6f) + arcToRelative(10.03f, 10.03f, 0.0f, false, false, -6.54f, -6.1f) + close() + moveTo(9.16f, 2.4f) + lineTo(9.04f, 2.44f) + arcTo(10.03f, 10.03f, 0.0f, false, false, 2.63f, 8.5f) + horizontalLineToRelative(4.59f) + lineToRelative(0.06f, -0.44f) + curveToRelative(0.35f, -2.32f, 1.0f, -4.3f, 1.88f, -5.65f) + close() + moveTo(15.21f, 8.19f) + curveTo(14.65f, 4.54f, 13.31f, 2.0f, 12.0f, 2.0f) + curveToRelative(-1.36f, 0.0f, -2.72f, 2.7f, -3.26f, 6.5f) + horizontalLineToRelative(6.52f) + lineToRelative(-0.05f, -0.31f) + close() + moveTo(12.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineToRelative(0.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineToRelative(-5.0f) + close() + } + } + return _globeDesktop!! + } + +private var _globeDesktop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlobeLocation.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlobeLocation.kt new file mode 100644 index 00000000..bba12f9d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlobeLocation.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.GlobeLocation: ImageVector + get() { + if (_globeLocation != null) { + return _globeLocation!! + } + _globeLocation = fluentIcon(name = "Filled.GlobeLocation") { + fluentPath { + moveTo(8.9f, 16.5f) + horizontalLineToRelative(3.62f) + lineToRelative(-0.02f, 0.5f) + curveToRelative(0.0f, 1.2f, 0.46f, 2.36f, 1.27f, 3.49f) + curveToRelative(-0.54f, 0.96f, -1.15f, 1.5f, -1.77f, 1.5f) + curveToRelative(-1.2f, 0.0f, -2.4f, -2.08f, -3.04f, -5.2f) + lineToRelative(-0.06f, -0.29f) + close() + moveTo(8.67f, 15.0f) + horizontalLineToRelative(4.2f) + arcToRelative(5.52f, 5.52f, 0.0f, false, true, 2.63f, -2.9f) + lineTo(15.5f, 12.0f) + curveToRelative(0.0f, -0.69f, -0.03f, -1.35f, -0.08f, -2.0f) + lineTo(8.58f, 10.0f) + lineToRelative(-0.04f, 0.49f) + arcTo(25.99f, 25.99f, 0.0f, false, false, 8.67f, 15.0f) + close() + moveTo(18.0f, 11.5f) + curveToRelative(1.54f, 0.0f, 2.94f, 0.63f, 3.94f, 1.66f) + arcTo(10.1f, 10.1f, 0.0f, false, false, 21.8f, 10.0f) + horizontalLineToRelative(-4.87f) + lineToRelative(0.04f, 0.66f) + lineToRelative(0.03f, 0.93f) + curveToRelative(0.32f, -0.06f, 0.66f, -0.09f, 1.0f, -0.09f) + close() + moveTo(3.07f, 16.5f) + horizontalLineToRelative(4.3f) + curveToRelative(0.37f, 2.08f, 0.98f, 3.85f, 1.8f, 5.1f) + arcToRelative(10.03f, 10.03f, 0.0f, false, true, -5.96f, -4.82f) + lineToRelative(-0.14f, -0.28f) + close() + moveTo(2.2f, 10.0f) + horizontalLineToRelative(4.87f) + arcToRelative(28.21f, 28.21f, 0.0f, false, false, 0.03f, 4.42f) + lineToRelative(0.06f, 0.58f) + horizontalLineToRelative(-4.7f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -0.26f, -5.0f) + close() + moveTo(14.94f, 2.58f) + lineTo(14.84f, 2.41f) + curveToRelative(3.01f, 0.89f, 5.44f, 3.16f, 6.53f, 6.09f) + horizontalLineToRelative(-4.59f) + curveToRelative(-0.31f, -2.42f, -0.96f, -4.5f, -1.84f, -5.92f) + close() + moveTo(9.04f, 2.44f) + lineTo(9.16f, 2.41f) + arcToRelative(14.57f, 14.57f, 0.0f, false, false, -1.88f, 5.65f) + lineToRelative(-0.06f, 0.44f) + horizontalLineToRelative(-4.6f) + arcToRelative(10.03f, 10.03f, 0.0f, false, true, 6.42f, -6.06f) + close() + moveTo(12.0f, 2.0f) + curveToRelative(1.32f, 0.0f, 2.65f, 2.54f, 3.21f, 6.19f) + lineToRelative(0.05f, 0.31f) + lineTo(8.74f, 8.5f) + curveTo(9.28f, 4.7f, 10.64f, 2.0f, 12.0f, 2.0f) + close() + moveTo(22.5f, 17.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, -9.0f, 0.0f) + curveToRelative(0.0f, 1.86f, 1.42f, 3.81f, 4.2f, 5.9f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.6f, 0.0f) + curveToRelative(2.78f, -2.09f, 4.2f, -4.04f, 4.2f, -5.9f) + close() + moveTo(16.5f, 17.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + } + } + return _globeLocation!! + } + +private var _globeLocation: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlobePerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlobePerson.kt new file mode 100644 index 00000000..f5e1d672 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlobePerson.kt @@ -0,0 +1,94 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.GlobePerson: ImageVector + get() { + if (_globePerson != null) { + return _globePerson!! + } + _globePerson = fluentIcon(name = "Filled.GlobePerson") { + fluentPath { + moveToRelative(15.1f, 16.5f) + lineToRelative(-0.13f, 0.62f) + arcTo(2.77f, 2.77f, 0.0f, false, false, 13.0f, 19.77f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 0.47f, 0.08f, 0.93f, 0.26f, 1.38f) + curveToRelative(-0.4f, 0.48f, -0.83f, 0.75f, -1.26f, 0.75f) + curveToRelative(-1.2f, 0.0f, -2.4f, -2.1f, -3.04f, -5.2f) + lineToRelative(-0.06f, -0.3f) + horizontalLineToRelative(6.2f) + close() + moveTo(15.0f, 14.5f) + curveToRelative(0.0f, -0.65f, 0.18f, -1.27f, 0.5f, -1.79f) + arcToRelative(26.01f, 26.01f, 0.0f, false, false, -0.08f, -2.71f) + lineTo(8.58f, 10.0f) + lineToRelative(-0.04f, 0.49f) + arcTo(25.99f, 25.99f, 0.0f, false, false, 8.67f, 15.0f) + horizontalLineToRelative(6.37f) + arcToRelative(3.52f, 3.52f, 0.0f, false, true, -0.04f, -0.5f) + close() + moveTo(18.5f, 11.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 3.38f, 2.58f) + arcTo(10.08f, 10.08f, 0.0f, false, false, 21.8f, 10.0f) + horizontalLineToRelative(-4.87f) + lineToRelative(0.04f, 0.66f) + lineToRelative(0.02f, 0.68f) + curveToRelative(0.46f, -0.22f, 0.97f, -0.34f, 1.51f, -0.34f) + close() + moveTo(3.07f, 16.5f) + horizontalLineToRelative(4.3f) + curveToRelative(0.37f, 2.08f, 0.98f, 3.85f, 1.8f, 5.1f) + arcToRelative(10.03f, 10.03f, 0.0f, false, true, -5.96f, -4.82f) + lineToRelative(-0.14f, -0.28f) + close() + moveTo(2.2f, 10.0f) + horizontalLineToRelative(4.87f) + arcToRelative(28.2f, 28.2f, 0.0f, false, false, 0.03f, 4.42f) + lineToRelative(0.06f, 0.58f) + horizontalLineToRelative(-4.7f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -0.26f, -5.0f) + close() + moveTo(14.94f, 2.58f) + lineTo(14.84f, 2.41f) + curveToRelative(3.01f, 0.89f, 5.44f, 3.16f, 6.53f, 6.09f) + horizontalLineToRelative(-4.59f) + curveToRelative(-0.31f, -2.42f, -0.96f, -4.5f, -1.84f, -5.92f) + close() + moveTo(9.04f, 2.44f) + lineTo(9.16f, 2.41f) + arcToRelative(14.57f, 14.57f, 0.0f, false, false, -1.88f, 5.65f) + lineToRelative(-0.06f, 0.44f) + horizontalLineToRelative(-4.6f) + arcToRelative(10.03f, 10.03f, 0.0f, false, true, 6.42f, -6.06f) + close() + moveTo(12.0f, 2.0f) + curveToRelative(1.32f, 0.0f, 2.65f, 2.54f, 3.21f, 6.19f) + lineToRelative(0.05f, 0.31f) + lineTo(8.74f, 8.5f) + curveTo(9.28f, 4.7f, 10.64f, 2.0f, 12.0f, 2.0f) + close() + moveTo(21.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(23.0f, 19.88f) + curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) + reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _globePerson!! + } + +private var _globePerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlobeSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlobeSearch.kt new file mode 100644 index 00000000..a72f2665 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlobeSearch.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.GlobeSearch: ImageVector + get() { + if (_globeSearch != null) { + return _globeSearch!! + } + _globeSearch = fluentIcon(name = "Filled.GlobeSearch") { + fluentPath { + moveTo(3.44f, 9.96f) + arcToRelative(4.93f, 4.93f, 0.0f, false, false, 6.23f, 7.57f) + lineToRelative(4.26f, 4.25f) + arcToRelative(0.77f, 0.77f, 0.0f, false, false, 1.17f, -1.0f) + lineToRelative(-0.08f, -0.09f) + lineToRelative(-4.21f, -4.22f) + arcToRelative(4.93f, 4.93f, 0.0f, false, false, -7.37f, -6.51f) + close() + moveTo(16.65f, 16.5f) + arcToRelative(17.14f, 17.14f, 0.0f, false, true, -0.95f, 3.45f) + lineToRelative(0.03f, 0.03f) + lineToRelative(0.13f, 0.14f) + curveToRelative(0.22f, 0.3f, 0.34f, 0.63f, 0.37f, 0.96f) + arcToRelative(10.03f, 10.03f, 0.0f, false, false, 4.73f, -4.58f) + horizontalLineToRelative(-4.3f) + close() + moveTo(12.25f, 16.5f) + lineTo(14.53f, 18.79f) + curveToRelative(0.2f, -0.6f, 0.39f, -1.27f, 0.53f, -2.0f) + lineToRelative(0.06f, -0.29f) + horizontalLineToRelative(-2.87f) + close() + moveTo(9.31f, 11.05f) + arcToRelative(3.38f, 3.38f, 0.0f, true, true, -4.78f, 4.78f) + arcToRelative(3.38f, 3.38f, 0.0f, false, true, 4.78f, -4.78f) + close() + moveTo(15.45f, 10.0f) + horizontalLineToRelative(-3.7f) + arcToRelative(5.94f, 5.94f, 0.0f, false, true, 0.9f, 5.0f) + horizontalLineToRelative(2.7f) + arcToRelative(25.35f, 25.35f, 0.0f, false, false, 0.13f, -4.51f) + lineToRelative(-0.03f, -0.49f) + close() + moveTo(16.95f, 10.0f) + arcToRelative(28.18f, 28.18f, 0.0f, false, true, -0.03f, 4.42f) + lineToRelative(-0.05f, 0.58f) + horizontalLineToRelative(4.7f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.26f, -5.0f) + horizontalLineToRelative(-4.87f) + close() + moveTo(14.86f, 2.4f) + arcToRelative(14.56f, 14.56f, 0.0f, false, true, 1.89f, 5.66f) + lineToRelative(0.06f, 0.44f) + horizontalLineToRelative(4.59f) + arcToRelative(10.03f, 10.03f, 0.0f, false, false, -6.11f, -5.96f) + lineToRelative(-0.3f, -0.1f) + lineToRelative(-0.13f, -0.03f) + close() + moveTo(12.03f, 2.0f) + curveToRelative(-1.28f, 0.0f, -2.57f, 2.38f, -3.16f, 5.84f) + curveToRelative(0.46f, 0.16f, 0.91f, 0.38f, 1.33f, 0.66f) + horizontalLineToRelative(5.09f) + curveToRelative(-0.54f, -3.8f, -1.9f, -6.5f, -3.26f, -6.5f) + close() + moveTo(9.19f, 2.4f) + curveToRelative(-3.02f, 0.9f, -5.44f, 3.17f, -6.54f, 6.1f) + horizontalLineToRelative(1.0f) + arcToRelative(5.92f, 5.92f, 0.0f, false, true, 3.74f, -0.97f) + curveToRelative(0.32f, -1.86f, 0.85f, -3.47f, 1.53f, -4.68f) + lineToRelative(0.16f, -0.27f) + lineToRelative(0.1f, -0.17f) + close() + } + } + return _globeSearch!! + } + +private var _globeSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlobeShield.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlobeShield.kt new file mode 100644 index 00000000..e8d7aea5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlobeShield.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.GlobeShield: ImageVector + get() { + if (_globeShield != null) { + return _globeShield!! + } + _globeShield = fluentIcon(name = "Filled.GlobeShield") { + fluentPath { + moveTo(8.9f, 16.5f) + lineTo(12.0f, 16.5f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 1.73f, 0.6f, 3.07f, 1.38f, 4.09f) + curveToRelative(-0.44f, 0.58f, -0.9f, 0.9f, -1.38f, 0.9f) + curveToRelative(-1.2f, 0.0f, -2.4f, -2.08f, -3.04f, -5.2f) + lineToRelative(-0.06f, -0.29f) + close() + moveTo(8.67f, 15.0f) + lineTo(12.0f, 15.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.85f, 0.68f, -1.45f, 1.4f, -1.52f) + arcToRelative(5.69f, 5.69f, 0.0f, false, false, 2.1f, -0.64f) + curveToRelative(-0.02f, -0.46f, -0.04f, -0.9f, -0.08f, -1.34f) + lineTo(8.58f, 10.0f) + lineToRelative(-0.04f, 0.49f) + arcTo(25.99f, 25.99f, 0.0f, false, false, 8.67f, 15.0f) + close() + moveTo(21.8f, 10.0f) + curveToRelative(0.13f, 0.61f, 0.2f, 1.24f, 0.2f, 1.9f) + arcToRelative(7.08f, 7.08f, 0.0f, false, true, -2.96f, -1.55f) + curveToRelative(-0.21f, -0.18f, -0.46f, -0.3f, -0.71f, -0.35f) + horizontalLineToRelative(3.47f) + close() + moveTo(3.07f, 16.5f) + horizontalLineToRelative(4.3f) + curveToRelative(0.37f, 2.08f, 0.98f, 3.85f, 1.8f, 5.1f) + arcToRelative(10.03f, 10.03f, 0.0f, false, true, -5.96f, -4.82f) + lineToRelative(-0.14f, -0.28f) + close() + moveTo(2.2f, 10.0f) + horizontalLineToRelative(4.87f) + arcToRelative(28.21f, 28.21f, 0.0f, false, false, 0.03f, 4.42f) + lineToRelative(0.06f, 0.58f) + horizontalLineToRelative(-4.7f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -0.26f, -5.0f) + close() + moveTo(14.94f, 2.58f) + lineTo(14.84f, 2.41f) + curveToRelative(3.01f, 0.89f, 5.44f, 3.16f, 6.53f, 6.09f) + horizontalLineToRelative(-4.59f) + curveToRelative(-0.31f, -2.42f, -0.96f, -4.5f, -1.84f, -5.92f) + close() + moveTo(9.04f, 2.44f) + lineTo(9.16f, 2.41f) + arcToRelative(14.57f, 14.57f, 0.0f, false, false, -1.88f, 5.65f) + lineToRelative(-0.06f, 0.44f) + horizontalLineToRelative(-4.6f) + arcToRelative(10.03f, 10.03f, 0.0f, false, true, 6.42f, -6.06f) + close() + moveTo(12.0f, 2.0f) + curveToRelative(1.32f, 0.0f, 2.65f, 2.54f, 3.21f, 6.19f) + lineToRelative(0.05f, 0.31f) + lineTo(8.74f, 8.5f) + curveTo(9.28f, 4.7f, 10.64f, 2.0f, 12.0f, 2.0f) + close() + moveTo(22.5f, 12.98f) + arcToRelative(7.7f, 7.7f, 0.0f, false, true, -4.11f, -1.87f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.77f, 0.0f) + curveToRelative(-0.69f, 0.58f, -2.21f, 1.7f, -4.12f, 1.87f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, -0.5f, 0.52f) + lineTo(13.0f, 17.0f) + curveToRelative(0.0f, 4.22f, 4.1f, 5.72f, 4.87f, 5.96f) + curveToRelative(0.09f, 0.03f, 0.17f, 0.03f, 0.26f, 0.0f) + curveTo(18.9f, 22.72f, 23.0f, 21.22f, 23.0f, 17.0f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.28f, -0.22f, -0.5f, -0.5f, -0.52f) + close() + } + } + return _globeShield!! + } + +private var _globeShield: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlobeSurface.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlobeSurface.kt new file mode 100644 index 00000000..f5b997b9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlobeSurface.kt @@ -0,0 +1,105 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.GlobeSurface: ImageVector + get() { + if (_globeSurface != null) { + return _globeSurface!! + } + _globeSurface = fluentIcon(name = "Filled.GlobeSurface") { + fluentPath { + moveTo(9.68f, 7.5f) + curveToRelative(0.16f, -1.26f, 0.41f, -2.39f, 0.73f, -3.3f) + curveToRelative(0.28f, -0.78f, 0.6f, -1.37f, 0.9f, -1.74f) + curveToRelative(0.32f, -0.38f, 0.55f, -0.46f, 0.69f, -0.46f) + curveToRelative(0.14f, 0.0f, 0.37f, 0.08f, 0.69f, 0.46f) + curveToRelative(0.3f, 0.37f, 0.62f, 0.96f, 0.9f, 1.75f) + curveToRelative(0.32f, 0.9f, 0.57f, 2.03f, 0.73f, 3.29f) + lineTo(9.68f, 7.5f) + close() + moveTo(8.99f, 3.71f) + curveToRelative(0.18f, -0.5f, 0.38f, -0.96f, 0.6f, -1.36f) + arcTo(8.52f, 8.52f, 0.0f, false, false, 4.04f, 7.5f) + horizontalLineToRelative(4.13f) + curveToRelative(0.17f, -1.43f, 0.45f, -2.72f, 0.82f, -3.79f) + close() + moveTo(15.01f, 3.71f) + curveToRelative(-0.18f, -0.5f, -0.38f, -0.96f, -0.6f, -1.36f) + arcToRelative(8.52f, 8.52f, 0.0f, false, true, 5.55f, 5.15f) + horizontalLineToRelative(-4.13f) + arcToRelative(17.85f, 17.85f, 0.0f, false, false, -0.82f, -3.79f) + close() + moveTo(15.96f, 9.0f) + horizontalLineToRelative(4.4f) + arcToRelative(8.55f, 8.55f, 0.0f, false, true, 0.0f, 3.0f) + horizontalLineToRelative(-4.4f) + arcToRelative(27.08f, 27.08f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(15.83f, 13.5f) + horizontalLineToRelative(4.13f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, -1.48f, 2.5f) + lineToRelative(-0.02f, 0.02f) + arcToRelative(8.55f, 8.55f, 0.0f, false, true, -4.05f, 2.63f) + curveToRelative(0.22f, -0.4f, 0.42f, -0.86f, 0.6f, -1.36f) + curveToRelative(0.37f, -1.07f, 0.65f, -2.36f, 0.82f, -3.79f) + close() + moveTo(12.69f, 18.54f) + curveToRelative(-0.32f, 0.38f, -0.55f, 0.46f, -0.69f, 0.46f) + curveToRelative(-0.14f, 0.0f, -0.37f, -0.08f, -0.69f, -0.46f) + arcToRelative(5.82f, 5.82f, 0.0f, false, true, -0.9f, -1.75f) + curveToRelative(-0.32f, -0.9f, -0.57f, -2.03f, -0.73f, -3.29f) + horizontalLineToRelative(4.64f) + arcToRelative(16.13f, 16.13f, 0.0f, false, true, -0.73f, 3.3f) + curveToRelative(-0.28f, 0.78f, -0.6f, 1.37f, -0.9f, 1.74f) + close() + moveTo(7.15f, 17.48f) + curveToRelative(0.74f, 0.52f, 1.56f, 0.91f, 2.44f, 1.17f) + arcTo(9.2f, 9.2f, 0.0f, false, true, 9.0f, 17.3f) + arcToRelative(17.85f, 17.85f, 0.0f, false, true, -0.82f, -3.79f) + lineTo(4.04f, 13.51f) + arcTo(8.5f, 8.5f, 0.0f, false, false, 5.52f, 16.0f) + lineToRelative(0.02f, 0.02f) + arcToRelative(8.55f, 8.55f, 0.0f, false, false, 1.61f, 1.46f) + close() + moveTo(8.05f, 12.0f) + lineTo(3.62f, 12.0f) + arcToRelative(8.55f, 8.55f, 0.0f, false, true, 0.0f, -3.0f) + horizontalLineToRelative(4.41f) + arcToRelative(27.02f, 27.02f, 0.0f, false, false, 0.0f, 3.0f) + close() + moveTo(9.55f, 9.0f) + arcToRelative(25.47f, 25.47f, 0.0f, false, false, 0.0f, 3.0f) + horizontalLineToRelative(4.9f) + arcToRelative(25.5f, 25.5f, 0.0f, false, false, 0.0f, -3.0f) + horizontalLineToRelative(-4.9f) + close() + moveTo(4.0f, 16.0f) + horizontalLineToRelative(0.25f) + curveToRelative(0.4f, 0.55f, 0.84f, 1.05f, 1.33f, 1.5f) + lineTo(4.57f, 17.5f) + lineToRelative(-0.83f, 3.0f) + horizontalLineToRelative(16.52f) + lineToRelative(-0.83f, -3.0f) + horizontalLineToRelative(-1.0f) + curveToRelative(0.48f, -0.45f, 0.93f, -0.95f, 1.32f, -1.5f) + lineTo(20.0f, 16.0f) + curveToRelative(0.34f, 0.0f, 0.63f, 0.22f, 0.72f, 0.55f) + lineToRelative(1.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.72f, 0.95f) + lineTo(2.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.72f, -0.95f) + lineToRelative(1.25f, -4.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 4.0f, 16.0f) + close() + } + } + return _globeSurface!! + } + +private var _globeSurface: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlobeVideo.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlobeVideo.kt new file mode 100644 index 00000000..5e156b8f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GlobeVideo.kt @@ -0,0 +1,95 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.GlobeVideo: ImageVector + get() { + if (_globeVideo != null) { + return _globeVideo!! + } + _globeVideo = fluentIcon(name = "Filled.GlobeVideo") { + fluentPath { + moveTo(8.9f, 16.5f) + lineTo(11.0f, 16.5f) + verticalLineToRelative(5.02f) + curveToRelative(-0.83f, -0.78f, -1.58f, -2.5f, -2.04f, -4.73f) + lineToRelative(-0.05f, -0.29f) + close() + moveTo(8.68f, 15.0f) + horizontalLineToRelative(2.38f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.45f, -2.0f) + horizontalLineToRelative(1.98f) + arcToRelative(26.1f, 26.1f, 0.0f, false, false, -0.06f, -3.0f) + lineTo(8.58f, 10.0f) + lineToRelative(-0.04f, 0.49f) + arcTo(25.99f, 25.99f, 0.0f, false, false, 8.67f, 15.0f) + close() + moveTo(21.68f, 13.69f) + lineTo(21.88f, 13.57f) + arcTo(10.08f, 10.08f, 0.0f, false, false, 21.8f, 10.0f) + horizontalLineToRelative(-4.87f) + lineToRelative(0.04f, 0.66f) + arcToRelative(28.55f, 28.55f, 0.0f, false, true, 0.01f, 2.34f) + horizontalLineToRelative(1.52f) + curveToRelative(0.96f, 0.0f, 1.79f, 0.54f, 2.2f, 1.33f) + lineToRelative(0.97f, -0.64f) + close() + moveTo(3.07f, 16.5f) + horizontalLineToRelative(4.3f) + curveToRelative(0.37f, 2.08f, 0.99f, 3.85f, 1.8f, 5.1f) + arcToRelative(10.03f, 10.03f, 0.0f, false, true, -5.96f, -4.82f) + lineToRelative(-0.14f, -0.28f) + close() + moveTo(2.2f, 10.0f) + horizontalLineToRelative(4.87f) + arcToRelative(28.21f, 28.21f, 0.0f, false, false, 0.03f, 4.42f) + lineToRelative(0.06f, 0.58f) + horizontalLineToRelative(-4.7f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -0.26f, -5.0f) + close() + moveTo(14.94f, 2.58f) + lineTo(14.84f, 2.4f) + curveToRelative(3.01f, 0.9f, 5.44f, 3.17f, 6.53f, 6.1f) + horizontalLineToRelative(-4.59f) + curveToRelative(-0.31f, -2.42f, -0.96f, -4.5f, -1.84f, -5.92f) + close() + moveTo(9.04f, 2.44f) + lineTo(9.16f, 2.4f) + arcToRelative(14.57f, 14.57f, 0.0f, false, false, -1.88f, 5.66f) + lineToRelative(-0.06f, 0.44f) + lineTo(2.63f, 8.5f) + arcToRelative(10.03f, 10.03f, 0.0f, false, true, 6.41f, -6.06f) + close() + moveTo(12.0f, 2.0f) + curveToRelative(1.32f, 0.0f, 2.65f, 2.54f, 3.21f, 6.18f) + lineToRelative(0.05f, 0.32f) + lineTo(8.74f, 8.5f) + curveTo(9.28f, 4.69f, 10.64f, 2.0f, 12.0f, 2.0f) + close() + moveTo(12.0f, 15.5f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(5.0f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(0.5f) + lineToRelative(2.22f, -1.48f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.78f, 0.41f) + verticalLineToRelative(7.14f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.78f, 0.41f) + lineTo(20.0f, 21.0f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + verticalLineToRelative(-6.0f) + close() + } + } + return _globeVideo!! + } + +private var _globeVideo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Grid.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Grid.kt new file mode 100644 index 00000000..e61f4302 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Grid.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Grid: ImageVector + get() { + if (_grid != null) { + return _grid!! + } + _grid = fluentIcon(name = "Filled.Grid") { + fluentPath { + moveTo(8.75f, 13.0f) + curveTo(9.99f, 13.0f, 11.0f, 14.0f, 11.0f, 15.25f) + verticalLineToRelative(3.5f) + curveTo(11.0f, 19.99f, 10.0f, 21.0f, 8.75f, 21.0f) + horizontalLineToRelative(-3.5f) + curveTo(4.01f, 21.0f, 3.0f, 20.0f, 3.0f, 18.75f) + verticalLineToRelative(-3.5f) + curveTo(3.0f, 14.01f, 4.0f, 13.0f, 5.25f, 13.0f) + horizontalLineToRelative(3.5f) + close() + moveTo(18.75f, 13.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-3.5f) + curveTo(14.01f, 21.0f, 13.0f, 20.0f, 13.0f, 18.75f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(3.5f) + close() + moveTo(8.75f, 3.0f) + curveTo(9.99f, 3.0f, 11.0f, 4.0f, 11.0f, 5.25f) + verticalLineToRelative(3.5f) + curveTo(11.0f, 9.99f, 10.0f, 11.0f, 8.75f, 11.0f) + horizontalLineToRelative(-3.5f) + curveTo(4.01f, 11.0f, 3.0f, 10.0f, 3.0f, 8.75f) + verticalLineToRelative(-3.5f) + curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(3.5f) + close() + moveTo(18.75f, 3.0f) + curveTo(19.99f, 3.0f, 21.0f, 4.0f, 21.0f, 5.25f) + verticalLineToRelative(3.5f) + curveTo(21.0f, 9.99f, 20.0f, 11.0f, 18.75f, 11.0f) + horizontalLineToRelative(-3.5f) + curveTo(14.01f, 11.0f, 13.0f, 10.0f, 13.0f, 8.75f) + verticalLineToRelative(-3.5f) + curveTo(13.0f, 4.01f, 14.0f, 3.0f, 15.25f, 3.0f) + horizontalLineToRelative(3.5f) + close() + } + } + return _grid!! + } + +private var _grid: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GridCircles.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GridCircles.kt new file mode 100644 index 00000000..bceb637c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GridCircles.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.GridCircles: ImageVector + get() { + if (_gridCircles != null) { + return _gridCircles!! + } + _gridCircles = fluentIcon(name = "Filled.GridCircles") { + fluentPath { + moveTo(7.0f, 11.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, -8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 8.0f) + close() + moveTo(17.0f, 11.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, -8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 8.0f) + close() + moveTo(11.0f, 17.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, -8.0f, 0.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 8.0f, 0.0f) + close() + moveTo(17.0f, 21.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, -8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 8.0f) + close() + } + } + return _gridCircles!! + } + +private var _gridCircles: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GridDots.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GridDots.kt new file mode 100644 index 00000000..c4916dda --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GridDots.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.GridDots: ImageVector + get() { + if (_gridDots != null) { + return _gridDots!! + } + _gridDots = fluentIcon(name = "Filled.GridDots") { + fluentPath { + moveTo(12.0f, 17.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) + close() + moveTo(19.0f, 17.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) + close() + moveTo(5.0f, 17.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) + close() + moveTo(12.0f, 10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) + close() + moveTo(19.0f, 10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) + close() + moveTo(5.0f, 10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) + close() + moveTo(12.0f, 3.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) + close() + moveTo(19.0f, 3.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) + close() + moveTo(5.0f, 3.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) + close() + } + } + return _gridDots!! + } + +private var _gridDots: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Group.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Group.kt new file mode 100644 index 00000000..4062f5a5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Group.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Group: ImageVector + get() { + if (_group != null) { + return _group!! + } + _group = fluentIcon(name = "Filled.Group") { + fluentPath { + moveTo(5.0f, 7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) + close() + moveTo(19.0f, 7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) + close() + moveTo(21.0f, 19.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(5.0f, 21.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) + close() + moveTo(7.83f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -2.0f) + horizontalLineToRelative(4.67f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 15.0f, 6.5f) + lineTo(15.0f, 9.0f) + horizontalLineToRelative(2.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) + verticalLineToRelative(4.67f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -2.0f, 0.0f) + lineTo(18.0f, 11.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + lineTo(15.0f, 11.0f) + verticalLineToRelative(1.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.5f, 2.5f) + lineTo(11.0f, 15.0f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(4.67f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 2.0f) + lineTo(11.5f, 20.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 9.0f, 17.5f) + lineTo(9.0f, 15.0f) + lineTo(6.5f, 15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 12.5f) + lineTo(4.0f, 7.83f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 2.0f, 0.0f) + verticalLineToRelative(4.67f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + lineTo(9.0f, 13.0f) + verticalLineToRelative(-1.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 11.5f, 9.0f) + lineTo(13.0f, 9.0f) + lineTo(13.0f, 6.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + lineTo(7.83f, 6.0f) + close() + moveTo(13.0f, 12.5f) + lineTo(13.0f, 11.0f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + lineTo(11.0f, 13.0f) + horizontalLineToRelative(1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + close() + } + } + return _group!! + } + +private var _group: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GroupDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GroupDismiss.kt new file mode 100644 index 00000000..c59c367a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GroupDismiss.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.GroupDismiss: ImageVector + get() { + if (_groupDismiss != null) { + return _groupDismiss!! + } + _groupDismiss = fluentIcon(name = "Filled.GroupDismiss") { + fluentPath { + moveTo(7.0f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(21.0f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(7.0f, 19.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(8.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.17f, 1.0f) + horizontalLineToRelative(4.67f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + lineTo(13.0f, 9.0f) + horizontalLineToRelative(-1.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 9.0f, 11.5f) + lineTo(9.0f, 13.0f) + lineTo(6.5f, 13.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(6.0f, 7.83f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.0f, 0.0f) + verticalLineToRelative(4.67f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 15.0f) + lineTo(9.0f, 15.0f) + verticalLineToRelative(2.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, 2.5f) + arcToRelative(6.48f, 6.48f, 0.0f, false, true, -0.5f, -2.5f) + verticalLineToRelative(-6.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + curveToRelative(0.89f, 0.0f, 1.73f, 0.18f, 2.5f, 0.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 17.5f, 9.0f) + lineTo(15.0f, 9.0f) + lineTo(15.0f, 6.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 12.5f, 4.0f) + lineTo(7.83f, 4.0f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 8.0f, 5.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-1.64f, -1.65f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.65f, 1.64f) + lineToRelative(-1.65f, -1.64f) + close() + } + } + return _groupDismiss!! + } + +private var _groupDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GroupList.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GroupList.kt new file mode 100644 index 00000000..6c2515f5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GroupList.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.GroupList: ImageVector + get() { + if (_groupList != null) { + return _groupList!! + } + _groupList = fluentIcon(name = "Filled.GroupList") { + fluentPath { + moveTo(3.0f, 12.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(4.0f, 14.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(7.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + lineTo(3.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + lineTo(2.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) + lineTo(3.0f, 12.0f) + close() + moveTo(21.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(9.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(21.0f, 17.0f) + close() + moveTo(21.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(9.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(21.0f, 14.0f) + close() + moveTo(6.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(4.0f, 4.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(7.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 0.99f) + lineTo(3.0f, 10.99f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + lineTo(2.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) + lineTo(6.0f, 2.0f) + close() + moveTo(21.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(9.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(21.0f, 7.0f) + close() + moveTo(21.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(9.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(21.0f, 4.0f) + close() + } + } + return _groupList!! + } + +private var _groupList: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GroupReturn.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GroupReturn.kt new file mode 100644 index 00000000..82c8ef9b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GroupReturn.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.GroupReturn: ImageVector + get() { + if (_groupReturn != null) { + return _groupReturn!! + } + _groupReturn = fluentIcon(name = "Filled.GroupReturn") { + fluentPath { + moveTo(7.0f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(21.0f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(7.0f, 19.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(8.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.17f, 1.0f) + horizontalLineToRelative(4.67f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + lineTo(13.0f, 9.0f) + horizontalLineToRelative(-1.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 9.0f, 11.5f) + lineTo(9.0f, 13.0f) + lineTo(6.5f, 13.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(6.0f, 7.83f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.0f, 0.0f) + verticalLineToRelative(4.67f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 15.0f) + lineTo(9.0f, 15.0f) + verticalLineToRelative(2.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, 2.5f) + arcToRelative(6.48f, 6.48f, 0.0f, false, true, -0.5f, -2.5f) + verticalLineToRelative(-6.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + curveToRelative(0.89f, 0.0f, 1.73f, 0.18f, 2.5f, 0.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 17.5f, 9.0f) + lineTo(15.0f, 9.0f) + lineTo(15.0f, 6.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 12.5f, 4.0f) + lineTo(7.83f, 4.0f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 8.0f, 5.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.7f, 16.0f) + lineToRelative(0.65f, -0.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(1.5f, 1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-0.64f, -0.65f) + horizontalLineToRelative(2.04f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(0.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-0.25f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-2.04f) + close() + } + } + return _groupReturn!! + } + +private var _groupReturn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Guardian.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Guardian.kt new file mode 100644 index 00000000..a30d7cb5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Guardian.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Guardian: ImageVector + get() { + if (_guardian != null) { + return _guardian!! + } + _guardian = fluentIcon(name = "Filled.Guardian") { + fluentPath { + moveTo(10.5f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) + close() + moveTo(16.5f, 10.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) + close() + moveTo(13.4f, 10.75f) + curveToRelative(0.06f, 0.24f, 0.1f, 0.49f, 0.1f, 0.75f) + verticalLineToRelative(3.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.5f, 1.94f) + lineTo(11.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -3.25f, 1.56f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 4.5f, 20.0f) + verticalLineToRelative(-3.56f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 2.0f, 14.5f) + verticalLineToRelative(-3.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, -2.75f) + horizontalLineToRelative(6.0f) + curveToRelative(1.26f, 0.0f, 2.32f, 0.85f, 2.65f, 2.0f) + close() + moveTo(14.43f, 10.75f) + horizontalLineToRelative(5.32f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.75f) + verticalLineToRelative(1.75f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.5f, 1.94f) + lineTo(20.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -3.25f, 1.56f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 13.5f, 20.0f) + verticalLineToRelative(-3.26f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 1.0f, -2.24f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -0.26f, -0.03f, -0.5f, -0.07f, -0.75f) + close() + } + } + return _guardian!! + } + +private var _guardian: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Guest.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Guest.kt new file mode 100644 index 00000000..21e3ba0c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Guest.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Guest: ImageVector + get() { + if (_guest != null) { + return _guest!! + } + _guest = fluentIcon(name = "Filled.Guest") { + fluentPath { + moveTo(13.75f, 2.0f) + curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) + horizontalLineToRelative(1.76f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.25f) + lineTo(6.25f, 22.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) + lineTo(4.0f, 19.76f) + lineTo(4.0f, 6.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(6.25f, 4.0f) + horizontalLineToRelative(1.76f) + curveToRelative(0.13f, -1.12f, 1.08f, -2.0f, 2.24f, -2.0f) + horizontalLineToRelative(3.5f) + close() + moveTo(13.75f, 6.5f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.78f, 0.0f, -1.46f, -0.4f, -1.87f, -1.0f) + lineTo(6.25f, 5.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.75f) + horizontalLineToRelative(11.6f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.64f) + lineToRelative(0.01f, -0.1f) + lineTo(18.5f, 6.24f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-2.13f) + curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) + close() + moveTo(14.75f, 14.0f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 1.84f, -1.47f, 2.75f, -4.0f, 2.75f) + curveToRelative(-2.53f, 0.0f, -4.0f, -0.91f, -4.0f, -2.76f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -0.68f, 0.56f, -1.24f, 1.25f, -1.24f) + horizontalLineToRelative(5.5f) + close() + moveTo(12.0f, 8.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + moveTo(13.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + close() + } + } + return _guest!! + } + +private var _guest: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GuestAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GuestAdd.kt new file mode 100644 index 00000000..0680bc63 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/GuestAdd.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.GuestAdd: ImageVector + get() { + if (_guestAdd != null) { + return _guestAdd!! + } + _guestAdd = fluentIcon(name = "Filled.GuestAdd") { + fluentPath { + moveTo(12.75f, 2.0f) + curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) + horizontalLineToRelative(1.76f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(4.92f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -0.17f) + lineTo(17.5f, 6.25f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-2.13f) + curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.78f, 0.0f, -1.46f, -0.4f, -1.87f, -1.0f) + lineTo(5.25f, 5.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.75f) + horizontalLineToRelative(6.58f) + curveToRelative(0.3f, 0.56f, 0.66f, 1.06f, 1.08f, 1.5f) + lineTo(5.25f, 22.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) + lineTo(3.0f, 19.76f) + lineTo(3.0f, 6.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(5.25f, 4.0f) + horizontalLineToRelative(1.76f) + curveToRelative(0.13f, -1.12f, 1.08f, -2.0f, 2.24f, -2.0f) + horizontalLineToRelative(3.5f) + close() + moveTo(12.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + close() + moveTo(8.25f, 14.0f) + horizontalLineToRelative(3.77f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, -0.94f, 4.5f) + lineTo(11.0f, 18.5f) + curveToRelative(-2.53f, 0.0f, -4.0f, -0.91f, -4.0f, -2.76f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -0.68f, 0.56f, -1.24f, 1.25f, -1.24f) + close() + moveTo(11.0f, 8.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _guestAdd!! + } + +private var _guestAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Guitar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Guitar.kt new file mode 100644 index 00000000..97b32e57 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Guitar.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Guitar: ImageVector + get() { + if (_guitar != null) { + return _guitar!! + } + _guitar = fluentIcon(name = "Filled.Guitar") { + fluentPath { + moveToRelative(18.5f, 3.43f) + lineToRelative(1.18f, -1.18f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, 0.0f) + lineToRelative(0.7f, 0.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.42f) + lineToRelative(-1.18f, 1.18f) + lineToRelative(-2.12f, -2.12f) + close() + moveTo(17.42f, 4.5f) + lineToRelative(-3.82f, 3.82f) + lineToRelative(-0.16f, -0.16f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -4.4f, 0.72f) + lineToRelative(-0.42f, 0.83f) + arcToRelative(0.6f, 0.6f, 0.0f, false, true, -0.66f, 0.32f) + lineToRelative(-0.07f, -0.01f) + arcToRelative(4.7f, 4.7f, 0.0f, false, false, -4.7f, 1.8f) + arcToRelative(6.03f, 6.03f, 0.0f, false, false, 0.57f, 7.87f) + lineToRelative(0.6f, 0.6f) + arcToRelative(6.03f, 6.03f, 0.0f, false, false, 7.87f, 0.56f) + arcToRelative(4.7f, 4.7f, 0.0f, false, false, 1.8f, -4.7f) + lineToRelative(-0.02f, -0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.32f, -0.67f) + lineToRelative(0.84f, -0.41f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 0.71f, -4.4f) + lineToRelative(-0.16f, -0.17f) + lineToRelative(3.82f, -3.82f) + lineToRelative(-2.12f, -2.12f) + close() + moveTo(9.42f, 14.57f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 2.13f, -2.12f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.12f, 2.12f) + close() + } + } + return _guitar!! + } + +private var _guitar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HandDraw.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HandDraw.kt new file mode 100644 index 00000000..a56f2032 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HandDraw.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.HandDraw: ImageVector + get() { + if (_handDraw != null) { + return _handDraw!! + } + _handDraw = fluentIcon(name = "Filled.HandDraw") { + fluentPath { + moveTo(19.4f, 2.6f) + curveToRelative(0.32f, 0.25f, 0.6f, 0.63f, 0.6f, 1.15f) + curveToRelative(0.0f, 0.78f, -0.5f, 1.3f, -1.07f, 1.6f) + arcToRelative(6.1f, 6.1f, 0.0f, false, true, -2.0f, 0.53f) + curveToRelative(-1.46f, 0.18f, -3.35f, 0.17f, -5.2f, 0.15f) + horizontalLineToRelative(-0.24f) + arcToRelative(37.54f, 37.54f, 0.0f, false, false, -5.2f, 0.19f) + curveToRelative(-0.7f, 0.1f, -1.2f, 0.24f, -1.5f, 0.42f) + curveToRelative(-0.27f, 0.15f, -0.29f, 0.27f, -0.29f, 0.36f) + curveToRelative(0.0f, 0.01f, 0.02f, 0.04f, 0.08f, 0.08f) + curveToRelative(0.1f, 0.1f, 0.31f, 0.22f, 0.63f, 0.33f) + arcToRelative(11.18f, 11.18f, 0.0f, false, false, 2.79f, 0.5f) + verticalLineToRelative(1.5f) + lineToRelative(-0.45f, -0.04f) + curveToRelative(-0.98f, -0.1f, -2.02f, -0.26f, -2.84f, -0.55f) + curveToRelative(-0.4f, -0.14f, -0.8f, -0.33f, -1.12f, -0.6f) + arcTo(1.6f, 1.6f, 0.0f, false, true, 3.0f, 7.0f) + curveToRelative(0.0f, -0.78f, 0.46f, -1.32f, 1.04f, -1.66f) + curveToRelative(0.55f, -0.32f, 1.27f, -0.5f, 2.02f, -0.6f) + curveToRelative(1.52f, -0.23f, 3.53f, -0.22f, 5.45f, -0.2f) + horizontalLineToRelative(0.18f) + curveToRelative(1.9f, 0.0f, 3.7f, 0.02f, 5.04f, -0.15f) + curveToRelative(0.7f, -0.09f, 1.2f, -0.22f, 1.5f, -0.37f) + curveToRelative(0.2f, -0.1f, 0.25f, -0.18f, 0.27f, -0.23f) + lineToRelative(-0.03f, -0.02f) + curveToRelative(-0.1f, -0.08f, -0.29f, -0.18f, -0.6f, -0.28f) + curveToRelative(-0.61f, -0.2f, -1.5f, -0.32f, -2.46f, -0.4f) + curveToRelative(-1.6f, -0.12f, -3.29f, -0.1f, -4.2f, -0.1f) + lineToRelative(-0.46f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.42f) + curveToRelative(0.9f, -0.01f, 2.68f, -0.04f, 4.36f, 0.1f) + curveToRelative(1.0f, 0.08f, 2.01f, 0.21f, 2.8f, 0.46f) + curveToRelative(0.38f, 0.13f, 0.77f, 0.3f, 1.07f, 0.54f) + close() + moveTo(14.0f, 9.33f) + curveTo(13.92f, 7.97f, 13.1f, 7.0f, 11.74f, 7.0f) + curveTo(10.35f, 7.0f, 9.5f, 8.06f, 9.5f, 9.5f) + verticalLineToRelative(4.18f) + lineToRelative(-0.26f, -0.08f) + curveToRelative(-1.2f, -0.35f, -2.12f, -0.37f, -2.83f, -0.02f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 5.0f, 16.02f) + curveToRelative(0.0f, 0.28f, 0.16f, 0.53f, 0.41f, 0.66f) + lineToRelative(2.36f, 1.17f) + lineToRelative(0.1f, 0.05f) + lineToRelative(0.1f, 0.06f) + lineToRelative(1.88f, 1.26f) + lineToRelative(0.2f, 0.14f) + curveToRelative(0.43f, 0.34f, 0.78f, 0.78f, 1.02f, 1.28f) + lineToRelative(0.03f, 0.06f) + lineToRelative(0.08f, 0.16f) + curveToRelative(0.45f, 0.8f, 1.35f, 1.25f, 2.28f, 1.12f) + lineToRelative(2.42f, -0.35f) + lineToRelative(0.16f, -0.03f) + curveToRelative(0.82f, -0.18f, 1.47f, -0.8f, 1.69f, -1.61f) + lineToRelative(1.05f, -3.93f) + lineToRelative(0.04f, -0.18f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -2.6f, -3.85f) + lineToRelative(-2.22f, -0.4f) + verticalLineTo(9.32f) + close() + } + } + return _handDraw!! + } + +private var _handDraw: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HandLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HandLeft.kt new file mode 100644 index 00000000..92da50a7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HandLeft.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.HandLeft: ImageVector + get() { + if (_handLeft != null) { + return _handLeft!! + } + _handLeft = fluentIcon(name = "Filled.HandLeft") { + fluentPath { + moveTo(14.0f, 4.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + verticalLineTo(11.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineTo(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + verticalLineToRelative(8.75f) + curveToRelative(0.0f, 2.18f, -1.17f, 4.51f, -1.91f, 5.8f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 14.46f, 22.0f) + horizontalLineTo(12.3f) + curveToRelative(-1.24f, 0.0f, -2.36f, -0.7f, -2.91f, -1.8f) + lineToRelative(-0.14f, -0.26f) + curveToRelative(-0.42f, -0.85f, -0.94f, -1.63f, -1.56f, -2.34f) + lineToRelative(-2.2f, -2.55f) + lineToRelative(-2.2f, -1.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.29f, -0.6f) + curveToRelative(0.0f, -0.48f, 0.26f, -0.84f, 0.6f, -1.06f) + curveToRelative(0.29f, -0.19f, 0.64f, -0.27f, 0.95f, -0.3f) + arcToRelative(7.2f, 7.2f, 0.0f, false, true, 2.1f, 0.12f) + curveToRelative(0.5f, 0.1f, 0.97f, 0.3f, 1.35f, 0.5f) + verticalLineTo(4.26f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + verticalLineToRelative(6.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineTo(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + verticalLineToRelative(7.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineTo(4.25f) + close() + } + } + return _handLeft!! + } + +private var _handLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HandLeftChat.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HandLeftChat.kt new file mode 100644 index 00000000..27454b23 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HandLeftChat.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.HandLeftChat: ImageVector + get() { + if (_handLeftChat != null) { + return _handLeftChat!! + } + _handLeftChat = fluentIcon(name = "Filled.HandLeftChat") { + fluentPath { + moveTo(14.0f, 4.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + lineTo(16.0f, 11.0f) + curveToRelative(0.0f, 0.06f, 0.01f, 0.11f, 0.03f, 0.17f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -4.42f, 9.1f) + lineToRelative(-0.46f, 1.52f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -1.76f, -1.59f) + lineToRelative(-0.14f, -0.26f) + curveToRelative(-0.42f, -0.85f, -0.94f, -1.63f, -1.56f, -2.34f) + lineToRelative(-2.2f, -2.55f) + lineToRelative(-2.2f, -1.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.29f, -0.6f) + curveToRelative(0.0f, -0.48f, 0.26f, -0.84f, 0.6f, -1.06f) + curveToRelative(0.29f, -0.19f, 0.64f, -0.27f, 0.95f, -0.3f) + arcToRelative(7.2f, 7.2f, 0.0f, false, true, 2.1f, 0.12f) + curveToRelative(0.5f, 0.1f, 0.97f, 0.3f, 1.35f, 0.5f) + lineTo(8.0f, 4.26f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + verticalLineToRelative(6.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + lineTo(11.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + verticalLineToRelative(7.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + lineTo(14.0f, 4.25f) + close() + moveTo(17.5f, 11.0f) + arcToRelative(6.6f, 6.6f, 0.0f, false, false, -0.5f, 0.0f) + lineTo(17.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + verticalLineToRelative(5.17f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.5f, -0.17f) + close() + moveTo(17.97f, 12.02f) + arcTo(5.48f, 5.48f, 0.0f, false, true, 23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, -8.17f, 4.81f) + lineToRelative(-2.18f, 0.67f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.63f, -0.62f) + lineToRelative(0.67f, -2.2f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 5.28f, -8.15f) + close() + moveTo(15.0f, 16.5f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + close() + moveTo(15.5f, 19.0f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) + close() + } + } + return _handLeftChat!! + } + +private var _handLeftChat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HandRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HandRight.kt new file mode 100644 index 00000000..56672450 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HandRight.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.HandRight: ImageVector + get() { + if (_handRight != null) { + return _handRight!! + } + _handRight = fluentIcon(name = "Filled.HandRight") { + fluentPath { + moveTo(10.0f, 4.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineTo(11.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + verticalLineTo(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) + verticalLineToRelative(8.75f) + curveToRelative(0.0f, 2.18f, 1.17f, 4.51f, 1.91f, 5.8f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 9.54f, 22.0f) + horizontalLineToRelative(2.16f) + curveToRelative(1.24f, 0.0f, 2.36f, -0.7f, 2.91f, -1.8f) + lineToRelative(0.14f, -0.26f) + curveToRelative(0.42f, -0.85f, 0.94f, -1.63f, 1.56f, -2.34f) + lineToRelative(2.2f, -2.55f) + lineToRelative(2.2f, -1.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.29f, -0.6f) + curveToRelative(0.0f, -0.49f, -0.26f, -0.85f, -0.6f, -1.06f) + curveToRelative(-0.29f, -0.2f, -0.64f, -0.27f, -0.95f, -0.31f) + curveToRelative(-0.64f, -0.08f, -1.41f, 0.0f, -2.1f, 0.13f) + curveToRelative(-0.5f, 0.1f, -0.97f, 0.3f, -1.35f, 0.5f) + verticalLineTo(4.26f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(6.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineTo(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(7.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineTo(4.25f) + close() + } + } + return _handRight!! + } + +private var _handRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HandWave.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HandWave.kt new file mode 100644 index 00000000..ae8f7911 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HandWave.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.HandWave: ImageVector + get() { + if (_handWave != null) { + return _handWave!! + } + _handWave = fluentIcon(name = "Filled.HandWave") { + fluentPath { + moveTo(7.94f, 2.66f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.88f, 0.68f) + lineToRelative(2.25f, 6.23f) + arcToRelative(0.68f, 0.68f, 0.0f, false, true, -1.27f, 0.48f) + lineToRelative(-2.1f, -5.41f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.87f, 0.72f) + lineToRelative(3.16f, 8.12f) + arcToRelative(5.96f, 5.96f, 0.0f, false, false, -3.65f, 0.67f) + curveToRelative(-0.43f, 0.25f, -0.63f, 0.7f, -0.57f, 1.14f) + curveToRelative(0.06f, 0.42f, 0.34f, 0.77f, 0.73f, 0.94f) + curveToRelative(1.33f, 0.58f, 4.39f, 2.08f, 7.0f, 4.58f) + arcToRelative(4.08f, 4.08f, 0.0f, false, false, 3.96f, 1.04f) + lineToRelative(2.8f, -0.84f) + arcToRelative(2.6f, 2.6f, 0.0f, false, false, 1.77f, -1.76f) + curveToRelative(0.3f, -1.05f, 0.73f, -2.82f, 0.73f, -4.5f) + curveToRelative(0.0f, -1.15f, -0.4f, -2.59f, -0.77f, -3.67f) + curveToRelative(-0.73f, -2.15f, -1.54f, -4.27f, -2.28f, -6.4f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.9f, 0.65f) + lineToRelative(1.0f, 2.86f) + arcToRelative(0.7f, 0.7f, 0.0f, false, true, -1.32f, 0.47f) + lineToRelative(-1.79f, -5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.88f, 0.68f) + lineToRelative(1.62f, 4.53f) + arcToRelative(0.7f, 0.7f, 0.0f, false, true, -1.33f, 0.47f) + lineToRelative(-2.4f, -6.68f) + close() + moveTo(18.64f, 2.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.04f, -0.19f) + arcToRelative(6.9f, 6.9f, 0.0f, false, true, 2.31f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.48f, -0.26f) + arcToRelative(5.4f, 5.4f, 0.0f, false, false, -0.33f, -2.82f) + curveToRelative(-0.35f, -0.9f, -0.87f, -1.6f, -1.36f, -1.93f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.19f, -1.05f) + close() + moveTo(18.3f, 4.24f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.1f, 1.02f) + curveToRelative(0.42f, 0.45f, 0.8f, 1.0f, 0.8f, 1.99f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + curveToRelative(0.0f, -1.5f, -0.62f, -2.39f, -1.2f, -3.01f) + close() + } + } + return _handWave!! + } + +private var _handWave: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Handshake.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Handshake.kt new file mode 100644 index 00000000..5fc6e895 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Handshake.kt @@ -0,0 +1,114 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Handshake: ImageVector + get() { + if (_handshake != null) { + return _handshake!! + } + _handshake = fluentIcon(name = "Filled.Handshake") { + fluentPath { + moveTo(12.83f, 3.16f) + curveToRelative(0.06f, -0.04f, 0.11f, -0.1f, 0.15f, -0.15f) + horizontalLineToRelative(2.6f) + arcToRelative(5.38f, 5.38f, 0.0f, false, true, 0.54f, 0.0f) + horizontalLineToRelative(0.04f) + arcToRelative(3.82f, 3.82f, 0.0f, false, true, 1.65f, 0.37f) + arcToRelative(5.22f, 5.22f, 0.0f, false, true, 3.14f, 6.17f) + lineToRelative(-3.28f, -3.24f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.53f, -0.21f) + lineTo(12.4f, 6.1f) + arcToRelative(0.76f, 0.76f, 0.0f, false, false, -0.45f, 0.15f) + lineToRelative(-1.89f, 1.43f) + arcToRelative(0.97f, 0.97f, 0.0f, false, true, -1.46f, -0.35f) + curveToRelative(-0.2f, -0.4f, -0.08f, -0.9f, 0.29f, -1.18f) + lineToRelative(3.94f, -2.99f) + close() + moveTo(7.9f, 14.23f) + lineToRelative(-0.01f, 0.02f) + lineToRelative(-0.98f, 0.97f) + lineTo(6.9f, 15.22f) + arcToRelative(0.9f, 0.9f, 0.0f, false, true, -1.26f, 0.0f) + arcToRelative(0.9f, 0.9f, 0.0f, false, true, 0.0f, -1.27f) + lineToRelative(0.97f, -0.97f) + arcToRelative(0.9f, 0.9f, 0.0f, false, true, 1.28f, 0.0f) + curveToRelative(0.34f, 0.35f, 0.35f, 0.9f, 0.0f, 1.25f) + close() + moveTo(7.6f, 15.93f) + arcToRelative(0.9f, 0.9f, 0.0f, false, false, 0.02f, 1.26f) + arcToRelative(0.9f, 0.9f, 0.0f, false, false, 1.28f, 0.0f) + lineToRelative(0.97f, -0.97f) + arcToRelative(0.9f, 0.9f, 0.0f, false, false, -0.14f, -1.38f) + arcToRelative(0.9f, 0.9f, 0.0f, false, false, -1.12f, 0.1f) + lineToRelative(-0.01f, 0.01f) + lineToRelative(-0.98f, 0.97f) + lineToRelative(-0.01f, 0.01f) + close() + moveTo(5.5f, 11.41f) + arcToRelative(0.9f, 0.9f, 0.0f, false, true, 0.0f, 1.26f) + lineToRelative(-0.97f, 0.97f) + arcToRelative(0.9f, 0.9f, 0.0f, false, true, -1.28f, 0.0f) + arcToRelative(0.9f, 0.9f, 0.0f, false, true, 0.0f, -1.27f) + lineToRelative(0.98f, -0.96f) + arcToRelative(0.9f, 0.9f, 0.0f, false, true, 1.27f, 0.0f) + close() + moveTo(11.85f, 16.92f) + arcToRelative(0.9f, 0.9f, 0.0f, false, true, 0.0f, 1.27f) + lineToRelative(-0.97f, 0.97f) + arcToRelative(0.9f, 0.9f, 0.0f, false, true, -1.28f, 0.0f) + arcToRelative(0.9f, 0.9f, 0.0f, false, true, -0.17f, -1.03f) + arcToRelative(0.9f, 0.9f, 0.0f, false, true, 0.18f, -0.24f) + lineToRelative(0.97f, -0.97f) + arcToRelative(0.9f, 0.9f, 0.0f, false, true, 1.27f, 0.0f) + close() + moveTo(5.35f, 4.83f) + arcToRelative(6.18f, 6.18f, 0.0f, false, true, 5.1f, -1.75f) + lineTo(7.99f, 4.96f) + arcTo(2.45f, 2.45f, 0.0f, false, false, 7.5f, 8.4f) + arcToRelative(2.47f, 2.47f, 0.0f, false, false, 3.46f, 0.46f) + lineToRelative(1.68f, -1.27f) + horizontalLineToRelative(4.19f) + lineToRelative(3.5f, 3.46f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.04f, 0.04f) + lineToRelative(1.15f, 1.15f) + arcToRelative(1.44f, 1.44f, 0.0f, false, true, -1.94f, 2.12f) + lineToRelative(-0.1f, -0.1f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.05f) + lineToRelative(-1.1f, -1.09f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.7f, 0.7f) + lineTo(18.79f, 15.0f) + lineToRelative(0.13f, 0.12f) + lineToRelative(0.04f, 0.04f) + arcToRelative(1.02f, 1.02f, 0.0f, true, true, -1.44f, 1.44f) + lineToRelative(-0.17f, -0.17f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.85f, 0.37f) + curveToRelative(0.0f, 0.13f, 0.04f, 0.26f, 0.14f, 0.36f) + lineToRelative(0.22f, 0.23f) + arcToRelative(0.94f, 0.94f, 0.0f, true, true, -1.33f, 1.33f) + lineToRelative(-0.01f, -0.01f) + lineToRelative(-0.21f, -0.21f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(0.21f, 0.22f) + arcToRelative(0.96f, 0.96f, 0.0f, false, true, -1.35f, 1.37f) + lineToRelative(-1.43f, -1.36f) + lineToRelative(0.52f, -0.52f) + curveToRelative(0.75f, -0.74f, 0.75f, -1.94f, 0.0f, -2.68f) + arcToRelative(1.9f, 1.9f, 0.0f, false, false, -1.42f, -0.55f) + arcToRelative(1.9f, 1.9f, 0.0f, false, false, -1.98f, -1.97f) + arcToRelative(1.91f, 1.91f, 0.0f, false, false, -2.4f, -1.9f) + arcToRelative(1.91f, 1.91f, 0.0f, false, false, -3.05f, -1.24f) + arcToRelative(6.1f, 6.1f, 0.0f, false, true, 1.63f, -5.73f) + close() + } + } + return _handshake!! + } + +private var _handshake: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HatGraduation.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HatGraduation.kt new file mode 100644 index 00000000..3900febd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HatGraduation.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.HatGraduation: ImageVector + get() { + if (_hatGraduation != null) { + return _hatGraduation!! + } + _hatGraduation = fluentIcon(name = "Filled.HatGraduation") { + fluentPath { + moveTo(5.0f, 17.75f) + verticalLineToRelative(-3.77f) + lineToRelative(4.06f, 2.66f) + arcToRelative(5.38f, 5.38f, 0.0f, false, false, 5.88f, 0.0f) + lineTo(19.0f, 13.98f) + verticalLineToRelative(3.77f) + curveToRelative(0.0f, 0.16f, -0.05f, 0.32f, -0.15f, 0.45f) + lineToRelative(-0.01f, 0.02f) + lineToRelative(-0.02f, 0.01f) + verticalLineToRelative(0.02f) + arcToRelative(3.4f, 3.4f, 0.0f, false, true, -0.41f, 0.43f) + curveToRelative(-0.28f, 0.27f, -0.7f, 0.61f, -1.25f, 0.96f) + arcTo(9.7f, 9.7f, 0.0f, false, true, 12.0f, 21.0f) + arcToRelative(9.7f, 9.7f, 0.0f, false, true, -5.16f, -1.36f) + arcToRelative(7.43f, 7.43f, 0.0f, false, true, -1.68f, -1.42f) + verticalLineToRelative(-0.01f) + arcToRelative(0.76f, 0.76f, 0.0f, false, true, -0.16f, -0.46f) + close() + moveTo(22.16f, 10.13f) + lineTo(14.12f, 15.38f) + arcToRelative(3.87f, 3.87f, 0.0f, false, true, -4.24f, 0.0f) + lineTo(3.0f, 10.88f) + verticalLineToRelative(5.37f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(1.5f, 10.0f) + curveToRelative(0.0f, -0.09f, 0.02f, -0.17f, 0.04f, -0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.3f, -0.88f) + lineTo(9.92f, 3.7f) + arcToRelative(3.87f, 3.87f, 0.0f, false, true, 4.18f, 0.0f) + lineToRelative(8.06f, 5.17f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.01f, 1.26f) + close() + } + } + return _hatGraduation!! + } + +private var _hatGraduation: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Hd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Hd.kt new file mode 100644 index 00000000..dd6a421e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Hd.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Hd: ImageVector + get() { + if (_hd != null) { + return _hd!! + } + _hd = fluentIcon(name = "Filled.Hd") { + fluentPath { + moveTo(14.5f, 14.5f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(0.25f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-0.25f) + close() + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(7.25f, 8.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.75f) + horizontalLineToRelative(2.0f) + lineTo(10.0f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(10.0f, 13.0f) + lineTo(8.0f, 13.0f) + verticalLineToRelative(2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-6.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(13.75f, 8.0f) + horizontalLineToRelative(1.0f) + curveTo(16.55f, 8.0f, 18.0f, 9.46f, 18.0f, 11.25f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-6.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _hd!! + } + +private var _hd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Hdr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Hdr.kt new file mode 100644 index 00000000..4decce67 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Hdr.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Hdr: ImageVector + get() { + if (_hdr != null) { + return _hdr!! + } + _hdr = fluentIcon(name = "Filled.Hdr") { + fluentPath { + moveTo(18.75f, 3.5f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(5.25f, 20.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 17.25f) + lineTo(2.0f, 6.75f) + curveTo(2.0f, 4.95f, 3.46f, 3.5f, 5.25f, 3.5f) + horizontalLineToRelative(13.5f) + close() + moveTo(8.38f, 9.0f) + arcToRelative(0.63f, 0.63f, 0.0f, false, false, -0.62f, 0.53f) + verticalLineToRelative(1.86f) + lineTo(6.26f, 11.39f) + lineTo(6.26f, 9.54f) + arcToRelative(0.63f, 0.63f, 0.0f, false, false, -1.24f, 0.0f) + lineTo(5.02f, 14.48f) + arcToRelative(0.63f, 0.63f, 0.0f, false, false, 1.24f, 0.0f) + verticalLineToRelative(-1.84f) + horizontalLineToRelative(1.48f) + verticalLineToRelative(1.73f) + lineToRelative(0.01f, 0.1f) + arcToRelative(0.63f, 0.63f, 0.0f, false, false, 1.24f, 0.0f) + lineTo(8.99f, 9.51f) + arcTo(0.63f, 0.63f, 0.0f, false, false, 8.38f, 9.0f) + close() + moveTo(17.2f, 9.02f) + lineTo(15.53f, 9.02f) + arcToRelative(0.63f, 0.63f, 0.0f, false, false, -0.52f, 0.52f) + lineTo(15.01f, 14.48f) + lineToRelative(0.03f, 0.1f) + curveToRelative(0.18f, 0.59f, 1.11f, 0.56f, 1.21f, -0.1f) + verticalLineToRelative(-1.86f) + lineTo(17.0f, 12.62f) + lineToRelative(0.8f, 1.99f) + lineToRelative(0.05f, 0.09f) + arcToRelative(0.63f, 0.63f, 0.0f, false, false, 1.14f, -0.46f) + lineToRelative(-0.03f, -0.1f) + lineToRelative(-0.74f, -1.83f) + arcToRelative(1.8f, 1.8f, 0.0f, false, false, -0.87f, -3.29f) + horizontalLineToRelative(-0.15f) + close() + moveTo(11.38f, 9.0f) + horizontalLineToRelative(-0.85f) + arcToRelative(0.63f, 0.63f, 0.0f, false, false, -0.52f, 0.52f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(4.84f) + curveToRelative(0.05f, 0.26f, 0.26f, 0.47f, 0.52f, 0.52f) + horizontalLineToRelative(1.02f) + arcTo(2.63f, 2.63f, 0.0f, false, false, 14.0f, 12.54f) + verticalLineToRelative(-1.08f) + arcToRelative(2.63f, 2.63f, 0.0f, false, false, -2.46f, -2.45f) + horizontalLineToRelative(-0.16f) + close() + moveTo(11.38f, 10.25f) + curveToRelative(0.71f, 0.0f, 1.3f, 0.54f, 1.36f, 1.24f) + lineToRelative(0.01f, 0.13f) + verticalLineToRelative(0.87f) + arcToRelative(1.38f, 1.38f, 0.0f, false, true, -1.24f, 1.24f) + horizontalLineToRelative(-0.26f) + verticalLineToRelative(-3.48f) + horizontalLineToRelative(0.13f) + close() + moveTo(16.25f, 10.25f) + horizontalLineToRelative(0.95f) + lineToRelative(0.1f, 0.01f) + arcToRelative(0.55f, 0.55f, 0.0f, false, true, 0.0f, 1.1f) + horizontalLineToRelative(-1.04f) + verticalLineToRelative(-1.1f) + close() + } + } + return _hdr!! + } + +private var _hdr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HdrOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HdrOff.kt new file mode 100644 index 00000000..faa36cd6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HdrOff.kt @@ -0,0 +1,91 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.HdrOff: ImageVector + get() { + if (_hdrOff != null) { + return _hdrOff!! + } + _hdrOff = fluentIcon(name = "Filled.HdrOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(0.96f, 0.96f) + curveTo(2.46f, 4.84f, 2.0f, 5.74f, 2.0f, 6.75f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(13.5f) + curveToRelative(0.22f, 0.0f, 0.43f, -0.02f, 0.63f, -0.06f) + lineToRelative(1.34f, 1.34f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(13.2f, 14.26f) + curveToRelative(-0.44f, 0.42f, -1.02f, 0.7f, -1.66f, 0.73f) + horizontalLineToRelative(-1.02f) + arcToRelative(0.63f, 0.63f, 0.0f, false, true, -0.51f, -0.53f) + lineToRelative(-0.01f, -0.09f) + verticalLineToRelative(-3.31f) + lineToRelative(1.25f, 1.25f) + verticalLineToRelative(1.44f) + horizontalLineToRelative(0.26f) + curveToRelative(0.3f, -0.04f, 0.59f, -0.17f, 0.8f, -0.37f) + lineToRelative(0.89f, 0.88f) + close() + moveTo(8.04f, 9.1f) + lineToRelative(0.96f, 0.96f) + lineTo(9.0f, 14.47f) + arcToRelative(0.63f, 0.63f, 0.0f, false, true, -1.24f, 0.0f) + verticalLineToRelative(-1.83f) + lineTo(6.26f, 12.64f) + verticalLineToRelative(1.84f) + arcToRelative(0.63f, 0.63f, 0.0f, false, true, -1.24f, 0.0f) + lineTo(5.02f, 9.54f) + arcToRelative(0.63f, 0.63f, 0.0f, false, true, 1.24f, 0.0f) + verticalLineToRelative(1.85f) + horizontalLineToRelative(1.48f) + lineTo(7.74f, 9.62f) + lineToRelative(0.01f, -0.1f) + arcToRelative(0.63f, 0.63f, 0.0f, false, true, 0.28f, -0.42f) + close() + moveTo(22.0f, 17.25f) + curveToRelative(0.0f, 0.46f, -0.1f, 0.9f, -0.27f, 1.3f) + lineToRelative(-3.6f, -3.6f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.86f, -0.71f) + lineToRelative(-0.03f, -0.1f) + lineToRelative(-0.74f, -1.83f) + arcToRelative(1.8f, 1.8f, 0.0f, false, false, -0.87f, -3.29f) + horizontalLineToRelative(-1.82f) + arcToRelative(0.63f, 0.63f, 0.0f, false, false, -0.52f, 0.52f) + lineTo(15.01f, 11.82f) + lineTo(6.68f, 3.5f) + horizontalLineToRelative(12.07f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(10.5f) + close() + moveTo(17.8f, 14.61f) + lineTo(17.81f, 14.63f) + lineTo(16.26f, 13.08f) + verticalLineToRelative(-0.46f) + lineTo(17.0f, 12.62f) + lineToRelative(0.8f, 1.99f) + close() + moveTo(17.2f, 10.27f) + horizontalLineToRelative(-0.95f) + verticalLineToRelative(1.1f) + horizontalLineToRelative(1.05f) + arcToRelative(0.55f, 0.55f, 0.0f, false, false, 0.0f, -1.1f) + horizontalLineToRelative(-0.1f) + close() + } + } + return _hdrOff!! + } + +private var _hdrOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Headphones.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Headphones.kt new file mode 100644 index 00000000..7b301097 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Headphones.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Headphones: ImageVector + get() { + if (_headphones != null) { + return _headphones!! + } + _headphones = fluentIcon(name = "Filled.Headphones") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 10.0f, 10.0f) + verticalLineToRelative(7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineToRelative(-6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(-2.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, -17.0f, 0.0f) + verticalLineToRelative(2.0f) + horizontalLineTo(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineTo(5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + verticalLineToRelative(-7.0f) + arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 2.0f) + close() + } + } + return _headphones!! + } + +private var _headphones: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HeadphonesSoundWave.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HeadphonesSoundWave.kt new file mode 100644 index 00000000..52f3e933 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HeadphonesSoundWave.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.HeadphonesSoundWave: ImageVector + get() { + if (_headphonesSoundWave != null) { + return _headphonesSoundWave!! + } + _headphonesSoundWave = fluentIcon(name = "Filled.HeadphonesSoundWave") { + fluentPath { + moveTo(3.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, 17.0f, 0.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(19.0f, 22.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) + verticalLineToRelative(-7.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, -20.0f, 0.0f) + verticalLineToRelative(7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(3.5f, 14.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(12.75f, 11.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-10.5f) + close() + moveTo(8.75f, 14.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(16.0f, 14.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-4.5f) + close() + } + } + return _headphonesSoundWave!! + } + +private var _headphonesSoundWave: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Headset.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Headset.kt new file mode 100644 index 00000000..b8458f3b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Headset.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Headset: ImageVector + get() { + if (_headset != null) { + return _headset!! + } + _headset = fluentIcon(name = "Filled.Headset") { + fluentPath { + moveTo(5.0f, 9.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, 14.0f, 0.0f) + verticalLineToRelative(5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineToRelative(-4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(2.5f) + verticalLineTo(9.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineTo(9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineTo(7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.5f, -0.06f) + verticalLineToRelative(0.31f) + curveToRelative(0.0f, 1.2f, 0.93f, 2.17f, 2.1f, 2.24f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(1.13f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 1.5f) + horizontalLineTo(8.75f) + curveToRelative(-2.0f, 0.0f, -3.64f, -1.57f, -3.74f, -3.55f) + lineToRelative(-0.01f, -0.2f) + verticalLineTo(9.0f) + close() + } + } + return _headset!! + } + +private var _headset: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HeadsetAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HeadsetAdd.kt new file mode 100644 index 00000000..6478404d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HeadsetAdd.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.HeadsetAdd: ImageVector + get() { + if (_headsetAdd != null) { + return _headsetAdd!! + } + _headsetAdd = fluentIcon(name = "Filled.HeadsetAdd") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 7.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 7.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 6.0f) + lineTo(17.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + lineTo(18.0f, 6.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 7.0f) + close() + moveTo(17.5f, 13.0f) + curveToRelative(0.52f, 0.0f, 1.02f, -0.06f, 1.5f, -0.17f) + lineTo(19.0f, 15.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineToRelative(-4.02f) + arcTo(6.47f, 6.47f, 0.0f, false, false, 17.5f, 13.0f) + close() + moveTo(12.02f, 3.0f) + curveToRelative(-0.3f, 0.48f, -0.55f, 1.0f, -0.72f, 1.54f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 6.5f, 10.0f) + verticalLineToRelative(1.0f) + lineTo(9.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + lineTo(7.0f, 17.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.5f, -0.06f) + verticalLineToRelative(0.31f) + curveToRelative(0.0f, 1.2f, 0.93f, 2.17f, 2.1f, 2.24f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(1.13f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 1.5f) + lineTo(8.75f, 21.0f) + curveToRelative(-2.0f, 0.0f, -3.64f, -1.57f, -3.74f, -3.55f) + lineToRelative(-0.01f, -0.2f) + lineTo(5.0f, 10.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, 7.0f, -7.0f) + horizontalLineToRelative(0.02f) + close() + } + } + return _headsetAdd!! + } + +private var _headsetAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HeadsetVr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HeadsetVr.kt new file mode 100644 index 00000000..6b79dc3a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HeadsetVr.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.HeadsetVr: ImageVector + get() { + if (_headsetVr != null) { + return _headsetVr!! + } + _headsetVr = fluentIcon(name = "Filled.HeadsetVr") { + fluentPath { + moveTo(9.0f, 3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(15.0f, 5.0f) + horizontalLineToRelative(3.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, 4.0f) + horizontalLineToRelative(0.25f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(22.0f, 14.0f) + verticalLineToRelative(2.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, 4.0f) + horizontalLineToRelative(-1.55f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -2.16f, -0.64f) + lineToRelative(-2.15f, -1.38f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.28f, 0.0f) + lineToRelative(-2.15f, 1.38f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -2.16f, 0.64f) + lineTo(6.0f, 20.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f) + lineTo(2.0f, 14.0f) + horizontalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + lineTo(2.0f, 9.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, -4.0f) + horizontalLineToRelative(3.0f) + lineTo(9.0f, 3.75f) + close() + moveTo(12.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(6.0f, 12.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(14.75f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.5f) + close() + } + } + return _headsetVr!! + } + +private var _headsetVr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HeartBroken.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HeartBroken.kt new file mode 100644 index 00000000..dec53966 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HeartBroken.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.HeartBroken: ImageVector + get() { + if (_heartBroken != null) { + return _heartBroken!! + } + _heartBroken = fluentIcon(name = "Filled.HeartBroken") { + fluentPath { + moveToRelative(11.28f, 5.03f) + lineToRelative(-0.1f, -0.1f) + arcToRelative(5.37f, 5.37f, 0.0f, true, false, -7.6f, 7.6f) + lineToRelative(7.89f, 7.9f) + curveToRelative(0.3f, 0.29f, 0.77f, 0.29f, 1.06f, 0.0f) + lineToRelative(7.9f, -7.9f) + arcToRelative(5.38f, 5.38f, 0.0f, true, false, -7.61f, -7.6f) + lineToRelative(-0.79f, 0.8f) + lineToRelative(-1.88f, 3.02f) + lineToRelative(3.68f, 3.22f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.02f, 0.73f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, -0.7f) + lineToRelative(2.12f, -2.12f) + lineToRelative(-3.6f, -3.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.1f, -0.64f) + lineToRelative(2.21f, -3.56f) + close() + } + } + return _heartBroken!! + } + +private var _heartBroken: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HeartCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HeartCircle.kt new file mode 100644 index 00000000..2e539343 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HeartCircle.kt @@ -0,0 +1,35 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.HeartCircle: ImageVector + get() { + if (_heartCircle != null) { + return _heartCircle!! + } + _heartCircle = fluentIcon(name = "Filled.HeartCircle") { + fluentPath { + moveTo(12.0f, 22.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) + close() + moveTo(11.7f, 16.86f) + lineTo(7.59f, 12.06f) + arcToRelative(2.46f, 2.46f, 0.0f, false, true, 3.58f, -3.36f) + lineToRelative(0.83f, 0.8f) + lineToRelative(0.83f, -0.8f) + arcToRelative(2.46f, 2.46f, 0.0f, false, true, 3.58f, 3.36f) + lineToRelative(-4.1f, 4.8f) + arcToRelative(0.4f, 0.4f, 0.0f, false, true, -0.61f, 0.0f) + close() + } + } + return _heartCircle!! + } + +private var _heartCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HeartCircleHint.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HeartCircleHint.kt new file mode 100644 index 00000000..9aaaed53 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HeartCircleHint.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.HeartCircleHint: ImageVector + get() { + if (_heartCircleHint != null) { + return _heartCircleHint!! + } + _heartCircleHint = fluentIcon(name = "Filled.HeartCircleHint") { + fluentPath { + moveTo(10.68f, 2.09f) + arcToRelative(10.09f, 10.09f, 0.0f, false, true, 2.64f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.2f, 1.48f) + arcToRelative(8.59f, 8.59f, 0.0f, false, false, -2.25f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.2f, -1.48f) + close() + moveTo(21.08f, 10.03f) + curveToRelative(0.4f, -0.05f, 0.78f, 0.24f, 0.83f, 0.65f) + arcToRelative(10.09f, 10.09f, 0.0f, false, true, 0.0f, 2.64f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.48f, -0.2f) + arcToRelative(8.57f, 8.57f, 0.0f, false, false, 0.0f, -2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.64f, -0.84f) + close() + moveTo(2.93f, 10.03f) + curveToRelative(0.4f, 0.06f, 0.7f, 0.43f, 0.64f, 0.84f) + arcToRelative(8.59f, 8.59f, 0.0f, false, false, 0.0f, 2.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.48f, 0.2f) + arcToRelative(10.09f, 10.09f, 0.0f, false, true, 0.0f, -2.65f) + curveToRelative(0.05f, -0.41f, 0.43f, -0.7f, 0.84f, -0.65f) + close() + moveTo(10.03f, 21.07f) + curveToRelative(0.06f, -0.4f, 0.43f, -0.7f, 0.84f, -0.64f) + arcToRelative(8.57f, 8.57f, 0.0f, false, false, 2.26f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.2f, 1.48f) + arcToRelative(10.09f, 10.09f, 0.0f, false, true, -2.65f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.84f) + close() + moveTo(18.07f, 4.06f) + arcToRelative(10.1f, 10.1f, 0.0f, false, true, 1.87f, 1.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.19f, 0.9f) + arcToRelative(8.58f, 8.58f, 0.0f, false, false, -1.59f, -1.58f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.91f, -1.2f) + close() + moveTo(19.81f, 17.02f) + curveToRelative(0.32f, 0.26f, 0.39f, 0.73f, 0.13f, 1.06f) + arcToRelative(10.1f, 10.1f, 0.0f, false, true, -1.87f, 1.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.9f, -1.2f) + arcToRelative(8.57f, 8.57f, 0.0f, false, false, 1.58f, -1.59f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -0.14f) + close() + moveTo(6.98f, 4.2f) + curveToRelative(0.25f, 0.33f, 0.19f, 0.8f, -0.14f, 1.06f) + arcToRelative(8.59f, 8.59f, 0.0f, false, false, -1.6f, 1.59f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.18f, -0.91f) + arcToRelative(10.09f, 10.09f, 0.0f, false, true, 1.87f, -1.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, 0.13f) + close() + moveTo(4.19f, 17.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 0.14f) + arcToRelative(8.58f, 8.58f, 0.0f, false, false, 1.59f, 1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.91f, 1.18f) + arcToRelative(10.1f, 10.1f, 0.0f, false, true, -1.87f, -1.86f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.13f, -1.06f) + close() + moveTo(16.34f, 8.92f) + arcToRelative(2.65f, 2.65f, 0.0f, false, false, -3.89f, -0.13f) + lineToRelative(-0.45f, 0.46f) + lineToRelative(-0.46f, -0.46f) + arcToRelative(2.65f, 2.65f, 0.0f, false, false, -3.89f, 3.6f) + lineToRelative(3.78f, 4.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, 0.0f) + lineToRelative(3.78f, -4.35f) + curveToRelative(0.87f, -1.0f, 0.87f, -2.48f, 0.0f, -3.48f) + close() + } + } + return _heartCircleHint!! + } + +private var _heartCircleHint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HeartPulse.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HeartPulse.kt new file mode 100644 index 00000000..6e2b16fb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HeartPulse.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.HeartPulse: ImageVector + get() { + if (_heartPulse != null) { + return _heartPulse!! + } + _heartPulse = fluentIcon(name = "Filled.HeartPulse") { + fluentPath { + moveTo(12.82f, 5.58f) + lineTo(12.0f, 6.4f) + lineToRelative(-0.82f, -0.82f) + arcTo(5.37f, 5.37f, 0.0f, false, false, 2.25f, 11.0f) + horizontalLineToRelative(3.5f) + lineToRelative(1.42f, -3.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 3.13f, -0.06f) + lineToRelative(1.98f, 3.8f) + lineToRelative(1.58f, -2.05f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 2.7f, -0.1f) + lineTo(17.8f, 11.0f) + horizontalLineToRelative(3.96f) + arcToRelative(5.37f, 5.37f, 0.0f, false, false, -8.93f, -5.41f) + close() + moveTo(11.47f, 21.08f) + lineTo(4.89f, 14.5f) + horizontalLineToRelative(1.97f) + curveToRelative(0.67f, 0.0f, 1.29f, -0.39f, 1.58f, -1.0f) + lineToRelative(0.38f, -0.82f) + lineToRelative(1.63f, 3.13f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 2.94f, 0.25f) + lineToRelative(1.95f, -2.55f) + lineToRelative(0.34f, 0.4f) + curveToRelative(0.34f, 0.37f, 0.82f, 0.59f, 1.32f, 0.59f) + horizontalLineToRelative(2.11f) + lineToRelative(-6.58f, 6.58f) + curveToRelative(-0.3f, 0.29f, -0.77f, 0.29f, -1.06f, 0.0f) + close() + moveTo(9.42f, 8.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.35f, 0.02f) + lineTo(6.38f, 12.0f) + lineTo(2.75f, 12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.1f) + curveToRelative(0.3f, 0.0f, 0.56f, -0.17f, 0.69f, -0.43f) + lineToRelative(1.23f, -2.6f) + lineToRelative(2.56f, 5.11f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.28f, 0.1f) + lineToRelative(2.7f, -3.73f) + lineToRelative(1.13f, 1.3f) + curveToRelative(0.14f, 0.16f, 0.34f, 0.25f, 0.56f, 0.25f) + horizontalLineToRelative(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.91f) + lineToRelative(-1.53f, -1.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.17f, 0.05f) + lineToRelative(-2.52f, 3.5f) + lineToRelative(-2.7f, -5.4f) + close() + } + } + return _heartPulse!! + } + +private var _heartPulse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Highlight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Highlight.kt new file mode 100644 index 00000000..4ab93522 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Highlight.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Highlight: ImageVector + get() { + if (_highlight != null) { + return _highlight!! + } + _highlight = fluentIcon(name = "Filled.Highlight") { + fluentPath { + moveTo(5.25f, 2.0f) + curveTo(4.01f, 2.0f, 3.0f, 3.0f, 3.0f, 4.25f) + verticalLineToRelative(3.0f) + curveTo(3.0f, 8.49f, 4.0f, 9.5f, 5.25f, 9.5f) + horizontalLineToRelative(13.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-3.0f) + curveTo(21.0f, 3.01f, 20.0f, 2.0f, 18.75f, 2.0f) + lineTo(5.25f, 2.0f) + close() + moveTo(5.0f, 11.75f) + lineTo(5.0f, 11.0f) + horizontalLineToRelative(14.0f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-9.5f) + curveTo(6.01f, 14.0f, 5.0f, 13.0f, 5.0f, 11.75f) + close() + moveTo(7.5f, 15.5f) + horizontalLineToRelative(9.0f) + verticalLineToRelative(1.29f) + curveToRelative(0.0f, 0.81f, -0.44f, 1.56f, -1.14f, 1.96f) + lineToRelative(-0.15f, 0.08f) + lineToRelative(-6.64f, 3.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -0.58f) + lineTo(7.51f, 15.5f) + close() + } + } + return _highlight!! + } + +private var _highlight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HighlightAccent.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HighlightAccent.kt similarity index 85% rename from fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HighlightAccent.kt rename to fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HighlightAccent.kt index f9c0c6b1..39d34b8f 100644 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/HighlightAccent.kt +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HighlightAccent.kt @@ -1,11 +1,11 @@ -package com.konyaco.fluent.icons.filled +package io.github.composefluent.icons.filled import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath public val Icons.Filled.HighlightAccent: ImageVector get() { diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HistoryDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HistoryDismiss.kt new file mode 100644 index 00000000..8e0e2d75 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HistoryDismiss.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.HistoryDismiss: ImageVector + get() { + if (_historyDismiss != null) { + return _historyDismiss!! + } + _historyDismiss = fluentIcon(name = "Filled.HistoryDismiss") { + fluentPath { + moveTo(4.75f, 12.0f) + arcToRelative(7.25f, 7.25f, 0.0f, false, false, 6.48f, 7.2f) + curveToRelative(0.2f, 0.75f, 0.53f, 1.44f, 0.96f, 2.05f) + lineTo(12.0f, 21.25f) + arcToRelative(9.25f, 9.25f, 0.0f, false, true, -9.18f, -10.38f) + curveToRelative(0.06f, -0.51f, 0.51f, -0.87f, 1.03f, -0.87f) + curveToRelative(0.6f, 0.0f, 1.02f, 0.57f, 0.95f, 1.16f) + curveToRelative(-0.03f, 0.27f, -0.05f, 0.55f, -0.05f, 0.84f) + close() + moveTo(12.81f, 13.0f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, 2.86f, -1.74f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 15.0f, 11.0f) + horizontalLineToRelative(-2.0f) + lineTo(13.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(0.81f) + close() + moveTo(21.25f, 12.19f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, -2.04f, -0.96f) + arcTo(7.25f, 7.25f, 0.0f, false, false, 7.58f, 6.25f) + horizontalLineToRelative(0.67f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(4.25f, 7.0f) + horizontalLineToRelative(-0.03f) + lineToRelative(0.03f, -0.05f) + verticalLineToRelative(-2.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + verticalLineToRelative(0.5f) + arcToRelative(9.25f, 9.25f, 0.0f, false, true, 15.0f, 7.43f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-1.64f, -1.65f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.65f, 1.64f) + lineToRelative(-1.65f, -1.64f) + close() + } + } + return _historyDismiss!! + } + +private var _historyDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HomeAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HomeAdd.kt new file mode 100644 index 00000000..d3e0cfb8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HomeAdd.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.HomeAdd: ImageVector + get() { + if (_homeAdd != null) { + return _homeAdd!! + } + _homeAdd = fluentIcon(name = "Filled.HomeAdd") { + fluentPath { + moveTo(10.55f, 2.53f) + curveToRelative(0.84f, -0.7f, 2.06f, -0.7f, 2.9f, 0.0f) + lineToRelative(6.75f, 5.7f) + curveToRelative(0.5f, 0.43f, 0.8f, 1.05f, 0.8f, 1.72f) + verticalLineToRelative(2.07f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) + lineTo(4.75f, 21.0f) + curveTo(3.78f, 21.0f, 3.0f, 20.22f, 3.0f, 19.25f) + verticalLineToRelative(-9.3f) + curveToRelative(0.0f, -0.67f, 0.3f, -1.3f, 0.8f, -1.72f) + lineToRelative(6.75f, -5.7f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _homeAdd!! + } + +private var _homeAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HomeCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HomeCheckmark.kt new file mode 100644 index 00000000..4a85d080 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HomeCheckmark.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.HomeCheckmark: ImageVector + get() { + if (_homeCheckmark != null) { + return _homeCheckmark!! + } + _homeCheckmark = fluentIcon(name = "Filled.HomeCheckmark") { + fluentPath { + moveTo(13.45f, 2.53f) + curveToRelative(-0.84f, -0.7f, -2.06f, -0.7f, -2.9f, 0.0f) + lineTo(3.8f, 8.23f) + curveToRelative(-0.5f, 0.43f, -0.8f, 1.05f, -0.8f, 1.72f) + verticalLineToRelative(9.3f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(14.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-9.3f) + curveToRelative(0.0f, -0.67f, -0.3f, -1.3f, -0.8f, -1.72f) + lineToRelative(-6.75f, -5.7f) + close() + moveTo(15.78f, 11.28f) + lineTo(11.28f, 15.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 0.0f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineToRelative(1.47f, 1.47f) + lineToRelative(3.97f, -3.97f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + close() + } + } + return _homeCheckmark!! + } + +private var _homeCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HomeDatabase.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HomeDatabase.kt new file mode 100644 index 00000000..353ea876 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HomeDatabase.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.HomeDatabase: ImageVector + get() { + if (_homeDatabase != null) { + return _homeDatabase!! + } + _homeDatabase = fluentIcon(name = "Filled.HomeDatabase") { + fluentPath { + moveTo(10.55f, 2.53f) + curveToRelative(0.84f, -0.7f, 2.06f, -0.7f, 2.9f, 0.0f) + lineToRelative(6.75f, 5.7f) + curveToRelative(0.5f, 0.43f, 0.8f, 1.05f, 0.8f, 1.72f) + verticalLineToRelative(1.5f) + arcToRelative(10.68f, 10.68f, 0.0f, false, false, -3.0f, -0.44f) + curveToRelative(-1.5f, -0.01f, -2.91f, 0.3f, -3.98f, 0.83f) + curveToRelative(-0.96f, 0.48f, -1.91f, 1.3f, -2.01f, 2.46f) + lineTo(12.0f, 14.3f) + verticalLineToRelative(6.2f) + curveToRelative(0.0f, 0.17f, 0.02f, 0.34f, 0.06f, 0.5f) + lineTo(4.75f, 21.0f) + curveTo(3.78f, 21.0f, 3.0f, 20.22f, 3.0f, 19.25f) + verticalLineToRelative(-9.3f) + curveToRelative(0.0f, -0.67f, 0.3f, -1.3f, 0.8f, -1.72f) + lineToRelative(6.75f, -5.7f) + close() + moveTo(21.0f, 12.5f) + curveToRelative(-0.45f, -0.17f, -0.95f, -0.3f, -1.5f, -0.39f) + arcTo(9.7f, 9.7f, 0.0f, false, false, 18.0f, 12.0f) + curveToRelative(-2.76f, 0.0f, -5.0f, 1.12f, -5.0f, 2.5f) + reflectiveCurveToRelative(2.24f, 2.5f, 5.0f, 2.5f) + arcToRelative(9.7f, 9.7f, 0.0f, false, false, 1.5f, -0.11f) + arcToRelative(7.68f, 7.68f, 0.0f, false, false, 1.5f, -0.39f) + curveToRelative(1.21f, -0.46f, 2.0f, -1.18f, 2.0f, -2.0f) + curveToRelative(0.0f, -0.82f, -0.79f, -1.54f, -2.0f, -2.0f) + close() + moveTo(21.0f, 17.56f) + arcToRelative(9.08f, 9.08f, 0.0f, false, true, -3.0f, 0.44f) + arcToRelative(9.1f, 9.1f, 0.0f, false, true, -3.98f, -0.84f) + curveToRelative(-0.36f, -0.17f, -0.71f, -0.4f, -1.02f, -0.67f) + verticalLineToRelative(4.01f) + curveToRelative(0.0f, 0.36f, 0.15f, 0.7f, 0.42f, 1.0f) + curveToRelative(0.77f, 0.88f, 2.53f, 1.5f, 4.58f, 1.5f) + curveToRelative(2.76f, 0.0f, 5.0f, -1.12f, 5.0f, -2.5f) + verticalLineToRelative(-4.0f) + curveToRelative(-0.31f, 0.26f, -0.66f, 0.49f, -1.02f, 0.66f) + curveToRelative(-0.3f, 0.15f, -0.63f, 0.29f, -0.98f, 0.4f) + close() + } + } + return _homeDatabase!! + } + +private var _homeDatabase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HomeMore.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HomeMore.kt new file mode 100644 index 00000000..3c637d26 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HomeMore.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.HomeMore: ImageVector + get() { + if (_homeMore != null) { + return _homeMore!! + } + _homeMore = fluentIcon(name = "Filled.HomeMore") { + fluentPath { + moveTo(13.44f, 2.53f) + curveToRelative(-0.84f, -0.7f, -2.07f, -0.7f, -2.9f, 0.0f) + lineTo(3.8f, 8.23f) + curveTo(3.3f, 8.66f, 3.0f, 9.3f, 3.0f, 9.95f) + verticalLineToRelative(9.3f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(14.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-9.3f) + curveToRelative(0.0f, -0.66f, -0.3f, -1.3f, -0.8f, -1.72f) + lineToRelative(-6.76f, -5.7f) + close() + moveTo(9.0f, 11.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(13.25f, 11.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(17.5f, 11.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(9.0f, 15.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(12.0f, 17.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, 2.5f) + close() + moveTo(16.25f, 17.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, 2.5f) + close() + } + } + return _homeMore!! + } + +private var _homeMore: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HomePerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HomePerson.kt new file mode 100644 index 00000000..274e37e1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HomePerson.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.HomePerson: ImageVector + get() { + if (_homePerson != null) { + return _homePerson!! + } + _homePerson = fluentIcon(name = "Filled.HomePerson") { + fluentPath { + moveTo(10.55f, 2.53f) + curveToRelative(0.84f, -0.7f, 2.06f, -0.7f, 2.9f, 0.0f) + lineToRelative(6.75f, 5.7f) + curveToRelative(0.5f, 0.43f, 0.8f, 1.05f, 0.8f, 1.72f) + verticalLineToRelative(2.1f) + arcToRelative(3.49f, 3.49f, 0.0f, false, false, -6.0f, 2.45f) + verticalLineToRelative(0.5f) + arcToRelative(1.28f, 1.28f, 0.0f, false, false, -1.22f, -1.0f) + horizontalLineToRelative(-3.56f) + curveToRelative(-0.68f, 0.02f, -1.22f, 0.57f, -1.22f, 1.25f) + verticalLineToRelative(4.0f) + curveTo(9.0f, 20.22f, 8.22f, 21.0f, 7.25f, 21.0f) + horizontalLineToRelative(-2.5f) + curveTo(3.78f, 21.0f, 3.0f, 20.22f, 3.0f, 19.25f) + verticalLineToRelative(-9.3f) + curveToRelative(0.0f, -0.67f, 0.3f, -1.3f, 0.8f, -1.72f) + lineToRelative(6.75f, -5.7f) + close() + moveTo(21.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(23.0f, 19.88f) + curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) + reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _homePerson!! + } + +private var _homePerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HomeSplit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HomeSplit.kt new file mode 100644 index 00000000..660fe672 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HomeSplit.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.HomeSplit: ImageVector + get() { + if (_homeSplit != null) { + return _homeSplit!! + } + _homeSplit = fluentIcon(name = "Filled.HomeSplit") { + fluentPath { + moveTo(13.45f, 2.53f) + curveToRelative(-0.84f, -0.7f, -2.06f, -0.7f, -2.9f, 0.0f) + lineTo(3.8f, 8.23f) + curveToRelative(-0.5f, 0.43f, -0.8f, 1.05f, -0.8f, 1.72f) + verticalLineToRelative(9.3f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(14.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-9.3f) + curveToRelative(0.0f, -0.67f, -0.3f, -1.3f, -0.8f, -1.72f) + lineToRelative(-6.75f, -5.7f) + close() + moveTo(12.75f, 6.25f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(12.0f, 10.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(12.75f, 16.25f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + } + } + return _homeSplit!! + } + +private var _homeSplit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Hourglass.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Hourglass.kt new file mode 100644 index 00000000..b94c1ca8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Hourglass.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Hourglass: ImageVector + get() { + if (_hourglass != null) { + return _hourglass!! + } + _hourglass = fluentIcon(name = "Filled.Hourglass") { + fluentPath { + moveTo(17.25f, 4.5f) + horizontalLineTo(6.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(0.6f) + arcTo(3.24f, 3.24f, 0.0f, false, false, 7.92f, 8.0f) + lineTo(10.0f, 9.48f) + curveToRelative(0.42f, 0.28f, 0.77f, 0.65f, 1.02f, 1.09f) + arcToRelative(2.8f, 2.8f, 0.0f, false, true, 0.0f, 2.86f) + curveToRelative(-0.25f, 0.44f, -0.6f, 0.81f, -1.02f, 1.09f) + lineTo(7.92f, 16.0f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, -1.42f, 2.65f) + verticalLineToRelative(0.6f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.25f, 0.25f) + horizontalLineToRelative(10.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.25f, -0.25f) + verticalLineToRelative(-0.6f) + arcTo(3.24f, 3.24f, 0.0f, false, false, 16.08f, 16.0f) + lineTo(14.0f, 14.52f) + arcToRelative(3.22f, 3.22f, 0.0f, false, true, -1.02f, -1.09f) + arcToRelative(2.8f, 2.8f, 0.0f, false, true, 0.0f, -2.86f) + curveToRelative(0.25f, -0.44f, 0.6f, -0.81f, 1.02f, -1.09f) + lineTo(16.08f, 8.0f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, 1.42f, -2.65f) + verticalLineToRelative(-0.6f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + } + } + return _hourglass!! + } + +private var _hourglass: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HourglassHalf.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HourglassHalf.kt new file mode 100644 index 00000000..6023d4f1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HourglassHalf.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.HourglassHalf: ImageVector + get() { + if (_hourglassHalf != null) { + return _hourglassHalf!! + } + _hourglassHalf = fluentIcon(name = "Filled.HourglassHalf") { + fluentPath { + moveTo(6.75f, 19.5f) + horizontalLineToRelative(10.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.25f, -0.25f) + verticalLineToRelative(-0.6f) + arcTo(3.24f, 3.24f, 0.0f, false, false, 16.08f, 16.0f) + lineTo(14.0f, 14.52f) + arcTo(3.22f, 3.22f, 0.0f, false, true, 12.56f, 12.0f) + horizontalLineToRelative(-1.12f) + arcTo(3.22f, 3.22f, 0.0f, false, true, 10.0f, 14.52f) + lineTo(7.92f, 16.0f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, -1.42f, 2.65f) + verticalLineToRelative(0.6f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.25f, 0.25f) + close() + } + } + return _hourglassHalf!! + } + +private var _hourglassHalf: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HourglassOneQuarter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HourglassOneQuarter.kt new file mode 100644 index 00000000..1ca9c07f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HourglassOneQuarter.kt @@ -0,0 +1,32 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.HourglassOneQuarter: ImageVector + get() { + if (_hourglassOneQuarter != null) { + return _hourglassOneQuarter!! + } + _hourglassOneQuarter = fluentIcon(name = "Filled.HourglassOneQuarter") { + fluentPath { + moveTo(7.92f, 16.0f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, -1.42f, 2.65f) + verticalLineToRelative(0.6f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.25f, 0.25f) + horizontalLineToRelative(10.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.25f, -0.25f) + verticalLineToRelative(-0.6f) + arcTo(3.24f, 3.24f, 0.0f, false, false, 16.08f, 16.0f) + horizontalLineTo(7.92f) + close() + } + } + return _hourglassOneQuarter!! + } + +private var _hourglassOneQuarter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HourglassThreeQuarter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HourglassThreeQuarter.kt new file mode 100644 index 00000000..60fd64f3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/HourglassThreeQuarter.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.HourglassThreeQuarter: ImageVector + get() { + if (_hourglassThreeQuarter != null) { + return _hourglassThreeQuarter!! + } + _hourglassThreeQuarter = fluentIcon(name = "Filled.HourglassThreeQuarter") { + fluentPath { + moveTo(6.97f, 7.0f) + curveToRelative(0.24f, 0.4f, 0.56f, 0.74f, 0.95f, 1.0f) + lineTo(10.0f, 9.48f) + curveToRelative(0.42f, 0.28f, 0.77f, 0.65f, 1.02f, 1.09f) + arcToRelative(2.8f, 2.8f, 0.0f, false, true, 0.0f, 2.86f) + curveToRelative(-0.25f, 0.44f, -0.6f, 0.81f, -1.02f, 1.09f) + lineTo(7.92f, 16.0f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, -1.42f, 2.65f) + verticalLineToRelative(0.6f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.25f, 0.25f) + horizontalLineToRelative(10.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.25f, -0.25f) + verticalLineToRelative(-0.6f) + arcTo(3.24f, 3.24f, 0.0f, false, false, 16.08f, 16.0f) + lineTo(14.0f, 14.52f) + arcToRelative(3.22f, 3.22f, 0.0f, false, true, -1.02f, -1.09f) + arcToRelative(2.8f, 2.8f, 0.0f, false, true, 0.0f, -2.86f) + curveToRelative(0.25f, -0.44f, 0.6f, -0.81f, 1.02f, -1.09f) + lineTo(16.08f, 8.0f) + curveToRelative(0.39f, -0.26f, 0.7f, -0.6f, 0.95f, -1.0f) + horizontalLineTo(6.97f) + close() + } + } + return _hourglassThreeQuarter!! + } + +private var _hourglassThreeQuarter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Icons.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Icons.kt new file mode 100644 index 00000000..b54e5ad0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Icons.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Icons: ImageVector + get() { + if (_icons != null) { + return _icons!! + } + _icons = fluentIcon(name = "Filled.Icons") { + fluentPath { + moveTo(17.1f, 9.6f) + curveToRelative(0.23f, -0.26f, 0.42f, -0.55f, 0.58f, -0.85f) + lineTo(20.0f, 8.75f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineToRelative(-2.8f) + arcTo(4.75f, 4.75f, 0.0f, true, false, 9.45f, 9.0f) + lineTo(4.5f, 9.0f) + curveTo(3.67f, 9.0f, 3.0f, 9.67f, 3.0f, 10.5f) + verticalLineToRelative(0.75f) + arcToRelative(7.0f, 7.0f, 0.0f, false, false, 7.0f, 7.0f) + horizontalLineToRelative(0.97f) + lineToRelative(0.05f, -0.12f) + arcTo(4.55f, 4.55f, 0.0f, false, true, 10.5f, 16.0f) + curveToRelative(0.0f, -1.24f, 0.61f, -2.46f, 1.48f, -3.39f) + curveToRelative(0.9f, -0.95f, 2.2f, -1.73f, 3.79f, -1.94f) + curveToRelative(0.87f, -0.11f, 1.65f, -0.17f, 2.35f, -0.18f) + arcToRelative(4.02f, 4.02f, 0.0f, false, false, -1.02f, -0.9f) + close() + moveTo(12.24f, 17.95f) + arcToRelative(6.97f, 6.97f, 0.0f, false, false, -1.23f, 3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.1f) + curveToRelative(0.03f, -0.52f, 0.24f, -1.21f, 0.64f, -1.95f) + curveToRelative(0.6f, 0.62f, 1.52f, 1.15f, 2.85f, 1.15f) + curveToRelative(1.3f, 0.0f, 2.28f, -0.45f, 3.0f, -1.19f) + curveToRelative(0.7f, -0.7f, 1.1f, -1.62f, 1.4f, -2.48f) + curveToRelative(0.14f, -0.44f, 0.27f, -0.88f, 0.38f, -1.29f) + lineToRelative(0.05f, -0.21f) + lineToRelative(0.27f, -0.93f) + curveToRelative(0.1f, -0.34f, 0.2f, -0.61f, 0.32f, -0.82f) + curveToRelative(0.1f, -0.21f, 0.2f, -0.3f, 0.26f, -0.34f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.22f, -1.35f) + arcToRelative(13.5f, 13.5f, 0.0f, false, false, -5.56f, -0.23f) + arcToRelative(5.33f, 5.33f, 0.0f, false, false, -3.2f, 1.64f) + arcToRelative(4.14f, 4.14f, 0.0f, false, false, -1.2f, 2.7f) + curveToRelative(0.0f, 0.38f, 0.06f, 0.72f, 0.15f, 1.02f) + arcToRelative(9.9f, 9.9f, 0.0f, false, true, 5.73f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.24f, 0.97f) + arcToRelative(8.9f, 8.9f, 0.0f, false, false, -5.38f, 3.96f) + close() + } + } + return _icons!! + } + +private var _icons: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageAdd.kt new file mode 100644 index 00000000..71bcdcb3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageAdd.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ImageAdd: ImageVector + get() { + if (_imageAdd != null) { + return _imageAdd!! + } + _imageAdd = fluentIcon(name = "Filled.ImageAdd") { + fluentPath { + moveToRelative(13.43f, 14.64f) + lineToRelative(0.1f, 0.08f) + lineToRelative(6.92f, 6.8f) + curveToRelative(-0.5f, 0.3f, -1.08f, 0.48f, -1.7f, 0.48f) + lineTo(7.25f, 22.0f) + curveToRelative(-0.62f, 0.0f, -1.2f, -0.18f, -1.7f, -0.48f) + lineToRelative(6.92f, -6.8f) + lineToRelative(0.09f, -0.07f) + curveToRelative(0.26f, -0.2f, 0.61f, -0.2f, 0.87f, -0.01f) + close() + moveTo(18.75f, 4.0f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.63f, -0.18f, 1.21f, -0.49f, 1.7f) + lineToRelative(-6.93f, -6.8f) + lineToRelative(-0.13f, -0.12f) + curveToRelative(-0.83f, -0.7f, -2.06f, -0.7f, -2.9f, 0.0f) + lineToRelative(-0.13f, 0.12f) + lineToRelative(-6.93f, 6.8f) + curveToRelative(-0.31f, -0.49f, -0.49f, -1.07f, -0.49f, -1.7f) + lineTo(4.0f, 12.5f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.5f, 4.0f) + horizontalLineToRelative(6.25f) + close() + moveTo(6.5f, 1.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(16.75f, 7.0f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, 4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, -4.5f) + close() + moveTo(16.75f, 8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(6.5f, 3.0f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) + lineTo(6.0f, 3.5f) + lineTo(6.0f, 6.0f) + lineTo(3.4f, 6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(0.18f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) + lineToRelative(0.1f, 0.01f) + lineTo(6.0f, 7.0f) + verticalLineToRelative(2.6f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + horizontalLineToRelative(0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) + lineTo(7.0f, 9.5f) + lineTo(7.0f, 7.0f) + horizontalLineToRelative(2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + verticalLineToRelative(-0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) + lineTo(9.5f, 6.0f) + lineTo(7.0f, 6.0f) + lineTo(7.0f, 3.4f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) + lineTo(6.5f, 3.0f) + close() + } + } + return _imageAdd!! + } + +private var _imageAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageAltText.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageAltText.kt new file mode 100644 index 00000000..e3b3e5c9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageAltText.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ImageAltText: ImageVector + get() { + if (_imageAltText != null) { + return _imageAltText!! + } + _imageAltText = fluentIcon(name = "Filled.ImageAltText") { + fluentPath { + moveTo(1.0f, 3.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + verticalLineToRelative(6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + lineTo(3.0f, 11.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(1.0f, 3.0f) + close() + moveTo(3.5f, 4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + horizontalLineToRelative(-6.0f) + close() + moveTo(3.5f, 7.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + horizontalLineToRelative(-6.0f) + close() + moveTo(16.75f, 8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(13.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + lineTo(4.0f, 12.0f) + verticalLineToRelative(6.75f) + curveToRelative(0.0f, 0.63f, 0.18f, 1.21f, 0.49f, 1.7f) + lineToRelative(6.93f, -6.8f) + lineToRelative(0.14f, -0.13f) + curveToRelative(0.83f, -0.7f, 2.05f, -0.7f, 2.89f, 0.01f) + lineToRelative(0.13f, 0.12f) + lineToRelative(6.93f, 6.8f) + curveToRelative(0.31f, -0.49f, 0.49f, -1.07f, 0.49f, -1.7f) + lineTo(22.0f, 7.25f) + curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) + lineTo(13.0f, 4.0f) + verticalLineToRelative(5.0f) + close() + moveTo(16.75f, 7.0f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -4.5f) + close() + moveTo(12.47f, 14.72f) + lineTo(12.56f, 14.65f) + curveToRelative(0.26f, -0.2f, 0.61f, -0.2f, 0.87f, -0.01f) + lineToRelative(0.1f, 0.08f) + lineToRelative(6.92f, 6.8f) + curveToRelative(-0.5f, 0.3f, -1.08f, 0.48f, -1.7f, 0.48f) + lineTo(7.25f, 22.0f) + curveToRelative(-0.62f, 0.0f, -1.2f, -0.18f, -1.7f, -0.48f) + lineToRelative(6.92f, -6.8f) + close() + } + } + return _imageAltText!! + } + +private var _imageAltText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageArrowBack.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageArrowBack.kt new file mode 100644 index 00000000..edf99d2a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageArrowBack.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ImageArrowBack: ImageVector + get() { + if (_imageArrowBack != null) { + return _imageArrowBack!! + } + _imageArrowBack = fluentIcon(name = "Filled.ImageArrowBack") { + fluentPath { + moveTo(12.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(5.35f, 4.35f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.7f, -0.7f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(1.5f, 1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, -0.7f) + lineTo(4.71f, 6.0f) + horizontalLineToRelative(2.04f) + curveTo(7.99f, 6.0f, 9.0f, 7.0f, 9.0f, 8.25f) + verticalLineToRelative(0.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-0.25f) + curveTo(10.0f, 6.45f, 8.54f, 5.0f, 6.75f, 5.0f) + lineTo(4.71f, 5.0f) + lineToRelative(0.64f, -0.65f) + close() + moveTo(15.75f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(13.0f, 6.5f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, -10.0f, 5.48f) + verticalLineToRelative(5.77f) + curveToRelative(0.0f, 0.63f, 0.18f, 1.21f, 0.49f, 1.7f) + lineToRelative(6.93f, -6.8f) + lineToRelative(0.14f, -0.13f) + curveToRelative(0.83f, -0.7f, 2.05f, -0.7f, 2.89f, 0.01f) + lineToRelative(0.13f, 0.12f) + lineToRelative(6.93f, 6.8f) + curveToRelative(0.31f, -0.49f, 0.49f, -1.07f, 0.49f, -1.7f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + horizontalLineToRelative(-5.77f) + arcTo(6.47f, 6.47f, 0.0f, false, true, 13.0f, 6.5f) + close() + moveTo(15.75f, 6.0f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -4.5f) + close() + moveTo(11.47f, 13.72f) + lineTo(11.56f, 13.65f) + curveToRelative(0.26f, -0.2f, 0.61f, -0.2f, 0.87f, -0.01f) + lineToRelative(0.1f, 0.08f) + lineToRelative(6.92f, 6.8f) + curveToRelative(-0.5f, 0.3f, -1.08f, 0.48f, -1.7f, 0.48f) + lineTo(6.25f, 21.0f) + curveToRelative(-0.62f, 0.0f, -1.2f, -0.18f, -1.7f, -0.48f) + lineToRelative(6.92f, -6.8f) + close() + } + } + return _imageArrowBack!! + } + +private var _imageArrowBack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageArrowCounterclockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageArrowCounterclockwise.kt new file mode 100644 index 00000000..25baf5ce --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageArrowCounterclockwise.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ImageArrowCounterclockwise: ImageVector + get() { + if (_imageArrowCounterclockwise != null) { + return _imageArrowCounterclockwise!! + } + _imageArrowCounterclockwise = fluentIcon(name = "Filled.ImageArrowCounterclockwise") { + fluentPath { + moveTo(12.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(4.0f, 3.5f) + verticalLineToRelative(0.55f) + arcToRelative(3.49f, 3.49f, 0.0f, false, true, 6.0f, 2.45f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -6.19f, 2.24f) + curveToRelative(-0.26f, -0.31f, 0.0f, -0.74f, 0.41f, -0.74f) + curveToRelative(0.18f, 0.0f, 0.34f, 0.09f, 0.46f, 0.21f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 9.0f, 6.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.5f, 5.0f) + horizontalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + verticalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + close() + moveTo(17.5f, 9.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + close() + moveTo(13.0f, 6.5f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, -9.0f, 6.0f) + verticalLineToRelative(6.25f) + curveToRelative(0.0f, 0.63f, 0.18f, 1.21f, 0.49f, 1.7f) + lineToRelative(6.93f, -6.8f) + lineToRelative(0.14f, -0.13f) + curveToRelative(0.83f, -0.7f, 2.05f, -0.7f, 2.89f, 0.01f) + lineToRelative(0.13f, 0.12f) + lineToRelative(6.93f, 6.8f) + curveToRelative(0.31f, -0.49f, 0.49f, -1.07f, 0.49f, -1.7f) + lineTo(22.0f, 7.25f) + curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) + lineTo(12.5f, 4.0f) + curveToRelative(0.32f, 0.77f, 0.5f, 1.61f, 0.5f, 2.5f) + close() + moveTo(14.5f, 9.25f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) + close() + moveTo(12.47f, 14.72f) + lineTo(12.56f, 14.65f) + curveToRelative(0.26f, -0.2f, 0.61f, -0.2f, 0.87f, -0.01f) + lineToRelative(0.1f, 0.08f) + lineToRelative(6.92f, 6.8f) + curveToRelative(-0.5f, 0.3f, -1.08f, 0.48f, -1.7f, 0.48f) + lineTo(7.25f, 22.0f) + curveToRelative(-0.62f, 0.0f, -1.2f, -0.18f, -1.7f, -0.48f) + lineToRelative(6.92f, -6.8f) + close() + } + } + return _imageArrowCounterclockwise!! + } + +private var _imageArrowCounterclockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageArrowForward.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageArrowForward.kt new file mode 100644 index 00000000..c1ab8d27 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageArrowForward.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ImageArrowForward: ImageVector + get() { + if (_imageArrowForward != null) { + return _imageArrowForward!! + } + _imageArrowForward = fluentIcon(name = "Filled.ImageArrowForward") { + fluentPath { + moveTo(1.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) + close() + moveTo(7.65f, 4.35f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.7f, -0.7f) + lineToRelative(1.5f, 1.5f) + curveToRelative(0.2f, 0.2f, 0.2f, 0.5f, 0.0f, 0.7f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -0.7f, -0.7f) + lineTo(8.29f, 6.0f) + lineTo(6.25f, 6.0f) + curveTo(5.01f, 6.0f, 4.0f, 7.0f, 4.0f, 8.25f) + verticalLineToRelative(0.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-0.25f) + curveTo(3.0f, 6.45f, 4.46f, 5.0f, 6.25f, 5.0f) + horizontalLineToRelative(2.04f) + lineToRelative(-0.64f, -0.65f) + close() + moveTo(15.75f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(13.0f, 6.5f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, -10.0f, 5.48f) + verticalLineToRelative(5.77f) + curveToRelative(0.0f, 0.63f, 0.18f, 1.21f, 0.49f, 1.7f) + lineToRelative(6.93f, -6.8f) + lineToRelative(0.14f, -0.13f) + curveToRelative(0.83f, -0.7f, 2.05f, -0.7f, 2.89f, 0.01f) + lineToRelative(0.13f, 0.12f) + lineToRelative(6.93f, 6.8f) + curveToRelative(0.31f, -0.49f, 0.49f, -1.07f, 0.49f, -1.7f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + horizontalLineToRelative(-5.77f) + arcTo(6.47f, 6.47f, 0.0f, false, true, 13.0f, 6.5f) + close() + moveTo(15.75f, 6.0f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -4.5f) + close() + moveTo(11.47f, 13.72f) + lineTo(11.56f, 13.65f) + curveToRelative(0.26f, -0.2f, 0.61f, -0.2f, 0.87f, -0.01f) + lineToRelative(0.1f, 0.08f) + lineToRelative(6.92f, 6.8f) + curveToRelative(-0.5f, 0.3f, -1.08f, 0.48f, -1.7f, 0.48f) + lineTo(6.25f, 21.0f) + curveToRelative(-0.62f, 0.0f, -1.2f, -0.18f, -1.7f, -0.48f) + lineToRelative(6.92f, -6.8f) + close() + } + } + return _imageArrowForward!! + } + +private var _imageArrowForward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageBorder.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageBorder.kt new file mode 100644 index 00000000..2324ed1c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageBorder.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ImageBorder: ImageVector + get() { + if (_imageBorder != null) { + return _imageBorder!! + } + _imageBorder = fluentIcon(name = "Filled.ImageBorder") { + fluentPath { + moveTo(10.4f, 12.66f) + lineTo(8.0f, 15.06f) + lineTo(8.0f, 8.0f) + horizontalLineToRelative(8.0f) + verticalLineToRelative(7.07f) + lineToRelative(-2.4f, -2.41f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.2f, 0.0f) + close() + moveTo(14.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(12.53f, 13.72f) + lineTo(14.81f, 16.0f) + lineTo(9.2f, 16.0f) + lineToRelative(2.28f, -2.28f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(7.25f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(9.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-9.5f) + close() + } + } + return _imageBorder!! + } + +private var _imageBorder: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageCircle.kt new file mode 100644 index 00000000..854662a6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageCircle.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ImageCircle: ImageVector + get() { + if (_imageCircle != null) { + return _imageCircle!! + } + _imageCircle = fluentIcon(name = "Filled.ImageCircle") { + fluentPath { + moveTo(19.56f, 18.54f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -15.13f, 0.0f) + lineToRelative(5.99f, -5.9f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.16f, 0.0f) + lineToRelative(5.98f, 5.9f) + close() + moveTo(18.5f, 19.6f) + lineToRelative(-5.97f, -5.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineTo(5.5f, 19.6f) + arcToRelative(9.96f, 9.96f, 0.0f, false, false, 13.0f, 0.0f) + close() + moveTo(17.5f, 8.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + } + } + return _imageCircle!! + } + +private var _imageCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageCopy.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageCopy.kt new file mode 100644 index 00000000..0cd47350 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageCopy.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ImageCopy: ImageVector + get() { + if (_imageCopy != null) { + return _imageCopy!! + } + _imageCopy = fluentIcon(name = "Filled.ImageCopy") { + fluentPath { + moveTo(4.5f, 6.0f) + curveTo(3.6f, 6.59f, 3.0f, 7.6f, 3.0f, 8.76f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 2.9f, 2.35f, 5.25f, 5.25f, 5.25f) + horizontalLineToRelative(6.5f) + curveToRelative(1.15f, 0.0f, 2.17f, -0.6f, 2.74f, -1.5f) + lineTo(8.25f, 19.01f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.75f, -3.75f) + lineTo(4.5f, 6.01f) + close() + moveTo(12.57f, 12.15f) + lineTo(12.47f, 12.23f) + lineTo(7.08f, 17.54f) + curveToRelative(0.49f, 0.3f, 1.06f, 0.46f, 1.67f, 0.46f) + horizontalLineToRelative(8.5f) + curveToRelative(0.62f, 0.0f, 1.2f, -0.17f, 1.7f, -0.48f) + lineToRelative(-5.42f, -5.3f) + lineToRelative(-0.09f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.77f, -0.06f) + lineToRelative(-0.1f, 0.06f) + close() + moveTo(8.75f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 5.5f, 6.25f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.64f, 0.19f, 1.24f, 0.5f, 1.74f) + lineToRelative(5.42f, -5.33f) + lineToRelative(0.13f, -0.12f) + curveToRelative(0.83f, -0.7f, 2.06f, -0.7f, 2.9f, 0.0f) + lineToRelative(0.13f, 0.11f) + lineTo(20.0f, 16.47f) + curveToRelative(0.31f, -0.5f, 0.49f, -1.09f, 0.49f, -1.72f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-8.5f) + close() + moveTo(9.5f, 5.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + } + } + return _imageCopy!! + } + +private var _imageCopy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageEdit.kt new file mode 100644 index 00000000..963c2f4d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageEdit.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ImageEdit: ImageVector + get() { + if (_imageEdit != null) { + return _imageEdit!! + } + _imageEdit = fluentIcon(name = "Filled.ImageEdit") { + fluentPath { + moveToRelative(11.56f, 13.65f) + lineToRelative(-0.09f, 0.07f) + lineToRelative(-6.92f, 6.8f) + curveToRelative(0.5f, 0.3f, 1.08f, 0.48f, 1.7f, 0.48f) + horizontalLineToRelative(4.91f) + lineToRelative(0.36f, -1.42f) + curveToRelative(0.16f, -0.65f, 0.5f, -1.24f, 0.97f, -1.72f) + lineToRelative(2.1f, -2.1f) + lineToRelative(-2.07f, -2.04f) + lineToRelative(-0.09f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.87f, 0.0f) + close() + moveTo(16.5f, 8.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + close() + moveTo(15.66f, 14.69f) + lineTo(13.58f, 12.65f) + lineTo(13.45f, 12.53f) + curveToRelative(-0.84f, -0.7f, -2.06f, -0.7f, -2.9f, 0.0f) + lineToRelative(-0.13f, 0.12f) + lineToRelative(-6.93f, 6.8f) + curveToRelative(-0.31f, -0.49f, -0.49f, -1.07f, -0.49f, -1.7f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.45f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.45f, 21.0f, 6.25f) + verticalLineToRelative(4.76f) + curveToRelative(-0.93f, -0.08f, -1.9f, 0.24f, -2.6f, 0.95f) + lineToRelative(-2.74f, 2.73f) + close() + moveTo(13.5f, 8.25f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 4.5f, 0.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -4.5f, 0.0f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.34f, -0.6f, 0.78f, -0.71f, 1.25f) + lineToRelative(-0.46f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _imageEdit!! + } + +private var _imageEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageGlobe.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageGlobe.kt new file mode 100644 index 00000000..7dc111e5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageGlobe.kt @@ -0,0 +1,113 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ImageGlobe: ImageVector + get() { + if (_imageGlobe != null) { + return _imageGlobe!! + } + _imageGlobe = fluentIcon(name = "Filled.ImageGlobe") { + fluentPath { + moveTo(5.0f, 6.0f) + curveToRelative(0.05f, -1.41f, 0.25f, -2.67f, 0.56f, -3.58f) + curveToRelative(0.17f, -0.52f, 0.36f, -0.9f, 0.55f, -1.14f) + curveToRelative(0.2f, -0.25f, 0.33f, -0.28f, 0.39f, -0.28f) + reflectiveCurveToRelative(0.2f, 0.03f, 0.39f, 0.28f) + curveToRelative(0.19f, 0.24f, 0.38f, 0.62f, 0.55f, 1.14f) + curveToRelative(0.3f, 0.91f, 0.51f, 2.17f, 0.55f, 3.58f) + horizontalLineTo(5.01f) + close() + } + fluentPath { + moveTo(4.61f, 2.1f) + curveToRelative(0.1f, -0.32f, 0.23f, -0.62f, 0.37f, -0.89f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 1.02f, 6.0f) + horizontalLineToRelative(2.99f) + curveToRelative(0.04f, -1.5f, 0.26f, -2.87f, 0.6f, -3.9f) + close() + } + fluentPath { + moveTo(8.39f, 2.1f) + curveToRelative(-0.1f, -0.32f, -0.23f, -0.62f, -0.37f, -0.89f) + arcTo(5.5f, 5.5f, 0.0f, false, true, 11.98f, 6.0f) + horizontalLineTo(8.99f) + curveToRelative(-0.04f, -1.5f, -0.26f, -2.87f, -0.6f, -3.9f) + close() + } + fluentPath { + moveTo(9.0f, 7.0f) + horizontalLineToRelative(2.98f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, -3.96f, 4.79f) + curveToRelative(0.14f, -0.27f, 0.26f, -0.57f, 0.37f, -0.89f) + curveToRelative(0.34f, -1.03f, 0.56f, -2.4f, 0.6f, -3.9f) + close() + } + fluentPath { + moveTo(6.89f, 11.72f) + curveToRelative(-0.2f, 0.25f, -0.33f, 0.28f, -0.39f, 0.28f) + reflectiveCurveToRelative(-0.2f, -0.03f, -0.39f, -0.28f) + arcToRelative(3.84f, 3.84f, 0.0f, false, true, -0.55f, -1.14f) + curveToRelative(-0.3f, -0.91f, -0.51f, -2.17f, -0.55f, -3.58f) + horizontalLineToRelative(2.98f) + arcToRelative(12.92f, 12.92f, 0.0f, false, true, -0.55f, 3.58f) + curveToRelative(-0.17f, 0.52f, -0.36f, 0.9f, -0.55f, 1.14f) + close() + } + fluentPath { + moveTo(1.02f, 7.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 3.96f, 4.79f) + arcToRelative(6.13f, 6.13f, 0.0f, false, true, -0.37f, -0.89f) + curveToRelative(-0.34f, -1.03f, -0.56f, -2.4f, -0.6f, -3.9f) + horizontalLineTo(1.02f) + close() + } + fluentPath { + moveTo(15.75f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + } + fluentPath { + moveTo(6.5f, 13.0f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, 5.48f, -10.0f) + horizontalLineToRelative(5.77f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.63f, -0.18f, 1.21f, -0.49f, 1.7f) + lineToRelative(-6.93f, -6.8f) + lineToRelative(-0.13f, -0.12f) + curveToRelative(-0.83f, -0.7f, -2.06f, -0.7f, -2.9f, 0.0f) + lineToRelative(-0.13f, 0.12f) + lineToRelative(-6.93f, 6.8f) + curveToRelative(-0.31f, -0.49f, -0.49f, -1.07f, -0.49f, -1.7f) + verticalLineToRelative(-5.77f) + arcTo(6.47f, 6.47f, 0.0f, false, false, 6.5f, 13.0f) + close() + moveTo(15.75f, 6.0f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, 4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, -4.5f) + close() + } + fluentPath { + moveToRelative(11.47f, 13.72f) + lineToRelative(0.09f, -0.07f) + curveToRelative(0.26f, -0.2f, 0.61f, -0.2f, 0.87f, -0.01f) + lineToRelative(0.1f, 0.08f) + lineToRelative(6.92f, 6.8f) + curveToRelative(-0.5f, 0.3f, -1.08f, 0.48f, -1.7f, 0.48f) + horizontalLineTo(6.25f) + curveToRelative(-0.62f, 0.0f, -1.2f, -0.18f, -1.7f, -0.48f) + lineToRelative(6.92f, -6.8f) + close() + } + } + return _imageGlobe!! + } + +private var _imageGlobe: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageMultiple.kt new file mode 100644 index 00000000..2f86c4e5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageMultiple.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ImageMultiple: ImageVector + get() { + if (_imageMultiple != null) { + return _imageMultiple!! + } + _imageMultiple = fluentIcon(name = "Filled.ImageMultiple") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(9.0f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 0.65f, -0.19f, 1.25f, -0.51f, 1.75f) + lineToRelative(-5.7f, -5.37f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.09f, 0.0f) + lineTo(3.51f, 17.0f) + curveTo(3.2f, 16.5f, 3.0f, 15.9f, 3.0f, 15.25f) + verticalLineToRelative(-9.0f) + close() + moveTo(13.75f, 9.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + moveTo(11.26f, 12.72f) + lineTo(16.91f, 18.05f) + curveToRelative(-0.49f, 0.28f, -1.06f, 0.45f, -1.66f, 0.45f) + horizontalLineToRelative(-9.0f) + curveToRelative(-0.6f, 0.0f, -1.17f, -0.17f, -1.66f, -0.45f) + lineToRelative(5.64f, -5.33f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, 0.0f) + close() + moveTo(8.75f, 21.0f) + curveTo(7.6f, 21.0f, 6.59f, 20.4f, 6.0f, 19.5f) + horizontalLineToRelative(9.74f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 3.75f, -3.75f) + lineTo(19.49f, 6.01f) + curveToRelative(0.9f, 0.58f, 1.5f, 1.59f, 1.5f, 2.74f) + verticalLineToRelative(7.0f) + curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) + horizontalLineToRelative(-7.0f) + close() + } + } + return _imageMultiple!! + } + +private var _imageMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageOff.kt new file mode 100644 index 00000000..87bd641c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageOff.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ImageOff: ImageVector + get() { + if (_imageOff != null) { + return _imageOff!! + } + _imageOff = fluentIcon(name = "Filled.ImageOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.26f, 1.26f) + curveToRelative(-0.3f, 0.5f, -0.48f, 1.08f, -0.48f, 1.71f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.63f, 0.18f, 1.21f, 0.49f, 1.7f) + lineToRelative(6.93f, -6.8f) + lineToRelative(0.14f, -0.13f) + curveToRelative(0.17f, -0.14f, 0.36f, -0.25f, 0.56f, -0.34f) + lineToRelative(0.95f, 0.95f) + lineToRelative(-0.6f, 0.59f) + lineToRelative(-6.92f, 6.8f) + curveToRelative(0.5f, 0.3f, 1.08f, 0.48f, 1.7f, 0.48f) + horizontalLineToRelative(11.5f) + curveToRelative(0.62f, 0.0f, 1.2f, -0.18f, 1.7f, -0.48f) + lineToRelative(-0.02f, -0.03f) + lineToRelative(1.29f, 1.3f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.07f) + lineTo(3.28f, 2.22f) + close() + moveTo(15.75f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(21.0f, 17.75f) + verticalLineToRelative(0.07f) + lineTo(6.18f, 3.0f) + horizontalLineToRelative(11.57f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + close() + moveTo(15.75f, 6.0f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, 4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, -4.5f) + close() + } + } + return _imageOff!! + } + +private var _imageOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageProhibited.kt new file mode 100644 index 00000000..20afd430 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageProhibited.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ImageProhibited: ImageVector + get() { + if (_imageProhibited != null) { + return _imageProhibited!! + } + _imageProhibited = fluentIcon(name = "Filled.ImageProhibited") { + fluentPath { + moveTo(6.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) + close() + moveTo(6.5f, 10.5f) + curveToRelative(-0.83f, 0.0f, -1.6f, -0.25f, -2.25f, -0.7f) + lineToRelative(5.56f, -5.55f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -3.3f, 6.25f) + close() + moveTo(3.2f, 8.75f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 5.56f, -5.56f) + lineTo(3.18f, 8.75f) + close() + moveTo(16.5f, 8.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + close() + moveTo(6.5f, 13.0f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, 5.48f, -10.0f) + horizontalLineToRelative(5.77f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.63f, -0.18f, 1.21f, -0.49f, 1.7f) + lineToRelative(-6.93f, -6.8f) + lineToRelative(-0.13f, -0.12f) + curveToRelative(-0.83f, -0.7f, -2.06f, -0.7f, -2.9f, 0.0f) + lineToRelative(-0.13f, 0.12f) + lineToRelative(-6.93f, 6.8f) + curveToRelative(-0.31f, -0.49f, -0.49f, -1.07f, -0.49f, -1.7f) + verticalLineToRelative(-5.77f) + arcTo(6.47f, 6.47f, 0.0f, false, false, 6.5f, 13.0f) + close() + moveTo(13.5f, 8.25f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 4.5f, 0.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -4.5f, 0.0f) + close() + moveTo(11.56f, 13.65f) + lineTo(11.47f, 13.72f) + lineTo(4.55f, 20.52f) + curveToRelative(0.5f, 0.3f, 1.08f, 0.48f, 1.7f, 0.48f) + horizontalLineToRelative(11.5f) + curveToRelative(0.62f, 0.0f, 1.2f, -0.18f, 1.7f, -0.48f) + lineToRelative(-6.92f, -6.8f) + lineToRelative(-0.1f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.87f, 0.0f) + close() + } + } + return _imageProhibited!! + } + +private var _imageProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageReflection.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageReflection.kt new file mode 100644 index 00000000..4497a5d7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageReflection.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ImageReflection: ImageVector + get() { + if (_imageReflection != null) { + return _imageReflection!! + } + _imageReflection = fluentIcon(name = "Filled.ImageReflection") { + fluentPath { + moveTo(4.0f, 6.25f) + curveTo(4.0f, 4.45f, 5.46f, 3.0f, 7.25f, 3.0f) + horizontalLineToRelative(9.5f) + curveTo(18.55f, 3.0f, 20.0f, 4.46f, 20.0f, 6.25f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 1.0f, -0.46f, 1.9f, -1.17f, 2.5f) + curveToRelative(0.71f, 0.6f, 1.17f, 1.5f, 1.17f, 2.5f) + lineTo(20.0f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, -1.0f) + horizontalLineToRelative(-1.6f) + curveToRelative(0.04f, 0.08f, 0.05f, 0.16f, 0.05f, 0.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, -1.0f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, 1.0f) + horizontalLineToRelative(-1.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(5.5f, 21.0f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 4.0f, 21.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -1.0f, 0.46f, -1.9f, 1.17f, -2.5f) + arcTo(3.27f, 3.27f, 0.0f, false, true, 4.0f, 15.25f) + verticalLineToRelative(-9.0f) + close() + moveTo(5.78f, 16.2f) + curveToRelative(0.29f, 0.45f, 0.78f, 0.75f, 1.33f, 0.8f) + lineToRelative(4.37f, -4.29f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, 0.0f) + lineTo(16.92f, 17.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 1.31f, -0.81f) + lineToRelative(-4.66f, -4.54f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.14f, 0.0f) + lineTo(5.78f, 16.2f) + close() + moveTo(15.0f, 9.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcTo(1.25f, 1.25f, 0.0f, false, false, 15.0f, 9.0f) + close() + } + } + return _imageReflection!! + } + +private var _imageReflection: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageSearch.kt new file mode 100644 index 00000000..eacc4914 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageSearch.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ImageSearch: ImageVector + get() { + if (_imageSearch != null) { + return _imageSearch!! + } + _imageSearch = fluentIcon(name = "Filled.ImageSearch") { + fluentPath { + moveTo(16.5f, 8.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + close() + moveTo(3.0f, 10.75f) + verticalLineToRelative(-4.5f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.63f, -0.18f, 1.21f, -0.49f, 1.7f) + lineToRelative(-6.93f, -6.8f) + lineToRelative(-0.13f, -0.12f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.25f, -0.38f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -8.2f, -1.4f) + close() + moveTo(13.5f, 8.25f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 4.5f, 0.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -4.5f, 0.0f) + close() + moveTo(13.98f, 21.0f) + curveToRelative(-0.05f, -0.36f, -0.21f, -0.7f, -0.5f, -0.99f) + lineToRelative(-2.23f, -2.24f) + arcToRelative(5.48f, 5.48f, 0.0f, false, false, 0.55f, -4.24f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.63f, 0.11f) + lineToRelative(0.1f, 0.08f) + lineToRelative(6.92f, 6.8f) + curveToRelative(-0.5f, 0.3f, -1.08f, 0.48f, -1.7f, 0.48f) + horizontalLineToRelative(-3.77f) + close() + moveTo(9.95f, 17.89f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, -1.15f, 0.98f) + lineToRelative(2.92f, 2.91f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.83f, -2.83f) + close() + moveTo(6.5f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) + close() + } + } + return _imageSearch!! + } + +private var _imageSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageShadow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageShadow.kt new file mode 100644 index 00000000..53a597fb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageShadow.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ImageShadow: ImageVector + get() { + if (_imageShadow != null) { + return _imageShadow!! + } + _imageShadow = fluentIcon(name = "Filled.ImageShadow") { + fluentPath { + moveTo(5.25f, 2.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 0.64f, 0.19f, 1.24f, 0.5f, 1.74f) + lineToRelative(5.7f, -5.37f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.1f, 0.0f) + lineTo(17.0f, 16.0f) + curveToRelative(0.31f, -0.5f, 0.5f, -1.1f, 0.5f, -1.74f) + verticalLineToRelative(-9.0f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-9.0f) + close() + moveTo(12.75f, 8.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, 2.5f) + close() + moveTo(5.25f, 17.5f) + curveToRelative(-0.61f, 0.0f, -1.18f, -0.17f, -1.67f, -0.46f) + lineToRelative(5.66f, -5.33f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.02f, 0.0f) + lineToRelative(5.66f, 5.33f) + curveToRelative(-0.49f, 0.3f, -1.06f, 0.46f, -1.67f, 0.46f) + horizontalLineToRelative(-9.0f) + close() + moveTo(6.5f, 18.75f) + verticalLineToRelative(-0.25f) + horizontalLineToRelative(8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, -4.0f) + verticalLineToRelative(-8.0f) + horizontalLineToRelative(0.25f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(7.0f) + curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) + horizontalLineToRelative(-7.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.25f, -3.25f) + close() + } + } + return _imageShadow!! + } + +private var _imageShadow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageTable.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageTable.kt new file mode 100644 index 00000000..3c705998 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImageTable.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ImageTable: ImageVector + get() { + if (_imageTable != null) { + return _imageTable!! + } + _imageTable = fluentIcon(name = "Filled.ImageTable") { + fluentPath { + moveTo(6.25f, 3.0f) + horizontalLineToRelative(0.25f) + verticalLineToRelative(3.5f) + lineTo(3.0f, 6.5f) + verticalLineToRelative(-0.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + close() + moveTo(3.0f, 16.0f) + lineTo(3.0f, 8.0f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(8.0f) + lineTo(3.0f, 16.0f) + close() + moveTo(16.0f, 6.5f) + lineTo(8.0f, 6.5f) + lineTo(8.0f, 3.0f) + horizontalLineToRelative(8.0f) + verticalLineToRelative(3.5f) + close() + moveTo(17.5f, 6.5f) + lineTo(17.5f, 3.0f) + horizontalLineToRelative(0.25f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(0.25f) + horizontalLineToRelative(-3.5f) + close() + moveTo(17.5f, 8.0f) + lineTo(21.0f, 8.0f) + verticalLineToRelative(8.0f) + horizontalLineToRelative(-3.5f) + lineTo(17.5f, 8.0f) + close() + moveTo(17.5f, 17.5f) + lineTo(21.0f, 17.5f) + verticalLineToRelative(0.25f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-0.25f) + verticalLineToRelative(-3.5f) + close() + moveTo(16.0f, 17.5f) + lineTo(16.0f, 21.0f) + lineTo(8.0f, 21.0f) + verticalLineToRelative(-3.5f) + horizontalLineToRelative(8.0f) + close() + moveTo(6.5f, 17.5f) + lineTo(6.5f, 21.0f) + horizontalLineToRelative(-0.25f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + verticalLineToRelative(-0.25f) + horizontalLineToRelative(3.5f) + close() + moveTo(8.0f, 15.07f) + lineToRelative(2.4f, -2.41f) + curveToRelative(0.89f, -0.88f, 2.31f, -0.88f, 3.2f, 0.0f) + lineToRelative(2.4f, 2.4f) + lineTo(16.0f, 8.0f) + lineTo(8.0f, 8.0f) + verticalLineToRelative(7.07f) + close() + moveTo(14.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(14.81f, 16.0f) + lineTo(12.53f, 13.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineTo(9.19f, 16.0f) + horizontalLineToRelative(5.62f) + close() + } + } + return _imageTable!! + } + +private var _imageTable: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImmersiveReader.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImmersiveReader.kt new file mode 100644 index 00000000..38f87733 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ImmersiveReader.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ImmersiveReader: ImageVector + get() { + if (_immersiveReader != null) { + return _immersiveReader!! + } + _immersiveReader = fluentIcon(name = "Filled.ImmersiveReader") { + fluentPath { + moveTo(4.0f, 3.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + lineTo(11.14f, 19.5f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 11.0f, 19.0f) + verticalLineToRelative(-1.5f) + lineTo(4.0f, 17.5f) + lineTo(4.0f, 5.0f) + horizontalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(1.0f) + lineTo(13.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(7.17f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 2.0f, 0.35f) + lineTo(22.0f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + horizontalLineToRelative(-6.0f) + curveToRelative(-0.77f, 0.0f, -1.47f, 0.29f, -2.0f, 0.76f) + arcTo(2.99f, 2.99f, 0.0f, false, false, 10.0f, 3.0f) + lineTo(4.0f, 3.0f) + close() + moveTo(21.23f, 13.17f) + curveToRelative(0.25f, 0.21f, 0.59f, 0.58f, 0.91f, 1.13f) + curveToRelative(0.54f, 0.9f, 0.86f, 1.96f, 0.86f, 3.2f) + curveToRelative(0.0f, 1.24f, -0.32f, 2.3f, -0.86f, 3.2f) + curveToRelative(-0.32f, 0.55f, -0.66f, 0.92f, -0.91f, 1.13f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.96f, -1.16f) + curveToRelative(0.13f, -0.1f, 0.35f, -0.35f, 0.59f, -0.74f) + curveToRelative(0.4f, -0.67f, 0.64f, -1.48f, 0.64f, -2.43f) + curveToRelative(0.0f, -0.95f, -0.24f, -1.76f, -0.64f, -2.43f) + curveToRelative(-0.24f, -0.39f, -0.46f, -0.64f, -0.59f, -0.74f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.96f, -1.16f) + close() + moveTo(19.2f, 14.65f) + arcToRelative(3.73f, 3.73f, 0.0f, false, true, 1.3f, 2.85f) + arcToRelative(3.73f, 3.73f, 0.0f, false, true, -1.3f, 2.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, -1.13f) + lineToRelative(0.08f, -0.07f) + arcToRelative(2.24f, 2.24f, 0.0f, false, false, 0.7f, -1.65f) + arcToRelative(2.24f, 2.24f, 0.0f, false, false, -0.7f, -1.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.9f, -1.2f) + close() + moveTo(16.51f, 14.05f) + curveToRelative(0.3f, 0.1f, 0.49f, 0.39f, 0.49f, 0.7f) + verticalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.31f, 0.5f) + lineTo(14.16f, 19.0f) + horizontalLineToRelative(-1.41f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.41f) + lineToRelative(1.53f, -1.74f) + curveToRelative(0.2f, -0.24f, 0.53f, -0.32f, 0.82f, -0.21f) + close() + } + } + return _immersiveReader!! + } + +private var _immersiveReader: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Incognito.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Incognito.kt new file mode 100644 index 00000000..23515f89 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Incognito.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Incognito: ImageVector + get() { + if (_incognito != null) { + return _incognito!! + } + _incognito = fluentIcon(name = "Filled.Incognito") { + fluentPath { + moveToRelative(18.12f, 4.61f) + lineToRelative(2.11f, 4.64f) + curveToRelative(0.41f, 0.08f, 0.82f, 0.17f, 1.2f, 0.27f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.36f, 1.45f) + curveToRelative(-0.48f, -0.12f, -0.98f, -0.23f, -1.5f, -0.33f) + arcToRelative(44.74f, 44.74f, 0.0f, false, false, -15.14f, 0.0f) + curveToRelative(-0.52f, 0.1f, -1.02f, 0.21f, -1.5f, 0.33f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.36f, -1.45f) + curveToRelative(0.39f, -0.1f, 0.79f, -0.2f, 1.2f, -0.27f) + lineToRelative(2.1f, -4.64f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 8.39f, 3.0f) + horizontalLineToRelative(7.24f) + curveToRelative(1.08f, 0.0f, 2.06f, 0.63f, 2.5f, 1.61f) + close() + moveTo(3.5f, 16.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.0f) + close() + moveTo(6.5f, 12.0f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, 4.39f, 5.5f) + horizontalLineToRelative(2.22f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, -0.08f, -1.5f) + horizontalLineToRelative(-2.06f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.47f, -4.0f) + close() + moveTo(14.5f, 16.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.0f) + close() + } + } + return _incognito!! + } + +private var _incognito: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/InkStroke.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/InkStroke.kt new file mode 100644 index 00000000..9c744650 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/InkStroke.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.InkStroke: ImageVector + get() { + if (_inkStroke != null) { + return _inkStroke!! + } + _inkStroke = fluentIcon(name = "Filled.InkStroke") { + fluentPath { + moveTo(3.0f, 2.9f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 4.1f, 2.0f) + lineToRelative(3.74f, 0.35f) + curveToRelative(2.66f, 0.27f, 5.2f, 0.59f, 7.3f, 0.95f) + curveToRelative(2.04f, 0.35f, 3.8f, 0.76f, 4.76f, 1.27f) + curveToRelative(0.25f, 0.13f, 0.52f, 0.3f, 0.73f, 0.55f) + curveToRelative(0.22f, 0.26f, 0.44f, 0.66f, 0.35f, 1.16f) + curveToRelative(-0.08f, 0.46f, -0.38f, 0.77f, -0.61f, 0.96f) + curveToRelative(-0.25f, 0.2f, -0.55f, 0.35f, -0.88f, 0.48f) + curveToRelative(-1.27f, 0.53f, -3.66f, 1.03f, -7.4f, 1.51f) + curveToRelative(-1.67f, 0.22f, -2.91f, 0.44f, -3.8f, 0.64f) + lineToRelative(0.69f, 0.14f) + curveToRelative(1.21f, 0.22f, 2.75f, 0.41f, 4.38f, 0.56f) + arcToRelative(37.0f, 37.0f, 0.0f, false, true, 3.72f, 0.51f) + curveToRelative(0.57f, 0.11f, 1.1f, 0.24f, 1.57f, 0.38f) + curveToRelative(0.43f, 0.14f, 0.88f, 0.31f, 1.22f, 0.55f) + curveToRelative(0.16f, 0.11f, 0.38f, 0.3f, 0.53f, 0.58f) + curveToRelative(0.17f, 0.32f, 0.2f, 0.72f, 0.04f, 1.1f) + curveToRelative(-0.15f, 0.31f, -0.4f, 0.52f, -0.58f, 0.65f) + curveToRelative(-0.2f, 0.13f, -0.44f, 0.25f, -0.69f, 0.34f) + curveToRelative(-0.95f, 0.37f, -2.66f, 0.7f, -5.3f, 1.02f) + curveToRelative(-2.6f, 0.31f, -4.17f, 0.7f, -5.03f, 1.1f) + curveToRelative(-0.34f, 0.15f, -0.51f, 0.28f, -0.59f, 0.36f) + lineToRelative(0.18f, 0.2f) + curveToRelative(0.18f, 0.18f, 0.44f, 0.37f, 0.79f, 0.57f) + curveToRelative(0.68f, 0.4f, 1.56f, 0.78f, 2.41f, 1.07f) + lineToRelative(3.25f, 1.05f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -0.61f, 1.9f) + lineTo(11.0f, 20.9f) + curveToRelative(-0.94f, -0.32f, -1.96f, -0.75f, -2.8f, -1.25f) + arcToRelative(6.33f, 6.33f, 0.0f, false, true, -1.15f, -0.84f) + curveToRelative(-0.32f, -0.3f, -0.64f, -0.71f, -0.77f, -1.22f) + arcToRelative(1.83f, 1.83f, 0.0f, false, true, 0.34f, -1.6f) + curveToRelative(0.33f, -0.43f, 0.82f, -0.75f, 1.4f, -1.01f) + curveToRelative(1.14f, -0.52f, 2.96f, -0.95f, 5.62f, -1.26f) + curveToRelative(1.59f, -0.2f, 2.76f, -0.38f, 3.59f, -0.56f) + lineToRelative(-0.54f, -0.12f) + curveToRelative(-1.05f, -0.2f, -2.31f, -0.37f, -3.5f, -0.48f) + arcToRelative(51.94f, 51.94f, 0.0f, false, true, -4.57f, -0.59f) + curveToRelative(-0.65f, -0.12f, -1.24f, -0.25f, -1.73f, -0.4f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -1.29f, -0.55f) + arcToRelative(1.55f, 1.55f, 0.0f, false, true, -0.54f, -0.65f) + curveToRelative(-0.16f, -0.39f, -0.12f, -0.8f, 0.07f, -1.13f) + curveToRelative(0.17f, -0.28f, 0.4f, -0.46f, 0.6f, -0.58f) + curveToRelative(0.2f, -0.13f, 0.45f, -0.24f, 0.7f, -0.34f) + curveToRelative(1.01f, -0.37f, 2.77f, -0.72f, 5.41f, -1.07f) + curveToRelative(3.23f, -0.42f, 5.27f, -0.83f, 6.4f, -1.2f) + curveToRelative(-0.77f, -0.26f, -1.94f, -0.52f, -3.44f, -0.78f) + curveToRelative(-2.03f, -0.35f, -4.53f, -0.66f, -7.16f, -0.93f) + lineTo(3.91f, 4.0f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 3.0f, 2.9f) + close() + } + } + return _inkStroke!! + } + +private var _inkStroke: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/InkStrokeArrowDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/InkStrokeArrowDown.kt new file mode 100644 index 00000000..2dd83a39 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/InkStrokeArrowDown.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.InkStrokeArrowDown: ImageVector + get() { + if (_inkStrokeArrowDown != null) { + return _inkStrokeArrowDown!! + } + _inkStrokeArrowDown = fluentIcon(name = "Filled.InkStrokeArrowDown") { + fluentPath { + moveTo(3.0f, 2.9f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 4.1f, 2.0f) + lineToRelative(3.74f, 0.35f) + curveToRelative(2.66f, 0.27f, 5.2f, 0.59f, 7.3f, 0.95f) + curveToRelative(2.04f, 0.35f, 3.8f, 0.76f, 4.76f, 1.27f) + curveToRelative(0.25f, 0.13f, 0.52f, 0.3f, 0.73f, 0.55f) + curveToRelative(0.22f, 0.26f, 0.44f, 0.66f, 0.35f, 1.16f) + curveToRelative(-0.08f, 0.46f, -0.38f, 0.77f, -0.61f, 0.96f) + curveToRelative(-0.25f, 0.2f, -0.55f, 0.35f, -0.88f, 0.48f) + curveToRelative(-1.27f, 0.53f, -3.66f, 1.03f, -7.4f, 1.51f) + curveToRelative(-1.67f, 0.22f, -2.91f, 0.44f, -3.8f, 0.64f) + lineToRelative(0.69f, 0.14f) + curveToRelative(1.21f, 0.22f, 2.75f, 0.41f, 4.38f, 0.56f) + arcToRelative(37.0f, 37.0f, 0.0f, false, true, 3.72f, 0.51f) + arcToRelative(15.54f, 15.54f, 0.0f, false, true, 1.89f, 0.5f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.47f, 1.92f) + verticalLineToRelative(1.64f) + curveToRelative(-0.93f, 0.2f, -2.13f, 0.38f, -3.62f, 0.56f) + curveToRelative(-2.61f, 0.31f, -4.18f, 0.7f, -5.04f, 1.1f) + curveToRelative(-0.34f, 0.15f, -0.51f, 0.28f, -0.59f, 0.36f) + lineToRelative(0.18f, 0.2f) + curveToRelative(0.18f, 0.18f, 0.44f, 0.37f, 0.79f, 0.57f) + curveToRelative(0.68f, 0.4f, 1.56f, 0.78f, 2.41f, 1.07f) + lineToRelative(3.25f, 1.05f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -0.61f, 1.9f) + lineTo(11.0f, 20.9f) + curveToRelative(-0.94f, -0.32f, -1.96f, -0.75f, -2.8f, -1.25f) + arcToRelative(6.33f, 6.33f, 0.0f, false, true, -1.15f, -0.84f) + curveToRelative(-0.32f, -0.3f, -0.64f, -0.71f, -0.77f, -1.22f) + arcToRelative(1.83f, 1.83f, 0.0f, false, true, 0.34f, -1.6f) + curveToRelative(0.33f, -0.43f, 0.82f, -0.75f, 1.4f, -1.01f) + curveToRelative(1.14f, -0.52f, 2.96f, -0.95f, 5.62f, -1.26f) + curveToRelative(1.59f, -0.2f, 2.76f, -0.38f, 3.59f, -0.56f) + lineToRelative(-0.54f, -0.12f) + curveToRelative(-1.05f, -0.2f, -2.31f, -0.37f, -3.5f, -0.48f) + arcToRelative(51.94f, 51.94f, 0.0f, false, true, -4.57f, -0.59f) + curveToRelative(-0.65f, -0.12f, -1.24f, -0.25f, -1.73f, -0.4f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -1.29f, -0.55f) + arcToRelative(1.55f, 1.55f, 0.0f, false, true, -0.54f, -0.65f) + curveToRelative(-0.16f, -0.39f, -0.12f, -0.8f, 0.07f, -1.13f) + curveToRelative(0.17f, -0.28f, 0.4f, -0.46f, 0.6f, -0.58f) + curveToRelative(0.2f, -0.13f, 0.45f, -0.24f, 0.7f, -0.34f) + curveToRelative(1.01f, -0.37f, 2.77f, -0.72f, 5.41f, -1.07f) + curveToRelative(3.23f, -0.42f, 5.27f, -0.83f, 6.4f, -1.2f) + curveToRelative(-0.77f, -0.26f, -1.94f, -0.52f, -3.44f, -0.78f) + curveToRelative(-2.03f, -0.35f, -4.53f, -0.66f, -7.16f, -0.93f) + lineTo(3.91f, 4.0f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 3.0f, 2.9f) + close() + moveTo(20.5f, 13.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(6.09f) + lineToRelative(-0.8f, -0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) + lineToRelative(2.5f, 2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) + lineToRelative(2.5f, -2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.42f) + lineToRelative(-0.8f, 0.8f) + lineTo(20.5f, 13.5f) + close() + } + } + return _inkStrokeArrowDown!! + } + +private var _inkStrokeArrowDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/InkStrokeArrowUpDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/InkStrokeArrowUpDown.kt new file mode 100644 index 00000000..0038b0bf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/InkStrokeArrowUpDown.kt @@ -0,0 +1,91 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.InkStrokeArrowUpDown: ImageVector + get() { + if (_inkStrokeArrowUpDown != null) { + return _inkStrokeArrowUpDown!! + } + _inkStrokeArrowUpDown = fluentIcon(name = "Filled.InkStrokeArrowUpDown") { + fluentPath { + moveTo(3.0f, 2.9f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 4.1f, 2.0f) + lineToRelative(3.74f, 0.35f) + curveToRelative(2.66f, 0.27f, 5.2f, 0.59f, 7.3f, 0.95f) + curveToRelative(2.04f, 0.35f, 3.8f, 0.76f, 4.76f, 1.27f) + curveToRelative(0.25f, 0.13f, 0.52f, 0.3f, 0.73f, 0.55f) + curveToRelative(0.22f, 0.26f, 0.44f, 0.66f, 0.35f, 1.16f) + curveToRelative(-0.08f, 0.46f, -0.38f, 0.77f, -0.61f, 0.96f) + curveToRelative(-0.25f, 0.2f, -0.55f, 0.35f, -0.88f, 0.48f) + curveToRelative(-1.27f, 0.53f, -3.66f, 1.03f, -7.4f, 1.51f) + curveToRelative(-1.67f, 0.22f, -2.91f, 0.44f, -3.8f, 0.64f) + lineToRelative(0.69f, 0.14f) + curveToRelative(1.21f, 0.22f, 2.75f, 0.41f, 4.38f, 0.56f) + arcToRelative(37.0f, 37.0f, 0.0f, false, true, 3.72f, 0.51f) + lineToRelative(-1.5f, 1.5f) + lineToRelative(-0.2f, 0.24f) + curveToRelative(-0.71f, -0.1f, -1.47f, -0.2f, -2.2f, -0.26f) + arcToRelative(51.94f, 51.94f, 0.0f, false, true, -4.56f, -0.59f) + curveToRelative(-0.65f, -0.12f, -1.24f, -0.25f, -1.73f, -0.4f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -1.29f, -0.55f) + arcToRelative(1.55f, 1.55f, 0.0f, false, true, -0.54f, -0.65f) + curveToRelative(-0.16f, -0.39f, -0.12f, -0.8f, 0.07f, -1.13f) + curveToRelative(0.17f, -0.28f, 0.4f, -0.46f, 0.6f, -0.58f) + curveToRelative(0.2f, -0.13f, 0.45f, -0.24f, 0.7f, -0.34f) + curveToRelative(1.01f, -0.37f, 2.77f, -0.72f, 5.41f, -1.07f) + curveToRelative(3.23f, -0.42f, 5.27f, -0.83f, 6.4f, -1.2f) + curveToRelative(-0.77f, -0.26f, -1.94f, -0.52f, -3.44f, -0.78f) + curveToRelative(-2.03f, -0.35f, -4.53f, -0.66f, -7.16f, -0.93f) + lineTo(3.91f, 4.0f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 3.0f, 2.9f) + close() + moveTo(15.6f, 15.42f) + lineToRelative(0.05f, 0.06f) + curveToRelative(-0.53f, 0.08f, -1.12f, 0.15f, -1.76f, 0.23f) + curveToRelative(-2.61f, 0.31f, -4.18f, 0.7f, -5.04f, 1.1f) + curveToRelative(-0.34f, 0.15f, -0.51f, 0.28f, -0.59f, 0.36f) + lineToRelative(0.18f, 0.2f) + curveToRelative(0.18f, 0.18f, 0.44f, 0.37f, 0.79f, 0.57f) + curveToRelative(0.68f, 0.4f, 1.56f, 0.78f, 2.41f, 1.07f) + lineToRelative(3.25f, 1.05f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -0.61f, 1.9f) + lineTo(11.0f, 20.9f) + curveToRelative(-0.94f, -0.32f, -1.96f, -0.75f, -2.8f, -1.25f) + arcToRelative(6.33f, 6.33f, 0.0f, false, true, -1.15f, -0.84f) + curveToRelative(-0.32f, -0.3f, -0.64f, -0.71f, -0.77f, -1.22f) + arcToRelative(1.83f, 1.83f, 0.0f, false, true, 0.34f, -1.6f) + curveToRelative(0.33f, -0.43f, 0.82f, -0.75f, 1.4f, -1.01f) + curveToRelative(1.14f, -0.52f, 2.96f, -0.95f, 5.62f, -1.26f) + lineToRelative(1.42f, -0.19f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.53f, 1.88f) + close() + moveTo(20.22f, 10.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, 0.0f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.42f) + lineToRelative(0.79f, -0.8f) + verticalLineToRelative(5.68f) + lineToRelative(-0.8f, -0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) + lineToRelative(2.5f, 2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) + lineToRelative(2.5f, -2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.42f) + lineToRelative(-0.8f, 0.8f) + lineTo(20.51f, 13.9f) + lineToRelative(0.8f, 0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, -1.42f) + lineToRelative(-2.5f, -2.5f) + close() + } + } + return _inkStrokeArrowUpDown!! + } + +private var _inkStrokeArrowUpDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/InkingTool.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/InkingTool.kt new file mode 100644 index 00000000..4e0a0b34 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/InkingTool.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.InkingTool: ImageVector + get() { + if (_inkingTool != null) { + return _inkingTool!! + } + _inkingTool = fluentIcon(name = "Filled.InkingTool") { + fluentPath { + moveTo(13.82f, 20.04f) + curveToRelative(-0.12f, 0.46f, -0.31f, 0.88f, -0.56f, 1.27f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.47f, 0.08f) + lineToRelative(-0.08f, -0.12f) + lineToRelative(-0.13f, -0.22f) + arcToRelative(5.63f, 5.63f, 0.0f, false, true, -0.55f, -3.05f) + horizontalLineToRelative(3.94f) + curveToRelative(0.07f, 0.72f, 0.02f, 1.4f, -0.15f, 2.04f) + close() + moveTo(18.48f, 9.0f) + lineTo(15.0f, 16.09f) + curveToRelative(-0.22f, 0.45f, -0.62f, 0.78f, -1.1f, 0.91f) + horizontalLineToRelative(-3.73f) + lineToRelative(-0.1f, -0.03f) + curveToRelative(-0.38f, -0.13f, -0.7f, -0.38f, -0.92f, -0.72f) + lineToRelative(-0.08f, -0.15f) + lineTo(5.54f, 9.0f) + horizontalLineToRelative(12.94f) + close() + moveTo(20.25f, 2.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.92f, -0.7f, 1.67f, -1.6f, 1.74f) + lineTo(4.74f, 7.99f) + curveToRelative(-0.92f, 0.0f, -1.67f, -0.7f, -1.74f, -1.6f) + lineTo(3.0f, 2.75f) + curveToRelative(0.0f, -0.38f, 0.27f, -0.7f, 0.64f, -0.75f) + horizontalLineToRelative(16.6f) + close() + } + } + return _inkingTool!! + } + +private var _inkingTool: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/InkingToolAccent.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/InkingToolAccent.kt similarity index 89% rename from fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/InkingToolAccent.kt rename to fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/InkingToolAccent.kt index 28b20b9b..97ee0d79 100644 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/InkingToolAccent.kt +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/InkingToolAccent.kt @@ -1,11 +1,11 @@ -package com.konyaco.fluent.icons.filled +package io.github.composefluent.icons.filled import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath public val Icons.Filled.InkingToolAccent: ImageVector get() { diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/InprivateAccount.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/InprivateAccount.kt new file mode 100644 index 00000000..6a5f2e96 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/InprivateAccount.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.InprivateAccount: ImageVector + get() { + if (_inprivateAccount != null) { + return _inprivateAccount!! + } + _inprivateAccount = fluentIcon(name = "Filled.InprivateAccount") { + fluentPath { + moveTo(17.75f, 14.0f) + curveToRelative(1.21f, 0.0f, 2.2f, 0.95f, 2.25f, 2.15f) + verticalLineToRelative(0.1f) + horizontalLineToRelative(-8.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(7.98f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.51f, 1.5f) + horizontalLineTo(12.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(6.64f) + curveTo(17.08f, 21.25f, 14.85f, 22.0f, 12.0f, 22.0f) + curveToRelative(-3.15f, 0.0f, -5.53f, -0.9f, -7.1f, -2.74f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.9f, -2.43f) + verticalLineToRelative(-0.58f) + curveTo(4.0f, 15.0f, 5.01f, 14.0f, 6.25f, 14.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 4.0f, 2.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(4.58f) + curveToRelative(0.2f, 0.47f, 0.34f, 0.97f, 0.4f, 1.5f) + horizontalLineTo(12.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(4.98f) + arcToRelative(4.97f, 4.97f, 0.0f, false, true, -0.4f, 1.5f) + horizontalLineTo(12.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(4.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, -4.0f, -8.0f) + close() + } + } + return _inprivateAccount!! + } + +private var _inprivateAccount: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/IosArrowLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/IosArrowLtr.kt new file mode 100644 index 00000000..b21b1434 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/IosArrowLtr.kt @@ -0,0 +1,31 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.IosArrowLtr: ImageVector + get() { + if (_iosArrowLtr != null) { + return _iosArrowLtr!! + } + _iosArrowLtr = fluentIcon(name = "Filled.IosArrowLtr") { + fluentPath { + moveTo(12.73f, 3.69f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.46f, -1.38f) + lineToRelative(-8.5f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.38f) + lineToRelative(8.5f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.46f, -1.38f) + lineTo(4.87f, 12.0f) + lineToRelative(7.86f, -8.31f) + close() + } + } + return _iosArrowLtr!! + } + +private var _iosArrowLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/IosArrowRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/IosArrowRtl.kt new file mode 100644 index 00000000..999041f0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/IosArrowRtl.kt @@ -0,0 +1,31 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.IosArrowRtl: ImageVector + get() { + if (_iosArrowRtl != null) { + return _iosArrowRtl!! + } + _iosArrowRtl = fluentIcon(name = "Filled.IosArrowRtl") { + fluentPath { + moveTo(11.27f, 3.69f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.46f, -1.38f) + lineToRelative(8.5f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.38f) + lineToRelative(-8.5f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.46f, -1.38f) + lineTo(19.12f, 12.0f) + lineToRelative(-7.85f, -8.31f) + close() + } + } + return _iosArrowRtl!! + } + +private var _iosArrowRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Iot.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Iot.kt new file mode 100644 index 00000000..49e5efb2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Iot.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Iot: ImageVector + get() { + if (_iot != null) { + return _iot!! + } + _iot = fluentIcon(name = "Filled.Iot") { + fluentPath { + moveTo(19.0f, 4.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -3.01f, 2.44f) + lineTo(14.7f, 9.06f) + curveTo(15.5f, 9.79f, 16.0f, 10.84f, 16.0f, 12.0f) + verticalLineToRelative(0.05f) + lineToRelative(1.3f, 0.27f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -0.28f, 1.47f) + lineToRelative(-1.32f, -0.26f) + arcToRelative(4.01f, 4.01f, 0.0f, false, true, -1.75f, 1.96f) + lineToRelative(0.5f, 1.51f) + horizontalLineToRelative(0.05f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -1.47f, 0.48f) + lineToRelative(-0.5f, -1.51f) + arcToRelative(4.04f, 4.04f, 0.0f, false, true, -3.75f, -1.6f) + lineToRelative(-1.8f, 0.85f) + lineToRelative(0.02f, 0.28f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -0.62f, -1.65f) + lineToRelative(1.75f, -0.83f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.79f, -3.57f) + lineToRelative(-1.0f, -1.13f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.5f, 6.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 4.59f, 1.38f) + lineToRelative(0.98f, 1.12f) + arcToRelative(3.98f, 3.98f, 0.0f, false, true, 3.36f, -0.23f) + lineToRelative(1.25f, -2.06f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 1.82f, -4.22f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 19.0f, 4.5f) + close() + } + } + return _iot!! + } + +private var _iot: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/IotAlert.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/IotAlert.kt new file mode 100644 index 00000000..b8d799c6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/IotAlert.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.IotAlert: ImageVector + get() { + if (_iotAlert != null) { + return _iotAlert!! + } + _iotAlert = fluentIcon(name = "Filled.IotAlert") { + fluentPath { + moveTo(19.0f, 4.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -3.01f, 2.44f) + lineTo(14.7f, 9.06f) + curveToRelative(0.32f, 0.3f, 0.6f, 0.65f, 0.8f, 1.04f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, -4.0f, 4.9f) + verticalLineToRelative(0.97f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -2.73f, -1.6f) + lineToRelative(-1.8f, 0.85f) + lineToRelative(0.02f, 0.28f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -0.62f, -1.65f) + lineToRelative(1.75f, -0.83f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.79f, -3.57f) + lineToRelative(-1.0f, -1.13f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.5f, 6.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 4.59f, 1.38f) + lineToRelative(0.98f, 1.12f) + arcToRelative(3.98f, 3.98f, 0.0f, false, true, 3.36f, -0.24f) + lineToRelative(1.25f, -2.06f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 16.5f, 2.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 19.0f, 4.5f) + close() + moveTo(16.5f, 11.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, 4.0f) + verticalLineToRelative(3.0f) + lineToRelative(-0.95f, 0.8f) + curveToRelative(-0.3f, 0.26f, -0.46f, 0.39f, -0.5f, 0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.24f, 0.65f) + curveToRelative(0.1f, 0.05f, 0.3f, 0.05f, 0.7f, 0.05f) + horizontalLineToRelative(9.02f) + curveToRelative(0.4f, 0.0f, 0.6f, 0.0f, 0.7f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.25f, -0.66f) + curveToRelative(-0.05f, -0.1f, -0.2f, -0.23f, -0.5f, -0.49f) + lineToRelative(-0.96f, -0.8f) + verticalLineToRelative(-3.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, -4.0f) + close() + moveTo(18.0f, 21.0f) + curveToRelative(-0.22f, 0.58f, -0.8f, 1.0f, -1.5f, 1.0f) + curveToRelative(-0.69f, 0.0f, -1.28f, -0.42f, -1.5f, -1.0f) + horizontalLineToRelative(3.0f) + close() + } + } + return _iotAlert!! + } + +private var _iotAlert: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Javascript.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Javascript.kt new file mode 100644 index 00000000..ec5aa5f4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Javascript.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Javascript: ImageVector + get() { + if (_javascript != null) { + return _javascript!! + } + _javascript = fluentIcon(name = "Filled.Javascript") { + fluentPath { + moveTo(3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + close() + moveTo(12.0f, 9.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(9.75f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(11.0f, 16.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-6.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(14.0f, 11.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(0.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-1.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-1.5f) + close() + } + } + return _javascript!! + } + +private var _javascript: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyCommand.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyCommand.kt new file mode 100644 index 00000000..59f71977 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyCommand.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.KeyCommand: ImageVector + get() { + if (_keyCommand != null) { + return _keyCommand!! + } + _keyCommand = fluentIcon(name = "Filled.KeyCommand") { + fluentPath { + moveTo(6.5f, 5.0f) + curveTo(7.33f, 5.0f, 8.0f, 5.67f, 8.0f, 6.5f) + lineTo(8.0f, 8.0f) + lineTo(6.5f, 8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, -3.0f) + close() + moveTo(10.0f, 8.0f) + lineTo(10.0f, 6.5f) + arcTo(3.5f, 3.5f, 0.0f, true, false, 6.5f, 10.0f) + lineTo(8.0f, 10.0f) + verticalLineToRelative(4.0f) + lineTo(6.5f, 14.0f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 3.5f, 3.5f) + lineTo(10.0f, 16.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(1.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 3.5f, -3.5f) + lineTo(16.0f, 14.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(1.5f) + arcTo(3.5f, 3.5f, 0.0f, true, false, 14.0f, 6.5f) + lineTo(14.0f, 8.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(10.0f, 10.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(16.0f, 8.0f) + lineTo(16.0f, 6.5f) + arcTo(1.5f, 1.5f, 0.0f, true, true, 17.5f, 8.0f) + lineTo(16.0f, 8.0f) + close() + moveTo(16.0f, 16.0f) + horizontalLineToRelative(1.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -1.5f, 1.5f) + lineTo(16.0f, 16.0f) + close() + moveTo(8.0f, 16.0f) + verticalLineToRelative(1.5f) + arcTo(1.5f, 1.5f, 0.0f, true, true, 6.5f, 16.0f) + lineTo(8.0f, 16.0f) + close() + } + } + return _keyCommand!! + } + +private var _keyCommand: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyReset.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyReset.kt new file mode 100644 index 00000000..e3d8a19e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyReset.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.KeyReset: ImageVector + get() { + if (_keyReset != null) { + return _keyReset!! + } + _keyReset = fluentIcon(name = "Filled.KeyReset") { + fluentPath { + moveTo(15.5f, 2.05f) + arcTo(6.55f, 6.55f, 0.0f, false, false, 9.06f, 9.7f) + curveToRelative(0.02f, 0.1f, -0.02f, 0.2f, -0.07f, 0.25f) + lineToRelative(-6.24f, 6.23f) + curveToRelative(-0.51f, 0.52f, -0.8f, 1.22f, -0.8f, 1.95f) + verticalLineToRelative(2.17f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-1.25f) + lineTo(9.7f, 19.05f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-1.75f) + horizontalLineToRelative(0.33f) + curveToRelative(0.1f, -0.16f, 0.23f, -0.3f, 0.38f, -0.42f) + lineTo(10.0f, 14.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.0f, -2.48f) + lineToRelative(2.0f, -2.0f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 14.98f, 11.0f) + lineTo(17.0f, 11.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 3.8f, 1.35f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, -5.3f, -10.3f) + close() + moveTo(17.0f, 5.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(13.78f, 11.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-2.0f, 2.0f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-0.72f, -0.72f) + lineTo(17.0f, 13.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, -3.5f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, false, 5.0f, -5.0f) + horizontalLineToRelative(-3.94f) + lineToRelative(0.72f, -0.72f) + close() + } + } + return _keyReset!! + } + +private var _keyReset: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Keyboard.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Keyboard.kt new file mode 100644 index 00000000..3f878c68 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Keyboard.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Keyboard: ImageVector + get() { + if (_keyboard != null) { + return _keyboard!! + } + _keyboard = fluentIcon(name = "Filled.Keyboard") { + fluentPath { + moveTo(19.75f, 5.0f) + curveTo(20.99f, 5.0f, 22.0f, 6.0f, 22.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(22.0f, 18.0f, 20.99f, 19.0f, 19.75f, 19.0f) + lineTo(4.25f, 19.0f) + curveTo(3.01f, 19.0f, 2.0f, 18.0f, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + curveTo(2.0f, 6.01f, 3.0f, 5.0f, 4.25f, 5.0f) + horizontalLineToRelative(15.5f) + close() + moveTo(17.25f, 14.5f) + lineTo(6.65f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(10.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(16.5f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(13.5f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(10.5f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(7.5f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(6.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(9.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(12.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(15.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(18.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + } + } + return _keyboard!! + } + +private var _keyboard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Keyboard123.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Keyboard123.kt new file mode 100644 index 00000000..f93c72b9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Keyboard123.kt @@ -0,0 +1,141 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Keyboard123: ImageVector + get() { + if (_keyboard123 != null) { + return _keyboard123!! + } + _keyboard123 = fluentIcon(name = "Filled.Keyboard123") { + fluentPath { + moveTo(5.16f, 4.17f) + curveToRelative(0.37f, 0.18f, 0.81f, 0.04f, 1.0f, -0.32f) + lineToRelative(0.04f, -0.06f) + curveToRelative(0.04f, -0.05f, 0.1f, -0.12f, 0.2f, -0.2f) + curveToRelative(0.2f, -0.16f, 0.53f, -0.34f, 1.1f, -0.34f) + curveToRelative(0.5f, 0.0f, 0.78f, 0.24f, 0.9f, 0.46f) + curveToRelative(0.1f, 0.2f, 0.1f, 0.48f, -0.18f, 0.76f) + curveToRelative(-0.2f, 0.2f, -0.45f, 0.36f, -0.77f, 0.55f) + lineToRelative(-0.29f, 0.16f) + lineToRelative(-0.75f, 0.45f) + curveToRelative(-0.76f, 0.5f, -1.5f, 1.2f, -1.65f, 2.53f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 5.5f, 9.0f) + horizontalLineToRelative(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.7f) + curveToRelative(0.17f, -0.24f, 0.4f, -0.43f, 0.68f, -0.62f) + lineToRelative(0.6f, -0.36f) + lineToRelative(0.38f, -0.2f) + curveToRelative(0.35f, -0.2f, 0.73f, -0.45f, 1.07f, -0.79f) + curveToRelative(0.73f, -0.72f, 0.85f, -1.7f, 0.45f, -2.49f) + arcTo(2.44f, 2.44f, 0.0f, false, false, 7.5f, 1.75f) + curveToRelative(-0.93f, 0.0f, -1.6f, 0.32f, -2.03f, 0.66f) + arcToRelative(2.67f, 2.67f, 0.0f, false, false, -0.62f, 0.72f) + lineToRelative(-0.01f, 0.02f) + verticalLineToRelative(0.01f) + horizontalLineToRelative(-0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.33f, 1.01f) + close() + moveTo(14.37f, 4.48f) + curveToRelative(-0.13f, 0.13f, -0.4f, 0.27f, -0.87f, 0.27f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + curveToRelative(0.47f, 0.0f, 0.74f, 0.14f, 0.87f, 0.27f) + curveToRelative(0.14f, 0.12f, 0.2f, 0.28f, 0.19f, 0.44f) + curveToRelative(-0.02f, 0.26f, -0.29f, 0.79f, -1.31f, 0.79f) + curveToRelative(-0.46f, 0.0f, -0.76f, -0.14f, -0.93f, -0.25f) + arcToRelative(1.04f, 1.04f, 0.0f, false, true, -0.2f, -0.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.04f, -0.2f) + curveToRelative(-0.58f, 0.38f, -0.2f, 1.05f, -0.2f, 1.05f) + verticalLineToRelative(0.01f) + lineToRelative(0.02f, 0.02f) + arcToRelative(1.47f, 1.47f, 0.0f, false, false, 0.15f, 0.18f) + curveToRelative(0.1f, 0.1f, 0.25f, 0.24f, 0.44f, 0.37f) + curveToRelative(0.4f, 0.26f, 0.97f, 0.5f, 1.76f, 0.5f) + curveToRelative(1.62f, 0.0f, 2.73f, -0.97f, 2.8f, -2.2f) + arcToRelative(2.04f, 2.04f, 0.0f, false, false, -0.57f, -1.55f) + curveToRelative(0.41f, -0.43f, 0.6f, -0.99f, 0.57f, -1.54f) + curveToRelative(-0.07f, -1.24f, -1.18f, -2.21f, -2.8f, -2.21f) + curveToRelative(-0.79f, 0.0f, -1.37f, 0.24f, -1.76f, 0.5f) + arcToRelative(2.54f, 2.54f, 0.0f, false, false, -0.6f, 0.55f) + verticalLineToRelative(0.02f) + horizontalLineToRelative(-0.01f) + verticalLineToRelative(0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.23f, 0.85f) + lineToRelative(0.03f, -0.03f) + curveToRelative(0.04f, -0.04f, 0.1f, -0.1f, 0.18f, -0.15f) + curveToRelative(0.17f, -0.11f, 0.47f, -0.25f, 0.93f, -0.25f) + curveToRelative(1.02f, 0.0f, 1.29f, 0.53f, 1.3f, 0.8f) + curveToRelative(0.01f, 0.15f, -0.04f, 0.3f, -0.18f, 0.43f) + close() + moveTo(12.12f, 7.33f) + close() + moveTo(12.12f, 3.67f) + close() + moveTo(3.5f, 2.65f) + verticalLineToRelative(5.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(2.0f, 3.79f) + lineToRelative(-0.51f, 0.17f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.91f, -0.37f) + lineToRelative(-0.04f, -0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.38f, -0.9f) + lineToRelative(0.1f, -0.05f) + lineToRelative(1.5f, -0.5f) + curveToRelative(0.45f, -0.15f, 0.91f, 0.15f, 0.98f, 0.6f) + close() + moveTo(10.62f, 9.35f) + curveToRelative(-0.32f, 0.4f, -0.82f, 0.65f, -1.37f, 0.65f) + lineTo(5.5f, 10.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.4f, -0.7f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -2.1f, 0.55f) + verticalLineToRelative(6.9f) + curveTo(2.0f, 18.0f, 3.0f, 19.0f, 4.25f, 19.0f) + horizontalLineToRelative(15.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-9.5f) + curveTo(22.0f, 6.01f, 20.99f, 5.0f, 19.75f, 5.0f) + lineTo(16.9f, 5.0f) + curveToRelative(-0.05f, 0.17f, -0.12f, 0.34f, -0.2f, 0.5f) + curveToRelative(0.26f, 0.5f, 0.37f, 1.05f, 0.34f, 1.6f) + curveToRelative(-0.11f, 1.9f, -1.79f, 3.15f, -3.8f, 3.15f) + arcToRelative(4.12f, 4.12f, 0.0f, false, true, -2.63f, -0.9f) + close() + moveTo(6.75f, 14.5f) + horizontalLineToRelative(10.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(6.65f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(15.5f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + close() + moveTo(12.5f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + close() + moveTo(9.5f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + close() + moveTo(6.5f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + close() + moveTo(17.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + close() + } + } + return _keyboard123!! + } + +private var _keyboard123: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyboardDock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyboardDock.kt new file mode 100644 index 00000000..65fb7f44 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyboardDock.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.KeyboardDock: ImageVector + get() { + if (_keyboardDock != null) { + return _keyboardDock!! + } + _keyboardDock = fluentIcon(name = "Filled.KeyboardDock") { + fluentPath { + moveTo(22.0f, 4.75f) + curveToRelative(0.0f, -1.24f, -1.01f, -2.25f, -2.25f, -2.25f) + lineTo(4.25f, 2.5f) + curveTo(3.01f, 2.5f, 2.0f, 3.5f, 2.0f, 4.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.25f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(7.0f) + verticalLineToRelative(2.94f) + lineToRelative(-0.84f, -0.84f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(2.12f, 2.12f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.12f, -2.12f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-0.84f, 0.84f) + lineTo(12.75f, 16.5f) + horizontalLineToRelative(7.0f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-9.5f) + close() + moveTo(6.75f, 12.0f) + horizontalLineToRelative(10.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(6.65f, 13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(15.5f, 9.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + close() + moveTo(12.5f, 9.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + close() + moveTo(9.5f, 9.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + close() + moveTo(6.5f, 9.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + close() + moveTo(5.0f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + close() + moveTo(8.0f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + close() + moveTo(11.0f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + close() + moveTo(14.0f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + close() + moveTo(17.0f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + close() + } + } + return _keyboardDock!! + } + +private var _keyboardDock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyboardLayoutFloat.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyboardLayoutFloat.kt new file mode 100644 index 00000000..96c6b57d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyboardLayoutFloat.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.KeyboardLayoutFloat: ImageVector + get() { + if (_keyboardLayoutFloat != null) { + return _keyboardLayoutFloat!! + } + _keyboardLayoutFloat = fluentIcon(name = "Filled.KeyboardLayoutFloat") { + fluentPath { + moveTo(21.25f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(2.75f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(18.6f) + close() + moveTo(19.75f, 3.0f) + curveTo(20.99f, 3.0f, 22.0f, 4.0f, 22.0f, 5.25f) + verticalLineToRelative(9.5f) + curveTo(22.0f, 16.0f, 20.99f, 17.0f, 19.75f, 17.0f) + horizontalLineToRelative(-6.53f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.44f, 0.0f) + lineTo(4.25f, 17.0f) + curveTo(3.01f, 17.0f, 2.0f, 16.0f, 2.0f, 14.75f) + verticalLineToRelative(-9.5f) + curveTo(2.0f, 4.01f, 3.0f, 3.0f, 4.25f, 3.0f) + horizontalLineToRelative(15.5f) + close() + moveTo(17.25f, 12.5f) + lineTo(6.65f, 12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(10.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(16.5f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(10.5f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(7.5f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(13.5f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(6.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(9.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(12.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(15.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(18.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + } + } + return _keyboardLayoutFloat!! + } + +private var _keyboardLayoutFloat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyboardLayoutOneHandedLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyboardLayoutOneHandedLeft.kt new file mode 100644 index 00000000..8fad46ba --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyboardLayoutOneHandedLeft.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.KeyboardLayoutOneHandedLeft: ImageVector + get() { + if (_keyboardLayoutOneHandedLeft != null) { + return _keyboardLayoutOneHandedLeft!! + } + _keyboardLayoutOneHandedLeft = fluentIcon(name = "Filled.KeyboardLayoutOneHandedLeft") { + fluentPath { + moveTo(19.75f, 5.0f) + curveTo(20.99f, 5.0f, 22.0f, 6.0f, 22.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(22.0f, 18.0f, 20.99f, 19.0f, 19.75f, 19.0f) + lineTo(4.25f, 19.0f) + curveTo(3.01f, 19.0f, 2.0f, 18.0f, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + curveTo(2.0f, 6.01f, 3.0f, 5.0f, 4.25f, 5.0f) + horizontalLineToRelative(15.5f) + close() + moveTo(6.5f, 16.0f) + lineTo(10.0f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(6.5f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(9.5f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(6.5f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(6.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(9.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + } + } + return _keyboardLayoutOneHandedLeft!! + } + +private var _keyboardLayoutOneHandedLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyboardLayoutResize.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyboardLayoutResize.kt new file mode 100644 index 00000000..22660e91 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyboardLayoutResize.kt @@ -0,0 +1,113 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.KeyboardLayoutResize: ImageVector + get() { + if (_keyboardLayoutResize != null) { + return _keyboardLayoutResize!! + } + _keyboardLayoutResize = fluentIcon(name = "Filled.KeyboardLayoutResize") { + fluentPath { + moveTo(21.25f, 10.5f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(2.1f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(21.25f, 2.0f) + horizontalLineToRelative(0.07f) + lineToRelative(0.1f, 0.02f) + lineToRelative(0.07f, 0.02f) + lineToRelative(0.06f, 0.02f) + lineToRelative(0.07f, 0.04f) + lineToRelative(0.08f, 0.05f) + lineToRelative(0.08f, 0.07f) + lineToRelative(0.05f, 0.06f) + lineToRelative(0.05f, 0.06f) + lineToRelative(0.05f, 0.09f) + lineToRelative(0.01f, 0.04f) + lineToRelative(0.03f, 0.06f) + lineToRelative(0.02f, 0.12f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(20.5f, 4.56f) + lineToRelative(-4.47f, 4.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(4.47f, -4.47f) + horizontalLineToRelative(-3.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(5.0f) + close() + moveTo(13.25f, 10.5f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(7.0f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + horizontalLineToRelative(-9.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(2.0f, 19.75f) + verticalLineToRelative(-7.0f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineToRelative(0.15f, -0.01f) + horizontalLineToRelative(9.0f) + close() + moveTo(10.75f, 17.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.78f, 0.78f, 0.0f, false, false, -0.75f, 0.75f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(4.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.37f, 0.75f, -0.75f) + reflectiveCurveToRelative(-0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + close() + moveTo(6.0f, 13.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(11.5f, 13.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(8.75f, 13.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(12.75f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-8.6f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-4.1f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 2.0f) + horizontalLineToRelative(8.5f) + close() + } + } + return _keyboardLayoutResize!! + } + +private var _keyboardLayoutResize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyboardLayoutSplit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyboardLayoutSplit.kt new file mode 100644 index 00000000..10746123 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyboardLayoutSplit.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.KeyboardLayoutSplit: ImageVector + get() { + if (_keyboardLayoutSplit != null) { + return _keyboardLayoutSplit!! + } + _keyboardLayoutSplit = fluentIcon(name = "Filled.KeyboardLayoutSplit") { + fluentPath { + moveTo(19.75f, 5.0f) + curveTo(20.99f, 5.0f, 22.0f, 6.0f, 22.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(22.0f, 18.0f, 20.99f, 19.0f, 19.75f, 19.0f) + lineTo(4.25f, 19.0f) + curveTo(3.01f, 19.0f, 2.0f, 18.0f, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + curveTo(2.0f, 6.01f, 3.0f, 5.0f, 4.25f, 5.0f) + horizontalLineToRelative(15.5f) + close() + moveTo(6.5f, 16.0f) + lineTo(10.0f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(6.5f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(14.0f, 16.0f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(14.0f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(17.5f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(14.5f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(9.5f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(6.5f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(6.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(9.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(15.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(18.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + } + } + return _keyboardLayoutSplit!! + } + +private var _keyboardLayoutSplit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyboardShift.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyboardShift.kt new file mode 100644 index 00000000..8658214d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyboardShift.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.KeyboardShift: ImageVector + get() { + if (_keyboardShift != null) { + return _keyboardShift!! + } + _keyboardShift = fluentIcon(name = "Filled.KeyboardShift") { + fluentPath { + moveTo(10.68f, 2.6f) + curveToRelative(0.7f, -0.8f, 1.94f, -0.8f, 2.64f, 0.0f) + lineToRelative(8.25f, 9.5f) + curveToRelative(0.98f, 1.14f, 0.17f, 2.9f, -1.33f, 2.9f) + horizontalLineTo(17.0f) + verticalLineToRelative(5.25f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-6.5f) + curveTo(7.78f, 22.0f, 7.0f, 21.22f, 7.0f, 20.25f) + verticalLineTo(15.0f) + horizontalLineTo(3.75f) + curveToRelative(-1.5f, 0.0f, -2.3f, -1.76f, -1.32f, -2.9f) + lineToRelative(8.25f, -9.5f) + close() + } + } + return _keyboardShift!! + } + +private var _keyboardShift: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyboardShiftUppercase.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyboardShiftUppercase.kt new file mode 100644 index 00000000..c1e644c3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyboardShiftUppercase.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.KeyboardShiftUppercase: ImageVector + get() { + if (_keyboardShiftUppercase != null) { + return _keyboardShiftUppercase!! + } + _keyboardShiftUppercase = fluentIcon(name = "Filled.KeyboardShiftUppercase") { + fluentPath { + moveTo(13.32f, 2.6f) + curveToRelative(-0.7f, -0.8f, -1.95f, -0.8f, -2.64f, 0.0f) + lineToRelative(-8.25f, 9.5f) + arcTo(1.75f, 1.75f, 0.0f, false, false, 3.75f, 15.0f) + horizontalLineTo(7.0f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(6.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineTo(15.0f) + horizontalLineToRelative(3.24f) + curveToRelative(1.5f, 0.0f, 2.3f, -1.76f, 1.33f, -2.9f) + lineToRelative(-8.25f, -9.5f) + close() + moveTo(7.75f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-8.5f) + close() + } + } + return _keyboardShiftUppercase!! + } + +private var _keyboardShiftUppercase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyboardTab.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyboardTab.kt new file mode 100644 index 00000000..16b988f1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/KeyboardTab.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.KeyboardTab: ImageVector + get() { + if (_keyboardTab != null) { + return _keyboardTab!! + } + _keyboardTab = fluentIcon(name = "Filled.KeyboardTab") { + fluentPath { + moveToRelative(18.2f, 11.3f) + lineToRelative(-6.5f, -6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.49f, 1.31f) + lineToRelative(0.08f, 0.1f) + lineTo(15.1f, 11.0f) + lineTo(4.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 0.88f) + lineTo(3.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.88f, 1.0f) + lineTo(15.1f, 13.0f) + lineToRelative(-4.8f, 4.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.08f, 1.31f) + lineToRelative(0.08f, 0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.32f, 0.08f) + lineToRelative(0.1f, -0.08f) + lineToRelative(6.5f, -6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.08f, -1.32f) + lineToRelative(-0.08f, -0.1f) + lineToRelative(-6.5f, -6.5f) + lineToRelative(6.5f, 6.5f) + close() + moveTo(21.0f, 18.5f) + verticalLineToRelative(-13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + close() + } + } + return _keyboardTab!! + } + +private var _keyboardTab: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Laptop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Laptop.kt new file mode 100644 index 00000000..b9b1e4ab --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Laptop.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Laptop: ImageVector + get() { + if (_laptop != null) { + return _laptop!! + } + _laptop = fluentIcon(name = "Filled.Laptop") { + fluentPath { + moveTo(2.75f, 16.5f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineTo(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(18.6f) + horizontalLineToRelative(-18.5f) + close() + moveTo(18.25f, 5.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineTo(5.75f) + curveTo(4.78f, 16.0f, 4.0f, 15.22f, 4.0f, 14.25f) + verticalLineToRelative(-7.5f) + curveTo(4.0f, 5.78f, 4.78f, 5.0f, 5.75f, 5.0f) + horizontalLineToRelative(12.5f) + close() + } + } + return _laptop!! + } + +private var _laptop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Lasso.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Lasso.kt new file mode 100644 index 00000000..cb81f4f4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Lasso.kt @@ -0,0 +1,93 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Lasso: ImageVector + get() { + if (_lasso != null) { + return _lasso!! + } + _lasso = fluentIcon(name = "Filled.Lasso") { + fluentPath { + moveTo(9.7f, 2.27f) + arcToRelative(10.03f, 10.03f, 0.0f, false, true, 4.6f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.46f, 1.94f) + arcToRelative(8.03f, 8.03f, 0.0f, false, false, -3.68f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -0.46f, -1.94f) + close() + moveTo(15.88f, 3.82f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.38f, -0.33f) + curveToRelative(1.32f, 0.82f, 2.43f, 1.93f, 3.25f, 3.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.7f, 1.05f) + arcToRelative(8.05f, 8.05f, 0.0f, false, false, -2.6f, -2.6f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.33f, -1.37f) + close() + moveTo(8.12f, 3.82f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.33f, 1.37f) + arcToRelative(8.05f, 8.05f, 0.0f, false, false, -2.6f, 2.6f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.7f, -1.05f) + arcTo(10.05f, 10.05f, 0.0f, false, true, 6.74f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.38f, 0.33f) + close() + moveTo(3.47f, 8.96f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.74f, 1.2f) + arcToRelative(8.03f, 8.03f, 0.0f, false, false, 0.0f, 3.68f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.94f, 0.46f) + arcToRelative(10.03f, 10.03f, 0.0f, false, true, 0.0f, -4.6f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.2f, -0.74f) + close() + moveTo(20.53f, 8.96f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.2f, 0.74f) + arcToRelative(10.02f, 10.02f, 0.0f, false, true, 0.0f, 4.6f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.94f, -0.46f) + arcToRelative(8.03f, 8.03f, 0.0f, false, false, 0.0f, -3.68f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.74f, -1.2f) + close() + moveTo(3.82f, 15.88f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.37f, 0.33f) + arcToRelative(8.05f, 8.05f, 0.0f, false, false, 2.6f, 2.6f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.05f, 1.7f) + arcToRelative(10.05f, 10.05f, 0.0f, false, true, -3.25f, -3.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.33f, -1.38f) + close() + moveTo(20.62f, 17.49f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.74f, -0.98f) + lineToRelative(-0.01f, 0.02f) + arcToRelative(3.82f, 3.82f, 0.0f, false, true, -0.34f, 0.5f) + curveToRelative(-0.18f, 0.24f, -0.43f, 0.54f, -0.74f, 0.85f) + arcTo(7.35f, 7.35f, 0.0f, false, false, 13.0f, 16.0f) + curveToRelative(-2.27f, 0.0f, -4.0f, 1.2f, -4.0f, 3.0f) + reflectiveCurveToRelative(1.73f, 3.0f, 4.0f, 3.0f) + curveToRelative(1.91f, 0.0f, 3.46f, -0.63f, 4.64f, -1.41f) + arcToRelative(10.98f, 10.98f, 0.0f, false, true, 1.19f, 1.8f) + lineToRelative(0.01f, 0.03f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.81f, -0.85f) + curveToRelative(-0.11f, -0.23f, 0.0f, 0.0f, 0.0f, 0.0f) + verticalLineToRelative(-0.02f) + lineToRelative(-0.02f, -0.03f) + lineToRelative(-0.01f, -0.02f) + arcToRelative(8.04f, 8.04f, 0.0f, false, false, -0.46f, -0.8f) + curveToRelative(-0.23f, -0.4f, -0.56f, -0.88f, -0.98f, -1.38f) + arcToRelative(10.41f, 10.41f, 0.0f, false, false, 1.4f, -1.76f) + lineToRelative(0.03f, -0.05f) + verticalLineToRelative(-0.01f) + horizontalLineToRelative(0.01f) + verticalLineToRelative(-0.01f) + close() + moveTo(13.0f, 18.0f) + curveToRelative(1.23f, 0.0f, 2.29f, 0.48f, 3.17f, 1.14f) + curveToRelative(-0.86f, 0.5f, -1.92f, 0.86f, -3.17f, 0.86f) + curveToRelative(-1.73f, 0.0f, -2.0f, -0.8f, -2.0f, -1.0f) + curveToRelative(0.0f, -0.2f, 0.27f, -1.0f, 2.0f, -1.0f) + close() + } + } + return _lasso!! + } + +private var _lasso: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LauncherSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LauncherSettings.kt new file mode 100644 index 00000000..514f4c88 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LauncherSettings.kt @@ -0,0 +1,88 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.LauncherSettings: ImageVector + get() { + if (_launcherSettings != null) { + return _launcherSettings!! + } + _launcherSettings = fluentIcon(name = "Filled.LauncherSettings") { + fluentPath { + moveTo(12.01f, 2.25f) + curveToRelative(0.73f, 0.0f, 1.47f, 0.1f, 2.18f, 0.25f) + curveToRelative(0.31f, 0.07f, 0.55f, 0.33f, 0.58f, 0.65f) + lineToRelative(0.17f, 1.53f) + arcToRelative(1.38f, 1.38f, 0.0f, false, false, 1.93f, 1.11f) + lineToRelative(1.4f, -0.61f) + curveToRelative(0.3f, -0.13f, 0.63f, -0.06f, 0.85f, 0.17f) + arcToRelative(9.8f, 9.8f, 0.0f, false, true, 2.2f, 3.8f) + curveToRelative(0.1f, 0.3f, 0.0f, 0.63f, -0.27f, 0.82f) + lineToRelative(-1.24f, 0.92f) + arcToRelative(1.38f, 1.38f, 0.0f, false, false, 0.0f, 2.22f) + lineToRelative(1.25f, 0.92f) + curveToRelative(0.25f, 0.19f, 0.36f, 0.52f, 0.27f, 0.82f) + arcToRelative(9.8f, 9.8f, 0.0f, false, true, -2.2f, 3.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.85f, 0.17f) + lineToRelative(-1.41f, -0.62f) + arcToRelative(1.38f, 1.38f, 0.0f, false, false, -1.93f, 1.12f) + lineToRelative(-0.17f, 1.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.57f, 0.65f) + arcToRelative(9.52f, 9.52f, 0.0f, false, true, -4.4f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.58f, -0.65f) + lineToRelative(-0.16f, -1.52f) + arcToRelative(1.38f, 1.38f, 0.0f, false, false, -1.93f, -1.11f) + lineToRelative(-1.4f, 0.62f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.85f, -0.18f) + arcToRelative(9.8f, 9.8f, 0.0f, false, true, -2.2f, -3.8f) + curveToRelative(-0.1f, -0.3f, 0.0f, -0.63f, 0.26f, -0.82f) + lineToRelative(1.25f, -0.92f) + arcToRelative(1.38f, 1.38f, 0.0f, false, false, 0.0f, -2.22f) + lineToRelative(-1.25f, -0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.27f, -0.82f) + arcToRelative(9.8f, 9.8f, 0.0f, false, true, 2.2f, -3.8f) + curveToRelative(0.22f, -0.23f, 0.56f, -0.3f, 0.86f, -0.17f) + lineToRelative(1.4f, 0.62f) + arcToRelative(1.39f, 1.39f, 0.0f, false, false, 1.93f, -1.12f) + lineToRelative(0.17f, -1.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.58f, -0.65f) + curveToRelative(0.72f, -0.16f, 1.45f, -0.24f, 2.2f, -0.25f) + close() + moveTo(13.58f, 8.0f) + lineTo(10.3f, 8.0f) + lineToRelative(3.1f, 4.0f) + lineToRelative(-2.76f, 3.51f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.23f, 0.49f) + horizontalLineToRelative(2.7f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.24f, -0.12f) + lineToRelative(2.78f, -3.57f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.62f) + lineToRelative(-2.78f, -3.57f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, -0.23f, -0.12f) + close() + moveTo(9.68f, 8.8f) + lineTo(7.4f, 11.7f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, 0.53f) + lineToRelative(0.05f, 0.08f) + lineToRelative(2.0f, 2.55f) + lineToRelative(0.05f, 0.05f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.38f, 0.0f) + lineToRelative(0.05f, -0.04f) + lineToRelative(1.33f, -1.68f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.04f, -0.3f) + lineToRelative(-0.04f, -0.08f) + lineToRelative(-0.64f, -0.81f) + lineToRelative(0.79f, -1.0f) + lineToRelative(-1.7f, -2.2f) + close() + } + } + return _launcherSettings!! + } + +private var _launcherSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Layer.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Layer.kt new file mode 100644 index 00000000..26cf8367 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Layer.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Layer: ImageVector + get() { + if (_layer != null) { + return _layer!! + } + _layer = fluentIcon(name = "Filled.Layer") { + fluentPath { + moveToRelative(13.39f, 3.42f) + lineToRelative(6.36f, 4.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.66f) + lineToRelative(-6.36f, 4.25f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.78f, 0.0f) + lineTo(4.25f, 9.33f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.66f) + lineToRelative(6.36f, -4.25f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.78f, 0.0f) + close() + moveTo(20.03f, 12.19f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.58f, 0.6f) + lineToRelative(-6.05f, 4.08f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.8f, 0.0f) + lineTo(4.55f, 12.8f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.78f, -2.29f) + lineToRelative(6.84f, 4.56f) + curveToRelative(0.79f, 0.52f, 1.8f, 0.56f, 2.62f, 0.1f) + lineToRelative(0.16f, -0.1f) + lineToRelative(6.84f, -4.56f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.2f, 1.7f) + close() + moveTo(20.03f, 15.44f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.58f, 0.6f) + lineToRelative(-6.05f, 4.08f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.8f, 0.0f) + lineToRelative(-6.05f, -4.08f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.78f, -2.29f) + lineToRelative(6.84f, 4.56f) + curveToRelative(0.79f, 0.52f, 1.8f, 0.56f, 2.62f, 0.1f) + lineToRelative(0.16f, -0.1f) + lineToRelative(6.84f, -4.56f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.2f, 1.7f) + close() + } + } + return _layer!! + } + +private var _layer: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LeafOne.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LeafOne.kt new file mode 100644 index 00000000..2893b4d8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LeafOne.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.LeafOne: ImageVector + get() { + if (_leafOne != null) { + return _leafOne!! + } + _leafOne = fluentIcon(name = "Filled.LeafOne") { + fluentPath { + moveTo(11.04f, 3.05f) + curveToRelative(0.68f, -0.45f, 1.6f, -0.38f, 2.2f, 0.22f) + lineToRelative(3.7f, 3.71f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, -4.19f, 11.91f) + verticalLineToRelative(2.36f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + verticalLineToRelative(-2.36f) + arcTo(7.0f, 7.0f, 0.0f, false, true, 7.05f, 7.0f) + lineToRelative(3.71f, -3.72f) + curveToRelative(0.09f, -0.08f, 0.18f, -0.16f, 0.28f, -0.22f) + close() + moveTo(12.0f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(5.63f) + curveToRelative(0.5f, 0.07f, 1.0f, 0.07f, 1.5f, 0.0f) + verticalLineToRelative(-5.63f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 12.0f, 11.0f) + close() + } + } + return _leafOne!! + } + +private var _leafOne: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LeafThree.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LeafThree.kt new file mode 100644 index 00000000..83a1579e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LeafThree.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.LeafThree: ImageVector + get() { + if (_leafThree != null) { + return _leafThree!! + } + _leafThree = fluentIcon(name = "Filled.LeafThree") { + fluentPath { + moveTo(13.5f, 2.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -4.9f, 3.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, 5.49f, 3.13f) + curveToRelative(0.45f, -0.08f, 0.93f, -0.13f, 1.41f, -0.13f) + horizontalLineToRelative(3.48f) + lineToRelative(0.02f, -0.5f) + lineTo(19.0f, 3.44f) + curveToRelative(0.0f, -0.8f, -0.65f, -1.44f, -1.44f, -1.44f) + lineTo(13.5f, 2.0f) + close() + moveTo(8.43f, 18.0f) + horizontalLineToRelative(-0.18f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, -6.0f, -6.0f) + lineTo(2.25f, 7.51f) + curveToRelative(0.0f, -0.83f, 0.68f, -1.51f, 1.51f, -1.51f) + horizontalLineToRelative(4.49f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 4.8f, 2.4f) + arcToRelative(7.52f, 7.52f, 0.0f, false, false, -3.93f, 3.16f) + lineTo(7.53f, 9.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(1.96f, 1.96f) + arcToRelative(7.49f, 7.49f, 0.0f, false, false, 0.0f, 5.0f) + close() + moveTo(9.0f, 15.5f) + arcTo(6.5f, 6.5f, 0.0f, false, true, 15.5f, 9.0f) + horizontalLineToRelative(4.91f) + curveToRelative(0.88f, 0.0f, 1.59f, 0.71f, 1.59f, 1.59f) + verticalLineToRelative(4.91f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, -10.54f, 5.1f) + lineToRelative(-1.18f, 1.18f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(1.18f, -1.18f) + arcTo(6.47f, 6.47f, 0.0f, false, true, 9.0f, 15.5f) + close() + moveTo(12.18f, 19.88f) + lineTo(16.78f, 15.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-4.6f, 4.6f) + curveToRelative(0.3f, 0.4f, 0.66f, 0.76f, 1.06f, 1.06f) + close() + } + } + return _leafThree!! + } + +private var _leafThree: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LeafTwo.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LeafTwo.kt new file mode 100644 index 00000000..108d1f76 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LeafTwo.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.LeafTwo: ImageVector + get() { + if (_leafTwo != null) { + return _leafTwo!! + } + _leafTwo = fluentIcon(name = "Filled.LeafTwo") { + fluentPath { + moveTo(3.7f, 2.0f) + curveTo(2.78f, 2.0f, 2.0f, 2.76f, 2.0f, 3.7f) + lineTo(2.0f, 8.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, 5.0f, 5.92f) + arcToRelative(7.96f, 7.96f, 0.0f, false, true, 1.4f, -4.45f) + lineTo(6.23f, 7.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineToRelative(2.1f, 2.1f) + arcTo(7.98f, 7.98f, 0.0f, false, true, 13.7f, 6.1f) + arcTo(6.0f, 6.0f, 0.0f, false, false, 8.0f, 2.0f) + lineTo(3.7f, 2.0f) + close() + moveTo(9.55f, 18.39f) + lineTo(7.22f, 20.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(2.33f, -2.33f) + arcTo(7.0f, 7.0f, 0.0f, false, false, 22.0f, 14.0f) + lineTo(22.0f, 8.75f) + curveTo(22.0f, 7.78f, 21.22f, 7.0f, 20.25f, 7.0f) + lineTo(15.0f, 7.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, false, -5.45f, 11.39f) + close() + moveTo(15.78f, 14.29f) + lineTo(11.68f, 18.38f) + curveToRelative(-0.4f, -0.3f, -0.75f, -0.66f, -1.06f, -1.06f) + lineToRelative(4.1f, -4.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) + close() + } + } + return _leafTwo!! + } + +private var _leafTwo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LearningApp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LearningApp.kt new file mode 100644 index 00000000..b23e69a4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LearningApp.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.LearningApp: ImageVector + get() { + if (_learningApp != null) { + return _learningApp!! + } + _learningApp = fluentIcon(name = "Filled.LearningApp") { + fluentPath { + moveTo(5.5f, 2.0f) + lineTo(17.0f, 2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) + verticalLineToRelative(6.81f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -8.19f, 8.19f) + lineTo(4.5f, 19.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(6.23f) + curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) + lineTo(5.5f, 22.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 3.0f, 19.5f) + verticalLineToRelative(-15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 5.5f, 2.0f) + close() + moveTo(7.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + lineTo(16.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(7.0f, 5.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(16.91f, 15.1f) + lineTo(19.72f, 16.94f) + arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.28f, 0.52f) + curveToRelative(0.0f, 0.1f, -0.02f, 0.2f, -0.07f, 0.3f) + arcToRelative(0.57f, 0.57f, 0.0f, false, true, -0.2f, 0.22f) + lineToRelative(-2.8f, 1.92f) + arcToRelative(0.64f, 0.64f, 0.0f, false, true, -0.17f, 0.07f) + arcToRelative(0.55f, 0.55f, 0.0f, false, true, -0.4f, -0.02f) + arcToRelative(0.69f, 0.69f, 0.0f, false, true, -0.18f, -0.13f) + arcToRelative(0.61f, 0.61f, 0.0f, false, true, -0.18f, -0.44f) + verticalLineToRelative(-3.76f) + arcToRelative(0.62f, 0.62f, 0.0f, false, true, 0.37f, -0.57f) + arcToRelative(0.55f, 0.55f, 0.0f, false, true, 0.55f, 0.05f) + close() + } + } + return _learningApp!! + } + +private var _learningApp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Library.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Library.kt new file mode 100644 index 00000000..6a819d3e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Library.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Library: ImageVector + get() { + if (_library != null) { + return _library!! + } + _library = fluentIcon(name = "Filled.Library") { + fluentPath { + moveTo(5.5f, 3.0f) + curveTo(6.33f, 3.0f, 7.0f, 3.67f, 7.0f, 4.5f) + verticalLineToRelative(15.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-2.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 2.0f, 19.5f) + verticalLineToRelative(-15.0f) + curveTo(2.0f, 3.67f, 2.67f, 3.0f, 3.5f, 3.0f) + horizontalLineToRelative(2.0f) + close() + moveTo(11.5f, 3.0f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(15.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-2.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 8.0f, 19.5f) + verticalLineToRelative(-15.0f) + curveTo(8.0f, 3.67f, 8.67f, 3.0f, 9.5f, 3.0f) + horizontalLineToRelative(2.0f) + close() + moveTo(18.78f, 6.12f) + lineTo(22.0f, 18.64f) + curveToRelative(0.21f, 0.8f, -0.27f, 1.62f, -1.07f, 1.83f) + lineToRelative(-1.88f, 0.48f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.83f, -1.08f) + lineTo(14.0f, 7.35f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 1.08f, -1.82f) + lineToRelative(1.87f, -0.49f) + curveToRelative(0.8f, -0.2f, 1.63f, 0.28f, 1.83f, 1.08f) + close() + } + } + return _library!! + } + +private var _library: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Lightbulb.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Lightbulb.kt new file mode 100644 index 00000000..5d677bd3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Lightbulb.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Lightbulb: ImageVector + get() { + if (_lightbulb != null) { + return _lightbulb!! + } + _lightbulb = fluentIcon(name = "Filled.Lightbulb") { + fluentPath { + moveToRelative(15.54f, 19.0f) + lineToRelative(-0.3f, 1.26f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.01f, 1.73f) + lineToRelative(-0.17f, 0.01f) + horizontalLineToRelative(-2.12f) + curveToRelative(-0.99f, 0.0f, -1.85f, -0.65f, -2.14f, -1.58f) + lineToRelative(-0.05f, -0.16f) + lineTo(8.46f, 19.0f) + horizontalLineToRelative(7.08f) + close() + moveTo(12.0f, 2.0f) + curveToRelative(4.0f, 0.0f, 7.25f, 3.25f, 7.25f, 7.25f) + curveToRelative(0.0f, 2.14f, -0.94f, 4.1f, -2.77f, 5.84f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.07f, 0.13f) + lineToRelative(-0.52f, 2.28f) + horizontalLineTo(8.1f) + lineToRelative(-0.52f, -2.28f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.07f, -0.13f) + curveToRelative(-1.83f, -1.75f, -2.77f, -3.7f, -2.77f, -5.84f) + curveTo(4.75f, 5.25f, 8.0f, 2.0f, 12.0f, 2.0f) + close() + } + } + return _lightbulb!! + } + +private var _lightbulb: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LightbulbCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LightbulbCircle.kt new file mode 100644 index 00000000..355e8741 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LightbulbCircle.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.LightbulbCircle: ImageVector + get() { + if (_lightbulbCircle != null) { + return _lightbulbCircle!! + } + _lightbulbCircle = fluentIcon(name = "Filled.LightbulbCircle") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(14.48f, 17.0f) + lineTo(9.52f, 17.0f) + lineToRelative(0.1f, 0.45f) + lineToRelative(0.05f, 0.16f) + lineToRelative(0.05f, 0.14f) + curveToRelative(0.29f, 0.64f, 0.9f, 1.05f, 1.59f, 1.05f) + horizontalLineToRelative(1.38f) + lineToRelative(0.16f, -0.01f) + lineToRelative(0.15f, -0.02f) + lineToRelative(0.14f, -0.04f) + arcToRelative(1.73f, 1.73f, 0.0f, false, false, 1.24f, -1.27f) + lineToRelative(0.1f, -0.46f) + close() + moveTo(12.0f, 5.2f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, -5.0f, 5.0f) + verticalLineToRelative(0.27f) + lineToRelative(0.03f, 0.26f) + lineToRelative(0.03f, 0.25f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 1.64f, 2.98f) + lineToRelative(0.16f, 0.13f) + lineToRelative(0.32f, 1.41f) + horizontalLineToRelative(5.64f) + lineToRelative(0.32f, -1.41f) + lineToRelative(0.16f, -0.14f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 1.7f, -3.5f) + verticalLineToRelative(-0.25f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, -5.0f, -5.0f) + close() + } + } + return _lightbulbCircle!! + } + +private var _lightbulbCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LightbulbFilament.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LightbulbFilament.kt new file mode 100644 index 00000000..7403e538 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LightbulbFilament.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.LightbulbFilament: ImageVector + get() { + if (_lightbulbFilament != null) { + return _lightbulbFilament!! + } + _lightbulbFilament = fluentIcon(name = "Filled.LightbulbFilament") { + fluentPath { + moveToRelative(15.54f, 19.0f) + lineToRelative(-0.3f, 1.26f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.01f, 1.73f) + lineToRelative(-0.17f, 0.01f) + horizontalLineToRelative(-2.12f) + curveToRelative(-0.99f, 0.0f, -1.85f, -0.65f, -2.14f, -1.58f) + lineToRelative(-0.05f, -0.16f) + lineTo(8.46f, 19.0f) + horizontalLineToRelative(7.08f) + close() + moveTo(12.0f, 2.0f) + curveToRelative(4.0f, 0.0f, 7.25f, 3.25f, 7.25f, 7.25f) + curveToRelative(0.0f, 2.14f, -0.94f, 4.1f, -2.77f, 5.84f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.07f, 0.13f) + lineToRelative(-0.52f, 2.28f) + horizontalLineToRelative(-3.14f) + verticalLineToRelative(-6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(6.75f) + lineTo(8.11f, 17.5f) + lineToRelative(-0.52f, -2.28f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.07f, -0.13f) + curveToRelative(-1.83f, -1.75f, -2.77f, -3.7f, -2.77f, -5.84f) + curveTo(4.75f, 5.25f, 8.0f, 2.0f, 12.0f, 2.0f) + close() + moveTo(11.25f, 6.75f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + close() + moveTo(16.28f, 8.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-1.06f, 1.06f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(1.06f, -1.06f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + close() + moveTo(8.78f, 8.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(1.06f, 1.06f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineTo(8.78f, 8.22f) + close() + } + } + return _lightbulbFilament!! + } + +private var _lightbulbFilament: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LightbulbPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LightbulbPerson.kt new file mode 100644 index 00000000..4244c120 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LightbulbPerson.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.LightbulbPerson: ImageVector + get() { + if (_lightbulbPerson != null) { + return _lightbulbPerson!! + } + _lightbulbPerson = fluentIcon(name = "Filled.LightbulbPerson") { + fluentPath { + moveToRelative(15.42f, 19.5f) + lineToRelative(-0.17f, 0.76f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.02f, 1.73f) + lineToRelative(-0.17f, 0.01f) + horizontalLineToRelative(-2.12f) + curveToRelative(-0.99f, 0.0f, -1.85f, -0.65f, -2.14f, -1.58f) + lineToRelative(-0.05f, -0.16f) + lineToRelative(-0.17f, -0.76f) + horizontalLineToRelative(6.84f) + close() + moveTo(15.77f, 18.0f) + lineTo(15.97f, 17.1f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, -7.95f, 0.0f) + lineToRelative(0.21f, 0.9f) + horizontalLineToRelative(7.54f) + close() + moveTo(12.0f, 14.0f) + curveToRelative(-1.64f, 0.0f, -3.14f, 0.54f, -4.36f, 1.45f) + lineToRelative(-0.05f, -0.23f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.07f, -0.13f) + curveToRelative(-1.83f, -1.75f, -2.77f, -3.7f, -2.77f, -5.84f) + arcToRelative(7.25f, 7.25f, 0.0f, true, true, 14.5f, 0.0f) + curveToRelative(0.0f, 2.14f, -0.94f, 4.1f, -2.77f, 5.84f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.07f, 0.13f) + lineToRelative(-0.05f, 0.24f) + arcTo(7.22f, 7.22f, 0.0f, false, false, 12.0f, 14.0f) + close() + moveTo(10.25f, 9.25f) + arcToRelative(1.75f, 1.75f, 0.0f, true, true, 3.5f, 0.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -3.5f, 0.0f) + close() + moveTo(12.0f, 6.0f) + arcToRelative(3.25f, 3.25f, 0.0f, true, false, 0.0f, 6.5f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 12.0f, 6.0f) + close() + } + } + return _lightbulbPerson!! + } + +private var _lightbulbPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Likert.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Likert.kt new file mode 100644 index 00000000..985a107b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Likert.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Likert: ImageVector + get() { + if (_likert != null) { + return _likert!! + } + _likert = fluentIcon(name = "Filled.Likert") { + fluentPath { + moveTo(6.0f, 4.0f) + lineTo(5.0f, 4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(4.25f) + horizontalLineToRelative(4.0f) + lineTo(6.0f, 4.0f) + close() + moveTo(2.0f, 12.75f) + lineTo(2.0f, 17.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) + horizontalLineToRelative(1.0f) + verticalLineToRelative(-7.25f) + lineTo(2.0f, 12.75f) + close() + moveTo(7.5f, 20.0f) + lineTo(19.0f, 20.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) + verticalLineToRelative(-4.25f) + lineTo(7.5f, 12.75f) + lineTo(7.5f, 20.0f) + close() + moveTo(11.25f, 16.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(14.0f, 16.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(17.0f, 16.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(20.0f, 16.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(22.0f, 11.25f) + lineTo(7.5f, 11.25f) + lineTo(7.5f, 4.0f) + lineTo(19.0f, 4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(4.25f) + close() + moveTo(10.25f, 8.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(14.0f, 7.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(17.0f, 7.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(20.0f, 7.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + } + } + return _likert!! + } + +private var _likert: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Line.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Line.kt new file mode 100644 index 00000000..6dca9ffb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Line.kt @@ -0,0 +1,29 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Line: ImageVector + get() { + if (_line != null) { + return _line!! + } + _line = fluentIcon(name = "Filled.Line") { + fluentPath { + moveTo(21.7f, 2.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.4f) + lineToRelative(-18.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.4f) + lineToRelative(18.0f, -18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) + close() + } + } + return _line!! + } + +private var _line: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LineDashes.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LineDashes.kt new file mode 100644 index 00000000..3f36e137 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LineDashes.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.LineDashes: ImageVector + get() { + if (_lineDashes != null) { + return _lineDashes!! + } + _lineDashes = fluentIcon(name = "Filled.LineDashes") { + fluentPath { + moveTo(21.7f, 2.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.41f) + lineToRelative(-0.5f, 0.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.4f, -1.41f) + lineToRelative(0.5f, -0.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) + close() + moveTo(17.7f, 6.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.41f) + lineToRelative(-1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.4f, -1.42f) + lineToRelative(0.99f, -1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, 0.0f) + close() + moveTo(13.2f, 10.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.4f) + lineToRelative(-1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.4f) + lineToRelative(1.0f, -1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) + close() + moveTo(8.7f, 16.7f) + arcTo(1.0f, 1.0f, 0.0f, true, false, 7.3f, 15.3f) + lineToRelative(-1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.42f, 1.4f) + lineToRelative(1.0f, -0.99f) + close() + moveTo(4.21f, 21.2f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.41f, -1.42f) + lineToRelative(-0.5f, 0.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.41f, 1.42f) + lineToRelative(0.5f, -0.5f) + close() + } + } + return _lineDashes!! + } + +private var _lineDashes: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LineStyle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LineStyle.kt new file mode 100644 index 00000000..a9d9d020 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LineStyle.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.LineStyle: ImageVector + get() { + if (_lineStyle != null) { + return _lineStyle!! + } + _lineStyle = fluentIcon(name = "Filled.LineStyle") { + fluentPath { + moveTo(2.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + horizontalLineTo(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + } + fluentPath { + moveTo(2.0f, 18.5f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(17.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) + horizontalLineToRelative(-17.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 2.0f, 18.5f) + close() + } + fluentPath { + moveTo(10.75f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-2.5f) + close() + } + fluentPath { + moveTo(17.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + } + fluentPath { + moveTo(3.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineTo(3.0f) + close() + } + } + return _lineStyle!! + } + +private var _lineStyle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LineThickness.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LineThickness.kt new file mode 100644 index 00000000..4e9fac4e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LineThickness.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.LineThickness: ImageVector + get() { + if (_lineThickness != null) { + return _lineThickness!! + } + _lineThickness = fluentIcon(name = "Filled.LineThickness") { + fluentPath { + moveTo(3.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(3.0f, 3.0f) + close() + moveTo(2.0f, 10.5f) + curveTo(2.0f, 9.67f, 2.67f, 9.0f, 3.5f, 9.0f) + horizontalLineToRelative(17.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) + horizontalLineToRelative(-17.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 2.0f, 10.5f) + close() + moveTo(2.0f, 18.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(16.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) + lineTo(4.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + close() + } + } + return _lineThickness!! + } + +private var _lineThickness: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LinkDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LinkDismiss.kt new file mode 100644 index 00000000..291ffedb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LinkDismiss.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.LinkDismiss: ImageVector + get() { + if (_linkDismiss != null) { + return _linkDismiss!! + } + _linkDismiss = fluentIcon(name = "Filled.LinkDismiss") { + fluentPath { + moveTo(9.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(7.0f, 7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -0.18f, 6.0f) + lineTo(9.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(7.0f, 15.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, -0.22f, -10.0f) + lineTo(9.0f, 5.0f) + close() + moveTo(17.0f, 5.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 4.43f, 7.32f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, -1.76f, -0.95f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 17.17f, 7.0f) + lineTo(15.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(17.0f, 5.0f) + close() + moveTo(7.0f, 9.0f) + horizontalLineToRelative(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(7.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(7.0f, 9.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-1.64f, -1.65f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.65f, 1.64f) + lineToRelative(-1.65f, -1.64f) + close() + } + } + return _linkDismiss!! + } + +private var _linkDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LinkEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LinkEdit.kt new file mode 100644 index 00000000..585a91cd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LinkEdit.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.LinkEdit: ImageVector + get() { + if (_linkEdit != null) { + return _linkEdit!! + } + _linkEdit = fluentIcon(name = "Filled.LinkEdit") { + fluentPath { + moveTo(10.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(6.78f, 5.0f) + arcTo(5.0f, 5.0f, 0.0f, false, false, 7.0f, 15.0f) + horizontalLineToRelative(2.12f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 9.0f, 13.0f) + lineTo(6.82f, 13.0f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 7.0f, 7.0f) + horizontalLineToRelative(2.12f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 10.0f, 6.0f) + close() + moveTo(22.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, -5.0f, -5.0f) + horizontalLineToRelative(-2.12f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 15.0f, 7.0f) + horizontalLineToRelative(2.17f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 20.0f, 10.0f) + lineTo(20.0f, 10.0f) + curveToRelative(0.7f, 0.06f, 1.37f, 0.34f, 1.93f, 0.84f) + curveToRelative(0.04f, -0.27f, 0.07f, -0.56f, 0.07f, -0.85f) + close() + moveTo(17.77f, 10.64f) + curveToRelative(-0.1f, 0.07f, -0.2f, 0.15f, -0.29f, 0.24f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.36f, 0.11f) + lineTo(7.0f, 10.99f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -1.98f) + lineTo(7.0f, 9.0f) + horizontalLineToRelative(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.77f, 1.64f) + close() + moveTo(18.1f, 11.67f) + lineTo(12.2f, 17.57f) + curveToRelative(-0.35f, 0.34f, -0.6f, 0.78f, -0.71f, 1.25f) + lineToRelative(-0.46f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _linkEdit!! + } + +private var _linkEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LinkSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LinkSquare.kt new file mode 100644 index 00000000..d84de871 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LinkSquare.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.LinkSquare: ImageVector + get() { + if (_linkSquare != null) { + return _linkSquare!! + } + _linkSquare = fluentIcon(name = "Filled.LinkSquare") { + fluentPath { + moveTo(6.5f, 3.0f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 3.0f, 6.5f) + verticalLineToRelative(6.0f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 6.5f, 16.0f) + lineTo(7.0f, 16.0f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(-0.5f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 5.0f, 12.5f) + verticalLineToRelative(-6.0f) + curveTo(5.0f, 5.67f, 5.67f, 5.0f, 6.5f, 5.0f) + horizontalLineToRelative(6.0f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + lineTo(11.0f, 14.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(1.5f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 3.5f, -3.5f) + verticalLineToRelative(-6.0f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 12.5f, 3.0f) + horizontalLineToRelative(-6.0f) + close() + moveTo(10.0f, 11.5f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + lineTo(13.0f, 10.0f) + lineTo(13.0f, 8.0f) + horizontalLineToRelative(-1.5f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 8.0f, 11.5f) + verticalLineToRelative(6.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 3.5f, 3.5f) + horizontalLineToRelative(6.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 3.5f, -3.5f) + verticalLineToRelative(-6.0f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 17.5f, 8.0f) + lineTo(17.0f, 8.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(0.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-6.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + verticalLineToRelative(-6.0f) + close() + } + } + return _linkSquare!! + } + +private var _linkSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/List.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/List.kt new file mode 100644 index 00000000..5a48c5fb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/List.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.List: ImageVector + get() { + if (_list != null) { + return _list!! + } + _list = fluentIcon(name = "Filled.List") { + fluentPath { + moveTo(3.0f, 17.0f) + horizontalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(3.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(15.0f, 17.0f) + lineTo(3.0f, 17.0f) + close() + moveTo(3.0f, 11.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(3.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(21.0f, 11.0f) + lineTo(3.0f, 11.0f) + close() + moveTo(3.0f, 5.0f) + horizontalLineToRelative(15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(3.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(18.0f, 5.0f) + lineTo(3.0f, 5.0f) + close() + } + } + return _list!! + } + +private var _list: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Live.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Live.kt new file mode 100644 index 00000000..0a987189 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Live.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Live: ImageVector + get() { + if (_live != null) { + return _live!! + } + _live = fluentIcon(name = "Filled.Live") { + fluentPath { + moveTo(6.34f, 4.94f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.41f) + arcToRelative(8.0f, 8.0f, 0.0f, false, false, 0.0f, 11.32f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.41f, 1.41f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -14.14f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, 0.0f) + close() + moveTo(19.07f, 4.94f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, 14.14f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.41f, -1.41f) + arcToRelative(8.0f, 8.0f, 0.0f, false, false, 0.0f, -11.32f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, -1.41f) + close() + moveTo(9.31f, 7.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.42f) + arcToRelative(3.92f, 3.92f, 0.0f, false, false, 0.0f, 5.54f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.41f, 1.41f) + arcToRelative(5.92f, 5.92f, 0.0f, false, true, 0.0f, -8.37f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, 0.0f) + close() + moveTo(16.27f, 7.8f) + arcToRelative(5.92f, 5.92f, 0.0f, false, true, 0.0f, 8.37f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, -1.41f) + arcToRelative(3.92f, 3.92f, 0.0f, false, false, 0.0f, -5.54f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, -1.42f) + close() + moveTo(12.08f, 10.57f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + } + } + return _live!! + } + +private var _live: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LiveOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LiveOff.kt new file mode 100644 index 00000000..500db162 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LiveOff.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.LiveOff: ImageVector + get() { + if (_liveOff != null) { + return _liveOff!! + } + _liveOff = fluentIcon(name = "Filled.LiveOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(2.2f, 2.2f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.5f, 13.6f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, -1.41f) + arcToRelative(8.0f, 8.0f, 0.0f, false, true, -0.5f, -10.77f) + lineToRelative(1.52f, 1.52f) + arcToRelative(5.92f, 5.92f, 0.0f, false, false, 0.54f, 7.76f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.41f, -1.41f) + arcToRelative(3.92f, 3.92f, 0.0f, false, true, -0.51f, -4.91f) + lineToRelative(1.83f, 1.83f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.84f, 1.84f) + lineToRelative(8.25f, 8.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(19.03f, 15.85f) + lineTo(20.49f, 17.31f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, -1.42f, -12.37f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.41f, 1.41f) + arcToRelative(8.0f, 8.0f, 0.0f, false, true, 1.37f, 9.5f) + close() + moveTo(15.93f, 12.75f) + lineTo(17.53f, 14.34f) + arcToRelative(5.92f, 5.92f, 0.0f, false, false, -1.26f, -6.53f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.42f, 1.42f) + arcToRelative(3.92f, 3.92f, 0.0f, false, true, 1.08f, 3.52f) + close() + } + } + return _liveOff!! + } + +private var _liveOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LocalLanguage.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LocalLanguage.kt new file mode 100644 index 00000000..e44ea372 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LocalLanguage.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.LocalLanguage: ImageVector + get() { + if (_localLanguage != null) { + return _localLanguage!! + } + _localLanguage = fluentIcon(name = "Filled.LocalLanguage") { + fluentPath { + moveToRelative(9.56f, 7.5f) + lineToRelative(0.06f, 0.12f) + lineToRelative(5.3f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.8f, 0.87f) + lineToRelative(-0.05f, -0.1f) + lineToRelative(-1.38f, -3.4f) + horizontalLineTo(5.41f) + lineToRelative(-1.5f, 3.42f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.2f, 0.55f) + lineToRelative(-0.11f, -0.04f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.56f, -1.2f) + lineToRelative(0.04f, -0.12f) + lineToRelative(5.7f, -13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.78f, -0.1f) + close() + moveTo(19.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + verticalLineTo(7.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + verticalLineTo(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + horizontalLineTo(20.0f) + verticalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + horizontalLineTo(19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + verticalLineTo(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(8.66f, 10.57f) + lineTo(6.28f, 16.0f) + horizontalLineToRelative(4.6f) + lineToRelative(-2.22f, -5.43f) + close() + moveTo(11.0f, 2.0f) + horizontalLineToRelative(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + verticalLineTo(5.97f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -1.85f) + verticalLineTo(4.0f) + horizontalLineToRelative(-4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + horizontalLineTo(16.0f) + horizontalLineToRelative(-5.0f) + close() + } + } + return _localLanguage!! + } + +private var _localLanguage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Location.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Location.kt new file mode 100644 index 00000000..aed51bc8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Location.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Location: ImageVector + get() { + if (_location != null) { + return _location!! + } + _location = fluentIcon(name = "Filled.Location") { + fluentPath { + moveToRelative(18.16f, 16.88f) + lineToRelative(-1.19f, 1.18f) + lineToRelative(-3.4f, 3.3f) + curveToRelative(-0.88f, 0.85f, -2.26f, 0.85f, -3.13f, 0.0f) + lineToRelative(-3.5f, -3.39f) + lineToRelative(-1.1f, -1.09f) + arcToRelative(8.7f, 8.7f, 0.0f, true, true, 12.32f, 0.0f) + close() + moveTo(14.5f, 11.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 5.0f, 0.0f) + close() + } + } + return _location!! + } + +private var _location: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LocationAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LocationAdd.kt new file mode 100644 index 00000000..8daa39a6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LocationAdd.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.LocationAdd: ImageVector + get() { + if (_locationAdd != null) { + return _locationAdd!! + } + _locationAdd = fluentIcon(name = "Filled.LocationAdd") { + fluentPath { + moveToRelative(16.97f, 18.06f) + lineToRelative(1.19f, -1.18f) + arcToRelative(8.7f, 8.7f, 0.0f, true, false, -12.32f, 0.0f) + lineToRelative(1.1f, 1.1f) + lineToRelative(3.5f, 3.39f) + curveToRelative(0.87f, 0.84f, 2.25f, 0.84f, 3.12f, 0.0f) + lineToRelative(3.41f, -3.31f) + close() + moveTo(12.0f, 7.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineTo(10.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + verticalLineToRelative(2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineTo(11.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.5f) + verticalLineTo(7.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _locationAdd!! + } + +private var _locationAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LocationArrow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LocationArrow.kt new file mode 100644 index 00000000..ab5b8725 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LocationArrow.kt @@ -0,0 +1,32 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.LocationArrow: ImageVector + get() { + if (_locationArrow != null) { + return _locationArrow!! + } + _locationArrow = fluentIcon(name = "Filled.LocationArrow") { + fluentPath { + moveTo(21.9f, 4.04f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -1.94f, -1.94f) + lineToRelative(-17.0f, 6.54f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.16f, 2.85f) + lineToRelative(7.0f, 1.85f) + curveToRelative(0.27f, 0.07f, 0.47f, 0.27f, 0.54f, 0.53f) + lineToRelative(1.85f, 7.01f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 2.85f, 0.16f) + lineToRelative(6.54f, -17.0f) + close() + } + } + return _locationArrow!! + } + +private var _locationArrow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LocationDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LocationDismiss.kt new file mode 100644 index 00000000..c127ba89 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LocationDismiss.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.LocationDismiss: ImageVector + get() { + if (_locationDismiss != null) { + return _locationDismiss!! + } + _locationDismiss = fluentIcon(name = "Filled.LocationDismiss") { + fluentPath { + moveTo(5.84f, 4.56f) + arcToRelative(8.7f, 8.7f, 0.0f, false, true, 12.52f, 12.1f) + lineToRelative(-0.2f, 0.21f) + curveToRelative(-0.92f, 0.92f, -2.45f, 2.41f, -4.6f, 4.49f) + curveToRelative(-0.87f, 0.84f, -2.25f, 0.84f, -3.12f, 0.0f) + lineTo(6.59f, 17.6f) + arcToRelative(150.0f, 150.0f, 0.0f, false, true, -0.75f, -0.74f) + arcToRelative(8.7f, 8.7f, 0.0f, false, true, 0.0f, -12.31f) + close() + moveTo(15.03f, 7.69f) + lineTo(14.95f, 7.61f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.89f, 0.0f) + lineToRelative(-0.1f, 0.08f) + lineTo(12.0f, 9.66f) + lineToRelative(-1.97f, -1.97f) + lineToRelative(-0.08f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.89f, 0.0f) + lineToRelative(-0.1f, 0.08f) + lineToRelative(-0.06f, 0.08f) + curveToRelative(-0.2f, 0.26f, -0.2f, 0.62f, -0.01f, 0.88f) + lineToRelative(0.08f, 0.1f) + lineToRelative(1.97f, 1.97f) + lineToRelative(-1.97f, 1.97f) + lineToRelative(-0.07f, 0.08f) + curveToRelative(-0.2f, 0.26f, -0.2f, 0.62f, -0.01f, 0.88f) + lineToRelative(0.08f, 0.1f) + lineToRelative(0.08f, 0.07f) + curveToRelative(0.26f, 0.2f, 0.62f, 0.2f, 0.89f, 0.0f) + lineToRelative(0.09f, -0.07f) + lineTo(12.0f, 11.78f) + lineToRelative(1.97f, 1.97f) + lineToRelative(0.08f, 0.07f) + curveToRelative(0.26f, 0.2f, 0.62f, 0.2f, 0.89f, 0.0f) + lineToRelative(0.09f, -0.07f) + lineToRelative(0.07f, -0.09f) + curveToRelative(0.2f, -0.26f, 0.2f, -0.62f, 0.01f, -0.88f) + lineToRelative(-0.08f, -0.1f) + lineToRelative(-1.97f, -1.96f) + lineToRelative(1.97f, -1.97f) + lineToRelative(0.07f, -0.09f) + curveToRelative(0.2f, -0.26f, 0.2f, -0.62f, 0.01f, -0.88f) + lineToRelative(-0.08f, -0.1f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(0.08f, 0.08f) + close() + } + } + return _locationDismiss!! + } + +private var _locationDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LocationLive.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LocationLive.kt new file mode 100644 index 00000000..f75e1d20 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LocationLive.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.LocationLive: ImageVector + get() { + if (_locationLive != null) { + return _locationLive!! + } + _locationLive = fluentIcon(name = "Filled.LocationLive") { + fluentPath { + moveTo(9.0f, 2.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.8f, -0.7f) + arcTo(12.0f, 12.0f, 0.0f, false, true, 20.97f, 13.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + arcTo(10.5f, 10.5f, 0.0f, false, false, 9.7f, 3.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, -0.8f) + close() + moveTo(7.6f, 21.39f) + lineToRelative(0.39f, 0.38f) + curveToRelative(0.29f, 0.3f, 0.76f, 0.3f, 1.05f, 0.0f) + lineToRelative(1.35f, -1.33f) + lineToRelative(2.01f, -2.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -7.77f, 0.0f) + arcToRelative(1162.27f, 1162.27f, 0.0f, false, false, 2.97f, 2.95f) + close() + moveTo(8.51f, 15.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, 2.5f) + close() + moveTo(9.82f, 5.5f) + arcTo(0.75f, 0.75f, 0.0f, true, false, 9.68f, 7.0f) + arcTo(6.99f, 6.99f, 0.0f, false, true, 16.0f, 13.3f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, -0.13f) + arcTo(8.49f, 8.49f, 0.0f, false, false, 9.82f, 5.5f) + close() + } + } + return _locationLive!! + } + +private var _locationLive: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LocationOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LocationOff.kt new file mode 100644 index 00000000..be34789a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LocationOff.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.LocationOff: ImageVector + get() { + if (_locationOff != null) { + return _locationOff!! + } + _locationOff = fluentIcon(name = "Filled.LocationOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(2.57f, 2.57f) + arcToRelative(8.71f, 8.71f, 0.0f, false, false, 1.05f, 11.03f) + lineToRelative(1.1f, 1.1f) + lineToRelative(3.5f, 3.39f) + curveToRelative(0.87f, 0.84f, 2.25f, 0.84f, 3.12f, 0.0f) + arcToRelative(656.5f, 656.5f, 0.0f, false, false, 3.41f, -3.31f) + lineToRelative(0.01f, -0.02f) + lineToRelative(3.74f, 3.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(12.41f, 13.47f) + arcToRelative(2.51f, 2.51f, 0.0f, false, true, -2.88f, -2.88f) + lineToRelative(2.88f, 2.88f) + close() + moveTo(14.5f, 11.0f) + curveToRelative(0.0f, 0.1f, 0.0f, 0.2f, -0.02f, 0.3f) + lineToRelative(4.56f, 4.56f) + arcTo(8.7f, 8.7f, 0.0f, false, false, 6.87f, 3.69f) + lineToRelative(4.83f, 4.83f) + lineToRelative(0.3f, -0.02f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) + close() + } + } + return _locationOff!! + } + +private var _locationOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LockClosed.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LockClosed.kt new file mode 100644 index 00000000..ca6887c0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LockClosed.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.LockClosed: ImageVector + get() { + if (_lockClosed != null) { + return _lockClosed!! + } + _lockClosed = fluentIcon(name = "Filled.LockClosed") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, 4.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(2.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(11.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-13.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 4.0f, 20.5f) + verticalLineToRelative(-11.0f) + curveTo(4.0f, 8.67f, 4.67f, 8.0f, 5.5f, 8.0f) + lineTo(8.0f, 8.0f) + lineTo(8.0f, 6.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, -4.0f) + close() + moveTo(12.0f, 13.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(12.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(4.0f) + lineTo(14.0f, 6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + close() + } + } + return _lockClosed!! + } + +private var _lockClosed: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LockMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LockMultiple.kt new file mode 100644 index 00000000..b48c3b94 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LockMultiple.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.LockMultiple: ImageVector + get() { + if (_lockMultiple != null) { + return _lockMultiple!! + } + _lockMultiple = fluentIcon(name = "Filled.LockMultiple") { + fluentPath { + moveTo(7.25f, 5.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 7.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-9.0f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-7.5f) + curveTo(4.0f, 7.51f, 5.0f, 6.5f, 6.25f, 6.5f) + horizontalLineToRelative(1.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(12.75f, 5.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, -4.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(10.75f, 13.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + moveTo(7.63f, 19.5f) + curveToRelative(0.3f, 0.87f, 1.14f, 1.5f, 2.12f, 1.5f) + horizontalLineToRelative(6.0f) + curveTo(18.1f, 21.0f, 20.0f, 19.1f, 20.0f, 16.75f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.98f, -0.63f, -1.81f, -1.5f, -2.12f) + verticalLineToRelative(6.62f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) + lineTo(7.63f, 19.5f) + close() + } + } + return _lockMultiple!! + } + +private var _lockMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LockOpen.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LockOpen.kt new file mode 100644 index 00000000..67b857b6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LockOpen.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.LockOpen: ImageVector + get() { + if (_lockOpen != null) { + return _lockOpen!! + } + _lockOpen = fluentIcon(name = "Filled.LockOpen") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 3.77f, 2.67f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.84f, 0.77f) + lineToRelative(-0.04f, -0.1f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -3.88f, 0.51f) + lineTo(10.01f, 8.0f) + horizontalLineToRelative(7.74f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.19f, -0.93f, 2.16f, -2.1f, 2.24f) + lineTo(6.25f, 21.99f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.09f) + lineTo(4.0f, 19.75f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(6.25f, 8.0f) + lineTo(8.0f, 8.0f) + lineTo(8.0f, 6.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, -4.0f) + close() + moveTo(12.0f, 13.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + } + } + return _lockOpen!! + } + +private var _lockOpen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LockShield.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LockShield.kt new file mode 100644 index 00000000..4a31a57c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/LockShield.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.LockShield: ImageVector + get() { + if (_lockShield != null) { + return _lockShield!! + } + _lockShield = fluentIcon(name = "Filled.LockShield") { + fluentPath { + moveTo(10.0f, 2.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, 4.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(2.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + lineTo(18.0f, 11.0f) + curveToRelative(-0.32f, 0.0f, -0.64f, 0.11f, -0.9f, 0.33f) + lineToRelative(-0.1f, 0.1f) + arcToRelative(3.51f, 3.51f, 0.0f, false, true, -2.6f, 1.24f) + curveToRelative(-0.78f, 0.0f, -1.4f, 0.64f, -1.4f, 1.41f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 2.38f, 0.92f, 4.22f, 2.68f, 5.42f) + lineTo(3.5f, 22.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 2.0f, 20.5f) + verticalLineToRelative(-11.0f) + curveTo(2.0f, 8.67f, 2.67f, 8.0f, 3.5f, 8.0f) + lineTo(6.0f, 8.0f) + lineTo(6.0f, 6.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, -4.0f) + close() + moveTo(18.28f, 12.12f) + curveToRelative(1.0f, 1.04f, 2.1f, 1.55f, 3.32f, 1.55f) + curveToRelative(0.2f, 0.0f, 0.35f, 0.14f, 0.4f, 0.33f) + verticalLineToRelative(2.58f) + curveToRelative(0.0f, 2.69f, -1.31f, 4.51f, -3.87f, 5.4f) + arcToRelative(0.39f, 0.39f, 0.0f, false, true, -0.26f, 0.0f) + curveToRelative(-2.47f, -0.86f, -3.78f, -2.6f, -3.87f, -5.13f) + verticalLineToRelative(-2.77f) + arcToRelative(0.4f, 0.4f, 0.0f, false, true, 0.4f, -0.41f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 3.32f, -1.55f) + arcToRelative(0.39f, 0.39f, 0.0f, false, true, 0.56f, 0.0f) + close() + moveTo(10.0f, 13.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(10.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(4.0f) + lineTo(12.0f, 6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + close() + } + } + return _lockShield!! + } + +private var _lockShield: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Lottery.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Lottery.kt new file mode 100644 index 00000000..0339bb59 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Lottery.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Lottery: ImageVector + get() { + if (_lottery != null) { + return _lottery!! + } + _lottery = fluentIcon(name = "Filled.Lottery") { + fluentPath { + moveTo(15.56f, 4.17f) + arcTo(6.0f, 6.0f, 0.0f, false, false, 12.0f, 6.68f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, -3.56f, -2.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 7.12f, 0.0f) + close() + moveTo(4.06f, 14.04f) + arcToRelative(8.0f, 8.0f, 0.0f, false, true, 6.98f, -6.98f) + arcToRelative(5.0f, 5.0f, 0.0f, true, false, -6.98f, 6.98f) + close() + moveTo(19.94f, 14.04f) + arcToRelative(5.0f, 5.0f, 0.0f, true, false, -6.98f, -6.98f) + arcToRelative(8.0f, 8.0f, 0.0f, false, true, 6.98f, 6.98f) + close() + moveTo(12.0f, 22.0f) + arcToRelative(7.0f, 7.0f, 0.0f, true, false, 0.0f, -14.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, false, 0.0f, 14.0f) + close() + moveTo(9.5f, 13.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.5f, 1.31f) + lineToRelative(-0.02f, 0.02f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, -0.26f, 0.26f) + arcToRelative(9.55f, 9.55f, 0.0f, false, false, -2.25f, 3.86f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.44f, -0.4f) + curveToRelative(0.4f, -1.5f, 1.15f, -2.7f, 1.78f, -3.54f) + lineToRelative(0.01f, -0.01f) + horizontalLineToRelative(-2.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _lottery!! + } + +private var _lottery: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Luggage.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Luggage.kt new file mode 100644 index 00000000..6c19fb90 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Luggage.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Luggage: ImageVector + get() { + if (_luggage != null) { + return _luggage!! + } + _luggage = fluentIcon(name = "Filled.Luggage") { + fluentPath { + moveTo(8.75f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(9.0f, 3.5f) + lineTo(9.0f, 5.0f) + horizontalLineToRelative(-0.75f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 5.0f, 8.25f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 1.35f, 0.83f, 2.51f, 2.0f, 3.0f) + verticalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(7.0f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.0f) + curveToRelative(1.17f, -0.49f, 2.0f, -1.65f, 2.0f, -3.0f) + verticalLineToRelative(-9.0f) + curveTo(19.0f, 6.45f, 17.54f, 5.0f, 15.75f, 5.0f) + lineTo(15.0f, 5.0f) + lineTo(15.0f, 3.5f) + horizontalLineToRelative(0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.5f) + close() + moveTo(13.5f, 3.5f) + lineTo(13.5f, 5.0f) + horizontalLineToRelative(-3.0f) + lineTo(10.5f, 3.5f) + horizontalLineToRelative(3.0f) + close() + moveTo(8.0f, 9.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 9.75f) + close() + } + } + return _luggage!! + } + +private var _luggage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailAdd.kt new file mode 100644 index 00000000..24df3fe3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailAdd.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailAdd: ImageVector + get() { + if (_mailAdd != null) { + return _mailAdd!! + } + _mailAdd = fluentIcon(name = "Filled.MailAdd") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 7.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 7.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 6.0f) + lineTo(17.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + lineTo(18.0f, 6.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 7.0f) + close() + moveTo(17.5f, 13.0f) + curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.81f) + verticalLineToRelative(5.56f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(5.25f, 20.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 16.75f) + lineTo(2.0f, 8.61f) + lineToRelative(9.65f, 5.05f) + curveToRelative(0.22f, 0.12f, 0.48f, 0.12f, 0.7f, 0.0f) + lineToRelative(2.41f, -1.26f) + curveToRelative(0.84f, 0.38f, 1.76f, 0.6f, 2.74f, 0.6f) + close() + moveTo(5.25f, 4.0f) + horizontalLineToRelative(6.25f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, 1.8f, 7.47f) + lineToRelative(-1.3f, 0.68f) + lineToRelative(-9.98f, -5.23f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.04f, -2.91f) + lineTo(5.25f, 4.0f) + close() + } + } + return _mailAdd!! + } + +private var _mailAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailAlert.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailAlert.kt new file mode 100644 index 00000000..1a99895f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailAlert.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailAlert: ImageVector + get() { + if (_mailAlert != null) { + return _mailAlert!! + } + _mailAlert = fluentIcon(name = "Filled.MailAlert") { + fluentPath { + moveTo(17.5f, 1.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, 4.0f) + verticalLineToRelative(3.0f) + lineToRelative(-0.95f, 0.8f) + curveToRelative(-0.3f, 0.26f, -0.46f, 0.39f, -0.5f, 0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.24f, 0.65f) + curveToRelative(0.1f, 0.05f, 0.3f, 0.05f, 0.7f, 0.05f) + horizontalLineToRelative(9.02f) + curveToRelative(0.4f, 0.0f, 0.6f, 0.0f, 0.7f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.25f, -0.66f) + curveToRelative(-0.05f, -0.1f, -0.2f, -0.23f, -0.5f, -0.49f) + lineTo(21.5f, 8.0f) + lineTo(21.5f, 5.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, -4.0f) + close() + moveTo(19.0f, 11.0f) + curveToRelative(-0.22f, 0.58f, -0.8f, 1.0f, -1.5f, 1.0f) + curveToRelative(-0.69f, 0.0f, -1.28f, -0.42f, -1.5f, -1.0f) + horizontalLineToRelative(3.0f) + close() + moveTo(22.0f, 16.75f) + lineTo(22.0f, 11.0f) + horizontalLineToRelative(-1.93f) + lineToRelative(-0.13f, 0.35f) + arcTo(2.59f, 2.59f, 0.0f, false, true, 17.5f, 13.0f) + curveToRelative(-0.82f, 0.0f, -1.56f, -0.37f, -2.05f, -0.96f) + lineToRelative(-3.1f, 1.62f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, 0.0f) + lineTo(2.0f, 8.61f) + verticalLineToRelative(8.32f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 5.26f, 20.0f) + horizontalLineToRelative(13.68f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 22.0f, 16.74f) + close() + moveTo(12.0f, 12.15f) + lineTo(14.2f, 11.0f) + horizontalLineToRelative(-1.73f) + curveToRelative(-0.12f, -0.01f, -0.37f, -0.03f, -0.61f, -0.14f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -0.73f, -1.99f) + curveToRelative(0.12f, -0.24f, 0.3f, -0.41f, 0.38f, -0.5f) + lineToRelative(0.38f, -0.32f) + lineToRelative(0.6f, -0.51f) + lineTo(12.49f, 5.0f) + curveToRelative(0.0f, -0.34f, 0.04f, -0.68f, 0.1f, -1.0f) + lineTo(5.07f, 4.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.04f, 2.92f) + lineTo(12.0f, 12.15f) + close() + } + } + return _mailAlert!! + } + +private var _mailAlert: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailAllRead.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailAllRead.kt new file mode 100644 index 00000000..7935ba8e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailAllRead.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailAllRead: ImageVector + get() { + if (_mailAllRead != null) { + return _mailAllRead!! + } + _mailAllRead = fluentIcon(name = "Filled.MailAllRead") { + fluentPath { + moveTo(11.36f, 1.84f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.72f, 0.0f) + lineTo(2.83f, 6.1f) + curveToRelative(-0.17f, 0.1f, -0.31f, 0.21f, -0.44f, 0.35f) + lineToRelative(8.61f, 4.7f) + lineToRelative(8.6f, -4.7f) + arcToRelative(1.6f, 1.6f, 0.0f, false, false, -0.43f, -0.35f) + lineToRelative(-7.81f, -4.26f) + close() + moveTo(2.0f, 15.75f) + verticalLineToRelative(-7.8f) + lineToRelative(8.64f, 4.7f) + curveToRelative(0.22f, 0.13f, 0.5f, 0.13f, 0.72f, 0.0f) + lineTo(20.0f, 7.96f) + verticalLineToRelative(7.8f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(5.25f, 19.01f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 15.75f) + close() + moveTo(21.0f, 7.51f) + curveToRelative(0.9f, 0.58f, 1.5f, 1.59f, 1.5f, 2.74f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) + horizontalLineToRelative(-9.0f) + curveToRelative(-1.15f, 0.0f, -2.16f, -0.6f, -2.74f, -1.5f) + horizontalLineToRelative(11.74f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 21.0f, 16.25f) + lineTo(21.0f, 7.51f) + close() + } + } + return _mailAllRead!! + } + +private var _mailAllRead: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailArrowDoubleBack.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailArrowDoubleBack.kt new file mode 100644 index 00000000..02991fb3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailArrowDoubleBack.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailArrowDoubleBack: ImageVector + get() { + if (_mailArrowDoubleBack != null) { + return _mailArrowDoubleBack!! + } + _mailArrowDoubleBack = fluentIcon(name = "Filled.MailArrowDoubleBack") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) + close() + moveTo(15.85f, 4.85f) + lineTo(14.21f, 6.5f) + lineToRelative(1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.7f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -0.7f) + lineToRelative(2.0f, -2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, 0.7f) + close() + moveTo(18.85f, 4.15f) + curveToRelative(0.2f, 0.2f, 0.2f, 0.5f, 0.0f, 0.7f) + lineTo(17.71f, 6.0f) + lineTo(20.0f, 6.0f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + lineTo(21.5f, 8.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-0.5f) + arcTo(0.5f, 0.5f, 0.0f, false, false, 20.0f, 7.0f) + horizontalLineToRelative(-2.3f) + lineToRelative(1.15f, 1.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.7f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -0.7f) + lineToRelative(2.0f, -2.0f) + curveToRelative(0.2f, -0.2f, 0.5f, -0.2f, 0.7f, 0.0f) + close() + moveTo(17.5f, 13.0f) + curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.81f) + verticalLineToRelative(5.56f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(5.25f, 20.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 16.75f) + lineTo(2.0f, 8.61f) + lineToRelative(9.65f, 5.05f) + curveToRelative(0.22f, 0.12f, 0.48f, 0.12f, 0.7f, 0.0f) + lineToRelative(2.41f, -1.26f) + curveToRelative(0.84f, 0.38f, 1.76f, 0.6f, 2.74f, 0.6f) + close() + moveTo(5.25f, 4.0f) + horizontalLineToRelative(6.25f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, 1.8f, 7.47f) + lineToRelative(-1.3f, 0.68f) + lineToRelative(-9.98f, -5.23f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.04f, -2.91f) + lineTo(5.25f, 4.0f) + close() + } + } + return _mailArrowDoubleBack!! + } + +private var _mailArrowDoubleBack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailArrowUp.kt new file mode 100644 index 00000000..80237e51 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailArrowUp.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailArrowUp: ImageVector + get() { + if (_mailArrowUp != null) { + return _mailArrowUp!! + } + _mailArrowUp = fluentIcon(name = "Filled.MailArrowUp") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(17.0f, 4.7f) + verticalLineToRelative(4.8f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + lineTo(18.0f, 4.7f) + lineToRelative(1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineTo(17.0f, 4.71f) + close() + moveTo(17.5f, 13.0f) + curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.81f) + verticalLineToRelative(5.56f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(5.25f, 20.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 16.75f) + lineTo(2.0f, 8.61f) + lineToRelative(9.65f, 5.05f) + curveToRelative(0.22f, 0.12f, 0.48f, 0.12f, 0.7f, 0.0f) + lineToRelative(2.41f, -1.26f) + curveToRelative(0.84f, 0.38f, 1.76f, 0.6f, 2.74f, 0.6f) + close() + moveTo(5.25f, 4.0f) + horizontalLineToRelative(6.25f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, 1.8f, 7.47f) + lineToRelative(-1.3f, 0.68f) + lineToRelative(-9.98f, -5.23f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.04f, -2.91f) + lineTo(5.25f, 4.0f) + close() + } + } + return _mailArrowUp!! + } + +private var _mailArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailAttach.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailAttach.kt new file mode 100644 index 00000000..55b3ddf6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailAttach.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailAttach: ImageVector + get() { + if (_mailAttach != null) { + return _mailAttach!! + } + _mailAttach = fluentIcon(name = "Filled.MailAttach") { + fluentPath { + moveTo(17.95f, 4.1f) + arcToRelative(2.08f, 2.08f, 0.0f, false, true, 2.94f, 2.94f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.08f) + lineToRelative(-4.18f, 4.18f) + arcToRelative(0.67f, 0.67f, 0.0f, false, true, -0.95f, -0.95f) + lineToRelative(3.83f, -3.82f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-3.83f, 3.82f) + arcToRelative(2.17f, 2.17f, 0.0f, true, false, 3.07f, 3.07f) + lineToRelative(4.32f, -4.32f) + arcToRelative(3.58f, 3.58f, 0.0f, false, false, -5.13f, -5.0f) + lineToRelative(-3.67f, 3.68f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(3.67f, -3.68f) + close() + moveTo(12.51f, 8.48f) + curveToRelative(0.3f, 0.3f, 0.68f, 0.47f, 1.07f, 0.5f) + curveToRelative(-0.54f, 0.77f, -0.71f, 1.72f, -0.5f, 2.6f) + lineToRelative(-1.08f, 0.57f) + lineToRelative(-9.98f, -5.23f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 5.06f, 4.0f) + lineTo(14.52f, 4.0f) + lineTo(12.51f, 6.0f) + curveToRelative(-0.68f, 0.68f, -0.68f, 1.8f, 0.0f, 2.47f) + close() + moveTo(13.77f, 12.91f) + lineTo(13.92f, 13.07f) + arcToRelative(3.17f, 3.17f, 0.0f, false, false, 4.49f, 0.0f) + lineToRelative(3.58f, -3.59f) + verticalLineToRelative(7.26f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 18.93f, 20.0f) + lineTo(5.24f, 20.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.23f, -3.06f) + lineTo(2.0f, 16.74f) + lineTo(2.0f, 8.61f) + lineToRelative(9.65f, 5.05f) + curveToRelative(0.22f, 0.11f, 0.48f, 0.11f, 0.7f, 0.0f) + lineToRelative(1.42f, -0.75f) + close() + } + } + return _mailAttach!! + } + +private var _mailAttach: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailCheckmark.kt new file mode 100644 index 00000000..79843155 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailCheckmark.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailCheckmark: ImageVector + get() { + if (_mailCheckmark != null) { + return _mailCheckmark!! + } + _mailCheckmark = fluentIcon(name = "Filled.MailCheckmark") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.85f, 4.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineTo(16.5f, 7.79f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + moveTo(17.5f, 13.0f) + curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.81f) + verticalLineToRelative(5.56f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(5.25f, 20.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 16.75f) + lineTo(2.0f, 8.61f) + lineToRelative(9.65f, 5.05f) + curveToRelative(0.22f, 0.12f, 0.48f, 0.12f, 0.7f, 0.0f) + lineToRelative(2.41f, -1.26f) + curveToRelative(0.84f, 0.38f, 1.76f, 0.6f, 2.74f, 0.6f) + close() + moveTo(5.25f, 4.0f) + horizontalLineToRelative(6.25f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, 1.8f, 7.47f) + lineToRelative(-1.3f, 0.68f) + lineToRelative(-9.98f, -5.23f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.04f, -2.91f) + lineTo(5.25f, 4.0f) + close() + } + } + return _mailCheckmark!! + } + +private var _mailCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailClock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailClock.kt new file mode 100644 index 00000000..e5f0aa01 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailClock.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailClock: ImageVector + get() { + if (_mailClock != null) { + return _mailClock!! + } + _mailClock = fluentIcon(name = "Filled.MailClock") { + fluentPath { + moveTo(17.5f, 1.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(19.5f, 6.5f) + horizontalLineToRelative(-2.0f) + lineTo(17.5f, 4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + close() + moveTo(17.5f, 13.0f) + curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.81f) + verticalLineToRelative(5.56f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(5.25f, 20.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 16.75f) + lineTo(2.0f, 8.61f) + lineToRelative(9.65f, 5.05f) + curveToRelative(0.22f, 0.12f, 0.48f, 0.12f, 0.7f, 0.0f) + lineToRelative(2.41f, -1.26f) + curveToRelative(0.84f, 0.38f, 1.76f, 0.6f, 2.74f, 0.6f) + close() + moveTo(5.25f, 4.0f) + horizontalLineToRelative(6.25f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, 1.8f, 7.47f) + lineToRelative(-1.3f, 0.68f) + lineToRelative(-9.98f, -5.23f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.04f, -2.91f) + lineTo(5.25f, 4.0f) + close() + } + } + return _mailClock!! + } + +private var _mailClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailCopy.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailCopy.kt new file mode 100644 index 00000000..be839a30 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailCopy.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailCopy: ImageVector + get() { + if (_mailCopy != null) { + return _mailCopy!! + } + _mailCopy = fluentIcon(name = "Filled.MailCopy") { + fluentPath { + moveTo(3.0f, 7.51f) + curveToRelative(-0.9f, 0.58f, -1.5f, 1.59f, -1.5f, 2.74f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 2.9f, 2.35f, 5.25f, 5.25f, 5.25f) + horizontalLineToRelative(9.0f) + curveToRelative(1.15f, 0.0f, 2.16f, -0.6f, 2.74f, -1.5f) + lineTo(6.75f, 20.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 3.0f, 16.25f) + lineTo(3.0f, 7.51f) + close() + moveTo(4.0f, 8.11f) + verticalLineToRelative(7.64f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 3.07f, 3.24f) + lineToRelative(0.18f, 0.01f) + horizontalLineToRelative(11.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 3.24f, -3.07f) + lineToRelative(0.01f, -0.18f) + lineTo(22.0f, 8.11f) + lineToRelative(-8.65f, 4.55f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, 0.0f) + lineTo(4.0f, 8.11f) + close() + moveTo(18.75f, 4.0f) + lineTo(7.25f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 4.1f, 6.47f) + lineToRelative(8.9f, 4.68f) + lineToRelative(8.9f, -4.68f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 18.94f, 4.0f) + lineTo(18.75f, 4.0f) + close() + } + } + return _mailCopy!! + } + +private var _mailCopy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailDismiss.kt new file mode 100644 index 00000000..7c1804d3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailDismiss.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailDismiss: ImageVector + get() { + if (_mailDismiss != null) { + return _mailDismiss!! + } + _mailDismiss = fluentIcon(name = "Filled.MailDismiss") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 4.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineTo(18.21f, 6.5f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineTo(17.5f, 5.79f) + lineToRelative(-1.65f, -1.64f) + close() + moveTo(17.5f, 13.0f) + curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.81f) + verticalLineToRelative(5.56f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(5.25f, 20.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 16.75f) + lineTo(2.0f, 8.61f) + lineToRelative(9.65f, 5.05f) + curveToRelative(0.22f, 0.12f, 0.48f, 0.12f, 0.7f, 0.0f) + lineToRelative(2.41f, -1.26f) + curveToRelative(0.84f, 0.38f, 1.76f, 0.6f, 2.74f, 0.6f) + close() + moveTo(5.25f, 4.0f) + horizontalLineToRelative(6.25f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, 1.8f, 7.47f) + lineToRelative(-1.3f, 0.68f) + lineToRelative(-9.98f, -5.23f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.04f, -2.91f) + lineTo(5.25f, 4.0f) + close() + } + } + return _mailDismiss!! + } + +private var _mailDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailEdit.kt new file mode 100644 index 00000000..18611f6d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailEdit.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailEdit: ImageVector + get() { + if (_mailEdit != null) { + return _mailEdit!! + } + _mailEdit = fluentIcon(name = "Filled.MailEdit") { + fluentPath { + moveTo(22.0f, 11.26f) + lineTo(22.0f, 7.61f) + lineToRelative(-9.65f, 5.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, 0.0f) + lineTo(2.0f, 7.61f) + verticalLineToRelative(8.32f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 5.26f, 19.0f) + horizontalLineToRelative(6.47f) + curveToRelative(0.18f, -0.42f, 0.44f, -0.8f, 0.77f, -1.14f) + lineToRelative(5.9f, -5.9f) + arcToRelative(3.29f, 3.29f, 0.0f, false, true, 3.61f, -0.7f) + close() + moveTo(18.75f, 3.0f) + lineTo(5.06f, 3.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.04f, 2.92f) + lineTo(12.0f, 11.15f) + lineToRelative(9.98f, -5.23f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 18.75f, 3.0f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _mailEdit!! + } + +private var _mailEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailError.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailError.kt new file mode 100644 index 00000000..cb10ba6f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailError.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailError: ImageVector + get() { + if (_mailError != null) { + return _mailError!! + } + _mailError = fluentIcon(name = "Filled.MailError") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(17.5f, 3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(17.5f, 10.13f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.24f) + close() + moveTo(17.5f, 13.0f) + curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.81f) + verticalLineToRelative(5.56f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(5.25f, 20.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 16.75f) + lineTo(2.0f, 8.61f) + lineToRelative(9.65f, 5.05f) + curveToRelative(0.22f, 0.12f, 0.48f, 0.12f, 0.7f, 0.0f) + lineToRelative(2.41f, -1.26f) + curveToRelative(0.84f, 0.38f, 1.76f, 0.6f, 2.74f, 0.6f) + close() + moveTo(5.25f, 4.0f) + horizontalLineToRelative(6.25f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, 1.8f, 7.47f) + lineToRelative(-1.3f, 0.68f) + lineToRelative(-9.98f, -5.23f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.04f, -2.91f) + lineTo(5.25f, 4.0f) + close() + } + } + return _mailError!! + } + +private var _mailError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailInbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailInbox.kt new file mode 100644 index 00000000..73b54f9a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailInbox.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailInbox: ImageVector + get() { + if (_mailInbox != null) { + return _mailInbox!! + } + _mailInbox = fluentIcon(name = "Filled.MailInbox") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 13.0f) + lineTo(9.0f, 13.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.5f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.92f, -0.7f, -1.67f, -1.6f, -1.74f) + lineToRelative(-0.15f, -0.01f) + close() + } + } + return _mailInbox!! + } + +private var _mailInbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailInboxAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailInboxAdd.kt new file mode 100644 index 00000000..9d18d4bb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailInboxAdd.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailInboxAdd: ImageVector + get() { + if (_mailInboxAdd != null) { + return _mailInboxAdd!! + } + _mailInboxAdd = fluentIcon(name = "Filled.MailInboxAdd") { + fluentPath { + moveTo(22.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(17.0f, 7.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(16.0f, 7.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(16.0f, 6.0f) + lineTo(16.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + lineTo(17.0f, 6.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + lineTo(17.0f, 7.0f) + close() + moveTo(19.5f, 14.0f) + verticalLineToRelative(-1.73f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(7.56f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 22.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 18.75f) + lineTo(3.0f, 7.25f) + curveTo(3.0f, 5.45f, 4.46f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(4.25f) + curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) + lineTo(6.25f, 5.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 14.0f) + lineTo(9.0f, 14.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.5f) + close() + } + } + return _mailInboxAdd!! + } + +private var _mailInboxAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailInboxAll.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailInboxAll.kt new file mode 100644 index 00000000..e17c5b1f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailInboxAll.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailInboxAll: ImageVector + get() { + if (_mailInboxAll != null) { + return _mailInboxAll!! + } + _mailInboxAll = fluentIcon(name = "Filled.MailInboxAll") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 13.0f) + lineTo(9.0f, 13.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.15f) + verticalLineToRelative(-0.15f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.5f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.92f, -0.7f, -1.67f, -1.6f, -1.74f) + lineToRelative(-0.15f, -0.01f) + close() + moveTo(6.75f, 9.5f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(10.6f) + horizontalLineToRelative(-10.5f) + close() + moveTo(6.75f, 6.5f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(10.6f) + horizontalLineToRelative(-10.5f) + close() + } + } + return _mailInboxAll!! + } + +private var _mailInboxAll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailInboxArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailInboxArrowRight.kt new file mode 100644 index 00000000..ed1e1f13 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailInboxArrowRight.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailInboxArrowRight: ImageVector + get() { + if (_mailInboxArrowRight != null) { + return _mailInboxArrowRight!! + } + _mailInboxArrowRight = fluentIcon(name = "Filled.MailInboxArrowRight") { + fluentPath { + moveTo(10.5f, 4.0f) + curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) + lineTo(6.25f, 5.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 14.0f) + lineTo(9.0f, 14.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(-1.73f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(7.56f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 22.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 18.75f) + lineTo(3.0f, 7.25f) + curveTo(3.0f, 5.45f, 4.46f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(4.25f) + close() + moveTo(16.5f, 1.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(16.72f, 3.59f) + lineTo(16.65f, 3.65f) + lineTo(16.59f, 3.72f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) + lineToRelative(0.06f, 0.07f) + lineTo(18.29f, 6.0f) + horizontalLineToRelative(-5.38f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + lineToRelative(-0.01f, 0.09f) + verticalLineToRelative(0.09f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + lineTo(13.0f, 7.0f) + horizontalLineToRelative(5.3f) + lineToRelative(-1.65f, 1.65f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(0.06f, -0.07f) + lineToRelative(2.54f, -2.54f) + lineToRelative(0.04f, -0.05f) + lineToRelative(0.03f, -0.07f) + lineToRelative(0.02f, -0.06f) + lineToRelative(0.02f, -0.08f) + verticalLineToRelative(-0.1f) + lineToRelative(-0.02f, -0.08f) + lineToRelative(-0.03f, -0.08f) + lineToRelative(-0.04f, -0.07f) + lineToRelative(-0.04f, -0.06f) + lineToRelative(-2.52f, -2.51f) + lineToRelative(-0.07f, -0.06f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.56f, 0.0f) + close() + } + } + return _mailInboxArrowRight!! + } + +private var _mailInboxArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailInboxArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailInboxArrowUp.kt new file mode 100644 index 00000000..6ae9a6ec --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailInboxArrowUp.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailInboxArrowUp: ImageVector + get() { + if (_mailInboxArrowUp != null) { + return _mailInboxArrowUp!! + } + _mailInboxArrowUp = fluentIcon(name = "Filled.MailInboxArrowUp") { + fluentPath { + moveTo(10.5f, 4.0f) + curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) + lineTo(6.25f, 5.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 14.0f) + lineTo(9.0f, 14.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(-1.73f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(7.56f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 22.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 18.75f) + lineTo(3.0f, 7.25f) + curveTo(3.0f, 5.45f, 4.46f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(4.25f) + close() + moveTo(16.5f, 1.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(16.63f, 3.02f) + lineTo(16.54f, 3.0f) + horizontalLineToRelative(-0.11f) + lineToRelative(-0.06f, 0.02f) + lineToRelative(-0.08f, 0.03f) + lineToRelative(-0.07f, 0.04f) + lineToRelative(-0.06f, 0.04f) + lineToRelative(-2.51f, 2.52f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) + lineToRelative(0.06f, 0.07f) + lineToRelative(0.07f, 0.06f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) + lineToRelative(0.07f, -0.06f) + lineTo(16.0f, 4.71f) + verticalLineToRelative(5.38f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + lineToRelative(0.09f, 0.01f) + horizontalLineToRelative(0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + lineTo(17.0f, 10.0f) + lineTo(17.0f, 4.7f) + lineToRelative(1.65f, 1.65f) + lineToRelative(0.07f, 0.06f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-0.07f, -0.06f) + lineToRelative(-2.54f, -2.55f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.07f, -0.03f) + lineToRelative(-0.06f, -0.02f) + close() + } + } + return _mailInboxArrowUp!! + } + +private var _mailInboxArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailInboxCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailInboxCheckmark.kt new file mode 100644 index 00000000..1c1f97be --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailInboxCheckmark.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailInboxCheckmark: ImageVector + get() { + if (_mailInboxCheckmark != null) { + return _mailInboxCheckmark!! + } + _mailInboxCheckmark = fluentIcon(name = "Filled.MailInboxCheckmark") { + fluentPath { + moveTo(22.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(19.85f, 4.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineTo(15.5f, 7.79f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + moveTo(19.5f, 12.27f) + lineTo(19.5f, 14.0f) + lineTo(15.0f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) + verticalLineToRelative(-0.1f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 9.0f, 14.0f) + lineTo(4.5f, 14.0f) + lineTo(4.5f, 7.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(3.83f) + curveToRelative(0.08f, -0.52f, 0.22f, -1.03f, 0.42f, -1.5f) + lineTo(6.25f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 7.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 20.55f, 4.46f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-7.56f) + curveToRelative(-0.44f, 0.43f, -0.95f, 0.8f, -1.5f, 1.08f) + close() + } + } + return _mailInboxCheckmark!! + } + +private var _mailInboxCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailInboxDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailInboxDismiss.kt new file mode 100644 index 00000000..673e41de --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailInboxDismiss.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailInboxDismiss: ImageVector + get() { + if (_mailInboxDismiss != null) { + return _mailInboxDismiss!! + } + _mailInboxDismiss = fluentIcon(name = "Filled.MailInboxDismiss") { + fluentPath { + moveTo(22.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.85f, 4.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineTo(17.21f, 6.5f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineTo(16.5f, 5.79f) + lineToRelative(-1.65f, -1.64f) + close() + moveTo(19.5f, 14.0f) + verticalLineToRelative(-1.73f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(7.56f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 22.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 18.75f) + lineTo(3.0f, 7.25f) + curveTo(3.0f, 5.45f, 4.46f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(4.25f) + curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) + lineTo(6.25f, 5.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 14.0f) + lineTo(9.0f, 14.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.5f) + close() + } + } + return _mailInboxDismiss!! + } + +private var _mailInboxDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailLink.kt new file mode 100644 index 00000000..d36b12cb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailLink.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailLink: ImageVector + get() { + if (_mailLink != null) { + return _mailLink!! + } + _mailLink = fluentIcon(name = "Filled.MailLink") { + fluentPath { + moveTo(23.0f, 6.75f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 19.25f, 3.0f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + verticalLineToRelative(-0.01f) + horizontalLineToRelative(0.2f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 6.74f) + close() + moveTo(16.5f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-0.2f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(20.0f, 6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(19.25f, 11.5f) + horizontalLineToRelative(-2.77f) + lineToRelative(-4.13f, 2.16f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, 0.0f) + lineTo(2.0f, 8.61f) + verticalLineToRelative(8.32f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 5.26f, 20.0f) + horizontalLineToRelative(13.68f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 22.0f, 16.74f) + verticalLineToRelative(-6.13f) + curveToRelative(-0.78f, 0.56f, -1.73f, 0.88f, -2.75f, 0.88f) + close() + moveTo(5.25f, 4.0f) + horizontalLineToRelative(6.63f) + arcToRelative(4.73f, 4.73f, 0.0f, false, false, 2.05f, 7.14f) + lineTo(12.0f, 12.15f) + lineTo(2.02f, 6.92f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.04f, -2.91f) + lineTo(5.25f, 4.0f) + close() + } + } + return _mailLink!! + } + +private var _mailLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailList.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailList.kt new file mode 100644 index 00000000..2d3228e1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailList.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailList: ImageVector + get() { + if (_mailList != null) { + return _mailList!! + } + _mailList = fluentIcon(name = "Filled.MailList") { + fluentPath { + moveTo(20.3f, 9.5f) + horizontalLineToRelative(0.95f) + curveToRelative(0.27f, 0.0f, 0.52f, -0.06f, 0.75f, -0.17f) + verticalLineToRelative(7.42f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(5.25f, 20.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 16.75f) + lineTo(2.0f, 8.61f) + lineToRelative(9.65f, 5.05f) + curveToRelative(0.22f, 0.12f, 0.48f, 0.12f, 0.7f, 0.0f) + lineTo(20.3f, 9.5f) + close() + moveTo(12.53f, 4.0f) + lineTo(5.06f, 4.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.04f, 2.92f) + lineTo(12.0f, 12.15f) + lineToRelative(5.07f, -2.65f) + horizontalLineToRelative(-3.32f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.22f, -3.0f) + arcToRelative(1.74f, 1.74f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(21.25f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.75f) + horizontalLineToRelative(7.5f) + close() + moveTo(21.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + horizontalLineToRelative(-7.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, -1.5f) + horizontalLineToRelative(7.5f) + close() + moveTo(13.0f, 7.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _mailList!! + } + +private var _mailList: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailMultiple.kt new file mode 100644 index 00000000..6fdfb993 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailMultiple.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailMultiple: ImageVector + get() { + if (_mailMultiple != null) { + return _mailMultiple!! + } + _mailMultiple = fluentIcon(name = "Filled.MailMultiple") { + fluentPath { + moveTo(21.0f, 7.51f) + curveToRelative(0.9f, 0.58f, 1.5f, 1.59f, 1.5f, 2.74f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) + horizontalLineToRelative(-9.0f) + curveToRelative(-1.15f, 0.0f, -2.16f, -0.6f, -2.74f, -1.5f) + horizontalLineToRelative(11.74f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 21.0f, 16.25f) + lineTo(21.0f, 7.51f) + close() + moveTo(20.0f, 8.11f) + verticalLineToRelative(7.64f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(5.25f, 19.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 15.75f) + lineTo(2.0f, 8.11f) + lineToRelative(8.65f, 4.55f) + curveToRelative(0.22f, 0.12f, 0.48f, 0.12f, 0.7f, 0.0f) + lineTo(20.0f, 8.11f) + close() + moveTo(5.25f, 4.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.52f, 0.0f, 2.8f, 1.05f, 3.15f, 2.47f) + lineTo(11.0f, 11.15f) + lineTo(2.1f, 6.47f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 5.06f, 4.0f) + lineTo(5.25f, 4.0f) + close() + } + } + return _mailMultiple!! + } + +private var _mailMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailOff.kt new file mode 100644 index 00000000..e1b6dc86 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailOff.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailOff: ImageVector + get() { + if (_mailOff != null) { + return _mailOff!! + } + _mailOff = fluentIcon(name = "Filled.MailOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.25f, 1.25f) + curveToRelative(-0.8f, 0.52f, -1.35f, 1.4f, -1.45f, 2.4f) + lineToRelative(8.07f, 4.23f) + lineToRelative(2.43f, 2.42f) + lineToRelative(-0.17f, 0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, 0.0f) + lineTo(2.0f, 8.61f) + verticalLineToRelative(8.32f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 5.26f, 20.0f) + horizontalLineToRelative(13.68f) + lineToRelative(1.79f, 1.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(15.3f, 12.12f) + lineTo(21.56f, 18.38f) + curveToRelative(0.28f, -0.48f, 0.44f, -1.04f, 0.44f, -1.63f) + lineTo(22.0f, 8.61f) + lineToRelative(-6.7f, 3.5f) + close() + moveTo(7.18f, 4.0f) + lineToRelative(7.0f, 7.0f) + lineToRelative(7.8f, -4.08f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 18.75f, 4.0f) + lineTo(7.18f, 4.0f) + close() + } + } + return _mailOff!! + } + +private var _mailOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailOpenPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailOpenPerson.kt new file mode 100644 index 00000000..046946f7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailOpenPerson.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailOpenPerson: ImageVector + get() { + if (_mailOpenPerson != null) { + return _mailOpenPerson!! + } + _mailOpenPerson = fluentIcon(name = "Filled.MailOpenPerson") { + fluentPath { + moveTo(11.65f, 14.16f) + lineTo(2.0f, 9.13f) + verticalLineToRelative(7.8f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 5.26f, 20.0f) + lineTo(13.0f, 20.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, -0.13f) + verticalLineToRelative(-0.1f) + arcTo(2.77f, 2.77f, 0.0f, false, true, 15.77f, 17.0f) + horizontalLineToRelative(0.28f) + arcToRelative(3.49f, 3.49f, 0.0f, false, true, -0.37f, -4.57f) + lineToRelative(-3.33f, 1.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, 0.0f) + close() + moveTo(11.62f, 2.11f) + lineTo(3.1f, 7.17f) + lineToRelative(-0.17f, 0.11f) + curveToRelative(-0.16f, 0.12f, -0.31f, 0.26f, -0.43f, 0.41f) + lineToRelative(9.5f, 4.96f) + lineToRelative(9.5f, -4.96f) + curveToRelative(-0.16f, -0.2f, -0.36f, -0.38f, -0.6f, -0.52f) + lineTo(12.38f, 2.1f) + lineToRelative(-0.1f, -0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.66f, 0.06f) + close() + moveTo(21.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(23.0f, 19.88f) + curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) + reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _mailOpenPerson!! + } + +private var _mailOpenPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailProhibited.kt new file mode 100644 index 00000000..784ce5b3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailProhibited.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailProhibited: ImageVector + get() { + if (_mailProhibited != null) { + return _mailProhibited!! + } + _mailProhibited = fluentIcon(name = "Filled.MailProhibited") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(13.5f, 6.5f) + curveToRelative(0.0f, 0.83f, 0.26f, 1.6f, 0.7f, 2.25f) + lineToRelative(5.55f, -5.56f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) + close() + moveTo(17.5f, 10.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) + lineToRelative(-5.55f, 5.56f) + curveToRelative(0.64f, 0.43f, 1.42f, 0.69f, 2.25f, 0.69f) + close() + moveTo(17.5f, 13.0f) + curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.81f) + verticalLineToRelative(5.56f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(5.25f, 20.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 16.75f) + lineTo(2.0f, 8.61f) + lineToRelative(9.65f, 5.05f) + curveToRelative(0.22f, 0.12f, 0.48f, 0.12f, 0.7f, 0.0f) + lineToRelative(2.41f, -1.26f) + curveToRelative(0.84f, 0.38f, 1.76f, 0.6f, 2.74f, 0.6f) + close() + moveTo(5.25f, 4.0f) + horizontalLineToRelative(6.25f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, 1.8f, 7.47f) + lineToRelative(-1.3f, 0.68f) + lineToRelative(-9.98f, -5.23f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.04f, -2.91f) + lineTo(5.25f, 4.0f) + close() + } + } + return _mailProhibited!! + } + +private var _mailProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailRead.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailRead.kt new file mode 100644 index 00000000..9591f7fc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailRead.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailRead: ImageVector + get() { + if (_mailRead != null) { + return _mailRead!! + } + _mailRead = fluentIcon(name = "Filled.MailRead") { + fluentPath { + moveToRelative(2.0f, 10.13f) + lineToRelative(9.65f, 5.03f) + curveToRelative(0.22f, 0.12f, 0.48f, 0.12f, 0.7f, 0.0f) + lineTo(22.0f, 10.13f) + verticalLineToRelative(7.62f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(5.25f, 21.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 17.75f) + verticalLineToRelative(-7.62f) + close() + moveTo(3.1f, 8.17f) + lineTo(11.62f, 3.11f) + curveToRelative(0.2f, -0.13f, 0.44f, -0.14f, 0.66f, -0.06f) + lineToRelative(0.1f, 0.06f) + lineToRelative(8.52f, 5.06f) + curveToRelative(0.24f, 0.14f, 0.44f, 0.32f, 0.6f, 0.52f) + lineTo(12.0f, 13.65f) + lineTo(2.5f, 8.7f) + curveToRelative(0.12f, -0.15f, 0.27f, -0.29f, 0.43f, -0.4f) + lineToRelative(0.17f, -0.12f) + lineToRelative(8.52f, -5.06f) + lineTo(3.1f, 8.17f) + close() + } + } + return _mailRead!! + } + +private var _mailRead: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailReadMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailReadMultiple.kt new file mode 100644 index 00000000..23db8d62 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailReadMultiple.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailReadMultiple: ImageVector + get() { + if (_mailReadMultiple != null) { + return _mailReadMultiple!! + } + _mailReadMultiple = fluentIcon(name = "Filled.MailReadMultiple") { + fluentPath { + moveTo(11.36f, 1.84f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.72f, 0.0f) + lineTo(2.83f, 6.1f) + curveToRelative(-0.17f, 0.1f, -0.31f, 0.21f, -0.44f, 0.35f) + lineToRelative(8.61f, 4.7f) + lineToRelative(8.6f, -4.7f) + arcToRelative(1.6f, 1.6f, 0.0f, false, false, -0.43f, -0.35f) + lineToRelative(-7.81f, -4.26f) + close() + moveTo(2.0f, 15.75f) + verticalLineToRelative(-7.8f) + lineToRelative(8.64f, 4.7f) + curveToRelative(0.22f, 0.13f, 0.5f, 0.13f, 0.72f, 0.0f) + lineTo(20.0f, 7.96f) + verticalLineToRelative(7.8f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(5.25f, 19.01f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 15.75f) + close() + moveTo(21.0f, 7.51f) + curveToRelative(0.9f, 0.58f, 1.5f, 1.59f, 1.5f, 2.74f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) + horizontalLineToRelative(-9.0f) + curveToRelative(-1.15f, 0.0f, -2.16f, -0.6f, -2.74f, -1.5f) + horizontalLineToRelative(11.74f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 21.0f, 16.25f) + lineTo(21.0f, 7.51f) + close() + } + } + return _mailReadMultiple!! + } + +private var _mailReadMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailTemplate.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailTemplate.kt new file mode 100644 index 00000000..2c125535 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailTemplate.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailTemplate: ImageVector + get() { + if (_mailTemplate != null) { + return _mailTemplate!! + } + _mailTemplate = fluentIcon(name = "Filled.MailTemplate") { + fluentPath { + moveTo(2.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(11.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(-9.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, 4.0f) + verticalLineToRelative(5.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.13f, 1.0f) + lineTo(5.0f, 20.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(2.0f, 5.0f) + close() + moveTo(5.75f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-9.5f) + close() + moveTo(7.75f, 7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-7.5f) + close() + moveTo(7.55f, 12.27f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 10.0f, 11.0f) + horizontalLineToRelative(9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.45f, 1.27f) + lineToRelative(-6.95f, 4.35f) + lineToRelative(-6.95f, -4.35f) + close() + moveTo(7.0f, 13.71f) + lineTo(7.0f, 14.0f) + verticalLineToRelative(5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) + horizontalLineToRelative(9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) + verticalLineToRelative(-5.0f) + lineToRelative(-0.01f, -0.3f) + lineToRelative(-7.1f, 4.44f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.79f, 0.0f) + lineTo(7.01f, 13.7f) + close() + } + } + return _mailTemplate!! + } + +private var _mailTemplate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailUnread.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailUnread.kt new file mode 100644 index 00000000..ef7370b3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailUnread.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailUnread: ImageVector + get() { + if (_mailUnread != null) { + return _mailUnread!! + } + _mailUnread = fluentIcon(name = "Filled.MailUnread") { + fluentPath { + moveTo(21.0f, 8.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) + close() + moveTo(5.25f, 4.0f) + horizontalLineToRelative(11.36f) + arcToRelative(4.51f, 4.51f, 0.0f, false, false, 1.9f, 4.75f) + lineTo(12.0f, 12.15f) + lineTo(2.02f, 6.92f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.04f, -2.91f) + lineTo(5.25f, 4.0f) + close() + moveTo(12.35f, 13.66f) + lineTo(20.38f, 9.46f) + arcTo(4.54f, 4.54f, 0.0f, false, false, 22.0f, 9.39f) + verticalLineToRelative(7.36f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(5.25f, 20.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 16.75f) + lineTo(2.0f, 8.61f) + lineToRelative(9.65f, 5.05f) + curveToRelative(0.22f, 0.12f, 0.48f, 0.12f, 0.7f, 0.0f) + close() + } + } + return _mailUnread!! + } + +private var _mailUnread: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailWarning.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailWarning.kt new file mode 100644 index 00000000..e68cbea1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MailWarning.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MailWarning: ImageVector + get() { + if (_mailWarning != null) { + return _mailWarning!! + } + _mailWarning = fluentIcon(name = "Filled.MailWarning") { + fluentPath { + moveToRelative(16.16f, 1.83f) + lineToRelative(-4.0f, 8.0f) + arcTo(1.5f, 1.5f, 0.0f, false, false, 13.51f, 12.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.33f, -2.17f) + lineToRelative(-4.0f, -8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.68f, 0.0f) + close() + moveTo(18.0f, 4.5f) + verticalLineToRelative(3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + close() + moveTo(17.5f, 10.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + close() + moveTo(21.5f, 13.0f) + horizontalLineToRelative(-7.88f) + lineToRelative(-1.27f, 0.66f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, 0.0f) + lineTo(2.0f, 8.61f) + verticalLineToRelative(8.32f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 5.26f, 20.0f) + horizontalLineToRelative(13.68f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 22.0f, 16.74f) + verticalLineToRelative(-3.8f) + curveToRelative(-0.16f, 0.03f, -0.33f, 0.05f, -0.5f, 0.05f) + close() + moveTo(5.25f, 4.0f) + horizontalLineToRelative(8.7f) + lineToRelative(-2.68f, 5.38f) + curveToRelative(-0.42f, 0.84f, -0.32f, 1.76f, 0.12f, 2.46f) + lineTo(2.02f, 6.92f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.04f, -2.91f) + lineTo(5.25f, 4.0f) + close() + } + } + return _mailWarning!! + } + +private var _mailWarning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Map.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Map.kt new file mode 100644 index 00000000..db819828 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Map.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Map: ImageVector + get() { + if (_map != null) { + return _map!! + } + _map = fluentIcon(name = "Filled.Map") { + fluentPath { + moveTo(8.5f, 4.36f) + verticalLineToRelative(12.46f) + lineToRelative(-4.32f, 3.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.17f, -0.5f) + lineTo(3.0f, 19.24f) + lineTo(3.0f, 8.62f) + curveToRelative(0.0f, -0.21f, 0.09f, -0.41f, 0.24f, -0.55f) + lineTo(3.32f, 8.0f) + lineTo(8.5f, 4.36f) + close() + moveTo(21.0f, 4.65f) + verticalLineToRelative(10.73f) + curveToRelative(0.0f, 0.21f, -0.09f, 0.41f, -0.24f, 0.55f) + lineToRelative(-0.08f, 0.07f) + lineToRelative(-5.18f, 3.64f) + lineTo(15.5f, 7.17f) + lineToRelative(4.32f, -3.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.17f, 0.5f) + close() + moveTo(10.0f, 4.35f) + lineTo(14.0f, 7.17f) + verticalLineToRelative(12.47f) + lineToRelative(-4.0f, -2.82f) + lineTo(10.0f, 4.36f) + close() + } + } + return _map!! + } + +private var _map: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MapDrive.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MapDrive.kt new file mode 100644 index 00000000..44492481 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MapDrive.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MapDrive: ImageVector + get() { + if (_mapDrive != null) { + return _mapDrive!! + } + _mapDrive = fluentIcon(name = "Filled.MapDrive") { + fluentPath { + moveTo(2.0f, 5.25f) + curveTo(2.0f, 4.01f, 3.0f, 3.0f, 4.25f, 3.0f) + horizontalLineToRelative(15.5f) + curveTo(20.99f, 3.0f, 22.0f, 4.0f, 22.0f, 5.25f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-8.5f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(1.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineTo(16.0f) + horizontalLineToRelative(1.75f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineTo(17.0f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.42f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineTo(19.0f) + horizontalLineTo(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineTo(7.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineTo(9.5f) + verticalLineToRelative(-2.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.0f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-5.0f) + close() + moveTo(18.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + } + } + return _mapDrive!! + } + +private var _mapDrive: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MatchAppLayout.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MatchAppLayout.kt new file mode 100644 index 00000000..388bc528 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MatchAppLayout.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MatchAppLayout: ImageVector + get() { + if (_matchAppLayout != null) { + return _matchAppLayout!! + } + _matchAppLayout = fluentIcon(name = "Filled.MatchAppLayout") { + fluentPath { + moveTo(9.5f, 8.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(3.75f, 16.0f) + curveTo(2.78f, 16.0f, 2.0f, 15.22f, 2.0f, 14.25f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) + lineTo(3.76f, 8.0f) + lineTo(9.5f, 8.0f) + close() + moveTo(20.25f, 8.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(14.5f, 16.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(5.75f) + close() + } + } + return _matchAppLayout!! + } + +private var _matchAppLayout: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MathFormatLinear.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MathFormatLinear.kt new file mode 100644 index 00000000..0023baa8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MathFormatLinear.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MathFormatLinear: ImageVector + get() { + if (_mathFormatLinear != null) { + return _mathFormatLinear!! + } + _mathFormatLinear = fluentIcon(name = "Filled.MathFormatLinear") { + fluentPath { + moveTo(11.7f, 3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 1.4f) + lineTo(11.0f, 5.42f) + lineToRelative(1.3f, 1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, -1.42f) + lineToRelative(-2.0f, -2.0f) + close() + moveTo(14.47f, 9.73f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.77f, 0.15f) + lineToRelative(1.11f, 2.1f) + lineToRelative(-3.56f, 3.56f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.42f) + lineToRelative(3.11f, -3.12f) + lineToRelative(1.17f, 2.21f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.84f, 0.74f) + lineToRelative(0.32f, -0.28f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.3f, -1.52f) + lineToRelative(-0.32f, 0.28f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.77f, -0.15f) + lineToRelative(-1.45f, -2.76f) + lineToRelative(2.9f, -2.9f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, -1.42f) + lineToRelative(-2.46f, 2.47f) + lineToRelative(-0.82f, -1.56f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -3.84f, -0.74f) + lineToRelative(-0.32f, 0.28f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.3f, 1.52f) + lineToRelative(0.32f, -0.28f) + close() + moveTo(3.04f, 13.72f) + curveToRelative(0.88f, -0.02f, 1.78f, -0.08f, 2.61f, -0.26f) + arcToRelative(4.4f, 4.4f, 0.0f, false, false, 2.87f, -1.74f) + curveToRelative(0.62f, -0.92f, 0.64f, -2.05f, 0.06f, -2.9f) + curveToRelative(-0.6f, -0.88f, -1.7f, -1.25f, -2.87f, -0.98f) + curveToRelative(-0.44f, 0.1f, -1.28f, 0.31f, -2.15f, 1.0f) + curveToRelative(-0.87f, 0.7f, -1.7f, 1.8f, -2.26f, 3.58f) + arcToRelative(4.8f, 4.8f, 0.0f, false, false, 0.0f, 3.38f) + arcToRelative(3.2f, 3.2f, 0.0f, false, false, 2.14f, 1.8f) + curveToRelative(1.76f, 0.5f, 3.93f, -0.29f, 5.31f, -2.03f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.56f, -1.24f) + curveToRelative(-0.97f, 1.22f, -2.36f, 1.59f, -3.22f, 1.35f) + arcToRelative(1.2f, 1.2f, 0.0f, false, true, -0.83f, -0.69f) + arcToRelative(2.29f, 2.29f, 0.0f, false, true, -0.1f, -1.27f) + close() + moveTo(6.93f, 9.95f) + curveToRelative(0.07f, 0.1f, 0.14f, 0.35f, -0.08f, 0.67f) + curveToRelative(-0.26f, 0.4f, -0.77f, 0.7f, -1.62f, 0.89f) + curveToRelative(-0.45f, 0.1f, -0.94f, 0.15f, -1.46f, 0.18f) + curveToRelative(0.34f, -0.63f, 0.7f, -1.02f, 1.03f, -1.28f) + arcToRelative(3.18f, 3.18f, 0.0f, false, true, 1.36f, -0.62f) + curveToRelative(0.5f, -0.12f, 0.7f, 0.06f, 0.77f, 0.16f) + close() + } + } + return _mathFormatLinear!! + } + +private var _mathFormatLinear: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MathFormatProfessional.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MathFormatProfessional.kt new file mode 100644 index 00000000..f27d0d1f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MathFormatProfessional.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MathFormatProfessional: ImageVector + get() { + if (_mathFormatProfessional != null) { + return _mathFormatProfessional!! + } + _mathFormatProfessional = fluentIcon(name = "Filled.MathFormatProfessional") { + fluentPath { + moveTo(15.44f, 4.95f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.72f, -0.16f) + lineToRelative(-0.39f, 0.27f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.16f, -1.62f) + lineToRelative(0.38f, -0.28f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 3.64f, 0.82f) + lineToRelative(0.5f, 0.9f) + lineToRelative(1.6f, -1.59f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.42f, 1.42f) + lineToRelative(-2.0f, 2.0f) + lineToRelative(0.8f, 1.41f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.75f, 0.15f) + lineToRelative(0.36f, -0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.26f, 1.56f) + lineToRelative(-0.36f, 0.3f) + curveToRelative(-1.21f, 0.97f, -3.0f, 0.63f, -3.76f, -0.73f) + lineToRelative(-0.52f, -0.93f) + lineToRelative(-1.53f, 1.54f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.42f, -1.42f) + lineToRelative(1.94f, -1.93f) + lineToRelative(-0.79f, -1.4f) + close() + moveTo(8.4f, 14.14f) + curveToRelative(-1.42f, 0.27f, -3.0f, 0.34f, -4.53f, 0.36f) + curveToRelative(-0.28f, 1.1f, -0.16f, 1.9f, 0.1f, 2.43f) + curveToRelative(0.3f, 0.62f, 0.88f, 1.06f, 1.7f, 1.27f) + curveToRelative(1.7f, 0.42f, 4.18f, -0.25f, 5.83f, -2.14f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.5f, 1.32f) + curveToRelative(-2.1f, 2.4f, -5.32f, 3.38f, -7.81f, 2.76f) + arcToRelative(4.44f, 4.44f, 0.0f, false, true, -3.03f, -2.34f) + curveToRelative(-0.6f, -1.25f, -0.6f, -2.83f, 0.01f, -4.63f) + arcTo(9.83f, 9.83f, 0.0f, false, true, 5.58f, 8.3f) + arcTo(8.16f, 8.16f, 0.0f, false, true, 8.8f, 6.87f) + curveToRelative(1.62f, -0.33f, 3.08f, 0.13f, 3.9f, 1.2f) + curveToRelative(0.83f, 1.08f, 0.8f, 2.56f, -0.1f, 3.78f) + curveToRelative(-0.97f, 1.34f, -2.57f, 1.97f, -4.2f, 2.29f) + close() + moveTo(9.2f, 8.83f) + curveToRelative(-0.55f, 0.11f, -1.48f, 0.37f, -2.44f, 1.07f) + arcToRelative(7.17f, 7.17f, 0.0f, false, false, -2.13f, 2.58f) + curveToRelative(1.21f, -0.03f, 2.36f, -0.1f, 3.38f, -0.3f) + curveToRelative(1.46f, -0.29f, 2.45f, -0.78f, 2.98f, -1.5f) + curveToRelative(0.43f, -0.6f, 0.35f, -1.1f, 0.12f, -1.4f) + curveToRelative(-0.25f, -0.32f, -0.85f, -0.67f, -1.91f, -0.45f) + close() + } + } + return _mathFormatProfessional!! + } + +private var _mathFormatProfessional: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MathFormula.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MathFormula.kt new file mode 100644 index 00000000..80167173 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MathFormula.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MathFormula: ImageVector + get() { + if (_mathFormula != null) { + return _mathFormula!! + } + _mathFormula = fluentIcon(name = "Filled.MathFormula") { + fluentPath { + moveTo(12.19f, 4.14f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.4f, 1.13f) + lineTo(9.7f, 7.0f) + lineTo(12.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(9.62f, 9.0f) + lineToRelative(-0.39f, 8.85f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.8f, 2.48f) + lineToRelative(-0.09f, -0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -1.5f) + lineToRelative(0.09f, 0.07f) + curveToRelative(0.94f, 0.83f, 2.43f, 0.2f, 2.48f, -1.06f) + lineTo(7.63f, 9.0f) + lineTo(6.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + horizontalLineToRelative(1.71f) + lineToRelative(0.08f, -1.82f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.6f, -2.64f) + lineToRelative(0.21f, 0.16f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.2f, 1.6f) + lineToRelative(-0.21f, -0.16f) + close() + moveTo(13.09f, 13.04f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.69f, 0.23f) + lineToRelative(0.8f, 1.73f) + lineToRelative(-3.29f, 3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.4f) + lineToRelative(2.78f, -2.78f) + lineToRelative(0.78f, 1.66f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.86f, 0.86f) + lineToRelative(0.5f, -0.42f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.27f, -1.54f) + lineToRelative(-0.5f, 0.42f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.78f, -0.17f) + lineTo(17.0f, 15.42f) + lineToRelative(2.7f, -2.71f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.4f, -1.42f) + lineToRelative(-2.2f, 2.2f) + lineToRelative(-0.52f, -1.07f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -3.46f, -1.13f) + lineToRelative(-0.6f, 0.33f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.96f, 1.76f) + lineToRelative(0.6f, -0.33f) + close() + } + } + return _mathFormula!! + } + +private var _mathFormula: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MathSymbols.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MathSymbols.kt new file mode 100644 index 00000000..ab201745 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MathSymbols.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MathSymbols: ImageVector + get() { + if (_mathSymbols != null) { + return _mathSymbols!! + } + _mathSymbols = fluentIcon(name = "Filled.MathSymbols") { + fluentPath { + moveTo(6.5f, 1.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + lineTo(7.5f, 5.0f) + lineTo(10.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + lineTo(7.5f, 7.0f) + verticalLineToRelative(2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(5.5f, 7.0f) + lineTo(3.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + horizontalLineToRelative(2.5f) + lineTo(5.5f, 2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(14.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-7.0f) + close() + moveTo(13.0f, 17.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(17.5f, 15.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + moveTo(18.75f, 20.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(2.29f, 13.29f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 0.0f) + lineToRelative(2.79f, 2.8f) + lineToRelative(2.8f, -2.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.42f) + lineTo(7.92f, 17.5f) + lineToRelative(2.8f, 2.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 1.4f) + lineTo(6.5f, 18.92f) + lineToRelative(-2.8f, 2.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.42f) + lineToRelative(2.79f, -2.79f) + lineToRelative(-2.8f, -2.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) + close() + } + } + return _mathSymbols!! + } + +private var _mathSymbols: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MeetNow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MeetNow.kt new file mode 100644 index 00000000..f34cbac9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MeetNow.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MeetNow: ImageVector + get() { + if (_meetNow != null) { + return _meetNow!! + } + _meetNow = fluentIcon(name = "Filled.MeetNow") { + fluentPath { + moveTo(7.96f, 2.52f) + arcTo(15.1f, 15.1f, 0.0f, false, true, 12.0f, 2.0f) + arcToRelative(15.32f, 15.32f, 0.0f, false, true, 5.16f, 0.9f) + arcToRelative(7.13f, 7.13f, 0.0f, false, true, 0.42f, 0.18f) + curveToRelative(0.04f, 0.02f, -0.55f, 1.12f, 0.0f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.66f, 1.34f) + horizontalLineToRelative(-0.01f) + arcToRelative(2.8f, 2.8f, 0.0f, false, false, -0.3f, -0.13f) + arcTo(13.82f, 13.82f, 0.0f, false, false, 12.0f, 3.5f) + arcToRelative(13.6f, 13.6f, 0.0f, false, false, -4.61f, 0.8f) + arcToRelative(5.6f, 5.6f, 0.0f, false, false, -0.3f, 0.13f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.68f, -1.34f) + horizontalLineToRelative(0.02f) + lineToRelative(0.02f, -0.02f) + arcToRelative(4.17f, 4.17f, 0.0f, false, true, 0.39f, -0.16f) + curveToRelative(0.26f, -0.1f, 0.63f, -0.24f, 1.12f, -0.38f) + close() + moveTo(6.75f, 20.25f) + lineToRelative(-0.33f, 0.67f) + lineToRelative(0.03f, 0.02f) + arcToRelative(4.16f, 4.16f, 0.0f, false, false, 0.39f, 0.16f) + arcTo(15.37f, 15.37f, 0.0f, false, false, 12.0f, 22.0f) + arcToRelative(15.15f, 15.15f, 0.0f, false, false, 5.16f, -0.9f) + arcToRelative(6.9f, 6.9f, 0.0f, false, false, 0.39f, -0.16f) + lineToRelative(0.02f, -0.01f) + horizontalLineToRelative(0.01f) + lineToRelative(-0.33f, -0.68f) + lineToRelative(0.34f, 0.67f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.68f, -1.34f) + arcToRelative(2.61f, 2.61f, 0.0f, false, true, -0.3f, 0.13f) + arcToRelative(13.66f, 13.66f, 0.0f, false, true, -4.61f, 0.8f) + arcToRelative(13.88f, 13.88f, 0.0f, false, true, -4.61f, -0.8f) + arcToRelative(5.75f, 5.75f, 0.0f, false, true, -0.3f, -0.13f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.67f, 1.34f) + lineToRelative(0.33f, -0.67f) + close() + moveTo(6.25f, 6.5f) + curveTo(5.01f, 6.5f, 4.0f, 7.5f, 4.0f, 8.75f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(6.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-6.5f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-6.5f) + close() + moveTo(19.27f, 16.33f) + lineTo(16.0f, 13.6f) + verticalLineToRelative(-3.2f) + lineToRelative(3.27f, -2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.23f, 0.57f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.23f, 0.58f) + close() + } + } + return _meetNow!! + } + +private var _meetNow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Megaphone.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Megaphone.kt new file mode 100644 index 00000000..88a4460e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Megaphone.kt @@ -0,0 +1,41 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Megaphone: ImageVector + get() { + if (_megaphone != null) { + return _megaphone!! + } + _megaphone = fluentIcon(name = "Filled.Megaphone") { + fluentPath { + moveTo(21.9f, 5.62f) + curveToRelative(0.07f, 0.21f, 0.1f, 0.43f, 0.1f, 0.64f) + verticalLineToRelative(11.48f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.9f, 2.16f) + lineToRelative(-5.5f, -1.64f) + arcTo(4.0f, 4.0f, 0.0f, false, true, 6.0f, 16.7f) + verticalLineTo(16.0f) + lineToRelative(-2.4f, -0.71f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 2.0f, 13.13f) + verticalLineToRelative(-2.26f) + curveToRelative(0.0f, -1.0f, 0.65f, -1.87f, 1.6f, -2.16f) + lineToRelative(15.5f, -4.6f) + curveToRelative(1.2f, -0.36f, 2.45f, 0.32f, 2.8f, 1.51f) + close() + moveTo(7.5f, 16.44f) + verticalLineToRelative(0.06f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 4.62f, 1.32f) + lineTo(7.5f, 16.44f) + close() + } + } + return _megaphone!! + } + +private var _megaphone: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MegaphoneCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MegaphoneCircle.kt new file mode 100644 index 00000000..ea2a2689 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MegaphoneCircle.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MegaphoneCircle: ImageVector + get() { + if (_megaphoneCircle != null) { + return _megaphoneCircle!! + } + _megaphoneCircle = fluentIcon(name = "Filled.MegaphoneCircle") { + fluentPath { + moveTo(12.0f, 22.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) + close() + moveTo(8.0f, 14.43f) + lineTo(7.14f, 14.12f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 6.0f, 12.46f) + verticalLineToRelative(-0.95f) + curveToRelative(0.0f, -0.73f, 0.45f, -1.38f, 1.14f, -1.64f) + lineToRelative(7.5f, -2.77f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 17.0f, 8.75f) + verticalLineToRelative(6.5f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -2.36f, 1.64f) + lineToRelative(-1.43f, -0.53f) + arcTo(2.63f, 2.63f, 0.0f, false, true, 8.0f, 15.88f) + verticalLineToRelative(-1.45f) + close() + moveTo(11.75f, 15.83f) + verticalLineToRelative(0.04f) + arcToRelative(1.13f, 1.13f, 0.0f, false, true, -2.25f, 0.0f) + lineTo(9.5f, 15.0f) + lineToRelative(2.25f, 0.83f) + close() + } + } + return _megaphoneCircle!! + } + +private var _megaphoneCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MegaphoneLoud.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MegaphoneLoud.kt new file mode 100644 index 00000000..05868e02 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MegaphoneLoud.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MegaphoneLoud: ImageVector + get() { + if (_megaphoneLoud != null) { + return _megaphoneLoud!! + } + _megaphoneLoud = fluentIcon(name = "Filled.MegaphoneLoud") { + fluentPath { + moveTo(17.21f, 2.24f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.42f, -0.48f) + lineToRelative(-0.75f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.42f, 0.48f) + lineToRelative(0.75f, -2.25f) + close() + moveTo(21.78f, 2.22f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(2.5f, -2.5f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(12.88f, 3.74f) + arcToRelative(2.33f, 2.33f, 0.0f, false, false, -3.8f, 0.58f) + lineToRelative(-5.9f, 12.24f) + arcToRelative(1.8f, 1.8f, 0.0f, false, false, 0.39f, 2.09f) + lineTo(5.0f, 20.01f) + curveToRelative(0.53f, 0.5f, 1.3f, 0.63f, 1.97f, 0.33f) + lineToRelative(1.42f, -0.63f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 7.3f, -3.24f) + lineToRelative(3.43f, -1.51f) + arcToRelative(2.33f, 2.33f, 0.0f, false, false, 0.76f, -3.71f) + lineToRelative(-7.0f, -7.5f) + close() + moveTo(14.33f, 17.08f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -4.57f, 2.03f) + lineToRelative(4.57f, -2.03f) + close() + moveTo(19.0f, 8.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _megaphoneLoud!! + } + +private var _megaphoneLoud: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MegaphoneOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MegaphoneOff.kt new file mode 100644 index 00000000..d96a056b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MegaphoneOff.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MegaphoneOff: ImageVector + get() { + if (_megaphoneOff != null) { + return _megaphoneOff!! + } + _megaphoneOff = fluentIcon(name = "Filled.MegaphoneOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(4.5f, 4.5f) + lineToRelative(-3.11f, 0.93f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 10.87f) + verticalLineToRelative(2.26f) + curveToRelative(0.0f, 1.0f, 0.65f, 1.87f, 1.6f, 2.16f) + lineToRelative(2.4f, 0.7f) + verticalLineToRelative(0.7f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 7.6f, 1.57f) + lineToRelative(5.12f, 1.52f) + lineToRelative(2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(7.5f, 16.44f) + lineToRelative(4.62f, 1.38f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 7.5f, 16.5f) + verticalLineToRelative(-0.06f) + close() + moveTo(22.0f, 17.74f) + curveToRelative(0.0f, 0.32f, -0.07f, 0.62f, -0.18f, 0.9f) + lineTo(10.0f, 6.8f) + lineToRelative(9.1f, -2.7f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 22.0f, 6.26f) + verticalLineToRelative(11.48f) + close() + } + } + return _megaphoneOff!! + } + +private var _megaphoneOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Mention.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Mention.kt new file mode 100644 index 00000000..ff1e2c7e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Mention.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Mention: ImageVector + get() { + if (_mention != null) { + return _mention!! + } + _mention = fluentIcon(name = "Filled.Mention") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 10.0f, 9.72f) + verticalLineToRelative(1.81f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -7.41f, 2.05f) + arcToRelative(4.26f, 4.26f, 0.0f, false, true, -3.09f, 1.35f) + curveToRelative(-2.52f, 0.0f, -4.5f, -2.25f, -4.5f, -4.96f) + curveTo(7.0f, 9.25f, 8.98f, 7.0f, 11.5f, 7.0f) + curveToRelative(0.94f, 0.0f, 1.8f, 0.31f, 2.51f, 0.84f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.98f, 0.04f) + lineTo(16.0f, 8.0f) + verticalLineToRelative(5.5f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 4.0f, 0.15f) + lineTo(20.0f, 12.0f) + arcToRelative(8.0f, 8.0f, 0.0f, true, false, -5.33f, 7.54f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.67f, 1.89f) + arcTo(10.0f, 10.0f, 0.0f, true, true, 12.0f, 2.0f) + close() + moveTo(11.65f, 9.0f) + horizontalLineToRelative(-0.15f) + curveTo(10.15f, 9.0f, 9.0f, 10.3f, 9.0f, 11.97f) + curveToRelative(0.0f, 1.66f, 1.15f, 2.96f, 2.5f, 2.96f) + curveToRelative(1.3f, 0.0f, 2.41f, -1.2f, 2.5f, -2.78f) + verticalLineToRelative(-0.22f) + curveToRelative(-0.02f, -1.59f, -1.08f, -2.83f, -2.35f, -2.92f) + lineTo(11.5f, 9.0f) + horizontalLineToRelative(0.15f) + close() + } + } + return _mention!! + } + +private var _mention: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Merge.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Merge.kt new file mode 100644 index 00000000..27f2f182 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Merge.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Merge: ImageVector + get() { + if (_merge != null) { + return _merge!! + } + _merge = fluentIcon(name = "Filled.Merge") { + fluentPath { + moveTo(3.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(2.76f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 2.83f, 1.17f) + lineToRelative(2.95f, 2.95f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 2.12f, 0.88f) + horizontalLineToRelative(3.92f) + lineTo(15.3f, 7.71f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, -1.41f) + lineToRelative(5.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.4f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, -1.4f) + lineToRelative(3.3f, -3.3f) + horizontalLineToRelative(-3.97f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -2.08f, 0.88f) + lineToRelative(-2.95f, 2.95f) + arcTo(4.0f, 4.0f, 0.0f, false, true, 6.76f, 18.0f) + horizontalLineTo(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(2.76f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.41f, -0.59f) + lineToRelative(2.95f, -2.95f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.54f, -0.46f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, -0.54f, -0.46f) + lineTo(8.17f, 8.59f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 6.76f, 8.0f) + horizontalLineTo(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + } + } + return _merge!! + } + +private var _merge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Mic.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Mic.kt new file mode 100644 index 00000000..1527a70f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Mic.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Mic: ImageVector + get() { + if (_mic != null) { + return _mic!! + } + _mic = fluentIcon(name = "Filled.Mic") { + fluentPath { + moveTo(18.25f, 11.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(0.5f) + arcToRelative(6.75f, 6.75f, 0.0f, false, true, -6.25f, 6.73f) + verticalLineToRelative(2.27f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-2.37f) + arcTo(6.75f, 6.75f, 0.0f, false, true, 5.0f, 12.48f) + verticalLineToRelative(-0.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.6f) + arcToRelative(5.25f, 5.25f, 0.0f, false, false, 5.03f, 5.25f) + horizontalLineToRelative(0.72f) + arcToRelative(5.25f, 5.25f, 0.0f, false, false, 5.25f, -5.03f) + verticalLineToRelative(-0.72f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, 4.0f) + verticalLineToRelative(6.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -8.0f, 0.0f) + verticalLineTo(6.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, -4.0f) + close() + } + } + return _mic!! + } + +private var _mic: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MicOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MicOff.kt new file mode 100644 index 00000000..2485cece --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MicOff.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MicOff: ImageVector + get() { + if (_micOff != null) { + return _micOff!! + } + _micOff = fluentIcon(name = "Filled.MicOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(8.0f, 9.06f) + lineTo(8.0f, 12.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 6.25f, 3.3f) + lineToRelative(1.14f, 1.15f) + arcToRelative(5.23f, 5.23f, 0.0f, false, true, -3.14f, 1.05f) + horizontalLineToRelative(-0.72f) + arcToRelative(5.25f, 5.25f, 0.0f, false, true, -5.03f, -5.25f) + verticalLineToRelative(-0.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + verticalLineToRelative(0.74f) + arcToRelative(6.75f, 6.75f, 0.0f, false, false, 6.25f, 6.5f) + verticalLineToRelative(2.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + verticalLineToRelative(-2.27f) + curveToRelative(1.4f, -0.1f, 2.68f, -0.63f, 3.71f, -1.46f) + lineToRelative(4.26f, 4.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(17.2f, 14.02f) + lineTo(18.34f, 15.16f) + curveToRelative(0.42f, -0.88f, 0.66f, -1.87f, 0.66f, -2.91f) + verticalLineToRelative(-0.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + verticalLineToRelative(0.72f) + arcToRelative(5.23f, 5.23f, 0.0f, false, true, -0.3f, 1.54f) + close() + moveTo(8.14f, 4.95f) + lineToRelative(7.79f, 7.79f) + curveToRelative(0.05f, -0.24f, 0.07f, -0.5f, 0.07f, -0.75f) + lineTo(16.0f, 6.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -7.86f, -1.04f) + close() + } + } + return _micOff!! + } + +private var _micOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MicProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MicProhibited.kt new file mode 100644 index 00000000..4c9f72e3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MicProhibited.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MicProhibited: ImageVector + get() { + if (_micProhibited != null) { + return _micProhibited!! + } + _micProhibited = fluentIcon(name = "Filled.MicProhibited") { + fluentPath { + moveTo(11.17f, 16.0f) + arcTo(6.51f, 6.51f, 0.0f, false, true, 15.0f, 11.5f) + lineTo(15.0f, 6.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -8.0f, 0.0f) + verticalLineToRelative(6.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.17f, 4.0f) + close() + moveTo(11.0f, 17.5f) + curveToRelative(0.0f, 1.1f, 0.27f, 2.13f, 0.75f, 3.03f) + verticalLineToRelative(0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-2.37f) + arcTo(6.75f, 6.75f, 0.0f, false, true, 4.0f, 12.48f) + verticalLineToRelative(-0.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.6f) + arcToRelative(5.25f, 5.25f, 0.0f, false, false, 5.03f, 5.25f) + lineTo(11.0f, 17.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(13.5f, 17.5f) + curveToRelative(0.0f, 0.83f, 0.26f, 1.6f, 0.7f, 2.25f) + lineToRelative(5.55f, -5.56f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) + close() + moveTo(17.5f, 21.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) + lineToRelative(-5.55f, 5.56f) + curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) + close() + } + } + return _micProhibited!! + } + +private var _micProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MicPulse.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MicPulse.kt new file mode 100644 index 00000000..a04860e4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MicPulse.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MicPulse: ImageVector + get() { + if (_micPulse != null) { + return _micPulse!! + } + _micPulse = fluentIcon(name = "Filled.MicPulse") { + fluentPath { + moveTo(11.0f, 17.5f) + curveToRelative(0.0f, 1.1f, 0.27f, 2.13f, 0.75f, 3.03f) + verticalLineToRelative(0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-2.37f) + arcTo(6.75f, 6.75f, 0.0f, false, true, 4.0f, 12.48f) + verticalLineToRelative(-0.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.6f) + arcToRelative(5.25f, 5.25f, 0.0f, false, false, 5.03f, 5.25f) + lineTo(11.0f, 17.5f) + close() + moveTo(11.17f, 16.0f) + arcTo(6.51f, 6.51f, 0.0f, false, true, 15.0f, 11.5f) + lineTo(15.0f, 6.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -8.0f, 0.0f) + verticalLineToRelative(6.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.17f, 4.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(16.01f, 14.5f) + curveToRelative(0.21f, 0.0f, 0.4f, 0.14f, 0.46f, 0.34f) + lineTo(17.53f, 18.0f) + lineToRelative(1.0f, -2.68f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.92f, -0.04f) + lineTo(20.3f, 17.0f) + lineTo(21.0f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.45f, -0.28f) + lineToRelative(-0.48f, -0.97f) + lineToRelative(-1.1f, 2.93f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.94f, -0.02f) + lineToRelative(-1.07f, -3.2f) + lineToRelative(-0.5f, 1.23f) + arcTo(0.5f, 0.5f, 0.0f, false, true, 15.0f, 18.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineToRelative(0.66f) + lineToRelative(0.88f, -2.19f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.47f, -0.31f) + close() + } + } + return _micPulse!! + } + +private var _micPulse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MicPulseOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MicPulseOff.kt new file mode 100644 index 00000000..ab5d3759 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MicPulseOff.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MicPulseOff: ImageVector + get() { + if (_micPulseOff != null) { + return _micPulseOff!! + } + _micPulseOff = fluentIcon(name = "Filled.MicPulseOff") { + fluentPath { + moveTo(7.0f, 8.06f) + lineTo(7.0f, 12.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.17f, 4.0f) + curveToRelative(0.23f, -0.94f, 0.65f, -1.8f, 1.23f, -2.54f) + lineToRelative(0.72f, 0.72f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 7.72f, 7.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.94f, -1.16f) + lineTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(7.0f, 8.06f) + close() + moveTo(18.14f, 19.21f) + lineTo(17.97f, 19.68f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.94f, -0.02f) + lineToRelative(-0.79f, -2.36f) + lineToRelative(1.9f, 1.9f) + close() + moveTo(15.8f, 16.86f) + lineTo(15.46f, 17.69f) + arcTo(0.5f, 0.5f, 0.0f, false, true, 15.0f, 18.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineToRelative(0.66f) + lineToRelative(0.37f, -0.91f) + lineToRelative(0.77f, 0.77f) + close() + moveTo(15.54f, 12.36f) + lineTo(22.64f, 19.46f) + arcTo(5.49f, 5.49f, 0.0f, false, false, 17.5f, 12.0f) + curveToRelative(-0.69f, 0.0f, -1.35f, 0.13f, -1.96f, 0.36f) + close() + moveTo(7.41f, 4.23f) + lineToRelative(7.37f, 7.37f) + lineToRelative(0.22f, -0.1f) + lineTo(15.0f, 6.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -7.59f, -1.77f) + close() + moveTo(11.0f, 17.5f) + curveToRelative(0.0f, 1.1f, 0.27f, 2.13f, 0.75f, 3.03f) + verticalLineToRelative(0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-2.37f) + arcTo(6.75f, 6.75f, 0.0f, false, true, 4.0f, 12.48f) + verticalLineToRelative(-0.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.6f) + arcToRelative(5.25f, 5.25f, 0.0f, false, false, 5.03f, 5.25f) + lineTo(11.0f, 17.5f) + close() + } + } + return _micPulseOff!! + } + +private var _micPulseOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MicSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MicSettings.kt new file mode 100644 index 00000000..0b5315bf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MicSettings.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MicSettings: ImageVector + get() { + if (_micSettings != null) { + return _micSettings!! + } + _micSettings = fluentIcon(name = "Filled.MicSettings") { + fluentPath { + moveTo(11.0f, 17.5f) + curveToRelative(0.0f, 1.1f, 0.27f, 2.13f, 0.75f, 3.03f) + verticalLineToRelative(0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-2.37f) + arcTo(6.75f, 6.75f, 0.0f, false, true, 4.0f, 12.48f) + verticalLineToRelative(-0.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.6f) + arcToRelative(5.25f, 5.25f, 0.0f, false, false, 5.03f, 5.25f) + lineTo(11.0f, 17.5f) + close() + moveTo(11.17f, 16.0f) + arcTo(6.51f, 6.51f, 0.0f, false, true, 15.0f, 11.5f) + lineTo(15.0f, 6.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -8.0f, 0.0f) + verticalLineToRelative(6.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.17f, 4.0f) + close() + moveTo(14.27f, 13.98f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.43f, 2.5f) + lineToRelative(-0.59f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) + lineToRelative(0.55f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) + lineToRelative(-0.19f, 0.63f) + curveToRelative(0.44f, 0.39f, 0.94f, 0.7f, 1.49f, 0.93f) + lineToRelative(0.49f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) + lineToRelative(-0.2f, -0.69f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) + lineToRelative(0.59f, -0.14f) + arcToRelative(5.72f, 5.72f, 0.0f, false, false, 0.0f, -1.8f) + lineToRelative(-0.55f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.19f, -0.63f) + curveToRelative(-0.44f, -0.4f, -0.94f, -0.7f, -1.49f, -0.93f) + lineToRelative(-0.49f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) + lineToRelative(0.2f, 0.7f) + close() + moveTo(17.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) + close() + } + } + return _micSettings!! + } + +private var _micSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MicSparkle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MicSparkle.kt new file mode 100644 index 00000000..f25b8416 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MicSparkle.kt @@ -0,0 +1,93 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MicSparkle: ImageVector + get() { + if (_micSparkle != null) { + return _micSparkle!! + } + _micSparkle = fluentIcon(name = "Filled.MicSparkle") { + fluentPath { + moveTo(13.85f, 15.15f) + arcToRelative(2.85f, 2.85f, 0.0f, false, true, 0.69f, 1.11f) + lineToRelative(0.45f, 1.38f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 1.02f, 0.0f) + lineToRelative(0.45f, -1.38f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, 1.8f, -1.8f) + lineToRelative(1.38f, -0.44f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, -1.03f) + horizontalLineToRelative(-0.03f) + lineToRelative(-1.38f, -0.45f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.8f, -1.8f) + lineTo(16.0f, 9.36f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, -1.03f, 0.0f) + lineToRelative(-0.45f, 1.38f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.77f, 1.8f) + lineToRelative(-1.38f, 0.44f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, 1.03f) + lineToRelative(1.38f, 0.45f) + curveToRelative(0.42f, 0.14f, 0.8f, 0.37f, 1.11f, 0.69f) + close() + moveTo(16.0f, 6.0f) + verticalLineToRelative(2.1f) + arcToRelative(1.54f, 1.54f, 0.0f, false, false, -1.98f, 0.93f) + verticalLineToRelative(0.01f) + lineToRelative(-0.46f, 1.39f) + arcToRelative(1.83f, 1.83f, 0.0f, false, true, -1.14f, 1.16f) + lineToRelative(-1.38f, 0.45f) + arcToRelative(1.54f, 1.54f, 0.0f, false, false, 0.0f, 2.91f) + lineToRelative(1.39f, 0.46f) + curveToRelative(0.26f, 0.09f, 0.5f, 0.23f, 0.7f, 0.43f) + arcTo(4.0f, 4.0f, 0.0f, false, true, 8.0f, 12.0f) + lineTo(8.0f, 6.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, 8.0f, 0.0f) + close() + moveTo(12.25f, 17.5f) + curveToRelative(0.54f, 0.0f, 1.07f, -0.08f, 1.56f, -0.24f) + lineToRelative(0.23f, 0.7f) + verticalLineToRelative(0.01f) + curveToRelative(0.1f, 0.25f, 0.25f, 0.48f, 0.45f, 0.65f) + curveToRelative(-0.55f, 0.2f, -1.13f, 0.32f, -1.74f, 0.36f) + verticalLineToRelative(2.27f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-2.37f) + arcTo(6.75f, 6.75f, 0.0f, false, true, 5.0f, 12.48f) + verticalLineToRelative(-0.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.6f) + arcToRelative(5.25f, 5.25f, 0.0f, false, false, 5.03f, 5.25f) + horizontalLineToRelative(0.72f) + close() + moveTo(22.02f, 18.96f) + lineTo(22.78f, 19.21f) + horizontalLineToRelative(0.02f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, 0.47f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, 0.1f) + lineToRelative(-0.77f, 0.26f) + arcToRelative(1.58f, 1.58f, 0.0f, false, false, -1.0f, 1.0f) + lineToRelative(-0.24f, 0.76f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.58f, 0.0f) + lineToRelative(-0.24f, -0.77f) + arcToRelative(1.57f, 1.57f, 0.0f, false, false, -1.0f, -1.0f) + lineToRelative(-0.77f, -0.25f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, -0.46f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, -0.1f) + lineToRelative(0.77f, -0.26f) + arcToRelative(1.58f, 1.58f, 0.0f, false, false, 0.98f, -1.0f) + lineToRelative(0.25f, -0.76f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.57f, 0.0f) + lineToRelative(0.25f, 0.77f) + arcToRelative(1.58f, 1.58f, 0.0f, false, false, 1.0f, 1.0f) + close() + } + } + return _micSparkle!! + } + +private var _micSparkle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Microscope.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Microscope.kt new file mode 100644 index 00000000..0b3bb376 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Microscope.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Microscope: ImageVector + get() { + if (_microscope != null) { + return _microscope!! + } + _microscope = fluentIcon(name = "Filled.Microscope") { + fluentPath { + moveTo(8.0f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(11.0f, 3.0f) + horizontalLineToRelative(1.25f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.78f) + horizontalLineToRelative(0.03f) + arcToRelative(8.25f, 8.25f, 0.0f, false, true, 3.96f, 14.97f) + horizontalLineToRelative(3.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(3.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(8.53f) + arcTo(6.75f, 6.75f, 0.0f, false, false, 13.0f, 7.04f) + verticalLineToRelative(5.21f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-0.75f) + verticalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + lineTo(8.0f, 3.0f) + verticalLineToRelative(-0.25f) + close() + moveTo(9.0f, 13.0f) + verticalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-1.0f) + lineTo(9.0f, 13.0f) + close() + moveTo(5.75f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-7.5f) + close() + } + } + return _microscope!! + } + +private var _microscope: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Midi.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Midi.kt new file mode 100644 index 00000000..f907a6de --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Midi.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Midi: ImageVector + get() { + if (_midi != null) { + return _midi!! + } + _midi = fluentIcon(name = "Filled.Midi") { + fluentPath { + moveTo(21.25f, 4.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.29f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(14.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(2.75f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + lineTo(2.0f, 4.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.69f, 0.65f, -0.74f) + horizontalLineToRelative(18.6f) + close() + moveTo(6.0f, 12.0f) + lineTo(3.5f, 12.0f) + verticalLineToRelative(6.5f) + horizontalLineToRelative(17.0f) + lineTo(20.5f, 12.0f) + lineTo(18.0f, 12.0f) + verticalLineToRelative(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(16.5f, 12.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(13.0f, 12.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(9.5f, 12.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(6.0f, 12.0f) + close() + moveTo(17.25f, 7.5f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(6.25f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(9.25f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + } + } + return _midi!! + } + +private var _midi: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MobileOptimized.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MobileOptimized.kt new file mode 100644 index 00000000..b4e53673 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MobileOptimized.kt @@ -0,0 +1,93 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MobileOptimized: ImageVector + get() { + if (_mobileOptimized != null) { + return _mobileOptimized!! + } + _mobileOptimized = fluentIcon(name = "Filled.MobileOptimized") { + fluentPath { + moveTo(19.25f, 18.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(20.0f, 20.0f) + verticalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-2.1f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(2.0f) + horizontalLineToRelative(-2.0f) + close() + moveTo(2.75f, 18.5f) + horizontalLineToRelative(2.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(4.0f, 20.0f) + lineTo(2.75f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(2.1f) + horizontalLineToRelative(-2.0f) + close() + moveTo(16.75f, 5.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(6.5f, 6.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(9.5f) + close() + moveTo(12.25f, 12.51f) + horizontalLineToRelative(-2.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) + horizontalLineToRelative(2.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(14.25f, 9.5f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(14.35f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(4.75f, 2.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(4.0f, 4.0f) + lineTo(4.0f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(19.25f, 2.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + lineTo(20.0f, 4.0f) + horizontalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-2.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _mobileOptimized!! + } + +private var _mobileOptimized: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Molecule.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Molecule.kt new file mode 100644 index 00000000..48ff0c89 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Molecule.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Molecule: ImageVector + get() { + if (_molecule != null) { + return _molecule!! + } + _molecule = fluentIcon(name = "Filled.Molecule") { + fluentPath { + moveTo(16.0f, 12.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, false, -4.34f, -2.51f) + lineToRelative(-2.71f, 1.8f) + arcTo(3.99f, 3.99f, 0.0f, false, false, 2.0f, 14.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 7.18f, 2.43f) + lineToRelative(3.89f, 1.94f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.67f, -1.34f) + lineToRelative(-3.89f, -1.94f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -0.11f, -2.52f) + lineToRelative(2.86f, -1.9f) + curveToRelative(0.9f, 0.82f, 2.09f, 1.33f, 3.4f, 1.33f) + close() + } + } + return _molecule!! + } + +private var _molecule: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Money.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Money.kt new file mode 100644 index 00000000..444a4754 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Money.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Money: ImageVector + get() { + if (_money != null) { + return _money!! + } + _money = fluentIcon(name = "Filled.Money") { + fluentPath { + moveTo(2.0f, 6.75f) + curveTo(2.0f, 5.78f, 2.78f, 5.0f, 3.75f, 5.0f) + horizontalLineToRelative(13.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(3.75f, 17.0f) + curveTo(2.78f, 17.0f, 2.0f, 16.22f, 2.0f, 15.25f) + verticalLineToRelative(-8.5f) + close() + moveTo(5.0f, 6.25f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(1.0f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-1.0f) + lineTo(5.0f, 6.25f) + close() + moveTo(10.5f, 13.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, -4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) + close() + moveTo(3.25f, 14.0f) + horizontalLineToRelative(1.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.5f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-1.0f) + lineTo(3.25f, 14.0f) + close() + moveTo(16.0f, 14.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(-1.0f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(1.0f) + lineTo(16.0f, 15.75f) + verticalLineToRelative(-1.0f) + close() + moveTo(16.0f, 7.25f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(-1.5f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(1.0f) + lineTo(17.75f, 8.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(4.4f, 18.5f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 7.0f, 20.0f) + horizontalLineToRelative(10.25f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 22.0f, 15.25f) + lineTo(22.0f, 10.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -1.5f, -2.6f) + verticalLineToRelative(7.85f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(4.4f, 18.5f) + close() + } + } + return _money!! + } + +private var _money: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MoneyCalculator.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MoneyCalculator.kt new file mode 100644 index 00000000..d993cd88 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MoneyCalculator.kt @@ -0,0 +1,136 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MoneyCalculator: ImageVector + get() { + if (_moneyCalculator != null) { + return _moneyCalculator!! + } + _moneyCalculator = fluentIcon(name = "Filled.MoneyCalculator") { + fluentPath { + moveTo(2.0f, 5.75f) + curveTo(2.0f, 4.78f, 2.78f, 4.0f, 3.75f, 4.0f) + horizontalLineToRelative(13.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(19.0f, 11.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(3.0f) + lineTo(3.75f, 16.0f) + curveTo(2.78f, 16.0f, 2.0f, 15.22f, 2.0f, 14.25f) + verticalLineToRelative(-8.5f) + close() + moveTo(5.0f, 6.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(1.0f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-1.0f) + lineTo(5.0f, 5.25f) + verticalLineToRelative(1.0f) + close() + moveTo(10.5f, 12.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, -4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) + close() + moveTo(4.25f, 13.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.5f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-1.0f) + lineTo(3.25f, 13.0f) + horizontalLineToRelative(1.0f) + close() + moveTo(16.75f, 7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(-1.5f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(1.0f) + lineTo(17.75f, 7.0f) + horizontalLineToRelative(-1.0f) + close() + moveTo(4.4f, 17.5f) + lineTo(14.0f, 17.5f) + lineTo(14.0f, 19.0f) + lineTo(7.0f, 19.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.6f, -1.5f) + close() + moveTo(22.0f, 9.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-1.5f) + lineTo(20.5f, 6.4f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 22.0f, 9.0f) + close() + moveTo(16.5f, 12.0f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(8.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(5.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-8.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + horizontalLineToRelative(-5.0f) + close() + moveTo(17.0f, 16.5f) + horizontalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + close() + moveTo(20.0f, 16.5f) + horizontalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + close() + moveTo(17.0f, 18.5f) + horizontalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + close() + moveTo(20.0f, 18.5f) + horizontalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + close() + moveTo(17.0f, 20.5f) + horizontalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + close() + moveTo(20.0f, 20.5f) + horizontalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + close() + moveTo(16.5f, 14.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(4.0f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + verticalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + verticalLineToRelative(-1.0f) + close() + } + } + return _moneyCalculator!! + } + +private var _moneyCalculator: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MoneyDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MoneyDismiss.kt new file mode 100644 index 00000000..da523c69 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MoneyDismiss.kt @@ -0,0 +1,96 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MoneyDismiss: ImageVector + get() { + if (_moneyDismiss != null) { + return _moneyDismiss!! + } + _moneyDismiss = fluentIcon(name = "Filled.MoneyDismiss") { + fluentPath { + moveTo(2.0f, 6.75f) + curveTo(2.0f, 5.78f, 2.78f, 5.0f, 3.75f, 5.0f) + horizontalLineToRelative(13.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.42f) + arcTo(6.52f, 6.52f, 0.0f, false, false, 11.02f, 17.0f) + lineTo(3.75f, 17.0f) + curveTo(2.78f, 17.0f, 2.0f, 16.22f, 2.0f, 15.25f) + verticalLineToRelative(-8.5f) + close() + moveTo(5.0f, 7.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(1.0f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-1.0f) + lineTo(5.0f, 6.25f) + verticalLineToRelative(1.0f) + close() + moveTo(10.5f, 13.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, -4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) + close() + moveTo(4.25f, 14.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.5f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-1.0f) + lineTo(3.25f, 14.0f) + horizontalLineToRelative(1.0f) + close() + moveTo(16.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(-1.5f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(1.0f) + lineTo(17.75f, 8.0f) + horizontalLineToRelative(-1.0f) + close() + moveTo(4.4f, 18.5f) + horizontalLineToRelative(6.68f) + curveToRelative(0.08f, 0.52f, 0.22f, 1.03f, 0.42f, 1.5f) + lineTo(7.0f, 20.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.6f, -1.5f) + close() + moveTo(20.5f, 11.73f) + curveToRelative(0.55f, 0.29f, 1.06f, 0.65f, 1.5f, 1.08f) + lineTo(22.0f, 10.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -1.5f, -2.6f) + verticalLineToRelative(4.33f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-1.64f, -1.65f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.65f, 1.64f) + lineToRelative(-1.65f, -1.64f) + close() + } + } + return _moneyDismiss!! + } + +private var _moneyDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MoneyHand.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MoneyHand.kt new file mode 100644 index 00000000..374951a4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MoneyHand.kt @@ -0,0 +1,109 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MoneyHand: ImageVector + get() { + if (_moneyHand != null) { + return _moneyHand!! + } + _moneyHand = fluentIcon(name = "Filled.MoneyHand") { + fluentPath { + moveTo(6.25f, 2.0f) + curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) + verticalLineToRelative(15.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(7.5f) + curveToRelative(1.24f, 0.0f, 2.24f, -1.0f, 2.25f, -2.23f) + verticalLineToRelative(-1.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + curveToRelative(-0.45f, 0.0f, -0.74f, -0.12f, -0.94f, -0.28f) + curveToRelative(-0.2f, -0.17f, -0.38f, -0.43f, -0.5f, -0.79f) + arcToRelative(8.4f, 8.4f, 0.0f, false, true, -0.3f, -2.68f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.21f, -0.51f) + lineToRelative(-0.17f, -0.18f) + lineToRelative(-0.17f, -0.17f) + lineToRelative(-1.18f, -1.17f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.81f, -1.17f) + arcToRelative(0.62f, 0.62f, 0.0f, false, true, -0.02f, -0.32f) + curveToRelative(0.02f, -0.09f, 0.08f, -0.2f, 0.2f, -0.33f) + arcToRelative(0.7f, 0.7f, 0.0f, false, true, 0.33f, -0.2f) + arcToRelative(0.61f, 0.61f, 0.0f, false, true, 0.32f, 0.02f) + curveToRelative(0.3f, 0.08f, 0.7f, 0.34f, 1.17f, 0.81f) + lineToRelative(1.51f, 1.5f) + curveToRelative(0.76f, 0.75f, 1.38f, 1.36f, 1.72f, 1.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.1f, -1.02f) + lineTo(16.0f, 11.42f) + lineTo(16.0f, 8.06f) + lineToRelative(2.84f, 2.84f) + curveToRelative(0.42f, 0.42f, 0.66f, 1.0f, 0.66f, 1.6f) + verticalLineToRelative(8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-8.76f) + curveToRelative(0.0f, -1.0f, -0.4f, -1.95f, -1.1f, -2.65f) + lineTo(16.0f, 5.94f) + lineTo(16.0f, 4.25f) + curveTo(16.0f, 3.01f, 15.0f, 2.0f, 13.75f, 2.0f) + horizontalLineToRelative(-7.5f) + close() + moveTo(13.37f, 18.39f) + curveToRelative(0.33f, 0.26f, 0.7f, 0.44f, 1.13f, 0.53f) + lineTo(14.5f, 19.0f) + horizontalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(-1.5f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.9f, 0.52f, -1.67f, 1.28f, -2.03f) + curveToRelative(0.16f, 0.25f, 0.35f, 0.47f, 0.6f, 0.67f) + close() + moveTo(12.0f, 14.05f) + curveToRelative(0.0f, 0.25f, 0.0f, 0.52f, 0.02f, 0.8f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, -1.55f, -6.32f) + arcToRelative(2.48f, 2.48f, 0.0f, false, false, -0.97f, 1.32f) + curveToRelative(-0.1f, 0.38f, -0.07f, 0.76f, 0.02f, 1.1f) + curveToRelative(0.2f, 0.68f, 0.67f, 1.3f, 1.2f, 1.83f) + arcTo(66.72f, 66.72f, 0.0f, false, false, 11.96f, 14.0f) + lineToRelative(0.04f, 0.04f) + close() + moveTo(7.0f, 3.5f) + horizontalLineToRelative(1.5f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(5.5f, 6.5f) + lineTo(5.5f, 5.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(7.0f, 3.5f) + close() + moveTo(11.5f, 3.5f) + lineTo(13.0f, 3.5f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(0.75f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(-0.75f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + lineTo(11.5f, 3.5f) + close() + moveTo(8.5f, 20.5f) + lineTo(7.0f, 20.5f) + verticalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(5.5f, 19.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(0.75f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(0.75f) + close() + } + } + return _moneyHand!! + } + +private var _moneyHand: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MoneyOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MoneyOff.kt new file mode 100644 index 00000000..6d432ddf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MoneyOff.kt @@ -0,0 +1,93 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MoneyOff: ImageVector + get() { + if (_moneyOff != null) { + return _moneyOff!! + } + _moneyOff = fluentIcon(name = "Filled.MoneyOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineTo(3.94f, 5.0f) + horizontalLineToRelative(-0.19f) + curveTo(2.78f, 5.0f, 2.0f, 5.78f, 2.0f, 6.75f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(12.19f) + lineToRelative(1.5f, 1.5f) + lineTo(4.4f, 18.5f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 7.0f, 20.0f) + horizontalLineToRelative(10.25f) + curveToRelative(0.51f, 0.0f, 1.0f, -0.08f, 1.46f, -0.23f) + lineToRelative(2.01f, 2.01f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(11.93f, 12.99f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -3.17f, -3.17f) + lineTo(11.93f, 13.0f) + close() + moveTo(5.19f, 6.25f) + lineToRelative(1.3f, 1.3f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 4.24f, 9.5f) + horizontalLineToRelative(-1.0f) + lineTo(3.24f, 8.0f) + horizontalLineToRelative(1.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(0.19f) + close() + moveTo(4.25f, 14.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(1.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(1.0f) + lineTo(5.0f, 15.75f) + verticalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(17.75f, 14.0f) + horizontalLineToRelative(-0.57f) + lineToRelative(1.75f, 1.75f) + curveToRelative(0.04f, -0.16f, 0.07f, -0.33f, 0.07f, -0.5f) + verticalLineToRelative(-8.5f) + curveTo(19.0f, 5.78f, 18.22f, 5.0f, 17.25f, 5.0f) + lineTo(8.18f, 5.0f) + lineToRelative(7.68f, 7.68f) + curveToRelative(0.27f, -0.12f, 0.57f, -0.18f, 0.89f, -0.18f) + horizontalLineToRelative(1.0f) + lineTo(17.75f, 14.0f) + close() + moveTo(16.0f, 6.25f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(1.0f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(-1.0f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-1.0f) + lineTo(16.0f, 6.25f) + close() + moveTo(20.06f, 16.88f) + lineTo(21.15f, 17.97f) + curveToRelative(0.53f, -0.77f, 0.85f, -1.71f, 0.85f, -2.72f) + lineTo(22.0f, 10.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -1.5f, -2.6f) + verticalLineToRelative(7.85f) + curveToRelative(0.0f, 0.6f, -0.16f, 1.15f, -0.44f, 1.63f) + close() + } + } + return _moneyOff!! + } + +private var _moneyOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MoreCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MoreCircle.kt new file mode 100644 index 00000000..4632658a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MoreCircle.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MoreCircle: ImageVector + get() { + if (_moreCircle != null) { + return _moreCircle!! + } + _moreCircle = fluentIcon(name = "Filled.MoreCircle") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) + close() + moveTo(8.25f, 12.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(13.25f, 12.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(18.25f, 12.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + } + } + return _moreCircle!! + } + +private var _moreCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MoviesAndTv.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MoviesAndTv.kt new file mode 100644 index 00000000..4af42d7a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MoviesAndTv.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MoviesAndTv: ImageVector + get() { + if (_moviesAndTv != null) { + return _moviesAndTv!! + } + _moviesAndTv = fluentIcon(name = "Filled.MoviesAndTv") { + fluentPath { + moveToRelative(19.73f, 3.88f) + lineToRelative(0.05f, 0.15f) + lineToRelative(0.55f, 1.93f) + curveToRelative(0.1f, 0.36f, -0.08f, 0.74f, -0.42f, 0.89f) + lineToRelative(-0.1f, 0.03f) + lineTo(9.1f, 9.96f) + horizontalLineToRelative(11.16f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + verticalLineToRelative(8.6f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.57f, 2.74f) + lineTo(5.75f, 21.95f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.74f, -2.57f) + lineTo(3.0f, 19.2f) + verticalLineToRelative(-8.4f) + lineTo(2.48f, 9.0f) + curveToRelative(-0.4f, -1.41f, 0.36f, -2.87f, 1.72f, -3.35f) + lineToRelative(0.16f, -0.06f) + lineToRelative(12.02f, -3.44f) + curveToRelative(1.4f, -0.4f, 2.87f, 0.36f, 3.35f, 1.73f) + close() + moveTo(6.27f, 6.6f) + lineToRelative(-1.5f, 0.43f) + curveToRelative(-0.61f, 0.17f, -1.0f, 0.8f, -0.88f, 1.42f) + lineToRelative(0.03f, 0.12f) + lineToRelative(0.34f, 1.2f) + lineToRelative(0.3f, -0.08f) + lineToRelative(1.71f, -3.1f) + close() + moveTo(11.03f, 5.23f) + lineTo(8.31f, 6.01f) + lineTo(6.6f, 9.11f) + lineTo(9.32f, 8.32f) + lineTo(11.02f, 5.23f) + close() + moveTo(15.79f, 3.87f) + lineTo(13.07f, 4.65f) + lineTo(11.36f, 7.74f) + lineTo(14.07f, 6.96f) + lineTo(15.79f, 3.86f) + close() + moveTo(17.63f, 3.64f) + lineTo(16.11f, 6.38f) + lineTo(18.68f, 5.64f) + lineTo(18.34f, 4.44f) + curveToRelative(-0.1f, -0.38f, -0.38f, -0.66f, -0.7f, -0.8f) + close() + } + } + return _moviesAndTv!! + } + +private var _moviesAndTv: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Multiplier12X.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Multiplier12X.kt new file mode 100644 index 00000000..c4e2bd7b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Multiplier12X.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Multiplier12X: ImageVector + get() { + if (_multiplier12X != null) { + return _multiplier12X!! + } + _multiplier12X = fluentIcon(name = "Filled.Multiplier12X") { + fluentPath { + moveTo(10.34f, 10.49f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.14f, -0.82f) + verticalLineToRelative(-0.01f) + lineToRelative(0.04f, -0.1f) + curveToRelative(0.03f, -0.1f, 0.09f, -0.21f, 0.18f, -0.33f) + curveToRelative(0.15f, -0.2f, 0.45f, -0.48f, 1.15f, -0.48f) + curveToRelative(0.72f, 0.0f, 1.06f, 0.22f, 1.23f, 0.42f) + curveToRelative(0.17f, 0.23f, 0.31f, 0.65f, 0.18f, 1.41f) + arcToRelative(0.88f, 0.88f, 0.0f, false, true, -0.47f, 0.68f) + curveToRelative(-0.25f, 0.16f, -0.53f, 0.25f, -0.9f, 0.39f) + lineToRelative(-0.55f, 0.2f) + curveToRelative(-0.6f, 0.23f, -1.35f, 0.56f, -1.93f, 1.25f) + curveToRelative(-0.6f, 0.7f, -0.91f, 1.65f, -0.91f, 2.9f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(4.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-3.63f) + curveToRelative(0.09f, -0.28f, 0.2f, -0.47f, 0.32f, -0.6f) + curveToRelative(0.24f, -0.29f, 0.59f, -0.48f, 1.12f, -0.68f) + lineToRelative(0.33f, -0.13f) + curveToRelative(0.44f, -0.15f, 1.0f, -0.35f, 1.44f, -0.62f) + arcToRelative(2.87f, 2.87f, 0.0f, false, false, 1.4f, -2.05f) + arcToRelative(3.7f, 3.7f, 0.0f, false, false, -0.58f, -2.98f) + curveToRelative(-0.66f, -0.83f, -1.67f, -1.19f, -2.8f, -1.19f) + arcToRelative(3.29f, 3.29f, 0.0f, false, false, -3.22f, 2.14f) + arcToRelative(3.02f, 3.02f, 0.0f, false, false, -0.11f, 0.43f) + verticalLineToRelative(0.02f) + reflectiveCurveToRelative(-0.04f, 0.2f, 0.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.82f, 1.15f) + close() + moveTo(5.27f, 6.94f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 6.0f, 7.9f) + lineTo(6.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + verticalLineToRelative(-5.33f) + curveToRelative(-0.28f, 0.23f, -0.6f, 0.46f, -0.99f, 0.69f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 2.0f, 9.64f) + curveTo(3.23f, 8.9f, 3.67f, 8.17f, 4.07f, 7.5f) + lineToRelative(0.08f, -0.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.12f, -0.44f) + close() + moveTo(18.71f, 12.29f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, 1.42f) + lineToRelative(0.8f, 0.79f) + lineToRelative(-0.8f, 0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.4f) + lineToRelative(0.79f, -0.79f) + lineToRelative(0.8f, 0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, -1.42f) + lineToRelative(-0.79f, -0.79f) + lineToRelative(0.8f, -0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, -1.4f) + lineToRelative(-0.79f, 0.79f) + lineToRelative(-0.8f, -0.8f) + close() + moveTo(7.75f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + } + } + return _multiplier12X!! + } + +private var _multiplier12X: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Multiplier15X.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Multiplier15X.kt new file mode 100644 index 00000000..95efbd7d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Multiplier15X.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Multiplier15X: ImageVector + get() { + if (_multiplier15X != null) { + return _multiplier15X!! + } + _multiplier15X = fluentIcon(name = "Filled.Multiplier15X") { + fluentPath { + moveTo(6.0f, 7.9f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.85f, -0.52f) + lineToRelative(-0.08f, 0.12f) + curveToRelative(-0.4f, 0.67f, -0.84f, 1.4f, -2.08f, 2.14f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 11.36f) + curveToRelative(0.38f, -0.23f, 0.7f, -0.46f, 0.99f, -0.69f) + lineTo(3.99f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(5.99f, 7.9f) + close() + moveTo(11.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.99f, 0.86f) + lineToRelative(-0.5f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.15f, 1.13f) + lineToRelative(1.82f, -0.29f) + arcToRelative(1.53f, 1.53f, 0.0f, true, true, 0.24f, 3.05f) + horizontalLineToRelative(-0.28f) + arcToRelative(1.8f, 1.8f, 0.0f, false, true, -1.2f, -0.45f) + lineToRelative(-0.33f, -0.3f) + arcTo(1.0f, 1.0f, 0.0f, true, false, 9.6f, 16.0f) + lineToRelative(0.34f, 0.3f) + curveToRelative(0.7f, 0.61f, 1.59f, 0.95f, 2.51f, 0.95f) + horizontalLineToRelative(0.28f) + arcToRelative(3.53f, 3.53f, 0.0f, true, false, -0.56f, -7.03f) + lineToRelative(-0.48f, 0.08f) + lineToRelative(0.19f, -1.3f) + lineTo(15.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(18.7f, 12.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.4f, 1.4f) + lineToRelative(0.79f, 0.8f) + lineToRelative(-0.8f, 0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.4f) + lineToRelative(0.79f, -0.79f) + lineToRelative(0.8f, 0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, -1.42f) + lineToRelative(-0.79f, -0.79f) + lineToRelative(0.8f, -0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, -1.4f) + lineToRelative(-0.79f, 0.79f) + lineToRelative(-0.8f, -0.8f) + close() + moveTo(8.5f, 16.24f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + } + } + return _multiplier15X!! + } + +private var _multiplier15X: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Multiplier18X.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Multiplier18X.kt new file mode 100644 index 00000000..59a31eae --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Multiplier18X.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Multiplier18X: ImageVector + get() { + if (_multiplier18X != null) { + return _multiplier18X!! + } + _multiplier18X = fluentIcon(name = "Filled.Multiplier18X") { + fluentPath { + moveTo(16.0f, 9.5f) + curveToRelative(0.0f, 0.66f, -0.24f, 1.23f, -0.62f, 1.68f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 13.0f, 17.25f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -2.38f, -6.07f) + arcTo(2.56f, 2.56f, 0.0f, false, true, 10.0f, 9.5f) + curveToRelative(0.0f, -1.64f, 1.47f, -2.75f, 3.0f, -2.75f) + reflectiveCurveToRelative(3.0f, 1.11f, 3.0f, 2.75f) + close() + moveTo(13.0f, 8.75f) + curveToRelative(-0.68f, 0.0f, -1.0f, 0.46f, -1.0f, 0.75f) + curveToRelative(0.0f, 0.3f, 0.32f, 0.75f, 1.0f, 0.75f) + curveToRelative(0.68f, 0.0f, 1.0f, -0.46f, 1.0f, -0.75f) + curveToRelative(0.0f, -0.3f, -0.32f, -0.75f, -1.0f, -0.75f) + close() + moveTo(11.5f, 13.75f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) + close() + moveTo(7.75f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(17.29f, 12.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 0.0f) + lineToRelative(0.79f, 0.79f) + lineToRelative(0.8f, -0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.42f) + lineToRelative(-0.79f, 0.79f) + lineToRelative(0.8f, 0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 1.4f) + lineToRelative(-0.79f, -0.79f) + lineToRelative(-0.8f, 0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.42f) + lineToRelative(0.79f, -0.79f) + lineToRelative(-0.8f, -0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) + close() + moveTo(6.0f, 7.9f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.85f, -0.52f) + lineToRelative(-0.08f, 0.12f) + curveToRelative(-0.4f, 0.67f, -0.84f, 1.4f, -2.08f, 2.14f) + arcTo(1.0f, 1.0f, 0.0f, true, false, 3.0f, 11.36f) + curveToRelative(0.38f, -0.23f, 0.7f, -0.46f, 0.99f, -0.69f) + lineTo(3.99f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + lineTo(5.99f, 7.9f) + close() + } + } + return _multiplier18X!! + } + +private var _multiplier18X: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Multiplier1X.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Multiplier1X.kt new file mode 100644 index 00000000..3da16cba --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Multiplier1X.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Multiplier1X: ImageVector + get() { + if (_multiplier1X != null) { + return _multiplier1X!! + } + _multiplier1X = fluentIcon(name = "Filled.Multiplier1X") { + fluentPath { + moveTo(10.0f, 7.9f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.85f, -0.52f) + lineToRelative(-0.08f, 0.12f) + curveToRelative(-0.4f, 0.67f, -0.84f, 1.4f, -2.08f, 2.14f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 7.0f, 11.36f) + curveToRelative(0.38f, -0.23f, 0.7f, -0.46f, 0.99f, -0.69f) + lineTo(7.99f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(9.99f, 7.9f) + close() + moveTo(13.7f, 12.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.4f, 1.4f) + lineToRelative(0.79f, 0.8f) + lineToRelative(-0.8f, 0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.4f) + lineToRelative(0.79f, -0.78f) + lineToRelative(0.8f, 0.79f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, -1.42f) + lineToRelative(-0.79f, -0.79f) + lineToRelative(0.8f, -0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, -1.4f) + lineToRelative(-0.79f, 0.79f) + lineToRelative(-0.8f, -0.8f) + close() + } + } + return _multiplier1X!! + } + +private var _multiplier1X: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Multiplier2X.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Multiplier2X.kt new file mode 100644 index 00000000..afafb1a2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Multiplier2X.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Multiplier2X: ImageVector + get() { + if (_multiplier2X != null) { + return _multiplier2X!! + } + _multiplier2X = fluentIcon(name = "Filled.Multiplier2X") { + fluentPath { + moveTo(7.49f, 9.67f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.98f, -0.33f) + curveToRelative(-0.03f, 0.2f, 0.0f, 0.0f, 0.0f, 0.0f) + verticalLineToRelative(-0.02f) + arcToRelative(1.83f, 1.83f, 0.0f, false, true, 0.04f, -0.13f) + arcToRelative(3.02f, 3.02f, 0.0f, false, true, 0.55f, -1.17f) + arcToRelative(3.29f, 3.29f, 0.0f, false, true, 2.75f, -1.27f) + curveToRelative(1.13f, 0.0f, 2.14f, 0.36f, 2.8f, 1.19f) + curveToRelative(0.64f, 0.81f, 0.77f, 1.89f, 0.59f, 2.98f) + arcToRelative(2.87f, 2.87f, 0.0f, false, true, -1.41f, 2.05f) + curveToRelative(-0.44f, 0.27f, -1.0f, 0.47f, -1.43f, 0.62f) + lineToRelative(-0.34f, 0.13f) + curveToRelative(-0.53f, 0.2f, -0.88f, 0.39f, -1.12f, 0.67f) + curveToRelative(-0.12f, 0.14f, -0.23f, 0.33f, -0.32f, 0.61f) + horizontalLineToRelative(3.63f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + lineTo(6.5f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + curveToRelative(0.0f, -1.25f, 0.32f, -2.2f, 0.91f, -2.9f) + arcToRelative(4.55f, 4.55f, 0.0f, false, true, 1.93f, -1.25f) + lineToRelative(0.55f, -0.2f) + curveToRelative(0.37f, -0.14f, 0.65f, -0.23f, 0.9f, -0.39f) + arcToRelative(0.88f, 0.88f, 0.0f, false, false, 0.48f, -0.68f) + curveToRelative(0.13f, -0.76f, -0.02f, -1.18f, -0.2f, -1.4f) + curveToRelative(-0.15f, -0.21f, -0.5f, -0.43f, -1.22f, -0.43f) + curveToRelative(-0.7f, 0.0f, -1.0f, 0.27f, -1.15f, 0.48f) + arcToRelative(1.29f, 1.29f, 0.0f, false, false, -0.21f, 0.43f) + verticalLineToRelative(0.01f) + close() + moveTo(7.49f, 9.67f) + verticalLineToRelative(-0.01f) + close() + moveTo(7.49f, 9.67f) + close() + moveTo(14.71f, 12.29f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.42f, 1.42f) + lineToRelative(0.8f, 0.79f) + lineToRelative(-0.8f, 0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.4f) + lineToRelative(0.79f, -0.79f) + lineToRelative(0.8f, 0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, -1.42f) + lineToRelative(-0.79f, -0.79f) + lineToRelative(0.8f, -0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, -1.4f) + lineToRelative(-0.79f, 0.79f) + lineToRelative(-0.8f, -0.8f) + close() + } + } + return _multiplier2X!! + } + +private var _multiplier2X: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Multiplier5X.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Multiplier5X.kt new file mode 100644 index 00000000..8d557705 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Multiplier5X.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Multiplier5X: ImageVector + get() { + if (_multiplier5X != null) { + return _multiplier5X!! + } + _multiplier5X = fluentIcon(name = "Filled.Multiplier5X") { + fluentPath { + moveTo(7.01f, 7.86f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 8.0f, 7.0f) + horizontalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(8.87f, 9.0f) + lineToRelative(-0.19f, 1.3f) + lineToRelative(0.35f, -0.05f) + arcToRelative(3.65f, 3.65f, 0.0f, true, true, 0.55f, 7.25f) + arcToRelative(3.7f, 3.7f, 0.0f, false, true, -2.73f, -1.2f) + lineToRelative(-0.34f, -0.38f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.48f, -1.34f) + lineToRelative(0.34f, 0.37f) + curveToRelative(0.31f, 0.35f, 0.77f, 0.55f, 1.25f, 0.55f) + arcToRelative(1.65f, 1.65f, 0.0f, true, false, -0.24f, -3.28f) + lineToRelative(-1.68f, 0.27f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.15f, -1.13f) + lineToRelative(0.5f, -3.5f) + close() + moveTo(14.29f, 12.29f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 0.0f) + lineToRelative(0.79f, 0.8f) + lineToRelative(0.8f, -0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.42f) + lineToRelative(-0.79f, 0.79f) + lineToRelative(0.8f, 0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 1.4f) + lineToRelative(-0.79f, -0.79f) + lineToRelative(-0.8f, 0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.42f) + lineToRelative(0.79f, -0.79f) + lineToRelative(-0.8f, -0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) + close() + moveTo(4.75f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + } + } + return _multiplier5X!! + } + +private var _multiplier5X: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MultiselectLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MultiselectLtr.kt new file mode 100644 index 00000000..e4b9925f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MultiselectLtr.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MultiselectLtr: ImageVector + get() { + if (_multiselectLtr != null) { + return _multiselectLtr!! + } + _multiselectLtr = fluentIcon(name = "Filled.MultiselectLtr") { + fluentPath { + moveTo(6.7f, 3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) + lineTo(4.0f, 4.58f) + lineToRelative(-0.3f, -0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) + lineToRelative(1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) + close() + moveTo(10.0f, 17.0f) + horizontalLineToRelative(11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 1.99f) + lineTo(10.0f, 18.99f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 9.88f, 17.0f) + lineTo(10.0f, 17.0f) + close() + moveTo(10.0f, 11.0f) + horizontalLineToRelative(11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(10.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(10.0f, 11.0f) + close() + moveTo(10.0f, 5.0f) + horizontalLineToRelative(11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(10.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(10.0f, 5.0f) + close() + moveTo(5.3f, 16.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.4f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) + lineToRelative(-1.0f, -1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, -1.4f) + lineToRelative(0.3f, 0.29f) + lineToRelative(1.3f, -1.3f) + close() + } + } + return _multiselectLtr!! + } + +private var _multiselectLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MultiselectRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MultiselectRtl.kt new file mode 100644 index 00000000..47f0b5b9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MultiselectRtl.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MultiselectRtl: ImageVector + get() { + if (_multiselectRtl != null) { + return _multiselectRtl!! + } + _multiselectRtl = fluentIcon(name = "Filled.MultiselectRtl") { + fluentPath { + moveTo(21.7f, 3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) + lineTo(19.0f, 4.58f) + lineToRelative(-0.3f, -0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.4f, 1.42f) + lineToRelative(1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) + close() + moveTo(3.0f, 17.0f) + horizontalLineToRelative(11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 1.99f) + lineTo(3.0f, 18.99f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 2.88f, 17.0f) + lineTo(3.0f, 17.0f) + close() + moveTo(3.0f, 11.0f) + horizontalLineToRelative(11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(3.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(3.0f, 11.0f) + close() + moveTo(3.0f, 5.0f) + horizontalLineToRelative(11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(3.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(3.0f, 5.0f) + close() + moveTo(20.3f, 16.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.4f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) + lineToRelative(-1.0f, -1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, -1.4f) + lineToRelative(0.3f, 0.29f) + lineToRelative(1.3f, -1.3f) + close() + } + } + return _multiselectRtl!! + } + +private var _multiselectRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MusicNote1.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MusicNote1.kt new file mode 100644 index 00000000..2aca22bb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MusicNote1.kt @@ -0,0 +1,33 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MusicNote1: ImageVector + get() { + if (_musicNote1 != null) { + return _musicNote1!! + } + _musicNote1 = fluentIcon(name = "Filled.MusicNote1") { + fluentPath { + moveTo(11.51f, 2.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.01f, 0.7f) + verticalLineToRelative(12.13f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 1.5f, 3.37f) + verticalLineTo(8.83f) + lineToRelative(6.99f, 2.62f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.01f, -0.7f) + verticalLineTo(7.48f) + curveToRelative(0.0f, -1.35f, -0.84f, -2.56f, -2.1f, -3.04f) + lineToRelative(-6.39f, -2.4f) + close() + } + } + return _musicNote1!! + } + +private var _musicNote1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MusicNote2.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MusicNote2.kt new file mode 100644 index 00000000..5451935c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MusicNote2.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MusicNote2: ImageVector + get() { + if (_musicNote2 != null) { + return _musicNote2!! + } + _musicNote2 = fluentIcon(name = "Filled.MusicNote2") { + fluentPath { + moveTo(20.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, -0.72f) + lineToRelative(-10.0f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.53f, 0.72f) + verticalLineToRelative(9.88f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 1.5f, 2.62f) + verticalLineToRelative(-7.94f) + lineToRelative(8.5f, -2.55f) + verticalLineToRelative(5.87f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 1.5f, 2.62f) + verticalLineTo(2.75f) + close() + } + } + return _musicNote2!! + } + +private var _musicNote2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MusicNoteOff1.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MusicNoteOff1.kt new file mode 100644 index 00000000..651b236d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MusicNoteOff1.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MusicNoteOff1: ImageVector + get() { + if (_musicNoteOff1 != null) { + return _musicNoteOff1!! + } + _musicNoteOff1 = fluentIcon(name = "Filled.MusicNoteOff1") { + fluentPath { + moveToRelative(12.0f, 13.06f) + lineToRelative(8.72f, 8.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(8.28f, 8.28f) + verticalLineToRelative(3.32f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 1.5f, 3.37f) + verticalLineToRelative(-5.19f) + close() + moveTo(18.99f, 11.46f) + lineTo(12.02f, 8.84f) + lineTo(10.5f, 7.32f) + lineTo(10.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.01f, -0.7f) + lineToRelative(6.38f, 2.39f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 20.0f, 7.48f) + verticalLineToRelative(3.27f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.01f, 0.7f) + close() + } + } + return _musicNoteOff1!! + } + +private var _musicNoteOff1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MusicNoteOff2.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MusicNoteOff2.kt new file mode 100644 index 00000000..45a4520f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MusicNoteOff2.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MusicNoteOff2: ImageVector + get() { + if (_musicNoteOff2 != null) { + return _musicNoteOff2!! + } + _musicNoteOff2 = fluentIcon(name = "Filled.MusicNoteOff2") { + fluentPath { + moveTo(8.5f, 9.56f) + verticalLineToRelative(6.07f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 1.5f, 2.62f) + verticalLineToRelative(-7.19f) + lineToRelative(3.55f, 3.55f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 4.84f, 4.84f) + lineToRelative(2.33f, 2.33f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(8.5f, 9.56f) + close() + moveTo(16.5f, 13.0f) + lineTo(16.2f, 13.01f) + lineTo(19.99f, 16.81f) + arcToRelative(3.54f, 3.54f, 0.0f, false, false, 0.01f, -0.56f) + lineTo(20.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, -0.72f) + lineToRelative(-10.0f, 3.0f) + curveToRelative(-0.2f, 0.06f, -0.35f, 0.2f, -0.44f, 0.37f) + lineToRelative(4.1f, 4.1f) + lineToRelative(5.81f, -1.74f) + verticalLineToRelative(5.87f) + arcToRelative(3.48f, 3.48f, 0.0f, false, false, -2.0f, -0.63f) + close() + } + } + return _musicNoteOff2!! + } + +private var _musicNoteOff2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MyLocation.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MyLocation.kt new file mode 100644 index 00000000..7ab3709b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/MyLocation.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.MyLocation: ImageVector + get() { + if (_myLocation != null) { + return _myLocation!! + } + _myLocation = fluentIcon(name = "Filled.MyLocation") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(13.0f, 4.31f) + arcToRelative(7.75f, 7.75f, 0.0f, false, true, 6.69f, 6.7f) + lineTo(21.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(19.69f, 13.0f) + arcTo(7.75f, 7.75f, 0.0f, false, true, 13.0f, 19.69f) + lineTo(13.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(11.0f, 19.69f) + arcTo(7.75f, 7.75f, 0.0f, false, true, 4.31f, 13.0f) + lineTo(3.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(4.31f, 11.0f) + arcToRelative(7.75f, 7.75f, 0.0f, false, true, 6.7f, -6.69f) + lineTo(11.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(12.0f, 6.25f) + arcToRelative(5.75f, 5.75f, 0.0f, true, false, 0.0f, 11.5f) + arcToRelative(5.75f, 5.75f, 0.0f, false, false, 0.0f, -11.5f) + close() + moveTo(12.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, 0.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, -8.0f) + close() + } + } + return _myLocation!! + } + +private var _myLocation: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NavigationUnread.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NavigationUnread.kt new file mode 100644 index 00000000..4adbeb5b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NavigationUnread.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.NavigationUnread: ImageVector + get() { + if (_navigationUnread != null) { + return _navigationUnread!! + } + _navigationUnread = fluentIcon(name = "Filled.NavigationUnread") { + fluentPath { + moveTo(19.25f, 8.5f) + arcToRelative(2.75f, 2.75f, 0.0f, true, false, 0.0f, -5.5f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 0.0f, 5.5f) + close() + moveTo(15.71f, 7.0f) + arcToRelative(3.74f, 3.74f, 0.0f, false, true, -0.14f, -2.0f) + horizontalLineTo(2.88f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 7.0f) + horizontalLineToRelative(12.71f) + close() + moveTo(21.0f, 17.0f) + horizontalLineTo(2.88f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 19.0f) + horizontalLineToRelative(18.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, -2.0f) + close() + moveTo(3.0f, 11.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + horizontalLineTo(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + horizontalLineTo(3.0f) + close() + } + } + return _navigationUnread!! + } + +private var _navigationUnread: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NetworkCheck.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NetworkCheck.kt new file mode 100644 index 00000000..9b8bc99c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NetworkCheck.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.NetworkCheck: ImageVector + get() { + if (_networkCheck != null) { + return _networkCheck!! + } + _networkCheck = fluentIcon(name = "Filled.NetworkCheck") { + fluentPath { + moveToRelative(10.05f, 15.42f) + lineToRelative(6.26f, -8.48f) + arcToRelative(0.7f, 0.7f, 0.0f, false, true, 1.23f, 0.57f) + lineToRelative(-0.03f, 0.1f) + lineToRelative(-3.87f, 9.8f) + arcToRelative(2.07f, 2.07f, 0.0f, true, true, -3.74f, -1.76f) + lineToRelative(0.07f, -0.12f) + lineToRelative(0.08f, -0.11f) + lineToRelative(6.26f, -8.48f) + lineToRelative(-6.26f, 8.48f) + close() + moveTo(12.1f, 10.87f) + lineTo(10.87f, 12.53f) + arcToRelative(3.33f, 3.33f, 0.0f, false, false, -2.29f, 3.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, -0.07f) + arcToRelative(4.82f, 4.82f, 0.0f, false, true, 5.02f, -4.62f) + close() + moveTo(16.27f, 13.62f) + curveToRelative(0.28f, 0.59f, 0.43f, 1.22f, 0.46f, 1.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.38f, 0.44f) + lineToRelative(0.92f, -2.3f) + close() + moveTo(14.03f, 8.25f) + lineTo(13.07f, 9.56f) + arcToRelative(6.22f, 6.22f, 0.0f, false, false, -7.16f, 4.41f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.44f, -0.4f) + arcToRelative(7.7f, 7.7f, 0.0f, false, true, 9.56f, -5.32f) + close() + moveTo(17.54f, 10.39f) + arcToRelative(7.66f, 7.66f, 0.0f, false, true, 1.8f, 3.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.44f, 0.42f) + arcToRelative(6.23f, 6.23f, 0.0f, false, false, -0.88f, -1.84f) + lineToRelative(-0.1f, -0.14f) + lineToRelative(0.62f, -1.59f) + close() + moveTo(15.98f, 5.85f) + lineTo(15.89f, 5.91f) + curveToRelative(-0.12f, 0.08f, -0.23f, 0.18f, -0.33f, 0.3f) + lineToRelative(-0.1f, 0.11f) + lineToRelative(-0.54f, 0.73f) + arcToRelative(9.14f, 9.14f, 0.0f, false, false, -11.54f, 5.32f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.4f, -0.54f) + arcToRelative(10.64f, 10.64f, 0.0f, false, true, 14.0f, -5.97f) + close() + moveTo(18.61f, 7.41f) + arcToRelative(10.65f, 10.65f, 0.0f, false, true, 3.22f, 4.41f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.4f, 0.55f) + arcToRelative(9.17f, 9.17f, 0.0f, false, false, -2.32f, -3.4f) + lineToRelative(0.38f, -0.97f) + curveToRelative(0.07f, -0.2f, 0.11f, -0.39f, 0.12f, -0.59f) + close() + } + } + return _networkCheck!! + } + +private var _networkCheck: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/New.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/New.kt new file mode 100644 index 00000000..e7f22af3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/New.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.New: ImageVector + get() { + if (_new != null) { + return _new!! + } + _new = fluentIcon(name = "Filled.New") { + fluentPath { + moveTo(18.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineTo(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(4.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineTo(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(7.7f, 6.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.4f) + lineToRelative(7.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, -1.4f) + lineToRelative(-7.0f, -7.0f) + close() + } + } + return _new!! + } + +private var _new: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/News.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/News.kt new file mode 100644 index 00000000..7eafc9c2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/News.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.News: ImageVector + get() { + if (_news != null) { + return _news!! + } + _news = fluentIcon(name = "Filled.News") { + fluentPath { + moveTo(16.75f, 4.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + lineTo(19.0f, 17.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.09f) + lineTo(20.0f, 7.01f) + curveToRelative(1.07f, 0.12f, 1.92f, 1.0f, 2.0f, 2.08f) + verticalLineToRelative(7.66f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(5.25f, 20.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 16.75f) + lineTo(2.0f, 6.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 4.0f) + horizontalLineToRelative(12.5f) + close() + moveTo(9.25f, 11.0f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.41f, 0.33f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(15.25f, 14.5f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(2.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(8.5f, 12.5f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(2.0f) + close() + moveTo(15.25f, 11.0f) + horizontalLineToRelative(-2.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + lineToRelative(2.5f, -0.01f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(15.25f, 7.5f) + horizontalLineToRelative(-9.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(9.5f) + lineToRelative(0.1f, -0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + } + } + return _news!! + } + +private var _news: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Next.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Next.kt new file mode 100644 index 00000000..1895334a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Next.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Next: ImageVector + get() { + if (_next != null) { + return _next!! + } + _next = fluentIcon(name = "Filled.Next") { + fluentPath { + moveTo(3.0f, 4.75f) + curveToRelative(0.0f, -1.4f, 1.58f, -2.24f, 2.74f, -1.44f) + lineToRelative(10.5f, 7.2f) + curveToRelative(1.0f, 0.68f, 1.01f, 2.17f, 0.0f, 2.87f) + lineToRelative(-10.5f, 7.3f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 3.0f, 19.25f) + lineTo(3.0f, 4.75f) + close() + moveTo(21.0f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(21.0f, 3.75f) + close() + } + } + return _next!! + } + +private var _next: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Note.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Note.kt new file mode 100644 index 00000000..529912d8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Note.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Note: ImageVector + get() { + if (_note != null) { + return _note!! + } + _note = fluentIcon(name = "Filled.Note") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + lineTo(21.0f, 13.0f) + horizontalLineToRelative(-4.75f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 13.0f, 16.25f) + lineTo(13.0f, 21.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(20.56f, 14.5f) + lineTo(14.5f, 20.56f) + verticalLineToRelative(-4.31f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(4.31f) + close() + } + } + return _note!! + } + +private var _note: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NoteAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NoteAdd.kt new file mode 100644 index 00000000..32893a90 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NoteAdd.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.NoteAdd: ImageVector + get() { + if (_noteAdd != null) { + return _noteAdd!! + } + _noteAdd = fluentIcon(name = "Filled.NoteAdd") { + fluentPath { + moveTo(12.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(7.0f, 7.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + lineTo(6.0f, 7.0f) + lineTo(3.5f, 7.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(6.0f, 6.0f) + lineTo(6.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + lineTo(7.0f, 6.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(7.0f, 7.0f) + close() + moveTo(6.5f, 13.0f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, 5.48f, -10.0f) + horizontalLineToRelative(5.77f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + lineTo(21.0f, 13.0f) + horizontalLineToRelative(-4.75f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 13.0f, 16.25f) + lineTo(13.0f, 21.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + verticalLineToRelative(-5.77f) + arcTo(6.47f, 6.47f, 0.0f, false, false, 6.5f, 13.0f) + close() + moveTo(20.56f, 14.5f) + lineTo(14.5f, 20.56f) + verticalLineToRelative(-4.31f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(4.31f) + close() + } + } + return _noteAdd!! + } + +private var _noteAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NoteEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NoteEdit.kt new file mode 100644 index 00000000..8fc6b3e7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NoteEdit.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.NoteEdit: ImageVector + get() { + if (_noteEdit != null) { + return _noteEdit!! + } + _noteEdit = fluentIcon(name = "Filled.NoteEdit") { + fluentPath { + moveTo(3.0f, 17.75f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(4.92f) + lineToRelative(0.35f, -1.42f) + curveToRelative(0.16f, -0.65f, 0.5f, -1.24f, 0.97f, -1.72f) + lineToRelative(5.9f, -5.9f) + arcToRelative(3.28f, 3.28f, 0.0f, false, true, 2.61f, -0.95f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(11.0f, 3.0f) + verticalLineToRelative(4.75f) + curveTo(11.0f, 9.55f, 9.54f, 11.0f, 7.75f, 11.0f) + lineTo(3.0f, 11.0f) + verticalLineToRelative(6.75f) + close() + moveTo(9.5f, 3.44f) + lineTo(3.44f, 9.5f) + horizontalLineToRelative(4.31f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(9.5f, 3.44f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _noteEdit!! + } + +private var _noteEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Notebook.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Notebook.kt new file mode 100644 index 00000000..01698de4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Notebook.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Notebook: ImageVector + get() { + if (_notebook != null) { + return _notebook!! + } + _notebook = fluentIcon(name = "Filled.Notebook") { + fluentPath { + moveTo(16.75f, 2.0f) + curveTo(17.99f, 2.0f, 19.0f, 3.0f, 19.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(10.5f) + close() + moveTo(20.0f, 15.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 18.0f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(0.75f) + lineTo(20.0f, 15.0f) + close() + moveTo(20.0f, 11.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 14.0f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(0.75f) + lineTo(20.0f, 11.0f) + close() + moveTo(20.0f, 7.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 10.0f) + lineTo(20.0f, 7.0f) + horizontalLineToRelative(0.75f) + lineTo(20.0f, 7.0f) + close() + moveTo(14.75f, 5.5f) + horizontalLineToRelative(-6.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + verticalLineToRelative(1.6f) + curveToRelative(0.0f, 0.38f, 0.27f, 0.7f, 0.64f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(6.5f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.65f) + verticalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + } + } + return _notebook!! + } + +private var _notebook: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NotebookAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NotebookAdd.kt new file mode 100644 index 00000000..9b396bdd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NotebookAdd.kt @@ -0,0 +1,99 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.NotebookAdd: ImageVector + get() { + if (_notebookAdd != null) { + return _notebookAdd!! + } + _notebookAdd = fluentIcon(name = "Filled.NotebookAdd") { + fluentPath { + moveTo(16.75f, 2.0f) + curveTo(17.99f, 2.0f, 19.0f, 3.0f, 19.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-5.56f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) + lineTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(10.5f) + close() + moveTo(14.75f, 5.5f) + horizontalLineToRelative(-6.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + verticalLineToRelative(1.6f) + curveToRelative(0.0f, 0.38f, 0.27f, 0.7f, 0.64f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(6.5f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.65f) + verticalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + } + fluentPath { + moveTo(20.0f, 15.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineTo(20.0f) + verticalLineToRelative(-3.0f) + close() + } + fluentPath { + moveTo(20.0f, 11.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineTo(20.0f) + verticalLineToRelative(-3.0f) + close() + } + fluentPath { + moveTo(20.0f, 7.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineTo(20.0f) + verticalLineTo(7.0f) + close() + } + fluentPath { + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(7.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + verticalLineTo(18.0f) + horizontalLineTo(3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineTo(6.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + verticalLineTo(17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineTo(7.0f) + close() + } + } + return _notebookAdd!! + } + +private var _notebookAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NotebookError.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NotebookError.kt new file mode 100644 index 00000000..f3cfca7a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NotebookError.kt @@ -0,0 +1,88 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.NotebookError: ImageVector + get() { + if (_notebookError != null) { + return _notebookError!! + } + _notebookError = fluentIcon(name = "Filled.NotebookError") { + fluentPath { + moveTo(6.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(16.75f, 2.0f) + curveTo(17.99f, 2.0f, 19.0f, 3.0f, 19.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-5.56f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) + lineTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(10.5f) + close() + moveTo(6.5f, 19.88f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, 1.25f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, -1.25f) + close() + moveTo(6.5f, 14.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.41f) + verticalLineToRelative(4.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-4.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.4f) + close() + moveTo(20.75f, 15.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 18.0f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(0.75f) + close() + moveTo(20.75f, 11.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 14.0f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(0.75f) + close() + moveTo(20.75f, 7.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 10.0f) + lineTo(20.0f, 7.0f) + horizontalLineToRelative(0.75f) + close() + moveTo(14.75f, 5.5f) + horizontalLineToRelative(-6.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.75f, 0.65f) + verticalLineToRelative(1.6f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(6.5f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + verticalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.74f, -0.75f) + close() + } + } + return _notebookError!! + } + +private var _notebookError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NotebookLightning.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NotebookLightning.kt new file mode 100644 index 00000000..a934acd1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NotebookLightning.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.NotebookLightning: ImageVector + get() { + if (_notebookLightning != null) { + return _notebookLightning!! + } + _notebookLightning = fluentIcon(name = "Filled.NotebookLightning") { + fluentPath { + moveTo(6.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(16.75f, 2.0f) + curveTo(17.99f, 2.0f, 19.0f, 3.0f, 19.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-5.56f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) + lineTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(10.5f) + close() + moveTo(7.5f, 14.0f) + lineTo(6.0f, 14.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.47f, 0.34f) + lineToRelative(-1.0f, 3.0f) + arcTo(0.5f, 0.5f, 0.0f, false, false, 5.0f, 18.0f) + horizontalLineToRelative(0.8f) + lineToRelative(-0.77f, 2.34f) + curveToRelative(-0.2f, 0.56f, 0.58f, 0.92f, 0.9f, 0.42f) + lineToRelative(2.5f, -4.0f) + arcTo(0.5f, 0.5f, 0.0f, false, false, 8.0f, 16.0f) + horizontalLineToRelative(-0.45f) + lineToRelative(0.43f, -1.35f) + arcTo(0.5f, 0.5f, 0.0f, false, false, 7.5f, 14.0f) + close() + moveTo(20.75f, 15.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 18.0f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(0.75f) + close() + moveTo(20.75f, 11.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 14.0f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(0.75f) + close() + moveTo(20.75f, 7.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 10.0f) + lineTo(20.0f, 7.0f) + horizontalLineToRelative(0.75f) + close() + moveTo(14.75f, 5.5f) + horizontalLineToRelative(-6.5f) + curveToRelative(-0.38f, 0.0f, -0.69f, 0.28f, -0.74f, 0.65f) + verticalLineToRelative(1.6f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.64f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(6.5f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + verticalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + } + } + return _notebookLightning!! + } + +private var _notebookLightning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NotebookQuestionMark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NotebookQuestionMark.kt new file mode 100644 index 00000000..f8e1958a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NotebookQuestionMark.kt @@ -0,0 +1,97 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.NotebookQuestionMark: ImageVector + get() { + if (_notebookQuestionMark != null) { + return _notebookQuestionMark!! + } + _notebookQuestionMark = fluentIcon(name = "Filled.NotebookQuestionMark") { + fluentPath { + moveTo(6.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(16.75f, 2.0f) + curveTo(17.99f, 2.0f, 19.0f, 3.0f, 19.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-5.56f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) + lineTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(10.5f) + close() + moveTo(6.5f, 19.88f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, 1.25f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, -1.25f) + close() + moveTo(6.5f, 14.0f) + curveToRelative(-1.05f, 0.0f, -1.86f, 0.82f, -1.85f, 1.96f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, -0.01f) + curveToRelative(0.0f, -0.58f, 0.36f, -0.95f, 0.85f, -0.95f) + curveToRelative(0.47f, 0.0f, 0.85f, 0.4f, 0.85f, 0.95f) + curveToRelative(0.0f, 0.23f, -0.07f, 0.4f, -0.31f, 0.68f) + lineToRelative(-0.1f, 0.11f) + lineToRelative(-0.27f, 0.3f) + curveToRelative(-0.48f, 0.53f, -0.67f, 0.89f, -0.67f, 1.46f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + curveToRelative(0.0f, -0.23f, 0.08f, -0.4f, 0.32f, -0.7f) + lineToRelative(0.1f, -0.1f) + lineToRelative(0.27f, -0.3f) + curveToRelative(0.48f, -0.53f, 0.66f, -0.88f, 0.66f, -1.45f) + curveToRelative(0.0f, -1.1f, -0.82f, -1.95f, -1.85f, -1.95f) + close() + moveTo(20.75f, 15.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 18.0f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(0.75f) + close() + moveTo(20.75f, 11.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 14.0f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(0.75f) + close() + moveTo(20.75f, 7.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 10.0f) + lineTo(20.0f, 7.0f) + horizontalLineToRelative(0.75f) + close() + moveTo(14.75f, 5.5f) + horizontalLineToRelative(-6.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + verticalLineToRelative(1.6f) + curveToRelative(0.0f, 0.38f, 0.27f, 0.7f, 0.64f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(6.5f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + verticalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.74f, -0.75f) + close() + } + } + return _notebookQuestionMark!! + } + +private var _notebookQuestionMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NotebookSection.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NotebookSection.kt new file mode 100644 index 00000000..3f62384d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NotebookSection.kt @@ -0,0 +1,39 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.NotebookSection: ImageVector + get() { + if (_notebookSection != null) { + return _notebookSection!! + } + _notebookSection = fluentIcon(name = "Filled.NotebookSection") { + fluentPath { + moveTo(15.65f, 2.0f) + horizontalLineToRelative(0.1f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineTo(20.0f) + horizontalLineTo(9.25f) + curveTo(8.01f, 20.0f, 7.0f, 18.99f, 7.0f, 17.75f) + verticalLineTo(6.25f) + curveTo(7.0f, 5.01f, 8.0f, 4.0f, 9.25f, 4.0f) + horizontalLineTo(15.0f) + verticalLineTo(2.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(-0.1f) + close() + } + } + return _notebookSection!! + } + +private var _notebookSection: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NotebookSectionArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NotebookSectionArrowRight.kt new file mode 100644 index 00000000..1049676b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NotebookSectionArrowRight.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.NotebookSectionArrowRight: ImageVector + get() { + if (_notebookSectionArrowRight != null) { + return _notebookSectionArrowRight!! + } + _notebookSectionArrowRight = fluentIcon(name = "Filled.NotebookSectionArrowRight") { + fluentPath { + moveTo(15.65f, 2.0f) + horizontalLineToRelative(0.1f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(8.33f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -5.0f, 8.92f) + horizontalLineTo(9.25f) + curveTo(8.01f, 20.0f, 7.0f, 18.99f, 7.0f, 17.75f) + verticalLineTo(6.25f) + curveTo(7.0f, 5.01f, 8.0f, 4.0f, 9.25f, 4.0f) + horizontalLineTo(15.0f) + verticalLineTo(2.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + close() + } + fluentPath { + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(19.29f, 17.0f) + lineTo(14.5f, 17.0f) + close() + } + } + return _notebookSectionArrowRight!! + } + +private var _notebookSectionArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NotebookSubsection.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NotebookSubsection.kt new file mode 100644 index 00000000..c530995d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NotebookSubsection.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.NotebookSubsection: ImageVector + get() { + if (_notebookSubsection != null) { + return _notebookSubsection!! + } + _notebookSubsection = fluentIcon(name = "Filled.NotebookSubsection") { + fluentPath { + moveTo(9.0f, 2.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.5f, 4.5f) + verticalLineToRelative(9.4f) + curveToRelative(0.0f, 0.98f, 0.63f, 1.81f, 1.5f, 2.12f) + verticalLineTo(6.5f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(5.0f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 11.88f, 2.0f) + horizontalLineTo(9.0f) + close() + } + fluentPath { + moveTo(7.0f, 6.75f) + curveTo(7.0f, 5.51f, 8.0f, 4.5f, 9.25f, 4.5f) + horizontalLineTo(15.0f) + verticalLineTo(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineTo(20.0f) + horizontalLineTo(9.25f) + curveTo(8.01f, 20.0f, 7.0f, 19.0f, 7.0f, 17.75f) + verticalLineToRelative(-11.0f) + close() + } + } + return _notebookSubsection!! + } + +private var _notebookSubsection: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NotebookSync.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NotebookSync.kt new file mode 100644 index 00000000..bc58409c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NotebookSync.kt @@ -0,0 +1,102 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.NotebookSync: ImageVector + get() { + if (_notebookSync != null) { + return _notebookSync!! + } + _notebookSync = fluentIcon(name = "Filled.NotebookSync") { + fluentPath { + moveTo(16.75f, 2.0f) + curveTo(17.99f, 2.0f, 19.0f, 3.0f, 19.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-5.56f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 4.0f, 11.5f) + lineTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(10.5f) + close() + moveTo(14.75f, 5.5f) + horizontalLineToRelative(-6.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + verticalLineToRelative(1.6f) + curveToRelative(0.0f, 0.38f, 0.27f, 0.7f, 0.64f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(6.5f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.65f) + verticalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(20.0f, 15.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 18.0f) + verticalLineToRelative(-3.0f) + close() + moveTo(20.0f, 11.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 14.0f) + verticalLineToRelative(-3.0f) + close() + moveTo(20.0f, 7.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 10.0f) + lineTo(20.0f, 7.0f) + close() + moveTo(1.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) + close() + moveTo(9.5f, 14.0f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + verticalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -0.8f, -0.59f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) + verticalLineToRelative(-0.55f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + close() + moveTo(4.0f, 19.95f) + verticalLineToRelative(0.55f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.77f, 0.65f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) + close() + } + } + return _notebookSync!! + } + +private var _notebookSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Notepad.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Notepad.kt new file mode 100644 index 00000000..c97004a5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Notepad.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Notepad: ImageVector + get() { + if (_notepad != null) { + return _notepad!! + } + _notepad = fluentIcon(name = "Filled.Notepad") { + fluentPath { + moveTo(16.25f, 2.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(0.75f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + lineTo(20.0f, 16.0f) + horizontalLineToRelative(-3.91f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 14.0f, 18.1f) + lineTo(14.0f, 22.0f) + lineTo(5.75f, 22.0f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-14.0f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(0.75f) + verticalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.85f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.85f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(19.55f, 17.5f) + lineTo(15.49f, 21.57f) + verticalLineToRelative(-3.32f) + lineToRelative(0.01f, -0.1f) + curveToRelative(0.05f, -0.33f, 0.31f, -0.6f, 0.64f, -0.64f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(3.32f) + close() + moveTo(11.25f, 16.0f) + horizontalLineToRelative(-4.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(11.35f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(16.25f, 12.0f) + horizontalLineToRelative(-9.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(9.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(16.25f, 8.0f) + horizontalLineToRelative(-9.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(9.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + } + } + return _notepad!! + } + +private var _notepad: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NotepadPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NotepadPerson.kt new file mode 100644 index 00000000..a57c5d0f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NotepadPerson.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.NotepadPerson: ImageVector + get() { + if (_notepadPerson != null) { + return _notepadPerson!! + } + _notepadPerson = fluentIcon(name = "Filled.NotepadPerson") { + fluentPath { + moveTo(16.25f, 2.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(0.75f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(5.59f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 16.05f, 17.0f) + horizontalLineToRelative(-0.28f) + arcTo(2.77f, 2.77f, 0.0f, false, false, 13.0f, 19.77f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 0.75f, 0.21f, 1.49f, 0.67f, 2.13f) + lineTo(5.75f, 22.0f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-14.0f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(0.75f) + verticalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.85f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.85f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(11.25f, 16.0f) + horizontalLineToRelative(-4.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(11.35f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(16.25f, 8.0f) + horizontalLineToRelative(-9.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(9.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(6.5f, 12.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(21.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(23.0f, 19.88f) + curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) + reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _notepadPerson!! + } + +private var _notepadPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NumberCircle1.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NumberCircle1.kt new file mode 100644 index 00000000..93959686 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NumberCircle1.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.NumberCircle1: ImageVector + get() { + if (_numberCircle1 != null) { + return _numberCircle1!! + } + _numberCircle1 = fluentIcon(name = "Filled.NumberCircle1") { + fluentPath { + moveTo(12.0f, 22.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) + close() + moveTo(13.5f, 7.25f) + verticalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(12.0f, 10.1f) + arcToRelative(4.99f, 4.99f, 0.0f, false, true, -2.01f, 1.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.48f, -1.42f) + curveToRelative(0.57f, -0.2f, 1.15f, -0.64f, 1.63f, -1.23f) + curveToRelative(0.47f, -0.59f, 0.78f, -1.23f, 0.87f, -1.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.49f, 0.14f) + close() + } + } + return _numberCircle1!! + } + +private var _numberCircle1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NumberRow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NumberRow.kt new file mode 100644 index 00000000..5d0a834b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NumberRow.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.NumberRow: ImageVector + get() { + if (_numberRow != null) { + return _numberRow!! + } + _numberRow = fluentIcon(name = "Filled.NumberRow") { + fluentPath { + moveTo(4.75f, 4.0f) + horizontalLineToRelative(4.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.75f) + verticalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 8.75f, 20.0f) + horizontalLineToRelative(-4.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) + lineTo(2.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) + close() + moveTo(6.0f, 9.0f) + verticalLineToRelative(6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(7.5f, 9.0f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 6.0f, 9.0f) + close() + moveTo(15.25f, 4.0f) + horizontalLineToRelative(4.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) + verticalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) + horizontalLineToRelative(-4.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, -2.75f) + lineTo(12.5f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 15.25f, 4.0f) + close() + moveTo(17.5f, 9.75f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(17.0f, 14.25f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(1.25f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(19.0f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.25f) + close() + } + } + return _numberRow!! + } + +private var _numberRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NumberSymbol.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NumberSymbol.kt new file mode 100644 index 00000000..0f5267c6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NumberSymbol.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.NumberSymbol: ImageVector + get() { + if (_numberSymbol != null) { + return _numberSymbol!! + } + _numberSymbol = fluentIcon(name = "Filled.NumberSymbol") { + fluentPath { + moveTo(10.98f, 3.16f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.97f, -0.32f) + lineTo(8.15f, 8.0f) + horizontalLineTo(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(3.82f) + lineToRelative(-0.67f, 4.0f) + horizontalLineTo(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(3.82f) + lineTo(6.0f, 20.84f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.97f, 0.32f) + lineTo(8.84f, 16.0f) + horizontalLineToRelative(4.98f) + lineToRelative(-0.8f, 4.84f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.97f, 0.32f) + lineToRelative(0.86f, -5.17f) + horizontalLineTo(20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + horizontalLineToRelative(-3.82f) + lineToRelative(0.67f, -4.0f) + horizontalLineTo(21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + horizontalLineToRelative(-3.82f) + lineToRelative(0.8f, -4.83f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.97f, -0.32f) + lineToRelative(-0.86f, 5.15f) + horizontalLineToRelative(-4.97f) + lineToRelative(0.8f, -4.83f) + close() + moveTo(9.85f, 10.0f) + horizontalLineToRelative(4.97f) + lineToRelative(-0.67f, 4.0f) + horizontalLineTo(9.18f) + lineToRelative(0.67f, -4.0f) + close() + } + } + return _numberSymbol!! + } + +private var _numberSymbol: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NumberSymbolDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NumberSymbolDismiss.kt new file mode 100644 index 00000000..4bf0557e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NumberSymbolDismiss.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.NumberSymbolDismiss: ImageVector + get() { + if (_numberSymbolDismiss != null) { + return _numberSymbolDismiss!! + } + _numberSymbolDismiss = fluentIcon(name = "Filled.NumberSymbolDismiss") { + fluentPath { + moveTo(10.98f, 3.16f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.97f, -0.32f) + lineTo(8.15f, 8.0f) + lineTo(4.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(3.82f) + lineToRelative(-0.67f, 4.0f) + lineTo(3.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(3.82f) + lineTo(6.0f, 20.84f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.97f, 0.32f) + lineTo(8.84f, 16.0f) + horizontalLineToRelative(2.33f) + curveToRelative(0.18f, -0.72f, 0.47f, -1.4f, 0.85f, -2.0f) + lineTo(9.18f, 14.0f) + lineToRelative(0.67f, -4.0f) + horizontalLineToRelative(4.97f) + lineToRelative(-0.29f, 1.71f) + arcToRelative(6.46f, 6.46f, 0.0f, false, true, 2.14f, -0.66f) + lineToRelative(0.18f, -1.06f) + lineTo(21.0f, 9.99f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + horizontalLineToRelative(-3.82f) + lineToRelative(0.8f, -4.83f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.97f, -0.32f) + lineToRelative(-0.86f, 5.15f) + horizontalLineToRelative(-4.97f) + lineToRelative(0.8f, -4.83f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-1.64f, -1.65f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.65f, 1.64f) + lineToRelative(-1.65f, -1.64f) + close() + } + } + return _numberSymbolDismiss!! + } + +private var _numberSymbolDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NumberSymbolSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NumberSymbolSquare.kt new file mode 100644 index 00000000..34843526 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/NumberSymbolSquare.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.NumberSymbolSquare: ImageVector + get() { + if (_numberSymbolSquare != null) { + return _numberSymbolSquare!! + } + _numberSymbolSquare = fluentIcon(name = "Filled.NumberSymbolSquare") { + fluentPath { + moveToRelative(13.44f, 11.0f) + lineToRelative(-0.4f, 2.0f) + horizontalLineToRelative(-2.47f) + lineToRelative(0.4f, -2.0f) + horizontalLineToRelative(2.47f) + close() + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(10.9f, 7.51f) + curveToRelative(0.4f, 0.09f, 0.67f, 0.48f, 0.59f, 0.89f) + lineToRelative(-0.22f, 1.1f) + horizontalLineToRelative(2.47f) + lineToRelative(0.28f, -1.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.47f, 0.3f) + lineToRelative(-0.22f, 1.1f) + horizontalLineToRelative(0.98f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.28f) + lineToRelative(-0.4f, 2.0f) + horizontalLineToRelative(1.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.48f) + lineToRelative(-0.28f, 1.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.48f, -0.3f) + lineToRelative(0.23f, -1.1f) + horizontalLineToRelative(-2.47f) + lineToRelative(-0.28f, 1.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.48f, -0.3f) + lineToRelative(0.23f, -1.1f) + horizontalLineToRelative(-0.99f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.29f) + lineToRelative(0.4f, -2.0f) + lineTo(8.25f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.49f) + lineToRelative(0.28f, -1.4f) + curveToRelative(0.08f, -0.4f, 0.47f, -0.67f, 0.88f, -0.59f) + close() + } + } + return _numberSymbolSquare!! + } + +private var _numberSymbolSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/OpenFolder.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/OpenFolder.kt new file mode 100644 index 00000000..92f03733 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/OpenFolder.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.OpenFolder: ImageVector + get() { + if (_openFolder != null) { + return _openFolder!! + } + _openFolder = fluentIcon(name = "Filled.OpenFolder") { + fluentPath { + moveTo(6.75f, 3.0f) + horizontalLineToRelative(10.5f) + curveToRelative(2.0f, 0.0f, 3.64f, 1.57f, 3.75f, 3.55f) + verticalLineToRelative(4.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, 0.1f) + verticalLineToRelative(-4.6f) + curveToRelative(0.0f, -1.19f, -0.93f, -2.16f, -2.1f, -2.24f) + horizontalLineToRelative(-0.16f) + lineTo(6.75f, 4.5f) + curveToRelative(-1.18f, 0.0f, -2.15f, 0.9f, -2.25f, 2.06f) + verticalLineToRelative(10.69f) + curveToRelative(0.0f, 1.2f, 0.93f, 2.17f, 2.1f, 2.25f) + horizontalLineToRelative(4.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-4.6f) + curveToRelative(-2.0f, 0.0f, -3.64f, -1.57f, -3.75f, -3.55f) + lineTo(3.0f, 6.55f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 6.55f, 3.0f) + lineToRelative(0.2f, -0.01f) + close() + moveTo(9.95f, 9.0f) + lineTo(16.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.11f, 2.0f) + horizontalLineToRelative(-3.69f) + lineToRelative(6.54f, 6.54f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.32f) + lineToRelative(-0.08f, 0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.08f) + lineToRelative(-0.1f, -0.08f) + lineTo(11.0f, 12.4f) + verticalLineToRelative(3.6f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 0.99f) + lineTo(10.0f, 16.99f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + verticalLineToRelative(-6.2f) + lineToRelative(0.02f, -0.1f) + verticalLineToRelative(-0.05f) + lineToRelative(0.03f, -0.07f) + lineToRelative(0.03f, -0.1f) + lineToRelative(0.07f, -0.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.14f, -0.19f) + lineToRelative(0.11f, -0.1f) + lineToRelative(0.12f, -0.07f) + lineToRelative(0.1f, -0.05f) + lineToRelative(0.1f, -0.03f) + lineToRelative(0.1f, -0.02f) + lineToRelative(0.12f, -0.02f) + lineTo(16.0f, 8.99f) + lineTo(9.94f, 8.99f) + close() + } + } + return _openFolder!! + } + +private var _openFolder: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/OpenOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/OpenOff.kt new file mode 100644 index 00000000..028fa565 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/OpenOff.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.OpenOff: ImageVector + get() { + if (_openOff != null) { + return _openOff!! + } + _openOff = fluentIcon(name = "Filled.OpenOff") { + fluentPath { + moveToRelative(3.28f, 2.22f) + lineToRelative(18.5f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineToRelative(-1.08f, -1.08f) + curveToRelative(-0.55f, 0.35f, -1.2f, 0.55f, -1.89f, 0.55f) + lineTo(6.25f, 21.25f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.5f, -3.5f) + lineTo(2.75f, 6.25f) + curveToRelative(0.0f, -0.7f, 0.2f, -1.34f, 0.55f, -1.89f) + lineTo(2.22f, 3.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + close() + moveTo(18.14f, 19.2f) + lineTo(4.8f, 5.86f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -0.05f, 0.39f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(11.5f) + curveToRelative(0.13f, 0.0f, 0.26f, -0.02f, 0.39f, -0.05f) + close() + moveTo(12.9f, 9.72f) + lineToRelative(1.38f, 1.38f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.18f, -0.14f) + lineToRelative(4.79f, -4.8f) + verticalLineToRelative(4.09f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + verticalLineToRelative(-6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineToRelative(-6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(4.09f) + lineToRelative(-4.8f, 4.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.14f, 0.17f) + close() + moveTo(21.24f, 18.05f) + lineTo(19.25f, 16.07f) + verticalLineToRelative(-2.32f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(4.0f) + lineToRelative(-0.01f, 0.3f) + close() + moveTo(5.94f, 2.76f) + lineToRelative(2.0f, 1.99f) + horizontalLineToRelative(2.31f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-4.0f) + lineToRelative(-0.3f, 0.01f) + close() + } + } + return _openOff!! + } + +private var _openOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Organization.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Organization.kt new file mode 100644 index 00000000..8cddb490 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Organization.kt @@ -0,0 +1,41 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Organization: ImageVector + get() { + if (_organization != null) { + return _organization!! + } + _organization = fluentIcon(name = "Filled.Organization") { + fluentPath { + moveTo(8.0f, 5.75f) + arcToRelative(3.75f, 3.75f, 0.0f, true, true, 4.5f, 3.68f) + verticalLineToRelative(2.07f) + horizontalLineToRelative(3.25f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(0.82f) + arcToRelative(3.75f, 3.75f, 0.0f, true, true, -1.5f, 0.0f) + verticalLineToRelative(-0.82f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.82f) + arcToRelative(3.75f, 3.75f, 0.0f, true, true, -1.5f, 0.0f) + verticalLineToRelative(-0.82f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineTo(11.0f) + verticalLineTo(9.43f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.0f, -3.68f) + close() + } + } + return _organization!! + } + +private var _organization: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Orientation.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Orientation.kt new file mode 100644 index 00000000..1311b1a6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Orientation.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Orientation: ImageVector + get() { + if (_orientation != null) { + return _orientation!! + } + _orientation = fluentIcon(name = "Filled.Orientation") { + fluentPath { + moveTo(6.75f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.5f) + close() + moveTo(3.5f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.5f) + close() + moveTo(2.0f, 12.9f) + curveToRelative(0.0f, -1.05f, 0.85f, -1.9f, 1.9f, -1.9f) + horizontalLineToRelative(10.2f) + curveToRelative(1.05f, 0.0f, 1.9f, 0.85f, 1.9f, 1.9f) + verticalLineToRelative(5.2f) + arcToRelative(1.9f, 1.9f, 0.0f, false, true, -1.9f, 1.9f) + lineTo(3.9f, 20.0f) + arcTo(1.9f, 1.9f, 0.0f, false, true, 2.0f, 18.1f) + verticalLineToRelative(-5.2f) + close() + moveTo(12.25f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + close() + moveTo(3.75f, 5.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.5f) + curveTo(2.0f, 4.78f, 2.78f, 4.0f, 3.75f, 4.0f) + horizontalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.5f) + close() + moveTo(11.5f, 5.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.5f) + close() + moveTo(17.0f, 16.08f) + curveToRelative(0.0f, 0.48f, 0.42f, 0.87f, 0.89f, 0.74f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 17.5f, 6.1f) + lineToRelative(0.3f, -0.35f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.13f, -0.98f) + lineToRelative(-1.5f, 1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 0.98f) + lineToRelative(1.5f, 1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.14f, -0.98f) + lineToRelative(-0.6f, -0.7f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.37f, 7.79f) + curveToRelative(-0.33f, 0.1f, -0.59f, 0.38f, -0.59f, 0.73f) + close() + } + } + return _orientation!! + } + +private var _orientation: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Oval.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Oval.kt new file mode 100644 index 00000000..b3ff6514 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Oval.kt @@ -0,0 +1,29 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Oval: ImageVector + get() { + if (_oval != null) { + return _oval!! + } + _oval = fluentIcon(name = "Filled.Oval") { + fluentPath { + moveTo(2.0f, 12.0f) + arcToRelative(8.0f, 8.0f, 0.0f, false, true, 8.0f, -8.0f) + horizontalLineToRelative(4.0f) + arcToRelative(8.0f, 8.0f, 0.0f, true, true, 0.0f, 16.0f) + horizontalLineToRelative(-4.0f) + arcToRelative(8.0f, 8.0f, 0.0f, false, true, -8.0f, -8.0f) + close() + } + } + return _oval!! + } + +private var _oval: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Oven.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Oven.kt new file mode 100644 index 00000000..527c497c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Oven.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Oven: ImageVector + get() { + if (_oven != null) { + return _oven!! + } + _oven = fluentIcon(name = "Filled.Oven") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + lineTo(21.0f, 8.5f) + lineTo(3.0f, 8.5f) + lineTo(3.0f, 6.25f) + close() + moveTo(8.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(13.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(17.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(3.0f, 17.75f) + lineTo(3.0f, 10.0f) + horizontalLineToRelative(18.0f) + verticalLineToRelative(7.75f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + close() + moveTo(7.25f, 12.0f) + curveTo(6.56f, 12.0f, 6.0f, 12.56f, 6.0f, 13.25f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(9.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-9.5f) + close() + } + } + return _oven!! + } + +private var _oven: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PaddingDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PaddingDown.kt new file mode 100644 index 00000000..b2365ab7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PaddingDown.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PaddingDown: ImageVector + get() { + if (_paddingDown != null) { + return _paddingDown!! + } + _paddingDown = fluentIcon(name = "Filled.PaddingDown") { + fluentPath { + moveTo(4.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(5.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + close() + moveTo(4.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(1.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(5.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + close() + moveTo(9.25f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + close() + moveTo(16.25f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + lineTo(19.0f, 22.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-1.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + close() + moveTo(17.71f, 13.7f) + lineTo(12.71f, 18.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 0.0f) + lineToRelative(-5.0f, -5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.42f, -1.4f) + lineTo(11.0f, 15.58f) + lineTo(11.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(9.59f) + lineToRelative(3.3f, -3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.42f) + close() + } + } + return _paddingDown!! + } + +private var _paddingDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PaddingLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PaddingLeft.kt new file mode 100644 index 00000000..f1b8e7ba --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PaddingLeft.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PaddingLeft: ImageVector + get() { + if (_paddingLeft != null) { + return _paddingLeft!! + } + _paddingLeft = fluentIcon(name = "Filled.PaddingLeft") { + fluentPath { + moveTo(3.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(1.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + lineTo(4.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + moveTo(3.0f, 9.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + moveTo(3.0f, 16.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + lineTo(2.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-1.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + moveTo(21.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(22.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + moveTo(5.3f, 12.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) + lineToRelative(5.0f, -5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, 1.4f) + lineTo(8.42f, 11.0f) + lineTo(18.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(8.41f, 13.0f) + lineToRelative(3.3f, 3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 1.4f) + lineToRelative(-5.0f, -5.0f) + close() + } + } + return _paddingLeft!! + } + +private var _paddingLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PaddingRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PaddingRight.kt new file mode 100644 index 00000000..32ebb882 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PaddingRight.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PaddingRight: ImageVector + get() { + if (_paddingRight != null) { + return _paddingRight!! + } + _paddingRight = fluentIcon(name = "Filled.PaddingRight") { + fluentPath { + moveTo(3.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(2.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(21.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(1.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(20.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(21.0f, 9.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(21.0f, 16.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + lineTo(22.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-1.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(18.7f, 12.71f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) + lineToRelative(-5.0f, -5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.4f, 1.42f) + lineTo(15.58f, 11.0f) + lineTo(6.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(9.59f) + lineToRelative(-3.3f, 3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.4f) + lineToRelative(5.0f, -5.0f) + close() + } + } + return _paddingRight!! + } + +private var _paddingRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PaddingTop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PaddingTop.kt new file mode 100644 index 00000000..7784a64d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PaddingTop.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PaddingTop: ImageVector + get() { + if (_paddingTop != null) { + return _paddingTop!! + } + _paddingTop = fluentIcon(name = "Filled.PaddingTop") { + fluentPath { + moveTo(4.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(1.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + lineTo(5.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(9.25f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(16.25f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + lineTo(19.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-1.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(4.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(5.0f, 22.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(12.7f, 5.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, 1.4f) + lineTo(11.0f, 8.42f) + lineTo(11.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(13.0f, 8.41f) + lineToRelative(3.3f, 3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, -1.42f) + lineToRelative(-5.0f, -5.0f) + close() + } + } + return _paddingTop!! + } + +private var _paddingTop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PageFit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PageFit.kt new file mode 100644 index 00000000..25cf702d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PageFit.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PageFit: ImageVector + get() { + if (_pageFit != null) { + return _pageFit!! + } + _pageFit = fluentIcon(name = "Filled.PageFit") { + fluentPath { + moveTo(18.25f, 4.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 22.0f, 7.75f) + verticalLineToRelative(8.5f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 18.25f, 20.0f) + lineTo(5.75f, 20.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 2.0f, 16.25f) + verticalLineToRelative(-8.5f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 5.75f, 4.0f) + horizontalLineToRelative(12.5f) + close() + moveTo(18.25f, 13.0f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + lineTo(17.5f, 15.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.41f, 0.5f) + horizontalLineToRelative(-1.34f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + lineTo(17.0f, 17.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -1.85f) + verticalLineToRelative(-1.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(5.75f, 13.0f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + lineTo(5.0f, 15.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.85f, 2.0f) + horizontalLineToRelative(1.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + lineTo(7.0f, 15.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.41f) + verticalLineToRelative(-1.34f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(8.25f, 7.0f) + horizontalLineToRelative(-1.4f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.84f, 1.84f) + lineTo(5.0f, 9.0f) + verticalLineToRelative(1.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(6.5f, 8.91f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.41f, -0.4f) + lineTo(7.0f, 8.5f) + horizontalLineToRelative(1.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(17.0f, 7.0f) + horizontalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + lineTo(17.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.5f, 0.41f) + verticalLineToRelative(1.34f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.1f) + lineTo(19.0f, 9.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.85f, -2.0f) + lineTo(17.0f, 7.0f) + close() + } + } + return _pageFit!! + } + +private var _pageFit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PaintBrush.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PaintBrush.kt new file mode 100644 index 00000000..ceac4153 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PaintBrush.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PaintBrush: ImageVector + get() { + if (_paintBrush != null) { + return _paintBrush!! + } + _paintBrush = fluentIcon(name = "Filled.PaintBrush") { + fluentPath { + moveTo(12.5f, 2.0f) + verticalLineToRelative(3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineTo(2.0f) + horizontalLineToRelative(1.0f) + verticalLineToRelative(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineTo(2.0f) + horizontalLineToRelative(1.75f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineTo(11.0f) + horizontalLineTo(5.0f) + verticalLineTo(2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.75f) + close() + moveTo(5.0f, 12.5f) + verticalLineToRelative(1.75f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineTo(10.0f) + verticalLineTo(20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 4.0f, 0.0f) + verticalLineToRelative(-3.5f) + horizontalLineToRelative(2.75f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineTo(12.5f) + horizontalLineTo(5.0f) + close() + } + } + return _paintBrush!! + } + +private var _paintBrush: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PaintBrushArrowDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PaintBrushArrowDown.kt new file mode 100644 index 00000000..d78c5ee1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PaintBrushArrowDown.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PaintBrushArrowDown: ImageVector + get() { + if (_paintBrushArrowDown != null) { + return _paintBrushArrowDown!! + } + _paintBrushArrowDown = fluentIcon(name = "Filled.PaintBrushArrowDown") { + fluentPath { + moveTo(10.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) + verticalLineToRelative(3.5f) + horizontalLineToRelative(2.75f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(1.75f) + lineTo(5.09f, 11.5f) + curveToRelative(0.01f, -0.72f, 0.0f, -1.35f, -0.02f, -1.87f) + arcTo(2.06f, 2.06f, 0.0f, false, true, 7.11f, 7.5f) + lineTo(10.0f, 7.5f) + lineTo(10.0f, 4.0f) + close() + moveTo(5.04f, 13.0f) + lineTo(19.0f, 13.0f) + verticalLineToRelative(1.15f) + arcToRelative(1.74f, 1.74f, 0.0f, false, false, -2.45f, 1.6f) + verticalLineToRelative(2.44f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.04f, 2.8f) + lineTo(15.53f, 22.0f) + horizontalLineToRelative(-4.98f) + curveToRelative(0.17f, -0.38f, 0.36f, -0.87f, 0.54f, -1.39f) + arcToRelative(9.53f, 9.53f, 0.0f, false, false, 0.41f, -1.84f) + verticalLineToRelative(-0.02f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.03f) + lineToRelative(-0.04f, 0.23f) + curveToRelative(-0.04f, 0.23f, -0.12f, 0.6f, -0.3f, 1.13f) + arcTo(16.83f, 16.83f, 0.0f, false, true, 8.91f, 22.0f) + lineTo(7.57f, 22.0f) + lineToRelative(0.4f, -0.93f) + curveToRelative(0.4f, -0.97f, 0.88f, -2.23f, 1.02f, -3.21f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.48f, -0.22f) + curveToRelative(-0.11f, 0.77f, -0.51f, 1.88f, -0.92f, 2.85f) + arcTo(32.38f, 32.38f, 0.0f, false, true, 5.91f, 22.0f) + lineTo(3.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.63f, -1.16f) + curveToRelative(0.95f, -1.46f, 1.47f, -3.58f, 1.73f, -5.73f) + curveToRelative(0.1f, -0.72f, 0.15f, -1.43f, 0.19f, -2.11f) + close() + moveTo(15.22f, 19.22f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(1.27f, 1.27f) + verticalLineToRelative(-4.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(4.64f) + lineToRelative(1.17f, -1.17f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 0.0f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + } + } + return _paintBrushArrowDown!! + } + +private var _paintBrushArrowDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PaintBrushArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PaintBrushArrowUp.kt new file mode 100644 index 00000000..51bd5c3e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PaintBrushArrowUp.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PaintBrushArrowUp: ImageVector + get() { + if (_paintBrushArrowUp != null) { + return _paintBrushArrowUp!! + } + _paintBrushArrowUp = fluentIcon(name = "Filled.PaintBrushArrowUp") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(3.5f) + lineTo(7.11f, 7.5f) + curveToRelative(-1.17f, 0.0f, -2.08f, 1.0f, -2.04f, 2.13f) + curveToRelative(0.02f, 0.4f, 0.02f, 1.36f, 0.02f, 1.87f) + lineTo(19.0f, 11.5f) + lineTo(19.0f, 9.75f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + lineTo(14.0f, 7.5f) + lineTo(14.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + close() + moveTo(4.85f, 15.11f) + curveToRelative(0.1f, -0.72f, 0.19f, -2.11f, 0.19f, -2.11f) + lineTo(19.0f, 13.0f) + verticalLineToRelative(1.17f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.99f, 0.34f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 2.04f, 2.8f) + lineTo(16.55f, 22.0f) + horizontalLineToRelative(-6.0f) + curveToRelative(0.17f, -0.38f, 0.36f, -0.87f, 0.54f, -1.39f) + arcToRelative(9.53f, 9.53f, 0.0f, false, false, 0.41f, -1.84f) + verticalLineToRelative(-0.02f) + reflectiveCurveToRelative(0.0f, -0.75f, -0.75f, -0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.78f) + lineToRelative(-0.04f, 0.23f) + curveToRelative(-0.04f, 0.23f, -0.12f, 0.6f, -0.3f, 1.13f) + arcTo(16.83f, 16.83f, 0.0f, false, true, 8.91f, 22.0f) + lineTo(7.57f, 22.0f) + lineToRelative(0.4f, -0.93f) + curveToRelative(0.4f, -0.97f, 0.88f, -2.23f, 1.02f, -3.21f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.48f, -0.22f) + curveToRelative(-0.11f, 0.77f, -0.51f, 1.88f, -0.92f, 2.85f) + arcTo(32.38f, 32.38f, 0.0f, false, true, 5.91f, 22.0f) + lineTo(3.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.63f, -1.16f) + curveToRelative(0.95f, -1.46f, 1.47f, -3.58f, 1.73f, -5.73f) + close() + moveTo(16.28f, 18.78f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 0.0f) + lineToRelative(2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(19.0f, 17.56f) + verticalLineToRelative(4.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-4.69f) + lineToRelative(-1.22f, 1.22f) + close() + } + } + return _paintBrushArrowUp!! + } + +private var _paintBrushArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PaintBucket.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PaintBucket.kt new file mode 100644 index 00000000..7f4e0965 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PaintBucket.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PaintBucket: ImageVector + get() { + if (_paintBucket != null) { + return _paintBucket!! + } + _paintBucket = fluentIcon(name = "Filled.PaintBucket") { + fluentPath { + moveTo(12.0f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + lineTo(10.5f, 3.5f) + curveToRelative(-0.3f, 0.1f, -0.6f, 0.28f, -0.84f, 0.53f) + lineToRelative(-6.88f, 6.88f) + curveToRelative(-0.88f, 0.88f, -0.88f, 2.3f, 0.0f, 3.18f) + lineToRelative(4.88f, 4.88f) + curveToRelative(0.88f, 0.88f, 2.3f, 0.88f, 3.18f, 0.0f) + lineToRelative(6.88f, -6.88f) + curveToRelative(0.88f, -0.88f, 0.88f, -2.3f, 0.0f, -3.18f) + lineToRelative(-4.88f, -4.88f) + arcTo(2.24f, 2.24f, 0.0f, false, false, 12.0f, 3.5f) + lineTo(12.0f, 2.25f) + close() + moveTo(10.5f, 5.31f) + verticalLineToRelative(1.44f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(12.0f, 5.31f) + lineToRelative(4.66f, 4.66f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-0.97f, 0.97f) + lineTo(3.8f, 12.0f) + lineToRelative(0.03f, -0.03f) + lineToRelative(6.66f, -6.66f) + close() + moveTo(19.52f, 13.61f) + arcToRelative(0.87f, 0.87f, 0.0f, false, false, -1.54f, 0.0f) + lineToRelative(-2.0f, 3.76f) + arcToRelative(3.15f, 3.15f, 0.0f, true, false, 5.55f, 0.0f) + lineToRelative(-2.0f, -3.77f) + close() + } + } + return _paintBucket!! + } + +private var _paintBucket: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Pair.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Pair.kt new file mode 100644 index 00000000..280f2df8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Pair.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Pair: ImageVector + get() { + if (_pair != null) { + return _pair!! + } + _pair = fluentIcon(name = "Filled.Pair") { + fluentPath { + moveTo(18.27f, 21.0f) + horizontalLineToRelative(-6.54f) + arcTo(2.0f, 2.0f, 0.0f, true, true, 9.0f, 18.27f) + lineTo(9.0f, 15.0f) + lineTo(5.73f, 15.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.58f, 1.0f) + lineTo(4.0f, 16.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.0f, -3.73f) + lineTo(3.0f, 5.73f) + arcTo(2.0f, 2.0f, 0.0f, true, true, 5.73f, 3.0f) + horizontalLineToRelative(6.54f) + arcTo(2.0f, 2.0f, 0.0f, true, true, 15.0f, 5.73f) + lineTo(15.0f, 9.0f) + horizontalLineToRelative(3.27f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.58f, -1.0f) + lineTo(20.0f, 8.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.0f, 3.73f) + verticalLineToRelative(6.54f) + arcTo(2.0f, 2.0f, 0.0f, true, true, 18.27f, 21.0f) + horizontalLineToRelative(-6.54f) + horizontalLineToRelative(6.54f) + close() + moveTo(18.27f, 11.0f) + lineTo(15.0f, 11.0f) + verticalLineToRelative(1.27f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.0f, 1.58f) + lineTo(16.0f, 14.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -3.73f, 1.0f) + lineTo(11.0f, 15.0f) + verticalLineToRelative(3.27f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.73f, 0.73f) + horizontalLineToRelative(6.54f) + curveToRelative(0.17f, -0.3f, 0.43f, -0.56f, 0.73f, -0.73f) + verticalLineToRelative(-6.54f) + arcToRelative(2.01f, 2.01f, 0.0f, false, true, -0.64f, -0.58f) + lineToRelative(-0.1f, -0.15f) + close() + moveTo(13.0f, 11.0f) + horizontalLineToRelative(-1.27f) + curveToRelative(-0.17f, 0.3f, -0.43f, 0.56f, -0.73f, 0.73f) + lineTo(11.0f, 13.0f) + horizontalLineToRelative(1.27f) + curveToRelative(0.17f, -0.3f, 0.43f, -0.56f, 0.73f, -0.73f) + lineTo(13.0f, 11.0f) + close() + moveTo(12.27f, 5.0f) + lineTo(5.73f, 5.0f) + curveToRelative(-0.17f, 0.3f, -0.43f, 0.56f, -0.73f, 0.73f) + verticalLineToRelative(6.54f) + curveToRelative(0.3f, 0.17f, 0.56f, 0.43f, 0.73f, 0.73f) + lineTo(9.0f, 13.0f) + verticalLineToRelative(-1.27f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.0f, -1.58f) + lineTo(8.0f, 10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 3.73f, -1.0f) + lineTo(13.0f, 9.0f) + lineTo(13.0f, 5.73f) + arcToRelative(2.01f, 2.01f, 0.0f, false, true, -0.64f, -0.58f) + lineToRelative(-0.1f, -0.15f) + close() + } + } + return _pair!! + } + +private var _pair: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelLeft.kt new file mode 100644 index 00000000..4b58c45c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelLeft.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PanelLeft: ImageVector + get() { + if (_panelLeft != null) { + return _panelLeft!! + } + _panelLeft = fluentIcon(name = "Filled.PanelLeft") { + fluentPath { + moveTo(5.25f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) + horizontalLineToRelative(13.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-9.5f) + curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) + lineTo(5.25f, 4.0f) + close() + moveTo(18.75f, 5.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(9.5f, 18.5f) + verticalLineToRelative(-13.0f) + horizontalLineToRelative(9.25f) + close() + } + } + return _panelLeft!! + } + +private var _panelLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelLeftAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelLeftAdd.kt new file mode 100644 index 00000000..226a4b16 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelLeftAdd.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PanelLeftAdd: ImageVector + get() { + if (_panelLeftAdd != null) { + return _panelLeftAdd!! + } + _panelLeftAdd = fluentIcon(name = "Filled.PanelLeftAdd") { + fluentPath { + moveTo(5.25f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) + horizontalLineToRelative(6.25f) + curveToRelative(-0.2f, -0.47f, -0.34f, -0.98f, -0.42f, -1.5f) + lineTo(9.5f, 18.5f) + verticalLineToRelative(-13.0f) + horizontalLineToRelative(9.25f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.48f) + curveToRelative(0.55f, 0.29f, 1.06f, 0.65f, 1.5f, 1.08f) + lineTo(22.0f, 7.25f) + curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) + lineTo(5.25f, 4.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _panelLeftAdd!! + } + +private var _panelLeftAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelLeftContract.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelLeftContract.kt new file mode 100644 index 00000000..9d438301 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelLeftContract.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PanelLeftContract: ImageVector + get() { + if (_panelLeftContract != null) { + return _panelLeftContract!! + } + _panelLeftContract = fluentIcon(name = "Filled.PanelLeftContract") { + fluentPath { + moveTo(14.8f, 9.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.05f, -0.06f) + lineToRelative(-2.5f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.12f) + lineToRelative(2.5f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.0f, -1.12f) + lineToRelative(-1.05f, -0.94f) + horizontalLineToRelative(3.55f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(13.7f) + lineToRelative(1.05f, -0.94f) + curveToRelative(0.31f, -0.28f, 0.33f, -0.75f, 0.06f, -1.06f) + close() + moveTo(2.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) + verticalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) + horizontalLineTo(4.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) + verticalLineTo(6.75f) + close() + moveTo(9.0f, 5.5f) + verticalLineToRelative(13.0f) + horizontalLineToRelative(10.25f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineTo(6.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineTo(9.0f) + close() + } + } + return _panelLeftContract!! + } + +private var _panelLeftContract: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelLeftExpand.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelLeftExpand.kt new file mode 100644 index 00000000..5b7be2d7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelLeftExpand.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PanelLeftExpand: ImageVector + get() { + if (_panelLeftExpand != null) { + return _panelLeftExpand!! + } + _panelLeftExpand = fluentIcon(name = "Filled.PanelLeftExpand") { + fluentPath { + moveTo(14.2f, 14.75f) + curveToRelative(0.27f, 0.3f, 0.74f, 0.33f, 1.05f, 0.06f) + lineToRelative(2.5f, -2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.12f) + lineToRelative(-2.5f, -2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, 1.12f) + lineToRelative(1.05f, 0.94f) + horizontalLineToRelative(-3.55f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(3.55f) + lineToRelative(-1.05f, 0.94f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.06f, 1.06f) + close() + moveTo(2.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) + verticalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) + horizontalLineTo(4.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) + verticalLineTo(6.75f) + close() + moveTo(9.0f, 5.5f) + verticalLineToRelative(13.0f) + horizontalLineToRelative(10.25f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineTo(6.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineTo(9.0f) + close() + } + } + return _panelLeftExpand!! + } + +private var _panelLeftExpand: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelLeftFocusRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelLeftFocusRight.kt similarity index 87% rename from fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelLeftFocusRight.kt rename to fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelLeftFocusRight.kt index 08a772b1..ce5b0e93 100644 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PanelLeftFocusRight.kt +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelLeftFocusRight.kt @@ -1,11 +1,11 @@ -package com.konyaco.fluent.icons.filled +package io.github.composefluent.icons.filled import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath public val Icons.Filled.PanelLeftFocusRight: ImageVector get() { diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelLeftHeader.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelLeftHeader.kt new file mode 100644 index 00000000..2c29b3e6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelLeftHeader.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PanelLeftHeader: ImageVector + get() { + if (_panelLeftHeader != null) { + return _panelLeftHeader!! + } + _panelLeftHeader = fluentIcon(name = "Filled.PanelLeftHeader") { + fluentPath { + moveTo(2.0f, 7.25f) + curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) + horizontalLineToRelative(13.5f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(5.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + close() + moveTo(20.5f, 7.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(9.5f, 5.5f) + lineTo(9.5f, 9.0f) + horizontalLineToRelative(11.0f) + lineTo(20.5f, 7.25f) + close() + moveTo(20.5f, 10.5f) + horizontalLineToRelative(-11.0f) + verticalLineToRelative(8.0f) + horizontalLineToRelative(9.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(20.5f, 10.5f) + close() + } + } + return _panelLeftHeader!! + } + +private var _panelLeftHeader: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelLeftHeaderAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelLeftHeaderAdd.kt new file mode 100644 index 00000000..27f2a5ea --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelLeftHeaderAdd.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PanelLeftHeaderAdd: ImageVector + get() { + if (_panelLeftHeaderAdd != null) { + return _panelLeftHeaderAdd!! + } + _panelLeftHeaderAdd = fluentIcon(name = "Filled.PanelLeftHeaderAdd") { + fluentPath { + moveTo(2.0f, 7.25f) + curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) + horizontalLineToRelative(13.5f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(5.56f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) + lineTo(20.5f, 10.5f) + horizontalLineToRelative(-11.0f) + verticalLineToRelative(8.0f) + horizontalLineToRelative(1.58f) + curveToRelative(0.08f, 0.52f, 0.22f, 1.03f, 0.42f, 1.5f) + lineTo(5.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + close() + moveTo(20.5f, 7.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(9.5f, 5.5f) + lineTo(9.5f, 9.0f) + horizontalLineToRelative(11.0f) + lineTo(20.5f, 7.25f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _panelLeftHeaderAdd!! + } + +private var _panelLeftHeaderAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelLeftHeaderKey.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelLeftHeaderKey.kt new file mode 100644 index 00000000..e66a0bf6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelLeftHeaderKey.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PanelLeftHeaderKey: ImageVector + get() { + if (_panelLeftHeaderKey != null) { + return _panelLeftHeaderKey!! + } + _panelLeftHeaderKey = fluentIcon(name = "Filled.PanelLeftHeaderKey") { + fluentPath { + moveTo(2.0f, 7.25f) + curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) + horizontalLineToRelative(13.5f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(4.5f) + curveToRelative(-0.45f, -0.3f, -0.96f, -0.52f, -1.5f, -0.64f) + verticalLineToRelative(-0.61f) + horizontalLineToRelative(-11.0f) + verticalLineToRelative(8.0f) + horizontalLineToRelative(3.09f) + lineToRelative(-1.08f, 1.07f) + curveToRelative(-0.12f, 0.13f, -0.23f, 0.27f, -0.31f, 0.43f) + lineTo(5.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + close() + moveTo(9.5f, 9.0f) + horizontalLineToRelative(11.0f) + lineTo(20.5f, 7.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(9.5f, 5.5f) + lineTo(9.5f, 9.0f) + close() + moveTo(19.5f, 19.0f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, -3.38f, -2.59f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.15f, 0.12f) + lineToRelative(-3.75f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.22f, 0.53f) + verticalLineToRelative(1.44f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(1.75f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(15.0f, 22.0f) + horizontalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(1.5f) + close() + moveTo(21.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + } + } + return _panelLeftHeaderKey!! + } + +private var _panelLeftHeaderKey: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelLeftKey.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelLeftKey.kt new file mode 100644 index 00000000..266893c8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelLeftKey.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PanelLeftKey: ImageVector + get() { + if (_panelLeftKey != null) { + return _panelLeftKey!! + } + _panelLeftKey = fluentIcon(name = "Filled.PanelLeftKey") { + fluentPath { + moveTo(5.25f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) + horizontalLineToRelative(5.95f) + curveToRelative(0.08f, -0.16f, 0.19f, -0.3f, 0.31f, -0.43f) + lineToRelative(1.08f, -1.07f) + lineTo(9.5f, 18.5f) + verticalLineToRelative(-13.0f) + horizontalLineToRelative(9.25f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(3.86f) + curveToRelative(0.54f, 0.13f, 1.05f, 0.35f, 1.5f, 0.65f) + lineTo(22.0f, 7.25f) + curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) + lineTo(5.25f, 4.0f) + close() + moveTo(23.0f, 15.5f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.5f, 3.5f) + lineTo(18.0f, 19.0f) + verticalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-1.44f) + curveToRelative(0.0f, -0.2f, 0.08f, -0.39f, 0.22f, -0.53f) + lineToRelative(3.75f, -3.75f) + lineToRelative(0.15f, -0.12f) + arcTo(3.5f, 3.5f, 0.0f, true, true, 23.0f, 15.5f) + close() + moveTo(20.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + } + } + return _panelLeftKey!! + } + +private var _panelLeftKey: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelRight.kt new file mode 100644 index 00000000..a474c269 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelRight.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PanelRight: ImageVector + get() { + if (_panelRight != null) { + return _panelRight!! + } + _panelRight = fluentIcon(name = "Filled.PanelRight") { + fluentPath { + moveTo(18.75f, 4.0f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineTo(5.25f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) + horizontalLineToRelative(13.5f) + close() + moveTo(5.25f, 5.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(9.25f) + verticalLineToRelative(-13.0f) + horizontalLineTo(5.25f) + close() + } + } + return _panelRight!! + } + +private var _panelRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelRightContract.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelRightContract.kt new file mode 100644 index 00000000..d2e56be3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelRightContract.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PanelRightContract: ImageVector + get() { + if (_panelRightContract != null) { + return _panelRightContract!! + } + _panelRightContract = fluentIcon(name = "Filled.PanelRightContract") { + fluentPath { + moveTo(9.2f, 9.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, -0.06f) + lineToRelative(2.5f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.12f) + lineToRelative(-2.5f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.0f, -1.12f) + lineToRelative(1.05f, -0.94f) + lineTo(6.75f, 12.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.55f) + lineToRelative(-1.05f, -0.94f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.06f, -1.06f) + close() + moveTo(22.0f, 17.25f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) + lineTo(4.75f, 20.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) + lineTo(2.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) + verticalLineToRelative(10.5f) + close() + moveTo(15.0f, 18.5f) + verticalLineToRelative(-13.0f) + lineTo(4.75f, 5.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + lineTo(15.0f, 18.5f) + close() + } + } + return _panelRightContract!! + } + +private var _panelRightContract: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelRightCursor.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelRightCursor.kt new file mode 100644 index 00000000..df8eb229 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PanelRightCursor.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PanelRightCursor: ImageVector + get() { + if (_panelRightCursor != null) { + return _panelRightCursor!! + } + _panelRightCursor = fluentIcon(name = "Filled.PanelRightCursor") { + fluentPath { + moveTo(18.75f, 4.0f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.42f, -0.08f, 0.81f, -0.22f, 1.18f) + lineToRelative(-5.73f, -6.35f) + curveToRelative(-0.4f, -0.44f, -0.98f, -0.65f, -1.55f, -0.56f) + lineTo(14.5f, 5.5f) + lineTo(5.25f, 5.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(13.0f, 18.5f) + lineTo(13.0f, 20.0f) + lineTo(5.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) + horizontalLineToRelative(13.5f) + close() + moveTo(14.49f, 12.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.82f, 0.2f) + lineToRelative(6.37f, 7.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 1.23f) + lineToRelative(-3.54f, -0.88f) + lineToRelative(-2.03f, 3.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.37f, -0.42f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.31f, 0.2f, -0.59f, 0.49f, -0.7f) + close() + } + } + return _panelRightCursor!! + } + +private var _panelRightCursor: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Password.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Password.kt new file mode 100644 index 00000000..20db02b3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Password.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Password: ImageVector + get() { + if (_password != null) { + return _password!! + } + _password = fluentIcon(name = "Filled.Password") { + fluentPath { + moveTo(5.25f, 5.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 8.25f) + verticalLineToRelative(7.5f) + curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) + horizontalLineToRelative(13.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-7.5f) + curveTo(22.0f, 6.45f, 20.55f, 5.0f, 18.75f, 5.0f) + lineTo(5.25f, 5.0f) + close() + moveTo(6.28f, 10.22f) + lineTo(7.0f, 10.94f) + lineTo(7.72f, 10.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-0.72f, 0.72f) + lineToRelative(0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(7.0f, 13.06f) + lineToRelative(-0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(0.72f, -0.72f) + lineToRelative(-0.72f, -0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + close() + moveTo(11.78f, 10.22f) + lineTo(12.5f, 10.94f) + lineTo(13.22f, 10.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-0.72f, 0.72f) + lineToRelative(0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-0.72f, -0.72f) + lineToRelative(-0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(0.72f, -0.72f) + lineToRelative(-0.72f, -0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + close() + moveTo(15.75f, 14.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(16.5f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _password!! + } + +private var _password: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Patch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Patch.kt new file mode 100644 index 00000000..2b3815fd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Patch.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Patch: ImageVector + get() { + if (_patch != null) { + return _patch!! + } + _patch = fluentIcon(name = "Filled.Patch") { + fluentPath { + moveToRelative(9.8f, 3.24f) + lineToRelative(1.5f, 1.5f) + lineToRelative(-6.57f, 6.55f) + lineToRelative(-1.5f, -1.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.59f) + lineTo(5.2f, 3.24f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 4.6f, 0.0f) + close() + moveTo(14.2f, 20.76f) + lineTo(12.7f, 19.26f) + lineTo(19.27f, 12.71f) + lineTo(20.77f, 14.21f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, 4.59f) + lineToRelative(-1.97f, 1.96f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -4.6f, 0.0f) + close() + moveTo(3.24f, 14.2f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 0.0f, 4.6f) + lineToRelative(1.96f, 1.96f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 4.6f, 0.0f) + lineTo(20.76f, 9.8f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 0.0f, -4.6f) + lineTo(18.8f, 3.24f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -4.6f, 0.0f) + lineTo(3.24f, 14.2f) + close() + moveTo(12.75f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(9.0f, 12.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(12.0f, 12.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(15.75f, 12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(12.0f, 15.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + } + } + return _patch!! + } + +private var _patch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Patient.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Patient.kt new file mode 100644 index 00000000..0ae9b50d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Patient.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Patient: ImageVector + get() { + if (_patient != null) { + return _patient!! + } + _patient = fluentIcon(name = "Filled.Patient") { + fluentPath { + moveTo(17.75f, 2.0f) + curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) + verticalLineToRelative(15.5f) + curveTo(20.0f, 21.0f, 19.0f, 22.0f, 17.75f, 22.0f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(6.25f, 2.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(18.5f, 16.0f) + horizontalLineToRelative(-13.0f) + verticalLineToRelative(3.75f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) + lineTo(18.5f, 16.0f) + close() + moveTo(7.75f, 17.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-8.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(8.6f) + horizontalLineToRelative(-8.5f) + close() + moveTo(17.75f, 3.5f) + lineTo(6.15f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + lineTo(5.5f, 14.5f) + lineTo(8.0f, 14.5f) + verticalLineToRelative(-2.25f) + curveToRelative(0.0f, -0.65f, 0.5f, -1.18f, 1.12f, -1.25f) + horizontalLineToRelative(5.63f) + curveToRelative(0.65f, 0.0f, 1.18f, 0.49f, 1.24f, 1.12f) + lineToRelative(0.01f, 0.13f) + verticalLineToRelative(2.25f) + horizontalLineToRelative(2.5f) + lineTo(18.5f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(12.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + } + } + return _patient!! + } + +private var _patient: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PauseCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PauseCircle.kt new file mode 100644 index 00000000..e8edc59f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PauseCircle.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PauseCircle: ImageVector + get() { + if (_pauseCircle != null) { + return _pauseCircle!! + } + _pauseCircle = fluentIcon(name = "Filled.PauseCircle") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) + close() + moveTo(10.5f, 8.25f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(15.0f, 8.25f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + } + } + return _pauseCircle!! + } + +private var _pauseCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Payment.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Payment.kt new file mode 100644 index 00000000..b6276c3b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Payment.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Payment: ImageVector + get() { + if (_payment != null) { + return _payment!! + } + _payment = fluentIcon(name = "Filled.Payment") { + fluentPath { + moveTo(5.25f, 5.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 8.25f) + lineTo(2.0f, 9.5f) + horizontalLineToRelative(20.0f) + lineTo(22.0f, 8.25f) + curveTo(22.0f, 6.45f, 20.54f, 5.0f, 18.75f, 5.0f) + lineTo(5.25f, 5.0f) + close() + moveTo(22.0f, 11.0f) + lineTo(2.0f, 11.0f) + verticalLineToRelative(4.75f) + curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) + horizontalLineToRelative(13.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(22.0f, 11.0f) + close() + moveTo(15.75f, 14.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + } + } + return _payment!! + } + +private var _payment: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Pen.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Pen.kt new file mode 100644 index 00000000..09448aa6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Pen.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Pen: ImageVector + get() { + if (_pen != null) { + return _pen!! + } + _pen = fluentIcon(name = "Filled.Pen") { + fluentPath { + moveTo(15.9f, 3.05f) + arcToRelative(3.58f, 3.58f, 0.0f, true, true, 5.05f, 5.06f) + lineToRelative(-0.89f, 0.89f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, 4.6f) + lineToRelative(-1.79f, 1.77f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineTo(19.0f, 12.53f) + curveToRelative(0.68f, -0.68f, 0.68f, -1.79f, 0.0f, -2.47f) + lineToRelative(-10.0f, 10.0f) + curveToRelative(-0.4f, 0.4f, -0.92f, 0.7f, -1.48f, 0.82f) + lineToRelative(-4.6f, 1.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.9f, -0.9f) + lineToRelative(1.1f, -4.6f) + arcTo(3.1f, 3.1f, 0.0f, false, true, 3.94f, 15.0f) + lineTo(15.9f, 3.05f) + close() + } + } + return _pen!! + } + +private var _pen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PenOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PenOff.kt new file mode 100644 index 00000000..ffaad6a8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PenOff.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PenOff: ImageVector + get() { + if (_penOff != null) { + return _penOff!! + } + _penOff = fluentIcon(name = "Filled.PenOff") { + fluentPath { + moveToRelative(14.0f, 15.06f) + lineToRelative(6.72f, 6.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineTo(8.94f, 10.0f) + lineToRelative(-5.0f, 5.0f) + curveToRelative(-0.4f, 0.4f, -0.7f, 0.92f, -0.82f, 1.48f) + lineToRelative(-1.1f, 4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.9f, 0.9f) + lineToRelative(4.6f, -1.1f) + arcTo(3.1f, 3.1f, 0.0f, false, false, 9.0f, 20.06f) + lineToRelative(5.0f, -5.0f) + close() + moveTo(19.0f, 12.53f) + lineTo(17.35f, 14.17f) + lineTo(18.41f, 15.23f) + lineTo(20.06f, 13.59f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 0.0f, -4.6f) + lineToRelative(0.9f, -0.88f) + arcToRelative(3.58f, 3.58f, 0.0f, false, false, -5.07f, -5.06f) + lineToRelative(-4.83f, 4.83f) + lineToRelative(5.06f, 5.06f) + lineTo(19.0f, 10.06f) + curveToRelative(0.68f, 0.68f, 0.68f, 1.79f, 0.0f, 2.47f) + close() + } + } + return _penOff!! + } + +private var _penOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PenProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PenProhibited.kt new file mode 100644 index 00000000..bbfff988 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PenProhibited.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PenProhibited: ImageVector + get() { + if (_penProhibited != null) { + return _penProhibited!! + } + _penProhibited = fluentIcon(name = "Filled.PenProhibited") { + fluentPath { + moveTo(20.95f, 3.05f) + arcToRelative(3.58f, 3.58f, 0.0f, false, false, -5.06f, 0.0f) + lineTo(3.94f, 15.0f) + curveToRelative(-0.4f, 0.4f, -0.7f, 0.92f, -0.82f, 1.48f) + lineToRelative(-1.1f, 4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.9f, 0.9f) + lineToRelative(4.6f, -1.1f) + arcTo(3.1f, 3.1f, 0.0f, false, false, 9.0f, 20.06f) + lineToRelative(1.15f, -1.15f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, 7.76f, -7.76f) + lineToRelative(3.04f, -3.04f) + arcToRelative(3.58f, 3.58f, 0.0f, false, false, 0.0f, -5.06f) + close() + moveTo(22.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(12.5f, 17.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 6.25f, -3.3f) + lineToRelative(-5.56f, 5.55f) + arcToRelative(3.98f, 3.98f, 0.0f, false, true, -0.69f, -2.25f) + close() + moveTo(16.5f, 21.5f) + curveToRelative(-0.83f, 0.0f, -1.6f, -0.26f, -2.25f, -0.7f) + lineToRelative(5.56f, -5.55f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -3.3f, 6.25f) + close() + } + } + return _penProhibited!! + } + +private var _penProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/People.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/People.kt new file mode 100644 index 00000000..dd4784a4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/People.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.People: ImageVector + get() { + if (_people != null) { + return _people!! + } + _people = fluentIcon(name = "Filled.People") { + fluentPath { + moveTo(8.0f, 12.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, -8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 8.0f) + close() + moveTo(17.0f, 12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) + close() + moveTo(4.25f, 14.0f) + curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) + verticalLineToRelative(0.25f) + reflectiveCurveTo(2.0f, 21.0f, 8.0f, 21.0f) + reflectiveCurveToRelative(6.0f, -4.5f, 6.0f, -4.5f) + verticalLineToRelative(-0.25f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-7.5f) + close() + moveTo(17.0f, 19.5f) + arcToRelative(7.33f, 7.33f, 0.0f, false, true, -2.75f, -0.46f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.75f, -2.49f) + verticalLineToRelative(-0.3f) + curveToRelative(0.0f, -0.87f, -0.34f, -1.66f, -0.9f, -2.25f) + lineTo(19.8f, 14.0f) + curveToRelative(1.22f, 0.0f, 2.2f, 0.98f, 2.2f, 2.2f) + curveToRelative(0.0f, 0.0f, 0.0f, 3.3f, -5.0f, 3.3f) + close() + } + } + return _people!! + } + +private var _people: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleAdd.kt new file mode 100644 index 00000000..5bbd3645 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleAdd.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PeopleAdd: ImageVector + get() { + if (_peopleAdd != null) { + return _peopleAdd!! + } + _peopleAdd = fluentIcon(name = "Filled.PeopleAdd") { + fluentPath { + moveTo(8.0f, 11.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, -8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 8.0f) + close() + moveTo(17.0f, 11.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) + close() + moveTo(4.25f, 13.0f) + curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) + verticalLineToRelative(0.25f) + reflectiveCurveTo(2.0f, 20.0f, 8.0f, 20.0f) + arcToRelative(7.9f, 7.9f, 0.0f, false, false, 3.28f, -0.61f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, 1.36f, -6.2f) + arcToRelative(2.24f, 2.24f, 0.0f, false, false, -0.89f, -0.19f) + horizontalLineToRelative(-7.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _peopleAdd!! + } + +private var _peopleAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleAudience.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleAudience.kt new file mode 100644 index 00000000..74de576e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleAudience.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PeopleAudience: ImageVector + get() { + if (_peopleAudience != null) { + return _peopleAudience!! + } + _peopleAudience = fluentIcon(name = "Filled.PeopleAudience") { + fluentPath { + moveTo(14.75f, 10.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(16.5f, 16.0f) + horizontalLineToRelative(-9.0f) + verticalLineToRelative(-4.25f) + curveToRelative(0.0f, -0.97f, 0.79f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(5.5f) + close() + moveTo(22.0f, 11.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.38f) + curveToRelative(0.4f, 0.47f, 0.63f, 1.08f, 0.63f, 1.75f) + lineTo(17.5f, 16.0f) + horizontalLineToRelative(3.75f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-3.5f) + close() + moveTo(6.5f, 15.0f) + verticalLineToRelative(-3.25f) + lineToRelative(0.01f, -0.22f) + curveToRelative(0.05f, -0.58f, 0.27f, -1.1f, 0.62f, -1.53f) + lineTo(3.61f, 10.0f) + curveToRelative(-0.9f, 0.08f, -1.61f, 0.83f, -1.61f, 1.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(6.5f, 16.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(12.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) + close() + moveTo(18.5f, 4.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + moveTo(5.5f, 4.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + moveTo(2.0f, 17.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(18.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.5f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 18.25f, 22.0f) + lineTo(5.75f, 22.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 2.0f, 18.25f) + verticalLineToRelative(-0.5f) + close() + } + } + return _peopleAudience!! + } + +private var _peopleAudience: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleCall.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleCall.kt new file mode 100644 index 00000000..68c2b851 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleCall.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PeopleCall: ImageVector + get() { + if (_peopleCall != null) { + return _peopleCall!! + } + _peopleCall = fluentIcon(name = "Filled.PeopleCall") { + fluentPath { + moveTo(8.0f, 11.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, -8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 8.0f) + close() + moveTo(17.0f, 11.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) + close() + moveTo(4.25f, 13.0f) + curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) + verticalLineToRelative(0.25f) + reflectiveCurveTo(2.0f, 20.0f, 8.0f, 20.0f) + reflectiveCurveToRelative(6.0f, -4.5f, 6.0f, -4.5f) + verticalLineToRelative(-0.25f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-7.5f) + close() + moveTo(18.19f, 14.0f) + lineTo(18.67f, 12.79f) + curveToRelative(0.24f, -0.61f, 0.92f, -0.93f, 1.55f, -0.73f) + lineToRelative(0.43f, 0.14f) + curveToRelative(0.72f, 0.24f, 1.32f, 0.8f, 1.35f, 1.57f) + curveToRelative(0.1f, 3.11f, -2.48f, 7.58f, -5.22f, 9.06f) + curveToRelative(-0.67f, 0.36f, -1.46f, 0.12f, -2.03f, -0.4f) + lineToRelative(-0.34f, -0.3f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.14f, -1.7f) + lineToRelative(0.8f, -1.02f) + arcToRelative(1.2f, 1.2f, 0.0f, false, true, 1.22f, -0.42f) + lineToRelative(1.3f, 0.32f) + arcToRelative(3.78f, 3.78f, 0.0f, false, false, 1.77f, -3.08f) + lineToRelative(-0.92f, -0.96f) + arcToRelative(1.2f, 1.2f, 0.0f, false, true, -0.25f, -1.28f) + close() + } + } + return _peopleCall!! + } + +private var _peopleCall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleCheckmark.kt new file mode 100644 index 00000000..54949772 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleCheckmark.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PeopleCheckmark: ImageVector + get() { + if (_peopleCheckmark != null) { + return _peopleCheckmark!! + } + _peopleCheckmark = fluentIcon(name = "Filled.PeopleCheckmark") { + fluentPath { + moveTo(8.0f, 11.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, -8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 8.0f) + close() + moveTo(17.0f, 11.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) + close() + moveTo(4.25f, 13.0f) + curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) + verticalLineToRelative(0.25f) + reflectiveCurveTo(2.0f, 20.0f, 8.0f, 20.0f) + arcToRelative(7.9f, 7.9f, 0.0f, false, false, 3.28f, -0.61f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, 1.36f, -6.2f) + arcToRelative(2.24f, 2.24f, 0.0f, false, false, -0.89f, -0.19f) + horizontalLineToRelative(-7.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.15f, 15.15f) + lineTo(16.5f, 18.79f) + lineTo(14.85f, 17.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + close() + } + } + return _peopleCheckmark!! + } + +private var _peopleCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleCommunity.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleCommunity.kt new file mode 100644 index 00000000..2946170a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleCommunity.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PeopleCommunity: ImageVector + get() { + if (_peopleCommunity != null) { + return _peopleCommunity!! + } + _peopleCommunity = fluentIcon(name = "Filled.PeopleCommunity") { + fluentPath { + moveTo(7.5f, 8.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) + close() + moveTo(2.0f, 10.77f) + curveTo(2.0f, 9.79f, 2.8f, 9.0f, 3.77f, 9.0f) + horizontalLineToRelative(4.77f) + arcToRelative(3.98f, 3.98f, 0.0f, false, false, 0.81f, 5.0f) + lineTo(8.27f, 14.0f) + curveToRelative(-1.19f, 0.0f, -2.2f, 0.75f, -2.6f, 1.8f) + arcToRelative(4.6f, 4.6f, 0.0f, false, true, -2.97f, -2.1f) + arcToRelative(5.15f, 5.15f, 0.0f, false, true, -0.7f, -2.57f) + verticalLineToRelative(-0.36f) + close() + moveTo(16.0f, 11.0f) + curveToRelative(0.0f, -0.73f, -0.2f, -1.41f, -0.54f, -2.0f) + horizontalLineToRelative(4.77f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.36f) + curveToRelative(0.0f, 0.2f, 0.0f, 1.4f, -0.7f, 2.57f) + arcToRelative(4.6f, 4.6f, 0.0f, false, true, -2.98f, 2.1f) + arcToRelative(2.77f, 2.77f, 0.0f, false, false, -2.59f, -1.8f) + horizontalLineToRelative(-1.08f) + arcTo(3.99f, 3.99f, 0.0f, false, false, 16.0f, 11.0f) + close() + moveTo(19.5f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) + close() + moveTo(6.5f, 16.77f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(7.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.36f) + curveToRelative(0.0f, 0.2f, 0.0f, 1.4f, -0.7f, 2.57f) + curveToRelative(-0.74f, 1.24f, -2.19f, 2.3f, -4.8f, 2.3f) + reflectiveCurveToRelative(-4.06f, -1.06f, -4.8f, -2.3f) + arcToRelative(5.15f, 5.15f, 0.0f, false, true, -0.7f, -2.57f) + verticalLineToRelative(-0.36f) + close() + moveTo(12.0f, 14.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) + close() + } + } + return _peopleCommunity!! + } + +private var _peopleCommunity: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleCommunityAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleCommunityAdd.kt new file mode 100644 index 00000000..c2c6d75e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleCommunityAdd.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PeopleCommunityAdd: ImageVector + get() { + if (_peopleCommunityAdd != null) { + return _peopleCommunityAdd!! + } + _peopleCommunityAdd = fluentIcon(name = "Filled.PeopleCommunityAdd") { + fluentPath { + moveTo(10.5f, 4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) + close() + moveTo(3.77f, 8.0f) + curveTo(2.79f, 8.0f, 2.0f, 8.8f, 2.0f, 9.77f) + verticalLineToRelative(0.36f) + curveToRelative(0.0f, 0.2f, 0.0f, 1.4f, 0.7f, 2.57f) + arcToRelative(4.6f, 4.6f, 0.0f, false, false, 2.98f, 2.1f) + curveToRelative(0.39f, -1.05f, 1.4f, -1.8f, 2.59f, -1.8f) + horizontalLineToRelative(1.08f) + arcToRelative(3.99f, 3.99f, 0.0f, false, true, -0.81f, -5.0f) + lineTo(3.77f, 8.0f) + close() + moveTo(15.47f, 8.0f) + arcToRelative(3.98f, 3.98f, 0.0f, false, true, 0.34f, 3.22f) + arcToRelative(6.51f, 6.51f, 0.0f, false, true, 5.67f, 1.14f) + curveToRelative(0.52f, -1.05f, 0.52f, -2.04f, 0.52f, -2.23f) + verticalLineToRelative(-0.36f) + curveTo(22.0f, 8.79f, 21.2f, 8.0f, 20.23f, 8.0f) + horizontalLineToRelative(-4.77f) + close() + moveTo(12.02f, 14.0f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, 0.0f, 7.0f) + lineTo(12.0f, 21.0f) + curveToRelative(-2.61f, 0.0f, -4.06f, -1.06f, -4.8f, -2.3f) + arcToRelative(5.15f, 5.15f, 0.0f, false, true, -0.7f, -2.57f) + verticalLineToRelative(-0.36f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(3.75f) + close() + moveTo(16.5f, 7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(18.0f, 20.5f) + lineTo(18.0f, 18.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + lineTo(18.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -1.0f, 0.0f) + lineTo(17.0f, 17.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + lineTo(17.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) + close() + moveTo(9.0f, 10.15f) + arcTo(3.0f, 3.0f, 0.0f, true, false, 12.02f, 7.0f) + lineTo(12.0f, 7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(0.15f) + close() + moveTo(12.02f, 7.0f) + lineTo(12.0f, 7.0f) + close() + } + } + return _peopleCommunityAdd!! + } + +private var _peopleCommunityAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleError.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleError.kt new file mode 100644 index 00000000..f71a6091 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleError.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PeopleError: ImageVector + get() { + if (_peopleError != null) { + return _peopleError!! + } + _peopleError = fluentIcon(name = "Filled.PeopleError") { + fluentPath { + moveTo(8.0f, 11.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, -8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 8.0f) + close() + moveTo(17.0f, 11.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) + close() + moveTo(4.25f, 13.0f) + curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) + verticalLineToRelative(0.25f) + reflectiveCurveTo(2.0f, 20.0f, 8.0f, 20.0f) + arcToRelative(7.9f, 7.9f, 0.0f, false, false, 3.28f, -0.61f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, 1.36f, -6.2f) + arcToRelative(2.24f, 2.24f, 0.0f, false, false, -0.89f, -0.19f) + horizontalLineToRelative(-7.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(17.5f, 14.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(17.5f, 21.13f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.25f) + close() + } + } + return _peopleError!! + } + +private var _peopleError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleList.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleList.kt new file mode 100644 index 00000000..b37eb887 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleList.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PeopleList: ImageVector + get() { + if (_peopleList != null) { + return _peopleList!! + } + _peopleList = fluentIcon(name = "Filled.PeopleList") { + fluentPath { + moveTo(8.0f, 12.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, -8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 8.0f) + close() + moveTo(17.0f, 12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) + close() + moveTo(4.25f, 14.0f) + curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) + verticalLineToRelative(0.25f) + reflectiveCurveTo(2.0f, 21.0f, 8.0f, 21.0f) + curveToRelative(1.85f, 0.0f, 3.14f, -0.43f, 4.02f, -1.02f) + curveToRelative(0.06f, -0.38f, 0.24f, -0.72f, 0.5f, -0.98f) + arcToRelative(1.74f, 1.74f, 0.0f, false, true, 0.0f, -2.5f) + arcToRelative(1.74f, 1.74f, 0.0f, false, true, -0.1f, -2.4f) + curveToRelative(-0.2f, -0.06f, -0.43f, -0.1f, -0.67f, -0.1f) + horizontalLineToRelative(-7.5f) + close() + moveTo(13.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-7.5f) + close() + moveTo(13.75f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-7.5f) + close() + moveTo(13.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-7.5f) + close() + } + } + return _peopleList!! + } + +private var _peopleList: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleLock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleLock.kt new file mode 100644 index 00000000..65116b5a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleLock.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PeopleLock: ImageVector + get() { + if (_peopleLock != null) { + return _peopleLock!! + } + _peopleLock = fluentIcon(name = "Filled.PeopleLock") { + fluentPath { + moveTo(12.0f, 7.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, -8.0f, 0.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 8.0f, 0.0f) + close() + moveTo(16.0f, 10.83f) + arcToRelative(3.49f, 3.49f, 0.0f, false, true, 2.45f, -0.2f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, -2.44f, 0.2f) + close() + moveTo(13.7f, 14.13f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 12.0f, 16.5f) + verticalLineToRelative(2.49f) + arcTo(7.08f, 7.08f, 0.0f, false, true, 8.0f, 20.0f) + curveToRelative(-6.0f, 0.0f, -6.0f, -4.5f, -6.0f, -4.5f) + verticalLineToRelative(-0.25f) + curveTo(2.0f, 14.01f, 3.0f, 13.0f, 4.25f, 13.0f) + horizontalLineToRelative(7.5f) + curveToRelative(0.83f, 0.0f, 1.56f, 0.45f, 1.95f, 1.13f) + close() + moveTo(15.0f, 15.0f) + verticalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(0.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-6.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(0.5f) + close() + moveTo(16.5f, 14.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + close() + moveTo(18.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + } + } + return _peopleLock!! + } + +private var _peopleLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleMoney.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleMoney.kt new file mode 100644 index 00000000..9bc4372a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleMoney.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PeopleMoney: ImageVector + get() { + if (_peopleMoney != null) { + return _peopleMoney!! + } + _peopleMoney = fluentIcon(name = "Filled.PeopleMoney") { + fluentPath { + moveTo(8.0f, 11.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, -8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 8.0f) + close() + moveTo(17.0f, 11.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) + close() + moveTo(4.25f, 13.0f) + curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) + verticalLineToRelative(0.25f) + reflectiveCurveTo(2.0f, 20.0f, 8.0f, 20.0f) + curveToRelative(1.24f, 0.0f, 2.22f, -0.2f, 3.0f, -0.5f) + verticalLineToRelative(-4.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 1.6f, -2.33f) + curveToRelative(-0.26f, -0.11f, -0.55f, -0.17f, -0.85f, -0.17f) + horizontalLineToRelative(-7.5f) + close() + moveTo(12.0f, 15.5f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(8.0f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + verticalLineToRelative(-4.0f) + close() + moveTo(13.0f, 16.0f) + verticalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + close() + moveTo(22.0f, 17.0f) + verticalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + horizontalLineToRelative(-1.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + close() + moveTo(20.0f, 20.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + verticalLineToRelative(-1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + close() + moveTo(13.0f, 18.0f) + verticalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + close() + moveTo(17.5f, 19.25f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, -3.5f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, 3.5f) + close() + } + } + return _peopleMoney!! + } + +private var _peopleMoney: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleProhibited.kt new file mode 100644 index 00000000..9cbf4d64 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleProhibited.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PeopleProhibited: ImageVector + get() { + if (_peopleProhibited != null) { + return _peopleProhibited!! + } + _peopleProhibited = fluentIcon(name = "Filled.PeopleProhibited") { + fluentPath { + moveTo(8.0f, 11.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, -8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 8.0f) + close() + moveTo(17.0f, 11.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) + close() + moveTo(4.25f, 13.0f) + curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) + verticalLineToRelative(0.25f) + reflectiveCurveTo(2.0f, 20.0f, 8.0f, 20.0f) + arcToRelative(7.9f, 7.9f, 0.0f, false, false, 3.28f, -0.61f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, 1.36f, -6.2f) + arcToRelative(2.24f, 2.24f, 0.0f, false, false, -0.89f, -0.19f) + horizontalLineToRelative(-7.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(13.5f, 17.5f) + curveToRelative(0.0f, 0.83f, 0.26f, 1.6f, 0.7f, 2.25f) + lineToRelative(5.55f, -5.56f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) + close() + moveTo(17.5f, 21.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) + lineToRelative(-5.55f, 5.56f) + curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) + close() + } + } + return _peopleProhibited!! + } + +private var _peopleProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleQueue.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleQueue.kt new file mode 100644 index 00000000..f1e01b2f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleQueue.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PeopleQueue: ImageVector + get() { + if (_peopleQueue != null) { + return _peopleQueue!! + } + _peopleQueue = fluentIcon(name = "Filled.PeopleQueue") { + fluentPath { + moveTo(10.5f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) + close() + moveTo(4.75f, 10.0f) + curveTo(3.78f, 10.0f, 3.0f, 10.78f, 3.0f, 11.75f) + verticalLineToRelative(4.75f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, 9.0f, 0.0f) + verticalLineToRelative(-4.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-5.5f) + close() + moveTo(10.86f, 20.85f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 13.0f, 16.5f) + verticalLineToRelative(-4.75f) + curveToRelative(0.0f, -0.66f, -0.24f, -1.27f, -0.63f, -1.75f) + horizontalLineToRelative(2.38f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.75f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -5.64f, 4.35f) + close() + moveTo(11.5f, 6.0f) + curveToRelative(0.0f, 1.0f, -0.37f, 1.91f, -0.97f, 2.61f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -5.23f) + curveToRelative(0.6f, 0.7f, 0.97f, 1.62f, 0.97f, 2.62f) + close() + moveTo(15.36f, 20.85f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 2.14f, -4.35f) + verticalLineToRelative(-4.75f) + curveToRelative(0.0f, -0.66f, -0.24f, -1.27f, -0.63f, -1.75f) + horizontalLineToRelative(2.38f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.75f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -5.64f, 4.35f) + close() + moveTo(16.0f, 6.0f) + curveToRelative(0.0f, 1.0f, -0.37f, 1.91f, -0.97f, 2.61f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -5.23f) + curveToRelative(0.6f, 0.7f, 0.97f, 1.62f, 0.97f, 2.62f) + close() + } + } + return _peopleQueue!! + } + +private var _peopleQueue: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleSearch.kt new file mode 100644 index 00000000..dc231820 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleSearch.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PeopleSearch: ImageVector + get() { + if (_peopleSearch != null) { + return _peopleSearch!! + } + _peopleSearch = fluentIcon(name = "Filled.PeopleSearch") { + fluentPath { + moveTo(11.9f, 14.0f) + horizontalLineToRelative(7.85f) + curveTo(21.0f, 14.0f, 22.0f, 15.0f, 22.0f, 16.25f) + verticalLineToRelative(0.9f) + curveToRelative(0.0f, 1.1f, -0.47f, 2.14f, -1.3f, 2.85f) + curveToRelative(-1.57f, 1.34f, -3.81f, 2.0f, -6.7f, 2.0f) + horizontalLineToRelative(-0.18f) + curveToRelative(0.3f, -0.6f, 0.23f, -1.36f, -0.22f, -1.9f) + lineToRelative(-0.11f, -0.12f) + lineToRelative(-2.23f, -2.22f) + arcTo(5.48f, 5.48f, 0.0f, false, false, 11.9f, 14.0f) + close() + moveTo(6.5f, 10.5f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 3.46f, 7.38f) + lineToRelative(2.82f, 2.81f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 1.14f) + lineToRelative(-0.09f, -0.08f) + lineToRelative(-2.9f, -2.9f) + arcTo(4.5f, 4.5f, 0.0f, true, true, 6.5f, 10.5f) + close() + moveTo(6.5f, 12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + moveTo(14.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + } + } + return _peopleSearch!! + } + +private var _peopleSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleSettings.kt new file mode 100644 index 00000000..5ecaff11 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleSettings.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PeopleSettings: ImageVector + get() { + if (_peopleSettings != null) { + return _peopleSettings!! + } + _peopleSettings = fluentIcon(name = "Filled.PeopleSettings") { + fluentPath { + moveTo(8.0f, 11.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, -8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 8.0f) + close() + moveTo(17.0f, 11.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) + close() + moveTo(4.25f, 13.0f) + curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) + verticalLineToRelative(0.25f) + reflectiveCurveTo(2.0f, 20.0f, 8.0f, 20.0f) + arcToRelative(7.9f, 7.9f, 0.0f, false, false, 3.28f, -0.61f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, 1.36f, -6.2f) + arcToRelative(2.24f, 2.24f, 0.0f, false, false, -0.89f, -0.19f) + horizontalLineToRelative(-7.5f) + close() + moveTo(14.28f, 13.98f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.59f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) + lineToRelative(0.55f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) + lineToRelative(-0.19f, 0.64f) + curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) + lineToRelative(0.49f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.9f) + lineToRelative(-0.2f, -0.7f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) + lineToRelative(0.59f, -0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, -0.01f, -1.8f) + lineToRelative(-0.54f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.19f, -0.63f) + curveToRelative(-0.44f, -0.39f, -0.94f, -0.7f, -1.49f, -0.93f) + lineToRelative(-0.49f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.91f) + lineToRelative(0.2f, 0.69f) + close() + moveTo(17.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) + close() + } + } + return _peopleSettings!! + } + +private var _peopleSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleStar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleStar.kt new file mode 100644 index 00000000..4d1d20f9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleStar.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PeopleStar: ImageVector + get() { + if (_peopleStar != null) { + return _peopleStar!! + } + _peopleStar = fluentIcon(name = "Filled.PeopleStar") { + fluentPath { + moveTo(8.0f, 11.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, -8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 8.0f) + close() + moveTo(17.0f, 11.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) + close() + moveTo(4.25f, 13.0f) + curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) + verticalLineToRelative(0.25f) + reflectiveCurveTo(2.0f, 20.0f, 8.0f, 20.0f) + arcToRelative(7.9f, 7.9f, 0.0f, false, false, 3.28f, -0.61f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, 1.36f, -6.2f) + arcToRelative(2.24f, 2.24f, 0.0f, false, false, -0.89f, -0.19f) + horizontalLineToRelative(-7.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(18.06f, 14.42f) + arcToRelative(0.58f, 0.58f, 0.0f, false, false, -1.12f, 0.0f) + lineToRelative(-0.55f, 1.79f) + horizontalLineToRelative(-1.8f) + curveToRelative(-0.57f, 0.0f, -0.8f, 0.75f, -0.35f, 1.1f) + lineToRelative(1.46f, 1.1f) + lineToRelative(-0.56f, 1.79f) + curveToRelative(-0.17f, 0.56f, 0.44f, 1.03f, 0.9f, 0.68f) + lineToRelative(1.46f, -1.1f) + lineToRelative(1.46f, 1.1f) + curveToRelative(0.46f, 0.35f, 1.07f, -0.12f, 0.9f, -0.68f) + lineToRelative(-0.56f, -1.79f) + lineToRelative(1.46f, -1.1f) + curveToRelative(0.46f, -0.35f, 0.22f, -1.1f, -0.35f, -1.1f) + horizontalLineToRelative(-1.8f) + lineToRelative(-0.55f, -1.79f) + close() + } + } + return _peopleStar!! + } + +private var _peopleStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleSwap.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleSwap.kt new file mode 100644 index 00000000..3ab3d6da --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleSwap.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PeopleSwap: ImageVector + get() { + if (_peopleSwap != null) { + return _peopleSwap!! + } + _peopleSwap = fluentIcon(name = "Filled.PeopleSwap") { + fluentPath { + moveTo(12.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, -8.0f, 0.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 8.0f, 0.0f) + close() + moveTo(20.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) + close() + moveTo(2.0f, 16.25f) + curveTo(2.0f, 15.01f, 3.0f, 14.0f, 4.25f, 14.0f) + horizontalLineToRelative(7.5f) + curveToRelative(0.37f, 0.0f, 0.72f, 0.09f, 1.03f, 0.25f) + lineTo(10.5f, 16.5f) + curveToRelative(-0.68f, 0.69f, -0.68f, 1.8f, 0.0f, 2.48f) + lineToRelative(1.19f, 1.18f) + curveToRelative(-0.87f, 0.5f, -2.06f, 0.83f, -3.7f, 0.83f) + curveToRelative(-6.0f, 0.0f, -6.0f, -4.5f, -6.0f, -4.5f) + verticalLineToRelative(-0.25f) + close() + moveTo(20.28f, 14.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineTo(20.44f, 17.0f) + horizontalLineToRelative(-6.88f) + lineToRelative(1.22f, -1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineToRelative(-2.5f, 2.5f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineToRelative(-1.22f, -1.22f) + horizontalLineToRelative(6.88f) + lineToRelative(-1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineToRelative(2.5f, -2.5f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-2.5f, -2.5f) + close() + } + } + return _peopleSwap!! + } + +private var _peopleSwap: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleTeam.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleTeam.kt new file mode 100644 index 00000000..50fa894f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleTeam.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PeopleTeam: ImageVector + get() { + if (_peopleTeam != null) { + return _peopleTeam!! + } + _peopleTeam = fluentIcon(name = "Filled.PeopleTeam") { + fluentPath { + moveTo(14.75f, 10.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.75f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -9.0f, 0.0f) + verticalLineToRelative(-4.75f) + curveToRelative(0.0f, -0.97f, 0.79f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(5.5f) + close() + moveTo(7.13f, 10.0f) + curveToRelative(-0.35f, 0.42f, -0.57f, 0.95f, -0.62f, 1.53f) + verticalLineToRelative(4.97f) + curveToRelative(0.0f, 0.85f, 0.18f, 1.65f, 0.52f, 2.36f) + arcTo(4.0f, 4.0f, 0.0f, false, true, 2.0f, 15.0f) + verticalLineToRelative(-3.24f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) + lineToRelative(0.15f, -0.01f) + horizontalLineToRelative(3.38f) + close() + moveTo(16.87f, 10.0f) + horizontalLineToRelative(3.38f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(22.0f, 15.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -5.03f, 3.87f) + curveToRelative(0.3f, -0.63f, 0.48f, -1.32f, 0.53f, -2.06f) + verticalLineToRelative(-5.06f) + curveToRelative(0.0f, -0.67f, -0.23f, -1.28f, -0.63f, -1.75f) + close() + moveTo(12.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) + close() + moveTo(18.5f, 4.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + moveTo(5.5f, 4.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + } + } + return _peopleTeam!! + } + +private var _peopleTeam: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleTeamAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleTeamAdd.kt new file mode 100644 index 00000000..4123055b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleTeamAdd.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PeopleTeamAdd: ImageVector + get() { + if (_peopleTeamAdd != null) { + return _peopleTeamAdd!! + } + _peopleTeamAdd = fluentIcon(name = "Filled.PeopleTeamAdd") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(17.5f, 14.0f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) + lineToRelative(-0.01f, 0.1f) + lineTo(17.0f, 17.0f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(0.18f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) + lineToRelative(0.1f, 0.01f) + lineTo(17.0f, 18.0f) + verticalLineToRelative(2.6f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + horizontalLineToRelative(0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) + lineToRelative(0.01f, -0.1f) + lineTo(18.0f, 18.0f) + horizontalLineToRelative(2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + verticalLineToRelative(-0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) + lineToRelative(-0.1f, -0.01f) + lineTo(18.0f, 17.0f) + verticalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) + horizontalLineToRelative(-0.09f) + close() + moveTo(14.25f, 10.0f) + curveToRelative(0.84f, 0.0f, 1.57f, 0.45f, 1.96f, 1.13f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) + lineTo(12.0f, 21.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -4.5f, -4.5f) + verticalLineToRelative(-4.25f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(4.5f) + close() + moveTo(7.41f, 10.0f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, -0.9f, 2.03f) + verticalLineToRelative(4.47f) + curveToRelative(0.0f, 0.85f, 0.18f, 1.65f, 0.52f, 2.36f) + arcTo(4.0f, 4.0f, 0.0f, false, true, 2.0f, 15.0f) + verticalLineToRelative(-2.74f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineToRelative(0.15f, -0.01f) + horizontalLineToRelative(3.16f) + close() + moveTo(19.75f, 10.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(0.56f) + arcTo(6.48f, 6.48f, 0.0f, false, false, 17.5f, 11.0f) + horizontalLineToRelative(-0.24f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -0.66f, -1.0f) + horizontalLineToRelative(3.15f) + close() + moveTo(18.5f, 4.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + moveTo(12.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) + close() + moveTo(5.5f, 4.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + } + } + return _peopleTeamAdd!! + } + +private var _peopleTeamAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleTeamDelete.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleTeamDelete.kt new file mode 100644 index 00000000..45c4598b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleTeamDelete.kt @@ -0,0 +1,100 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PeopleTeamDelete: ImageVector + get() { + if (_peopleTeamDelete != null) { + return _peopleTeamDelete!! + } + _peopleTeamDelete = fluentIcon(name = "Filled.PeopleTeamDelete") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(14.25f, 10.0f) + curveToRelative(0.84f, 0.0f, 1.57f, 0.45f, 1.96f, 1.13f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) + lineTo(12.0f, 21.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -4.5f, -4.5f) + verticalLineToRelative(-4.25f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(4.5f) + close() + moveTo(15.09f, 14.97f) + lineTo(15.02f, 15.02f) + lineTo(14.97f, 15.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.05f, 0.07f) + lineToRelative(1.77f, 1.77f) + lineToRelative(-1.76f, 1.77f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.06f, 0.06f) + lineToRelative(0.07f, 0.06f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) + lineToRelative(0.07f, -0.06f) + lineToRelative(1.77f, -1.76f) + lineToRelative(1.77f, 1.77f) + lineToRelative(0.07f, 0.05f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.57f, 0.0f) + lineToRelative(0.07f, -0.05f) + lineToRelative(0.05f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) + lineToRelative(-0.05f, -0.07f) + lineToRelative(-1.77f, -1.77f) + lineToRelative(1.77f, -1.77f) + lineToRelative(0.06f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) + lineToRelative(-0.06f, -0.07f) + lineToRelative(-0.07f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) + lineToRelative(-0.07f, 0.05f) + lineToRelative(-1.77f, 1.77f) + lineToRelative(-1.77f, -1.77f) + lineToRelative(-0.07f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.05f) + lineToRelative(-0.07f, 0.05f) + close() + moveTo(7.41f, 10.0f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, -0.9f, 2.03f) + verticalLineToRelative(4.47f) + curveToRelative(0.0f, 0.85f, 0.18f, 1.65f, 0.52f, 2.36f) + arcTo(4.0f, 4.0f, 0.0f, false, true, 2.0f, 15.0f) + verticalLineToRelative(-2.74f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineToRelative(0.15f, -0.01f) + horizontalLineToRelative(3.16f) + close() + moveTo(19.75f, 10.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(0.56f) + arcTo(6.48f, 6.48f, 0.0f, false, false, 17.5f, 11.0f) + horizontalLineToRelative(-0.24f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -0.66f, -1.0f) + horizontalLineToRelative(3.15f) + close() + moveTo(18.5f, 4.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + moveTo(12.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) + close() + moveTo(5.5f, 4.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + } + } + return _peopleTeamDelete!! + } + +private var _peopleTeamDelete: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleTeamToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleTeamToolbox.kt new file mode 100644 index 00000000..8b20ab50 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PeopleTeamToolbox.kt @@ -0,0 +1,110 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PeopleTeamToolbox: ImageVector + get() { + if (_peopleTeamToolbox != null) { + return _peopleTeamToolbox!! + } + _peopleTeamToolbox = fluentIcon(name = "Filled.PeopleTeamToolbox") { + fluentPath { + moveTo(14.75f, 10.0f) + curveToRelative(0.8f, 0.0f, 1.47f, 0.53f, 1.68f, 1.25f) + horizontalLineToRelative(-0.68f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 13.0f, 14.0f) + verticalLineToRelative(0.05f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.0f, 2.45f) + verticalLineToRelative(4.39f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -3.5f, -4.4f) + verticalLineToRelative(-4.74f) + curveToRelative(0.0f, -0.97f, 0.79f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(5.5f) + close() + moveTo(19.25f, 11.25f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 13.99f) + verticalLineToRelative(-2.24f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.38f) + curveToRelative(0.3f, 0.35f, 0.5f, 0.78f, 0.59f, 1.25f) + horizontalLineToRelative(1.79f) + close() + moveTo(7.13f, 10.0f) + curveToRelative(-0.35f, 0.42f, -0.57f, 0.95f, -0.62f, 1.53f) + verticalLineToRelative(4.97f) + curveToRelative(0.0f, 0.85f, 0.18f, 1.65f, 0.52f, 2.36f) + arcTo(4.0f, 4.0f, 0.0f, false, true, 2.0f, 15.0f) + verticalLineToRelative(-3.24f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) + lineToRelative(0.15f, -0.01f) + horizontalLineToRelative(3.38f) + close() + moveTo(12.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) + close() + moveTo(18.5f, 4.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + moveTo(5.5f, 4.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + moveTo(14.0f, 15.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + lineTo(12.0f, 18.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(16.0f, 18.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(20.5f, 18.0f) + lineTo(23.0f, 18.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(21.0f, 15.0f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(1.0f) + close() + moveTo(15.5f, 14.0f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(12.0f, 21.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + lineTo(23.0f, 19.5f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + close() + } + } + return _peopleTeamToolbox!! + } + +private var _peopleTeamToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonAccounts.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonAccounts.kt new file mode 100644 index 00000000..b44ca6f0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonAccounts.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonAccounts: ImageVector + get() { + if (_personAccounts != null) { + return _personAccounts!! + } + _personAccounts = fluentIcon(name = "Filled.PersonAccounts") { + fluentPath { + moveTo(13.0f, 14.05f) + lineTo(13.0f, 14.0f) + lineTo(4.25f, 14.0f) + curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) + verticalLineToRelative(0.92f) + curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) + curveTo(4.06f, 20.92f, 6.58f, 22.0f, 10.0f, 22.0f) + curveToRelative(0.36f, 0.0f, 0.7f, -0.01f, 1.04f, -0.03f) + curveToRelative(-0.03f, -0.15f, -0.04f, -0.31f, -0.04f, -0.47f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -1.2f, 0.86f, -2.22f, 2.0f, -2.45f) + close() + moveTo(10.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(14.0f, 15.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(8.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(21.0f, 15.0f) + verticalLineToRelative(-1.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(14.0f, 15.0f) + close() + moveTo(15.5f, 13.75f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + lineTo(19.5f, 15.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-1.25f) + close() + } + } + return _personAccounts!! + } + +private var _personAccounts: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonAdd.kt new file mode 100644 index 00000000..e1f9505d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonAdd.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonAdd: ImageVector + get() { + if (_personAdd != null) { + return _personAdd!! + } + _personAdd = fluentIcon(name = "Filled.PersonAdd") { + fluentPath { + moveTo(11.0f, 17.5f) + curveToRelative(0.0f, -1.29f, 0.38f, -2.49f, 1.02f, -3.5f) + lineTo(4.25f, 14.0f) + curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) + verticalLineToRelative(0.92f) + curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) + curveTo(4.06f, 20.92f, 6.58f, 22.0f, 10.0f, 22.0f) + curveToRelative(0.93f, 0.0f, 1.8f, -0.08f, 2.6f, -0.24f) + arcTo(6.48f, 6.48f, 0.0f, false, true, 11.0f, 17.5f) + close() + moveTo(15.0f, 7.0f) + arcTo(5.0f, 5.0f, 0.0f, true, false, 5.0f, 7.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 10.0f, 0.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(17.41f, 14.0f) + horizontalLineToRelative(0.18f) + curveToRelative(0.2f, 0.05f, 0.37f, 0.2f, 0.4f, 0.41f) + lineToRelative(0.01f, 0.09f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.6f) + curveToRelative(0.2f, 0.05f, 0.36f, 0.2f, 0.4f, 0.41f) + verticalLineToRelative(0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, 0.4f) + lineToRelative(-0.1f, 0.01f) + lineTo(18.0f, 18.0f) + verticalLineToRelative(2.59f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.41f, 0.4f) + lineToRelative(-0.09f, 0.01f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, -0.41f) + lineTo(17.0f, 20.5f) + lineTo(17.0f, 18.0f) + lineTo(14.4f, 18.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, -0.41f) + verticalLineToRelative(-0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.4f, -0.4f) + lineToRelative(0.1f, -0.01f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.59f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.41f, -0.4f) + close() + } + } + return _personAdd!! + } + +private var _personAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonAlert.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonAlert.kt new file mode 100644 index 00000000..3b5f05dd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonAlert.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonAlert: ImageVector + get() { + if (_personAlert != null) { + return _personAlert!! + } + _personAlert = fluentIcon(name = "Filled.PersonAlert") { + fluentPath { + moveTo(17.75f, 14.0f) + curveTo(19.0f, 14.0f, 20.0f, 15.0f, 20.0f, 16.25f) + verticalLineToRelative(0.92f) + curveToRelative(0.0f, 0.57f, -0.18f, 1.13f, -0.5f, 1.6f) + curveTo(17.93f, 20.93f, 15.41f, 22.0f, 12.0f, 22.0f) + horizontalLineToRelative(-0.48f) + curveToRelative(0.12f, -0.01f, 0.37f, -0.03f, 0.62f, -0.14f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.72f, -1.99f) + curveToRelative(-0.1f, -0.24f, -0.3f, -0.41f, -0.38f, -0.5f) + lineToRelative(-0.37f, -0.32f) + lineToRelative(-0.61f, -0.51f) + verticalLineTo(16.0f) + curveToRelative(0.0f, -0.71f, -0.15f, -1.39f, -0.42f, -2.0f) + horizontalLineToRelative(6.67f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(6.5f, 12.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, 4.0f) + verticalLineToRelative(3.0f) + lineToRelative(-0.95f, 0.8f) + curveToRelative(-0.3f, 0.26f, -0.46f, 0.39f, -0.5f, 0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.24f, 0.65f) + curveToRelative(0.1f, 0.05f, 0.3f, 0.05f, 0.7f, 0.05f) + horizontalLineToRelative(9.02f) + curveToRelative(0.4f, 0.0f, 0.6f, 0.0f, 0.7f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.25f, -0.66f) + curveToRelative(-0.05f, -0.1f, -0.2f, -0.23f, -0.5f, -0.49f) + lineToRelative(-0.96f, -0.8f) + verticalLineToRelative(-3.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, -4.0f) + close() + moveTo(8.0f, 22.0f) + curveToRelative(-0.22f, 0.58f, -0.8f, 1.0f, -1.5f, 1.0f) + curveToRelative(-0.69f, 0.0f, -1.28f, -0.42f, -1.5f, -1.0f) + horizontalLineToRelative(3.0f) + close() + } + } + return _personAlert!! + } + +private var _personAlert: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonArrowBack.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonArrowBack.kt new file mode 100644 index 00000000..66126b44 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonArrowBack.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonArrowBack: ImageVector + get() { + if (_personArrowBack != null) { + return _personArrowBack!! + } + _personArrowBack = fluentIcon(name = "Filled.PersonArrowBack") { + fluentPath { + moveTo(11.0f, 17.5f) + curveToRelative(0.0f, -1.29f, 0.38f, -2.49f, 1.02f, -3.5f) + lineTo(4.25f, 14.0f) + curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) + verticalLineToRelative(0.92f) + curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) + curveTo(4.06f, 20.92f, 6.58f, 22.0f, 10.0f, 22.0f) + curveToRelative(0.93f, 0.0f, 1.8f, -0.08f, 2.6f, -0.24f) + arcTo(6.47f, 6.47f, 0.0f, false, true, 11.0f, 17.5f) + close() + moveTo(10.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(16.35f, 15.35f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(1.5f, 1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-0.64f, -0.65f) + horizontalLineToRelative(2.04f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(0.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-0.25f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-2.04f) + lineToRelative(0.64f, -0.65f) + close() + } + } + return _personArrowBack!! + } + +private var _personArrowBack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonArrowLeft.kt new file mode 100644 index 00000000..00e57ace --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonArrowLeft.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonArrowLeft: ImageVector + get() { + if (_personArrowLeft != null) { + return _personArrowLeft!! + } + _personArrowLeft = fluentIcon(name = "Filled.PersonArrowLeft") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(12.02f, 14.0f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, 0.6f, 7.8f) + curveToRelative(-0.8f, 0.13f, -1.68f, 0.2f, -2.62f, 0.2f) + curveToRelative(-2.89f, 0.0f, -5.13f, -0.66f, -6.7f, -2.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 2.0f, 17.16f) + verticalLineToRelative(-0.91f) + curveTo(2.0f, 15.01f, 3.01f, 14.0f, 4.25f, 14.0f) + horizontalLineToRelative(7.77f) + close() + moveTo(16.72f, 14.59f) + lineTo(16.65f, 14.65f) + lineTo(14.13f, 17.16f) + lineTo(14.09f, 17.21f) + lineTo(14.06f, 17.27f) + lineTo(14.03f, 17.35f) + lineTo(14.02f, 17.39f) + lineTo(14.0f, 17.48f) + verticalLineToRelative(0.09f) + lineToRelative(0.03f, 0.08f) + lineToRelative(0.03f, 0.08f) + lineToRelative(0.02f, 0.04f) + lineToRelative(0.05f, 0.07f) + lineToRelative(2.52f, 2.51f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.77f, -0.63f) + lineToRelative(-0.06f, -0.07f) + lineTo(15.7f, 18.0f) + horizontalLineToRelative(4.79f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.41f) + verticalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.5f) + horizontalLineToRelative(-4.88f) + lineToRelative(1.65f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.06f, -0.63f) + lineToRelative(-0.06f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.64f, -0.06f) + close() + moveTo(10.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + } + } + return _personArrowLeft!! + } + +private var _personArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonArrowRight.kt new file mode 100644 index 00000000..f3783640 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonArrowRight.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonArrowRight: ImageVector + get() { + if (_personArrowRight != null) { + return _personArrowRight!! + } + _personArrowRight = fluentIcon(name = "Filled.PersonArrowRight") { + fluentPath { + moveTo(11.0f, 17.5f) + curveToRelative(0.0f, -1.29f, 0.38f, -2.49f, 1.02f, -3.5f) + lineTo(4.25f, 14.0f) + curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) + verticalLineToRelative(0.92f) + curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) + curveTo(4.06f, 20.92f, 6.58f, 22.0f, 10.0f, 22.0f) + curveToRelative(0.93f, 0.0f, 1.8f, -0.08f, 2.6f, -0.24f) + arcTo(6.47f, 6.47f, 0.0f, false, true, 11.0f, 17.5f) + close() + moveTo(10.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(18.35f, 14.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(19.29f, 17.0f) + lineTo(15.0f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) + horizontalLineToRelative(4.3f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.15f, -0.34f) + verticalLineToRelative(-0.01f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.15f, -0.36f) + lineToRelative(-2.5f, -2.5f) + close() + } + } + return _personArrowRight!! + } + +private var _personArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonAvailable.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonAvailable.kt new file mode 100644 index 00000000..3592bd39 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonAvailable.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonAvailable: ImageVector + get() { + if (_personAvailable != null) { + return _personAvailable!! + } + _personAvailable = fluentIcon(name = "Filled.PersonAvailable") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(12.02f, 14.0f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, 0.57f, 7.76f) + curveToRelative(-0.8f, 0.16f, -1.66f, 0.24f, -2.59f, 0.24f) + curveToRelative(-3.42f, 0.0f, -5.94f, -1.07f, -7.49f, -3.24f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.5f, -1.6f) + verticalLineToRelative(-0.91f) + curveTo(2.0f, 15.0f, 3.0f, 14.0f, 4.24f, 14.0f) + horizontalLineToRelative(7.77f) + close() + moveTo(14.85f, 17.15f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.7f, -0.7f) + lineToRelative(-3.65f, 3.64f) + lineToRelative(-1.65f, -1.64f) + close() + moveTo(10.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + } + } + return _personAvailable!! + } + +private var _personAvailable: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonBoard.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonBoard.kt new file mode 100644 index 00000000..95c5f495 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonBoard.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonBoard: ImageVector + get() { + if (_personBoard != null) { + return _personBoard!! + } + _personBoard = fluentIcon(name = "Filled.PersonBoard") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(8.5f) + curveTo(3.0f, 16.55f, 4.46f, 18.0f, 6.25f, 18.0f) + horizontalLineToRelative(8.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-8.5f) + curveTo(18.0f, 4.45f, 16.54f, 3.0f, 14.75f, 3.0f) + horizontalLineToRelative(-8.5f) + close() + moveTo(12.75f, 7.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.5f, 0.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.5f, 0.0f) + close() + moveTo(13.5f, 10.75f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 0.5f, -0.09f, 0.86f, -0.25f, 1.16f) + curveToRelative(-0.17f, 0.3f, -0.43f, 0.56f, -0.82f, 0.83f) + curveToRelative(-0.73f, 0.5f, -1.86f, 0.76f, -3.43f, 0.76f) + arcToRelative(6.12f, 6.12f, 0.0f, false, true, -3.24f, -0.76f) + arcToRelative(3.1f, 3.1f, 0.0f, false, true, -0.94f, -0.83f) + curveToRelative(-0.2f, -0.3f, -0.32f, -0.66f, -0.32f, -1.16f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(6.0f) + close() + moveTo(6.01f, 19.0f) + curveToRelative(0.58f, 0.9f, 1.59f, 1.5f, 2.74f, 1.5f) + horizontalLineToRelative(6.5f) + curveToRelative(2.9f, 0.0f, 5.25f, -2.35f, 5.25f, -5.25f) + verticalLineToRelative(-6.5f) + curveToRelative(0.0f, -1.15f, -0.6f, -2.16f, -1.5f, -2.74f) + verticalLineToRelative(9.24f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 15.25f, 19.0f) + lineTo(6.01f, 19.0f) + close() + } + } + return _personBoard!! + } + +private var _personBoard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonCall.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonCall.kt new file mode 100644 index 00000000..2449614f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonCall.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonCall: ImageVector + get() { + if (_personCall != null) { + return _personCall!! + } + _personCall = fluentIcon(name = "Filled.PersonCall") { + fluentPath { + moveTo(17.72f, 15.95f) + arcToRelative(2.2f, 2.2f, 0.0f, false, true, -0.57f, -1.95f) + lineTo(6.25f, 14.0f) + curveTo(5.01f, 14.0f, 4.0f, 15.0f, 4.0f, 16.25f) + verticalLineToRelative(0.92f) + curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) + curveTo(6.06f, 20.92f, 8.58f, 22.0f, 12.0f, 22.0f) + arcToRelative(15.0f, 15.0f, 0.0f, false, false, 1.13f, -0.04f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.36f, -2.16f) + lineToRelative(0.8f, -1.01f) + arcToRelative(2.2f, 2.2f, 0.0f, false, true, 2.23f, -0.77f) + lineToRelative(0.84f, 0.2f) + curveToRelative(0.52f, -0.43f, 0.83f, -0.97f, 0.95f, -1.64f) + lineToRelative(-0.6f, -0.63f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(18.2f, 14.0f) + lineTo(18.67f, 12.79f) + curveToRelative(0.24f, -0.61f, 0.92f, -0.93f, 1.55f, -0.73f) + lineToRelative(0.43f, 0.14f) + curveToRelative(0.72f, 0.24f, 1.32f, 0.8f, 1.35f, 1.57f) + curveToRelative(0.1f, 3.11f, -2.48f, 7.58f, -5.22f, 9.06f) + curveToRelative(-0.67f, 0.36f, -1.46f, 0.12f, -2.03f, -0.4f) + lineToRelative(-0.34f, -0.3f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.14f, -1.7f) + lineToRelative(0.8f, -1.02f) + arcToRelative(1.2f, 1.2f, 0.0f, false, true, 1.22f, -0.42f) + lineToRelative(1.3f, 0.32f) + arcToRelative(3.78f, 3.78f, 0.0f, false, false, 1.77f, -3.08f) + lineToRelative(-0.92f, -0.96f) + arcToRelative(1.2f, 1.2f, 0.0f, false, true, -0.25f, -1.28f) + close() + } + } + return _personCall!! + } + +private var _personCall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonChat.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonChat.kt new file mode 100644 index 00000000..75147200 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonChat.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonChat: ImageVector + get() { + if (_personChat != null) { + return _personChat!! + } + _personChat = fluentIcon(name = "Filled.PersonChat") { + fluentPath { + moveTo(11.0f, 17.5f) + curveToRelative(0.0f, -1.29f, 0.37f, -2.5f, 1.02f, -3.5f) + lineTo(6.25f, 14.0f) + curveTo(5.0f, 14.0f, 4.0f, 15.0f, 4.0f, 16.25f) + verticalLineToRelative(0.92f) + curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) + curveToRelative(1.4f, 1.96f, 3.62f, 3.03f, 6.58f, 3.2f) + lineToRelative(0.52f, -1.7f) + arcTo(6.48f, 6.48f, 0.0f, false, true, 11.0f, 17.5f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, -8.17f, 4.81f) + lineToRelative(-2.19f, 0.67f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.62f, -0.63f) + lineToRelative(0.67f, -2.18f) + arcTo(5.5f, 5.5f, 0.0f, true, true, 23.0f, 17.5f) + close() + moveTo(15.5f, 16.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) + horizontalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(15.0f, 18.5f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + close() + } + } + return _personChat!! + } + +private var _personChat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonCircle.kt new file mode 100644 index 00000000..37d86a62 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonCircle.kt @@ -0,0 +1,39 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonCircle: ImageVector + get() { + if (_personCircle != null) { + return _personCircle!! + } + _personCircle = fluentIcon(name = "Filled.PersonCircle") { + fluentPath { + moveTo(12.0f, 22.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, -20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, 20.0f) + close() + moveTo(17.0f, 13.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + horizontalLineToRelative(-7.0f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 1.97f, 1.86f, 4.0f, 5.0f, 4.0f) + curveToRelative(3.14f, 0.0f, 5.0f, -2.03f, 5.0f, -4.0f) + verticalLineToRelative(-0.5f) + close() + moveTo(14.75f, 8.25f) + arcToRelative(2.75f, 2.75f, 0.0f, true, false, -5.5f, 0.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 5.5f, 0.0f) + close() + } + } + return _personCircle!! + } + +private var _personCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonClock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonClock.kt new file mode 100644 index 00000000..3a27e535 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonClock.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonClock: ImageVector + get() { + if (_personClock != null) { + return _personClock!! + } + _personClock = fluentIcon(name = "Filled.PersonClock") { + fluentPath { + moveTo(11.0f, 17.5f) + curveToRelative(0.0f, -1.29f, 0.38f, -2.49f, 1.02f, -3.5f) + lineTo(4.25f, 14.0f) + curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) + verticalLineToRelative(0.58f) + curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) + curveTo(4.47f, 21.1f, 6.85f, 22.0f, 10.0f, 22.0f) + curveToRelative(0.93f, 0.0f, 1.8f, -0.08f, 2.6f, -0.24f) + arcTo(6.48f, 6.48f, 0.0f, false, true, 11.0f, 17.5f) + close() + moveTo(10.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(19.5f, 17.5f) + horizontalLineToRelative(-2.0f) + lineTo(17.5f, 15.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -1.0f, 0.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + close() + } + } + return _personClock!! + } + +private var _personClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonDelete.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonDelete.kt new file mode 100644 index 00000000..6f8b6bb1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonDelete.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonDelete: ImageVector + get() { + if (_personDelete != null) { + return _personDelete!! + } + _personDelete = fluentIcon(name = "Filled.PersonDelete") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(12.02f, 14.0f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, 0.6f, 7.8f) + curveToRelative(-0.8f, 0.13f, -1.68f, 0.2f, -2.62f, 0.2f) + curveToRelative(-2.89f, 0.0f, -5.13f, -0.66f, -6.7f, -2.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 2.0f, 17.16f) + verticalLineToRelative(-0.91f) + curveTo(2.0f, 15.01f, 3.01f, 14.0f, 4.25f, 14.0f) + horizontalLineToRelative(7.77f) + close() + moveTo(15.09f, 14.97f) + lineTo(15.02f, 15.02f) + lineTo(14.97f, 15.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.05f, 0.07f) + lineToRelative(1.77f, 1.77f) + lineToRelative(-1.76f, 1.77f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.06f, 0.06f) + lineToRelative(0.07f, 0.06f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) + lineToRelative(0.07f, -0.06f) + lineToRelative(1.77f, -1.76f) + lineToRelative(1.77f, 1.77f) + lineToRelative(0.07f, 0.05f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.57f, 0.0f) + lineToRelative(0.07f, -0.05f) + lineToRelative(0.05f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) + lineToRelative(-0.05f, -0.07f) + lineToRelative(-1.77f, -1.77f) + lineToRelative(1.77f, -1.77f) + lineToRelative(0.06f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) + lineToRelative(-0.06f, -0.07f) + lineToRelative(-0.07f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) + lineToRelative(-0.07f, 0.05f) + lineToRelative(-1.77f, 1.77f) + lineToRelative(-1.77f, -1.77f) + lineToRelative(-0.07f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.49f, -0.05f) + lineToRelative(-0.08f, 0.05f) + close() + moveTo(10.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + } + } + return _personDelete!! + } + +private var _personDelete: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonEdit.kt new file mode 100644 index 00000000..4e66ee29 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonEdit.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonEdit: ImageVector + get() { + if (_personEdit != null) { + return _personEdit!! + } + _personEdit = fluentIcon(name = "Filled.PersonEdit") { + fluentPath { + moveTo(12.5f, 17.86f) + lineTo(16.35f, 14.0f) + lineTo(6.26f, 14.0f) + curveTo(5.0f, 14.0f, 4.0f, 15.0f, 4.0f, 16.25f) + verticalLineToRelative(0.92f) + curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) + curveToRelative(1.4f, 1.94f, 3.57f, 3.0f, 6.49f, 3.2f) + curveToRelative(0.0f, -0.18f, 0.02f, -0.37f, 0.06f, -0.56f) + lineToRelative(0.46f, -1.83f) + curveToRelative(0.16f, -0.65f, 0.5f, -1.24f, 0.97f, -1.71f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _personEdit!! + } + +private var _personEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonFeedback.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonFeedback.kt new file mode 100644 index 00000000..368b46ae --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonFeedback.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonFeedback: ImageVector + get() { + if (_personFeedback != null) { + return _personFeedback!! + } + _personFeedback = fluentIcon(name = "Filled.PersonFeedback") { + fluentPath { + moveTo(14.77f, 12.4f) + curveToRelative(0.15f, 0.07f, 0.32f, 0.1f, 0.48f, 0.1f) + curveToRelative(0.33f, 0.0f, 0.64f, -0.13f, 0.88f, -0.36f) + lineTo(18.31f, 10.0f) + horizontalLineToRelative(0.94f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 7.25f) + verticalLineToRelative(-2.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 2.0f) + horizontalLineToRelative(-4.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 12.0f, 4.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 1.26f, 0.85f, 2.32f, 2.0f, 2.65f) + verticalLineToRelative(1.35f) + curveToRelative(0.0f, 0.5f, 0.31f, 0.95f, 0.77f, 1.15f) + close() + moveTo(8.0f, 13.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 0.0f, -7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 0.0f, 7.0f) + close() + moveTo(8.0f, 22.0f) + curveToRelative(-2.06f, 0.0f, -3.64f, -0.56f, -4.7f, -1.67f) + curveToRelative(-1.34f, -1.4f, -1.3f, -3.17f, -1.3f, -3.36f) + verticalLineToRelative(-0.01f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 4.0f, 15.0f) + horizontalLineToRelative(8.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + curveToRelative(0.0f, 0.13f, 0.05f, 1.92f, -1.3f, 3.33f) + curveTo(11.64f, 21.44f, 10.06f, 22.0f, 8.0f, 22.0f) + close() + } + } + return _personFeedback!! + } + +private var _personFeedback: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonHeart.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonHeart.kt new file mode 100644 index 00000000..551c9fb6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonHeart.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonHeart: ImageVector + get() { + if (_personHeart != null) { + return _personHeart!! + } + _personHeart = fluentIcon(name = "Filled.PersonHeart") { + fluentPath { + moveTo(11.4f, 19.07f) + arcToRelative(4.47f, 4.47f, 0.0f, false, true, -0.88f, -5.07f) + lineTo(4.25f, 14.0f) + curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) + verticalLineToRelative(0.92f) + curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) + curveTo(4.06f, 20.92f, 6.58f, 22.0f, 10.0f, 22.0f) + curveToRelative(1.41f, 0.0f, 2.67f, -0.18f, 3.77f, -0.55f) + lineToRelative(-2.37f, -2.38f) + close() + moveTo(10.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(17.04f, 23.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.53f, -0.22f) + lineToRelative(-4.4f, -4.41f) + arcToRelative(3.47f, 3.47f, 0.0f, false, true, 4.9f, -4.9f) + lineToRelative(0.03f, 0.03f) + lineToRelative(0.04f, -0.04f) + arcToRelative(3.47f, 3.47f, 0.0f, false, true, 4.9f, 4.9f) + lineToRelative(-4.4f, 4.42f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.22f) + close() + } + } + return _personHeart!! + } + +private var _personHeart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonLightbulb.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonLightbulb.kt new file mode 100644 index 00000000..ab2610ff --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonLightbulb.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonLightbulb: ImageVector + get() { + if (_personLightbulb != null) { + return _personLightbulb!! + } + _personLightbulb = fluentIcon(name = "Filled.PersonLightbulb") { + fluentPath { + moveTo(13.0f, 16.0f) + curveToRelative(0.0f, -0.71f, 0.15f, -1.39f, 0.42f, -2.0f) + lineTo(6.25f, 14.0f) + curveTo(5.01f, 14.0f, 4.0f, 15.0f, 4.0f, 16.25f) + verticalLineToRelative(0.92f) + curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) + curveTo(6.06f, 20.92f, 8.58f, 22.0f, 12.0f, 22.0f) + curveToRelative(1.18f, 0.0f, 2.24f, -0.13f, 3.2f, -0.38f) + lineToRelative(-0.34f, -1.73f) + arcTo(5.0f, 5.0f, 0.0f, false, true, 13.0f, 16.0f) + close() + moveTo(17.0f, 7.0f) + arcTo(5.0f, 5.0f, 0.0f, true, false, 7.0f, 7.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 10.0f, 0.0f) + close() + moveTo(22.0f, 16.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -1.76f, 3.32f) + lineToRelative(-0.14f, 0.68f) + horizontalLineToRelative(-4.2f) + lineToRelative(-0.14f, -0.68f) + arcTo(4.0f, 4.0f, 0.0f, true, true, 22.0f, 16.0f) + close() + moveTo(16.1f, 21.0f) + lineTo(16.26f, 21.8f) + curveToRelative(0.14f, 0.7f, 0.76f, 1.2f, 1.47f, 1.2f) + horizontalLineToRelative(0.54f) + curveToRelative(0.72f, 0.0f, 1.33f, -0.5f, 1.47f, -1.2f) + lineToRelative(0.16f, -0.8f) + horizontalLineToRelative(-3.8f) + close() + } + } + return _personLightbulb!! + } + +private var _personLightbulb: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonLink.kt new file mode 100644 index 00000000..d19e1b72 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonLink.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonLink: ImageVector + get() { + if (_personLink != null) { + return _personLink!! + } + _personLink = fluentIcon(name = "Filled.PersonLink") { + fluentPath { + moveTo(16.75f, 14.0f) + curveToRelative(0.78f, 0.0f, 1.47f, 0.4f, 1.88f, 1.0f) + horizontalLineToRelative(-2.88f) + arcToRelative(4.75f, 4.75f, 0.0f, false, false, -4.19f, 6.99f) + lineTo(11.0f, 22.0f) + curveToRelative(-3.42f, 0.0f, -5.94f, -1.07f, -7.49f, -3.24f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.5f, -1.6f) + verticalLineToRelative(-0.91f) + curveTo(3.0f, 15.0f, 4.0f, 14.0f, 5.24f, 14.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(11.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(23.0f, 19.75f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 19.25f, 16.0f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + verticalLineToRelative(-0.01f) + horizontalLineToRelative(0.2f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 19.74f) + close() + moveTo(16.5f, 16.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-0.2f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(20.0f, 19.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + } + } + return _personLink!! + } + +private var _personLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonLock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonLock.kt new file mode 100644 index 00000000..4e1582d6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonLock.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonLock: ImageVector + get() { + if (_personLock != null) { + return _personLock!! + } + _personLock = fluentIcon(name = "Filled.PersonLock") { + fluentPath { + moveTo(14.0f, 14.05f) + lineTo(14.0f, 14.0f) + lineTo(4.25f, 14.0f) + curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) + verticalLineToRelative(0.92f) + curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) + curveTo(4.06f, 20.92f, 6.58f, 22.0f, 10.0f, 22.0f) + curveToRelative(0.71f, 0.0f, 1.39f, -0.05f, 2.03f, -0.14f) + arcToRelative(2.51f, 2.51f, 0.0f, false, true, -0.03f, -0.36f) + verticalLineToRelative(-5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.0f, -2.45f) + close() + moveTo(10.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(15.0f, 15.0f) + verticalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(0.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-6.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(0.5f) + close() + moveTo(16.5f, 14.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + close() + moveTo(18.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + } + } + return _personLock!! + } + +private var _personLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonMail.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonMail.kt new file mode 100644 index 00000000..14092343 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonMail.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonMail: ImageVector + get() { + if (_personMail != null) { + return _personMail!! + } + _personMail = fluentIcon(name = "Filled.PersonMail") { + fluentPath { + moveTo(11.0f, 15.5f) + curveToRelative(0.0f, -0.56f, 0.19f, -1.08f, 0.5f, -1.5f) + lineTo(5.25f, 14.0f) + curveTo(4.01f, 14.0f, 3.0f, 15.0f, 3.0f, 16.25f) + verticalLineToRelative(0.92f) + curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) + curveTo(5.06f, 20.92f, 7.58f, 22.0f, 11.0f, 22.0f) + horizontalLineToRelative(0.05f) + arcToRelative(2.51f, 2.51f, 0.0f, false, true, -0.05f, -0.5f) + verticalLineToRelative(-6.0f) + close() + moveTo(11.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(17.51f, 18.93f) + lineTo(12.01f, 15.73f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, -1.73f) + lineTo(21.0f, 14.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 1.97f) + lineToRelative(-5.49f, 2.96f) + close() + moveTo(17.74f, 19.94f) + lineTo(23.0f, 17.11f) + lineTo(23.0f, 21.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + verticalLineToRelative(-4.13f) + lineToRelative(5.25f, 3.06f) + curveToRelative(0.15f, 0.09f, 0.33f, 0.1f, 0.49f, 0.01f) + close() + } + } + return _personMail!! + } + +private var _personMail: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonMoney.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonMoney.kt new file mode 100644 index 00000000..541d31b9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonMoney.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonMoney: ImageVector + get() { + if (_personMoney != null) { + return _personMoney!! + } + _personMoney = fluentIcon(name = "Filled.PersonMoney") { + fluentPath { + moveTo(17.75f, 14.0f) + curveToRelative(0.78f, 0.0f, 1.47f, 0.4f, 1.87f, 1.0f) + lineTo(13.5f, 15.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.5f, 2.5f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.16f, 0.02f, 0.32f, 0.04f, 0.47f) + curveToRelative(-2.93f, -0.18f, -5.13f, -1.25f, -6.53f, -3.2f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.5f, -1.6f) + verticalLineToRelative(-0.92f) + curveTo(4.0f, 15.0f, 5.0f, 14.0f, 6.24f, 14.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(12.0f, 17.5f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(8.0f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + verticalLineToRelative(-4.0f) + close() + moveTo(22.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + horizontalLineToRelative(-1.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(22.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(14.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + verticalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + horizontalLineToRelative(-1.0f) + close() + moveTo(15.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + verticalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + horizontalLineToRelative(1.0f) + close() + moveTo(19.25f, 19.5f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, -3.5f, 0.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 3.5f, 0.0f) + close() + } + } + return _personMoney!! + } + +private var _personMoney: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonNote.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonNote.kt new file mode 100644 index 00000000..a7ed0f46 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonNote.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonNote: ImageVector + get() { + if (_personNote != null) { + return _personNote!! + } + _personNote = fluentIcon(name = "Filled.PersonNote") { + fluentPath { + moveTo(11.0f, 15.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.17f, -1.0f) + lineTo(4.25f, 14.0f) + curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) + verticalLineToRelative(0.92f) + curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) + curveTo(4.06f, 20.92f, 6.58f, 22.0f, 10.0f, 22.0f) + curveToRelative(0.4f, 0.0f, 0.78f, -0.01f, 1.16f, -0.04f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 11.0f, 21.0f) + verticalLineToRelative(-6.0f) + close() + moveTo(10.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(12.0f, 15.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + verticalLineToRelative(6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + verticalLineToRelative(-6.0f) + close() + moveTo(14.5f, 16.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) + horizontalLineToRelative(6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) + horizontalLineToRelative(-6.0f) + close() + moveTo(14.5f, 19.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) + horizontalLineToRelative(6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) + horizontalLineToRelative(-6.0f) + close() + } + } + return _personNote!! + } + +private var _personNote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonPill.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonPill.kt new file mode 100644 index 00000000..b1f2e439 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonPill.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonPill: ImageVector + get() { + if (_personPill != null) { + return _personPill!! + } + _personPill = fluentIcon(name = "Filled.PersonPill") { + fluentPath { + moveTo(11.68f, 22.0f) + curveToRelative(-0.9f, -1.5f, -0.7f, -3.45f, 0.58f, -4.74f) + lineTo(15.53f, 14.0f) + lineTo(6.25f, 14.0f) + curveTo(5.01f, 14.0f, 4.0f, 15.0f, 4.0f, 16.25f) + verticalLineToRelative(0.92f) + curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) + curveToRelative(1.5f, 2.1f, 3.91f, 3.16f, 7.17f, 3.23f) + close() + moveTo(17.0f, 7.0f) + arcTo(5.0f, 5.0f, 0.0f, true, false, 7.0f, 7.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 10.0f, 0.0f) + close() + moveTo(17.97f, 12.97f) + arcToRelative(2.87f, 2.87f, 0.0f, false, true, 4.06f, 4.06f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(2.87f, 2.87f, 0.0f, false, true, -4.06f, -4.06f) + lineToRelative(5.0f, -5.0f) + close() + moveTo(20.97f, 14.03f) + arcToRelative(1.37f, 1.37f, 0.0f, false, false, -1.94f, 0.0f) + lineTo(17.06f, 16.0f) + lineTo(19.0f, 17.94f) + lineToRelative(1.97f, -1.97f) + curveToRelative(0.54f, -0.54f, 0.54f, -1.4f, 0.0f, -1.94f) + close() + moveTo(17.03f, 20.03f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-1.0f, 1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(1.0f, -1.0f) + close() + } + } + return _personPill!! + } + +private var _personPill: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonProhibited.kt new file mode 100644 index 00000000..7068d1ac --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonProhibited.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonProhibited: ImageVector + get() { + if (_personProhibited != null) { + return _personProhibited!! + } + _personProhibited = fluentIcon(name = "Filled.PersonProhibited") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(12.02f, 14.0f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, 0.6f, 7.79f) + curveToRelative(-0.8f, 0.14f, -1.68f, 0.21f, -2.62f, 0.21f) + curveToRelative(-2.89f, 0.0f, -5.13f, -0.66f, -6.7f, -2.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 2.0f, 17.16f) + verticalLineToRelative(-0.91f) + curveTo(2.0f, 15.01f, 3.01f, 14.0f, 4.25f, 14.0f) + horizontalLineToRelative(7.77f) + close() + moveTo(20.81f, 15.25f) + lineTo(15.25f, 20.81f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 5.56f, -5.56f) + close() + moveTo(17.5f, 13.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -3.3f, 6.25f) + lineToRelative(5.55f, -5.56f) + arcToRelative(3.98f, 3.98f, 0.0f, false, false, -2.25f, -0.69f) + close() + moveTo(10.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + } + } + return _personProhibited!! + } + +private var _personProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonQuestionMark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonQuestionMark.kt new file mode 100644 index 00000000..5aa5407b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonQuestionMark.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonQuestionMark: ImageVector + get() { + if (_personQuestionMark != null) { + return _personQuestionMark!! + } + _personQuestionMark = fluentIcon(name = "Filled.PersonQuestionMark") { + fluentPath { + moveTo(12.02f, 14.0f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, 0.57f, 7.76f) + curveToRelative(-0.8f, 0.16f, -1.66f, 0.24f, -2.59f, 0.24f) + curveToRelative(-3.42f, 0.0f, -5.94f, -1.07f, -7.49f, -3.24f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.5f, -1.6f) + verticalLineToRelative(-0.91f) + curveTo(2.0f, 15.0f, 3.0f, 14.0f, 4.24f, 14.0f) + horizontalLineToRelative(7.77f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(17.5f, 19.75f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, 1.25f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, -1.25f) + close() + moveTo(17.5f, 13.87f) + curveToRelative(-1.05f, 0.0f, -1.86f, 0.82f, -1.85f, 1.96f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, -0.01f) + curveToRelative(0.0f, -0.58f, 0.36f, -0.95f, 0.85f, -0.95f) + curveToRelative(0.47f, 0.0f, 0.85f, 0.4f, 0.85f, 0.95f) + curveToRelative(0.0f, 0.2f, -0.05f, 0.35f, -0.22f, 0.57f) + lineToRelative(-0.1f, 0.11f) + lineToRelative(-0.1f, 0.11f) + lineToRelative(-0.26f, 0.3f) + lineToRelative(-0.14f, 0.15f) + curveToRelative(-0.38f, 0.46f, -0.53f, 0.8f, -0.53f, 1.31f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) + curveToRelative(0.0f, -0.2f, 0.06f, -0.36f, 0.24f, -0.59f) + lineToRelative(0.08f, -0.1f) + lineToRelative(0.1f, -0.12f) + lineToRelative(0.27f, -0.29f) + lineToRelative(0.14f, -0.15f) + curveToRelative(0.37f, -0.45f, 0.52f, -0.79f, 0.52f, -1.3f) + curveToRelative(0.0f, -1.1f, -0.82f, -1.95f, -1.85f, -1.95f) + close() + moveTo(10.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + } + } + return _personQuestionMark!! + } + +private var _personQuestionMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonSearch.kt new file mode 100644 index 00000000..c3cd9ee0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonSearch.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonSearch: ImageVector + get() { + if (_personSearch != null) { + return _personSearch!! + } + _personSearch = fluentIcon(name = "Filled.PersonSearch") { + fluentPath { + moveTo(11.9f, 14.0f) + horizontalLineToRelative(7.85f) + curveTo(21.0f, 14.0f, 22.0f, 15.0f, 22.0f, 16.25f) + verticalLineToRelative(0.9f) + curveToRelative(0.0f, 1.1f, -0.47f, 2.14f, -1.3f, 2.85f) + curveToRelative(-1.57f, 1.34f, -3.81f, 2.0f, -6.7f, 2.0f) + horizontalLineToRelative(-0.18f) + curveToRelative(0.3f, -0.6f, 0.23f, -1.36f, -0.22f, -1.9f) + lineToRelative(-0.11f, -0.12f) + lineToRelative(-2.23f, -2.22f) + arcTo(5.48f, 5.48f, 0.0f, false, false, 11.9f, 14.0f) + close() + moveTo(6.5f, 10.5f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 3.46f, 7.38f) + lineToRelative(2.82f, 2.81f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 1.14f) + lineToRelative(-0.09f, -0.08f) + lineToRelative(-2.9f, -2.9f) + arcTo(4.5f, 4.5f, 0.0f, true, true, 6.5f, 10.5f) + close() + moveTo(6.5f, 12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + moveTo(14.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + } + } + return _personSearch!! + } + +private var _personSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonSquare.kt new file mode 100644 index 00000000..748d4e43 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonSquare.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonSquare: ImageVector + get() { + if (_personSquare != null) { + return _personSquare!! + } + _personSquare = fluentIcon(name = "Filled.PersonSquare") { + fluentPath { + moveTo(3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineTo(6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + horizontalLineTo(6.25f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + close() + moveTo(15.5f, 12.0f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 1.97f, -1.86f, 4.0f, -5.0f, 4.0f) + curveToRelative(-3.14f, 0.0f, -5.0f, -2.03f, -5.0f, -4.0f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(7.0f) + close() + moveTo(12.0f, 5.5f) + arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, 5.5f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.0f, -5.5f) + close() + } + } + return _personSquare!! + } + +private var _personSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonStar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonStar.kt new file mode 100644 index 00000000..b3699637 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonStar.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonStar: ImageVector + get() { + if (_personStar != null) { + return _personStar!! + } + _personStar = fluentIcon(name = "Filled.PersonStar") { + fluentPath { + moveTo(11.0f, 17.5f) + curveToRelative(0.0f, -1.29f, 0.38f, -2.49f, 1.02f, -3.5f) + lineTo(5.25f, 14.0f) + curveTo(4.01f, 14.0f, 3.0f, 15.0f, 3.0f, 16.25f) + verticalLineToRelative(0.92f) + curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) + curveTo(5.06f, 20.92f, 7.58f, 22.0f, 11.0f, 22.0f) + curveToRelative(0.6f, 0.0f, 1.17f, -0.03f, 1.72f, -0.1f) + arcTo(6.48f, 6.48f, 0.0f, false, true, 11.0f, 17.5f) + close() + moveTo(11.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(18.06f, 14.42f) + arcToRelative(0.58f, 0.58f, 0.0f, false, false, -1.12f, 0.0f) + lineToRelative(-0.55f, 1.79f) + horizontalLineToRelative(-1.8f) + curveToRelative(-0.57f, 0.0f, -0.8f, 0.75f, -0.35f, 1.1f) + lineToRelative(1.46f, 1.1f) + lineToRelative(-0.56f, 1.79f) + curveToRelative(-0.17f, 0.56f, 0.44f, 1.03f, 0.9f, 0.68f) + lineToRelative(1.46f, -1.1f) + lineToRelative(1.46f, 1.1f) + curveToRelative(0.46f, 0.35f, 1.07f, -0.12f, 0.9f, -0.68f) + lineToRelative(-0.56f, -1.79f) + lineToRelative(1.46f, -1.1f) + curveToRelative(0.46f, -0.35f, 0.22f, -1.1f, -0.35f, -1.1f) + horizontalLineToRelative(-1.8f) + lineToRelative(-0.55f, -1.79f) + close() + } + } + return _personStar!! + } + +private var _personStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonStarburst.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonStarburst.kt new file mode 100644 index 00000000..fd7f62a8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonStarburst.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonStarburst: ImageVector + get() { + if (_personStarburst != null) { + return _personStarburst!! + } + _personStarburst = fluentIcon(name = "Filled.PersonStarburst") { + fluentPath { + moveTo(13.49f, 3.05f) + arcToRelative(1.43f, 1.43f, 0.0f, false, false, -2.61f, 0.0f) + curveToRelative(-0.38f, 0.82f, -1.4f, 1.1f, -2.14f, 0.57f) + curveToRelative(-1.0f, -0.72f, -2.39f, 0.08f, -2.27f, 1.3f) + curveToRelative(0.1f, 0.9f, -0.66f, 1.66f, -1.56f, 1.57f) + arcTo(1.43f, 1.43f, 0.0f, false, false, 3.6f, 8.76f) + curveToRelative(0.53f, 0.73f, 0.25f, 1.76f, -0.57f, 2.14f) + arcToRelative(1.43f, 1.43f, 0.0f, false, false, 0.0f, 2.6f) + curveToRelative(0.82f, 0.38f, 1.1f, 1.42f, 0.57f, 2.15f) + curveToRelative(-0.72f, 1.0f, 0.08f, 2.38f, 1.3f, 2.26f) + curveToRelative(0.9f, -0.09f, 1.66f, 0.67f, 1.57f, 1.57f) + arcToRelative(1.43f, 1.43f, 0.0f, false, false, 2.27f, 1.3f) + arcToRelative(1.43f, 1.43f, 0.0f, false, true, 2.14f, 0.58f) + arcToRelative(1.43f, 1.43f, 0.0f, false, false, 2.6f, 0.0f) + curveToRelative(0.38f, -0.82f, 1.42f, -1.1f, 2.15f, -0.57f) + curveToRelative(1.0f, 0.72f, 2.39f, -0.08f, 2.26f, -1.3f) + curveToRelative(-0.09f, -0.91f, 0.67f, -1.67f, 1.57f, -1.58f) + arcToRelative(1.43f, 1.43f, 0.0f, false, false, 1.3f, -2.26f) + arcToRelative(1.43f, 1.43f, 0.0f, false, true, 0.58f, -2.14f) + arcToRelative(1.43f, 1.43f, 0.0f, false, false, 0.0f, -2.61f) + arcToRelative(1.43f, 1.43f, 0.0f, false, true, -0.57f, -2.14f) + curveToRelative(0.72f, -1.0f, -0.08f, -2.39f, -1.3f, -2.27f) + curveToRelative(-0.9f, 0.1f, -1.67f, -0.66f, -1.58f, -1.56f) + arcToRelative(1.43f, 1.43f, 0.0f, false, false, -2.26f, -1.31f) + curveToRelative(-0.73f, 0.53f, -1.77f, 0.25f, -2.14f, -0.57f) + close() + moveTo(9.77f, 8.58f) + arcToRelative(2.41f, 2.41f, 0.0f, true, true, 4.83f, 0.0f) + arcToRelative(2.41f, 2.41f, 0.0f, false, true, -4.83f, 0.0f) + close() + moveTo(9.17f, 12.2f) + horizontalLineToRelative(6.03f) + curveToRelative(1.0f, 0.0f, 1.81f, 0.81f, 1.81f, 1.81f) + curveToRelative(0.0f, 1.35f, -0.55f, 2.43f, -1.46f, 3.16f) + curveToRelative(-0.9f, 0.72f, -2.1f, 1.07f, -3.37f, 1.07f) + arcToRelative(5.35f, 5.35f, 0.0f, false, true, -3.36f, -1.07f) + arcToRelative(3.92f, 3.92f, 0.0f, false, true, -1.46f, -3.16f) + curveToRelative(0.0f, -1.0f, 0.8f, -1.8f, 1.8f, -1.8f) + close() + } + } + return _personStarburst!! + } + +private var _personStarburst: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonSupport.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonSupport.kt new file mode 100644 index 00000000..02323fca --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonSupport.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonSupport: ImageVector + get() { + if (_personSupport != null) { + return _personSupport!! + } + _personSupport = fluentIcon(name = "Filled.PersonSupport") { + fluentPath { + moveTo(20.0f, 16.25f) + curveTo(20.0f, 15.0f, 19.0f, 14.0f, 17.75f, 14.0f) + horizontalLineTo(6.25f) + curveTo(5.0f, 14.0f, 4.0f, 15.0f, 4.0f, 16.25f) + verticalLineToRelative(0.92f) + curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) + curveTo(6.05f, 20.92f, 8.58f, 22.0f, 12.0f, 22.0f) + reflectiveCurveToRelative(5.94f, -1.07f, 7.49f, -3.24f) + curveToRelative(0.33f, -0.46f, 0.51f, -1.02f, 0.51f, -1.6f) + verticalLineToRelative(-0.91f) + close() + moveTo(17.0f, 7.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, -9.03f, -2.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.22f, -0.03f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(5.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 7.25f, 13.0f) + horizontalLineToRelative(0.26f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -0.79f, -1.62f) + curveToRelative(-0.42f, -0.2f, -0.72f, -0.63f, -0.72f, -1.13f) + verticalLineTo(10.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.38f, 0.0f, 0.73f, -0.12f, 1.02f, -0.33f) + arcTo(5.0f, 5.0f, 0.0f, false, false, 17.0f, 7.0f) + close() + moveTo(7.0f, 6.9f) + arcToRelative(5.11f, 5.11f, 0.0f, false, false, 0.0f, 0.2f) + verticalLineToRelative(1.15f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineTo(6.0f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(1.0f) + verticalLineToRelative(1.4f) + close() + } + } + return _personSupport!! + } + +private var _personSupport: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonSwap.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonSwap.kt new file mode 100644 index 00000000..24fb9eb1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonSwap.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonSwap: ImageVector + get() { + if (_personSwap != null) { + return _personSwap!! + } + _personSwap = fluentIcon(name = "Filled.PersonSwap") { + fluentPath { + moveTo(15.75f, 14.0f) + curveTo(17.0f, 14.0f, 18.0f, 15.0f, 18.0f, 16.25f) + verticalLineToRelative(0.91f) + curveToRelative(0.0f, 0.29f, -0.04f, 0.57f, -0.13f, 0.84f) + horizontalLineToRelative(-2.03f) + arcTo(1.75f, 1.75f, 0.0f, false, false, 13.0f, 16.02f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, 2.48f) + lineToRelative(0.94f, 0.93f) + curveToRelative(-0.47f, 0.05f, -0.95f, 0.07f, -1.45f, 0.07f) + curveToRelative(-3.42f, 0.0f, -5.95f, -1.07f, -7.49f, -3.24f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.51f, -1.6f) + verticalLineToRelative(-0.91f) + curveTo(2.0f, 15.0f, 3.0f, 14.0f, 4.25f, 14.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(10.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(14.78f, 17.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.06f) + lineToRelative(2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineToRelative(-1.22f, -1.22f) + horizontalLineToRelative(6.88f) + lineToRelative(-1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.06f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(20.44f, 19.0f) + horizontalLineToRelative(-6.88f) + lineToRelative(1.22f, -1.22f) + close() + } + } + return _personSwap!! + } + +private var _personSwap: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonSync.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonSync.kt new file mode 100644 index 00000000..47019787 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonSync.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonSync: ImageVector + get() { + if (_personSync != null) { + return _personSync!! + } + _personSync = fluentIcon(name = "Filled.PersonSync") { + fluentPath { + moveTo(11.0f, 17.5f) + curveToRelative(0.0f, -1.29f, 0.38f, -2.49f, 1.02f, -3.5f) + lineTo(5.25f, 14.0f) + curveTo(4.01f, 14.0f, 3.0f, 15.0f, 3.0f, 16.25f) + verticalLineToRelative(0.92f) + curveToRelative(0.0f, 0.57f, 0.18f, 1.13f, 0.51f, 1.6f) + curveTo(5.06f, 20.92f, 7.58f, 22.0f, 11.0f, 22.0f) + curveToRelative(0.6f, 0.0f, 1.17f, -0.03f, 1.72f, -0.1f) + arcTo(6.48f, 6.48f, 0.0f, false, true, 11.0f, 17.5f) + close() + moveTo(11.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) + close() + moveTo(20.5f, 14.0f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + verticalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.8f, -0.59f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) + verticalLineToRelative(-0.55f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + close() + moveTo(15.0f, 19.95f) + verticalLineToRelative(0.55f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.77f, 0.65f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) + close() + } + } + return _personSync!! + } + +private var _personSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonTag.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonTag.kt new file mode 100644 index 00000000..2da3915f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonTag.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonTag: ImageVector + get() { + if (_personTag != null) { + return _personTag!! + } + _personTag = fluentIcon(name = "Filled.PersonTag") { + fluentPath { + moveTo(11.0f, 14.0f) + verticalLineToRelative(2.94f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.86f, 2.1f) + lineToRelative(2.26f, 2.29f) + curveToRelative(-1.18f, 0.45f, -2.56f, 0.67f, -4.12f, 0.67f) + curveToRelative(-3.42f, 0.0f, -5.94f, -1.07f, -7.49f, -3.24f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.5f, -1.6f) + verticalLineToRelative(-0.91f) + curveTo(2.0f, 15.0f, 3.0f, 14.0f, 4.24f, 14.0f) + lineTo(11.0f, 14.0f) + close() + moveTo(15.0f, 7.0f) + arcTo(5.0f, 5.0f, 0.0f, true, false, 5.0f, 7.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 10.0f, 0.0f) + close() + moveTo(16.57f, 22.4f) + lineTo(12.57f, 18.33f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.57f, -1.4f) + lineTo(12.0f, 14.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(2.92f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.4f, 0.58f) + lineToRelative(4.08f, 4.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.02f, 2.83f) + lineToRelative(-3.0f, 3.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.85f, -0.02f) + close() + moveTo(15.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + } + } + return _personTag!! + } + +private var _personTag: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonVoice.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonVoice.kt new file mode 100644 index 00000000..18bae392 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonVoice.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonVoice: ImageVector + get() { + if (_personVoice != null) { + return _personVoice!! + } + _personVoice = fluentIcon(name = "Filled.PersonVoice") { + fluentPath { + moveTo(14.75f, 15.0f) + curveTo(16.0f, 15.0f, 17.0f, 16.0f, 17.0f, 17.25f) + verticalLineToRelative(0.92f) + curveToRelative(0.0f, 0.57f, -0.18f, 1.13f, -0.5f, 1.6f) + curveTo(14.93f, 21.93f, 12.41f, 23.0f, 9.0f, 23.0f) + reflectiveCurveToRelative(-5.94f, -1.07f, -7.49f, -3.24f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.5f, -1.6f) + verticalLineToRelative(-0.91f) + curveTo(1.0f, 16.0f, 2.0f, 15.0f, 3.24f, 15.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(19.05f, 1.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, 0.28f) + arcToRelative(12.7f, 12.7f, 0.0f, false, true, -0.01f, 12.66f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.3f, -0.75f) + arcToRelative(11.2f, 11.2f, 0.0f, false, false, 0.0f, -11.16f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.28f, -1.03f) + close() + moveTo(9.0f, 3.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcTo(5.0f, 5.0f, 0.0f, false, true, 9.0f, 3.0f) + close() + moveTo(15.59f, 3.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.02f, 0.28f) + arcToRelative(8.71f, 8.71f, 0.0f, false, true, 0.0f, 8.65f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.3f, -0.74f) + arcToRelative(7.21f, 7.21f, 0.0f, false, false, 0.0f, -7.17f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.28f, -1.02f) + close() + } + } + return _personVoice!! + } + +private var _personVoice: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonWalking.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonWalking.kt new file mode 100644 index 00000000..d805e1f0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PersonWalking.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PersonWalking: ImageVector + get() { + if (_personWalking != null) { + return _personWalking!! + } + _personWalking = fluentIcon(name = "Filled.PersonWalking") { + fluentPath { + moveTo(13.0f, 6.5f) + arcTo(2.25f, 2.25f, 0.0f, true, false, 13.0f, 2.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) + close() + moveTo(10.36f, 6.42f) + curveToRelative(0.19f, 0.04f, 0.35f, 0.15f, 0.5f, 0.27f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, 2.9f, 0.72f) + curveToRelative(0.18f, -0.04f, 0.38f, -0.06f, 0.56f, 0.0f) + lineToRelative(0.13f, 0.02f) + curveToRelative(0.39f, 0.1f, 0.72f, 0.34f, 0.92f, 0.68f) + lineToRelative(1.33f, 2.17f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.66f, 0.46f) + lineToRelative(1.43f, 0.29f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -0.58f, 2.94f) + lineToRelative(-2.5f, -0.5f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.0f, -0.69f) + lineToRelative(-0.18f, -0.3f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, -0.96f, 0.1f) + curveToRelative(-0.18f, 0.46f, -0.12f, 0.98f, 0.17f, 1.38f) + lineToRelative(1.0f, 1.43f) + curveToRelative(0.15f, 0.23f, 0.24f, 0.5f, 0.26f, 0.77f) + lineToRelative(0.25f, 4.25f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.18f) + lineToRelative(-0.2f, -3.4f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.25f, -0.6f) + lineToRelative(-0.85f, -0.96f) + arcToRelative(0.88f, 0.88f, 0.0f, false, false, -1.47f, 0.25f) + lineToRelative(-2.1f, 5.18f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.77f, -1.12f) + lineToRelative(3.07f, -7.63f) + lineToRelative(0.05f, -0.17f) + lineToRelative(0.57f, -1.47f) + arcToRelative(0.47f, 0.47f, 0.0f, false, false, -0.87f, -0.36f) + lineToRelative(-1.26f, 2.8f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.74f, -1.23f) + lineToRelative(1.62f, -3.6f) + curveToRelative(0.17f, -0.37f, 0.47f, -0.66f, 0.85f, -0.8f) + lineToRelative(3.08f, -1.14f) + curveToRelative(0.28f, -0.1f, 0.59f, -0.12f, 0.88f, -0.05f) + lineToRelative(0.5f, 0.13f) + close() + } + } + return _personWalking!! + } + +private var _personWalking: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Phone.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Phone.kt new file mode 100644 index 00000000..a09d9f3b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Phone.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Phone: ImageVector + get() { + if (_phone != null) { + return _phone!! + } + _phone = fluentIcon(name = "Filled.Phone") { + fluentPath { + moveTo(15.75f, 2.0f) + curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-7.5f) + curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) + lineTo(6.0f, 4.25f) + curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(13.25f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + } + } + return _phone!! + } + +private var _phone: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneAdd.kt new file mode 100644 index 00000000..8f0eb2b6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneAdd.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PhoneAdd: ImageVector + get() { + if (_phoneAdd != null) { + return _phoneAdd!! + } + _phoneAdd = fluentIcon(name = "Filled.PhoneAdd") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(13.75f, 2.0f) + curveTo(14.99f, 2.0f, 16.0f, 3.0f, 16.0f, 4.25f) + verticalLineToRelative(6.92f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -5.0f, 6.33f) + lineTo(8.75f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.42f) + arcToRelative(6.49f, 6.49f, 0.0f, false, false, 1.64f, 3.0f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(17.5f, 14.0f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) + lineToRelative(-0.01f, 0.1f) + lineTo(17.0f, 17.0f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(0.18f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) + lineToRelative(0.1f, 0.01f) + lineTo(17.0f, 18.0f) + verticalLineToRelative(2.6f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + horizontalLineToRelative(0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) + lineToRelative(0.01f, -0.1f) + lineTo(18.0f, 18.0f) + horizontalLineToRelative(2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + verticalLineToRelative(-0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) + lineToRelative(-0.1f, -0.01f) + lineTo(18.0f, 17.0f) + verticalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) + horizontalLineToRelative(-0.09f) + close() + } + } + return _phoneAdd!! + } + +private var _phoneAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneArrowRight.kt new file mode 100644 index 00000000..d3b65467 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneArrowRight.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PhoneArrowRight: ImageVector + get() { + if (_phoneArrowRight != null) { + return _phoneArrowRight!! + } + _phoneArrowRight = fluentIcon(name = "Filled.PhoneArrowRight") { + fluentPath { + moveTo(13.75f, 2.0f) + curveTo(14.99f, 2.0f, 16.0f, 3.0f, 16.0f, 4.25f) + verticalLineToRelative(5.77f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 10.17f, 18.0f) + lineTo(8.75f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + horizontalLineToRelative(2.08f) + arcToRelative(6.53f, 6.53f, 0.0f, false, false, 2.3f, 2.5f) + lineTo(6.26f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(16.5f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(16.72f, 13.59f) + lineTo(16.65f, 13.65f) + lineTo(16.59f, 13.72f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) + lineToRelative(0.06f, 0.07f) + lineTo(18.29f, 16.0f) + lineTo(13.4f, 16.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(0.18f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(0.06f, -0.07f) + lineToRelative(2.53f, -2.53f) + lineToRelative(0.04f, -0.05f) + lineToRelative(0.04f, -0.08f) + lineToRelative(0.03f, -0.08f) + lineTo(19.99f, 16.39f) + lineToRelative(-0.03f, -0.08f) + lineToRelative(-0.04f, -0.08f) + lineToRelative(-0.04f, -0.05f) + lineToRelative(-2.53f, -2.53f) + lineToRelative(-0.07f, -0.06f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.49f, -0.04f) + lineToRelative(-0.07f, 0.04f) + close() + } + } + return _phoneArrowRight!! + } + +private var _phoneArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneChat.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneChat.kt new file mode 100644 index 00000000..e9d817ad --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneChat.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PhoneChat: ImageVector + get() { + if (_phoneChat != null) { + return _phoneChat!! + } + _phoneChat = fluentIcon(name = "Filled.PhoneChat") { + fluentPath { + moveTo(15.75f, 2.0f) + curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) + verticalLineToRelative(6.77f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -6.38f, 9.24f) + lineTo(11.09f, 22.0f) + lineTo(8.25f, 22.0f) + curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) + lineTo(6.0f, 4.25f) + curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(21.0f, 13.26f) + arcTo(5.48f, 5.48f, 0.0f, false, false, 17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -4.81f, 8.17f) + lineToRelative(-0.67f, 2.19f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.63f, 0.62f) + lineToRelative(2.18f, -0.67f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 21.0f, 13.25f) + close() + moveTo(15.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + horizontalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(17.5f, 19.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + close() + } + } + return _phoneChat!! + } + +private var _phoneChat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneDesktop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneDesktop.kt new file mode 100644 index 00000000..ca9a3bcc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneDesktop.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PhoneDesktop: ImageVector + get() { + if (_phoneDesktop != null) { + return _phoneDesktop!! + } + _phoneDesktop = fluentIcon(name = "Filled.PhoneDesktop") { + fluentPath { + moveTo(8.25f, 9.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-4.5f) + curveTo(2.78f, 22.0f, 2.0f, 21.22f, 2.0f, 20.25f) + verticalLineToRelative(-9.5f) + curveTo(2.0f, 9.78f, 2.78f, 9.0f, 3.75f, 9.0f) + horizontalLineToRelative(4.5f) + close() + moveTo(6.25f, 18.5f) + horizontalLineToRelative(-0.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) + horizontalLineToRelative(0.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.49f) + horizontalLineToRelative(-0.1f) + close() + moveTo(19.75f, 2.0f) + curveToRelative(1.19f, 0.0f, 2.16f, 0.93f, 2.24f, 2.1f) + verticalLineToRelative(9.15f) + curveToRelative(0.0f, 1.2f, -0.92f, 2.17f, -2.09f, 2.24f) + lineToRelative(-0.15f, 0.01f) + lineTo(16.0f, 15.5f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(11.0f, 19.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(-2.0f) + lineTo(11.0f, 15.5f) + verticalLineToRelative(-5.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 8.66f, 8.0f) + lineTo(4.0f, 8.0f) + lineTo(4.0f, 4.25f) + curveToRelative(0.0f, -1.2f, 0.92f, -2.17f, 2.1f, -2.24f) + lineTo(6.25f, 2.0f) + horizontalLineToRelative(13.5f) + close() + } + } + return _phoneDesktop!! + } + +private var _phoneDesktop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneDismiss.kt new file mode 100644 index 00000000..5b3f6081 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneDismiss.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PhoneDismiss: ImageVector + get() { + if (_phoneDismiss != null) { + return _phoneDismiss!! + } + _phoneDismiss = fluentIcon(name = "Filled.PhoneDismiss") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(13.75f, 2.0f) + curveTo(14.99f, 2.0f, 16.0f, 3.0f, 16.0f, 4.25f) + verticalLineToRelative(6.92f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 11.02f, 18.0f) + lineTo(8.75f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + horizontalLineToRelative(2.66f) + curveToRelative(0.3f, 0.95f, 0.83f, 1.8f, 1.5f, 2.5f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(15.09f, 14.97f) + lineTo(15.02f, 15.02f) + lineTo(14.97f, 15.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.05f, 0.07f) + lineToRelative(1.77f, 1.77f) + lineToRelative(-1.76f, 1.77f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.06f, 0.06f) + lineToRelative(0.07f, 0.06f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) + lineToRelative(0.07f, -0.06f) + lineToRelative(1.77f, -1.76f) + lineToRelative(1.77f, 1.77f) + lineToRelative(0.07f, 0.05f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.57f, 0.0f) + lineToRelative(0.07f, -0.05f) + lineToRelative(0.05f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) + lineToRelative(-0.05f, -0.07f) + lineToRelative(-1.77f, -1.77f) + lineToRelative(1.77f, -1.77f) + lineToRelative(0.06f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) + lineToRelative(-0.06f, -0.07f) + lineToRelative(-0.07f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) + lineToRelative(-0.07f, 0.05f) + lineToRelative(-1.77f, 1.77f) + lineToRelative(-1.77f, -1.77f) + lineToRelative(-0.07f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.05f) + lineToRelative(-0.07f, 0.05f) + close() + } + } + return _phoneDismiss!! + } + +private var _phoneDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneKey.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneKey.kt new file mode 100644 index 00000000..bd08f138 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneKey.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PhoneKey: ImageVector + get() { + if (_phoneKey != null) { + return _phoneKey!! + } + _phoneKey = fluentIcon(name = "Filled.PhoneKey") { + fluentPath { + moveTo(15.75f, 2.0f) + curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) + verticalLineToRelative(7.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, -2.97f, 4.8f) + lineTo(13.1f, 18.0f) + horizontalLineToRelative(-2.34f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.84f) + lineToRelative(-0.08f, 0.07f) + curveToRelative(-0.33f, 0.33f, -0.51f, 0.78f, -0.51f, 1.24f) + lineTo(11.01f, 22.0f) + lineTo(8.25f, 22.0f) + curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) + lineTo(6.0f, 4.25f) + curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(19.5f, 19.0f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, -3.38f, -2.59f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.15f, 0.12f) + lineToRelative(-3.75f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.22f, 0.53f) + verticalLineToRelative(1.44f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(1.75f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(15.0f, 22.0f) + horizontalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(1.5f) + close() + moveTo(21.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + } + } + return _phoneKey!! + } + +private var _phoneKey: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneLaptop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneLaptop.kt new file mode 100644 index 00000000..875155e4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneLaptop.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PhoneLaptop: ImageVector + get() { + if (_phoneLaptop != null) { + return _phoneLaptop!! + } + _phoneLaptop = fluentIcon(name = "Filled.PhoneLaptop") { + fluentPath { + moveTo(8.25f, 8.0f) + curveTo(9.22f, 8.0f, 10.0f, 8.8f, 10.0f, 9.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-4.5f) + curveTo(2.78f, 21.0f, 2.0f, 20.22f, 2.0f, 19.25f) + verticalLineToRelative(-9.5f) + curveTo(2.0f, 8.8f, 2.78f, 8.0f, 3.75f, 8.0f) + horizontalLineToRelative(4.5f) + close() + moveTo(6.25f, 17.5f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(21.25f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(11.0f, 18.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(10.25f) + close() + moveTo(18.25f, 5.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(11.0f, 16.0f) + lineTo(11.0f, 9.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.85f, -2.0f) + lineTo(4.0f, 7.0f) + verticalLineToRelative(-0.25f) + curveTo(4.0f, 5.78f, 4.78f, 5.0f, 5.75f, 5.0f) + horizontalLineToRelative(12.5f) + close() + } + } + return _phoneLaptop!! + } + +private var _phoneLaptop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneLinkSetup.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneLinkSetup.kt new file mode 100644 index 00000000..3e8735e8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneLinkSetup.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PhoneLinkSetup: ImageVector + get() { + if (_phoneLinkSetup != null) { + return _phoneLinkSetup!! + } + _phoneLinkSetup = fluentIcon(name = "Filled.PhoneLinkSetup") { + fluentPath { + moveTo(17.5f, 12.0f) + curveToRelative(0.3f, 0.0f, 0.58f, 0.02f, 0.86f, 0.07f) + lineToRelative(0.17f, 0.72f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.42f, 1.47f) + lineToRelative(0.1f, -0.02f) + lineToRelative(0.6f, -0.18f) + curveToRelative(0.36f, 0.46f, 0.65f, 1.0f, 0.85f, 1.57f) + lineToRelative(-0.45f, 0.43f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.17f, 2.7f) + lineToRelative(0.15f, 0.15f) + lineToRelative(0.47f, 0.46f) + curveToRelative(-0.2f, 0.57f, -0.5f, 1.1f, -0.85f, 1.57f) + lineToRelative(-0.6f, -0.18f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.49f, 1.35f) + lineToRelative(-0.03f, 0.1f) + lineToRelative(-0.17f, 0.72f) + arcToRelative(5.18f, 5.18f, 0.0f, false, true, -1.72f, 0.0f) + lineToRelative(-0.17f, -0.72f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.42f, -1.47f) + lineToRelative(-0.1f, 0.02f) + lineToRelative(-0.6f, 0.18f) + curveToRelative(-0.36f, -0.47f, -0.65f, -1.0f, -0.85f, -1.57f) + lineToRelative(0.45f, -0.43f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.17f, -2.7f) + lineToRelative(-0.15f, -0.15f) + lineToRelative(-0.47f, -0.46f) + curveToRelative(0.2f, -0.58f, 0.5f, -1.1f, 0.85f, -1.57f) + lineToRelative(0.6f, 0.18f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.49f, -1.35f) + lineToRelative(0.03f, -0.1f) + lineToRelative(0.17f, -0.72f) + curveToRelative(0.28f, -0.05f, 0.57f, -0.07f, 0.86f, -0.07f) + close() + moveTo(13.75f, 2.0f) + curveTo(14.99f, 2.0f, 16.0f, 3.0f, 16.0f, 4.25f) + verticalLineToRelative(6.92f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 11.02f, 18.0f) + lineTo(8.75f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + horizontalLineToRelative(2.66f) + curveToRelative(0.3f, 0.95f, 0.83f, 1.8f, 1.5f, 2.5f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(17.5f, 16.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, 0.67f, -1.45f, 1.5f) + reflectiveCurveTo(16.7f, 19.0f, 17.5f, 19.0f) + curveToRelative(0.8f, 0.0f, 1.45f, -0.67f, 1.45f, -1.5f) + reflectiveCurveTo(18.3f, 16.0f, 17.5f, 16.0f) + close() + } + } + return _phoneLinkSetup!! + } + +private var _phoneLinkSetup: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneLock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneLock.kt new file mode 100644 index 00000000..329957fa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneLock.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PhoneLock: ImageVector + get() { + if (_phoneLock != null) { + return _phoneLock!! + } + _phoneLock = fluentIcon(name = "Filled.PhoneLock") { + fluentPath { + moveTo(13.75f, 2.0f) + curveTo(14.99f, 2.0f, 16.0f, 3.0f, 16.0f, 4.25f) + verticalLineToRelative(6.59f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 14.0f, 14.0f) + verticalLineToRelative(0.05f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.0f, 2.45f) + verticalLineToRelative(2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(2.75f) + curveToRelative(0.0f, 0.17f, 0.02f, 0.34f, 0.05f, 0.5f) + horizontalLineToRelative(-5.8f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(15.0f, 14.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.5f, 1.5f) + horizontalLineToRelative(6.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(20.0f, 15.0f) + verticalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) + close() + moveTo(16.5f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(18.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + } + } + return _phoneLock!! + } + +private var _phoneLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhonePageHeader.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhonePageHeader.kt new file mode 100644 index 00000000..33b4bde4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhonePageHeader.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PhonePageHeader: ImageVector + get() { + if (_phonePageHeader != null) { + return _phonePageHeader!! + } + _phonePageHeader = fluentIcon(name = "Filled.PhonePageHeader") { + fluentPath { + moveTo(18.0f, 6.0f) + verticalLineToRelative(13.75f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-7.5f) + curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) + lineTo(6.0f, 6.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(15.75f, 2.0f) + curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) + lineTo(18.0f, 5.0f) + lineTo(6.0f, 5.0f) + verticalLineToRelative(-0.75f) + curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + } + } + return _phonePageHeader!! + } + +private var _phonePageHeader: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhonePagination.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhonePagination.kt new file mode 100644 index 00000000..26921787 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhonePagination.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PhonePagination: ImageVector + get() { + if (_phonePagination != null) { + return _phonePagination!! + } + _phonePagination = fluentIcon(name = "Filled.PhonePagination") { + fluentPath { + moveTo(15.75f, 2.0f) + curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-7.5f) + curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) + lineTo(6.0f, 4.25f) + curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(9.5f, 17.76f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(12.0f, 17.76f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(14.5f, 17.76f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + } + } + return _phonePagination!! + } + +private var _phonePagination: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneScreenTime.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneScreenTime.kt new file mode 100644 index 00000000..e3e92eeb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneScreenTime.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PhoneScreenTime: ImageVector + get() { + if (_phoneScreenTime != null) { + return _phoneScreenTime!! + } + _phoneScreenTime = fluentIcon(name = "Filled.PhoneScreenTime") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(13.75f, 2.0f) + curveTo(14.99f, 2.0f, 16.0f, 3.0f, 16.0f, 4.25f) + verticalLineToRelative(6.92f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 11.02f, 18.0f) + lineTo(8.75f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + horizontalLineToRelative(2.66f) + curveToRelative(0.3f, 0.95f, 0.83f, 1.8f, 1.5f, 2.5f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(16.5f, 14.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + lineTo(17.0f, 18.0f) + verticalLineToRelative(-3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + } + } + return _phoneScreenTime!! + } + +private var _phoneScreenTime: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneShake.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneShake.kt new file mode 100644 index 00000000..f33c7aab --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneShake.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PhoneShake: ImageVector + get() { + if (_phoneShake != null) { + return _phoneShake!! + } + _phoneShake = fluentIcon(name = "Filled.PhoneShake") { + fluentPath { + moveTo(12.34f, 4.07f) + curveToRelative(1.2f, -0.32f, 2.43f, 0.39f, 2.76f, 1.6f) + lineToRelative(2.75f, 10.28f) + curveToRelative(0.32f, 1.2f, -0.39f, 2.43f, -1.59f, 2.76f) + lineToRelative(-4.6f, 1.23f) + curveToRelative(-1.2f, 0.32f, -2.43f, -0.4f, -2.75f, -1.6f) + lineTo(6.16f, 8.06f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 7.75f, 5.3f) + lineToRelative(4.59f, -1.23f) + close() + moveTo(14.69f, 15.27f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.92f, -0.52f) + lineToRelative(-1.93f, 0.52f) + lineToRelative(-0.1f, 0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.49f, 1.42f) + lineToRelative(1.93f, -0.52f) + lineToRelative(0.1f, -0.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.43f, -0.88f) + close() + moveTo(18.68f, 2.4f) + curveToRelative(0.2f, -0.36f, 0.65f, -0.5f, 1.01f, -0.3f) + arcToRelative(4.9f, 4.9f, 0.0f, false, true, 1.72f, 6.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.33f, -0.69f) + lineToRelative(0.05f, -0.09f) + arcToRelative(3.4f, 3.4f, 0.0f, false, false, -1.16f, -4.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.3f, -1.02f) + close() + moveTo(17.5f, 4.44f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, -0.14f) + arcToRelative(2.6f, 2.6f, 0.0f, false, true, 0.9f, 1.32f) + curveToRelative(0.11f, 0.44f, 0.09f, 0.88f, -0.02f, 1.29f) + lineToRelative(-0.05f, 0.18f) + lineToRelative(-0.05f, 0.13f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.42f, -0.49f) + lineToRelative(0.05f, -0.14f) + lineToRelative(0.02f, -0.06f) + curveToRelative(0.05f, -0.18f, 0.06f, -0.37f, 0.02f, -0.52f) + arcToRelative(0.93f, 0.93f, 0.0f, false, false, -0.17f, -0.31f) + arcToRelative(1.36f, 1.36f, 0.0f, false, false, -0.16f, -0.18f) + lineToRelative(-0.03f, -0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.14f, -1.05f) + close() + moveTo(2.54f, 15.41f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, 0.66f) + lineToRelative(-0.1f, 0.2f) + lineToRelative(-0.1f, 0.28f) + arcToRelative(3.54f, 3.54f, 0.0f, false, false, 0.6f, 3.36f) + curveToRelative(0.26f, 0.32f, 0.51f, 0.54f, 0.68f, 0.65f) + lineToRelative(0.07f, 0.04f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.75f, 1.3f) + arcToRelative(5.04f, 5.04f, 0.0f, false, true, -1.74f, -6.49f) + close() + moveTo(4.67f, 16.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.42f, 0.47f) + lineToRelative(-0.05f, 0.15f) + lineToRelative(-0.01f, 0.05f) + curveToRelative(-0.05f, 0.18f, -0.06f, 0.37f, -0.02f, 0.53f) + arcToRelative(1.38f, 1.38f, 0.0f, false, false, 0.32f, 0.5f) + lineToRelative(0.04f, 0.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.92f, 1.19f) + arcToRelative(2.6f, 2.6f, 0.0f, false, true, -0.89f, -1.33f) + curveToRelative(-0.11f, -0.43f, -0.09f, -0.87f, 0.01f, -1.28f) + lineToRelative(0.06f, -0.17f) + lineToRelative(0.04f, -0.13f) + close() + } + } + return _phoneShake!! + } + +private var _phoneShake: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneSpanIn.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneSpanIn.kt new file mode 100644 index 00000000..30e685b3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneSpanIn.kt @@ -0,0 +1,99 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PhoneSpanIn: ImageVector + get() { + if (_phoneSpanIn != null) { + return _phoneSpanIn!! + } + _phoneSpanIn = fluentIcon(name = "Filled.PhoneSpanIn") { + fluentPath { + moveTo(15.75f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(3.67f) + curveToRelative(-0.65f, -0.31f, -1.45f, -0.2f, -1.99f, 0.34f) + lineToRelative(-2.18f, 2.22f) + curveToRelative(-0.52f, 0.31f, -0.83f, 0.9f, -0.83f, 1.52f) + verticalLineToRelative(0.16f) + curveToRelative(0.05f, 0.46f, 0.26f, 0.88f, 0.6f, 1.18f) + lineToRelative(0.1f, 0.1f) + lineToRelative(2.31f, 2.3f) + lineToRelative(0.14f, 0.12f) + arcToRelative(1.8f, 1.8f, 0.0f, false, false, 1.85f, 0.22f) + verticalLineToRelative(3.67f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + horizontalLineToRelative(-7.5f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(6.0f, 19.75f) + verticalLineToRelative(-3.68f) + curveToRelative(0.59f, 0.28f, 1.27f, 0.22f, 1.8f, -0.16f) + lineToRelative(0.13f, -0.12f) + lineToRelative(2.36f, -2.35f) + lineToRelative(0.12f, -0.1f) + curveToRelative(0.37f, -0.33f, 0.59f, -0.82f, 0.59f, -1.34f) + verticalLineToRelative(-0.16f) + arcToRelative(1.78f, 1.78f, 0.0f, false, false, -0.6f, -1.18f) + lineToRelative(-0.1f, -0.1f) + lineToRelative(-2.31f, -2.3f) + arcTo(1.75f, 1.75f, 0.0f, false, false, 6.0f, 7.92f) + lineTo(6.0f, 4.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(8.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(17.78f, 8.97f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-1.22f, 1.22f) + horizontalLineToRelative(3.78f) + curveToRelative(0.37f, 0.0f, 0.66f, 0.33f, 0.66f, 0.75f) + curveToRelative(0.0f, 0.38f, -0.25f, 0.7f, -0.57f, 0.74f) + lineTo(16.56f, 12.74f) + lineToRelative(1.22f, 1.23f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-2.37f, -2.37f) + arcTo(0.77f, 0.77f, 0.0f, false, true, 14.0f, 12.0f) + curveToRelative(0.0f, -0.29f, 0.14f, -0.54f, 0.35f, -0.66f) + lineToRelative(2.37f, -2.37f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(7.2f, 8.9f) + lineToRelative(0.08f, 0.07f) + lineToRelative(2.37f, 2.37f) + curveToRelative(0.2f, 0.12f, 0.35f, 0.37f, 0.35f, 0.66f) + curveToRelative(0.0f, 0.25f, -0.1f, 0.47f, -0.28f, 0.61f) + lineToRelative(-0.07f, 0.05f) + lineToRelative(-2.37f, 2.37f) + lineToRelative(-0.08f, 0.07f) + curveToRelative(-0.27f, 0.2f, -0.62f, 0.2f, -0.89f, 0.01f) + lineToRelative(-0.1f, -0.08f) + lineToRelative(-0.06f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.01f, -0.89f) + lineToRelative(0.08f, -0.09f) + lineToRelative(1.22f, -1.22f) + lineTo(3.56f, 12.75f) + curveTo(3.26f, 12.68f, 3.0f, 12.37f, 3.0f, 12.0f) + reflectiveCurveToRelative(0.25f, -0.7f, 0.57f, -0.74f) + lineToRelative(0.09f, -0.01f) + horizontalLineToRelative(3.78f) + lineToRelative(-1.22f, -1.22f) + lineToRelative(-0.07f, -0.09f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 7.2f, 8.9f) + close() + } + } + return _phoneSpanIn!! + } + +private var _phoneSpanIn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneSpanOut.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneSpanOut.kt new file mode 100644 index 00000000..42a2b5e8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneSpanOut.kt @@ -0,0 +1,111 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PhoneSpanOut: ImageVector + get() { + if (_phoneSpanOut != null) { + return _phoneSpanOut!! + } + _phoneSpanOut = fluentIcon(name = "Filled.PhoneSpanOut") { + fluentPath { + moveTo(15.75f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(3.52f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.49f, 0.5f) + arcTo(1.73f, 1.73f, 0.0f, false, false, 16.1f, 10.0f) + lineToRelative(0.05f, 0.16f) + lineToRelative(0.04f, 0.09f) + horizontalLineToRelative(-1.52f) + curveToRelative(-0.85f, 0.0f, -1.5f, 0.65f, -1.64f, 1.46f) + lineToRelative(-0.01f, 0.14f) + lineTo(13.0f, 12.0f) + curveToRelative(0.0f, 0.8f, 0.51f, 1.51f, 1.33f, 1.7f) + lineToRelative(0.16f, 0.04f) + horizontalLineToRelative(1.68f) + lineToRelative(-0.02f, 0.04f) + curveToRelative(-0.2f, 0.47f, -0.2f, 1.02f, 0.05f, 1.51f) + lineToRelative(0.1f, 0.17f) + lineToRelative(0.09f, 0.14f) + lineToRelative(0.12f, 0.14f) + curveToRelative(0.4f, 0.4f, 0.95f, 0.57f, 1.49f, 0.48f) + verticalLineToRelative(3.53f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + horizontalLineToRelative(-7.5f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(6.0f, 19.75f) + verticalLineToRelative(-3.53f) + curveToRelative(0.54f, 0.09f, 1.09f, -0.08f, 1.49f, -0.48f) + lineToRelative(0.12f, -0.14f) + lineToRelative(0.1f, -0.14f) + curveToRelative(0.33f, -0.54f, 0.37f, -1.16f, 0.14f, -1.68f) + lineToRelative(-0.02f, -0.03f) + horizontalLineToRelative(1.51f) + lineToRelative(0.17f, -0.01f) + curveToRelative(0.91f, -0.14f, 1.49f, -0.9f, 1.49f, -1.74f) + verticalLineToRelative(-0.15f) + arcToRelative(1.7f, 1.7f, 0.0f, false, false, -1.66f, -1.6f) + lineTo(7.82f, 10.25f) + lineToRelative(0.04f, -0.1f) + arcTo(1.74f, 1.74f, 0.0f, false, false, 6.0f, 7.78f) + lineTo(6.0f, 4.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(8.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(6.78f, 8.97f) + curveToRelative(0.27f, 0.26f, 0.3f, 0.68f, 0.07f, 0.97f) + lineToRelative(-0.07f, 0.09f) + lineToRelative(-1.22f, 1.22f) + horizontalLineToRelative(3.78f) + curveToRelative(0.37f, 0.0f, 0.66f, 0.33f, 0.66f, 0.75f) + curveToRelative(0.0f, 0.38f, -0.25f, 0.7f, -0.57f, 0.74f) + lineTo(5.56f, 12.74f) + lineToRelative(1.22f, 1.23f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-2.37f, -2.37f) + arcTo(0.77f, 0.77f, 0.0f, false, true, 3.0f, 12.0f) + curveToRelative(0.0f, -0.29f, 0.14f, -0.54f, 0.35f, -0.66f) + lineToRelative(2.37f, -2.37f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(17.22f, 8.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.08f) + lineToRelative(0.08f, 0.08f) + lineToRelative(2.37f, 2.36f) + curveToRelative(0.2f, 0.13f, 0.35f, 0.38f, 0.35f, 0.67f) + curveToRelative(0.0f, 0.25f, -0.1f, 0.47f, -0.28f, 0.6f) + lineToRelative(-0.07f, 0.06f) + lineToRelative(-2.37f, 2.37f) + lineToRelative(-0.08f, 0.07f) + curveToRelative(-0.27f, 0.2f, -0.62f, 0.2f, -0.89f, 0.0f) + lineToRelative(-0.1f, -0.07f) + lineToRelative(-0.06f, -0.09f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.01f, -0.88f) + lineToRelative(0.08f, -0.1f) + lineToRelative(1.22f, -1.21f) + horizontalLineToRelative(-3.78f) + lineToRelative(-0.1f, -0.01f) + curveToRelative(-0.31f, -0.05f, -0.56f, -0.37f, -0.56f, -0.74f) + curveToRelative(0.0f, -0.38f, 0.25f, -0.7f, 0.57f, -0.75f) + lineTo(18.44f, 11.25f) + lineToRelative(-1.22f, -1.22f) + lineToRelative(-0.07f, -0.09f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.07f, -0.97f) + close() + } + } + return _phoneSpanOut!! + } + +private var _phoneSpanOut: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneSpeaker.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneSpeaker.kt new file mode 100644 index 00000000..a6fd0c20 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneSpeaker.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PhoneSpeaker: ImageVector + get() { + if (_phoneSpeaker != null) { + return _phoneSpeaker!! + } + _phoneSpeaker = fluentIcon(name = "Filled.PhoneSpeaker") { + fluentPath { + moveTo(13.75f, 2.0f) + curveTo(14.99f, 2.0f, 16.0f, 3.0f, 16.0f, 4.25f) + verticalLineToRelative(8.67f) + curveToRelative(-0.37f, 0.05f, -0.73f, 0.23f, -1.03f, 0.54f) + lineTo(13.53f, 15.0f) + lineTo(12.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(2.0f) + lineTo(8.75f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.38f) + curveToRelative(0.18f, 0.3f, 0.5f, 0.5f, 0.87f, 0.5f) + horizontalLineToRelative(1.53f) + lineToRelative(1.44f, 1.54f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.06f, 0.06f) + curveToRelative(-0.36f, 0.25f, -0.8f, 0.4f, -1.28f, 0.4f) + horizontalLineToRelative(-7.5f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(22.15f, 14.3f) + arcToRelative(4.53f, 4.53f, 0.0f, false, false, -0.92f, -1.13f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.96f, 1.16f) + curveToRelative(0.13f, 0.1f, 0.35f, 0.35f, 0.59f, 0.74f) + curveToRelative(0.4f, 0.67f, 0.64f, 1.48f, 0.64f, 2.43f) + curveToRelative(0.0f, 0.95f, -0.24f, 1.76f, -0.64f, 2.43f) + curveToRelative(-0.24f, 0.39f, -0.46f, 0.64f, -0.59f, 0.74f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.96f, 1.16f) + curveToRelative(0.25f, -0.21f, 0.59f, -0.58f, 0.91f, -1.13f) + curveToRelative(0.54f, -0.9f, 0.86f, -1.96f, 0.86f, -3.2f) + curveToRelative(0.0f, -1.24f, -0.32f, -2.3f, -0.86f, -3.2f) + close() + moveTo(19.87f, 15.4f) + curveToRelative(-0.23f, -0.36f, -0.48f, -0.6f, -0.67f, -0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 1.2f) + arcToRelative(2.24f, 2.24f, 0.0f, false, true, 0.7f, 1.65f) + arcToRelative(2.24f, 2.24f, 0.0f, false, true, -0.7f, 1.65f) + lineToRelative(-0.08f, 0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) + arcToRelative(3.73f, 3.73f, 0.0f, false, false, 1.3f, -2.85f) + curveToRelative(0.0f, -0.81f, -0.23f, -1.52f, -0.63f, -2.1f) + close() + moveTo(17.0f, 14.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.31f, -0.5f) + lineTo(14.16f, 16.0f) + horizontalLineToRelative(-1.41f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(1.41f) + lineToRelative(1.53f, 1.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.31f, -0.49f) + verticalLineToRelative(-5.5f) + close() + } + } + return _phoneSpeaker!! + } + +private var _phoneSpeaker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneStatusBar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneStatusBar.kt new file mode 100644 index 00000000..12c992a4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneStatusBar.kt @@ -0,0 +1,39 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PhoneStatusBar: ImageVector + get() { + if (_phoneStatusBar != null) { + return _phoneStatusBar!! + } + _phoneStatusBar = fluentIcon(name = "Filled.PhoneStatusBar") { + fluentPath { + moveTo(15.75f, 2.0f) + curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-7.5f) + curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) + lineTo(6.0f, 4.25f) + curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(14.75f, 4.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + horizontalLineToRelative(5.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + } + } + return _phoneStatusBar!! + } + +private var _phoneStatusBar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneTablet.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneTablet.kt new file mode 100644 index 00000000..78030470 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneTablet.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PhoneTablet: ImageVector + get() { + if (_phoneTablet != null) { + return _phoneTablet!! + } + _phoneTablet = fluentIcon(name = "Filled.PhoneTablet") { + fluentPath { + moveTo(8.25f, 7.0f) + curveTo(9.22f, 7.0f, 10.0f, 7.78f, 10.0f, 8.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-4.5f) + curveTo(2.78f, 20.0f, 2.0f, 19.22f, 2.0f, 18.25f) + verticalLineToRelative(-9.5f) + curveTo(2.0f, 7.78f, 2.78f, 7.0f, 3.75f, 7.0f) + horizontalLineToRelative(4.5f) + close() + moveTo(6.25f, 16.5f) + horizontalLineToRelative(-0.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.49f) + horizontalLineToRelative(0.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.49f) + horizontalLineToRelative(-0.1f) + close() + moveTo(19.75f, 4.0f) + curveToRelative(1.19f, 0.0f, 2.16f, 0.93f, 2.24f, 2.1f) + verticalLineToRelative(8.65f) + curveToRelative(0.0f, 1.2f, -0.92f, 2.17f, -2.09f, 2.24f) + lineToRelative(-0.15f, 0.01f) + lineTo(11.0f, 17.0f) + lineTo(11.0f, 8.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 8.66f, 6.0f) + lineTo(6.01f, 6.0f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 8.1f, 4.0f) + horizontalLineToRelative(11.66f) + close() + moveTo(15.25f, 13.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + horizontalLineToRelative(2.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + } + } + return _phoneTablet!! + } + +private var _phoneTablet: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneUpdate.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneUpdate.kt new file mode 100644 index 00000000..2d74b805 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneUpdate.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PhoneUpdate: ImageVector + get() { + if (_phoneUpdate != null) { + return _phoneUpdate!! + } + _phoneUpdate = fluentIcon(name = "Filled.PhoneUpdate") { + fluentPath { + moveTo(15.75f, 2.0f) + curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-7.5f) + curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) + verticalLineTo(4.25f) + curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(12.0f, 7.03f) + horizontalLineToRelative(-0.1f) + lineToRelative(-0.1f, 0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.54f, 0.6f) + lineToRelative(-0.01f, 0.12f) + verticalLineToRelative(6.71f) + lineToRelative(-0.96f, -0.96f) + lineToRelative(-0.09f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.04f, 1.05f) + lineToRelative(0.07f, 0.08f) + lineToRelative(2.24f, 2.24f) + lineToRelative(0.05f, 0.05f) + lineToRelative(0.06f, 0.04f) + lineToRelative(0.07f, 0.05f) + lineToRelative(0.12f, 0.05f) + lineToRelative(0.1f, 0.02f) + lineToRelative(0.08f, 0.01f) + horizontalLineToRelative(0.1f) + lineToRelative(0.09f, -0.01f) + lineToRelative(0.06f, -0.01f) + lineToRelative(0.1f, -0.04f) + lineToRelative(0.06f, -0.03f) + lineToRelative(0.07f, -0.04f) + lineToRelative(0.06f, -0.05f) + lineToRelative(0.04f, -0.04f) + lineToRelative(2.24f, -2.24f) + lineToRelative(0.07f, -0.08f) + curveToRelative(0.2f, -0.26f, 0.2f, -0.62f, 0.01f, -0.89f) + lineToRelative(-0.08f, -0.09f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.88f, 0.0f) + lineToRelative(-0.1f, 0.07f) + lineToRelative(-0.96f, 0.96f) + verticalLineTo(7.68f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, -0.64f) + horizontalLineTo(12.0f) + close() + } + } + return _phoneUpdate!! + } + +private var _phoneUpdate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneUpdateCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneUpdateCheckmark.kt new file mode 100644 index 00000000..09c6de3e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneUpdateCheckmark.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PhoneUpdateCheckmark: ImageVector + get() { + if (_phoneUpdateCheckmark != null) { + return _phoneUpdateCheckmark!! + } + _phoneUpdateCheckmark = fluentIcon(name = "Filled.PhoneUpdateCheckmark") { + fluentPath { + moveTo(8.25f, 22.0f) + horizontalLineToRelative(4.56f) + arcToRelative(6.48f, 6.48f, 0.0f, false, true, -1.56f, -6.3f) + lineTo(11.25f, 9.5f) + lineToRelative(-0.96f, 0.97f) + lineToRelative(-0.09f, 0.07f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 9.16f, 9.5f) + lineToRelative(0.07f, -0.08f) + lineToRelative(2.24f, -2.24f) + lineToRelative(0.05f, -0.05f) + lineToRelative(0.06f, -0.04f) + lineToRelative(0.07f, -0.05f) + lineToRelative(0.12f, -0.05f) + lineToRelative(0.1f, -0.02f) + lineToRelative(0.08f, -0.01f) + horizontalLineToRelative(0.1f) + lineToRelative(0.09f, 0.01f) + lineToRelative(0.06f, 0.01f) + lineToRelative(0.1f, 0.04f) + lineToRelative(0.06f, 0.03f) + lineToRelative(0.07f, 0.04f) + lineToRelative(0.06f, 0.05f) + lineToRelative(0.04f, 0.04f) + lineToRelative(2.24f, 2.24f) + lineToRelative(0.07f, 0.08f) + curveToRelative(0.2f, 0.26f, 0.2f, 0.62f, 0.01f, 0.89f) + lineToRelative(-0.08f, 0.09f) + lineToRelative(-0.08f, 0.07f) + curveToRelative(-0.26f, 0.2f, -0.62f, 0.2f, -0.88f, 0.0f) + lineToRelative(-0.1f, -0.07f) + lineToRelative(-0.96f, -0.96f) + verticalLineToRelative(3.55f) + arcTo(6.48f, 6.48f, 0.0f, false, true, 18.0f, 11.02f) + lineTo(18.0f, 4.25f) + curveTo(18.0f, 3.01f, 17.0f, 2.0f, 15.75f, 2.0f) + horizontalLineToRelative(-7.5f) + curveTo(7.01f, 2.0f, 6.0f, 3.0f, 6.0f, 4.25f) + verticalLineToRelative(15.5f) + curveTo(6.0f, 20.99f, 7.0f, 22.0f, 8.25f, 22.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-3.65f, 3.64f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _phoneUpdateCheckmark!! + } + +private var _phoneUpdateCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneVerticalScroll.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneVerticalScroll.kt new file mode 100644 index 00000000..5b46ba6d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneVerticalScroll.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PhoneVerticalScroll: ImageVector + get() { + if (_phoneVerticalScroll != null) { + return _phoneVerticalScroll!! + } + _phoneVerticalScroll = fluentIcon(name = "Filled.PhoneVerticalScroll") { + fluentPath { + moveTo(15.75f, 2.0f) + curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-7.5f) + curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) + lineTo(6.0f, 4.25f) + curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(13.71f, 13.47f) + lineTo(12.0f, 15.22f) + lineToRelative(-1.72f, -1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.07f, 1.06f) + lineToRelative(2.25f, 2.3f) + curveToRelative(0.3f, 0.3f, 0.78f, 0.3f, 1.08f, 0.0f) + lineToRelative(2.25f, -2.3f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.08f, -1.05f) + close() + moveTo(14.79f, 9.52f) + lineTo(12.54f, 7.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, -0.07f) + lineToRelative(-0.08f, 0.07f) + lineToRelative(-2.25f, 2.3f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.99f, 1.12f) + lineToRelative(0.08f, -0.07f) + lineTo(12.0f, 8.82f) + lineToRelative(1.71f, 1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.15f, -0.96f) + lineToRelative(-0.07f, -0.09f) + lineToRelative(-2.25f, -2.3f) + lineToRelative(2.25f, 2.3f) + close() + } + } + return _phoneVerticalScroll!! + } + +private var _phoneVerticalScroll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneVibrate.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneVibrate.kt new file mode 100644 index 00000000..4a7a4254 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhoneVibrate.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PhoneVibrate: ImageVector + get() { + if (_phoneVibrate != null) { + return _phoneVibrate!! + } + _phoneVibrate = fluentIcon(name = "Filled.PhoneVibrate") { + fluentPath { + moveTo(15.75f, 2.0f) + curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-7.5f) + curveTo(7.0f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) + lineTo(6.0f, 4.25f) + curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(13.25f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + horizontalLineToRelative(2.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(20.13f, 7.57f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.25f, 0.45f) + lineToRelative(0.05f, 0.1f) + lineTo(22.0f, 9.6f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.27f, 2.74f) + lineToRelative(-0.12f, 0.17f) + lineToRelative(-0.15f, 0.2f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.17f, 0.85f) + lineToRelative(0.04f, 0.12f) + lineToRelative(0.59f, 1.46f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.81f, 0.85f) + lineToRelative(-0.05f, -0.1f) + lineToRelative(-0.58f, -1.47f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.26f, -2.74f) + lineToRelative(0.12f, -0.17f) + lineToRelative(0.15f, -0.2f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.17f, -0.85f) + lineToRelative(-0.04f, -0.12f) + lineToRelative(-0.58f, -1.46f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.56f, -1.3f) + close() + moveTo(2.63f, 7.57f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.25f, 0.45f) + lineToRelative(0.05f, 0.1f) + lineToRelative(0.58f, 1.47f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.27f, 2.74f) + lineToRelative(-0.12f, 0.17f) + lineToRelative(-0.15f, 0.2f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.17f, 0.85f) + lineToRelative(0.04f, 0.12f) + lineToRelative(0.59f, 1.46f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.81f, 0.85f) + lineToRelative(-0.05f, -0.1f) + lineTo(2.0f, 14.4f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.26f, -2.74f) + lineToRelative(0.12f, -0.17f) + lineToRelative(0.15f, -0.2f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.17f, -0.85f) + lineToRelative(-0.04f, -0.12f) + lineToRelative(-0.58f, -1.46f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.56f, -1.3f) + close() + } + } + return _phoneVibrate!! + } + +private var _phoneVibrate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhotoFilter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhotoFilter.kt new file mode 100644 index 00000000..0a46b5dc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PhotoFilter.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PhotoFilter: ImageVector + get() { + if (_photoFilter != null) { + return _photoFilter!! + } + _photoFilter = fluentIcon(name = "Filled.PhotoFilter") { + fluentPath { + moveTo(9.5f, 2.0f) + arcToRelative(7.5f, 7.5f, 0.0f, false, true, 7.18f, 5.32f) + arcToRelative(7.5f, 7.5f, 0.0f, true, true, -9.36f, 9.36f) + arcTo(7.5f, 7.5f, 0.0f, false, true, 9.5f, 2.0f) + close() + moveTo(17.0f, 9.6f) + verticalLineToRelative(-0.1f) + arcTo(7.5f, 7.5f, 0.0f, false, true, 9.6f, 17.0f) + arcTo(5.5f, 5.5f, 0.0f, true, false, 17.0f, 9.6f) + close() + moveTo(9.5f, 4.0f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 7.0f, 14.4f) + verticalLineToRelative(0.1f) + arcTo(7.5f, 7.5f, 0.0f, false, true, 14.4f, 7.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -4.9f, -3.0f) + close() + } + } + return _photoFilter!! + } + +private var _photoFilter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Pi.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Pi.kt new file mode 100644 index 00000000..ec8809e6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Pi.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Pi: ImageVector + get() { + if (_pi != null) { + return _pi!! + } + _pi = fluentIcon(name = "Filled.Pi") { + fluentPath { + moveTo(2.0f, 7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(15.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineTo(17.0f) + verticalLineToRelative(10.7f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 2.0f, 1.42f) + lineToRelative(0.16f, -0.06f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.68f, 1.88f) + lineToRelative(-0.16f, 0.06f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 15.0f, 16.7f) + verticalLineTo(6.0f) + horizontalLineTo(9.98f) + arcToRelative(53.9f, 53.9f, 0.0f, false, true, -0.36f, 4.21f) + arcToRelative(45.04f, 45.04f, 0.0f, false, true, -1.93f, 9.12f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.88f, -0.66f) + arcToRelative(43.1f, 43.1f, 0.0f, false, false, 1.82f, -8.7f) + arcTo(65.6f, 65.6f, 0.0f, false, false, 7.98f, 6.0f) + horizontalLineTo(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(0.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + verticalLineTo(7.0f) + close() + } + } + return _pi!! + } + +private var _pi: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PictureInPicture.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PictureInPicture.kt new file mode 100644 index 00000000..8b09c0cc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PictureInPicture.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PictureInPicture: ImageVector + get() { + if (_pictureInPicture != null) { + return _pictureInPicture!! + } + _pictureInPicture = fluentIcon(name = "Filled.PictureInPicture") { + fluentPath { + moveTo(5.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 6.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) + horizontalLineTo(11.0f) + verticalLineToRelative(-4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 1.0f, 0.17f) + verticalLineTo(6.25f) + curveTo(22.0f, 4.45f, 20.54f, 3.0f, 18.75f, 3.0f) + horizontalLineTo(5.25f) + close() + moveTo(22.0f, 13.27f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.0f, -0.27f) + horizontalLineToRelative(-7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + verticalLineToRelative(-5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.0f, -1.73f) + close() + } + } + return _pictureInPicture!! + } + +private var _pictureInPicture: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PictureInPictureEnter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PictureInPictureEnter.kt new file mode 100644 index 00000000..d2eeb923 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PictureInPictureEnter.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PictureInPictureEnter: ImageVector + get() { + if (_pictureInPictureEnter != null) { + return _pictureInPictureEnter!! + } + _pictureInPictureEnter = fluentIcon(name = "Filled.PictureInPictureEnter") { + fluentPath { + moveTo(5.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 6.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) + lineTo(11.0f, 19.0f) + verticalLineToRelative(-4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 1.0f, 0.17f) + lineTo(22.0f, 6.25f) + curveTo(22.0f, 4.45f, 20.54f, 3.0f, 18.75f, 3.0f) + lineTo(5.25f, 3.0f) + close() + moveTo(6.28f, 6.22f) + lineTo(9.5f, 9.44f) + lineTo(9.5f, 7.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.69f) + lineTo(5.22f, 7.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + close() + moveTo(22.0f, 13.27f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.0f, -0.27f) + horizontalLineToRelative(-7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + verticalLineToRelative(-5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.0f, -1.73f) + close() + } + } + return _pictureInPictureEnter!! + } + +private var _pictureInPictureEnter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PictureInPictureExit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PictureInPictureExit.kt new file mode 100644 index 00000000..5adba604 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PictureInPictureExit.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PictureInPictureExit: ImageVector + get() { + if (_pictureInPictureExit != null) { + return _pictureInPictureExit!! + } + _pictureInPictureExit = fluentIcon(name = "Filled.PictureInPictureExit") { + fluentPath { + moveTo(10.0f, 11.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(12.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + lineTo(3.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, 2.0f) + horizontalLineToRelative(7.0f) + close() + moveTo(10.0f, 12.0f) + lineTo(3.0f, 12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -1.0f, -0.17f) + verticalLineToRelative(5.92f) + curveTo(2.0f, 19.55f, 3.46f, 21.0f, 5.25f, 21.0f) + horizontalLineToRelative(13.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-9.5f) + curveTo(22.0f, 6.45f, 20.54f, 5.0f, 18.75f, 5.0f) + lineTo(13.0f, 5.0f) + verticalLineToRelative(4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + close() + moveTo(14.25f, 16.0f) + horizontalLineToRelative(1.69f) + lineToRelative(-2.72f, -2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineTo(17.0f, 14.94f) + verticalLineToRelative(-1.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + } + } + return _pictureInPictureExit!! + } + +private var _pictureInPictureExit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Pill.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Pill.kt new file mode 100644 index 00000000..b1ef7236 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Pill.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Pill: ImageVector + get() { + if (_pill != null) { + return _pill!! + } + _pill = fluentIcon(name = "Filled.Pill") { + fluentPath { + moveTo(13.3f, 3.53f) + arcToRelative(5.07f, 5.07f, 0.0f, true, true, 7.17f, 7.17f) + lineToRelative(-9.77f, 9.77f) + arcToRelative(5.07f, 5.07f, 0.0f, false, true, -7.18f, -7.17f) + lineToRelative(9.78f, -9.77f) + close() + moveTo(19.41f, 4.59f) + arcToRelative(3.57f, 3.57f, 0.0f, false, false, -5.05f, 0.0f) + lineTo(10.0f, 8.94f) + lineTo(15.05f, 14.0f) + lineToRelative(4.36f, -4.35f) + arcToRelative(3.57f, 3.57f, 0.0f, false, false, 0.0f, -5.05f) + close() + moveTo(10.81f, 18.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineTo(8.3f, 18.66f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.1f, 0.02f) + lineToRelative(-0.02f, -0.02f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.04f, 1.08f) + lineToRelative(0.02f, 0.02f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 4.2f, -0.04f) + lineToRelative(1.44f, -1.44f) + close() + } + } + return _pill!! + } + +private var _pill: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PinOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PinOff.kt new file mode 100644 index 00000000..582064a0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PinOff.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PinOff: ImageVector + get() { + if (_pinOff != null) { + return _pinOff!! + } + _pinOff = fluentIcon(name = "Filled.PinOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(5.9f, 5.9f) + lineToRelative(-3.3f, 1.15f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -0.49f, 2.07f) + lineToRelative(3.1f, 3.1f) + lineTo(3.0f, 19.94f) + lineTo(3.0f, 21.0f) + horizontalLineToRelative(1.06f) + lineToRelative(4.44f, -4.44f) + lineToRelative(3.1f, 3.1f) + curveToRelative(0.66f, 0.66f, 1.77f, 0.4f, 2.07f, -0.47f) + lineToRelative(1.14f, -3.31f) + lineToRelative(5.91f, 5.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(20.35f, 12.16f) + lineTo(17.01f, 13.83f) + lineTo(10.17f, 7.0f) + lineToRelative(1.67f, -3.34f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 4.4f, -0.72f) + lineToRelative(4.83f, 4.83f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.72f, 4.4f) + close() + } + } + return _pinOff!! + } + +private var _pinOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Pipeline.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Pipeline.kt new file mode 100644 index 00000000..19038f6d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Pipeline.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Pipeline: ImageVector + get() { + if (_pipeline != null) { + return _pipeline!! + } + _pipeline = fluentIcon(name = "Filled.Pipeline") { + fluentPath { + moveTo(2.0f, 6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) + verticalLineToRelative(11.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + lineTo(2.0f, 6.0f) + close() + moveTo(18.0f, 6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) + verticalLineToRelative(11.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + lineTo(18.0f, 6.0f) + close() + moveTo(16.5f, 6.0f) + horizontalLineToRelative(-9.0f) + verticalLineToRelative(11.0f) + horizontalLineToRelative(9.0f) + lineTo(16.5f, 6.0f) + close() + } + } + return _pipeline!! + } + +private var _pipeline: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Pivot.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Pivot.kt new file mode 100644 index 00000000..c5423a5d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Pivot.kt @@ -0,0 +1,91 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Pivot: ImageVector + get() { + if (_pivot != null) { + return _pivot!! + } + _pivot = fluentIcon(name = "Filled.Pivot") { + fluentPath { + moveTo(3.0f, 6.5f) + lineTo(3.0f, 17.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 3.5f, 3.5f) + horizontalLineToRelative(4.38f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.53f, -2.34f) + lineToRelative(1.5f, -1.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.71f, 0.84f) + horizontalLineToRelative(0.88f) + verticalLineToRelative(-0.88f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.84f, -3.71f) + lineToRelative(1.5f, -1.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 2.34f, -0.53f) + lineTo(20.5f, 6.5f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 17.0f, 3.0f) + lineTo(6.5f, 3.0f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 3.0f, 6.5f) + close() + moveTo(6.5f, 5.0f) + horizontalLineToRelative(1.0f) + curveTo(8.33f, 5.0f, 9.0f, 5.67f, 9.0f, 6.5f) + verticalLineToRelative(1.0f) + curveTo(9.0f, 8.33f, 8.33f, 9.0f, 7.5f, 9.0f) + horizontalLineToRelative(-1.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 5.0f, 7.5f) + verticalLineToRelative(-1.0f) + curveTo(5.0f, 5.67f, 5.67f, 5.0f, 6.5f, 5.0f) + close() + moveTo(11.0f, 6.5f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + lineTo(17.0f, 5.0f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-4.5f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 11.0f, 7.5f) + verticalLineToRelative(-1.0f) + close() + moveTo(7.5f, 11.0f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + lineTo(9.0f, 17.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-1.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 5.0f, 17.0f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(1.0f) + close() + moveTo(20.28f, 12.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(0.22f, -0.22f) + verticalLineToRelative(2.44f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.44f) + lineToRelative(0.22f, -0.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.06f) + lineToRelative(1.5f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-0.22f, -0.22f) + horizontalLineToRelative(2.44f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-2.44f) + lineToRelative(0.22f, 0.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-1.5f, -1.5f) + close() + } + } + return _pivot!! + } + +private var _pivot: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PlayCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PlayCircle.kt new file mode 100644 index 00000000..d845d36c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PlayCircle.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PlayCircle: ImageVector + get() { + if (_playCircle != null) { + return _playCircle!! + } + _playCircle = fluentIcon(name = "Filled.PlayCircle") { + fluentPath { + moveTo(2.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) + close() + moveTo(10.86f, 8.15f) + arcTo(1.25f, 1.25f, 0.0f, false, false, 9.0f, 9.25f) + verticalLineToRelative(5.5f) + curveToRelative(0.0f, 0.95f, 1.02f, 1.56f, 1.86f, 1.1f) + lineToRelative(5.75f, -3.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.3f) + lineToRelative(-5.75f, -3.2f) + close() + } + } + return _playCircle!! + } + +private var _playCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PlayCircleHint.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PlayCircleHint.kt new file mode 100644 index 00000000..57895401 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PlayCircleHint.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PlayCircleHint: ImageVector + get() { + if (_playCircleHint != null) { + return _playCircleHint!! + } + _playCircleHint = fluentIcon(name = "Filled.PlayCircleHint") { + fluentPath { + moveTo(12.0f, 2.0f) + curveToRelative(-0.67f, 0.0f, -1.32f, 0.07f, -1.95f, 0.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.29f, 1.47f) + arcToRelative(8.55f, 8.55f, 0.0f, false, true, 3.32f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.3f, -1.47f) + curveTo(13.31f, 2.07f, 12.65f, 2.0f, 12.0f, 2.0f) + close() + moveTo(7.28f, 4.93f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.84f, -1.25f) + arcToRelative(10.05f, 10.05f, 0.0f, false, false, -2.76f, 2.76f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.25f, 0.84f) + arcToRelative(8.55f, 8.55f, 0.0f, false, true, 2.35f, -2.35f) + close() + moveTo(17.56f, 3.68f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.84f, 1.25f) + arcToRelative(8.55f, 8.55f, 0.0f, false, true, 2.35f, 2.35f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.25f, -0.84f) + arcToRelative(10.05f, 10.05f, 0.0f, false, false, -2.76f, -2.76f) + close() + moveTo(21.81f, 10.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.47f, 0.29f) + arcToRelative(8.54f, 8.54f, 0.0f, false, true, 0.0f, 3.32f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.47f, 0.3f) + arcToRelative(10.05f, 10.05f, 0.0f, false, false, 0.0f, -3.91f) + close() + moveTo(3.66f, 10.34f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.47f, -0.3f) + arcToRelative(10.05f, 10.05f, 0.0f, false, false, 0.0f, 3.91f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.47f, -0.29f) + arcToRelative(8.55f, 8.55f, 0.0f, false, true, 0.0f, -3.32f) + close() + moveTo(4.93f, 16.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.25f, 0.84f) + arcToRelative(10.05f, 10.05f, 0.0f, false, false, 2.76f, 2.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.84f, -1.25f) + arcToRelative(8.55f, 8.55f, 0.0f, false, true, -2.35f, -2.35f) + close() + moveTo(20.32f, 17.56f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.25f, -0.84f) + arcToRelative(8.55f, 8.55f, 0.0f, false, true, -2.35f, 2.35f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.84f, 1.25f) + arcToRelative(10.05f, 10.05f, 0.0f, false, false, 2.76f, -2.76f) + close() + moveTo(10.34f, 20.34f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.3f, 1.47f) + arcToRelative(10.05f, 10.05f, 0.0f, false, false, 3.91f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.29f, -1.47f) + arcToRelative(8.54f, 8.54f, 0.0f, false, true, -3.32f, 0.0f) + close() + moveTo(19.25f, 12.0f) + arcToRelative(7.25f, 7.25f, 0.0f, true, true, -14.5f, 0.0f) + arcToRelative(7.25f, 7.25f, 0.0f, false, true, 14.5f, 0.0f) + close() + moveTo(10.85f, 8.15f) + arcTo(1.25f, 1.25f, 0.0f, false, false, 9.0f, 9.25f) + verticalLineToRelative(5.5f) + curveToRelative(0.0f, 0.95f, 1.02f, 1.55f, 1.86f, 1.09f) + lineToRelative(5.75f, -3.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.3f) + lineToRelative(-5.75f, -3.2f) + close() + } + } + return _playCircleHint!! + } + +private var _playCircleHint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PlugConnected.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PlugConnected.kt new file mode 100644 index 00000000..0f6e71b0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PlugConnected.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PlugConnected: ImageVector + get() { + if (_plugConnected != null) { + return _plugConnected!! + } + _plugConnected = fluentIcon(name = "Filled.PlugConnected") { + fluentPath { + moveTo(19.49f, 5.57f) + arcToRelative(5.97f, 5.97f, 0.0f, false, true, -1.9f, 8.96f) + curveToRelative(-0.64f, 0.35f, -1.42f, 0.14f, -1.94f, -0.38f) + lineToRelative(-5.8f, -5.8f) + curveToRelative(-0.52f, -0.52f, -0.73f, -1.3f, -0.38f, -1.95f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 8.96f, -1.89f) + lineToRelative(2.29f, -2.29f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-2.29f, 2.3f) + close() + moveTo(3.28f, 21.78f) + lineToRelative(2.3f, -2.29f) + arcToRelative(5.97f, 5.97f, 0.0f, false, false, 8.95f, -1.9f) + curveToRelative(0.35f, -0.64f, 0.14f, -1.42f, -0.38f, -1.94f) + lineToRelative(-5.8f, -5.8f) + curveToRelative(-0.52f, -0.52f, -1.3f, -0.73f, -1.95f, -0.38f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, -1.89f, 8.96f) + lineToRelative(-2.29f, 2.29f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + close() + } + } + return _plugConnected!! + } + +private var _plugConnected: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PlugDisconnected.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PlugDisconnected.kt new file mode 100644 index 00000000..1239fa96 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PlugDisconnected.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PlugDisconnected: ImageVector + get() { + if (_plugDisconnected != null) { + return _plugDisconnected!! + } + _plugDisconnected = fluentIcon(name = "Filled.PlugDisconnected") { + fluentPath { + moveTo(21.7f, 3.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.4f) + lineToRelative(-1.8f, 1.79f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, -5.26f, 0.6f) + lineToRelative(-1.06f, 1.07f) + curveToRelative(-0.69f, 0.69f, -0.69f, 1.8f, 0.0f, 2.48f) + lineToRelative(3.58f, 3.58f) + curveToRelative(0.69f, 0.69f, 1.8f, 0.69f, 2.48f, 0.0f) + lineToRelative(1.07f, -1.06f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, 0.6f, -5.26f) + lineToRelative(1.8f, -1.8f) + close() + moveTo(10.7f, 11.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.4f) + lineToRelative(-1.48f, 1.46f) + lineToRelative(-0.29f, -0.29f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-1.78f, 1.77f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, -0.6f, 5.26f) + lineToRelative(-1.8f, 1.8f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.42f, 1.4f) + lineToRelative(1.8f, -1.79f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, 5.25f, -0.6f) + lineToRelative(1.77f, -1.78f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-0.3f, -0.3f) + lineToRelative(1.48f, -1.46f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, -1.42f) + lineToRelative(-1.47f, 1.47f) + lineToRelative(-1.58f, -1.58f) + lineToRelative(1.47f, -1.47f) + close() + } + } + return _plugDisconnected!! + } + +private var _plugDisconnected: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PointScan.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PointScan.kt new file mode 100644 index 00000000..504644c4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PointScan.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PointScan: ImageVector + get() { + if (_pointScan != null) { + return _pointScan!! + } + _pointScan = fluentIcon(name = "Filled.PointScan") { + fluentPath { + moveTo(10.25f, 2.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(4.8f) + arcTo(6.25f, 6.25f, 0.0f, false, true, 16.46f, 13.0f) + horizontalLineToRelative(4.79f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(16.45f, 14.5f) + arcTo(6.25f, 6.25f, 0.0f, false, true, 11.0f, 19.96f) + verticalLineToRelative(1.29f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(9.5f, 19.95f) + arcToRelative(6.25f, 6.25f, 0.0f, false, true, -5.46f, -5.45f) + lineTo(2.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(4.05f, 13.0f) + arcTo(6.25f, 6.25f, 0.0f, false, true, 9.5f, 7.54f) + lineTo(9.5f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(10.25f, 7.5f) + curveToRelative(-0.25f, 0.0f, -0.5f, 0.01f, -0.75f, 0.04f) + lineTo(9.5f, 13.0f) + lineTo(4.04f, 13.0f) + arcToRelative(6.31f, 6.31f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(9.5f, 14.5f) + verticalLineToRelative(5.46f) + arcToRelative(6.3f, 6.3f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(11.0f, 14.5f) + horizontalLineToRelative(5.46f) + arcToRelative(6.31f, 6.31f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(11.0f, 13.0f) + lineTo(11.0f, 7.54f) + curveToRelative(-0.25f, -0.03f, -0.5f, -0.04f, -0.75f, -0.04f) + close() + } + } + return _pointScan!! + } + +private var _pointScan: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Poll.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Poll.kt new file mode 100644 index 00000000..5e6cd845 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Poll.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Poll: ImageVector + get() { + if (_poll != null) { + return _poll!! + } + _poll = fluentIcon(name = "Filled.Poll") { + fluentPath { + moveTo(11.75f, 2.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.75f) + verticalLineToRelative(14.5f) + arcToRelative(2.75f, 2.75f, 0.0f, true, true, -5.5f, 0.0f) + lineTo(9.0f, 4.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 11.75f, 2.0f) + close() + moveTo(18.75f, 7.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.75f) + verticalLineToRelative(9.5f) + arcToRelative(2.75f, 2.75f, 0.0f, true, true, -5.5f, 0.0f) + verticalLineToRelative(-9.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.75f, 7.0f) + close() + moveTo(4.75f, 12.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.75f) + verticalLineToRelative(4.5f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -5.5f, 0.0f) + verticalLineToRelative(-4.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 12.0f) + close() + } + } + return _poll!! + } + +private var _poll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PollHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PollHorizontal.kt new file mode 100644 index 00000000..31082543 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PollHorizontal.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PollHorizontal: ImageVector + get() { + if (_pollHorizontal != null) { + return _pollHorizontal!! + } + _pollHorizontal = fluentIcon(name = "Filled.PollHorizontal") { + fluentPath { + moveTo(22.0f, 11.75f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) + lineTo(4.75f, 14.5f) + arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, -5.5f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 11.75f) + close() + moveTo(17.0f, 18.75f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) + horizontalLineToRelative(-9.5f) + arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, -5.5f) + horizontalLineToRelative(9.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 17.0f, 18.75f) + close() + moveTo(12.0f, 4.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 9.25f, 7.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, -5.5f) + horizontalLineToRelative(4.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 12.0f, 4.75f) + close() + } + } + return _pollHorizontal!! + } + +private var _pollHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PortHdmi.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PortHdmi.kt new file mode 100644 index 00000000..a70b156e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PortHdmi.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PortHdmi: ImageVector + get() { + if (_portHdmi != null) { + return _portHdmi!! + } + _portHdmi = fluentIcon(name = "Filled.PortHdmi") { + fluentPath { + moveToRelative(21.41f, 11.41f) + lineToRelative(-2.82f, -2.82f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 17.17f, 8.0f) + horizontalLineTo(6.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.42f, 0.59f) + lineToRelative(-2.82f, 2.82f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 2.0f, 12.83f) + verticalLineTo(14.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, 2.0f) + horizontalLineToRelative(16.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + verticalLineToRelative(-1.17f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + close() + moveTo(17.0f, 12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, 0.75f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(8.5f) + arcTo(0.76f, 0.76f, 0.0f, false, true, 17.0f, 12.0f) + close() + } + } + return _portHdmi!! + } + +private var _portHdmi: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PortMicroUsb.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PortMicroUsb.kt new file mode 100644 index 00000000..9b04e259 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PortMicroUsb.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PortMicroUsb: ImageVector + get() { + if (_portMicroUsb != null) { + return _portMicroUsb!! + } + _portMicroUsb = fluentIcon(name = "Filled.PortMicroUsb") { + fluentPath { + moveTo(19.0f, 12.83f) + verticalLineTo(13.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineTo(7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + verticalLineToRelative(-0.17f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.59f, -1.42f) + lineToRelative(1.82f, -1.82f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 8.83f, 9.0f) + horizontalLineToRelative(6.34f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.42f, 0.59f) + lineToRelative(1.82f, 1.82f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.59f, 1.42f) + close() + } + } + return _portMicroUsb!! + } + +private var _portMicroUsb: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PortUsbA.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PortUsbA.kt new file mode 100644 index 00000000..adb7ffe8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PortUsbA.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PortUsbA: ImageVector + get() { + if (_portUsbA != null) { + return _portUsbA!! + } + _portUsbA = fluentIcon(name = "Filled.PortUsbA") { + fluentPath { + moveTo(18.0f, 8.0f) + horizontalLineTo(6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, 2.0f) + horizontalLineToRelative(12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + verticalLineToRelative(-4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + close() + moveTo(6.0f, 10.0f) + horizontalLineToRelative(12.0f) + verticalLineToRelative(2.0f) + horizontalLineTo(6.0f) + verticalLineToRelative(-2.0f) + close() + } + } + return _portUsbA!! + } + +private var _portUsbA: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PortUsbC.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PortUsbC.kt new file mode 100644 index 00000000..e4310bd3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PortUsbC.kt @@ -0,0 +1,29 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PortUsbC: ImageVector + get() { + if (_portUsbC != null) { + return _portUsbC!! + } + _portUsbC = fluentIcon(name = "Filled.PortUsbC") { + fluentPath { + moveTo(19.0f, 12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + horizontalLineTo(8.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) + horizontalLineToRelative(8.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + close() + } + } + return _portUsbC!! + } + +private var _portUsbC: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PositionBackward.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PositionBackward.kt new file mode 100644 index 00000000..331e40b9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PositionBackward.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PositionBackward: ImageVector + get() { + if (_positionBackward != null) { + return _positionBackward!! + } + _positionBackward = fluentIcon(name = "Filled.PositionBackward") { + fluentPath { + moveTo(16.5f, 6.5f) + horizontalLineToRelative(-5.75f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, -4.25f, 4.25f) + verticalLineToRelative(5.75f) + lineTo(5.25f, 16.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 13.25f) + verticalLineToRelative(-8.0f) + curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) + horizontalLineToRelative(8.0f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + lineTo(16.5f, 6.5f) + close() + moveTo(22.0f, 18.75f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-8.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.25f, -3.25f) + verticalLineToRelative(-8.0f) + curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) + horizontalLineToRelative(8.0f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(8.0f) + close() + moveTo(18.75f, 20.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-8.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-8.0f) + curveTo(9.78f, 9.0f, 9.0f, 9.78f, 9.0f, 10.75f) + verticalLineToRelative(8.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(8.0f) + close() + } + } + return _positionBackward!! + } + +private var _positionBackward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PositionForward.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PositionForward.kt new file mode 100644 index 00000000..847290e0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PositionForward.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PositionForward: ImageVector + get() { + if (_positionForward != null) { + return _positionForward!! + } + _positionForward = fluentIcon(name = "Filled.PositionForward") { + fluentPath { + moveTo(13.25f, 16.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-8.0f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-8.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) + verticalLineToRelative(8.0f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(8.0f) + close() + moveTo(7.5f, 17.5f) + lineTo(9.0f, 17.5f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(8.0f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-8.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(17.5f, 9.0f) + lineTo(17.5f, 7.5f) + horizontalLineToRelative(1.25f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(8.0f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-8.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.25f, -3.25f) + lineTo(7.5f, 17.5f) + close() + } + } + return _positionForward!! + } + +private var _positionForward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PositionToBack.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PositionToBack.kt new file mode 100644 index 00000000..20640c16 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PositionToBack.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PositionToBack: ImageVector + get() { + if (_positionToBack != null) { + return _positionToBack!! + } + _positionToBack = fluentIcon(name = "Filled.PositionToBack") { + fluentPath { + moveTo(6.0f, 11.0f) + horizontalLineToRelative(1.25f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 11.0f, 7.25f) + lineTo(11.0f, 6.0f) + horizontalLineToRelative(3.75f) + curveTo(16.55f, 6.0f, 18.0f, 7.46f, 18.0f, 9.25f) + lineTo(18.0f, 13.0f) + horizontalLineToRelative(-1.25f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 13.0f, 16.75f) + lineTo(13.0f, 18.0f) + lineTo(9.25f, 18.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 6.0f, 14.75f) + lineTo(6.0f, 11.0f) + close() + moveTo(1.0f, 3.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.75f, 1.0f) + horizontalLineToRelative(3.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 10.0f, 3.75f) + verticalLineToRelative(3.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 7.25f, 10.0f) + horizontalLineToRelative(-3.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 1.0f, 7.25f) + verticalLineToRelative(-3.5f) + close() + moveTo(3.75f, 2.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-3.5f) + close() + moveTo(14.0f, 16.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 16.75f, 14.0f) + horizontalLineToRelative(3.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 23.0f, 16.75f) + verticalLineToRelative(3.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 20.25f, 23.0f) + horizontalLineToRelative(-3.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 14.0f, 20.25f) + verticalLineToRelative(-3.5f) + close() + moveTo(16.75f, 15.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-3.5f) + close() + } + } + return _positionToBack!! + } + +private var _positionToBack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PositionToFront.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PositionToFront.kt new file mode 100644 index 00000000..505b387b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PositionToFront.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PositionToFront: ImageVector + get() { + if (_positionToFront != null) { + return _positionToFront!! + } + _positionToFront = fluentIcon(name = "Filled.PositionToFront") { + fluentPath { + moveTo(1.0f, 3.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.75f, 1.0f) + horizontalLineToRelative(3.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 10.0f, 3.75f) + verticalLineTo(5.0f) + horizontalLineToRelative(-0.75f) + curveToRelative(-0.26f, 0.0f, -0.5f, 0.02f, -0.75f, 0.07f) + verticalLineTo(3.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(1.32f) + curveToRelative(-0.05f, 0.24f, -0.07f, 0.5f, -0.07f, 0.75f) + verticalLineTo(10.0f) + horizontalLineTo(3.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 1.0f, 7.25f) + verticalLineToRelative(-3.5f) + close() + moveTo(14.0f, 19.0f) + verticalLineToRelative(1.25f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 16.75f, 23.0f) + horizontalLineToRelative(3.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 23.0f, 20.25f) + verticalLineToRelative(-3.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 20.25f, 14.0f) + horizontalLineTo(19.0f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.26f, -0.02f, 0.5f, -0.07f, 0.75f) + horizontalLineToRelative(1.32f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + verticalLineToRelative(-1.32f) + curveToRelative(-0.24f, 0.05f, -0.5f, 0.07f, -0.75f, 0.07f) + horizontalLineTo(14.0f) + close() + moveTo(6.0f, 9.25f) + curveTo(6.0f, 7.45f, 7.46f, 6.0f, 9.25f, 6.0f) + horizontalLineToRelative(5.5f) + curveTo(16.55f, 6.0f, 18.0f, 7.46f, 18.0f, 9.25f) + verticalLineToRelative(5.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-5.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 6.0f, 14.75f) + verticalLineToRelative(-5.5f) + close() + } + } + return _positionToFront!! + } + +private var _positionToFront: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Power.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Power.kt new file mode 100644 index 00000000..d85a7ee2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Power.kt @@ -0,0 +1,35 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Power: ImageVector + get() { + if (_power != null) { + return _power!! + } + _power = fluentIcon(name = "Filled.Power") { + fluentPath { + moveTo(8.2f, 4.84f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.85f, 1.82f) + arcToRelative(7.0f, 7.0f, 0.0f, true, false, 5.92f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.84f, -1.8f) + arcToRelative(9.0f, 9.0f, 0.0f, true, true, -7.6f, -0.02f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + verticalLineTo(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + verticalLineTo(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + } + } + return _power!! + } + +private var _power: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Predictions.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Predictions.kt new file mode 100644 index 00000000..1930aff1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Predictions.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Predictions: ImageVector + get() { + if (_predictions != null) { + return _predictions!! + } + _predictions = fluentIcon(name = "Filled.Predictions") { + fluentPath { + moveToRelative(16.68f, 14.93f) + lineToRelative(1.29f, 3.85f) + curveToRelative(0.26f, 0.8f, -0.08f, 1.67f, -0.81f, 2.08f) + curveToRelative(-1.37f, 0.77f, -3.1f, 1.14f, -5.16f, 1.14f) + reflectiveCurveToRelative(-3.79f, -0.37f, -5.16f, -1.14f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.8f, -2.08f) + lineToRelative(1.28f, -3.85f) + arcToRelative(7.72f, 7.72f, 0.0f, false, false, 9.36f, 0.0f) + close() + moveTo(12.0f, 2.0f) + curveToRelative(1.34f, 0.0f, 2.58f, 0.39f, 3.63f, 1.06f) + curveToRelative(-0.08f, 0.31f, -0.2f, 0.54f, -0.37f, 0.7f) + curveToRelative(-0.25f, 0.26f, -0.68f, 0.42f, -1.32f, 0.47f) + lineToRelative(-0.22f, 0.02f) + horizontalLineToRelative(-0.38f) + curveToRelative(-2.17f, 0.16f, -2.12f, 3.5f, 0.16f, 3.5f) + curveToRelative(0.89f, 0.0f, 1.46f, 0.18f, 1.76f, 0.49f) + curveToRelative(0.26f, 0.25f, 0.42f, 0.68f, 0.47f, 1.32f) + lineToRelative(0.02f, 0.22f) + verticalLineToRelative(0.38f) + curveToRelative(0.1f, 1.32f, 1.36f, 1.81f, 2.34f, 1.5f) + arcTo(6.75f, 6.75f, 0.0f, true, true, 12.0f, 2.0f) + close() + moveTo(18.25f, 2.0f) + curveToRelative(0.0f, 1.15f, 0.27f, 1.96f, 0.78f, 2.47f) + curveToRelative(0.47f, 0.47f, 1.2f, 0.74f, 2.21f, 0.78f) + horizontalLineToRelative(0.26f) + curveToRelative(0.96f, 0.0f, 1.0f, 1.38f, 0.12f, 1.5f) + horizontalLineToRelative(-0.12f) + curveToRelative(-1.15f, 0.0f, -1.96f, 0.27f, -2.47f, 0.78f) + curveToRelative(-0.47f, 0.47f, -0.74f, 1.2f, -0.78f, 2.21f) + lineTo(18.25f, 10.0f) + curveToRelative(0.0f, 1.0f, -1.5f, 1.0f, -1.5f, 0.0f) + curveToRelative(0.0f, -1.15f, -0.27f, -1.96f, -0.78f, -2.47f) + curveToRelative(-0.47f, -0.47f, -1.2f, -0.74f, -2.21f, -0.78f) + horizontalLineToRelative(-0.26f) + curveToRelative(-0.96f, 0.0f, -1.0f, -1.38f, -0.12f, -1.5f) + horizontalLineToRelative(0.12f) + curveToRelative(1.15f, 0.0f, 1.96f, -0.27f, 2.47f, -0.78f) + curveToRelative(0.51f, -0.51f, 0.78f, -1.32f, 0.78f, -2.47f) + curveToRelative(0.0f, -1.0f, 1.5f, -1.0f, 1.5f, 0.0f) + close() + } + } + return _predictions!! + } + +private var _predictions: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Premium.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Premium.kt new file mode 100644 index 00000000..f50c52a4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Premium.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Premium: ImageVector + get() { + if (_premium != null) { + return _premium!! + } + _premium = fluentIcon(name = "Filled.Premium") { + fluentPath { + moveTo(18.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.83f, 0.44f) + lineToRelative(0.06f, 0.11f) + lineToRelative(3.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.06f, 1.01f) + lineToRelative(-0.09f, 0.1f) + lineToRelative(-8.97f, 9.98f) + arcToRelative(0.99f, 0.99f, 0.0f, false, true, -0.89f, 0.35f) + lineToRelative(-0.1f, -0.02f) + arcToRelative(0.98f, 0.98f, 0.0f, false, true, -0.54f, -0.32f) + lineToRelative(-8.98f, -9.98f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.2f, -1.0f) + lineToRelative(0.05f, -0.12f) + lineToRelative(3.0f, -6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.77f, -0.54f) + lineTo(6.0f, 3.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(14.58f, 11.0f) + lineTo(9.42f, 11.0f) + lineTo(12.0f, 17.34f) + lineTo(14.58f, 11.0f) + close() + moveTo(18.75f, 11.0f) + horizontalLineToRelative(-2.02f) + lineToRelative(-1.66f, 4.09f) + lineTo(18.75f, 11.0f) + close() + moveTo(7.26f, 11.0f) + lineTo(5.25f, 11.0f) + lineToRelative(3.67f, 4.09f) + lineTo(7.26f, 11.0f) + close() + moveTo(8.62f, 5.0f) + horizontalLineToRelative(-2.0f) + lineToRelative(-2.0f, 4.0f) + horizontalLineToRelative(2.7f) + lineToRelative(1.3f, -4.0f) + close() + moveTo(13.27f, 5.0f) + horizontalLineToRelative(-2.54f) + lineToRelative(-1.3f, 4.0f) + horizontalLineToRelative(5.14f) + lineToRelative(-1.3f, -4.0f) + close() + moveTo(17.38f, 5.0f) + horizontalLineToRelative(-2.0f) + lineToRelative(1.3f, 4.0f) + horizontalLineToRelative(2.7f) + lineToRelative(-2.0f, -4.0f) + close() + } + } + return _premium!! + } + +private var _premium: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PremiumPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PremiumPerson.kt new file mode 100644 index 00000000..3085a935 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PremiumPerson.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PremiumPerson: ImageVector + get() { + if (_premiumPerson != null) { + return _premiumPerson!! + } + _premiumPerson = fluentIcon(name = "Filled.PremiumPerson") { + fluentPath { + moveTo(18.83f, 3.44f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 18.0f, 3.0f) + lineTo(5.88f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.77f, 0.55f) + lineToRelative(-3.0f, 6.0f) + lineToRelative(-0.06f, 0.13f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.2f, 0.99f) + lineToRelative(8.99f, 9.98f) + curveToRelative(0.14f, 0.17f, 0.33f, 0.28f, 0.53f, 0.32f) + lineToRelative(0.11f, 0.02f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.89f, -0.35f) + lineToRelative(0.26f, -0.29f) + arcToRelative(3.79f, 3.79f, 0.0f, false, true, -0.03f, -0.48f) + verticalLineToRelative(-0.1f) + arcTo(2.77f, 2.77f, 0.0f, false, true, 15.77f, 17.0f) + horizontalLineToRelative(0.28f) + arcToRelative(3.49f, 3.49f, 0.0f, false, true, 2.45f, -6.0f) + curveToRelative(0.85f, 0.0f, 1.62f, 0.3f, 2.23f, 0.8f) + lineToRelative(1.01f, -1.13f) + lineToRelative(0.09f, -0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.06f, -1.02f) + lineToRelative(-3.0f, -6.0f) + lineToRelative(-0.06f, -0.1f) + close() + moveTo(9.43f, 11.0f) + horizontalLineToRelative(5.15f) + lineTo(12.0f, 17.34f) + lineTo(9.42f, 11.0f) + close() + moveTo(5.25f, 11.0f) + horizontalLineToRelative(2.01f) + lineToRelative(1.66f, 4.09f) + lineTo(5.25f, 11.0f) + close() + moveTo(6.62f, 5.0f) + horizontalLineToRelative(2.0f) + lineToRelative(-1.3f, 4.0f) + horizontalLineToRelative(-2.7f) + lineToRelative(2.0f, -4.0f) + close() + moveTo(10.72f, 5.0f) + horizontalLineToRelative(2.55f) + lineToRelative(1.3f, 4.0f) + lineTo(9.43f, 9.0f) + lineToRelative(1.3f, -4.0f) + close() + moveTo(15.38f, 5.0f) + horizontalLineToRelative(2.0f) + lineToRelative(2.0f, 4.0f) + horizontalLineToRelative(-2.7f) + lineToRelative(-1.3f, -4.0f) + close() + moveTo(21.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(23.0f, 19.88f) + curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) + reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _premiumPerson!! + } + +private var _premiumPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PresenceAvailable.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PresenceAvailable.kt new file mode 100644 index 00000000..145f9267 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PresenceAvailable.kt @@ -0,0 +1,35 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PresenceAvailable: ImageVector + get() { + if (_presenceAvailable != null) { + return _presenceAvailable!! + } + _presenceAvailable = fluentIcon(name = "Filled.PresenceAvailable") { + fluentPath { + moveTo(12.0f, 24.0f) + arcToRelative(12.0f, 12.0f, 0.0f, true, false, 0.0f, -24.0f) + arcToRelative(12.0f, 12.0f, 0.0f, false, false, 0.0f, 24.0f) + close() + moveTo(17.06f, 10.56f) + lineTo(11.56f, 16.06f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.12f, 0.0f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.12f, -2.12f) + lineToRelative(0.94f, 0.94f) + lineToRelative(4.44f, -4.44f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.12f, 2.12f) + close() + } + } + return _presenceAvailable!! + } + +private var _presenceAvailable: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PresenceAway.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PresenceAway.kt new file mode 100644 index 00000000..542f9081 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PresenceAway.kt @@ -0,0 +1,35 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PresenceAway: ImageVector + get() { + if (_presenceAway != null) { + return _presenceAway!! + } + _presenceAway = fluentIcon(name = "Filled.PresenceAway") { + fluentPath { + moveTo(12.0f, 24.0f) + arcToRelative(12.0f, 12.0f, 0.0f, true, false, 0.0f, -24.0f) + arcToRelative(12.0f, 12.0f, 0.0f, false, false, 0.0f, 24.0f) + close() + moveTo(13.0f, 6.5f) + verticalLineToRelative(4.81f) + lineToRelative(2.98f, 2.55f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.96f, 2.28f) + lineToRelative(-3.5f, -3.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 10.0f, 12.0f) + lineTo(10.0f, 6.5f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + } + } + return _presenceAway!! + } + +private var _presenceAway: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PresenceBusy.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PresenceBusy.kt similarity index 77% rename from fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PresenceBusy.kt rename to fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PresenceBusy.kt index 4f028c01..d691ea9b 100644 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/PresenceBusy.kt +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PresenceBusy.kt @@ -1,11 +1,11 @@ -package com.konyaco.fluent.icons.filled +package io.github.composefluent.icons.filled import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath public val Icons.Filled.PresenceBusy: ImageVector get() { diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PresenceDnd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PresenceDnd.kt new file mode 100644 index 00000000..af2b71a9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PresenceDnd.kt @@ -0,0 +1,32 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PresenceDnd: ImageVector + get() { + if (_presenceDnd != null) { + return _presenceDnd!! + } + _presenceDnd = fluentIcon(name = "Filled.PresenceDnd") { + fluentPath { + moveTo(12.0f, 24.0f) + arcToRelative(12.0f, 12.0f, 0.0f, true, false, 0.0f, -24.0f) + arcToRelative(12.0f, 12.0f, 0.0f, false, false, 0.0f, 24.0f) + close() + moveTo(7.5f, 10.5f) + horizontalLineToRelative(9.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) + horizontalLineToRelative(-9.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + } + } + return _presenceDnd!! + } + +private var _presenceDnd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Presenter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Presenter.kt new file mode 100644 index 00000000..b9850ed6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Presenter.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Presenter: ImageVector + get() { + if (_presenter != null) { + return _presenter!! + } + _presenter = fluentIcon(name = "Filled.Presenter") { + fluentPath { + moveTo(20.24f, 13.0f) + curveToRelative(0.71f, 0.0f, 1.03f, 0.89f, 0.47f, 1.33f) + lineTo(16.0f, 18.11f) + verticalLineToRelative(1.64f) + curveTo(16.0f, 21.0f, 14.99f, 22.0f, 13.75f, 22.0f) + horizontalLineToRelative(-3.5f) + curveTo(9.01f, 22.0f, 8.0f, 21.0f, 8.0f, 19.75f) + verticalLineToRelative(-1.64f) + lineToRelative(-4.72f, -3.78f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 3.75f, 13.0f) + horizontalLineToRelative(16.5f) + close() + moveTo(8.75f, 9.0f) + horizontalLineToRelative(6.5f) + curveToRelative(0.91f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) + verticalLineTo(12.0f) + horizontalLineTo(7.0f) + verticalLineToRelative(-1.25f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) + lineTo(8.76f, 9.0f) + horizontalLineToRelative(6.5f) + horizontalLineToRelative(-6.5f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) + close() + } + } + return _presenter!! + } + +private var _presenter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PresenterOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PresenterOff.kt new file mode 100644 index 00000000..1b2e7cb1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PresenterOff.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PresenterOff: ImageVector + get() { + if (_presenterOff != null) { + return _presenterOff!! + } + _presenterOff = fluentIcon(name = "Filled.PresenterOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(5.85f, 5.86f) + curveTo(7.44f, 9.4f, 7.0f, 10.02f, 7.0f, 10.75f) + lineTo(7.0f, 12.0f) + horizontalLineToRelative(3.94f) + lineToRelative(1.0f, 1.0f) + horizontalLineToRelative(-8.2f) + curveToRelative(-0.7f, 0.0f, -1.01f, 0.89f, -0.46f, 1.33f) + lineTo(8.0f, 18.11f) + verticalLineToRelative(1.64f) + curveTo(8.0f, 21.0f, 9.0f, 22.0f, 10.25f, 22.0f) + horizontalLineToRelative(3.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-1.64f) + lineToRelative(0.58f, -0.47f) + lineToRelative(4.14f, 4.14f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(16.18f, 13.0f) + lineToRelative(2.76f, 2.76f) + lineToRelative(1.77f, -1.43f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.47f, -1.33f) + horizontalLineToRelative(-4.06f) + close() + moveTo(12.18f, 9.0f) + lineTo(15.18f, 12.0f) + lineTo(17.0f, 12.0f) + lineTo(17.0f, 10.61f) + curveTo(16.92f, 9.7f, 16.16f, 9.0f, 15.24f, 9.0f) + horizontalLineToRelative(-3.06f) + close() + moveTo(12.0f, 8.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.98f, -0.16f) + lineTo(9.16f, 5.98f) + arcTo(3.0f, 3.0f, 0.0f, true, true, 12.0f, 8.0f) + close() + } + } + return _presenterOff!! + } + +private var _presenterOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PreviewLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PreviewLink.kt new file mode 100644 index 00000000..c8db03fd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PreviewLink.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PreviewLink: ImageVector + get() { + if (_previewLink != null) { + return _previewLink!! + } + _previewLink = fluentIcon(name = "Filled.PreviewLink") { + fluentPath { + moveTo(6.02f, 7.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(11.96f) + lineTo(17.98f, 7.0f) + lineTo(6.02f, 7.0f) + close() + moveTo(14.98f, 13.48f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(-3.0f) + close() + moveTo(2.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 3.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 21.0f) + lineTo(4.75f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 18.25f) + lineTo(2.0f, 5.75f) + close() + moveTo(4.52f, 6.25f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(13.46f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(5.27f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(13.48f, 12.73f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(5.28f, 12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(5.27f, 12.5f) + close() + moveTo(4.52f, 16.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(5.98f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(5.27f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + } + } + return _previewLink!! + } + +private var _previewLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Previous.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Previous.kt new file mode 100644 index 00000000..bc4ee601 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Previous.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Previous: ImageVector + get() { + if (_previous != null) { + return _previous!! + } + _previous = fluentIcon(name = "Filled.Previous") { + fluentPath { + moveTo(3.0f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(3.0f, 3.75f) + close() + moveTo(21.0f, 4.75f) + curveToRelative(0.0f, -1.4f, -1.58f, -2.24f, -2.74f, -1.44f) + lineToRelative(-10.5f, 7.2f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, 2.87f) + lineToRelative(10.5f, 7.3f) + curveToRelative(1.15f, 0.81f, 2.74f, -0.02f, 2.74f, -1.43f) + lineTo(21.0f, 4.75f) + close() + } + } + return _previous!! + } + +private var _previous: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Print.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Print.kt new file mode 100644 index 00000000..5c50a68f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Print.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Print: ImageVector + get() { + if (_print != null) { + return _print!! + } + _print = fluentIcon(name = "Filled.Print") { + fluentPath { + moveTo(18.0f, 17.5f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-7.5f) + curveTo(7.01f, 21.0f, 6.0f, 20.0f, 6.0f, 18.75f) + lineTo(6.0f, 17.5f) + lineTo(4.25f, 17.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-6.0f) + curveTo(2.0f, 7.45f, 3.46f, 6.0f, 5.25f, 6.0f) + lineTo(6.0f, 6.0f) + verticalLineToRelative(-0.75f) + curveTo(6.0f, 4.01f, 7.0f, 3.0f, 8.25f, 3.0f) + horizontalLineToRelative(7.5f) + curveTo(17.0f, 3.0f, 18.0f, 4.0f, 18.0f, 5.25f) + lineTo(18.0f, 6.0f) + horizontalLineToRelative(0.75f) + curveTo(20.55f, 6.0f, 22.0f, 7.46f, 22.0f, 9.25f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.24f, 2.25f) + lineTo(18.0f, 17.5f) + close() + moveTo(15.75f, 13.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(7.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(15.75f, 4.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(7.5f, 6.0f) + horizontalLineToRelative(9.0f) + verticalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + } + } + return _print!! + } + +private var _print: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PrintAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PrintAdd.kt new file mode 100644 index 00000000..718a0a0f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PrintAdd.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PrintAdd: ImageVector + get() { + if (_printAdd != null) { + return _printAdd!! + } + _printAdd = fluentIcon(name = "Filled.PrintAdd") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 7.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 7.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 6.0f) + lineTo(17.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + lineTo(18.0f, 6.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 7.0f) + close() + moveTo(17.5f, 13.0f) + curveToRelative(1.75f, 0.0f, 3.34f, -0.7f, 4.5f, -1.81f) + verticalLineToRelative(5.06f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.24f, 2.25f) + lineTo(18.0f, 18.5f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-7.5f) + curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) + lineTo(6.0f, 18.5f) + lineTo(4.25f, 18.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-6.0f) + curveTo(2.0f, 8.45f, 3.46f, 7.0f, 5.25f, 7.0f) + lineTo(6.0f, 7.0f) + verticalLineToRelative(-0.75f) + curveTo(6.0f, 5.01f, 7.0f, 4.0f, 8.25f, 4.0f) + horizontalLineToRelative(3.25f) + curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) + lineTo(8.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(7.5f, 7.0f) + horizontalLineToRelative(3.52f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, 6.48f, 6.0f) + close() + moveTo(16.5f, 15.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(7.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-4.5f) + close() + } + } + return _printAdd!! + } + +private var _printAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Production.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Production.kt new file mode 100644 index 00000000..23103af4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Production.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Production: ImageVector + get() { + if (_production != null) { + return _production!! + } + _production = fluentIcon(name = "Filled.Production") { + fluentPath { + moveTo(4.5f, 5.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-2.5f) + close() + moveTo(15.25f, 3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-2.5f) + close() + moveTo(15.0f, 5.25f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(2.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-2.5f) + close() + moveTo(2.0f, 16.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.5f, -4.5f) + horizontalLineToRelative(11.0f) + arcToRelative(4.5f, 4.5f, 0.0f, true, true, 0.0f, 9.0f) + horizontalLineToRelative(-11.0f) + arcTo(4.5f, 4.5f, 0.0f, false, true, 2.0f, 16.0f) + close() + moveTo(8.5f, 16.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) + close() + moveTo(13.5f, 16.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) + close() + moveTo(17.0f, 17.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + close() + } + } + return _production!! + } + +private var _production: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ProductionCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ProductionCheckmark.kt new file mode 100644 index 00000000..822b1014 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ProductionCheckmark.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ProductionCheckmark: ImageVector + get() { + if (_productionCheckmark != null) { + return _productionCheckmark!! + } + _productionCheckmark = fluentIcon(name = "Filled.ProductionCheckmark") { + fluentPath { + moveTo(6.25f, 3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-2.5f) + close() + moveTo(13.5f, 5.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-2.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + close() + moveTo(15.25f, 5.0f) + horizontalLineToRelative(2.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + close() + moveTo(6.5f, 11.5f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, 0.0f, 9.0f) + horizontalLineToRelative(5.23f) + arcToRelative(6.47f, 6.47f, 0.0f, false, true, -0.72f, -3.37f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.7f, -2.6f) + arcTo(6.53f, 6.53f, 0.0f, false, true, 15.0f, 11.5f) + lineTo(6.5f, 11.5f) + close() + moveTo(7.0f, 17.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-3.65f, 3.64f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _productionCheckmark!! + } + +private var _productionCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Prohibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Prohibited.kt new file mode 100644 index 00000000..366f2b38 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Prohibited.kt @@ -0,0 +1,35 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Prohibited: ImageVector + get() { + if (_prohibited != null) { + return _prohibited!! + } + _prohibited = fluentIcon(name = "Filled.Prohibited") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(18.11f, 7.65f) + lineTo(7.65f, 18.11f) + arcTo(7.5f, 7.5f, 0.0f, false, false, 18.11f, 7.65f) + close() + moveTo(12.0f, 4.5f) + arcToRelative(7.5f, 7.5f, 0.0f, false, false, -6.11f, 11.85f) + lineTo(16.35f, 5.89f) + arcTo(7.47f, 7.47f, 0.0f, false, false, 12.0f, 4.5f) + close() + } + } + return _prohibited!! + } + +private var _prohibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ProhibitedMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ProhibitedMultiple.kt new file mode 100644 index 00000000..462c04d5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ProhibitedMultiple.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ProhibitedMultiple: ImageVector + get() { + if (_prohibitedMultiple != null) { + return _prohibitedMultiple!! + } + _prohibitedMultiple = fluentIcon(name = "Filled.ProhibitedMultiple") { + fluentPath { + moveTo(10.75f, 19.5f) + arcToRelative(8.75f, 8.75f, 0.0f, true, false, 0.0f, -17.5f) + arcToRelative(8.75f, 8.75f, 0.0f, false, false, 0.0f, 17.5f) + close() + moveTo(10.75f, 17.5f) + curveToRelative(-1.5f, 0.0f, -2.9f, -0.5f, -4.01f, -1.32f) + lineToRelative(9.44f, -9.44f) + arcToRelative(6.75f, 6.75f, 0.0f, false, true, -5.43f, 10.76f) + close() + moveTo(14.76f, 5.32f) + lineTo(5.32f, 14.76f) + arcToRelative(6.75f, 6.75f, 0.0f, false, true, 9.44f, -9.44f) + close() + moveTo(20.5f, 10.75f) + arcToRelative(9.75f, 9.75f, 0.0f, false, true, -12.8f, 9.26f) + arcTo(8.75f, 8.75f, 0.0f, false, false, 20.02f, 7.7f) + curveToRelative(0.3f, 0.97f, 0.48f, 2.0f, 0.48f, 3.06f) + close() + } + } + return _prohibitedMultiple!! + } + +private var _prohibitedMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ProjectionScreen.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ProjectionScreen.kt new file mode 100644 index 00000000..48437027 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ProjectionScreen.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ProjectionScreen: ImageVector + get() { + if (_projectionScreen != null) { + return _projectionScreen!! + } + _projectionScreen = fluentIcon(name = "Filled.ProjectionScreen") { + fluentPath { + moveTo(3.5f, 3.0f) + arcTo(1.5f, 1.5f, 0.0f, false, false, 3.0f, 5.91f) + verticalLineToRelative(7.34f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 6.75f, 17.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + verticalLineTo(17.0f) + horizontalLineToRelative(4.5f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 21.0f, 13.25f) + verticalLineTo(5.91f) + arcTo(1.5f, 1.5f, 0.0f, false, false, 20.5f, 3.0f) + horizontalLineToRelative(-17.0f) + close() + } + } + return _projectionScreen!! + } + +private var _projectionScreen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ProjectionScreenDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ProjectionScreenDismiss.kt new file mode 100644 index 00000000..7cc54b9b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ProjectionScreenDismiss.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ProjectionScreenDismiss: ImageVector + get() { + if (_projectionScreenDismiss != null) { + return _projectionScreenDismiss!! + } + _projectionScreenDismiss = fluentIcon(name = "Filled.ProjectionScreenDismiss") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 4.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineTo(18.21f, 6.5f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineTo(17.5f, 5.79f) + lineToRelative(-1.65f, -1.64f) + close() + moveTo(17.5f, 13.0f) + curveToRelative(1.29f, 0.0f, 2.49f, -0.38f, 3.5f, -1.02f) + verticalLineToRelative(1.27f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 17.25f, 17.0f) + horizontalLineToRelative(-4.5f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.5f) + lineTo(11.25f, 17.0f) + horizontalLineToRelative(-4.5f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 3.0f, 13.25f) + lineTo(3.0f, 5.91f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 3.5f, 3.0f) + horizontalLineToRelative(8.52f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, 5.48f, 10.0f) + close() + } + } + return _projectionScreenDismiss!! + } + +private var _projectionScreenDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ProjectionScreenText.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ProjectionScreenText.kt new file mode 100644 index 00000000..c2fa4232 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ProjectionScreenText.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ProjectionScreenText: ImageVector + get() { + if (_projectionScreenText != null) { + return _projectionScreenText!! + } + _projectionScreenText = fluentIcon(name = "Filled.ProjectionScreenText") { + fluentPath { + moveTo(2.0f, 4.5f) + curveTo(2.0f, 3.67f, 2.67f, 3.0f, 3.5f, 3.0f) + horizontalLineToRelative(17.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.5f, 2.91f) + verticalLineToRelative(7.34f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 17.25f, 17.0f) + horizontalLineToRelative(-4.5f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.5f) + lineTo(11.25f, 17.0f) + horizontalLineToRelative(-4.5f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 3.0f, 13.25f) + lineTo(3.0f, 5.91f) + curveToRelative(-0.58f, -0.2f, -1.0f, -0.76f, -1.0f, -1.41f) + close() + moveTo(9.0f, 7.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(9.75f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.0f) + close() + moveTo(8.75f, 10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.5f) + close() + } + } + return _projectionScreenText!! + } + +private var _projectionScreenText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ProtocolHandler.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ProtocolHandler.kt new file mode 100644 index 00000000..67962c4a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ProtocolHandler.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ProtocolHandler: ImageVector + get() { + if (_protocolHandler != null) { + return _protocolHandler!! + } + _protocolHandler = fluentIcon(name = "Filled.ProtocolHandler") { + fluentPath { + moveToRelative(13.48f, 17.73f) + lineToRelative(-0.77f, -0.77f) + lineToRelative(2.48f, -2.49f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -4.95f) + lineTo(12.7f, 7.04f) + lineToRelative(0.77f, -0.77f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 3.54f, 0.0f) + lineToRelative(3.96f, 3.96f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, 3.54f) + lineToRelative(-3.96f, 3.96f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -3.54f, 0.0f) + close() + moveTo(14.48f, 13.77f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, -3.54f) + lineToRelative(-3.96f, -3.96f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -3.54f, 0.0f) + lineToRelative(-3.96f, 3.96f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 3.54f) + lineToRelative(3.96f, 3.96f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.54f, 0.0f) + lineToRelative(3.96f, -3.96f) + close() + } + } + return _protocolHandler!! + } + +private var _protocolHandler: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Pulse.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Pulse.kt new file mode 100644 index 00000000..86984116 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Pulse.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Pulse: ImageVector + get() { + if (_pulse != null) { + return _pulse!! + } + _pulse = fluentIcon(name = "Filled.Pulse") { + fluentPath { + moveToRelative(8.47f, 7.24f) + lineToRelative(3.06f, 12.99f) + curveToRelative(0.23f, 1.0f, 1.63f, 1.04f, 1.93f, 0.06f) + lineToRelative(2.94f, -9.58f) + lineToRelative(0.39f, 1.53f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.97f, 0.76f) + horizontalLineTo(21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-2.47f) + lineToRelative(-1.06f, -4.24f) + curveToRelative(-0.25f, -0.99f, -1.63f, -1.02f, -1.93f, -0.05f) + lineToRelative(-2.91f, 9.47f) + lineToRelative(-3.15f, -13.4f) + curveToRelative(-0.24f, -1.03f, -1.7f, -1.04f, -1.95f, -0.02f) + lineTo(5.47f, 11.0f) + horizontalLineTo(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(3.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.97f, -0.76f) + lineToRelative(1.25f, -5.0f) + close() + } + } + return _pulse!! + } + +private var _pulse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PulseSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PulseSquare.kt new file mode 100644 index 00000000..d04e4fbd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PulseSquare.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PulseSquare: ImageVector + get() { + if (_pulseSquare != null) { + return _pulseSquare!! + } + _pulseSquare = fluentIcon(name = "Filled.PulseSquare") { + fluentPath { + moveTo(18.75f, 3.0f) + curveTo(19.99f, 3.0f, 21.0f, 4.0f, 21.0f, 5.25f) + verticalLineToRelative(13.5f) + curveTo(21.0f, 20.0f, 20.0f, 21.0f, 18.75f, 21.0f) + horizontalLineTo(5.25f) + curveTo(4.01f, 21.0f, 3.0f, 20.0f, 3.0f, 18.75f) + verticalLineTo(5.25f) + curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(13.5f) + close() + moveTo(9.8f, 7.95f) + lineTo(8.26f, 11.5f) + horizontalLineTo(6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.0f) + curveToRelative(0.3f, 0.0f, 0.56f, -0.18f, 0.68f, -0.45f) + lineToRelative(1.04f, -2.36f) + lineToRelative(2.33f, 5.83f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.37f, 0.06f) + lineTo(15.71f, 13.0f) + horizontalLineToRelative(1.54f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.67f, 0.41f) + lineToRelative(-1.0f, 2.0f) + lineToRelative(-2.39f, -5.94f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.38f, -0.02f) + close() + } + } + return _pulseSquare!! + } + +private var _pulseSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PuzzleCube.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PuzzleCube.kt new file mode 100644 index 00000000..33c69259 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PuzzleCube.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PuzzleCube: ImageVector + get() { + if (_puzzleCube != null) { + return _puzzleCube!! + } + _puzzleCube = fluentIcon(name = "Filled.PuzzleCube") { + fluentPath { + moveTo(9.5f, 21.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + close() + moveTo(16.0f, 21.0f) + horizontalLineToRelative(1.75f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 16.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + close() + moveTo(21.0f, 14.5f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(21.0f, 8.0f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(16.0f, 3.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(14.5f, 3.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + lineTo(14.5f, 3.0f) + close() + moveTo(3.0f, 9.5f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-5.0f) + lineTo(3.0f, 9.5f) + close() + moveTo(3.0f, 16.0f) + verticalLineToRelative(1.75f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + lineTo(8.0f, 21.0f) + verticalLineToRelative(-5.0f) + lineTo(3.0f, 16.0f) + close() + moveTo(14.5f, 9.5f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(5.0f) + close() + } + } + return _puzzleCube!! + } + +private var _puzzleCube: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PuzzlePiece.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PuzzlePiece.kt new file mode 100644 index 00000000..d5e297f0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/PuzzlePiece.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.PuzzlePiece: ImageVector + get() { + if (_puzzlePiece != null) { + return _puzzlePiece!! + } + _puzzlePiece = fluentIcon(name = "Filled.PuzzlePiece") { + fluentPath { + moveTo(13.0f, 2.0f) + curveToRelative(1.36f, 0.0f, 2.47f, 1.1f, 2.47f, 2.47f) + verticalLineTo(5.0f) + horizontalLineTo(19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(3.5f) + horizontalLineToRelative(-1.53f) + arcToRelative(2.47f, 2.47f, 0.0f, false, false, -2.46f, 2.3f) + lineToRelative(-0.01f, 0.17f) + verticalLineToRelative(0.06f) + curveToRelative(0.0f, 1.31f, 1.02f, 2.38f, 2.3f, 2.46f) + lineToRelative(0.17f, 0.01f) + horizontalLineTo(20.0f) + verticalLineTo(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-3.53f) + verticalLineToRelative(0.53f) + arcToRelative(2.47f, 2.47f, 0.0f, true, true, -4.94f, 0.0f) + verticalLineTo(19.0f) + horizontalLineTo(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineToRelative(-3.53f) + horizontalLineToRelative(-0.53f) + arcToRelative(2.47f, 2.47f, 0.0f, false, true, 0.0f, -4.94f) + horizontalLineTo(6.0f) + verticalLineTo(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(3.53f) + verticalLineToRelative(-0.53f) + curveTo(10.53f, 3.11f, 11.63f, 2.0f, 13.0f, 2.0f) + close() + } + } + return _puzzlePiece!! + } + +private var _puzzlePiece: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/QrCode.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/QrCode.kt new file mode 100644 index 00000000..2e332b0a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/QrCode.kt @@ -0,0 +1,126 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.QrCode: ImageVector + get() { + if (_qrCode != null) { + return _qrCode!! + } + _qrCode = fluentIcon(name = "Filled.QrCode") { + fluentPath { + moveTo(8.0f, 6.0f) + lineTo(6.0f, 6.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(2.0f) + lineTo(8.0f, 6.0f) + close() + moveTo(3.0f, 5.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 5.5f, 3.0f) + horizontalLineToRelative(3.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 11.0f, 5.5f) + verticalLineToRelative(3.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 8.5f, 11.0f) + horizontalLineToRelative(-3.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 3.0f, 8.5f) + verticalLineToRelative(-3.0f) + close() + moveTo(5.5f, 5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + horizontalLineToRelative(-3.0f) + close() + moveTo(6.0f, 16.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(2.0f) + lineTo(6.0f, 18.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(3.0f, 15.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 5.5f, 13.0f) + horizontalLineToRelative(3.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) + verticalLineToRelative(3.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 8.5f, 21.0f) + horizontalLineToRelative(-3.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 3.0f, 18.5f) + verticalLineToRelative(-3.0f) + close() + moveTo(5.5f, 15.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + horizontalLineToRelative(-3.0f) + close() + moveTo(18.0f, 6.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(2.0f) + lineTo(18.0f, 6.0f) + close() + moveTo(15.5f, 3.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 13.0f, 5.5f) + verticalLineToRelative(3.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, 2.5f) + horizontalLineToRelative(3.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 21.0f, 8.5f) + verticalLineToRelative(-3.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 18.5f, 3.0f) + horizontalLineToRelative(-3.0f) + close() + moveTo(15.0f, 5.5f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(3.0f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + verticalLineToRelative(3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + verticalLineToRelative(-3.0f) + close() + moveTo(13.0f, 13.0f) + horizontalLineToRelative(2.75f) + verticalLineToRelative(2.75f) + lineTo(13.0f, 15.75f) + lineTo(13.0f, 13.0f) + close() + moveTo(18.25f, 15.75f) + horizontalLineToRelative(-2.5f) + verticalLineToRelative(2.5f) + lineTo(13.0f, 18.25f) + lineTo(13.0f, 21.0f) + horizontalLineToRelative(2.75f) + verticalLineToRelative(-2.75f) + horizontalLineToRelative(2.5f) + lineTo(18.25f, 21.0f) + lineTo(21.0f, 21.0f) + verticalLineToRelative(-2.75f) + horizontalLineToRelative(-2.75f) + verticalLineToRelative(-2.5f) + close() + moveTo(18.25f, 15.75f) + lineTo(18.25f, 13.0f) + lineTo(21.0f, 13.0f) + verticalLineToRelative(2.75f) + horizontalLineToRelative(-2.75f) + close() + } + } + return _qrCode!! + } + +private var _qrCode: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Question.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Question.kt new file mode 100644 index 00000000..4cab0369 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Question.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Question: ImageVector + get() { + if (_question != null) { + return _question!! + } + _question = fluentIcon(name = "Filled.Question") { + fluentPath { + moveTo(12.0f, 4.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, -5.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 6.0f, 0.0f) + curveToRelative(0.0f, 0.82f, -0.2f, 1.3f, -0.44f, 1.63f) + curveToRelative(-0.26f, 0.36f, -0.62f, 0.64f, -1.13f, 0.98f) + lineToRelative(-0.11f, 0.08f) + curveToRelative(-0.45f, 0.3f, -1.02f, 0.7f, -1.47f, 1.25f) + arcTo(3.89f, 3.89f, 0.0f, false, false, 11.0f, 15.5f) + verticalLineToRelative(0.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -0.66f, 0.18f, -1.02f, 0.4f, -1.3f) + curveToRelative(0.26f, -0.31f, 0.6f, -0.55f, 1.11f, -0.9f) + lineToRelative(0.06f, -0.04f) + arcToRelative(6.2f, 6.2f, 0.0f, false, false, 1.62f, -1.47f) + curveToRelative(0.5f, -0.7f, 0.81f, -1.6f, 0.81f, -2.79f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, -5.0f, -5.0f) + close() + moveTo(12.0f, 21.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + } + } + return _question!! + } + +private var _question: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/QuestionCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/QuestionCircle.kt new file mode 100644 index 00000000..01e767f0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/QuestionCircle.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.QuestionCircle: ImageVector + get() { + if (_questionCircle != null) { + return _questionCircle!! + } + _questionCircle = fluentIcon(name = "Filled.QuestionCircle") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(12.0f, 15.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(12.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 9.25f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.1f) + verticalLineToRelative(-0.1f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + curveToRelative(0.0f, 0.54f, -0.13f, 0.8f, -0.64f, 1.33f) + lineToRelative(-0.14f, 0.14f) + curveToRelative(-0.88f, 0.88f, -1.22f, 1.45f, -1.22f, 2.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + curveToRelative(0.0f, -0.54f, 0.13f, -0.8f, 0.64f, -1.33f) + lineToRelative(0.14f, -0.14f) + curveToRelative(0.88f, -0.88f, 1.22f, -1.45f, 1.22f, -2.53f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 12.0f, 6.75f) + close() + } + } + return _questionCircle!! + } + +private var _questionCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/QuizNew.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/QuizNew.kt new file mode 100644 index 00000000..1c7fc5a2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/QuizNew.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.QuizNew: ImageVector + get() { + if (_quizNew != null) { + return _quizNew!! + } + _quizNew = fluentIcon(name = "Filled.QuizNew") { + fluentPath { + moveTo(10.52f, 9.0f) + lineTo(10.0f, 7.73f) + lineTo(9.48f, 9.0f) + horizontalLineToRelative(1.04f) + close() + moveTo(5.75f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) + horizontalLineToRelative(6.27f) + arcToRelative(6.47f, 6.47f, 0.0f, false, true, -0.52f, -6.0f) + lineTo(5.75f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(6.63f) + arcTo(6.49f, 6.49f, 0.0f, false, true, 21.0f, 12.02f) + lineTo(21.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) + lineTo(5.75f, 3.0f) + close() + moveTo(9.25f, 18.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(10.69f, 5.46f) + lineTo(12.94f, 10.96f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.39f, 0.57f) + lineToRelative(-0.42f, -1.03f) + lineTo(8.87f, 10.5f) + lineToRelative(-0.43f, 1.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.38f, -0.56f) + lineToRelative(2.25f, -5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.38f, 0.0f) + close() + moveTo(16.5f, 5.75f) + lineTo(16.5f, 7.0f) + horizontalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(16.5f, 8.5f) + verticalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(15.0f, 8.5f) + horizontalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(15.0f, 7.0f) + lineTo(15.0f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _quizNew!! + } + +private var _quizNew: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RadioButton.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RadioButton.kt new file mode 100644 index 00000000..869df496 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RadioButton.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.RadioButton: ImageVector + get() { + if (_radioButton != null) { + return _radioButton!! + } + _radioButton = fluentIcon(name = "Filled.RadioButton") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) + close() + moveTo(12.0f, 6.0f) + arcToRelative(6.0f, 6.0f, 0.0f, true, true, 0.0f, 12.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 0.0f, -12.0f) + close() + } + } + return _radioButton!! + } + +private var _radioButton: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RatingMature.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RatingMature.kt new file mode 100644 index 00000000..ed83882f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RatingMature.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.RatingMature: ImageVector + get() { + if (_ratingMature != null) { + return _ratingMature!! + } + _ratingMature = fluentIcon(name = "Filled.RatingMature") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(8.83f, 8.27f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.33f, 0.48f) + verticalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) + verticalLineToRelative(-4.43f) + lineToRelative(2.42f, 2.91f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.16f, 0.0f) + lineToRelative(2.42f, -2.9f) + verticalLineToRelative(4.42f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) + verticalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.33f, -0.48f) + lineTo(12.0f, 12.07f) + lineToRelative(-3.17f, -3.8f) + close() + } + } + return _ratingMature!! + } + +private var _ratingMature: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RatioOneToOne.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RatioOneToOne.kt new file mode 100644 index 00000000..f4b054a1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RatioOneToOne.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.RatioOneToOne: ImageVector + get() { + if (_ratioOneToOne != null) { + return _ratioOneToOne!! + } + _ratioOneToOne = fluentIcon(name = "Filled.RatioOneToOne") { + fluentPath { + moveTo(5.25f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) + horizontalLineToRelative(13.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-9.5f) + curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) + lineTo(5.25f, 4.0f) + close() + moveTo(8.5f, 8.75f) + verticalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-5.1f) + lineToRelative(-0.33f, 0.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.84f, -1.24f) + lineToRelative(1.5f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.17f, 0.62f) + close() + moveTo(17.5f, 8.75f) + verticalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + verticalLineToRelative(-5.1f) + lineToRelative(-0.33f, 0.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.84f, -1.24f) + lineToRelative(1.5f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.17f, 0.62f) + close() + moveTo(13.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(12.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + close() + } + } + return _ratioOneToOne!! + } + +private var _ratioOneToOne: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReOrderDotsHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReOrderDotsHorizontal.kt new file mode 100644 index 00000000..2d9977c3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReOrderDotsHorizontal.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ReOrderDotsHorizontal: ImageVector + get() { + if (_reOrderDotsHorizontal != null) { + return _reOrderDotsHorizontal!! + } + _reOrderDotsHorizontal = fluentIcon(name = "Filled.ReOrderDotsHorizontal") { + fluentPath { + moveTo(7.0f, 16.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(7.0f, 8.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(14.0f, 16.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(14.0f, 8.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(21.0f, 16.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(21.0f, 8.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + } + } + return _reOrderDotsHorizontal!! + } + +private var _reOrderDotsHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReOrderDotsVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReOrderDotsVertical.kt new file mode 100644 index 00000000..8ea98c18 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReOrderDotsVertical.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ReOrderDotsVertical: ImageVector + get() { + if (_reOrderDotsVertical != null) { + return _reOrderDotsVertical!! + } + _reOrderDotsVertical = fluentIcon(name = "Filled.ReOrderDotsVertical") { + fluentPath { + moveTo(16.0f, 17.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) + close() + moveTo(8.0f, 17.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) + close() + moveTo(16.0f, 10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) + close() + moveTo(8.0f, 10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) + close() + moveTo(16.0f, 3.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) + close() + moveTo(8.0f, 3.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) + close() + } + } + return _reOrderDotsVertical!! + } + +private var _reOrderDotsVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReadAloud.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReadAloud.kt new file mode 100644 index 00000000..62fafb21 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReadAloud.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ReadAloud: ImageVector + get() { + if (_readAloud != null) { + return _readAloud!! + } + _readAloud = fluentIcon(name = "Filled.ReadAloud") { + fluentPath { + moveTo(14.6f, 2.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.49f) + curveToRelative(0.26f, 0.14f, 0.0f, 0.0f, 0.0f, 0.0f) + horizontalLineToRelative(0.01f) + lineToRelative(0.02f, 0.02f) + arcToRelative(4.9f, 4.9f, 0.0f, false, true, 0.3f, 0.16f) + arcToRelative(12.27f, 12.27f, 0.0f, false, true, 3.11f, 2.5f) + arcTo(10.75f, 10.75f, 0.0f, false, true, 22.0f, 13.13f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.98f, -0.26f) + arcToRelative(8.75f, 8.75f, 0.0f, false, false, -2.13f, -7.27f) + arcToRelative(10.27f, 10.27f, 0.0f, false, false, -2.8f, -2.19f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.49f, -1.33f) + close() + moveTo(9.92f, 4.63f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.86f, 0.0f) + lineToRelative(-5.5f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.86f, 0.74f) + lineTo(6.15f, 15.0f) + horizontalLineToRelative(5.7f) + lineToRelative(1.72f, 4.37f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.86f, -0.74f) + lineToRelative(-5.5f, -14.0f) + close() + moveTo(11.07f, 13.0f) + lineTo(6.93f, 13.0f) + lineTo(9.0f, 7.73f) + lineTo(11.07f, 13.0f) + close() + moveTo(15.45f, 5.6f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.9f, 1.8f) + curveToRelative(0.3f, 0.14f, 0.8f, 0.57f, 1.23f, 1.26f) + curveToRelative(0.42f, 0.67f, 0.72f, 1.48f, 0.72f, 2.34f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + curveToRelative(0.0f, -1.31f, -0.45f, -2.5f, -1.03f, -3.41f) + arcToRelative(5.57f, 5.57f, 0.0f, false, false, -2.02f, -1.98f) + close() + } + } + return _readAloud!! + } + +private var _readAloud: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReadingList.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReadingList.kt new file mode 100644 index 00000000..e36a39ae --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReadingList.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ReadingList: ImageVector + get() { + if (_readingList != null) { + return _readingList!! + } + _readingList = fluentIcon(name = "Filled.ReadingList") { + fluentPath { + moveTo(20.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(7.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(20.0f, 18.0f) + close() + moveTo(17.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(4.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(17.0f, 15.0f) + close() + moveTo(20.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(7.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(20.0f, 12.0f) + close() + moveTo(6.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.78f, 1.87f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.8f, 0.86f) + lineToRelative(-0.05f, -0.1f) + arcTo(1.0f, 1.0f, 0.0f, true, false, 6.0f, 9.0f) + horizontalLineToRelative(11.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(6.0f, 11.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) + close() + moveTo(20.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(11.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(20.0f, 6.0f) + close() + } + } + return _readingList!! + } + +private var _readingList: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReadingListAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReadingListAdd.kt new file mode 100644 index 00000000..46967a0d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReadingListAdd.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ReadingListAdd: ImageVector + get() { + if (_readingListAdd != null) { + return _readingListAdd!! + } + _readingListAdd = fluentIcon(name = "Filled.ReadingListAdd") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(17.5f, 14.0f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) + lineToRelative(-0.01f, 0.1f) + lineTo(17.0f, 17.0f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(0.18f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) + lineToRelative(0.1f, 0.01f) + lineTo(17.0f, 18.0f) + verticalLineToRelative(2.6f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + horizontalLineToRelative(0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) + lineToRelative(0.01f, -0.1f) + lineTo(18.0f, 18.0f) + horizontalLineToRelative(2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + verticalLineToRelative(-0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) + lineToRelative(-0.1f, -0.01f) + lineTo(18.0f, 17.0f) + verticalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) + horizontalLineToRelative(-0.09f) + close() + moveTo(11.02f, 18.0f) + curveToRelative(0.05f, 0.7f, 0.22f, 1.38f, 0.48f, 2.0f) + lineTo(7.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + horizontalLineToRelative(4.14f) + close() + moveTo(11.5f, 15.0f) + curveToRelative(-0.26f, 0.62f, -0.43f, 1.3f, -0.48f, 2.0f) + lineTo(4.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + horizontalLineToRelative(7.62f) + close() + moveTo(14.04f, 12.0f) + curveToRelative(-0.81f, 0.51f, -1.5f, 1.2f, -2.02f, 2.0f) + lineTo(7.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + horizontalLineToRelative(7.16f) + close() + moveTo(6.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.78f, 1.87f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.8f, 0.86f) + lineToRelative(-0.05f, -0.1f) + arcTo(1.0f, 1.0f, 0.0f, true, false, 6.0f, 9.0f) + horizontalLineToRelative(11.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(6.0f, 11.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) + close() + moveTo(20.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(11.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(20.0f, 6.0f) + close() + } + } + return _readingListAdd!! + } + +private var _readingListAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReadingModeMobile.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReadingModeMobile.kt new file mode 100644 index 00000000..114c3357 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReadingModeMobile.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ReadingModeMobile: ImageVector + get() { + if (_readingModeMobile != null) { + return _readingModeMobile!! + } + _readingModeMobile = fluentIcon(name = "Filled.ReadingModeMobile") { + fluentPath { + moveTo(17.75f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.19f, -0.93f, 2.16f, -2.1f, 2.24f) + lineTo(6.25f, 21.99f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.09f) + lineTo(4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveToRelative(0.0f, -1.19f, 0.93f, -2.16f, 2.1f, -2.24f) + horizontalLineToRelative(11.65f) + close() + moveTo(12.25f, 13.0f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(12.35f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(16.25f, 10.0f) + horizontalLineToRelative(-8.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(16.25f, 7.0f) + horizontalLineToRelative(-8.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + } + } + return _readingModeMobile!! + } + +private var _readingModeMobile: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RealEstate.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RealEstate.kt new file mode 100644 index 00000000..9fce0335 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RealEstate.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.RealEstate: ImageVector + get() { + if (_realEstate != null) { + return _realEstate!! + } + _realEstate = fluentIcon(name = "Filled.RealEstate") { + fluentPath { + moveTo(3.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + horizontalLineToRelative(16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(5.0f, 6.0f) + verticalLineToRelative(15.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(3.0f, 4.0f) + close() + moveTo(6.0f, 7.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(8.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 19.0f) + horizontalLineToRelative(-9.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 6.0f, 16.25f) + verticalLineToRelative(-8.5f) + close() + moveTo(10.0f, 12.46f) + verticalLineToRelative(3.04f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(1.75f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + lineTo(12.5f, 14.5f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(1.0f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(1.75f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-3.04f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.35f, -0.76f) + lineToRelative(-2.82f, -2.42f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.66f, 0.0f) + lineToRelative(-2.82f, 2.42f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.35f, 0.76f) + close() + } + } + return _realEstate!! + } + +private var _realEstate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Receipt.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Receipt.kt new file mode 100644 index 00000000..6e0f6f33 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Receipt.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Receipt: ImageVector + get() { + if (_receipt != null) { + return _receipt!! + } + _receipt = fluentIcon(name = "Filled.Receipt") { + fluentPath { + moveTo(4.0f, 6.25f) + curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(8.5f) + curveTo(15.99f, 4.0f, 17.0f, 5.0f, 17.0f, 6.25f) + lineTo(17.0f, 14.0f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-11.0f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-12.0f) + close() + moveTo(17.0f, 19.0f) + horizontalLineToRelative(0.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.0f, 15.5f) + horizontalLineToRelative(-2.0f) + lineTo(17.0f, 19.0f) + close() + moveTo(7.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.5f) + close() + moveTo(7.75f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.5f) + close() + moveTo(7.75f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.5f) + close() + } + } + return _receipt!! + } + +private var _receipt: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReceiptAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReceiptAdd.kt new file mode 100644 index 00000000..d82a51b5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReceiptAdd.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ReceiptAdd: ImageVector + get() { + if (_receiptAdd != null) { + return _receiptAdd!! + } + _receiptAdd = fluentIcon(name = "Filled.ReceiptAdd") { + fluentPath { + moveTo(5.0f, 6.25f) + curveTo(5.0f, 5.01f, 6.0f, 4.0f, 7.25f, 4.0f) + horizontalLineToRelative(8.5f) + curveTo(16.99f, 4.0f, 18.0f, 5.0f, 18.0f, 6.25f) + verticalLineTo(14.0f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-5.98f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, -1.08f, -7.5f) + horizontalLineToRelative(3.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(9.0f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, -4.0f, -0.33f) + verticalLineTo(6.25f) + close() + moveTo(18.0f, 19.0f) + horizontalLineToRelative(0.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineTo(15.5f) + horizontalLineToRelative(-2.0f) + verticalLineTo(19.0f) + close() + moveTo(8.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.5f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(7.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + verticalLineTo(18.0f) + horizontalLineTo(3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineTo(6.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + verticalLineTo(17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineTo(7.0f) + close() + } + } + return _receiptAdd!! + } + +private var _receiptAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReceiptBag.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReceiptBag.kt new file mode 100644 index 00000000..0496baad --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReceiptBag.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ReceiptBag: ImageVector + get() { + if (_receiptBag != null) { + return _receiptBag!! + } + _receiptBag = fluentIcon(name = "Filled.ReceiptBag") { + fluentPath { + moveTo(5.0f, 6.25f) + curveTo(5.0f, 5.01f, 6.0f, 4.0f, 7.25f, 4.0f) + horizontalLineToRelative(8.5f) + curveTo(16.99f, 4.0f, 18.0f, 5.0f, 18.0f, 6.25f) + lineTo(18.0f, 14.0f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(11.5f, 20.5f) + verticalLineToRelative(-5.75f) + curveToRelative(0.0f, -0.7f, -0.4f, -1.3f, -1.0f, -1.58f) + lineTo(10.5f, 13.0f) + horizontalLineToRelative(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.09f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -4.41f, -1.77f) + curveToRelative(-0.24f, -0.1f, -0.49f, -0.16f, -0.75f, -0.2f) + lineTo(5.0f, 6.26f) + close() + moveTo(18.0f, 19.0f) + horizontalLineToRelative(0.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(20.0f, 15.5f) + horizontalLineToRelative(-2.0f) + lineTo(18.0f, 19.0f) + close() + moveTo(8.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.5f) + close() + moveTo(1.75f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.0f) + curveTo(1.0f, 21.99f, 2.0f, 23.0f, 3.25f, 23.0f) + horizontalLineToRelative(5.0f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(9.5f, 14.0f) + verticalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -3.75f, -2.17f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 2.0f, 13.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-0.25f) + close() + moveTo(7.0f, 14.0f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.35f, -0.07f, -0.68f, -0.2f, -0.98f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 8.0f, 13.0f) + verticalLineToRelative(1.0f) + lineTo(7.0f, 14.0f) + close() + moveTo(5.5f, 13.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + } + } + return _receiptBag!! + } + +private var _receiptBag: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReceiptCube.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReceiptCube.kt new file mode 100644 index 00000000..e83495fe --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReceiptCube.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ReceiptCube: ImageVector + get() { + if (_receiptCube != null) { + return _receiptCube!! + } + _receiptCube = fluentIcon(name = "Filled.ReceiptCube") { + fluentPath { + moveTo(5.0f, 6.25f) + curveTo(5.0f, 5.01f, 6.0f, 4.0f, 7.25f, 4.0f) + horizontalLineToRelative(8.5f) + curveTo(16.99f, 4.0f, 18.0f, 5.0f, 18.0f, 6.25f) + lineTo(18.0f, 14.0f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-6.36f) + curveToRelative(0.07f, -0.24f, 0.11f, -0.49f, 0.11f, -0.75f) + verticalLineToRelative(-4.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -1.38f, -2.24f) + lineToRelative(-0.03f, -0.01f) + horizontalLineToRelative(3.66f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.59f, 0.29f) + lineToRelative(-1.04f, -0.53f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 5.0f, 11.21f) + lineTo(5.0f, 6.25f) + close() + moveTo(18.0f, 19.0f) + horizontalLineToRelative(0.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(20.0f, 15.5f) + horizontalLineToRelative(-2.0f) + lineTo(18.0f, 19.0f) + close() + moveTo(8.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.5f) + close() + moveTo(10.17f, 13.9f) + lineTo(6.67f, 12.16f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -1.34f, 0.0f) + lineToRelative(-3.5f, 1.75f) + curveToRelative(-0.5f, 0.25f, -0.83f, 0.77f, -0.83f, 1.34f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.57f, 0.32f, 1.09f, 0.83f, 1.34f) + lineToRelative(3.5f, 1.75f) + curveToRelative(0.42f, 0.22f, 0.92f, 0.22f, 1.34f, 0.0f) + lineToRelative(3.5f, -1.75f) + curveToRelative(0.5f, -0.25f, 0.83f, -0.77f, 0.83f, -1.34f) + verticalLineToRelative(-4.5f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -0.83f, -1.34f) + close() + moveTo(2.55f, 15.28f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.67f, -0.23f) + lineTo(6.0f, 16.45f) + lineToRelative(2.78f, -1.4f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.44f, 0.9f) + lineTo(6.5f, 17.3f) + verticalLineToRelative(3.19f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + verticalLineToRelative(-3.2f) + lineToRelative(-2.72f, -1.35f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.23f, -0.67f) + close() + } + } + return _receiptCube!! + } + +private var _receiptCube: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReceiptMoney.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReceiptMoney.kt new file mode 100644 index 00000000..86f39528 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReceiptMoney.kt @@ -0,0 +1,93 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ReceiptMoney: ImageVector + get() { + if (_receiptMoney != null) { + return _receiptMoney!! + } + _receiptMoney = fluentIcon(name = "Filled.ReceiptMoney") { + fluentPath { + moveTo(5.0f, 6.25f) + curveTo(5.0f, 5.01f, 6.0f, 4.0f, 7.25f, 4.0f) + horizontalLineToRelative(8.5f) + curveTo(16.99f, 4.0f, 18.0f, 5.0f, 18.0f, 6.25f) + lineTo(18.0f, 14.0f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(13.0f, 20.5f) + verticalLineToRelative(-4.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.5f, -2.5f) + lineTo(5.0f, 14.0f) + lineTo(5.0f, 6.25f) + close() + moveTo(18.0f, 19.0f) + horizontalLineToRelative(0.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(20.0f, 15.5f) + horizontalLineToRelative(-2.0f) + lineTo(18.0f, 19.0f) + close() + moveTo(8.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.5f) + close() + moveTo(8.75f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.5f) + close() + moveTo(2.5f, 15.0f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(8.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + horizontalLineToRelative(-8.0f) + close() + moveTo(10.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + verticalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + horizontalLineToRelative(1.0f) + close() + moveTo(9.0f, 21.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + verticalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + lineTo(9.0f, 21.0f) + close() + moveTo(2.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(2.0f, 19.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + lineTo(3.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(6.5f, 16.75f) + arcToRelative(1.75f, 1.75f, 0.0f, true, true, 0.0f, 3.5f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.0f, -3.5f) + close() + } + } + return _receiptMoney!! + } + +private var _receiptMoney: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReceiptPlay.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReceiptPlay.kt new file mode 100644 index 00000000..6f375fc8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReceiptPlay.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ReceiptPlay: ImageVector + get() { + if (_receiptPlay != null) { + return _receiptPlay!! + } + _receiptPlay = fluentIcon(name = "Filled.ReceiptPlay") { + fluentPath { + moveTo(5.0f, 6.25f) + curveTo(5.0f, 5.01f, 6.0f, 4.0f, 7.25f, 4.0f) + horizontalLineToRelative(8.5f) + curveTo(16.99f, 4.0f, 18.0f, 5.0f, 18.0f, 6.25f) + lineTo(18.0f, 14.0f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-5.98f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, -1.08f, -7.5f) + horizontalLineToRelative(3.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(9.0f, 11.5f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, -4.0f, -0.33f) + lineTo(5.0f, 6.25f) + close() + moveTo(18.0f, 19.0f) + horizontalLineToRelative(0.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(20.0f, 15.5f) + horizontalLineToRelative(-2.0f) + lineTo(18.0f, 19.0f) + close() + moveTo(8.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.5f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(5.0f, 19.5f) + curveToRelative(0.0f, 0.4f, 0.44f, 0.64f, 0.78f, 0.42f) + lineToRelative(3.0f, -2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.84f) + lineToRelative(-3.0f, -2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.78f, 0.42f) + verticalLineToRelative(4.0f) + close() + } + } + return _receiptPlay!! + } + +private var _receiptPlay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReceiptSparkles.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReceiptSparkles.kt new file mode 100644 index 00000000..7796a437 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ReceiptSparkles.kt @@ -0,0 +1,115 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ReceiptSparkles: ImageVector + get() { + if (_receiptSparkles != null) { + return _receiptSparkles!! + } + _receiptSparkles = fluentIcon(name = "Filled.ReceiptSparkles") { + fluentPath { + moveTo(15.85f, 6.15f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, 0.69f, 1.11f) + lineToRelative(0.45f, 1.38f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 1.02f, 0.0f) + lineToRelative(0.45f, -1.38f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, 1.8f, -1.8f) + lineToRelative(1.38f, -0.44f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, -1.03f) + horizontalLineToRelative(-0.03f) + lineToRelative(-1.38f, -0.45f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.8f, -1.8f) + lineTo(18.0f, 0.36f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, -1.03f, 0.0f) + lineToRelative(-0.45f, 1.38f) + lineToRelative(-0.01f, 0.03f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.76f, 1.77f) + lineToRelative(-1.38f, 0.44f) + arcToRelative(0.57f, 0.57f, 0.0f, false, false, -0.26f, 0.2f) + arcToRelative(0.51f, 0.51f, 0.0f, false, false, -0.1f, 0.34f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.1f, 0.3f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.26f, 0.19f) + lineToRelative(1.38f, 0.45f) + arcToRelative(2.83f, 2.83f, 0.0f, false, true, 1.11f, 0.69f) + close() + moveTo(23.02f, 9.96f) + lineTo(23.78f, 10.21f) + horizontalLineToRelative(0.02f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, 0.47f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, 0.1f) + lineToRelative(-0.77f, 0.26f) + arcToRelative(1.58f, 1.58f, 0.0f, false, false, -1.0f, 1.0f) + lineToRelative(-0.24f, 0.76f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.58f, 0.0f) + lineToRelative(-0.24f, -0.77f) + arcToRelative(1.57f, 1.57f, 0.0f, false, false, -1.0f, -1.0f) + lineToRelative(-0.77f, -0.25f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, -0.46f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, -0.1f) + lineToRelative(0.77f, -0.26f) + arcToRelative(1.58f, 1.58f, 0.0f, false, false, 0.98f, -1.0f) + lineToRelative(0.25f, -0.76f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.57f, 0.0f) + lineToRelative(0.25f, 0.77f) + arcToRelative(1.57f, 1.57f, 0.0f, false, false, 1.0f, 1.0f) + close() + moveTo(17.0f, 14.0f) + lineTo(17.0f, 9.94f) + curveToRelative(-0.15f, -0.05f, -0.3f, -0.12f, -0.43f, -0.21f) + curveToRelative(-0.26f, -0.2f, -0.46f, -0.46f, -0.57f, -0.77f) + lineToRelative(-0.44f, -1.38f) + curveToRelative(-0.07f, -0.2f, -0.16f, -0.38f, -0.29f, -0.55f) + lineToRelative(-0.15f, -0.17f) + arcToRelative(1.8f, 1.8f, 0.0f, false, false, -0.72f, -0.44f) + lineTo(13.0f, 5.96f) + arcTo(1.57f, 1.57f, 0.0f, false, true, 12.06f, 4.0f) + lineTo(6.25f, 4.0f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) + verticalLineToRelative(12.0f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(11.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(20.5f, 14.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + horizontalLineToRelative(-3.0f) + close() + moveTo(17.25f, 19.0f) + lineTo(17.0f, 19.0f) + verticalLineToRelative(-3.5f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(1.75f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + close() + moveTo(7.0f, 8.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 8.75f) + close() + moveTo(7.0f, 12.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(7.0f, 15.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _receiptSparkles!! + } + +private var _receiptSparkles: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Record.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Record.kt new file mode 100644 index 00000000..8e9f76ee --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Record.kt @@ -0,0 +1,30 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Record: ImageVector + get() { + if (_record != null) { + return _record!! + } + _record = fluentIcon(name = "Filled.Record") { + fluentPath { + moveTo(2.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) + close() + moveTo(12.0f, 18.0f) + arcToRelative(6.0f, 6.0f, 0.0f, true, false, 0.0f, -12.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, 0.0f, 12.0f) + close() + } + } + return _record!! + } + +private var _record: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RecordStop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RecordStop.kt new file mode 100644 index 00000000..7cf78c76 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RecordStop.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.RecordStop: ImageVector + get() { + if (_recordStop != null) { + return _recordStop!! + } + _recordStop = fluentIcon(name = "Filled.RecordStop") { + fluentPath { + moveTo(12.0f, 22.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) + close() + moveTo(9.5f, 8.0f) + horizontalLineToRelative(5.0f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-5.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 8.0f, 14.5f) + verticalLineToRelative(-5.0f) + curveTo(8.0f, 8.67f, 8.67f, 8.0f, 9.5f, 8.0f) + close() + } + } + return _recordStop!! + } + +private var _recordStop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RectangleLandscape.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RectangleLandscape.kt new file mode 100644 index 00000000..223a534c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RectangleLandscape.kt @@ -0,0 +1,32 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.RectangleLandscape: ImageVector + get() { + if (_rectangleLandscape != null) { + return _rectangleLandscape!! + } + _rectangleLandscape = fluentIcon(name = "Filled.RectangleLandscape") { + fluentPath { + moveTo(5.25f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) + horizontalLineToRelative(13.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-9.5f) + curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) + horizontalLineTo(5.25f) + close() + } + } + return _rectangleLandscape!! + } + +private var _rectangleLandscape: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Resize.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Resize.kt new file mode 100644 index 00000000..0b0f9d1d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Resize.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Resize: ImageVector + get() { + if (_resize != null) { + return _resize!! + } + _resize = fluentIcon(name = "Filled.Resize") { + fluentPath { + moveTo(11.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(5.25f, 2.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) + lineTo(2.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(4.0f, 5.25f) + curveTo(4.0f, 4.56f, 4.56f, 4.0f, 5.25f, 4.0f) + lineTo(10.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + close() + moveTo(14.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(4.75f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + lineTo(20.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(22.0f, 5.25f) + curveTo(22.0f, 3.45f, 20.54f, 2.0f, 18.75f, 2.0f) + lineTo(14.0f, 2.0f) + close() + moveTo(14.0f, 22.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(4.75f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + lineTo(20.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(4.75f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(14.0f, 22.0f) + close() + moveTo(10.0f, 22.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(5.25f, 20.0f) + curveTo(4.56f, 20.0f, 4.0f, 19.44f, 4.0f, 18.75f) + lineTo(4.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(4.75f) + curveTo(2.0f, 20.55f, 3.46f, 22.0f, 5.25f, 22.0f) + lineTo(10.0f, 22.0f) + close() + } + } + return _resize!! + } + +private var _resize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ResizeImage.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ResizeImage.kt new file mode 100644 index 00000000..8c24debe --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ResizeImage.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ResizeImage: ImageVector + get() { + if (_resizeImage != null) { + return _resizeImage!! + } + _resizeImage = fluentIcon(name = "Filled.ResizeImage") { + fluentPath { + moveTo(11.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(5.25f, 2.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) + lineTo(2.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(4.0f, 5.25f) + curveTo(4.0f, 4.56f, 4.56f, 4.0f, 5.25f, 4.0f) + lineTo(10.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + close() + moveTo(14.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(4.75f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + lineTo(20.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(22.0f, 5.25f) + curveTo(22.0f, 3.45f, 20.54f, 2.0f, 18.75f, 2.0f) + lineTo(14.0f, 2.0f) + close() + moveTo(14.0f, 22.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(4.75f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + lineTo(20.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(4.75f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(14.0f, 22.0f) + close() + moveTo(4.0f, 12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.56f, 0.15f, 1.08f, 0.42f, 1.52f) + lineToRelative(3.49f, -3.49f) + curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.0f) + lineToRelative(3.5f, 3.5f) + curveToRelative(0.26f, -0.45f, 0.41f, -0.97f, 0.41f, -1.53f) + verticalLineToRelative(-5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + lineTo(4.0f, 12.0f) + close() + moveTo(4.0f, 23.0f) + curveToRelative(-0.56f, 0.0f, -1.08f, -0.15f, -1.52f, -0.42f) + lineToRelative(3.49f, -3.49f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(3.5f, 3.5f) + curveToRelative(-0.45f, 0.26f, -0.97f, 0.41f, -1.53f, 0.41f) + lineTo(4.0f, 23.0f) + close() + moveTo(9.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + close() + } + } + return _resizeImage!! + } + +private var _resizeImage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ResizeLarge.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ResizeLarge.kt new file mode 100644 index 00000000..4f0a4423 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ResizeLarge.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ResizeLarge: ImageVector + get() { + if (_resizeLarge != null) { + return _resizeLarge!! + } + _resizeLarge = fluentIcon(name = "Filled.ResizeLarge") { + fluentPath { + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.5f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.5f) + close() + moveTo(17.75f, 4.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.5f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.5f) + close() + moveTo(17.75f, 19.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.5f) + close() + moveTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.5f) + close() + moveTo(8.25f, 6.0f) + curveTo(7.01f, 6.0f, 6.0f, 7.0f, 6.0f, 8.25f) + verticalLineToRelative(7.5f) + curveTo(6.0f, 16.99f, 7.0f, 18.0f, 8.25f, 18.0f) + horizontalLineToRelative(7.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-7.5f) + curveTo(18.0f, 7.01f, 17.0f, 6.0f, 15.75f, 6.0f) + horizontalLineToRelative(-7.5f) + close() + } + } + return _resizeLarge!! + } + +private var _resizeLarge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ResizeSmall.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ResizeSmall.kt new file mode 100644 index 00000000..a42d7738 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ResizeSmall.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ResizeSmall: ImageVector + get() { + if (_resizeSmall != null) { + return _resizeSmall!! + } + _resizeSmall = fluentIcon(name = "Filled.ResizeSmall") { + fluentPath { + moveTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.5f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.5f) + close() + moveTo(10.2f, 8.0f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(3.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-3.5f) + close() + moveTo(17.75f, 4.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.5f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.5f) + close() + moveTo(17.75f, 19.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.5f) + close() + moveTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.5f) + close() + } + } + return _resizeSmall!! + } + +private var _resizeSmall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ResizeTable.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ResizeTable.kt new file mode 100644 index 00000000..db4af460 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ResizeTable.kt @@ -0,0 +1,111 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ResizeTable: ImageVector + get() { + if (_resizeTable != null) { + return _resizeTable!! + } + _resizeTable = fluentIcon(name = "Filled.ResizeTable") { + fluentPath { + moveTo(5.25f, 2.0f) + horizontalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(2.96f) + curveToRelative(-0.58f, 0.2f, -1.1f, 0.55f, -1.5f, 0.99f) + lineTo(2.0f, 5.25f) + curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) + close() + moveTo(15.79f, 20.5f) + curveToRelative(-0.2f, 0.58f, -0.55f, 1.1f, -0.99f, 1.5f) + horizontalLineToRelative(3.95f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.96f) + close() + moveTo(21.25f, 11.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-5.0f) + curveTo(22.0f, 3.45f, 20.54f, 2.0f, 18.75f, 2.0f) + horizontalLineToRelative(-5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + close() + moveTo(7.0f, 9.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(3.5f) + lineTo(7.0f, 12.5f) + lineTo(7.0f, 9.0f) + close() + moveTo(7.0f, 14.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(3.5f) + lineTo(7.0f, 17.5f) + lineTo(7.0f, 14.0f) + close() + moveTo(11.5f, 14.0f) + verticalLineToRelative(3.5f) + lineTo(15.0f, 17.5f) + lineTo(15.0f, 14.0f) + horizontalLineToRelative(-3.5f) + close() + moveTo(7.0f, 19.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(3.0f) + lineTo(7.0f, 22.0f) + verticalLineToRelative(-3.0f) + close() + moveTo(11.5f, 19.0f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(0.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 15.0f, 19.25f) + lineTo(15.0f, 19.0f) + horizontalLineToRelative(-3.5f) + close() + moveTo(11.5f, 9.0f) + verticalLineToRelative(3.5f) + lineTo(15.0f, 12.5f) + verticalLineToRelative(-0.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 12.25f, 9.0f) + horizontalLineToRelative(-0.75f) + close() + moveTo(5.5f, 9.0f) + horizontalLineToRelative(-0.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 11.75f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(3.5f) + lineTo(5.5f, 9.0f) + close() + moveTo(5.5f, 14.0f) + lineTo(2.0f, 14.0f) + verticalLineToRelative(3.5f) + horizontalLineToRelative(3.5f) + lineTo(5.5f, 14.0f) + close() + moveTo(5.5f, 19.0f) + lineTo(2.0f, 19.0f) + verticalLineToRelative(0.25f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 22.0f) + horizontalLineToRelative(0.75f) + verticalLineToRelative(-3.0f) + close() + } + } + return _resizeTable!! + } + +private var _resizeTable: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ResizeVideo.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ResizeVideo.kt new file mode 100644 index 00000000..e9d00270 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ResizeVideo.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ResizeVideo: ImageVector + get() { + if (_resizeVideo != null) { + return _resizeVideo!! + } + _resizeVideo = fluentIcon(name = "Filled.ResizeVideo") { + fluentPath { + moveTo(21.25f, 13.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(5.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + horizontalLineToRelative(-4.67f) + curveToRelative(0.54f, -0.39f, 0.98f, -0.9f, 1.27f, -1.5f) + horizontalLineToRelative(3.4f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(11.75f, 9.0f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 1.8f, -1.45f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-6.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 18.75f) + verticalLineToRelative(-6.5f) + curveTo(2.0f, 10.45f, 3.46f, 9.0f, 5.25f, 9.0f) + horizontalLineToRelative(6.5f) + close() + moveTo(6.06f, 13.1f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.06f, 0.24f) + verticalLineToRelative(4.32f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.74f, 0.44f) + lineToRelative(3.96f, -2.16f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.88f) + lineTo(6.74f, 12.9f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.68f, 0.2f) + close() + moveTo(18.75f, 2.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 22.0f, 5.07f) + verticalLineToRelative(5.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-5.1f) + curveToRelative(0.0f, -0.92f, -0.7f, -1.67f, -1.6f, -1.74f) + lineToRelative(-0.15f, -0.01f) + horizontalLineToRelative(-5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(5.1f) + close() + moveTo(10.25f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-5.1f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + lineToRelative(-0.01f, 0.15f) + verticalLineToRelative(3.4f) + curveToRelative(-0.6f, 0.3f, -1.11f, 0.73f, -1.5f, 1.27f) + lineTo(2.0f, 5.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(5.25f, 2.0f) + horizontalLineToRelative(5.0f) + close() + } + } + return _resizeVideo!! + } + +private var _resizeVideo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Reward.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Reward.kt new file mode 100644 index 00000000..34903800 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Reward.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Reward: ImageVector + get() { + if (_reward != null) { + return _reward!! + } + _reward = fluentIcon(name = "Filled.Reward") { + fluentPath { + moveTo(20.25f, 2.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(3.04f) + curveToRelative(0.0f, 1.03f, -0.57f, 1.97f, -1.48f, 2.44f) + lineToRelative(-6.3f, 3.29f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, -4.44f, 0.0f) + lineToRelative(-6.3f, -3.3f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 6.8f) + lineTo(2.0f, 3.75f) + curveTo(2.0f, 2.78f, 2.78f, 2.0f, 3.75f, 2.0f) + horizontalLineToRelative(16.5f) + close() + moveTo(12.0f, 13.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + moveTo(16.0f, 3.5f) + lineTo(8.0f, 3.5f) + verticalLineToRelative(6.4f) + lineToRelative(3.88f, 2.03f) + curveToRelative(0.08f, 0.04f, 0.16f, 0.04f, 0.24f, 0.0f) + lineTo(16.0f, 9.9f) + lineTo(16.0f, 3.5f) + close() + } + } + return _reward!! + } + +private var _reward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Rewind.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Rewind.kt new file mode 100644 index 00000000..58da696c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Rewind.kt @@ -0,0 +1,41 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Rewind: ImageVector + get() { + if (_rewind != null) { + return _rewind!! + } + _rewind = fluentIcon(name = "Filled.Rewind") { + fluentPath { + moveTo(10.03f, 4.36f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 12.5f, 5.5f) + verticalLineToRelative(4.0f) + lineToRelative(6.03f, -5.14f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 21.0f, 5.51f) + lineTo(21.0f, 18.5f) + curveToRelative(0.0f, 0.88f, -0.7f, 1.48f, -1.46f, 1.5f) + horizontalLineToRelative(-0.09f) + curveToRelative(-0.32f, 0.0f, -0.64f, -0.12f, -0.92f, -0.36f) + lineToRelative(-6.03f, -5.13f) + verticalLineToRelative(3.99f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.47f, 1.14f) + lineToRelative(-7.41f, -6.3f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.0f, -2.67f) + lineToRelative(7.41f, -6.3f) + close() + moveTo(2.62f, 10.66f) + lineTo(3.11f, 11.24f) + close() + } + } + return _rewind!! + } + +private var _rewind: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Rhombus.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Rhombus.kt new file mode 100644 index 00000000..ecb20b76 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Rhombus.kt @@ -0,0 +1,32 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Rhombus: ImageVector + get() { + if (_rhombus != null) { + return _rhombus!! + } + _rhombus = fluentIcon(name = "Filled.Rhombus") { + fluentPath { + moveTo(5.8f, 5.4f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 7.9f, 4.0f) + horizontalLineToRelative(12.85f) + curveToRelative(1.6f, 0.0f, 2.69f, 1.61f, 2.09f, 3.1f) + lineTo(18.2f, 18.6f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 16.1f, 20.0f) + horizontalLineTo(3.25f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.08f, -3.1f) + lineTo(5.8f, 5.4f) + close() + } + } + return _rhombus!! + } + +private var _rhombus: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Ribbon.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Ribbon.kt new file mode 100644 index 00000000..3da50528 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Ribbon.kt @@ -0,0 +1,35 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Ribbon: ImageVector + get() { + if (_ribbon != null) { + return _ribbon!! + } + _ribbon = fluentIcon(name = "Filled.Ribbon") { + fluentPath { + moveTo(17.0f, 15.24f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.61f, -0.68f, 0.97f, -1.18f, 0.62f) + lineTo(12.0f, 19.17f) + lineToRelative(-3.82f, 2.69f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 21.25f) + verticalLineToRelative(-6.0f) + arcToRelative(7.97f, 7.97f, 0.0f, false, false, 10.0f, 0.0f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(7.0f, 7.0f, 0.0f, true, true, 0.0f, 14.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, 0.0f, -14.0f) + close() + } + } + return _ribbon!! + } + +private var _ribbon: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RibbonAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RibbonAdd.kt new file mode 100644 index 00000000..864119f7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RibbonAdd.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.RibbonAdd: ImageVector + get() { + if (_ribbonAdd != null) { + return _ribbonAdd!! + } + _ribbonAdd = fluentIcon(name = "Filled.RibbonAdd") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 7.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 7.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 6.0f) + lineTo(17.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 6.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 7.0f) + close() + moveTo(11.0f, 6.5f) + curveToRelative(0.0f, -1.65f, 0.62f, -3.16f, 1.63f, -4.3f) + arcTo(7.02f, 7.02f, 0.0f, false, false, 4.0f, 9.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, false, 12.77f, 3.96f) + arcTo(6.5f, 6.5f, 0.0f, false, true, 11.0f, 6.5f) + close() + moveTo(16.0f, 15.25f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.6f, -0.68f, 0.96f, -1.18f, 0.61f) + lineTo(11.0f, 19.17f) + lineToRelative(-3.82f, 2.7f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 6.0f, 21.24f) + verticalLineToRelative(-6.0f) + arcToRelative(7.97f, 7.97f, 0.0f, false, false, 10.0f, 0.0f) + close() + } + } + return _ribbonAdd!! + } + +private var _ribbonAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RibbonOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RibbonOff.kt new file mode 100644 index 00000000..19c26cf2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RibbonOff.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.RibbonOff: ImageVector + get() { + if (_ribbonOff != null) { + return _ribbonOff!! + } + _ribbonOff = fluentIcon(name = "Filled.RibbonOff") { + fluentPath { + moveTo(5.45f, 6.51f) + arcTo(6.98f, 6.98f, 0.0f, false, false, 12.0f, 16.0f) + curveToRelative(0.88f, 0.0f, 1.71f, -0.16f, 2.49f, -0.45f) + lineToRelative(0.76f, 0.76f) + arcTo(7.97f, 7.97f, 0.0f, false, true, 7.0f, 15.25f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.6f, 0.69f, 0.96f, 1.18f, 0.6f) + lineTo(12.0f, 19.18f) + lineToRelative(3.82f, 2.69f) + curveToRelative(0.5f, 0.35f, 1.18f, 0.0f, 1.18f, -0.61f) + verticalLineToRelative(-3.19f) + lineToRelative(3.72f, 3.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(3.23f, 3.23f) + close() + moveTo(7.15f, 3.96f) + lineTo(17.04f, 13.86f) + arcToRelative(7.0f, 7.0f, 0.0f, false, false, -9.9f, -9.9f) + close() + } + } + return _ribbonOff!! + } + +private var _ribbonOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RibbonStar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RibbonStar.kt new file mode 100644 index 00000000..9e1fe9cf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RibbonStar.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.RibbonStar: ImageVector + get() { + if (_ribbonStar != null) { + return _ribbonStar!! + } + _ribbonStar = fluentIcon(name = "Filled.RibbonStar") { + fluentPath { + moveTo(17.0f, 21.25f) + verticalLineToRelative(-6.0f) + arcToRelative(7.97f, 7.97f, 0.0f, false, true, -10.0f, 0.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.6f, 0.69f, 0.96f, 1.18f, 0.6f) + lineTo(12.0f, 19.18f) + lineToRelative(3.82f, 2.69f) + curveToRelative(0.5f, 0.35f, 1.18f, 0.0f, 1.18f, -0.61f) + close() + moveTo(19.0f, 9.0f) + arcTo(7.0f, 7.0f, 0.0f, true, false, 5.0f, 9.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, false, 14.0f, 0.0f) + close() + moveTo(12.23f, 5.64f) + lineTo(13.14f, 7.5f) + lineTo(15.19f, 7.79f) + curveToRelative(0.2f, 0.03f, 0.29f, 0.29f, 0.14f, 0.44f) + lineToRelative(-1.48f, 1.44f) + lineToRelative(0.35f, 2.03f) + curveToRelative(0.03f, 0.21f, -0.19f, 0.37f, -0.37f, 0.27f) + lineTo(12.0f, 11.01f) + lineToRelative(-1.83f, 0.96f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.37f, -0.27f) + lineToRelative(0.35f, -2.03f) + lineToRelative(-1.48f, -1.44f) + arcToRelative(0.26f, 0.26f, 0.0f, false, true, 0.14f, -0.44f) + lineToRelative(2.05f, -0.3f) + lineToRelative(0.91f, -1.85f) + curveToRelative(0.1f, -0.19f, 0.37f, -0.19f, 0.46f, 0.0f) + close() + } + } + return _ribbonStar!! + } + +private var _ribbonStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RoadCone.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RoadCone.kt new file mode 100644 index 00000000..9211c4ec --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RoadCone.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.RoadCone: ImageVector + get() { + if (_roadCone != null) { + return _roadCone!! + } + _roadCone = fluentIcon(name = "Filled.RoadCone") { + fluentPath { + moveTo(11.2f, 2.0f) + curveToRelative(-0.58f, 0.0f, -1.08f, 0.4f, -1.22f, 0.96f) + arcTo(325.4f, 325.4f, 0.0f, false, true, 7.59f, 12.0f) + horizontalLineToRelative(5.16f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineTo(7.18f) + lineToRelative(-0.55f, 2.0f) + horizontalLineToRelative(7.12f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineTo(6.22f) + lineToRelative(-0.93f, 3.5f) + horizontalLineTo(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.54f) + lineTo(14.02f, 2.93f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.2f, -0.93f) + horizontalLineToRelative(-1.63f) + close() + } + } + return _roadCone!! + } + +private var _roadCone: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Rocket.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Rocket.kt new file mode 100644 index 00000000..08061965 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Rocket.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Rocket: ImageVector + get() { + if (_rocket != null) { + return _rocket!! + } + _rocket = fluentIcon(name = "Filled.Rocket") { + fluentPath { + moveTo(13.06f, 7.43f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 3.53f, 3.54f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -3.53f, -3.54f) + close() + moveTo(15.53f, 8.49f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.41f, 1.42f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.41f, -1.42f) + close() + moveTo(19.7f, 2.51f) + curveToRelative(0.86f, 0.27f, 1.54f, 0.95f, 1.8f, 1.81f) + lineToRelative(0.21f, 0.67f) + curveToRelative(0.75f, 2.4f, 0.1f, 5.0f, -1.67f, 6.77f) + lineToRelative(-1.0f, 1.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -0.32f, 4.57f) + lineToRelative(-1.25f, 1.24f) + curveToRelative(-0.29f, 0.3f, -0.76f, 0.3f, -1.06f, 0.0f) + lineToRelative(-1.59f, -1.59f) + lineToRelative(-0.17f, 0.18f) + curveToRelative(-0.69f, 0.68f, -1.8f, 0.68f, -2.48f, 0.0f) + lineToRelative(-0.48f, -0.49f) + lineToRelative(-0.82f, 1.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.17f, 0.14f) + lineToRelative(-3.9f, -3.89f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.15f, -1.17f) + lineToRelative(1.39f, -0.83f) + lineToRelative(-0.47f, -0.47f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.0f, -2.47f) + lineToRelative(0.18f, -0.18f) + lineToRelative(-1.6f, -1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.05f) + lineTo(6.7f, 5.3f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 4.57f, -0.32f) + lineToRelative(1.0f, -1.0f) + arcToRelative(6.75f, 6.75f, 0.0f, false, true, 6.77f, -1.67f) + lineToRelative(0.66f, 0.2f) + close() + moveTo(20.08f, 4.77f) + curveToRelative(-0.13f, -0.4f, -0.43f, -0.7f, -0.83f, -0.83f) + lineToRelative(-0.66f, -0.2f) + arcToRelative(5.25f, 5.25f, 0.0f, false, false, -5.27f, 1.3f) + lineToRelative(-5.4f, 5.4f) + curveToRelative(-0.1f, 0.1f, -0.1f, 0.25f, 0.0f, 0.35f) + lineToRelative(5.31f, 5.3f) + curveToRelative(0.1f, 0.1f, 0.26f, 0.1f, 0.36f, 0.0f) + lineToRelative(5.4f, -5.39f) + arcToRelative(5.25f, 5.25f, 0.0f, false, false, 1.3f, -5.27f) + lineToRelative(-0.21f, -0.66f) + close() + moveTo(6.69f, 18.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineToRelative(-2.48f, 2.48f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineToRelative(2.48f, -2.48f) + close() + moveTo(4.75f, 15.39f) + curveToRelative(0.29f, 0.3f, 0.29f, 0.77f, 0.0f, 1.06f) + lineToRelative(-1.07f, 1.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(1.06f, -1.06f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.07f, 0.0f) + close() + moveTo(8.63f, 20.34f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-1.06f, 1.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineToRelative(1.06f, -1.06f) + close() + } + } + return _rocket!! + } + +private var _rocket: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RotateLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RotateLeft.kt new file mode 100644 index 00000000..2f30ec1f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RotateLeft.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.RotateLeft: ImageVector + get() { + if (_rotateLeft != null) { + return _rotateLeft!! + } + _rotateLeft = fluentIcon(name = "Filled.RotateLeft") { + fluentPath { + moveTo(14.5f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.5f) + curveToRelative(2.49f, 0.0f, 4.5f, -1.57f, 4.5f, -3.5f) + curveToRelative(0.0f, -1.87f, -1.9f, -3.4f, -4.28f, -3.5f) + lineTo(8.06f, 6.5f) + lineToRelative(1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-3.0f, -3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(3.0f, -3.0f) + lineToRelative(0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, 1.13f) + lineTo(8.06f, 5.0f) + lineTo(15.0f, 5.0f) + curveToRelative(3.31f, 0.0f, 6.0f, 2.24f, 6.0f, 5.0f) + reflectiveCurveToRelative(-2.69f, 5.0f, -6.0f, 5.0f) + horizontalLineToRelative(-0.5f) + close() + moveTo(3.5f, 10.37f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + lineTo(3.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(16.14f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.25f, -0.93f) + lineTo(3.75f, 10.43f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.25f, -0.06f) + close() + } + } + return _rotateLeft!! + } + +private var _rotateLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RotateRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RotateRight.kt new file mode 100644 index 00000000..a1d554c6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RotateRight.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.RotateRight: ImageVector + get() { + if (_rotateRight != null) { + return _rotateRight!! + } + _rotateRight = fluentIcon(name = "Filled.RotateRight") { + fluentPath { + moveTo(9.5f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(9.0f, 13.5f) + curveToRelative(-2.49f, 0.0f, -4.5f, -1.57f, -4.5f, -3.5f) + curveToRelative(0.0f, -1.87f, 1.9f, -3.4f, 4.28f, -3.5f) + horizontalLineToRelative(7.16f) + lineToRelative(-1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) + lineToRelative(0.08f, -0.07f) + lineToRelative(3.0f, -3.0f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-3.0f, -3.0f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 1.13f) + lineTo(15.94f, 5.0f) + lineTo(9.0f, 5.0f) + curveToRelative(-3.31f, 0.0f, -6.0f, 2.24f, -6.0f, 5.0f) + reflectiveCurveToRelative(2.69f, 5.0f, 6.0f, 5.0f) + horizontalLineToRelative(0.5f) + close() + moveTo(20.5f, 10.37f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + lineTo(21.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + lineTo(3.86f, 21.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.25f, -0.93f) + lineToRelative(16.64f, -9.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.25f, -0.06f) + close() + } + } + return _rotateRight!! + } + +private var _rotateRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Router.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Router.kt new file mode 100644 index 00000000..775f9c26 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Router.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Router: ImageVector + get() { + if (_router != null) { + return _router!! + } + _router = fluentIcon(name = "Filled.Router") { + fluentPath { + moveTo(12.0f, 3.5f) + arcTo(7.5f, 7.5f, 0.0f, false, false, 4.5f, 11.0f) + verticalLineToRelative(0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(3.0f, 11.0f) + arcToRelative(9.0f, 9.0f, 0.0f, false, true, 18.0f, 0.0f) + verticalLineToRelative(0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(19.5f, 11.0f) + arcTo(7.5f, 7.5f, 0.0f, false, false, 12.0f, 3.5f) + close() + moveTo(12.0f, 6.5f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 7.5f, 11.0f) + verticalLineToRelative(0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(6.0f, 11.0f) + arcToRelative(6.0f, 6.0f, 0.0f, true, true, 12.0f, 0.0f) + verticalLineToRelative(0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(16.5f, 11.0f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 6.5f) + close() + moveTo(9.0f, 11.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 3.75f, 2.9f) + lineTo(12.75f, 16.0f) + lineTo(18.0f, 16.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) + lineTo(6.0f, 22.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) + horizontalLineToRelative(5.25f) + verticalLineToRelative(-2.1f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 9.0f, 11.0f) + close() + } + } + return _router!! + } + +private var _router: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RowTriple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RowTriple.kt new file mode 100644 index 00000000..16b28a2c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/RowTriple.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.RowTriple: ImageVector + get() { + if (_rowTriple != null) { + return _rowTriple!! + } + _rowTriple = fluentIcon(name = "Filled.RowTriple") { + fluentPath { + moveTo(5.75f, 2.02f) + curveTo(4.78f, 2.02f, 4.0f, 2.8f, 4.0f, 3.77f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(12.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(5.75f, 2.02f) + close() + moveTo(5.75f, 9.02f) + curveTo(4.78f, 9.02f, 4.0f, 9.8f, 4.0f, 10.77f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(12.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(5.75f, 9.02f) + close() + moveTo(5.75f, 16.02f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(12.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(5.75f, 16.02f) + close() + } + } + return _rowTriple!! + } + +private var _rowTriple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Rss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Rss.kt new file mode 100644 index 00000000..17647155 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Rss.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Rss: ImageVector + get() { + if (_rss != null) { + return _rss!! + } + _rss = fluentIcon(name = "Filled.Rss") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(6.75f, 7.5f) + arcTo(0.74f, 0.74f, 0.0f, false, true, 6.0f, 6.78f) + verticalLineToRelative(-0.06f) + curveToRelative(0.0f, -0.39f, 0.3f, -0.72f, 0.7f, -0.72f) + horizontalLineToRelative(0.05f) + curveTo(12.96f, 6.0f, 18.0f, 11.04f, 18.0f, 17.25f) + verticalLineToRelative(0.05f) + curveToRelative(0.0f, 0.4f, -0.33f, 0.7f, -0.72f, 0.7f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.74f, 0.74f, 0.0f, false, true, -0.72f, -0.75f) + arcTo(9.75f, 9.75f, 0.0f, false, false, 6.75f, 7.5f) + close() + moveTo(13.29f, 18.0f) + horizontalLineToRelative(-0.09f) + curveToRelative(-0.4f, 0.0f, -0.7f, -0.35f, -0.7f, -0.75f) + arcToRelative(5.75f, 5.75f, 0.0f, false, false, -5.75f, -5.75f) + curveToRelative(-0.4f, 0.0f, -0.75f, -0.3f, -0.75f, -0.7f) + verticalLineToRelative(-0.1f) + arcToRelative(0.69f, 0.69f, 0.0f, false, true, 0.75f, -0.7f) + arcTo(7.25f, 7.25f, 0.0f, false, true, 14.0f, 17.33f) + curveToRelative(0.0f, 0.38f, -0.33f, 0.67f, -0.7f, 0.67f) + close() + moveTo(7.5f, 18.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) + close() + } + } + return _rss!! + } + +private var _rss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Ruler.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Ruler.kt new file mode 100644 index 00000000..88e66042 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Ruler.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Ruler: ImageVector + get() { + if (_ruler != null) { + return _ruler!! + } + _ruler = fluentIcon(name = "Filled.Ruler") { + fluentPath { + moveTo(7.0f, 4.25f) + curveTo(7.0f, 3.01f, 8.0f, 2.0f, 9.25f, 2.0f) + horizontalLineToRelative(5.5f) + curveTo(15.99f, 2.0f, 17.0f, 3.0f, 17.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-5.5f) + arcTo(2.26f, 2.26f, 0.0f, false, true, 7.0f, 19.75f) + lineTo(7.0f, 4.25f) + close() + moveTo(8.5f, 5.0f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(8.5f, 5.0f) + close() + moveTo(8.5f, 8.0f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(8.5f, 8.0f) + close() + moveTo(8.5f, 11.25f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(8.5f, 11.25f) + close() + moveTo(8.5f, 14.5f) + lineTo(8.5f, 16.0f) + horizontalLineToRelative(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(8.5f, 14.5f) + close() + moveTo(8.5f, 17.5f) + lineTo(8.5f, 19.0f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(8.5f, 17.5f) + close() + } + } + return _ruler!! + } + +private var _ruler: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Run.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Run.kt new file mode 100644 index 00000000..1d5b9fa8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Run.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Run: ImageVector + get() { + if (_run != null) { + return _run!! + } + _run = fluentIcon(name = "Filled.Run") { + fluentPath { + moveTo(11.03f, 2.58f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.39f, -0.03f) + curveToRelative(-0.99f, 0.17f, -2.0f, 0.65f, -2.9f, 1.23f) + arcToRelative(18.85f, 18.85f, 0.0f, false, false, -3.87f, 3.27f) + arcToRelative(13.0f, 13.0f, 0.0f, false, true, -0.65f, 0.7f) + curveToRelative(-0.26f, 0.27f, -0.57f, 0.6f, -0.74f, 0.84f) + curveToRelative(-0.38f, 0.54f, -0.75f, 1.13f, -1.09f, 1.75f) + curveToRelative(-0.1f, 0.18f, -0.11f, 0.4f, -0.05f, 0.6f) + curveToRelative(0.9f, 2.66f, 3.7f, 5.1f, 7.0f, 6.86f) + curveToRelative(3.31f, 1.78f, 7.3f, 2.95f, 10.83f, 2.95f) + horizontalLineToRelative(0.84f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) + verticalLineToRelative(-2.8f) + curveToRelative(0.0f, -1.03f, -0.6f, -1.99f, -1.52f, -2.45f) + lineToRelative(-2.38f, -1.2f) + arcToRelative(11.4f, 11.4f, 0.0f, false, true, -1.25f, -1.92f) + arcToRelative(6.91f, 6.91f, 0.0f, false, true, -0.72f, -1.97f) + lineToRelative(0.54f, -0.9f) + arcToRelative(4.25f, 4.25f, 0.0f, false, true, 2.0f, -1.71f) + lineToRelative(0.86f, -0.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.03f, -1.39f) + lineToRelative(-7.23f, -2.72f) + close() + moveTo(19.26f, 17.22f) + curveToRelative(-1.58f, -0.21f, -2.25f, -0.4f, -3.51f, -0.76f) + lineToRelative(0.89f, -1.34f) + lineToRelative(1.93f, 0.97f) + curveToRelative(0.42f, 0.2f, 0.7f, 0.64f, 0.7f, 1.12f) + close() + moveTo(15.26f, 17.87f) + curveToRelative(1.4f, 0.4f, 2.13f, 0.62f, 4.0f, 0.86f) + verticalLineToRelative(0.52f) + horizontalLineToRelative(-0.09f) + curveToRelative(-3.22f, 0.0f, -6.98f, -1.08f, -10.13f, -2.77f) + curveToRelative(-3.03f, -1.62f, -5.34f, -3.7f, -6.17f, -5.72f) + lineToRelative(0.27f, -0.44f) + arcToRelative(22.6f, 22.6f, 0.0f, false, false, 3.91f, 3.55f) + arcToRelative(25.95f, 25.95f, 0.0f, false, false, 4.75f, 2.8f) + lineToRelative(2.5f, 0.93f) + lineToRelative(0.05f, 0.01f) + lineToRelative(0.91f, 0.26f) + close() + moveTo(8.79f, 8.94f) + lineTo(6.76f, 6.35f) + curveToRelative(0.55f, -0.46f, 1.15f, -0.92f, 1.77f, -1.3f) + arcToRelative(7.3f, 7.3f, 0.0f, false, true, 2.17f, -0.99f) + lineToRelative(5.36f, 2.01f) + arcTo(5.75f, 5.75f, 0.0f, false, false, 14.15f, 8.0f) + lineToRelative(-0.33f, 0.54f) + lineToRelative(-2.74f, -1.27f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, 0.95f) + lineToRelative(2.14f, 5.43f) + lineToRelative(-0.55f, 1.31f) + curveToRelative(-1.39f, -0.7f, -2.32f, -1.27f, -3.36f, -2.01f) + lineToRelative(0.62f, -3.41f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.14f, -0.6f) + close() + } + } + return _run!! + } + +private var _run: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Sanitize.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Sanitize.kt new file mode 100644 index 00000000..3c325b07 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Sanitize.kt @@ -0,0 +1,96 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Sanitize: ImageVector + get() { + if (_sanitize != null) { + return _sanitize!! + } + _sanitize = fluentIcon(name = "Filled.Sanitize") { + fluentPath { + moveTo(3.62f, 10.62f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -4.24f) + lineToRelative(3.26f, -3.26f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 4.24f, 0.0f) + lineTo(14.8f, 6.8f) + lineToRelative(-0.13f, 0.22f) + arcTo(1.75f, 1.75f, 0.0f, false, false, 12.0f, 8.5f) + verticalLineToRelative(4.52f) + arcToRelative(3.78f, 3.78f, 0.0f, false, false, -2.2f, 0.36f) + arcToRelative(2.9f, 2.9f, 0.0f, false, false, -0.75f, 0.54f) + curveToRelative(-0.07f, 0.08f, -0.15f, 0.17f, -0.23f, 0.29f) + arcToRelative(1.86f, 1.86f, 0.0f, false, false, -0.3f, 1.3f) + lineToRelative(-4.9f, -4.9f) + close() + moveTo(17.0f, 7.75f) + verticalLineToRelative(5.75f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineTo(14.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) + verticalLineTo(9.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(7.0f) + curveToRelative(0.0f, 0.62f, -0.27f, 1.39f, -0.56f, 2.04f) + curveToRelative(-0.3f, 0.68f, -0.68f, 1.37f, -0.98f, 1.9f) + arcToRelative(2.64f, 2.64f, 0.0f, false, true, -2.3f, 1.3f) + horizontalLineToRelative(-1.14f) + curveToRelative(-0.88f, 0.01f, -1.7f, -0.41f, -2.23f, -1.12f) + lineToRelative(-1.37f, -1.9f) + lineToRelative(-1.66f, -1.9f) + lineToRelative(-1.9f, -1.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.36f, -0.64f) + curveToRelative(0.0f, -0.24f, 0.1f, -0.4f, 0.15f, -0.48f) + lineToRelative(0.18f, -0.2f) + curveToRelative(0.12f, -0.12f, 0.27f, -0.21f, 0.43f, -0.29f) + curveToRelative(0.31f, -0.16f, 0.74f, -0.28f, 1.24f, -0.28f) + curveToRelative(0.53f, 0.0f, 1.07f, 0.15f, 1.5f, 0.31f) + verticalLineTo(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineTo(7.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(4.25f, 14.0f) + curveToRelative(0.42f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineTo(5.0f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineTo(17.0f) + horizontalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.75f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(9.0f, 18.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineTo(19.0f) + horizontalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.75f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(9.0f) + verticalLineToRelative(-0.75f) + close() + } + } + return _sanitize!! + } + +private var _sanitize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SaveArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SaveArrowRight.kt new file mode 100644 index 00000000..3e7635ee --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SaveArrowRight.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SaveArrowRight: ImageVector + get() { + if (_saveArrowRight != null) { + return _saveArrowRight!! + } + _saveArrowRight = fluentIcon(name = "Filled.SaveArrowRight") { + fluentPath { + moveTo(6.75f, 3.0f) + horizontalLineToRelative(-1.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) + lineTo(6.0f, 21.0f) + verticalLineToRelative(-6.0f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(4.81f) + arcToRelative(6.48f, 6.48f, 0.0f, false, true, 7.94f, -0.73f) + lineTo(21.0f, 8.3f) + curveToRelative(0.0f, -0.87f, -0.34f, -1.7f, -0.95f, -2.3f) + lineTo(18.0f, 3.95f) + curveToRelative(-0.6f, -0.6f, -1.41f, -0.94f, -2.26f, -0.95f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(9.0f, 9.75f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + lineTo(6.75f, 3.0f) + close() + moveTo(8.25f, 14.25f) + horizontalLineToRelative(3.62f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, 0.15f, 6.75f) + lineTo(7.5f, 21.0f) + verticalLineToRelative(-6.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(14.25f, 3.0f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(9.0f, 8.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(8.25f, 3.0f) + horizontalLineToRelative(6.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(19.29f, 17.0f) + lineTo(14.5f, 17.0f) + close() + } + } + return _saveArrowRight!! + } + +private var _saveArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SaveCopy.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SaveCopy.kt new file mode 100644 index 00000000..1aa98d15 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SaveCopy.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SaveCopy: ImageVector + get() { + if (_saveCopy != null) { + return _saveCopy!! + } + _saveCopy = fluentIcon(name = "Filled.SaveCopy") { + fluentPath { + moveTo(20.5f, 5.63f) + curveToRelative(0.87f, 0.3f, 1.5f, 1.14f, 1.5f, 2.12f) + verticalLineToRelative(10.0f) + curveTo(22.0f, 20.1f, 20.1f, 22.0f, 17.75f, 22.0f) + horizontalLineToRelative(-10.0f) + curveToRelative(-0.98f, 0.0f, -1.82f, -0.63f, -2.12f, -1.5f) + horizontalLineToRelative(12.12f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, -2.75f) + lineTo(20.5f, 5.63f) + close() + moveTo(17.25f, 2.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(13.0f) + curveToRelative(0.0f, 1.24f, -1.01f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-13.0f) + curveTo(3.01f, 19.5f, 2.0f, 18.49f, 2.0f, 17.25f) + verticalLineToRelative(-13.0f) + curveTo(2.0f, 3.01f, 3.0f, 2.0f, 4.25f, 2.0f) + horizontalLineToRelative(13.0f) + close() + moveTo(10.75f, 6.75f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + lineTo(10.0f, 10.0f) + lineTo(7.5f, 10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + lineTo(10.0f, 11.5f) + lineTo(10.0f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.1f) + verticalLineToRelative(-2.6f) + lineTo(14.0f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + horizontalLineToRelative(-2.6f) + lineTo(11.5f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + } + } + return _saveCopy!! + } + +private var _saveCopy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SaveEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SaveEdit.kt new file mode 100644 index 00000000..b21306ee --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SaveEdit.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SaveEdit: ImageVector + get() { + if (_saveEdit != null) { + return _saveEdit!! + } + _saveEdit = fluentIcon(name = "Filled.SaveEdit") { + fluentPath { + moveTo(6.75f, 3.0f) + horizontalLineToRelative(-1.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) + lineTo(6.0f, 21.0f) + verticalLineToRelative(-6.0f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(7.35f) + lineToRelative(1.8f, -1.79f) + arcToRelative(3.3f, 3.3f, 0.0f, false, true, 3.6f, -0.7f) + lineTo(21.0f, 8.3f) + curveToRelative(0.0f, -0.87f, -0.34f, -1.7f, -0.95f, -2.3f) + lineTo(18.0f, 3.95f) + curveToRelative(-0.6f, -0.6f, -1.41f, -0.94f, -2.26f, -0.95f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(9.0f, 9.75f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + lineTo(6.75f, 3.0f) + close() + moveTo(14.1f, 14.25f) + lineTo(11.49f, 16.86f) + curveToRelative(-0.47f, 0.48f, -0.8f, 1.07f, -0.97f, 1.72f) + lineToRelative(-0.46f, 1.83f) + curveToRelative(-0.05f, 0.2f, -0.07f, 0.4f, -0.06f, 0.59f) + lineTo(7.5f, 21.0f) + verticalLineToRelative(-6.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.85f) + close() + moveTo(14.25f, 3.0f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(9.0f, 8.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(8.25f, 3.0f) + horizontalLineToRelative(6.0f) + close() + moveTo(19.72f, 11.0f) + curveToRelative(-0.6f, 0.0f, -1.18f, 0.22f, -1.62f, 0.67f) + lineToRelative(-5.9f, 5.9f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.71f, 1.25f) + lineToRelative(-0.46f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcTo(2.29f, 2.29f, 0.0f, false, false, 19.72f, 11.0f) + close() + } + } + return _saveEdit!! + } + +private var _saveEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SaveMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SaveMultiple.kt new file mode 100644 index 00000000..208df912 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SaveMultiple.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SaveMultiple: ImageVector + get() { + if (_saveMultiple != null) { + return _saveMultiple!! + } + _saveMultiple = fluentIcon(name = "Filled.SaveMultiple") { + fluentPath { + moveTo(5.75f, 3.0f) + lineTo(7.0f, 3.0f) + verticalLineToRelative(3.25f) + curveTo(7.0f, 7.49f, 8.0f, 8.5f, 9.25f, 8.5f) + horizontalLineToRelative(2.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(14.0f, 3.27f) + curveToRelative(0.37f, 0.16f, 0.72f, 0.39f, 1.01f, 0.68f) + lineTo(17.05f, 6.0f) + curveToRelative(0.6f, 0.6f, 0.95f, 1.43f, 0.95f, 2.3f) + verticalLineToRelative(6.96f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 15.25f, 18.0f) + lineTo(15.0f, 18.0f) + verticalLineToRelative(-4.75f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-4.5f) + curveTo(7.01f, 11.0f, 6.0f, 12.0f, 6.0f, 13.25f) + lineTo(6.0f, 18.0f) + horizontalLineToRelative(-0.25f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 15.25f) + verticalLineToRelative(-9.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + close() + moveTo(7.5f, 18.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(-4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(7.5f, 18.0f) + close() + moveTo(8.5f, 3.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(8.5f, 3.0f) + close() + moveTo(10.75f, 21.0f) + curveToRelative(-1.37f, 0.0f, -2.6f, -0.58f, -3.46f, -1.5f) + horizontalLineToRelative(8.96f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.45f, 3.25f, -3.25f) + lineTo(19.5f, 8.44f) + lineToRelative(0.55f, 0.55f) + curveToRelative(0.6f, 0.6f, 0.95f, 1.43f, 0.95f, 2.3f) + verticalLineToRelative(4.96f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 16.25f, 21.0f) + horizontalLineToRelative(-5.5f) + close() + } + } + return _saveMultiple!! + } + +private var _saveMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Savings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Savings.kt new file mode 100644 index 00000000..661c06dd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Savings.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Savings: ImageVector + get() { + if (_savings != null) { + return _savings!! + } + _savings = fluentIcon(name = "Filled.Savings") { + fluentPath { + moveTo(18.82f, 11.13f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 1.97f, -2.7f) + arcTo(6.89f, 6.89f, 0.0f, false, true, 22.0f, 12.5f) + arcToRelative(7.1f, 7.1f, 0.0f, false, true, -3.0f, 5.93f) + verticalLineToRelative(1.83f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(16.0f, 22.01f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + horizontalLineToRelative(-2.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + lineTo(9.75f, 22.01f) + curveTo(8.78f, 22.0f, 8.0f, 21.22f, 8.0f, 20.25f) + verticalLineToRelative(-0.68f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, -2.53f, -1.54f) + arcToRelative(9.86f, 9.86f, 0.0f, false, true, -1.6f, -2.13f) + arcToRelative(0.49f, 0.49f, 0.0f, false, false, -0.33f, -0.26f) + arcTo(1.84f, 1.84f, 0.0f, false, true, 2.0f, 13.83f) + verticalLineToRelative(-1.76f) + curveToRelative(0.0f, -0.84f, 0.6f, -1.56f, 1.44f, -1.7f) + curveToRelative(0.09f, -0.01f, 0.22f, -0.1f, 0.28f, -0.28f) + curveToRelative(0.19f, -0.58f, 0.56f, -1.43f, 1.25f, -2.12f) + arcTo(7.94f, 7.94f, 0.0f, false, true, 7.0f, 6.52f) + lineTo(7.0f, 3.67f) + curveToRelative(0.0f, -0.94f, 1.13f, -1.32f, 1.74f, -0.72f) + curveToRelative(0.33f, 0.33f, 0.81f, 0.77f, 1.34f, 1.14f) + curveToRelative(0.53f, 0.36f, 1.04f, 0.6f, 1.46f, 0.66f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, -0.45f, 3.17f) + curveToRelative(0.18f, 0.96f, 0.9f, 1.57f, 1.6f, 1.85f) + lineToRelative(3.7f, 1.53f) + curveToRelative(0.68f, 0.29f, 1.63f, 0.38f, 2.43f, -0.17f) + close() + moveTo(8.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(18.26f, 10.3f) + arcToRelative(3.98f, 3.98f, 0.0f, false, false, 1.44f, -4.83f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -7.63f, 2.27f) + arcToRelative(1.27f, 1.27f, 0.0f, false, false, 0.3f, 0.62f) + curveToRelative(0.19f, 0.21f, 0.43f, 0.38f, 0.7f, 0.49f) + lineToRelative(3.7f, 1.53f) + curveToRelative(0.49f, 0.2f, 1.05f, 0.22f, 1.49f, -0.08f) + close() + } + } + return _savings!! + } + +private var _savings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScaleFill.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScaleFill.kt new file mode 100644 index 00000000..eb5bbcf0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScaleFill.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ScaleFill: ImageVector + get() { + if (_scaleFill != null) { + return _scaleFill!! + } + _scaleFill = fluentIcon(name = "Filled.ScaleFill") { + fluentPath { + moveTo(5.25f, 3.0f) + curveTo(4.01f, 3.0f, 3.0f, 4.0f, 3.0f, 5.25f) + verticalLineToRelative(13.5f) + curveTo(3.0f, 19.99f, 4.0f, 21.0f, 5.25f, 21.0f) + horizontalLineToRelative(13.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(21.0f, 5.25f) + curveTo(21.0f, 4.01f, 20.0f, 3.0f, 18.75f, 3.0f) + lineTo(5.25f, 3.0f) + close() + moveTo(6.0f, 6.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.69f) + lineToRelative(1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(7.5f, 8.56f) + verticalLineToRelative(0.7f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + lineTo(6.0f, 6.74f) + close() + moveTo(17.78f, 17.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.53f, 0.22f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.69f) + lineToRelative(-1.72f, -1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineToRelative(1.72f, 1.72f) + verticalLineToRelative(-0.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.2f, -0.08f, 0.4f, -0.22f, 0.53f) + close() + moveTo(18.0f, 6.75f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.69f) + lineToRelative(-1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(1.72f, -1.72f) + horizontalLineToRelative(-0.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.51f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, 0.75f) + close() + moveTo(6.22f, 17.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.22f, -0.53f) + verticalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(0.69f) + lineToRelative(1.72f, -1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) + lineTo(8.56f, 16.5f) + horizontalLineToRelative(0.7f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + lineTo(6.74f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.53f, -0.22f) + close() + } + } + return _scaleFill!! + } + +private var _scaleFill: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScaleFit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScaleFit.kt new file mode 100644 index 00000000..d6103f6b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScaleFit.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ScaleFit: ImageVector + get() { + if (_scaleFit != null) { + return _scaleFit!! + } + _scaleFit = fluentIcon(name = "Filled.ScaleFit") { + fluentPath { + moveTo(4.25f, 4.0f) + curveTo(3.01f, 4.0f, 2.0f, 5.0f, 2.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(2.0f, 18.99f, 3.0f, 20.0f, 4.25f, 20.0f) + horizontalLineToRelative(15.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(22.0f, 6.25f) + curveTo(22.0f, 5.01f, 21.0f, 4.0f, 19.75f, 4.0f) + lineTo(4.25f, 4.0f) + close() + moveTo(7.99f, 9.44f) + curveToRelative(0.32f, 0.27f, 0.35f, 0.74f, 0.07f, 1.05f) + lineToRelative(-0.66f, 0.76f) + horizontalLineToRelative(2.86f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(7.4f, 12.75f) + lineToRelative(0.66f, 0.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.12f, 0.98f) + lineToRelative(-1.75f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -0.98f) + lineToRelative(1.75f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, -0.07f) + close() + moveTo(15.95f, 10.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, -0.98f) + lineToRelative(1.75f, 2.0f) + curveToRelative(0.25f, 0.28f, 0.25f, 0.7f, 0.0f, 0.98f) + lineToRelative(-1.75f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) + lineToRelative(0.66f, -0.76f) + horizontalLineToRelative(-2.86f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.86f) + lineToRelative(-0.66f, -0.76f) + close() + } + } + return _scaleFit!! + } + +private var _scaleFit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Scales.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Scales.kt new file mode 100644 index 00000000..7d488f02 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Scales.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Scales: ImageVector + get() { + if (_scales != null) { + return _scales!! + } + _scales = fluentIcon(name = "Filled.Scales") { + fluentPath { + moveTo(3.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.04f) + lineToRelative(-2.73f, 6.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.06f, 0.28f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 7.0f, 0.0f) + curveToRelative(0.0f, -0.1f, -0.02f, -0.2f, -0.06f, -0.28f) + lineTo(6.21f, 4.5f) + horizontalLineToRelative(5.04f) + verticalLineToRelative(12.0f) + horizontalLineToRelative(-4.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) + horizontalLineToRelative(9.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, -4.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-12.0f) + horizontalLineToRelative(5.04f) + lineToRelative(-2.73f, 6.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.06f, 0.28f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 7.0f, 0.0f) + curveToRelative(0.0f, -0.1f, -0.02f, -0.2f, -0.06f, -0.28f) + lineTo(19.21f, 4.5f) + horizontalLineToRelative(1.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 3.0f) + close() + moveTo(5.5f, 6.74f) + lineToRelative(1.63f, 4.01f) + lineTo(3.87f, 10.75f) + lineTo(5.5f, 6.74f) + close() + moveTo(16.87f, 10.75f) + lineTo(18.5f, 6.74f) + lineTo(20.13f, 10.75f) + horizontalLineToRelative(-3.26f) + close() + } + } + return _scales!! + } + +private var _scales: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Scan.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Scan.kt new file mode 100644 index 00000000..29ffecf9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Scan.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Scan: ImageVector + get() { + if (_scan != null) { + return _scan!! + } + _scan = fluentIcon(name = "Filled.Scan") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(15.33f, 14.22f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -0.26f, 0.34f) + lineToRelative(-0.14f, 0.17f) + lineToRelative(-3.95f, 5.2f) + arcToRelative(8.07f, 8.07f, 0.0f, false, false, 6.24f, -1.87f) + lineToRelative(-1.9f, -3.84f) + close() + moveTo(11.43f, 16.02f) + lineTo(5.09f, 16.02f) + arcToRelative(8.03f, 8.03f, 0.0f, false, false, 3.82f, 3.36f) + lineToRelative(2.54f, -3.36f) + close() + moveTo(19.75f, 9.99f) + horizontalLineToRelative(-4.28f) + lineToRelative(0.06f, 0.13f) + lineToRelative(0.12f, 0.23f) + lineToRelative(3.0f, 6.09f) + arcToRelative(7.96f, 7.96f, 0.0f, false, false, 1.1f, -6.45f) + close() + moveTo(5.05f, 8.05f) + arcToRelative(7.96f, 7.96f, 0.0f, false, false, -0.8f, 5.97f) + horizontalLineToRelative(4.29f) + lineToRelative(-0.06f, -0.09f) + lineToRelative(-3.44f, -5.88f) + close() + moveTo(12.0f, 10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.58f, 0.77f) + lineToRelative(-0.1f, 0.17f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.09f, 0.12f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 3.17f, 2.36f) + lineToRelative(0.16f, -0.2f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, -0.13f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 12.0f, 10.0f) + close() + moveTo(12.0f, 4.0f) + curveToRelative(-2.2f, 0.0f, -4.2f, 0.9f, -5.65f, 2.33f) + lineToRelative(2.17f, 3.7f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.25f, -0.39f) + lineTo(12.15f, 4.0f) + lineTo(12.0f, 4.0f) + close() + moveTo(14.28f, 4.33f) + lineTo(12.1f, 8.0f) + horizontalLineToRelative(6.83f) + arcToRelative(8.02f, 8.02f, 0.0f, false, false, -4.64f, -3.66f) + close() + } + } + return _scan!! + } + +private var _scan: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanCamera.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanCamera.kt new file mode 100644 index 00000000..4ff60c66 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanCamera.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ScanCamera: ImageVector + get() { + if (_scanCamera != null) { + return _scanCamera!! + } + _scanCamera = fluentIcon(name = "Filled.ScanCamera") { + fluentPath { + moveTo(3.0f, 6.5f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 6.5f, 3.0f) + horizontalLineToRelative(1.86f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + lineTo(6.5f, 5.0f) + curveTo(5.67f, 5.0f, 5.0f, 5.67f, 5.0f, 6.5f) + verticalLineToRelative(1.86f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + lineTo(3.0f, 6.5f) + close() + moveTo(14.64f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(1.86f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 21.0f, 6.5f) + verticalLineToRelative(1.86f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(19.0f, 6.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + horizontalLineToRelative(-1.86f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(4.0f, 14.64f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(1.86f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(1.86f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(6.5f, 21.0f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 3.0f, 17.5f) + verticalLineToRelative(-1.86f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(20.0f, 14.64f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(1.86f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.5f, 3.5f) + horizontalLineToRelative(-1.86f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(1.86f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-1.86f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(12.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(10.85f, 7.0f) + curveToRelative(-0.48f, 0.0f, -0.9f, 0.26f, -1.12f, 0.68f) + lineTo(9.24f, 9.0f) + horizontalLineToRelative(-0.57f) + curveTo(7.75f, 9.0f, 7.0f, 9.6f, 7.0f, 10.5f) + verticalLineToRelative(3.86f) + curveToRelative(0.0f, 0.9f, 0.75f, 1.64f, 1.67f, 1.64f) + horizontalLineToRelative(6.66f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.73f, 1.67f, -1.64f) + lineTo(17.0f, 10.5f) + curveToRelative(0.0f, -0.9f, -0.75f, -1.5f, -1.67f, -1.5f) + horizontalLineToRelative(-0.57f) + lineToRelative(-0.49f, -1.32f) + arcTo(1.25f, 1.25f, 0.0f, false, false, 13.15f, 7.0f) + horizontalLineToRelative(-2.3f) + close() + moveTo(12.0f, 14.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, 4.0f) + close() + } + } + return _scanCamera!! + } + +private var _scanCamera: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanDash.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanDash.kt new file mode 100644 index 00000000..040d0812 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanDash.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ScanDash: ImageVector + get() { + if (_scanDash != null) { + return _scanDash!! + } + _scanDash = fluentIcon(name = "Filled.ScanDash") { + fluentPath { + moveTo(6.5f, 3.0f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 3.0f, 6.5f) + verticalLineToRelative(1.86f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + lineTo(5.0f, 6.5f) + curveTo(5.0f, 5.67f, 5.67f, 5.0f, 6.5f, 5.0f) + horizontalLineToRelative(1.86f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + lineTo(6.5f, 3.0f) + close() + moveTo(15.64f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(1.86f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(1.86f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(21.0f, 6.5f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 17.5f, 3.0f) + horizontalLineToRelative(-1.86f) + close() + moveTo(5.0f, 15.64f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(1.86f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 6.5f, 21.0f) + horizontalLineToRelative(1.86f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(6.5f, 19.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 5.0f, 17.5f) + verticalLineToRelative(-1.86f) + close() + moveTo(21.0f, 15.64f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(1.86f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-1.86f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(1.86f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 3.5f, -3.5f) + verticalLineToRelative(-1.86f) + close() + moveTo(8.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(8.0f, 11.0f) + close() + } + } + return _scanDash!! + } + +private var _scanDash: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanObject.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanObject.kt new file mode 100644 index 00000000..04751cd5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanObject.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ScanObject: ImageVector + get() { + if (_scanObject != null) { + return _scanObject!! + } + _scanObject = fluentIcon(name = "Filled.ScanObject") { + fluentPath { + moveTo(3.5f, 5.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) + verticalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-3.0f) + close() + moveTo(20.5f, 5.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.0f) + curveTo(20.55f, 2.0f, 22.0f, 3.46f, 22.0f, 5.25f) + verticalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-3.0f) + close() + moveTo(5.25f, 20.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.0f) + curveTo(2.0f, 20.55f, 3.46f, 22.0f, 5.25f, 22.0f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.0f) + close() + moveTo(20.5f, 18.75f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.0f) + close() + moveTo(13.82f, 8.23f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.64f, 0.0f) + lineToRelative(-3.05f, 4.2f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 8.95f, 16.0f) + horizontalLineToRelative(6.1f) + curveToRelative(1.84f, 0.0f, 2.9f, -2.09f, 1.82f, -3.57f) + lineToRelative(-3.05f, -4.2f) + close() + } + } + return _scanObject!! + } + +private var _scanObject: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanQrCode.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanQrCode.kt new file mode 100644 index 00000000..950c974c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanQrCode.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ScanQrCode: ImageVector + get() { + if (_scanQrCode != null) { + return _scanQrCode!! + } + _scanQrCode = fluentIcon(name = "Filled.ScanQrCode") { + fluentPath { + moveTo(3.0f, 6.5f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 6.5f, 3.0f) + horizontalLineToRelative(1.86f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + lineTo(6.5f, 5.0f) + curveTo(5.67f, 5.0f, 5.0f, 5.67f, 5.0f, 6.5f) + verticalLineToRelative(1.86f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + lineTo(3.0f, 6.5f) + close() + moveTo(14.64f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(1.86f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 21.0f, 6.5f) + verticalLineToRelative(1.86f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(19.0f, 6.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + horizontalLineToRelative(-1.86f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(4.0f, 14.64f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(1.86f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(1.86f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(6.5f, 21.0f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 3.0f, 17.5f) + verticalLineToRelative(-1.86f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(20.0f, 14.64f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(1.86f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.5f, 3.5f) + horizontalLineToRelative(-1.86f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(1.86f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-1.86f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(10.0f, 7.0f) + lineTo(7.0f, 7.0f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(4.0f) + lineTo(7.0f, 14.0f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(3.0f) + lineTo(17.0f, 7.0f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(-4.0f) + lineTo(10.0f, 7.0f) + close() + } + } + return _scanQrCode!! + } + +private var _scanQrCode: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanTable.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanTable.kt new file mode 100644 index 00000000..cccebfab --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanTable.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ScanTable: ImageVector + get() { + if (_scanTable != null) { + return _scanTable!! + } + _scanTable = fluentIcon(name = "Filled.ScanTable") { + fluentPath { + moveTo(2.75f, 15.0f) + curveToRelative(0.38f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) + verticalLineToRelative(3.6f) + lineToRelative(0.01f, 0.13f) + curveToRelative(0.06f, 0.59f, 0.53f, 1.06f, 1.12f, 1.12f) + horizontalLineToRelative(3.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(4.58f, 22.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 19.43f) + lineTo(2.0f, 15.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) + close() + moveTo(21.25f, 15.0f) + curveToRelative(0.38f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) + verticalLineToRelative(3.6f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 19.42f, 22.0f) + horizontalLineToRelative(-3.66f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(3.6f) + curveToRelative(0.64f, 0.0f, 1.18f, -0.49f, 1.24f, -1.12f) + verticalLineToRelative(-3.63f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.76f, -0.75f) + close() + moveTo(18.0f, 11.0f) + verticalLineToRelative(4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.82f, 3.0f) + lineTo(9.0f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -2.82f) + lineTo(6.0f, 11.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(15.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) + lineTo(18.0f, 9.5f) + lineTo(6.0f, 9.5f) + lineTo(6.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.82f, -3.0f) + lineTo(15.0f, 6.0f) + close() + moveTo(8.25f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-3.6f) + curveToRelative(-0.65f, 0.0f, -1.18f, 0.5f, -1.25f, 1.12f) + verticalLineToRelative(3.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-3.6f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.58f, -2.74f) + lineTo(4.75f, 2.0f) + horizontalLineToRelative(3.5f) + close() + moveTo(19.25f, 2.0f) + horizontalLineToRelative(0.16f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 4.59f) + verticalLineToRelative(3.77f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, 0.0f) + verticalLineToRelative(-3.6f) + lineToRelative(-0.01f, -0.13f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.12f, -1.11f) + lineToRelative(-0.12f, -0.01f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.6f) + close() + } + } + return _scanTable!! + } + +private var _scanTable: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanText.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanText.kt new file mode 100644 index 00000000..b4a9169b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanText.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ScanText: ImageVector + get() { + if (_scanText != null) { + return _scanText!! + } + _scanText = fluentIcon(name = "Filled.ScanText") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + lineTo(3.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + lineTo(5.0f, 6.25f) + curveTo(5.0f, 5.56f, 5.56f, 5.0f, 6.25f, 5.0f) + lineTo(8.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(16.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(1.75f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + lineTo(19.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(16.0f, 3.0f) + close() + moveTo(5.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(1.75f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + lineTo(8.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(6.25f, 19.0f) + curveTo(5.56f, 19.0f, 5.0f, 18.44f, 5.0f, 17.75f) + lineTo(5.0f, 16.0f) + close() + moveTo(21.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(1.75f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + lineTo(16.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(1.75f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 16.0f) + close() + moveTo(8.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(8.0f, 7.0f) + close() + moveTo(7.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(8.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(8.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(8.0f, 15.0f) + close() + } + } + return _scanText!! + } + +private var _scanText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanThumbUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanThumbUp.kt new file mode 100644 index 00000000..9ca5d164 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanThumbUp.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ScanThumbUp: ImageVector + get() { + if (_scanThumbUp != null) { + return _scanThumbUp!! + } + _scanThumbUp = fluentIcon(name = "Filled.ScanThumbUp") { + fluentPath { + moveTo(3.5f, 5.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) + verticalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-3.0f) + close() + moveTo(20.5f, 5.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.0f) + curveTo(20.55f, 2.0f, 22.0f, 3.46f, 22.0f, 5.25f) + verticalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-3.0f) + close() + moveTo(5.25f, 20.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.0f) + curveTo(2.0f, 20.55f, 3.46f, 22.0f, 5.25f, 22.0f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.0f) + close() + moveTo(20.5f, 18.75f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.0f) + close() + moveTo(11.29f, 6.42f) + curveToRelative(0.26f, -0.61f, 1.06f, -1.4f, 2.18f, -1.11f) + curveToRelative(0.7f, 0.18f, 1.2f, 0.6f, 1.49f, 1.18f) + curveToRelative(0.25f, 0.5f, 0.29f, 1.05f, 0.3f, 1.46f) + curveToRelative(0.0f, 0.4f, -0.06f, 0.83f, -0.14f, 1.22f) + horizontalLineToRelative(0.2f) + curveToRelative(1.55f, 0.0f, 2.82f, 1.43f, 2.33f, 2.99f) + lineTo(16.5f, 15.8f) + arcToRelative(2.88f, 2.88f, 0.0f, false, true, -3.58f, 1.82f) + lineTo(8.4f, 16.3f) + arcToRelative(2.4f, 2.4f, 0.0f, false, true, -1.56f, -1.4f) + lineToRelative(-0.44f, -1.08f) + arcToRelative(2.27f, 2.27f, 0.0f, false, true, 1.06f, -2.84f) + lineTo(9.0f, 10.14f) + lineToRelative(0.03f, -0.03f) + lineToRelative(0.26f, -0.24f) + curveToRelative(0.24f, -0.25f, 0.6f, -0.7f, 0.96f, -1.43f) + lineToRelative(0.46f, -0.87f) + curveToRelative(0.22f, -0.4f, 0.38f, -0.7f, 0.57f, -1.15f) + close() + } + } + return _scanThumbUp!! + } + +private var _scanThumbUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanThumbUpOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanThumbUpOff.kt new file mode 100644 index 00000000..fd148256 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanThumbUpOff.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ScanThumbUpOff: ImageVector + get() { + if (_scanThumbUpOff != null) { + return _scanThumbUpOff!! + } + _scanThumbUpOff = fluentIcon(name = "Filled.ScanThumbUpOff") { + fluentPath { + moveTo(2.48f, 3.54f) + curveToRelative(-0.3f, 0.5f, -0.48f, 1.08f, -0.48f, 1.71f) + verticalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -0.2f, 0.04f, -0.4f, 0.1f, -0.59f) + lineToRelative(5.45f, 5.45f) + horizontalLineToRelative(-0.01f) + lineToRelative(-0.03f, 0.03f) + lineToRelative(-1.54f, 0.85f) + arcToRelative(2.27f, 2.27f, 0.0f, false, false, -1.06f, 2.84f) + lineToRelative(0.44f, 1.09f) + arcToRelative(2.4f, 2.4f, 0.0f, false, false, 1.56f, 1.39f) + lineToRelative(4.5f, 1.32f) + curveToRelative(1.06f, 0.3f, 2.2f, 0.0f, 2.93f, -0.73f) + lineToRelative(3.5f, 3.5f) + curveToRelative(-0.19f, 0.06f, -0.38f, 0.1f, -0.59f, 0.1f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.0f) + curveToRelative(0.63f, 0.0f, 1.21f, -0.18f, 1.7f, -0.48f) + lineToRelative(0.27f, 0.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(0.26f, 0.26f) + close() + moveTo(10.73f, 7.54f) + lineTo(17.09f, 13.91f) + lineTo(17.65f, 12.16f) + curveToRelative(0.49f, -1.56f, -0.78f, -3.0f, -2.34f, -3.0f) + horizontalLineToRelative(-0.19f) + curveToRelative(0.08f, -0.38f, 0.15f, -0.81f, 0.14f, -1.2f) + curveToRelative(-0.01f, -0.42f, -0.05f, -0.97f, -0.3f, -1.47f) + curveToRelative(-0.29f, -0.58f, -0.8f, -1.0f, -1.5f, -1.18f) + curveToRelative(-1.1f, -0.29f, -1.9f, 0.5f, -2.17f, 1.11f) + curveToRelative(-0.19f, 0.44f, -0.35f, 0.74f, -0.56f, 1.13f) + close() + moveTo(20.5f, 17.32f) + lineTo(22.0f, 18.82f) + verticalLineToRelative(-3.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.57f) + close() + moveTo(5.18f, 2.0f) + lineToRelative(1.5f, 1.5f) + horizontalLineToRelative(1.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(5.18f, 2.0f) + close() + moveTo(20.5f, 5.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.0f) + curveTo(20.55f, 2.0f, 22.0f, 3.46f, 22.0f, 5.25f) + verticalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-3.0f) + close() + moveTo(5.25f, 20.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.0f) + curveTo(2.0f, 20.55f, 3.46f, 22.0f, 5.25f, 22.0f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.0f) + close() + } + } + return _scanThumbUpOff!! + } + +private var _scanThumbUpOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanType.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanType.kt new file mode 100644 index 00000000..c63b6e47 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanType.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ScanType: ImageVector + get() { + if (_scanType != null) { + return _scanType!! + } + _scanType = fluentIcon(name = "Filled.ScanType") { + fluentPath { + moveTo(5.5f, 4.0f) + curveTo(4.67f, 4.0f, 4.0f, 4.67f, 4.0f, 5.5f) + lineTo(4.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + lineTo(2.0f, 5.5f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 5.5f, 2.0f) + lineTo(8.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + lineTo(5.5f, 4.0f) + close() + moveTo(5.5f, 20.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 4.0f, 18.5f) + lineTo(4.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(2.5f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 5.5f, 22.0f) + lineTo(8.0f, 22.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(5.5f, 20.0f) + close() + moveTo(20.0f, 5.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(16.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(2.5f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 22.0f, 5.5f) + lineTo(22.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(20.0f, 5.5f) + close() + moveTo(18.5f, 20.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + lineTo(20.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(2.5f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.5f, 3.5f) + lineTo(16.0f, 22.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(2.5f) + close() + moveTo(7.75f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(1.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + lineTo(8.75f, 8.0f) + lineTo(11.0f, 8.0f) + verticalLineToRelative(8.0f) + lineTo(9.75f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(13.0f, 16.0f) + lineTo(13.0f, 8.0f) + horizontalLineToRelative(2.25f) + verticalLineToRelative(0.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(17.25f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineToRelative(-8.5f) + close() + } + } + return _scanType!! + } + +private var _scanType: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanTypeCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanTypeCheckmark.kt new file mode 100644 index 00000000..ac138bf4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScanTypeCheckmark.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ScanTypeCheckmark: ImageVector + get() { + if (_scanTypeCheckmark != null) { + return _scanTypeCheckmark!! + } + _scanTypeCheckmark = fluentIcon(name = "Filled.ScanTypeCheckmark") { + fluentPath { + moveTo(5.5f, 4.0f) + curveTo(4.67f, 4.0f, 4.0f, 4.67f, 4.0f, 5.5f) + lineTo(4.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + lineTo(2.0f, 5.5f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 5.5f, 2.0f) + lineTo(8.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + lineTo(5.5f, 4.0f) + close() + moveTo(5.5f, 20.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 4.0f, 18.5f) + lineTo(4.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(2.5f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 5.5f, 22.0f) + lineTo(8.0f, 22.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(5.5f, 20.0f) + close() + moveTo(20.0f, 5.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(16.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(2.5f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 22.0f, 5.5f) + lineTo(22.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(20.0f, 5.5f) + close() + moveTo(7.75f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(1.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + lineTo(8.75f, 8.0f) + lineTo(11.0f, 8.0f) + verticalLineToRelative(8.0f) + lineTo(9.75f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(1.27f) + arcTo(6.48f, 6.48f, 0.0f, false, true, 13.0f, 12.81f) + lineTo(13.0f, 8.0f) + horizontalLineToRelative(2.25f) + verticalLineToRelative(0.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(17.25f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineToRelative(-8.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-3.65f, 3.64f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _scanTypeCheckmark!! + } + +private var _scanTypeCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Scratchpad.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Scratchpad.kt new file mode 100644 index 00000000..7b5196fd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Scratchpad.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Scratchpad: ImageVector + get() { + if (_scratchpad != null) { + return _scratchpad!! + } + _scratchpad = fluentIcon(name = "Filled.Scratchpad") { + fluentPath { + moveTo(17.78f, 2.0f) + arcTo(2.23f, 2.23f, 0.0f, false, true, 20.0f, 4.18f) + verticalLineToRelative(4.08f) + arcTo(4.24f, 4.24f, 0.0f, false, false, 13.51f, 7.0f) + lineTo(8.25f, 7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.13f) + curveToRelative(-0.21f, 0.47f, -0.34f, 0.97f, -0.37f, 1.5f) + lineTo(8.25f, 10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(12.0f, 11.5f) + verticalLineToRelative(0.67f) + arcToRelative(1.74f, 1.74f, 0.0f, false, false, -0.6f, -0.16f) + lineToRelative(-0.15f, -0.01f) + curveToRelative(-0.7f, 0.0f, -1.3f, 0.4f, -1.58f, 1.0f) + lineTo(8.25f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(9.5f, 14.5f) + curveToRelative(0.0f, 3.0f, 1.98f, 5.53f, 4.76f, 6.36f) + lineToRelative(0.24f, 0.07f) + verticalLineToRelative(0.32f) + curveToRelative(0.0f, 0.27f, 0.06f, 0.52f, 0.17f, 0.75f) + lineTo(6.25f, 22.0f) + arcToRelative(2.29f, 2.29f, 0.0f, false, true, -2.24f, -2.03f) + lineTo(4.0f, 19.81f) + lineTo(4.0f, 4.2f) + curveToRelative(0.0f, -0.93f, 0.82f, -2.1f, 2.08f, -2.18f) + lineTo(6.25f, 2.0f) + horizontalLineToRelative(11.53f) + close() + moveTo(21.25f, 13.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(0.75f) + arcToRelative(5.64f, 5.64f, 0.0f, false, true, -5.0f, 5.6f) + verticalLineToRelative(1.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(15.5f, 20.1f) + arcToRelative(5.65f, 5.65f, 0.0f, false, true, -5.0f, -5.36f) + verticalLineToRelative(-0.99f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.85f) + curveToRelative(0.0f, 2.35f, 1.9f, 4.15f, 4.25f, 4.15f) + curveToRelative(2.28f, 0.0f, 4.13f, -1.7f, 4.24f, -3.94f) + lineToRelative(0.01f, -0.21f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(16.25f, 7.0f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(4.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.5f, 0.0f) + verticalLineToRelative(-4.0f) + curveTo(13.0f, 8.45f, 14.46f, 7.0f, 16.25f, 7.0f) + close() + } + } + return _scratchpad!! + } + +private var _scratchpad: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScreenSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScreenSearch.kt new file mode 100644 index 00000000..220d5bcd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ScreenSearch.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ScreenSearch: ImageVector + get() { + if (_screenSearch != null) { + return _screenSearch!! + } + _screenSearch = fluentIcon(name = "Filled.ScreenSearch") { + fluentPath { + moveTo(2.0f, 7.25f) + curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) + horizontalLineToRelative(13.5f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-6.28f) + lineToRelative(-2.04f, -2.05f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 2.0f, 11.25f) + verticalLineToRelative(-4.0f) + close() + moveTo(5.5f, 20.0f) + curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) + lineToRelative(2.62f, 2.61f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.61f, -2.61f) + arcTo(4.5f, 4.5f, 0.0f, true, false, 5.5f, 20.0f) + close() + moveTo(5.5f, 18.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) + close() + } + } + return _screenSearch!! + } + +private var _screenSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Screenshot.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Screenshot.kt new file mode 100644 index 00000000..5ca02742 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Screenshot.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Screenshot: ImageVector + get() { + if (_screenshot != null) { + return _screenshot!! + } + _screenshot = fluentIcon(name = "Filled.Screenshot") { + fluentPath { + moveTo(17.25f, 3.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 21.0f, 6.75f) + verticalLineToRelative(10.5f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 17.25f, 21.0f) + lineTo(6.75f, 21.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 3.0f, 17.25f) + lineTo(3.0f, 6.75f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 6.75f, 3.0f) + horizontalLineToRelative(10.5f) + close() + moveTo(17.25f, 13.0f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + lineTo(16.5f, 16.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.41f, 0.5f) + horizontalLineToRelative(-2.34f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + lineTo(16.0f, 18.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -1.85f) + verticalLineToRelative(-2.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(6.75f, 13.0f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + lineTo(6.0f, 16.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.85f, 2.0f) + horizontalLineToRelative(2.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + lineTo(8.0f, 16.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.41f) + verticalLineToRelative(-2.34f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(10.25f, 6.0f) + horizontalLineToRelative(-2.4f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.84f, 1.84f) + lineTo(6.0f, 8.0f) + verticalLineToRelative(2.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(7.5f, 7.91f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.41f, -0.4f) + lineTo(8.0f, 7.5f) + horizontalLineToRelative(2.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(16.0f, 6.0f) + horizontalLineToRelative(-2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + lineTo(16.0f, 7.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.5f, 0.41f) + verticalLineToRelative(2.34f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.1f) + lineTo(18.0f, 8.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.85f, -2.0f) + lineTo(16.0f, 6.0f) + close() + } + } + return _screenshot!! + } + +private var _screenshot: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SearchInfo.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SearchInfo.kt new file mode 100644 index 00000000..140e8137 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SearchInfo.kt @@ -0,0 +1,41 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SearchInfo: ImageVector + get() { + if (_searchInfo != null) { + return _searchInfo!! + } + _searchInfo = fluentIcon(name = "Filled.SearchInfo") { + fluentPath { + moveTo(17.25f, 10.0f) + arcToRelative(7.25f, 7.25f, 0.0f, true, false, -2.68f, 5.63f) + lineToRelative(4.9f, 4.9f) + lineToRelative(0.08f, 0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, -1.13f) + lineToRelative(-4.9f, -4.9f) + arcTo(7.22f, 7.22f, 0.0f, false, false, 17.25f, 10.0f) + close() + moveTo(11.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(10.0f, 9.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _searchInfo!! + } + +private var _searchInfo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SearchSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SearchSquare.kt new file mode 100644 index 00000000..9400f1d1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SearchSquare.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SearchSquare: ImageVector + get() { + if (_searchSquare != null) { + return _searchSquare!! + } + _searchSquare = fluentIcon(name = "Filled.SearchSquare") { + fluentPath { + moveTo(11.0f, 14.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) + close() + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(11.0f, 15.5f) + curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) + lineToRelative(2.62f, 2.61f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.61f, -2.61f) + arcTo(4.5f, 4.5f, 0.0f, true, false, 11.0f, 15.5f) + close() + } + } + return _searchSquare!! + } + +private var _searchSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SearchVisual.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SearchVisual.kt new file mode 100644 index 00000000..b954d3fe --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SearchVisual.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SearchVisual: ImageVector + get() { + if (_searchVisual != null) { + return _searchVisual!! + } + _searchVisual = fluentIcon(name = "Filled.SearchVisual") { + fluentPath { + moveTo(3.0f, 6.5f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 6.5f, 3.0f) + lineTo(9.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + lineTo(6.5f, 5.0f) + curveTo(5.67f, 5.0f, 5.0f, 5.67f, 5.0f, 6.5f) + lineTo(5.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(3.0f, 6.5f) + close() + moveTo(21.0f, 17.5f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.5f, 3.5f) + lineTo(15.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(2.5f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + lineTo(19.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(2.5f) + close() + moveTo(21.0f, 6.5f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 17.5f, 3.0f) + lineTo(15.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(2.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + lineTo(19.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(21.0f, 6.5f) + close() + moveTo(6.5f, 21.0f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 3.0f, 17.5f) + lineTo(3.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + lineTo(9.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(6.5f, 21.0f) + close() + moveTo(12.0f, 15.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) + close() + moveTo(7.5f, 8.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + } + } + return _searchVisual!! + } + +private var _searchVisual: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SelectAllOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SelectAllOff.kt new file mode 100644 index 00000000..33ed3c16 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SelectAllOff.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SelectAllOff: ImageVector + get() { + if (_selectAllOff != null) { + return _selectAllOff!! + } + _selectAllOff = fluentIcon(name = "Filled.SelectAllOff") { + fluentPath { + moveTo(20.5f, 5.63f) + curveToRelative(0.87f, 0.3f, 1.5f, 1.14f, 1.5f, 2.12f) + verticalLineToRelative(10.0f) + curveTo(22.0f, 20.1f, 20.1f, 22.0f, 17.75f, 22.0f) + horizontalLineToRelative(-10.0f) + curveToRelative(-0.98f, 0.0f, -1.82f, -0.63f, -2.12f, -1.5f) + horizontalLineToRelative(12.12f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, -2.75f) + verticalLineTo(5.63f) + close() + moveTo(17.25f, 2.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(13.0f) + curveToRelative(0.0f, 1.24f, -1.01f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-13.0f) + curveTo(3.01f, 19.5f, 2.0f, 18.49f, 2.0f, 17.25f) + verticalLineToRelative(-13.0f) + curveTo(2.0f, 3.01f, 3.0f, 2.0f, 4.25f, 2.0f) + horizontalLineToRelative(13.0f) + close() + } + } + return _selectAllOff!! + } + +private var _selectAllOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SelectAllOn.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SelectAllOn.kt new file mode 100644 index 00000000..9ed74c5d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SelectAllOn.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SelectAllOn: ImageVector + get() { + if (_selectAllOn != null) { + return _selectAllOn!! + } + _selectAllOn = fluentIcon(name = "Filled.SelectAllOn") { + fluentPath { + moveTo(20.5f, 5.63f) + curveToRelative(0.87f, 0.3f, 1.5f, 1.14f, 1.5f, 2.12f) + verticalLineToRelative(10.0f) + curveTo(22.0f, 20.1f, 20.1f, 22.0f, 17.75f, 22.0f) + horizontalLineToRelative(-10.0f) + curveToRelative(-0.98f, 0.0f, -1.82f, -0.63f, -2.12f, -1.5f) + horizontalLineToRelative(12.12f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, -2.75f) + lineTo(20.5f, 5.63f) + close() + moveTo(17.25f, 2.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(13.0f) + curveToRelative(0.0f, 1.24f, -1.01f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-13.0f) + curveTo(3.01f, 19.5f, 2.0f, 18.49f, 2.0f, 17.25f) + verticalLineToRelative(-13.0f) + curveTo(2.0f, 3.01f, 3.0f, 2.0f, 4.25f, 2.0f) + horizontalLineToRelative(13.0f) + close() + moveTo(13.47f, 7.47f) + lineTo(9.58f, 11.36f) + lineTo(8.6f, 10.05f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.2f, 0.9f) + lineToRelative(1.5f, 2.0f) + curveToRelative(0.27f, 0.37f, 0.8f, 0.4f, 1.13f, 0.08f) + lineToRelative(4.5f, -4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + close() + } + } + return _selectAllOn!! + } + +private var _selectAllOn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SelectObject.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SelectObject.kt new file mode 100644 index 00000000..1b827a5b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SelectObject.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SelectObject: ImageVector + get() { + if (_selectObject != null) { + return _selectObject!! + } + _selectObject = fluentIcon(name = "Filled.SelectObject") { + fluentPath { + moveTo(7.0f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(8.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(9.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + close() + moveTo(5.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(6.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + moveTo(19.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(20.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + moveTo(9.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(9.0f, 20.0f) + close() + moveTo(5.0f, 21.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) + close() + moveTo(21.0f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(19.0f, 21.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) + close() + } + } + return _selectObject!! + } + +private var _selectObject: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SelectObjectSkew.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SelectObjectSkew.kt new file mode 100644 index 00000000..5f3b1ae0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SelectObjectSkew.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SelectObjectSkew: ImageVector + get() { + if (_selectObjectSkew != null) { + return _selectObjectSkew!! + } + _selectObjectSkew = fluentIcon(name = "Filled.SelectObjectSkew") { + fluentPath { + moveTo(18.59f, 6.41f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 22.0f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, -3.41f, 1.41f) + close() + moveTo(14.27f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 3.46f, -2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -3.46f, 2.0f) + close() + moveTo(4.0f, 21.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, 4.0f) + close() + moveTo(6.59f, 6.41f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 10.0f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.41f, 3.41f) + close() + moveTo(3.82f, 16.01f) + lineTo(6.26f, 7.45f) + arcToRelative(2.99f, 2.99f, 0.0f, false, false, 1.92f, 0.54f) + lineToRelative(-2.44f, 8.56f) + arcToRelative(2.99f, 2.99f, 0.0f, false, false, -1.92f, -0.54f) + close() + moveTo(17.17f, 6.0f) + horizontalLineToRelative(-6.34f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -2.0f) + horizontalLineToRelative(6.34f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(13.17f, 20.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -2.0f) + lineTo(6.83f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 2.0f) + horizontalLineToRelative(6.34f) + close() + moveTo(15.82f, 16.0f) + lineTo(18.26f, 7.45f) + arcToRelative(2.99f, 2.99f, 0.0f, false, false, 1.92f, 0.54f) + lineToRelative(-2.44f, 8.56f) + arcToRelative(2.99f, 2.99f, 0.0f, false, false, -1.92f, -0.54f) + close() + } + } + return _selectObjectSkew!! + } + +private var _selectObjectSkew: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SelectObjectSkewDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SelectObjectSkewDismiss.kt new file mode 100644 index 00000000..ce595dfc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SelectObjectSkewDismiss.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SelectObjectSkewDismiss: ImageVector + get() { + if (_selectObjectSkewDismiss != null) { + return _selectObjectSkewDismiss!! + } + _selectObjectSkewDismiss = fluentIcon(name = "Filled.SelectObjectSkewDismiss") { + fluentPath { + moveTo(18.59f, 6.41f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 22.0f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, -3.44f, 1.4f) + lineToRelative(0.03f, 0.01f) + close() + moveTo(2.0f, 19.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -4.0f, 0.0f) + close() + moveTo(6.59f, 6.41f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 10.0f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.44f, 3.4f) + lineToRelative(0.03f, 0.01f) + close() + moveTo(6.26f, 7.45f) + lineTo(3.82f, 16.0f) + arcToRelative(3.05f, 3.05f, 0.0f, false, true, 1.92f, 0.54f) + lineTo(8.18f, 8.0f) + arcToRelative(3.05f, 3.05f, 0.0f, false, true, -1.92f, -0.54f) + close() + moveTo(17.17f, 6.0f) + horizontalLineToRelative(-6.34f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -2.0f) + horizontalLineToRelative(6.34f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(11.5f, 20.0f) + arcToRelative(6.46f, 6.46f, 0.0f, false, true, -0.48f, -2.0f) + horizontalLineToRelative(-4.2f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 2.0f) + horizontalLineToRelative(4.68f) + close() + moveTo(20.18f, 8.0f) + lineTo(19.26f, 11.24f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -2.02f, -0.24f) + lineToRelative(1.02f, -3.55f) + arcToRelative(2.99f, 2.99f, 0.0f, false, false, 1.92f, 0.54f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-1.64f, -1.65f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.65f, 1.64f) + lineToRelative(-1.65f, -1.64f) + close() + } + } + return _selectObjectSkewDismiss!! + } + +private var _selectObjectSkewDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SelectObjectSkewEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SelectObjectSkewEdit.kt new file mode 100644 index 00000000..b09ecef7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SelectObjectSkewEdit.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SelectObjectSkewEdit: ImageVector + get() { + if (_selectObjectSkewEdit != null) { + return _selectObjectSkewEdit!! + } + _selectObjectSkewEdit = fluentIcon(name = "Filled.SelectObjectSkewEdit") { + fluentPath { + moveTo(18.59f, 6.41f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 22.0f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, -3.44f, 1.4f) + lineToRelative(0.03f, 0.01f) + close() + moveTo(2.0f, 19.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -4.0f, 0.0f) + close() + moveTo(6.59f, 6.41f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 10.0f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.44f, 3.4f) + lineToRelative(0.03f, 0.01f) + close() + moveTo(6.26f, 7.45f) + lineTo(3.82f, 16.0f) + arcToRelative(3.05f, 3.05f, 0.0f, false, true, 1.92f, 0.54f) + lineTo(8.18f, 8.0f) + arcToRelative(3.05f, 3.05f, 0.0f, false, true, -1.92f, -0.54f) + close() + moveTo(17.17f, 6.0f) + horizontalLineToRelative(-6.34f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -2.0f) + horizontalLineToRelative(6.34f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(11.52f, 19.58f) + curveToRelative(0.15f, -0.6f, 0.44f, -1.13f, 0.84f, -1.58f) + lineTo(6.83f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 2.0f) + horizontalLineToRelative(4.59f) + lineToRelative(0.1f, -0.42f) + close() + moveTo(20.18f, 7.99f) + lineTo(19.22f, 11.36f) + curveToRelative(-0.3f, 0.15f, -0.58f, 0.35f, -0.83f, 0.6f) + lineToRelative(-1.99f, 2.0f) + lineToRelative(1.86f, -6.51f) + arcToRelative(2.99f, 2.99f, 0.0f, false, false, 1.92f, 0.54f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _selectObjectSkewEdit!! + } + +private var _selectObjectSkewEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SendClock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SendClock.kt new file mode 100644 index 00000000..410ba089 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SendClock.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SendClock: ImageVector + get() { + if (_sendClock != null) { + return _sendClock!! + } + _sendClock = fluentIcon(name = "Filled.SendClock") { + fluentPath { + moveToRelative(12.81f, 12.2f) + lineToRelative(-7.53f, 1.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.38f, 0.32f) + lineToRelative(-2.6f, 6.96f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.03f, 0.94f) + lineToRelative(7.68f, -3.84f) + lineToRelative(-0.01f, -0.33f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, 10.6f, -5.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.27f, -1.12f) + lineToRelative(-18.0f, -9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.03f, 0.94f) + lineToRelative(2.6f, 6.96f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.38f, 0.32f) + lineToRelative(7.53f, 1.25f) + arcToRelative(0.2f, 0.2f, 0.0f, false, true, 0.0f, 0.4f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(19.5f, 17.5f) + horizontalLineToRelative(-2.0f) + lineTo(17.5f, 15.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + close() + } + } + return _sendClock!! + } + +private var _sendClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SendCopy.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SendCopy.kt new file mode 100644 index 00000000..92d0a95a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SendCopy.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SendCopy: ImageVector + get() { + if (_sendCopy != null) { + return _sendCopy!! + } + _sendCopy = fluentIcon(name = "Filled.SendCopy") { + fluentPath { + moveTo(20.0f, 11.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(21.0f, 17.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, -5.27f, 5.5f) + lineTo(8.25f, 22.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.45f, -2.01f) + horizontalLineToRelative(2.4f) + lineToRelative(0.05f, 0.01f) + horizontalLineToRelative(7.25f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 3.5f, -3.3f) + verticalLineToRelative(-4.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(17.0f, 9.49f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + verticalLineToRelative(6.62f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.34f, 2.5f) + lineTo(5.5f, 19.49f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 3.0f, 17.15f) + lineTo(3.0f, 10.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.1f) + verticalLineToRelative(6.6f) + curveToRelative(0.0f, 0.24f, 0.17f, 0.45f, 0.4f, 0.49f) + horizontalLineToRelative(10.1f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.49f, -0.4f) + verticalLineToRelative(-6.6f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(6.3f, 5.79f) + lineToRelative(3.49f, -3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) + lineToRelative(0.1f, 0.08f) + lineToRelative(3.5f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 1.5f) + lineToRelative(-0.1f, -0.08f) + lineToRelative(-1.8f, -1.8f) + lineToRelative(0.01f, 8.84f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + horizontalLineToRelative(-0.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + lineTo(9.5f, 5.41f) + lineToRelative(-1.8f, 1.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.31f, 0.08f) + lineToRelative(-0.1f, -0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.32f) + lineToRelative(0.08f, -0.1f) + lineToRelative(3.5f, -3.5f) + lineToRelative(-3.5f, 3.5f) + close() + } + } + return _sendCopy!! + } + +private var _sendCopy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SerialPort.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SerialPort.kt new file mode 100644 index 00000000..3558b762 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SerialPort.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SerialPort: ImageVector + get() { + if (_serialPort != null) { + return _serialPort!! + } + _serialPort = fluentIcon(name = "Filled.SerialPort") { + fluentPath { + moveTo(2.23f, 10.39f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.68f, -3.4f) + horizontalLineToRelative(14.18f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.68f, 3.4f) + lineToRelative(-1.08f, 4.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.02f, 17.0f) + lineTo(5.98f, 17.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.68f, -2.11f) + lineToRelative(-1.07f, -4.5f) + close() + moveTo(7.0f, 11.5f) + arcTo(0.75f, 0.75f, 0.0f, true, false, 7.0f, 10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(10.25f, 10.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + close() + moveTo(8.25f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(11.5f, 13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + close() + moveTo(13.25f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(16.5f, 13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + close() + moveTo(12.0f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(15.25f, 10.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + close() + moveTo(17.0f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + } + } + return _serialPort!! + } + +private var _serialPort: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Server.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Server.kt new file mode 100644 index 00000000..292137a7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Server.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Server: ImageVector + get() { + if (_server != null) { + return _server!! + } + _server = fluentIcon(name = "Filled.Server") { + fluentPath { + moveTo(9.0f, 2.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(14.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) + horizontalLineToRelative(6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) + lineTo(18.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + lineTo(9.0f, 2.0f) + close() + moveTo(8.5f, 6.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(8.5f, 17.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(8.5f, 14.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _server!! + } + +private var _server: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ServiceBell.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ServiceBell.kt new file mode 100644 index 00000000..8abecbf0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ServiceBell.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ServiceBell: ImageVector + get() { + if (_serviceBell != null) { + return _serviceBell!! + } + _serviceBell = fluentIcon(name = "Filled.ServiceBell") { + fluentPath { + moveTo(10.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) + verticalLineToRelative(1.24f) + arcToRelative(8.24f, 8.24f, 0.0f, false, true, 6.25f, 8.0f) + curveToRelative(0.0f, 0.42f, -0.34f, 0.76f, -0.75f, 0.76f) + horizontalLineToRelative(-15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + curveToRelative(0.0f, -3.86f, 2.67f, -7.1f, 6.25f, -8.0f) + lineTo(10.0f, 4.0f) + close() + moveTo(13.25f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + curveToRelative(1.25f, 0.0f, 2.14f, 0.62f, 2.89f, 1.68f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.22f, -0.86f) + arcToRelative(4.87f, 4.87f, 0.0f, false, false, -4.11f, -2.32f) + close() + moveTo(2.0f, 17.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(16.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) + lineTo(4.0f, 19.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + close() + } + } + return _serviceBell!! + } + +private var _serviceBell: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SettingsChat.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SettingsChat.kt new file mode 100644 index 00000000..9846963f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SettingsChat.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SettingsChat: ImageVector + get() { + if (_settingsChat != null) { + return _settingsChat!! + } + _settingsChat = fluentIcon(name = "Filled.SettingsChat") { + fluentPath { + moveTo(14.2f, 2.5f) + curveToRelative(-0.72f, -0.16f, -1.45f, -0.24f, -2.19f, -0.25f) + curveToRelative(-0.75f, 0.0f, -1.48f, 0.1f, -2.2f, 0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.58f, 0.65f) + lineToRelative(-0.17f, 1.53f) + arcTo(1.39f, 1.39f, 0.0f, false, true, 7.13f, 5.8f) + lineToRelative(-1.4f, -0.62f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.85f, 0.17f) + arcToRelative(9.8f, 9.8f, 0.0f, false, false, -2.2f, 3.8f) + curveToRelative(-0.1f, 0.3f, 0.0f, 0.63f, 0.27f, 0.82f) + lineToRelative(1.24f, 0.92f) + arcToRelative(1.38f, 1.38f, 0.0f, false, true, 0.0f, 2.22f) + lineToRelative(-1.24f, 0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.28f, 0.82f) + arcToRelative(9.8f, 9.8f, 0.0f, false, false, 2.2f, 3.8f) + curveToRelative(0.23f, 0.23f, 0.57f, 0.3f, 0.86f, 0.18f) + lineToRelative(1.4f, -0.62f) + arcToRelative(1.38f, 1.38f, 0.0f, false, true, 1.93f, 1.11f) + lineToRelative(0.17f, 1.52f) + curveToRelative(0.03f, 0.32f, 0.26f, 0.58f, 0.57f, 0.65f) + curveToRelative(0.45f, 0.1f, 0.91f, 0.18f, 1.37f, 0.22f) + lineToRelative(0.45f, -1.45f) + arcToRelative(6.48f, 6.48f, 0.0f, false, true, -0.1f, -5.3f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 3.44f, -3.45f) + arcToRelative(6.48f, 6.48f, 0.0f, false, true, 4.49f, -0.21f) + curveToRelative(0.09f, -0.16f, 0.21f, -0.3f, 0.37f, -0.41f) + lineToRelative(1.24f, -0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.27f, -0.82f) + arcToRelative(9.8f, 9.8f, 0.0f, false, false, -2.2f, -3.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.86f, -0.17f) + lineToRelative(-1.4f, 0.61f) + arcToRelative(1.38f, 1.38f, 0.0f, false, true, -1.93f, -1.12f) + lineToRelative(-0.16f, -1.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.59f, -0.65f) + close() + moveTo(19.28f, 12.3f) + arcTo(5.49f, 5.49f, 0.0f, false, false, 12.0f, 17.5f) + curveToRelative(0.0f, 0.97f, 0.25f, 1.88f, 0.69f, 2.67f) + lineToRelative(-0.67f, 2.19f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.63f, 0.62f) + lineToRelative(2.18f, -0.67f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 4.45f, -10.02f) + close() + moveTo(15.5f, 18.0f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + close() + moveTo(19.5f, 17.0f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + horizontalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + close() + } + } + return _settingsChat!! + } + +private var _settingsChat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShapeExclude.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShapeExclude.kt new file mode 100644 index 00000000..072129d8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShapeExclude.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShapeExclude: ImageVector + get() { + if (_shapeExclude != null) { + return _shapeExclude!! + } + _shapeExclude = fluentIcon(name = "Filled.ShapeExclude") { + fluentPath { + moveTo(5.25f, 2.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) + verticalLineToRelative(8.0f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineTo(7.5f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(8.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-8.0f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineTo(16.5f) + verticalLineTo(5.25f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-8.0f) + close() + moveTo(16.5f, 7.5f) + verticalLineToRelative(5.75f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineTo(7.5f) + verticalLineToRelative(-5.75f) + curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) + horizontalLineToRelative(5.75f) + close() + } + } + return _shapeExclude!! + } + +private var _shapeExclude: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShapeIntersect.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShapeIntersect.kt new file mode 100644 index 00000000..3f4cff40 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShapeIntersect.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShapeIntersect: ImageVector + get() { + if (_shapeIntersect != null) { + return _shapeIntersect!! + } + _shapeIntersect = fluentIcon(name = "Filled.ShapeIntersect") { + fluentPath { + moveTo(2.0f, 5.25f) + curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) + horizontalLineToRelative(8.0f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + lineTo(16.5f, 7.5f) + horizontalLineToRelative(2.25f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(8.0f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-8.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.25f, -3.25f) + lineTo(7.5f, 16.5f) + lineTo(5.25f, 16.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 13.25f) + verticalLineToRelative(-8.0f) + close() + moveTo(15.0f, 5.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-8.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(8.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(7.5f, 15.0f) + verticalLineToRelative(-4.25f) + arcToRelative(3.23f, 3.23f, 0.0f, false, true, 3.25f, -3.25f) + lineTo(15.0f, 7.5f) + lineTo(15.0f, 5.25f) + close() + moveTo(16.0f, 14.98f) + arcTo(3.38f, 3.38f, 0.0f, false, true, 14.98f, 16.0f) + curveToRelative(-0.5f, 0.32f, -1.1f, 0.5f, -1.73f, 0.5f) + lineTo(9.0f, 16.5f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(8.0f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-8.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(16.5f, 9.0f) + verticalLineToRelative(4.25f) + curveToRelative(0.0f, 0.64f, -0.18f, 1.23f, -0.5f, 1.73f) + close() + } + } + return _shapeIntersect!! + } + +private var _shapeIntersect: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShapeSubtract.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShapeSubtract.kt new file mode 100644 index 00000000..56e7aca4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShapeSubtract.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShapeSubtract: ImageVector + get() { + if (_shapeSubtract != null) { + return _shapeSubtract!! + } + _shapeSubtract = fluentIcon(name = "Filled.ShapeSubtract") { + fluentPath { + moveTo(3.0f, 2.9f) + curveToRelative(-0.62f, 0.6f, -1.0f, 1.43f, -1.0f, 2.35f) + verticalLineToRelative(8.0f) + arcToRelative(3.3f, 3.3f, 0.0f, false, false, 0.56f, 1.82f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 2.69f, 1.43f) + lineTo(7.5f, 16.5f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(8.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-8.0f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + lineTo(16.5f, 7.5f) + lineTo(16.5f, 5.25f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-8.0f) + curveToRelative(-0.87f, 0.0f, -1.67f, 0.34f, -2.25f, 0.9f) + close() + moveTo(9.0f, 10.75f) + curveTo(9.0f, 9.78f, 9.78f, 9.0f, 10.75f, 9.0f) + horizontalLineToRelative(8.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(8.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-8.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-8.0f) + close() + } + } + return _shapeSubtract!! + } + +private var _shapeSubtract: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShapeUnion.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShapeUnion.kt new file mode 100644 index 00000000..388f2720 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShapeUnion.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShapeUnion: ImageVector + get() { + if (_shapeUnion != null) { + return _shapeUnion!! + } + _shapeUnion = fluentIcon(name = "Filled.ShapeUnion") { + fluentPath { + moveTo(5.25f, 2.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) + verticalLineToRelative(8.0f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineTo(7.5f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(8.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-8.0f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineTo(16.5f) + verticalLineTo(5.25f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-8.0f) + close() + } + } + return _shapeUnion!! + } + +private var _shapeUnion: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Shapes.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Shapes.kt new file mode 100644 index 00000000..5466ae7e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Shapes.kt @@ -0,0 +1,39 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Shapes: ImageVector + get() { + if (_shapes != null) { + return _shapes!! + } + _shapes = fluentIcon(name = "Filled.Shapes") { + fluentPath { + moveTo(2.0f, 8.75f) + arcTo(6.75f, 6.75f, 0.0f, false, true, 15.46f, 8.0f) + horizontalLineToRelative(-3.21f) + arcTo(4.25f, 4.25f, 0.0f, false, false, 8.0f, 12.25f) + verticalLineToRelative(3.2f) + arcToRelative(6.75f, 6.75f, 0.0f, false, true, -6.0f, -6.7f) + close() + moveTo(12.25f, 9.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 9.0f, 12.25f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(6.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-6.5f) + curveTo(22.0f, 10.45f, 20.54f, 9.0f, 18.75f, 9.0f) + horizontalLineToRelative(-6.5f) + close() + } + } + return _shapes!! + } + +private var _shapes: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShareAndroid.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShareAndroid.kt new file mode 100644 index 00000000..b388f350 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShareAndroid.kt @@ -0,0 +1,35 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShareAndroid: ImageVector + get() { + if (_shareAndroid != null) { + return _shareAndroid!! + } + _shareAndroid = fluentIcon(name = "Filled.ShareAndroid") { + fluentPath { + moveTo(17.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, -2.15f, 5.1f) + lineTo(9.4f, 11.2f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 1.58f) + lineToRelative(5.45f, 3.12f) + arcTo(2.99f, 2.99f, 0.0f, false, true, 20.0f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, -5.9f, -0.79f) + lineTo(8.66f, 14.1f) + arcTo(2.99f, 2.99f, 0.0f, false, true, 3.5f, 12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 5.15f, -2.1f) + lineTo(14.1f, 6.8f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 17.0f, 3.0f) + close() + } + } + return _shareAndroid!! + } + +private var _shareAndroid: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShareCloseTray.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShareCloseTray.kt new file mode 100644 index 00000000..1151942f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShareCloseTray.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShareCloseTray: ImageVector + get() { + if (_shareCloseTray != null) { + return _shareCloseTray!! + } + _shareCloseTray = fluentIcon(name = "Filled.ShareCloseTray") { + fluentPath { + moveTo(4.25f, 20.0f) + curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) + lineTo(2.0f, 6.25f) + curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) + horizontalLineToRelative(15.5f) + curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(4.25f, 20.0f) + close() + moveTo(12.53f, 16.53f) + lineTo(15.78f, 13.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-1.97f, 1.97f) + lineTo(12.75f, 7.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(6.44f) + lineToRelative(-1.97f, -1.97f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(3.25f, 3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 0.0f) + close() + } + } + return _shareCloseTray!! + } + +private var _shareCloseTray: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShareIos.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShareIos.kt new file mode 100644 index 00000000..86133151 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShareIos.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShareIos: ImageVector + get() { + if (_shareIos != null) { + return _shareIos!! + } + _shareIos = fluentIcon(name = "Filled.ShareIos") { + fluentPath { + moveTo(19.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.99f, 0.88f) + verticalLineTo(18.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -3.8f, 4.0f) + horizontalLineTo(8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -3.8f) + verticalLineTo(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + verticalLineTo(18.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.85f, 2.0f) + horizontalLineTo(16.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.99f, -1.85f) + verticalLineTo(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(6.29f, 7.29f) + lineToRelative(5.0f, -5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) + lineToRelative(0.09f, 0.08f) + lineToRelative(5.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 1.5f) + lineToRelative(-0.09f, -0.09f) + lineToRelative(-3.3f, -3.28f) + verticalLineToRelative(9.83f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + horizontalLineTo(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + verticalLineTo(5.41f) + lineToRelative(-3.3f, 3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.08f) + lineToRelative(-0.1f, -0.09f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.07f, -1.32f) + lineToRelative(0.08f, -0.1f) + lineToRelative(5.0f, -4.99f) + lineToRelative(-5.0f, 5.0f) + close() + } + } + return _shareIos!! + } + +private var _shareIos: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShareScreenPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShareScreenPerson.kt new file mode 100644 index 00000000..4f200a41 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShareScreenPerson.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShareScreenPerson: ImageVector + get() { + if (_shareScreenPerson != null) { + return _shareScreenPerson!! + } + _shareScreenPerson = fluentIcon(name = "Filled.ShareScreenPerson") { + fluentPath { + moveTo(5.25f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) + lineTo(13.0f, 20.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, -0.13f) + verticalLineToRelative(-0.1f) + arcTo(2.77f, 2.77f, 0.0f, false, true, 15.77f, 17.0f) + horizontalLineToRelative(0.28f) + arcToRelative(3.49f, 3.49f, 0.0f, false, true, 2.45f, -6.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 3.5f, 3.5f) + lineTo(22.0f, 7.25f) + curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) + lineTo(5.25f, 4.0f) + close() + moveTo(21.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(23.0f, 19.88f) + curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) + reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _shareScreenPerson!! + } + +private var _shareScreenPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShareScreenPersonOverlay.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShareScreenPersonOverlay.kt new file mode 100644 index 00000000..233a3db5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShareScreenPersonOverlay.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShareScreenPersonOverlay: ImageVector + get() { + if (_shareScreenPersonOverlay != null) { + return _shareScreenPersonOverlay!! + } + _shareScreenPersonOverlay = fluentIcon(name = "Filled.ShareScreenPersonOverlay") { + fluentPath { + moveTo(2.0f, 7.25f) + curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) + horizontalLineToRelative(13.5f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(7.25f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, -5.95f, 2.5f) + horizontalLineToRelative(-0.28f) + arcTo(2.77f, 2.77f, 0.0f, false, false, 13.0f, 19.77f) + verticalLineToRelative(0.1f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 0.13f) + lineTo(5.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + close() + moveTo(5.0f, 8.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + lineTo(12.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(6.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + close() + moveTo(21.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(23.0f, 19.88f) + curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) + reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _shareScreenPersonOverlay!! + } + +private var _shareScreenPersonOverlay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShareScreenPersonOverlayInside.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShareScreenPersonOverlayInside.kt new file mode 100644 index 00000000..e684cd07 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShareScreenPersonOverlayInside.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShareScreenPersonOverlayInside: ImageVector + get() { + if (_shareScreenPersonOverlayInside != null) { + return _shareScreenPersonOverlayInside!! + } + _shareScreenPersonOverlayInside = fluentIcon(name = + "Filled.ShareScreenPersonOverlayInside") { + fluentPath { + moveTo(2.0f, 7.25f) + curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) + horizontalLineToRelative(13.5f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(5.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + close() + moveTo(16.0f, 12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) + close() + moveTo(5.0f, 8.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + lineTo(12.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(6.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + close() + moveTo(14.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(0.25f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 15.75f, 17.0f) + horizontalLineToRelative(0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 19.0f, 14.25f) + lineTo(19.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineToRelative(-4.0f) + close() + } + } + return _shareScreenPersonOverlayInside!! + } + +private var _shareScreenPersonOverlayInside: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShareScreenPersonP.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShareScreenPersonP.kt new file mode 100644 index 00000000..cd22fdd4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShareScreenPersonP.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShareScreenPersonP: ImageVector + get() { + if (_shareScreenPersonP != null) { + return _shareScreenPersonP!! + } + _shareScreenPersonP = fluentIcon(name = "Filled.ShareScreenPersonP") { + fluentPath { + moveTo(2.0f, 7.25f) + curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) + horizontalLineToRelative(13.5f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(7.25f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, -5.95f, 2.5f) + horizontalLineToRelative(-0.28f) + arcTo(2.77f, 2.77f, 0.0f, false, false, 13.0f, 19.77f) + verticalLineToRelative(0.1f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 0.13f) + lineTo(5.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + close() + moveTo(7.0f, 8.75f) + verticalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(8.5f, 13.5f) + horizontalLineToRelative(1.25f) + arcToRelative(2.75f, 2.75f, 0.0f, true, false, 0.0f, -5.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(8.5f, 12.0f) + horizontalLineToRelative(1.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + lineTo(8.5f, 9.5f) + lineTo(8.5f, 12.0f) + close() + moveTo(21.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(23.0f, 19.88f) + curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) + reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _shareScreenPersonP!! + } + +private var _shareScreenPersonP: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShareScreenStart.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShareScreenStart.kt new file mode 100644 index 00000000..ac78e1f5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShareScreenStart.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShareScreenStart: ImageVector + get() { + if (_shareScreenStart != null) { + return _shareScreenStart!! + } + _shareScreenStart = fluentIcon(name = "Filled.ShareScreenStart") { + fluentPath { + moveTo(4.25f, 4.0f) + curveTo(3.01f, 4.0f, 2.0f, 5.0f, 2.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(2.0f, 18.99f, 3.0f, 20.0f, 4.25f, 20.0f) + horizontalLineToRelative(15.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(22.0f, 6.25f) + curveTo(22.0f, 5.01f, 21.0f, 4.0f, 19.75f, 4.0f) + lineTo(4.25f, 4.0f) + close() + moveTo(12.53f, 7.47f) + lineTo(15.78f, 10.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-1.97f, -1.97f) + verticalLineToRelative(6.44f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + lineTo(11.25f, 9.81f) + lineToRelative(-1.97f, 1.97f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(3.25f, -3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 0.0f) + close() + } + } + return _shareScreenStart!! + } + +private var _shareScreenStart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShareScreenStop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShareScreenStop.kt new file mode 100644 index 00000000..566ccc96 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShareScreenStop.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShareScreenStop: ImageVector + get() { + if (_shareScreenStop != null) { + return _shareScreenStop!! + } + _shareScreenStop = fluentIcon(name = "Filled.ShareScreenStop") { + fluentPath { + moveTo(4.25f, 4.0f) + horizontalLineToRelative(15.5f) + curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(4.25f, 20.0f) + curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) + lineTo(2.0f, 6.25f) + curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) + close() + moveTo(9.28f, 8.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineTo(10.94f, 12.0f) + lineToRelative(-2.72f, 2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineTo(12.0f, 13.06f) + lineToRelative(2.72f, 2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineTo(13.06f, 12.0f) + lineToRelative(2.72f, -2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineTo(12.0f, 10.94f) + lineTo(9.28f, 8.22f) + close() + } + } + return _shareScreenStop!! + } + +private var _shareScreenStop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Shield.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Shield.kt new file mode 100644 index 00000000..c4e97382 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Shield.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Shield: ImageVector + get() { + if (_shield != null) { + return _shield!! + } + _shield = fluentIcon(name = "Filled.Shield") { + fluentPath { + moveTo(3.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + curveToRelative(2.66f, 0.0f, 5.26f, -0.94f, 7.8f, -2.85f) + curveToRelative(0.27f, -0.2f, 0.63f, -0.2f, 0.9f, 0.0f) + curveTo(14.99f, 4.05f, 17.59f, 5.0f, 20.25f, 5.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineTo(11.0f) + curveToRelative(0.0f, 5.0f, -2.96f, 8.68f, -8.73f, 10.95f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.0f) + curveTo(5.96f, 19.68f, 3.0f, 16.0f, 3.0f, 11.0f) + verticalLineTo(5.75f) + close() + } + } + return _shield!! + } + +private var _shield: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldAdd.kt new file mode 100644 index 00000000..563e1dad --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldAdd.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShieldAdd: ImageVector + get() { + if (_shieldAdd != null) { + return _shieldAdd!! + } + _shieldAdd = fluentIcon(name = "Filled.ShieldAdd") { + fluentPath { + moveTo(3.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + curveToRelative(2.66f, 0.0f, 5.26f, -0.94f, 7.8f, -2.85f) + curveToRelative(0.27f, -0.2f, 0.63f, -0.2f, 0.9f, 0.0f) + curveTo(14.99f, 4.05f, 17.59f, 5.0f, 20.25f, 5.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(21.0f, 11.0f) + curveToRelative(0.0f, 0.34f, -0.01f, 0.67f, -0.04f, 1.0f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -8.33f, 9.8f) + lineToRelative(-0.36f, 0.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.0f) + curveTo(5.96f, 19.68f, 3.0f, 16.0f, 3.0f, 11.0f) + lineTo(3.0f, 5.75f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _shieldAdd!! + } + +private var _shieldAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldBadge.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldBadge.kt new file mode 100644 index 00000000..704129c7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldBadge.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShieldBadge: ImageVector + get() { + if (_shieldBadge != null) { + return _shieldBadge!! + } + _shieldBadge = fluentIcon(name = "Filled.ShieldBadge") { + fluentPath { + moveTo(2.0f, 7.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 5.0f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 20.0f, 7.75f) + verticalLineToRelative(2.47f) + arcToRelative(3.96f, 3.96f, 0.0f, false, true, -1.4f, -1.04f) + arcToRelative(3.33f, 3.33f, 0.0f, false, true, -0.17f, -0.2f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.88f, 0.03f) + lineToRelative(-0.14f, 0.17f) + curveToRelative(-0.14f, 0.15f, -0.34f, 0.35f, -0.6f, 0.56f) + curveToRelative(-0.54f, 0.41f, -1.24f, 0.75f, -2.06f, 0.75f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.8f, -1.75f, 1.76f) + lineTo(11.0f, 15.0f) + lineTo(4.75f, 15.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 12.25f) + verticalLineToRelative(-4.5f) + close() + moveTo(15.57f, 8.98f) + close() + moveTo(18.58f, 10.53f) + curveToRelative(-0.35f, -0.27f, -0.7f, -0.6f, -0.97f, -0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.22f, 0.0f) + arcToRelative(4.98f, 4.98f, 0.0f, false, true, -3.64f, 1.93f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(12.0f, 15.0f) + curveToRelative(0.0f, 1.64f, 0.44f, 2.95f, 1.3f, 3.98f) + arcToRelative(7.98f, 7.98f, 0.0f, false, false, 3.44f, 2.22f) + curveToRelative(0.17f, 0.07f, 0.35f, 0.07f, 0.52f, 0.0f) + curveToRelative(1.4f, -0.52f, 2.6f, -1.2f, 3.44f, -2.22f) + arcTo(5.97f, 5.97f, 0.0f, false, false, 22.0f, 15.0f) + verticalLineToRelative(-2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + curveToRelative(-0.58f, 0.0f, -1.1f, -0.13f, -1.56f, -0.32f) + curveToRelative(-0.42f, -0.17f, -0.8f, -0.4f, -1.1f, -0.65f) + close() + } + } + return _shieldBadge!! + } + +private var _shieldBadge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldCheckmark.kt new file mode 100644 index 00000000..c75ff8b2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldCheckmark.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShieldCheckmark: ImageVector + get() { + if (_shieldCheckmark != null) { + return _shieldCheckmark!! + } + _shieldCheckmark = fluentIcon(name = "Filled.ShieldCheckmark") { + fluentPath { + moveTo(3.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + curveToRelative(2.66f, 0.0f, 5.26f, -0.94f, 7.8f, -2.85f) + curveToRelative(0.27f, -0.2f, 0.63f, -0.2f, 0.9f, 0.0f) + curveTo(14.99f, 4.05f, 17.59f, 5.0f, 20.25f, 5.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(21.0f, 11.0f) + curveToRelative(0.0f, 0.34f, -0.01f, 0.67f, -0.04f, 1.0f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -8.33f, 9.8f) + lineToRelative(-0.36f, 0.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.0f) + curveTo(5.96f, 19.68f, 3.0f, 16.0f, 3.0f, 11.0f) + lineTo(3.0f, 5.75f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(20.85f, 15.15f) + curveToRelative(0.2f, 0.2f, 0.2f, 0.5f, 0.0f, 0.7f) + lineToRelative(-4.0f, 4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.0f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, -0.7f) + lineToRelative(1.65f, 1.64f) + lineToRelative(3.65f, -3.64f) + curveToRelative(0.2f, -0.2f, 0.5f, -0.2f, 0.7f, 0.0f) + close() + } + } + return _shieldCheckmark!! + } + +private var _shieldCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldDismiss.kt new file mode 100644 index 00000000..d26793a3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldDismiss.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShieldDismiss: ImageVector + get() { + if (_shieldDismiss != null) { + return _shieldDismiss!! + } + _shieldDismiss = fluentIcon(name = "Filled.ShieldDismiss") { + fluentPath { + moveTo(12.45f, 2.15f) + curveTo(14.99f, 4.05f, 17.59f, 5.0f, 20.25f, 5.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineTo(11.0f) + curveToRelative(0.0f, 5.0f, -2.96f, 8.68f, -8.73f, 10.95f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.0f) + curveTo(5.96f, 19.68f, 3.0f, 16.0f, 3.0f, 11.0f) + verticalLineTo(5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + curveToRelative(2.66f, 0.0f, 5.26f, -0.94f, 7.8f, -2.85f) + curveToRelative(0.27f, -0.2f, 0.63f, -0.2f, 0.9f, 0.0f) + close() + moveTo(9.28f, 8.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.13f, 0.98f) + lineToRelative(0.07f, 0.08f) + lineTo(10.94f, 12.0f) + lineToRelative(-2.72f, 2.73f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineTo(12.0f, 13.06f) + lineToRelative(2.73f, 2.73f) + curveToRelative(0.26f, 0.26f, 0.68f, 0.29f, 0.97f, 0.07f) + lineToRelative(0.09f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.07f, -0.98f) + lineToRelative(-0.07f, -0.08f) + lineTo(13.06f, 12.0f) + lineToRelative(2.73f, -2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineTo(12.0f, 10.94f) + lineTo(9.28f, 8.22f) + close() + } + } + return _shieldDismiss!! + } + +private var _shieldDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldError.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldError.kt new file mode 100644 index 00000000..0b2c1f31 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldError.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShieldError: ImageVector + get() { + if (_shieldError != null) { + return _shieldError!! + } + _shieldError = fluentIcon(name = "Filled.ShieldError") { + fluentPath { + moveTo(20.25f, 5.0f) + curveToRelative(-2.66f, 0.0f, -5.26f, -0.94f, -7.8f, -2.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 0.0f) + curveTo(9.01f, 4.05f, 6.41f, 5.0f, 3.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(3.0f, 11.0f) + curveToRelative(0.0f, 5.0f, 2.96f, 8.68f, 8.73f, 10.95f) + curveToRelative(0.17f, 0.07f, 0.37f, 0.07f, 0.54f, 0.0f) + curveTo(18.04f, 19.68f, 21.0f, 16.0f, 21.0f, 11.0f) + lineTo(21.0f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(11.25f, 7.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(12.75f, 14.33f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(11.25f, 7.63f) + close() + moveTo(12.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + close() + } + } + return _shieldError!! + } + +private var _shieldError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldGlobe.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldGlobe.kt new file mode 100644 index 00000000..0efe31c9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldGlobe.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShieldGlobe: ImageVector + get() { + if (_shieldGlobe != null) { + return _shieldGlobe!! + } + _shieldGlobe = fluentIcon(name = "Filled.ShieldGlobe") { + fluentPath { + moveTo(3.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(3.0f, 11.0f) + curveToRelative(0.0f, 5.0f, 2.96f, 8.68f, 8.73f, 10.95f) + curveToRelative(0.17f, 0.07f, 0.37f, 0.07f, 0.54f, 0.0f) + curveTo(18.04f, 19.68f, 21.0f, 16.0f, 21.0f, 11.0f) + lineTo(21.0f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + curveToRelative(-2.66f, 0.0f, -5.26f, -0.94f, -7.8f, -2.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 0.0f) + curveTo(9.01f, 4.05f, 6.41f, 5.0f, 3.75f, 5.0f) + close() + moveTo(10.07f, 15.5f) + arcToRelative(9.63f, 9.63f, 0.0f, false, true, -0.55f, -2.75f) + lineTo(8.07f, 12.75f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 2.0f, 2.76f) + close() + moveTo(11.6f, 15.27f) + arcToRelative(7.56f, 7.56f, 0.0f, false, true, -0.57f, -2.52f) + horizontalLineToRelative(1.94f) + arcToRelative(7.56f, 7.56f, 0.0f, false, true, -0.57f, 2.52f) + curveToRelative(-0.17f, 0.37f, -0.3f, 0.56f, -0.4f, 0.65f) + curveToRelative(-0.1f, -0.1f, -0.23f, -0.28f, -0.4f, -0.65f) + close() + moveTo(11.6f, 8.73f) + curveToRelative(-0.28f, 0.62f, -0.5f, 1.49f, -0.57f, 2.52f) + horizontalLineToRelative(1.94f) + arcToRelative(7.56f, 7.56f, 0.0f, false, false, -0.57f, -2.52f) + arcToRelative(2.34f, 2.34f, 0.0f, false, false, -0.4f, -0.65f) + curveToRelative(-0.1f, 0.1f, -0.23f, 0.28f, -0.4f, 0.65f) + close() + moveTo(13.93f, 15.51f) + curveToRelative(0.29f, -0.77f, 0.48f, -1.72f, 0.55f, -2.76f) + horizontalLineToRelative(1.45f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -2.0f, 2.76f) + close() + moveTo(14.48f, 11.25f) + horizontalLineToRelative(1.45f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -2.0f, -2.76f) + curveToRelative(0.29f, 0.77f, 0.48f, 1.72f, 0.55f, 2.76f) + close() + moveTo(8.07f, 11.25f) + horizontalLineToRelative(1.45f) + curveToRelative(0.07f, -1.04f, 0.26f, -1.99f, 0.55f, -2.76f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -2.0f, 2.76f) + close() + moveTo(12.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + } + } + return _shieldGlobe!! + } + +private var _shieldGlobe: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldKeyhole.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldKeyhole.kt new file mode 100644 index 00000000..31a5de42 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldKeyhole.kt @@ -0,0 +1,41 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShieldKeyhole: ImageVector + get() { + if (_shieldKeyhole != null) { + return _shieldKeyhole!! + } + _shieldKeyhole = fluentIcon(name = "Filled.ShieldKeyhole") { + fluentPath { + moveTo(3.0f, 5.75f) + verticalLineTo(11.0f) + curveToRelative(0.0f, 5.0f, 2.96f, 8.68f, 8.73f, 10.95f) + curveToRelative(0.17f, 0.07f, 0.37f, 0.07f, 0.54f, 0.0f) + curveTo(18.04f, 19.68f, 21.0f, 16.0f, 21.0f, 11.0f) + verticalLineTo(5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + curveToRelative(-2.66f, 0.0f, -5.26f, -0.94f, -7.8f, -2.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 0.0f) + curveTo(9.01f, 4.05f, 6.41f, 5.0f, 3.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(14.0f, 11.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.25f, 1.85f) + verticalLineToRelative(2.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.4f) + arcTo(2.0f, 2.0f, 0.0f, true, true, 14.0f, 11.0f) + close() + } + } + return _shieldKeyhole!! + } + +private var _shieldKeyhole: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldLock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldLock.kt new file mode 100644 index 00000000..2d6e032b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldLock.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShieldLock: ImageVector + get() { + if (_shieldLock != null) { + return _shieldLock!! + } + _shieldLock = fluentIcon(name = "Filled.ShieldLock") { + fluentPath { + moveTo(3.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + curveToRelative(2.66f, 0.0f, 5.26f, -0.94f, 7.8f, -2.85f) + curveToRelative(0.27f, -0.2f, 0.63f, -0.2f, 0.9f, 0.0f) + curveTo(14.99f, 4.05f, 17.59f, 5.0f, 20.25f, 5.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(21.0f, 11.0f) + lineToRelative(-0.01f, 0.54f) + arcTo(3.49f, 3.49f, 0.0f, false, false, 15.0f, 14.0f) + verticalLineToRelative(0.05f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.0f, 2.45f) + verticalLineToRelative(5.15f) + lineToRelative(-0.73f, 0.3f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.0f) + curveTo(5.96f, 19.68f, 3.0f, 16.0f, 3.0f, 11.0f) + lineTo(3.0f, 5.75f) + close() + moveTo(16.0f, 15.0f) + verticalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(0.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-6.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(0.5f) + close() + moveTo(17.5f, 14.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + close() + moveTo(19.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + } + } + return _shieldLock!! + } + +private var _shieldLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldProhibited.kt new file mode 100644 index 00000000..b1c0561b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldProhibited.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShieldProhibited: ImageVector + get() { + if (_shieldProhibited != null) { + return _shieldProhibited!! + } + _shieldProhibited = fluentIcon(name = "Filled.ShieldProhibited") { + fluentPath { + moveTo(3.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(3.0f, 11.0f) + curveToRelative(0.0f, 5.0f, 2.96f, 8.68f, 8.73f, 10.95f) + curveToRelative(0.17f, 0.07f, 0.37f, 0.07f, 0.54f, 0.0f) + lineToRelative(0.43f, -0.17f) + arcToRelative(6.5f, 6.5f, 0.0f, true, true, 8.28f, -10.0f) + lineTo(21.0f, 11.0f) + lineTo(21.0f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + curveToRelative(-2.66f, 0.0f, -5.26f, -0.94f, -7.8f, -2.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 0.0f) + curveTo(9.01f, 4.05f, 6.41f, 5.0f, 3.75f, 5.0f) + close() + moveTo(16.5f, 22.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) + close() + moveTo(13.2f, 18.75f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 5.56f, -5.56f) + lineToRelative(-5.57f, 5.56f) + close() + moveTo(14.25f, 19.81f) + lineTo(19.81f, 14.25f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -5.56f, 5.56f) + close() + } + } + return _shieldProhibited!! + } + +private var _shieldProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldQuestion.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldQuestion.kt new file mode 100644 index 00000000..893e57b3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldQuestion.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShieldQuestion: ImageVector + get() { + if (_shieldQuestion != null) { + return _shieldQuestion!! + } + _shieldQuestion = fluentIcon(name = "Filled.ShieldQuestion") { + fluentPath { + moveTo(3.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + curveToRelative(2.66f, 0.0f, 5.26f, -0.94f, 7.8f, -2.85f) + curveToRelative(0.27f, -0.2f, 0.63f, -0.2f, 0.9f, 0.0f) + curveTo(14.99f, 4.05f, 17.59f, 5.0f, 20.25f, 5.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(21.0f, 11.0f) + curveToRelative(0.0f, 5.0f, -2.96f, 8.68f, -8.73f, 10.95f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.0f) + curveTo(5.96f, 19.68f, 3.0f, 16.0f, 3.0f, 11.0f) + lineTo(3.0f, 5.75f) + close() + moveTo(13.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(10.75f, 9.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + curveToRelative(0.0f, 0.45f, -0.25f, 0.74f, -0.78f, 1.27f) + lineToRelative(-0.05f, 0.05f) + curveToRelative(-0.47f, 0.46f, -1.17f, 1.16f, -1.17f, 2.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + curveToRelative(0.0f, -0.45f, 0.25f, -0.74f, 0.78f, -1.27f) + lineToRelative(0.05f, -0.05f) + curveToRelative(0.47f, -0.47f, 1.17f, -1.16f, 1.17f, -2.28f) + arcToRelative(2.75f, 2.75f, 0.0f, true, false, -5.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + close() + } + } + return _shieldQuestion!! + } + +private var _shieldQuestion: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldTask.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldTask.kt new file mode 100644 index 00000000..ba3d91fa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShieldTask.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShieldTask: ImageVector + get() { + if (_shieldTask != null) { + return _shieldTask!! + } + _shieldTask = fluentIcon(name = "Filled.ShieldTask") { + fluentPath { + moveTo(20.25f, 5.0f) + curveToRelative(-2.66f, 0.0f, -5.26f, -0.94f, -7.8f, -2.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 0.0f) + curveTo(9.01f, 4.05f, 6.41f, 5.0f, 3.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(3.0f, 11.0f) + curveToRelative(0.0f, 5.0f, 2.96f, 8.68f, 8.73f, 10.95f) + curveToRelative(0.17f, 0.07f, 0.37f, 0.07f, 0.54f, 0.0f) + curveTo(18.04f, 19.68f, 21.0f, 16.0f, 21.0f, 11.0f) + lineTo(21.0f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(16.75f, 9.3f) + lineTo(10.75f, 14.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.03f, -0.02f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(2.0f, 2.0f) + lineToRelative(5.46f, -5.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.02f, 1.1f) + close() + } + } + return _shieldTask!! + } + +private var _shieldTask: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Shifts.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Shifts.kt new file mode 100644 index 00000000..a39d7888 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Shifts.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Shifts: ImageVector + get() { + if (_shifts != null) { + return _shifts!! + } + _shifts = fluentIcon(name = "Filled.Shifts") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(11.75f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(12.5f, 12.0f) + lineTo(12.5f, 6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + } + } + return _shifts!! + } + +private var _shifts: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Shifts30Minutes.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Shifts30Minutes.kt new file mode 100644 index 00000000..14a71c00 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Shifts30Minutes.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Shifts30Minutes: ImageVector + get() { + if (_shifts30Minutes != null) { + return _shifts30Minutes!! + } + _shifts30Minutes = fluentIcon(name = "Filled.Shifts30Minutes") { + fluentPath { + moveTo(15.5f, 5.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, -7.0f, 0.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 7.0f, 0.0f) + close() + moveTo(8.75f, 10.0f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(9.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-6.5f) + close() + moveTo(6.5f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(5.5f, 21.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(10.11f, 16.53f) + curveToRelative(-0.27f, 0.06f, -0.52f, 0.2f, -0.67f, 0.33f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.92f, -1.19f) + curveToRelative(0.27f, -0.2f, 0.71f, -0.48f, 1.25f, -0.6f) + arcToRelative(2.33f, 2.33f, 0.0f, false, true, 1.88f, 0.32f) + arcToRelative(2.27f, 2.27f, 0.0f, false, true, 0.62f, 3.03f) + arcToRelative(2.1f, 2.1f, 0.0f, false, true, -0.08f, 2.86f) + curveToRelative(-0.6f, 0.6f, -1.4f, 0.77f, -2.08f, 0.73f) + arcToRelative(3.12f, 3.12f, 0.0f, false, true, -1.85f, -0.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.99f, -1.12f) + curveToRelative(0.17f, 0.15f, 0.52f, 0.3f, 0.94f, 0.32f) + curveToRelative(0.4f, 0.02f, 0.73f, -0.09f, 0.94f, -0.3f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, 0.12f, -0.62f) + curveToRelative(-0.07f, -0.2f, -0.23f, -0.34f, -0.5f, -0.34f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(0.5f) + curveToRelative(0.12f, 0.0f, 0.17f, -0.04f, 0.21f, -0.08f) + curveToRelative(0.05f, -0.04f, 0.1f, -0.14f, 0.13f, -0.28f) + curveToRelative(0.05f, -0.3f, -0.07f, -0.61f, -0.28f, -0.75f) + arcToRelative(0.83f, 0.83f, 0.0f, false, false, -0.7f, -0.11f) + close() + moveTo(16.5f, 15.0f) + arcToRelative(2.2f, 2.2f, 0.0f, false, false, -1.99f, 1.08f) + curveToRelative(-0.38f, 0.65f, -0.51f, 1.5f, -0.51f, 2.42f) + curveToRelative(0.0f, 0.92f, 0.13f, 1.77f, 0.51f, 2.42f) + arcTo(2.2f, 2.2f, 0.0f, false, false, 16.5f, 22.0f) + arcToRelative(2.2f, 2.2f, 0.0f, false, false, 1.99f, -1.08f) + curveToRelative(0.38f, -0.64f, 0.51f, -1.5f, 0.51f, -2.42f) + curveToRelative(0.0f, -0.93f, -0.13f, -1.78f, -0.51f, -2.42f) + arcTo(2.2f, 2.2f, 0.0f, false, false, 16.5f, 15.0f) + close() + moveTo(15.5f, 18.5f) + curveToRelative(0.0f, -0.83f, 0.12f, -1.35f, 0.3f, -1.64f) + curveToRelative(0.13f, -0.23f, 0.32f, -0.36f, 0.7f, -0.36f) + curveToRelative(0.39f, 0.0f, 0.57f, 0.13f, 0.7f, 0.35f) + curveToRelative(0.18f, 0.3f, 0.3f, 0.81f, 0.3f, 1.65f) + curveToRelative(0.0f, 0.84f, -0.12f, 1.36f, -0.3f, 1.65f) + curveToRelative(-0.13f, 0.22f, -0.31f, 0.35f, -0.7f, 0.35f) + curveToRelative(-0.38f, 0.0f, -0.57f, -0.13f, -0.7f, -0.35f) + curveToRelative(-0.18f, -0.3f, -0.3f, -0.82f, -0.3f, -1.65f) + close() + } + } + return _shifts30Minutes!! + } + +private var _shifts30Minutes: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShiftsActivity.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShiftsActivity.kt new file mode 100644 index 00000000..2737cb71 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShiftsActivity.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShiftsActivity: ImageVector + get() { + if (_shiftsActivity != null) { + return _shiftsActivity!! + } + _shiftsActivity = fluentIcon(name = "Filled.ShiftsActivity") { + fluentPath { + moveTo(11.1f, 4.05f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -0.21f, -1.99f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 11.05f, 11.05f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.99f, -0.22f) + arcToRelative(8.0f, 8.0f, 0.0f, true, true, -8.84f, -8.84f) + close() + moveTo(14.77f, 2.39f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.54f, 1.93f) + curveToRelative(0.28f, 0.08f, 0.57f, 0.17f, 0.84f, 0.29f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.76f, -1.86f) + curveToRelative(-0.35f, -0.14f, -0.7f, -0.26f, -1.06f, -0.36f) + close() + moveTo(17.35f, 4.69f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, -0.06f) + lineToRelative(0.61f, 0.6f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 17.9f, 6.6f) + arcToRelative(7.94f, 7.94f, 0.0f, false, false, -0.49f, -0.49f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.06f, -1.4f) + close() + moveTo(11.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(10.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(19.94f, 7.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.3f, 0.55f) + arcToRelative(9.86f, 9.86f, 0.0f, false, true, 0.37f, 1.06f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.93f, 0.54f) + arcToRelative(7.9f, 7.9f, 0.0f, false, false, -0.29f, -0.84f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.55f, -1.3f) + close() + } + } + return _shiftsActivity!! + } + +private var _shiftsActivity: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShiftsAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShiftsAdd.kt new file mode 100644 index 00000000..795f6c83 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShiftsAdd.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShiftsAdd: ImageVector + get() { + if (_shiftsAdd != null) { + return _shiftsAdd!! + } + _shiftsAdd = fluentIcon(name = "Filled.ShiftsAdd") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(5.77f) + arcToRelative(6.47f, 6.47f, 0.0f, false, true, 8.0f, 0.8f) + arcToRelative(0.8f, 0.8f, 0.0f, false, true, 0.0f, -0.07f) + verticalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineTo(12.0f) + horizontalLineToRelative(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.5f) + lineToRelative(-0.14f, -0.01f) + arcToRelative(6.47f, 6.47f, 0.0f, false, true, 0.37f, 7.51f) + horizontalLineToRelative(5.77f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineTo(6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + horizontalLineTo(6.25f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(7.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + verticalLineTo(18.0f) + horizontalLineTo(3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + horizontalLineTo(6.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + verticalLineTo(17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineTo(7.0f) + close() + } + } + return _shiftsAdd!! + } + +private var _shiftsAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShiftsAvailability.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShiftsAvailability.kt new file mode 100644 index 00000000..d34de1ff --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShiftsAvailability.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShiftsAvailability: ImageVector + get() { + if (_shiftsAvailability != null) { + return _shiftsAvailability!! + } + _shiftsAvailability = fluentIcon(name = "Filled.ShiftsAvailability") { + fluentPath { + moveTo(8.5f, 2.0f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -0.48f, 12.98f) + arcToRelative(7.5f, 7.5f, 0.0f, false, true, 6.96f, -6.96f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 8.5f, 2.0f) + close() + moveTo(11.28f, 7.78f) + lineTo(8.28f, 10.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 0.0f) + lineToRelative(-1.5f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineToRelative(0.97f, 0.97f) + lineToRelative(2.47f, -2.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) + close() + moveTo(9.0f, 15.5f) + arcToRelative(6.5f, 6.5f, 0.0f, true, true, 13.0f, 0.0f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, -13.0f, 0.0f) + close() + moveTo(13.22f, 13.24f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(1.22f, 1.2f) + lineToRelative(-1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(1.22f, -1.22f) + lineToRelative(1.21f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.07f, -1.06f) + lineToRelative(-1.22f, -1.22f) + lineToRelative(1.21f, -1.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.05f, -1.07f) + lineToRelative(-1.22f, 1.21f) + lineToRelative(-1.22f, -1.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + close() + } + } + return _shiftsAvailability!! + } + +private var _shiftsAvailability: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShiftsCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShiftsCheckmark.kt new file mode 100644 index 00000000..0add29eb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShiftsCheckmark.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShiftsCheckmark: ImageVector + get() { + if (_shiftsCheckmark != null) { + return _shiftsCheckmark!! + } + _shiftsCheckmark = fluentIcon(name = "Filled.ShiftsCheckmark") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(5.77f) + arcToRelative(6.47f, 6.47f, 0.0f, false, true, 8.0f, 0.8f) + arcToRelative(0.8f, 0.8f, 0.0f, false, true, 0.0f, -0.07f) + verticalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(12.5f, 12.0f) + horizontalLineToRelative(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.5f) + lineToRelative(-0.14f, -0.01f) + arcToRelative(6.47f, 6.47f, 0.0f, false, true, 0.37f, 7.51f) + horizontalLineToRelative(5.77f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(8.85f, 15.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineTo(5.5f, 18.29f) + lineToRelative(-0.9f, -0.9f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.71f) + lineToRelative(1.25f, 1.25f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(3.0f, -3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _shiftsCheckmark!! + } + +private var _shiftsCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShiftsDay.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShiftsDay.kt new file mode 100644 index 00000000..4a533f95 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShiftsDay.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShiftsDay: ImageVector + get() { + if (_shiftsDay != null) { + return _shiftsDay!! + } + _shiftsDay = fluentIcon(name = "Filled.ShiftsDay") { + fluentPath { + moveTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + horizontalLineTo(6.25f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineTo(6.25f) + close() + moveTo(7.5f, 8.75f) + arcTo(2.3f, 2.3f, 0.0f, false, true, 9.25f, 8.0f) + curveToRelative(1.15f, 0.0f, 1.9f, 0.8f, 2.15f, 1.66f) + curveToRelative(0.26f, 0.85f, 0.1f, 1.9f, -0.62f, 2.62f) + arcToRelative(8.1f, 8.1f, 0.0f, false, true, -0.79f, 0.67f) + lineToRelative(-0.04f, 0.03f) + curveToRelative(-0.28f, 0.22f, -0.53f, 0.41f, -0.75f, 0.63f) + arcToRelative(2.3f, 2.3f, 0.0f, false, false, -0.58f, 0.89f) + horizontalLineToRelative(2.13f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + curveToRelative(0.0f, -1.25f, 0.52f, -2.08f, 1.14f, -2.7f) + curveToRelative(0.3f, -0.3f, 0.62f, -0.55f, 0.9f, -0.76f) + curveToRelative(0.28f, -0.22f, 0.5f, -0.4f, 0.68f, -0.57f) + curveToRelative(0.27f, -0.27f, 0.37f, -0.72f, 0.25f, -1.13f) + curveToRelative(-0.12f, -0.38f, -0.37f, -0.59f, -0.72f, -0.59f) + reflectiveCurveToRelative(-0.53f, 0.14f, -0.64f, 0.25f) + arcToRelative(0.84f, 0.84f, 0.0f, false, false, -0.15f, 0.23f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.43f, -0.46f) + lineToRelative(0.04f, -0.1f) + lineToRelative(0.08f, -0.17f) + curveToRelative(0.07f, -0.14f, 0.18f, -0.32f, 0.35f, -0.5f) + close() + moveTo(13.25f, 8.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.75f) + horizontalLineToRelative(1.5f) + verticalLineTo(8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(6.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineTo(13.0f) + horizontalLineToRelative(-2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _shiftsDay!! + } + +private var _shiftsDay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShiftsOpen.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShiftsOpen.kt new file mode 100644 index 00000000..0a6aedb3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShiftsOpen.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShiftsOpen: ImageVector + get() { + if (_shiftsOpen != null) { + return _shiftsOpen!! + } + _shiftsOpen = fluentIcon(name = "Filled.ShiftsOpen") { + fluentPath { + moveTo(15.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(2.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(11.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + lineTo(15.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(2.5f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 3.5f, -3.5f) + verticalLineToRelative(-11.0f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 17.5f, 3.0f) + lineTo(15.0f, 3.0f) + close() + moveTo(5.0f, 6.5f) + curveTo(5.0f, 5.67f, 5.67f, 5.0f, 6.5f, 5.0f) + lineTo(9.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(6.5f, 3.0f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 3.0f, 6.5f) + verticalLineToRelative(11.0f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 6.5f, 21.0f) + lineTo(9.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(6.5f, 19.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 5.0f, 17.5f) + verticalLineToRelative(-11.0f) + close() + moveTo(12.5f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + lineTo(16.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + horizontalLineToRelative(-3.5f) + lineTo(12.5f, 7.0f) + close() + } + } + return _shiftsOpen!! + } + +private var _shiftsOpen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShiftsProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShiftsProhibited.kt new file mode 100644 index 00000000..47f9f8f8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShiftsProhibited.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShiftsProhibited: ImageVector + get() { + if (_shiftsProhibited != null) { + return _shiftsProhibited!! + } + _shiftsProhibited = fluentIcon(name = "Filled.ShiftsProhibited") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(5.77f) + arcToRelative(6.47f, 6.47f, 0.0f, false, true, 8.0f, 0.8f) + arcToRelative(0.8f, 0.8f, 0.0f, false, true, 0.0f, -0.07f) + verticalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(12.5f, 12.0f) + horizontalLineToRelative(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.5f) + lineToRelative(-0.14f, -0.01f) + arcToRelative(6.47f, 6.47f, 0.0f, false, true, 0.37f, 7.51f) + horizontalLineToRelative(5.77f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(2.5f, 17.5f) + curveToRelative(0.0f, 0.83f, 0.25f, 1.6f, 0.7f, 2.25f) + lineToRelative(5.55f, -5.56f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) + close() + moveTo(6.5f, 21.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) + lineToRelative(-5.55f, 5.56f) + curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) + close() + } + } + return _shiftsProhibited!! + } + +private var _shiftsProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShiftsQuestionMark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShiftsQuestionMark.kt new file mode 100644 index 00000000..9e6e9048 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShiftsQuestionMark.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShiftsQuestionMark: ImageVector + get() { + if (_shiftsQuestionMark != null) { + return _shiftsQuestionMark!! + } + _shiftsQuestionMark = fluentIcon(name = "Filled.ShiftsQuestionMark") { + fluentPath { + moveTo(6.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(6.5f, 19.88f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, 1.25f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, -1.25f) + close() + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-5.77f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, -0.37f, -7.51f) + horizontalLineToRelative(0.07f) + lineToRelative(0.07f, 0.01f) + horizontalLineToRelative(4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(12.5f, 12.0f) + lineTo(12.5f, 6.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + lineTo(11.0f, 12.8f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, -8.0f, -0.79f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(6.5f, 14.0f) + curveToRelative(-1.05f, 0.0f, -1.86f, 0.82f, -1.85f, 1.96f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, -0.01f) + curveToRelative(0.0f, -0.58f, 0.36f, -0.95f, 0.85f, -0.95f) + curveToRelative(0.47f, 0.0f, 0.85f, 0.4f, 0.85f, 0.95f) + curveToRelative(0.0f, 0.23f, -0.07f, 0.4f, -0.31f, 0.68f) + lineToRelative(-0.1f, 0.11f) + lineToRelative(-0.27f, 0.3f) + curveToRelative(-0.48f, 0.53f, -0.67f, 0.89f, -0.67f, 1.46f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + curveToRelative(0.0f, -0.23f, 0.08f, -0.4f, 0.32f, -0.7f) + lineToRelative(0.1f, -0.1f) + lineToRelative(0.27f, -0.3f) + curveToRelative(0.48f, -0.53f, 0.66f, -0.88f, 0.66f, -1.45f) + curveToRelative(0.0f, -1.1f, -0.82f, -1.95f, -1.85f, -1.95f) + close() + } + } + return _shiftsQuestionMark!! + } + +private var _shiftsQuestionMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShiftsTeam.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShiftsTeam.kt new file mode 100644 index 00000000..d4aeab15 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShiftsTeam.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShiftsTeam: ImageVector + get() { + if (_shiftsTeam != null) { + return _shiftsTeam!! + } + _shiftsTeam = fluentIcon(name = "Filled.ShiftsTeam") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-5.0f) + curveToRelative(0.18f, -0.38f, 0.25f, -0.79f, 0.25f, -1.19f) + curveToRelative(0.0f, -0.92f, -0.53f, -1.73f, -1.32f, -2.1f) + arcTo(2.74f, 2.74f, 0.0f, false, false, 9.75f, 13.0f) + curveToRelative(-0.74f, 0.0f, -1.4f, 0.3f, -1.9f, 0.76f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 12.01f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(11.75f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(12.5f, 12.0f) + lineTo(12.5f, 6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(4.75f, 17.0f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, -4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) + close() + moveTo(4.75f, 23.0f) + curveToRelative(2.68f, 0.0f, 3.75f, -1.57f, 3.75f, -3.13f) + curveToRelative(0.0f, -1.03f, -0.72f, -1.87f, -1.6f, -1.87f) + lineTo(2.6f, 18.0f) + curveToRelative(-0.88f, 0.0f, -1.6f, 0.84f, -1.6f, 1.88f) + curveTo(1.0f, 21.43f, 2.07f, 23.0f, 4.75f, 23.0f) + close() + moveTo(11.5f, 15.75f) + arcToRelative(1.75f, 1.75f, 0.0f, true, true, -3.5f, 0.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 3.5f, 0.0f) + close() + moveTo(8.92f, 22.0f) + curveToRelative(0.4f, -0.66f, 0.58f, -1.4f, 0.58f, -2.13f) + curveToRelative(0.0f, -0.47f, -0.11f, -0.95f, -0.32f, -1.37f) + horizontalLineToRelative(1.54f) + curveToRelative(0.7f, 0.0f, 1.28f, 0.59f, 1.28f, 1.31f) + curveToRelative(0.0f, 1.1f, -0.85f, 2.19f, -3.0f, 2.19f) + horizontalLineToRelative(-0.08f) + close() + } + } + return _shiftsTeam!! + } + +private var _shiftsTeam: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShoppingBag.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShoppingBag.kt new file mode 100644 index 00000000..74f4535b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShoppingBag.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShoppingBag: ImageVector + get() { + if (_shoppingBag != null) { + return _shoppingBag!! + } + _shoppingBag = fluentIcon(name = "Filled.ShoppingBag") { + fluentPath { + moveTo(7.0f, 7.0f) + lineTo(7.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 5.0f, -2.24f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 17.0f, 5.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(1.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + lineTo(20.0f, 18.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -1.82f, 3.36f) + lineToRelative(-0.55f, -0.1f) + arcToRelative(4.17f, 4.17f, 0.0f, false, true, -2.17f, -1.17f) + curveToRelative(-0.6f, -0.61f, -0.96f, -1.35f, -0.96f, -2.09f) + lineTo(14.5f, 7.0f) + horizontalLineToRelative(1.0f) + lineTo(15.5f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.66f, -0.96f) + curveToRelative(0.1f, 0.3f, 0.16f, 0.63f, 0.16f, 0.96f) + verticalLineToRelative(13.0f) + curveToRelative(0.0f, 1.23f, 0.58f, 2.33f, 1.39f, 3.14f) + curveToRelative(0.32f, 0.33f, 0.68f, 0.62f, 1.08f, 0.86f) + lineTo(8.0f, 22.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f) + lineTo(4.0f, 8.5f) + curveTo(4.0f, 7.67f, 4.67f, 7.0f, 5.5f, 7.0f) + lineTo(7.0f, 7.0f) + close() + moveTo(8.5f, 5.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(3.0f) + lineTo(11.5f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) + close() + } + } + return _shoppingBag!! + } + +private var _shoppingBag: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShoppingBagArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShoppingBagArrowLeft.kt new file mode 100644 index 00000000..e038ecb9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShoppingBagArrowLeft.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShoppingBagArrowLeft: ImageVector + get() { + if (_shoppingBagArrowLeft != null) { + return _shoppingBagArrowLeft!! + } + _shoppingBagArrowLeft = fluentIcon(name = "Filled.ShoppingBagArrowLeft") { + fluentPath { + moveTo(7.0f, 7.0f) + lineTo(7.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 5.0f, -2.24f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 17.0f, 5.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(1.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(3.0f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, -5.5f, 0.23f) + lineTo(14.5f, 7.0f) + horizontalLineToRelative(1.0f) + lineTo(15.5f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.66f, -0.96f) + curveToRelative(0.1f, 0.3f, 0.16f, 0.63f, 0.16f, 0.96f) + verticalLineToRelative(7.81f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, -0.19f, 9.19f) + lineTo(8.0f, 22.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f) + lineTo(4.0f, 8.5f) + curveTo(4.0f, 7.67f, 4.67f, 7.0f, 5.5f, 7.0f) + lineTo(7.0f, 7.0f) + close() + moveTo(11.5f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(3.0f) + lineTo(11.5f, 5.0f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(16.72f, 14.59f) + lineTo(16.65f, 14.65f) + lineTo(14.13f, 17.16f) + lineTo(14.09f, 17.21f) + lineTo(14.05f, 17.29f) + lineTo(14.03f, 17.35f) + lineTo(14.01f, 17.43f) + verticalLineToRelative(0.11f) + lineToRelative(0.01f, 0.09f) + lineToRelative(0.03f, 0.08f) + lineToRelative(0.03f, 0.06f) + lineToRelative(0.05f, 0.07f) + lineToRelative(2.52f, 2.51f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.76f, -0.63f) + lineToRelative(-0.05f, -0.07f) + lineTo(15.7f, 18.0f) + horizontalLineToRelative(4.79f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.41f) + verticalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.5f) + horizontalLineToRelative(-4.88f) + lineToRelative(1.65f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.05f, -0.63f) + lineToRelative(-0.05f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.64f, -0.06f) + close() + } + } + return _shoppingBagArrowLeft!! + } + +private var _shoppingBagArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShoppingBagDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShoppingBagDismiss.kt new file mode 100644 index 00000000..5645d421 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShoppingBagDismiss.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShoppingBagDismiss: ImageVector + get() { + if (_shoppingBagDismiss != null) { + return _shoppingBagDismiss!! + } + _shoppingBagDismiss = fluentIcon(name = "Filled.ShoppingBagDismiss") { + fluentPath { + moveTo(7.0f, 7.0f) + lineTo(7.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 5.0f, -2.24f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 17.0f, 5.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(1.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(3.0f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, -5.5f, 0.23f) + lineTo(14.5f, 7.0f) + horizontalLineToRelative(1.0f) + lineTo(15.5f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.66f, -0.96f) + curveToRelative(0.1f, 0.3f, 0.16f, 0.63f, 0.16f, 0.96f) + verticalLineToRelative(7.81f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, -0.19f, 9.19f) + lineTo(8.0f, 22.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f) + lineTo(4.0f, 8.5f) + curveTo(4.0f, 7.67f, 4.67f, 7.0f, 5.5f, 7.0f) + lineTo(7.0f, 7.0f) + close() + moveTo(8.5f, 5.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(3.0f) + lineTo(11.5f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-1.64f, -1.65f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.65f, 1.64f) + lineToRelative(-1.65f, -1.64f) + close() + } + } + return _shoppingBagDismiss!! + } + +private var _shoppingBagDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShoppingBagPause.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShoppingBagPause.kt new file mode 100644 index 00000000..10197ea7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShoppingBagPause.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShoppingBagPause: ImageVector + get() { + if (_shoppingBagPause != null) { + return _shoppingBagPause!! + } + _shoppingBagPause = fluentIcon(name = "Filled.ShoppingBagPause") { + fluentPath { + moveTo(7.0f, 7.0f) + lineTo(7.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 5.0f, -2.24f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 17.0f, 5.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(1.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(3.0f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, -5.5f, 0.23f) + lineTo(14.5f, 7.0f) + horizontalLineToRelative(1.0f) + lineTo(15.5f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.66f, -0.96f) + curveToRelative(0.1f, 0.3f, 0.16f, 0.63f, 0.16f, 0.96f) + verticalLineToRelative(7.81f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, -0.19f, 9.19f) + lineTo(8.0f, 22.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f) + lineTo(4.0f, 8.5f) + curveTo(4.0f, 7.67f, 4.67f, 7.0f, 5.5f, 7.0f) + lineTo(7.0f, 7.0f) + close() + moveTo(8.5f, 5.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(3.0f) + lineTo(11.5f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.5f, 14.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(19.5f, 14.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + } + } + return _shoppingBagPause!! + } + +private var _shoppingBagPause: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShoppingBagPercent.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShoppingBagPercent.kt new file mode 100644 index 00000000..d376571b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShoppingBagPercent.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShoppingBagPercent: ImageVector + get() { + if (_shoppingBagPercent != null) { + return _shoppingBagPercent!! + } + _shoppingBagPercent = fluentIcon(name = "Filled.ShoppingBagPercent") { + fluentPath { + moveTo(7.0f, 5.0f) + verticalLineToRelative(2.0f) + lineTo(5.5f, 7.0f) + curveTo(4.67f, 7.0f, 4.0f, 7.67f, 4.0f, 8.5f) + lineTo(4.0f, 18.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, 4.0f) + horizontalLineToRelative(4.17f) + curveToRelative(-0.31f, -0.65f, -0.2f, -1.45f, 0.34f, -1.99f) + lineToRelative(0.71f, -0.7f) + arcTo(4.0f, 4.0f, 0.0f, false, true, 13.0f, 18.0f) + verticalLineToRelative(-0.34f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 0.0f, -6.32f) + lineTo(13.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -0.16f, -0.96f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 15.5f, 5.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(4.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 3.5f, 3.5f) + verticalLineToRelative(0.03f) + lineToRelative(2.0f, -2.0f) + lineTo(20.0f, 8.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(17.0f, 7.0f) + lineTo(17.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -5.0f, -2.24f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 7.0f, 5.0f) + close() + moveTo(8.5f, 7.0f) + lineTo(8.5f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-3.0f) + close() + moveTo(14.5f, 17.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) + close() + moveTo(14.5f, 13.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(20.5f, 23.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) + close() + moveTo(20.5f, 19.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(21.78f, 14.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-7.5f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(7.5f, -7.5f) + close() + } + } + return _shoppingBagPercent!! + } + +private var _shoppingBagPercent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShoppingBagPlay.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShoppingBagPlay.kt new file mode 100644 index 00000000..42b876a6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShoppingBagPlay.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShoppingBagPlay: ImageVector + get() { + if (_shoppingBagPlay != null) { + return _shoppingBagPlay!! + } + _shoppingBagPlay = fluentIcon(name = "Filled.ShoppingBagPlay") { + fluentPath { + moveTo(7.0f, 5.0f) + verticalLineToRelative(2.0f) + lineTo(5.5f, 7.0f) + curveTo(4.67f, 7.0f, 4.0f, 7.67f, 4.0f, 8.5f) + lineTo(4.0f, 18.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, 4.0f) + horizontalLineToRelative(4.81f) + arcToRelative(6.48f, 6.48f, 0.0f, false, true, 0.19f, -9.19f) + lineTo(13.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -0.16f, -0.96f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 15.5f, 5.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(4.73f) + arcToRelative(6.47f, 6.47f, 0.0f, false, true, 5.5f, -0.23f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(17.0f, 7.0f) + lineTo(17.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -5.0f, -2.24f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 7.0f, 5.0f) + close() + moveTo(10.0f, 3.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-3.0f) + lineTo(8.5f, 5.0f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(16.91f, 15.1f) + arcToRelative(0.55f, 0.55f, 0.0f, false, false, -0.54f, -0.05f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.2f, 0.13f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, -0.18f, 0.44f) + verticalLineToRelative(3.76f) + arcToRelative(0.61f, 0.61f, 0.0f, false, false, 0.19f, 0.44f) + curveToRelative(0.05f, 0.05f, 0.12f, 0.1f, 0.19f, 0.13f) + arcToRelative(0.55f, 0.55f, 0.0f, false, false, 0.44f, 0.0f) + arcToRelative(0.66f, 0.66f, 0.0f, false, false, 0.11f, -0.05f) + lineToRelative(2.8f, -1.92f) + arcToRelative(0.56f, 0.56f, 0.0f, false, false, 0.2f, -0.22f) + arcToRelative(0.65f, 0.65f, 0.0f, false, false, 0.0f, -0.6f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.2f, -0.22f) + lineToRelative(-2.8f, -1.84f) + close() + } + } + return _shoppingBagPlay!! + } + +private var _shoppingBagPlay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShoppingBagTag.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShoppingBagTag.kt new file mode 100644 index 00000000..19b910d3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ShoppingBagTag.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ShoppingBagTag: ImageVector + get() { + if (_shoppingBagTag != null) { + return _shoppingBagTag!! + } + _shoppingBagTag = fluentIcon(name = "Filled.ShoppingBagTag") { + fluentPath { + moveTo(7.0f, 7.0f) + lineTo(7.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 5.0f, -2.24f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 17.0f, 5.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(1.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(4.32f) + lineToRelative(-0.97f, -0.96f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -2.11f, -0.86f) + lineTo(14.5f, 11.0f) + lineTo(14.5f, 7.0f) + horizontalLineToRelative(1.0f) + lineTo(15.5f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.66f, -0.96f) + curveToRelative(0.1f, 0.3f, 0.16f, 0.63f, 0.16f, 0.96f) + verticalLineToRelative(6.17f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 11.0f, 14.0f) + verticalLineToRelative(2.93f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.86f, 2.1f) + lineTo(14.77f, 22.0f) + lineTo(8.0f, 22.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f) + lineTo(4.0f, 8.5f) + curveTo(4.0f, 7.67f, 4.67f, 7.0f, 5.5f, 7.0f) + lineTo(7.0f, 7.0f) + close() + moveTo(8.5f, 5.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(3.0f) + lineTo(11.5f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) + close() + moveTo(12.57f, 18.33f) + lineTo(16.57f, 22.4f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.86f, 0.02f) + lineToRelative(2.99f, -3.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.01f, -2.83f) + lineToRelative(-4.08f, -4.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.41f, -0.58f) + lineTo(14.0f, 12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(2.93f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.57f, 1.4f) + close() + moveTo(16.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + } + } + return _shoppingBagTag!! + } + +private var _shoppingBagTag: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Shortpick.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Shortpick.kt new file mode 100644 index 00000000..8fc0d6a9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Shortpick.kt @@ -0,0 +1,122 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Shortpick: ImageVector + get() { + if (_shortpick != null) { + return _shortpick!! + } + _shortpick = fluentIcon(name = "Filled.Shortpick") { + fluentPath { + moveTo(8.96f, 3.5f) + lineTo(8.5f, 3.5f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(0.46f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.71f) + curveTo(7.56f, 7.0f, 7.0f, 6.44f, 7.0f, 5.75f) + verticalLineToRelative(-2.5f) + curveTo(7.0f, 2.56f, 7.56f, 2.0f, 8.25f, 2.0f) + horizontalLineToRelative(0.71f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(11.5f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.0f) + close() + moveTo(15.04f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.46f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-0.46f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.71f) + curveTo(16.44f, 7.0f, 17.0f, 6.44f, 17.0f, 5.75f) + verticalLineToRelative(-2.5f) + curveTo(17.0f, 2.56f, 16.44f, 2.0f, 15.75f, 2.0f) + horizontalLineToRelative(-0.71f) + close() + moveTo(11.5f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.0f) + close() + moveTo(4.75f, 8.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(10.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(9.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(10.0f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-9.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 4.0f, 18.75f) + verticalLineToRelative(-10.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(8.25f, 14.0f) + curveTo(7.56f, 14.0f, 7.0f, 14.56f, 7.0f, 15.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(7.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-7.5f) + close() + moveTo(8.5f, 9.5f) + horizontalLineToRelative(0.46f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.71f) + curveTo(7.56f, 8.0f, 7.0f, 8.56f, 7.0f, 9.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(0.71f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(8.5f, 11.5f) + verticalLineToRelative(-2.0f) + close() + moveTo(10.75f, 8.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(14.29f, 8.75f) + curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(0.71f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineToRelative(-0.71f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.46f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(-0.46f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(10.75f, 12.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _shortpick!! + } + +private var _shortpick: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Showerhead.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Showerhead.kt new file mode 100644 index 00000000..b18cea15 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Showerhead.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Showerhead: ImageVector + get() { + if (_showerhead != null) { + return _showerhead!! + } + _showerhead = fluentIcon(name = "Filled.Showerhead") { + fluentPath { + moveTo(21.49f, 4.98f) + lineTo(19.48f, 7.0f) + arcToRelative(9.05f, 9.05f, 0.0f, false, false, -2.47f, -2.47f) + lineToRelative(2.01f, -2.0f) + arcToRelative(1.75f, 1.75f, 0.0f, true, true, 2.47f, 2.46f) + close() + moveTo(5.28f, 13.72f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(2.0f, -2.0f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(7.78f, 17.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(2.0f, -2.0f) + close() + moveTo(10.28f, 19.78f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(2.0f, -2.0f) + close() + moveTo(3.74f, 7.26f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 2.47f, 0.0f) + lineToRelative(10.56f, 10.56f) + arcToRelative(1.75f, 1.75f, 0.0f, true, true, -2.47f, 2.48f) + lineTo(3.74f, 9.74f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.0f, -2.48f) + close() + moveTo(6.92f, 6.56f) + arcToRelative(2.76f, 2.76f, 0.0f, false, false, -0.43f, -0.36f) + arcTo(8.0f, 8.0f, 0.0f, false, true, 17.8f, 17.5f) + curveToRelative(-0.1f, -0.13f, -0.2f, -0.26f, -0.32f, -0.39f) + lineTo(6.92f, 6.56f) + close() + } + } + return _showerhead!! + } + +private var _showerhead: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SignOut.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SignOut.kt new file mode 100644 index 00000000..43f32bb1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SignOut.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SignOut: ImageVector + get() { + if (_signOut != null) { + return _signOut!! + } + _signOut = fluentIcon(name = "Filled.SignOut") { + fluentPath { + moveTo(12.0f, 4.35f) + lineTo(12.0f, 11.0f) + horizontalLineToRelative(7.44f) + lineToRelative(-1.72f, -1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + lineToRelative(3.0f, 3.0f) + curveToRelative(0.26f, 0.26f, 0.29f, 0.68f, 0.07f, 0.97f) + lineToRelative(-0.07f, 0.09f) + lineToRelative(-3.0f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.97f) + lineToRelative(0.07f, -0.09f) + lineToRelative(1.71f, -1.72f) + lineTo(12.0f, 12.5f) + verticalLineToRelative(6.75f) + curveToRelative(0.0f, 0.47f, -0.42f, 0.82f, -0.88f, 0.74f) + lineToRelative(-8.5f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.62f, -0.74f) + verticalLineToRelative(-12.0f) + curveToRelative(0.0f, -0.37f, 0.27f, -0.68f, 0.63f, -0.74f) + lineToRelative(8.5f, -1.4f) + curveToRelative(0.46f, -0.07f, 0.87f, 0.28f, 0.87f, 0.74f) + close() + moveTo(8.5f, 11.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(13.0f, 18.5f) + horizontalLineToRelative(0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + lineToRelative(-0.01f, -4.25f) + lineTo(13.0f, 13.5f) + verticalLineToRelative(5.0f) + close() + moveTo(13.0f, 10.0f) + lineTo(13.0f, 5.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.37f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) + verticalLineToRelative(0.1f) + lineTo(14.5f, 10.0f) + lineTo(13.0f, 10.0f) + close() + } + } + return _signOut!! + } + +private var _signOut: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Signature.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Signature.kt new file mode 100644 index 00000000..6fb25071 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Signature.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Signature: ImageVector + get() { + if (_signature != null) { + return _signature!! + } + _signature = fluentIcon(name = "Filled.Signature") { + fluentPath { + moveTo(14.75f, 16.5f) + curveToRelative(1.3f, 0.0f, 1.82f, 0.58f, 2.2f, 1.87f) + lineToRelative(0.07f, 0.24f) + curveToRelative(0.19f, 0.66f, 0.3f, 0.86f, 0.52f, 0.95f) + curveToRelative(0.26f, 0.1f, 0.43f, 0.09f, 0.7f, -0.05f) + lineToRelative(0.15f, -0.08f) + lineToRelative(0.17f, -0.11f) + lineToRelative(0.67f, -0.46f) + curveToRelative(0.61f, -0.4f, 1.17f, -0.67f, 1.84f, -0.84f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.36f, 1.46f) + curveToRelative(-0.4f, 0.1f, -0.76f, 0.25f, -1.14f, 0.49f) + lineToRelative(-0.3f, 0.19f) + lineToRelative(-0.48f, 0.33f) + curveToRelative(-0.23f, 0.15f, -0.4f, 0.26f, -0.58f, 0.35f) + arcToRelative(2.2f, 2.2f, 0.0f, false, true, -1.96f, 0.1f) + curveToRelative(-0.75f, -0.3f, -1.05f, -0.78f, -1.33f, -1.72f) + lineToRelative(-0.16f, -0.54f) + curveToRelative(-0.18f, -0.59f, -0.3f, -0.68f, -0.73f, -0.68f) + curveToRelative(-0.3f, 0.0f, -0.63f, 0.16f, -1.07f, 0.52f) + lineToRelative(-0.18f, 0.16f) + lineToRelative(-0.92f, 0.88f) + curveToRelative(-1.41f, 1.32f, -2.61f, 1.97f, -4.33f, 1.97f) + curveToRelative(-1.69f, 0.0f, -3.15f, -0.26f, -4.37f, -0.77f) + lineToRelative(2.95f, -0.8f) + curveToRelative(0.45f, 0.04f, 0.92f, 0.07f, 1.42f, 0.07f) + curveToRelative(1.18f, 0.0f, 2.03f, -0.42f, 3.09f, -1.37f) + lineToRelative(0.25f, -0.24f) + lineToRelative(0.54f, -0.5f) + arcToRelative(12.0f, 12.0f, 0.0f, false, true, 0.59f, -0.55f) + curveToRelative(0.68f, -0.57f, 1.3f, -0.87f, 2.03f, -0.87f) + close() + moveTo(19.03f, 2.97f) + arcToRelative(3.58f, 3.58f, 0.0f, false, true, 0.0f, 5.06f) + lineToRelative(-0.29f, 0.29f) + curveToRelative(1.15f, 1.4f, 1.11f, 2.89f, 0.04f, 3.96f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(2.0f, -2.0f) + curveToRelative(0.48f, -0.49f, 0.54f, -1.09f, -0.04f, -1.84f) + lineTo(9.06f, 18.0f) + curveToRelative(-0.27f, 0.28f, -0.62f, 0.48f, -1.0f, 0.58f) + lineToRelative(-5.11f, 1.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.92f, -0.93f) + lineToRelative(1.4f, -5.11f) + curveToRelative(0.1f, -0.38f, 0.3f, -0.72f, 0.57f, -1.0f) + lineToRelative(9.97f, -9.97f) + arcToRelative(3.58f, 3.58f, 0.0f, false, true, 5.06f, 0.0f) + close() + } + } + return _signature!! + } + +private var _signature: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Sim.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Sim.kt new file mode 100644 index 00000000..df62a2a7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Sim.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Sim: ImageVector + get() { + if (_sim != null) { + return _sim!! + } + _sim = fluentIcon(name = "Filled.Sim") { + fluentPath { + moveTo(4.0f, 5.25f) + curveTo(4.0f, 3.45f, 5.46f, 2.0f, 7.25f, 2.0f) + horizontalLineToRelative(5.46f) + curveToRelative(0.87f, 0.0f, 1.7f, 0.34f, 2.3f, 0.95f) + lineTo(19.05f, 7.0f) + curveToRelative(0.6f, 0.6f, 0.95f, 1.43f, 0.95f, 2.3f) + verticalLineToRelative(9.46f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-9.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 4.0f, 18.75f) + lineTo(4.0f, 5.25f) + close() + moveTo(7.75f, 14.0f) + lineTo(12.0f, 14.0f) + verticalLineToRelative(-3.25f) + lineTo(9.25f, 10.75f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + lineTo(7.75f, 14.0f) + close() + moveTo(7.75f, 15.5f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + lineTo(12.0f, 18.25f) + lineTo(12.0f, 15.5f) + lineTo(7.75f, 15.5f) + close() + moveTo(13.5f, 18.25f) + horizontalLineToRelative(1.25f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(13.5f, 10.75f) + verticalLineToRelative(7.5f) + close() + } + } + return _sim!! + } + +private var _sim: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SkipBack10.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SkipBack10.kt new file mode 100644 index 00000000..c2a2d26c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SkipBack10.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SkipBack10: ImageVector + get() { + if (_skipBack10 != null) { + return _skipBack10!! + } + _skipBack10 = fluentIcon(name = "Filled.SkipBack10") { + fluentPath { + moveTo(3.0f, 2.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + lineTo(2.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(5.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + lineTo(4.86f, 8.0f) + arcToRelative(7.87f, 7.87f, 0.0f, false, true, 3.69f, -2.57f) + arcToRelative(9.44f, 9.44f, 0.0f, false, true, 10.82f, 4.05f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.76f, -0.96f) + arcToRelative(11.44f, 11.44f, 0.0f, false, false, -13.17f, -5.0f) + arcTo(9.52f, 9.52f, 0.0f, false, false, 4.0f, 5.98f) + lineTo(4.0f, 3.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + moveTo(9.75f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.76f, -0.65f) + lineToRelative(-0.22f, 0.27f) + arcToRelative(8.02f, 8.02f, 0.0f, false, true, -2.28f, 2.02f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.02f, 1.72f) + curveToRelative(0.49f, -0.3f, 0.9f, -0.58f, 1.24f, -0.87f) + lineTo(7.75f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + verticalLineToRelative(-8.0f) + close() + moveTo(16.25f, 11.0f) + curveToRelative(-1.39f, 0.0f, -2.4f, 0.64f, -3.0f, 1.66f) + arcTo(6.61f, 6.61f, 0.0f, false, false, 12.5f, 16.0f) + curveToRelative(0.0f, 1.18f, 0.18f, 2.39f, 0.74f, 3.34f) + arcTo(3.33f, 3.33f, 0.0f, false, false, 16.25f, 21.0f) + curveToRelative(1.39f, 0.0f, 2.4f, -0.64f, 3.0f, -1.66f) + curveToRelative(0.57f, -0.95f, 0.75f, -2.16f, 0.75f, -3.34f) + curveToRelative(0.0f, -1.18f, -0.18f, -2.39f, -0.74f, -3.34f) + arcTo(3.33f, 3.33f, 0.0f, false, false, 16.25f, 11.0f) + close() + moveTo(14.5f, 16.0f) + curveToRelative(0.0f, -1.03f, 0.17f, -1.82f, 0.46f, -2.32f) + curveToRelative(0.25f, -0.42f, 0.61f, -0.68f, 1.29f, -0.68f) + reflectiveCurveToRelative(1.04f, 0.26f, 1.29f, 0.68f) + curveToRelative(0.3f, 0.5f, 0.46f, 1.29f, 0.46f, 2.32f) + arcToRelative(4.7f, 4.7f, 0.0f, false, true, -0.46f, 2.32f) + curveToRelative(-0.25f, 0.42f, -0.61f, 0.68f, -1.29f, 0.68f) + reflectiveCurveToRelative(-1.04f, -0.26f, -1.29f, -0.68f) + arcTo(4.7f, 4.7f, 0.0f, false, true, 14.5f, 16.0f) + close() + } + } + return _skipBack10!! + } + +private var _skipBack10: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SkipForward10.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SkipForward10.kt new file mode 100644 index 00000000..be53468c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SkipForward10.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SkipForward10: ImageVector + get() { + if (_skipForward10 != null) { + return _skipForward10!! + } + _skipForward10 = fluentIcon(name = "Filled.SkipForward10") { + fluentPath { + moveTo(21.0f, 2.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + lineTo(22.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-5.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + horizontalLineToRelative(3.39f) + arcToRelative(7.87f, 7.87f, 0.0f, false, false, -3.69f, -2.57f) + arcTo(9.44f, 9.44f, 0.0f, false, false, 4.63f, 9.48f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.76f, -0.96f) + arcToRelative(11.44f, 11.44f, 0.0f, false, true, 13.17f, -5.0f) + arcTo(9.52f, 9.52f, 0.0f, false, true, 20.0f, 5.98f) + lineTo(20.0f, 3.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(9.1f, 11.06f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.65f, 0.94f) + verticalLineToRelative(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + verticalLineToRelative(-5.5f) + curveToRelative(-0.35f, 0.28f, -0.75f, 0.57f, -1.24f, 0.86f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.02f, -1.72f) + arcToRelative(8.02f, 8.02f, 0.0f, false, false, 2.28f, -2.02f) + lineToRelative(0.22f, -0.27f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.1f, -0.29f) + close() + moveTo(13.24f, 12.66f) + arcTo(3.33f, 3.33f, 0.0f, false, true, 16.25f, 11.0f) + curveToRelative(1.39f, 0.0f, 2.4f, 0.64f, 3.0f, 1.66f) + curveToRelative(0.57f, 0.95f, 0.75f, 2.16f, 0.75f, 3.34f) + curveToRelative(0.0f, 1.18f, -0.18f, 2.39f, -0.74f, 3.34f) + arcTo(3.33f, 3.33f, 0.0f, false, true, 16.25f, 21.0f) + curveToRelative(-1.39f, 0.0f, -2.4f, -0.64f, -3.0f, -1.66f) + arcTo(6.61f, 6.61f, 0.0f, false, true, 12.5f, 16.0f) + curveToRelative(0.0f, -1.18f, 0.18f, -2.39f, 0.74f, -3.34f) + close() + moveTo(14.96f, 13.68f) + arcTo(4.7f, 4.7f, 0.0f, false, false, 14.5f, 16.0f) + curveToRelative(0.0f, 1.03f, 0.17f, 1.82f, 0.46f, 2.32f) + curveToRelative(0.25f, 0.42f, 0.61f, 0.68f, 1.29f, 0.68f) + reflectiveCurveToRelative(1.04f, -0.26f, 1.29f, -0.68f) + curveToRelative(0.3f, -0.5f, 0.46f, -1.29f, 0.46f, -2.32f) + arcToRelative(4.7f, 4.7f, 0.0f, false, false, -0.46f, -2.32f) + curveToRelative(-0.25f, -0.42f, -0.61f, -0.68f, -1.29f, -0.68f) + reflectiveCurveToRelative(-1.04f, 0.26f, -1.29f, 0.68f) + close() + } + } + return _skipForward10!! + } + +private var _skipForward10: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SkipForward30.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SkipForward30.kt new file mode 100644 index 00000000..daf5aed8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SkipForward30.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SkipForward30: ImageVector + get() { + if (_skipForward30 != null) { + return _skipForward30!! + } + _skipForward30 = fluentIcon(name = "Filled.SkipForward30") { + fluentPath { + moveTo(21.0f, 2.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + lineTo(22.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-5.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(3.39f) + arcToRelative(7.87f, 7.87f, 0.0f, false, false, -3.69f, -2.57f) + arcTo(9.44f, 9.44f, 0.0f, false, false, 4.63f, 9.48f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.76f, -0.96f) + arcToRelative(11.44f, 11.44f, 0.0f, false, true, 13.17f, -5.0f) + arcTo(9.52f, 9.52f, 0.0f, false, true, 20.0f, 5.98f) + lineTo(20.0f, 3.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(6.46f, 13.71f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.57f, -0.44f) + arcTo(3.3f, 3.3f, 0.0f, false, true, 8.5f, 13.0f) + curveToRelative(1.6f, 0.0f, 1.92f, 0.77f, 1.93f, 1.04f) + curveToRelative(0.01f, 0.24f, -0.21f, 0.96f, -1.68f, 0.96f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + curveToRelative(1.47f, 0.0f, 1.7f, 0.72f, 1.68f, 0.96f) + curveToRelative(0.0f, 0.27f, -0.32f, 1.04f, -1.93f, 1.04f) + arcToRelative(3.3f, 3.3f, 0.0f, false, true, -1.47f, -0.27f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.57f, -0.44f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, 1.42f) + horizontalLineToRelative(0.01f) + curveToRelative(0.19f, 0.2f, 0.53f, 0.54f, 1.1f, 0.82f) + curveToRelative(0.59f, 0.28f, 1.34f, 0.47f, 2.35f, 0.47f) + curveToRelative(2.24f, 0.0f, 3.87f, -1.23f, 3.93f, -2.96f) + curveToRelative(0.03f, -0.8f, -0.28f, -1.51f, -0.84f, -2.04f) + curveToRelative(0.56f, -0.53f, 0.87f, -1.23f, 0.84f, -2.04f) + curveTo(12.37f, 12.23f, 10.74f, 11.0f, 8.5f, 11.0f) + curveToRelative(-1.0f, 0.0f, -1.76f, 0.2f, -2.34f, 0.47f) + curveToRelative(-0.58f, 0.28f, -0.92f, 0.63f, -1.1f, 0.81f) + lineToRelative(-0.02f, 0.01f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.42f) + close() + moveTo(14.24f, 12.66f) + arcTo(3.33f, 3.33f, 0.0f, false, true, 17.25f, 11.0f) + curveToRelative(1.39f, 0.0f, 2.4f, 0.64f, 3.0f, 1.66f) + curveToRelative(0.57f, 0.95f, 0.75f, 2.16f, 0.75f, 3.34f) + curveToRelative(0.0f, 1.18f, -0.18f, 2.39f, -0.74f, 3.34f) + arcTo(3.33f, 3.33f, 0.0f, false, true, 17.25f, 21.0f) + curveToRelative(-1.39f, 0.0f, -2.4f, -0.64f, -3.0f, -1.66f) + arcTo(6.61f, 6.61f, 0.0f, false, true, 13.5f, 16.0f) + curveToRelative(0.0f, -1.18f, 0.18f, -2.39f, 0.74f, -3.34f) + close() + moveTo(15.96f, 13.68f) + arcTo(4.7f, 4.7f, 0.0f, false, false, 15.5f, 16.0f) + curveToRelative(0.0f, 1.03f, 0.17f, 1.82f, 0.46f, 2.32f) + curveToRelative(0.25f, 0.42f, 0.61f, 0.68f, 1.29f, 0.68f) + reflectiveCurveToRelative(1.04f, -0.26f, 1.29f, -0.68f) + curveToRelative(0.3f, -0.5f, 0.46f, -1.29f, 0.46f, -2.32f) + arcToRelative(4.7f, 4.7f, 0.0f, false, false, -0.46f, -2.32f) + curveToRelative(-0.25f, -0.42f, -0.61f, -0.68f, -1.29f, -0.68f) + reflectiveCurveToRelative(-1.04f, 0.26f, -1.29f, 0.68f) + close() + } + } + return _skipForward30!! + } + +private var _skipForward30: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SkipForwardTab.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SkipForwardTab.kt new file mode 100644 index 00000000..3955db48 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SkipForwardTab.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SkipForwardTab: ImageVector + get() { + if (_skipForwardTab != null) { + return _skipForwardTab!! + } + _skipForwardTab = fluentIcon(name = "Filled.SkipForwardTab") { + fluentPath { + moveTo(22.0f, 3.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(2.73f) + arcToRelative(9.52f, 9.52f, 0.0f, false, false, -3.95f, -2.46f) + arcToRelative(11.44f, 11.44f, 0.0f, false, false, -13.18f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.76f, 0.96f) + arcToRelative(9.44f, 9.44f, 0.0f, false, true, 10.83f, -4.05f) + curveToRelative(1.47f, 0.46f, 2.7f, 1.4f, 3.68f, 2.57f) + horizontalLineToRelative(-3.39f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + lineTo(21.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + lineTo(22.0f, 3.25f) + close() + moveTo(6.0f, 15.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(8.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + verticalLineToRelative(4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + lineTo(8.0f, 21.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(8.0f, 15.5f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(7.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + horizontalLineToRelative(-7.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + close() + } + } + return _skipForwardTab!! + } + +private var _skipForwardTab: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlashForward.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlashForward.kt new file mode 100644 index 00000000..56c022bd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlashForward.kt @@ -0,0 +1,29 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SlashForward: ImageVector + get() { + if (_slashForward != null) { + return _slashForward!! + } + _slashForward = fluentIcon(name = "Filled.SlashForward") { + fluentPath { + moveTo(15.32f, 2.05f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.63f, 1.27f) + lineToRelative(-6.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.9f, -0.64f) + lineToRelative(6.0f, -18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.27f, -0.63f) + close() + } + } + return _slashForward!! + } + +private var _slashForward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Sleep.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Sleep.kt new file mode 100644 index 00000000..35b218f9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Sleep.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Sleep: ImageVector + get() { + if (_sleep != null) { + return _sleep!! + } + _sleep = fluentIcon(name = "Filled.Sleep") { + fluentPath { + moveTo(13.38f, 3.03f) + arcToRelative(9.0f, 9.0f, 0.0f, true, true, -7.9f, 14.1f) + arcToRelative(0.68f, 0.68f, 0.0f, false, true, 0.32f, -1.02f) + curveToRelative(3.4f, -1.21f, 5.21f, -2.62f, 6.27f, -4.63f) + curveToRelative(1.1f, -2.12f, 1.4f, -4.44f, 0.62f, -7.62f) + arcToRelative(0.68f, 0.68f, 0.0f, false, true, 0.69f, -0.83f) + close() + moveTo(10.99f, 3.65f) + lineTo(11.0f, 3.75f) + lineTo(11.0f, 9.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -1.5f, -1.94f) + verticalLineToRelative(-2.3f) + lineTo(6.0f, 5.83f) + lineTo(6.0f, 10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -1.5f, -1.94f) + lineTo(4.5f, 5.27f) + curveToRelative(0.0f, -0.3f, 0.17f, -0.55f, 0.43f, -0.68f) + lineToRelative(0.1f, -0.03f) + lineToRelative(5.0f, -1.53f) + curveToRelative(0.45f, -0.13f, 0.9f, 0.17f, 0.96f, 0.62f) + close() + } + } + return _sleep!! + } + +private var _sleep: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideAdd.kt new file mode 100644 index 00000000..13a332ef --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideAdd.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SlideAdd: ImageVector + get() { + if (_slideAdd != null) { + return _slideAdd!! + } + _slideAdd = fluentIcon(name = "Filled.SlideAdd") { + fluentPath { + moveTo(4.75f, 4.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 6.75f) + verticalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 20.0f) + horizontalLineToRelative(6.75f) + arcTo(6.5f, 6.5f, 0.0f, false, true, 22.0f, 12.81f) + lineTo(22.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 4.0f) + lineTo(4.75f, 4.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _slideAdd!! + } + +private var _slideAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideArrowRight.kt new file mode 100644 index 00000000..f7851861 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideArrowRight.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SlideArrowRight: ImageVector + get() { + if (_slideArrowRight != null) { + return _slideArrowRight!! + } + _slideArrowRight = fluentIcon(name = "Filled.SlideArrowRight") { + fluentPath { + moveTo(2.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) + verticalLineToRelative(6.06f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, -6.21f, -1.58f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.54f, -0.23f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(6.6f) + curveToRelative(-0.52f, 0.43f, -0.97f, 0.93f, -1.33f, 1.5f) + lineTo(6.75f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.56f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, 0.19f, 4.5f) + lineTo(4.75f, 20.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) + lineTo(2.0f, 6.75f) + close() + moveTo(6.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(19.29f, 17.0f) + lineTo(14.5f, 17.0f) + close() + } + } + return _slideArrowRight!! + } + +private var _slideArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideEraser.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideEraser.kt new file mode 100644 index 00000000..82e3ba8d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideEraser.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SlideEraser: ImageVector + get() { + if (_slideEraser != null) { + return _slideEraser!! + } + _slideEraser = fluentIcon(name = "Filled.SlideEraser") { + fluentPath { + moveTo(4.75f, 4.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 6.75f) + verticalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 20.0f) + horizontalLineToRelative(7.83f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.17f, -3.35f) + lineToRelative(4.91f, -4.92f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 3.54f, 0.0f) + lineToRelative(0.8f, 0.8f) + verticalLineTo(6.76f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 4.0f) + horizontalLineTo(4.75f) + close() + } + fluentPath { + moveTo(20.5f, 12.44f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.13f, 0.0f) + lineToRelative(-3.11f, 3.11f) + lineToRelative(4.2f, 4.2f) + lineToRelative(3.12f, -3.1f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -2.12f) + lineToRelative(-2.09f, -2.09f) + close() + } + fluentPath { + moveToRelative(13.45f, 17.36f) + lineToRelative(1.1f, -1.1f) + lineToRelative(4.21f, 4.2f) + lineToRelative(-1.1f, 1.1f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.12f, 0.0f) + lineToRelative(-2.09f, -2.08f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -2.12f) + close() + } + } + return _slideEraser!! + } + +private var _slideEraser: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideGrid.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideGrid.kt new file mode 100644 index 00000000..0be1edcf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideGrid.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SlideGrid: ImageVector + get() { + if (_slideGrid != null) { + return _slideGrid!! + } + _slideGrid = fluentIcon(name = "Filled.SlideGrid") { + fluentPath { + moveTo(6.25f, 12.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(4.0f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-4.0f) + close() + moveTo(13.75f, 12.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(4.0f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-4.0f) + close() + moveTo(6.25f, 7.0f) + curveTo(5.56f, 7.0f, 5.0f, 7.56f, 5.0f, 8.25f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(4.0f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-4.0f) + close() + moveTo(13.75f, 7.0f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(4.0f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-2.0f) + curveTo(19.0f, 7.56f, 18.44f, 7.0f, 17.75f, 7.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(2.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) + verticalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) + lineTo(4.75f, 20.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) + lineTo(2.0f, 6.75f) + close() + moveTo(4.75f, 5.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(14.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + lineTo(20.5f, 6.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(4.75f, 5.5f) + close() + } + } + return _slideGrid!! + } + +private var _slideGrid: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideHide.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideHide.kt new file mode 100644 index 00000000..f7ec8f44 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideHide.kt @@ -0,0 +1,118 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SlideHide: ImageVector + get() { + if (_slideHide != null) { + return _slideHide!! + } + _slideHide = fluentIcon(name = "Filled.SlideHide") { + fluentPath { + moveTo(6.75f, 3.0f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 2.0f, 7.75f) + verticalLineToRelative(7.0f) + curveTo(2.0f, 15.99f, 3.0f, 17.0f, 4.25f, 17.0f) + horizontalLineToRelative(0.25f) + lineTo(4.5f, 8.75f) + curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) + lineTo(19.0f, 5.5f) + verticalLineToRelative(-0.25f) + curveTo(19.0f, 4.01f, 18.0f, 3.0f, 16.75f, 3.0f) + horizontalLineToRelative(-10.0f) + close() + moveTo(19.25f, 6.5f) + horizontalLineToRelative(0.5f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-1.1f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(6.25f, 11.5f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-2.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(6.99f, 17.14f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.49f, 0.1f) + verticalLineToRelative(1.16f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.25f, 2.1f) + horizontalLineToRelative(0.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-0.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) + verticalLineToRelative(-1.1f) + close() + moveTo(22.0f, 17.24f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) + verticalLineToRelative(1.01f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.0f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-1.0f) + close() + moveTo(14.75f, 19.0f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(12.25f, 19.0f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(21.99f, 12.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.49f, 0.1f) + verticalLineToRelative(2.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + verticalLineToRelative(-2.6f) + close() + moveTo(9.5f, 7.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-1.0f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.0f) + curveToRelative(0.42f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + close() + moveTo(15.25f, 6.5f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(12.75f, 6.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + } + } + return _slideHide!! + } + +private var _slideHide: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideLayout.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideLayout.kt new file mode 100644 index 00000000..63104aa8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideLayout.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SlideLayout: ImageVector + get() { + if (_slideLayout != null) { + return _slideLayout!! + } + _slideLayout = fluentIcon(name = "Filled.SlideLayout") { + fluentPath { + moveTo(6.5f, 8.75f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(10.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.75f) + horizontalLineToRelative(-11.0f) + lineTo(6.5f, 8.75f) + close() + moveTo(6.5f, 12.0f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + lineTo(9.0f, 15.5f) + lineTo(9.0f, 12.0f) + lineTo(6.5f, 12.0f) + close() + moveTo(17.25f, 15.5f) + lineTo(10.5f, 15.5f) + lineTo(10.5f, 12.0f) + horizontalLineToRelative(7.0f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + close() + moveTo(2.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) + verticalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) + lineTo(4.75f, 20.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) + lineTo(2.0f, 6.75f) + close() + moveTo(6.75f, 7.0f) + curveTo(5.78f, 7.0f, 5.0f, 7.78f, 5.0f, 8.75f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(10.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-6.5f) + curveTo(19.0f, 7.78f, 18.22f, 7.0f, 17.25f, 7.0f) + lineTo(6.75f, 7.0f) + close() + } + } + return _slideLayout!! + } + +private var _slideLayout: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideLink.kt new file mode 100644 index 00000000..e84603fd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideLink.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SlideLink: ImageVector + get() { + if (_slideLink != null) { + return _slideLink!! + } + _slideLink = fluentIcon(name = "Filled.SlideLink") { + fluentPath { + moveTo(2.0f, 6.25f) + curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) + horizontalLineToRelative(15.5f) + curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) + verticalLineToRelative(7.13f) + arcToRelative(4.73f, 4.73f, 0.0f, false, false, -2.75f, -0.88f) + horizontalLineToRelative(-3.5f) + arcToRelative(4.75f, 4.75f, 0.0f, false, false, -3.87f, 7.5f) + lineTo(4.25f, 20.0f) + curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) + lineTo(2.0f, 6.25f) + close() + moveTo(23.0f, 17.25f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.75f, -3.75f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + lineTo(19.25f, 21.0f) + horizontalLineToRelative(0.2f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 17.24f) + close() + moveTo(16.5f, 14.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-0.2f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(20.0f, 17.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + } + } + return _slideLink!! + } + +private var _slideLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideMicrophone.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideMicrophone.kt new file mode 100644 index 00000000..3183712f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideMicrophone.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SlideMicrophone: ImageVector + get() { + if (_slideMicrophone != null) { + return _slideMicrophone!! + } + _slideMicrophone = fluentIcon(name = "Filled.SlideMicrophone") { + fluentPath { + moveTo(2.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) + verticalLineToRelative(7.75f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -7.0f, 0.0f) + verticalLineToRelative(1.59f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.0f, 1.41f) + curveToRelative(0.0f, 0.92f, 0.28f, 1.77f, 0.75f, 2.5f) + horizontalLineToRelative(-9.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) + lineTo(2.0f, 6.75f) + close() + moveTo(6.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + close() + moveTo(6.75f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.5f) + close() + moveTo(6.0f, 14.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(15.0f, 17.5f) + curveToRelative(0.0f, 1.09f, 0.6f, 1.98f, 1.52f, 2.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 1.98f, 0.5f) + curveToRelative(1.93f, 0.0f, 3.5f, -1.25f, 3.5f, -3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + curveToRelative(0.0f, 2.0f, -1.75f, 3.72f, -4.0f, 3.97f) + verticalLineToRelative(1.03f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-1.03f) + arcTo(4.77f, 4.77f, 0.0f, false, true, 15.02f, 20.0f) + arcTo(3.7f, 3.7f, 0.0f, false, true, 14.0f, 17.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + close() + moveTo(16.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + lineTo(21.0f, 17.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) + verticalLineToRelative(-2.5f) + close() + } + } + return _slideMicrophone!! + } + +private var _slideMicrophone: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideMultiple.kt new file mode 100644 index 00000000..d4fff2a0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideMultiple.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SlideMultiple: ImageVector + get() { + if (_slideMultiple != null) { + return _slideMultiple!! + } + _slideMultiple = fluentIcon(name = "Filled.SlideMultiple") { + fluentPath { + moveTo(2.0f, 7.75f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 6.75f, 3.0f) + horizontalLineToRelative(10.0f) + curveTo(17.99f, 3.0f, 19.0f, 4.0f, 19.0f, 5.25f) + verticalLineToRelative(0.25f) + horizontalLineTo(7.75f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 4.5f, 8.75f) + verticalLineTo(17.0f) + horizontalLineToRelative(-0.25f) + curveTo(3.01f, 17.0f, 2.0f, 16.0f, 2.0f, 14.75f) + verticalLineToRelative(-7.0f) + close() + moveTo(7.75f, 6.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(12.0f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-12.0f) + close() + } + } + return _slideMultiple!! + } + +private var _slideMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideMultipleArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideMultipleArrowRight.kt new file mode 100644 index 00000000..453366d5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideMultipleArrowRight.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SlideMultipleArrowRight: ImageVector + get() { + if (_slideMultipleArrowRight != null) { + return _slideMultipleArrowRight!! + } + _slideMultipleArrowRight = fluentIcon(name = "Filled.SlideMultipleArrowRight") { + fluentPath { + moveTo(2.0f, 7.75f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 6.75f, 3.0f) + horizontalLineToRelative(10.0f) + curveTo(17.99f, 3.0f, 19.0f, 4.0f, 19.0f, 5.25f) + verticalLineToRelative(0.25f) + lineTo(7.75f, 5.5f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 4.5f, 8.75f) + lineTo(4.5f, 17.0f) + horizontalLineToRelative(-0.25f) + curveTo(3.01f, 17.0f, 2.0f, 16.0f, 2.0f, 14.75f) + verticalLineToRelative(-7.0f) + close() + moveTo(7.75f, 6.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(3.98f) + arcTo(6.5f, 6.5f, 0.0f, false, true, 22.0f, 12.81f) + lineTo(22.0f, 8.75f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-12.0f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(14.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(19.29f, 17.0f) + lineTo(14.5f, 17.0f) + close() + } + } + return _slideMultipleArrowRight!! + } + +private var _slideMultipleArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideMultipleSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideMultipleSearch.kt new file mode 100644 index 00000000..1ccc3e05 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideMultipleSearch.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SlideMultipleSearch: ImageVector + get() { + if (_slideMultipleSearch != null) { + return _slideMultipleSearch!! + } + _slideMultipleSearch = fluentIcon(name = "Filled.SlideMultipleSearch") { + fluentPath { + moveTo(2.0f, 7.75f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 6.75f, 3.0f) + horizontalLineToRelative(10.0f) + curveTo(17.99f, 3.0f, 19.0f, 4.0f, 19.0f, 5.25f) + verticalLineToRelative(0.25f) + lineTo(7.75f, 5.5f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 4.5f, 8.75f) + verticalLineToRelative(2.34f) + curveToRelative(-0.94f, 0.17f, -1.8f, 0.58f, -2.5f, 1.17f) + lineTo(2.0f, 7.75f) + close() + moveTo(10.43f, 18.95f) + lineTo(11.97f, 20.5f) + horizontalLineToRelative(7.78f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-12.0f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + lineTo(5.5f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 4.93f, 7.95f) + close() + moveTo(5.5f, 21.0f) + curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) + lineToRelative(2.62f, 2.61f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.61f, -2.61f) + arcTo(4.5f, 4.5f, 0.0f, true, false, 5.5f, 21.0f) + close() + moveTo(5.5f, 19.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) + close() + } + } + return _slideMultipleSearch!! + } + +private var _slideMultipleSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideSearch.kt new file mode 100644 index 00000000..1773c500 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideSearch.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SlideSearch: ImageVector + get() { + if (_slideSearch != null) { + return _slideSearch!! + } + _slideSearch = fluentIcon(name = "Filled.SlideSearch") { + fluentPath { + moveTo(2.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) + verticalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) + horizontalLineToRelative(-6.78f) + lineToRelative(-2.04f, -2.05f) + curveToRelative(0.36f, -0.74f, 0.57f, -1.57f, 0.57f, -2.45f) + horizontalLineToRelative(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.46f) + arcToRelative(5.47f, 5.47f, 0.0f, false, false, -0.68f, -1.5f) + horizontalLineToRelative(7.14f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(8.66f, 11.0f) + arcToRelative(5.48f, 5.48f, 0.0f, false, false, -6.66f, 0.26f) + lineTo(2.0f, 6.75f) + close() + moveTo(6.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.5f) + close() + moveTo(5.5f, 20.0f) + curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) + lineToRelative(2.62f, 2.61f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.61f, -2.61f) + arcTo(4.5f, 4.5f, 0.0f, true, false, 5.5f, 20.0f) + close() + moveTo(5.5f, 18.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) + close() + } + } + return _slideSearch!! + } + +private var _slideSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideSettings.kt new file mode 100644 index 00000000..1889d6ef --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideSettings.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SlideSettings: ImageVector + get() { + if (_slideSettings != null) { + return _slideSettings!! + } + _slideSettings = fluentIcon(name = "Filled.SlideSettings") { + fluentPath { + moveTo(5.25f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) + horizontalLineToRelative(6.25f) + arcTo(6.5f, 6.5f, 0.0f, false, true, 22.0f, 12.81f) + lineTo(22.0f, 7.25f) + curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) + lineTo(5.25f, 4.0f) + close() + moveTo(14.28f, 13.98f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.59f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) + lineToRelative(0.55f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) + lineToRelative(-0.19f, 0.64f) + curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) + lineToRelative(0.49f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) + lineToRelative(-0.2f, -0.69f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) + lineToRelative(0.59f, -0.14f) + arcToRelative(5.72f, 5.72f, 0.0f, false, false, 0.0f, -1.8f) + lineToRelative(-0.55f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.19f, -0.63f) + curveToRelative(-0.44f, -0.39f, -0.94f, -0.7f, -1.49f, -0.93f) + lineToRelative(-0.49f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) + lineToRelative(0.2f, 0.7f) + close() + moveTo(17.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) + close() + } + } + return _slideSettings!! + } + +private var _slideSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideSize.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideSize.kt new file mode 100644 index 00000000..d53b6b6e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideSize.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SlideSize: ImageVector + get() { + if (_slideSize != null) { + return _slideSize!! + } + _slideSize = fluentIcon(name = "Filled.SlideSize") { + fluentPath { + moveTo(2.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) + verticalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) + lineTo(4.75f, 20.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) + lineTo(2.0f, 6.75f) + close() + moveTo(16.78f, 7.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.53f, -0.22f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.69f) + lineToRelative(-1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(1.72f, -1.72f) + verticalLineToRelative(0.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.2f, -0.08f, -0.39f, -0.22f, -0.53f) + close() + moveTo(7.75f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.69f) + lineToRelative(1.72f, -1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineTo(8.5f, 14.44f) + verticalLineToRelative(-0.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, 0.75f) + close() + } + } + return _slideSize!! + } + +private var _slideSize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideText.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideText.kt new file mode 100644 index 00000000..fc4ea14f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideText.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SlideText: ImageVector + get() { + if (_slideText != null) { + return _slideText!! + } + _slideText = fluentIcon(name = "Filled.SlideText") { + fluentPath { + moveTo(2.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) + verticalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) + lineTo(4.75f, 20.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) + lineTo(2.0f, 6.75f) + close() + moveTo(6.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + close() + moveTo(6.75f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-8.5f) + close() + moveTo(6.0f, 14.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + } + } + return _slideText!! + } + +private var _slideText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideTextMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideTextMultiple.kt new file mode 100644 index 00000000..3813ff42 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideTextMultiple.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SlideTextMultiple: ImageVector + get() { + if (_slideTextMultiple != null) { + return _slideTextMultiple!! + } + _slideTextMultiple = fluentIcon(name = "Filled.SlideTextMultiple") { + fluentPath { + moveTo(17.0f, 4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + lineTo(5.0f, 19.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(2.0f, 7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(6.75f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + close() + moveTo(6.75f, 10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.5f) + close() + moveTo(6.0f, 14.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(21.0f, 7.51f) + curveToRelative(0.9f, 0.58f, 1.5f, 1.59f, 1.5f, 2.74f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) + horizontalLineToRelative(-9.0f) + curveToRelative(-1.15f, 0.0f, -2.16f, -0.6f, -2.74f, -1.5f) + horizontalLineToRelative(11.74f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 21.0f, 16.25f) + lineTo(21.0f, 7.51f) + close() + } + } + return _slideTextMultiple!! + } + +private var _slideTextMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideTextPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideTextPerson.kt new file mode 100644 index 00000000..ee3476e5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideTextPerson.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SlideTextPerson: ImageVector + get() { + if (_slideTextPerson != null) { + return _slideTextPerson!! + } + _slideTextPerson = fluentIcon(name = "Filled.SlideTextPerson") { + fluentPath { + moveTo(4.75f, 4.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 6.75f) + verticalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 20.0f) + lineTo(13.0f, 20.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, -0.13f) + verticalLineToRelative(-0.1f) + arcTo(2.77f, 2.77f, 0.0f, false, true, 15.77f, 17.0f) + horizontalLineToRelative(0.28f) + arcToRelative(3.49f, 3.49f, 0.0f, false, true, -0.42f, -4.5f) + lineTo(6.75f, 12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(9.0f) + curveToRelative(0.37f, 0.0f, 0.69f, 0.27f, 0.74f, 0.63f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 21.96f, 14.0f) + lineTo(22.0f, 14.0f) + lineTo(22.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 4.0f) + lineTo(4.75f, 4.0f) + close() + moveTo(6.0f, 8.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 6.0f, 8.75f) + close() + moveTo(6.75f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.5f) + close() + moveTo(21.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(23.0f, 19.88f) + curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) + reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _slideTextPerson!! + } + +private var _slideTextPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideTransition.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideTransition.kt new file mode 100644 index 00000000..7a52d405 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SlideTransition.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SlideTransition: ImageVector + get() { + if (_slideTransition != null) { + return _slideTransition!! + } + _slideTransition = fluentIcon(name = "Filled.SlideTransition") { + fluentPath { + moveTo(4.75f, 4.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 6.75f) + verticalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 20.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 17.25f) + lineTo(22.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 4.0f) + lineTo(4.75f, 4.0f) + close() + moveTo(6.5f, 5.5f) + verticalLineToRelative(13.0f) + lineTo(5.0f, 18.5f) + verticalLineToRelative(-13.0f) + horizontalLineToRelative(1.5f) + close() + moveTo(10.5f, 18.5f) + lineTo(9.0f, 18.5f) + verticalLineToRelative(-13.0f) + horizontalLineToRelative(1.5f) + verticalLineToRelative(13.0f) + close() + moveTo(15.5f, 18.5f) + lineTo(14.0f, 18.5f) + verticalLineToRelative(-13.0f) + horizontalLineToRelative(1.5f) + verticalLineToRelative(13.0f) + close() + } + } + return _slideTransition!! + } + +private var _slideTransition: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Smartwatch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Smartwatch.kt new file mode 100644 index 00000000..3998383b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Smartwatch.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Smartwatch: ImageVector + get() { + if (_smartwatch != null) { + return _smartwatch!! + } + _smartwatch = fluentIcon(name = "Filled.Smartwatch") { + fluentPath { + moveTo(9.5f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(1.3f) + curveToRelative(0.46f, -0.2f, 0.97f, -0.3f, 1.5f, -0.3f) + horizontalLineToRelative(6.0f) + curveToRelative(0.53f, 0.0f, 1.04f, 0.1f, 1.5f, 0.3f) + lineTo(16.5f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + horizontalLineToRelative(-5.0f) + close() + moveTo(9.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) + horizontalLineToRelative(6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) + verticalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(18.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + lineTo(9.0f, 6.0f) + close() + moveTo(9.0f, 19.0f) + curveToRelative(-0.53f, 0.0f, -1.04f, -0.1f, -1.5f, -0.3f) + lineTo(7.5f, 20.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + verticalLineToRelative(-1.3f) + curveToRelative(-0.46f, 0.2f, -0.97f, 0.3f, -1.5f, 0.3f) + lineTo(9.0f, 19.0f) + close() + } + } + return _smartwatch!! + } + +private var _smartwatch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SmartwatchDot.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SmartwatchDot.kt new file mode 100644 index 00000000..1ab45004 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SmartwatchDot.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SmartwatchDot: ImageVector + get() { + if (_smartwatchDot != null) { + return _smartwatchDot!! + } + _smartwatchDot = fluentIcon(name = "Filled.SmartwatchDot") { + fluentPath { + moveTo(14.5f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.79f, 1.1f) + arcToRelative(3.49f, 3.49f, 0.0f, false, false, -0.23f, 2.04f) + arcTo(4.0f, 4.0f, 0.0f, false, false, 15.0f, 5.0f) + lineTo(9.0f, 5.0f) + curveToRelative(-0.53f, 0.0f, -1.04f, 0.1f, -1.5f, 0.3f) + lineTo(7.5f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(15.0f, 6.0f) + curveToRelative(0.59f, 0.0f, 1.14f, 0.17f, 1.6f, 0.46f) + curveToRelative(0.25f, 0.37f, 0.57f, 0.69f, 0.94f, 0.94f) + curveToRelative(0.29f, 0.46f, 0.46f, 1.01f, 0.46f, 1.6f) + verticalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + lineTo(9.0f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(6.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(6.0f) + close() + moveTo(9.0f, 19.0f) + curveToRelative(-0.53f, 0.0f, -1.04f, -0.1f, -1.5f, -0.3f) + lineTo(7.5f, 20.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + verticalLineToRelative(-1.3f) + curveToRelative(-0.46f, 0.2f, -0.97f, 0.3f, -1.5f, 0.3f) + lineTo(9.0f, 19.0f) + close() + moveTo(22.0f, 4.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 5.0f, 0.0f) + close() + } + } + return _smartwatchDot!! + } + +private var _smartwatchDot: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Snooze.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Snooze.kt new file mode 100644 index 00000000..3c73a208 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Snooze.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Snooze: ImageVector + get() { + if (_snooze != null) { + return _snooze!! + } + _snooze = fluentIcon(name = "Filled.Snooze") { + fluentPath { + moveTo(9.0f, 12.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.85f, 1.54f) + lineToRelative(-0.07f, 0.09f) + lineTo(5.08f, 20.0f) + horizontalLineTo(9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + verticalLineTo(21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + horizontalLineTo(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.85f, -1.53f) + lineToRelative(0.07f, -0.1f) + lineToRelative(4.7f, -5.87f) + horizontalLineTo(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + verticalLineToRelative(-0.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -0.99f) + horizontalLineTo(9.0f) + close() + moveTo(21.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.84f, 1.54f) + lineToRelative(-0.07f, 0.1f) + lineTo(14.11f, 13.0f) + horizontalLineTo(21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + verticalLineTo(14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + horizontalLineTo(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.84f, -1.54f) + lineToRelative(0.07f, -0.1f) + lineTo(18.89f, 4.0f) + horizontalLineTo(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + verticalLineTo(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) + horizontalLineTo(21.0f) + close() + } + } + return _snooze!! + } + +private var _snooze: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SoundSource.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SoundSource.kt new file mode 100644 index 00000000..06cf0eed --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SoundSource.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SoundSource: ImageVector + get() { + if (_soundSource != null) { + return _soundSource!! + } + _soundSource = fluentIcon(name = "Filled.SoundSource") { + fluentPath { + moveTo(3.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 14.76f, 5.75f) + lineToRelative(1.0f, 1.13f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -14.5f, 0.0f) + lineToRelative(0.98f, -1.13f) + arcTo(8.47f, 8.47f, 0.0f, false, true, 3.5f, 12.0f) + close() + moveTo(19.25f, 12.13f) + arcToRelative(7.1f, 7.1f, 0.0f, false, true, -1.78f, 4.71f) + lineToRelative(-1.0f, -1.14f) + arcToRelative(5.63f, 5.63f, 0.0f, true, false, -8.8f, -0.15f) + lineTo(6.65f, 16.7f) + arcToRelative(7.12f, 7.12f, 0.0f, true, true, 12.6f, -4.57f) + close() + moveTo(16.25f, 12.0f) + curveToRelative(0.0f, 0.94f, -0.3f, 1.8f, -0.82f, 2.51f) + lineToRelative(-1.03f, -1.17f) + arcToRelative(2.75f, 2.75f, 0.0f, true, false, -4.8f, 0.0f) + lineTo(8.57f, 14.5f) + arcTo(4.25f, 4.25f, 0.0f, true, true, 16.25f, 12.0f) + close() + moveTo(12.0f, 12.5f) + curveToRelative(0.22f, 0.0f, 0.42f, 0.1f, 0.56f, 0.26f) + lineToRelative(7.0f, 8.0f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 19.0f, 22.0f) + lineTo(5.0f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.56f, -1.24f) + lineToRelative(7.0f, -8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.56f, -0.26f) + close() + } + } + return _soundSource!! + } + +private var _soundSource: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SoundWaveCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SoundWaveCircle.kt new file mode 100644 index 00000000..e2bcfd79 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SoundWaveCircle.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SoundWaveCircle: ImageVector + get() { + if (_soundWaveCircle != null) { + return _soundWaveCircle!! + } + _soundWaveCircle = fluentIcon(name = "Filled.SoundWaveCircle") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) + close() + moveTo(11.0f, 8.75f) + verticalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(17.0f, 8.75f) + verticalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(14.0f, 10.25f) + verticalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(8.0f, 10.75f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + } + } + return _soundWaveCircle!! + } + +private var _soundWaveCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Space3D.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Space3D.kt new file mode 100644 index 00000000..d15affbf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Space3D.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Space3D: ImageVector + get() { + if (_space3D != null) { + return _space3D!! + } + _space3D = fluentIcon(name = "Filled.Space3D") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + lineTo(21.0f, 15.0f) + horizontalLineToRelative(-0.81f) + lineToRelative(-2.25f, -3.0f) + horizontalLineToRelative(1.56f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 12.0f) + horizontalLineToRelative(1.56f) + lineToRelative(-2.25f, 3.0f) + lineTo(3.0f, 15.0f) + lineTo(3.0f, 6.25f) + close() + moveTo(15.7f, 16.5f) + lineTo(21.0f, 16.5f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-0.67f) + lineToRelative(-0.36f, -1.22f) + lineToRelative(-1.03f, -3.28f) + close() + moveTo(18.3f, 15.0f) + horizontalLineToRelative(-3.09f) + lineToRelative(-0.93f, -3.0f) + horizontalLineToRelative(1.77f) + lineToRelative(2.25f, 3.0f) + close() + moveTo(10.51f, 15.0f) + horizontalLineToRelative(3.13f) + lineToRelative(-0.94f, -3.0f) + horizontalLineToRelative(-1.44f) + lineToRelative(-0.75f, 3.0f) + close() + moveTo(14.11f, 16.5f) + horizontalLineToRelative(-3.97f) + lineTo(9.02f, 21.0f) + horizontalLineToRelative(6.5f) + lineToRelative(-0.24f, -0.78f) + lineToRelative(-1.16f, -3.72f) + close() + moveTo(9.72f, 12.0f) + lineToRelative(-0.74f, 3.0f) + horizontalLineToRelative(-3.3f) + lineToRelative(2.26f, -3.0f) + horizontalLineToRelative(1.79f) + close() + moveTo(8.6f, 16.5f) + lineTo(3.0f, 16.5f) + verticalLineToRelative(1.25f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(1.23f) + lineToRelative(1.12f, -4.5f) + close() + } + } + return _space3D!! + } + +private var _space3D: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Spacebar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Spacebar.kt new file mode 100644 index 00000000..0d0bf0f9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Spacebar.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Spacebar: ImageVector + get() { + if (_spacebar != null) { + return _spacebar!! + } + _spacebar = fluentIcon(name = "Filled.Spacebar") { + fluentPath { + moveTo(20.0f, 11.0f) + verticalLineToRelative(2.0f) + horizontalLineTo(4.0f) + verticalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(16.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + verticalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + close() + } + } + return _spacebar!! + } + +private var _spacebar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Sparkle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Sparkle.kt new file mode 100644 index 00000000..747c476e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Sparkle.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Sparkle: ImageVector + get() { + if (_sparkle != null) { + return _sparkle!! + } + _sparkle = fluentIcon(name = "Filled.Sparkle") { + fluentPath { + moveTo(8.67f, 15.73f) + arcToRelative(1.44f, 1.44f, 0.0f, false, false, 2.16f, -0.61f) + lineToRelative(0.61f, -1.86f) + arcToRelative(2.87f, 2.87f, 0.0f, false, true, 1.82f, -1.81f) + lineToRelative(1.78f, -0.58f) + arcToRelative(1.44f, 1.44f, 0.0f, false, false, -0.06f, -2.74f) + lineToRelative(-1.75f, -0.57f) + arcToRelative(2.88f, 2.88f, 0.0f, false, true, -1.82f, -1.82f) + lineToRelative(-0.58f, -1.78f) + arcToRelative(1.45f, 1.45f, 0.0f, false, false, -2.73f, 0.02f) + lineToRelative(-0.59f, 1.8f) + arcToRelative(2.88f, 2.88f, 0.0f, false, true, -1.77f, 1.78f) + lineToRelative(-1.77f, 0.57f) + arcToRelative(1.44f, 1.44f, 0.0f, false, false, 0.01f, 2.73f) + lineToRelative(1.76f, 0.57f) + arcToRelative(2.89f, 2.89f, 0.0f, false, true, 1.82f, 1.83f) + lineToRelative(0.58f, 1.77f) + curveToRelative(0.1f, 0.29f, 0.28f, 0.53f, 0.53f, 0.7f) + close() + moveTo(16.33f, 20.78f) + curveToRelative(-0.19f, -0.13f, -0.33f, -0.33f, -0.4f, -0.55f) + lineToRelative(-0.34f, -1.0f) + arcToRelative(1.31f, 1.31f, 0.0f, false, false, -0.82f, -0.83f) + lineToRelative(-0.99f, -0.32f) + arcTo(1.15f, 1.15f, 0.0f, false, true, 13.0f, 17.0f) + arcToRelative(1.14f, 1.14f, 0.0f, false, true, 0.77f, -1.08f) + lineToRelative(1.0f, -0.33f) + arcToRelative(1.3f, 1.3f, 0.0f, false, false, 0.8f, -0.82f) + lineToRelative(0.33f, -0.99f) + arcToRelative(1.14f, 1.14f, 0.0f, false, true, 2.16f, -0.02f) + lineToRelative(0.33f, 1.01f) + arcToRelative(1.3f, 1.3f, 0.0f, false, false, 0.82f, 0.82f) + lineToRelative(0.99f, 0.32f) + arcToRelative(1.14f, 1.14f, 0.0f, false, true, 0.04f, 2.17f) + lineToRelative(-1.01f, 0.33f) + arcToRelative(1.32f, 1.32f, 0.0f, false, false, -0.82f, 0.82f) + lineToRelative(-0.32f, 0.99f) + arcToRelative(1.14f, 1.14f, 0.0f, false, true, -1.76f, 0.56f) + close() + } + } + return _sparkle!! + } + +private var _sparkle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SparkleCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SparkleCircle.kt new file mode 100644 index 00000000..74923b98 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SparkleCircle.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SparkleCircle: ImageVector + get() { + if (_sparkleCircle != null) { + return _sparkleCircle!! + } + _sparkleCircle = fluentIcon(name = "Filled.SparkleCircle") { + fluentPath { + moveTo(12.0f, 22.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) + close() + moveTo(8.56f, 6.17f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.88f, 0.0f) + lineToRelative(0.46f, 1.3f) + curveToRelative(0.1f, 0.29f, 0.34f, 0.52f, 0.64f, 0.63f) + lineToRelative(1.3f, 0.46f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.88f) + lineToRelative(-1.3f, 0.46f) + curveToRelative(-0.3f, 0.1f, -0.53f, 0.34f, -0.64f, 0.64f) + lineToRelative(-0.46f, 1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.88f, 0.0f) + lineToRelative(-0.46f, -1.3f) + curveToRelative(-0.1f, -0.3f, -0.34f, -0.53f, -0.64f, -0.64f) + lineToRelative(-1.3f, -0.46f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.88f) + lineToRelative(1.3f, -0.46f) + curveToRelative(0.3f, -0.1f, 0.54f, -0.34f, 0.64f, -0.64f) + lineToRelative(0.46f, -1.3f) + close() + moveTo(15.95f, 12.71f) + lineTo(16.13f, 13.31f) + curveToRelative(0.08f, 0.27f, 0.3f, 0.48f, 0.57f, 0.56f) + lineToRelative(0.6f, 0.18f) + arcToRelative(0.99f, 0.99f, 0.0f, false, true, 0.0f, 1.9f) + lineToRelative(-0.6f, 0.18f) + arcToRelative(0.85f, 0.85f, 0.0f, false, false, -0.57f, 0.57f) + lineToRelative(-0.18f, 0.6f) + arcToRelative(0.99f, 0.99f, 0.0f, false, true, -1.9f, 0.0f) + lineToRelative(-0.18f, -0.6f) + arcToRelative(0.85f, 0.85f, 0.0f, false, false, -0.57f, -0.57f) + lineToRelative(-0.6f, -0.18f) + arcToRelative(0.99f, 0.99f, 0.0f, false, true, 0.0f, -1.9f) + lineToRelative(0.6f, -0.18f) + curveToRelative(0.28f, -0.08f, 0.49f, -0.3f, 0.57f, -0.57f) + lineToRelative(0.18f, -0.6f) + arcToRelative(0.99f, 0.99f, 0.0f, false, true, 1.9f, 0.0f) + close() + } + } + return _sparkleCircle!! + } + +private var _sparkleCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Speaker0.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Speaker0.kt new file mode 100644 index 00000000..144b272a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Speaker0.kt @@ -0,0 +1,35 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Speaker0: ImageVector + get() { + if (_speaker0 != null) { + return _speaker0!! + } + _speaker0 = fluentIcon(name = "Filled.Speaker0") { + fluentPath { + moveTo(14.7f, 3.44f) + curveToRelative(0.2f, 0.23f, 0.3f, 0.51f, 0.3f, 0.8f) + verticalLineToRelative(15.51f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.06f, 0.95f) + lineToRelative(-4.96f, -4.2f) + horizontalLineTo(4.25f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-4.5f) + curveTo(2.0f, 8.5f, 3.0f, 7.5f, 4.25f, 7.5f) + horizontalLineToRelative(3.73f) + lineToRelative(4.96f, -4.2f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 1.76f, 0.14f) + close() + } + } + return _speaker0!! + } + +private var _speaker0: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Speaker1.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Speaker1.kt new file mode 100644 index 00000000..c3297c64 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Speaker1.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Speaker1: ImageVector + get() { + if (_speaker1 != null) { + return _speaker1!! + } + _speaker1 = fluentIcon(name = "Filled.Speaker1") { + fluentPath { + moveTo(14.7f, 3.44f) + curveToRelative(0.2f, 0.23f, 0.3f, 0.51f, 0.3f, 0.81f) + verticalLineToRelative(15.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.06f, 0.96f) + lineTo(7.98f, 16.5f) + lineTo(4.25f, 16.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-4.5f) + curveTo(2.0f, 8.51f, 3.0f, 7.5f, 4.25f, 7.5f) + horizontalLineToRelative(3.73f) + lineToRelative(4.96f, -4.2f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 1.76f, 0.14f) + close() + moveTo(17.1f, 8.64f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, 0.25f) + curveToRelative(0.58f, 0.94f, 0.87f, 2.0f, 0.87f, 3.14f) + curveToRelative(0.0f, 1.15f, -0.3f, 2.2f, -0.87f, 3.14f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.28f, -0.78f) + curveToRelative(0.43f, -0.7f, 0.65f, -1.48f, 0.65f, -2.36f) + curveToRelative(0.0f, -0.88f, -0.22f, -1.66f, -0.65f, -2.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.25f, -1.03f) + close() + } + } + return _speaker1!! + } + +private var _speaker1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Speaker2.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Speaker2.kt new file mode 100644 index 00000000..1a931fe2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Speaker2.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Speaker2: ImageVector + get() { + if (_speaker2 != null) { + return _speaker2!! + } + _speaker2 = fluentIcon(name = "Filled.Speaker2") { + fluentPath { + moveTo(25.08f, 6.42f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 28.0f, 7.72f) + verticalLineToRelative(32.56f) + curveToRelative(0.0f, 1.51f, -1.8f, 2.31f, -2.92f, 1.3f) + lineToRelative(-8.2f, -7.36f) + curveToRelative(-0.88f, -0.79f, -2.0f, -1.22f, -3.18f, -1.22f) + lineTo(9.0f, 33.0f) + arcToRelative(5.25f, 5.25f, 0.0f, false, true, -5.25f, -5.25f) + verticalLineToRelative(-7.5f) + curveTo(3.75f, 17.35f, 6.1f, 15.0f, 9.0f, 15.0f) + horizontalLineToRelative(4.7f) + curveToRelative(1.17f, 0.0f, 2.3f, -0.43f, 3.18f, -1.21f) + lineToRelative(8.2f, -7.37f) + close() + moveTo(36.34f, 8.4f) + curveToRelative(0.47f, -0.5f, 1.26f, -0.53f, 1.76f, -0.06f) + horizontalLineToRelative(0.02f) + curveToRelative(-0.35f, -0.34f, -0.01f, 0.0f, -0.01f, 0.0f) + lineToRelative(0.02f, 0.03f) + arcToRelative(5.37f, 5.37f, 0.0f, false, true, 0.27f, 0.26f) + arcToRelative(20.4f, 20.4f, 0.0f, false, true, 2.7f, 3.79f) + arcTo(23.76f, 23.76f, 0.0f, false, true, 44.0f, 24.0f) + curveToRelative(0.0f, 5.05f, -1.45f, 8.94f, -2.9f, 11.58f) + arcToRelative(20.41f, 20.41f, 0.0f, false, true, -2.9f, 4.0f) + lineToRelative(-0.07f, 0.06f) + lineToRelative(-0.02f, 0.01f) + verticalLineToRelative(0.01f) + reflectiveCurveToRelative(0.66f, -0.66f, 0.0f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.72f, -1.82f) + arcToRelative(3.26f, 3.26f, 0.0f, false, false, 0.19f, -0.19f) + arcToRelative(17.9f, 17.9f, 0.0f, false, false, 2.33f, -3.28f) + curveTo(40.2f, 32.03f, 41.5f, 28.55f, 41.5f, 24.0f) + curveToRelative(0.0f, -4.55f, -1.3f, -8.03f, -2.6f, -10.37f) + arcToRelative(17.9f, 17.9f, 0.0f, false, false, -2.5f, -3.46f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.06f, -1.77f) + close() + moveTo(32.34f, 14.4f) + curveToRelative(0.46f, -0.5f, 1.25f, -0.54f, 1.76f, -0.07f) + lineToRelative(0.06f, 0.07f) + lineToRelative(-0.06f, -0.06f) + lineToRelative(0.02f, 0.02f) + arcToRelative(2.62f, 2.62f, 0.0f, false, true, 0.18f, 0.17f) + curveToRelative(0.12f, 0.12f, 0.27f, 0.3f, 0.45f, 0.51f) + arcToRelative(13.98f, 13.98f, 0.0f, false, true, -0.59f, 18.56f) + lineToRelative(-0.01f, 0.02f) + lineToRelative(-0.03f, 0.03f) + horizontalLineToRelative(-0.01f) + verticalLineToRelative(0.01f) + reflectiveCurveToRelative(0.39f, -0.4f, 0.0f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.71f, -1.82f) + lineToRelative(0.01f, -0.02f) + arcToRelative(4.57f, 4.57f, 0.0f, false, false, 0.43f, -0.47f) + arcToRelative(11.48f, 11.48f, 0.0f, false, false, -0.43f, -15.17f) + lineToRelative(-0.01f, -0.02f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.07f, -1.76f) + close() + } + } + return _speaker2!! + } + +private var _speaker2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SpeakerBluetooth.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SpeakerBluetooth.kt new file mode 100644 index 00000000..1ca2ebd1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SpeakerBluetooth.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SpeakerBluetooth: ImageVector + get() { + if (_speakerBluetooth != null) { + return _speakerBluetooth!! + } + _speakerBluetooth = fluentIcon(name = "Filled.SpeakerBluetooth") { + fluentPath { + moveTo(14.7f, 3.44f) + curveToRelative(0.2f, 0.23f, 0.3f, 0.51f, 0.3f, 0.81f) + verticalLineToRelative(15.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.06f, 0.96f) + lineTo(7.98f, 16.5f) + lineTo(4.25f, 16.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-4.5f) + curveTo(2.0f, 8.51f, 3.0f, 7.5f, 4.25f, 7.5f) + horizontalLineToRelative(3.73f) + lineToRelative(4.96f, -4.2f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 1.76f, 0.14f) + close() + moveTo(17.5f, 9.9f) + lineTo(17.5f, 6.75f) + curveToRelative(0.0f, -0.65f, 0.75f, -0.98f, 1.23f, -0.58f) + lineToRelative(0.07f, 0.07f) + lineToRelative(3.0f, 3.25f) + curveToRelative(0.27f, 0.29f, 0.26f, 0.73f, 0.0f, 1.01f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-1.7f, 1.42f) + lineToRelative(1.7f, 1.42f) + curveToRelative(0.3f, 0.26f, 0.35f, 0.7f, 0.14f, 1.0f) + lineToRelative(-0.07f, 0.09f) + lineToRelative(-3.0f, 3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.3f, -0.4f) + lineTo(17.5f, 14.1f) + lineToRelative(-0.27f, 0.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.04f, -1.07f) + lineToRelative(0.08f, -0.08f) + lineToRelative(1.23f, -1.02f) + verticalLineToRelative(-0.3f) + lineToRelative(-1.23f, -1.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.87f, -1.22f) + lineToRelative(0.1f, 0.06f) + lineToRelative(0.26f, 0.23f) + lineTo(17.5f, 6.75f) + lineTo(17.5f, 9.9f) + close() + moveTo(19.0f, 13.1f) + verticalLineToRelative(2.23f) + lineToRelative(1.16f, -1.26f) + lineTo(19.0f, 13.1f) + close() + moveTo(19.0f, 8.67f) + verticalLineToRelative(2.23f) + lineToRelative(1.16f, -0.97f) + lineTo(19.0f, 8.67f) + close() + } + } + return _speakerBluetooth!! + } + +private var _speakerBluetooth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SpeakerEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SpeakerEdit.kt new file mode 100644 index 00000000..14f31e98 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SpeakerEdit.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SpeakerEdit: ImageVector + get() { + if (_speakerEdit != null) { + return _speakerEdit!! + } + _speakerEdit = fluentIcon(name = "Filled.SpeakerEdit") { + fluentPath { + moveTo(15.0f, 4.25f) + verticalLineToRelative(11.1f) + lineToRelative(-2.51f, 2.51f) + curveToRelative(-0.45f, 0.45f, -0.77f, 1.0f, -0.94f, 1.6f) + lineTo(8.43f, 16.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.5f, -0.2f) + lineTo(4.25f, 16.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.24f) + verticalLineToRelative(-4.5f) + curveTo(2.0f, 8.51f, 3.0f, 7.5f, 4.25f, 7.5f) + horizontalLineToRelative(3.68f) + curveToRelative(0.18f, 0.0f, 0.36f, -0.07f, 0.5f, -0.19f) + lineToRelative(4.49f, -4.0f) + curveToRelative(0.8f, -0.7f, 2.08f, -0.14f, 2.08f, 0.94f) + close() + moveTo(18.4f, 11.96f) + curveToRelative(0.17f, -0.18f, 0.37f, -0.34f, 0.58f, -0.47f) + arcToRelative(6.96f, 6.96f, 0.0f, false, false, -0.82f, -2.82f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.32f, 0.72f) + arcToRelative(5.47f, 5.47f, 0.0f, false, true, 0.58f, 3.54f) + lineToRelative(0.97f, -0.97f) + close() + moveTo(20.44f, 11.01f) + arcToRelative(3.3f, 3.3f, 0.0f, false, true, 1.53f, 0.24f) + arcToRelative(9.95f, 9.95f, 0.0f, false, false, -1.93f, -5.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.2f, 0.9f) + arcToRelative(8.45f, 8.45f, 0.0f, false, true, 1.6f, 4.06f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.71f, 1.25f) + lineToRelative(-0.46f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.28f, 2.28f, 0.0f, true, false, -3.23f, -3.24f) + close() + } + } + return _speakerEdit!! + } + +private var _speakerEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SpeakerMute.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SpeakerMute.kt new file mode 100644 index 00000000..c11984fc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SpeakerMute.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SpeakerMute: ImageVector + get() { + if (_speakerMute != null) { + return _speakerMute!! + } + _speakerMute = fluentIcon(name = "Filled.SpeakerMute") { + fluentPath { + moveTo(15.0f, 4.25f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.08f, -0.93f) + lineTo(8.42f, 7.3f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.49f, 0.19f) + lineTo(4.25f, 7.49f) + curveTo(3.01f, 7.5f, 2.0f, 8.5f, 2.0f, 9.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(3.68f) + curveToRelative(0.18f, 0.0f, 0.36f, 0.06f, 0.5f, 0.19f) + lineToRelative(4.49f, 3.99f) + curveToRelative(0.8f, 0.72f, 2.08f, 0.14f, 2.08f, -0.93f) + lineTo(15.0f, 4.25f) + close() + moveTo(16.22f, 9.22f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineTo(19.0f, 10.94f) + lineToRelative(1.72f, -1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineTo(20.06f, 12.0f) + lineToRelative(1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(19.0f, 13.06f) + lineToRelative(-1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineTo(17.94f, 12.0f) + lineToRelative(-1.72f, -1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + } + } + return _speakerMute!! + } + +private var _speakerMute: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SpeakerOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SpeakerOff.kt new file mode 100644 index 00000000..8eebc43d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SpeakerOff.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SpeakerOff: ImageVector + get() { + if (_speakerOff != null) { + return _speakerOff!! + } + _speakerOff = fluentIcon(name = "Filled.SpeakerOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(6.44f, 7.5f) + lineTo(4.25f, 7.5f) + curveTo(3.01f, 7.5f, 2.0f, 8.5f, 2.0f, 9.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(3.68f) + curveToRelative(0.18f, 0.0f, 0.36f, 0.06f, 0.5f, 0.19f) + lineToRelative(4.49f, 3.99f) + curveToRelative(0.8f, 0.72f, 2.08f, 0.14f, 2.08f, -0.93f) + verticalLineToRelative(-3.69f) + lineToRelative(5.72f, 5.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(17.14f, 13.96f) + lineTo(18.28f, 15.1f) + arcToRelative(6.97f, 6.97f, 0.0f, false, false, -0.12f, -6.43f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.32f, 0.72f) + arcToRelative(5.47f, 5.47f, 0.0f, false, true, 0.3f, 4.57f) + close() + moveTo(19.39f, 16.21f) + lineTo(20.49f, 17.3f) + arcToRelative(9.96f, 9.96f, 0.0f, false, false, -0.45f, -11.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.2f, 0.9f) + arcToRelative(8.46f, 8.46f, 0.0f, false, true, 0.55f, 9.26f) + close() + moveTo(9.52f, 6.34f) + lineTo(15.0f, 11.82f) + lineTo(15.0f, 4.25f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.08f, -0.93f) + lineToRelative(-3.4f, 3.02f) + close() + } + } + return _speakerOff!! + } + +private var _speakerOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SpeakerSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SpeakerSettings.kt new file mode 100644 index 00000000..60de28d7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SpeakerSettings.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SpeakerSettings: ImageVector + get() { + if (_speakerSettings != null) { + return _speakerSettings!! + } + _speakerSettings = fluentIcon(name = "Filled.SpeakerSettings") { + fluentPath { + moveTo(14.7f, 3.44f) + curveToRelative(0.2f, 0.23f, 0.3f, 0.51f, 0.3f, 0.81f) + verticalLineToRelative(7.25f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -3.76f, 7.77f) + lineTo(7.98f, 16.5f) + lineTo(4.25f, 16.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-4.5f) + curveTo(2.0f, 8.51f, 3.0f, 7.5f, 4.25f, 7.5f) + horizontalLineToRelative(3.73f) + lineToRelative(4.96f, -4.2f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 1.76f, 0.14f) + close() + moveTo(14.28f, 13.98f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.59f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) + lineToRelative(0.55f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.52f) + lineToRelative(-0.19f, 0.63f) + curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) + lineToRelative(0.49f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.9f) + lineToRelative(-0.2f, -0.7f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) + lineToRelative(0.59f, -0.13f) + arcToRelative(5.72f, 5.72f, 0.0f, false, false, 0.0f, -1.81f) + lineToRelative(-0.55f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.19f, -0.63f) + curveToRelative(-0.44f, -0.39f, -0.94f, -0.7f, -1.49f, -0.93f) + lineToRelative(-0.49f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.91f) + lineToRelative(0.2f, 0.69f) + close() + moveTo(17.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) + close() + } + } + return _speakerSettings!! + } + +private var _speakerSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SpeakerUsb.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SpeakerUsb.kt new file mode 100644 index 00000000..f13b08fb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SpeakerUsb.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SpeakerUsb: ImageVector + get() { + if (_speakerUsb != null) { + return _speakerUsb!! + } + _speakerUsb = fluentIcon(name = "Filled.SpeakerUsb") { + fluentPath { + moveTo(15.0f, 4.25f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.06f, -0.96f) + lineTo(7.98f, 7.5f) + lineTo(4.25f, 7.5f) + curveTo(3.01f, 7.5f, 2.0f, 8.52f, 2.0f, 9.76f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(3.73f) + lineToRelative(4.96f, 4.2f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.06f, -0.95f) + lineTo(15.0f, 4.25f) + close() + moveTo(16.16f, 13.95f) + lineTo(17.5f, 16.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineToRelative(-2.0f) + lineToRelative(1.33f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.17f, -0.56f) + lineTo(23.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(22.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(3.4f) + curveToRelative(0.0f, 0.2f, 0.06f, 0.4f, 0.16f, 0.55f) + close() + moveTo(18.5f, 7.5f) + horizontalLineToRelative(2.0f) + lineTo(20.5f, 9.0f) + horizontalLineToRelative(-2.0f) + lineTo(18.5f, 7.5f) + close() + } + } + return _speakerUsb!! + } + +private var _speakerUsb: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SplitHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SplitHorizontal.kt new file mode 100644 index 00000000..bea216d4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SplitHorizontal.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SplitHorizontal: ImageVector + get() { + if (_splitHorizontal != null) { + return _splitHorizontal!! + } + _splitHorizontal = fluentIcon(name = "Filled.SplitHorizontal") { + fluentPath { + moveTo(21.25f, 12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(18.5f) + close() + moveTo(17.75f, 2.0f) + curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) + verticalLineTo(10.0f) + horizontalLineTo(4.0f) + verticalLineTo(4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(4.0f, 19.25f) + verticalLineTo(13.5f) + horizontalLineToRelative(16.0f) + verticalLineToRelative(5.75f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineTo(6.25f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + close() + } + } + return _splitHorizontal!! + } + +private var _splitHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SplitVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SplitVertical.kt new file mode 100644 index 00000000..9a8f8053 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SplitVertical.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SplitVertical: ImageVector + get() { + if (_splitVertical != null) { + return _splitVertical!! + } + _splitVertical = fluentIcon(name = "Filled.SplitVertical") { + fluentPath { + moveTo(12.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineTo(2.75f) + close() + moveTo(2.0f, 6.25f) + curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) + horizontalLineTo(10.0f) + verticalLineToRelative(16.0f) + horizontalLineTo(4.25f) + curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) + verticalLineTo(6.25f) + close() + moveTo(19.25f, 20.0f) + horizontalLineTo(13.5f) + verticalLineTo(4.0f) + horizontalLineToRelative(5.75f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + close() + } + } + return _splitVertical!! + } + +private var _splitVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Sport.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Sport.kt new file mode 100644 index 00000000..d5716f02 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Sport.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Sport: ImageVector + get() { + if (_sport != null) { + return _sport!! + } + _sport = fluentIcon(name = "Filled.Sport") { + fluentPath { + moveTo(20.1f, 4.97f) + curveToRelative(0.42f, 0.52f, 0.78f, 1.08f, 1.07f, 1.66f) + arcToRelative(2.77f, 2.77f, 0.0f, false, true, -3.66f, 0.93f) + lineToRelative(2.58f, -2.59f) + close() + moveTo(19.03f, 3.91f) + lineTo(16.44f, 6.49f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.93f, -3.66f) + arcToRelative(8.2f, 8.2f, 0.0f, false, true, 1.66f, 1.08f) + close() + moveTo(20.53f, 14.96f) + arcToRelative(8.26f, 8.26f, 0.0f, false, false, 1.23f, -6.7f) + arcToRelative(4.25f, 4.25f, 0.0f, false, true, -5.34f, 0.38f) + lineToRelative(-1.1f, 1.11f) + lineToRelative(5.2f, 5.21f) + close() + moveTo(15.36f, 7.58f) + arcToRelative(4.25f, 4.25f, 0.0f, false, true, 0.39f, -5.34f) + arcToRelative(8.26f, 8.26f, 0.0f, false, false, -6.71f, 1.24f) + lineToRelative(5.21f, 5.2f) + lineToRelative(1.1f, -1.1f) + close() + moveTo(13.19f, 9.75f) + lineTo(7.89f, 4.45f) + arcTo(8.21f, 8.21f, 0.0f, false, false, 5.9f, 7.68f) + curveToRelative(1.91f, 0.3f, 4.44f, 1.02f, 6.53f, 2.82f) + lineToRelative(0.75f, -0.75f) + close() + moveTo(11.73f, 11.21f) + arcToRelative(9.2f, 9.2f, 0.0f, false, true, 1.06f, 1.06f) + arcToRelative(12.13f, 12.13f, 0.0f, false, true, 2.56f, 6.08f) + arcToRelative(16.23f, 16.23f, 0.0f, false, true, 0.13f, 1.32f) + arcToRelative(2.3f, 2.3f, 0.0f, false, true, -2.5f, 2.3f) + curveToRelative(-1.98f, -0.15f, -5.34f, -0.77f, -7.76f, -3.19f) + reflectiveCurveTo(2.18f, 13.0f, 2.02f, 11.02f) + verticalLineToRelative(-0.19f) + arcToRelative(2.3f, 2.3f, 0.0f, false, true, 2.5f, -2.3f) + curveToRelative(0.34f, 0.02f, 0.72f, 0.06f, 1.14f, 0.12f) + curveToRelative(1.8f, 0.27f, 4.15f, 0.93f, 6.07f, 2.56f) + close() + moveTo(8.03f, 13.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.5f, -2.5f) + close() + moveTo(16.32f, 18.09f) + arcToRelative(13.02f, 13.02f, 0.0f, false, false, -2.82f, -6.53f) + lineToRelative(0.75f, -0.75f) + lineToRelative(5.3f, 5.3f) + arcToRelative(8.21f, 8.21f, 0.0f, false, true, -3.23f, 1.98f) + close() + } + } + return _sport!! + } + +private var _sport: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SportAmericanFootball.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SportAmericanFootball.kt new file mode 100644 index 00000000..58310ca3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SportAmericanFootball.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SportAmericanFootball: ImageVector + get() { + if (_sportAmericanFootball != null) { + return _sportAmericanFootball!! + } + _sportAmericanFootball = fluentIcon(name = "Filled.SportAmericanFootball") { + fluentPath { + moveTo(21.38f, 11.5f) + arcToRelative(14.78f, 14.78f, 0.0f, false, true, -9.97f, 9.9f) + lineToRelative(-8.82f, -8.8f) + arcToRelative(14.78f, 14.78f, 0.0f, false, true, 9.91f, -9.98f) + lineToRelative(8.88f, 8.88f) + close() + moveTo(13.72f, 9.22f) + lineTo(9.22f, 13.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(4.5f, -4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + close() + moveTo(2.2f, 14.32f) + lineToRelative(7.48f, 7.48f) + curveToRelative(-0.8f, 0.13f, -1.6f, 0.2f, -2.43f, 0.2f) + horizontalLineToRelative(-1.0f) + arcTo(4.25f, 4.25f, 0.0f, false, true, 2.0f, 17.75f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.83f, 0.07f, -1.64f, 0.2f, -2.43f) + close() + moveTo(14.22f, 2.22f) + lineTo(21.78f, 9.78f) + curveToRelative(0.15f, -0.82f, 0.22f, -1.67f, 0.22f, -2.53f) + verticalLineToRelative(-1.0f) + curveTo(22.0f, 3.9f, 20.1f, 2.0f, 17.75f, 2.0f) + horizontalLineToRelative(-1.0f) + curveToRelative(-0.86f, 0.0f, -1.71f, 0.07f, -2.53f, 0.22f) + close() + } + } + return _sportAmericanFootball!! + } + +private var _sportAmericanFootball: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SportBaseball.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SportBaseball.kt new file mode 100644 index 00000000..7c17a85e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SportBaseball.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SportBaseball: ImageVector + get() { + if (_sportBaseball != null) { + return _sportBaseball!! + } + _sportBaseball = fluentIcon(name = "Filled.SportBaseball") { + fluentPath { + moveTo(3.94f, 6.08f) + arcToRelative(9.96f, 9.96f, 0.0f, false, false, -0.01f, 11.83f) + lineToRelative(0.23f, -0.22f) + arcTo(8.23f, 8.23f, 0.0f, false, true, 7.0f, 16.01f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.48f, 1.42f) + arcToRelative(6.73f, 6.73f, 0.0f, false, false, -2.58f, 1.62f) + arcToRelative(9.97f, 9.97f, 0.0f, false, false, 14.18f, 0.0f) + arcToRelative(7.23f, 7.23f, 0.0f, false, false, -2.58f, -1.62f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.48f, -1.42f) + arcToRelative(8.23f, 8.23f, 0.0f, false, true, 3.08f, 1.9f) + arcToRelative(9.96f, 9.96f, 0.0f, false, false, -0.01f, -11.83f) + lineToRelative(-0.22f, 0.2f) + arcTo(8.23f, 8.23f, 0.0f, false, true, 17.0f, 7.96f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.48f, -1.42f) + arcToRelative(6.74f, 6.74f, 0.0f, false, false, 2.57f, -1.6f) + arcToRelative(9.97f, 9.97f, 0.0f, false, false, -14.16f, 0.0f) + arcToRelative(7.28f, 7.28f, 0.0f, false, false, 2.57f, 1.6f) + arcTo(0.75f, 0.75f, 0.0f, true, true, 7.0f, 7.96f) + arcToRelative(8.23f, 8.23f, 0.0f, false, true, -3.07f, -1.88f) + close() + moveTo(9.02f, 16.15f) + curveToRelative(-0.1f, -0.4f, 0.15f, -0.8f, 0.55f, -0.9f) + horizontalLineToRelative(0.01f) + lineToRelative(0.02f, -0.01f) + arcToRelative(3.89f, 3.89f, 0.0f, false, true, 0.37f, -0.08f) + arcToRelative(12.54f, 12.54f, 0.0f, false, true, 4.42f, 0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.29f, 1.48f) + arcToRelative(11.04f, 11.04f, 0.0f, false, false, -4.17f, -0.01f) + reflectiveCurveToRelative(-0.75f, 0.1f, -0.9f, -0.55f) + close() + moveTo(9.93f, 7.27f) + lineTo(10.0f, 7.29f) + arcToRelative(6.08f, 6.08f, 0.0f, false, false, 1.12f, 0.15f) + curveToRelative(0.76f, 0.06f, 1.82f, 0.06f, 2.98f, -0.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.3f, 1.48f) + arcToRelative(12.54f, 12.54f, 0.0f, false, true, -4.8f, 0.0f) + horizontalLineToRelative(-0.02f) + verticalLineToRelative(-0.01f) + horizontalLineToRelative(-0.01f) + arcToRelative(0.76f, 0.76f, 0.0f, false, true, -0.55f, -0.91f) + curveToRelative(0.16f, -0.65f, 0.91f, -0.55f, 0.91f, -0.55f) + close() + } + } + return _sportBaseball!! + } + +private var _sportBaseball: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SportBasketball.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SportBasketball.kt new file mode 100644 index 00000000..333ac5b4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SportBasketball.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SportBasketball: ImageVector + get() { + if (_sportBasketball != null) { + return _sportBasketball!! + } + _sportBasketball = fluentIcon(name = "Filled.SportBasketball") { + fluentPath { + moveTo(18.43f, 12.87f) + curveToRelative(-1.28f, -0.39f, -2.76f, -0.9f, -4.16f, -2.08f) + lineTo(13.07f, 12.0f) + lineToRelative(6.51f, 6.52f) + arcToRelative(9.94f, 9.94f, 0.0f, false, false, 2.16f, -4.22f) + lineToRelative(-0.01f, -0.01f) + verticalLineToRelative(-0.01f) + arcToRelative(3.74f, 3.74f, 0.0f, false, false, -1.35f, -0.8f) + curveToRelative(-0.43f, -0.17f, -0.9f, -0.3f, -1.42f, -0.46f) + lineToRelative(-0.53f, -0.15f) + close() + moveTo(18.53f, 4.42f) + lineTo(14.28f, 8.66f) + arcToRelative(9.6f, 9.6f, 0.0f, false, true, -1.7f, -3.52f) + lineToRelative(-0.15f, -0.47f) + curveToRelative(-0.15f, -0.54f, -0.31f, -1.1f, -0.5f, -1.6f) + curveToRelative(-0.15f, -0.36f, -0.31f, -0.71f, -0.52f, -1.05f) + arcToRelative(9.98f, 9.98f, 0.0f, false, true, 7.11f, 2.4f) + close() + moveTo(19.58f, 5.48f) + lineTo(15.34f, 9.72f) + arcToRelative(9.6f, 9.6f, 0.0f, false, false, 3.52f, 1.7f) + lineToRelative(0.47f, 0.15f) + curveToRelative(0.54f, 0.15f, 1.1f, 0.31f, 1.6f, 0.5f) + curveToRelative(0.36f, 0.15f, 0.71f, 0.31f, 1.05f, 0.52f) + arcToRelative(9.98f, 9.98f, 0.0f, false, false, -2.4f, -7.11f) + close() + moveTo(9.72f, 2.28f) + lineTo(9.71f, 2.27f) + arcToRelative(9.94f, 9.94f, 0.0f, false, false, -4.23f, 2.15f) + lineTo(12.0f, 10.94f) + lineToRelative(1.21f, -1.21f) + arcToRelative(10.93f, 10.93f, 0.0f, false, true, -2.08f, -4.16f) + lineToRelative(-0.15f, -0.52f) + curveToRelative(-0.15f, -0.53f, -0.29f, -1.0f, -0.46f, -1.43f) + curveToRelative(-0.21f, -0.56f, -0.46f, -1.0f, -0.8f, -1.34f) + close() + moveTo(2.13f, 10.38f) + arcToRelative(9.95f, 9.95f, 0.0f, false, true, 2.29f, -4.9f) + lineTo(10.94f, 12.0f) + lineToRelative(-1.09f, 1.09f) + arcToRelative(10.34f, 10.34f, 0.0f, false, false, -4.66f, -1.91f) + lineToRelative(-0.6f, -0.12f) + curveToRelative(-0.6f, -0.12f, -1.15f, -0.22f, -1.64f, -0.37f) + curveToRelative(-0.32f, -0.09f, -0.59f, -0.19f, -0.82f, -0.3f) + close() + moveTo(2.0f, 11.97f) + curveToRelative(0.0f, 2.34f, 0.8f, 4.68f, 2.42f, 6.56f) + lineToRelative(4.36f, -4.36f) + arcToRelative(9.13f, 9.13f, 0.0f, false, false, -3.89f, -1.51f) + lineToRelative(-0.54f, -0.1f) + arcTo(21.14f, 21.14f, 0.0f, false, true, 2.0f, 11.95f) + close() + moveTo(9.85f, 15.22f) + lineTo(5.48f, 19.59f) + arcTo(9.97f, 9.97f, 0.0f, false, false, 12.24f, 22.0f) + curveToRelative(-0.15f, -0.3f, -0.27f, -0.62f, -0.37f, -0.93f) + curveToRelative(-0.17f, -0.54f, -0.29f, -1.13f, -0.4f, -1.7f) + lineToRelative(-0.11f, -0.5f) + arcToRelative(8.6f, 8.6f, 0.0f, false, false, -1.51f, -3.66f) + close() + moveTo(13.9f, 21.83f) + arcToRelative(9.94f, 9.94f, 0.0f, false, false, 4.62f, -2.24f) + lineTo(12.0f, 13.06f) + lineToRelative(-1.08f, 1.09f) + arcToRelative(9.88f, 9.88f, 0.0f, false, true, 1.9f, 4.4f) + lineToRelative(0.12f, 0.56f) + curveToRelative(0.12f, 0.56f, 0.22f, 1.05f, 0.36f, 1.51f) + curveToRelative(0.16f, 0.5f, 0.35f, 0.9f, 0.6f, 1.2f) + close() + } + } + return _sportBasketball!! + } + +private var _sportBasketball: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SportHockey.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SportHockey.kt new file mode 100644 index 00000000..b05ec3bb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SportHockey.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SportHockey: ImageVector + get() { + if (_sportHockey != null) { + return _sportHockey!! + } + _sportHockey = fluentIcon(name = "Filled.SportHockey") { + fluentPath { + moveTo(2.35f, 12.57f) + curveToRelative(-0.68f, 1.9f, -0.77f, 3.88f, 0.44f, 5.1f) + lineToRelative(0.24f, 0.24f) + arcToRelative(629.85f, 629.85f, 0.0f, false, false, 3.02f, 3.04f) + curveToRelative(1.28f, 1.28f, 3.3f, 1.3f, 5.29f, 0.66f) + arcToRelative(16.3f, 16.3f, 0.0f, false, false, 6.22f, -4.04f) + arcToRelative(16.3f, 16.3f, 0.0f, false, false, 4.04f, -6.22f) + curveToRelative(0.64f, -1.99f, 0.62f, -4.01f, -0.66f, -5.3f) + arcToRelative(756.94f, 756.94f, 0.0f, false, true, -2.89f, -2.9f) + lineToRelative(-0.36f, -0.37f) + curveToRelative(-1.23f, -1.21f, -3.2f, -1.12f, -5.1f, -0.44f) + curveToRelative(-1.97f, 0.71f, -4.15f, 2.14f, -6.12f, 4.11f) + arcToRelative(17.45f, 17.45f, 0.0f, false, false, -4.12f, 6.12f) + close() + moveTo(17.49f, 6.87f) + verticalLineToRelative(0.06f) + arcToRelative(5.12f, 5.12f, 0.0f, false, true, -0.15f, 0.57f) + arcToRelative(14.34f, 14.34f, 0.0f, false, true, -3.6f, 6.03f) + arcToRelative(15.61f, 15.61f, 0.0f, false, true, -6.78f, 3.94f) + lineToRelative(-0.03f, 0.01f) + lineTo(6.9f, 17.48f) + reflectiveCurveToRelative(-0.75f, 0.09f, -0.9f, -0.57f) + curveToRelative(-0.08f, -0.4f, 0.18f, -0.8f, 0.58f, -0.9f) + horizontalLineToRelative(0.03f) + arcToRelative(4.38f, 4.38f, 0.0f, false, false, 0.5f, -0.14f) + arcToRelative(14.1f, 14.1f, 0.0f, false, false, 5.57f, -3.4f) + arcToRelative(12.84f, 12.84f, 0.0f, false, false, 3.2f, -5.36f) + arcToRelative(6.85f, 6.85f, 0.0f, false, false, 0.12f, -0.46f) + curveToRelative(0.07f, -0.4f, 0.44f, -0.7f, 0.86f, -0.64f) + curveToRelative(0.41f, 0.07f, 0.69f, 0.45f, 0.62f, 0.86f) + close() + } + } + return _sportHockey!! + } + +private var _sportHockey: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SportSoccer.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SportSoccer.kt new file mode 100644 index 00000000..994e4416 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SportSoccer.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SportSoccer: ImageVector + get() { + if (_sportSoccer != null) { + return _sportSoccer!! + } + _sportSoccer = fluentIcon(name = "Filled.SportSoccer") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) + close() + moveTo(8.24f, 4.37f) + lineToRelative(3.01f, 1.8f) + verticalLineToRelative(2.2f) + lineToRelative(-2.79f, 2.02f) + lineToRelative(-2.04f, -0.7f) + lineToRelative(-0.59f, -3.54f) + arcToRelative(8.53f, 8.53f, 0.0f, false, true, 2.41f, -1.78f) + close() + moveTo(3.62f, 13.44f) + lineTo(5.95f, 11.11f) + lineTo(7.99f, 11.81f) + lineTo(9.07f, 15.15f) + lineTo(8.1f, 16.73f) + lineTo(4.8f, 16.53f) + curveToRelative(-0.58f, -0.92f, -0.99f, -1.97f, -1.18f, -3.1f) + close() + moveTo(10.53f, 20.37f) + lineTo(9.35f, 17.57f) + lineTo(10.31f, 16.0f) + horizontalLineToRelative(3.37f) + lineToRelative(0.91f, 1.58f) + lineToRelative(-1.04f, 2.78f) + arcToRelative(8.55f, 8.55f, 0.0f, false, true, -3.02f, 0.01f) + close() + moveTo(18.89f, 16.97f) + lineTo(15.87f, 16.79f) + lineTo(14.93f, 15.16f) + lineTo(16.02f, 11.82f) + lineTo(18.03f, 11.12f) + lineTo(20.34f, 13.64f) + arcToRelative(8.46f, 8.46f, 0.0f, false, true, -1.45f, 3.34f) + close() + moveTo(18.17f, 6.16f) + lineTo(17.58f, 9.69f) + lineTo(15.54f, 10.39f) + lineTo(12.75f, 8.37f) + verticalLineToRelative(-2.2f) + lineToRelative(3.0f, -1.8f) + arcToRelative(8.53f, 8.53f, 0.0f, false, true, 2.42f, 1.79f) + close() + } + } + return _sportSoccer!! + } + +private var _sportSoccer: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Square.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Square.kt new file mode 100644 index 00000000..666d81df --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Square.kt @@ -0,0 +1,32 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Square: ImageVector + get() { + if (_square != null) { + return _square!! + } + _square = fluentIcon(name = "Filled.Square") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineTo(6.25f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + verticalLineTo(6.25f) + close() + } + } + return _square!! + } + +private var _square: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SquareArrowForward.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SquareArrowForward.kt new file mode 100644 index 00000000..eed5cf02 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SquareArrowForward.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SquareArrowForward: ImageVector + get() { + if (_squareArrowForward != null) { + return _squareArrowForward!! + } + _squareArrowForward = fluentIcon(name = "Filled.SquareArrowForward") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(5.77f) + arcTo(6.5f, 6.5f, 0.0f, false, true, 21.0f, 12.02f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) + close() + moveTo(18.65f, 15.35f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, -0.7f) + lineToRelative(1.5f, 1.5f) + curveToRelative(0.2f, 0.2f, 0.2f, 0.5f, 0.0f, 0.7f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, -0.7f) + lineToRelative(0.64f, -0.65f) + horizontalLineToRelative(-2.04f) + curveTo(16.01f, 17.0f, 15.0f, 18.0f, 15.0f, 19.25f) + verticalLineToRelative(0.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-0.25f) + curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) + horizontalLineToRelative(2.04f) + lineToRelative(-0.64f, -0.65f) + close() + } + } + return _squareArrowForward!! + } + +private var _squareArrowForward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SquareHint.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SquareHint.kt new file mode 100644 index 00000000..4f142521 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SquareHint.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SquareHint: ImageVector + get() { + if (_squareHint != null) { + return _squareHint!! + } + _squareHint = fluentIcon(name = "Filled.SquareHint") { + fluentPath { + moveTo(10.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(17.5f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 21.0f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + close() + moveTo(6.5f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + curveTo(5.67f, 5.0f, 5.0f, 5.67f, 5.0f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 6.5f, 3.0f) + close() + moveTo(4.0f, 16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 6.5f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 5.0f, 17.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + moveTo(11.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-2.0f) + close() + moveTo(17.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 3.5f, -3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + close() + moveTo(20.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(3.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(2.0f) + close() + } + } + return _squareHint!! + } + +private var _squareHint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SquareHintApps.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SquareHintApps.kt new file mode 100644 index 00000000..95d422c5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SquareHintApps.kt @@ -0,0 +1,108 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SquareHintApps: ImageVector + get() { + if (_squareHintApps != null) { + return _squareHintApps!! + } + _squareHintApps = fluentIcon(name = "Filled.SquareHintApps") { + fluentPath { + moveTo(6.25f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + close() + moveTo(9.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + close() + moveTo(17.0f, 3.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.0f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(3.0f, 17.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + close() + moveTo(3.0f, 14.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(4.5f) + close() + moveTo(7.0f, 5.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(10.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) + horizontalLineToRelative(2.25f) + verticalLineToRelative(-2.25f) + curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) + horizontalLineToRelative(0.75f) + lineTo(18.5f, 7.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(7.0f, 5.5f) + close() + moveTo(12.25f, 15.5f) + horizontalLineToRelative(3.25f) + verticalLineToRelative(-3.25f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(3.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-7.5f) + curveTo(11.01f, 23.0f, 10.0f, 22.0f, 10.0f, 20.75f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + close() + moveTo(17.0f, 12.25f) + verticalLineToRelative(3.25f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(-3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(15.5f, 21.5f) + lineTo(15.5f, 17.0f) + horizontalLineToRelative(-3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.25f) + close() + moveTo(17.0f, 17.0f) + verticalLineToRelative(4.5f) + horizontalLineToRelative(2.75f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(21.5f, 17.0f) + lineTo(17.0f, 17.0f) + close() + } + } + return _squareHintApps!! + } + +private var _squareHintApps: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SquareHintSparkles.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SquareHintSparkles.kt new file mode 100644 index 00000000..4fb74161 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SquareHintSparkles.kt @@ -0,0 +1,102 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SquareHintSparkles: ImageVector + get() { + if (_squareHintSparkles != null) { + return _squareHintSparkles!! + } + _squareHintSparkles = fluentIcon(name = "Filled.SquareHintSparkles") { + fluentPath { + moveTo(16.09f, 6.41f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.35f, -0.95f) + lineTo(13.36f, 5.0f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, -1.03f) + lineToRelative(1.38f, -0.44f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.76f, -1.77f) + lineToRelative(0.01f, -0.03f) + lineToRelative(0.45f, -1.38f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, 1.03f, 0.0f) + lineToRelative(0.44f, 1.38f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.8f, 1.8f) + lineToRelative(1.38f, 0.44f) + lineToRelative(0.03f, 0.01f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, 1.03f) + lineToRelative(-1.38f, 0.44f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.8f, 1.8f) + lineToRelative(-0.45f, 1.38f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, -1.03f, 0.0f) + lineToRelative(-0.44f, -1.38f) + curveToRelative(-0.1f, -0.3f, -0.25f, -0.6f, -0.45f, -0.85f) + close() + moveTo(23.79f, 10.21f) + lineTo(23.02f, 9.96f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, -1.0f, -1.0f) + lineToRelative(-0.25f, -0.76f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, -0.57f, 0.0f) + lineToRelative(-0.25f, 0.77f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, -0.98f, 1.0f) + lineToRelative(-0.77f, 0.24f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.77f, 0.25f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, 1.0f) + lineToRelative(0.24f, 0.77f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.58f, 0.0f) + lineToRelative(0.24f, -0.77f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, -1.0f) + lineToRelative(0.77f, -0.24f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, -0.57f) + horizontalLineToRelative(-0.02f) + close() + moveTo(12.27f, 3.57f) + curveToRelative(0.2f, -0.26f, 0.46f, -0.46f, 0.76f, -0.57f) + lineTo(11.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(1.1f) + arcToRelative(1.57f, 1.57f, 0.0f, false, true, 0.18f, -1.43f) + close() + moveTo(4.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(14.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + close() + moveTo(6.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + close() + moveTo(6.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) + close() + moveTo(17.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + close() + } + } + return _squareHintSparkles!! + } + +private var _squareHintSparkles: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SquareMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SquareMultiple.kt new file mode 100644 index 00000000..b1b15266 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SquareMultiple.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SquareMultiple: ImageVector + get() { + if (_squareMultiple != null) { + return _squareMultiple!! + } + _squareMultiple = fluentIcon(name = "Filled.SquareMultiple") { + fluentPath { + moveTo(7.52f, 5.0f) + horizontalLineTo(6.0f) + curveToRelative(0.13f, -1.68f, 1.53f, -3.0f, 3.24f, -3.0f) + horizontalLineToRelative(8.0f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 22.0f, 6.75f) + verticalLineToRelative(8.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.0f, 3.24f) + verticalLineToRelative(-1.5f) + curveToRelative(0.85f, -0.13f, 1.5f, -0.86f, 1.5f, -1.74f) + verticalLineToRelative(-8.0f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-8.0f) + curveToRelative(-0.88f, 0.0f, -1.61f, 0.65f, -1.73f, 1.5f) + close() + moveTo(5.25f, 6.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 9.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 20.55f, 3.46f, 22.0f, 5.25f, 22.0f) + horizontalLineToRelative(9.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-9.5f) + curveTo(18.0f, 7.45f, 16.55f, 6.0f, 14.75f, 6.0f) + horizontalLineToRelative(-9.5f) + close() + } + } + return _squareMultiple!! + } + +private var _squareMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Stack.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Stack.kt new file mode 100644 index 00000000..090eb317 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Stack.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Stack: ImageVector + get() { + if (_stack != null) { + return _stack!! + } + _stack = fluentIcon(name = "Filled.Stack") { + fluentPath { + moveTo(4.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(11.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(17.0f, 6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + lineTo(4.0f, 4.0f) + close() + moveTo(6.5f, 17.5f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 4.56f, 16.0f) + lineTo(15.5f, 16.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) + lineTo(18.0f, 6.56f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.5f, 1.94f) + verticalLineToRelative(5.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, 4.0f) + horizontalLineToRelative(-9.0f) + close() + moveTo(9.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.94f, -1.5f) + horizontalLineToRelative(9.19f) + curveToRelative(2.35f, 0.0f, 4.25f, -1.9f, 4.25f, -4.25f) + lineTo(20.5f, 9.06f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 22.0f, 11.0f) + verticalLineToRelative(3.25f) + arcTo(5.75f, 5.75f, 0.0f, false, true, 16.25f, 20.0f) + lineTo(9.0f, 20.0f) + close() + } + } + return _stack!! + } + +private var _stack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StackArrowForward.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StackArrowForward.kt new file mode 100644 index 00000000..70e72e17 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StackArrowForward.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.StackArrowForward: ImageVector + get() { + if (_stackArrowForward != null) { + return _stackArrowForward!! + } + _stackArrowForward = fluentIcon(name = "Filled.StackArrowForward") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, 11.0f) + close() + moveTo(19.35f, 3.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(0.64f, 0.65f) + horizontalLineToRelative(-2.04f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 14.0f, 8.25f) + verticalLineToRelative(0.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-0.25f) + curveTo(15.0f, 7.01f, 16.0f, 6.0f, 17.25f, 6.0f) + horizontalLineToRelative(2.04f) + lineToRelative(-0.64f, 0.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.5f, -1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-1.5f, -1.5f) + close() + moveTo(4.0f, 4.0f) + horizontalLineToRelative(7.5f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, 5.5f, 8.98f) + lineTo(17.0f, 13.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + lineTo(4.0f, 15.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(2.0f, 6.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + close() + moveTo(18.0f, 12.98f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, 1.5f, -0.3f) + verticalLineToRelative(0.82f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, 4.0f) + horizontalLineToRelative(-9.0f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 4.56f, 16.0f) + lineTo(15.5f, 16.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) + verticalLineToRelative(-0.52f) + close() + moveTo(22.0f, 11.19f) + curveToRelative(-0.44f, 0.43f, -0.95f, 0.8f, -1.5f, 1.08f) + verticalLineToRelative(1.98f) + curveToRelative(0.0f, 2.35f, -1.9f, 4.25f, -4.25f, 4.25f) + lineTo(7.06f, 18.5f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 9.0f, 20.0f) + horizontalLineToRelative(7.25f) + arcTo(5.75f, 5.75f, 0.0f, false, false, 22.0f, 14.25f) + verticalLineToRelative(-3.06f) + close() + } + } + return _stackArrowForward!! + } + +private var _stackArrowForward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StackStar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StackStar.kt new file mode 100644 index 00000000..19923d8b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StackStar.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.StackStar: ImageVector + get() { + if (_stackStar != null) { + return _stackStar!! + } + _stackStar = fluentIcon(name = "Filled.StackStar") { + fluentPath { + moveTo(4.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(11.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(17.0f, 6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + lineTo(4.0f, 4.0f) + close() + moveTo(9.5f, 6.1f) + curveToRelative(0.19f, 0.0f, 0.36f, 0.1f, 0.45f, 0.28f) + lineToRelative(0.88f, 1.76f) + lineToRelative(1.73f, 0.21f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.26f, 0.88f) + lineToRelative(-1.27f, 1.06f) + lineToRelative(0.44f, 1.95f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.76f, 0.53f) + lineTo(9.5f, 11.7f) + lineToRelative(-1.74f, 1.08f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.75f, -0.53f) + lineToRelative(0.44f, -1.95f) + lineToRelative(-1.27f, -1.06f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.26f, -0.88f) + lineToRelative(1.73f, -0.21f) + lineToRelative(0.88f, -1.76f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.45f, -0.28f) + close() + moveTo(6.5f, 17.5f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 4.56f, 16.0f) + lineTo(15.5f, 16.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) + lineTo(18.0f, 6.56f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.5f, 1.94f) + verticalLineToRelative(5.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, 4.0f) + horizontalLineToRelative(-9.0f) + close() + moveTo(9.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.94f, -1.5f) + horizontalLineToRelative(9.19f) + curveToRelative(2.35f, 0.0f, 4.25f, -1.9f, 4.25f, -4.25f) + lineTo(20.5f, 9.06f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 22.0f, 11.0f) + verticalLineToRelative(3.25f) + arcTo(5.75f, 5.75f, 0.0f, false, true, 16.25f, 20.0f) + lineTo(9.0f, 20.0f) + close() + } + } + return _stackStar!! + } + +private var _stackStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarAdd.kt new file mode 100644 index 00000000..9b6a3250 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarAdd.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.StarAdd: ImageVector + get() { + if (_starAdd != null) { + return _starAdd!! + } + _starAdd = fluentIcon(name = "Filled.StarAdd") { + fluentPath { + moveTo(10.79f, 3.1f) + curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) + lineToRelative(2.36f, 4.78f) + lineToRelative(5.27f, 0.77f) + curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) + lineToRelative(-0.9f, 0.88f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -9.44f, 7.43f) + lineToRelative(-3.97f, 2.08f) + arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) + lineToRelative(0.9f, -5.25f) + lineToRelative(-3.81f, -3.72f) + curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) + lineToRelative(5.27f, -0.77f) + lineToRelative(2.36f, -4.78f) + close() + moveTo(22.99f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(17.99f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(16.99f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _starAdd!! + } + +private var _starAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarArrowBack.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarArrowBack.kt new file mode 100644 index 00000000..e1be5512 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarArrowBack.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.StarArrowBack: ImageVector + get() { + if (_starArrowBack != null) { + return _starArrowBack!! + } + _starArrowBack = fluentIcon(name = "Filled.StarArrowBack") { + fluentPath { + moveTo(10.79f, 3.1f) + curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) + lineToRelative(2.36f, 4.78f) + lineToRelative(5.27f, 0.77f) + curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) + lineToRelative(-0.9f, 0.88f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -9.44f, 7.43f) + lineToRelative(-3.97f, 2.08f) + arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) + lineToRelative(0.9f, -5.25f) + lineToRelative(-3.81f, -3.72f) + curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) + lineToRelative(5.27f, -0.77f) + lineToRelative(2.36f, -4.78f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(16.35f, 15.35f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(1.5f, 1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-0.64f, -0.65f) + horizontalLineToRelative(2.04f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(0.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-0.25f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-2.04f) + lineToRelative(0.64f, -0.65f) + close() + } + } + return _starArrowBack!! + } + +private var _starArrowBack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarArrowRightEnd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarArrowRightEnd.kt new file mode 100644 index 00000000..d8fe222f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarArrowRightEnd.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.StarArrowRightEnd: ImageVector + get() { + if (_starArrowRightEnd != null) { + return _starArrowRightEnd!! + } + _starArrowRightEnd = fluentIcon(name = "Filled.StarArrowRightEnd") { + fluentPath { + moveTo(10.79f, 3.1f) + curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) + lineToRelative(2.36f, 4.78f) + lineToRelative(5.27f, 0.77f) + curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) + lineToRelative(-0.9f, 0.88f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -9.44f, 7.43f) + lineToRelative(-3.97f, 2.08f) + arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) + lineToRelative(0.9f, -5.25f) + lineToRelative(-3.81f, -3.72f) + curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) + lineToRelative(5.27f, -0.77f) + lineToRelative(2.36f, -4.78f) + close() + moveTo(22.99f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.49f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.71f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.7f, 0.7f) + lineTo(19.28f, 17.0f) + horizontalLineToRelative(-4.8f) + close() + } + } + return _starArrowRightEnd!! + } + +private var _starArrowRightEnd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarArrowRightStart.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarArrowRightStart.kt new file mode 100644 index 00000000..452afd81 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarArrowRightStart.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.StarArrowRightStart: ImageVector + get() { + if (_starArrowRightStart != null) { + return _starArrowRightStart!! + } + _starArrowRightStart = fluentIcon(name = "Filled.StarArrowRightStart") { + fluentPath { + moveTo(10.79f, 3.1f) + curveToRelative(0.5f, -1.0f, 1.93f, -1.0f, 2.42f, 0.0f) + lineToRelative(2.36f, 4.78f) + lineToRelative(5.27f, 0.77f) + curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) + lineToRelative(-3.82f, 3.72f) + lineToRelative(0.9f, 5.25f) + arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.95f, 1.42f) + lineToRelative(-3.96f, -2.08f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -9.44f, -7.43f) + lineToRelative(-0.9f, -0.88f) + curveToRelative(-0.81f, -0.78f, -0.37f, -2.14f, 0.74f, -2.3f) + lineToRelative(5.27f, -0.77f) + lineTo(10.8f, 3.1f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(3.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.7f, 0.7f) + lineTo(8.29f, 17.0f) + horizontalLineTo(3.5f) + close() + } + } + return _starArrowRightStart!! + } + +private var _starArrowRightStart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarDismiss.kt new file mode 100644 index 00000000..eab0d9b0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarDismiss.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.StarDismiss: ImageVector + get() { + if (_starDismiss != null) { + return _starDismiss!! + } + _starDismiss = fluentIcon(name = "Filled.StarDismiss") { + fluentPath { + moveTo(10.79f, 3.1f) + curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) + lineToRelative(2.36f, 4.78f) + lineToRelative(5.27f, 0.77f) + curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) + lineToRelative(-0.9f, 0.88f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -9.44f, 7.43f) + lineToRelative(-3.97f, 2.08f) + arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) + lineToRelative(0.9f, -5.25f) + lineToRelative(-3.81f, -3.72f) + curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) + lineToRelative(5.27f, -0.77f) + lineToRelative(2.36f, -4.78f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-1.64f, -1.65f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.65f, 1.64f) + lineToRelative(-1.65f, -1.64f) + close() + } + } + return _starDismiss!! + } + +private var _starDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarEdit.kt new file mode 100644 index 00000000..111f9f89 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarEdit.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.StarEdit: ImageVector + get() { + if (_starEdit != null) { + return _starEdit!! + } + _starEdit = fluentIcon(name = "Filled.StarEdit") { + fluentPath { + moveTo(13.2f, 3.1f) + curveToRelative(-0.49f, -1.0f, -1.92f, -1.0f, -2.41f, 0.0f) + lineTo(8.43f, 7.88f) + lineToRelative(-5.27f, 0.77f) + arcToRelative(1.35f, 1.35f, 0.0f, false, false, -0.75f, 2.3f) + lineToRelative(3.81f, 3.72f) + lineToRelative(-0.9f, 5.25f) + arcToRelative(1.35f, 1.35f, 0.0f, false, false, 1.96f, 1.42f) + lineToRelative(2.94f, -1.54f) + lineToRelative(0.3f, -1.22f) + curveToRelative(0.17f, -0.65f, 0.5f, -1.24f, 0.98f, -1.72f) + lineToRelative(5.9f, -5.9f) + arcToRelative(3.28f, 3.28f, 0.0f, false, true, 4.37f, -0.23f) + curveToRelative(0.53f, -0.8f, 0.08f, -1.94f, -0.93f, -2.08f) + lineToRelative(-5.27f, -0.77f) + lineTo(13.2f, 3.1f) + close() + moveTo(18.1f, 11.67f) + lineTo(12.2f, 17.57f) + curveToRelative(-0.34f, 0.35f, -0.58f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.46f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.24f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _starEdit!! + } + +private var _starEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarEmphasis.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarEmphasis.kt new file mode 100644 index 00000000..ee431795 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarEmphasis.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.StarEmphasis: ImageVector + get() { + if (_starEmphasis != null) { + return _starEmphasis!! + } + _starEmphasis = fluentIcon(name = "Filled.StarEmphasis") { + fluentPath { + moveTo(13.21f, 3.1f) + curveToRelative(-0.5f, -1.0f, -1.93f, -1.0f, -2.42f, 0.0f) + lineTo(8.43f, 7.88f) + lineToRelative(-5.27f, 0.77f) + arcToRelative(1.35f, 1.35f, 0.0f, false, false, -0.75f, 2.3f) + lineToRelative(3.82f, 3.72f) + lineToRelative(-0.9f, 5.25f) + arcToRelative(1.35f, 1.35f, 0.0f, false, false, 1.95f, 1.42f) + lineTo(12.0f, 18.86f) + lineToRelative(4.72f, 2.48f) + curveToRelative(0.99f, 0.52f, 2.14f, -0.32f, 1.96f, -1.42f) + lineToRelative(-0.9f, -5.25f) + lineToRelative(3.81f, -3.72f) + curveToRelative(0.8f, -0.78f, 0.36f, -2.14f, -0.75f, -2.3f) + lineToRelative(-5.27f, -0.77f) + lineTo(13.2f, 3.1f) + close() + moveTo(1.16f, 3.78f) + curveToRelative(-0.25f, 0.32f, -0.2f, 0.8f, 0.12f, 1.06f) + lineToRelative(2.5f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.94f, -1.18f) + lineToRelative(-2.5f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.12f) + close() + moveTo(22.84f, 18.22f) + curveToRelative(0.25f, -0.33f, 0.2f, -0.8f, -0.12f, -1.06f) + lineToRelative(-2.5f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.94f, 1.18f) + lineToRelative(2.5f, 2.0f) + curveToRelative(0.32f, 0.25f, 0.8f, 0.2f, 1.06f, -0.12f) + close() + moveTo(1.28f, 17.16f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.94f, 1.18f) + lineToRelative(2.5f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.94f, -1.18f) + lineToRelative(-2.5f, 2.0f) + close() + moveTo(22.84f, 3.78f) + curveToRelative(0.25f, 0.32f, 0.2f, 0.8f, -0.12f, 1.06f) + lineToRelative(-2.5f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.94f, -1.18f) + lineToRelative(2.5f, -2.0f) + curveToRelative(0.32f, -0.25f, 0.8f, -0.2f, 1.06f, 0.12f) + close() + } + } + return _starEmphasis!! + } + +private var _starEmphasis: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarHalf.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarHalf.kt new file mode 100644 index 00000000..888b08a8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarHalf.kt @@ -0,0 +1,33 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.StarHalf: ImageVector + get() { + if (_starHalf != null) { + return _starHalf!! + } + _starHalf = fluentIcon(name = "Filled.StarHalf") { + fluentPath { + moveTo(12.0f, 2.35f) + curveToRelative(-0.48f, 0.0f, -0.96f, 0.25f, -1.21f, 0.75f) + lineTo(8.43f, 7.88f) + lineToRelative(-5.27f, 0.77f) + arcToRelative(1.35f, 1.35f, 0.0f, false, false, -0.75f, 2.3f) + lineToRelative(3.81f, 3.72f) + lineToRelative(-0.9f, 5.25f) + arcToRelative(1.35f, 1.35f, 0.0f, false, false, 1.96f, 1.42f) + lineTo(12.0f, 18.86f) + verticalLineTo(2.35f) + close() + } + } + return _starHalf!! + } + +private var _starHalf: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarLineHorizontal3.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarLineHorizontal3.kt new file mode 100644 index 00000000..445998ee --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarLineHorizontal3.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.StarLineHorizontal3: ImageVector + get() { + if (_starLineHorizontal3 != null) { + return _starLineHorizontal3!! + } + _starLineHorizontal3 = fluentIcon(name = "Filled.StarLineHorizontal3") { + fluentPath { + moveTo(10.79f, 3.1f) + curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) + lineToRelative(1.69f, 3.43f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.68f, 4.22f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.77f, 3.35f) + lineToRelative(-6.17f, 3.24f) + arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) + lineToRelative(0.9f, -5.25f) + lineToRelative(-3.81f, -3.72f) + curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) + lineToRelative(5.27f, -0.77f) + lineToRelative(2.36f, -4.78f) + close() + moveTo(14.5f, 16.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(14.5f, 12.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(14.5f, 8.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _starLineHorizontal3!! + } + +private var _starLineHorizontal3: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarOff.kt new file mode 100644 index 00000000..65aa3846 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarOff.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.StarOff: ImageVector + get() { + if (_starOff != null) { + return _starOff!! + } + _starOff = fluentIcon(name = "Filled.StarOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(4.8f, 4.8f) + lineToRelative(-3.86f, 0.57f) + arcToRelative(1.35f, 1.35f, 0.0f, false, false, -0.75f, 2.3f) + lineToRelative(3.82f, 3.72f) + lineToRelative(-0.9f, 5.25f) + arcToRelative(1.35f, 1.35f, 0.0f, false, false, 1.95f, 1.42f) + lineTo(12.0f, 18.86f) + lineToRelative(4.72f, 2.48f) + curveToRelative(0.99f, 0.52f, 2.14f, -0.32f, 1.96f, -1.42f) + lineToRelative(-0.04f, -0.22f) + lineToRelative(2.08f, 2.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(21.59f, 10.95f) + lineTo(17.81f, 14.63f) + lineTo(9.31f, 6.12f) + lineTo(10.79f, 3.1f) + curveToRelative(0.5f, -1.0f, 1.93f, -1.0f, 2.42f, 0.0f) + lineToRelative(2.36f, 4.78f) + lineToRelative(5.27f, 0.77f) + curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) + close() + } + } + return _starOff!! + } + +private var _starOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarOneQuarter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarOneQuarter.kt new file mode 100644 index 00000000..215fd13c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarOneQuarter.kt @@ -0,0 +1,32 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.StarOneQuarter: ImageVector + get() { + if (_starOneQuarter != null) { + return _starOneQuarter!! + } + _starOneQuarter = fluentIcon(name = "Filled.StarOneQuarter") { + fluentPath { + moveToRelative(9.0f, 6.72f) + lineToRelative(-0.57f, 1.16f) + lineToRelative(-5.27f, 0.77f) + arcToRelative(1.35f, 1.35f, 0.0f, false, false, -0.75f, 2.3f) + lineToRelative(3.81f, 3.72f) + lineToRelative(-0.9f, 5.25f) + arcToRelative(1.35f, 1.35f, 0.0f, false, false, 1.96f, 1.42f) + lineToRelative(1.72f, -0.9f) + verticalLineTo(6.72f) + close() + } + } + return _starOneQuarter!! + } + +private var _starOneQuarter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarProhibited.kt new file mode 100644 index 00000000..4c829ca4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarProhibited.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.StarProhibited: ImageVector + get() { + if (_starProhibited != null) { + return _starProhibited!! + } + _starProhibited = fluentIcon(name = "Filled.StarProhibited") { + fluentPath { + moveTo(10.79f, 3.1f) + curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) + lineToRelative(2.36f, 4.78f) + lineToRelative(5.27f, 0.77f) + curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) + lineToRelative(-0.9f, 0.88f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -9.44f, 7.43f) + lineToRelative(-3.97f, 2.08f) + arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) + lineToRelative(0.9f, -5.25f) + lineToRelative(-3.81f, -3.72f) + curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) + lineToRelative(5.27f, -0.77f) + lineToRelative(2.36f, -4.78f) + close() + moveTo(22.99f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(13.49f, 17.5f) + curveToRelative(0.0f, 0.83f, 0.26f, 1.6f, 0.7f, 2.25f) + lineToRelative(5.56f, -5.56f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) + close() + moveTo(17.49f, 21.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.32f, -6.25f) + lineToRelative(-5.56f, 5.56f) + curveToRelative(0.64f, 0.43f, 1.41f, 0.69f, 2.25f, 0.69f) + close() + } + } + return _starProhibited!! + } + +private var _starProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarSettings.kt new file mode 100644 index 00000000..464698d0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarSettings.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.StarSettings: ImageVector + get() { + if (_starSettings != null) { + return _starSettings!! + } + _starSettings = fluentIcon(name = "Filled.StarSettings") { + fluentPath { + moveTo(10.79f, 3.1f) + curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) + lineToRelative(2.36f, 4.78f) + lineToRelative(5.27f, 0.77f) + curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) + lineToRelative(-0.9f, 0.88f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -9.44f, 7.43f) + lineToRelative(-3.97f, 2.08f) + arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) + lineToRelative(0.9f, -5.25f) + lineToRelative(-3.81f, -3.72f) + curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) + lineToRelative(5.27f, -0.77f) + lineToRelative(2.36f, -4.78f) + close() + moveTo(14.28f, 13.97f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.59f, 0.15f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) + lineToRelative(0.55f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) + lineToRelative(-0.19f, 0.63f) + curveToRelative(0.44f, 0.39f, 0.94f, 0.7f, 1.49f, 0.93f) + lineToRelative(0.49f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) + lineToRelative(-0.2f, -0.69f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) + lineToRelative(0.59f, -0.14f) + arcToRelative(5.72f, 5.72f, 0.0f, false, false, 0.0f, -1.8f) + lineToRelative(-0.55f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.19f, -0.64f) + curveToRelative(-0.44f, -0.38f, -0.94f, -0.7f, -1.49f, -0.92f) + lineToRelative(-0.49f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) + lineToRelative(0.2f, 0.7f) + close() + moveTo(17.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) + close() + } + } + return _starSettings!! + } + +private var _starSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarThreeQuarter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarThreeQuarter.kt new file mode 100644 index 00000000..985c77c6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StarThreeQuarter.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.StarThreeQuarter: ImageVector + get() { + if (_starThreeQuarter != null) { + return _starThreeQuarter!! + } + _starThreeQuarter = fluentIcon(name = "Filled.StarThreeQuarter") { + fluentPath { + moveTo(15.0f, 6.73f) + lineTo(13.21f, 3.1f) + curveToRelative(-0.25f, -0.5f, -0.73f, -0.75f, -1.21f, -0.75f) + reflectiveCurveToRelative(-0.96f, 0.25f, -1.21f, 0.75f) + lineTo(8.43f, 7.88f) + lineToRelative(-5.27f, 0.77f) + arcToRelative(1.35f, 1.35f, 0.0f, false, false, -0.75f, 2.3f) + lineToRelative(3.81f, 3.72f) + lineToRelative(-0.9f, 5.25f) + arcToRelative(1.35f, 1.35f, 0.0f, false, false, 1.96f, 1.42f) + lineTo(12.0f, 18.86f) + lineToRelative(3.0f, 1.58f) + verticalLineTo(6.73f) + close() + } + } + return _starThreeQuarter!! + } + +private var _starThreeQuarter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Status.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Status.kt new file mode 100644 index 00000000..31fc4a40 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Status.kt @@ -0,0 +1,41 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Status: ImageVector + get() { + if (_status != null) { + return _status!! + } + _status = fluentIcon(name = "Filled.Status") { + fluentPath { + moveTo(12.0f, 3.0f) + curveToRelative(1.25f, 0.0f, 2.44f, 0.25f, 3.52f, 0.71f) + lineToRelative(-1.16f, 1.17f) + arcToRelative(7.5f, 7.5f, 0.0f, true, false, 4.78f, 4.82f) + lineToRelative(1.17f, -1.17f) + arcTo(9.0f, 9.0f, 0.0f, true, true, 12.0f, 3.0f) + close() + moveTo(21.16f, 2.57f) + lineTo(21.3f, 2.7f) + arcToRelative(2.4f, 2.4f, 0.0f, false, true, 0.0f, 3.4f) + lineToRelative(-6.75f, 6.81f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.4f, 0.25f) + lineTo(9.8f, 14.53f) + arcToRelative(0.2f, 0.2f, 0.0f, false, true, -0.25f, -0.25f) + lineToRelative(1.37f, -4.35f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.24f, -0.4f) + lineToRelative(6.76f, -6.82f) + curveToRelative(0.88f, -0.9f, 2.3f, -0.94f, 3.24f, -0.14f) + close() + } + } + return _status!! + } + +private var _status: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Steps.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Steps.kt new file mode 100644 index 00000000..b7ec89ec --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Steps.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Steps: ImageVector + get() { + if (_steps != null) { + return _steps!! + } + _steps = fluentIcon(name = "Filled.Steps") { + fluentPath { + moveTo(12.0f, 3.38f) + curveToRelative(0.0f, -0.76f, 0.62f, -1.38f, 1.38f, -1.38f) + horizontalLineToRelative(3.74f) + curveToRelative(0.76f, 0.0f, 1.38f, 0.62f, 1.38f, 1.38f) + lineTo(18.5f, 9.0f) + lineTo(17.0f, 9.0f) + lineTo(17.0f, 3.5f) + horizontalLineToRelative(-3.5f) + verticalLineToRelative(3.63f) + curveToRelative(0.0f, 0.75f, -0.62f, 1.37f, -1.38f, 1.37f) + lineTo(8.5f, 8.5f) + verticalLineToRelative(3.63f) + curveToRelative(0.0f, 0.75f, -0.62f, 1.37f, -1.38f, 1.37f) + lineTo(3.5f, 13.5f) + lineTo(3.5f, 17.0f) + lineTo(9.0f, 17.0f) + verticalLineToRelative(1.5f) + lineTo(3.37f, 18.5f) + curveToRelative(-0.75f, 0.0f, -1.37f, -0.62f, -1.37f, -1.38f) + verticalLineToRelative(-3.75f) + curveToRelative(0.0f, -0.75f, 0.62f, -1.37f, 1.38f, -1.37f) + lineTo(7.0f, 12.0f) + lineTo(7.0f, 8.37f) + curveTo(7.0f, 7.63f, 7.62f, 7.0f, 8.38f, 7.0f) + lineTo(12.0f, 7.0f) + lineTo(12.0f, 3.37f) + close() + moveTo(15.0f, 11.38f) + curveToRelative(0.0f, -0.76f, 0.62f, -1.38f, 1.38f, -1.38f) + horizontalLineToRelative(3.75f) + curveToRelative(0.75f, 0.0f, 1.37f, 0.62f, 1.37f, 1.38f) + verticalLineToRelative(6.87f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-6.88f) + curveToRelative(-0.75f, 0.0f, -1.37f, -0.62f, -1.37f, -1.38f) + verticalLineToRelative(-3.75f) + curveToRelative(0.0f, -0.75f, 0.62f, -1.37f, 1.38f, -1.37f) + lineTo(15.0f, 15.0f) + verticalLineToRelative(-3.63f) + close() + } + } + return _steps!! + } + +private var _steps: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Stethoscope.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Stethoscope.kt new file mode 100644 index 00000000..8f0dbe3b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Stethoscope.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Stethoscope: ImageVector + get() { + if (_stethoscope != null) { + return _stethoscope!! + } + _stethoscope = fluentIcon(name = "Filled.Stethoscope") { + fluentPath { + moveTo(3.0f, 2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + lineTo(2.0f, 9.0f) + curveToRelative(0.0f, 1.74f, 0.61f, 3.26f, 1.71f, 4.34f) + curveToRelative(0.87f, 0.86f, 2.01f, 1.4f, 3.29f, 1.59f) + verticalLineToRelative(0.82f) + arcToRelative(6.25f, 6.25f, 0.0f, true, false, 12.5f, 0.0f) + verticalLineToRelative(-0.66f) + arcToRelative(3.25f, 3.25f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(0.66f) + arcToRelative(4.25f, 4.25f, 0.0f, true, true, -8.5f, 0.0f) + verticalLineToRelative(-0.82f) + arcToRelative(5.82f, 5.82f, 0.0f, false, false, 3.29f, -1.6f) + arcTo(5.97f, 5.97f, 0.0f, false, false, 14.0f, 9.0f) + lineTo(14.0f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(1.0f) + lineTo(12.0f, 9.0f) + curveToRelative(0.0f, 1.26f, -0.44f, 2.24f, -1.11f, 2.91f) + arcTo(4.02f, 4.02f, 0.0f, false, true, 8.0f, 13.0f) + curveToRelative(-1.22f, 0.0f, -2.2f, -0.42f, -2.89f, -1.09f) + arcTo(3.98f, 3.98f, 0.0f, false, true, 4.0f, 9.0f) + lineTo(4.0f, 4.5f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + lineTo(3.0f, 2.5f) + close() + moveTo(18.5f, 10.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + } + } + return _stethoscope!! + } + +private var _stethoscope: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Sticker.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Sticker.kt new file mode 100644 index 00000000..0395548e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Sticker.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Sticker: ImageVector + get() { + if (_sticker != null) { + return _sticker!! + } + _sticker = fluentIcon(name = "Filled.Sticker") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + lineTo(21.0f, 13.0f) + horizontalLineToRelative(-4.96f) + curveToRelative(-1.2f, 0.08f, -2.22f, 0.81f, -2.72f, 1.84f) + arcToRelative(5.05f, 5.05f, 0.0f, false, true, -4.14f, -0.7f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.86f, 1.23f) + arcToRelative(6.33f, 6.33f, 0.0f, false, false, 4.35f, 1.1f) + lineToRelative(0.33f, -0.03f) + lineTo(13.0f, 21.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(20.35f, 14.72f) + lineTo(14.72f, 20.34f) + lineTo(14.5f, 20.54f) + lineTo(14.5f, 16.1f) + curveToRelative(0.08f, -0.85f, 0.75f, -1.53f, 1.6f, -1.6f) + lineToRelative(0.15f, -0.01f) + horizontalLineToRelative(4.28f) + lineToRelative(-0.19f, 0.22f) + close() + moveTo(9.0f, 7.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(15.0f, 7.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + } + } + return _sticker!! + } + +private var _sticker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StickerAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StickerAdd.kt new file mode 100644 index 00000000..9f35ed4c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StickerAdd.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.StickerAdd: ImageVector + get() { + if (_stickerAdd != null) { + return _stickerAdd!! + } + _stickerAdd = fluentIcon(name = "Filled.StickerAdd") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(17.5f, 14.0f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) + lineToRelative(-0.01f, 0.1f) + lineTo(17.0f, 17.0f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(0.18f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) + lineToRelative(0.1f, 0.01f) + lineTo(17.0f, 18.0f) + verticalLineToRelative(2.6f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + horizontalLineToRelative(0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) + lineToRelative(0.01f, -0.1f) + lineTo(18.0f, 18.0f) + horizontalLineToRelative(2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + verticalLineToRelative(-0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) + lineToRelative(-0.1f, -0.01f) + lineTo(18.0f, 17.0f) + verticalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) + horizontalLineToRelative(-0.09f) + close() + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(5.77f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -9.5f, 2.96f) + arcToRelative(4.78f, 4.78f, 0.0f, false, true, -2.32f, -0.84f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.86f, 1.23f) + arcToRelative(6.3f, 6.3f, 0.0f, false, false, 2.77f, 1.08f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, 0.93f, 4.55f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(9.0f, 7.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(15.0f, 7.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + } + } + return _stickerAdd!! + } + +private var _stickerAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Stop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Stop.kt new file mode 100644 index 00000000..384bfdb8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Stop.kt @@ -0,0 +1,32 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Stop: ImageVector + get() { + if (_stop != null) { + return _stop!! + } + _stop = fluentIcon(name = "Filled.Stop") { + fluentPath { + moveTo(4.75f, 3.0f) + curveTo(3.78f, 3.0f, 3.0f, 3.78f, 3.0f, 4.75f) + verticalLineToRelative(14.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(14.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineTo(4.75f) + curveTo(21.0f, 3.78f, 20.22f, 3.0f, 19.25f, 3.0f) + horizontalLineTo(4.75f) + close() + } + } + return _stop!! + } + +private var _stop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Storage.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Storage.kt new file mode 100644 index 00000000..a45c0bbe --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Storage.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Storage: ImageVector + get() { + if (_storage != null) { + return _storage!! + } + _storage = fluentIcon(name = "Filled.Storage") { + fluentPath { + moveTo(5.0f, 7.0f) + horizontalLineToRelative(14.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) + lineTo(22.0f, 14.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.82f, 3.0f) + lineTo(5.0f, 17.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -2.82f) + lineTo(2.0f, 10.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.82f, -3.0f) + lineTo(19.0f, 7.0f) + lineTo(5.0f, 7.0f) + close() + moveTo(18.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(14.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + } + } + return _storage!! + } + +private var _storage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StoreMicrosoft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StoreMicrosoft.kt new file mode 100644 index 00000000..e1d7e09d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StoreMicrosoft.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.StoreMicrosoft: ImageVector + get() { + if (_storeMicrosoft != null) { + return _storeMicrosoft!! + } + _storeMicrosoft = fluentIcon(name = "Filled.StoreMicrosoft") { + fluentPath { + moveTo(8.0f, 3.75f) + lineTo(8.0f, 6.0f) + lineTo(2.75f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(11.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 21.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 18.25f) + lineTo(22.0f, 6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(16.0f, 6.0f) + lineTo(16.0f, 3.75f) + curveTo(16.0f, 2.78f, 15.22f, 2.0f, 14.25f, 2.0f) + horizontalLineToRelative(-4.5f) + curveTo(8.78f, 2.0f, 8.0f, 2.78f, 8.0f, 3.75f) + close() + moveTo(9.75f, 3.5f) + horizontalLineToRelative(4.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + lineTo(14.5f, 6.0f) + horizontalLineToRelative(-5.0f) + lineTo(9.5f, 3.75f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + close() + moveTo(8.0f, 13.0f) + lineTo(8.0f, 9.5f) + horizontalLineToRelative(3.5f) + lineTo(11.5f, 13.0f) + lineTo(8.0f, 13.0f) + close() + moveTo(8.0f, 17.5f) + lineTo(8.0f, 14.0f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(3.5f) + lineTo(8.0f, 17.5f) + close() + moveTo(16.0f, 13.0f) + horizontalLineToRelative(-3.5f) + lineTo(12.5f, 9.5f) + lineTo(16.0f, 9.5f) + lineTo(16.0f, 13.0f) + close() + moveTo(12.5f, 17.5f) + lineTo(12.5f, 14.0f) + lineTo(16.0f, 14.0f) + verticalLineToRelative(3.5f) + horizontalLineToRelative(-3.5f) + close() + } + } + return _storeMicrosoft!! + } + +private var _storeMicrosoft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Stream.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Stream.kt new file mode 100644 index 00000000..c9345dda --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Stream.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Stream: ImageVector + get() { + if (_stream != null) { + return _stream!! + } + _stream = fluentIcon(name = "Filled.Stream") { + fluentPath { + moveTo(9.0f, 11.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, 7.0f, -7.0f) + horizontalLineToRelative(1.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(16.0f, 2.0f) + arcToRelative(9.0f, 9.0f, 0.0f, false, false, -9.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + lineTo(3.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) + close() + moveTo(17.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, 4.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, -6.0f, 6.0f) + lineTo(3.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(4.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, -4.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 6.0f, -6.0f) + horizontalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(18.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + arcToRelative(9.0f, 9.0f, 0.0f, false, true, -9.0f, 9.0f) + lineTo(6.0f, 22.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(2.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, false, 7.0f, -7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-3.0f) + close() + } + } + return _stream!! + } + +private var _stream: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StyleGuide.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StyleGuide.kt new file mode 100644 index 00000000..f9912e00 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/StyleGuide.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.StyleGuide: ImageVector + get() { + if (_styleGuide != null) { + return _styleGuide!! + } + _styleGuide = fluentIcon(name = "Filled.StyleGuide") { + fluentPath { + moveToRelative(17.4f, 4.72f) + lineToRelative(2.72f, 10.14f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -1.94f, 3.37f) + lineToRelative(-6.28f, 1.69f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -3.37f, -1.95f) + lineTo(5.8f, 7.83f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 1.95f, -3.37f) + lineToRelative(6.27f, -1.68f) + curveToRelative(1.47f, -0.4f, 2.98f, 0.48f, 3.37f, 1.94f) + close() + moveTo(10.96f, 7.74f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.93f, 0.52f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.93f, -0.52f) + close() + moveTo(5.8f, 11.66f) + lineToRelative(1.76f, 6.57f) + curveToRelative(0.18f, 0.67f, 0.54f, 1.26f, 1.0f, 1.71f) + lineToRelative(-0.44f, -0.02f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.6f, -2.9f) + lineToRelative(0.28f, -5.36f) + close() + moveTo(4.88f, 10.18f) + lineTo(4.52f, 16.98f) + curveToRelative(-0.04f, 0.7f, 0.12f, 1.36f, 0.43f, 1.94f) + lineToRelative(-0.42f, -0.16f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -1.58f, -3.56f) + lineToRelative(1.93f, -5.02f) + close() + } + } + return _styleGuide!! + } + +private var _styleGuide: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SubGrid.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SubGrid.kt new file mode 100644 index 00000000..185b4c0b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SubGrid.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SubGrid: ImageVector + get() { + if (_subGrid != null) { + return _subGrid!! + } + _subGrid = fluentIcon(name = "Filled.SubGrid") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(5.0f) + lineTo(11.25f, 7.0f) + horizontalLineToRelative(-1.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 7.0f, 9.75f) + verticalLineToRelative(1.5f) + lineTo(4.5f, 11.25f) + verticalLineToRelative(-5.0f) + close() + moveTo(7.0f, 12.75f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(4.25f) + lineTo(11.25f, 7.0f) + horizontalLineToRelative(1.5f) + verticalLineToRelative(4.25f) + lineTo(17.0f, 11.25f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(-4.25f) + lineTo(12.75f, 17.0f) + horizontalLineToRelative(-1.5f) + verticalLineToRelative(-4.25f) + lineTo(7.0f, 12.75f) + close() + moveTo(7.0f, 12.75f) + verticalLineToRelative(1.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 9.75f, 17.0f) + horizontalLineToRelative(1.5f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(-5.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-5.0f) + lineTo(7.0f, 12.75f) + close() + moveTo(12.75f, 17.0f) + horizontalLineToRelative(1.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 17.0f, 14.25f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-5.0f) + lineTo(12.75f, 17.0f) + close() + moveTo(17.0f, 11.25f) + verticalLineToRelative(-1.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 14.25f, 7.0f) + horizontalLineToRelative(-1.5f) + lineTo(12.75f, 4.5f) + horizontalLineToRelative(5.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(5.0f) + lineTo(17.0f, 11.25f) + close() + } + } + return _subGrid!! + } + +private var _subGrid: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Subtitles.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Subtitles.kt new file mode 100644 index 00000000..3b9a6b66 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Subtitles.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Subtitles: ImageVector + get() { + if (_subtitles != null) { + return _subtitles!! + } + _subtitles = fluentIcon(name = "Filled.Subtitles") { + fluentPath { + moveTo(2.0f, 7.25f) + curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) + horizontalLineToRelative(13.5f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(5.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + close() + moveTo(5.0f, 13.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(15.75f, 12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.5f) + close() + moveTo(5.0f, 16.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(11.75f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.5f) + close() + } + } + return _subtitles!! + } + +private var _subtitles: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SubtractCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SubtractCircle.kt new file mode 100644 index 00000000..26395f38 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SubtractCircle.kt @@ -0,0 +1,32 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SubtractCircle: ImageVector + get() { + if (_subtractCircle != null) { + return _subtractCircle!! + } + _subtractCircle = fluentIcon(name = "Filled.SubtractCircle") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(7.75f, 11.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + horizontalLineToRelative(8.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + horizontalLineToRelative(-8.6f) + close() + } + } + return _subtractCircle!! + } + +private var _subtractCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SubtractSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SubtractSquare.kt new file mode 100644 index 00000000..96fac903 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SubtractSquare.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SubtractSquare: ImageVector + get() { + if (_subtractSquare != null) { + return _subtractSquare!! + } + _subtractSquare = fluentIcon(name = "Filled.SubtractSquare") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.45f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(16.25f, 11.25f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + } + } + return _subtractSquare!! + } + +private var _subtractSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SurfaceEarbuds.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SurfaceEarbuds.kt new file mode 100644 index 00000000..df7f6e40 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SurfaceEarbuds.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SurfaceEarbuds: ImageVector + get() { + if (_surfaceEarbuds != null) { + return _surfaceEarbuds!! + } + _surfaceEarbuds = fluentIcon(name = "Filled.SurfaceEarbuds") { + fluentPath { + moveTo(10.11f, 17.24f) + arcToRelative(7.0f, 7.0f, 0.0f, false, false, 3.41f, 4.84f) + lineToRelative(-2.47f, 0.82f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.32f, -0.83f) + lineToRelative(-0.43f, -0.69f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.22f, -2.42f) + lineToRelative(1.59f, -1.72f) + close() + moveTo(17.0f, 10.0f) + arcToRelative(6.0f, 6.0f, 0.0f, true, true, 0.0f, 12.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 0.0f, -12.0f) + close() + moveTo(7.0f, 1.0f) + curveToRelative(0.21f, 0.0f, 0.43f, 0.01f, 0.63f, 0.03f) + lineToRelative(-0.35f, 0.12f) + arcTo(4.53f, 4.53f, 0.0f, false, false, 4.7f, 7.92f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 7.16f, 0.58f) + lineTo(13.0f, 7.3f) + arcTo(6.0f, 6.0f, 0.0f, true, true, 7.0f, 1.0f) + close() + moveTo(12.8f, 1.65f) + lineTo(12.9f, 1.78f) + lineTo(13.0f, 1.91f) + lineTo(13.64f, 2.93f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.11f, 2.3f) + lineToRelative(-0.11f, 0.14f) + lineToRelative(-2.29f, 2.45f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, -4.5f, -5.3f) + curveToRelative(0.31f, -0.19f, 0.64f, -0.33f, 0.97f, -0.42f) + lineToRelative(3.08f, -1.02f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.12f, 0.57f) + close() + moveTo(10.35f, 3.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.26f, 0.95f) + lineToRelative(0.05f, 0.1f) + lineToRelative(0.27f, 0.39f) + lineToRelative(0.06f, 0.09f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.24f, -0.83f) + lineToRelative(-0.06f, -0.1f) + lineToRelative(-0.26f, -0.38f) + lineToRelative(-0.07f, -0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, -0.11f) + close() + } + } + return _surfaceEarbuds!! + } + +private var _surfaceEarbuds: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SurfaceHub.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SurfaceHub.kt new file mode 100644 index 00000000..5a3fae99 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SurfaceHub.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SurfaceHub: ImageVector + get() { + if (_surfaceHub != null) { + return _surfaceHub!! + } + _surfaceHub = fluentIcon(name = "Filled.SurfaceHub") { + fluentPath { + moveTo(19.25f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.74f, 0.33f, 0.75f, 0.73f) + verticalLineToRelative(0.1f) + lineToRelative(-1.0f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, 0.66f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-0.73f) + lineTo(19.0f, 21.12f) + verticalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.45f, 0.26f) + lineToRelative(-0.03f, -0.1f) + lineTo(16.9f, 18.0f) + horizontalLineToRelative(-2.8f) + lineToRelative(-0.6f, 3.38f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, -0.16f) + lineToRelative(0.02f, -0.1f) + lineToRelative(0.56f, -3.12f) + lineTo(8.1f, 18.0f) + lineToRelative(-0.6f, 3.38f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, -0.16f) + lineToRelative(0.02f, -0.1f) + lineTo(7.48f, 13.0f) + lineTo(4.75f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.73f) + verticalLineToRelative(-0.1f) + lineToRelative(1.0f, -9.5f) + curveToRelative(0.04f, -0.35f, 0.31f, -0.62f, 0.65f, -0.66f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(13.5f) + close() + moveTo(13.48f, 13.0f) + lineTo(9.0f, 13.0f) + lineToRelative(-0.63f, 3.5f) + horizontalLineToRelative(4.48f) + lineToRelative(0.63f, -3.5f) + close() + moveTo(16.0f, 13.0f) + horizontalLineToRelative(-1.0f) + lineToRelative(-0.63f, 3.5f) + horizontalLineToRelative(2.26f) + lineTo(16.0f, 13.0f) + close() + } + } + return _surfaceHub!! + } + +private var _surfaceHub: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SwimmingPool.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SwimmingPool.kt new file mode 100644 index 00000000..24c8b26b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SwimmingPool.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SwimmingPool: ImageVector + get() { + if (_swimmingPool != null) { + return _swimmingPool!! + } + _swimmingPool = fluentIcon(name = "Filled.SwimmingPool") { + fluentPath { + moveTo(6.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + verticalLineToRelative(6.03f) + curveToRelative(0.63f, 0.06f, 1.3f, 0.19f, 2.0f, 0.41f) + lineTo(10.0f, 11.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(3.48f) + curveToRelative(0.8f, 0.0f, 1.48f, -0.17f, 2.0f, -0.35f) + lineTo(18.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -6.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(-6.0f) + lineTo(10.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -6.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(6.6f, 15.02f) + curveToRelative(-1.03f, 0.13f, -1.7f, 0.55f, -2.0f, 0.77f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.2f, -1.6f) + curveToRelative(0.49f, -0.37f, 1.49f, -0.97f, 2.95f, -1.15f) + arcToRelative(8.87f, 8.87f, 0.0f, false, true, 5.51f, 1.32f) + arcToRelative(7.5f, 7.5f, 0.0f, false, false, 7.63f, 0.18f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.02f, 1.72f) + arcToRelative(9.49f, 9.49f, 0.0f, false, true, -9.64f, -0.17f) + curveTo(9.03f, 15.05f, 7.6f, 14.9f, 6.6f, 15.02f) + close() + moveTo(4.6f, 19.79f) + curveToRelative(0.3f, -0.22f, 0.97f, -0.64f, 2.0f, -0.77f) + curveToRelative(1.0f, -0.12f, 2.43f, 0.03f, 4.27f, 1.07f) + arcToRelative(9.49f, 9.49f, 0.0f, false, false, 9.64f, 0.17f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.02f, -1.72f) + arcToRelative(7.5f, 7.5f, 0.0f, false, true, -7.63f, -0.18f) + arcToRelative(8.87f, 8.87f, 0.0f, false, false, -5.51f, -1.32f) + arcToRelative(6.14f, 6.14f, 0.0f, false, false, -2.96f, 1.16f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.22f, 1.6f) + close() + } + } + return _swimmingPool!! + } + +private var _swimmingPool: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SwipeDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SwipeDown.kt new file mode 100644 index 00000000..1b63794c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SwipeDown.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SwipeDown: ImageVector + get() { + if (_swipeDown != null) { + return _swipeDown!! + } + _swipeDown = fluentIcon(name = "Filled.SwipeDown") { + fluentPath { + moveTo(12.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(11.59f) + lineToRelative(1.3f, -1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.31f, -0.08f) + lineToRelative(0.1f, 0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.32f) + lineToRelative(-0.08f, 0.1f) + lineToRelative(-3.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.08f) + lineToRelative(-0.1f, -0.08f) + lineToRelative(-3.0f, -3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -1.5f) + lineToRelative(0.1f, 0.08f) + lineTo(11.0f, 18.6f) + lineTo(11.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 2.0f, 9.58f) + verticalLineToRelative(-1.7f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, -4.0f, 0.0f) + verticalLineToRelative(1.7f) + arcTo(5.0f, 5.0f, 0.0f, false, true, 12.0f, 2.0f) + close() + } + } + return _swipeDown!! + } + +private var _swipeDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SwipeRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SwipeRight.kt new file mode 100644 index 00000000..7fdd55d9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SwipeRight.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SwipeRight: ImageVector + get() { + if (_swipeRight != null) { + return _swipeRight!! + } + _swipeRight = fluentIcon(name = "Filled.SwipeRight") { + fluentPath { + moveTo(6.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(11.59f) + lineToRelative(-1.3f, 1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.08f, 1.31f) + lineToRelative(0.08f, 0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.32f, 0.08f) + lineToRelative(0.1f, -0.08f) + lineToRelative(3.0f, -3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.08f, -1.32f) + lineToRelative(-0.08f, -0.1f) + lineToRelative(-3.0f, -3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.5f, 1.32f) + lineToRelative(0.08f, 0.1f) + lineTo(18.6f, 11.0f) + lineTo(7.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + close() + moveTo(2.0f, 12.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 9.58f, 2.0f) + horizontalLineToRelative(-1.7f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 0.0f, -4.0f) + horizontalLineToRelative(1.7f) + arcTo(5.0f, 5.0f, 0.0f, false, false, 2.0f, 12.0f) + close() + } + } + return _swipeRight!! + } + +private var _swipeRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SwipeUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SwipeUp.kt new file mode 100644 index 00000000..4f637aff --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/SwipeUp.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.SwipeUp: ImageVector + get() { + if (_swipeUp != null) { + return _swipeUp!! + } + _swipeUp = fluentIcon(name = "Filled.SwipeUp") { + fluentPath { + moveTo(12.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + lineTo(13.0f, 5.41f) + lineToRelative(1.3f, 1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.31f, 0.08f) + lineToRelative(0.1f, -0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.08f, -1.32f) + lineToRelative(-0.08f, -0.1f) + lineToRelative(-3.0f, -3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.32f, -0.08f) + lineToRelative(-0.1f, 0.08f) + lineToRelative(-3.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.32f, 1.5f) + lineToRelative(0.1f, -0.08f) + lineTo(11.0f, 5.4f) + lineTo(11.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + close() + moveTo(12.0f, 22.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 2.0f, -9.58f) + verticalLineToRelative(1.7f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, -4.0f, 0.0f) + verticalLineToRelative(-1.7f) + arcTo(5.0f, 5.0f, 0.0f, false, false, 12.0f, 22.0f) + close() + } + } + return _swipeUp!! + } + +private var _swipeUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Symbols.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Symbols.kt new file mode 100644 index 00000000..80e380d2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Symbols.kt @@ -0,0 +1,103 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Symbols: ImageVector + get() { + if (_symbols != null) { + return _symbols!! + } + _symbols = fluentIcon(name = "Filled.Symbols") { + fluentPath { + moveTo(16.92f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(15.88f, 19.5f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 4.7f, -0.3f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.24f, 0.87f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -6.65f, 0.83f) + verticalLineToRelative(0.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-2.6f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(2.5f) + close() + moveTo(6.4f, 13.0f) + horizontalLineToRelative(0.1f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(3.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineTo(2.0f, 17.5f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(-0.1f) + close() + moveTo(17.5f, 13.0f) + curveToRelative(1.11f, 0.0f, 2.15f, 0.4f, 2.95f, 1.1f) + verticalLineToRelative(-0.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(2.6f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(19.74f, 15.5f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -4.7f, 0.29f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.24f, -0.86f) + arcTo(4.5f, 4.5f, 0.0f, false, true, 17.5f, 13.0f) + close() + moveTo(6.5f, 2.0f) + arcToRelative(4.5f, 4.5f, 0.0f, true, true, 0.0f, 9.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 0.0f, -9.0f) + close() + moveTo(19.21f, 2.0f) + curveTo(20.77f, 2.0f, 22.0f, 3.39f, 22.0f, 5.08f) + arcToRelative(3.2f, 3.2f, 0.0f, false, true, -0.85f, 2.21f) + lineToRelative(-2.5f, 3.14f) + arcToRelative(1.49f, 1.49f, 0.0f, false, true, -2.35f, 0.0f) + lineToRelative(-2.67f, -3.4f) + arcTo(3.27f, 3.27f, 0.0f, false, true, 13.0f, 5.08f) + curveTo(13.0f, 3.39f, 14.23f, 2.0f, 15.79f, 2.0f) + curveToRelative(0.56f, 0.0f, 1.1f, 0.19f, 1.55f, 0.52f) + lineToRelative(0.16f, 0.13f) + lineToRelative(0.16f, -0.13f) + arcTo(2.6f, 2.6f, 0.0f, false, true, 19.21f, 2.0f) + close() + moveTo(3.91f, 4.98f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 4.1f, 4.1f) + lineToRelative(-4.1f, -4.1f) + close() + moveTo(6.5f, 3.5f) + curveToRelative(-0.56f, 0.0f, -1.08f, 0.15f, -1.52f, 0.41f) + lineToRelative(4.1f, 4.11f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 6.5f, 3.5f) + close() + } + } + return _symbols!! + } + +private var _symbols: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Syringe.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Syringe.kt new file mode 100644 index 00000000..b3e781ac --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Syringe.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Syringe: ImageVector + get() { + if (_syringe != null) { + return _syringe!! + } + _syringe = fluentIcon(name = "Filled.Syringe") { + fluentPath { + moveTo(16.72f, 2.22f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.07f, 0.0f) + lineToRelative(4.0f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.07f, 1.06f) + lineToRelative(-0.47f, -0.47f) + lineToRelative(-1.69f, 1.69f) + lineToRelative(2.47f, 2.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-1.47f, -1.47f) + lineToRelative(-6.84f, 6.84f) + curveToRelative(-0.7f, 0.7f, -1.66f, 1.1f, -2.65f, 1.1f) + lineTo(6.56f, 18.5f) + lineToRelative(-3.28f, 3.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(3.28f, -3.28f) + verticalLineToRelative(-2.45f) + curveToRelative(0.0f, -1.0f, 0.4f, -1.95f, 1.1f, -2.65f) + lineToRelative(0.34f, -0.34f) + lineToRelative(1.53f, 1.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(8.0f, 10.94f) + lineToRelative(0.94f, -0.94f) + lineToRelative(1.53f, 1.53f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineTo(10.0f, 8.94f) + lineToRelative(0.94f, -0.94f) + lineToRelative(1.53f, 1.53f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineTo(12.0f, 6.94f) + lineToRelative(1.44f, -1.44f) + lineToRelative(-1.47f, -1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineToRelative(2.47f, 2.47f) + lineToRelative(1.7f, -1.7f) + lineToRelative(-0.48f, -0.46f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + moveTo(19.19f, 5.75f) + lineTo(18.25f, 4.81f) + lineTo(16.56f, 6.5f) + lineTo(17.5f, 7.44f) + lineTo(19.2f, 5.74f) + close() + } + } + return _syringe!! + } + +private var _syringe: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/System.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/System.kt new file mode 100644 index 00000000..16705a3d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/System.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.System: ImageVector + get() { + if (_system != null) { + return _system!! + } + _system = fluentIcon(name = "Filled.System") { + fluentPath { + moveTo(4.95f, 5.0f) + horizontalLineToRelative(14.1f) + curveTo(20.68f, 5.0f, 22.0f, 6.3f, 22.0f, 7.92f) + verticalLineToRelative(8.16f) + arcTo(2.93f, 2.93f, 0.0f, false, true, 19.05f, 19.0f) + lineTo(4.95f, 19.0f) + arcTo(2.93f, 2.93f, 0.0f, false, true, 2.0f, 16.08f) + lineTo(2.0f, 7.92f) + arcTo(2.93f, 2.93f, 0.0f, false, true, 4.95f, 5.0f) + close() + moveTo(4.95f, 7.0f) + arcToRelative(0.93f, 0.93f, 0.0f, false, false, -0.95f, 0.92f) + verticalLineToRelative(8.16f) + curveToRelative(0.0f, 0.5f, 0.42f, 0.92f, 0.95f, 0.92f) + horizontalLineToRelative(14.1f) + curveToRelative(0.53f, 0.0f, 0.95f, -0.41f, 0.95f, -0.92f) + lineTo(20.0f, 7.92f) + curveToRelative(0.0f, -0.5f, -0.42f, -0.92f, -0.95f, -0.92f) + lineTo(4.95f, 7.0f) + close() + } + } + return _system!! + } + +private var _system: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Tab.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Tab.kt new file mode 100644 index 00000000..fce23284 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Tab.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Tab: ImageVector + get() { + if (_tab != null) { + return _tab!! + } + _tab = fluentIcon(name = "Filled.Tab") { + fluentPath { + moveTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) + horizontalLineTo(5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + verticalLineTo(5.75f) + close() + moveTo(5.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(12.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineTo(5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineTo(5.75f) + close() + } + } + return _tab!! + } + +private var _tab: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabAdd.kt new file mode 100644 index 00000000..3b67f18b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabAdd.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TabAdd: ImageVector + get() { + if (_tabAdd != null) { + return _tabAdd!! + } + _tabAdd = fluentIcon(name = "Filled.TabAdd") { + fluentPath { + moveTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(6.27f) + arcToRelative(6.46f, 6.46f, 0.0f, false, false, -2.0f, -0.85f) + lineTo(19.0f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(5.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(5.42f) + curveToRelative(0.17f, 0.72f, 0.46f, 1.4f, 0.85f, 2.0f) + lineTo(5.75f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _tabAdd!! + } + +private var _tabAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabArrowLeft.kt new file mode 100644 index 00000000..0bcc5f0c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabArrowLeft.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TabArrowLeft: ImageVector + get() { + if (_tabArrowLeft != null) { + return _tabArrowLeft!! + } + _tabArrowLeft = fluentIcon(name = "Filled.TabArrowLeft") { + fluentPath { + moveTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(6.27f) + arcToRelative(6.46f, 6.46f, 0.0f, false, false, -2.0f, -0.85f) + lineTo(19.0f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(5.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(5.42f) + curveToRelative(0.17f, 0.72f, 0.46f, 1.4f, 0.85f, 2.0f) + lineTo(5.75f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + close() + moveTo(17.5f, 23.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, 11.0f) + close() + moveTo(20.5f, 18.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + horizontalLineToRelative(-4.8f) + lineToRelative(1.65f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineTo(15.71f, 18.0f) + horizontalLineToRelative(4.79f) + close() + } + } + return _tabArrowLeft!! + } + +private var _tabArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabDesktop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabDesktop.kt new file mode 100644 index 00000000..ef454114 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabDesktop.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TabDesktop: ImageVector + get() { + if (_tabDesktop != null) { + return _tabDesktop!! + } + _tabDesktop = fluentIcon(name = "Filled.TabDesktop") { + fluentPath { + moveTo(11.0f, 3.0f) + lineTo(6.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) + horizontalLineToRelative(12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) + lineTo(21.0f, 8.0f) + horizontalLineToRelative(-7.75f) + curveTo(12.01f, 8.0f, 11.0f, 7.0f, 11.0f, 5.75f) + lineTo(11.0f, 3.0f) + close() + moveTo(21.0f, 6.5f) + lineTo(21.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + horizontalLineToRelative(-5.5f) + verticalLineToRelative(2.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(21.0f, 6.5f) + close() + } + } + return _tabDesktop!! + } + +private var _tabDesktop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabDesktopArrowClockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabDesktopArrowClockwise.kt new file mode 100644 index 00000000..c2d960b1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabDesktopArrowClockwise.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TabDesktopArrowClockwise: ImageVector + get() { + if (_tabDesktopArrowClockwise != null) { + return _tabDesktopArrowClockwise!! + } + _tabDesktopArrowClockwise = fluentIcon(name = "Filled.TabDesktopArrowClockwise") { + fluentPath { + moveTo(5.75f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(5.35f) + arcToRelative(6.98f, 6.98f, 0.0f, false, true, 7.77f, -1.53f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 3.23f, 0.93f) + verticalLineToRelative(1.9f) + arcToRelative(6.97f, 6.97f, 0.0f, false, true, -1.1f, 8.6f) + horizontalLineToRelative(5.35f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) + lineTo(21.0f, 8.0f) + horizontalLineToRelative(-7.75f) + curveTo(12.01f, 8.0f, 11.0f, 7.0f, 11.0f, 5.75f) + lineTo(11.0f, 3.0f) + lineTo(5.75f, 3.0f) + close() + moveTo(12.5f, 3.0f) + verticalLineToRelative(2.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(21.0f, 6.5f) + verticalLineToRelative(-0.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) + lineTo(12.5f, 3.0f) + close() + moveTo(13.0f, 13.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(9.5f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.33f) + lineToRelative(-0.02f, -0.01f) + arcTo(4.5f, 4.5f, 0.0f, true, false, 12.5f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + arcToRelative(6.0f, 6.0f, 0.0f, true, true, -2.5f, -4.87f) + verticalLineToRelative(-0.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.75f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.75f) + close() + } + } + return _tabDesktopArrowClockwise!! + } + +private var _tabDesktopArrowClockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabDesktopBottom.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabDesktopBottom.kt new file mode 100644 index 00000000..0f5d56b8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabDesktopBottom.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TabDesktopBottom: ImageVector + get() { + if (_tabDesktopBottom != null) { + return _tabDesktopBottom!! + } + _tabDesktopBottom = fluentIcon(name = "Filled.TabDesktopBottom") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineTo(14.5f) + verticalLineToRelative(-3.25f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineTo(3.0f) + verticalLineTo(6.25f) + close() + moveTo(3.0f, 17.0f) + verticalLineToRelative(0.75f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineTo(13.0f) + verticalLineToRelative(-3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineTo(3.0f) + close() + } + } + return _tabDesktopBottom!! + } + +private var _tabDesktopBottom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabDesktopImage.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabDesktopImage.kt new file mode 100644 index 00000000..9c8d7f83 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabDesktopImage.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TabDesktopImage: ImageVector + get() { + if (_tabDesktopImage != null) { + return _tabDesktopImage!! + } + _tabDesktopImage = fluentIcon(name = "Filled.TabDesktopImage") { + fluentPath { + moveTo(11.0f, 3.0f) + lineTo(6.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(4.54f) + arcTo(3.98f, 3.98f, 0.0f, false, true, 5.0f, 10.0f) + horizontalLineToRelative(5.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, 4.0f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.73f, -0.2f, 1.41f, -0.54f, 2.0f) + lineTo(18.0f, 21.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) + lineTo(21.0f, 8.0f) + horizontalLineToRelative(-7.75f) + curveTo(12.01f, 8.0f, 11.0f, 7.0f, 11.0f, 5.75f) + lineTo(11.0f, 3.0f) + close() + moveTo(21.0f, 6.5f) + lineTo(21.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + horizontalLineToRelative(-5.5f) + verticalLineToRelative(2.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(21.0f, 6.5f) + close() + moveTo(5.0f, 11.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.56f, 0.15f, 1.08f, 0.42f, 1.52f) + lineToRelative(3.49f, -3.49f) + curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.0f) + lineToRelative(3.5f, 3.5f) + curveToRelative(0.26f, -0.45f, 0.41f, -0.97f, 0.41f, -1.53f) + verticalLineToRelative(-5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + lineTo(5.0f, 11.0f) + close() + moveTo(5.0f, 22.0f) + curveToRelative(-0.56f, 0.0f, -1.08f, -0.15f, -1.52f, -0.42f) + lineToRelative(3.49f, -3.49f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(3.5f, 3.5f) + curveToRelative(-0.45f, 0.26f, -0.97f, 0.41f, -1.53f, 0.41f) + lineTo(5.0f, 22.0f) + close() + moveTo(10.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + close() + } + } + return _tabDesktopImage!! + } + +private var _tabDesktopImage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabDesktopMultipleBottom.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabDesktopMultipleBottom.kt new file mode 100644 index 00000000..0bb271d3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabDesktopMultipleBottom.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TabDesktopMultipleBottom: ImageVector + get() { + if (_tabDesktopMultipleBottom != null) { + return _tabDesktopMultipleBottom!! + } + _tabDesktopMultipleBottom = fluentIcon(name = "Filled.TabDesktopMultipleBottom") { + fluentPath { + moveTo(6.0f, 5.0f) + horizontalLineToRelative(1.52f) + curveToRelative(0.12f, -0.85f, 0.85f, -1.5f, 1.73f, -1.5f) + horizontalLineToRelative(8.0f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(8.0f) + curveToRelative(0.0f, 0.88f, -0.65f, 1.61f, -1.5f, 1.73f) + verticalLineTo(18.0f) + curveToRelative(1.68f, -0.13f, 3.0f, -1.53f, 3.0f, -3.24f) + verticalLineToRelative(-8.0f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 17.25f, 2.0f) + horizontalLineToRelative(-8.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.24f, 3.0f) + close() + moveTo(2.0f, 9.25f) + curveTo(2.0f, 7.45f, 3.46f, 6.0f, 5.25f, 6.0f) + horizontalLineToRelative(9.5f) + curveTo(16.55f, 6.0f, 18.0f, 7.46f, 18.0f, 9.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.8f, -1.45f, 3.25f, -3.25f, 3.25f) + horizontalLineTo(11.5f) + verticalLineToRelative(-3.25f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineTo(2.0f) + verticalLineTo(9.25f) + close() + moveTo(2.0f, 18.0f) + verticalLineToRelative(0.75f) + curveTo(2.0f, 20.55f, 3.46f, 22.0f, 5.25f, 22.0f) + horizontalLineTo(10.0f) + verticalLineToRelative(-3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineTo(2.0f) + close() + } + } + return _tabDesktopMultipleBottom!! + } + +private var _tabDesktopMultipleBottom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabInPrivate.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabInPrivate.kt new file mode 100644 index 00000000..50731882 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabInPrivate.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TabInPrivate: ImageVector + get() { + if (_tabInPrivate != null) { + return _tabInPrivate!! + } + _tabInPrivate = fluentIcon(name = "Filled.TabInPrivate") { + fluentPath { + moveTo(5.75f, 3.0f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) + lineTo(5.75f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + close() + moveTo(5.0f, 5.75f) + verticalLineToRelative(0.54f) + lineTo(6.3f, 5.0f) + horizontalLineToRelative(-0.55f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(5.0f, 7.71f) + verticalLineToRelative(2.58f) + lineTo(10.3f, 5.0f) + lineTo(7.7f, 5.0f) + lineTo(5.0f, 7.7f) + close() + moveTo(11.7f, 5.0f) + lineTo(5.0f, 11.7f) + verticalLineToRelative(2.6f) + lineTo(14.3f, 5.0f) + horizontalLineToRelative(-2.6f) + close() + moveTo(15.7f, 5.0f) + lineTo(5.0f, 15.7f) + verticalLineToRelative(2.59f) + lineTo(18.3f, 5.0f) + lineTo(15.7f, 5.0f) + close() + moveTo(19.0f, 5.7f) + lineTo(5.7f, 19.0f) + lineTo(8.3f, 19.0f) + lineTo(19.0f, 8.3f) + lineTo(19.0f, 5.7f) + close() + moveTo(19.0f, 9.7f) + lineTo(9.7f, 19.0f) + horizontalLineToRelative(2.6f) + lineToRelative(6.7f, -6.7f) + lineTo(19.0f, 9.7f) + close() + moveTo(19.0f, 13.7f) + lineTo(13.7f, 19.0f) + horizontalLineToRelative(2.6f) + lineToRelative(2.7f, -2.7f) + verticalLineToRelative(-2.6f) + close() + moveTo(19.0f, 17.7f) + lineTo(17.7f, 19.0f) + horizontalLineToRelative(0.55f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-0.54f) + close() + } + } + return _tabInPrivate!! + } + +private var _tabInPrivate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabInprivateAccount.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabInprivateAccount.kt new file mode 100644 index 00000000..e7aeedde --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabInprivateAccount.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TabInprivateAccount: ImageVector + get() { + if (_tabInprivateAccount != null) { + return _tabInprivateAccount!! + } + _tabInprivateAccount = fluentIcon(name = "Filled.TabInprivateAccount") { + fluentPath { + moveTo(5.75f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) + horizontalLineToRelative(6.62f) + arcToRelative(3.9f, 3.9f, 0.0f, false, true, -0.37f, -1.67f) + lineTo(12.0f, 19.0f) + lineTo(5.75f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(5.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(12.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(3.38f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 2.0f, 1.22f) + verticalLineToRelative(-4.6f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) + lineTo(5.75f, 3.0f) + close() + moveTo(15.0f, 13.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(2.24f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.59f, 1.0f) + lineTo(18.0f, 12.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.17f, 1.0f) + lineTo(18.0f, 14.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(2.24f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 15.0f, 13.0f) + close() + moveTo(14.94f, 17.0f) + curveToRelative(-0.58f, 0.0f, -1.07f, 0.28f, -1.4f, 0.63f) + curveToRelative(-0.32f, 0.35f, -0.54f, 0.83f, -0.54f, 1.31f) + verticalLineToRelative(0.39f) + curveToRelative(0.0f, 1.96f, 2.04f, 3.67f, 5.0f, 3.67f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(3.47f) + curveToRelative(0.41f, -0.29f, 0.75f, -0.63f, 1.0f, -1.0f) + lineTo(18.0f, 21.0f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(4.92f) + curveToRelative(0.05f, -0.22f, 0.08f, -0.44f, 0.08f, -0.67f) + lineTo(23.0f, 19.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(4.73f) + arcToRelative(2.13f, 2.13f, 0.0f, false, false, -0.27f, -0.37f) + arcToRelative(1.91f, 1.91f, 0.0f, false, false, -1.4f, -0.63f) + horizontalLineToRelative(-6.12f) + close() + } + } + return _tabInprivateAccount!! + } + +private var _tabInprivateAccount: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabProhibited.kt new file mode 100644 index 00000000..e42681d9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabProhibited.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TabProhibited: ImageVector + get() { + if (_tabProhibited != null) { + return _tabProhibited!! + } + _tabProhibited = fluentIcon(name = "Filled.TabProhibited") { + fluentPath { + moveTo(5.86f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) + horizontalLineToRelative(6.16f) + arcToRelative(6.46f, 6.46f, 0.0f, false, true, -0.85f, -2.0f) + lineTo(5.86f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(4.86f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(5.14f) + curveToRelative(0.71f, 0.15f, 1.39f, 0.43f, 2.0f, 0.8f) + lineTo(20.86f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + horizontalLineToRelative(-12.0f) + close() + moveTo(17.5f, 23.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) + close() + moveTo(14.2f, 19.75f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 5.56f, -5.56f) + lineToRelative(-5.57f, 5.56f) + close() + moveTo(15.25f, 20.81f) + lineTo(20.81f, 15.25f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -5.56f, 5.56f) + close() + } + } + return _tabProhibited!! + } + +private var _tabProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabShieldDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabShieldDismiss.kt new file mode 100644 index 00000000..2be1225e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabShieldDismiss.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TabShieldDismiss: ImageVector + get() { + if (_tabShieldDismiss != null) { + return _tabShieldDismiss!! + } + _tabShieldDismiss = fluentIcon(name = "Filled.TabShieldDismiss") { + fluentPath { + moveTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(4.99f) + arcToRelative(5.36f, 5.36f, 0.0f, false, true, -2.0f, -1.36f) + lineTo(19.0f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(5.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(6.98f) + arcToRelative(6.7f, 6.7f, 0.0f, false, false, 1.45f, 2.0f) + lineTo(5.75f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + close() + moveTo(18.35f, 10.15f) + arcTo(5.71f, 5.71f, 0.0f, false, false, 22.5f, 12.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.5f, 0.41f) + verticalLineToRelative(3.09f) + curveToRelative(0.0f, 3.22f, -1.64f, 5.4f, -4.84f, 6.47f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.32f, 0.0f) + curveToRelative(-3.1f, -1.03f, -4.74f, -3.12f, -4.84f, -6.18f) + lineTo(13.0f, 12.5f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + curveToRelative(1.53f, 0.0f, 2.9f, -0.61f, 4.15f, -1.85f) + curveToRelative(0.2f, -0.2f, 0.51f, -0.2f, 0.7f, 0.0f) + close() + moveTo(15.97f, 13.84f) + lineTo(15.9f, 13.9f) + lineTo(15.84f, 13.97f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) + lineToRelative(0.06f, 0.07f) + lineToRelative(1.4f, 1.4f) + lineToRelative(-1.4f, 1.4f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) + lineToRelative(0.06f, 0.07f) + lineToRelative(0.07f, 0.06f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) + lineToRelative(0.07f, -0.06f) + lineToRelative(1.4f, -1.4f) + lineToRelative(1.4f, 1.4f) + lineToRelative(0.07f, 0.06f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) + lineToRelative(0.07f, -0.06f) + lineToRelative(0.06f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.56f) + lineToRelative(-0.06f, -0.07f) + lineToRelative(-1.4f, -1.4f) + lineToRelative(1.4f, -1.4f) + lineToRelative(0.06f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.56f) + lineToRelative(-0.06f, -0.07f) + lineToRelative(-0.07f, -0.06f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.56f, 0.0f) + lineToRelative(-0.07f, 0.06f) + lineToRelative(-1.4f, 1.4f) + lineToRelative(-1.4f, -1.4f) + lineToRelative(-0.07f, -0.06f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.49f, -0.04f) + lineToRelative(-0.07f, 0.04f) + close() + } + } + return _tabShieldDismiss!! + } + +private var _tabShieldDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Table.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Table.kt new file mode 100644 index 00000000..24e9b43c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Table.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Table: ImageVector + get() { + if (_table != null) { + return _table!! + } + _table = fluentIcon(name = "Filled.Table") { + fluentPath { + moveTo(9.5f, 21.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + close() + moveTo(16.0f, 21.0f) + horizontalLineToRelative(1.75f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 16.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + close() + moveTo(21.0f, 14.5f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(21.0f, 8.0f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(16.0f, 3.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(14.5f, 3.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + lineTo(14.5f, 3.0f) + close() + moveTo(8.0f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + lineTo(3.0f, 8.0f) + horizontalLineToRelative(5.0f) + lineTo(8.0f, 3.0f) + close() + moveTo(3.0f, 9.5f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-5.0f) + lineTo(3.0f, 9.5f) + close() + moveTo(3.0f, 16.0f) + verticalLineToRelative(1.75f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + lineTo(8.0f, 21.0f) + verticalLineToRelative(-5.0f) + lineTo(3.0f, 16.0f) + close() + moveTo(14.5f, 9.5f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(5.0f) + close() + } + } + return _table!! + } + +private var _table: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableAdd.kt new file mode 100644 index 00000000..3b152d68 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableAdd.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableAdd: ImageVector + get() { + if (_tableAdd != null) { + return _tableAdd!! + } + _tableAdd = fluentIcon(name = "Filled.TableAdd") { + fluentPath { + moveTo(9.5f, 21.0f) + horizontalLineToRelative(2.52f) + arcToRelative(6.47f, 6.47f, 0.0f, false, true, -0.85f, -5.0f) + lineTo(9.5f, 16.0f) + verticalLineToRelative(5.0f) + close() + moveTo(21.0f, 9.5f) + verticalLineToRelative(2.52f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, -5.0f, -0.85f) + lineTo(16.0f, 9.5f) + horizontalLineToRelative(5.0f) + close() + moveTo(14.5f, 9.5f) + verticalLineToRelative(2.23f) + arcToRelative(6.53f, 6.53f, 0.0f, false, false, -2.77f, 2.77f) + lineTo(9.5f, 14.5f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(21.0f, 8.0f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(16.0f, 3.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(14.5f, 3.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + lineTo(14.5f, 3.0f) + close() + moveTo(8.0f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + lineTo(3.0f, 8.0f) + horizontalLineToRelative(5.0f) + lineTo(8.0f, 3.0f) + close() + moveTo(3.0f, 9.5f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-5.0f) + lineTo(3.0f, 9.5f) + close() + moveTo(3.0f, 16.0f) + verticalLineToRelative(1.75f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + lineTo(8.0f, 21.0f) + verticalLineToRelative(-5.0f) + lineTo(3.0f, 16.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _tableAdd!! + } + +private var _tableAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableBottomRow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableBottomRow.kt new file mode 100644 index 00000000..c8773383 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableBottomRow.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableBottomRow: ImageVector + get() { + if (_tableBottomRow != null) { + return _tableBottomRow!! + } + _tableBottomRow = fluentIcon(name = "Filled.TableBottomRow") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(8.25f) + horizontalLineToRelative(1.5f) + lineTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(8.25f) + lineTo(21.0f, 14.5f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(4.5f, 20.49f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 16.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(5.0f) + lineTo(6.25f, 21.0f) + curveToRelative(-0.64f, 0.0f, -1.24f, -0.19f, -1.75f, -0.51f) + close() + moveTo(20.91f, 18.5f) + curveToRelative(0.06f, -0.24f, 0.09f, -0.5f, 0.09f, -0.75f) + lineTo(21.0f, 16.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(1.75f) + arcToRelative(3.23f, 3.23f, 0.0f, false, false, 3.16f, -2.5f) + close() + moveTo(14.5f, 21.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + close() + } + } + return _tableBottomRow!! + } + +private var _tableBottomRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableCellEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableCellEdit.kt new file mode 100644 index 00000000..007521aa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableCellEdit.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableCellEdit: ImageVector + get() { + if (_tableCellEdit != null) { + return _tableCellEdit!! + } + _tableCellEdit = fluentIcon(name = "Filled.TableCellEdit") { + fluentPath { + moveTo(5.25f, 6.5f) + curveTo(4.01f, 6.5f, 3.0f, 7.5f, 3.0f, 8.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineTo(8.0f) + verticalLineToRelative(-9.0f) + horizontalLineTo(5.25f) + close() + } + fluentPath { + moveTo(12.49f, 14.86f) + curveToRelative(-0.2f, 0.2f, -0.37f, 0.41f, -0.51f, 0.64f) + horizontalLineTo(9.5f) + verticalLineToRelative(-9.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(6.35f) + lineToRelative(-2.01f, 2.01f) + close() + } + fluentPath { + moveTo(20.72f, 8.0f) + horizontalLineToRelative(0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.12f, -1.5f) + horizontalLineTo(16.0f) + verticalLineToRelative(4.85f) + lineToRelative(2.4f, -2.39f) + arcTo(3.28f, 3.28f, 0.0f, false, true, 20.7f, 8.0f) + close() + } + fluentPath { + moveTo(20.72f, 9.0f) + curveToRelative(-0.6f, 0.0f, -1.18f, 0.22f, -1.62f, 0.67f) + lineToRelative(-5.9f, 5.9f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.71f, 1.25f) + lineToRelative(-0.46f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcTo(2.29f, 2.29f, 0.0f, false, false, 20.72f, 9.0f) + close() + } + } + return _tableCellEdit!! + } + +private var _tableCellEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableCellsMerge.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableCellsMerge.kt new file mode 100644 index 00000000..3ea13c59 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableCellsMerge.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableCellsMerge: ImageVector + get() { + if (_tableCellsMerge != null) { + return _tableCellsMerge!! + } + _tableCellsMerge = fluentIcon(name = "Filled.TableCellsMerge") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(0.25f) + lineTo(3.0f, 6.5f) + verticalLineToRelative(-0.25f) + close() + moveTo(3.0f, 8.0f) + verticalLineToRelative(8.0f) + horizontalLineToRelative(18.0f) + lineTo(21.0f, 8.0f) + lineTo(3.0f, 8.0f) + close() + moveTo(15.58f, 11.25f) + lineTo(14.69f, 10.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.12f, -1.0f) + lineToRelative(2.0f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.01f, 0.99f) + lineToRelative(-2.0f, 2.26f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.13f, -1.0f) + lineToRelative(0.89f, -1.0f) + lineTo(8.42f, 12.75f) + lineToRelative(0.9f, 1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, 1.0f) + lineToRelative(-2.0f, -2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.0f) + lineToRelative(2.0f, -2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.12f, 1.0f) + lineToRelative(-0.89f, 1.0f) + horizontalLineToRelative(7.16f) + close() + moveTo(3.0f, 17.75f) + verticalLineToRelative(-0.25f) + horizontalLineToRelative(18.0f) + verticalLineToRelative(0.25f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + close() + } + } + return _tableCellsMerge!! + } + +private var _tableCellsMerge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableCellsSplit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableCellsSplit.kt new file mode 100644 index 00000000..72f2438d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableCellsSplit.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableCellsSplit: ImageVector + get() { + if (_tableCellsSplit != null) { + return _tableCellsSplit!! + } + _tableCellsSplit = fluentIcon(name = "Filled.TableCellsSplit") { + fluentPath { + moveTo(6.25f, 3.0f) + lineTo(11.0f, 3.0f) + verticalLineToRelative(4.0f) + lineTo(3.0f, 7.0f) + verticalLineToRelative(-0.75f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + close() + moveTo(21.0f, 7.0f) + verticalLineToRelative(-0.75f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(12.5f, 3.0f) + verticalLineToRelative(4.0f) + lineTo(21.0f, 7.0f) + close() + moveTo(12.5f, 21.0f) + horizontalLineToRelative(5.25f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 17.0f) + horizontalLineToRelative(-8.5f) + verticalLineToRelative(4.0f) + close() + moveTo(3.0f, 8.5f) + verticalLineToRelative(7.0f) + horizontalLineToRelative(18.0f) + verticalLineToRelative(-7.0f) + lineTo(3.0f, 8.5f) + close() + moveTo(12.5f, 10.0f) + verticalLineToRelative(4.0f) + lineTo(11.0f, 14.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(1.5f) + close() + moveTo(3.0f, 17.75f) + lineTo(3.0f, 17.0f) + horizontalLineToRelative(8.0f) + verticalLineToRelative(4.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + close() + } + } + return _tableCellsSplit!! + } + +private var _tableCellsSplit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableDeleteColumn.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableDeleteColumn.kt new file mode 100644 index 00000000..2c2465a5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableDeleteColumn.kt @@ -0,0 +1,99 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableDeleteColumn: ImageVector + get() { + if (_tableDeleteColumn != null) { + return _tableDeleteColumn!! + } + _tableDeleteColumn = fluentIcon(name = "Filled.TableDeleteColumn") { + fluentPath { + moveTo(22.0f, 3.75f) + lineTo(22.0f, 8.0f) + horizontalLineToRelative(-5.0f) + lineTo(17.0f, 6.25f) + curveTo(17.0f, 4.45f, 18.46f, 3.0f, 20.25f, 3.0f) + horizontalLineToRelative(1.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(22.0f, 9.5f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(21.25f, 21.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(22.0f, 16.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(1.75f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(1.0f) + close() + moveTo(2.0f, 20.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(1.0f) + curveTo(5.55f, 21.0f, 7.0f, 19.54f, 7.0f, 17.75f) + lineTo(7.0f, 16.0f) + lineTo(2.0f, 16.0f) + verticalLineToRelative(4.25f) + close() + moveTo(2.0f, 9.5f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-5.0f) + lineTo(2.0f, 9.5f) + close() + moveTo(2.0f, 3.75f) + lineTo(2.0f, 8.0f) + horizontalLineToRelative(5.0f) + lineTo(7.0f, 6.25f) + curveTo(7.0f, 4.45f, 5.54f, 3.0f, 3.75f, 3.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(11.25f, 15.52f) + verticalLineToRelative(5.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-5.73f) + arcToRelative(1.83f, 1.83f, 0.0f, false, true, -0.08f, -0.07f) + lineToRelative(-0.67f, -0.67f) + lineToRelative(-0.67f, 0.67f) + lineToRelative(-0.08f, 0.07f) + close() + moveTo(11.25f, 8.72f) + lineTo(11.33f, 8.8f) + lineTo(12.0f, 9.47f) + lineTo(12.67f, 8.8f) + lineTo(12.75f, 8.73f) + lineTo(12.75f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(5.98f) + close() + moveTo(9.47f, 14.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineTo(10.94f, 12.0f) + lineToRelative(-1.47f, -1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineTo(12.0f, 10.94f) + lineToRelative(1.47f, -1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineTo(13.06f, 12.0f) + lineToRelative(1.47f, 1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(12.0f, 13.06f) + lineToRelative(-1.47f, 1.47f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + close() + } + } + return _tableDeleteColumn!! + } + +private var _tableDeleteColumn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableDeleteRow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableDeleteRow.kt new file mode 100644 index 00000000..2e03642e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableDeleteRow.kt @@ -0,0 +1,99 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableDeleteRow: ImageVector + get() { + if (_tableDeleteRow != null) { + return _tableDeleteRow!! + } + _tableDeleteRow = fluentIcon(name = "Filled.TableDeleteRow") { + fluentPath { + moveTo(3.75f, 2.0f) + lineTo(8.0f, 2.0f) + verticalLineToRelative(5.0f) + lineTo(6.25f, 7.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 3.75f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(9.5f, 2.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(-5.0f) + lineTo(9.5f, 2.0f) + close() + moveTo(21.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(16.0f, 2.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(1.75f) + curveTo(19.55f, 7.0f, 21.0f, 5.54f, 21.0f, 3.75f) + verticalLineToRelative(-1.0f) + close() + moveTo(20.25f, 22.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + lineTo(16.0f, 17.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(4.25f) + close() + moveTo(9.5f, 22.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + close() + moveTo(3.75f, 22.0f) + lineTo(8.0f, 22.0f) + verticalLineToRelative(-5.0f) + lineTo(6.25f, 17.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 20.25f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + close() + moveTo(15.52f, 12.75f) + horizontalLineToRelative(5.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.73f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-0.67f, 0.67f) + lineToRelative(0.67f, 0.67f) + lineToRelative(0.07f, 0.08f) + close() + moveTo(8.72f, 12.75f) + lineTo(8.8f, 12.67f) + lineTo(9.47f, 12.0f) + lineTo(8.8f, 11.33f) + arcToRelative(1.85f, 1.85f, 0.0f, false, true, -0.07f, -0.08f) + lineTo(2.75f, 11.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.98f) + close() + moveTo(14.53f, 14.53f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineTo(12.0f, 13.06f) + lineToRelative(-1.47f, 1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineTo(10.94f, 12.0f) + lineToRelative(-1.47f, -1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineTo(12.0f, 10.94f) + lineToRelative(1.47f, -1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineTo(13.06f, 12.0f) + lineToRelative(1.47f, 1.47f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + close() + } + } + return _tableDeleteRow!! + } + +private var _tableDeleteRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableDismiss.kt new file mode 100644 index 00000000..9cd3d4aa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableDismiss.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableDismiss: ImageVector + get() { + if (_tableDismiss != null) { + return _tableDismiss!! + } + _tableDismiss = fluentIcon(name = "Filled.TableDismiss") { + fluentPath { + moveTo(9.5f, 21.0f) + horizontalLineToRelative(2.52f) + arcToRelative(6.47f, 6.47f, 0.0f, false, true, -0.85f, -5.0f) + lineTo(9.5f, 16.0f) + verticalLineToRelative(5.0f) + close() + moveTo(21.0f, 9.5f) + verticalLineToRelative(2.52f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, -5.0f, -0.85f) + lineTo(16.0f, 9.5f) + horizontalLineToRelative(5.0f) + close() + moveTo(14.5f, 9.5f) + verticalLineToRelative(2.23f) + arcToRelative(6.53f, 6.53f, 0.0f, false, false, -2.77f, 2.77f) + lineTo(9.5f, 14.5f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(21.0f, 8.0f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(16.0f, 3.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(14.5f, 3.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + lineTo(14.5f, 3.0f) + close() + moveTo(8.0f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + lineTo(3.0f, 8.0f) + horizontalLineToRelative(5.0f) + lineTo(8.0f, 3.0f) + close() + moveTo(3.0f, 9.5f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-5.0f) + lineTo(3.0f, 9.5f) + close() + moveTo(3.0f, 16.0f) + verticalLineToRelative(1.75f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + lineTo(8.0f, 21.0f) + verticalLineToRelative(-5.0f) + lineTo(3.0f, 16.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-1.64f, -1.65f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.65f, 1.64f) + lineToRelative(-1.65f, -1.64f) + close() + } + } + return _tableDismiss!! + } + +private var _tableDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableEdit.kt new file mode 100644 index 00000000..6e017c84 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableEdit.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableEdit: ImageVector + get() { + if (_tableEdit != null) { + return _tableEdit!! + } + _tableEdit = fluentIcon(name = "Filled.TableEdit") { + fluentPath { + moveTo(12.49f, 19.82f) + curveToRelative(0.12f, -0.47f, 0.36f, -0.9f, 0.7f, -1.25f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.27f, 2.27f, 0.0f, false, true, 3.24f, 0.0f) + curveToRelative(0.9f, 0.9f, 0.9f, 2.34f, 0.0f, 3.23f) + lineToRelative(-5.9f, 5.9f) + curveToRelative(-0.35f, 0.35f, -0.78f, 0.6f, -1.25f, 0.7f) + lineToRelative(-1.83f, 0.47f) + curveToRelative(-0.8f, 0.2f, -1.52f, -0.53f, -1.32f, -1.32f) + lineToRelative(0.46f, -1.83f) + close() + moveTo(9.49f, 21.0f) + horizontalLineToRelative(1.67f) + lineToRelative(0.36f, -1.42f) + curveToRelative(0.16f, -0.65f, 0.5f, -1.24f, 0.97f, -1.72f) + lineTo(14.35f, 16.0f) + lineTo(9.5f, 16.0f) + verticalLineToRelative(5.0f) + close() + moveTo(16.0f, 9.5f) + verticalLineToRelative(4.85f) + lineToRelative(2.4f, -2.39f) + arcToRelative(3.28f, 3.28f, 0.0f, false, true, 2.6f, -0.95f) + lineTo(21.0f, 9.5f) + horizontalLineToRelative(-5.0f) + close() + moveTo(21.0f, 8.0f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.55f, 3.0f, 17.76f, 3.0f) + lineTo(16.0f, 3.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(14.5f, 3.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + lineTo(14.5f, 3.0f) + close() + moveTo(8.0f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + lineTo(3.0f, 8.0f) + horizontalLineToRelative(5.0f) + lineTo(8.0f, 3.0f) + close() + moveTo(3.0f, 9.5f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-5.0f) + lineTo(3.0f, 9.5f) + close() + moveTo(3.0f, 16.0f) + verticalLineToRelative(1.75f) + curveTo(3.0f, 19.55f, 4.45f, 21.0f, 6.25f, 21.0f) + lineTo(8.0f, 21.0f) + verticalLineToRelative(-5.0f) + lineTo(3.0f, 16.0f) + close() + moveTo(14.5f, 9.5f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(5.0f) + close() + } + } + return _tableEdit!! + } + +private var _tableEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableFreezeColumn.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableFreezeColumn.kt new file mode 100644 index 00000000..388f6920 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableFreezeColumn.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableFreezeColumn: ImageVector + get() { + if (_tableFreezeColumn != null) { + return _tableFreezeColumn!! + } + _tableFreezeColumn = fluentIcon(name = "Filled.TableFreezeColumn") { + fluentPath { + moveTo(8.0f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + lineTo(3.0f, 8.0f) + horizontalLineToRelative(5.0f) + lineTo(8.0f, 3.0f) + close() + moveTo(8.0f, 9.5f) + lineTo(3.0f, 9.5f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-5.0f) + close() + moveTo(9.5f, 14.5f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(-5.0f) + close() + moveTo(9.5f, 16.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(3.5f) + horizontalLineToRelative(3.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(14.5f, 4.5f) + lineTo(14.5f, 8.0f) + horizontalLineToRelative(-5.0f) + lineTo(9.5f, 3.0f) + horizontalLineToRelative(8.25f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(9.5f, 21.0f) + verticalLineToRelative(-5.0f) + close() + moveTo(8.0f, 16.0f) + lineTo(3.0f, 16.0f) + verticalLineToRelative(1.75f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + lineTo(8.0f, 21.0f) + verticalLineToRelative(-5.0f) + close() + } + } + return _tableFreezeColumn!! + } + +private var _tableFreezeColumn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableFreezeColumnAndRow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableFreezeColumnAndRow.kt new file mode 100644 index 00000000..271f0ed9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableFreezeColumnAndRow.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableFreezeColumnAndRow: ImageVector + get() { + if (_tableFreezeColumnAndRow != null) { + return _tableFreezeColumnAndRow!! + } + _tableFreezeColumnAndRow = fluentIcon(name = "Filled.TableFreezeColumnAndRow") { + fluentPath { + moveTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(8.25f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-5.0f) + lineTo(4.5f, 9.5f) + lineTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(14.5f, 19.5f) + lineTo(14.5f, 16.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(8.25f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + close() + moveTo(8.0f, 16.0f) + lineTo(3.0f, 16.0f) + verticalLineToRelative(1.75f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + lineTo(8.0f, 21.0f) + verticalLineToRelative(-5.0f) + close() + moveTo(9.5f, 14.5f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + close() + } + } + return _tableFreezeColumnAndRow!! + } + +private var _tableFreezeColumnAndRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableFreezeRow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableFreezeRow.kt new file mode 100644 index 00000000..56bb9a76 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableFreezeRow.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableFreezeRow: ImageVector + get() { + if (_tableFreezeRow != null) { + return _tableFreezeRow!! + } + _tableFreezeRow = fluentIcon(name = "Filled.TableFreezeRow") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(8.25f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-5.0f) + lineTo(4.5f, 9.5f) + lineTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(19.5f, 9.5f) + lineTo(16.0f, 9.5f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(21.0f, 16.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(1.75f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 16.0f) + close() + moveTo(14.5f, 14.5f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(9.5f, 16.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(-5.0f) + close() + moveTo(8.0f, 16.0f) + lineTo(3.0f, 16.0f) + verticalLineToRelative(1.75f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + lineTo(8.0f, 21.0f) + verticalLineToRelative(-5.0f) + close() + } + } + return _tableFreezeRow!! + } + +private var _tableFreezeRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableInsertColumn.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableInsertColumn.kt new file mode 100644 index 00000000..34664cac --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableInsertColumn.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableInsertColumn: ImageVector + get() { + if (_tableInsertColumn != null) { + return _tableInsertColumn!! + } + _tableInsertColumn = fluentIcon(name = "Filled.TableInsertColumn") { + fluentPath { + moveTo(4.5f, 3.75f) + verticalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(3.0f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(16.0f, 5.25f) + curveTo(16.0f, 4.01f, 15.1f, 3.0f, 14.0f, 3.0f) + horizontalLineToRelative(-4.0f) + curveTo(8.9f, 3.0f, 8.0f, 4.0f, 8.0f, 5.25f) + lineTo(8.0f, 8.0f) + horizontalLineToRelative(8.0f) + lineTo(16.0f, 5.25f) + close() + moveTo(8.0f, 14.5f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(8.0f) + verticalLineToRelative(5.0f) + lineTo(8.0f, 14.5f) + close() + moveTo(8.0f, 16.0f) + verticalLineToRelative(2.75f) + curveToRelative(0.0f, 1.24f, 0.9f, 2.25f, 2.0f, 2.25f) + horizontalLineToRelative(4.0f) + curveToRelative(1.1f, 0.0f, 2.0f, -1.0f, 2.0f, -2.25f) + lineTo(16.0f, 16.0f) + lineTo(8.0f, 16.0f) + close() + moveTo(21.0f, 20.25f) + lineTo(21.0f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + close() + } + } + return _tableInsertColumn!! + } + +private var _tableInsertColumn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableInsertRow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableInsertRow.kt new file mode 100644 index 00000000..9ce5eeb1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableInsertRow.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableInsertRow: ImageVector + get() { + if (_tableInsertRow != null) { + return _tableInsertRow!! + } + _tableInsertRow = fluentIcon(name = "Filled.TableInsertRow") { + fluentPath { + moveTo(20.25f, 4.5f) + lineTo(3.75f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(8.0f, 8.0f) + lineTo(5.25f, 8.0f) + curveTo(4.01f, 8.0f, 3.0f, 8.9f, 3.0f, 10.0f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 1.1f, 1.0f, 2.0f, 2.25f, 2.0f) + lineTo(8.0f, 16.0f) + lineTo(8.0f, 8.0f) + close() + moveTo(9.5f, 16.0f) + horizontalLineToRelative(5.0f) + lineTo(14.5f, 8.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(8.0f) + close() + moveTo(18.75f, 16.0f) + lineTo(16.0f, 16.0f) + lineTo(16.0f, 8.0f) + horizontalLineToRelative(2.75f) + curveToRelative(1.24f, 0.0f, 2.25f, 0.9f, 2.25f, 2.0f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 1.1f, -1.0f, 2.0f, -2.25f, 2.0f) + close() + moveTo(3.75f, 21.0f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + } + } + return _tableInsertRow!! + } + +private var _tableInsertRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableLightning.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableLightning.kt new file mode 100644 index 00000000..a9889e17 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableLightning.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableLightning: ImageVector + get() { + if (_tableLightning != null) { + return _tableLightning!! + } + _tableLightning = fluentIcon(name = "Filled.TableLightning") { + fluentPath { + moveTo(9.5f, 21.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.36f, -2.14f) + lineToRelative(0.88f, -1.86f) + lineTo(9.5f, 16.0f) + verticalLineToRelative(5.0f) + close() + moveTo(21.0f, 9.5f) + lineTo(21.0f, 11.0f) + horizontalLineToRelative(-4.68f) + curveToRelative(-0.11f, 0.0f, -0.22f, 0.01f, -0.32f, 0.03f) + lineTo(16.0f, 9.5f) + horizontalLineToRelative(5.0f) + close() + moveTo(14.5f, 9.5f) + verticalLineToRelative(3.34f) + lineToRelative(-0.78f, 1.66f) + lineTo(9.5f, 14.5f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(21.0f, 8.0f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(16.0f, 3.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(14.5f, 3.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + lineTo(14.5f, 3.0f) + close() + moveTo(8.0f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + lineTo(3.0f, 8.0f) + horizontalLineToRelative(5.0f) + lineTo(8.0f, 3.0f) + close() + moveTo(3.0f, 9.5f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-5.0f) + lineTo(3.0f, 9.5f) + close() + moveTo(3.0f, 16.0f) + verticalLineToRelative(1.75f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + lineTo(8.0f, 21.0f) + verticalLineToRelative(-5.0f) + lineTo(3.0f, 16.0f) + close() + moveTo(16.32f, 12.0f) + horizontalLineToRelative(4.82f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.44f, 0.75f) + lineTo(19.75f, 16.0f) + horizontalLineToRelative(1.5f) + curveToRelative(0.64f, 0.0f, 0.98f, 0.76f, 0.56f, 1.24f) + lineToRelative(-4.82f, 5.51f) + curveToRelative(-0.5f, 0.58f, -1.45f, 0.09f, -1.26f, -0.66f) + lineTo(16.5f, 19.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.46f, -0.71f) + lineToRelative(2.82f, -6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.46f, -0.29f) + close() + } + } + return _tableLightning!! + } + +private var _tableLightning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableLink.kt new file mode 100644 index 00000000..54fff84a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableLink.kt @@ -0,0 +1,102 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableLink: ImageVector + get() { + if (_tableLink != null) { + return _tableLink!! + } + _tableLink = fluentIcon(name = "Filled.TableLink") { + fluentPath { + moveTo(9.5f, 21.0f) + horizontalLineToRelative(2.07f) + arcToRelative(4.73f, 4.73f, 0.0f, false, true, 0.3f, -5.0f) + lineTo(9.5f, 16.0f) + verticalLineToRelative(5.0f) + close() + moveTo(21.0f, 9.5f) + verticalLineToRelative(4.83f) + arcToRelative(4.74f, 4.74f, 0.0f, false, false, -1.75f, -0.33f) + lineTo(16.0f, 14.0f) + lineTo(16.0f, 9.5f) + horizontalLineToRelative(5.0f) + close() + moveTo(14.5f, 9.5f) + verticalLineToRelative(4.67f) + curveToRelative(-0.3f, 0.08f, -0.6f, 0.2f, -0.87f, 0.33f) + lineTo(9.5f, 14.5f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(21.0f, 8.0f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(16.0f, 3.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(14.5f, 3.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + lineTo(14.5f, 3.0f) + close() + moveTo(8.0f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + lineTo(3.0f, 8.0f) + horizontalLineToRelative(5.0f) + lineTo(8.0f, 3.0f) + close() + moveTo(3.0f, 9.5f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-5.0f) + lineTo(3.0f, 9.5f) + close() + moveTo(3.0f, 16.0f) + verticalLineToRelative(1.75f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + lineTo(8.0f, 21.0f) + verticalLineToRelative(-5.0f) + lineTo(3.0f, 16.0f) + close() + moveTo(19.25f, 15.0f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 0.2f, 7.5f) + horizontalLineToRelative(-0.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + horizontalLineToRelative(0.1f) + lineTo(19.25f, 21.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.15f, -4.5f) + horizontalLineToRelative(-0.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(15.75f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-0.1f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.15f, 4.5f) + horizontalLineToRelative(0.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-0.1f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.2f, -7.5f) + horizontalLineToRelative(0.2f) + close() + moveTo(19.25f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(3.6f) + close() + } + } + return _tableLink!! + } + +private var _tableLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableLock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableLock.kt new file mode 100644 index 00000000..9c0cc5ff --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableLock.kt @@ -0,0 +1,99 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableLock: ImageVector + get() { + if (_tableLock != null) { + return _tableLock!! + } + _tableLock = fluentIcon(name = "Filled.TableLock") { + fluentPath { + moveTo(9.5f, 21.0f) + lineTo(13.0f, 21.0f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.17f, 0.02f, -0.34f, 0.05f, -0.5f) + lineTo(9.5f, 16.0f) + verticalLineToRelative(5.0f) + close() + moveTo(21.0f, 9.5f) + verticalLineToRelative(2.05f) + arcToRelative(3.49f, 3.49f, 0.0f, false, false, -5.0f, 0.0f) + lineTo(16.0f, 9.5f) + horizontalLineToRelative(5.0f) + close() + moveTo(14.5f, 9.5f) + verticalLineToRelative(4.7f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -0.5f, 0.3f) + lineTo(9.5f, 14.5f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(21.0f, 8.0f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(16.0f, 3.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(14.5f, 3.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + lineTo(14.5f, 3.0f) + close() + moveTo(8.0f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + lineTo(3.0f, 8.0f) + horizontalLineToRelative(5.0f) + lineTo(8.0f, 3.0f) + close() + moveTo(3.0f, 9.5f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-5.0f) + lineTo(3.0f, 9.5f) + close() + moveTo(3.0f, 16.0f) + verticalLineToRelative(1.75f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + lineTo(8.0f, 21.0f) + verticalLineToRelative(-5.0f) + lineTo(3.0f, 16.0f) + close() + moveTo(15.5f, 15.0f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(6.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(21.0f, 15.0f) + verticalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-0.5f) + close() + moveTo(17.5f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(19.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + } + } + return _tableLock!! + } + +private var _tableLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableMoveAbove.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableMoveAbove.kt new file mode 100644 index 00000000..d3c9936f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableMoveAbove.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableMoveAbove: ImageVector + get() { + if (_tableMoveAbove != null) { + return _tableMoveAbove!! + } + _tableMoveAbove = fluentIcon(name = "Filled.TableMoveAbove") { + fluentPath { + moveTo(20.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(16.5f) + close() + moveTo(20.78f, 9.72f) + curveToRelative(0.14f, 0.14f, 0.22f, 0.33f, 0.22f, 0.53f) + verticalLineToRelative(4.25f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(4.25f) + curveToRelative(0.2f, 0.0f, 0.39f, 0.08f, 0.53f, 0.22f) + close() + moveTo(14.5f, 14.5f) + verticalLineToRelative(-4.02f) + curveToRelative(-0.25f, 0.04f, -0.5f, 0.02f, -0.75f, -0.05f) + verticalLineToRelative(0.82f) + arcToRelative(1.75f, 1.75f, 0.0f, true, true, -3.5f, 0.0f) + verticalLineToRelative(-0.82f) + curveToRelative(-0.24f, 0.07f, -0.5f, 0.09f, -0.75f, 0.05f) + verticalLineToRelative(4.02f) + horizontalLineToRelative(5.0f) + close() + moveTo(9.5f, 16.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(-5.0f) + close() + moveTo(8.0f, 14.5f) + verticalLineToRelative(-5.0f) + lineTo(3.75f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.25f) + horizontalLineToRelative(5.0f) + close() + moveTo(3.0f, 16.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(5.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 16.0f) + close() + moveTo(16.0f, 16.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(1.75f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(16.0f, 21.0f) + verticalLineToRelative(-5.0f) + close() + moveTo(14.81f, 9.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 0.06f) + lineToRelative(-1.0f, -0.89f) + verticalLineToRelative(2.83f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(11.25f, 8.42f) + lineToRelative(-1.0f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.0f, -1.13f) + lineToRelative(2.25f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.0f, 0.0f) + lineToRelative(2.25f, 2.0f) + curveToRelative(0.3f, 0.27f, 0.34f, 0.75f, 0.06f, 1.06f) + close() + } + } + return _tableMoveAbove!! + } + +private var _tableMoveAbove: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableMoveBelow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableMoveBelow.kt new file mode 100644 index 00000000..9fec771d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableMoveBelow.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableMoveBelow: ImageVector + get() { + if (_tableMoveBelow != null) { + return _tableMoveBelow!! + } + _tableMoveBelow = fluentIcon(name = "Filled.TableMoveBelow") { + fluentPath { + moveTo(9.5f, 9.5f) + verticalLineToRelative(4.02f) + curveToRelative(0.25f, -0.04f, 0.5f, -0.02f, 0.75f, 0.05f) + verticalLineToRelative(-0.82f) + arcToRelative(1.75f, 1.75f, 0.0f, true, true, 3.5f, 0.0f) + verticalLineToRelative(0.82f) + curveToRelative(0.24f, -0.07f, 0.5f, -0.09f, 0.75f, -0.05f) + lineTo(14.5f, 9.5f) + horizontalLineToRelative(-5.0f) + close() + moveTo(8.0f, 9.5f) + verticalLineToRelative(5.0f) + lineTo(3.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(3.0f, 9.5f) + horizontalLineToRelative(5.0f) + close() + moveTo(9.5f, 8.0f) + horizontalLineToRelative(5.0f) + lineTo(14.5f, 3.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + close() + moveTo(16.0f, 9.5f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(4.25f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(21.0f, 9.5f) + horizontalLineToRelative(-5.0f) + close() + moveTo(21.0f, 8.0f) + horizontalLineToRelative(-5.0f) + lineTo(16.0f, 3.0f) + horizontalLineToRelative(1.75f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + lineTo(21.0f, 8.0f) + close() + moveTo(8.0f, 8.0f) + lineTo(3.0f, 8.0f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + lineTo(8.0f, 3.0f) + verticalLineToRelative(5.0f) + close() + moveTo(3.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 19.5f) + close() + moveTo(9.19f, 14.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -0.06f) + lineToRelative(1.0f, 0.89f) + verticalLineToRelative(-2.83f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(2.83f) + lineToRelative(1.0f, -0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.0f, 1.13f) + lineToRelative(-2.25f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.0f, 0.0f) + lineToRelative(-2.25f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.06f, -1.06f) + close() + } + } + return _tableMoveBelow!! + } + +private var _tableMoveBelow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableMoveLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableMoveLeft.kt new file mode 100644 index 00000000..9a5c29a7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableMoveLeft.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableMoveLeft: ImageVector + get() { + if (_tableMoveLeft != null) { + return _tableMoveLeft!! + } + _tableMoveLeft = fluentIcon(name = "Filled.TableMoveLeft") { + fluentPath { + moveTo(16.0f, 21.0f) + horizontalLineToRelative(1.75f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 16.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + close() + moveTo(16.0f, 14.5f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + close() + moveTo(10.48f, 9.5f) + horizontalLineToRelative(4.02f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(-4.02f) + curveToRelative(0.04f, -0.25f, 0.02f, -0.5f, -0.05f, -0.75f) + horizontalLineToRelative(0.82f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, -3.5f) + horizontalLineToRelative(-0.82f) + curveToRelative(0.07f, -0.24f, 0.09f, -0.5f, 0.05f, -0.75f) + close() + moveTo(16.0f, 8.0f) + horizontalLineToRelative(5.0f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(16.0f, 3.0f) + verticalLineToRelative(5.0f) + close() + moveTo(14.5f, 3.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(-5.0f) + lineTo(9.5f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.75f) + horizontalLineToRelative(4.25f) + close() + moveTo(14.5f, 16.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(-4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(9.5f, 16.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(4.5f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(4.5f, 3.75f) + close() + moveTo(9.25f, 9.19f) + curveToRelative(0.3f, 0.27f, 0.34f, 0.75f, 0.06f, 1.06f) + lineToRelative(-0.89f, 1.0f) + horizontalLineToRelative(2.83f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(8.42f, 12.75f) + lineToRelative(0.9f, 1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, 1.0f) + lineToRelative(-2.0f, -2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.0f) + lineToRelative(2.0f, -2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -0.06f) + close() + } + } + return _tableMoveLeft!! + } + +private var _tableMoveLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableMoveRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableMoveRight.kt new file mode 100644 index 00000000..855da1b8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableMoveRight.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableMoveRight: ImageVector + get() { + if (_tableMoveRight != null) { + return _tableMoveRight!! + } + _tableMoveRight = fluentIcon(name = "Filled.TableMoveRight") { + fluentPath { + moveTo(8.0f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + lineTo(3.0f, 8.0f) + horizontalLineToRelative(5.0f) + lineTo(8.0f, 3.0f) + close() + moveTo(8.0f, 9.5f) + lineTo(3.0f, 9.5f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-5.0f) + close() + moveTo(9.5f, 14.5f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(4.02f) + curveToRelative(-0.04f, 0.25f, -0.02f, 0.5f, 0.05f, 0.75f) + horizontalLineToRelative(-0.82f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, 3.5f) + horizontalLineToRelative(0.82f) + curveToRelative(-0.07f, 0.24f, -0.09f, 0.5f, -0.05f, 0.75f) + lineTo(9.5f, 14.5f) + close() + moveTo(8.0f, 16.0f) + lineTo(3.0f, 16.0f) + verticalLineToRelative(1.75f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + lineTo(8.0f, 21.0f) + verticalLineToRelative(-5.0f) + close() + moveTo(9.5f, 21.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, 0.75f) + lineTo(9.5f, 21.0f) + close() + moveTo(9.5f, 8.0f) + lineTo(9.5f, 3.0f) + horizontalLineToRelative(4.25f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(14.5f, 8.0f) + horizontalLineToRelative(-5.0f) + close() + moveTo(19.5f, 20.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(21.0f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(16.5f) + close() + moveTo(14.75f, 14.81f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.06f, -1.06f) + lineToRelative(0.89f, -1.0f) + horizontalLineToRelative(-2.83f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.83f) + lineToRelative(-0.89f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.12f, -1.0f) + lineToRelative(2.0f, 2.25f) + curveToRelative(0.25f, 0.29f, 0.25f, 0.71f, 0.0f, 1.0f) + lineToRelative(-2.0f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 0.06f) + close() + } + } + return _tableMoveRight!! + } + +private var _tableMoveRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableResizeColumn.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableResizeColumn.kt new file mode 100644 index 00000000..e6180cf9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableResizeColumn.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableResizeColumn: ImageVector + get() { + if (_tableResizeColumn != null) { + return _tableResizeColumn!! + } + _tableResizeColumn = fluentIcon(name = "Filled.TableResizeColumn") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-0.25f) + verticalLineToRelative(-6.65f) + lineToRelative(1.06f, -1.19f) + curveToRelative(0.59f, -0.66f, 0.59f, -1.66f, 0.0f, -2.32f) + lineToRelative(-1.06f, -1.2f) + lineTo(17.5f, 3.0f) + horizontalLineToRelative(0.25f) + close() + moveTo(14.09f, 15.56f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.52f, -1.81f) + horizontalLineToRelative(-3.14f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 8.0f, 15.83f) + lineTo(8.0f, 21.0f) + horizontalLineToRelative(8.0f) + verticalLineToRelative(-5.17f) + curveToRelative(-0.62f, 0.3f, -1.37f, 0.2f, -1.91f, -0.27f) + close() + moveTo(14.09f, 8.44f) + curveToRelative(0.54f, -0.48f, 1.3f, -0.56f, 1.91f, -0.27f) + lineTo(16.0f, 3.0f) + lineTo(8.0f, 3.0f) + verticalLineToRelative(5.17f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 2.43f, 2.08f) + horizontalLineToRelative(3.14f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.52f, -1.8f) + close() + moveTo(6.5f, 9.64f) + lineTo(6.5f, 3.0f) + horizontalLineToRelative(-0.25f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(0.25f) + verticalLineToRelative(-6.65f) + lineToRelative(-1.06f, -1.19f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.0f, -2.32f) + lineToRelative(1.06f, -1.2f) + close() + moveTo(15.58f, 11.25f) + lineTo(8.42f, 11.25f) + lineToRelative(0.9f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.13f, -1.0f) + lineToRelative(-2.0f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.0f) + lineToRelative(2.0f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.12f, -1.0f) + lineToRelative(-0.89f, -1.0f) + horizontalLineToRelative(7.16f) + lineToRelative(-0.89f, 1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.12f, 1.0f) + lineToRelative(2.0f, -2.25f) + lineToRelative(0.01f, -0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.01f, -1.0f) + lineToRelative(-2.0f, -2.24f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.12f, 1.0f) + lineToRelative(0.89f, 1.0f) + close() + } + } + return _tableResizeColumn!! + } + +private var _tableResizeColumn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableResizeRow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableResizeRow.kt new file mode 100644 index 00000000..97007e19 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableResizeRow.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableResizeRow: ImageVector + get() { + if (_tableResizeRow != null) { + return _tableResizeRow!! + } + _tableResizeRow = fluentIcon(name = "Filled.TableResizeRow") { + fluentPath { + moveTo(21.0f, 17.75f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + verticalLineToRelative(-0.25f) + horizontalLineToRelative(6.65f) + lineToRelative(1.19f, 1.06f) + curveToRelative(0.66f, 0.59f, 1.66f, 0.59f, 2.32f, 0.0f) + lineToRelative(1.2f, -1.06f) + lineTo(21.0f, 17.5f) + verticalLineToRelative(0.25f) + close() + moveTo(8.44f, 14.09f) + curveToRelative(0.47f, -0.53f, 1.18f, -0.7f, 1.81f, -0.52f) + verticalLineToRelative(-3.14f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 8.17f, 8.0f) + lineTo(3.0f, 8.0f) + verticalLineToRelative(8.0f) + horizontalLineToRelative(5.17f) + curveToRelative(-0.3f, -0.62f, -0.2f, -1.37f, 0.27f, -1.91f) + close() + moveTo(13.75f, 10.43f) + verticalLineToRelative(3.14f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 15.83f, 16.0f) + lineTo(21.0f, 16.0f) + lineTo(21.0f, 8.0f) + horizontalLineToRelative(-5.17f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -2.08f, 2.43f) + close() + moveTo(14.35f, 6.5f) + lineTo(21.0f, 6.5f) + verticalLineToRelative(-0.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(0.25f) + horizontalLineToRelative(6.65f) + lineToRelative(1.19f, -1.06f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 2.32f, 0.0f) + lineToRelative(1.2f, 1.06f) + close() + moveTo(12.75f, 15.58f) + lineTo(12.75f, 8.42f) + lineToRelative(1.0f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.0f, -1.13f) + lineToRelative(-2.25f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, 0.0f) + lineToRelative(-2.25f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.0f, 1.12f) + lineToRelative(1.0f, -0.89f) + verticalLineToRelative(7.16f) + lineToRelative(-1.0f, -0.89f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.0f, 1.12f) + lineToRelative(2.25f, 2.0f) + lineToRelative(0.01f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.0f, -0.01f) + lineToRelative(2.24f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, -1.12f) + lineToRelative(-1.0f, 0.89f) + close() + } + } + return _tableResizeRow!! + } + +private var _tableResizeRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableSettings.kt new file mode 100644 index 00000000..8c00968c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableSettings.kt @@ -0,0 +1,106 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableSettings: ImageVector + get() { + if (_tableSettings != null) { + return _tableSettings!! + } + _tableSettings = fluentIcon(name = "Filled.TableSettings") { + fluentPath { + moveTo(9.5f, 21.0f) + horizontalLineToRelative(2.52f) + arcToRelative(6.47f, 6.47f, 0.0f, false, true, -0.85f, -5.0f) + lineTo(9.5f, 16.0f) + verticalLineToRelative(5.0f) + close() + moveTo(21.0f, 9.5f) + verticalLineToRelative(2.52f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, -5.0f, -0.85f) + lineTo(16.0f, 9.5f) + horizontalLineToRelative(5.0f) + close() + moveTo(14.5f, 9.5f) + verticalLineToRelative(2.23f) + arcToRelative(6.53f, 6.53f, 0.0f, false, false, -2.77f, 2.77f) + lineTo(9.5f, 14.5f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(21.0f, 8.0f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(16.0f, 3.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(14.5f, 3.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + lineTo(14.5f, 3.0f) + close() + moveTo(8.0f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + lineTo(3.0f, 8.0f) + horizontalLineToRelative(5.0f) + lineTo(8.0f, 3.0f) + close() + moveTo(3.0f, 9.5f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-5.0f) + lineTo(3.0f, 9.5f) + close() + moveTo(3.0f, 16.0f) + verticalLineToRelative(1.75f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + lineTo(8.0f, 21.0f) + verticalLineToRelative(-5.0f) + lineTo(3.0f, 16.0f) + close() + moveTo(14.28f, 13.98f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.59f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) + lineToRelative(0.55f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) + lineToRelative(-0.19f, 0.63f) + curveToRelative(0.44f, 0.39f, 0.94f, 0.7f, 1.49f, 0.93f) + lineToRelative(0.49f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) + lineToRelative(-0.2f, -0.69f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) + lineToRelative(0.59f, -0.14f) + arcToRelative(5.72f, 5.72f, 0.0f, false, false, 0.0f, -1.8f) + lineToRelative(-0.55f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.19f, -0.63f) + curveToRelative(-0.44f, -0.4f, -0.94f, -0.7f, -1.49f, -0.93f) + lineToRelative(-0.49f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) + lineToRelative(0.2f, 0.7f) + close() + moveTo(17.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) + close() + } + } + return _tableSettings!! + } + +private var _tableSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableSimple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableSimple.kt new file mode 100644 index 00000000..942dc514 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableSimple.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableSimple: ImageVector + get() { + if (_tableSimple != null) { + return _tableSimple!! + } + _tableSimple = fluentIcon(name = "Filled.TableSimple") { + fluentPath { + moveTo(17.75f, 21.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(-8.25f) + lineTo(21.0f, 12.75f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + close() + moveTo(21.0f, 11.25f) + horizontalLineToRelative(-8.25f) + lineTo(12.75f, 3.0f) + horizontalLineToRelative(5.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(5.0f) + close() + moveTo(11.25f, 11.25f) + lineTo(11.25f, 3.0f) + horizontalLineToRelative(-5.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(8.25f) + close() + moveTo(3.0f, 12.75f) + verticalLineToRelative(5.0f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-8.25f) + lineTo(3.0f, 12.75f) + close() + } + } + return _tableSimple!! + } + +private var _tableSimple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableSimpleCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableSimpleCheckmark.kt new file mode 100644 index 00000000..4612c6b4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableSimpleCheckmark.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableSimpleCheckmark: ImageVector + get() { + if (_tableSimpleCheckmark != null) { + return _tableSimpleCheckmark!! + } + _tableSimpleCheckmark = fluentIcon(name = "Filled.TableSimpleCheckmark") { + fluentPath { + moveTo(11.25f, 12.75f) + lineTo(11.25f, 21.0f) + horizontalLineToRelative(-5.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(8.25f) + close() + moveTo(12.75f, 21.0f) + verticalLineToRelative(-8.25f) + lineTo(21.0f, 12.75f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-5.0f) + close() + moveTo(12.75f, 3.0f) + verticalLineToRelative(8.25f) + lineTo(21.0f, 11.25f) + verticalLineToRelative(-5.0f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + horizontalLineToRelative(-5.0f) + close() + moveTo(11.25f, 3.0f) + verticalLineToRelative(8.25f) + lineTo(3.0f, 11.25f) + verticalLineToRelative(-5.0f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(18.78f, 16.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-1.47f, 1.47f) + lineToRelative(-0.47f, -0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.0f, 1.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.0f, -2.0f) + close() + } + } + return _tableSimpleCheckmark!! + } + +private var _tableSimpleCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableSimpleMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableSimpleMultiple.kt new file mode 100644 index 00000000..2574285b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableSimpleMultiple.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableSimpleMultiple: ImageVector + get() { + if (_tableSimpleMultiple != null) { + return _tableSimpleMultiple!! + } + _tableSimpleMultiple = fluentIcon(name = "Filled.TableSimpleMultiple") { + fluentPath { + moveTo(15.75f, 19.0f) + lineTo(11.5f, 19.0f) + verticalLineToRelative(-7.5f) + lineTo(19.0f, 11.5f) + verticalLineToRelative(4.25f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + close() + moveTo(19.0f, 10.0f) + horizontalLineToRelative(-7.5f) + lineTo(11.5f, 2.0f) + horizontalLineToRelative(4.25f) + curveTo(17.55f, 2.0f, 19.0f, 3.46f, 19.0f, 5.25f) + lineTo(19.0f, 10.0f) + close() + moveTo(10.0f, 10.0f) + lineTo(10.0f, 2.0f) + lineTo(5.25f, 2.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) + lineTo(2.0f, 10.0f) + horizontalLineToRelative(8.0f) + close() + moveTo(10.0f, 19.0f) + verticalLineToRelative(-7.5f) + lineTo(2.0f, 11.5f) + verticalLineToRelative(4.25f) + curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) + lineTo(10.0f, 19.0f) + close() + moveTo(8.25f, 22.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.0f, -2.0f) + horizontalLineToRelative(10.5f) + curveTo(18.1f, 20.0f, 20.0f, 18.1f, 20.0f, 15.75f) + lineTo(20.0f, 5.25f) + curveToRelative(1.18f, 0.49f, 2.0f, 1.65f, 2.0f, 3.0f) + verticalLineToRelative(8.25f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, -5.5f, 5.5f) + lineTo(8.25f, 22.0f) + close() + } + } + return _tableSimpleMultiple!! + } + +private var _tableSimpleMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableStackAbove.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableStackAbove.kt new file mode 100644 index 00000000..c5dd308c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableStackAbove.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableStackAbove: ImageVector + get() { + if (_tableStackAbove != null) { + return _tableStackAbove!! + } + _tableStackAbove = fluentIcon(name = "Filled.TableStackAbove") { + fluentPath { + moveTo(20.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(16.5f) + close() + moveTo(14.5f, 9.5f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(9.5f, 16.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(-5.0f) + close() + moveTo(8.0f, 9.5f) + verticalLineToRelative(5.0f) + lineTo(3.0f, 14.5f) + verticalLineToRelative(-4.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + lineTo(8.0f, 9.5f) + close() + moveTo(8.0f, 16.0f) + lineTo(3.0f, 16.0f) + verticalLineToRelative(1.75f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + lineTo(8.0f, 21.0f) + verticalLineToRelative(-5.0f) + close() + moveTo(21.0f, 16.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(1.75f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 16.0f) + close() + moveTo(16.0f, 14.5f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(16.0f, 9.5f) + verticalLineToRelative(5.0f) + close() + } + } + return _tableStackAbove!! + } + +private var _tableStackAbove: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableStackBelow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableStackBelow.kt new file mode 100644 index 00000000..00568b8a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableStackBelow.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableStackBelow: ImageVector + get() { + if (_tableStackBelow != null) { + return _tableStackBelow!! + } + _tableStackBelow = fluentIcon(name = "Filled.TableStackBelow") { + fluentPath { + moveTo(9.5f, 9.5f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(-5.0f) + close() + moveTo(8.0f, 9.5f) + verticalLineToRelative(5.0f) + horizontalLineTo(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineTo(9.5f) + horizontalLineToRelative(5.0f) + close() + moveTo(9.5f, 8.0f) + horizontalLineToRelative(5.0f) + verticalLineTo(3.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + close() + moveTo(16.0f, 9.5f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(4.25f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineTo(9.5f) + horizontalLineToRelative(-5.0f) + close() + moveTo(21.0f, 8.0f) + horizontalLineToRelative(-5.0f) + verticalLineTo(3.0f) + horizontalLineToRelative(1.75f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineTo(8.0f) + close() + moveTo(8.0f, 8.0f) + horizontalLineTo(3.0f) + verticalLineTo(6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineTo(8.0f) + verticalLineToRelative(5.0f) + close() + moveTo(3.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(3.75f) + close() + } + } + return _tableStackBelow!! + } + +private var _tableStackBelow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableStackLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableStackLeft.kt new file mode 100644 index 00000000..eea1cd91 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableStackLeft.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableStackLeft: ImageVector + get() { + if (_tableStackLeft != null) { + return _tableStackLeft!! + } + _tableStackLeft = fluentIcon(name = "Filled.TableStackLeft") { + fluentPath { + moveTo(16.0f, 21.0f) + horizontalLineToRelative(1.75f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 16.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + close() + moveTo(16.0f, 14.5f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + close() + moveTo(14.5f, 9.5f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(16.0f, 8.0f) + horizontalLineToRelative(5.0f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(16.0f, 3.0f) + verticalLineToRelative(5.0f) + close() + moveTo(14.5f, 3.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(-5.0f) + lineTo(9.5f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.75f) + horizontalLineToRelative(4.25f) + close() + moveTo(14.5f, 16.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(-4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(9.5f, 16.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(4.5f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(4.5f, 3.75f) + close() + } + } + return _tableStackLeft!! + } + +private var _tableStackLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableStackRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableStackRight.kt new file mode 100644 index 00000000..f07fce34 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableStackRight.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableStackRight: ImageVector + get() { + if (_tableStackRight != null) { + return _tableStackRight!! + } + _tableStackRight = fluentIcon(name = "Filled.TableStackRight") { + fluentPath { + moveTo(8.0f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + lineTo(3.0f, 8.0f) + horizontalLineToRelative(5.0f) + lineTo(8.0f, 3.0f) + close() + moveTo(8.0f, 9.5f) + lineTo(3.0f, 9.5f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-5.0f) + close() + moveTo(9.5f, 14.5f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(-5.0f) + close() + moveTo(8.0f, 16.0f) + lineTo(3.0f, 16.0f) + verticalLineToRelative(1.75f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + lineTo(8.0f, 21.0f) + verticalLineToRelative(-5.0f) + close() + moveTo(9.5f, 21.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, 0.75f) + lineTo(9.5f, 21.0f) + close() + moveTo(9.5f, 8.0f) + lineTo(9.5f, 3.0f) + horizontalLineToRelative(4.25f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(14.5f, 8.0f) + horizontalLineToRelative(-5.0f) + close() + moveTo(19.5f, 20.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(21.0f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(16.5f) + close() + } + } + return _tableStackRight!! + } + +private var _tableStackRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableSwitch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableSwitch.kt new file mode 100644 index 00000000..54096239 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TableSwitch.kt @@ -0,0 +1,99 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TableSwitch: ImageVector + get() { + if (_tableSwitch != null) { + return _tableSwitch!! + } + _tableSwitch = fluentIcon(name = "Filled.TableSwitch") { + fluentPath { + moveTo(8.78f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(0.72f, 0.72f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(2.19f) + lineToRelative(-0.72f, -0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineToRelative(-0.72f, 0.72f) + lineTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.19f) + lineToRelative(-0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineToRelative(2.0f, -2.0f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-2.0f, -2.0f) + close() + moveTo(14.5f, 8.0f) + horizontalLineToRelative(-5.0f) + lineTo(9.5f, 6.97f) + lineTo(11.5f, 5.0f) + curveToRelative(0.54f, -0.54f, 0.65f, -1.34f, 0.34f, -1.99f) + horizontalLineToRelative(2.67f) + verticalLineToRelative(5.0f) + close() + moveTo(3.0f, 11.83f) + verticalLineToRelative(2.67f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-5.0f) + lineTo(6.97f, 9.5f) + lineTo(5.0f, 11.49f) + curveToRelative(-0.54f, 0.54f, -1.34f, 0.65f, -1.99f, 0.34f) + close() + moveTo(14.5f, 14.5f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(16.0f, 14.5f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(-5.0f) + close() + moveTo(16.0f, 8.0f) + horizontalLineToRelative(5.0f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(16.0f, 3.0f) + verticalLineToRelative(5.0f) + close() + moveTo(14.5f, 21.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(8.0f, 16.0f) + lineTo(3.0f, 16.0f) + verticalLineToRelative(1.75f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + lineTo(8.0f, 21.0f) + verticalLineToRelative(-5.0f) + close() + moveTo(16.0f, 16.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(1.75f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(16.0f, 21.0f) + verticalLineToRelative(-5.0f) + close() + } + } + return _tableSwitch!! + } + +private var _tableSwitch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Tablet.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Tablet.kt new file mode 100644 index 00000000..9942b675 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Tablet.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Tablet: ImageVector + get() { + if (_tablet != null) { + return _tablet!! + } + _tablet = fluentIcon(name = "Filled.Tablet") { + fluentPath { + moveTo(19.75f, 4.0f) + curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(22.0f, 19.0f, 21.0f, 20.0f, 19.75f, 20.0f) + lineTo(4.25f, 20.0f) + curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) + lineTo(2.0f, 6.25f) + curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) + horizontalLineToRelative(15.5f) + close() + moveTo(13.75f, 15.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + close() + } + } + return _tablet!! + } + +private var _tablet: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabletSpeaker.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabletSpeaker.kt new file mode 100644 index 00000000..a20cb5bd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TabletSpeaker.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TabletSpeaker: ImageVector + get() { + if (_tabletSpeaker != null) { + return _tabletSpeaker!! + } + _tabletSpeaker = fluentIcon(name = "Filled.TabletSpeaker") { + fluentPath { + moveTo(22.14f, 3.3f) + arcToRelative(4.53f, 4.53f, 0.0f, false, false, -0.91f, -1.13f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.96f, 1.16f) + curveToRelative(0.13f, 0.1f, 0.35f, 0.35f, 0.59f, 0.74f) + curveToRelative(0.4f, 0.67f, 0.64f, 1.48f, 0.64f, 2.43f) + curveToRelative(0.0f, 0.95f, -0.24f, 1.76f, -0.64f, 2.43f) + curveToRelative(-0.24f, 0.39f, -0.46f, 0.64f, -0.59f, 0.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.96f, 1.16f) + curveToRelative(0.25f, -0.21f, 0.59f, -0.58f, 0.91f, -1.13f) + curveToRelative(0.54f, -0.9f, 0.86f, -1.96f, 0.86f, -3.2f) + curveToRelative(0.0f, -1.24f, -0.32f, -2.3f, -0.86f, -3.2f) + close() + } + fluentPath { + moveTo(19.87f, 4.4f) + curveToRelative(-0.23f, -0.36f, -0.48f, -0.6f, -0.67f, -0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 1.2f) + arcTo(2.24f, 2.24f, 0.0f, false, true, 19.0f, 6.5f) + arcToRelative(2.24f, 2.24f, 0.0f, false, true, -0.7f, 1.65f) + lineToRelative(-0.08f, 0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) + arcToRelative(3.73f, 3.73f, 0.0f, false, false, 1.3f, -2.85f) + curveToRelative(0.0f, -0.81f, -0.23f, -1.52f, -0.63f, -2.1f) + close() + } + fluentPath { + moveTo(17.0f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.31f, -0.5f) + lineTo(14.16f, 5.0f) + horizontalLineToRelative(-1.41f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(1.41f) + lineToRelative(1.53f, 1.74f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 17.0f, 9.25f) + verticalLineToRelative(-5.5f) + close() + } + fluentPath { + moveTo(12.0f, 4.0f) + horizontalLineToRelative(1.53f) + horizontalLineToRelative(-9.28f) + curveTo(3.01f, 4.0f, 2.0f, 5.0f, 2.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(2.0f, 19.0f, 3.0f, 20.0f, 4.25f, 20.0f) + horizontalLineToRelative(15.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-6.27f) + lineToRelative(-0.13f, 0.11f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -2.86f, -1.11f) + curveToRelative(-0.42f, 0.07f, -0.87f, -0.03f, -1.23f, -0.27f) + arcToRelative(1.76f, 1.76f, 0.0f, false, true, -2.8f, 0.33f) + lineTo(13.52f, 9.0f) + lineTo(12.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(11.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(10.25f, 15.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + } + } + return _tabletSpeaker!! + } + +private var _tabletSpeaker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Tabs.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Tabs.kt new file mode 100644 index 00000000..81db3746 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Tabs.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Tabs: ImageVector + get() { + if (_tabs != null) { + return _tabs!! + } + _tabs = fluentIcon(name = "Filled.Tabs") { + fluentPath { + moveTo(2.0f, 9.25f) + curveTo(2.0f, 5.25f, 5.25f, 2.0f, 9.25f, 2.0f) + horizontalLineToRelative(3.5f) + curveToRelative(1.35f, 0.0f, 2.51f, 0.83f, 3.0f, 2.0f) + horizontalLineToRelative(-5.5f) + arcTo(6.25f, 6.25f, 0.0f, false, false, 4.0f, 10.25f) + verticalLineToRelative(5.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -2.0f, -3.0f) + verticalLineToRelative(-3.5f) + close() + moveTo(5.0f, 10.25f) + curveTo(5.0f, 7.35f, 7.35f, 5.0f, 10.25f, 5.0f) + horizontalLineToRelative(5.5f) + curveToRelative(1.35f, 0.0f, 2.51f, 0.83f, 3.0f, 2.0f) + horizontalLineToRelative(-7.5f) + arcTo(4.25f, 4.25f, 0.0f, false, false, 7.0f, 11.25f) + verticalLineToRelative(7.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -2.0f, -3.0f) + verticalLineToRelative(-5.5f) + close() + moveTo(11.25f, 8.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 8.0f, 11.25f) + verticalLineToRelative(7.5f) + curveTo(8.0f, 20.55f, 9.46f, 22.0f, 11.25f, 22.0f) + horizontalLineToRelative(7.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-7.5f) + curveTo(22.0f, 9.45f, 20.54f, 8.0f, 18.75f, 8.0f) + horizontalLineToRelative(-7.5f) + close() + } + } + return _tabs!! + } + +private var _tabs: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TagDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TagDismiss.kt new file mode 100644 index 00000000..e16647cb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TagDismiss.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TagDismiss: ImageVector + get() { + if (_tagDismiss != null) { + return _tagDismiss!! + } + _tagDismiss = fluentIcon(name = "Filled.TagDismiss") { + fluentPath { + moveTo(19.75f, 2.0f) + curveTo(20.99f, 2.0f, 22.0f, 3.0f, 22.0f, 4.25f) + verticalLineToRelative(5.46f) + curveToRelative(0.0f, 0.86f, -0.34f, 1.69f, -0.95f, 2.3f) + lineToRelative(-0.03f, 0.03f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.0f, 20.96f) + curveToRelative(-1.25f, 0.8f, -2.94f, 0.65f, -4.04f, -0.45f) + lineTo(3.5f, 16.06f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.6f) + lineToRelative(8.5f, -8.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.3f, -0.96f) + horizontalLineToRelative(5.46f) + close() + moveTo(17.0f, 5.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-1.64f, -1.65f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.65f, 1.64f) + lineToRelative(-1.65f, -1.64f) + close() + } + } + return _tagDismiss!! + } + +private var _tagDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TagError.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TagError.kt new file mode 100644 index 00000000..95e35b4c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TagError.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TagError: ImageVector + get() { + if (_tagError != null) { + return _tagError!! + } + _tagError = fluentIcon(name = "Filled.TagError") { + fluentPath { + moveTo(19.75f, 2.0f) + curveTo(20.99f, 2.0f, 22.0f, 3.0f, 22.0f, 4.25f) + verticalLineToRelative(5.46f) + curveToRelative(0.0f, 0.86f, -0.34f, 1.69f, -0.95f, 2.3f) + lineToRelative(-0.03f, 0.03f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.0f, 20.96f) + curveToRelative(-1.25f, 0.8f, -2.94f, 0.65f, -4.04f, -0.45f) + lineTo(3.5f, 16.06f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.6f) + lineToRelative(8.5f, -8.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.3f, -0.96f) + horizontalLineToRelative(5.46f) + close() + moveTo(17.0f, 5.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(17.5f, 14.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(17.5f, 21.13f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.25f) + close() + } + } + return _tagError!! + } + +private var _tagError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TagLock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TagLock.kt new file mode 100644 index 00000000..61f54559 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TagLock.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TagLock: ImageVector + get() { + if (_tagLock != null) { + return _tagLock!! + } + _tagLock = fluentIcon(name = "Filled.TagLock") { + fluentPath { + moveTo(19.75f, 2.0f) + curveTo(20.99f, 2.0f, 22.0f, 3.0f, 22.0f, 4.25f) + verticalLineToRelative(5.46f) + curveToRelative(0.0f, 0.86f, -0.34f, 1.69f, -0.95f, 2.3f) + lineToRelative(-0.42f, 0.42f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 14.0f, 14.0f) + verticalLineToRelative(0.05f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.0f, 2.45f) + verticalLineToRelative(4.45f) + curveToRelative(-1.26f, 0.8f, -2.95f, 0.66f, -4.05f, -0.44f) + lineTo(3.5f, 16.06f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.6f) + lineToRelative(8.5f, -8.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.3f, -0.96f) + horizontalLineToRelative(5.46f) + close() + moveTo(17.0f, 5.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(15.0f, 15.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(6.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(20.0f, 15.0f) + verticalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) + verticalLineToRelative(1.0f) + close() + moveTo(16.5f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(18.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + } + } + return _tagLock!! + } + +private var _tagLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TagLockAccent.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TagLockAccent.kt similarity index 87% rename from fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TagLockAccent.kt rename to fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TagLockAccent.kt index 4156e8d7..fc7133c1 100644 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TagLockAccent.kt +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TagLockAccent.kt @@ -1,11 +1,11 @@ -package com.konyaco.fluent.icons.filled +package io.github.composefluent.icons.filled import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath public val Icons.Filled.TagLockAccent: ImageVector get() { diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TagMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TagMultiple.kt new file mode 100644 index 00000000..67a38731 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TagMultiple.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TagMultiple: ImageVector + get() { + if (_tagMultiple != null) { + return _tagMultiple!! + } + _tagMultiple = fluentIcon(name = "Filled.TagMultiple") { + fluentPath { + moveTo(12.75f, 2.0f) + curveToRelative(-0.83f, 0.0f, -1.64f, 0.32f, -2.24f, 0.9f) + lineTo(3.7f, 9.4f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.04f, 3.22f) + lineToRelative(6.26f, 6.22f) + curveToRelative(0.87f, 0.87f, 2.28f, 0.88f, 3.16f, 0.01f) + lineToRelative(6.95f, -6.83f) + curveToRelative(0.62f, -0.61f, 0.97f, -1.45f, 0.97f, -2.32f) + lineTo(21.0f, 4.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 2.0f) + horizontalLineToRelative(-5.5f) + close() + moveTo(16.25f, 7.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, 2.5f) + close() + moveTo(19.25f, 14.18f) + lineTo(20.73f, 12.73f) + lineTo(20.86f, 12.6f) + curveToRelative(0.31f, 0.95f, 0.08f, 2.05f, -0.69f, 2.8f) + lineToRelative(-5.33f, 5.24f) + arcToRelative(4.75f, 4.75f, 0.0f, false, true, -6.67f, -0.02f) + lineToRelative(-4.35f, -4.3f) + curveToRelative(-0.77f, -0.77f, -1.0f, -1.86f, -0.69f, -2.82f) + lineToRelative(1.63f, 1.62f) + lineToRelative(0.11f, 0.13f) + lineToRelative(2.41f, 2.38f) + lineToRelative(1.93f, 1.92f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 4.58f, 0.02f) + lineToRelative(5.33f, -5.23f) + lineToRelative(0.14f, -0.16f) + close() + } + } + return _tagMultiple!! + } + +private var _tagMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TagOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TagOff.kt new file mode 100644 index 00000000..b675576a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TagOff.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TagOff: ImageVector + get() { + if (_tagOff != null) { + return _tagOff!! + } + _tagOff = fluentIcon(name = "Filled.TagOff") { + fluentPath { + moveToRelative(16.0f, 17.06f) + lineToRelative(4.72f, 4.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineTo(6.94f, 8.0f) + lineTo(3.5f, 11.46f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 0.0f, 4.6f) + lineToRelative(4.46f, 4.45f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 4.6f, 0.0f) + lineTo(16.0f, 17.06f) + close() + moveTo(21.05f, 12.01f) + lineTo(18.06f, 15.0f) + lineTo(9.0f, 5.94f) + lineTo(12.0f, 2.95f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.3f, -0.95f) + horizontalLineToRelative(5.46f) + curveTo(21.0f, 2.0f, 22.0f, 3.0f, 22.0f, 4.25f) + verticalLineToRelative(5.46f) + curveToRelative(0.0f, 0.86f, -0.34f, 1.69f, -0.95f, 2.3f) + close() + moveTo(17.0f, 5.51f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + } + } + return _tagOff!! + } + +private var _tagOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TagQuestionMark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TagQuestionMark.kt new file mode 100644 index 00000000..04fafd87 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TagQuestionMark.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TagQuestionMark: ImageVector + get() { + if (_tagQuestionMark != null) { + return _tagQuestionMark!! + } + _tagQuestionMark = fluentIcon(name = "Filled.TagQuestionMark") { + fluentPath { + moveTo(19.75f, 2.0f) + curveTo(20.99f, 2.0f, 22.0f, 3.0f, 22.0f, 4.25f) + verticalLineToRelative(5.46f) + curveToRelative(0.0f, 0.86f, -0.34f, 1.69f, -0.95f, 2.3f) + lineToRelative(-0.03f, 0.03f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.0f, 20.96f) + curveToRelative(-1.25f, 0.8f, -2.94f, 0.65f, -4.04f, -0.45f) + lineTo(3.5f, 16.06f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.6f) + lineToRelative(8.5f, -8.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.3f, -0.96f) + horizontalLineToRelative(5.46f) + close() + moveTo(17.0f, 5.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(16.88f, 20.5f) + arcToRelative(0.62f, 0.62f, 0.0f, true, true, 1.24f, 0.0f) + arcToRelative(0.62f, 0.62f, 0.0f, false, true, -1.24f, 0.0f) + close() + moveTo(15.65f, 15.96f) + curveToRelative(-0.01f, -1.14f, 0.8f, -1.96f, 1.85f, -1.96f) + curveToRelative(1.03f, 0.0f, 1.85f, 0.85f, 1.85f, 1.95f) + curveToRelative(0.0f, 0.57f, -0.18f, 0.92f, -0.66f, 1.45f) + lineToRelative(-0.27f, 0.3f) + lineToRelative(-0.1f, 0.1f) + curveToRelative(-0.24f, 0.3f, -0.32f, 0.47f, -0.32f, 0.7f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + curveToRelative(0.0f, -0.57f, 0.19f, -0.93f, 0.67f, -1.47f) + lineToRelative(0.27f, -0.29f) + lineToRelative(0.1f, -0.11f) + curveToRelative(0.24f, -0.29f, 0.31f, -0.45f, 0.31f, -0.68f) + curveToRelative(0.0f, -0.55f, -0.38f, -0.95f, -0.85f, -0.95f) + curveToRelative(-0.5f, 0.0f, -0.86f, 0.37f, -0.85f, 0.95f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + close() + } + } + return _tagQuestionMark!! + } + +private var _tagQuestionMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TagReset.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TagReset.kt new file mode 100644 index 00000000..d01a1a22 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TagReset.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TagReset: ImageVector + get() { + if (_tagReset != null) { + return _tagReset!! + } + _tagReset = fluentIcon(name = "Filled.TagReset") { + fluentPath { + moveTo(22.0f, 4.25f) + curveTo(22.0f, 3.01f, 21.0f, 2.0f, 19.75f, 2.0f) + horizontalLineToRelative(-5.47f) + curveToRelative(-0.86f, 0.0f, -1.69f, 0.34f, -2.3f, 0.95f) + lineToRelative(-8.5f, 8.51f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 0.0f, 4.6f) + lineToRelative(4.47f, 4.45f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 4.6f, 0.0f) + arcTo(6.0f, 6.0f, 0.0f, false, true, 12.0f, 18.0f) + curveToRelative(0.0f, -0.55f, 0.26f, -1.05f, 0.66f, -1.37f) + lineTo(11.0f, 15.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.0f, -2.48f) + lineToRelative(2.0f, -2.0f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 15.98f, 12.0f) + lineTo(18.0f, 12.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 2.5f, 0.55f) + lineToRelative(0.55f, -0.54f) + curveToRelative(0.6f, -0.61f, 0.95f, -1.44f, 0.95f, -2.3f) + lineTo(22.0f, 4.25f) + close() + moveTo(15.5f, 7.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + moveTo(14.78f, 12.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-2.0f, 2.0f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-0.72f, -0.72f) + lineTo(18.0f, 14.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, -3.5f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, false, 5.0f, -5.0f) + horizontalLineToRelative(-3.94f) + lineToRelative(0.72f, -0.72f) + close() + } + } + return _tagReset!! + } + +private var _tagReset: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TagSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TagSearch.kt new file mode 100644 index 00000000..e30f5409 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TagSearch.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TagSearch: ImageVector + get() { + if (_tagSearch != null) { + return _tagSearch!! + } + _tagSearch = fluentIcon(name = "Filled.TagSearch") { + fluentPath { + moveTo(22.0f, 4.25f) + curveTo(22.0f, 3.01f, 21.0f, 2.0f, 19.75f, 2.0f) + horizontalLineToRelative(-5.47f) + curveToRelative(-0.86f, 0.0f, -1.69f, 0.34f, -2.3f, 0.95f) + lineToRelative(-8.5f, 8.51f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 0.0f, 4.6f) + lineToRelative(4.47f, 4.45f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 4.6f, 0.0f) + lineToRelative(0.1f, -0.1f) + arcTo(5.48f, 5.48f, 0.0f, false, true, 16.5f, 11.0f) + curveToRelative(1.53f, 0.0f, 2.92f, 0.63f, 3.92f, 1.64f) + lineToRelative(0.63f, -0.63f) + curveToRelative(0.6f, -0.61f, 0.95f, -1.44f, 0.95f, -2.3f) + lineTo(22.0f, 4.25f) + close() + moveTo(15.5f, 7.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + moveTo(20.17f, 19.1f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(2.61f, 2.62f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.61f, -2.61f) + close() + moveTo(19.5f, 16.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) + close() + } + } + return _tagSearch!! + } + +private var _tagSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TapDouble.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TapDouble.kt new file mode 100644 index 00000000..aea41bb2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TapDouble.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TapDouble: ImageVector + get() { + if (_tapDouble != null) { + return _tapDouble!! + } + _tapDouble = fluentIcon(name = "Filled.TapDouble") { + fluentPath { + moveTo(11.75f, 7.0f) + curveToRelative(1.36f, 0.0f, 1.95f, 0.9f, 2.0f, 2.33f) + lineTo(13.75f, 12.0f) + lineToRelative(2.87f, 0.41f) + lineToRelative(0.34f, 0.07f) + curveToRelative(1.4f, 0.4f, 2.25f, 1.8f, 1.96f, 3.22f) + lineToRelative(-0.05f, 0.17f) + lineToRelative(-1.22f, 4.44f) + curveToRelative(-0.17f, 0.62f, -0.67f, 1.1f, -1.3f, 1.24f) + lineToRelative(-0.14f, 0.03f) + lineToRelative(-3.06f, 0.43f) + curveToRelative(-0.76f, 0.11f, -1.5f, -0.29f, -1.83f, -0.97f) + lineToRelative(-0.06f, -0.14f) + lineToRelative(-0.21f, -0.57f) + arcToRelative(4.13f, 4.13f, 0.0f, false, false, -1.18f, -1.67f) + lineToRelative(-0.2f, -0.17f) + lineToRelative(-1.6f, -1.2f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -0.27f, -0.16f) + lineToRelative(-0.14f, -0.07f) + lineToRelative(-2.2f, -0.86f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.47f, -0.66f) + curveToRelative(-0.03f, -0.73f, 0.5f, -1.25f, 1.42f, -1.72f) + curveToRelative(0.72f, -0.36f, 1.73f, -0.33f, 3.07f, 0.05f) + lineToRelative(0.27f, 0.08f) + lineTo(9.75f, 9.5f) + curveToRelative(0.0f, -1.54f, 0.58f, -2.51f, 2.0f, -2.51f) + close() + moveTo(11.75f, 2.0f) + arcToRelative(7.25f, 7.25f, 0.0f, false, true, 6.67f, 10.1f) + arcToRelative(3.74f, 3.74f, 0.0f, false, false, -1.2f, -0.57f) + lineToRelative(-0.17f, -0.04f) + arcToRelative(5.75f, 5.75f, 0.0f, true, false, -9.92f, 1.19f) + arcToRelative(3.22f, 3.22f, 0.0f, false, false, -1.51f, 0.44f) + arcTo(7.25f, 7.25f, 0.0f, false, true, 11.75f, 2.0f) + close() + moveTo(11.75f, 4.5f) + arcToRelative(4.75f, 4.75f, 0.0f, false, true, 4.27f, 6.82f) + lineToRelative(-1.27f, -0.18f) + verticalLineToRelative(-0.65f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, -0.83f, -3.66f) + lineToRelative(-0.15f, -0.12f) + arcTo(2.85f, 2.85f, 0.0f, false, false, 11.75f, 6.0f) + curveToRelative(-0.89f, 0.0f, -1.56f, 0.26f, -2.04f, 0.72f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, -0.96f, 3.79f) + verticalLineToRelative(1.85f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.3f, 0.3f) + arcToRelative(4.75f, 4.75f, 0.0f, false, true, 3.3f, -8.16f) + close() + } + } + return _tapDouble!! + } + +private var _tapDouble: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TapSingle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TapSingle.kt new file mode 100644 index 00000000..c34a03ca --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TapSingle.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TapSingle: ImageVector + get() { + if (_tapSingle != null) { + return _tapSingle!! + } + _tapSingle = fluentIcon(name = "Filled.TapSingle") { + fluentPath { + moveTo(11.75f, 6.0f) + curveToRelative(1.36f, 0.0f, 1.95f, 0.9f, 2.0f, 2.33f) + lineTo(13.75f, 11.0f) + lineToRelative(2.87f, 0.41f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.3f, 3.29f) + lineToRelative(-0.05f, 0.17f) + lineToRelative(-1.22f, 4.44f) + curveToRelative(-0.18f, 0.62f, -0.67f, 1.1f, -1.3f, 1.24f) + lineToRelative(-0.14f, 0.03f) + lineToRelative(-3.06f, 0.43f) + curveToRelative(-0.76f, 0.11f, -1.5f, -0.29f, -1.83f, -0.97f) + lineToRelative(-0.06f, -0.14f) + lineToRelative(-0.21f, -0.57f) + arcToRelative(4.13f, 4.13f, 0.0f, false, false, -1.18f, -1.67f) + lineToRelative(-0.2f, -0.17f) + lineToRelative(-1.6f, -1.2f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -0.27f, -0.16f) + lineToRelative(-0.14f, -0.07f) + lineToRelative(-2.2f, -0.86f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.47f, -0.66f) + curveToRelative(-0.03f, -0.73f, 0.5f, -1.25f, 1.42f, -1.72f) + curveToRelative(0.72f, -0.36f, 1.73f, -0.33f, 3.07f, 0.05f) + lineToRelative(0.27f, 0.08f) + lineTo(9.75f, 8.5f) + curveToRelative(0.0f, -1.54f, 0.58f, -2.51f, 2.0f, -2.51f) + close() + moveTo(11.75f, 2.5f) + arcToRelative(5.75f, 5.75f, 0.0f, false, true, 5.3f, 7.99f) + lineToRelative(0.17f, 0.04f) + lineToRelative(-0.45f, -0.1f) + lineToRelative(-1.27f, -0.18f) + arcToRelative(4.25f, 4.25f, 0.0f, true, false, -6.75f, 1.02f) + verticalLineToRelative(0.41f) + arcToRelative(5.6f, 5.6f, 0.0f, false, false, -1.67f, -0.07f) + arcToRelative(5.75f, 5.75f, 0.0f, false, true, 4.67f, -9.1f) + close() + } + } + return _tapSingle!! + } + +private var _tapSingle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Target.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Target.kt new file mode 100644 index 00000000..4961467e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Target.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Target: ImageVector + get() { + if (_target != null) { + return _target!! + } + _target = fluentIcon(name = "Filled.Target") { + fluentPath { + moveTo(12.0f, 14.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) + close() + moveTo(6.0f, 12.0f) + arcToRelative(6.0f, 6.0f, 0.0f, true, true, 12.0f, 0.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, -12.0f, 0.0f) + close() + moveTo(12.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) + close() + moveTo(2.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) + close() + moveTo(12.0f, 4.0f) + arcToRelative(8.0f, 8.0f, 0.0f, true, false, 0.0f, 16.0f) + arcToRelative(8.0f, 8.0f, 0.0f, false, false, 0.0f, -16.0f) + close() + } + } + return _target!! + } + +private var _target: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TargetArrow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TargetArrow.kt new file mode 100644 index 00000000..0d677478 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TargetArrow.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TargetArrow: ImageVector + get() { + if (_targetArrow != null) { + return _targetArrow!! + } + _targetArrow = fluentIcon(name = "Filled.TargetArrow") { + fluentPath { + moveTo(21.78f, 6.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.53f, -1.28f) + lineTo(18.5f, 5.5f) + lineTo(18.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.28f, -0.53f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.22f, 0.53f) + verticalLineToRelative(2.84f) + lineToRelative(-1.98f, 1.98f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 1.41f, 1.41f) + lineToRelative(1.98f, -1.98f) + horizontalLineToRelative(2.84f) + curveToRelative(0.2f, 0.0f, 0.39f, -0.08f, 0.53f, -0.22f) + lineToRelative(2.5f, -2.5f) + close() + moveTo(12.0f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.36f, 0.21f, 3.42f, 0.6f) + lineToRelative(-1.4f, 1.41f) + lineToRelative(-0.18f, 0.2f) + arcTo(8.02f, 8.02f, 0.0f, false, false, 4.0f, 12.0f) + arcToRelative(8.0f, 8.0f, 0.0f, true, false, 15.79f, -1.84f) + lineToRelative(0.2f, -0.17f) + lineToRelative(1.4f, -1.41f) + arcTo(10.0f, 10.0f, 0.0f, true, true, 12.0f, 2.0f) + close() + moveTo(12.0f, 6.0f) + curveToRelative(0.52f, 0.0f, 1.02f, 0.07f, 1.5f, 0.19f) + verticalLineToRelative(1.48f) + lineToRelative(-0.41f, 0.42f) + lineToRelative(-0.05f, 0.05f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 2.82f, 2.82f) + lineToRelative(0.05f, -0.05f) + lineToRelative(0.42f, -0.41f) + horizontalLineToRelative(1.48f) + arcTo(6.01f, 6.01f, 0.0f, true, true, 12.0f, 6.0f) + close() + } + } + return _targetArrow!! + } + +private var _targetArrow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TargetEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TargetEdit.kt new file mode 100644 index 00000000..0f635572 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TargetEdit.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TargetEdit: ImageVector + get() { + if (_targetEdit != null) { + return _targetEdit!! + } + _targetEdit = fluentIcon(name = "Filled.TargetEdit") { + fluentPath { + moveTo(12.0f, 14.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) + close() + moveTo(6.0f, 12.0f) + arcToRelative(6.0f, 6.0f, 0.0f, true, true, 11.99f, 0.37f) + lineToRelative(-5.5f, 5.5f) + lineToRelative(-0.12f, 0.12f) + lineTo(12.0f, 17.99f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, -6.0f, -6.0f) + close() + moveTo(12.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) + close() + moveTo(12.0f, 4.0f) + arcToRelative(8.0f, 8.0f, 0.0f, false, true, 7.95f, 7.09f) + arcToRelative(3.3f, 3.3f, 0.0f, false, true, 2.02f, 0.16f) + arcTo(10.0f, 10.0f, 0.0f, true, false, 11.0f, 21.95f) + curveToRelative(0.0f, -0.18f, 0.02f, -0.36f, 0.06f, -0.54f) + lineToRelative(0.36f, -1.43f) + arcTo(8.0f, 8.0f, 0.0f, false, true, 12.0f, 4.0f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.34f, -0.6f, 0.78f, -0.71f, 1.25f) + lineToRelative(-0.46f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _targetEdit!! + } + +private var _targetEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TaskListAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TaskListAdd.kt new file mode 100644 index 00000000..b7dc9ef8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TaskListAdd.kt @@ -0,0 +1,91 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TaskListAdd: ImageVector + get() { + if (_taskListAdd != null) { + return _taskListAdd!! + } + _taskListAdd = fluentIcon(name = "Filled.TaskListAdd") { + fluentPath { + moveTo(6.7f, 2.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) + lineTo(4.0f, 3.58f) + lineToRelative(-0.3f, -0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) + lineToRelative(1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) + close() + moveTo(11.0f, 17.5f) + curveToRelative(0.0f, 0.17f, 0.0f, 0.33f, 0.02f, 0.5f) + lineTo(10.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(11.18f, 16.0f) + curveToRelative(-0.12f, 0.48f, -0.18f, 0.98f, -0.18f, 1.5f) + close() + moveTo(17.5f, 11.0f) + curveToRelative(1.27f, 0.0f, 2.46f, 0.37f, 3.47f, 1.0f) + horizontalLineToRelative(0.15f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, -2.0f) + lineTo(9.88f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, 2.0f) + horizontalLineToRelative(4.03f) + curveToRelative(1.0f, -0.63f, 2.2f, -1.0f, 3.47f, -1.0f) + close() + moveTo(21.0f, 4.0f) + lineTo(9.88f, 4.0f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 10.0f, 6.0f) + horizontalLineToRelative(11.12f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 21.0f, 4.0f) + close() + moveTo(6.7f, 15.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) + lineTo(4.0f, 16.58f) + lineToRelative(-0.3f, -0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) + lineToRelative(1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) + close() + moveTo(5.3f, 8.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.4f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) + lineToRelative(-1.0f, -1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, -1.4f) + lineToRelative(0.3f, 0.29f) + lineToRelative(1.3f, -1.3f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _taskListAdd!! + } + +private var _taskListAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TaskListLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TaskListLtr.kt new file mode 100644 index 00000000..dd07e82d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TaskListLtr.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TaskListLtr: ImageVector + get() { + if (_taskListLtr != null) { + return _taskListLtr!! + } + _taskListLtr = fluentIcon(name = "Filled.TaskListLtr") { + fluentPath { + moveTo(6.7f, 3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) + lineTo(4.0f, 4.58f) + lineToRelative(-0.3f, -0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) + lineToRelative(1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) + close() + moveTo(21.0f, 17.0f) + lineTo(9.88f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, 2.0f) + horizontalLineToRelative(11.0f) + lineToRelative(0.12f, -0.01f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, -2.0f) + close() + moveTo(21.0f, 11.0f) + lineTo(9.88f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, 2.0f) + horizontalLineToRelative(11.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, -2.0f) + close() + moveTo(21.0f, 5.0f) + lineTo(9.88f, 5.0f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 10.0f, 7.0f) + horizontalLineToRelative(11.12f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 21.0f, 5.0f) + close() + moveTo(6.7f, 16.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) + lineTo(4.0f, 17.58f) + lineToRelative(-0.3f, -0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) + lineToRelative(1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) + close() + moveTo(5.3f, 9.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.4f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) + lineToRelative(-1.0f, -1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, -1.4f) + lineToRelative(0.3f, 0.29f) + lineToRelative(1.3f, -1.3f) + close() + } + } + return _taskListLtr!! + } + +private var _taskListLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TaskListRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TaskListRtl.kt new file mode 100644 index 00000000..0ff8378c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TaskListRtl.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TaskListRtl: ImageVector + get() { + if (_taskListRtl != null) { + return _taskListRtl!! + } + _taskListRtl = fluentIcon(name = "Filled.TaskListRtl") { + fluentPath { + moveTo(21.7f, 3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) + lineTo(19.0f, 4.58f) + lineToRelative(-0.3f, -0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.4f, 1.42f) + lineToRelative(1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) + close() + moveTo(14.0f, 17.0f) + lineTo(2.88f, 17.0f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 19.0f) + horizontalLineToRelative(11.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, -2.0f) + close() + moveTo(14.0f, 11.0f) + lineTo(2.88f, 11.0f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 13.0f) + horizontalLineToRelative(11.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, -2.0f) + close() + moveTo(14.0f, 5.0f) + lineTo(2.88f, 5.0f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 7.0f) + horizontalLineToRelative(11.12f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 14.0f, 5.0f) + close() + moveTo(21.7f, 16.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) + lineTo(19.0f, 17.58f) + lineToRelative(-0.3f, -0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) + lineToRelative(1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) + close() + moveTo(20.3f, 9.8f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, 1.4f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) + lineToRelative(-1.0f, -1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, -1.4f) + lineToRelative(0.3f, 0.29f) + lineToRelative(1.3f, -1.3f) + close() + } + } + return _taskListRtl!! + } + +private var _taskListRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TaskListSquareAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TaskListSquareAdd.kt new file mode 100644 index 00000000..73c1cfcb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TaskListSquareAdd.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TaskListSquareAdd: ImageVector + get() { + if (_taskListSquareAdd != null) { + return _taskListSquareAdd!! + } + _taskListSquareAdd = fluentIcon(name = "Filled.TaskListSquareAdd") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(5.77f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.02f, 21.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(12.5f, 9.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(10.78f, 8.78f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineTo(8.25f, 9.19f) + lineToRelative(-0.47f, -0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(1.0f, 1.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.0f, -2.0f) + close() + moveTo(10.78f, 13.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-1.47f, 1.47f) + lineToRelative(-0.47f, -0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(1.0f, 1.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.0f, -2.0f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _taskListSquareAdd!! + } + +private var _taskListSquareAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TaskListSquareLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TaskListSquareLtr.kt new file mode 100644 index 00000000..2d094f5c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TaskListSquareLtr.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TaskListSquareLtr: ImageVector + get() { + if (_taskListSquareLtr != null) { + return _taskListSquareLtr!! + } + _taskListSquareLtr = fluentIcon(name = "Filled.TaskListSquareLtr") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(12.5f, 9.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(13.25f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + close() + moveTo(10.78f, 8.78f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineTo(8.25f, 9.19f) + lineToRelative(-0.47f, -0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(1.0f, 1.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.0f, -2.0f) + close() + moveTo(10.78f, 13.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-1.47f, 1.47f) + lineToRelative(-0.47f, -0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(1.0f, 1.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.0f, -2.0f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + close() + } + } + return _taskListSquareLtr!! + } + +private var _taskListSquareLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TaskListSquareRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TaskListSquareRtl.kt new file mode 100644 index 00000000..4ed00496 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TaskListSquareRtl.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TaskListSquareRtl: ImageVector + get() { + if (_taskListSquareRtl != null) { + return _taskListSquareRtl!! + } + _taskListSquareRtl = fluentIcon(name = "Filled.TaskListSquareRtl") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(7.25f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + close() + moveTo(6.5f, 9.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(17.78f, 8.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineToRelative(-1.47f, 1.47f) + lineToRelative(-0.47f, -0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.0f, 1.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.0f, -2.0f) + close() + moveTo(17.78f, 13.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-1.47f, 1.47f) + lineToRelative(-0.47f, -0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.0f, 1.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.0f, -2.0f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + close() + } + } + return _taskListSquareRtl!! + } + +private var _taskListSquareRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TasksApp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TasksApp.kt new file mode 100644 index 00000000..28026174 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TasksApp.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TasksApp: ImageVector + get() { + if (_tasksApp != null) { + return _tasksApp!! + } + _tasksApp = fluentIcon(name = "Filled.TasksApp") { + fluentPath { + moveTo(17.75f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(10.13f) + curveToRelative(-0.12f, 0.08f, -0.23f, 0.17f, -0.34f, 0.28f) + lineToRelative(-3.41f, 3.4f) + lineToRelative(-0.9f, -0.9f) + arcToRelative(2.24f, 2.24f, 0.0f, false, false, -1.5f, -0.66f) + horizontalLineToRelative(2.4f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.4f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.5f, 3.84f) + lineTo(13.83f, 22.0f) + lineTo(6.25f, 22.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveToRelative(0.0f, -1.19f, 0.93f, -2.16f, 2.1f, -2.24f) + horizontalLineToRelative(11.65f) + close() + moveTo(9.0f, 7.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(11.25f, 7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.0f) + close() + moveTo(10.5f, 11.75f) + curveToRelative(0.0f, 0.41f, 0.33f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(9.0f, 11.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(9.0f, 15.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(16.25f, 20.19f) + lineTo(20.72f, 15.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(0.73f, 0.73f, 0.0f, false, true, -0.5f, 0.22f) + arcToRelative(0.7f, 0.7f, 0.0f, false, true, -0.07f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.5f, -0.22f) + lineToRelative(-2.49f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineToRelative(1.97f, 1.97f) + close() + } + } + return _tasksApp!! + } + +private var _tasksApp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Teddy.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Teddy.kt new file mode 100644 index 00000000..b0402dd3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Teddy.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Teddy: ImageVector + get() { + if (_teddy != null) { + return _teddy!! + } + _teddy = fluentIcon(name = "Filled.Teddy") { + fluentPath { + moveTo(3.2f, 10.27f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 6.25f, -4.96f) + arcToRelative(9.24f, 9.24f, 0.0f, false, false, -6.24f, 4.96f) + close() + moveTo(14.54f, 5.31f) + arcTo(3.99f, 3.99f, 0.0f, false, true, 21.5f, 8.0f) + curveToRelative(0.0f, 0.84f, -0.26f, 1.63f, -0.7f, 2.27f) + arcToRelative(9.24f, 9.24f, 0.0f, false, false, -6.26f, -4.96f) + close() + moveTo(6.63f, 19.31f) + arcTo(7.19f, 7.19f, 0.0f, false, true, 3.5f, 13.5f) + curveTo(3.5f, 9.36f, 7.3f, 6.0f, 12.0f, 6.0f) + reflectiveCurveToRelative(8.5f, 3.36f, 8.5f, 7.5f) + arcToRelative(7.19f, 7.19f, 0.0f, false, true, -3.13f, 5.81f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -10.74f, 0.0f) + close() + moveTo(15.0f, 17.14f) + curveToRelative(-0.45f, -0.4f, -0.98f, -0.7f, -1.54f, -0.9f) + curveToRelative(-0.17f, 0.44f, -0.76f, 0.76f, -1.46f, 0.76f) + reflectiveCurveToRelative(-1.3f, -0.32f, -1.46f, -0.76f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, -3.0f, 3.65f) + curveToRelative(1.3f, 0.7f, 2.82f, 1.11f, 4.46f, 1.11f) + curveToRelative(1.64f, 0.0f, 3.16f, -0.4f, 4.46f, -1.11f) + arcTo(4.48f, 4.48f, 0.0f, false, false, 15.0f, 17.14f) + close() + } + } + return _teddy!! + } + +private var _teddy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Temperature.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Temperature.kt new file mode 100644 index 00000000..c404fc21 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Temperature.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Temperature: ImageVector + get() { + if (_temperature != null) { + return _temperature!! + } + _temperature = fluentIcon(name = "Filled.Temperature") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, 3.8f) + lineTo(16.0f, 12.73f) + lineToRelative(0.06f, 0.06f) + curveToRelative(0.8f, 0.86f, 1.3f, 1.97f, 1.41f, 3.16f) + lineToRelative(0.02f, 0.27f) + lineToRelative(0.01f, 0.28f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -9.73f, -3.51f) + lineToRelative(0.17f, -0.2f) + lineToRelative(0.06f, -0.06f) + lineTo(8.0f, 6.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 3.6f, -3.98f) + lineToRelative(0.2f, -0.02f) + horizontalLineToRelative(0.2f) + close() + moveTo(12.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 1.85f) + verticalLineToRelative(7.75f) + lineToRelative(-0.33f, 0.3f) + arcTo(3.49f, 3.49f, 0.0f, false, false, 12.0f, 20.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 2.49f, -5.96f) + lineToRelative(-0.16f, -0.15f) + lineToRelative(-0.33f, -0.3f) + lineTo(14.0f, 6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + close() + moveTo(12.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(5.2f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(11.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + } + } + return _temperature!! + } + +private var _temperature: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Tent.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Tent.kt new file mode 100644 index 00000000..9e8a81d9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Tent.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Tent: ImageVector + get() { + if (_tent != null) { + return _tent!! + } + _tent = fluentIcon(name = "Filled.Tent") { + fluentPath { + moveTo(12.26f, 2.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.04f, 0.02f) + lineToRelative(-1.7f, 1.7f) + arcToRelative(19.93f, 19.93f, 0.0f, false, true, -3.84f, 3.0f) + curveToRelative(-0.4f, 0.23f, -0.66f, 0.63f, -0.72f, 1.09f) + lineTo(3.6f, 17.5f) + horizontalLineToRelative(-0.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.85f) + lineToRelative(-1.35f, -9.45f) + arcToRelative(1.56f, 1.56f, 0.0f, false, false, -0.8f, -1.15f) + arcToRelative(20.82f, 20.82f, 0.0f, false, true, -4.23f, -3.06f) + lineTo(12.26f, 2.2f) + close() + moveTo(14.1f, 15.12f) + arcToRelative(18.4f, 18.4f, 0.0f, false, false, 1.65f, 2.38f) + lineTo(8.28f, 17.5f) + curveToRelative(0.54f, -0.66f, 1.18f, -1.52f, 1.64f, -2.4f) + arcToRelative(43.26f, 43.26f, 0.0f, false, false, 2.06f, -5.02f) + lineToRelative(0.19f, 0.53f) + arcToRelative(32.4f, 32.4f, 0.0f, false, false, 1.93f, 4.5f) + close() + } + } + return _tent!! + } + +private var _tent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TetrisApp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TetrisApp.kt new file mode 100644 index 00000000..757f0ee7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TetrisApp.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TetrisApp: ImageVector + get() { + if (_tetrisApp != null) { + return _tetrisApp!! + } + _tetrisApp = fluentIcon(name = "Filled.TetrisApp") { + fluentPath { + moveTo(8.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(5.0f) + lineTo(8.0f, 7.0f) + lineTo(8.0f, 3.0f) + close() + moveTo(3.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(4.0f) + lineTo(7.0f, 8.0f) + lineTo(3.0f, 8.0f) + close() + moveTo(13.0f, 8.0f) + lineTo(8.0f, 8.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + lineTo(13.0f, 8.0f) + close() + moveTo(18.0f, 2.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + lineTo(19.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + moveTo(4.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(5.0f) + lineTo(5.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineToRelative(-3.0f) + close() + moveTo(15.0f, 16.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-5.0f) + close() + moveTo(16.0f, 16.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-5.0f) + close() + moveTo(17.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineToRelative(-3.0f) + close() + } + } + return _tetrisApp!! + } + +private var _tetrisApp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAddSpaceAfter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAddSpaceAfter.kt new file mode 100644 index 00000000..206c1575 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAddSpaceAfter.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextAddSpaceAfter: ImageVector + get() { + if (_textAddSpaceAfter != null) { + return _textAddSpaceAfter!! + } + _textAddSpaceAfter = fluentIcon(name = "Filled.TextAddSpaceAfter") { + fluentPath { + moveTo(3.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(4.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(3.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(4.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(9.3f, 18.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, 1.4f) + lineToRelative(1.3f, -1.29f) + lineToRelative(1.3f, 1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, -1.42f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) + lineToRelative(-2.0f, 2.0f) + close() + } + } + return _textAddSpaceAfter!! + } + +private var _textAddSpaceAfter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAddSpaceBefore.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAddSpaceBefore.kt new file mode 100644 index 00000000..6ba8dd80 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAddSpaceBefore.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextAddSpaceBefore: ImageVector + get() { + if (_textAddSpaceBefore != null) { + return _textAddSpaceBefore!! + } + _textAddSpaceBefore = fluentIcon(name = "Filled.TextAddSpaceBefore") { + fluentPath { + moveTo(9.3f, 6.2f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, -1.4f) + lineTo(12.0f, 6.08f) + lineToRelative(1.3f, -1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, 1.42f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) + lineToRelative(-2.0f, -2.0f) + close() + moveTo(3.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(4.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(3.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(4.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + } + } + return _textAddSpaceBefore!! + } + +private var _textAddSpaceBefore: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAddT.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAddT.kt new file mode 100644 index 00000000..94fdffcc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAddT.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextAddT: ImageVector + get() { + if (_textAddT != null) { + return _textAddT!! + } + _textAddT = fluentIcon(name = "Filled.TextAddT") { + fluentPath { + moveTo(3.75f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(12.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(16.25f, 6.0f) + lineTo(12.0f, 6.0f) + verticalLineToRelative(8.03f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, -0.5f, 5.97f) + lineTo(9.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(1.0f) + lineTo(10.0f, 6.0f) + lineTo(5.75f, 6.0f) + verticalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + lineTo(3.75f, 5.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _textAddT!! + } + +private var _textAddT: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignCenter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignCenter.kt new file mode 100644 index 00000000..4b685f84 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignCenter.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextAlignCenter: ImageVector + get() { + if (_textAlignCenter != null) { + return _textAlignCenter!! + } + _textAlignCenter = fluentIcon(name = "Filled.TextAlignCenter") { + fluentPath { + moveTo(4.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(5.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(6.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(7.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(3.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(3.0f, 11.0f) + close() + } + } + return _textAlignCenter!! + } + +private var _textAlignCenter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignCenterRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignCenterRotate270.kt new file mode 100644 index 00000000..0bc49724 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignCenterRotate270.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextAlignCenterRotate270: ImageVector + get() { + if (_textAlignCenterRotate270 != null) { + return _textAlignCenterRotate270!! + } + _textAlignCenterRotate270 = fluentIcon(name = "Filled.TextAlignCenterRotate270") { + fluentPath { + moveTo(6.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(5.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + verticalLineToRelative(14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + close() + moveTo(18.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(17.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + close() + moveTo(11.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(13.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(18.0f) + close() + } + } + return _textAlignCenterRotate270!! + } + +private var _textAlignCenterRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignCenterRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignCenterRotate90.kt new file mode 100644 index 00000000..e185861b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignCenterRotate90.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextAlignCenterRotate90: ImageVector + get() { + if (_textAlignCenterRotate90 != null) { + return _textAlignCenterRotate90!! + } + _textAlignCenterRotate90 = fluentIcon(name = "Filled.TextAlignCenterRotate90") { + fluentPath { + moveTo(18.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(17.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(6.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(5.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(13.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(13.0f, 3.0f) + close() + } + } + return _textAlignCenterRotate90!! + } + +private var _textAlignCenterRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignDistributed.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignDistributed.kt new file mode 100644 index 00000000..2f257eaa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignDistributed.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextAlignDistributed: ImageVector + get() { + if (_textAlignDistributed != null) { + return _textAlignDistributed!! + } + _textAlignDistributed = fluentIcon(name = "Filled.TextAlignDistributed") { + fluentPath { + moveTo(4.3f, 3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.4f) + lineToRelative(-0.29f, 0.3f) + horizontalLineTo(21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineTo(5.41f) + lineToRelative(0.3f, 0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 1.4f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) + lineToRelative(2.0f, -2.0f) + close() + moveTo(18.58f, 19.0f) + lineToRelative(-0.3f, 0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.4f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.4f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, 1.4f) + lineToRelative(0.3f, 0.3f) + horizontalLineTo(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(15.59f) + close() + moveTo(3.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineTo(3.0f) + close() + } + } + return _textAlignDistributed!! + } + +private var _textAlignDistributed: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignDistributedEvenly.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignDistributedEvenly.kt new file mode 100644 index 00000000..dcd735f4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignDistributedEvenly.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextAlignDistributedEvenly: ImageVector + get() { + if (_textAlignDistributedEvenly != null) { + return _textAlignDistributedEvenly!! + } + _textAlignDistributedEvenly = fluentIcon(name = "Filled.TextAlignDistributedEvenly") { + fluentPath { + moveTo(2.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(3.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(5.7f, 15.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.4f) + lineToRelative(2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, -1.4f) + lineToRelative(-0.29f, -0.3f) + lineTo(18.6f, 19.0f) + lineToRelative(-0.3f, 0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.4f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.4f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, 1.4f) + lineToRelative(0.3f, 0.3f) + lineTo(5.4f, 17.0f) + lineToRelative(0.3f, -0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.4f) + close() + moveTo(3.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(3.0f, 11.0f) + close() + } + } + return _textAlignDistributedEvenly!! + } + +private var _textAlignDistributedEvenly: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignDistributedVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignDistributedVertical.kt new file mode 100644 index 00000000..0f08048f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignDistributedVertical.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextAlignDistributedVertical: ImageVector + get() { + if (_textAlignDistributedVertical != null) { + return _textAlignDistributedVertical!! + } + _textAlignDistributedVertical = fluentIcon(name = "Filled.TextAlignDistributedVertical") { + fluentPath { + moveTo(19.0f, 5.41f) + verticalLineTo(21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineTo(5.41f) + lineToRelative(-0.3f, 0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.4f, -1.42f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) + lineToRelative(2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 1.42f) + lineToRelative(-0.3f, -0.3f) + close() + moveTo(5.0f, 18.6f) + lineToRelative(-0.3f, -0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) + lineToRelative(2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.4f, -1.42f) + lineToRelative(-0.3f, 0.3f) + verticalLineTo(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(15.59f) + close() + moveTo(13.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineTo(3.0f) + close() + } + } + return _textAlignDistributedVertical!! + } + +private var _textAlignDistributedVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignJustify.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignJustify.kt new file mode 100644 index 00000000..97724676 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignJustify.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextAlignJustify: ImageVector + get() { + if (_textAlignJustify != null) { + return _textAlignJustify!! + } + _textAlignJustify = fluentIcon(name = "Filled.TextAlignJustify") { + fluentPath { + moveTo(2.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(3.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(2.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(3.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(3.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(3.0f, 11.0f) + close() + } + } + return _textAlignJustify!! + } + +private var _textAlignJustify: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignJustifyLow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignJustifyLow.kt new file mode 100644 index 00000000..2ae15fb8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignJustifyLow.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextAlignJustifyLow: ImageVector + get() { + if (_textAlignJustifyLow != null) { + return _textAlignJustifyLow!! + } + _textAlignJustifyLow = fluentIcon(name = "Filled.TextAlignJustifyLow") { + fluentPath { + moveTo(13.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(2.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(3.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(14.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-7.0f) + close() + } + } + return _textAlignJustifyLow!! + } + +private var _textAlignJustifyLow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignJustifyLow90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignJustifyLow90.kt new file mode 100644 index 00000000..f6ba5cf7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignJustifyLow90.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextAlignJustifyLow90: ImageVector + get() { + if (_textAlignJustifyLow90 != null) { + return _textAlignJustifyLow90!! + } + _textAlignJustifyLow90 = fluentIcon(name = "Filled.TextAlignJustifyLow90") { + fluentPath { + moveTo(18.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(6.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(5.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(13.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-7.0f) + close() + } + } + return _textAlignJustifyLow90!! + } + +private var _textAlignJustifyLow90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignJustifyLowRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignJustifyLowRotate270.kt new file mode 100644 index 00000000..f1a613fe --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignJustifyLowRotate270.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextAlignJustifyLowRotate270: ImageVector + get() { + if (_textAlignJustifyLowRotate270 != null) { + return _textAlignJustifyLowRotate270!! + } + _textAlignJustifyLowRotate270 = fluentIcon(name = "Filled.TextAlignJustifyLowRotate270") { + fluentPath { + moveTo(6.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(5.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + verticalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + close() + moveTo(18.0f, 22.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(17.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + close() + moveTo(11.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(13.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(7.0f) + close() + } + } + return _textAlignJustifyLowRotate270!! + } + +private var _textAlignJustifyLowRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignJustifyLowRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignJustifyLowRotate90.kt new file mode 100644 index 00000000..a5f63a9d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignJustifyLowRotate90.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextAlignJustifyLowRotate90: ImageVector + get() { + if (_textAlignJustifyLowRotate90 != null) { + return _textAlignJustifyLowRotate90!! + } + _textAlignJustifyLowRotate90 = fluentIcon(name = "Filled.TextAlignJustifyLowRotate90") { + fluentPath { + moveTo(18.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(6.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(5.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(13.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-7.0f) + close() + } + } + return _textAlignJustifyLowRotate90!! + } + +private var _textAlignJustifyLowRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignJustifyRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignJustifyRotate270.kt new file mode 100644 index 00000000..b5233447 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignJustifyRotate270.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextAlignJustifyRotate270: ImageVector + get() { + if (_textAlignJustifyRotate270 != null) { + return _textAlignJustifyRotate270!! + } + _textAlignJustifyRotate270 = fluentIcon(name = "Filled.TextAlignJustifyRotate270") { + fluentPath { + moveTo(6.0f, 22.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(5.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + verticalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + close() + moveTo(18.0f, 22.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(17.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + close() + moveTo(11.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(13.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(18.0f) + close() + } + } + return _textAlignJustifyRotate270!! + } + +private var _textAlignJustifyRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignJustifyRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignJustifyRotate90.kt new file mode 100644 index 00000000..677756f7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignJustifyRotate90.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextAlignJustifyRotate90: ImageVector + get() { + if (_textAlignJustifyRotate90 != null) { + return _textAlignJustifyRotate90!! + } + _textAlignJustifyRotate90 = fluentIcon(name = "Filled.TextAlignJustifyRotate90") { + fluentPath { + moveTo(18.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(17.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(6.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(5.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(13.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(13.0f, 3.0f) + close() + } + } + return _textAlignJustifyRotate90!! + } + +private var _textAlignJustifyRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignLeft.kt new file mode 100644 index 00000000..3b6d40e8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignLeft.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextAlignLeft: ImageVector + get() { + if (_textAlignLeft != null) { + return _textAlignLeft!! + } + _textAlignLeft = fluentIcon(name = "Filled.TextAlignLeft") { + fluentPath { + moveTo(2.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(3.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(2.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(3.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(3.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(3.0f, 11.0f) + close() + } + } + return _textAlignLeft!! + } + +private var _textAlignLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignLeftRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignLeftRotate270.kt new file mode 100644 index 00000000..1ea7aa2c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignLeftRotate270.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextAlignLeftRotate270: ImageVector + get() { + if (_textAlignLeftRotate270 != null) { + return _textAlignLeftRotate270!! + } + _textAlignLeftRotate270 = fluentIcon(name = "Filled.TextAlignLeftRotate270") { + fluentPath { + moveTo(6.0f, 22.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(5.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + verticalLineToRelative(15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + close() + moveTo(18.0f, 22.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(17.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + close() + moveTo(11.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(13.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(18.0f) + close() + } + } + return _textAlignLeftRotate270!! + } + +private var _textAlignLeftRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignLeftRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignLeftRotate90.kt new file mode 100644 index 00000000..511787a7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignLeftRotate90.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextAlignLeftRotate90: ImageVector + get() { + if (_textAlignLeftRotate90 != null) { + return _textAlignLeftRotate90!! + } + _textAlignLeftRotate90 = fluentIcon(name = "Filled.TextAlignLeftRotate90") { + fluentPath { + moveTo(18.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(17.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(6.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(5.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(13.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(13.0f, 3.0f) + close() + } + } + return _textAlignLeftRotate90!! + } + +private var _textAlignLeftRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignRight.kt new file mode 100644 index 00000000..a1edc449 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignRight.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextAlignRight: ImageVector + get() { + if (_textAlignRight != null) { + return _textAlignRight!! + } + _textAlignRight = fluentIcon(name = "Filled.TextAlignRight") { + fluentPath { + moveTo(5.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(6.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(9.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(10.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(3.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(3.0f, 11.0f) + close() + } + } + return _textAlignRight!! + } + +private var _textAlignRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignRightRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignRightRotate270.kt new file mode 100644 index 00000000..2aec9338 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignRightRotate270.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextAlignRightRotate270: ImageVector + get() { + if (_textAlignRightRotate270 != null) { + return _textAlignRightRotate270!! + } + _textAlignRightRotate270 = fluentIcon(name = "Filled.TextAlignRightRotate270") { + fluentPath { + moveTo(6.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(5.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + verticalLineToRelative(15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + close() + moveTo(18.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(17.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + close() + moveTo(11.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(13.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(18.0f) + close() + } + } + return _textAlignRightRotate270!! + } + +private var _textAlignRightRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignRightRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignRightRotate90.kt new file mode 100644 index 00000000..5c5e9d3e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextAlignRightRotate90.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextAlignRightRotate90: ImageVector + get() { + if (_textAlignRightRotate90 != null) { + return _textAlignRightRotate90!! + } + _textAlignRightRotate90 = fluentIcon(name = "Filled.TextAlignRightRotate90") { + fluentPath { + moveTo(18.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(17.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(6.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(5.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(13.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(13.0f, 3.0f) + close() + } + } + return _textAlignRightRotate90!! + } + +private var _textAlignRightRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBold.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBold.kt new file mode 100644 index 00000000..64a9a78d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBold.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextBold: ImageVector + get() { + if (_textBold != null) { + return _textBold!! + } + _textBold = fluentIcon(name = "Filled.TextBold") { + fluentPath { + moveTo(6.0f, 5.75f) + curveTo(6.0f, 4.78f, 6.78f, 4.0f, 7.75f, 4.0f) + horizontalLineToRelative(4.75f) + arcToRelative(4.76f, 4.76f, 0.0f, false, true, 3.95f, 7.38f) + arcTo(4.84f, 4.84f, 0.0f, false, true, 18.0f, 15.0f) + curveToRelative(0.0f, 3.13f, -2.68f, 5.0f, -5.0f, 5.0f) + lineTo(7.75f, 20.0f) + curveTo(6.78f, 20.0f, 6.0f, 19.22f, 6.0f, 18.25f) + lineTo(6.0f, 5.75f) + close() + moveTo(9.5f, 13.5f) + verticalLineToRelative(3.0f) + lineTo(13.0f, 16.5f) + curveToRelative(0.31f, 0.0f, 0.71f, -0.14f, 1.02f, -0.42f) + curveToRelative(0.3f, -0.26f, 0.48f, -0.62f, 0.48f, -1.08f) + curveToRelative(0.0f, -0.89f, -0.75f, -1.5f, -1.5f, -1.5f) + lineTo(9.5f, 13.5f) + close() + moveTo(9.5f, 10.0f) + horizontalLineToRelative(3.0f) + curveToRelative(0.71f, 0.0f, 1.25f, -0.6f, 1.25f, -1.25f) + curveToRelative(0.0f, -0.66f, -0.54f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-3.0f) + lineTo(9.5f, 10.0f) + close() + } + } + return _textBold!! + } + +private var _textBold: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBoxSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBoxSettings.kt new file mode 100644 index 00000000..f57e68e2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBoxSettings.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextBoxSettings: ImageVector + get() { + if (_textBoxSettings != null) { + return _textBoxSettings!! + } + _textBoxSettings = fluentIcon(name = "Filled.TextBoxSettings") { + fluentPath { + moveTo(21.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) + lineTo(5.75f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) + horizontalLineToRelative(6.27f) + arcToRelative(6.47f, 6.47f, 0.0f, false, true, -1.0f, -4.0f) + lineTo(6.75f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(11.3f, 15.5f) + curveToRelative(0.3f, -0.95f, 0.83f, -1.8f, 1.5f, -2.5f) + lineTo(6.75f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(7.6f) + curveToRelative(0.16f, 0.0f, 0.31f, 0.05f, 0.44f, 0.14f) + arcToRelative(6.47f, 6.47f, 0.0f, false, true, 6.31f, 0.38f) + lineTo(21.0f, 5.75f) + close() + moveTo(17.25f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(10.6f) + close() + moveTo(12.5f, 15.63f) + lineTo(12.95f, 16.06f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, 2.88f) + lineToRelative(-0.45f, 0.43f) + curveToRelative(0.2f, 0.57f, 0.5f, 1.1f, 0.85f, 1.57f) + lineToRelative(0.6f, -0.18f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.52f, 1.45f) + lineToRelative(0.17f, 0.72f) + arcToRelative(5.18f, 5.18f, 0.0f, false, false, 1.72f, 0.0f) + lineToRelative(0.17f, -0.72f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.52f, -1.45f) + lineToRelative(0.6f, 0.18f) + curveToRelative(0.36f, -0.47f, 0.65f, -1.0f, 0.85f, -1.57f) + lineToRelative(-0.45f, -0.43f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -2.88f) + lineToRelative(0.45f, -0.43f) + curveToRelative(-0.2f, -0.58f, -0.5f, -1.1f, -0.85f, -1.57f) + lineToRelative(-0.6f, 0.18f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.52f, -1.45f) + lineToRelative(-0.17f, -0.72f) + arcToRelative(5.17f, 5.17f, 0.0f, false, false, -1.72f, 0.0f) + lineToRelative(-0.17f, 0.72f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.52f, 1.45f) + lineToRelative(-0.6f, -0.18f) + curveToRelative(-0.36f, 0.47f, -0.65f, 1.0f, -0.85f, 1.57f) + close() + moveTo(17.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) + close() + } + } + return _textBoxSettings!! + } + +private var _textBoxSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBulletListAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBulletListAdd.kt new file mode 100644 index 00000000..7ff8791d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBulletListAdd.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextBulletListAdd: ImageVector + get() { + if (_textBulletListAdd != null) { + return _textBulletListAdd!! + } + _textBulletListAdd = fluentIcon(name = "Filled.TextBulletListAdd") { + fluentPath { + moveTo(5.0f, 18.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) + close() + moveTo(12.02f, 17.0f) + lineTo(7.38f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, 2.0f) + horizontalLineToRelative(4.67f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -0.15f, -2.0f) + close() + moveTo(13.81f, 13.0f) + lineTo(7.5f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(18.5f, 11.0f) + curveToRelative(-1.84f, 0.0f, -3.5f, 0.77f, -4.69f, 2.0f) + close() + moveTo(5.0f, 12.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) + close() + moveTo(5.0f, 6.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) + close() + moveTo(21.0f, 5.0f) + lineTo(7.38f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, 2.0f) + horizontalLineToRelative(13.62f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 21.0f, 5.0f) + close() + moveTo(24.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(19.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(18.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(18.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(19.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(19.0f, 18.0f) + close() + } + } + return _textBulletListAdd!! + } + +private var _textBulletListAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBulletListLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBulletListLtr.kt new file mode 100644 index 00000000..259a495b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBulletListLtr.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextBulletListLtr: ImageVector + get() { + if (_textBulletListLtr != null) { + return _textBulletListLtr!! + } + _textBulletListLtr = fluentIcon(name = "Filled.TextBulletListLtr") { + fluentPath { + moveTo(3.5f, 16.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(7.5f, 17.0f) + lineTo(21.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(7.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(21.0f, 17.0f) + lineTo(7.5f, 17.0f) + close() + moveTo(3.5f, 10.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(7.5f, 11.0f) + lineTo(21.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(7.5f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(21.0f, 11.0f) + lineTo(7.5f, 11.0f) + close() + moveTo(3.5f, 4.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(7.5f, 5.0f) + lineTo(21.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(7.5f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(21.0f, 5.0f) + lineTo(7.5f, 5.0f) + close() + } + } + return _textBulletListLtr!! + } + +private var _textBulletListLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBulletListLtr90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBulletListLtr90.kt new file mode 100644 index 00000000..14170c11 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBulletListLtr90.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextBulletListLtr90: ImageVector + get() { + if (_textBulletListLtr90 != null) { + return _textBulletListLtr90!! + } + _textBulletListLtr90 = fluentIcon(name = "Filled.TextBulletListLtr90") { + fluentPath { + moveTo(7.5f, 3.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + moveTo(7.0f, 7.5f) + lineTo(7.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(5.0f, 7.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + verticalLineToRelative(0.12f) + close() + moveTo(13.5f, 3.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + moveTo(13.0f, 7.5f) + lineTo(13.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(11.0f, 7.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + verticalLineToRelative(0.12f) + close() + moveTo(19.5f, 3.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + moveTo(19.0f, 7.5f) + lineTo(19.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(17.0f, 7.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + verticalLineToRelative(0.12f) + close() + } + } + return _textBulletListLtr90!! + } + +private var _textBulletListLtr90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBulletListLtrRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBulletListLtrRotate270.kt new file mode 100644 index 00000000..4868a236 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBulletListLtrRotate270.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextBulletListLtrRotate270: ImageVector + get() { + if (_textBulletListLtrRotate270 != null) { + return _textBulletListLtrRotate270!! + } + _textBulletListLtrRotate270 = fluentIcon(name = "Filled.TextBulletListLtrRotate270") { + fluentPath { + moveTo(16.5f, 20.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + moveTo(17.0f, 16.5f) + lineTo(17.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(19.0f, 16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + verticalLineToRelative(-0.12f) + close() + moveTo(10.5f, 20.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + moveTo(11.0f, 16.5f) + lineTo(11.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(13.0f, 16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + verticalLineToRelative(-0.12f) + close() + moveTo(4.5f, 20.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + moveTo(5.0f, 16.5f) + lineTo(5.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(7.0f, 16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + verticalLineToRelative(-0.12f) + close() + } + } + return _textBulletListLtrRotate270!! + } + +private var _textBulletListLtrRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBulletListRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBulletListRtl.kt new file mode 100644 index 00000000..a42a0251 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBulletListRtl.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextBulletListRtl: ImageVector + get() { + if (_textBulletListRtl != null) { + return _textBulletListRtl!! + } + _textBulletListRtl = fluentIcon(name = "Filled.TextBulletListRtl") { + fluentPath { + moveTo(20.5f, 16.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(16.5f, 17.0f) + lineTo(3.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, 2.0f) + lineTo(16.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, -2.0f) + horizontalLineToRelative(-0.12f) + close() + moveTo(20.5f, 10.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(16.5f, 11.0f) + lineTo(3.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, 2.0f) + lineTo(16.5f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, -2.0f) + horizontalLineToRelative(-0.12f) + close() + moveTo(20.5f, 4.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(16.5f, 5.0f) + lineTo(3.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, 2.0f) + lineTo(16.5f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, -2.0f) + horizontalLineToRelative(-0.12f) + close() + } + } + return _textBulletListRtl!! + } + +private var _textBulletListRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBulletListSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBulletListSquare.kt new file mode 100644 index 00000000..965f6fe3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBulletListSquare.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextBulletListSquare: ImageVector + get() { + if (_textBulletListSquare != null) { + return _textBulletListSquare!! + } + _textBulletListSquare = fluentIcon(name = "Filled.TextBulletListSquare") { + fluentPath { + moveTo(5.25f, 3.0f) + curveTo(4.01f, 3.0f, 3.0f, 4.0f, 3.0f, 5.25f) + verticalLineToRelative(13.5f) + curveTo(3.0f, 19.99f, 4.0f, 21.0f, 5.25f, 21.0f) + horizontalLineToRelative(13.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(21.0f, 5.25f) + curveTo(21.0f, 4.01f, 20.0f, 3.0f, 18.75f, 3.0f) + lineTo(5.25f, 3.0f) + close() + moveTo(8.75f, 8.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(10.5f, 8.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(10.5f, 12.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(11.25f, 15.0f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + close() + moveTo(7.75f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + close() + moveTo(8.75f, 15.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + } + } + return _textBulletListSquare!! + } + +private var _textBulletListSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBulletListSquareEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBulletListSquareEdit.kt new file mode 100644 index 00000000..89767f28 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBulletListSquareEdit.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextBulletListSquareEdit: ImageVector + get() { + if (_textBulletListSquareEdit != null) { + return _textBulletListSquareEdit!! + } + _textBulletListSquareEdit = fluentIcon(name = "Filled.TextBulletListSquareEdit") { + fluentPath { + moveTo(3.0f, 5.25f) + curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(13.5f) + curveTo(19.99f, 3.0f, 21.0f, 4.0f, 21.0f, 5.25f) + verticalLineToRelative(5.76f) + curveToRelative(-0.93f, -0.08f, -1.9f, 0.24f, -2.6f, 0.95f) + lineTo(15.35f, 15.0f) + horizontalLineToRelative(-4.11f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(2.6f) + lineToRelative(-1.36f, 1.36f) + curveToRelative(-0.47f, 0.48f, -0.8f, 1.07f, -0.97f, 1.72f) + lineTo(11.17f, 21.0f) + lineTo(5.25f, 21.0f) + curveTo(4.01f, 21.0f, 3.0f, 20.0f, 3.0f, 18.75f) + lineTo(3.0f, 5.25f) + close() + moveTo(7.75f, 9.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(11.25f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.5f) + close() + moveTo(11.25f, 11.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.5f) + close() + moveTo(6.75f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) + close() + moveTo(7.75f, 16.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _textBulletListSquareEdit!! + } + +private var _textBulletListSquareEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBulletListSquareWarning.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBulletListSquareWarning.kt new file mode 100644 index 00000000..718b8fd5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBulletListSquareWarning.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextBulletListSquareWarning: ImageVector + get() { + if (_textBulletListSquareWarning != null) { + return _textBulletListSquareWarning!! + } + _textBulletListSquareWarning = fluentIcon(name = "Filled.TextBulletListSquareWarning") { + fluentPath { + moveTo(5.25f, 3.0f) + curveTo(4.01f, 3.0f, 3.0f, 4.0f, 3.0f, 5.25f) + verticalLineToRelative(13.5f) + curveTo(3.0f, 19.99f, 4.0f, 21.0f, 5.25f, 21.0f) + horizontalLineToRelative(5.8f) + curveToRelative(0.05f, -0.26f, 0.15f, -0.51f, 0.28f, -0.74f) + lineToRelative(2.15f, -3.76f) + horizontalLineToRelative(-2.23f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(3.09f) + lineToRelative(1.0f, -1.74f) + curveToRelative(0.1f, -0.2f, 0.23f, -0.36f, 0.38f, -0.51f) + horizontalLineToRelative(-4.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(5.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + arcToRelative(2.48f, 2.48f, 0.0f, false, true, 2.17f, 1.26f) + lineTo(21.0f, 15.59f) + lineTo(21.0f, 5.25f) + curveTo(21.0f, 4.01f, 20.0f, 3.0f, 18.75f, 3.0f) + lineTo(5.25f, 3.0f) + close() + moveTo(8.75f, 8.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(10.5f, 8.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(7.75f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + close() + moveTo(8.75f, 15.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(17.11f, 13.05f) + arcToRelative(1.49f, 1.49f, 0.0f, false, true, 1.69f, 0.7f) + lineToRelative(4.0f, 7.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 21.5f, 23.0f) + horizontalLineToRelative(-8.0f) + arcToRelative(1.49f, 1.49f, 0.0f, false, true, -1.5f, -1.5f) + curveToRelative(0.0f, -0.26f, 0.07f, -0.52f, 0.2f, -0.75f) + lineToRelative(4.0f, -7.0f) + curveToRelative(0.2f, -0.36f, 0.54f, -0.6f, 0.9f, -0.7f) + close() + moveTo(18.0f, 15.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-3.0f) + close() + moveTo(17.5f, 21.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + } + } + return _textBulletListSquareWarning!! + } + +private var _textBulletListSquareWarning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBulletListTree.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBulletListTree.kt new file mode 100644 index 00000000..8ebee0ad --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextBulletListTree.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextBulletListTree: ImageVector + get() { + if (_textBulletListTree != null) { + return _textBulletListTree!! + } + _textBulletListTree = fluentIcon(name = "Filled.TextBulletListTree") { + fluentPath { + moveTo(7.5f, 16.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(11.5f, 17.0f) + lineTo(21.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(11.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(21.0f, 17.0f) + horizontalLineToRelative(-9.5f) + close() + moveTo(3.5f, 10.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(7.5f, 11.0f) + lineTo(21.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(7.5f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(21.0f, 11.0f) + lineTo(7.5f, 11.0f) + close() + moveTo(3.5f, 4.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(7.5f, 5.0f) + lineTo(21.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(7.5f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(21.0f, 5.0f) + lineTo(7.5f, 5.0f) + close() + } + } + return _textBulletListTree!! + } + +private var _textBulletListTree: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextCaseLowercase.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextCaseLowercase.kt new file mode 100644 index 00000000..07c62d2e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextCaseLowercase.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextCaseLowercase: ImageVector + get() { + if (_textCaseLowercase != null) { + return _textCaseLowercase!! + } + _textCaseLowercase = fluentIcon(name = "Filled.TextCaseLowercase") { + fluentPath { + moveTo(15.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(15.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.1f) + curveToRelative(0.61f, 0.41f, 1.34f, 0.65f, 2.11f, 0.65f) + curveToRelative(2.27f, 0.0f, 4.11f, -2.07f, 4.11f, -4.63f) + curveToRelative(0.0f, -2.55f, -1.84f, -4.62f, -4.1f, -4.62f) + curveToRelative(-0.78f, 0.0f, -1.5f, 0.24f, -2.12f, 0.66f) + lineTo(15.0f, 4.0f) + close() + moveTo(17.11f, 18.0f) + curveToRelative(-0.95f, 0.0f, -2.11f, -0.95f, -2.11f, -2.63f) + curveToRelative(0.0f, -1.67f, 1.16f, -2.62f, 2.11f, -2.62f) + reflectiveCurveToRelative(2.11f, 0.95f, 2.11f, 2.63f) + curveToRelative(0.0f, 1.67f, -1.16f, 2.62f, -2.1f, 2.62f) + close() + moveTo(11.0f, 19.26f) + verticalLineToRelative(-5.71f) + arcToRelative(3.34f, 3.34f, 0.0f, false, false, -0.98f, -2.34f) + curveToRelative(-0.6f, -0.58f, -1.45f, -0.9f, -2.47f, -0.95f) + horizontalLineToRelative(-0.3f) + arcToRelative(4.7f, 4.7f, 0.0f, false, false, -2.83f, 0.68f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.15f, 1.64f) + curveToRelative(0.33f, -0.23f, 0.93f, -0.37f, 1.88f, -0.32f) + curveToRelative(0.59f, 0.03f, 0.96f, 0.17f, 1.19f, 0.4f) + curveToRelative(0.17f, 0.16f, 0.29f, 0.4f, 0.34f, 0.74f) + arcToRelative(7.7f, 7.7f, 0.0f, false, false, -2.6f, -0.13f) + arcToRelative(4.02f, 4.02f, 0.0f, false, false, -2.47f, 1.14f) + curveToRelative(-0.6f, 0.61f, -0.91f, 1.43f, -0.91f, 2.35f) + curveToRelative(0.0f, 2.1f, 1.53f, 3.5f, 3.5f, 3.5f) + curveToRelative(0.8f, 0.0f, 1.65f, -0.24f, 2.54f, -0.7f) + curveToRelative(0.13f, 0.4f, 0.5f, 0.7f, 0.96f, 0.7f) + horizontalLineToRelative(0.13f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.87f, -1.0f) + close() + moveTo(5.0f, 16.8f) + curveToRelative(0.0f, -0.42f, 0.13f, -0.76f, 0.38f, -1.0f) + curveToRelative(0.26f, -0.25f, 0.66f, -0.44f, 1.24f, -0.51f) + arcToRelative(5.8f, 5.8f, 0.0f, false, true, 2.26f, 0.18f) + lineToRelative(0.12f, 0.04f) + verticalLineToRelative(1.77f) + lineToRelative(-0.14f, 0.1f) + curveToRelative(-0.96f, 0.63f, -1.75f, 0.92f, -2.36f, 0.92f) + curveToRelative(-0.47f, 0.0f, -0.84f, -0.15f, -1.09f, -0.4f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 5.0f, 16.8f) + close() + } + } + return _textCaseLowercase!! + } + +private var _textCaseLowercase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextCaseTitle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextCaseTitle.kt new file mode 100644 index 00000000..9d6e1813 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextCaseTitle.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextCaseTitle: ImageVector + get() { + if (_textCaseTitle != null) { + return _textCaseTitle!! + } + _textCaseTitle = fluentIcon(name = "Filled.TextCaseTitle") { + fluentPath { + moveTo(8.44f, 3.42f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.87f, -0.03f) + lineToRelative(-6.0f, 15.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.86f, 0.72f) + lineTo(3.83f, 16.0f) + horizontalLineToRelative(6.96f) + lineToRelative(1.27f, 3.58f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.88f, -0.66f) + lineToRelative(-5.5f, -15.5f) + close() + moveTo(4.6f, 14.0f) + lineToRelative(2.86f, -7.37f) + lineTo(10.08f, 14.0f) + lineTo(4.6f, 14.0f) + close() + moveTo(16.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(7.62f) + curveToRelative(0.59f, -0.4f, 1.27f, -0.62f, 2.0f, -0.62f) + curveToRelative(2.2f, 0.0f, 4.0f, 2.07f, 4.0f, 4.63f) + curveToRelative(0.0f, 2.55f, -1.8f, 4.62f, -4.0f, 4.62f) + curveToRelative(-0.75f, 0.0f, -1.46f, -0.24f, -2.06f, -0.66f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.94f, -0.34f) + lineTo(15.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(19.0f, 18.25f) + curveToRelative(0.84f, 0.0f, 2.0f, -0.9f, 2.0f, -2.63f) + reflectiveCurveTo(19.84f, 13.0f, 19.0f, 13.0f) + curveToRelative(-0.84f, 0.0f, -2.0f, 0.9f, -2.0f, 2.63f) + reflectiveCurveToRelative(1.16f, 2.62f, 2.0f, 2.62f) + close() + } + } + return _textCaseTitle!! + } + +private var _textCaseTitle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextCaseUppercase.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextCaseUppercase.kt new file mode 100644 index 00000000..e5f2d7af --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextCaseUppercase.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextCaseUppercase: ImageVector + get() { + if (_textCaseUppercase != null) { + return _textCaseUppercase!! + } + _textCaseUppercase = fluentIcon(name = "Filled.TextCaseUppercase") { + fluentPath { + moveTo(18.0f, 3.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(15.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(3.88f) + arcToRelative(4.87f, 4.87f, 0.0f, false, false, 2.43f, -9.1f) + arcTo(4.74f, 4.74f, 0.0f, false, false, 18.0f, 3.0f) + close() + moveTo(18.0f, 10.5f) + horizontalLineToRelative(-2.0f) + lineTo(16.0f, 5.0f) + horizontalLineToRelative(2.0f) + arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, 5.5f) + close() + moveTo(16.0f, 18.25f) + lineTo(16.0f, 12.5f) + horizontalLineToRelative(2.88f) + arcToRelative(2.88f, 2.88f, 0.0f, false, true, 0.0f, 5.75f) + lineTo(16.0f, 18.25f) + close() + moveTo(7.26f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.93f, 0.66f) + lineToRelative(5.5f, 15.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.88f, 0.68f) + lineTo(10.51f, 16.0f) + lineTo(3.8f, 16.0f) + lineToRelative(-1.35f, 3.6f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.88f, -0.7f) + lineTo(6.31f, 3.65f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 7.26f, 3.0f) + close() + moveTo(4.55f, 14.0f) + horizontalLineToRelative(5.24f) + lineTo(7.23f, 6.89f) + lineTo(4.55f, 14.0f) + close() + } + } + return _textCaseUppercase!! + } + +private var _textCaseUppercase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextChangeCase.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextChangeCase.kt new file mode 100644 index 00000000..c51ddf39 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextChangeCase.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextChangeCase: ImageVector + get() { + if (_textChangeCase != null) { + return _textChangeCase!! + } + _textChangeCase = fluentIcon(name = "Filled.TextChangeCase") { + fluentPath { + moveTo(16.51f, 2.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.93f, 0.67f) + lineToRelative(5.5f, 15.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.88f, 0.66f) + lineTo(19.79f, 16.0f) + horizontalLineToRelative(-6.96f) + lineToRelative(-1.4f, 3.61f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.86f, -0.72f) + lineToRelative(6.0f, -15.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.94f, -0.64f) + close() + moveTo(16.46f, 6.63f) + lineTo(13.6f, 14.0f) + horizontalLineToRelative(5.48f) + lineToRelative(-2.62f, -7.37f) + close() + moveTo(8.25f, 20.26f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.96f, -0.7f) + curveToRelative(-0.89f, 0.46f, -1.73f, 0.7f, -2.54f, 0.7f) + curveToRelative(-1.97f, 0.0f, -3.5f, -1.4f, -3.5f, -3.5f) + curveToRelative(0.0f, -0.92f, 0.32f, -1.74f, 0.91f, -2.35f) + arcToRelative(4.02f, 4.02f, 0.0f, false, true, 2.47f, -1.14f) + arcToRelative(7.7f, 7.7f, 0.0f, false, true, 2.6f, 0.13f) + arcToRelative(1.23f, 1.23f, 0.0f, false, false, -0.34f, -0.75f) + curveToRelative(-0.23f, -0.22f, -0.6f, -0.36f, -1.19f, -0.4f) + curveToRelative(-0.95f, -0.04f, -1.55f, 0.1f, -1.88f, 0.33f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.15f, -1.64f) + arcToRelative(4.7f, 4.7f, 0.0f, false, true, 2.83f, -0.69f) + lineToRelative(0.3f, 0.01f) + curveToRelative(1.02f, 0.05f, 1.87f, 0.37f, 2.47f, 0.95f) + curveToRelative(0.6f, 0.57f, 0.93f, 1.37f, 0.98f, 2.33f) + verticalLineToRelative(5.72f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.86f, 1.0f) + horizontalLineToRelative(-0.14f) + close() + moveTo(4.87f, 15.29f) + curveToRelative(-0.58f, 0.07f, -0.98f, 0.26f, -1.24f, 0.5f) + curveToRelative(-0.25f, 0.25f, -0.38f, 0.59f, -0.38f, 1.0f) + curveToRelative(0.0f, 0.5f, 0.16f, 0.87f, 0.41f, 1.11f) + curveToRelative(0.25f, 0.25f, 0.62f, 0.4f, 1.09f, 0.4f) + curveToRelative(0.6f, 0.0f, 1.4f, -0.29f, 2.36f, -0.92f) + lineToRelative(0.14f, -0.1f) + verticalLineToRelative(-1.77f) + lineToRelative(-0.12f, -0.04f) + arcToRelative(5.8f, 5.8f, 0.0f, false, false, -2.26f, -0.18f) + close() + } + } + return _textChangeCase!! + } + +private var _textChangeCase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextClearFormatting.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextClearFormatting.kt new file mode 100644 index 00000000..ab8fd0ad --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextClearFormatting.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextClearFormatting: ImageVector + get() { + if (_textClearFormatting != null) { + return _textClearFormatting!! + } + _textClearFormatting = fluentIcon(name = "Filled.TextClearFormatting") { + fluentPath { + moveTo(2.76f, 14.0f) + arcToRelative(0.84f, 0.84f, 0.0f, false, true, -0.55f, -0.18f) + arcToRelative(0.6f, 0.6f, 0.0f, false, true, -0.21f, -0.46f) + curveToRelative(0.0f, -0.11f, 0.03f, -0.25f, 0.1f, -0.41f) + lineTo(6.01f, 2.7f) + curveToRelative(0.18f, -0.47f, 0.51f, -0.7f, 1.0f, -0.7f) + curveToRelative(0.45f, 0.0f, 0.77f, 0.22f, 0.95f, 0.7f) + lineToRelative(3.94f, 10.24f) + curveToRelative(0.06f, 0.16f, 0.09f, 0.3f, 0.09f, 0.4f) + curveToRelative(0.0f, 0.2f, -0.07f, 0.35f, -0.22f, 0.47f) + arcToRelative(0.8f, 0.8f, 0.0f, false, true, -0.54f, 0.18f) + curveToRelative(-0.36f, 0.0f, -0.61f, -0.19f, -0.75f, -0.56f) + lineToRelative(-1.08f, -2.92f) + lineTo(4.58f, 10.51f) + lineToRelative(-1.07f, 2.92f) + curveToRelative(-0.14f, 0.37f, -0.39f, 0.56f, -0.75f, 0.56f) + close() + moveTo(5.02f, 9.27f) + horizontalLineToRelative(3.96f) + lineTo(7.03f, 3.9f) + horizontalLineToRelative(-0.06f) + lineTo(5.02f, 9.27f) + close() + moveTo(12.79f, 14.73f) + lineTo(18.27f, 20.21f) + lineTo(22.43f, 16.05f) + curveToRelative(0.76f, -0.76f, 0.76f, -2.0f, 0.0f, -2.75f) + lineToRelative(-2.72f, -2.73f) + arcToRelative(1.95f, 1.95f, 0.0f, false, false, -2.76f, 0.0f) + lineToRelative(-4.16f, 4.16f) + close() + moveTo(14.75f, 11.36f) + lineTo(13.0f, 13.1f) + lineTo(13.0f, 2.76f) + curveToRelative(0.0f, -0.23f, 0.06f, -0.4f, 0.2f, -0.55f) + curveToRelative(0.13f, -0.14f, 0.3f, -0.2f, 0.5f, -0.2f) + curveToRelative(0.21f, 0.0f, 0.38f, 0.06f, 0.5f, 0.2f) + curveToRelative(0.14f, 0.14f, 0.21f, 0.32f, 0.21f, 0.55f) + verticalLineToRelative(4.07f) + horizontalLineToRelative(0.03f) + arcToRelative(2.97f, 2.97f, 0.0f, false, true, 2.71f, -1.56f) + curveToRelative(1.07f, 0.0f, 1.93f, 0.4f, 2.58f, 1.2f) + curveToRelative(0.66f, 0.79f, 0.99f, 1.85f, 0.99f, 3.17f) + lineToRelative(-0.02f, 0.51f) + lineToRelative(-0.29f, -0.29f) + arcToRelative(2.93f, 2.93f, 0.0f, false, false, -1.16f, -0.71f) + arcToRelative(3.34f, 3.34f, 0.0f, false, false, -0.63f, -1.8f) + arcToRelative(2.11f, 2.11f, 0.0f, false, false, -1.77f, -0.84f) + curveToRelative(-0.72f, 0.0f, -1.3f, 0.3f, -1.76f, 0.87f) + arcToRelative(3.52f, 3.52f, 0.0f, false, false, -0.69f, 2.26f) + curveToRelative(0.0f, 0.66f, 0.12f, 1.24f, 0.35f, 1.72f) + close() + moveTo(17.21f, 21.27f) + lineTo(11.73f, 15.79f) + lineTo(10.57f, 16.95f) + curveToRelative(-0.76f, 0.76f, -0.76f, 2.0f, 0.0f, 2.76f) + lineToRelative(2.72f, 2.72f) + curveToRelative(0.34f, 0.34f, 0.77f, 0.53f, 1.21f, 0.56f) + lineTo(14.5f, 23.0f) + lineTo(20.0f, 23.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.02f) + lineToRelative(0.23f, -0.23f) + close() + } + } + return _textClearFormatting!! + } + +private var _textClearFormatting: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextCollapse.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextCollapse.kt new file mode 100644 index 00000000..c3881946 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextCollapse.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextCollapse: ImageVector + get() { + if (_textCollapse != null) { + return _textCollapse!! + } + _textCollapse = fluentIcon(name = "Filled.TextCollapse") { + fluentPath { + moveTo(6.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(7.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + close() + moveTo(13.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + close() + moveTo(7.0f, 18.0f) + horizontalLineToRelative(14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(7.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + close() + moveTo(13.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + close() + moveTo(11.0f, 11.5f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, -9.0f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 9.0f, 0.0f) + close() + moveTo(9.0f, 11.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineToRelative(4.0f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + close() + } + } + return _textCollapse!! + } + +private var _textCollapse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColor.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColor.kt new file mode 100644 index 00000000..e6e3945d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColor.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextColor: ImageVector + get() { + if (_textColor != null) { + return _textColor!! + } + _textColor = fluentIcon(name = "Filled.TextColor") { + fluentPath { + moveTo(17.75f, 14.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(5.25f, 22.0f) + curveTo(4.01f, 22.0f, 3.0f, 21.0f, 3.0f, 19.75f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(12.5f) + close() + moveTo(7.05f, 11.97f) + lineTo(10.81f, 2.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.1f) + lineToRelative(0.05f, 0.1f) + lineToRelative(3.75f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.65f) + lineToRelative(-0.05f, -0.1f) + lineToRelative(-1.0f, -2.52f) + horizontalLineToRelative(-4.1f) + lineToRelative(-1.0f, 2.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.88f, 0.45f) + lineToRelative(-0.1f, -0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.45f, -0.87f) + lineToRelative(0.03f, -0.1f) + lineToRelative(3.76f, -9.5f) + lineToRelative(-3.76f, 9.5f) + close() + moveTo(11.5f, 4.79f) + lineTo(10.04f, 8.5f) + horizontalLineToRelative(2.92f) + lineTo(11.5f, 4.8f) + close() + } + } + return _textColor!! + } + +private var _textColor: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColorAccent.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColorAccent.kt similarity index 83% rename from fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColorAccent.kt rename to fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColorAccent.kt index 6e92ebff..50d13ebc 100644 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/filled/TextColorAccent.kt +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColorAccent.kt @@ -1,11 +1,11 @@ -package com.konyaco.fluent.icons.filled +package io.github.composefluent.icons.filled import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath public val Icons.Filled.TextColorAccent: ImageVector get() { diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColumnOne.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColumnOne.kt new file mode 100644 index 00000000..9edbdeb9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColumnOne.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextColumnOne: ImageVector + get() { + if (_textColumnOne != null) { + return _textColumnOne!! + } + _textColumnOne = fluentIcon(name = "Filled.TextColumnOne") { + fluentPath { + moveTo(5.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(6.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(5.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(6.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(5.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(6.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(5.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(6.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + } + } + return _textColumnOne!! + } + +private var _textColumnOne: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColumnOneNarrow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColumnOneNarrow.kt new file mode 100644 index 00000000..c4b31e15 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColumnOneNarrow.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextColumnOneNarrow: ImageVector + get() { + if (_textColumnOneNarrow != null) { + return _textColumnOneNarrow!! + } + _textColumnOneNarrow = fluentIcon(name = "Filled.TextColumnOneNarrow") { + fluentPath { + moveTo(9.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(9.0f, 5.0f) + close() + moveTo(9.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(9.0f, 9.0f) + close() + moveTo(8.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(9.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(9.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(9.0f, 17.0f) + close() + } + } + return _textColumnOneNarrow!! + } + +private var _textColumnOneNarrow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColumnOneSemiNarrow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColumnOneSemiNarrow.kt new file mode 100644 index 00000000..31daf08e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColumnOneSemiNarrow.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextColumnOneSemiNarrow: ImageVector + get() { + if (_textColumnOneSemiNarrow != null) { + return _textColumnOneSemiNarrow!! + } + _textColumnOneSemiNarrow = fluentIcon(name = "Filled.TextColumnOneSemiNarrow") { + fluentPath { + moveTo(8.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(8.0f, 5.0f) + close() + moveTo(8.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(8.0f, 9.0f) + close() + moveTo(7.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(8.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(8.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(8.0f, 17.0f) + close() + } + } + return _textColumnOneSemiNarrow!! + } + +private var _textColumnOneSemiNarrow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColumnOneWide.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColumnOneWide.kt new file mode 100644 index 00000000..85fb213c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColumnOneWide.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextColumnOneWide: ImageVector + get() { + if (_textColumnOneWide != null) { + return _textColumnOneWide!! + } + _textColumnOneWide = fluentIcon(name = "Filled.TextColumnOneWide") { + fluentPath { + moveTo(4.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(4.0f, 5.0f) + close() + moveTo(4.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(4.0f, 9.0f) + close() + moveTo(3.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(4.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(4.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(4.0f, 17.0f) + close() + } + } + return _textColumnOneWide!! + } + +private var _textColumnOneWide: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColumnOneWideLightning.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColumnOneWideLightning.kt new file mode 100644 index 00000000..c6425f58 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColumnOneWideLightning.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextColumnOneWideLightning: ImageVector + get() { + if (_textColumnOneWideLightning != null) { + return _textColumnOneWideLightning!! + } + _textColumnOneWideLightning = fluentIcon(name = "Filled.TextColumnOneWideLightning") { + fluentPath { + moveTo(4.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(4.0f, 5.0f) + close() + moveTo(4.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(4.0f, 9.0f) + close() + moveTo(11.0f, 17.5f) + curveToRelative(0.0f, -0.17f, 0.0f, -0.34f, 0.02f, -0.5f) + lineTo(4.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(7.17f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -0.17f, -1.5f) + close() + moveTo(11.5f, 15.0f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, 1.31f, -2.0f) + lineTo(4.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(18.53f, 14.0f) + lineTo(17.1f, 14.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.47f, 0.32f) + lineToRelative(-1.13f, 3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.47f, 0.68f) + horizontalLineToRelative(0.78f) + lineToRelative(-0.77f, 2.32f) + arcToRelative(0.52f, 0.52f, 0.0f, false, false, 0.92f, 0.44f) + lineToRelative(2.63f, -4.03f) + arcToRelative(0.47f, 0.47f, 0.0f, false, false, -0.4f, -0.73f) + horizontalLineToRelative(-0.63f) + lineToRelative(0.5f, -1.32f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.47f, -0.68f) + close() + } + } + return _textColumnOneWideLightning!! + } + +private var _textColumnOneWideLightning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColumnThree.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColumnThree.kt new file mode 100644 index 00000000..d0a57e87 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColumnThree.kt @@ -0,0 +1,106 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextColumnThree: ImageVector + get() { + if (_textColumnThree != null) { + return _textColumnThree!! + } + _textColumnThree = fluentIcon(name = "Filled.TextColumnThree") { + fluentPath { + moveTo(3.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + lineTo(4.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(9.58f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(16.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(3.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + lineTo(4.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(9.58f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(16.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(3.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(4.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(9.58f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(16.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(3.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(4.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(9.58f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(16.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + } + } + return _textColumnThree!! + } + +private var _textColumnThree: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColumnTwo.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColumnTwo.kt new file mode 100644 index 00000000..c3ffa69e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColumnTwo.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextColumnTwo: ImageVector + get() { + if (_textColumnTwo != null) { + return _textColumnTwo!! + } + _textColumnTwo = fluentIcon(name = "Filled.TextColumnTwo") { + fluentPath { + moveTo(3.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(4.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(3.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(4.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(3.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(4.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(3.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(4.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(13.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(13.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(13.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(13.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + } + } + return _textColumnTwo!! + } + +private var _textColumnTwo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColumnTwoLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColumnTwoLeft.kt new file mode 100644 index 00000000..382d46fd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColumnTwoLeft.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextColumnTwoLeft: ImageVector + get() { + if (_textColumnTwoLeft != null) { + return _textColumnTwoLeft!! + } + _textColumnTwoLeft = fluentIcon(name = "Filled.TextColumnTwoLeft") { + fluentPath { + moveTo(21.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineToRelative(-9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + close() + moveTo(8.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(4.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + close() + moveTo(21.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineToRelative(-9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + close() + moveTo(8.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(4.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + close() + moveTo(21.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineToRelative(-9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + close() + moveTo(8.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(4.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + close() + moveTo(21.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineToRelative(-9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + close() + moveTo(8.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(4.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + close() + } + } + return _textColumnTwoLeft!! + } + +private var _textColumnTwoLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColumnTwoRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColumnTwoRight.kt new file mode 100644 index 00000000..fc35e4f9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextColumnTwoRight.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextColumnTwoRight: ImageVector + get() { + if (_textColumnTwoRight != null) { + return _textColumnTwoRight!! + } + _textColumnTwoRight = fluentIcon(name = "Filled.TextColumnTwoRight") { + fluentPath { + moveTo(3.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(4.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(16.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(3.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(4.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(16.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(3.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(4.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(16.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(3.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(4.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(16.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + } + } + return _textColumnTwoRight!! + } + +private var _textColumnTwoRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextContinuous.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextContinuous.kt new file mode 100644 index 00000000..67f54ab8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextContinuous.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextContinuous: ImageVector + get() { + if (_textContinuous != null) { + return _textContinuous!! + } + _textContinuous = fluentIcon(name = "Filled.TextContinuous") { + fluentPath { + moveTo(3.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(4.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(8.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(9.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(8.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(9.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(20.0f, 19.0f) + lineTo(4.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + close() + moveTo(3.3f, 11.2f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, -1.4f) + lineToRelative(1.5f, 1.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.4f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.4f) + lineToRelative(0.79f, -0.8f) + lineToRelative(-0.8f, -0.8f) + close() + } + } + return _textContinuous!! + } + +private var _textContinuous: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDensity.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDensity.kt new file mode 100644 index 00000000..e5d8999f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDensity.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextDensity: ImageVector + get() { + if (_textDensity != null) { + return _textDensity!! + } + _textDensity = fluentIcon(name = "Filled.TextDensity") { + fluentPath { + moveTo(12.25f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(11.5f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(10.0f, 5.0f) + lineTo(2.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(10.0f, 6.5f) + lineTo(10.0f, 5.0f) + close() + moveTo(10.0f, 9.0f) + lineTo(2.75f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(10.0f, 10.5f) + lineTo(10.0f, 9.0f) + close() + moveTo(10.0f, 13.0f) + lineTo(2.75f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(10.0f, 14.5f) + lineTo(10.0f, 13.0f) + close() + moveTo(10.0f, 17.0f) + lineTo(2.75f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(10.0f, 18.5f) + lineTo(10.0f, 17.0f) + close() + moveTo(19.75f, 18.0f) + lineTo(14.5f, 18.0f) + verticalLineToRelative(-4.5f) + horizontalLineToRelative(5.25f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, 4.5f) + close() + moveTo(19.75f, 10.5f) + lineTo(14.5f, 10.5f) + lineTo(14.5f, 6.0f) + horizontalLineToRelative(5.25f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, 4.5f) + close() + } + } + return _textDensity!! + } + +private var _textDensity: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDescription.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDescription.kt new file mode 100644 index 00000000..c8dd7163 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDescription.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextDescription: ImageVector + get() { + if (_textDescription != null) { + return _textDescription!! + } + _textDescription = fluentIcon(name = "Filled.TextDescription") { + fluentPath { + moveTo(3.0f, 17.0f) + horizontalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(3.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(15.0f, 17.0f) + lineTo(3.0f, 17.0f) + close() + moveTo(3.0f, 13.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(3.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(21.0f, 13.0f) + lineTo(3.0f, 13.0f) + close() + moveTo(3.0f, 9.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(3.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(21.0f, 9.0f) + lineTo(3.0f, 9.0f) + close() + moveTo(3.0f, 5.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(3.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(21.0f, 5.0f) + lineTo(3.0f, 5.0f) + close() + } + } + return _textDescription!! + } + +private var _textDescription: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDescriptionLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDescriptionLtr.kt new file mode 100644 index 00000000..fdd0797b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDescriptionLtr.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextDescriptionLtr: ImageVector + get() { + if (_textDescriptionLtr != null) { + return _textDescriptionLtr!! + } + _textDescriptionLtr = fluentIcon(name = "Filled.TextDescriptionLtr") { + fluentPath { + moveTo(3.0f, 17.0f) + horizontalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(3.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(15.0f, 17.0f) + lineTo(3.0f, 17.0f) + close() + moveTo(3.0f, 13.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(3.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(21.0f, 13.0f) + lineTo(3.0f, 13.0f) + close() + moveTo(3.0f, 9.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(3.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(21.0f, 9.0f) + lineTo(3.0f, 9.0f) + close() + moveTo(3.0f, 5.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(3.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(21.0f, 5.0f) + lineTo(3.0f, 5.0f) + close() + } + } + return _textDescriptionLtr!! + } + +private var _textDescriptionLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDescriptionRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDescriptionRtl.kt new file mode 100644 index 00000000..fea16a56 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDescriptionRtl.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextDescriptionRtl: ImageVector + get() { + if (_textDescriptionRtl != null) { + return _textDescriptionRtl!! + } + _textDescriptionRtl = fluentIcon(name = "Filled.TextDescriptionRtl") { + fluentPath { + moveTo(21.0f, 17.0f) + lineTo(9.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, 2.0f) + lineTo(21.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, -2.0f) + lineTo(9.0f, 17.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(21.0f, 13.0f) + lineTo(3.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, 2.0f) + lineTo(21.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, -2.0f) + lineTo(3.0f, 13.0f) + horizontalLineToRelative(18.0f) + close() + moveTo(21.0f, 9.0f) + lineTo(3.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, 2.0f) + lineTo(21.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, -2.0f) + lineTo(3.0f, 9.0f) + horizontalLineToRelative(18.0f) + close() + moveTo(21.0f, 5.0f) + lineTo(3.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, 2.0f) + lineTo(21.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, -2.0f) + lineTo(3.0f, 5.0f) + horizontalLineToRelative(18.0f) + close() + } + } + return _textDescriptionRtl!! + } + +private var _textDescriptionRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionHorizontalLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionHorizontalLeft.kt new file mode 100644 index 00000000..82c82ead --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionHorizontalLeft.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextDirectionHorizontalLeft: ImageVector + get() { + if (_textDirectionHorizontalLeft != null) { + return _textDirectionHorizontalLeft!! + } + _textDirectionHorizontalLeft = fluentIcon(name = "Filled.TextDirectionHorizontalLeft") { + fluentPath { + moveTo(16.25f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.92f, 0.62f) + lineToRelative(-3.75f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.84f, 0.76f) + lineToRelative(1.0f, -2.38f) + horizontalLineToRelative(3.66f) + lineToRelative(1.0f, 2.38f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.84f, -0.76f) + lineToRelative(-3.75f, -9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.92f, -0.62f) + close() + moveTo(16.25f, 6.6f) + lineTo(17.25f, 9.0f) + horizontalLineToRelative(-2.0f) + lineToRelative(1.0f, -2.4f) + close() + moveTo(6.71f, 5.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, 0.0f) + lineTo(3.37f, 7.22f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.55f) + lineToRelative(1.92f, 1.93f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, -1.42f) + lineTo(6.4f, 9.0f) + lineTo(11.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + lineTo(6.41f, 7.0f) + lineToRelative(0.3f, -0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.4f) + close() + moveTo(5.29f, 14.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 1.4f) + lineToRelative(-0.3f, 0.3f) + lineTo(20.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + lineTo(6.41f, 18.0f) + lineToRelative(0.3f, 0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.42f, 1.4f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) + lineToRelative(2.0f, -2.0f) + close() + } + } + return _textDirectionHorizontalLeft!! + } + +private var _textDirectionHorizontalLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionHorizontalLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionHorizontalLtr.kt new file mode 100644 index 00000000..3fe0ce77 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionHorizontalLtr.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextDirectionHorizontalLtr: ImageVector + get() { + if (_textDirectionHorizontalLtr != null) { + return _textDirectionHorizontalLtr!! + } + _textDirectionHorizontalLtr = fluentIcon(name = "Filled.TextDirectionHorizontalLtr") { + fluentPath { + moveTo(7.75f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.92f, 0.62f) + lineToRelative(3.75f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.84f, 0.76f) + lineToRelative(-1.0f, -2.38f) + lineTo(5.92f, 11.0f) + lineToRelative(-1.0f, 2.38f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.84f, -0.76f) + lineToRelative(3.75f, -9.0f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 7.75f, 3.0f) + close() + moveTo(7.75f, 6.6f) + lineTo(6.75f, 9.0f) + horizontalLineToRelative(2.0f) + lineToRelative(-1.0f, -2.4f) + close() + moveTo(17.29f, 5.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 0.0f) + lineToRelative(1.92f, 1.93f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.55f) + lineToRelative(-1.92f, 1.93f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, -1.42f) + lineToRelative(0.3f, -0.29f) + lineTo(13.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + horizontalLineToRelative(4.59f) + lineToRelative(-0.3f, -0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) + close() + moveTo(18.71f, 14.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, 1.4f) + lineToRelative(0.3f, 0.3f) + lineTo(4.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(13.59f) + lineToRelative(-0.3f, 0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.4f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.4f) + lineToRelative(-2.0f, -2.0f) + close() + } + } + return _textDirectionHorizontalLtr!! + } + +private var _textDirectionHorizontalLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionHorizontalRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionHorizontalRight.kt new file mode 100644 index 00000000..d08c58d8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionHorizontalRight.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextDirectionHorizontalRight: ImageVector + get() { + if (_textDirectionHorizontalRight != null) { + return _textDirectionHorizontalRight!! + } + _textDirectionHorizontalRight = fluentIcon(name = "Filled.TextDirectionHorizontalRight") { + fluentPath { + moveTo(7.75f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.92f, 0.62f) + lineToRelative(3.75f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.84f, 0.76f) + lineToRelative(-1.0f, -2.38f) + lineTo(5.92f, 11.0f) + lineToRelative(-1.0f, 2.38f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.84f, -0.76f) + lineToRelative(3.75f, -9.0f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 7.75f, 3.0f) + close() + moveTo(7.75f, 6.6f) + lineTo(6.75f, 9.0f) + horizontalLineToRelative(2.0f) + lineToRelative(-1.0f, -2.4f) + close() + moveTo(17.29f, 5.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 0.0f) + lineToRelative(1.92f, 1.93f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.55f) + lineToRelative(-1.92f, 1.93f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, -1.42f) + lineToRelative(0.3f, -0.29f) + lineTo(13.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + horizontalLineToRelative(4.59f) + lineToRelative(-0.3f, -0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) + close() + moveTo(18.71f, 14.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, 1.4f) + lineToRelative(0.3f, 0.3f) + lineTo(4.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(13.59f) + lineToRelative(-0.3f, 0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.4f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.4f) + lineToRelative(-2.0f, -2.0f) + close() + } + } + return _textDirectionHorizontalRight!! + } + +private var _textDirectionHorizontalRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionHorizontalRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionHorizontalRtl.kt new file mode 100644 index 00000000..71460c95 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionHorizontalRtl.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextDirectionHorizontalRtl: ImageVector + get() { + if (_textDirectionHorizontalRtl != null) { + return _textDirectionHorizontalRtl!! + } + _textDirectionHorizontalRtl = fluentIcon(name = "Filled.TextDirectionHorizontalRtl") { + fluentPath { + moveTo(16.25f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.92f, 0.62f) + lineToRelative(-3.75f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.84f, 0.76f) + lineToRelative(1.0f, -2.38f) + horizontalLineToRelative(3.66f) + lineToRelative(1.0f, 2.38f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.84f, -0.76f) + lineToRelative(-3.75f, -9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.92f, -0.62f) + close() + moveTo(16.25f, 6.6f) + lineTo(17.25f, 9.0f) + horizontalLineToRelative(-2.0f) + lineToRelative(1.0f, -2.4f) + close() + moveTo(6.71f, 5.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, 0.0f) + lineTo(3.37f, 7.22f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.55f) + lineToRelative(1.92f, 1.93f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, -1.42f) + lineTo(6.4f, 9.0f) + lineTo(11.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + lineTo(6.41f, 7.0f) + lineToRelative(0.3f, -0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.4f) + close() + moveTo(5.29f, 14.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 1.4f) + lineToRelative(-0.3f, 0.3f) + lineTo(20.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + lineTo(6.41f, 18.0f) + lineToRelative(0.3f, 0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.42f, 1.4f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) + lineToRelative(2.0f, -2.0f) + close() + } + } + return _textDirectionHorizontalRtl!! + } + +private var _textDirectionHorizontalRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionRotate270Right.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionRotate270Right.kt new file mode 100644 index 00000000..3483af1c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionRotate270Right.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextDirectionRotate270Right: ImageVector + get() { + if (_textDirectionRotate270Right != null) { + return _textDirectionRotate270Right!! + } + _textDirectionRotate270Right = fluentIcon(name = "Filled.TextDirectionRotate270Right") { + fluentPath { + moveTo(19.7f, 5.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.4f, 1.4f) + lineToRelative(-0.3f, -0.29f) + lineTo(18.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(16.0f, 6.41f) + lineToRelative(-0.3f, 0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.42f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) + lineToRelative(2.0f, 2.0f) + close() + moveTo(3.63f, 17.16f) + lineToRelative(9.0f, 3.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.76f, -1.84f) + lineToRelative(-2.38f, -1.0f) + verticalLineToRelative(-3.66f) + lineToRelative(2.38f, -1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.76f, -1.84f) + lineToRelative(-9.0f, 3.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.84f) + close() + moveTo(9.01f, 17.24f) + lineTo(6.61f, 16.24f) + lineTo(9.01f, 15.24f) + verticalLineToRelative(2.0f) + close() + moveTo(10.71f, 6.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, 1.42f) + lineToRelative(0.3f, -0.3f) + lineTo(7.01f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(9.01f, 6.41f) + lineToRelative(0.3f, 0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) + close() + } + } + return _textDirectionRotate270Right!! + } + +private var _textDirectionRotate270Right: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionRotate90Left.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionRotate90Left.kt new file mode 100644 index 00000000..fa7d35f1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionRotate90Left.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextDirectionRotate90Left: ImageVector + get() { + if (_textDirectionRotate90Left != null) { + return _textDirectionRotate90Left!! + } + _textDirectionRotate90Left = fluentIcon(name = "Filled.TextDirectionRotate90Left") { + fluentPath { + moveToRelative(20.38f, 15.33f) + lineToRelative(-9.0f, -3.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -0.76f, 1.84f) + lineToRelative(2.38f, 1.0f) + verticalLineToRelative(3.66f) + lineToRelative(-2.38f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.76f, 1.84f) + lineToRelative(9.0f, -3.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.84f) + close() + moveTo(15.0f, 15.25f) + lineToRelative(2.4f, 1.0f) + lineToRelative(-2.4f, 1.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(8.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(6.0f, 6.41f) + lineToRelative(-0.3f, 0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.42f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) + lineToRelative(2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 1.42f) + lineTo(8.0f, 6.4f) + lineTo(8.0f, 20.0f) + close() + moveTo(16.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(15.0f, 6.41f) + lineToRelative(-0.3f, 0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.4f, -1.42f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) + lineToRelative(2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 1.42f) + lineToRelative(-0.3f, -0.3f) + lineTo(17.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + close() + } + } + return _textDirectionRotate90Left!! + } + +private var _textDirectionRotate90Left: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionRotate90Ltr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionRotate90Ltr.kt new file mode 100644 index 00000000..c3b61b1f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionRotate90Ltr.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextDirectionRotate90Ltr: ImageVector + get() { + if (_textDirectionRotate90Ltr != null) { + return _textDirectionRotate90Ltr!! + } + _textDirectionRotate90Ltr = fluentIcon(name = "Filled.TextDirectionRotate90Ltr") { + fluentPath { + moveToRelative(20.38f, 8.67f) + lineToRelative(-9.0f, 3.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -0.76f, -1.84f) + lineToRelative(2.38f, -1.0f) + lineTo(13.0f, 5.92f) + lineToRelative(-2.38f, -1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.76f, -1.84f) + lineToRelative(9.0f, 3.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.84f) + close() + moveTo(15.0f, 8.75f) + lineToRelative(2.4f, -1.0f) + lineToRelative(-2.4f, -1.0f) + verticalLineToRelative(2.0f) + close() + moveTo(8.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) + verticalLineToRelative(13.59f) + lineToRelative(-0.3f, -0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) + lineToRelative(2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.42f) + lineToRelative(-0.3f, 0.3f) + lineTo(8.0f, 4.0f) + close() + moveTo(16.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(3.59f) + lineToRelative(-0.3f, -0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) + lineToRelative(2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.42f) + lineToRelative(-0.3f, 0.3f) + lineTo(17.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + } + } + return _textDirectionRotate90Ltr!! + } + +private var _textDirectionRotate90Ltr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionRotate90Right.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionRotate90Right.kt new file mode 100644 index 00000000..0bd6ba10 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionRotate90Right.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextDirectionRotate90Right: ImageVector + get() { + if (_textDirectionRotate90Right != null) { + return _textDirectionRotate90Right!! + } + _textDirectionRotate90Right = fluentIcon(name = "Filled.TextDirectionRotate90Right") { + fluentPath { + moveToRelative(20.38f, 8.67f) + lineToRelative(-9.0f, 3.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -0.76f, -1.84f) + lineToRelative(2.38f, -1.0f) + lineTo(13.0f, 5.92f) + lineToRelative(-2.38f, -1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.76f, -1.84f) + lineToRelative(9.0f, 3.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.84f) + close() + moveTo(15.0f, 8.75f) + lineToRelative(2.4f, -1.0f) + lineToRelative(-2.4f, -1.0f) + verticalLineToRelative(2.0f) + close() + moveTo(8.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) + verticalLineToRelative(13.59f) + lineToRelative(-0.3f, -0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) + lineToRelative(2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.42f) + lineToRelative(-0.3f, 0.3f) + lineTo(8.0f, 4.0f) + close() + moveTo(16.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(3.59f) + lineToRelative(-0.3f, -0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) + lineToRelative(2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.42f) + lineToRelative(-0.3f, 0.3f) + lineTo(17.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + } + } + return _textDirectionRotate90Right!! + } + +private var _textDirectionRotate90Right: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionRotate90Rtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionRotate90Rtl.kt new file mode 100644 index 00000000..80e4ada0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionRotate90Rtl.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextDirectionRotate90Rtl: ImageVector + get() { + if (_textDirectionRotate90Rtl != null) { + return _textDirectionRotate90Rtl!! + } + _textDirectionRotate90Rtl = fluentIcon(name = "Filled.TextDirectionRotate90Rtl") { + fluentPath { + moveToRelative(20.38f, 15.33f) + lineToRelative(-9.0f, -3.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -0.76f, 1.84f) + lineToRelative(2.38f, 1.0f) + verticalLineToRelative(3.66f) + lineToRelative(-2.38f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.76f, 1.84f) + lineToRelative(9.0f, -3.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.84f) + close() + moveTo(15.0f, 15.25f) + lineToRelative(2.4f, 1.0f) + lineToRelative(-2.4f, 1.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(8.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(6.0f, 6.41f) + lineToRelative(-0.3f, 0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, -1.42f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) + lineToRelative(2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 1.42f) + lineTo(8.0f, 6.4f) + lineTo(8.0f, 20.0f) + close() + moveTo(16.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(15.0f, 6.41f) + lineToRelative(-0.3f, 0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.4f, -1.42f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) + lineToRelative(2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 1.42f) + lineToRelative(-0.3f, -0.3f) + lineTo(17.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + close() + } + } + return _textDirectionRotate90Rtl!! + } + +private var _textDirectionRotate90Rtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionVertical.kt new file mode 100644 index 00000000..2a62ef8f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextDirectionVertical.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextDirectionVertical: ImageVector + get() { + if (_textDirectionVertical != null) { + return _textDirectionVertical!! + } + _textDirectionVertical = fluentIcon(name = "Filled.TextDirectionVertical") { + fluentPath { + moveTo(8.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) + verticalLineToRelative(13.59f) + lineToRelative(-0.3f, -0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) + lineToRelative(2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.42f) + lineToRelative(-0.3f, 0.3f) + lineTo(8.0f, 4.0f) + close() + moveTo(17.17f, 3.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.84f, 0.0f) + lineToRelative(-3.75f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.84f, 0.76f) + lineToRelative(1.0f, -2.38f) + horizontalLineToRelative(3.66f) + lineToRelative(1.0f, 2.38f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.84f, -0.76f) + lineToRelative(-3.75f, -9.0f) + close() + moveTo(17.25f, 9.0f) + horizontalLineToRelative(-2.0f) + lineToRelative(1.0f, -2.4f) + lineToRelative(1.0f, 2.4f) + close() + moveTo(16.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(2.59f) + lineToRelative(-0.3f, -0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.42f) + lineToRelative(2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.4f, 0.0f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, -1.42f) + lineToRelative(-0.3f, 0.3f) + lineTo(17.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + } + } + return _textDirectionVertical!! + } + +private var _textDirectionVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextEditStyle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextEditStyle.kt new file mode 100644 index 00000000..eee2cc46 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextEditStyle.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextEditStyle: ImageVector + get() { + if (_textEditStyle != null) { + return _textEditStyle!! + } + _textEditStyle = fluentIcon(name = "Filled.TextEditStyle") { + fluentPath { + moveTo(20.06f, 8.45f) + arcToRelative(3.22f, 3.22f, 0.0f, false, true, 0.0f, 4.55f) + lineToRelative(-7.11f, 7.1f) + curveToRelative(-0.27f, 0.27f, -0.61f, 0.47f, -0.98f, 0.57f) + lineToRelative(-4.61f, 1.3f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.92f, -0.94f) + lineToRelative(1.38f, -4.54f) + curveToRelative(0.11f, -0.35f, 0.3f, -0.67f, 0.56f, -0.93f) + lineToRelative(7.13f, -7.12f) + arcToRelative(3.22f, 3.22f, 0.0f, false, true, 4.55f, 0.0f) + close() + moveTo(8.16f, 2.37f) + lineToRelative(0.04f, 0.1f) + lineToRelative(3.25f, 8.25f) + lineToRelative(-1.15f, 1.16f) + lineTo(9.56f, 10.0f) + horizontalLineTo(5.44f) + lineToRelative(-1.0f, 2.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.87f, 0.45f) + lineToRelative(-0.1f, -0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.45f, -0.87f) + lineToRelative(0.03f, -0.1f) + lineToRelative(3.76f, -9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.1f) + close() + moveTo(7.5f, 4.79f) + lineTo(6.04f, 8.5f) + horizontalLineToRelative(2.92f) + lineTo(7.5f, 4.8f) + close() + } + } + return _textEditStyle!! + } + +private var _textEditStyle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextEffects.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextEffects.kt new file mode 100644 index 00000000..264a094a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextEffects.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextEffects: ImageVector + get() { + if (_textEffects != null) { + return _textEffects!! + } + _textEffects = fluentIcon(name = "Filled.TextEffects") { + fluentPath { + moveTo(14.76f, 3.82f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -5.52f, 0.0f) + lineToRelative(-4.26f, 9.94f) + lineToRelative(-0.05f, 0.12f) + lineToRelative(-1.69f, 3.94f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 5.52f, 2.36f) + lineTo(9.69f, 18.0f) + horizontalLineToRelative(4.62f) + lineToRelative(0.93f, 2.18f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 5.52f, -2.36f) + lineToRelative(-1.69f, -3.94f) + arcToRelative(2.9f, 2.9f, 0.0f, false, false, -0.05f, -0.12f) + lineToRelative(-4.26f, -9.94f) + close() + moveTo(12.92f, 4.61f) + lineTo(17.2f, 14.59f) + lineTo(17.21f, 14.63f) + lineTo(18.92f, 18.61f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.84f, 0.78f) + lineTo(15.63f, 16.0f) + lineTo(8.37f, 16.0f) + lineToRelative(-1.45f, 3.4f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.84f, -0.8f) + lineToRelative(1.7f, -3.97f) + lineToRelative(0.02f, -0.04f) + lineToRelative(4.28f, -9.98f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.84f, 0.0f) + close() + moveTo(14.77f, 14.0f) + lineTo(9.23f, 14.0f) + lineTo(12.0f, 7.54f) + lineTo(14.77f, 14.0f) + close() + } + } + return _textEffects!! + } + +private var _textEffects: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextExpand.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextExpand.kt new file mode 100644 index 00000000..2d31407f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextExpand.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextExpand: ImageVector + get() { + if (_textExpand != null) { + return _textExpand!! + } + _textExpand = fluentIcon(name = "Filled.TextExpand") { + fluentPath { + moveTo(7.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(7.0f, 18.0f) + close() + moveTo(13.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(6.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(7.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(13.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(11.0f, 11.5f) + arcToRelative(4.5f, 4.5f, 0.0f, true, true, -9.0f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 9.0f, 0.0f) + close() + moveTo(7.0f, 9.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + lineTo(6.0f, 11.0f) + lineTo(4.5f, 11.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + lineTo(6.0f, 12.0f) + verticalLineToRelative(1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + lineTo(7.0f, 12.0f) + horizontalLineToRelative(1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + lineTo(7.0f, 11.0f) + lineTo(7.0f, 9.5f) + close() + } + } + return _textExpand!! + } + +private var _textExpand: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextField.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextField.kt new file mode 100644 index 00000000..20d30c95 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextField.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextField: ImageVector + get() { + if (_textField != null) { + return _textField!! + } + _textField = fluentIcon(name = "Filled.TextField") { + fluentPath { + moveTo(2.0f, 6.75f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(12.5f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 22.0f, 6.75f) + verticalLineToRelative(10.5f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 18.25f, 21.0f) + lineTo(5.75f, 21.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 2.0f, 17.25f) + lineTo(2.0f, 6.75f) + close() + moveTo(12.75f, 7.5f) + horizontalLineToRelative(2.75f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) + lineTo(8.5f, 7.5f) + horizontalLineToRelative(2.75f) + verticalLineToRelative(9.0f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.5f) + verticalLineToRelative(-9.0f) + close() + } + } + return _textField!! + } + +private var _textField: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextFirstLine.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextFirstLine.kt new file mode 100644 index 00000000..7a88c8d5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextFirstLine.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextFirstLine: ImageVector + get() { + if (_textFirstLine != null) { + return _textFirstLine!! + } + _textFirstLine = fluentIcon(name = "Filled.TextFirstLine") { + fluentPath { + moveTo(3.7f, 3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 1.4f) + lineTo(3.58f, 6.0f) + lineToRelative(-1.3f, 1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 1.4f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.4f) + lineToRelative(-2.0f, -2.0f) + close() + moveTo(10.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(10.0f, 5.0f) + close() + moveTo(21.0f, 17.0f) + lineTo(3.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + close() + moveTo(2.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(3.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + } + } + return _textFirstLine!! + } + +private var _textFirstLine: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextFont.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextFont.kt new file mode 100644 index 00000000..139708bd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextFont.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextFont: ImageVector + get() { + if (_textFont != null) { + return _textFont!! + } + _textFont = fluentIcon(name = "Filled.TextFont") { + fluentPath { + moveTo(7.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.94f, 0.66f) + lineToRelative(2.88f, 7.92f) + lineToRelative(-1.1f, 2.8f) + lineTo(9.2f, 12.0f) + lineTo(4.79f, 12.0f) + lineToRelative(-0.85f, 2.34f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.88f, -0.68f) + lineToRelative(4.0f, -11.0f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 7.0f, 2.0f) + close() + moveTo(5.52f, 10.0f) + horizontalLineToRelative(2.96f) + lineTo(7.0f, 5.93f) + lineTo(5.52f, 10.0f) + close() + moveTo(15.37f, 6.53f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.86f, 0.0f) + lineToRelative(-5.36f, 13.5f) + lineTo(8.0f, 20.03f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + horizontalLineToRelative(-0.7f) + lineToRelative(0.8f, -2.03f) + horizontalLineToRelative(6.66f) + lineToRelative(0.8f, 2.02f) + lineTo(18.0f, 20.02f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(3.01f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + horizontalLineToRelative(-0.3f) + lineToRelative(-5.34f, -13.5f) + close() + moveTo(16.97f, 16.0f) + lineTo(11.9f, 16.0f) + lineToRelative(2.54f, -6.39f) + lineTo(16.97f, 16.0f) + close() + } + } + return _textFont!! + } + +private var _textFont: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextFontInfo.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextFontInfo.kt new file mode 100644 index 00000000..712ad081 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextFontInfo.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextFontInfo: ImageVector + get() { + if (_textFontInfo != null) { + return _textFontInfo!! + } + _textFontInfo = fluentIcon(name = "Filled.TextFontInfo") { + fluentPath { + moveTo(9.51f, 1.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.93f, 0.67f) + lineToRelative(3.16f, 8.88f) + arcToRelative(6.53f, 6.53f, 0.0f, false, false, -1.54f, 1.65f) + lineToRelative(-2.6f, -7.32f) + lineTo(6.6f, 13.0f) + horizontalLineToRelative(5.42f) + curveToRelative(-0.39f, 0.6f, -0.68f, 1.28f, -0.85f, 2.0f) + lineTo(5.83f, 15.0f) + lineToRelative(-1.4f, 3.61f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.86f, -0.72f) + lineToRelative(6.0f, -15.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.94f, -0.64f) + close() + moveTo(17.0f, 16.0f) + verticalLineToRelative(3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + close() + moveTo(18.25f, 13.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(23.0f, 16.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(22.0f, 16.5f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, -9.0f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 9.0f, 0.0f) + close() + } + } + return _textFontInfo!! + } + +private var _textFontInfo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextFontSize.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextFontSize.kt new file mode 100644 index 00000000..73bd0723 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextFontSize.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextFontSize: ImageVector + get() { + if (_textFontSize != null) { + return _textFontSize!! + } + _textFontSize = fluentIcon(name = "Filled.TextFontSize") { + fluentPath { + moveToRelative(9.97f, 16.17f) + lineToRelative(4.59f, -12.51f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.83f, -0.12f) + lineToRelative(0.05f, 0.12f) + lineToRelative(5.5f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.83f, 0.79f) + lineToRelative(-0.05f, -0.1f) + lineToRelative(-1.4f, -3.85f) + horizontalLineToRelative(-6.31f) + lineToRelative(-1.45f, 3.92f) + lineToRelative(-0.04f, 0.08f) + lineToRelative(-0.07f, 0.1f) + lineToRelative(-0.08f, 0.1f) + lineToRelative(-0.08f, 0.07f) + lineToRelative(-0.08f, 0.06f) + lineToRelative(-0.05f, 0.03f) + lineToRelative(-0.09f, 0.05f) + lineToRelative(-0.1f, 0.04f) + lineToRelative(-0.1f, 0.03f) + lineToRelative(-0.14f, 0.02f) + horizontalLineToRelative(-0.18f) + lineToRelative(-0.1f, -0.02f) + lineToRelative(-0.15f, -0.05f) + lineToRelative(-0.07f, -0.03f) + lineToRelative(-0.1f, -0.05f) + lineToRelative(-0.11f, -0.08f) + lineToRelative(-0.1f, -0.09f) + lineToRelative(-0.06f, -0.07f) + lineToRelative(-0.06f, -0.1f) + lineToRelative(-0.05f, -0.1f) + lineToRelative(-0.75f, -1.91f) + lineTo(4.66f, 17.5f) + lineToRelative(-0.73f, 1.86f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.18f, 0.6f) + lineToRelative(-0.11f, -0.03f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.6f, -1.18f) + lineToRelative(0.03f, -0.11f) + lineToRelative(3.5f, -9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.8f, -0.12f) + lineToRelative(0.06f, 0.12f) + lineToRelative(2.54f, 6.53f) + lineToRelative(4.59f, -12.51f) + lineToRelative(-4.59f, 12.5f) + close() + moveTo(6.5f, 12.76f) + lineTo(5.43f, 15.5f) + horizontalLineToRelative(2.13f) + lineTo(6.5f, 12.76f) + close() + moveTo(15.5f, 6.9f) + lineTo(13.08f, 13.5f) + horizontalLineToRelative(4.84f) + lineTo(15.5f, 6.9f) + close() + } + } + return _textFontSize!! + } + +private var _textFontSize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextFootnote.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextFootnote.kt new file mode 100644 index 00000000..083f7da8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextFootnote.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextFootnote: ImageVector + get() { + if (_textFootnote != null) { + return _textFootnote!! + } + _textFootnote = fluentIcon(name = "Filled.TextFootnote") { + fluentPath { + moveToRelative(20.02f, 7.54f) + lineToRelative(-0.22f, 0.16f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.1f, -1.67f) + arcToRelative(3.31f, 3.31f, 0.0f, false, false, 1.35f, -1.74f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.97f, 0.21f) + lineTo(22.02f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(20.02f, 7.54f) + close() + moveTo(2.12f, 17.97f) + lineTo(2.1f, 17.97f) + curveToRelative(-0.22f, -0.2f, -0.35f, -0.48f, -0.35f, -0.78f) + curveToRelative(0.0f, -0.19f, 0.05f, -0.37f, 0.11f, -0.54f) + lineTo(5.3f, 7.69f) + curveToRelative(0.1f, -0.27f, 0.27f, -0.52f, 0.51f, -0.7f) + curveToRelative(0.25f, -0.17f, 0.53f, -0.24f, 0.83f, -0.24f) + arcToRelative(1.34f, 1.34f, 0.0f, false, true, 1.3f, 0.93f) + lineToRelative(3.45f, 8.97f) + curveToRelative(0.06f, 0.17f, 0.11f, 0.35f, 0.11f, 0.54f) + curveToRelative(0.0f, 0.31f, -0.13f, 0.58f, -0.37f, 0.78f) + curveToRelative(-0.23f, 0.2f, -0.5f, 0.28f, -0.8f, 0.28f) + arcToRelative(1.14f, 1.14f, 0.0f, false, true, -1.12f, -0.82f) + lineTo(8.4f, 15.2f) + lineTo(4.86f, 15.2f) + lineToRelative(-0.82f, 2.23f) + curveToRelative(-0.09f, 0.23f, -0.22f, 0.44f, -0.42f, 0.6f) + curveToRelative(-0.21f, 0.15f, -0.46f, 0.22f, -0.7f, 0.22f) + curveToRelative(-0.3f, 0.0f, -0.57f, -0.08f, -0.8f, -0.27f) + close() + moveTo(7.64f, 13.11f) + lineTo(6.63f, 10.31f) + lineTo(5.61f, 13.11f) + horizontalLineToRelative(2.03f) + close() + moveTo(11.75f, 17.15f) + curveToRelative(0.0f, 0.28f, 0.09f, 0.55f, 0.29f, 0.77f) + verticalLineToRelative(0.01f) + curveToRelative(0.22f, 0.23f, 0.5f, 0.32f, 0.79f, 0.32f) + arcToRelative(1.09f, 1.09f, 0.0f, false, false, 1.02f, -0.67f) + arcToRelative(3.28f, 3.28f, 0.0f, false, false, 2.02f, 0.67f) + curveToRelative(1.08f, 0.0f, 1.98f, -0.4f, 2.66f, -1.22f) + curveToRelative(0.66f, -0.8f, 0.97f, -1.86f, 0.97f, -3.1f) + reflectiveCurveToRelative(-0.3f, -2.29f, -0.97f, -3.1f) + arcToRelative(3.28f, 3.28f, 0.0f, false, false, -2.65f, -1.22f) + arcToRelative(3.15f, 3.15f, 0.0f, false, false, -1.9f, 0.6f) + lineTo(13.98f, 7.9f) + curveToRelative(0.0f, -0.3f, -0.09f, -0.59f, -0.3f, -0.82f) + curveToRelative(-0.22f, -0.23f, -0.5f, -0.34f, -0.81f, -0.34f) + curveToRelative(-0.31f, 0.0f, -0.6f, 0.11f, -0.81f, 0.34f) + curveToRelative(-0.22f, 0.24f, -0.31f, 0.52f, -0.31f, 0.82f) + verticalLineToRelative(9.24f) + close() + moveTo(17.24f, 13.93f) + curveToRelative(0.0f, 0.77f, -0.18f, 1.32f, -0.47f, 1.7f) + curveToRelative(-0.27f, 0.35f, -0.64f, 0.53f, -1.15f, 0.53f) + arcToRelative(1.4f, 1.4f, 0.0f, false, true, -1.15f, -0.56f) + arcToRelative(2.6f, 2.6f, 0.0f, false, true, -0.5f, -1.67f) + curveToRelative(0.0f, -0.73f, 0.19f, -1.27f, 0.5f, -1.66f) + curveToRelative(0.3f, -0.4f, 0.68f, -0.57f, 1.15f, -0.57f) + curveToRelative(0.51f, 0.0f, 0.88f, 0.18f, 1.15f, 0.54f) + curveToRelative(0.3f, 0.38f, 0.47f, 0.92f, 0.47f, 1.7f) + close() + } + } + return _textFootnote!! + } + +private var _textFootnote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextGrammarArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextGrammarArrowLeft.kt new file mode 100644 index 00000000..5deda4ed --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextGrammarArrowLeft.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextGrammarArrowLeft: ImageVector + get() { + if (_textGrammarArrowLeft != null) { + return _textGrammarArrowLeft!! + } + _textGrammarArrowLeft = fluentIcon(name = "Filled.TextGrammarArrowLeft") { + fluentPath { + moveTo(6.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, -11.0f) + close() + moveTo(7.28f, 14.59f) + lineTo(7.35f, 14.65f) + lineTo(9.87f, 17.16f) + lineTo(9.91f, 17.21f) + lineTo(9.95f, 17.29f) + lineTo(9.97f, 17.35f) + lineTo(9.99f, 17.43f) + verticalLineToRelative(0.11f) + lineToRelative(-0.01f, 0.09f) + lineToRelative(-0.03f, 0.08f) + lineToRelative(-0.03f, 0.06f) + lineToRelative(-0.05f, 0.07f) + lineToRelative(-2.52f, 2.51f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.76f, -0.63f) + lineToRelative(0.05f, -0.07f) + lineTo(8.3f, 18.0f) + lineTo(3.5f, 18.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.41f) + verticalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.41f, -0.5f) + horizontalLineToRelative(4.88f) + lineToRelative(-1.65f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.05f, -0.63f) + lineToRelative(0.05f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.64f, -0.06f) + close() + moveTo(12.98f, 17.0f) + lineTo(21.12f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, 2.0f) + horizontalLineToRelative(-8.17f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 0.15f, -2.0f) + close() + moveTo(12.5f, 15.0f) + lineTo(21.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, -2.0f) + horizontalLineToRelative(-9.93f) + curveToRelative(0.55f, 0.58f, 1.0f, 1.25f, 1.31f, 2.0f) + close() + moveTo(21.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, -2.0f) + lineTo(3.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, 2.0f) + lineTo(21.0f, 11.0f) + close() + moveTo(3.0f, 5.0f) + horizontalLineToRelative(18.12f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 21.0f, 7.0f) + lineTo(2.88f, 7.0f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 3.0f, 5.0f) + close() + } + } + return _textGrammarArrowLeft!! + } + +private var _textGrammarArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextGrammarArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextGrammarArrowRight.kt new file mode 100644 index 00000000..5172cab9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextGrammarArrowRight.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextGrammarArrowRight: ImageVector + get() { + if (_textGrammarArrowRight != null) { + return _textGrammarArrowRight!! + } + _textGrammarArrowRight = fluentIcon(name = "Filled.TextGrammarArrowRight") { + fluentPath { + moveTo(21.0f, 5.0f) + lineTo(3.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, 2.0f) + lineTo(21.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, -2.0f) + lineTo(21.0f, 5.0f) + close() + moveTo(21.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, -2.0f) + lineTo(3.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, 2.0f) + lineTo(21.0f, 11.0f) + close() + moveTo(21.0f, 15.0f) + horizontalLineToRelative(-8.5f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.31f, -2.0f) + horizontalLineToRelative(9.93f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, 2.0f) + close() + moveTo(21.0f, 17.0f) + horizontalLineToRelative(-8.02f) + arcToRelative(6.62f, 6.62f, 0.0f, false, true, -0.15f, 2.0f) + lineTo(21.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, -2.0f) + lineTo(21.0f, 17.0f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(5.65f, 20.35f) + lineTo(5.72f, 20.41f) + curveToRelative(0.2f, 0.14f, 0.46f, 0.12f, 0.64f, -0.06f) + lineToRelative(0.05f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.63f) + lineTo(4.7f, 18.0f) + lineTo(9.6f, 18.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.41f, -0.5f) + verticalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.41f) + lineTo(4.71f, 17.0f) + lineToRelative(1.65f, -1.65f) + lineToRelative(0.05f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.76f, -0.63f) + lineToRelative(-2.52f, 2.51f) + lineToRelative(-0.05f, 0.07f) + lineToRelative(-0.03f, 0.06f) + lineToRelative(-0.03f, 0.08f) + lineToRelative(-0.01f, 0.09f) + verticalLineToRelative(0.1f) + lineToRelative(0.02f, 0.1f) + lineToRelative(0.02f, 0.05f) + lineToRelative(0.04f, 0.08f) + lineToRelative(0.04f, 0.05f) + lineToRelative(2.52f, 2.51f) + close() + } + } + return _textGrammarArrowRight!! + } + +private var _textGrammarArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextGrammarCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextGrammarCheckmark.kt new file mode 100644 index 00000000..7b9eaa1c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextGrammarCheckmark.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextGrammarCheckmark: ImageVector + get() { + if (_textGrammarCheckmark != null) { + return _textGrammarCheckmark!! + } + _textGrammarCheckmark = fluentIcon(name = "Filled.TextGrammarCheckmark") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(20.15f, 15.15f) + lineTo(16.05f, 19.24f) + lineTo(14.9f, 17.7f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.8f, 0.6f) + lineToRelative(1.5f, 2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.75f, 0.05f) + lineToRelative(4.5f, -4.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + close() + moveTo(11.02f, 17.0f) + lineTo(2.88f, 17.0f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 19.0f) + horizontalLineToRelative(8.17f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -0.15f, -2.0f) + close() + moveTo(11.5f, 15.0f) + lineTo(3.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + horizontalLineToRelative(9.93f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.31f, 2.0f) + close() + moveTo(3.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(21.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(3.0f, 11.0f) + close() + moveTo(21.0f, 5.0f) + lineTo(2.88f, 5.0f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 7.0f) + horizontalLineToRelative(18.12f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 21.0f, 5.0f) + close() + } + } + return _textGrammarCheckmark!! + } + +private var _textGrammarCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextGrammarDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextGrammarDismiss.kt new file mode 100644 index 00000000..8ddf3f99 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextGrammarDismiss.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextGrammarDismiss: ImageVector + get() { + if (_textGrammarDismiss != null) { + return _textGrammarDismiss!! + } + _textGrammarDismiss = fluentIcon(name = "Filled.TextGrammarDismiss") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(15.02f, 15.02f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.71f) + lineToRelative(1.77f, 1.77f) + lineToRelative(-1.76f, 1.77f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, 0.7f) + lineToRelative(1.77f, -1.76f) + lineToRelative(1.77f, 1.77f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, -0.71f) + lineToRelative(-1.76f, -1.77f) + lineToRelative(1.77f, -1.77f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.78f, 1.76f) + lineToRelative(-1.77f, -1.77f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + close() + moveTo(11.02f, 17.0f) + lineTo(2.88f, 17.0f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 19.0f) + horizontalLineToRelative(8.17f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -0.15f, -2.0f) + close() + moveTo(11.5f, 15.0f) + lineTo(3.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + horizontalLineToRelative(9.93f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.31f, 2.0f) + close() + moveTo(3.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(21.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(3.0f, 11.0f) + close() + moveTo(21.0f, 5.0f) + lineTo(2.88f, 5.0f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 7.0f) + horizontalLineToRelative(18.12f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 21.0f, 5.0f) + close() + } + } + return _textGrammarDismiss!! + } + +private var _textGrammarDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextGrammarSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextGrammarSettings.kt new file mode 100644 index 00000000..b47bb9d1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextGrammarSettings.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextGrammarSettings: ImageVector + get() { + if (_textGrammarSettings != null) { + return _textGrammarSettings!! + } + _textGrammarSettings = fluentIcon(name = "Filled.TextGrammarSettings") { + fluentPath { + moveTo(11.02f, 17.0f) + lineTo(2.88f, 17.0f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 19.0f) + horizontalLineToRelative(8.17f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -0.15f, -2.0f) + close() + moveTo(21.0f, 11.0f) + lineTo(3.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(21.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(21.0f, 11.0f) + close() + moveTo(3.0f, 15.0f) + horizontalLineToRelative(8.5f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, 1.31f, -2.0f) + lineTo(2.88f, 13.0f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 15.0f) + close() + moveTo(21.0f, 5.0f) + lineTo(2.88f, 5.0f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 7.0f) + horizontalLineToRelative(18.12f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 21.0f, 5.0f) + close() + moveTo(14.28f, 13.98f) + lineTo(14.08f, 13.28f) + curveToRelative(0.44f, -0.37f, 0.94f, -0.68f, 1.48f, -0.9f) + lineToRelative(0.5f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.9f, 0.0f) + lineToRelative(0.5f, -0.52f) + curveToRelative(0.54f, 0.23f, 1.04f, 0.54f, 1.48f, 0.93f) + lineToRelative(-0.19f, 0.63f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.45f, 2.5f) + lineToRelative(0.54f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, true, 0.0f, 1.8f) + lineToRelative(-0.58f, 0.15f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.44f, 2.5f) + lineToRelative(0.2f, 0.68f) + curveToRelative(-0.44f, 0.38f, -0.94f, 0.7f, -1.48f, 0.91f) + lineToRelative(-0.5f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.9f, 0.0f) + lineToRelative(-0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, true, -1.48f, -0.93f) + lineToRelative(0.19f, -0.63f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.45f, -2.5f) + lineToRelative(-0.54f, -0.14f) + arcToRelative(5.72f, 5.72f, 0.0f, false, true, 0.0f, -1.8f) + lineToRelative(0.58f, -0.15f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.44f, -2.5f) + close() + moveTo(17.5f, 19.0f) + curveToRelative(0.8f, 0.0f, 1.45f, -0.67f, 1.45f, -1.5f) + reflectiveCurveTo(18.3f, 16.0f, 17.5f, 16.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, 0.67f, -1.45f, 1.5f) + reflectiveCurveTo(16.7f, 19.0f, 17.5f, 19.0f) + close() + } + } + return _textGrammarSettings!! + } + +private var _textGrammarSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextGrammarWand.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextGrammarWand.kt new file mode 100644 index 00000000..72c5e748 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextGrammarWand.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextGrammarWand: ImageVector + get() { + if (_textGrammarWand != null) { + return _textGrammarWand!! + } + _textGrammarWand = fluentIcon(name = "Filled.TextGrammarWand") { + fluentPath { + moveTo(3.0f, 17.0f) + horizontalLineToRelative(7.52f) + lineToRelative(-2.0f, 2.0f) + lineTo(3.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(3.0f, 17.0f) + close() + moveTo(3.0f, 15.0f) + horizontalLineToRelative(7.85f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.78f, -2.0f) + lineTo(2.88f, 13.0f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 15.0f) + close() + moveTo(3.0f, 7.0f) + horizontalLineToRelative(18.12f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 21.0f, 5.0f) + lineTo(2.88f, 5.0f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 3.0f, 7.0f) + close() + moveTo(12.72f, 16.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-4.5f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(4.5f, -4.5f) + close() + moveTo(3.0f, 9.0f) + horizontalLineToRelative(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(3.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(3.0f, 9.0f) + close() + moveTo(16.5f, 8.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.66f) + lineToRelative(0.14f, 1.13f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 2.83f, 2.83f) + lineToRelative(1.13f, 0.14f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.48f) + lineToRelative(-1.13f, 0.14f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -2.83f, 2.83f) + lineToRelative(-0.14f, 1.13f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.48f, 0.0f) + lineToRelative(-0.14f, -1.13f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -2.83f, -2.83f) + lineToRelative(-1.13f, -0.14f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.48f) + lineToRelative(1.13f, -0.14f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 2.83f, -2.83f) + lineToRelative(0.14f, -1.13f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 16.5f, 8.0f) + close() + } + } + return _textGrammarWand!! + } + +private var _textGrammarWand: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextHanging.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextHanging.kt new file mode 100644 index 00000000..d4389cd9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextHanging.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextHanging: ImageVector + get() { + if (_textHanging != null) { + return _textHanging!! + } + _textHanging = fluentIcon(name = "Filled.TextHanging") { + fluentPath { + moveTo(21.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(3.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + horizontalLineToRelative(18.0f) + close() + moveTo(14.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(3.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(11.0f) + close() + moveTo(15.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(3.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + close() + moveTo(19.3f, 13.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.4f) + lineTo(19.42f, 16.0f) + lineToRelative(1.3f, 1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 1.4f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) + lineToRelative(2.0f, -2.0f) + close() + } + } + return _textHanging!! + } + +private var _textHanging: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextHeader1.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextHeader1.kt new file mode 100644 index 00000000..7438838d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextHeader1.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextHeader1: ImageVector + get() { + if (_textHeader1 != null) { + return _textHeader1!! + } + _textHeader1 = fluentIcon(name = "Filled.TextHeader1") { + fluentPath { + moveTo(20.18f, 5.02f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 21.0f, 6.03f) + verticalLineTo(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineTo(9.61f) + arcToRelative(5.66f, 5.66f, 0.0f, false, true, -2.18f, 1.34f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.64f, -1.9f) + curveToRelative(1.13f, -0.37f, 2.19f, -1.33f, 2.86f, -3.34f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.14f, -0.7f) + close() + moveTo(3.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(6.0f) + verticalLineTo(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-5.0f) + horizontalLineTo(4.0f) + verticalLineToRelative(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineTo(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + } + } + return _textHeader1!! + } + +private var _textHeader1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextHeader2.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextHeader2.kt new file mode 100644 index 00000000..9d46fb64 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextHeader2.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextHeader2: ImageVector + get() { + if (_textHeader2 != null) { + return _textHeader2!! + } + _textHeader2 = fluentIcon(name = "Filled.TextHeader2") { + fluentPath { + moveTo(15.4f, 7.95f) + curveToRelative(0.19f, -0.4f, 0.8f, -1.2f, 2.35f, -1.2f) + curveToRelative(0.79f, 0.0f, 1.34f, 0.24f, 1.69f, 0.57f) + curveToRelative(0.34f, 0.32f, 0.56f, 0.8f, 0.56f, 1.43f) + curveToRelative(0.0f, 1.83f, -1.14f, 2.8f, -2.73f, 4.02f) + lineToRelative(-0.22f, 0.16f) + curveToRelative(-1.44f, 1.09f, -3.3f, 2.5f, -3.3f, 5.07f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-5.32f) + curveToRelative(0.36f, -0.97f, 1.28f, -1.68f, 2.55f, -2.64f) + curveTo(20.01f, 13.19f, 22.0f, 11.67f, 22.0f, 8.75f) + arcToRelative(3.9f, 3.9f, 0.0f, false, false, -1.19f, -2.88f) + arcToRelative(4.37f, 4.37f, 0.0f, false, false, -3.06f, -1.12f) + curveToRelative(-2.44f, 0.0f, -3.67f, 1.36f, -4.14f, 2.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.78f, 0.9f) + close() + moveTo(4.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) + verticalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineTo(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(5.0f) + horizontalLineTo(4.0f) + verticalLineTo(6.0f) + close() + } + } + return _textHeader2!! + } + +private var _textHeader2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextHeader3.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextHeader3.kt new file mode 100644 index 00000000..1f100eea --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextHeader3.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextHeader3: ImageVector + get() { + if (_textHeader3 != null) { + return _textHeader3!! + } + _textHeader3 = fluentIcon(name = "Filled.TextHeader3") { + fluentPath { + moveTo(15.4f, 7.95f) + curveToRelative(0.19f, -0.4f, 0.8f, -1.2f, 2.35f, -1.2f) + curveToRelative(0.79f, 0.0f, 1.34f, 0.24f, 1.69f, 0.57f) + curveToRelative(0.34f, 0.32f, 0.56f, 0.8f, 0.56f, 1.43f) + curveToRelative(0.0f, 0.58f, -0.14f, 0.95f, -0.32f, 1.21f) + arcToRelative(1.9f, 1.9f, 0.0f, false, true, -0.77f, 0.64f) + curveToRelative(-0.7f, 0.34f, -1.56f, 0.4f, -2.13f, 0.4f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + curveToRelative(0.57f, 0.0f, 1.44f, 0.06f, 2.13f, 0.4f) + curveToRelative(0.33f, 0.16f, 0.6f, 0.37f, 0.77f, 0.64f) + curveToRelative(0.18f, 0.26f, 0.32f, 0.63f, 0.32f, 1.21f) + curveToRelative(0.0f, 0.95f, -0.8f, 2.0f, -2.25f, 2.0f) + curveToRelative(-1.64f, 0.0f, -2.16f, -0.7f, -2.32f, -1.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.86f, 0.74f) + curveToRelative(0.5f, 1.25f, 1.82f, 2.38f, 4.18f, 2.38f) + arcToRelative(4.1f, 4.1f, 0.0f, false, false, 3.6f, -6.33f) + arcToRelative(3.7f, 3.7f, 0.0f, false, false, -0.9f, -0.92f) + curveToRelative(0.33f, -0.24f, 0.64f, -0.54f, 0.9f, -0.92f) + curveToRelative(0.42f, -0.63f, 0.65f, -1.4f, 0.65f, -2.33f) + arcToRelative(3.9f, 3.9f, 0.0f, false, false, -1.19f, -2.88f) + arcToRelative(4.37f, 4.37f, 0.0f, false, false, -3.06f, -1.12f) + curveToRelative(-2.44f, 0.0f, -3.67f, 1.36f, -4.14f, 2.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.78f, 0.9f) + close() + moveTo(4.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) + verticalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineTo(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(5.0f) + horizontalLineTo(4.0f) + verticalLineTo(6.0f) + close() + } + } + return _textHeader3!! + } + +private var _textHeader3: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentDecreaseLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentDecreaseLtr.kt new file mode 100644 index 00000000..db4b75f4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentDecreaseLtr.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextIndentDecreaseLtr: ImageVector + get() { + if (_textIndentDecreaseLtr != null) { + return _textIndentDecreaseLtr!! + } + _textIndentDecreaseLtr = fluentIcon(name = "Filled.TextIndentDecreaseLtr") { + fluentPath { + moveTo(9.0f, 16.0f) + horizontalLineToRelative(8.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(9.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + horizontalLineToRelative(8.62f) + lineTo(9.0f, 16.0f) + close() + moveTo(2.3f, 11.3f) + lineTo(4.3f, 9.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.49f, 1.31f) + lineToRelative(-0.08f, 0.1f) + lineTo(4.4f, 12.0f) + lineToRelative(1.3f, 1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 1.49f) + lineToRelative(-0.1f, -0.08f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.32f) + lineToRelative(0.08f, -0.1f) + lineToRelative(2.0f, -2.0f) + lineToRelative(-2.0f, 2.0f) + close() + moveTo(9.0f, 11.0f) + horizontalLineToRelative(11.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(9.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(20.5f, 11.0f) + lineTo(9.0f, 11.0f) + close() + moveTo(9.0f, 6.0f) + horizontalLineToRelative(8.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(9.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + horizontalLineToRelative(8.62f) + lineTo(9.0f, 6.0f) + close() + } + } + return _textIndentDecreaseLtr!! + } + +private var _textIndentDecreaseLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentDecreaseLtr90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentDecreaseLtr90.kt new file mode 100644 index 00000000..fd8fb076 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentDecreaseLtr90.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextIndentDecreaseLtr90: ImageVector + get() { + if (_textIndentDecreaseLtr90 != null) { + return _textIndentDecreaseLtr90!! + } + _textIndentDecreaseLtr90 = fluentIcon(name = "Filled.TextIndentDecreaseLtr90") { + fluentPath { + moveTo(8.0f, 9.0f) + verticalLineToRelative(8.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(6.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(8.0f, 9.0f) + close() + moveTo(12.7f, 2.3f) + lineTo(14.7f, 4.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.31f, 1.49f) + lineToRelative(-0.1f, -0.08f) + lineTo(12.0f, 4.4f) + lineToRelative(-1.3f, 1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.49f, -1.32f) + lineToRelative(0.08f, -0.1f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) + lineToRelative(0.1f, 0.08f) + close() + moveTo(13.0f, 9.0f) + verticalLineToRelative(11.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(11.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(13.0f, 9.0f) + close() + moveTo(18.0f, 9.0f) + verticalLineToRelative(8.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(16.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(18.0f, 9.0f) + close() + } + } + return _textIndentDecreaseLtr90!! + } + +private var _textIndentDecreaseLtr90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentDecreaseLtrRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentDecreaseLtrRotate270.kt new file mode 100644 index 00000000..84051600 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentDecreaseLtrRotate270.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextIndentDecreaseLtrRotate270: ImageVector + get() { + if (_textIndentDecreaseLtrRotate270 != null) { + return _textIndentDecreaseLtrRotate270!! + } + _textIndentDecreaseLtrRotate270 = fluentIcon(name = + "Filled.TextIndentDecreaseLtrRotate270") { + fluentPath { + moveTo(16.0f, 15.0f) + lineTo(16.0f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(18.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(16.0f, 15.0f) + close() + moveTo(11.3f, 21.7f) + lineTo(9.3f, 19.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.31f, -1.49f) + lineToRelative(0.1f, 0.08f) + lineTo(12.0f, 19.6f) + lineToRelative(1.3f, -1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.49f, 1.32f) + lineToRelative(-0.08f, 0.1f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.08f) + lineToRelative(-0.1f, -0.08f) + close() + moveTo(11.0f, 15.0f) + lineTo(11.0f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(13.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(11.0f, 15.0f) + close() + moveTo(6.0f, 15.0f) + lineTo(6.0f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(8.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(6.0f, 15.0f) + close() + } + } + return _textIndentDecreaseLtrRotate270!! + } + +private var _textIndentDecreaseLtrRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentDecreaseRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentDecreaseRotate270.kt new file mode 100644 index 00000000..b5cd6412 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentDecreaseRotate270.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextIndentDecreaseRotate270: ImageVector + get() { + if (_textIndentDecreaseRotate270 != null) { + return _textIndentDecreaseRotate270!! + } + _textIndentDecreaseRotate270 = fluentIcon(name = "Filled.TextIndentDecreaseRotate270") { + fluentPath { + moveTo(16.0f, 15.0f) + lineTo(16.0f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(18.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(16.0f, 15.0f) + close() + moveTo(11.3f, 21.7f) + lineTo(9.3f, 19.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.31f, -1.49f) + lineToRelative(0.1f, 0.08f) + lineTo(12.0f, 19.6f) + lineToRelative(1.3f, -1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.49f, 1.32f) + lineToRelative(-0.08f, 0.1f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.08f) + lineToRelative(-0.1f, -0.08f) + close() + moveTo(11.0f, 15.0f) + lineTo(11.0f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(13.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(11.0f, 15.0f) + close() + moveTo(6.0f, 15.0f) + lineTo(6.0f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(8.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(6.0f, 15.0f) + close() + } + } + return _textIndentDecreaseRotate270!! + } + +private var _textIndentDecreaseRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentDecreaseRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentDecreaseRotate90.kt new file mode 100644 index 00000000..71b88f00 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentDecreaseRotate90.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextIndentDecreaseRotate90: ImageVector + get() { + if (_textIndentDecreaseRotate90 != null) { + return _textIndentDecreaseRotate90!! + } + _textIndentDecreaseRotate90 = fluentIcon(name = "Filled.TextIndentDecreaseRotate90") { + fluentPath { + moveTo(8.0f, 9.0f) + verticalLineToRelative(8.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(6.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(8.0f, 9.0f) + close() + moveTo(12.7f, 2.3f) + lineTo(14.7f, 4.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.31f, 1.49f) + lineToRelative(-0.1f, -0.08f) + lineTo(12.0f, 4.4f) + lineToRelative(-1.3f, 1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.49f, -1.32f) + lineToRelative(0.08f, -0.1f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) + lineToRelative(0.1f, 0.08f) + close() + moveTo(13.0f, 9.0f) + verticalLineToRelative(11.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(11.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(13.0f, 9.0f) + close() + moveTo(18.0f, 9.0f) + verticalLineToRelative(8.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(16.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(18.0f, 9.0f) + close() + } + } + return _textIndentDecreaseRotate90!! + } + +private var _textIndentDecreaseRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentDecreaseRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentDecreaseRtl.kt new file mode 100644 index 00000000..82400a2a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentDecreaseRtl.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextIndentDecreaseRtl: ImageVector + get() { + if (_textIndentDecreaseRtl != null) { + return _textIndentDecreaseRtl!! + } + _textIndentDecreaseRtl = fluentIcon(name = "Filled.TextIndentDecreaseRtl") { + fluentPath { + moveTo(5.5f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(8.62f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 15.0f, 6.0f) + lineTo(6.38f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.88f, 1.0f) + close() + moveTo(3.5f, 13.0f) + horizontalLineToRelative(11.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, -2.0f) + lineTo(3.38f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, 2.0f) + close() + moveTo(5.5f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, -2.0f) + lineTo(6.38f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.88f, 1.0f) + close() + moveTo(19.61f, 14.79f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, -1.5f) + lineTo(19.6f, 12.0f) + lineToRelative(-1.3f, -1.3f) + lineToRelative(-0.08f, -0.09f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.5f, -1.32f) + lineToRelative(2.0f, 2.0f) + lineToRelative(0.08f, 0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, 1.32f) + lineToRelative(-2.0f, 2.0f) + lineToRelative(-0.1f, 0.08f) + close() + } + } + return _textIndentDecreaseRtl!! + } + +private var _textIndentDecreaseRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentDecreaseRtl90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentDecreaseRtl90.kt new file mode 100644 index 00000000..9e733d8d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentDecreaseRtl90.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextIndentDecreaseRtl90: ImageVector + get() { + if (_textIndentDecreaseRtl90 != null) { + return _textIndentDecreaseRtl90!! + } + _textIndentDecreaseRtl90 = fluentIcon(name = "Filled.TextIndentDecreaseRtl90") { + fluentPath { + moveTo(17.0f, 5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) + lineTo(18.0f, 6.38f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -0.88f) + close() + moveTo(11.0f, 3.5f) + verticalLineToRelative(11.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) + lineTo(13.0f, 3.38f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) + close() + moveTo(7.0f, 5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(8.62f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 8.0f, 15.0f) + lineTo(8.0f, 6.38f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -0.88f) + close() + moveTo(9.21f, 19.61f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.5f, -1.32f) + lineTo(12.0f, 19.6f) + lineToRelative(1.3f, -1.3f) + lineToRelative(0.09f, -0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, 1.5f) + lineToRelative(-2.0f, 2.0f) + lineToRelative(-0.1f, 0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, -0.08f) + lineToRelative(-2.0f, -2.0f) + lineToRelative(-0.08f, -0.1f) + close() + } + } + return _textIndentDecreaseRtl90!! + } + +private var _textIndentDecreaseRtl90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentDecreaseRtlRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentDecreaseRtlRotate270.kt new file mode 100644 index 00000000..6c20c0d5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentDecreaseRtlRotate270.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextIndentDecreaseRtlRotate270: ImageVector + get() { + if (_textIndentDecreaseRtlRotate270 != null) { + return _textIndentDecreaseRtlRotate270!! + } + _textIndentDecreaseRtlRotate270 = fluentIcon(name = + "Filled.TextIndentDecreaseRtlRotate270") { + fluentPath { + moveTo(7.0f, 18.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + lineTo(8.0f, 8.88f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 6.0f, 9.0f) + verticalLineToRelative(8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 0.88f) + close() + moveTo(13.0f, 20.5f) + lineTo(13.0f, 8.88f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 11.0f, 9.0f) + verticalLineToRelative(11.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) + close() + moveTo(17.0f, 18.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + lineTo(18.0f, 8.88f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 16.0f, 9.0f) + verticalLineToRelative(8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 0.88f) + close() + moveTo(14.79f, 4.39f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.5f, 1.32f) + lineTo(12.0f, 4.4f) + lineToRelative(-1.3f, 1.3f) + lineToRelative(-0.09f, 0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, -1.5f) + lineToRelative(2.0f, -2.0f) + lineToRelative(0.1f, -0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, 0.08f) + lineToRelative(2.0f, 2.0f) + lineToRelative(0.08f, 0.1f) + close() + } + } + return _textIndentDecreaseRtlRotate270!! + } + +private var _textIndentDecreaseRtlRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentIncreaseLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentIncreaseLtr.kt new file mode 100644 index 00000000..b6a350f3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentIncreaseLtr.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextIndentIncreaseLtr: ImageVector + get() { + if (_textIndentIncreaseLtr != null) { + return _textIndentIncreaseLtr!! + } + _textIndentIncreaseLtr = fluentIcon(name = "Filled.TextIndentIncreaseLtr") { + fluentPath { + moveTo(9.0f, 16.0f) + horizontalLineToRelative(8.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(9.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + horizontalLineToRelative(8.62f) + lineTo(9.0f, 16.0f) + close() + moveTo(2.3f, 9.3f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 3.6f, 9.2f) + lineToRelative(0.1f, 0.08f) + lineToRelative(2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, 1.32f) + lineToRelative(-0.08f, 0.1f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.5f, -1.32f) + lineToRelative(0.08f, -0.1f) + lineTo(3.6f, 12.0f) + lineToRelative(-1.3f, -1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) + close() + moveTo(9.0f, 11.0f) + horizontalLineToRelative(11.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(9.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(20.5f, 11.0f) + lineTo(9.0f, 11.0f) + close() + moveTo(9.0f, 6.0f) + horizontalLineToRelative(8.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(9.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + horizontalLineToRelative(8.62f) + lineTo(9.0f, 6.0f) + close() + } + } + return _textIndentIncreaseLtr!! + } + +private var _textIndentIncreaseLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentIncreaseLtr90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentIncreaseLtr90.kt new file mode 100644 index 00000000..9f05870e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentIncreaseLtr90.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextIndentIncreaseLtr90: ImageVector + get() { + if (_textIndentIncreaseLtr90 != null) { + return _textIndentIncreaseLtr90!! + } + _textIndentIncreaseLtr90 = fluentIcon(name = "Filled.TextIndentIncreaseLtr90") { + fluentPath { + moveTo(8.0f, 9.0f) + verticalLineToRelative(8.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(6.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(8.0f, 9.0f) + close() + moveTo(14.7f, 2.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.09f, 1.31f) + lineToRelative(-0.08f, 0.1f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.08f) + lineToRelative(-0.1f, -0.08f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -1.5f) + lineToRelative(0.1f, 0.08f) + lineTo(12.0f, 3.6f) + lineToRelative(1.3f, -1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) + close() + moveTo(13.0f, 9.0f) + verticalLineToRelative(11.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(11.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(13.0f, 9.0f) + close() + moveTo(18.0f, 9.0f) + verticalLineToRelative(8.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(16.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(18.0f, 9.0f) + close() + } + } + return _textIndentIncreaseLtr90!! + } + +private var _textIndentIncreaseLtr90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentIncreaseLtrRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentIncreaseLtrRotate270.kt new file mode 100644 index 00000000..c7c3806b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentIncreaseLtrRotate270.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextIndentIncreaseLtrRotate270: ImageVector + get() { + if (_textIndentIncreaseLtrRotate270 != null) { + return _textIndentIncreaseLtrRotate270!! + } + _textIndentIncreaseLtrRotate270 = fluentIcon(name = + "Filled.TextIndentIncreaseLtrRotate270") { + fluentPath { + moveTo(16.0f, 15.0f) + lineTo(16.0f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(18.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(16.0f, 15.0f) + close() + moveTo(9.3f, 21.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.09f, -1.31f) + lineToRelative(0.08f, -0.1f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) + lineToRelative(0.1f, 0.08f) + lineToRelative(2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 1.5f) + lineToRelative(-0.1f, -0.08f) + lineTo(12.0f, 20.4f) + lineToRelative(-1.3f, 1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) + close() + moveTo(11.0f, 15.0f) + lineTo(11.0f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(13.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(11.0f, 15.0f) + close() + moveTo(6.0f, 15.0f) + lineTo(6.0f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(8.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(6.0f, 15.0f) + close() + } + } + return _textIndentIncreaseLtrRotate270!! + } + +private var _textIndentIncreaseLtrRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentIncreaseRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentIncreaseRotate270.kt new file mode 100644 index 00000000..568b3da8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentIncreaseRotate270.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextIndentIncreaseRotate270: ImageVector + get() { + if (_textIndentIncreaseRotate270 != null) { + return _textIndentIncreaseRotate270!! + } + _textIndentIncreaseRotate270 = fluentIcon(name = "Filled.TextIndentIncreaseRotate270") { + fluentPath { + moveTo(16.0f, 15.0f) + lineTo(16.0f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(18.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(16.0f, 15.0f) + close() + moveTo(9.3f, 21.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.09f, -1.31f) + lineToRelative(0.08f, -0.1f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) + lineToRelative(0.1f, 0.08f) + lineToRelative(2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 1.5f) + lineToRelative(-0.1f, -0.08f) + lineTo(12.0f, 20.4f) + lineToRelative(-1.3f, 1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) + close() + moveTo(11.0f, 15.0f) + lineTo(11.0f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(13.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(11.0f, 15.0f) + close() + moveTo(6.0f, 15.0f) + lineTo(6.0f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(8.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(6.0f, 15.0f) + close() + } + } + return _textIndentIncreaseRotate270!! + } + +private var _textIndentIncreaseRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentIncreaseRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentIncreaseRotate90.kt new file mode 100644 index 00000000..1c4ae2e5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentIncreaseRotate90.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextIndentIncreaseRotate90: ImageVector + get() { + if (_textIndentIncreaseRotate90 != null) { + return _textIndentIncreaseRotate90!! + } + _textIndentIncreaseRotate90 = fluentIcon(name = "Filled.TextIndentIncreaseRotate90") { + fluentPath { + moveTo(8.0f, 9.0f) + verticalLineToRelative(8.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(6.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(8.0f, 9.0f) + close() + moveTo(14.7f, 2.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.09f, 1.31f) + lineToRelative(-0.08f, 0.1f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.08f) + lineToRelative(-0.1f, -0.08f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -1.5f) + lineToRelative(0.1f, 0.08f) + lineTo(12.0f, 3.6f) + lineToRelative(1.3f, -1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) + close() + moveTo(13.0f, 9.0f) + verticalLineToRelative(11.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(11.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(13.0f, 9.0f) + close() + moveTo(18.0f, 9.0f) + verticalLineToRelative(8.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(16.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(18.0f, 9.0f) + close() + } + } + return _textIndentIncreaseRotate90!! + } + +private var _textIndentIncreaseRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentIncreaseRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentIncreaseRtl.kt new file mode 100644 index 00000000..1cb13d02 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentIncreaseRtl.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextIndentIncreaseRtl: ImageVector + get() { + if (_textIndentIncreaseRtl != null) { + return _textIndentIncreaseRtl!! + } + _textIndentIncreaseRtl = fluentIcon(name = "Filled.TextIndentIncreaseRtl") { + fluentPath { + moveTo(15.0f, 8.0f) + lineTo(6.5f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(15.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(6.5f, 8.0f) + lineTo(15.0f, 8.0f) + close() + moveTo(21.7f, 14.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.31f, 0.09f) + lineToRelative(-0.1f, -0.08f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.08f, -1.32f) + lineToRelative(0.08f, -0.1f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.5f, 1.32f) + lineToRelative(-0.08f, 0.1f) + lineTo(20.4f, 12.0f) + lineToRelative(1.3f, 1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.4f) + close() + moveTo(15.0f, 13.0f) + lineTo(3.5f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(15.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(3.5f, 13.0f) + lineTo(15.0f, 13.0f) + close() + moveTo(15.0f, 18.0f) + lineTo(6.5f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(15.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(6.5f, 18.0f) + lineTo(15.0f, 18.0f) + close() + } + } + return _textIndentIncreaseRtl!! + } + +private var _textIndentIncreaseRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentIncreaseRtl90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentIncreaseRtl90.kt new file mode 100644 index 00000000..291ce2e5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentIncreaseRtl90.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextIndentIncreaseRtl90: ImageVector + get() { + if (_textIndentIncreaseRtl90 != null) { + return _textIndentIncreaseRtl90!! + } + _textIndentIncreaseRtl90 = fluentIcon(name = "Filled.TextIndentIncreaseRtl90") { + fluentPath { + moveTo(16.0f, 15.0f) + lineTo(16.0f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(18.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(16.0f, 6.5f) + lineTo(16.0f, 15.0f) + close() + moveTo(9.3f, 21.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.09f, -1.31f) + lineToRelative(0.08f, -0.1f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.08f) + lineToRelative(0.1f, 0.08f) + lineToRelative(2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 1.5f) + lineToRelative(-0.1f, -0.08f) + lineTo(12.0f, 20.4f) + lineToRelative(-1.3f, 1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) + close() + moveTo(11.0f, 15.0f) + lineTo(11.0f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(13.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(11.0f, 3.5f) + lineTo(11.0f, 15.0f) + close() + moveTo(6.0f, 15.0f) + lineTo(6.0f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(8.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(6.0f, 6.5f) + lineTo(6.0f, 15.0f) + close() + } + } + return _textIndentIncreaseRtl90!! + } + +private var _textIndentIncreaseRtl90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentIncreaseRtlRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentIncreaseRtlRotate270.kt new file mode 100644 index 00000000..535921a0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextIndentIncreaseRtlRotate270.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextIndentIncreaseRtlRotate270: ImageVector + get() { + if (_textIndentIncreaseRtlRotate270 != null) { + return _textIndentIncreaseRtlRotate270!! + } + _textIndentIncreaseRtlRotate270 = fluentIcon(name = + "Filled.TextIndentIncreaseRtlRotate270") { + fluentPath { + moveTo(8.0f, 9.0f) + verticalLineToRelative(8.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(6.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + verticalLineToRelative(8.62f) + lineTo(8.0f, 9.0f) + close() + moveTo(14.7f, 2.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.09f, 1.31f) + lineToRelative(-0.08f, 0.1f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 0.08f) + lineToRelative(-0.1f, -0.08f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -1.5f) + lineToRelative(0.1f, 0.08f) + lineTo(12.0f, 3.6f) + lineToRelative(1.3f, -1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) + close() + moveTo(13.0f, 9.0f) + verticalLineToRelative(11.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(11.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + lineTo(13.0f, 20.5f) + lineTo(13.0f, 9.0f) + close() + moveTo(18.0f, 9.0f) + verticalLineToRelative(8.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(16.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, -0.12f) + verticalLineToRelative(8.62f) + lineTo(18.0f, 9.0f) + close() + } + } + return _textIndentIncreaseRtlRotate270!! + } + +private var _textIndentIncreaseRtlRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextItalic.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextItalic.kt new file mode 100644 index 00000000..ac931a2a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextItalic.kt @@ -0,0 +1,37 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextItalic: ImageVector + get() { + if (_textItalic != null) { + return _textItalic!! + } + _textItalic = fluentIcon(name = "Filled.TextItalic") { + fluentPath { + moveTo(10.65f, 18.5f) + horizontalLineToRelative(3.85f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + horizontalLineTo(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(3.5f) + lineTo(13.34f, 6.0f) + horizontalLineTo(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + horizontalLineToRelative(8.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + horizontalLineToRelative(-3.02f) + lineToRelative(-4.83f, 12.5f) + close() + } + } + return _textItalic!! + } + +private var _textItalic: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextLineSpacing.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextLineSpacing.kt new file mode 100644 index 00000000..973fef0a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextLineSpacing.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextLineSpacing: ImageVector + get() { + if (_textLineSpacing != null) { + return _textLineSpacing!! + } + _textLineSpacing = fluentIcon(name = "Filled.TextLineSpacing") { + fluentPath { + moveTo(20.0f, 6.41f) + lineTo(20.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(18.0f, 6.41f) + lineToRelative(-0.3f, 0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.4f, -1.42f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) + lineToRelative(2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 1.42f) + lineToRelative(-0.3f, -0.3f) + close() + moveTo(2.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(3.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(2.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(3.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(3.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(3.0f, 17.0f) + close() + moveTo(20.0f, 14.0f) + verticalLineToRelative(3.59f) + lineToRelative(0.3f, -0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.42f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, -1.42f) + lineToRelative(0.3f, 0.3f) + lineTo(18.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + close() + } + } + return _textLineSpacing!! + } + +private var _textLineSpacing: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextMore.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextMore.kt new file mode 100644 index 00000000..de69379e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextMore.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextMore: ImageVector + get() { + if (_textMore != null) { + return _textMore!! + } + _textMore = fluentIcon(name = "Filled.TextMore") { + fluentPath { + moveTo(10.67f, 2.61f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.84f, 0.0f) + lineToRelative(-6.75f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.84f, 0.78f) + lineTo(5.77f, 15.0f) + horizontalLineToRelative(7.96f) + lineTo(15.0f, 18.05f) + arcToRelative(2.51f, 2.51f, 0.0f, false, true, 2.49f, 0.95f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.08f, -0.39f) + lineToRelative(-6.75f, -16.0f) + close() + moveTo(12.88f, 13.0f) + lineTo(6.62f, 13.0f) + lineToRelative(3.13f, -7.43f) + lineTo(12.88f, 13.0f) + close() + moveTo(10.5f, 22.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + close() + moveTo(17.0f, 20.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + moveTo(22.0f, 20.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + } + } + return _textMore!! + } + +private var _textMore: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextNumberFormat.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextNumberFormat.kt new file mode 100644 index 00000000..fb82fe6c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextNumberFormat.kt @@ -0,0 +1,155 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextNumberFormat: ImageVector + get() { + if (_textNumberFormat != null) { + return _textNumberFormat!! + } + _textNumberFormat = fluentIcon(name = "Filled.TextNumberFormat") { + fluentPath { + moveTo(5.96f, 3.42f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.88f, -0.03f) + lineToRelative(-2.51f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.86f, 0.72f) + lineToRelative(0.22f, -0.56f) + lineTo(6.2f, 10.05f) + lineToRelative(0.19f, 0.53f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.89f, -0.66f) + lineToRelative(-2.31f, -6.5f) + close() + moveTo(5.48f, 8.05f) + lineTo(4.42f, 8.05f) + lineToRelative(0.56f, -1.42f) + lineToRelative(0.5f, 1.42f) + close() + moveTo(9.0f, 3.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + lineTo(12.19f, 2.75f) + curveToRelative(0.21f, 0.0f, 0.85f, 0.0f, 1.45f, 0.33f) + curveToRelative(0.33f, 0.19f, 0.64f, 0.47f, 0.86f, 0.88f) + curveToRelative(0.22f, 0.4f, 0.33f, 0.88f, 0.33f, 1.42f) + curveToRelative(0.0f, 0.52f, -0.12f, 0.97f, -0.32f, 1.33f) + curveToRelative(0.14f, 0.13f, 0.26f, 0.28f, 0.37f, 0.46f) + curveToRelative(0.25f, 0.41f, 0.37f, 0.9f, 0.37f, 1.46f) + arcToRelative(2.4f, 2.4f, 0.0f, false, true, -1.29f, 2.25f) + curveToRelative(-0.62f, 0.33f, -1.29f, 0.37f, -1.58f, 0.37f) + lineTo(10.0f, 11.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineToRelative(-6.5f) + close() + moveTo(12.17f, 6.0f) + curveToRelative(0.13f, 0.0f, 0.33f, -0.03f, 0.46f, -0.11f) + curveToRelative(0.05f, -0.03f, 0.1f, -0.07f, 0.12f, -0.12f) + arcToRelative(0.8f, 0.8f, 0.0f, false, false, 0.08f, -0.4f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.09f, -0.46f) + arcToRelative(0.19f, 0.19f, 0.0f, false, false, -0.08f, -0.08f) + arcToRelative(1.09f, 1.09f, 0.0f, false, false, -0.5f, -0.08f) + lineTo(11.0f, 4.75f) + lineTo(11.0f, 6.0f) + horizontalLineToRelative(1.17f) + close() + moveTo(12.17f, 8.0f) + lineTo(11.0f, 8.0f) + verticalLineToRelative(1.25f) + horizontalLineToRelative(1.38f) + curveToRelative(0.17f, 0.0f, 0.44f, -0.03f, 0.63f, -0.14f) + arcToRelative(0.4f, 0.4f, 0.0f, false, false, 0.17f, -0.14f) + curveToRelative(0.02f, -0.04f, 0.07f, -0.14f, 0.07f, -0.34f) + curveToRelative(0.0f, -0.26f, -0.05f, -0.38f, -0.08f, -0.42f) + arcToRelative(0.28f, 0.28f, 0.0f, false, false, -0.13f, -0.11f) + arcToRelative(1.6f, 1.6f, 0.0f, false, false, -0.66f, -0.1f) + horizontalLineToRelative(-0.2f) + close() + moveTo(20.64f, 3.05f) + curveToRelative(0.69f, 0.34f, 1.2f, 0.97f, 1.55f, 1.92f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.88f, 0.68f) + curveToRelative(-0.22f, -0.6f, -0.45f, -0.75f, -0.55f, -0.8f) + curveToRelative(-0.16f, -0.08f, -0.35f, -0.1f, -0.76f, -0.1f) + arcToRelative(0.9f, 0.9f, 0.0f, false, false, -0.64f, 0.22f) + curveToRelative(-0.15f, 0.13f, -0.29f, 0.35f, -0.4f, 0.63f) + arcToRelative(3.63f, 3.63f, 0.0f, false, false, -0.21f, 1.14f) + verticalLineToRelative(0.01f) + curveToRelative(0.0f, 0.53f, 0.01f, 1.16f, 0.21f, 1.67f) + curveToRelative(0.1f, 0.24f, 0.22f, 0.42f, 0.38f, 0.55f) + curveToRelative(0.15f, 0.12f, 0.38f, 0.24f, 0.77f, 0.29f) + curveToRelative(0.12f, 0.0f, 0.38f, 0.0f, 0.63f, -0.08f) + curveToRelative(0.22f, -0.09f, 0.44f, -0.24f, 0.6f, -0.58f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.82f, 0.82f) + curveToRelative(-0.84f, 1.85f, -2.68f, 1.89f, -3.27f, 1.82f) + arcToRelative(3.4f, 3.4f, 0.0f, false, true, -1.83f, -0.73f) + arcToRelative(3.3f, 3.3f, 0.0f, false, true, -0.96f, -1.36f) + arcToRelative(6.4f, 6.4f, 0.0f, false, true, 0.0f, -4.25f) + curveToRelative(0.17f, -0.47f, 0.46f, -1.0f, 0.94f, -1.43f) + arcToRelative(2.89f, 2.89f, 0.0f, false, true, 2.0f, -0.72f) + curveToRelative(0.36f, 0.0f, 0.99f, 0.0f, 1.6f, 0.3f) + close() + moveTo(17.89f, 14.93f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.18f, 0.28f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.92f, -0.55f) + curveToRelative(0.1f, -0.36f, 0.33f, -0.84f, 0.77f, -1.23f) + arcToRelative(2.85f, 2.85f, 0.0f, false, true, 1.94f, -0.68f) + curveToRelative(1.7f, 0.0f, 2.75f, 1.26f, 2.75f, 2.48f) + curveToRelative(0.0f, 0.42f, -0.08f, 1.11f, -0.54f, 1.72f) + arcToRelative(2.2f, 2.2f, 0.0f, false, true, 0.54f, 1.53f) + curveToRelative(0.0f, 0.9f, -0.3f, 1.64f, -0.9f, 2.15f) + curveToRelative(-0.57f, 0.47f, -1.26f, 0.62f, -1.85f, 0.62f) + curveToRelative(-0.54f, 0.0f, -1.12f, -0.09f, -1.63f, -0.41f) + arcToRelative(2.62f, 2.62f, 0.0f, false, true, -1.07f, -1.46f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.9f, -0.62f) + curveToRelative(0.1f, 0.27f, 0.19f, 0.35f, 0.24f, 0.39f) + curveToRelative(0.07f, 0.04f, 0.22f, 0.1f, 0.56f, 0.1f) + curveToRelative(0.29f, 0.0f, 0.47f, -0.07f, 0.56f, -0.15f) + curveToRelative(0.06f, -0.05f, 0.19f, -0.2f, 0.19f, -0.62f) + curveToRelative(0.0f, -0.15f, -0.03f, -0.2f, -0.05f, -0.21f) + arcToRelative(0.41f, 0.41f, 0.0f, false, false, -0.16f, -0.12f) + curveToRelative(-0.24f, -0.11f, -0.57f, -0.15f, -0.83f, -0.15f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + curveToRelative(0.67f, 0.0f, 0.85f, -0.2f, 0.9f, -0.26f) + arcToRelative(0.83f, 0.83f, 0.0f, false, false, 0.14f, -0.51f) + curveToRelative(0.0f, -0.09f, -0.12f, -0.48f, -0.75f, -0.48f) + curveToRelative(-0.36f, 0.0f, -0.53f, 0.1f, -0.61f, 0.18f) + close() + moveTo(10.75f, 15.53f) + curveToRelative(0.0f, -0.42f, 0.35f, -0.78f, 0.74f, -0.78f) + curveToRelative(0.33f, 0.0f, 0.57f, 0.16f, 0.68f, 0.32f) + curveToRelative(0.08f, 0.12f, 0.17f, 0.37f, -0.1f, 0.83f) + curveToRelative(-0.13f, 0.22f, -0.33f, 0.42f, -0.62f, 0.66f) + lineToRelative(-0.48f, 0.35f) + lineToRelative(-0.08f, 0.05f) + lineToRelative(-0.48f, 0.35f) + curveToRelative(-0.76f, 0.57f, -1.66f, 1.42f, -1.66f, 2.94f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(3.45f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + horizontalLineToRelative(-2.0f) + lineToRelative(0.42f, -0.34f) + lineToRelative(0.42f, -0.31f) + lineToRelative(0.08f, -0.06f) + curveToRelative(0.18f, -0.12f, 0.38f, -0.26f, 0.57f, -0.41f) + curveToRelative(0.38f, -0.3f, 0.8f, -0.7f, 1.1f, -1.21f) + curveToRelative(0.6f, -1.02f, 0.6f, -2.1f, 0.06f, -2.94f) + arcToRelative(2.78f, 2.78f, 0.0f, false, false, -5.1f, 1.54f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + close() + moveTo(5.02f, 16.79f) + lineTo(4.81f, 16.95f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.11f, -1.67f) + arcToRelative(3.31f, 3.31f, 0.0f, false, false, 1.35f, -1.74f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.97f, 0.21f) + verticalLineToRelative(6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-3.46f) + close() + } + } + return _textNumberFormat!! + } + +private var _textNumberFormat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextNumberListLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextNumberListLtr.kt new file mode 100644 index 00000000..70d97082 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextNumberListLtr.kt @@ -0,0 +1,104 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextNumberListLtr: ImageVector + get() { + if (_textNumberListLtr != null) { + return _textNumberListLtr!! + } + _textNumberListLtr = fluentIcon(name = "Filled.TextNumberListLtr") { + fluentPath { + moveTo(6.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.43f, -0.3f) + arcToRelative(1.42f, 1.42f, 0.0f, false, true, -0.07f, 0.13f) + curveToRelative(-0.05f, 0.1f, -0.13f, 0.23f, -0.24f, 0.38f) + curveToRelative(-0.22f, 0.32f, -0.52f, 0.66f, -0.9f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.79f, 1.28f) + lineToRelative(0.35f, -0.25f) + verticalLineToRelative(2.36f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) + verticalLineToRelative(-4.5f) + close() + moveTo(19.5f, 18.0f) + horizontalLineToRelative(-8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, 2.0f) + horizontalLineToRelative(8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, -2.0f) + close() + moveTo(19.5f, 11.5f) + horizontalLineToRelative(-8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, 2.0f) + horizontalLineToRelative(8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, -2.0f) + close() + moveTo(19.5f, 5.0f) + horizontalLineToRelative(-8.62f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 11.0f, 7.0f) + horizontalLineToRelative(8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, -2.0f) + close() + moveTo(5.15f, 10.52f) + curveToRelative(-0.3f, -0.05f, -0.68f, 0.07f, -0.87f, 0.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + arcToRelative(2.57f, 2.57f, 0.0f, false, true, 2.2f, -0.68f) + curveToRelative(0.39f, 0.07f, 0.8f, 0.26f, 1.1f, 0.6f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 7.0f, 11.0f) + curveToRelative(0.0f, 0.62f, -0.27f, 1.08f, -0.6f, 1.42f) + curveToRelative(-0.28f, 0.28f, -0.64f, 0.51f, -0.91f, 0.69f) + lineToRelative(-0.08f, 0.05f) + curveToRelative(-0.2f, 0.13f, -0.36f, 0.24f, -0.48f, 0.34f) + horizontalLineToRelative(1.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + curveToRelative(0.0f, -1.31f, 0.98f, -1.95f, 1.58f, -2.34f) + lineToRelative(0.06f, -0.04f) + curveToRelative(0.31f, -0.2f, 0.53f, -0.34f, 0.68f, -0.5f) + curveToRelative(0.14f, -0.14f, 0.18f, -0.24f, 0.18f, -0.37f) + curveToRelative(0.0f, -0.22f, -0.06f, -0.32f, -0.1f, -0.36f) + arcToRelative(0.42f, 0.42f, 0.0f, false, false, -0.25f, -0.12f) + close() + moveTo(2.97f, 21.28f) + reflectiveCurveToRelative(0.1f, 0.08f, 0.0f, 0.0f) + lineToRelative(0.01f, 0.01f) + lineToRelative(0.01f, 0.01f) + arcToRelative(1.4f, 1.4f, 0.0f, false, false, 0.15f, 0.13f) + arcTo(3.24f, 3.24f, 0.0f, false, false, 5.0f, 22.0f) + curveToRelative(0.64f, 0.0f, 1.2f, -0.18f, 1.6f, -0.54f) + curveToRelative(0.4f, -0.36f, 0.61f, -0.86f, 0.6f, -1.36f) + curveToRelative(-0.02f, -0.42f, -0.17f, -0.8f, -0.43f, -1.1f) + arcToRelative(1.73f, 1.73f, 0.0f, false, false, -0.17f, -2.46f) + curveTo(6.2f, 16.18f, 5.64f, 16.0f, 5.0f, 16.0f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, -1.86f, 0.57f) + arcToRelative(1.95f, 1.95f, 0.0f, false, false, -0.15f, 0.13f) + lineToRelative(-0.01f, 0.01f) + lineToRelative(-0.01f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.07f, 1.05f) + lineToRelative(0.17f, -0.1f) + curveToRelative(0.16f, -0.08f, 0.42f, -0.17f, 0.79f, -0.17f) + curveToRelative(0.36f, 0.0f, 0.54f, 0.1f, 0.6f, 0.16f) + curveToRelative(0.08f, 0.07f, 0.1f, 0.13f, 0.1f, 0.2f) + curveToRelative(0.0f, 0.06f, -0.04f, 0.14f, -0.13f, 0.22f) + curveToRelative(-0.09f, 0.08f, -0.26f, 0.17f, -0.57f, 0.17f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + curveToRelative(0.31f, 0.0f, 0.48f, 0.1f, 0.57f, 0.17f) + curveToRelative(0.1f, 0.08f, 0.12f, 0.16f, 0.13f, 0.23f) + curveToRelative(0.0f, 0.06f, -0.02f, 0.13f, -0.1f, 0.19f) + curveToRelative(-0.06f, 0.06f, -0.24f, 0.16f, -0.6f, 0.16f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.96f, -0.27f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.07f, 1.05f) + close() + moveTo(2.97f, 16.72f) + close() + } + } + return _textNumberListLtr!! + } + +private var _textNumberListLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextNumberListLtr90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextNumberListLtr90.kt new file mode 100644 index 00000000..11a0c031 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextNumberListLtr90.kt @@ -0,0 +1,105 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextNumberListLtr90: ImageVector + get() { + if (_textNumberListLtr90 != null) { + return _textNumberListLtr90!! + } + _textNumberListLtr90 = fluentIcon(name = "Filled.TextNumberListLtr90") { + fluentPath { + moveTo(21.25f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.3f, -1.43f) + arcToRelative(1.47f, 1.47f, 0.0f, false, true, -0.13f, -0.07f) + curveToRelative(-0.1f, -0.05f, -0.23f, -0.13f, -0.38f, -0.24f) + arcToRelative(3.26f, 3.26f, 0.0f, false, true, -0.9f, -0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.28f, 0.79f) + lineToRelative(0.25f, 0.35f) + horizontalLineToRelative(-2.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.5f) + close() + moveTo(6.0f, 19.5f) + verticalLineToRelative(-8.62f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 4.0f, 11.0f) + verticalLineToRelative(8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) + close() + moveTo(12.5f, 19.5f) + verticalLineToRelative(-8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) + verticalLineToRelative(8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) + close() + moveTo(19.0f, 19.5f) + verticalLineToRelative(-8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) + verticalLineToRelative(8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) + close() + moveTo(13.48f, 5.15f) + curveToRelative(0.05f, -0.3f, -0.07f, -0.68f, -0.26f, -0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + curveToRelative(0.56f, 0.56f, 0.81f, 1.43f, 0.68f, 2.2f) + curveToRelative(-0.07f, 0.39f, -0.26f, 0.8f, -0.6f, 1.1f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 13.0f, 7.0f) + curveToRelative(-0.62f, 0.0f, -1.08f, -0.27f, -1.42f, -0.6f) + curveToRelative(-0.28f, -0.28f, -0.51f, -0.64f, -0.69f, -0.91f) + lineToRelative(-0.05f, -0.08f) + curveToRelative(-0.13f, -0.2f, -0.24f, -0.36f, -0.34f, -0.48f) + verticalLineToRelative(1.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + curveToRelative(1.31f, 0.0f, 1.95f, 0.98f, 2.34f, 1.58f) + lineToRelative(0.04f, 0.06f) + curveToRelative(0.2f, 0.31f, 0.34f, 0.53f, 0.5f, 0.68f) + curveToRelative(0.14f, 0.14f, 0.24f, 0.18f, 0.37f, 0.18f) + curveToRelative(0.22f, 0.0f, 0.32f, -0.06f, 0.36f, -0.1f) + curveToRelative(0.05f, -0.04f, 0.1f, -0.12f, 0.12f, -0.25f) + close() + moveTo(2.72f, 2.97f) + reflectiveCurveToRelative(-0.08f, 0.1f, 0.0f, 0.0f) + lineToRelative(-0.01f, 0.01f) + lineToRelative(-0.01f, 0.01f) + arcToRelative(1.46f, 1.46f, 0.0f, false, false, -0.13f, 0.15f) + arcTo(3.24f, 3.24f, 0.0f, false, false, 2.0f, 5.0f) + curveToRelative(0.0f, 0.64f, 0.18f, 1.2f, 0.54f, 1.6f) + curveToRelative(0.36f, 0.4f, 0.86f, 0.61f, 1.36f, 0.6f) + curveToRelative(0.42f, -0.02f, 0.8f, -0.17f, 1.1f, -0.43f) + arcToRelative(1.73f, 1.73f, 0.0f, false, false, 2.46f, -0.17f) + curveTo(7.82f, 6.2f, 8.0f, 5.64f, 8.0f, 5.0f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, -0.57f, -1.86f) + arcTo(1.96f, 1.96f, 0.0f, false, false, 7.3f, 3.0f) + lineToRelative(-0.01f, -0.01f) + lineToRelative(-0.01f, -0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.05f, 1.07f) + lineToRelative(0.1f, 0.17f) + curveToRelative(0.08f, 0.16f, 0.17f, 0.42f, 0.17f, 0.79f) + curveToRelative(0.0f, 0.36f, -0.1f, 0.54f, -0.16f, 0.6f) + arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.2f, 0.1f) + arcToRelative(0.32f, 0.32f, 0.0f, false, true, -0.22f, -0.13f) + curveToRelative(-0.08f, -0.09f, -0.17f, -0.26f, -0.17f, -0.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + curveToRelative(0.0f, 0.31f, -0.1f, 0.48f, -0.17f, 0.57f) + arcToRelative(0.32f, 0.32f, 0.0f, false, true, -0.23f, 0.13f) + arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.19f, -0.1f) + curveToRelative(-0.06f, -0.06f, -0.16f, -0.24f, -0.16f, -0.6f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.27f, -0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.05f, -1.07f) + close() + moveTo(7.28f, 2.97f) + reflectiveCurveToRelative(0.17f, 0.2f, 0.0f, 0.0f) + close() + } + } + return _textNumberListLtr90!! + } + +private var _textNumberListLtr90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextNumberListLtrRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextNumberListLtrRotate270.kt new file mode 100644 index 00000000..7ecb9005 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextNumberListLtrRotate270.kt @@ -0,0 +1,104 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextNumberListLtrRotate270: ImageVector + get() { + if (_textNumberListLtrRotate270 != null) { + return _textNumberListLtrRotate270!! + } + _textNumberListLtrRotate270 = fluentIcon(name = "Filled.TextNumberListLtrRotate270") { + fluentPath { + moveTo(2.75f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.3f, 1.43f) + arcToRelative(1.2f, 1.2f, 0.0f, false, true, 0.13f, 0.07f) + curveToRelative(0.1f, 0.05f, 0.23f, 0.13f, 0.38f, 0.24f) + curveToRelative(0.32f, 0.22f, 0.66f, 0.52f, 0.9f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.28f, -0.79f) + arcToRelative(3.97f, 3.97f, 0.0f, false, false, -0.25f, -0.35f) + horizontalLineToRelative(2.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + close() + moveTo(18.0f, 4.5f) + verticalLineToRelative(8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) + lineTo(20.0f, 4.38f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) + close() + moveTo(11.5f, 4.5f) + verticalLineToRelative(8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) + lineTo(13.5f, 4.38f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) + close() + moveTo(5.0f, 4.5f) + verticalLineToRelative(8.62f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 7.0f, 13.0f) + lineTo(7.0f, 4.38f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) + close() + moveTo(10.52f, 18.85f) + curveToRelative(-0.05f, 0.3f, 0.07f, 0.68f, 0.26f, 0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + arcToRelative(2.57f, 2.57f, 0.0f, false, true, -0.68f, -2.2f) + curveToRelative(0.07f, -0.39f, 0.26f, -0.8f, 0.6f, -1.1f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 11.0f, 17.0f) + curveToRelative(0.62f, 0.0f, 1.08f, 0.27f, 1.42f, 0.6f) + curveToRelative(0.28f, 0.28f, 0.51f, 0.64f, 0.69f, 0.91f) + lineToRelative(0.05f, 0.08f) + curveToRelative(0.13f, 0.2f, 0.24f, 0.36f, 0.34f, 0.48f) + verticalLineToRelative(-1.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + curveToRelative(-1.31f, 0.0f, -1.95f, -0.98f, -2.34f, -1.58f) + lineToRelative(-0.04f, -0.06f) + arcToRelative(4.2f, 4.2f, 0.0f, false, false, -0.5f, -0.69f) + curveToRelative(-0.14f, -0.13f, -0.24f, -0.17f, -0.37f, -0.17f) + curveToRelative(-0.22f, 0.0f, -0.32f, 0.06f, -0.36f, 0.1f) + arcToRelative(0.42f, 0.42f, 0.0f, false, false, -0.12f, 0.25f) + close() + moveTo(21.28f, 21.03f) + reflectiveCurveToRelative(0.08f, -0.1f, 0.0f, 0.0f) + lineToRelative(0.01f, -0.01f) + lineToRelative(0.01f, -0.01f) + arcToRelative(1.58f, 1.58f, 0.0f, false, false, 0.13f, -0.15f) + arcTo(3.24f, 3.24f, 0.0f, false, false, 22.0f, 19.0f) + curveToRelative(0.0f, -0.64f, -0.18f, -1.2f, -0.54f, -1.6f) + curveToRelative(-0.36f, -0.41f, -0.86f, -0.61f, -1.36f, -0.6f) + curveToRelative(-0.42f, 0.02f, -0.8f, 0.17f, -1.1f, 0.43f) + arcToRelative(1.73f, 1.73f, 0.0f, false, false, -2.46f, 0.17f) + curveToRelative(-0.36f, 0.4f, -0.54f, 0.96f, -0.54f, 1.6f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, 0.57f, 1.86f) + arcToRelative(1.99f, 1.99f, 0.0f, false, false, 0.13f, 0.15f) + lineToRelative(0.01f, 0.01f) + lineToRelative(0.01f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.05f, -1.07f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.27f, -0.96f) + curveToRelative(0.0f, -0.36f, 0.1f, -0.54f, 0.16f, -0.6f) + arcToRelative(0.23f, 0.23f, 0.0f, false, true, 0.2f, -0.1f) + curveToRelative(0.06f, 0.0f, 0.14f, 0.04f, 0.22f, 0.13f) + curveToRelative(0.08f, 0.09f, 0.17f, 0.26f, 0.17f, 0.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + curveToRelative(0.0f, -0.31f, 0.1f, -0.48f, 0.17f, -0.57f) + curveToRelative(0.08f, -0.1f, 0.16f, -0.12f, 0.23f, -0.13f) + curveToRelative(0.06f, 0.0f, 0.13f, 0.02f, 0.19f, 0.1f) + curveToRelative(0.06f, 0.06f, 0.16f, 0.24f, 0.16f, 0.6f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.27f, 0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.05f, 1.07f) + close() + moveTo(16.72f, 21.03f) + reflectiveCurveToRelative(-0.17f, -0.2f, 0.0f, 0.0f) + close() + } + } + return _textNumberListLtrRotate270!! + } + +private var _textNumberListLtrRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextNumberListRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextNumberListRotate270.kt new file mode 100644 index 00000000..0557767a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextNumberListRotate270.kt @@ -0,0 +1,104 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextNumberListRotate270: ImageVector + get() { + if (_textNumberListRotate270 != null) { + return _textNumberListRotate270!! + } + _textNumberListRotate270 = fluentIcon(name = "Filled.TextNumberListRotate270") { + fluentPath { + moveTo(2.75f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.3f, 1.43f) + arcToRelative(2.3f, 2.3f, 0.0f, false, true, 0.13f, 0.07f) + curveToRelative(0.1f, 0.05f, 0.23f, 0.13f, 0.38f, 0.24f) + curveToRelative(0.32f, 0.22f, 0.66f, 0.52f, 0.9f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.28f, -0.79f) + arcToRelative(3.97f, 3.97f, 0.0f, false, false, -0.25f, -0.35f) + horizontalLineToRelative(2.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + close() + moveTo(18.0f, 4.5f) + verticalLineToRelative(8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) + lineTo(20.0f, 4.38f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) + close() + moveTo(11.5f, 4.5f) + verticalLineToRelative(8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) + lineTo(13.5f, 4.38f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) + close() + moveTo(5.0f, 4.5f) + verticalLineToRelative(8.62f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 7.0f, 13.0f) + lineTo(7.0f, 4.38f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) + close() + moveTo(10.52f, 18.85f) + curveToRelative(-0.05f, 0.3f, 0.07f, 0.68f, 0.26f, 0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + arcToRelative(2.57f, 2.57f, 0.0f, false, true, -0.68f, -2.2f) + curveToRelative(0.07f, -0.39f, 0.26f, -0.8f, 0.6f, -1.1f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 11.0f, 17.0f) + curveToRelative(0.62f, 0.0f, 1.08f, 0.27f, 1.42f, 0.6f) + curveToRelative(0.28f, 0.28f, 0.51f, 0.64f, 0.69f, 0.91f) + lineToRelative(0.05f, 0.08f) + curveToRelative(0.13f, 0.2f, 0.24f, 0.36f, 0.34f, 0.48f) + verticalLineToRelative(-1.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + curveToRelative(-1.31f, 0.0f, -1.95f, -0.98f, -2.34f, -1.58f) + lineToRelative(-0.04f, -0.06f) + arcToRelative(4.2f, 4.2f, 0.0f, false, false, -0.5f, -0.68f) + curveToRelative(-0.14f, -0.14f, -0.24f, -0.18f, -0.37f, -0.18f) + curveToRelative(-0.22f, 0.0f, -0.32f, 0.06f, -0.36f, 0.1f) + arcToRelative(0.42f, 0.42f, 0.0f, false, false, -0.12f, 0.25f) + close() + moveTo(21.28f, 21.03f) + reflectiveCurveToRelative(0.08f, -0.1f, 0.0f, 0.0f) + lineToRelative(0.01f, -0.01f) + lineToRelative(0.01f, -0.01f) + arcToRelative(1.42f, 1.42f, 0.0f, false, false, 0.13f, -0.15f) + arcTo(3.24f, 3.24f, 0.0f, false, false, 22.0f, 19.0f) + curveToRelative(0.0f, -0.64f, -0.18f, -1.2f, -0.54f, -1.6f) + curveToRelative(-0.36f, -0.4f, -0.86f, -0.61f, -1.36f, -0.6f) + curveToRelative(-0.42f, 0.02f, -0.8f, 0.17f, -1.1f, 0.43f) + arcToRelative(1.73f, 1.73f, 0.0f, false, false, -2.46f, 0.17f) + curveToRelative(-0.36f, 0.4f, -0.54f, 0.96f, -0.54f, 1.6f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, 0.57f, 1.86f) + arcToRelative(1.95f, 1.95f, 0.0f, false, false, 0.13f, 0.15f) + lineToRelative(0.01f, 0.01f) + lineToRelative(0.01f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.05f, -1.07f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.27f, -0.96f) + curveToRelative(0.0f, -0.36f, 0.1f, -0.54f, 0.16f, -0.6f) + arcToRelative(0.23f, 0.23f, 0.0f, false, true, 0.2f, -0.1f) + curveToRelative(0.06f, 0.0f, 0.14f, 0.04f, 0.22f, 0.13f) + curveToRelative(0.08f, 0.09f, 0.17f, 0.26f, 0.17f, 0.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + curveToRelative(0.0f, -0.31f, 0.1f, -0.48f, 0.17f, -0.57f) + curveToRelative(0.08f, -0.1f, 0.16f, -0.12f, 0.23f, -0.13f) + curveToRelative(0.06f, 0.0f, 0.13f, 0.02f, 0.19f, 0.1f) + curveToRelative(0.06f, 0.06f, 0.16f, 0.24f, 0.16f, 0.6f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.27f, 0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.05f, 1.07f) + close() + moveTo(16.72f, 21.03f) + reflectiveCurveToRelative(-0.17f, -0.2f, 0.0f, 0.0f) + close() + } + } + return _textNumberListRotate270!! + } + +private var _textNumberListRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextNumberListRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextNumberListRotate90.kt new file mode 100644 index 00000000..034d73c4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextNumberListRotate90.kt @@ -0,0 +1,105 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextNumberListRotate90: ImageVector + get() { + if (_textNumberListRotate90 != null) { + return _textNumberListRotate90!! + } + _textNumberListRotate90 = fluentIcon(name = "Filled.TextNumberListRotate90") { + fluentPath { + moveTo(21.25f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.3f, -1.43f) + arcToRelative(1.47f, 1.47f, 0.0f, false, true, -0.13f, -0.07f) + curveToRelative(-0.1f, -0.05f, -0.23f, -0.13f, -0.38f, -0.24f) + arcToRelative(3.26f, 3.26f, 0.0f, false, true, -0.9f, -0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.28f, 0.79f) + lineToRelative(0.25f, 0.35f) + horizontalLineToRelative(-2.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.5f) + close() + moveTo(6.0f, 19.5f) + verticalLineToRelative(-8.62f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 4.0f, 11.0f) + verticalLineToRelative(8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) + close() + moveTo(12.5f, 19.5f) + verticalLineToRelative(-8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) + verticalLineToRelative(8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) + close() + moveTo(19.0f, 19.5f) + verticalLineToRelative(-8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) + verticalLineToRelative(8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) + close() + moveTo(13.48f, 5.15f) + curveToRelative(0.05f, -0.3f, -0.07f, -0.68f, -0.26f, -0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + curveToRelative(0.56f, 0.56f, 0.81f, 1.43f, 0.68f, 2.2f) + curveToRelative(-0.07f, 0.39f, -0.26f, 0.8f, -0.6f, 1.1f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 13.0f, 7.0f) + curveToRelative(-0.62f, 0.0f, -1.08f, -0.27f, -1.42f, -0.6f) + curveToRelative(-0.28f, -0.28f, -0.51f, -0.64f, -0.69f, -0.91f) + lineToRelative(-0.05f, -0.08f) + curveToRelative(-0.13f, -0.2f, -0.24f, -0.36f, -0.34f, -0.48f) + verticalLineToRelative(1.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + curveToRelative(1.31f, 0.0f, 1.95f, 0.98f, 2.34f, 1.58f) + lineToRelative(0.04f, 0.06f) + curveToRelative(0.2f, 0.31f, 0.34f, 0.53f, 0.5f, 0.68f) + curveToRelative(0.14f, 0.14f, 0.24f, 0.18f, 0.37f, 0.18f) + curveToRelative(0.22f, 0.0f, 0.32f, -0.06f, 0.36f, -0.1f) + curveToRelative(0.05f, -0.04f, 0.1f, -0.12f, 0.12f, -0.25f) + close() + moveTo(2.72f, 2.97f) + reflectiveCurveToRelative(-0.08f, 0.1f, 0.0f, 0.0f) + lineToRelative(-0.01f, 0.01f) + lineToRelative(-0.01f, 0.01f) + arcToRelative(1.46f, 1.46f, 0.0f, false, false, -0.13f, 0.15f) + arcTo(3.24f, 3.24f, 0.0f, false, false, 2.0f, 5.0f) + curveToRelative(0.0f, 0.64f, 0.18f, 1.2f, 0.54f, 1.6f) + curveToRelative(0.36f, 0.4f, 0.86f, 0.61f, 1.36f, 0.6f) + curveToRelative(0.42f, -0.02f, 0.8f, -0.17f, 1.1f, -0.43f) + arcToRelative(1.73f, 1.73f, 0.0f, false, false, 2.46f, -0.17f) + curveTo(7.82f, 6.2f, 8.0f, 5.64f, 8.0f, 5.0f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, -0.57f, -1.86f) + arcTo(1.96f, 1.96f, 0.0f, false, false, 7.3f, 3.0f) + lineToRelative(-0.01f, -0.01f) + lineToRelative(-0.01f, -0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.05f, 1.07f) + lineToRelative(0.1f, 0.17f) + curveToRelative(0.08f, 0.16f, 0.17f, 0.42f, 0.17f, 0.79f) + curveToRelative(0.0f, 0.36f, -0.1f, 0.54f, -0.16f, 0.6f) + arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.2f, 0.1f) + arcToRelative(0.32f, 0.32f, 0.0f, false, true, -0.22f, -0.13f) + curveToRelative(-0.08f, -0.09f, -0.17f, -0.26f, -0.17f, -0.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + curveToRelative(0.0f, 0.31f, -0.1f, 0.48f, -0.17f, 0.57f) + arcToRelative(0.32f, 0.32f, 0.0f, false, true, -0.23f, 0.13f) + arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.19f, -0.1f) + curveToRelative(-0.06f, -0.06f, -0.16f, -0.24f, -0.16f, -0.6f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.27f, -0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.05f, -1.07f) + close() + moveTo(7.28f, 2.97f) + reflectiveCurveToRelative(0.17f, 0.2f, 0.0f, 0.0f) + close() + } + } + return _textNumberListRotate90!! + } + +private var _textNumberListRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextNumberListRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextNumberListRtl.kt new file mode 100644 index 00000000..af43f199 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextNumberListRtl.kt @@ -0,0 +1,106 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextNumberListRtl: ImageVector + get() { + if (_textNumberListRtl != null) { + return _textNumberListRtl!! + } + _textNumberListRtl = fluentIcon(name = "Filled.TextNumberListRtl") { + fluentPath { + moveTo(20.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.43f, -0.3f) + arcToRelative(2.3f, 2.3f, 0.0f, false, true, -0.07f, 0.13f) + curveToRelative(-0.05f, 0.1f, -0.13f, 0.23f, -0.24f, 0.38f) + curveToRelative(-0.22f, 0.32f, -0.52f, 0.66f, -0.9f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.79f, 1.28f) + lineToRelative(0.35f, -0.25f) + verticalLineToRelative(2.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-4.5f) + close() + moveTo(13.0f, 18.0f) + lineTo(4.38f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, 2.0f) + horizontalLineToRelative(8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, -2.0f) + close() + moveTo(13.0f, 11.5f) + lineTo(4.38f, 11.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, 2.0f) + horizontalLineToRelative(8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.12f, -2.0f) + close() + moveTo(14.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(4.38f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, 2.0f) + horizontalLineToRelative(8.62f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 14.0f, 6.0f) + close() + moveTo(19.15f, 10.52f) + curveToRelative(-0.3f, -0.05f, -0.68f, 0.07f, -0.87f, 0.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + arcToRelative(2.57f, 2.57f, 0.0f, false, true, 2.2f, -0.68f) + curveToRelative(0.39f, 0.07f, 0.8f, 0.26f, 1.1f, 0.6f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 21.0f, 11.0f) + curveToRelative(0.0f, 0.62f, -0.27f, 1.08f, -0.6f, 1.42f) + curveToRelative(-0.28f, 0.28f, -0.64f, 0.51f, -0.91f, 0.69f) + lineToRelative(-0.08f, 0.05f) + curveToRelative(-0.2f, 0.13f, -0.36f, 0.24f, -0.48f, 0.34f) + horizontalLineToRelative(1.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + curveToRelative(0.0f, -1.31f, 0.98f, -1.95f, 1.58f, -2.34f) + lineToRelative(0.06f, -0.04f) + curveToRelative(0.31f, -0.2f, 0.53f, -0.34f, 0.68f, -0.5f) + curveToRelative(0.14f, -0.14f, 0.18f, -0.24f, 0.18f, -0.37f) + curveToRelative(0.0f, -0.22f, -0.06f, -0.32f, -0.1f, -0.36f) + arcToRelative(0.42f, 0.42f, 0.0f, false, false, -0.25f, -0.12f) + close() + moveTo(16.97f, 21.28f) + reflectiveCurveToRelative(0.1f, 0.08f, 0.0f, 0.0f) + lineToRelative(0.01f, 0.01f) + lineToRelative(0.01f, 0.01f) + arcToRelative(1.42f, 1.42f, 0.0f, false, false, 0.15f, 0.13f) + arcTo(3.24f, 3.24f, 0.0f, false, false, 19.0f, 22.0f) + curveToRelative(0.64f, 0.0f, 1.2f, -0.18f, 1.6f, -0.54f) + curveToRelative(0.4f, -0.36f, 0.61f, -0.86f, 0.6f, -1.36f) + curveToRelative(-0.02f, -0.42f, -0.17f, -0.8f, -0.43f, -1.1f) + arcToRelative(1.73f, 1.73f, 0.0f, false, false, -0.17f, -2.46f) + curveToRelative(-0.4f, -0.36f, -0.96f, -0.54f, -1.6f, -0.54f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, -1.86f, 0.57f) + arcToRelative(1.92f, 1.92f, 0.0f, false, false, -0.15f, 0.13f) + lineToRelative(-0.01f, 0.01f) + lineToRelative(-0.01f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.07f, 1.05f) + lineToRelative(0.17f, -0.1f) + curveToRelative(0.16f, -0.08f, 0.42f, -0.17f, 0.79f, -0.17f) + curveToRelative(0.36f, 0.0f, 0.54f, 0.1f, 0.6f, 0.16f) + curveToRelative(0.08f, 0.07f, 0.1f, 0.13f, 0.1f, 0.2f) + curveToRelative(0.0f, 0.06f, -0.04f, 0.14f, -0.13f, 0.22f) + curveToRelative(-0.09f, 0.08f, -0.26f, 0.17f, -0.57f, 0.17f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + curveToRelative(0.31f, 0.0f, 0.48f, 0.1f, 0.57f, 0.17f) + curveToRelative(0.1f, 0.08f, 0.12f, 0.16f, 0.13f, 0.23f) + curveToRelative(0.0f, 0.06f, -0.02f, 0.13f, -0.1f, 0.19f) + curveToRelative(-0.06f, 0.06f, -0.24f, 0.16f, -0.6f, 0.16f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.96f, -0.27f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.07f, 1.05f) + close() + moveTo(16.97f, 16.72f) + reflectiveCurveToRelative(0.2f, -0.17f, 0.0f, 0.0f) + close() + } + } + return _textNumberListRtl!! + } + +private var _textNumberListRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextNumberListRtl90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextNumberListRtl90.kt new file mode 100644 index 00000000..e50ec7a8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextNumberListRtl90.kt @@ -0,0 +1,106 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextNumberListRtl90: ImageVector + get() { + if (_textNumberListRtl90 != null) { + return _textNumberListRtl90!! + } + _textNumberListRtl90 = fluentIcon(name = "Filled.TextNumberListRtl90") { + fluentPath { + moveTo(21.25f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.3f, -1.43f) + arcToRelative(2.14f, 2.14f, 0.0f, false, true, -0.13f, -0.07f) + curveToRelative(-0.1f, -0.05f, -0.23f, -0.13f, -0.38f, -0.24f) + arcToRelative(3.26f, 3.26f, 0.0f, false, true, -0.9f, -0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.28f, 0.79f) + lineToRelative(0.25f, 0.35f) + horizontalLineToRelative(-2.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.5f) + close() + moveTo(6.0f, 13.0f) + lineTo(6.0f, 4.38f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) + verticalLineToRelative(8.62f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 6.0f, 13.0f) + close() + moveTo(12.5f, 13.0f) + lineTo(12.5f, 4.38f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) + verticalLineToRelative(8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) + close() + moveTo(18.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + lineTo(19.0f, 4.38f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) + verticalLineToRelative(8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 0.88f) + close() + moveTo(13.48f, 19.15f) + curveToRelative(0.05f, -0.3f, -0.07f, -0.68f, -0.26f, -0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + curveToRelative(0.56f, 0.56f, 0.81f, 1.43f, 0.68f, 2.2f) + curveToRelative(-0.07f, 0.39f, -0.26f, 0.8f, -0.6f, 1.1f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 13.0f, 21.0f) + curveToRelative(-0.62f, 0.0f, -1.08f, -0.27f, -1.42f, -0.6f) + arcToRelative(5.29f, 5.29f, 0.0f, false, true, -0.69f, -0.91f) + lineToRelative(-0.05f, -0.08f) + curveToRelative(-0.13f, -0.2f, -0.24f, -0.36f, -0.34f, -0.48f) + verticalLineToRelative(1.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + curveToRelative(1.31f, 0.0f, 1.95f, 0.98f, 2.34f, 1.58f) + lineToRelative(0.04f, 0.06f) + curveToRelative(0.2f, 0.31f, 0.34f, 0.53f, 0.5f, 0.68f) + curveToRelative(0.14f, 0.14f, 0.24f, 0.18f, 0.37f, 0.18f) + curveToRelative(0.22f, 0.0f, 0.32f, -0.06f, 0.36f, -0.1f) + curveToRelative(0.05f, -0.04f, 0.1f, -0.12f, 0.12f, -0.25f) + close() + moveTo(2.72f, 16.97f) + reflectiveCurveToRelative(-0.08f, 0.1f, 0.0f, 0.0f) + lineToRelative(-0.01f, 0.01f) + lineToRelative(-0.01f, 0.01f) + arcToRelative(1.47f, 1.47f, 0.0f, false, false, -0.13f, 0.15f) + arcTo(3.24f, 3.24f, 0.0f, false, false, 2.0f, 19.0f) + curveToRelative(0.0f, 0.64f, 0.18f, 1.2f, 0.54f, 1.6f) + curveToRelative(0.36f, 0.4f, 0.86f, 0.61f, 1.36f, 0.6f) + curveToRelative(0.42f, -0.02f, 0.8f, -0.17f, 1.1f, -0.43f) + arcToRelative(1.73f, 1.73f, 0.0f, false, false, 2.46f, -0.17f) + curveToRelative(0.36f, -0.4f, 0.54f, -0.96f, 0.54f, -1.6f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, -0.57f, -1.86f) + arcTo(1.95f, 1.95f, 0.0f, false, false, 7.3f, 17.0f) + lineToRelative(-0.01f, -0.01f) + lineToRelative(-0.01f, -0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.05f, 1.07f) + lineToRelative(0.1f, 0.17f) + curveToRelative(0.08f, 0.16f, 0.17f, 0.42f, 0.17f, 0.79f) + curveToRelative(0.0f, 0.36f, -0.1f, 0.54f, -0.16f, 0.6f) + arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.2f, 0.1f) + arcToRelative(0.32f, 0.32f, 0.0f, false, true, -0.22f, -0.13f) + curveToRelative(-0.08f, -0.09f, -0.17f, -0.26f, -0.17f, -0.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + curveToRelative(0.0f, 0.31f, -0.1f, 0.48f, -0.17f, 0.57f) + arcToRelative(0.32f, 0.32f, 0.0f, false, true, -0.23f, 0.13f) + arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.19f, -0.1f) + curveToRelative(-0.06f, -0.06f, -0.16f, -0.24f, -0.16f, -0.6f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.27f, -0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.05f, -1.07f) + close() + moveTo(7.28f, 16.97f) + reflectiveCurveToRelative(0.17f, 0.2f, 0.0f, 0.0f) + close() + } + } + return _textNumberListRtl90!! + } + +private var _textNumberListRtl90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextNumberListRtlRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextNumberListRtlRotate270.kt new file mode 100644 index 00000000..aa143889 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextNumberListRtlRotate270.kt @@ -0,0 +1,104 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextNumberListRtlRotate270: ImageVector + get() { + if (_textNumberListRtlRotate270 != null) { + return _textNumberListRtlRotate270!! + } + _textNumberListRtlRotate270 = fluentIcon(name = "Filled.TextNumberListRtlRotate270") { + fluentPath { + moveTo(2.75f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.3f, 1.43f) + arcToRelative(1.42f, 1.42f, 0.0f, false, true, 0.13f, 0.07f) + curveToRelative(0.1f, 0.05f, 0.23f, 0.13f, 0.38f, 0.24f) + curveToRelative(0.32f, 0.22f, 0.66f, 0.52f, 0.9f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.28f, -0.79f) + arcToRelative(3.96f, 3.96f, 0.0f, false, false, -0.25f, -0.35f) + horizontalLineToRelative(2.36f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + close() + moveTo(18.0f, 11.0f) + verticalLineToRelative(8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) + verticalLineToRelative(-8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) + close() + moveTo(11.5f, 11.0f) + verticalLineToRelative(8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) + verticalLineToRelative(-8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.12f) + close() + moveTo(6.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(8.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) + verticalLineToRelative(-8.62f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 6.0f, 10.0f) + close() + moveTo(10.52f, 4.85f) + curveToRelative(-0.05f, 0.3f, 0.07f, 0.68f, 0.26f, 0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + arcToRelative(2.57f, 2.57f, 0.0f, false, true, -0.68f, -2.2f) + curveToRelative(0.07f, -0.39f, 0.26f, -0.8f, 0.6f, -1.1f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 11.0f, 3.0f) + curveToRelative(0.62f, 0.0f, 1.08f, 0.27f, 1.42f, 0.6f) + curveToRelative(0.28f, 0.28f, 0.51f, 0.64f, 0.69f, 0.91f) + lineToRelative(0.05f, 0.08f) + curveToRelative(0.13f, 0.2f, 0.24f, 0.36f, 0.34f, 0.48f) + lineTo(13.5f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + curveToRelative(-1.31f, 0.0f, -1.95f, -0.98f, -2.34f, -1.58f) + lineToRelative(-0.04f, -0.06f) + arcToRelative(4.2f, 4.2f, 0.0f, false, false, -0.5f, -0.68f) + curveToRelative(-0.14f, -0.14f, -0.24f, -0.18f, -0.37f, -0.18f) + curveToRelative(-0.22f, 0.0f, -0.32f, 0.06f, -0.36f, 0.1f) + arcToRelative(0.42f, 0.42f, 0.0f, false, false, -0.12f, 0.25f) + close() + moveTo(21.28f, 7.03f) + reflectiveCurveToRelative(0.08f, -0.1f, 0.0f, 0.0f) + lineToRelative(0.01f, -0.01f) + lineToRelative(0.01f, -0.01f) + arcToRelative(1.4f, 1.4f, 0.0f, false, false, 0.13f, -0.15f) + arcTo(3.24f, 3.24f, 0.0f, false, false, 22.0f, 5.0f) + curveToRelative(0.0f, -0.64f, -0.18f, -1.2f, -0.54f, -1.6f) + curveToRelative(-0.36f, -0.4f, -0.86f, -0.61f, -1.36f, -0.6f) + curveToRelative(-0.42f, 0.02f, -0.8f, 0.17f, -1.1f, 0.43f) + arcToRelative(1.73f, 1.73f, 0.0f, false, false, -2.46f, 0.17f) + curveToRelative(-0.36f, 0.4f, -0.54f, 0.96f, -0.54f, 1.6f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, 0.57f, 1.86f) + arcToRelative(1.95f, 1.95f, 0.0f, false, false, 0.13f, 0.15f) + lineToRelative(0.01f, 0.01f) + lineToRelative(0.01f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.05f, -1.07f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 17.5f, 5.0f) + curveToRelative(0.0f, -0.36f, 0.1f, -0.54f, 0.16f, -0.6f) + arcToRelative(0.23f, 0.23f, 0.0f, false, true, 0.2f, -0.1f) + curveToRelative(0.06f, 0.0f, 0.14f, 0.04f, 0.22f, 0.13f) + curveToRelative(0.08f, 0.09f, 0.17f, 0.26f, 0.17f, 0.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + curveToRelative(0.0f, -0.31f, 0.1f, -0.48f, 0.17f, -0.57f) + curveToRelative(0.08f, -0.1f, 0.16f, -0.12f, 0.23f, -0.13f) + curveToRelative(0.06f, 0.0f, 0.13f, 0.02f, 0.19f, 0.1f) + curveToRelative(0.06f, 0.06f, 0.16f, 0.24f, 0.16f, 0.6f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.27f, 0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.05f, 1.07f) + close() + moveTo(16.72f, 7.03f) + close() + } + } + return _textNumberListRtlRotate270!! + } + +private var _textNumberListRtlRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextParagraph.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextParagraph.kt new file mode 100644 index 00000000..0b542c19 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextParagraph.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextParagraph: ImageVector + get() { + if (_textParagraph != null) { + return _textParagraph!! + } + _textParagraph = fluentIcon(name = "Filled.TextParagraph") { + fluentPath { + moveTo(21.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + horizontalLineToRelative(-4.59f) + lineToRelative(2.3f, 2.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 1.4f) + lineToRelative(-4.0f, -4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) + lineToRelative(4.0f, -4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.42f, 1.4f) + lineTo(14.4f, 8.0f) + horizontalLineTo(19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineTo(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(7.3f, 11.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.4f) + lineTo(9.58f, 15.0f) + horizontalLineTo(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(6.59f) + lineToRelative(-2.3f, 2.3f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.42f, 1.4f) + lineToRelative(4.0f, -4.0f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 13.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.3f, -0.71f) + lineToRelative(-4.0f, -4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.4f, 0.0f) + close() + } + } + return _textParagraph!! + } + +private var _textParagraph: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextParagraphDirection.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextParagraphDirection.kt new file mode 100644 index 00000000..40c77bf6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextParagraphDirection.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextParagraphDirection: ImageVector + get() { + if (_textParagraphDirection != null) { + return _textParagraphDirection!! + } + _textParagraphDirection = fluentIcon(name = "Filled.TextParagraphDirection") { + fluentPath { + moveTo(13.5f, 3.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, 11.0f) + lineTo(15.0f, 14.0f) + verticalLineToRelative(7.2f) + curveToRelative(0.0f, 0.45f, 0.34f, 0.8f, 0.75f, 0.8f) + reflectiveCurveToRelative(0.75f, -0.35f, 0.75f, -0.8f) + lineTo(16.5f, 4.5f) + lineTo(18.0f, 4.5f) + verticalLineToRelative(16.7f) + curveToRelative(0.0f, 0.45f, 0.34f, 0.8f, 0.75f, 0.8f) + reflectiveCurveToRelative(0.75f, -0.35f, 0.75f, -0.8f) + lineTo(19.5f, 4.5f) + horizontalLineToRelative(0.67f) + curveToRelative(0.47f, -0.06f, 0.83f, -0.37f, 0.83f, -0.75f) + curveToRelative(0.0f, -0.41f, -0.43f, -0.75f, -0.95f, -0.75f) + lineTo(13.5f, 3.0f) + close() + moveTo(4.08f, 11.86f) + arcToRelative(0.67f, 0.67f, 0.0f, false, true, -0.9f, -0.99f) + lineTo(4.9f, 9.0f) + lineTo(3.18f, 7.13f) + lineToRelative(-0.06f, -0.08f) + arcToRelative(0.67f, 0.67f, 0.0f, false, true, 1.03f, -0.84f) + lineTo(6.3f, 8.54f) + lineToRelative(0.06f, 0.08f) + curveToRelative(0.18f, 0.26f, 0.16f, 0.6f, -0.06f, 0.84f) + lineToRelative(-2.15f, 2.33f) + lineToRelative(-0.07f, 0.07f) + close() + moveTo(5.4f, 19.86f) + arcToRelative(0.67f, 0.67f, 0.0f, false, false, 0.9f, -0.99f) + lineTo(4.59f, 17.0f) + lineToRelative(1.7f, -1.87f) + lineToRelative(0.07f, -0.08f) + arcToRelative(0.67f, 0.67f, 0.0f, false, false, -1.03f, -0.84f) + lineToRelative(-2.15f, 2.33f) + lineToRelative(-0.06f, 0.08f) + curveToRelative(-0.18f, 0.26f, -0.16f, 0.6f, 0.06f, 0.84f) + lineToRelative(2.15f, 2.33f) + lineToRelative(0.07f, 0.07f) + close() + } + } + return _textParagraphDirection!! + } + +private var _textParagraphDirection: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextPositionBehind.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextPositionBehind.kt new file mode 100644 index 00000000..4c90bb69 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextPositionBehind.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextPositionBehind: ImageVector + get() { + if (_textPositionBehind != null) { + return _textPositionBehind!! + } + _textPositionBehind = fluentIcon(name = "Filled.TextPositionBehind") { + fluentPath { + moveTo(3.75f, 3.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(3.75f, 3.75f) + close() + moveTo(10.75f, 11.0f) + curveToRelative(0.0f, -0.09f, 0.0f, -0.17f, 0.03f, -0.25f) + horizontalLineToRelative(2.45f) + lineToRelative(0.02f, 0.25f) + verticalLineToRelative(1.75f) + horizontalLineToRelative(-2.5f) + lineTo(10.75f, 11.0f) + close() + moveTo(14.24f, 10.75f) + lineTo(14.25f, 11.0f) + verticalLineToRelative(4.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-5.0f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, -8.5f, 0.25f) + verticalLineToRelative(4.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(9.75f, 11.0f) + lineToRelative(0.01f, -0.25f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.48f, 0.0f) + close() + moveTo(20.25f, 12.75f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + close() + moveTo(6.75f, 11.0f) + verticalLineToRelative(-0.25f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(3.0f) + lineTo(6.75f, 11.0f) + close() + moveTo(2.75f, 18.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(3.75f, 19.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + } + } + return _textPositionBehind!! + } + +private var _textPositionBehind: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextPositionFront.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextPositionFront.kt new file mode 100644 index 00000000..bfd92320 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextPositionFront.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextPositionFront: ImageVector + get() { + if (_textPositionFront != null) { + return _textPositionFront!! + } + _textPositionFront = fluentIcon(name = "Filled.TextPositionFront") { + fluentPath { + moveTo(3.75f, 3.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(3.75f, 3.75f) + close() + moveTo(12.0f, 8.75f) + curveToRelative(-0.78f, 0.0f, -1.47f, 0.4f, -1.87f, 1.0f) + horizontalLineToRelative(-2.2f) + arcToRelative(4.25f, 4.25f, 0.0f, false, true, 8.13f, 0.0f) + horizontalLineToRelative(-2.19f) + curveToRelative(-0.4f, -0.6f, -1.09f, -1.0f, -1.87f, -1.0f) + close() + moveTo(3.75f, 10.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(3.75f, 10.75f) + close() + moveTo(7.75f, 13.75f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(16.25f, 13.75f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(2.75f, 18.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(3.75f, 19.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + } + } + return _textPositionFront!! + } + +private var _textPositionFront: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextPositionLine.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextPositionLine.kt new file mode 100644 index 00000000..b63d9638 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextPositionLine.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextPositionLine: ImageVector + get() { + if (_textPositionLine != null) { + return _textPositionLine!! + } + _textPositionLine = fluentIcon(name = "Filled.TextPositionLine") { + fluentPath { + moveTo(3.75f, 3.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(3.75f, 3.75f) + close() + moveTo(7.0f, 8.75f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(4.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(2.75f, 11.0f) + arcToRelative(4.25f, 4.25f, 0.0f, false, true, 8.5f, 0.0f) + verticalLineToRelative(4.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(9.25f, 11.0f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + close() + moveTo(13.75f, 14.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-6.5f) + close() + moveTo(3.75f, 17.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(3.75f, 17.75f) + close() + } + } + return _textPositionLine!! + } + +private var _textPositionLine: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextPositionSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextPositionSquare.kt new file mode 100644 index 00000000..8fdfb9eb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextPositionSquare.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextPositionSquare: ImageVector + get() { + if (_textPositionSquare != null) { + return _textPositionSquare!! + } + _textPositionSquare = fluentIcon(name = "Filled.TextPositionSquare") { + fluentPath { + moveTo(3.75f, 3.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(3.75f, 3.75f) + close() + moveTo(2.75f, 8.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(17.25f, 8.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(3.75f, 10.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-2.0f) + close() + moveTo(17.25f, 11.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(3.75f, 14.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-2.0f) + close() + moveTo(17.25f, 15.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(2.75f, 18.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(3.75f, 19.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(9.75f, 11.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.5f, 0.0f) + verticalLineToRelative(4.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(16.25f, 11.0f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, -8.5f, 0.0f) + verticalLineToRelative(4.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(9.75f, 11.0f) + close() + } + } + return _textPositionSquare!! + } + +private var _textPositionSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextPositionSquareLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextPositionSquareLeft.kt new file mode 100644 index 00000000..c74a30f6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextPositionSquareLeft.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextPositionSquareLeft: ImageVector + get() { + if (_textPositionSquareLeft != null) { + return _textPositionSquareLeft!! + } + _textPositionSquareLeft = fluentIcon(name = "Filled.TextPositionSquareLeft") { + fluentPath { + moveTo(3.75f, 3.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(3.75f, 3.75f) + close() + moveTo(13.25f, 7.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-7.0f) + close() + moveTo(12.25f, 15.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(13.25f, 10.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-7.0f) + close() + moveTo(2.75f, 18.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(3.75f, 19.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(4.75f, 11.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.5f, 0.0f) + verticalLineToRelative(4.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(11.25f, 11.0f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, -8.5f, 0.0f) + verticalLineToRelative(4.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(4.75f, 11.0f) + close() + } + } + return _textPositionSquareLeft!! + } + +private var _textPositionSquareLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextPositionSquareRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextPositionSquareRight.kt new file mode 100644 index 00000000..c7ed040b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextPositionSquareRight.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextPositionSquareRight: ImageVector + get() { + if (_textPositionSquareRight != null) { + return _textPositionSquareRight!! + } + _textPositionSquareRight = fluentIcon(name = "Filled.TextPositionSquareRight") { + fluentPath { + moveTo(20.25f, 3.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(3.75f, 5.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + horizontalLineToRelative(16.5f) + close() + moveTo(10.75f, 7.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + horizontalLineToRelative(7.0f) + close() + moveTo(11.75f, 15.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineToRelative(-7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + close() + moveTo(10.75f, 10.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(7.0f) + close() + moveTo(21.25f, 18.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(3.75f, 17.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + close() + moveTo(19.25f, 11.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -4.5f, 0.0f) + verticalLineToRelative(4.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(12.75f, 11.0f) + arcToRelative(4.25f, 4.25f, 0.0f, false, true, 8.5f, 0.0f) + verticalLineToRelative(4.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(19.25f, 11.0f) + close() + } + } + return _textPositionSquareRight!! + } + +private var _textPositionSquareRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextPositionThrough.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextPositionThrough.kt new file mode 100644 index 00000000..4402d140 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextPositionThrough.kt @@ -0,0 +1,104 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextPositionThrough: ImageVector + get() { + if (_textPositionThrough != null) { + return _textPositionThrough!! + } + _textPositionThrough = fluentIcon(name = "Filled.TextPositionThrough") { + fluentPath { + moveTo(3.75f, 3.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(3.75f, 3.75f) + close() + moveTo(15.87f, 9.25f) + arcToRelative(4.27f, 4.27f, 0.0f, false, false, -5.87f, -2.0f) + arcTo(4.27f, 4.27f, 0.0f, false, false, 7.75f, 11.0f) + verticalLineToRelative(4.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + lineTo(9.75f, 11.0f) + arcToRelative(2.28f, 2.28f, 0.0f, false, true, 0.84f, -1.75f) + arcToRelative(2.24f, 2.24f, 0.0f, false, true, 2.82f, 0.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.84f, 1.75f) + verticalLineToRelative(4.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + lineTo(16.25f, 11.0f) + arcToRelative(4.32f, 4.32f, 0.0f, false, false, -0.38f, -1.75f) + close() + moveTo(3.75f, 7.25f) + horizontalLineToRelative(4.58f) + curveToRelative(-0.57f, 0.55f, -1.01f, 1.24f, -1.28f, 2.0f) + horizontalLineToRelative(-3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(3.75f, 10.75f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + close() + moveTo(3.75f, 14.25f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(1.5f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.06f, 0.5f) + lineTo(3.75f, 16.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + close() + moveTo(10.75f, 15.75f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.06f, 0.5f) + horizontalLineToRelative(2.62f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.06f, -0.5f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(-2.5f) + verticalLineToRelative(1.5f) + close() + moveTo(17.25f, 15.75f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.06f, 0.5f) + horizontalLineToRelative(3.06f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(1.5f) + close() + moveTo(20.25f, 12.75f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + close() + moveTo(13.25f, 11.0f) + verticalLineToRelative(1.75f) + horizontalLineToRelative(-2.5f) + lineTo(10.75f, 11.0f) + curveToRelative(0.0f, -0.09f, 0.0f, -0.17f, 0.03f, -0.25f) + horizontalLineToRelative(2.45f) + lineToRelative(0.02f, 0.25f) + close() + moveTo(20.25f, 9.25f) + horizontalLineToRelative(-3.3f) + arcToRelative(5.25f, 5.25f, 0.0f, false, false, -1.28f, -2.0f) + horizontalLineToRelative(4.58f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + close() + moveTo(3.75f, 17.75f) + horizontalLineToRelative(16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(3.75f, 19.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + close() + } + } + return _textPositionThrough!! + } + +private var _textPositionThrough: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextPositionTight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextPositionTight.kt new file mode 100644 index 00000000..379dc4de --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextPositionTight.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextPositionTight: ImageVector + get() { + if (_textPositionTight != null) { + return _textPositionTight!! + } + _textPositionTight = fluentIcon(name = "Filled.TextPositionTight") { + fluentPath { + moveTo(3.75f, 3.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(3.75f, 3.75f) + close() + moveTo(15.87f, 9.25f) + arcToRelative(4.27f, 4.27f, 0.0f, false, false, -5.87f, -2.0f) + arcTo(4.27f, 4.27f, 0.0f, false, false, 7.75f, 11.0f) + verticalLineToRelative(4.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + lineTo(9.75f, 11.0f) + arcToRelative(2.32f, 2.32f, 0.0f, false, true, 0.01f, -0.25f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.49f, 0.25f) + verticalLineToRelative(4.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(16.25f, 11.0f) + arcToRelative(4.32f, 4.32f, 0.0f, false, false, -0.38f, -1.75f) + close() + moveTo(3.75f, 7.25f) + horizontalLineToRelative(4.58f) + curveToRelative(-0.57f, 0.55f, -1.01f, 1.24f, -1.28f, 2.0f) + horizontalLineToRelative(-3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(3.75f, 10.75f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + close() + moveTo(3.75f, 14.25f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(1.5f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.06f, 0.5f) + lineTo(3.75f, 16.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + close() + moveTo(17.25f, 15.75f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.06f, 0.5f) + horizontalLineToRelative(3.06f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(1.5f) + close() + moveTo(20.25f, 12.75f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + close() + moveTo(20.25f, 9.25f) + horizontalLineToRelative(-3.3f) + arcToRelative(5.25f, 5.25f, 0.0f, false, false, -1.28f, -2.0f) + horizontalLineToRelative(4.58f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + close() + moveTo(3.75f, 17.75f) + horizontalLineToRelative(16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(3.75f, 19.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + close() + } + } + return _textPositionTight!! + } + +private var _textPositionTight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextPositionTopBottom.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextPositionTopBottom.kt new file mode 100644 index 00000000..b16f17ce --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextPositionTopBottom.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextPositionTopBottom: ImageVector + get() { + if (_textPositionTopBottom != null) { + return _textPositionTopBottom!! + } + _textPositionTopBottom = fluentIcon(name = "Filled.TextPositionTopBottom") { + fluentPath { + moveTo(2.75f, 4.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(3.75f, 5.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(2.75f, 18.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(3.75f, 19.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(9.75f, 11.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.5f, 0.0f) + verticalLineToRelative(4.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(16.25f, 11.0f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, -8.5f, 0.0f) + verticalLineToRelative(4.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(9.75f, 11.0f) + close() + } + } + return _textPositionTopBottom!! + } + +private var _textPositionTopBottom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextProofingTools.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextProofingTools.kt new file mode 100644 index 00000000..b36c1c6f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextProofingTools.kt @@ -0,0 +1,111 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextProofingTools: ImageVector + get() { + if (_textProofingTools != null) { + return _textProofingTools!! + } + _textProofingTools = fluentIcon(name = "Filled.TextProofingTools") { + fluentPath { + moveTo(22.2f, 4.97f) + arcToRelative(3.21f, 3.21f, 0.0f, false, false, -1.56f, -1.92f) + curveToRelative(-0.61f, -0.3f, -1.24f, -0.3f, -1.6f, -0.3f) + lineTo(19.0f, 2.75f) + curveToRelative(-0.8f, 0.0f, -1.47f, 0.28f, -1.96f, 0.72f) + curveToRelative(-0.48f, 0.43f, -0.77f, 0.96f, -0.94f, 1.43f) + arcToRelative(5.62f, 5.62f, 0.0f, false, false, -0.35f, 1.8f) + verticalLineToRelative(0.09f) + curveToRelative(0.0f, 0.5f, 0.0f, 1.47f, 0.35f, 2.36f) + curveToRelative(0.19f, 0.48f, 0.49f, 0.97f, 0.96f, 1.36f) + curveToRelative(0.49f, 0.4f, 1.1f, 0.65f, 1.83f, 0.73f) + curveToRelative(0.6f, 0.07f, 2.43f, 0.03f, 3.27f, -1.82f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.82f, -0.82f) + curveToRelative(-0.16f, 0.34f, -0.38f, 0.5f, -0.6f, 0.58f) + curveToRelative(-0.25f, 0.09f, -0.51f, 0.09f, -0.63f, 0.08f) + curveToRelative(-0.4f, -0.05f, -0.62f, -0.17f, -0.77f, -0.3f) + arcToRelative(1.3f, 1.3f, 0.0f, false, true, -0.38f, -0.54f) + arcToRelative(4.7f, 4.7f, 0.0f, false, true, -0.21f, -1.67f) + arcToRelative(2.46f, 2.46f, 0.0f, false, true, 0.03f, -0.34f) + curveToRelative(0.03f, -0.24f, 0.08f, -0.53f, 0.19f, -0.8f) + curveToRelative(0.1f, -0.3f, 0.24f, -0.5f, 0.4f, -0.64f) + arcToRelative(0.9f, 0.9f, 0.0f, false, true, 0.63f, -0.22f) + curveToRelative(0.4f, 0.0f, 0.6f, 0.02f, 0.76f, 0.1f) + curveToRelative(0.1f, 0.05f, 0.33f, 0.2f, 0.55f, 0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.88f, -0.68f) + close() + moveTo(14.5f, 6.71f) + curveToRelative(0.2f, -0.36f, 0.32f, -0.8f, 0.32f, -1.33f) + curveToRelative(0.0f, -0.54f, -0.1f, -1.01f, -0.33f, -1.42f) + curveToRelative(-0.22f, -0.41f, -0.53f, -0.7f, -0.86f, -0.88f) + arcToRelative(2.96f, 2.96f, 0.0f, false, false, -1.45f, -0.33f) + lineTo(10.0f, 2.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(2.38f) + curveToRelative(0.3f, 0.0f, 0.96f, -0.04f, 1.58f, -0.37f) + arcToRelative(2.4f, 2.4f, 0.0f, false, false, 1.29f, -2.25f) + curveToRelative(0.0f, -0.56f, -0.12f, -1.05f, -0.37f, -1.46f) + curveToRelative(-0.11f, -0.18f, -0.23f, -0.33f, -0.37f, -0.46f) + close() + moveTo(12.65f, 4.83f) + curveToRelative(0.03f, 0.01f, 0.06f, 0.04f, 0.08f, 0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.09f, 0.47f) + arcToRelative(0.8f, 0.8f, 0.0f, false, true, -0.08f, 0.39f) + arcToRelative(0.31f, 0.31f, 0.0f, false, true, -0.12f, 0.12f) + arcToRelative(0.98f, 0.98f, 0.0f, false, true, -0.46f, 0.11f) + lineTo(11.0f, 6.0f) + lineTo(11.0f, 4.75f) + horizontalLineToRelative(1.16f) + curveToRelative(0.22f, 0.0f, 0.4f, 0.01f, 0.5f, 0.08f) + close() + moveTo(12.17f, 8.0f) + horizontalLineToRelative(0.2f) + curveToRelative(0.26f, 0.0f, 0.5f, 0.01f, 0.67f, 0.1f) + curveToRelative(0.07f, 0.03f, 0.1f, 0.06f, 0.13f, 0.1f) + curveToRelative(0.03f, 0.05f, 0.08f, 0.17f, 0.08f, 0.43f) + curveToRelative(0.0f, 0.2f, -0.05f, 0.3f, -0.07f, 0.34f) + arcToRelative(0.4f, 0.4f, 0.0f, false, true, -0.16f, 0.14f) + curveToRelative(-0.2f, 0.1f, -0.47f, 0.14f, -0.64f, 0.14f) + lineTo(11.0f, 9.25f) + lineTo(11.0f, 8.0f) + horizontalLineToRelative(1.17f) + close() + moveTo(5.03f, 2.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.93f, 0.67f) + lineToRelative(2.3f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.88f, 0.66f) + lineToRelative(-0.19f, -0.53f) + lineTo(3.65f, 10.05f) + lineToRelative(-0.22f, 0.56f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.86f, -0.72f) + lineToRelative(2.51f, -6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.95f, -0.64f) + close() + moveTo(4.98f, 6.63f) + lineTo(4.42f, 8.05f) + horizontalLineToRelative(1.06f) + lineToRelative(-0.5f, -1.42f) + close() + moveTo(15.48f, 12.61f) + lineTo(11.18f, 17.77f) + lineTo(9.46f, 16.04f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, 1.42f) + lineToRelative(2.5f, 2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.48f, -0.07f) + lineToRelative(5.0f, -6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.54f, -1.28f) + close() + } + } + return _textProofingTools!! + } + +private var _textProofingTools: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextQuote.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextQuote.kt new file mode 100644 index 00000000..65dbb533 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextQuote.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextQuote: ImageVector + get() { + if (_textQuote != null) { + return _textQuote!! + } + _textQuote = fluentIcon(name = "Filled.TextQuote") { + fluentPath { + moveTo(7.5f, 6.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 10.0f, 8.34f) + verticalLineToRelative(0.2f) + arcToRelative(13.01f, 13.01f, 0.0f, false, true, -3.7f, 9.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.1f, -1.02f) + arcToRelative(11.55f, 11.55f, 0.0f, false, false, 3.08f, -5.86f) + arcTo(2.5f, 2.5f, 0.0f, true, true, 7.5f, 6.0f) + close() + moveTo(16.5f, 6.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 19.0f, 8.34f) + verticalLineToRelative(0.2f) + arcToRelative(12.99f, 12.99f, 0.0f, false, true, -3.7f, 9.23f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.1f, -1.04f) + arcToRelative(11.51f, 11.51f, 0.0f, false, false, 3.08f, -5.85f) + arcTo(2.5f, 2.5f, 0.0f, true, true, 16.5f, 6.0f) + close() + } + } + return _textQuote!! + } + +private var _textQuote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextSortAscending.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextSortAscending.kt new file mode 100644 index 00000000..0f59b8eb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextSortAscending.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextSortAscending: ImageVector + get() { + if (_textSortAscending != null) { + return _textSortAscending!! + } + _textSortAscending = fluentIcon(name = "Filled.TextSortAscending") { + fluentPath { + moveTo(7.98f, 2.67f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.9f, 0.0f) + lineTo(3.3f, 10.74f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.89f, 0.66f) + lineToRelative(0.4f, -1.2f) + horizontalLineToRelative(2.88f) + lineToRelative(0.41f, 1.2f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.9f, -0.66f) + lineToRelative(-2.8f, -8.07f) + close() + moveTo(6.29f, 8.21f) + lineToRelative(0.74f, -2.15f) + lineToRelative(0.75f, 2.15f) + horizontalLineTo(6.29f) + close() + moveTo(3.75f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineTo(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.8f, 1.6f) + lineTo(6.75f, 20.0f) + horizontalLineTo(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineTo(4.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.8f, -1.6f) + lineTo(8.0f, 15.0f) + horizontalLineTo(4.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(17.5f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(15.59f) + lineToRelative(1.8f, -1.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.42f) + lineToRelative(-3.5f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) + lineToRelative(-3.5f, -3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, -1.42f) + lineToRelative(1.8f, 1.8f) + verticalLineTo(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + } + } + return _textSortAscending!! + } + +private var _textSortAscending: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextSortDescending.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextSortDescending.kt new file mode 100644 index 00000000..03d3c5a2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextSortDescending.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextSortDescending: ImageVector + get() { + if (_textSortDescending != null) { + return _textSortDescending!! + } + _textSortDescending = fluentIcon(name = "Filled.TextSortDescending") { + fluentPath { + moveTo(3.75f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + lineTo(10.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.8f, 1.6f) + lineTo(6.75f, 9.0f) + lineTo(10.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(4.75f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.8f, -1.6f) + lineTo(8.0f, 4.0f) + lineTo(4.75f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(7.98f, 12.67f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.9f, 0.0f) + lineTo(3.3f, 20.74f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.89f, 0.66f) + lineToRelative(0.4f, -1.2f) + horizontalLineToRelative(2.88f) + lineToRelative(0.41f, 1.2f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.9f, -0.66f) + lineToRelative(-2.8f, -8.07f) + close() + moveTo(6.29f, 18.21f) + lineTo(7.03f, 16.06f) + lineTo(7.78f, 18.21f) + lineTo(6.29f, 18.21f) + close() + moveTo(17.5f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(15.59f) + lineToRelative(1.8f, -1.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 1.42f) + lineToRelative(-3.5f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 0.0f) + lineToRelative(-3.5f, -3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, -1.42f) + lineToRelative(1.8f, 1.8f) + lineTo(16.5f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + } + } + return _textSortDescending!! + } + +private var _textSortDescending: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextStrikethrough.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextStrikethrough.kt new file mode 100644 index 00000000..38e53d40 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextStrikethrough.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextStrikethrough: ImageVector + get() { + if (_textStrikethrough != null) { + return _textStrikethrough!! + } + _textStrikethrough = fluentIcon(name = "Filled.TextStrikethrough") { + fluentPath { + moveTo(13.85f, 11.5f) + horizontalLineToRelative(5.65f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + horizontalLineToRelative(-2.39f) + curveToRelative(0.66f, 0.77f, 1.0f, 1.67f, 1.0f, 2.68f) + curveToRelative(0.0f, 2.93f, -3.28f, 4.92f, -7.03f, 4.48f) + curveToRelative(-2.33f, -0.27f, -3.97f, -1.22f, -4.83f, -2.83f) + curveToRelative(-0.26f, -0.49f, -0.2f, -1.01f, 0.25f, -1.33f) + curveToRelative(0.46f, -0.32f, 1.26f, -0.1f, 1.52f, 0.39f) + curveToRelative(0.53f, 1.0f, 1.6f, 1.59f, 3.29f, 1.79f) + curveToRelative(2.59f, 0.3f, 4.8f, -0.91f, 4.8f, -2.5f) + curveToRelative(0.0f, -1.1f, -0.55f, -1.94f, -2.1f, -2.68f) + horizontalLineTo(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(8.85f) + close() + moveTo(6.99f, 9.7f) + lineToRelative(-0.3f, -0.51f) + curveToRelative(-0.3f, -0.6f, -0.47f, -1.22f, -0.44f, -1.84f) + curveToRelative(0.16f, -2.96f, 2.94f, -4.71f, 6.6f, -4.29f) + curveToRelative(2.27f, 0.27f, 4.0f, 1.09f, 5.15f, 2.49f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.15f, 1.4f) + arcToRelative(0.99f, 0.99f, 0.0f, false, true, -1.4f, -0.1f) + curveToRelative(-0.81f, -0.99f, -2.07f, -1.6f, -3.82f, -1.8f) + curveToRelative(-2.57f, -0.3f, -4.38f, 0.72f, -4.38f, 2.32f) + curveToRelative(0.0f, 0.72f, 0.24f, 1.22f, 0.77f, 1.81f) + curveToRelative(0.22f, 0.26f, 0.64f, 0.53f, 1.26f, 0.82f) + horizontalLineTo(7.2f) + curveToRelative(-0.1f, -0.17f, -0.18f, -0.27f, -0.2f, -0.3f) + close() + } + } + return _textStrikethrough!! + } + +private var _textStrikethrough: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextSubscript.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextSubscript.kt new file mode 100644 index 00000000..8b8c5084 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextSubscript.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextSubscript: ImageVector + get() { + if (_textSubscript != null) { + return _textSubscript!! + } + _textSubscript = fluentIcon(name = "Filled.TextSubscript") { + fluentPath { + moveTo(16.76f, 5.65f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.52f, -1.3f) + lineTo(10.0f, 10.46f) + lineTo(4.76f, 4.35f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.52f, 1.3f) + lineTo(8.68f, 12.0f) + lineToRelative(-5.44f, 6.35f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.52f, 1.3f) + lineTo(10.0f, 13.54f) + lineToRelative(5.07f, 5.91f) + curveToRelative(0.15f, -0.83f, 0.52f, -1.47f, 0.94f, -1.97f) + lineTo(11.31f, 12.0f) + lineToRelative(5.45f, -6.35f) + close() + moveTo(18.74f, 14.75f) + curveToRelative(-0.4f, 0.0f, -0.74f, 0.36f, -0.74f, 0.77f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(2.78f, 2.78f, 0.0f, false, true, 5.1f, -1.54f) + curveToRelative(0.54f, 0.84f, 0.54f, 1.92f, -0.06f, 2.94f) + curveToRelative(-0.3f, 0.52f, -0.72f, 0.9f, -1.1f, 1.2f) + curveToRelative(-0.2f, 0.16f, -0.39f, 0.3f, -0.57f, 0.42f) + lineToRelative(-0.08f, 0.06f) + arcToRelative(16.88f, 16.88f, 0.0f, false, false, -0.83f, 0.65f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + lineTo(17.0f, 21.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + curveToRelative(0.0f, -1.52f, 0.9f, -2.37f, 1.66f, -2.94f) + lineToRelative(0.48f, -0.35f) + lineToRelative(0.08f, -0.05f) + lineToRelative(0.48f, -0.35f) + curveToRelative(0.3f, -0.24f, 0.5f, -0.44f, 0.62f, -0.66f) + curveToRelative(0.27f, -0.46f, 0.18f, -0.71f, 0.1f, -0.83f) + arcToRelative(0.81f, 0.81f, 0.0f, false, false, -0.68f, -0.32f) + close() + } + } + return _textSubscript!! + } + +private var _textSubscript: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextSuperscript.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextSuperscript.kt new file mode 100644 index 00000000..a09c0e3c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextSuperscript.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextSuperscript: ImageVector + get() { + if (_textSuperscript != null) { + return _textSuperscript!! + } + _textSuperscript = fluentIcon(name = "Filled.TextSuperscript") { + fluentPath { + moveTo(18.74f, 3.75f) + curveToRelative(-0.4f, 0.0f, -0.74f, 0.36f, -0.74f, 0.77f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(2.78f, 2.78f, 0.0f, false, true, 5.1f, -1.54f) + curveToRelative(0.54f, 0.84f, 0.54f, 1.92f, -0.06f, 2.94f) + curveToRelative(-0.3f, 0.52f, -0.72f, 0.9f, -1.1f, 1.2f) + curveToRelative(-0.2f, 0.16f, -0.39f, 0.3f, -0.57f, 0.42f) + lineToRelative(-0.08f, 0.06f) + lineToRelative(-0.42f, 0.3f) + curveToRelative(-0.16f, 0.13f, -0.3f, 0.24f, -0.41f, 0.35f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + horizontalLineTo(17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + curveToRelative(0.0f, -1.52f, 0.9f, -2.37f, 1.66f, -2.94f) + lineToRelative(0.48f, -0.35f) + lineToRelative(0.08f, -0.05f) + lineToRelative(0.48f, -0.35f) + curveToRelative(0.3f, -0.24f, 0.5f, -0.44f, 0.62f, -0.66f) + curveToRelative(0.27f, -0.46f, 0.18f, -0.71f, 0.1f, -0.83f) + arcToRelative(0.81f, 0.81f, 0.0f, false, false, -0.68f, -0.32f) + close() + moveTo(11.32f, 12.0f) + lineToRelative(4.4f, -5.13f) + curveToRelative(0.13f, -0.2f, 0.27f, -0.38f, 0.42f, -0.54f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 15.0f, 4.63f) + lineToRelative(-5.0f, 5.83f) + lineToRelative(-5.24f, -6.11f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.52f, 1.3f) + lineTo(8.68f, 12.0f) + lineToRelative(-5.44f, 6.35f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.52f, 1.3f) + lineTo(10.0f, 13.54f) + lineToRelative(5.24f, 6.11f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.52f, -1.3f) + lineTo(11.32f, 12.0f) + close() + } + } + return _textSuperscript!! + } + +private var _textSuperscript: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextT.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextT.kt new file mode 100644 index 00000000..88701388 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextT.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextT: ImageVector + get() { + if (_textT != null) { + return _textT!! + } + _textT = fluentIcon(name = "Filled.TextT") { + fluentPath { + moveTo(4.75f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(12.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineTo(6.0f) + horizontalLineTo(13.0f) + verticalLineToRelative(12.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(1.0f) + verticalLineTo(6.0f) + horizontalLineTo(6.75f) + verticalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + verticalLineTo(5.0f) + close() + } + } + return _textT!! + } + +private var _textT: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextUnderline.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextUnderline.kt new file mode 100644 index 00000000..d2d30e8b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextUnderline.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextUnderline: ImageVector + get() { + if (_textUnderline != null) { + return _textUnderline!! + } + _textUnderline = fluentIcon(name = "Filled.TextUnderline") { + fluentPath { + moveTo(6.0f, 4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 3.46f, 1.32f, 5.0f, 4.25f, 5.0f) + curveToRelative(2.93f, 0.0f, 4.25f, -1.54f, 4.25f, -5.0f) + verticalLineToRelative(-6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 4.54f, -2.18f, 7.0f, -6.25f, 7.0f) + curveToRelative(-4.08f, 0.0f, -6.25f, -2.46f, -6.25f, -7.0f) + verticalLineToRelative(-6.0f) + close() + moveTo(7.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(10.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineTo(7.0f) + close() + } + } + return _textUnderline!! + } + +private var _textUnderline: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextUnderlineCharacterU.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextUnderlineCharacterU.kt new file mode 100644 index 00000000..134982f3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextUnderlineCharacterU.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextUnderlineCharacterU: ImageVector + get() { + if (_textUnderlineCharacterU != null) { + return _textUnderlineCharacterU!! + } + _textUnderlineCharacterU = fluentIcon(name = "Filled.TextUnderlineCharacterU") { + fluentPath { + moveTo(9.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) + verticalLineToRelative(6.5f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 10.0f, 0.0f) + verticalLineTo(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(6.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) + verticalLineTo(5.0f) + close() + moveTo(7.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineTo(7.0f) + close() + } + } + return _textUnderlineCharacterU!! + } + +private var _textUnderlineCharacterU: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextUnderlineDouble.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextUnderlineDouble.kt new file mode 100644 index 00000000..bc8ba6ac --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextUnderlineDouble.kt @@ -0,0 +1,115 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextUnderlineDouble: ImageVector + get() { + if (_textUnderlineDouble != null) { + return _textUnderlineDouble!! + } + _textUnderlineDouble = fluentIcon(name = "Filled.TextUnderlineDouble") { + fluentPath { + moveTo(22.2f, 4.97f) + arcToRelative(3.21f, 3.21f, 0.0f, false, false, -1.56f, -1.92f) + curveToRelative(-0.61f, -0.3f, -1.24f, -0.3f, -1.6f, -0.3f) + lineTo(19.0f, 2.75f) + curveToRelative(-0.8f, 0.0f, -1.47f, 0.28f, -1.96f, 0.72f) + curveToRelative(-0.48f, 0.43f, -0.77f, 0.96f, -0.94f, 1.43f) + arcToRelative(5.62f, 5.62f, 0.0f, false, false, -0.35f, 1.8f) + verticalLineToRelative(0.09f) + curveToRelative(0.0f, 0.5f, 0.0f, 1.47f, 0.35f, 2.36f) + curveToRelative(0.19f, 0.48f, 0.49f, 0.97f, 0.96f, 1.36f) + curveToRelative(0.49f, 0.4f, 1.1f, 0.65f, 1.83f, 0.73f) + curveToRelative(0.6f, 0.07f, 2.43f, 0.03f, 3.27f, -1.82f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.82f, -0.82f) + curveToRelative(-0.16f, 0.34f, -0.38f, 0.5f, -0.6f, 0.58f) + curveToRelative(-0.25f, 0.09f, -0.51f, 0.09f, -0.63f, 0.08f) + curveToRelative(-0.4f, -0.05f, -0.62f, -0.17f, -0.77f, -0.3f) + arcToRelative(1.3f, 1.3f, 0.0f, false, true, -0.38f, -0.54f) + arcToRelative(4.7f, 4.7f, 0.0f, false, true, -0.21f, -1.67f) + arcToRelative(2.46f, 2.46f, 0.0f, false, true, 0.03f, -0.34f) + curveToRelative(0.03f, -0.24f, 0.08f, -0.53f, 0.19f, -0.8f) + curveToRelative(0.1f, -0.3f, 0.24f, -0.5f, 0.4f, -0.64f) + arcToRelative(0.9f, 0.9f, 0.0f, false, true, 0.63f, -0.22f) + curveToRelative(0.4f, 0.0f, 0.6f, 0.02f, 0.76f, 0.1f) + curveToRelative(0.1f, 0.05f, 0.33f, 0.2f, 0.55f, 0.8f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.88f, -0.68f) + close() + moveTo(14.5f, 6.71f) + curveToRelative(0.2f, -0.36f, 0.32f, -0.8f, 0.32f, -1.33f) + curveToRelative(0.0f, -0.54f, -0.1f, -1.01f, -0.33f, -1.42f) + curveToRelative(-0.22f, -0.41f, -0.53f, -0.7f, -0.86f, -0.88f) + arcToRelative(2.96f, 2.96f, 0.0f, false, false, -1.45f, -0.33f) + lineTo(10.0f, 2.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(2.38f) + curveToRelative(0.3f, 0.0f, 0.96f, -0.04f, 1.58f, -0.37f) + arcToRelative(2.4f, 2.4f, 0.0f, false, false, 1.29f, -2.25f) + curveToRelative(0.0f, -0.56f, -0.12f, -1.05f, -0.37f, -1.46f) + curveToRelative(-0.11f, -0.18f, -0.23f, -0.33f, -0.37f, -0.46f) + close() + moveTo(12.65f, 4.83f) + curveToRelative(0.03f, 0.01f, 0.06f, 0.04f, 0.08f, 0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.09f, 0.47f) + arcToRelative(0.8f, 0.8f, 0.0f, false, true, -0.08f, 0.39f) + arcToRelative(0.31f, 0.31f, 0.0f, false, true, -0.12f, 0.12f) + arcToRelative(0.98f, 0.98f, 0.0f, false, true, -0.46f, 0.11f) + lineTo(11.0f, 6.0f) + lineTo(11.0f, 4.75f) + horizontalLineToRelative(1.16f) + curveToRelative(0.22f, 0.0f, 0.4f, 0.01f, 0.5f, 0.08f) + close() + moveTo(12.17f, 8.0f) + horizontalLineToRelative(0.2f) + curveToRelative(0.26f, 0.0f, 0.5f, 0.01f, 0.67f, 0.1f) + curveToRelative(0.07f, 0.03f, 0.1f, 0.06f, 0.13f, 0.1f) + curveToRelative(0.03f, 0.05f, 0.08f, 0.17f, 0.08f, 0.43f) + curveToRelative(0.0f, 0.2f, -0.05f, 0.3f, -0.07f, 0.34f) + arcToRelative(0.4f, 0.4f, 0.0f, false, true, -0.16f, 0.14f) + curveToRelative(-0.2f, 0.1f, -0.47f, 0.14f, -0.64f, 0.14f) + lineTo(11.0f, 9.25f) + lineTo(11.0f, 8.0f) + horizontalLineToRelative(1.17f) + close() + moveTo(5.03f, 2.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.93f, 0.67f) + lineToRelative(2.3f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.88f, 0.66f) + lineToRelative(-0.19f, -0.53f) + lineTo(3.65f, 10.05f) + lineToRelative(-0.22f, 0.56f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.86f, -0.72f) + lineToRelative(2.51f, -6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.95f, -0.64f) + close() + moveTo(4.98f, 6.63f) + lineTo(4.42f, 8.05f) + horizontalLineToRelative(1.06f) + lineToRelative(-0.5f, -1.42f) + close() + moveTo(1.5f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(2.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-19.0f) + close() + } + } + return _textUnderlineDouble!! + } + +private var _textUnderlineDouble: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextWordCount.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextWordCount.kt new file mode 100644 index 00000000..c54474b6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextWordCount.kt @@ -0,0 +1,104 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextWordCount: ImageVector + get() { + if (_textWordCount != null) { + return _textWordCount!! + } + _textWordCount = fluentIcon(name = "Filled.TextWordCount") { + fluentPath { + moveTo(2.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(3.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(2.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(3.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(18.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(14.04f, 17.13f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.14f, 0.22f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.93f, -0.52f) + curveToRelative(0.1f, -0.33f, 0.3f, -0.79f, 0.7f, -1.17f) + curveToRelative(0.43f, -0.4f, 1.04f, -0.66f, 1.8f, -0.66f) + arcTo(2.44f, 2.44f, 0.0f, false, true, 17.0f, 17.36f) + curveToRelative(0.0f, 0.39f, -0.07f, 1.02f, -0.47f, 1.59f) + lineToRelative(0.1f, 0.12f) + curveToRelative(0.24f, 0.37f, 0.37f, 0.8f, 0.37f, 1.3f) + curveToRelative(0.0f, 0.83f, -0.27f, 1.53f, -0.81f, 2.02f) + curveToRelative(-0.53f, 0.46f, -1.17f, 0.61f, -1.72f, 0.61f) + curveToRelative(-0.5f, 0.0f, -1.03f, -0.09f, -1.51f, -0.4f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -0.98f, -1.4f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.91f, -0.59f) + curveToRelative(0.08f, 0.26f, 0.16f, 0.3f, 0.18f, 0.32f) + curveToRelative(0.03f, 0.02f, 0.12f, 0.07f, 0.4f, 0.07f) + curveToRelative(0.22f, 0.0f, 0.34f, -0.06f, 0.39f, -0.1f) + curveToRelative(0.03f, -0.03f, 0.14f, -0.14f, 0.14f, -0.54f) + curveToRelative(0.0f, -0.12f, -0.03f, -0.16f, -0.03f, -0.17f) + curveToRelative(0.0f, 0.0f, -0.03f, -0.04f, -0.1f, -0.07f) + arcToRelative(1.6f, 1.6f, 0.0f, false, false, -0.66f, -0.12f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + curveToRelative(0.28f, 0.0f, 0.45f, -0.05f, 0.54f, -0.09f) + arcToRelative(0.35f, 0.35f, 0.0f, false, false, 0.14f, -0.1f) + curveToRelative(0.07f, -0.09f, 0.11f, -0.24f, 0.11f, -0.45f) + arcToRelative(0.36f, 0.36f, 0.0f, false, false, -0.1f, -0.21f) + curveToRelative(-0.07f, -0.07f, -0.19f, -0.15f, -0.43f, -0.15f) + curveToRelative(-0.28f, 0.0f, -0.39f, 0.08f, -0.43f, 0.13f) + close() + moveTo(7.81f, 17.63f) + curveToRelative(0.0f, -0.15f, 0.07f, -0.33f, 0.18f, -0.46f) + curveToRelative(0.1f, -0.12f, 0.23f, -0.17f, 0.34f, -0.17f) + curveToRelative(0.23f, 0.0f, 0.4f, 0.11f, 0.48f, 0.24f) + curveToRelative(0.06f, 0.1f, 0.14f, 0.32f, -0.09f, 0.73f) + curveToRelative(-0.1f, 0.19f, -0.27f, 0.37f, -0.52f, 0.58f) + lineToRelative(-0.42f, 0.32f) + lineToRelative(-0.06f, 0.05f) + curveToRelative(-0.13f, 0.1f, -0.28f, 0.2f, -0.42f, 0.32f) + curveToRelative(-0.69f, 0.54f, -1.49f, 1.35f, -1.49f, 2.76f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + lineTo(9.83f, 23.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(8.31f, 21.0f) + lineToRelative(0.23f, -0.2f) + lineToRelative(0.37f, -0.27f) + lineToRelative(0.07f, -0.06f) + curveToRelative(0.16f, -0.11f, 0.33f, -0.24f, 0.5f, -0.39f) + curveToRelative(0.34f, -0.28f, 0.72f, -0.65f, 1.0f, -1.14f) + curveToRelative(0.52f, -0.95f, 0.52f, -1.96f, 0.03f, -2.75f) + arcTo(2.56f, 2.56f, 0.0f, false, false, 8.33f, 15.0f) + curveToRelative(-1.55f, 0.0f, -2.52f, 1.4f, -2.52f, 2.64f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(2.55f, 19.02f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.13f, -1.66f) + arcToRelative(2.97f, 2.97f, 0.0f, false, false, 1.15f, -1.56f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.98f, 0.2f) + verticalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-2.98f) + close() + } + } + return _textWordCount!! + } + +private var _textWordCount: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextWrap.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextWrap.kt new file mode 100644 index 00000000..d29acbc5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextWrap.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextWrap: ImageVector + get() { + if (_textWrap != null) { + return _textWrap!! + } + _textWrap = fluentIcon(name = "Filled.TextWrap") { + fluentPath { + moveTo(2.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(3.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(3.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(3.0f, 17.0f) + close() + moveTo(15.41f, 17.0f) + lineTo(19.0f, 17.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) + lineTo(3.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(16.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, 8.0f) + horizontalLineToRelative(-3.59f) + lineToRelative(0.3f, 0.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 1.4f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.4f) + lineToRelative(2.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 1.4f) + lineToRelative(-0.3f, 0.3f) + close() + } + } + return _textWrap!! + } + +private var _textWrap: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextWrapOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextWrapOff.kt new file mode 100644 index 00000000..69bbc0a7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextWrapOff.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextWrapOff: ImageVector + get() { + if (_textWrapOff != null) { + return _textWrapOff!! + } + _textWrapOff = fluentIcon(name = "Filled.TextWrapOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(3.94f, 5.0f) + lineTo(3.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(2.94f) + lineToRelative(4.0f, 4.0f) + lineTo(3.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(8.94f) + lineToRelative(2.32f, 2.32f) + lineToRelative(-1.97f, 1.97f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.42f) + lineToRelative(2.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, -1.42f) + lineToRelative(-0.3f, -0.29f) + horizontalLineToRelative(2.53f) + lineToRelative(2.78f, 2.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(14.18f, 11.0f) + lineTo(19.0f, 11.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 2.39f, 7.2f) + lineToRelative(-1.45f, -1.44f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 19.0f, 13.0f) + horizontalLineToRelative(-2.82f) + lineToRelative(-2.0f, -2.0f) + close() + moveTo(10.18f, 7.0f) + lineTo(8.18f, 5.0f) + lineTo(21.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(10.18f, 7.0f) + close() + moveTo(2.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(3.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + } + } + return _textWrapOff!! + } + +private var _textWrapOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Textbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Textbox.kt new file mode 100644 index 00000000..3a7ab2cf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Textbox.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Textbox: ImageVector + get() { + if (_textbox != null) { + return _textbox!! + } + _textbox = fluentIcon(name = "Filled.Textbox") { + fluentPath { + moveTo(21.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) + lineTo(5.75f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) + lineTo(21.0f, 5.75f) + close() + moveTo(14.25f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-7.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(7.6f) + close() + moveTo(6.75f, 15.5f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(17.25f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(10.6f) + close() + } + } + return _textbox!! + } + +private var _textbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextboxAlignBottom.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextboxAlignBottom.kt new file mode 100644 index 00000000..99ed3407 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextboxAlignBottom.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextboxAlignBottom: ImageVector + get() { + if (_textboxAlignBottom != null) { + return _textboxAlignBottom!! + } + _textboxAlignBottom = fluentIcon(name = "Filled.TextboxAlignBottom") { + fluentPath { + moveTo(18.25f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) + lineTo(5.75f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(12.5f) + close() + moveTo(6.75f, 13.5f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(10.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + lineTo(6.75f, 13.5f) + close() + moveTo(17.25f, 16.5f) + lineTo(6.65f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(10.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + } + } + return _textboxAlignBottom!! + } + +private var _textboxAlignBottom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextboxAlignBottomRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextboxAlignBottomRotate90.kt new file mode 100644 index 00000000..ddbb9b65 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextboxAlignBottomRotate90.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextboxAlignBottomRotate90: ImageVector + get() { + if (_textboxAlignBottomRotate90 != null) { + return _textboxAlignBottomRotate90!! + } + _textboxAlignBottomRotate90 = fluentIcon(name = "Filled.TextboxAlignBottomRotate90") { + fluentPath { + moveTo(21.0f, 18.25f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) + lineTo(5.75f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(12.5f) + close() + moveTo(10.5f, 6.75f) + verticalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + verticalLineToRelative(10.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + lineTo(10.5f, 6.75f) + close() + moveTo(7.5f, 17.25f) + lineTo(7.5f, 6.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + verticalLineToRelative(10.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + close() + } + } + return _textboxAlignBottomRotate90!! + } + +private var _textboxAlignBottomRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextboxAlignCenter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextboxAlignCenter.kt new file mode 100644 index 00000000..5b54ce64 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextboxAlignCenter.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextboxAlignCenter: ImageVector + get() { + if (_textboxAlignCenter != null) { + return _textboxAlignCenter!! + } + _textboxAlignCenter = fluentIcon(name = "Filled.TextboxAlignCenter") { + fluentPath { + moveTo(18.25f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) + lineTo(5.75f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(12.5f) + close() + moveTo(7.0f, 10.0f) + horizontalLineToRelative(-0.14f) + curveToRelative(-0.48f, 0.06f, -0.86f, 0.37f, -0.86f, 0.75f) + curveToRelative(0.0f, 0.41f, 0.45f, 0.75f, 1.0f, 0.75f) + horizontalLineToRelative(10.14f) + curveToRelative(0.48f, -0.06f, 0.86f, -0.37f, 0.86f, -0.75f) + curveToRelative(0.0f, -0.41f, -0.45f, -0.75f, -1.0f, -0.75f) + lineTo(7.0f, 10.0f) + close() + moveTo(15.33f, 13.0f) + lineTo(8.57f, 13.0f) + curveToRelative(-0.32f, 0.06f, -0.57f, 0.37f, -0.57f, 0.75f) + curveToRelative(0.0f, 0.41f, 0.3f, 0.75f, 0.67f, 0.75f) + horizontalLineToRelative(6.76f) + curveToRelative(0.32f, -0.06f, 0.57f, -0.37f, 0.57f, -0.75f) + curveToRelative(0.0f, -0.41f, -0.3f, -0.75f, -0.67f, -0.75f) + close() + } + } + return _textboxAlignCenter!! + } + +private var _textboxAlignCenter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextboxAlignMiddle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextboxAlignMiddle.kt new file mode 100644 index 00000000..49e7bd61 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextboxAlignMiddle.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextboxAlignMiddle: ImageVector + get() { + if (_textboxAlignMiddle != null) { + return _textboxAlignMiddle!! + } + _textboxAlignMiddle = fluentIcon(name = "Filled.TextboxAlignMiddle") { + fluentPath { + moveTo(18.25f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) + lineTo(5.75f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(12.5f) + close() + moveTo(7.0f, 10.0f) + horizontalLineToRelative(-0.14f) + curveToRelative(-0.48f, 0.06f, -0.86f, 0.37f, -0.86f, 0.75f) + curveToRelative(0.0f, 0.41f, 0.45f, 0.75f, 1.0f, 0.75f) + horizontalLineToRelative(10.14f) + curveToRelative(0.48f, -0.06f, 0.86f, -0.37f, 0.86f, -0.75f) + curveToRelative(0.0f, -0.41f, -0.45f, -0.75f, -1.0f, -0.75f) + lineTo(7.0f, 10.0f) + close() + moveTo(17.0f, 13.0f) + lineTo(6.86f, 13.0f) + curveToRelative(-0.48f, 0.06f, -0.86f, 0.37f, -0.86f, 0.75f) + curveToRelative(0.0f, 0.41f, 0.45f, 0.75f, 1.0f, 0.75f) + horizontalLineToRelative(10.14f) + curveToRelative(0.48f, -0.06f, 0.86f, -0.37f, 0.86f, -0.75f) + curveToRelative(0.0f, -0.41f, -0.45f, -0.75f, -1.0f, -0.75f) + close() + } + } + return _textboxAlignMiddle!! + } + +private var _textboxAlignMiddle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextboxAlignMiddleRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextboxAlignMiddleRotate90.kt new file mode 100644 index 00000000..df98ec30 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextboxAlignMiddleRotate90.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextboxAlignMiddleRotate90: ImageVector + get() { + if (_textboxAlignMiddleRotate90 != null) { + return _textboxAlignMiddleRotate90!! + } + _textboxAlignMiddleRotate90 = fluentIcon(name = "Filled.TextboxAlignMiddleRotate90") { + fluentPath { + moveTo(21.0f, 18.25f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) + lineTo(5.75f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(12.5f) + close() + moveTo(14.0f, 7.0f) + verticalLineToRelative(-0.14f) + curveToRelative(-0.06f, -0.48f, -0.37f, -0.86f, -0.75f, -0.86f) + curveToRelative(-0.41f, 0.0f, -0.75f, 0.45f, -0.75f, 1.0f) + verticalLineToRelative(10.14f) + curveToRelative(0.06f, 0.48f, 0.37f, 0.86f, 0.75f, 0.86f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.45f, 0.75f, -1.0f) + lineTo(14.0f, 7.0f) + close() + moveTo(11.0f, 17.0f) + lineTo(11.0f, 6.86f) + curveToRelative(-0.06f, -0.48f, -0.37f, -0.86f, -0.75f, -0.86f) + curveToRelative(-0.41f, 0.0f, -0.75f, 0.45f, -0.75f, 1.0f) + verticalLineToRelative(10.14f) + curveToRelative(0.06f, 0.48f, 0.37f, 0.86f, 0.75f, 0.86f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.45f, 0.75f, -1.0f) + close() + } + } + return _textboxAlignMiddleRotate90!! + } + +private var _textboxAlignMiddleRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextboxAlignTop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextboxAlignTop.kt new file mode 100644 index 00000000..2e5366be --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextboxAlignTop.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextboxAlignTop: ImageVector + get() { + if (_textboxAlignTop != null) { + return _textboxAlignTop!! + } + _textboxAlignTop = fluentIcon(name = "Filled.TextboxAlignTop") { + fluentPath { + moveTo(18.25f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) + lineTo(5.75f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(12.5f) + close() + moveTo(7.0f, 7.48f) + lineToRelative(-0.14f, 0.01f) + curveToRelative(-0.48f, 0.05f, -0.86f, 0.36f, -0.86f, 0.74f) + curveToRelative(0.0f, 0.42f, 0.45f, 0.75f, 1.0f, 0.75f) + horizontalLineToRelative(10.14f) + curveToRelative(0.48f, -0.05f, 0.86f, -0.37f, 0.86f, -0.75f) + curveToRelative(0.0f, -0.41f, -0.45f, -0.75f, -1.0f, -0.75f) + lineTo(7.0f, 7.48f) + close() + moveTo(17.0f, 10.48f) + lineTo(7.0f, 10.48f) + lineToRelative(-0.14f, 0.01f) + curveToRelative(-0.48f, 0.05f, -0.86f, 0.36f, -0.86f, 0.74f) + curveToRelative(0.0f, 0.42f, 0.45f, 0.75f, 1.0f, 0.75f) + horizontalLineToRelative(10.14f) + curveToRelative(0.48f, -0.05f, 0.86f, -0.37f, 0.86f, -0.75f) + curveToRelative(0.0f, -0.41f, -0.45f, -0.75f, -1.0f, -0.75f) + close() + } + } + return _textboxAlignTop!! + } + +private var _textboxAlignTop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextboxAlignTopRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextboxAlignTopRotate90.kt new file mode 100644 index 00000000..0568543c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextboxAlignTopRotate90.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextboxAlignTopRotate90: ImageVector + get() { + if (_textboxAlignTopRotate90 != null) { + return _textboxAlignTopRotate90!! + } + _textboxAlignTopRotate90 = fluentIcon(name = "Filled.TextboxAlignTopRotate90") { + fluentPath { + moveTo(21.0f, 18.25f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) + lineTo(5.75f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(12.5f) + close() + moveTo(16.52f, 7.0f) + lineToRelative(-0.01f, -0.14f) + curveToRelative(-0.05f, -0.48f, -0.36f, -0.86f, -0.74f, -0.86f) + curveToRelative(-0.42f, 0.0f, -0.75f, 0.45f, -0.75f, 1.0f) + verticalLineToRelative(10.14f) + curveToRelative(0.05f, 0.48f, 0.37f, 0.86f, 0.75f, 0.86f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.45f, 0.75f, -1.0f) + lineTo(16.52f, 7.0f) + close() + moveTo(13.52f, 17.0f) + lineTo(13.52f, 7.0f) + lineToRelative(-0.01f, -0.14f) + curveToRelative(-0.05f, -0.48f, -0.36f, -0.86f, -0.74f, -0.86f) + curveToRelative(-0.42f, 0.0f, -0.75f, 0.45f, -0.75f, 1.0f) + verticalLineToRelative(10.14f) + curveToRelative(0.05f, 0.48f, 0.37f, 0.86f, 0.75f, 0.86f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.45f, 0.75f, -1.0f) + close() + } + } + return _textboxAlignTopRotate90!! + } + +private var _textboxAlignTopRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextboxMore.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextboxMore.kt new file mode 100644 index 00000000..32a2fece --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextboxMore.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextboxMore: ImageVector + get() { + if (_textboxMore != null) { + return _textboxMore!! + } + _textboxMore = fluentIcon(name = "Filled.TextboxMore") { + fluentPath { + moveTo(18.25f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(12.3f) + arcToRelative(2.51f, 2.51f, 0.0f, false, false, -2.94f, 1.9f) + curveToRelative(0.0f, 0.03f, -0.03f, 0.05f, -0.06f, 0.05f) + arcToRelative(0.06f, 0.06f, 0.0f, false, true, -0.06f, -0.05f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.88f, 0.0f) + curveToRelative(0.0f, 0.03f, -0.03f, 0.05f, -0.06f, 0.05f) + arcToRelative(0.06f, 0.06f, 0.0f, false, true, -0.06f, -0.05f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 8.05f, 21.0f) + horizontalLineToRelative(-2.3f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(12.5f) + close() + moveTo(15.0f, 12.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-7.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(7.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(17.25f, 15.5f) + lineTo(6.65f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(10.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(18.0f, 8.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(6.65f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(10.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(12.0f, 20.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + moveTo(15.5f, 22.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + close() + moveTo(20.5f, 22.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + close() + } + } + return _textboxMore!! + } + +private var _textboxMore: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextboxRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextboxRotate90.kt new file mode 100644 index 00000000..819a9e4e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TextboxRotate90.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TextboxRotate90: ImageVector + get() { + if (_textboxRotate90 != null) { + return _textboxRotate90!! + } + _textboxRotate90 = fluentIcon(name = "Filled.TextboxRotate90") { + fluentPath { + moveTo(18.25f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) + lineTo(21.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) + lineTo(5.75f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) + horizontalLineToRelative(12.5f) + close() + moveTo(12.5f, 14.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-7.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(7.6f) + close() + moveTo(8.5f, 6.75f) + verticalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(7.0f, 6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.1f) + close() + moveTo(16.5f, 17.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(15.0f, 6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(10.6f) + close() + } + } + return _textboxRotate90!! + } + +private var _textboxRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Thinking.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Thinking.kt new file mode 100644 index 00000000..1309b98d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Thinking.kt @@ -0,0 +1,39 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Thinking: ImageVector + get() { + if (_thinking != null) { + return _thinking!! + } + _thinking = fluentIcon(name = "Filled.Thinking") { + fluentPath { + moveTo(4.0f, 18.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) + close() + moveTo(9.5f, 15.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(5.41f, 5.41f, 0.0f, false, true, 5.33f, 4.47f) + horizontalLineToRelative(0.08f) + arcToRelative(3.76f, 3.76f, 0.0f, true, true, 0.0f, 7.53f) + lineTo(6.6f, 14.0f) + arcToRelative(3.76f, 3.76f, 0.0f, true, true, 0.0f, -7.53f) + horizontalLineToRelative(0.08f) + arcTo(5.41f, 5.41f, 0.0f, false, true, 12.0f, 2.0f) + close() + } + } + return _thinking!! + } + +private var _thinking: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ThumbDislike.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ThumbDislike.kt new file mode 100644 index 00000000..bf8009d0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ThumbDislike.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ThumbDislike: ImageVector + get() { + if (_thumbDislike != null) { + return _thumbDislike!! + } + _thumbDislike = fluentIcon(name = "Filled.ThumbDislike") { + fluentPath { + moveTo(15.06f, 14.18f) + curveToRelative(0.46f, 1.43f, 0.69f, 2.68f, 0.69f, 3.76f) + curveToRelative(0.0f, 2.4f, -0.94f, 4.24f, -2.5f, 4.24f) + curveToRelative(-0.8f, 0.0f, -1.08f, -0.45f, -1.38f, -1.54f) + lineToRelative(-0.27f, -1.02f) + arcToRelative(264.6f, 264.6f, 0.0f, false, false, -0.56f, -1.9f) + lineToRelative(-2.87f, -4.49f) + arcToRelative(5.88f, 5.88f, 0.0f, false, false, -2.85f, -2.32f) + lineToRelative(-1.26f, -0.48f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.09f, -1.97f) + lineToRelative(0.69f, -3.54f) + curveToRelative(0.16f, -0.86f, 0.82f, -1.55f, 1.67f, -1.76f) + lineToRelative(8.25f, -2.02f) + arcToRelative(4.75f, 4.75f, 0.0f, false, true, 5.73f, 3.44f) + lineToRelative(1.58f, 6.17f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.67f, 3.43f) + horizontalLineToRelative(-3.16f) + close() + } + } + return _thumbDislike!! + } + +private var _thumbDislike: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ThumbLike.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ThumbLike.kt new file mode 100644 index 00000000..57ae5e78 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ThumbLike.kt @@ -0,0 +1,39 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ThumbLike: ImageVector + get() { + if (_thumbLike != null) { + return _thumbLike!! + } + _thumbLike = fluentIcon(name = "Filled.ThumbLike") { + fluentPath { + moveTo(15.06f, 9.0f) + curveToRelative(0.46f, -1.42f, 0.69f, -2.67f, 0.69f, -3.75f) + curveToRelative(0.0f, -2.4f, -0.94f, -4.25f, -2.5f, -4.25f) + curveToRelative(-0.85f, 0.0f, -1.11f, 0.5f, -1.44f, 1.75f) + arcToRelative(64.9f, 64.9f, 0.0f, false, true, -0.77f, 2.72f) + lineTo(8.17f, 9.95f) + arcToRelative(5.88f, 5.88f, 0.0f, false, true, -2.85f, 2.33f) + lineToRelative(-1.26f, 0.48f) + curveToRelative(-0.8f, 0.3f, -1.25f, 1.13f, -1.09f, 1.97f) + lineToRelative(0.69f, 3.54f) + curveToRelative(0.16f, 0.86f, 0.82f, 1.54f, 1.67f, 1.75f) + lineToRelative(8.25f, 2.03f) + arcToRelative(4.75f, 4.75f, 0.0f, false, false, 5.73f, -3.44f) + lineToRelative(1.58f, -6.18f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.22f, 9.0f) + horizontalLineToRelative(-3.16f) + close() + } + } + return _thumbLike!! + } + +private var _thumbLike: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TicketDiagonal.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TicketDiagonal.kt new file mode 100644 index 00000000..e4f617d2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TicketDiagonal.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TicketDiagonal: ImageVector + get() { + if (_ticketDiagonal != null) { + return _ticketDiagonal!! + } + _ticketDiagonal = fluentIcon(name = "Filled.TicketDiagonal") { + fluentPath { + moveTo(15.6f, 2.53f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.2f, 0.0f) + lineToRelative(-9.87f, 9.88f) + curveToRelative(-0.88f, 0.88f, -0.88f, 2.3f, 0.0f, 3.18f) + lineToRelative(1.17f, 1.17f) + curveToRelative(0.51f, 0.51f, 1.23f, 0.42f, 1.66f, 0.16f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 1.71f, 1.71f) + curveToRelative(-0.25f, 0.44f, -0.34f, 1.16f, 0.17f, 1.67f) + lineToRelative(1.17f, 1.17f) + curveToRelative(0.88f, 0.88f, 2.3f, 0.88f, 3.18f, 0.0f) + lineToRelative(9.88f, -9.88f) + curveToRelative(0.88f, -0.88f, 0.88f, -2.3f, 0.0f, -3.18f) + lineTo(20.3f, 7.24f) + curveToRelative(-0.51f, -0.51f, -1.23f, -0.42f, -1.66f, -0.16f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.71f, -1.71f) + curveToRelative(0.25f, -0.44f, 0.34f, -1.16f, -0.17f, -1.67f) + lineTo(15.6f, 2.53f) + close() + } + } + return _ticketDiagonal!! + } + +private var _ticketDiagonal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TicketHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TicketHorizontal.kt new file mode 100644 index 00000000..1e904afc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TicketHorizontal.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TicketHorizontal: ImageVector + get() { + if (_ticketHorizontal != null) { + return _ticketHorizontal!! + } + _ticketHorizontal = fluentIcon(name = "Filled.TicketHorizontal") { + fluentPath { + moveTo(20.75f, 5.0f) + curveToRelative(0.7f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(2.26f) + curveToRelative(0.0f, 0.4f, -0.3f, 0.72f, -0.7f, 0.75f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 0.0f, 5.48f) + curveToRelative(0.4f, 0.03f, 0.7f, 0.36f, 0.7f, 0.75f) + verticalLineToRelative(2.26f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineTo(3.25f) + curveTo(2.56f, 19.0f, 2.0f, 18.44f, 2.0f, 17.75f) + verticalLineToRelative(-2.26f) + curveToRelative(0.0f, -0.4f, 0.3f, -0.72f, 0.7f, -0.75f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 0.0f, -5.48f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, -0.75f) + verticalLineTo(6.25f) + curveTo(2.0f, 5.56f, 2.56f, 5.0f, 3.25f, 5.0f) + horizontalLineToRelative(17.5f) + close() + } + } + return _ticketHorizontal!! + } + +private var _ticketHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TimeAndWeather.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TimeAndWeather.kt new file mode 100644 index 00000000..90b3a009 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TimeAndWeather.kt @@ -0,0 +1,96 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TimeAndWeather: ImageVector + get() { + if (_timeAndWeather != null) { + return _timeAndWeather!! + } + _timeAndWeather = fluentIcon(name = "Filled.TimeAndWeather") { + fluentPath { + moveTo(12.0f, 18.53f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.99f, 0.89f) + verticalLineToRelative(1.57f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.99f, 0.11f) + verticalLineToRelative(-1.57f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(18.03f, 16.6f) + lineTo(19.06f, 17.63f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.41f, 1.41f) + lineToRelative(-1.03f, -1.03f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, -1.41f) + close() + moveTo(7.37f, 16.6f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.41f) + lineToRelative(-1.03f, 1.03f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.41f, -1.41f) + lineToRelative(1.03f, -1.03f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, 0.0f) + close() + moveTo(12.01f, 6.47f) + arcToRelative(5.52f, 5.52f, 0.0f, true, true, 0.0f, 11.05f) + arcToRelative(5.52f, 5.52f, 0.0f, false, true, 0.0f, -11.05f) + close() + moveTo(11.25f, 9.0f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(3.1f) + curveToRelative(0.05f, 0.34f, 0.32f, 0.6f, 0.65f, 0.65f) + horizontalLineToRelative(2.2f) + curveToRelative(0.33f, -0.05f, 0.6f, -0.31f, 0.64f, -0.64f) + lineToRelative(0.01f, -0.1f) + verticalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, -0.65f) + lineTo(12.0f, 12.01f) + lineTo(12.0f, 9.64f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) + close() + moveTo(20.98f, 11.02f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.11f, 2.0f) + horizontalLineToRelative(-1.57f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.11f, -2.0f) + horizontalLineToRelative(1.57f) + close() + moveTo(4.48f, 10.99f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.12f, 2.0f) + lineTo(3.02f, 12.99f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.11f, -2.0f) + horizontalLineToRelative(1.57f) + close() + moveTo(6.25f, 4.87f) + lineTo(6.35f, 4.96f) + lineTo(7.37f, 5.99f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 1.5f) + lineToRelative(-0.09f, -0.09f) + lineToRelative(-1.03f, -1.03f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -1.5f) + close() + moveTo(19.06f, 4.96f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.09f, 1.32f) + lineToRelative(-0.09f, 0.1f) + lineToRelative(-1.03f, 1.02f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.5f, -1.32f) + lineToRelative(0.09f, -0.1f) + lineToRelative(1.03f, -1.02f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, 0.0f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.89f) + verticalLineToRelative(1.57f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.12f) + lineTo(11.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + } + } + return _timeAndWeather!! + } + +private var _timeAndWeather: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TimePicker.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TimePicker.kt new file mode 100644 index 00000000..16e51c20 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TimePicker.kt @@ -0,0 +1,100 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TimePicker: ImageVector + get() { + if (_timePicker != null) { + return _timePicker!! + } + _timePicker = fluentIcon(name = "Filled.TimePicker") { + fluentPath { + moveTo(12.62f, 2.22f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.24f, 0.0f) + lineToRelative(-3.75f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.24f, 1.56f) + lineTo(12.0f, 4.28f) + lineToRelative(3.13f, 2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.24f, -1.56f) + lineToRelative(-3.75f, -3.0f) + close() + moveTo(2.75f, 9.0f) + curveTo(1.51f, 9.0f, 0.5f, 10.0f, 0.5f, 11.25f) + verticalLineToRelative(1.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) + verticalLineToRelative(-1.5f) + curveTo(5.0f, 10.01f, 4.0f, 9.0f, 2.75f, 9.0f) + close() + moveTo(2.0f, 11.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.5f) + close() + moveTo(8.25f, 9.0f) + curveTo(7.01f, 9.0f, 6.0f, 10.0f, 6.0f, 11.25f) + verticalLineToRelative(1.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + close() + moveTo(7.5f, 11.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.5f) + close() + moveTo(14.0f, 11.25f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.5f, 0.0f) + verticalLineToRelative(1.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) + verticalLineToRelative(-1.5f) + close() + moveTo(16.25f, 10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(21.75f, 9.0f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(1.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) + verticalLineToRelative(-1.5f) + curveTo(24.0f, 10.01f, 23.0f, 9.0f, 21.75f, 9.0f) + close() + moveTo(21.0f, 11.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.5f) + close() + moveTo(13.0f, 10.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(12.25f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(12.63f, 22.03f) + lineTo(16.63f, 18.78f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.26f, -1.56f) + lineTo(12.0f, 19.96f) + lineToRelative(-3.37f, -2.74f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.26f, 1.56f) + lineToRelative(4.0f, 3.25f) + curveToRelative(0.37f, 0.3f, 0.9f, 0.3f, 1.26f, 0.0f) + close() + } + } + return _timePicker!! + } + +private var _timePicker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Timeline.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Timeline.kt new file mode 100644 index 00000000..97b88d99 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Timeline.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Timeline: ImageVector + get() { + if (_timeline != null) { + return _timeline!! + } + _timeline = fluentIcon(name = "Filled.Timeline") { + fluentPath { + moveTo(15.25f, 13.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(3.75f, 21.0f) + curveTo(2.78f, 21.0f, 2.0f, 20.22f, 2.0f, 19.25f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + close() + moveTo(21.0f, 14.9f) + verticalLineToRelative(5.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(19.5f, 14.91f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 1.5f, -0.01f) + close() + moveTo(20.25f, 10.1f) + arcToRelative(1.9f, 1.9f, 0.0f, true, true, 0.0f, 3.8f) + arcToRelative(1.9f, 1.9f, 0.0f, false, true, 0.0f, -3.8f) + close() + moveTo(15.25f, 3.0f) + curveTo(16.2f, 3.0f, 17.0f, 3.78f, 17.0f, 4.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) + lineTo(3.75f, 11.0f) + curveTo(2.78f, 11.0f, 2.0f, 10.22f, 2.0f, 9.25f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.75f) + horizontalLineToRelative(11.65f) + close() + moveTo(20.25f, 3.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + lineTo(21.0f, 9.1f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -1.5f, -0.01f) + lineTo(19.5f, 3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _timeline!! + } + +private var _timeline: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Timer.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Timer.kt new file mode 100644 index 00000000..838127a4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Timer.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Timer: ImageVector + get() { + if (_timer != null) { + return _timer!! + } + _timer = fluentIcon(name = "Filled.Timer") { + fluentPath { + moveTo(12.0f, 5.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 0.0f, 17.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, 0.0f, -17.0f) + close() + moveTo(12.0f, 8.0f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(12.75f, 8.65f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 12.0f, 8.0f) + close() + moveTo(19.17f, 5.12f) + lineTo(19.25f, 5.18f) + lineTo(20.4f, 6.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.9f, 1.2f) + lineToRelative(-0.08f, -0.06f) + lineToRelative(-1.15f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.9f, -1.2f) + close() + moveTo(14.25f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(4.6f) + close() + } + } + return _timer!! + } + +private var _timer: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Timer10.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Timer10.kt new file mode 100644 index 00000000..e1db57a6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Timer10.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Timer10: ImageVector + get() { + if (_timer10 != null) { + return _timer10!! + } + _timer10 = fluentIcon(name = "Filled.Timer10") { + fluentPath { + moveTo(12.0f, 5.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, 8.38f, 7.05f) + arcToRelative(4.28f, 4.28f, 0.0f, false, false, -4.38f, 2.2f) + verticalLineToRelative(-0.5f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.3f, -1.66f) + lineToRelative(-0.95f, 0.32f) + lineTo(12.75f, 8.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + lineTo(11.25f, 13.34f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 1.25f, 2.64f) + verticalLineToRelative(6.0f) + curveToRelative(-0.17f, 0.02f, -0.33f, 0.02f, -0.5f, 0.02f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, 0.0f, -17.0f) + close() + moveTo(19.17f, 5.12f) + lineTo(19.25f, 5.18f) + lineTo(20.4f, 6.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.9f, 1.2f) + lineToRelative(-0.08f, -0.06f) + lineToRelative(-1.15f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.9f, -1.2f) + close() + moveTo(14.25f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(4.6f) + close() + moveTo(14.69f, 13.14f) + curveToRelative(0.2f, 0.14f, 0.31f, 0.37f, 0.31f, 0.61f) + verticalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-7.46f) + lineToRelative(-0.51f, 0.17f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.48f, -1.42f) + lineToRelative(1.5f, -0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.68f, 0.1f) + close() + moveTo(16.5f, 16.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 6.5f, 0.0f) + verticalLineToRelative(3.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.5f, 0.0f) + verticalLineToRelative(-3.5f) + close() + moveTo(19.75f, 14.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(3.5f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, 3.5f, 0.0f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + } + } + return _timer10!! + } + +private var _timer10: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Timer2.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Timer2.kt new file mode 100644 index 00000000..1e7c6d85 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Timer2.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Timer2: ImageVector + get() { + if (_timer2 != null) { + return _timer2!! + } + _timer2 = fluentIcon(name = "Filled.Timer2") { + fluentPath { + moveTo(20.4f, 12.16f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, -5.4f, 9.3f) + verticalLineToRelative(-0.21f) + curveToRelative(0.0f, -1.31f, 0.6f, -2.48f, 1.53f, -3.26f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 15.0f, 16.25f) + arcToRelative(4.25f, 4.25f, 0.0f, false, true, 5.4f, -4.1f) + close() + moveTo(11.26f, 8.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.48f, 0.0f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(11.25f, 8.65f) + close() + moveTo(19.26f, 5.18f) + lineTo(19.17f, 5.12f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 1.2f) + lineToRelative(1.15f, 1.0f) + lineToRelative(0.08f, 0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.9f, -1.2f) + lineToRelative(-1.15f, -1.0f) + close() + moveTo(15.0f, 3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(19.25f, 13.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 16.0f, 16.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + arcTo(1.75f, 1.75f, 0.0f, true, true, 19.25f, 18.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 16.0f, 21.25f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(17.5f, 21.5f) + verticalLineToRelative(-0.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 0.0f, -6.5f) + close() + } + } + return _timer2!! + } + +private var _timer2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Timer3.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Timer3.kt new file mode 100644 index 00000000..71e0bac3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Timer3.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Timer3: ImageVector + get() { + if (_timer3 != null) { + return _timer3!! + } + _timer3 = fluentIcon(name = "Filled.Timer3") { + fluentPath { + moveTo(15.45f, 15.92f) + curveToRelative(0.53f, 0.6f, 1.37f, 0.74f, 2.06f, 0.4f) + arcToRelative(2.99f, 2.99f, 0.0f, false, false, 0.0f, 3.35f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.5f, 1.78f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 5.38f, -9.3f) + curveToRelative(-0.37f, -0.1f, -0.76f, -0.15f, -1.14f, -0.15f) + arcToRelative(5.47f, 5.47f, 0.0f, false, false, -3.35f, 1.19f) + arcToRelative(5.53f, 5.53f, 0.0f, false, false, -0.28f, 0.22f) + lineToRelative(-0.02f, 0.02f) + lineToRelative(-0.01f, 0.01f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -0.14f, 2.48f) + close() + moveTo(11.25f, 8.65f) + lineTo(11.25f, 13.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(12.75f, 8.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + close() + moveTo(19.25f, 5.18f) + lineTo(19.17f, 5.12f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 1.2f) + lineToRelative(1.15f, 1.0f) + lineToRelative(0.08f, 0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.9f, -1.2f) + lineToRelative(-1.15f, -1.0f) + close() + moveTo(15.0f, 3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(18.25f, 18.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + curveToRelative(0.53f, 0.0f, 1.06f, -0.18f, 1.44f, -0.47f) + curveToRelative(0.4f, -0.3f, 0.56f, -0.63f, 0.56f, -0.9f) + curveToRelative(0.0f, -0.65f, -0.66f, -1.38f, -1.75f, -1.38f) + curveToRelative(-0.52f, 0.0f, -1.01f, 0.19f, -1.4f, 0.4f) + arcToRelative(4.1f, 4.1f, 0.0f, false, false, -0.6f, 0.4f) + verticalLineToRelative(0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.0f, -1.12f) + lineToRelative(0.02f, -0.02f) + arcToRelative(3.08f, 3.08f, 0.0f, false, true, 0.23f, -0.18f) + curveToRelative(0.15f, -0.1f, 0.36f, -0.25f, 0.62f, -0.4f) + curveToRelative(0.51f, -0.28f, 1.27f, -0.59f, 2.13f, -0.59f) + curveToRelative(1.68f, 0.0f, 3.25f, 1.18f, 3.25f, 2.88f) + curveToRelative(0.0f, 0.89f, -0.52f, 1.62f, -1.16f, 2.1f) + lineToRelative(-0.03f, 0.02f) + lineToRelative(0.03f, 0.02f) + curveToRelative(0.64f, 0.48f, 1.16f, 1.21f, 1.16f, 2.1f) + curveToRelative(0.0f, 1.7f, -1.57f, 2.88f, -3.25f, 2.88f) + curveToRelative(-0.86f, 0.0f, -1.62f, -0.31f, -2.13f, -0.6f) + arcToRelative(5.58f, 5.58f, 0.0f, false, true, -0.85f, -0.57f) + lineToRelative(-0.01f, -0.01f) + lineToRelative(-0.01f, -0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.0f, -1.12f) + lineToRelative(0.02f, 0.02f) + arcToRelative(2.96f, 2.96f, 0.0f, false, false, 0.57f, 0.38f) + curveToRelative(0.4f, 0.22f, 0.9f, 0.41f, 1.41f, 0.41f) + curveToRelative(1.09f, 0.0f, 1.75f, -0.73f, 1.75f, -1.38f) + curveToRelative(0.0f, -0.27f, -0.17f, -0.6f, -0.56f, -0.9f) + arcToRelative(2.48f, 2.48f, 0.0f, false, false, -1.44f, -0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _timer3!! + } + +private var _timer3: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TimerOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TimerOff.kt new file mode 100644 index 00000000..691f6412 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TimerOff.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TimerOff: ImageVector + get() { + if (_timerOff != null) { + return _timerOff!! + } + _timerOff = fluentIcon(name = "Filled.TimerOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(4.0f, 4.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, 12.01f, 12.01f) + lineToRelative(2.49f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.07f) + lineTo(3.28f, 2.22f) + close() + moveTo(12.62f, 13.68f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.36f, -0.33f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-0.94f) + lineToRelative(1.37f, 1.37f) + close() + moveTo(12.75f, 8.75f) + verticalLineToRelative(0.82f) + lineToRelative(7.13f, 7.13f) + arcTo(8.5f, 8.5f, 0.0f, false, false, 8.8f, 5.62f) + lineToRelative(2.63f, 2.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.3f, 0.4f) + lineToRelative(0.01f, 0.1f) + close() + moveTo(19.17f, 5.12f) + lineTo(19.25f, 5.18f) + lineTo(20.4f, 6.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.9f, 1.2f) + lineToRelative(-0.08f, -0.06f) + lineToRelative(-1.15f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.9f, -1.2f) + close() + moveTo(14.25f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(4.6f) + close() + } + } + return _timerOff!! + } + +private var _timerOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ToggleLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ToggleLeft.kt new file mode 100644 index 00000000..99afb7e0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ToggleLeft.kt @@ -0,0 +1,32 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ToggleLeft: ImageVector + get() { + if (_toggleLeft != null) { + return _toggleLeft!! + } + _toggleLeft = fluentIcon(name = "Filled.ToggleLeft") { + fluentPath { + moveTo(17.0f, 7.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, 10.0f) + lineTo(7.0f, 17.0f) + arcTo(5.0f, 5.0f, 0.0f, false, true, 7.0f, 7.0f) + horizontalLineToRelative(10.0f) + close() + moveTo(7.25f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) + close() + } + } + return _toggleLeft!! + } + +private var _toggleLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ToggleMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ToggleMultiple.kt new file mode 100644 index 00000000..33f89fd7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ToggleMultiple.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ToggleMultiple: ImageVector + get() { + if (_toggleMultiple != null) { + return _toggleMultiple!! + } + _toggleMultiple = fluentIcon(name = "Filled.ToggleMultiple") { + fluentPath { + moveTo(2.0f, 6.5f) + arcTo(4.5f, 4.5f, 0.0f, false, true, 6.5f, 2.0f) + horizontalLineToRelative(11.0f) + arcToRelative(4.5f, 4.5f, 0.0f, true, true, 0.0f, 9.0f) + horizontalLineToRelative(-11.0f) + arcTo(4.5f, 4.5f, 0.0f, false, true, 2.0f, 6.5f) + close() + moveTo(6.5f, 8.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) + close() + moveTo(6.5f, 13.0f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, 0.0f, 9.0f) + horizontalLineToRelative(11.0f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, 0.0f, -9.0f) + horizontalLineToRelative(-11.0f) + close() + moveTo(19.5f, 17.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + } + } + return _toggleMultiple!! + } + +private var _toggleMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ToggleRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ToggleRight.kt new file mode 100644 index 00000000..11b06869 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ToggleRight.kt @@ -0,0 +1,32 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ToggleRight: ImageVector + get() { + if (_toggleRight != null) { + return _toggleRight!! + } + _toggleRight = fluentIcon(name = "Filled.ToggleRight") { + fluentPath { + moveTo(7.0f, 7.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 0.0f, 10.0f) + horizontalLineToRelative(10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 0.0f, -10.0f) + lineTo(7.0f, 7.0f) + close() + moveTo(16.75f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, -5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, 5.0f) + close() + } + } + return _toggleRight!! + } + +private var _toggleRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Toolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Toolbox.kt new file mode 100644 index 00000000..e235e928 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Toolbox.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Toolbox: ImageVector + get() { + if (_toolbox != null) { + return _toolbox!! + } + _toolbox = fluentIcon(name = "Filled.Toolbox") { + fluentPath { + moveTo(7.0f, 6.25f) + lineTo(7.0f, 7.0f) + lineTo(4.25f, 7.0f) + curveTo(3.01f, 7.0f, 2.0f, 8.0f, 2.0f, 9.25f) + verticalLineToRelative(2.25f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(8.0f) + verticalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(0.75f) + lineTo(22.0f, 11.5f) + lineTo(22.0f, 9.25f) + curveTo(22.0f, 8.01f, 21.0f, 7.0f, 19.75f, 7.0f) + lineTo(17.0f, 7.0f) + verticalLineToRelative(-0.75f) + curveTo(17.0f, 5.01f, 16.0f, 4.0f, 14.75f, 4.0f) + horizontalLineToRelative(-5.5f) + curveTo(8.01f, 4.0f, 7.0f, 5.01f, 7.0f, 6.25f) + close() + moveTo(9.25f, 5.5f) + horizontalLineToRelative(5.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(15.5f, 7.0f) + horizontalLineToRelative(-7.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(22.0f, 13.0f) + horizontalLineToRelative(-4.5f) + verticalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(16.0f, 13.0f) + lineTo(8.0f, 13.0f) + verticalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(6.5f, 13.0f) + lineTo(2.0f, 13.0f) + verticalLineToRelative(4.75f) + curveTo(2.0f, 18.99f, 3.0f, 20.0f, 4.25f, 20.0f) + horizontalLineToRelative(15.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.01f, 2.25f, -2.25f) + lineTo(22.0f, 13.0f) + close() + } + } + return _toolbox!! + } + +private var _toolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TooltipQuote.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TooltipQuote.kt new file mode 100644 index 00000000..71dcdafd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TooltipQuote.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TooltipQuote: ImageVector + get() { + if (_tooltipQuote != null) { + return _tooltipQuote!! + } + _tooltipQuote = fluentIcon(name = "Filled.TooltipQuote") { + fluentPath { + moveTo(4.25f, 2.0f) + curveTo(3.01f, 2.0f, 2.0f, 3.0f, 2.0f, 4.25f) + verticalLineToRelative(7.5f) + curveTo(2.0f, 12.99f, 3.0f, 14.0f, 4.25f, 14.0f) + horizontalLineToRelative(1.94f) + lineToRelative(1.9f, 3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.32f, 0.0f) + lineToRelative(1.9f, -3.6f) + horizontalLineToRelative(1.94f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-7.5f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-9.0f) + close() + moveTo(5.5f, 6.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + curveToRelative(0.0f, 2.15f, -1.29f, 3.6f, -1.72f, 4.03f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + curveToRelative(0.2f, -0.2f, 0.61f, -0.66f, 0.91f, -1.33f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.64f) + verticalLineToRelative(-1.0f) + close() + moveTo(9.5f, 6.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + curveToRelative(0.0f, 2.15f, -1.29f, 3.6f, -1.72f, 4.03f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + curveToRelative(0.2f, -0.2f, 0.61f, -0.66f, 0.91f, -1.33f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.64f) + verticalLineToRelative(-1.0f) + close() + moveTo(2.75f, 16.5f) + horizontalLineToRelative(3.63f) + lineToRelative(0.79f, 1.5f) + lineTo(2.75f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(21.25f, 18.0f) + lineTo(10.33f, 18.0f) + lineToRelative(0.8f, -1.5f) + horizontalLineToRelative(10.12f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(2.0f, 21.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _tooltipQuote!! + } + +private var _tooltipQuote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TopSpeed.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TopSpeed.kt new file mode 100644 index 00000000..ed804882 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TopSpeed.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TopSpeed: ImageVector + get() { + if (_topSpeed != null) { + return _topSpeed!! + } + _topSpeed = fluentIcon(name = "Filled.TopSpeed") { + fluentPath { + moveTo(11.0f, 3.56f) + lineTo(11.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + lineTo(13.0f, 3.56f) + arcTo(8.5f, 8.5f, 0.0f, false, true, 20.44f, 11.0f) + lineTo(19.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(1.44f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, -2.24f, 4.74f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.1f, 1.02f) + arcTo(9.92f, 9.92f, 0.0f, false, false, 22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, -20.0f, 0.0f) + arcToRelative(9.92f, 9.92f, 0.0f, false, false, 2.7f, 6.76f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.1f, -1.02f) + arcTo(8.5f, 8.5f, 0.0f, false, true, 3.56f, 13.0f) + lineTo(5.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(3.56f, 11.0f) + curveToRelative(0.19f, -1.6f, 0.82f, -3.06f, 1.76f, -4.26f) + lineToRelative(0.97f, 0.97f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, -1.42f) + lineToRelative(-0.97f, -0.97f) + arcTo(8.46f, 8.46f, 0.0f, false, true, 11.0f, 3.56f) + close() + moveTo(16.76f, 6.63f) + arcToRelative(0.65f, 0.65f, 0.0f, false, false, -0.8f, 0.02f) + lineToRelative(-0.23f, 0.18f) + arcToRelative(396.1f, 396.1f, 0.0f, false, false, -4.21f, 3.6f) + arcToRelative(37.86f, 37.86f, 0.0f, false, false, -1.1f, 1.05f) + curveToRelative(-0.66f, 0.8f, -0.52f, 1.98f, 0.3f, 2.62f) + curveToRelative(0.83f, 0.64f, 2.03f, 0.5f, 2.68f, -0.3f) + arcToRelative(37.18f, 37.18f, 0.0f, false, false, 0.78f, -1.3f) + arcToRelative(152.48f, 152.48f, 0.0f, false, false, 2.62f, -4.85f) + lineToRelative(0.13f, -0.24f) + arcToRelative(0.61f, 0.61f, 0.0f, false, false, -0.17f, -0.78f) + close() + } + } + return _topSpeed!! + } + +private var _topSpeed: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Translate.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Translate.kt new file mode 100644 index 00000000..dbd90248 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Translate.kt @@ -0,0 +1,95 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Translate: ImageVector + get() { + if (_translate != null) { + return _translate!! + } + _translate = fluentIcon(name = "Filled.Translate") { + fluentPath { + moveTo(16.95f, 5.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.9f, -0.6f) + curveToRelative(-0.13f, 0.39f, -0.24f, 0.9f, -0.33f, 1.34f) + curveToRelative(-0.56f, 0.01f, -1.12f, 0.0f, -1.65f, -0.04f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -0.14f, 2.0f) + curveToRelative(0.46f, 0.03f, 0.93f, 0.05f, 1.42f, 0.05f) + curveToRelative(-0.11f, 0.6f, -0.19f, 1.17f, -0.24f, 1.7f) + arcToRelative(6.37f, 6.37f, 0.0f, false, false, -2.64f, 2.7f) + curveToRelative(-0.63f, 1.28f, -0.7f, 2.85f, 0.24f, 3.88f) + curveToRelative(0.67f, 0.73f, 1.7f, 0.75f, 2.5f, 0.58f) + curveToRelative(0.32f, -0.06f, 0.65f, -0.17f, 0.98f, -0.32f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.75f, -0.93f) + lineToRelative(-0.04f, -0.11f) + arcToRelative(8.4f, 8.4f, 0.0f, false, false, 2.74f, -4.06f) + curveToRelative(0.28f, 0.25f, 0.5f, 0.55f, 0.65f, 0.86f) + curveToRelative(0.29f, 0.6f, 0.34f, 1.27f, 0.1f, 1.91f) + arcToRelative(3.49f, 3.49f, 0.0f, false, true, -1.84f, 1.85f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.9f, 1.78f) + arcToRelative(5.47f, 5.47f, 0.0f, false, false, 2.82f, -2.94f) + arcToRelative(4.44f, 4.44f, 0.0f, false, false, -0.17f, -3.46f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 20.0f, 9.33f) + lineTo(20.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.97f, -0.23f) + curveToRelative(-0.57f, -0.04f, -1.17f, 0.0f, -1.8f, 0.14f) + curveToRelative(0.05f, -0.3f, 0.1f, -0.63f, 0.17f, -0.97f) + curveToRelative(0.97f, -0.09f, 1.94f, -0.25f, 2.84f, -0.47f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.48f, -1.94f) + curveToRelative(-0.62f, 0.15f, -1.28f, 0.27f, -1.96f, 0.36f) + lineToRelative(0.15f, -0.59f) + close() + moveTo(13.27f, 13.32f) + curveToRelative(0.16f, -0.34f, 0.41f, -0.7f, 0.76f, -1.04f) + arcToRelative(10.8f, 10.8f, 0.0f, false, false, 0.43f, 2.45f) + curveToRelative(-0.24f, 0.11f, -0.47f, 0.18f, -0.67f, 0.23f) + curveToRelative(-0.43f, 0.09f, -0.59f, 0.02f, -0.61f, 0.0f) + curveToRelative(-0.17f, -0.19f, -0.34f, -0.77f, 0.09f, -1.64f) + close() + moveTo(17.77f, 10.76f) + arcToRelative(6.36f, 6.36f, 0.0f, false, true, -1.57f, 2.73f) + arcToRelative(10.3f, 10.3f, 0.0f, false, true, -0.18f, -2.43f) + lineToRelative(0.1f, -0.04f) + lineToRelative(1.64f, -0.26f) + close() + moveTo(16.11f, 11.02f) + lineTo(17.77f, 10.76f) + curveToRelative(-0.5f, -0.03f, -1.05f, 0.05f, -1.66f, 0.26f) + close() + moveTo(7.54f, 6.3f) + arcToRelative(6.34f, 6.34f, 0.0f, false, false, -4.46f, 0.33f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.85f, 1.81f) + arcToRelative(4.34f, 4.34f, 0.0f, false, true, 3.05f, -0.22f) + curveToRelative(0.36f, 0.1f, 0.56f, 0.25f, 0.69f, 0.37f) + curveToRelative(0.12f, 0.12f, 0.2f, 0.27f, 0.25f, 0.45f) + curveToRelative(0.07f, 0.23f, 0.1f, 0.45f, 0.1f, 0.7f) + arcToRelative(6.41f, 6.41f, 0.0f, false, false, -4.82f, 0.52f) + arcToRelative(3.56f, 3.56f, 0.0f, false, false, -1.68f, 3.44f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 2.57f, 3.14f) + arcToRelative(5.6f, 5.6f, 0.0f, false, false, 3.95f, -0.55f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 10.0f, 16.0f) + verticalLineToRelative(-5.7f) + curveToRelative(0.02f, -0.42f, 0.04f, -1.16f, -0.16f, -1.84f) + curveToRelative(-0.13f, -0.44f, -0.36f, -0.9f, -0.75f, -1.29f) + curveToRelative(-0.4f, -0.4f, -0.91f, -0.7f, -1.55f, -0.88f) + close() + moveTo(7.12f, 11.59f) + curveToRelative(0.34f, 0.06f, 0.64f, 0.14f, 0.88f, 0.22f) + lineTo(8.0f, 14.0f) + curveToRelative(-0.22f, 0.15f, -0.53f, 0.34f, -0.9f, 0.52f) + curveToRelative(-0.8f, 0.38f, -1.68f, 0.6f, -2.47f, 0.38f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.12f, -1.38f) + curveToRelative(-0.06f, -0.7f, 0.24f, -1.29f, 0.66f, -1.53f) + arcToRelative(4.42f, 4.42f, 0.0f, false, true, 2.95f, -0.41f) + close() + } + } + return _translate!! + } + +private var _translate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TranslateOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TranslateOff.kt new file mode 100644 index 00000000..2967d603 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TranslateOff.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TranslateOff: ImageVector + get() { + if (_translateOff != null) { + return _translateOff!! + } + _translateOff = fluentIcon(name = "Filled.TranslateOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(2.8f, 2.8f) + curveToRelative(-0.85f, 0.1f, -1.52f, 0.34f, -1.94f, 0.54f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.85f, 1.81f) + arcToRelative(4.34f, 4.34f, 0.0f, false, true, 3.32f, -0.12f) + lineToRelative(0.65f, 0.65f) + lineToRelative(0.02f, 0.07f) + curveToRelative(0.07f, 0.23f, 0.1f, 0.45f, 0.1f, 0.7f) + arcToRelative(6.41f, 6.41f, 0.0f, false, false, -4.82f, 0.52f) + arcToRelative(3.56f, 3.56f, 0.0f, false, false, -1.68f, 3.44f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 2.57f, 3.14f) + arcToRelative(5.6f, 5.6f, 0.0f, false, false, 3.95f, -0.55f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 10.0f, 16.0f) + verticalLineToRelative(-4.94f) + lineToRelative(1.44f, 1.44f) + curveToRelative(-0.6f, 1.27f, -0.66f, 2.81f, 0.27f, 3.83f) + curveToRelative(0.67f, 0.73f, 1.7f, 0.75f, 2.5f, 0.58f) + curveToRelative(0.32f, -0.06f, 0.65f, -0.17f, 0.98f, -0.32f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.75f, 0.4f) + lineToRelative(4.78f, 4.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.07f) + lineTo(3.28f, 2.22f) + close() + moveTo(13.88f, 14.94f) + lineTo(13.79f, 14.96f) + curveToRelative(-0.43f, 0.09f, -0.59f, 0.02f, -0.61f, 0.0f) + curveToRelative(-0.12f, -0.13f, -0.23f, -0.43f, -0.16f, -0.88f) + lineToRelative(0.86f, 0.86f) + close() + moveTo(7.12f, 11.58f) + curveToRelative(0.34f, 0.06f, 0.64f, 0.14f, 0.88f, 0.22f) + lineTo(8.0f, 14.0f) + curveToRelative(-0.22f, 0.15f, -0.53f, 0.34f, -0.9f, 0.52f) + curveToRelative(-0.8f, 0.38f, -1.68f, 0.6f, -2.47f, 0.38f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.12f, -1.38f) + curveToRelative(-0.06f, -0.7f, 0.24f, -1.29f, 0.66f, -1.53f) + arcToRelative(4.42f, 4.42f, 0.0f, false, true, 2.95f, -0.41f) + close() + moveTo(20.39f, 14.26f) + curveToRelative(-0.2f, 0.53f, -0.61f, 1.1f, -1.37f, 1.58f) + lineToRelative(1.44f, 1.44f) + arcToRelative(5.08f, 5.08f, 0.0f, false, false, 1.8f, -2.33f) + arcToRelative(4.44f, 4.44f, 0.0f, false, false, -0.16f, -3.46f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 20.0f, 9.33f) + lineTo(20.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.97f, -0.23f) + curveToRelative(-0.57f, -0.04f, -1.17f, 0.0f, -1.8f, 0.14f) + curveToRelative(0.05f, -0.3f, 0.1f, -0.63f, 0.17f, -0.97f) + curveToRelative(0.97f, -0.09f, 1.94f, -0.25f, 2.84f, -0.47f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -0.48f, -1.94f) + curveToRelative(-0.62f, 0.15f, -1.28f, 0.27f, -1.96f, 0.36f) + lineToRelative(0.15f, -0.59f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.9f, -0.6f) + curveToRelative(-0.13f, 0.39f, -0.24f, 0.9f, -0.33f, 1.34f) + curveToRelative(-0.56f, 0.01f, -1.12f, 0.0f, -1.65f, -0.04f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -0.14f, 2.0f) + curveToRelative(0.46f, 0.03f, 0.93f, 0.05f, 1.42f, 0.04f) + curveToRelative(-0.11f, 0.62f, -0.19f, 1.18f, -0.24f, 1.7f) + curveToRelative(-0.26f, 0.15f, -0.5f, 0.3f, -0.72f, 0.47f) + lineToRelative(2.7f, 2.7f) + curveToRelative(-0.07f, -0.5f, -0.1f, -1.1f, -0.08f, -1.85f) + lineToRelative(0.1f, -0.04f) + lineToRelative(1.66f, -0.26f) + arcToRelative(6.35f, 6.35f, 0.0f, false, true, -1.35f, 2.48f) + lineToRelative(1.42f, 1.42f) + arcToRelative(8.37f, 8.37f, 0.0f, false, false, 1.8f, -3.17f) + curveToRelative(0.28f, 0.25f, 0.5f, 0.55f, 0.65f, 0.86f) + curveToRelative(0.29f, 0.6f, 0.34f, 1.27f, 0.1f, 1.91f) + close() + } + } + return _translateOff!! + } + +private var _translateOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Transmission.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Transmission.kt new file mode 100644 index 00000000..a152fe7b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Transmission.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Transmission: ImageVector + get() { + if (_transmission != null) { + return _transmission!! + } + _transmission = fluentIcon(name = "Filled.Transmission") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -0.75f, 5.4f) + verticalLineToRelative(3.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineTo(7.4f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 12.0f, 2.0f) + close() + moveTo(5.5f, 4.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 3.0f, 6.5f) + verticalLineToRelative(12.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 5.0f, 0.0f) + verticalLineTo(15.0f) + horizontalLineToRelative(1.5f) + verticalLineToRelative(3.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 5.0f, 0.0f) + verticalLineTo(15.0f) + horizontalLineTo(19.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + verticalLineTo(6.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) + verticalLineTo(10.0f) + horizontalLineToRelative(-2.25f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(3.75f) + verticalLineToRelative(-5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineTo(13.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-6.0f) + verticalLineToRelative(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-5.0f) + horizontalLineTo(6.5f) + verticalLineToRelative(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(3.75f) + verticalLineTo(10.0f) + horizontalLineTo(8.0f) + verticalLineTo(6.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 5.5f, 4.0f) + close() + } + } + return _transmission!! + } + +private var _transmission: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TrayItemAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TrayItemAdd.kt new file mode 100644 index 00000000..664e2dae --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TrayItemAdd.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TrayItemAdd: ImageVector + get() { + if (_trayItemAdd != null) { + return _trayItemAdd!! + } + _trayItemAdd = fluentIcon(name = "Filled.TrayItemAdd") { + fluentPath { + moveTo(13.75f, 2.0f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(4.0f) + curveTo(18.44f, 7.0f, 19.0f, 6.44f, 19.0f, 5.75f) + verticalLineToRelative(-2.5f) + curveTo(19.0f, 2.56f, 18.44f, 2.0f, 17.75f, 2.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(16.5f, 9.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(6.69f) + lineToRelative(-1.22f, -1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(2.5f, 2.5f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-1.22f, 1.22f) + lineTo(16.5f, 9.25f) + close() + moveTo(6.25f, 13.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(4.0f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-4.0f) + close() + moveTo(3.5f, 16.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, 2.75f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 18.75f) + verticalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + lineTo(4.75f, 20.0f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + verticalLineToRelative(-2.0f) + close() + } + } + return _trayItemAdd!! + } + +private var _trayItemAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TrayItemRemove.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TrayItemRemove.kt new file mode 100644 index 00000000..82103442 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TrayItemRemove.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TrayItemRemove: ImageVector + get() { + if (_trayItemRemove != null) { + return _trayItemRemove!! + } + _trayItemRemove = fluentIcon(name = "Filled.TrayItemRemove") { + fluentPath { + moveTo(13.75f, 2.0f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(4.0f) + curveTo(18.44f, 7.0f, 19.0f, 6.44f, 19.0f, 5.75f) + verticalLineToRelative(-2.5f) + curveTo(19.0f, 2.56f, 18.44f, 2.0f, 17.75f, 2.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(16.28f, 8.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineTo(15.0f, 11.06f) + verticalLineToRelative(6.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-6.69f) + lineToRelative(1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.5f, -2.5f) + close() + moveTo(6.25f, 13.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(4.0f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-4.0f) + close() + moveTo(3.5f, 16.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, 2.75f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 18.75f) + verticalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + lineTo(4.75f, 20.0f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + verticalLineToRelative(-2.0f) + close() + } + } + return _trayItemRemove!! + } + +private var _trayItemRemove: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Trophy.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Trophy.kt new file mode 100644 index 00000000..be8ea592 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Trophy.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Trophy: ImageVector + get() { + if (_trophy != null) { + return _trophy!! + } + _trophy = fluentIcon(name = "Filled.Trophy") { + fluentPath { + moveTo(15.25f, 2.0f) + curveToRelative(1.16f, 0.0f, 2.12f, 0.88f, 2.24f, 2.0f) + horizontalLineToRelative(1.27f) + curveToRelative(0.92f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) + verticalLineToRelative(3.15f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.06f, 3.24f) + lineToRelative(-0.2f, 0.01f) + arcToRelative(5.76f, 5.76f, 0.0f, false, true, -4.74f, 3.95f) + verticalLineToRelative(1.55f) + horizontalLineToRelative(1.75f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.25f, 3.07f) + lineTo(17.5f, 21.25f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.64f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.65f) + verticalLineToRelative(-0.6f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.06f, -3.24f) + lineToRelative(0.18f, -0.01f) + lineTo(11.0f, 17.5f) + verticalLineToRelative(-1.55f) + arcTo(5.76f, 5.76f, 0.0f, false, true, 6.27f, 12.0f) + horizontalLineToRelative(-0.02f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 8.75f) + verticalLineToRelative(-3.0f) + curveTo(3.0f, 4.78f, 3.78f, 4.0f, 4.75f, 4.0f) + lineTo(6.0f, 4.0f) + curveToRelative(0.13f, -1.12f, 1.08f, -2.0f, 2.24f, -2.0f) + horizontalLineToRelative(7.0f) + close() + moveTo(18.75f, 5.5f) + lineTo(17.5f, 5.5f) + verticalLineToRelative(4.98f) + curveToRelative(0.8f, -0.11f, 1.43f, -0.76f, 1.5f, -1.58f) + lineTo(19.0f, 5.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.18f, -0.24f) + lineToRelative(-0.06f, -0.01f) + close() + moveTo(6.0f, 5.5f) + lineTo(4.75f, 5.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.88f, 0.65f, 1.61f, 1.5f, 1.73f) + lineTo(6.0f, 5.5f) + close() + } + } + return _trophy!! + } + +private var _trophy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TrophyLock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TrophyLock.kt new file mode 100644 index 00000000..a03d7b7e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TrophyLock.kt @@ -0,0 +1,91 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TrophyLock: ImageVector + get() { + if (_trophyLock != null) { + return _trophyLock!! + } + _trophyLock = fluentIcon(name = "Filled.TrophyLock") { + fluentPath { + moveTo(15.25f, 2.0f) + curveToRelative(1.16f, 0.0f, 2.12f, 0.88f, 2.24f, 2.0f) + horizontalLineToRelative(1.27f) + curveToRelative(0.92f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) + verticalLineToRelative(3.15f) + curveToRelative(0.0f, 0.43f, -0.08f, 0.85f, -0.23f, 1.23f) + arcToRelative(3.48f, 3.48f, 0.0f, false, false, -1.44f, -0.46f) + curveToRelative(0.1f, -0.2f, 0.15f, -0.4f, 0.17f, -0.62f) + lineTo(19.0f, 5.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.18f, -0.24f) + lineToRelative(-0.06f, -0.01f) + lineTo(17.5f, 5.5f) + verticalLineToRelative(4.14f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 15.0f, 13.0f) + verticalLineToRelative(0.05f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.0f, 2.45f) + verticalLineToRelative(0.36f) + arcToRelative(5.7f, 5.7f, 0.0f, false, true, -0.5f, 0.1f) + verticalLineToRelative(1.54f) + horizontalLineToRelative(0.5f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.56f, 0.19f, 1.08f, 0.5f, 1.5f) + lineTo(6.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + verticalLineToRelative(-0.6f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.06f, -3.24f) + lineToRelative(0.18f, -0.01f) + lineTo(11.0f, 17.5f) + verticalLineToRelative(-1.55f) + arcTo(5.76f, 5.76f, 0.0f, false, true, 6.27f, 12.0f) + horizontalLineToRelative(-0.02f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 8.75f) + verticalLineToRelative(-3.0f) + curveTo(3.0f, 4.78f, 3.78f, 4.0f, 4.75f, 4.0f) + lineTo(6.0f, 4.0f) + curveToRelative(0.13f, -1.12f, 1.08f, -2.0f, 2.24f, -2.0f) + horizontalLineToRelative(7.0f) + close() + moveTo(6.0f, 5.5f) + lineTo(4.75f, 5.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.88f, 0.65f, 1.61f, 1.5f, 1.73f) + lineTo(6.0f, 5.5f) + close() + moveTo(16.0f, 14.0f) + verticalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(0.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-6.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(0.5f) + close() + moveTo(17.5f, 13.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + close() + moveTo(19.5f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + } + } + return _trophyLock!! + } + +private var _trophyLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TrophyOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TrophyOff.kt new file mode 100644 index 00000000..c97de6e7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TrophyOff.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TrophyOff: ImageVector + get() { + if (_trophyOff != null) { + return _trophyOff!! + } + _trophyOff = fluentIcon(name = "Filled.TrophyOff") { + fluentPath { + moveTo(3.48f, 4.54f) + lineTo(2.22f, 3.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(18.5f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineToRelative(-6.39f, -6.39f) + curveToRelative(-0.56f, 0.28f, -1.18f, 0.48f, -1.83f, 0.56f) + verticalLineToRelative(1.55f) + horizontalLineToRelative(1.75f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.25f, 3.07f) + lineTo(17.5f, 21.25f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.64f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.65f) + verticalLineToRelative(-0.6f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.06f, -3.24f) + lineToRelative(0.18f, -0.01f) + lineTo(11.0f, 17.5f) + verticalLineToRelative(-1.55f) + arcTo(5.76f, 5.76f, 0.0f, false, true, 6.27f, 12.0f) + horizontalLineToRelative(-0.02f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 8.75f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -0.47f, 0.18f, -0.9f, 0.48f, -1.2f) + close() + moveTo(6.0f, 7.06f) + lineTo(4.54f, 5.6f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.04f, 0.15f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.88f, 0.65f, 1.61f, 1.5f, 1.73f) + lineTo(6.0f, 7.06f) + close() + moveTo(17.23f, 12.0f) + curveToRelative(-0.16f, 0.5f, -0.38f, 0.96f, -0.66f, 1.39f) + lineTo(6.3f, 3.12f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 8.25f, 2.0f) + horizontalLineToRelative(7.0f) + curveToRelative(1.16f, 0.0f, 2.12f, 0.88f, 2.24f, 2.0f) + horizontalLineToRelative(1.27f) + curveToRelative(0.92f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) + verticalLineToRelative(3.15f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.06f, 3.24f) + lineToRelative(-0.2f, 0.01f) + close() + moveTo(18.76f, 5.5f) + lineTo(17.5f, 5.5f) + verticalLineToRelative(4.98f) + curveToRelative(0.8f, -0.11f, 1.43f, -0.76f, 1.5f, -1.58f) + lineTo(19.0f, 5.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.18f, -0.24f) + lineToRelative(-0.06f, -0.01f) + close() + } + } + return _trophyOff!! + } + +private var _trophyOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Tv.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Tv.kt new file mode 100644 index 00000000..21f08e8f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Tv.kt @@ -0,0 +1,39 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Tv: ImageVector + get() { + if (_tv != null) { + return _tv!! + } + _tv = fluentIcon(name = "Filled.Tv") { + fluentPath { + moveTo(4.75f, 4.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 6.75f) + verticalLineToRelative(8.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 18.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 15.25f) + verticalLineToRelative(-8.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 4.0f) + horizontalLineTo(4.75f) + close() + moveTo(5.0f, 20.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineTo(5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _tv!! + } + +private var _tv: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TvUsb.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TvUsb.kt new file mode 100644 index 00000000..69fa62a4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/TvUsb.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.TvUsb: ImageVector + get() { + if (_tvUsb != null) { + return _tvUsb!! + } + _tvUsb = fluentIcon(name = "Filled.TvUsb") { + fluentPath { + moveTo(4.75f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 5.75f) + verticalLineToRelative(8.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 17.0f) + horizontalLineToRelative(9.75f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -0.82f, 0.4f, -1.54f, 1.0f, -2.0f) + verticalLineToRelative(-1.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 18.0f, 8.5f) + horizontalLineToRelative(3.0f) + curveToRelative(0.36f, 0.0f, 0.7f, 0.07f, 1.0f, 0.2f) + lineTo(22.0f, 5.76f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 3.0f) + lineTo(4.75f, 3.0f) + close() + moveTo(5.75f, 18.5f) + horizontalLineToRelative(9.0f) + lineToRelative(0.16f, 0.28f) + lineToRelative(0.8f, 1.22f) + lineTo(5.75f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(17.5f, 20.0f) + lineToRelative(-1.34f, -2.04f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.16f, -0.55f) + lineTo(16.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + verticalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(3.44f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.17f, 0.55f) + lineTo(21.5f, 20.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(18.5f, 11.5f) + lineTo(18.5f, 13.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(-2.0f) + close() + } + } + return _tvUsb!! + } + +private var _tvUsb: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Umbrella.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Umbrella.kt new file mode 100644 index 00000000..1a23afdc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Umbrella.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Umbrella: ImageVector + get() { + if (_umbrella != null) { + return _umbrella!! + } + _umbrella = fluentIcon(name = "Filled.Umbrella") { + fluentPath { + moveTo(10.25f, 10.91f) + curveToRelative(0.47f, -0.4f, 1.07f, -0.73f, 1.75f, -0.73f) + curveToRelative(0.68f, 0.0f, 1.28f, 0.33f, 1.75f, 0.73f) + arcToRelative(4.6f, 4.6f, 0.0f, false, true, 0.68f, 0.71f) + lineToRelative(0.03f, 0.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.24f, 0.0f) + arcToRelative(5.6f, 5.6f, 0.0f, false, true, 0.71f, -0.76f) + curveToRelative(0.48f, -0.4f, 1.08f, -0.73f, 1.76f, -0.73f) + curveToRelative(0.67f, 0.0f, 1.28f, 0.33f, 1.75f, 0.73f) + curveToRelative(0.23f, 0.2f, 0.41f, 0.4f, 0.54f, 0.54f) + lineToRelative(0.17f, 0.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.37f, -0.42f) + curveTo(22.0f, 6.57f, 17.95f, 2.0f, 12.0f, 2.0f) + reflectiveCurveTo(2.0f, 6.57f, 2.0f, 11.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.37f, 0.42f) + lineToRelative(0.17f, -0.22f) + curveToRelative(0.13f, -0.15f, 0.31f, -0.34f, 0.54f, -0.54f) + curveToRelative(0.47f, -0.4f, 1.08f, -0.73f, 1.75f, -0.73f) + curveToRelative(0.68f, 0.0f, 1.28f, 0.33f, 1.76f, 0.73f) + arcToRelative(4.6f, 4.6f, 0.0f, false, true, 0.7f, 0.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.25f, 0.0f) + lineToRelative(0.03f, -0.05f) + arcToRelative(3.8f, 3.8f, 0.0f, false, true, 0.68f, -0.7f) + close() + moveTo(12.0f, 11.18f) + curveToRelative(-0.24f, 0.0f, -0.49f, 0.08f, -0.75f, 0.24f) + lineTo(11.25f, 19.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + lineTo(6.75f, 19.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 6.0f, 0.0f) + verticalLineToRelative(-7.58f) + arcToRelative(1.47f, 1.47f, 0.0f, false, false, -0.75f, -0.24f) + close() + } + } + return _umbrella!! + } + +private var _umbrella: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/UninstallApp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/UninstallApp.kt new file mode 100644 index 00000000..ee0fe4ed --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/UninstallApp.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.UninstallApp: ImageVector + get() { + if (_uninstallApp != null) { + return _uninstallApp!! + } + _uninstallApp = fluentIcon(name = "Filled.UninstallApp") { + fluentPath { + moveToRelative(16.61f, 8.79f) + lineToRelative(0.1f, -0.08f) + lineToRelative(1.79f, -1.8f) + lineToRelative(1.8f, 1.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.31f, 0.08f) + lineToRelative(0.1f, -0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.08f, -1.32f) + lineToRelative(-0.08f, -0.1f) + lineToRelative(-1.8f, -1.79f) + lineToRelative(1.8f, -1.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.08f, -1.31f) + lineToRelative(-0.08f, -0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.32f, -0.08f) + lineToRelative(-0.1f, 0.08f) + lineToRelative(-1.79f, 1.8f) + lineToRelative(-1.8f, -1.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.31f, -0.08f) + lineToRelative(-0.1f, 0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.08f, 1.32f) + lineToRelative(0.08f, 0.1f) + lineToRelative(1.8f, 1.79f) + lineToRelative(-1.8f, 1.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.08f, 1.31f) + lineToRelative(0.08f, 0.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.22f, 0.15f) + lineToRelative(0.1f, -0.07f) + close() + moveTo(18.5f, 21.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) + verticalLineToRelative(-5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.5f, -2.5f) + lineTo(13.0f, 11.0f) + lineTo(13.0f, 5.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 10.5f, 3.0f) + horizontalLineToRelative(-5.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 3.0f, 5.5f) + verticalLineToRelative(13.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 5.5f, 21.0f) + horizontalLineToRelative(13.0f) + close() + moveTo(5.0f, 11.0f) + lineTo(5.0f, 5.5f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(5.0f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + lineTo(11.0f, 11.0f) + lineTo(5.0f, 11.0f) + close() + moveTo(11.0f, 19.0f) + lineTo(5.5f, 19.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(5.0f, 13.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(6.0f) + close() + moveTo(18.5f, 19.0f) + lineTo(13.0f, 19.0f) + verticalLineToRelative(-6.0f) + horizontalLineToRelative(5.5f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + verticalLineToRelative(5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + close() + } + } + return _uninstallApp!! + } + +private var _uninstallApp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/UsbPlug.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/UsbPlug.kt new file mode 100644 index 00000000..8e8bd9da --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/UsbPlug.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.UsbPlug: ImageVector + get() { + if (_usbPlug != null) { + return _usbPlug!! + } + _usbPlug = fluentIcon(name = "Filled.UsbPlug") { + fluentPath { + moveTo(11.0f, 21.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineTo(17.0f) + horizontalLineToRelative(-0.75f) + curveToRelative(-1.19f, 0.0f, -2.16f, -0.93f, -2.24f, -2.1f) + verticalLineTo(9.25f) + curveToRelative(0.0f, -0.98f, 0.63f, -1.82f, 1.5f, -2.13f) + verticalLineTo(2.75f) + curveToRelative(0.0f, -0.38f, 0.29f, -0.7f, 0.65f, -0.75f) + horizontalLineToRelative(6.6f) + curveToRelative(0.39f, 0.0f, 0.7f, 0.28f, 0.75f, 0.65f) + verticalLineTo(7.13f) + curveToRelative(0.82f, 0.3f, 1.42f, 1.05f, 1.49f, 1.95f) + verticalLineToRelative(5.67f) + curveToRelative(0.0f, 1.2f, -0.92f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + horizontalLineToRelative(-0.75f) + verticalLineToRelative(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineTo(17.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(4.25f) + close() + moveTo(14.52f, 3.5f) + horizontalLineToRelative(-5.0f) + verticalLineTo(7.0f) + horizontalLineToRelative(5.0f) + verticalLineTo(3.5f) + close() + } + } + return _usbPlug!! + } + +private var _usbPlug: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/UsbStick.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/UsbStick.kt new file mode 100644 index 00000000..73d70340 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/UsbStick.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.UsbStick: ImageVector + get() { + if (_usbStick != null) { + return _usbStick!! + } + _usbStick = fluentIcon(name = "Filled.UsbStick") { + fluentPath { + moveTo(15.27f, 2.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineTo(16.01f, 7.13f) + curveToRelative(0.82f, 0.3f, 1.42f, 1.05f, 1.49f, 1.95f) + verticalLineToRelative(10.67f) + curveToRelative(0.0f, 1.2f, -0.92f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + horizontalLineToRelative(-6.5f) + curveToRelative(-1.19f, 0.0f, -2.16f, -0.93f, -2.24f, -2.1f) + lineTo(6.51f, 9.25f) + curveToRelative(0.0f, -0.98f, 0.63f, -1.82f, 1.5f, -2.13f) + lineTo(8.01f, 2.75f) + curveToRelative(0.0f, -0.38f, 0.29f, -0.7f, 0.65f, -0.75f) + horizontalLineToRelative(6.6f) + close() + moveTo(14.52f, 3.5f) + horizontalLineToRelative(-5.0f) + lineTo(9.52f, 7.0f) + horizontalLineToRelative(5.0f) + lineTo(14.52f, 3.5f) + close() + } + } + return _usbStick!! + } + +private var _usbStick: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Vault.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Vault.kt new file mode 100644 index 00000000..325d4369 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Vault.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Vault: ImageVector + get() { + if (_vault != null) { + return _vault!! + } + _vault = fluentIcon(name = "Filled.Vault") { + fluentPath { + moveTo(14.0f, 13.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + close() + moveTo(2.0f, 7.75f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 5.75f, 4.0f) + horizontalLineToRelative(12.5f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 22.0f, 7.75f) + verticalLineToRelative(8.5f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 18.25f, 20.0f) + lineTo(5.75f, 20.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 2.0f, 16.25f) + verticalLineToRelative(-8.5f) + close() + moveTo(5.75f, 7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-8.5f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 5.75f, 7.0f) + close() + moveTo(11.28f, 8.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.2f, 1.2f) + arcToRelative(2.99f, 2.99f, 0.0f, false, false, 0.0f, 3.04f) + lineToRelative(-1.2f, 1.2f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(1.2f, -1.2f) + arcToRelative(2.99f, 2.99f, 0.0f, false, false, 3.04f, 0.0f) + lineToRelative(1.2f, 1.2f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-1.2f, -1.2f) + arcToRelative(2.99f, 2.99f, 0.0f, false, false, 0.0f, -3.04f) + lineToRelative(1.2f, -1.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineToRelative(-1.2f, 1.2f) + arcToRelative(2.99f, 2.99f, 0.0f, false, false, -3.04f, 0.0f) + lineToRelative(-1.2f, -1.2f) + close() + } + } + return _vault!! + } + +private var _vault: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleBicycle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleBicycle.kt new file mode 100644 index 00000000..330838f5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleBicycle.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VehicleBicycle: ImageVector + get() { + if (_vehicleBicycle != null) { + return _vehicleBicycle!! + } + _vehicleBicycle = fluentIcon(name = "Filled.VehicleBicycle") { + fluentPath { + moveTo(13.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(1.19f) + lineToRelative(0.62f, 3.0f) + lineTo(9.0f, 7.0f) + lineTo(9.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(5.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(0.86f) + lineToRelative(-0.9f, 3.16f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, 4.9f, 4.35f) + lineToRelative(4.47f, -5.21f) + lineToRelative(0.25f, 1.2f) + arcTo(4.5f, 4.5f, 0.0f, true, false, 17.7f, 11.0f) + lineToRelative(-1.71f, -8.2f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 15.0f, 2.0f) + horizontalLineToRelative(-2.0f) + close() + moveTo(16.14f, 13.4f) + lineTo(16.52f, 15.2f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.96f, -0.4f) + lineToRelative(-0.36f, -1.72f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -1.98f, 0.32f) + close() + moveTo(10.31f, 13.1f) + arcToRelative(4.52f, 4.52f, 0.0f, false, false, -2.21f, -1.8f) + lineTo(8.75f, 9.0f) + horizontalLineToRelative(5.08f) + lineToRelative(-3.52f, 4.1f) + close() + moveTo(7.55f, 13.23f) + curveToRelative(0.37f, 0.17f, 0.7f, 0.44f, 0.95f, 0.77f) + lineTo(7.33f, 14.0f) + lineToRelative(0.22f, -0.77f) + close() + moveTo(5.47f, 13.23f) + lineTo(5.04f, 14.73f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 6.0f, 16.0f) + horizontalLineToRelative(2.95f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -3.48f, -2.78f) + close() + } + } + return _vehicleBicycle!! + } + +private var _vehicleBicycle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleBus.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleBus.kt new file mode 100644 index 00000000..b7fc92e3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleBus.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VehicleBus: ImageVector + get() { + if (_vehicleBus != null) { + return _vehicleBus!! + } + _vehicleBus = fluentIcon(name = "Filled.VehicleBus") { + fluentPath { + moveTo(10.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.5f) + close() + moveTo(4.0f, 5.75f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 7.75f, 2.0f) + horizontalLineToRelative(8.5f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 20.0f, 5.75f) + lineTo(20.0f, 9.5f) + horizontalLineToRelative(1.23f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(20.0f, 11.0f) + verticalLineToRelative(8.75f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-1.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(15.0f, 18.5f) + lineTo(9.0f, 18.5f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-1.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.0f, 11.0f) + lineTo(2.75f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(4.0f, 9.5f) + lineTo(4.0f, 5.75f) + close() + moveTo(16.5f, 18.5f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(1.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + lineTo(18.5f, 18.5f) + horizontalLineToRelative(-2.0f) + close() + moveTo(5.5f, 18.5f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(1.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + lineTo(7.5f, 18.5f) + horizontalLineToRelative(-2.0f) + close() + moveTo(7.75f, 3.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + lineTo(5.5f, 12.0f) + horizontalLineToRelative(13.0f) + lineTo(18.5f, 5.75f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-8.5f) + close() + moveTo(9.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(16.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + } + } + return _vehicleBus!! + } + +private var _vehicleBus: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleCab.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleCab.kt new file mode 100644 index 00000000..bb0292e5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleCab.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VehicleCab: ImageVector + get() { + if (_vehicleCab != null) { + return _vehicleCab!! + } + _vehicleCab = fluentIcon(name = "Filled.VehicleCab") { + fluentPath { + moveTo(9.27f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.74f) + lineTo(8.52f, 4.5f) + horizontalLineToRelative(-0.67f) + curveToRelative(-1.43f, 0.0f, -2.69f, 0.93f, -3.1f, 2.3f) + lineToRelative(-0.07f, 0.2f) + horizontalLineToRelative(-0.93f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.53f) + lineToRelative(-0.2f, 0.83f) + curveToRelative(-0.65f, 0.4f, -1.08f, 1.1f, -1.08f, 1.92f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(1.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(8.0f, 18.5f) + horizontalLineToRelative(8.0f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(1.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.82f, -0.43f, -1.53f, -1.08f, -1.92f) + lineToRelative(-0.2f, -0.83f) + horizontalLineToRelative(0.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.94f) + lineToRelative(-0.06f, -0.18f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.11f, -2.32f) + horizontalLineToRelative(-0.66f) + lineTo(15.48f, 2.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(9.27f, 1.99f) + close() + moveTo(7.85f, 6.0f) + horizontalLineToRelative(8.29f) + curveToRelative(0.77f, 0.0f, 1.45f, 0.5f, 1.68f, 1.25f) + lineToRelative(0.2f, 0.7f) + lineTo(18.3f, 9.0f) + lineTo(5.7f, 9.0f) + lineToRelative(0.25f, -1.05f) + lineToRelative(0.22f, -0.71f) + curveTo(6.4f, 6.5f, 7.08f, 6.0f, 7.85f, 6.0f) + close() + moveTo(4.5f, 18.5f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + lineTo(4.5f, 18.5f) + close() + moveTo(17.5f, 18.5f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + lineTo(17.5f, 18.5f) + close() + moveTo(8.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(17.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + close() + } + } + return _vehicleCab!! + } + +private var _vehicleCab: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleCar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleCar.kt new file mode 100644 index 00000000..6d18c833 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleCar.kt @@ -0,0 +1,94 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VehicleCar: ImageVector + get() { + if (_vehicleCar != null) { + return _vehicleCar!! + } + _vehicleCar = fluentIcon(name = "Filled.VehicleCar") { + fluentPath { + moveTo(15.8f, 3.0f) + curveToRelative(1.49f, 0.0f, 2.79f, 1.01f, 3.15f, 2.46f) + lineTo(19.34f, 7.0f) + horizontalLineToRelative(0.91f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-0.54f) + lineToRelative(0.21f, 0.83f) + curveToRelative(0.65f, 0.4f, 1.08f, 1.1f, 1.08f, 1.92f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.96f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-1.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.79f, -1.75f, -1.75f) + lineTo(16.0f, 18.5f) + lineTo(8.0f, 18.5f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.96f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-1.5f) + curveTo(3.78f, 21.5f, 3.0f, 20.7f, 3.0f, 19.75f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.81f, 0.43f, -1.53f, 1.08f, -1.92f) + lineToRelative(0.2f, -0.83f) + horizontalLineToRelative(-0.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineTo(3.0f, 7.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(0.91f) + lineToRelative(0.39f, -1.54f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 8.2f, 3.0f) + horizontalLineToRelative(7.6f) + close() + moveTo(6.5f, 18.5f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.13f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(1.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.12f, 0.25f, -0.25f) + lineTo(6.5f, 18.5f) + close() + moveTo(19.5f, 18.5f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.13f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(1.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.12f, 0.25f, -0.25f) + lineTo(19.5f, 18.5f) + close() + moveTo(13.75f, 14.0f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(17.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(7.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(15.8f, 4.5f) + lineTo(8.2f, 4.5f) + curveToRelative(-0.8f, 0.0f, -1.5f, 0.55f, -1.7f, 1.33f) + lineTo(5.71f, 9.0f) + lineTo(18.3f, 9.0f) + lineToRelative(-0.8f, -3.18f) + curveToRelative(-0.19f, -0.77f, -0.89f, -1.32f, -1.7f, -1.32f) + close() + } + } + return _vehicleCar!! + } + +private var _vehicleCar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleCarCollision.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleCarCollision.kt new file mode 100644 index 00000000..d6a39ca5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleCarCollision.kt @@ -0,0 +1,88 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VehicleCarCollision: ImageVector + get() { + if (_vehicleCarCollision != null) { + return _vehicleCarCollision!! + } + _vehicleCarCollision = fluentIcon(name = "Filled.VehicleCarCollision") { + fluentPath { + moveTo(12.34f, 2.3f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.34f, 0.45f) + verticalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.3f) + lineToRelative(1.16f, 1.5f) + curveToRelative(0.23f, 0.32f, 0.67f, 0.4f, 1.0f, 0.18f) + lineToRelative(1.7f, -1.1f) + lineToRelative(-0.82f, 2.48f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.71f, 0.99f) + horizontalLineToRelative(3.19f) + lineToRelative(-1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.08f, 0.97f) + lineToRelative(1.65f, 2.31f) + horizontalLineToRelative(-1.54f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.61f, -1.19f) + lineToRelative(-2.13f, -2.98f) + lineToRelative(2.05f, -2.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.53f, -1.28f) + horizontalLineToRelative(-3.96f) + lineToRelative(1.17f, -3.51f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.12f, -0.87f) + lineTo(14.42f, 5.0f) + lineToRelative(-2.08f, -2.7f) + close() + moveTo(2.86f, 13.74f) + horizontalLineToRelative(-0.11f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.77f) + lineToRelative(0.26f, -1.41f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 6.0f, 9.0f) + horizontalLineToRelative(6.09f) + curveToRelative(1.03f, 0.0f, 1.93f, 0.7f, 2.18f, 1.7f) + lineToRelative(0.39f, 1.55f) + horizontalLineToRelative(0.6f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.11f) + curveToRelative(0.53f, 0.5f, 0.86f, 1.21f, 0.86f, 2.0f) + verticalLineToRelative(4.75f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + lineTo(13.01f, 20.0f) + lineTo(5.0f, 20.0f) + verticalLineToRelative(0.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + verticalLineToRelative(-4.75f) + curveToRelative(0.0f, -0.79f, 0.33f, -1.5f, 0.86f, -2.0f) + close() + moveTo(5.26f, 11.1f) + lineTo(4.9f, 13.0f) + horizontalLineToRelative(8.35f) + verticalLineToRelative(-0.12f) + lineToRelative(-0.44f, -1.81f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.73f, -0.57f) + lineTo(5.99f, 10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.73f, 0.61f) + close() + moveTo(13.0f, 16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(6.0f, 17.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + } + } + return _vehicleCarCollision!! + } + +private var _vehicleCarCollision: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleCarParking.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleCarParking.kt new file mode 100644 index 00000000..1e708f6d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleCarParking.kt @@ -0,0 +1,93 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VehicleCarParking: ImageVector + get() { + if (_vehicleCarParking != null) { + return _vehicleCarParking!! + } + _vehicleCarParking = fluentIcon(name = "Filled.VehicleCarParking") { + fluentPath { + moveTo(17.25f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + lineTo(22.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(14.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(19.5f, 8.0f) + horizontalLineToRelative(-1.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(17.25f, 2.0f) + close() + moveTo(15.8f, 3.0f) + lineToRelative(0.45f, 0.03f) + verticalLineToRelative(1.53f) + curveToRelative(-0.14f, -0.04f, -0.3f, -0.06f, -0.45f, -0.06f) + lineTo(8.2f, 4.5f) + curveToRelative(-0.8f, 0.0f, -1.5f, 0.55f, -1.7f, 1.33f) + lineTo(5.71f, 9.0f) + lineTo(18.5f, 9.0f) + verticalLineToRelative(9.5f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.13f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(0.75f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(-0.75f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.79f, -1.75f, -1.75f) + lineTo(16.0f, 18.5f) + lineTo(8.0f, 18.5f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.96f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-1.5f) + curveTo(3.78f, 21.5f, 3.0f, 20.7f, 3.0f, 19.75f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.81f, 0.43f, -1.53f, 1.08f, -1.92f) + lineToRelative(0.2f, -0.83f) + horizontalLineToRelative(-0.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineTo(3.0f, 7.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(0.91f) + lineToRelative(0.39f, -1.54f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 8.2f, 3.0f) + horizontalLineToRelative(7.6f) + close() + moveTo(6.5f, 18.5f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.13f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(1.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.12f, 0.25f, -0.25f) + lineTo(6.5f, 18.5f) + close() + moveTo(13.75f, 14.0f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(17.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(7.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + } + } + return _vehicleCarParking!! + } + +private var _vehicleCarParking: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleCarProfileLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleCarProfileLtr.kt new file mode 100644 index 00000000..2c4513df --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleCarProfileLtr.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VehicleCarProfileLtr: ImageVector + get() { + if (_vehicleCarProfileLtr != null) { + return _vehicleCarProfileLtr!! + } + _vehicleCarProfileLtr = fluentIcon(name = "Filled.VehicleCarProfileLtr") { + fluentPath { + moveTo(8.03f, 4.0f) + curveToRelative(-1.24f, 0.0f, -2.33f, 0.83f, -2.66f, 2.03f) + lineToRelative(-0.95f, 3.49f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 12.25f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.86f, 0.4f, 1.64f, 1.02f, 2.14f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 6.32f, 0.61f) + horizontalLineToRelative(4.82f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 6.25f, -0.26f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 14.5f) + verticalLineToRelative(-1.69f) + curveToRelative(0.0f, -1.26f, -0.86f, -2.36f, -2.08f, -2.67f) + lineToRelative(-2.19f, -0.54f) + lineToRelative(-2.5f, -4.25f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 12.86f, 4.0f) + lineTo(8.03f, 4.0f) + close() + moveTo(6.83f, 6.42f) + curveToRelative(0.14f, -0.54f, 0.63f, -0.92f, 1.2f, -0.92f) + lineTo(9.5f, 5.5f) + verticalLineToRelative(4.0f) + lineTo(5.98f, 9.5f) + lineToRelative(0.84f, -3.08f) + close() + moveTo(11.0f, 9.5f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(1.86f) + curveToRelative(0.44f, 0.0f, 0.85f, 0.23f, 1.07f, 0.61f) + lineToRelative(2.0f, 3.39f) + lineTo(11.0f, 9.5f) + close() + moveTo(6.25f, 14.5f) + arcToRelative(1.75f, 1.75f, 0.0f, true, true, 0.0f, 3.5f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.0f, -3.5f) + close() + moveTo(15.5f, 16.25f) + arcToRelative(1.75f, 1.75f, 0.0f, true, true, 3.5f, 0.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -3.5f, 0.0f) + close() + } + } + return _vehicleCarProfileLtr!! + } + +private var _vehicleCarProfileLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleCarProfileLtrClock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleCarProfileLtrClock.kt new file mode 100644 index 00000000..9d966023 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleCarProfileLtrClock.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VehicleCarProfileLtrClock: ImageVector + get() { + if (_vehicleCarProfileLtrClock != null) { + return _vehicleCarProfileLtrClock!! + } + _vehicleCarProfileLtrClock = fluentIcon(name = "Filled.VehicleCarProfileLtrClock") { + fluentPath { + moveTo(6.5f, 1.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(8.5f, 6.5f) + horizontalLineToRelative(-2.0f) + lineTo(6.5f, 4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + close() + moveTo(6.5f, 13.0f) + curveToRelative(1.75f, 0.0f, 3.33f, -0.69f, 4.5f, -1.81f) + lineTo(11.0f, 12.0f) + horizontalLineToRelative(4.93f) + lineToRelative(-2.0f, -3.39f) + arcTo(1.25f, 1.25f, 0.0f, false, false, 12.86f, 8.0f) + horizontalLineToRelative(-0.03f) + curveToRelative(0.11f, -0.48f, 0.17f, -0.98f, 0.17f, -1.5f) + curveToRelative(0.92f, 0.05f, 1.76f, 0.55f, 2.23f, 1.35f) + lineToRelative(2.5f, 4.25f) + lineToRelative(2.19f, 0.54f) + curveToRelative(1.22f, 0.31f, 2.08f, 1.41f, 2.08f, 2.67f) + lineTo(22.0f, 17.0f) + curveToRelative(0.0f, 1.1f, -0.65f, 2.05f, -1.59f, 2.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.25f, 0.25f) + lineTo(9.34f, 19.75f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.32f, -0.61f) + arcTo(2.74f, 2.74f, 0.0f, false, true, 2.0f, 17.0f) + verticalLineToRelative(-2.25f) + curveToRelative(0.0f, -1.08f, 0.62f, -2.02f, 1.53f, -2.47f) + curveToRelative(0.9f, 0.46f, 1.9f, 0.72f, 2.97f, 0.72f) + close() + moveTo(6.25f, 17.0f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, 3.5f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, -3.5f) + close() + moveTo(15.5f, 18.75f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, 3.5f, 0.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -3.5f, 0.0f) + close() + } + } + return _vehicleCarProfileLtrClock!! + } + +private var _vehicleCarProfileLtrClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleCarProfileRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleCarProfileRtl.kt new file mode 100644 index 00000000..e44aab02 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleCarProfileRtl.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VehicleCarProfileRtl: ImageVector + get() { + if (_vehicleCarProfileRtl != null) { + return _vehicleCarProfileRtl!! + } + _vehicleCarProfileRtl = fluentIcon(name = "Filled.VehicleCarProfileRtl") { + fluentPath { + moveTo(15.97f, 4.0f) + curveToRelative(1.24f, 0.0f, 2.33f, 0.83f, 2.66f, 2.03f) + lineToRelative(0.95f, 3.49f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 12.25f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.86f, -0.4f, 1.64f, -1.02f, 2.14f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.32f, 0.61f) + lineTo(9.84f, 17.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.25f, -0.26f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 14.5f) + verticalLineToRelative(-1.69f) + curveToRelative(0.0f, -1.26f, 0.86f, -2.36f, 2.08f, -2.67f) + lineToRelative(2.19f, -0.54f) + lineToRelative(2.5f, -4.25f) + curveToRelative(0.5f, -0.84f, 1.4f, -1.35f, 2.37f, -1.35f) + horizontalLineToRelative(4.83f) + close() + moveTo(17.17f, 6.42f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.2f, -0.92f) + lineTo(14.5f, 5.5f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(3.52f) + lineToRelative(-0.84f, -3.08f) + close() + moveTo(13.0f, 9.5f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-1.86f) + curveToRelative(-0.44f, 0.0f, -0.85f, 0.23f, -1.07f, 0.61f) + lineToRelative(-2.0f, 3.39f) + lineTo(13.0f, 9.5f) + close() + moveTo(17.75f, 14.5f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, 3.5f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, -3.5f) + close() + moveTo(8.5f, 16.25f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, -3.5f, 0.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 3.5f, 0.0f) + close() + } + } + return _vehicleCarProfileRtl!! + } + +private var _vehicleCarProfileRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleShip.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleShip.kt new file mode 100644 index 00000000..c2e7b81b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleShip.kt @@ -0,0 +1,106 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VehicleShip: ImageVector + get() { + if (_vehicleShip != null) { + return _vehicleShip!! + } + _vehicleShip = fluentIcon(name = "Filled.VehicleShip") { + fluentPath { + moveTo(8.75f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(8.0f, 5.0f) + lineTo(5.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.76f) + lineToRelative(-1.46f, 0.54f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.42f, 1.02f) + lineToRelative(2.33f, 5.02f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 2.22f, 1.14f) + lineToRelative(0.01f, 0.03f) + lineToRelative(0.07f, 0.16f) + curveToRelative(0.07f, 0.15f, 0.17f, 0.35f, 0.3f, 0.53f) + curveToRelative(0.28f, 0.37f, 0.57f, 0.55f, 0.95f, 0.55f) + reflectiveCurveToRelative(0.67f, -0.18f, 0.94f, -0.55f) + arcToRelative(2.83f, 2.83f, 0.0f, false, false, 0.39f, -0.72f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 3.34f, 0.0f) + verticalLineToRelative(0.03f) + lineToRelative(0.08f, 0.16f) + curveToRelative(0.06f, 0.15f, 0.17f, 0.35f, 0.3f, 0.53f) + curveToRelative(0.28f, 0.37f, 0.57f, 0.55f, 0.95f, 0.55f) + reflectiveCurveToRelative(0.67f, -0.18f, 0.94f, -0.55f) + arcToRelative(2.86f, 2.86f, 0.0f, false, false, 0.39f, -0.72f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 2.3f, -1.12f) + lineToRelative(2.46f, -5.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.42f, -1.03f) + lineToRelative(-1.67f, -0.6f) + verticalLineToRelative(-4.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(16.0f, 5.0f) + lineTo(16.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-6.5f) + close() + moveTo(14.5f, 5.0f) + horizontalLineToRelative(-5.0f) + lineTo(9.5f, 3.5f) + horizontalLineToRelative(5.0f) + lineTo(14.5f, 5.0f) + close() + moveTo(17.5f, 6.5f) + verticalLineToRelative(3.42f) + lineToRelative(-4.4f, -1.57f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -2.2f, 0.0f) + lineTo(6.5f, 9.98f) + lineTo(6.5f, 6.5f) + horizontalLineToRelative(11.0f) + close() + moveTo(18.73f, 18.56f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.45f, -0.03f) + verticalLineToRelative(0.01f) + arcToRelative(2.16f, 2.16f, 0.0f, false, true, -0.12f, 0.3f) + curveToRelative(-0.09f, 0.2f, -0.22f, 0.45f, -0.42f, 0.71f) + curveToRelative(-0.38f, 0.52f, -0.94f, 0.95f, -1.74f, 0.95f) + reflectiveCurveToRelative(-1.36f, -0.44f, -1.74f, -0.95f) + arcToRelative(3.85f, 3.85f, 0.0f, false, true, -0.54f, -1.0f) + verticalLineToRelative(-0.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.44f, 0.0f) + verticalLineToRelative(0.01f) + lineToRelative(-0.02f, 0.06f) + arcToRelative(3.36f, 3.36f, 0.0f, false, true, -0.52f, 0.95f) + curveToRelative(-0.38f, 0.51f, -0.93f, 0.95f, -1.74f, 0.95f) + curveToRelative(-0.8f, 0.0f, -1.36f, -0.44f, -1.74f, -0.95f) + arcToRelative(3.83f, 3.83f, 0.0f, false, true, -0.54f, -1.0f) + verticalLineToRelative(-0.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.44f, 0.02f) + verticalLineToRelative(0.01f) + arcToRelative(1.62f, 1.62f, 0.0f, false, true, -0.11f, 0.28f) + curveToRelative(-0.09f, 0.2f, -0.22f, 0.45f, -0.42f, 0.7f) + curveToRelative(-0.38f, 0.49f, -1.0f, 0.96f, -2.0f, 0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + arcTo(3.92f, 3.92f, 0.0f, false, false, 6.0f, 20.37f) + lineToRelative(0.06f, 0.08f) + curveTo(6.6f, 21.19f, 7.56f, 22.0f, 9.0f, 22.0f) + arcToRelative(3.63f, 3.63f, 0.0f, false, false, 3.0f, -1.63f) + lineToRelative(0.06f, 0.08f) + curveTo(12.6f, 21.2f, 13.56f, 22.0f, 15.0f, 22.0f) + arcToRelative(3.63f, 3.63f, 0.0f, false, false, 3.0f, -1.62f) + lineToRelative(0.06f, 0.08f) + curveToRelative(0.6f, 0.76f, 1.61f, 1.54f, 3.19f, 1.54f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + arcToRelative(2.42f, 2.42f, 0.0f, false, true, -2.0f, -0.96f) + arcToRelative(3.27f, 3.27f, 0.0f, false, true, -0.52f, -0.98f) + close() + } + } + return _vehicleShip!! + } + +private var _vehicleShip: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleSubway.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleSubway.kt new file mode 100644 index 00000000..b48e22bc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleSubway.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VehicleSubway: ImageVector + get() { + if (_vehicleSubway != null) { + return _vehicleSubway!! + } + _vehicleSubway = fluentIcon(name = "Filled.VehicleSubway") { + fluentPath { + moveTo(16.25f, 3.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 20.0f, 6.75f) + verticalLineToRelative(9.0f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -2.89f, 3.65f) + lineToRelative(2.46f, 1.17f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.55f, 1.4f) + lineToRelative(-0.1f, -0.04f) + lineToRelative(-5.09f, -2.43f) + horizontalLineToRelative(-3.66f) + lineToRelative(-5.1f, 2.43f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.64f, -1.36f) + lineToRelative(2.46f, -1.17f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 4.0f, 15.75f) + verticalLineToRelative(-9.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 7.75f, 3.0f) + horizontalLineToRelative(8.5f) + close() + moveTo(8.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(16.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(16.25f, 4.5f) + horizontalLineToRelative(-8.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(5.75f) + horizontalLineToRelative(13.0f) + lineTo(18.5f, 6.75f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + close() + moveTo(13.25f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.5f) + close() + } + } + return _vehicleSubway!! + } + +private var _vehicleSubway: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleTruck.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleTruck.kt new file mode 100644 index 00000000..df01d598 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleTruck.kt @@ -0,0 +1,100 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VehicleTruck: ImageVector + get() { + if (_vehicleTruck != null) { + return _vehicleTruck!! + } + _vehicleTruck = fluentIcon(name = "Filled.VehicleTruck") { + fluentPath { + moveTo(3.0f, 5.25f) + curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(13.5f) + curveTo(19.99f, 3.0f, 21.0f, 4.0f, 21.0f, 5.25f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(-8.25f) + curveToRelative(0.0f, -0.1f, -0.01f, -0.22f, -0.04f, -0.33f) + lineToRelative(-0.73f, -3.32f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -2.93f, -2.35f) + horizontalLineToRelative(-7.1f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 5.52f, 7.6f) + lineToRelative(-0.73f, 3.32f) + curveToRelative(-0.03f, 0.11f, -0.04f, 0.22f, -0.04f, 0.33f) + verticalLineToRelative(8.25f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(3.0f, 5.25f) + close() + moveTo(8.45f, 6.0f) + curveToRelative(-1.05f, 0.0f, -1.96f, 0.73f, -2.2f, 1.76f) + lineToRelative(-0.73f, 3.33f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.02f, 0.16f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(1.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(1.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-9.0f) + curveToRelative(0.0f, -0.05f, 0.0f, -0.1f, -0.02f, -0.16f) + lineToRelative(-0.74f, -3.33f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 15.54f, 6.0f) + lineTo(8.46f, 6.0f) + close() + moveTo(7.72f, 8.09f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.73f, -0.59f) + horizontalLineToRelative(7.1f) + curveToRelative(0.35f, 0.0f, 0.65f, 0.24f, 0.73f, 0.59f) + lineToRelative(0.54f, 2.41f) + lineTo(7.18f, 10.5f) + lineToRelative(0.54f, -2.41f) + close() + moveTo(7.0f, 20.25f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + close() + moveTo(17.0f, 19.5f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(2.0f) + close() + moveTo(10.75f, 16.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(10.01f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(15.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + close() + } + } + return _vehicleTruck!! + } + +private var _vehicleTruck: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleTruckBag.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleTruckBag.kt new file mode 100644 index 00000000..de7c145f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleTruckBag.kt @@ -0,0 +1,98 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VehicleTruckBag: ImageVector + get() { + if (_vehicleTruckBag != null) { + return _vehicleTruckBag!! + } + _vehicleTruckBag = fluentIcon(name = "Filled.VehicleTruckBag") { + fluentPath { + moveTo(1.75f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(5.0f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(9.5f, 4.5f) + verticalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -3.75f, -2.17f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 2.0f, 3.5f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-0.25f) + close() + moveTo(7.0f, 4.5f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.35f, -0.07f, -0.68f, -0.2f, -0.98f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 8.0f, 3.5f) + verticalLineToRelative(1.0f) + lineTo(7.0f, 4.5f) + close() + moveTo(5.5f, 3.5f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(2.0f, 17.25f) + verticalLineToRelative(-3.0f) + curveToRelative(0.38f, 0.16f, 0.8f, 0.25f, 1.25f, 0.25f) + horizontalLineToRelative(5.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-6.0f) + curveToRelative(0.0f, -0.7f, -0.4f, -1.3f, -1.0f, -1.58f) + lineTo(10.5f, 3.5f) + curveToRelative(0.0f, -0.17f, -0.01f, -0.34f, -0.04f, -0.5f) + horizontalLineToRelative(3.79f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + lineTo(16.5f, 6.0f) + horizontalLineToRelative(1.55f) + curveToRelative(0.87f, 0.0f, 1.66f, 0.5f, 2.03f, 1.29f) + lineToRelative(1.7f, 3.58f) + curveToRelative(0.15f, 0.3f, 0.22f, 0.63f, 0.22f, 0.97f) + verticalLineToRelative(5.41f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-1.8f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -5.9f, 0.0f) + horizontalLineToRelative(-2.1f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -5.91f, -0.01f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 2.0f, 17.25f) + close() + moveTo(20.5f, 15.5f) + horizontalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(1.25f) + verticalLineToRelative(-1.5f) + close() + moveTo(20.18f, 11.0f) + lineTo(18.73f, 7.93f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.68f, -0.43f) + lineTo(16.5f, 7.5f) + lineTo(16.5f, 11.0f) + horizontalLineToRelative(3.68f) + close() + moveTo(7.0f, 20.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + close() + moveTo(16.5f, 19.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) + close() + moveTo(3.5f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, -0.4f) + close() + } + } + return _vehicleTruckBag!! + } + +private var _vehicleTruckBag: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleTruckCube.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleTruckCube.kt new file mode 100644 index 00000000..cfbf324a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleTruckCube.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VehicleTruckCube: ImageVector + get() { + if (_vehicleTruckCube != null) { + return _vehicleTruckCube!! + } + _vehicleTruckCube = fluentIcon(name = "Filled.VehicleTruckCube") { + fluentPath { + moveTo(1.0f, 8.57f) + lineTo(1.0f, 4.43f) + curveToRelative(0.0f, -0.57f, 0.32f, -1.09f, 0.83f, -1.34f) + lineToRelative(3.5f, -1.75f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 1.34f, 0.0f) + lineToRelative(3.5f, 1.75f) + curveToRelative(0.5f, 0.25f, 0.83f, 0.77f, 0.83f, 1.34f) + verticalLineToRelative(4.14f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -0.83f, 1.35f) + lineToRelative(-3.5f, 1.75f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.34f, 0.0f) + lineToRelative(-3.5f, -1.75f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 1.0f, 8.57f) + close() + moveTo(2.55f, 4.53f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.23f, 0.67f) + lineTo(5.5f, 6.56f) + lineTo(5.5f, 9.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) + lineTo(6.5f, 6.56f) + lineTo(9.22f, 5.2f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.44f, -0.9f) + lineTo(6.0f, 5.7f) + lineTo(3.22f, 4.3f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.67f, 0.23f) + close() + moveTo(11.55f, 3.0f) + curveToRelative(0.29f, 0.41f, 0.45f, 0.9f, 0.45f, 1.43f) + verticalLineToRelative(4.14f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -1.38f, 2.24f) + lineToRelative(-3.5f, 1.75f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.24f, 0.0f) + lineTo(2.0f, 11.12f) + verticalLineToRelative(6.13f) + curveToRelative(0.0f, 1.17f, 0.9f, 2.13f, 2.04f, 2.24f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 5.92f, 0.01f) + horizontalLineToRelative(2.08f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 5.92f, 0.0f) + horizontalLineToRelative(1.79f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-5.41f) + curveToRelative(0.0f, -0.34f, -0.07f, -0.66f, -0.22f, -0.97f) + lineToRelative(-1.7f, -3.58f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 18.05f, 6.0f) + lineTo(16.5f, 6.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-2.7f) + close() + moveTo(19.25f, 15.5f) + horizontalLineToRelative(1.25f) + lineTo(20.5f, 17.0f) + horizontalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + close() + moveTo(18.73f, 7.93f) + lineTo(20.18f, 11.0f) + lineTo(16.5f, 11.0f) + lineTo(16.5f, 7.5f) + horizontalLineToRelative(1.55f) + curveToRelative(0.3f, 0.0f, 0.55f, 0.17f, 0.68f, 0.43f) + close() + moveTo(8.5f, 19.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + moveTo(15.0f, 17.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + } + } + return _vehicleTruckCube!! + } + +private var _vehicleTruckCube: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleTruckProfile.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleTruckProfile.kt new file mode 100644 index 00000000..f1c32245 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VehicleTruckProfile.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VehicleTruckProfile: ImageVector + get() { + if (_vehicleTruckProfile != null) { + return _vehicleTruckProfile!! + } + _vehicleTruckProfile = fluentIcon(name = "Filled.VehicleTruckProfile") { + fluentPath { + moveTo(2.0f, 5.25f) + curveTo(2.0f, 4.01f, 3.0f, 3.0f, 4.25f, 3.0f) + horizontalLineToRelative(10.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + lineTo(16.5f, 6.0f) + horizontalLineToRelative(1.55f) + curveToRelative(0.87f, 0.0f, 1.66f, 0.5f, 2.03f, 1.29f) + lineToRelative(1.7f, 3.58f) + curveToRelative(0.15f, 0.3f, 0.22f, 0.63f, 0.22f, 0.97f) + verticalLineToRelative(5.41f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-1.8f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -5.9f, 0.0f) + horizontalLineToRelative(-2.1f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -5.91f, -0.01f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 2.0f, 17.25f) + verticalLineToRelative(-12.0f) + close() + moveTo(20.5f, 15.5f) + horizontalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(1.25f) + verticalLineToRelative(-1.5f) + close() + moveTo(20.18f, 11.0f) + lineTo(18.73f, 7.93f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.68f, -0.43f) + lineTo(16.5f, 7.5f) + lineTo(16.5f, 11.0f) + horizontalLineToRelative(3.68f) + close() + moveTo(7.0f, 20.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + close() + moveTo(16.5f, 19.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) + close() + } + } + return _vehicleTruckProfile!! + } + +private var _vehicleTruckProfile: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Video.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Video.kt new file mode 100644 index 00000000..7819f0f5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Video.kt @@ -0,0 +1,41 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Video: ImageVector + get() { + if (_video != null) { + return _video!! + } + _video = fluentIcon(name = "Filled.Video") { + fluentPath { + moveTo(16.0f, 16.25f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-7.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.25f) + verticalLineToRelative(-8.5f) + curveTo(2.0f, 5.95f, 3.46f, 4.5f, 5.25f, 4.5f) + horizontalLineToRelative(7.5f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(8.5f) + close() + moveTo(21.76f, 5.89f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.24f, 0.65f) + verticalLineToRelative(10.92f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.65f, 0.76f) + lineTo(17.0f, 15.37f) + lineTo(17.0f, 8.63f) + lineToRelative(3.35f, -2.85f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, 0.11f) + close() + } + } + return _video!! + } + +private var _video: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Video360.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Video360.kt new file mode 100644 index 00000000..ce1d28fa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Video360.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Video360: ImageVector + get() { + if (_video360 != null) { + return _video360!! + } + _video360 = fluentIcon(name = "Filled.Video360") { + fluentPath { + moveTo(4.7f, 4.02f) + curveToRelative(-1.38f, -0.2f, -2.7f, 0.85f, -2.7f, 2.3f) + verticalLineToRelative(11.36f) + curveToRelative(0.0f, 1.45f, 1.32f, 2.5f, 2.7f, 2.3f) + lineToRelative(0.63f, -0.08f) + arcToRelative(54.28f, 54.28f, 0.0f, false, true, 13.98f, 0.08f) + curveToRelative(1.37f, 0.2f, 2.69f, -0.86f, 2.69f, -2.3f) + lineTo(22.0f, 6.32f) + curveToRelative(0.0f, -1.45f, -1.32f, -2.5f, -2.7f, -2.3f) + curveToRelative(-1.57f, 0.22f, -4.1f, 0.48f, -7.3f, 0.48f) + reflectiveCurveToRelative(-5.73f, -0.26f, -7.3f, -0.48f) + close() + moveTo(19.0f, 18.42f) + curveToRelative(-0.93f, -0.11f, -2.11f, -0.23f, -3.5f, -0.32f) + lineTo(15.5f, 15.0f) + lineTo(18.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.43f) + close() + moveTo(14.0f, 18.03f) + arcToRelative(59.06f, 59.06f, 0.0f, false, false, -4.0f, 0.0f) + lineTo(10.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(3.03f) + close() + moveTo(8.5f, 18.1f) + curveToRelative(-1.39f, 0.09f, -2.57f, 0.2f, -3.5f, 0.33f) + lineTo(5.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(3.1f) + close() + moveTo(12.0f, 13.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) + close() + moveTo(8.5f, 12.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + moveTo(18.5f, 12.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + } + } + return _video360!! + } + +private var _video360: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoAdd.kt new file mode 100644 index 00000000..67dea6ed --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoAdd.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VideoAdd: ImageVector + get() { + if (_videoAdd != null) { + return _videoAdd!! + } + _videoAdd = fluentIcon(name = "Filled.VideoAdd") { + fluentPath { + moveTo(16.0f, 16.25f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-0.06f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 2.0f, 12.81f) + lineTo(2.0f, 7.75f) + curveTo(2.0f, 5.95f, 3.46f, 4.5f, 5.25f, 4.5f) + horizontalLineToRelative(7.5f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(8.5f) + close() + moveTo(21.76f, 5.89f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.24f, 0.65f) + verticalLineToRelative(10.92f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.65f, 0.76f) + lineTo(17.0f, 15.37f) + lineTo(17.0f, 8.63f) + lineToRelative(3.35f, -2.85f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, 0.11f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(7.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(6.0f, 18.0f) + lineTo(3.5f, 18.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(6.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(7.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(7.0f, 18.0f) + close() + } + } + return _videoAdd!! + } + +private var _videoAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoBackgroundEffect.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoBackgroundEffect.kt new file mode 100644 index 00000000..78944f22 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoBackgroundEffect.kt @@ -0,0 +1,95 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VideoBackgroundEffect: ImageVector + get() { + if (_videoBackgroundEffect != null) { + return _videoBackgroundEffect!! + } + _videoBackgroundEffect = fluentIcon(name = "Filled.VideoBackgroundEffect") { + fluentPath { + moveTo(6.0f, 16.94f) + verticalLineToRelative(2.12f) + lineToRelative(-0.94f, 0.94f) + lineTo(2.94f, 20.0f) + lineTo(6.0f, 16.94f) + close() + moveTo(22.0f, 14.44f) + verticalLineToRelative(2.12f) + lineTo(18.56f, 20.0f) + horizontalLineToRelative(-0.57f) + verticalLineToRelative(-1.56f) + lineToRelative(4.01f, -4.0f) + close() + moveTo(8.75f, 14.0f) + horizontalLineToRelative(6.5f) + curveToRelative(0.91f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) + lineTo(16.99f, 20.0f) + lineTo(7.0f, 20.0f) + verticalLineToRelative(-4.25f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) + lineToRelative(0.15f, -0.01f) + close() + moveTo(8.02f, 10.42f) + curveToRelative(0.06f, 0.57f, 0.24f, 1.12f, 0.52f, 1.6f) + lineTo(2.0f, 18.56f) + verticalLineToRelative(-2.12f) + lineToRelative(6.02f, -6.02f) + close() + moveTo(22.0f, 9.93f) + verticalLineToRelative(2.13f) + lineToRelative(-4.0f, 4.0f) + verticalLineToRelative(-0.31f) + lineToRelative(-0.01f, -0.17f) + arcToRelative(2.73f, 2.73f, 0.0f, false, false, -0.39f, -1.25f) + lineToRelative(4.4f, -4.4f) + close() + moveTo(12.06f, 4.0f) + lineTo(2.0f, 14.06f) + verticalLineToRelative(-2.12f) + lineTo(9.94f, 4.0f) + horizontalLineToRelative(2.12f) + close() + moveTo(22.0f, 5.43f) + verticalLineToRelative(2.13f) + lineToRelative(-5.67f, 5.66f) + arcToRelative(2.73f, 2.73f, 0.0f, false, false, -0.86f, -0.21f) + lineToRelative(-0.23f, -0.01f) + horizontalLineToRelative(-0.6f) + curveToRelative(0.35f, -0.3f, 0.64f, -0.66f, 0.86f, -1.06f) + lineToRelative(6.5f, -6.5f) + close() + moveTo(12.0f, 7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) + close() + moveTo(7.56f, 4.0f) + lineTo(2.0f, 9.56f) + lineTo(2.0f, 7.44f) + lineTo(5.44f, 4.0f) + horizontalLineToRelative(2.12f) + close() + moveTo(21.06f, 4.0f) + lineTo(15.9f, 9.15f) + arcToRelative(3.98f, 3.98f, 0.0f, false, false, -0.65f, -1.47f) + lineTo(18.93f, 4.0f) + horizontalLineToRelative(2.13f) + close() + moveTo(16.56f, 4.0f) + lineTo(14.0f, 6.54f) + arcToRelative(3.97f, 3.97f, 0.0f, false, false, -1.6f, -0.52f) + lineTo(14.45f, 4.0f) + horizontalLineToRelative(2.12f) + close() + } + } + return _videoBackgroundEffect!! + } + +private var _videoBackgroundEffect: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoBackgroundEffectHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoBackgroundEffectHorizontal.kt new file mode 100644 index 00000000..8fb090a0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoBackgroundEffectHorizontal.kt @@ -0,0 +1,91 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VideoBackgroundEffectHorizontal: ImageVector + get() { + if (_videoBackgroundEffectHorizontal != null) { + return _videoBackgroundEffectHorizontal!! + } + _videoBackgroundEffectHorizontal = fluentIcon(name = + "Filled.VideoBackgroundEffectHorizontal") { + fluentPath { + moveTo(2.13f, 5.5f) + curveTo(2.43f, 4.63f, 3.27f, 4.0f, 4.25f, 4.0f) + horizontalLineToRelative(15.5f) + curveToRelative(0.98f, 0.0f, 1.81f, 0.63f, 2.12f, 1.5f) + lineTo(2.13f, 5.5f) + close() + moveTo(22.0f, 11.25f) + horizontalLineToRelative(-6.2f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -0.9f, 1.5f) + lineTo(22.0f, 12.75f) + verticalLineToRelative(-1.5f) + close() + moveTo(22.0f, 9.0f) + horizontalLineToRelative(-6.13f) + arcToRelative(3.99f, 3.99f, 0.0f, false, false, -0.75f, -1.5f) + lineTo(22.0f, 7.5f) + lineTo(22.0f, 9.0f) + close() + moveTo(14.83f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -5.66f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 5.66f, 0.0f) + close() + moveTo(2.0f, 7.5f) + horizontalLineToRelative(6.88f) + curveToRelative(-0.35f, 0.43f, -0.61f, 0.94f, -0.75f, 1.5f) + lineTo(2.0f, 9.0f) + lineTo(2.0f, 7.5f) + close() + moveTo(2.0f, 11.25f) + horizontalLineToRelative(6.2f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.9f, 1.5f) + lineTo(2.0f, 12.75f) + verticalLineToRelative(-1.5f) + close() + moveTo(2.0f, 15.0f) + horizontalLineToRelative(4.1f) + curveToRelative(-0.06f, 0.24f, -0.1f, 0.49f, -0.1f, 0.75f) + verticalLineToRelative(0.75f) + lineTo(2.0f, 16.5f) + lineTo(2.0f, 15.0f) + close() + moveTo(2.13f, 18.5f) + lineTo(6.0f, 18.5f) + lineTo(6.0f, 20.0f) + lineTo(4.25f, 20.0f) + curveToRelative(-0.98f, 0.0f, -1.81f, -0.63f, -2.12f, -1.5f) + close() + moveTo(7.0f, 15.75f) + arcTo(1.74f, 1.74f, 0.0f, false, true, 8.75f, 14.0f) + horizontalLineToRelative(6.5f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 17.0f, 15.75f) + lineTo(17.0f, 20.0f) + lineTo(7.0f, 20.0f) + verticalLineToRelative(-4.25f) + close() + moveTo(18.0f, 18.5f) + lineTo(18.0f, 20.0f) + horizontalLineToRelative(1.75f) + curveToRelative(0.98f, 0.0f, 1.81f, -0.63f, 2.12f, -1.5f) + lineTo(18.0f, 18.5f) + close() + moveTo(22.0f, 16.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.26f, -0.04f, -0.51f, -0.1f, -0.75f) + lineTo(22.0f, 15.0f) + verticalLineToRelative(1.5f) + close() + } + } + return _videoBackgroundEffectHorizontal!! + } + +private var _videoBackgroundEffectHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoChat.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoChat.kt new file mode 100644 index 00000000..16b651ff --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoChat.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VideoChat: ImageVector + get() { + if (_videoChat != null) { + return _videoChat!! + } + _videoChat = fluentIcon(name = "Filled.VideoChat") { + fluentPath { + moveTo(16.0f, 16.25f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-0.48f) + curveToRelative(0.47f, -0.9f, 0.73f, -1.92f, 0.73f, -3.0f) + curveToRelative(0.0f, -2.02f, -0.7f, -3.64f, -2.36f, -5.02f) + arcTo(5.99f, 5.99f, 0.0f, false, false, 6.5f, 10.0f) + curveToRelative(-1.75f, 0.0f, -3.33f, 0.69f, -4.5f, 1.81f) + lineTo(2.0f, 7.75f) + curveTo(2.0f, 5.95f, 3.46f, 4.5f, 5.25f, 4.5f) + horizontalLineToRelative(7.5f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(8.5f) + close() + moveTo(21.76f, 5.89f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.24f, 0.65f) + verticalLineToRelative(10.92f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.65f, 0.76f) + lineTo(17.0f, 15.37f) + lineTo(17.0f, 8.63f) + lineToRelative(3.35f, -2.85f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, 0.11f) + close() + moveTo(10.0f, 12.26f) + arcTo(5.48f, 5.48f, 0.0f, false, false, 6.5f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -4.81f, 8.17f) + lineToRelative(-0.67f, 2.19f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.63f, 0.62f) + lineToRelative(2.18f, -0.67f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 10.0f, 12.25f) + close() + moveTo(4.5f, 16.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + horizontalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(6.5f, 18.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + close() + } + } + return _videoChat!! + } + +private var _videoChat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoClip.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoClip.kt new file mode 100644 index 00000000..5c19b1b2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoClip.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VideoClip: ImageVector + get() { + if (_videoClip != null) { + return _videoClip!! + } + _videoClip = fluentIcon(name = "Filled.VideoClip") { + fluentPath { + moveTo(5.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(2.0f, 19.55f, 3.46f, 21.0f, 5.25f, 21.0f) + horizontalLineToRelative(13.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineTo(6.25f) + curveTo(22.0f, 4.45f, 20.54f, 3.0f, 18.75f, 3.0f) + horizontalLineTo(5.25f) + close() + moveTo(9.0f, 9.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.48f, -0.88f) + lineToRelative(5.0f, 2.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.76f) + lineToRelative(-5.0f, 2.75f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 9.0f, 14.75f) + verticalLineToRelative(-5.5f) + close() + } + } + return _videoClip!! + } + +private var _videoClip: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoClipMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoClipMultiple.kt new file mode 100644 index 00000000..3b95b3bf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoClipMultiple.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VideoClipMultiple: ImageVector + get() { + if (_videoClipMultiple != null) { + return _videoClipMultiple!! + } + _videoClipMultiple = fluentIcon(name = "Filled.VideoClipMultiple") { + fluentPath { + moveTo(5.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 6.25f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(10.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-9.0f) + curveTo(19.0f, 4.45f, 17.54f, 3.0f, 15.75f, 3.0f) + horizontalLineTo(5.25f) + close() + moveTo(8.0f, 13.25f) + verticalLineToRelative(-5.5f) + curveToRelative(0.0f, -0.6f, 0.66f, -0.95f, 1.15f, -0.63f) + lineToRelative(4.62f, 2.96f) + curveToRelative(0.31f, 0.2f, 0.31f, 0.64f, 0.0f, 0.84f) + lineToRelative(-4.62f, 2.96f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 13.25f) + close() + moveTo(7.75f, 21.0f) + curveToRelative(-1.15f, 0.0f, -2.16f, -0.6f, -2.74f, -1.5f) + horizontalLineToRelative(11.24f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 20.0f, 15.75f) + verticalLineTo(6.01f) + curveToRelative(0.9f, 0.58f, 1.5f, 1.59f, 1.5f, 2.74f) + verticalLineToRelative(7.0f) + curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) + horizontalLineToRelative(-8.5f) + close() + } + } + return _videoClipMultiple!! + } + +private var _videoClipMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoClipOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoClipOff.kt new file mode 100644 index 00000000..32d26e29 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoClipOff.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VideoClipOff: ImageVector + get() { + if (_videoClipOff != null) { + return _videoClipOff!! + } + _videoClipOff = fluentIcon(name = "Filled.VideoClipOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(0.7f, 0.7f) + arcTo(3.24f, 3.24f, 0.0f, false, false, 2.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(2.0f, 19.55f, 3.46f, 21.0f, 5.25f, 21.0f) + horizontalLineToRelative(13.5f) + curveToRelative(0.36f, 0.0f, 0.7f, -0.06f, 1.02f, -0.16f) + lineToRelative(0.95f, 0.94f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(13.12f, 14.18f) + lineTo(10.48f, 15.63f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 9.0f, 14.75f) + verticalLineToRelative(-4.69f) + lineToRelative(4.12f, 4.12f) + close() + moveTo(15.48f, 11.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.31f, 1.5f) + lineToRelative(6.07f, 6.06f) + curveToRelative(0.1f, -0.3f, 0.14f, -0.6f, 0.14f, -0.93f) + lineTo(22.0f, 6.25f) + curveTo(22.0f, 4.45f, 20.54f, 3.0f, 18.75f, 3.0f) + lineTo(6.18f, 3.0f) + lineToRelative(6.69f, 6.69f) + lineToRelative(2.61f, 1.43f) + close() + } + } + return _videoClipOff!! + } + +private var _videoClipOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoOff.kt new file mode 100644 index 00000000..8380174d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoOff.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VideoOff: ImageVector + get() { + if (_videoOff != null) { + return _videoOff!! + } + _videoOff = fluentIcon(name = "Filled.VideoOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.57f, 1.57f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.75f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(7.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 3.17f, -2.52f) + lineToRelative(4.8f, 4.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(17.0f, 13.82f) + lineToRelative(4.5f, 4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.5f, -0.86f) + verticalLineTo(6.54f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.65f, -0.76f) + lineTo(17.0f, 8.63f) + verticalLineToRelative(5.19f) + close() + moveTo(7.68f, 4.5f) + lineTo(16.0f, 12.82f) + verticalLineTo(7.75f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineTo(7.68f) + close() + } + } + return _videoOff!! + } + +private var _videoOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoPerson.kt new file mode 100644 index 00000000..95bcaf1b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoPerson.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VideoPerson: ImageVector + get() { + if (_videoPerson != null) { + return _videoPerson!! + } + _videoPerson = fluentIcon(name = "Filled.VideoPerson") { + fluentPath { + moveTo(19.75f, 4.0f) + curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(22.0f, 19.0f, 20.99f, 20.0f, 19.75f, 20.0f) + lineTo(4.25f, 20.0f) + curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) + lineTo(2.0f, 6.25f) + curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) + horizontalLineToRelative(15.5f) + close() + moveTo(19.75f, 5.5f) + lineTo(4.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(7.0f, 18.5f) + verticalLineToRelative(-2.75f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) + lineToRelative(0.15f, -0.01f) + horizontalLineToRelative(6.5f) + curveToRelative(0.91f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) + verticalLineToRelative(2.9f) + horizontalLineToRelative(2.76f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) + lineTo(20.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(12.0f, 7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) + close() + } + } + return _videoPerson!! + } + +private var _videoPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoPersonCall.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoPersonCall.kt new file mode 100644 index 00000000..fe8ac840 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoPersonCall.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VideoPersonCall: ImageVector + get() { + if (_videoPersonCall != null) { + return _videoPersonCall!! + } + _videoPersonCall = fluentIcon(name = "Filled.VideoPersonCall") { + fluentPath { + moveTo(22.0f, 6.25f) + curveTo(22.0f, 5.01f, 20.99f, 4.0f, 19.75f, 4.0f) + lineTo(4.25f, 4.0f) + curveTo(3.01f, 4.0f, 2.0f, 5.0f, 2.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(2.0f, 19.0f, 3.0f, 20.0f, 4.25f, 20.0f) + horizontalLineToRelative(9.76f) + curveToRelative(0.03f, -0.42f, 0.2f, -0.84f, 0.48f, -1.2f) + lineToRelative(0.8f, -1.01f) + arcToRelative(2.2f, 2.2f, 0.0f, false, true, 1.7f, -0.83f) + lineTo(16.99f, 15.6f) + curveToRelative(-0.07f, -0.9f, -0.83f, -1.61f, -1.75f, -1.61f) + lineTo(8.61f, 13.99f) + curveToRelative(-0.9f, 0.08f, -1.61f, 0.83f, -1.61f, 1.75f) + verticalLineToRelative(2.75f) + lineTo(4.25f, 18.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(3.5f, 6.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(15.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(3.77f) + curveToRelative(0.33f, -0.05f, 0.68f, -0.02f, 1.02f, 0.1f) + lineToRelative(0.44f, 0.13f) + lineToRelative(0.04f, 0.01f) + lineTo(22.0f, 6.25f) + close() + moveTo(15.0f, 10.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, -6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 6.0f, 0.0f) + close() + moveTo(19.2f, 13.0f) + lineTo(19.67f, 11.79f) + curveToRelative(0.24f, -0.61f, 0.92f, -0.93f, 1.55f, -0.73f) + lineToRelative(0.43f, 0.14f) + curveToRelative(0.72f, 0.24f, 1.32f, 0.8f, 1.35f, 1.57f) + curveToRelative(0.1f, 3.11f, -2.48f, 7.58f, -5.22f, 9.06f) + curveToRelative(-0.67f, 0.36f, -1.46f, 0.12f, -2.03f, -0.4f) + lineToRelative(-0.34f, -0.3f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.14f, -1.7f) + lineToRelative(0.8f, -1.02f) + arcToRelative(1.2f, 1.2f, 0.0f, false, true, 1.22f, -0.42f) + lineToRelative(1.3f, 0.32f) + arcToRelative(3.78f, 3.78f, 0.0f, false, false, 1.77f, -3.08f) + lineToRelative(-0.92f, -0.96f) + arcToRelative(1.2f, 1.2f, 0.0f, false, true, -0.25f, -1.28f) + close() + } + } + return _videoPersonCall!! + } + +private var _videoPersonCall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoPersonClock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoPersonClock.kt new file mode 100644 index 00000000..c567213f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoPersonClock.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VideoPersonClock: ImageVector + get() { + if (_videoPersonClock != null) { + return _videoPersonClock!! + } + _videoPersonClock = fluentIcon(name = "Filled.VideoPersonClock") { + fluentPath { + moveTo(22.0f, 5.25f) + curveTo(22.0f, 4.01f, 20.99f, 3.0f, 19.75f, 3.0f) + lineTo(4.25f, 3.0f) + curveTo(3.01f, 3.0f, 2.0f, 4.0f, 2.0f, 5.25f) + verticalLineToRelative(11.5f) + curveTo(2.0f, 18.0f, 3.0f, 19.0f, 4.25f, 19.0f) + horizontalLineToRelative(6.93f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, 1.63f, -6.0f) + lineTo(8.61f, 13.0f) + curveToRelative(-0.9f, 0.08f, -1.61f, 0.83f, -1.61f, 1.75f) + verticalLineToRelative(2.75f) + lineTo(4.25f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(3.5f, 5.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(15.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(6.48f) + curveToRelative(0.55f, 0.29f, 1.05f, 0.65f, 1.5f, 1.08f) + lineTo(22.0f, 5.25f) + close() + moveTo(15.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, -6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 6.0f, 0.0f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(19.5f, 17.5f) + horizontalLineToRelative(-2.0f) + lineTo(17.5f, 15.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + close() + } + } + return _videoPersonClock!! + } + +private var _videoPersonClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoPersonOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoPersonOff.kt new file mode 100644 index 00000000..773a009e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoPersonOff.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VideoPersonOff: ImageVector + get() { + if (_videoPersonOff != null) { + return _videoPersonOff!! + } + _videoPersonOff = fluentIcon(name = "Filled.VideoPersonOff") { + fluentPath { + moveTo(2.22f, 2.22f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(18.5f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineTo(18.94f, 20.0f) + lineTo(4.25f, 20.0f) + curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) + lineTo(2.0f, 6.25f) + curveToRelative(0.0f, -0.86f, 0.49f, -1.61f, 1.2f, -1.99f) + lineToRelative(-0.98f, -0.98f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + moveTo(11.94f, 13.0f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 9.0f, 10.06f) + lineTo(4.44f, 5.5f) + horizontalLineToRelative(-0.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(7.0f, 18.5f) + verticalLineToRelative(-2.75f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) + lineToRelative(0.15f, -0.01f) + horizontalLineToRelative(4.19f) + lineToRelative(-1.0f, -1.0f) + close() + moveTo(14.63f, 11.45f) + lineTo(10.55f, 7.37f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 4.08f, 4.08f) + close() + moveTo(20.5f, 17.31f) + lineTo(20.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(8.68f, 5.5f) + lineTo(7.18f, 4.0f) + horizontalLineToRelative(12.57f) + curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.32f, -0.07f, 0.61f, -0.18f, 0.89f) + lineTo(20.5f, 17.3f) + close() + } + } + return _videoPersonOff!! + } + +private var _videoPersonOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoPersonSparkle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoPersonSparkle.kt new file mode 100644 index 00000000..1b1ad7ce --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoPersonSparkle.kt @@ -0,0 +1,101 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VideoPersonSparkle: ImageVector + get() { + if (_videoPersonSparkle != null) { + return _videoPersonSparkle!! + } + _videoPersonSparkle = fluentIcon(name = "Filled.VideoPersonSparkle") { + fluentPath { + moveTo(4.3f, 4.0f) + horizontalLineToRelative(15.45f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 22.0f, 6.25f) + verticalLineToRelative(11.5f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 19.75f, 20.0f) + lineTo(4.25f, 20.0f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 2.0f, 17.75f) + verticalLineToRelative(-7.2f) + curveToRelative(0.06f, 0.07f, 0.13f, 0.14f, 0.21f, 0.2f) + arcToRelative(1.38f, 1.38f, 0.0f, false, false, 1.29f, 0.14f) + verticalLineToRelative(6.86f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, 0.75f) + lineTo(7.0f, 18.5f) + verticalLineToRelative(-2.76f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 8.6f, 14.0f) + horizontalLineToRelative(6.65f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 1.74f, 1.6f) + verticalLineToRelative(2.89f) + horizontalLineToRelative(2.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, -0.75f) + lineTo(20.5f, 6.24f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.74f) + lineTo(5.42f, 5.5f) + lineToRelative(-0.28f, -0.1f) + arcToRelative(0.9f, 0.9f, 0.0f, false, true, -0.57f, -0.55f) + lineTo(4.3f, 4.0f) + close() + moveTo(14.12f, 7.88f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, -4.24f, 4.24f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 4.24f, -4.24f) + close() + moveTo(2.36f, 8.84f) + lineTo(2.66f, 9.76f) + arcToRelative(0.36f, 0.36f, 0.0f, false, false, 0.68f, 0.02f) + verticalLineToRelative(-0.02f) + lineToRelative(0.3f, -0.92f) + arcToRelative(1.88f, 1.88f, 0.0f, false, true, 1.2f, -1.2f) + lineToRelative(0.92f, -0.3f) + arcToRelative(0.36f, 0.36f, 0.0f, false, false, 0.0f, -0.68f) + horizontalLineToRelative(-0.02f) + lineToRelative(-0.92f, -0.3f) + arcToRelative(1.9f, 1.9f, 0.0f, false, true, -1.2f, -1.2f) + lineToRelative(-0.3f, -0.92f) + arcToRelative(0.36f, 0.36f, 0.0f, false, false, -0.55f, -0.17f) + curveToRelative(-0.06f, 0.04f, -0.1f, 0.1f, -0.13f, 0.17f) + lineToRelative(-0.3f, 0.92f) + verticalLineToRelative(0.02f) + arcToRelative(1.9f, 1.9f, 0.0f, false, true, -1.18f, 1.18f) + lineToRelative(-0.92f, 0.3f) + arcToRelative(0.36f, 0.36f, 0.0f, false, false, -0.17f, 0.55f) + curveToRelative(0.04f, 0.06f, 0.1f, 0.1f, 0.17f, 0.13f) + lineToRelative(0.92f, 0.3f) + arcToRelative(1.9f, 1.9f, 0.0f, false, true, 1.2f, 1.2f) + close() + moveTo(4.89f, 10.54f) + lineTo(5.43f, 10.37f) + arcToRelative(1.12f, 1.12f, 0.0f, false, false, 0.68f, -0.7f) + lineToRelative(0.18f, -0.53f) + arcTo(0.22f, 0.22f, 0.0f, false, true, 6.4f, 9.0f) + arcToRelative(0.2f, 0.2f, 0.0f, false, true, 0.2f, 0.03f) + lineToRelative(0.03f, 0.03f) + lineToRelative(0.05f, 0.07f) + lineToRelative(0.17f, 0.54f) + arcToRelative(1.1f, 1.1f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(0.54f, 0.17f) + lineToRelative(0.04f, 0.02f) + arcToRelative(0.21f, 0.21f, 0.0f, false, true, 0.1f, 0.18f) + arcToRelative(0.21f, 0.21f, 0.0f, false, true, -0.14f, 0.2f) + lineToRelative(-0.53f, 0.17f) + arcToRelative(1.1f, 1.1f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(-0.17f, 0.54f) + arcToRelative(0.22f, 0.22f, 0.0f, false, true, -0.08f, 0.1f) + arcToRelative(0.21f, 0.21f, 0.0f, false, true, -0.32f, -0.1f) + lineToRelative(-0.17f, -0.54f) + arcToRelative(1.1f, 1.1f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-0.54f, -0.17f) + arcToRelative(0.21f, 0.21f, 0.0f, false, true, -0.1f, -0.32f) + arcToRelative(0.2f, 0.2f, 0.0f, false, true, 0.1f, -0.08f) + close() + } + } + return _videoPersonSparkle!! + } + +private var _videoPersonSparkle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoPersonStar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoPersonStar.kt new file mode 100644 index 00000000..a4f29d38 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoPersonStar.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VideoPersonStar: ImageVector + get() { + if (_videoPersonStar != null) { + return _videoPersonStar!! + } + _videoPersonStar = fluentIcon(name = "Filled.VideoPersonStar") { + fluentPath { + moveTo(19.75f, 4.0f) + curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) + verticalLineToRelative(6.56f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) + lineTo(20.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(4.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(7.0f, 18.5f) + verticalLineToRelative(-2.75f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) + lineToRelative(0.15f, -0.01f) + horizontalLineToRelative(3.27f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, -0.52f, 6.0f) + lineTo(4.25f, 20.0f) + curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) + lineTo(2.0f, 6.25f) + curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) + horizontalLineToRelative(15.5f) + close() + moveTo(12.0f, 7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(18.06f, 14.42f) + arcToRelative(0.58f, 0.58f, 0.0f, false, false, -1.12f, 0.0f) + lineToRelative(-0.55f, 1.79f) + horizontalLineToRelative(-1.8f) + curveToRelative(-0.57f, 0.0f, -0.8f, 0.75f, -0.35f, 1.1f) + lineToRelative(1.46f, 1.1f) + lineToRelative(-0.56f, 1.79f) + curveToRelative(-0.17f, 0.56f, 0.44f, 1.03f, 0.9f, 0.68f) + lineToRelative(1.46f, -1.1f) + lineToRelative(1.46f, 1.1f) + curveToRelative(0.46f, 0.35f, 1.07f, -0.12f, 0.9f, -0.68f) + lineToRelative(-0.56f, -1.79f) + lineToRelative(1.46f, -1.1f) + curveToRelative(0.46f, -0.35f, 0.22f, -1.1f, -0.35f, -1.1f) + horizontalLineToRelative(-1.8f) + lineToRelative(-0.55f, -1.79f) + close() + } + } + return _videoPersonStar!! + } + +private var _videoPersonStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoPersonStarOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoPersonStarOff.kt new file mode 100644 index 00000000..b3192334 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoPersonStarOff.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VideoPersonStarOff: ImageVector + get() { + if (_videoPersonStarOff != null) { + return _videoPersonStarOff!! + } + _videoPersonStarOff = fluentIcon(name = "Filled.VideoPersonStarOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(0.98f, 0.98f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(2.0f, 19.0f, 3.0f, 20.0f, 4.25f, 20.0f) + horizontalLineToRelative(7.25f) + arcToRelative(6.48f, 6.48f, 0.0f, false, true, 0.52f, -6.0f) + lineTo(8.61f, 14.0f) + curveToRelative(-0.9f, 0.08f, -1.61f, 0.83f, -1.61f, 1.75f) + verticalLineToRelative(2.75f) + lineTo(4.25f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(3.5f, 6.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(0.19f) + lineTo(9.0f, 10.06f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 11.94f, 13.0f) + lineToRelative(1.18f, 1.18f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 7.72f, 7.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.94f, -1.16f) + lineTo(3.28f, 2.22f) + close() + moveTo(19.74f, 20.8f) + arcToRelative(0.56f, 0.56f, 0.0f, false, true, -0.78f, 0.08f) + lineToRelative(-1.46f, -1.1f) + lineToRelative(-1.46f, 1.1f) + curveToRelative(-0.46f, 0.35f, -1.07f, -0.12f, -0.9f, -0.68f) + lineToRelative(0.56f, -1.79f) + lineToRelative(-1.46f, -1.1f) + curveToRelative(-0.46f, -0.35f, -0.22f, -1.1f, 0.35f, -1.1f) + horizontalLineToRelative(0.56f) + lineToRelative(4.59f, 4.59f) + close() + moveTo(10.55f, 7.37f) + lineToRelative(4.08f, 4.08f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -4.08f, -4.08f) + close() + moveTo(15.55f, 12.36f) + lineTo(17.25f, 14.06f) + curveToRelative(0.29f, -0.15f, 0.68f, -0.03f, 0.8f, 0.36f) + lineToRelative(0.21f, 0.66f) + lineToRelative(1.13f, 1.13f) + horizontalLineToRelative(1.02f) + curveToRelative(0.57f, 0.0f, 0.8f, 0.75f, 0.35f, 1.1f) + lineToRelative(-0.15f, 0.11f) + lineToRelative(2.03f, 2.04f) + arcTo(5.49f, 5.49f, 0.0f, false, false, 17.5f, 12.0f) + curveToRelative(-0.69f, 0.0f, -1.35f, 0.13f, -1.96f, 0.36f) + close() + moveTo(7.17f, 4.0f) + lineToRelative(1.5f, 1.5f) + horizontalLineToRelative(11.07f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(5.48f) + curveToRelative(0.55f, 0.29f, 1.05f, 0.65f, 1.5f, 1.08f) + lineTo(21.99f, 6.25f) + curveTo(22.0f, 5.01f, 20.99f, 4.0f, 19.75f, 4.0f) + lineTo(7.18f, 4.0f) + close() + } + } + return _videoPersonStarOff!! + } + +private var _videoPersonStarOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoPlayPause.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoPlayPause.kt new file mode 100644 index 00000000..039932f4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoPlayPause.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VideoPlayPause: ImageVector + get() { + if (_videoPlayPause != null) { + return _videoPlayPause!! + } + _videoPlayPause = fluentIcon(name = "Filled.VideoPlayPause") { + fluentPath { + moveTo(12.0f, 7.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(1.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-1.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-4.13f) + curveToRelative(-0.02f, 0.55f, -0.3f, 1.1f, -0.84f, 1.42f) + lineToRelative(-6.5f, 3.95f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 2.0f, 15.99f) + lineTo(2.0f, 8.0f) + curveToRelative(0.0f, -1.37f, 1.5f, -2.2f, 2.67f, -1.48f) + lineToRelative(6.5f, 4.03f) + curveToRelative(0.53f, 0.33f, 0.8f, 0.87f, 0.83f, 1.41f) + lineTo(12.0f, 7.75f) + close() + moveTo(18.0f, 7.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(1.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-1.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-8.5f) + close() + } + } + return _videoPlayPause!! + } + +private var _videoPlayPause: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoProhibited.kt new file mode 100644 index 00000000..943d1358 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoProhibited.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VideoProhibited: ImageVector + get() { + if (_videoProhibited != null) { + return _videoProhibited!! + } + _videoProhibited = fluentIcon(name = "Filled.VideoProhibited") { + fluentPath { + moveTo(11.0f, 17.5f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, 5.0f, -6.33f) + lineTo(16.0f, 8.25f) + curveTo(16.0f, 6.45f, 14.54f, 5.0f, 12.75f, 5.0f) + horizontalLineToRelative(-7.5f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 8.25f) + verticalLineToRelative(8.5f) + curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) + horizontalLineToRelative(6.25f) + arcToRelative(6.48f, 6.48f, 0.0f, false, true, -0.5f, -2.5f) + close() + moveTo(17.5f, 11.0f) + curveToRelative(1.75f, 0.0f, 3.33f, 0.69f, 4.5f, 1.81f) + lineTo(22.0f, 7.04f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.65f, -0.76f) + lineTo(17.0f, 9.13f) + verticalLineToRelative(1.89f) + lineToRelative(0.5f, -0.02f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(13.5f, 17.5f) + curveToRelative(0.0f, 0.83f, 0.26f, 1.6f, 0.7f, 2.25f) + lineToRelative(5.55f, -5.56f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) + close() + moveTo(17.5f, 21.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) + lineToRelative(-5.55f, 5.56f) + curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) + close() + } + } + return _videoProhibited!! + } + +private var _videoProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoSecurity.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoSecurity.kt new file mode 100644 index 00000000..5d096b19 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoSecurity.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VideoSecurity: ImageVector + get() { + if (_videoSecurity != null) { + return _videoSecurity!! + } + _videoSecurity = fluentIcon(name = "Filled.VideoSecurity") { + fluentPath { + moveTo(2.0f, 6.25f) + curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(8.5f) + curveTo(15.55f, 3.0f, 17.0f, 4.46f, 17.0f, 6.25f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-8.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 12.75f) + verticalLineToRelative(-6.5f) + close() + moveTo(21.62f, 3.6f) + curveToRelative(0.23f, 0.13f, 0.38f, 0.38f, 0.38f, 0.65f) + verticalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.14f, 0.64f) + lineTo(18.0f, 13.67f) + verticalLineTo(5.33f) + lineToRelative(2.86f, -1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.76f, -0.01f) + close() + moveTo(8.14f, 17.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.39f, 1.75f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(1.6f) + curveToRelative(0.0f, 0.5f, 0.4f, 0.9f, 0.9f, 0.9f) + horizontalLineToRelative(1.94f) + curveToRelative(3.0f, 0.0f, 5.51f, -2.15f, 6.05f, -5.0f) + horizontalLineTo(8.14f) + close() + } + } + return _videoSecurity!! + } + +private var _videoSecurity: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoSwitch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoSwitch.kt new file mode 100644 index 00000000..30c326a2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/VideoSwitch.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.VideoSwitch: ImageVector + get() { + if (_videoSwitch != null) { + return _videoSwitch!! + } + _videoSwitch = fluentIcon(name = "Filled.VideoSwitch") { + fluentPath { + moveTo(4.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 6.75f, 3.0f) + horizontalLineToRelative(5.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 15.0f, 5.75f) + verticalLineToRelative(6.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 12.25f, 15.0f) + horizontalLineToRelative(-5.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.0f, 12.25f) + verticalLineToRelative(-6.5f) + close() + moveTo(4.2f, 14.99f) + curveToRelative(-0.42f, 0.15f, -0.79f, 0.3f, -1.1f, 0.48f) + curveToRelative(-0.5f, 0.3f, -1.1f, 0.78f, -1.1f, 1.53f) + reflectiveCurveToRelative(0.6f, 1.24f, 1.1f, 1.53f) + curveToRelative(0.56f, 0.32f, 1.31f, 0.58f, 2.18f, 0.79f) + curveToRelative(1.74f, 0.42f, 4.09f, 0.68f, 6.66f, 0.68f) + lineToRelative(-0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineToRelative(2.0f, -2.0f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(0.72f, 0.72f) + arcToRelative(28.2f, 28.2f, 0.0f, false, true, -6.3f, -0.64f) + curveToRelative(-0.81f, -0.2f, -1.4f, -0.42f, -1.79f, -0.63f) + curveToRelative(-0.17f, -0.1f, -0.27f, -0.18f, -0.31f, -0.23f) + curveToRelative(0.04f, -0.05f, 0.14f, -0.12f, 0.31f, -0.23f) + curveToRelative(0.38f, -0.21f, 0.98f, -0.44f, 1.79f, -0.63f) + curveToRelative(0.22f, -0.06f, 0.47f, -0.11f, 0.72f, -0.16f) + arcToRelative(3.74f, 3.74f, 0.0f, false, true, -2.17f, -0.99f) + close() + moveTo(14.02f, 15.56f) + curveToRelative(1.7f, 0.09f, 3.19f, 0.3f, 4.34f, 0.58f) + curveToRelative(0.81f, 0.2f, 1.4f, 0.42f, 1.79f, 0.63f) + curveToRelative(0.17f, 0.1f, 0.27f, 0.18f, 0.31f, 0.23f) + lineToRelative(-0.01f, 0.01f) + curveToRelative(-0.1f, 0.1f, -0.3f, 0.23f, -0.6f, 0.37f) + curveToRelative(-0.62f, 0.28f, -1.55f, 0.54f, -2.72f, 0.73f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.24f, 1.48f) + curveToRelative(1.24f, -0.2f, 2.31f, -0.49f, 3.1f, -0.84f) + curveToRelative(0.38f, -0.18f, 0.74f, -0.4f, 1.01f, -0.65f) + curveToRelative(0.27f, -0.26f, 0.52f, -0.63f, 0.52f, -1.1f) + curveToRelative(0.0f, -0.75f, -0.6f, -1.24f, -1.1f, -1.53f) + arcToRelative(8.56f, 8.56f, 0.0f, false, false, -2.18f, -0.79f) + curveToRelative(-0.93f, -0.22f, -2.03f, -0.4f, -3.24f, -0.52f) + arcToRelative(3.77f, 3.77f, 0.0f, false, true, -1.46f, 1.4f) + close() + moveTo(20.51f, 16.94f) + close() + moveTo(20.0f, 5.24f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.22f, -0.58f) + lineTo(16.0f, 6.89f) + verticalLineToRelative(4.22f) + lineToRelative(2.78f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.22f, -0.58f) + verticalLineToRelative(-7.5f) + close() + } + } + return _videoSwitch!! + } + +private var _videoSwitch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ViewDesktop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ViewDesktop.kt new file mode 100644 index 00000000..e663e57d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ViewDesktop.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ViewDesktop: ImageVector + get() { + if (_viewDesktop != null) { + return _viewDesktop!! + } + _viewDesktop = fluentIcon(name = "Filled.ViewDesktop") { + fluentPath { + moveTo(19.75f, 3.0f) + curveToRelative(1.19f, 0.0f, 2.16f, 0.93f, 2.24f, 2.1f) + verticalLineToRelative(10.65f) + curveToRelative(0.0f, 1.2f, -0.92f, 2.17f, -2.09f, 2.25f) + horizontalLineToRelative(-4.4f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(8.5f, 20.5f) + lineTo(8.5f, 18.0f) + lineTo(4.25f, 18.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) + lineTo(2.0f, 15.76f) + lineTo(2.0f, 5.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 3.0f) + horizontalLineToRelative(15.5f) + close() + moveTo(14.0f, 18.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(4.0f) + lineTo(14.0f, 18.0f) + close() + moveTo(18.5f, 6.0f) + horizontalLineToRelative(-9.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(9.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-8.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(7.5f, 6.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-8.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + } + } + return _viewDesktop!! + } + +private var _viewDesktop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ViewDesktopMobile.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ViewDesktopMobile.kt new file mode 100644 index 00000000..48c4311c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ViewDesktopMobile.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ViewDesktopMobile: ImageVector + get() { + if (_viewDesktopMobile != null) { + return _viewDesktopMobile!! + } + _viewDesktopMobile = fluentIcon(name = "Filled.ViewDesktopMobile") { + fluentPath { + moveTo(15.75f, 2.0f) + curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-7.5f) + curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) + lineTo(6.0f, 4.25f) + curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(13.25f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + horizontalLineToRelative(2.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(14.5f, 9.0f) + horizontalLineToRelative(-5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(14.5f, 5.0f) + horizontalLineToRelative(-5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.27f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + } + } + return _viewDesktopMobile!! + } + +private var _viewDesktopMobile: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Voicemail.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Voicemail.kt new file mode 100644 index 00000000..a692679a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Voicemail.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Voicemail: ImageVector + get() { + if (_voicemail != null) { + return _voicemail!! + } + _voicemail = fluentIcon(name = "Filled.Voicemail") { + fluentPath { + moveTo(19.75f, 4.0f) + curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(22.0f, 19.0f, 21.0f, 20.0f, 19.75f, 20.0f) + lineTo(4.25f, 20.0f) + curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) + lineTo(2.0f, 6.25f) + curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) + horizontalLineToRelative(15.5f) + close() + moveTo(15.75f, 9.0f) + lineTo(7.82f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 2.88f, 1.7f) + lineToRelative(-0.1f, -0.2f) + horizontalLineToRelative(2.8f) + arcTo(3.0f, 3.0f, 0.0f, true, false, 16.18f, 9.0f) + horizontalLineToRelative(-0.43f) + close() + moveTo(8.0f, 10.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(16.0f, 10.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + } + } + return _voicemail!! + } + +private var _voicemail: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Vote.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Vote.kt new file mode 100644 index 00000000..d8cf84af --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Vote.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Vote: ImageVector + get() { + if (_vote != null) { + return _vote!! + } + _vote = fluentIcon(name = "Filled.Vote") { + fluentPath { + moveToRelative(21.94f, 14.47f) + lineToRelative(0.03f, 0.06f) + lineToRelative(0.02f, 0.1f) + lineTo(21.99f, 21.25f) + curveToRelative(0.0f, 0.38f, -0.27f, 0.7f, -0.64f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(2.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + lineTo(2.0f, 14.7f) + lineToRelative(0.01f, -0.09f) + lineToRelative(0.05f, -0.15f) + lineToRelative(2.76f, -6.02f) + curveToRelative(0.1f, -0.23f, 0.32f, -0.4f, 0.57f, -0.43f) + horizontalLineToRelative(2.65f) + lineToRelative(-0.79f, 1.36f) + lineToRelative(-0.07f, 0.13f) + horizontalLineToRelative(-1.2f) + lineTo(3.92f, 14.0f) + horizontalLineToRelative(16.15f) + lineToRelative(-2.03f, -4.35f) + lineToRelative(0.87f, -1.5f) + curveToRelative(0.06f, 0.06f, 0.12f, 0.12f, 0.17f, 0.2f) + lineToRelative(0.05f, 0.09f) + lineToRelative(2.81f, 6.03f) + close() + moveTo(13.37f, 2.06f) + lineToRelative(0.09f, 0.04f) + lineToRelative(5.18f, 3.0f) + curveToRelative(0.33f, 0.2f, 0.46f, 0.6f, 0.32f, 0.94f) + lineToRelative(-0.04f, 0.09f) + lineToRelative(-2.8f, 4.87f) + horizontalLineToRelative(1.13f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(8.57f, 11.0f) + lineToRelative(-0.18f, -0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.32f, -0.94f) + lineToRelative(0.05f, -0.09f) + lineToRelative(4.31f, -7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.94f, -0.31f) + close() + moveTo(13.36f, 3.78f) + lineTo(9.79f, 9.98f) + lineTo(11.57f, 11.0f) + horizontalLineToRelative(2.81f) + lineToRelative(2.87f, -4.97f) + lineToRelative(-3.9f, -2.25f) + close() + } + } + return _vote!! + } + +private var _vote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WalkieTalkie.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WalkieTalkie.kt new file mode 100644 index 00000000..6c065439 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WalkieTalkie.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WalkieTalkie: ImageVector + get() { + if (_walkieTalkie != null) { + return _walkieTalkie!! + } + _walkieTalkie = fluentIcon(name = "Filled.WalkieTalkie") { + fluentPath { + moveTo(9.5f, 7.5f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(-5.0f) + close() + moveTo(8.75f, 1.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(9.5f, 3.0f) + horizontalLineToRelative(7.25f) + curveTo(17.99f, 3.0f, 19.0f, 4.0f, 19.0f, 5.25f) + lineTo(19.0f, 14.0f) + curveToRelative(0.0f, 0.19f, -0.07f, 0.37f, -0.2f, 0.5f) + lineToRelative(-1.3f, 1.42f) + verticalLineToRelative(3.83f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-6.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-3.83f) + lineTo(5.2f, 14.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 5.0f, 14.0f) + lineTo(5.0f, 5.25f) + curveTo(5.0f, 4.01f, 6.0f, 3.0f, 7.25f, 3.0f) + lineTo(8.0f, 3.0f) + lineTo(8.0f, 1.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(8.0f, 6.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(6.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(9.5f, 14.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + } + } + return _walkieTalkie!! + } + +private var _walkieTalkie: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Wallet.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Wallet.kt new file mode 100644 index 00000000..87842fc6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Wallet.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Wallet: ImageVector + get() { + if (_wallet != null) { + return _wallet!! + } + _wallet = fluentIcon(name = "Filled.Wallet") { + fluentPath { + moveTo(3.0f, 5.0f) + verticalLineToRelative(12.75f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(12.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-8.5f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 19.0f, 6.09f) + verticalLineToRelative(-0.84f) + curveTo(19.0f, 4.01f, 18.0f, 3.0f, 16.75f, 3.0f) + lineTo(5.25f, 3.0f) + curveToRelative(-1.16f, 0.0f, -2.11f, 0.88f, -2.24f, 2.0f) + lineTo(3.0f, 5.0f) + close() + moveTo(5.25f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(11.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(17.5f, 6.0f) + lineTo(5.25f, 6.0f) + close() + moveTo(16.25f, 13.0f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + } + } + return _wallet!! + } + +private var _wallet: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WalletCreditCard.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WalletCreditCard.kt new file mode 100644 index 00000000..f5b35e43 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WalletCreditCard.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WalletCreditCard: ImageVector + get() { + if (_walletCreditCard != null) { + return _walletCreditCard!! + } + _walletCreditCard = fluentIcon(name = "Filled.WalletCreditCard") { + fluentPath { + moveTo(14.36f, 2.6f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, 0.36f, -0.04f) + lineToRelative(0.92f, 0.81f) + lineTo(12.74f, 7.0f) + horizontalLineToRelative(1.92f) + lineToRelative(2.1f, -2.63f) + lineToRelative(1.66f, 1.45f) + curveToRelative(0.1f, 0.1f, 0.11f, 0.25f, 0.02f, 0.35f) + lineToRelative(-0.69f, 0.83f) + horizontalLineToRelative(1.95f) + curveToRelative(0.5f, -0.72f, 0.38f, -1.71f, -0.3f, -2.3f) + lineToRelative(-3.69f, -3.26f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.53f, 0.23f) + lineTo(8.98f, 7.0f) + horizontalLineToRelative(1.9f) + lineToRelative(3.48f, -4.4f) + close() + moveTo(5.25f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(13.0f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-12.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 7.25f) + curveTo(3.0f, 6.01f, 4.0f, 5.0f, 5.25f, 5.0f) + horizontalLineToRelative(4.32f) + lineToRelative(-1.2f, 1.5f) + lineTo(5.26f, 6.5f) + close() + moveTo(15.5f, 14.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + } + } + return _walletCreditCard!! + } + +private var _walletCreditCard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Wallpaper.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Wallpaper.kt new file mode 100644 index 00000000..5404789c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Wallpaper.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Wallpaper: ImageVector + get() { + if (_wallpaper != null) { + return _wallpaper!! + } + _wallpaper = fluentIcon(name = "Filled.Wallpaper") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + lineTo(10.0f, 3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(6.25f, 5.0f) + curveTo(5.56f, 5.0f, 5.0f, 5.56f, 5.0f, 6.25f) + lineTo(5.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(3.0f, 6.25f) + close() + moveTo(13.0f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(3.75f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + lineTo(21.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + lineTo(19.0f, 6.25f) + curveTo(19.0f, 5.56f, 18.44f, 5.0f, 17.75f, 5.0f) + lineTo(14.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(4.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(3.59f) + lineToRelative(4.53f, -4.53f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 4.94f, 0.0f) + lineTo(19.0f, 17.6f) + lineTo(19.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(3.75f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(14.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(3.59f) + lineToRelative(-4.53f, -4.53f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.12f, 0.0f) + lineTo(6.4f, 19.0f) + lineTo(10.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(17.5f, 8.75f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.5f, 0.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.5f, 0.0f) + close() + } + } + return _wallpaper!! + } + +private var _wallpaper: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Wand.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Wand.kt new file mode 100644 index 00000000..06943579 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Wand.kt @@ -0,0 +1,121 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Wand: ImageVector + get() { + if (_wand != null) { + return _wand!! + } + _wand = fluentIcon(name = "Filled.Wand") { + fluentPath { + moveToRelative(11.4f, 9.46f) + lineToRelative(-8.7f, 8.72f) + arcToRelative(2.27f, 2.27f, 0.0f, false, false, 3.2f, 3.2f) + lineToRelative(8.71f, -8.7f) + lineToRelative(-3.2f, -3.22f) + close() + moveTo(16.85f, 15.01f) + lineTo(16.75f, 15.0f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(-0.75f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + lineTo(16.0f, 18.0f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + lineTo(17.5f, 18.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-0.75f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(0.1f) + close() + moveTo(13.31f, 7.57f) + lineTo(13.18f, 7.69f) + lineTo(12.47f, 8.4f) + lineTo(15.67f, 11.61f) + lineTo(16.39f, 10.9f) + curveToRelative(0.88f, -0.88f, 0.88f, -2.3f, 0.0f, -3.18f) + lineToRelative(-0.16f, -0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.92f, 0.0f) + close() + moveTo(6.85f, 5.0f) + lineTo(6.75f, 5.0f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(-0.75f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + lineTo(6.0f, 8.0f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + lineTo(7.5f, 8.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + lineTo(7.5f, 6.5f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineTo(6.75f, 5.0f) + horizontalLineToRelative(0.1f) + close() + moveTo(18.85f, 3.0f) + lineTo(18.75f, 2.99f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(-0.75f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + lineTo(18.0f, 5.99f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + lineTo(19.5f, 6.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-0.75f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(0.1f) + close() + } + } + return _wand!! + } + +private var _wand: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Washer.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Washer.kt new file mode 100644 index 00000000..f2f22f77 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Washer.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Washer: ImageVector + get() { + if (_washer != null) { + return _washer!! + } + _washer = fluentIcon(name = "Filled.Washer") { + fluentPath { + moveTo(8.25f, 13.75f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 7.45f, -0.64f) + curveToRelative(-0.17f, 0.15f, -0.37f, 0.3f, -0.64f, 0.42f) + curveToRelative(-0.54f, 0.23f, -1.42f, 0.37f, -2.94f, -0.02f) + curveToRelative(-1.7f, -0.42f, -2.84f, -0.17f, -3.64f, 0.33f) + lineToRelative(-0.22f, 0.15f) + lineToRelative(-0.01f, -0.24f) + close() + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(8.0f, 7.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + close() + moveTo(12.0f, 6.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(12.0f, 8.5f) + arcTo(5.25f, 5.25f, 0.0f, true, true, 12.0f, 19.0f) + arcToRelative(5.25f, 5.25f, 0.0f, false, true, 0.0f, -10.5f) + close() + } + } + return _washer!! + } + +private var _washer: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Water.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Water.kt new file mode 100644 index 00000000..b98d570e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Water.kt @@ -0,0 +1,116 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Water: ImageVector + get() { + if (_water != null) { + return _water!! + } + _water = fluentIcon(name = "Filled.Water") { + fluentPath { + moveTo(18.46f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.93f, 0.55f) + arcTo(4.57f, 4.57f, 0.0f, false, false, 21.2f, 6.0f) + lineToRelative(0.12f, 0.06f) + horizontalLineToRelative(0.02f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.64f, 1.9f) + horizontalLineToRelative(-0.01f) + lineToRelative(-0.01f, -0.01f) + lineToRelative(-0.03f, -0.01f) + arcToRelative(2.55f, 2.55f, 0.0f, false, true, -0.34f, -0.15f) + arcToRelative(6.1f, 6.1f, 0.0f, false, true, -1.75f, -1.4f) + arcTo(4.27f, 4.27f, 0.0f, false, true, 15.25f, 8.0f) + curveToRelative(-1.23f, 0.0f, -2.39f, -0.55f, -3.25f, -1.56f) + arcTo(4.26f, 4.26f, 0.0f, false, true, 8.75f, 8.0f) + arcToRelative(4.27f, 4.27f, 0.0f, false, true, -3.3f, -1.62f) + arcToRelative(6.12f, 6.12f, 0.0f, false, true, -2.0f, 1.52f) + lineToRelative(-0.09f, 0.03f) + lineToRelative(-0.02f, 0.01f) + horizontalLineToRelative(-0.02f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.65f, -1.88f) + lineToRelative(0.02f, -0.01f) + lineTo(2.8f, 6.0f) + curveToRelative(0.11f, -0.06f, 0.28f, -0.15f, 0.48f, -0.3f) + curveToRelative(0.39f, -0.3f, 0.9f, -0.8f, 1.33f, -1.65f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.82f, 0.08f) + curveTo(6.96f, 5.47f, 7.92f, 6.0f, 8.75f, 6.0f) + curveToRelative(0.83f, 0.0f, 1.8f, -0.53f, 2.32f, -1.87f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.86f, 0.0f) + curveTo(13.46f, 5.47f, 14.42f, 6.0f, 15.25f, 6.0f) + curveToRelative(0.83f, 0.0f, 1.8f, -0.53f, 2.32f, -1.87f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.89f, -0.63f) + close() + moveTo(18.46f, 9.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.93f, 0.55f) + arcTo(4.57f, 4.57f, 0.0f, false, false, 21.2f, 12.0f) + lineToRelative(0.12f, 0.06f) + horizontalLineToRelative(0.02f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.64f, 1.9f) + horizontalLineToRelative(-0.01f) + lineToRelative(-0.01f, -0.01f) + lineToRelative(-0.03f, -0.01f) + arcToRelative(2.68f, 2.68f, 0.0f, false, true, -0.34f, -0.15f) + arcToRelative(6.1f, 6.1f, 0.0f, false, true, -1.75f, -1.4f) + arcToRelative(4.27f, 4.27f, 0.0f, false, true, -3.3f, 1.62f) + curveToRelative(-1.23f, 0.0f, -2.39f, -0.55f, -3.25f, -1.56f) + arcTo(4.26f, 4.26f, 0.0f, false, true, 8.75f, 14.0f) + arcToRelative(4.27f, 4.27f, 0.0f, false, true, -3.3f, -1.62f) + arcToRelative(6.12f, 6.12f, 0.0f, false, true, -2.0f, 1.52f) + arcToRelative(2.7f, 2.7f, 0.0f, false, true, -0.09f, 0.03f) + lineToRelative(-0.02f, 0.01f) + horizontalLineToRelative(-0.02f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.65f, -1.88f) + lineToRelative(0.02f, -0.01f) + lineToRelative(0.11f, -0.05f) + curveToRelative(0.11f, -0.06f, 0.28f, -0.15f, 0.48f, -0.3f) + curveToRelative(0.39f, -0.3f, 0.9f, -0.8f, 1.33f, -1.65f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.82f, 0.08f) + curveTo(6.96f, 11.47f, 7.92f, 12.0f, 8.75f, 12.0f) + curveToRelative(0.83f, 0.0f, 1.8f, -0.53f, 2.32f, -1.87f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.86f, 0.0f) + curveToRelative(0.53f, 1.34f, 1.49f, 1.87f, 2.32f, 1.87f) + curveToRelative(0.83f, 0.0f, 1.8f, -0.53f, 2.32f, -1.87f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.89f, -0.63f) + close() + moveTo(19.39f, 16.05f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.82f, 0.08f) + curveToRelative(-0.53f, 1.34f, -1.49f, 1.87f, -2.32f, 1.87f) + curveToRelative(-0.83f, 0.0f, -1.8f, -0.53f, -2.32f, -1.87f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.86f, 0.0f) + curveTo(10.54f, 17.47f, 9.58f, 18.0f, 8.75f, 18.0f) + curveToRelative(-0.83f, 0.0f, -1.8f, -0.53f, -2.32f, -1.87f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.82f, -0.08f) + arcTo(4.58f, 4.58f, 0.0f, false, true, 2.8f, 18.0f) + lineToRelative(-0.12f, 0.05f) + horizontalLineToRelative(-0.02f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.65f, 1.9f) + horizontalLineToRelative(0.02f) + lineToRelative(0.02f, -0.02f) + arcToRelative(2.7f, 2.7f, 0.0f, false, false, 0.34f, -0.14f) + arcToRelative(6.12f, 6.12f, 0.0f, false, false, 1.75f, -1.4f) + arcToRelative(4.27f, 4.27f, 0.0f, false, false, 3.3f, 1.6f) + curveToRelative(1.23f, 0.0f, 2.4f, -0.54f, 3.25f, -1.55f) + curveToRelative(0.86f, 1.0f, 2.02f, 1.56f, 3.25f, 1.56f) + curveToRelative(1.25f, 0.0f, 2.44f, -0.58f, 3.3f, -1.62f) + arcToRelative(6.1f, 6.1f, 0.0f, false, false, 2.0f, 1.52f) + lineToRelative(0.09f, 0.03f) + horizontalLineToRelative(0.03f) + verticalLineToRelative(0.01f) + horizontalLineToRelative(0.01f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.65f, -1.89f) + horizontalLineToRelative(-0.02f) + arcToRelative(3.12f, 3.12f, 0.0f, false, true, -0.59f, -0.35f) + curveToRelative(-0.39f, -0.3f, -0.9f, -0.8f, -1.33f, -1.65f) + close() + } + } + return _water!! + } + +private var _water: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherBlowingSnow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherBlowingSnow.kt new file mode 100644 index 00000000..e2d68fe8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherBlowingSnow.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WeatherBlowingSnow: ImageVector + get() { + if (_weatherBlowingSnow != null) { + return _weatherBlowingSnow!! + } + _weatherBlowingSnow = fluentIcon(name = "Filled.WeatherBlowingSnow") { + fluentPath { + moveTo(11.55f, 3.5f) + arcToRelative(4.11f, 4.11f, 0.0f, false, false, -4.03f, 3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.96f, 0.4f) + curveToRelative(0.2f, -0.99f, 1.06f, -1.7f, 2.07f, -1.7f) + horizontalLineToRelative(0.2f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, 4.5f) + lineTo(3.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(8.75f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, 0.0f, -8.5f) + horizontalLineToRelative(-0.2f) + close() + moveTo(18.82f, 9.5f) + arcToRelative(3.2f, 3.2f, 0.0f, false, false, -3.02f, 2.18f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.9f, 0.64f) + arcToRelative(1.18f, 1.18f, 0.0f, false, true, 2.3f, 0.36f) + verticalLineToRelative(0.07f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + lineTo(3.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(11.75f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(0.07f) + arcToRelative(1.18f, 1.18f, 0.0f, false, true, -2.3f, 0.36f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.9f, 0.64f) + arcToRelative(3.18f, 3.18f, 0.0f, false, false, 6.2f, -1.0f) + verticalLineToRelative(-0.07f) + curveToRelative(0.0f, -0.44f, -0.09f, -0.87f, -0.25f, -1.25f) + horizontalLineToRelative(1.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-0.07f) + arcToRelative(3.18f, 3.18f, 0.0f, false, false, -3.18f, -3.18f) + close() + moveTo(4.0f, 6.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + moveTo(10.25f, 20.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(19.0f, 7.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + } + } + return _weatherBlowingSnow!! + } + +private var _weatherBlowingSnow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherCloudy.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherCloudy.kt new file mode 100644 index 00000000..2ee5783d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherCloudy.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WeatherCloudy: ImageVector + get() { + if (_weatherCloudy != null) { + return _weatherCloudy!! + } + _weatherCloudy = fluentIcon(name = "Filled.WeatherCloudy") { + fluentPath { + moveTo(13.0f, 7.0f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.64f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) + lineTo(7.69f, 19.0f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) + horizontalLineToRelative(0.08f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 7.0f) + close() + moveTo(10.0f, 4.0f) + curveToRelative(1.62f, 0.0f, 3.05f, 0.82f, 3.9f, 2.06f) + arcToRelative(7.5f, 7.5f, 0.0f, false, false, -0.9f, -0.05f) + curveToRelative(-3.0f, 0.0f, -5.17f, 1.68f, -5.94f, 4.21f) + lineToRelative(-0.06f, 0.24f) + lineToRelative(-0.06f, 0.24f) + lineToRelative(-0.2f, 0.04f) + arcToRelative(4.68f, 4.68f, 0.0f, false, false, -3.46f, 3.04f) + arcTo(3.28f, 3.28f, 0.0f, false, true, 5.1f, 7.9f) + horizontalLineToRelative(0.25f) + arcTo(4.72f, 4.72f, 0.0f, false, true, 10.0f, 4.0f) + close() + } + } + return _weatherCloudy!! + } + +private var _weatherCloudy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherDrizzle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherDrizzle.kt new file mode 100644 index 00000000..a1b60894 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherDrizzle.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WeatherDrizzle: ImageVector + get() { + if (_weatherDrizzle != null) { + return _weatherDrizzle!! + } + _weatherDrizzle = fluentIcon(name = "Filled.WeatherDrizzle") { + fluentPath { + moveTo(12.0f, 3.0f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.37f) + horizontalLineToRelative(-0.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.09f, 0.17f) + lineToRelative(-1.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.24f, -0.84f) + lineToRelative(0.56f, -0.83f) + horizontalLineToRelative(-2.23f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.09f, 0.17f) + lineToRelative(-1.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.24f, -0.84f) + lineToRelative(0.56f, -0.83f) + lineTo(8.46f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.09f, 0.17f) + lineToRelative(-1.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.24f, -0.84f) + lineToRelative(0.56f, -0.83f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.37f) + horizontalLineToRelative(0.08f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 12.0f, 3.0f) + close() + moveTo(7.13f, 18.83f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.24f, 0.84f) + lineToRelative(1.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.24f, -0.84f) + lineToRelative(-1.0f, 1.5f) + close() + moveTo(11.33f, 19.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.2f, -1.04f) + lineToRelative(1.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.24f, 0.84f) + lineToRelative(-1.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.04f, 0.2f) + close() + } + } + return _weatherDrizzle!! + } + +private var _weatherDrizzle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherDuststorm.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherDuststorm.kt new file mode 100644 index 00000000..50b539f3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherDuststorm.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WeatherDuststorm: ImageVector + get() { + if (_weatherDuststorm != null) { + return _weatherDuststorm!! + } + _weatherDuststorm = fluentIcon(name = "Filled.WeatherDuststorm") { + fluentPath { + moveTo(5.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + close() + moveTo(7.0f, 4.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(11.55f, 3.5f) + arcToRelative(4.11f, 4.11f, 0.0f, false, false, -4.03f, 3.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.96f, 0.4f) + curveToRelative(0.2f, -0.99f, 1.06f, -1.7f, 2.07f, -1.7f) + horizontalLineToRelative(0.2f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, 4.5f) + lineTo(3.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(8.75f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, 0.0f, -8.5f) + horizontalLineToRelative(-0.2f) + close() + moveTo(18.82f, 9.5f) + arcToRelative(3.2f, 3.2f, 0.0f, false, false, -3.02f, 2.18f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.9f, 0.64f) + arcToRelative(1.18f, 1.18f, 0.0f, false, true, 2.3f, 0.36f) + verticalLineToRelative(0.07f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + lineTo(3.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(11.75f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(0.07f) + arcToRelative(1.18f, 1.18f, 0.0f, false, true, -2.3f, 0.36f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.9f, 0.64f) + arcToRelative(3.18f, 3.18f, 0.0f, false, false, 6.2f, -1.0f) + verticalLineToRelative(-0.07f) + curveToRelative(0.0f, -0.44f, -0.09f, -0.87f, -0.25f, -1.25f) + horizontalLineToRelative(1.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-0.07f) + arcToRelative(3.18f, 3.18f, 0.0f, false, false, -3.18f, -3.18f) + close() + moveTo(7.5f, 20.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(7.5f, 22.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) + close() + moveTo(20.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + close() + moveTo(22.0f, 5.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + } + } + return _weatherDuststorm!! + } + +private var _weatherDuststorm: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherFog.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherFog.kt new file mode 100644 index 00000000..77eecec1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherFog.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WeatherFog: ImageVector + get() { + if (_weatherFog != null) { + return _weatherFog!! + } + _weatherFog = fluentIcon(name = "Filled.WeatherFog") { + fluentPath { + moveTo(7.74f, 19.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-8.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(8.6f) + horizontalLineToRelative(-8.5f) + close() + moveTo(4.75f, 16.52f) + horizontalLineToRelative(14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(4.75f, 18.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(12.0f, 3.0f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.64f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) + lineTo(6.69f, 15.0f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) + horizontalLineToRelative(0.08f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 12.0f, 3.0f) + close() + } + } + return _weatherFog!! + } + +private var _weatherFog: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherHailDay.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherHailDay.kt new file mode 100644 index 00000000..2b30f583 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherHailDay.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WeatherHailDay: ImageVector + get() { + if (_weatherHailDay != null) { + return _weatherHailDay!! + } + _weatherHailDay = fluentIcon(name = "Filled.WeatherHailDay") { + fluentPath { + moveTo(13.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(9.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(16.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(13.0f, 6.0f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.64f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) + lineTo(7.69f, 18.0f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) + horizontalLineToRelative(0.08f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 6.0f) + close() + moveTo(4.37f, 10.16f) + curveToRelative(0.14f, 0.36f, 0.0f, 0.75f, -0.32f, 0.94f) + lineToRelative(-0.09f, 0.04f) + lineToRelative(-0.92f, 0.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.67f, -1.34f) + lineToRelative(0.1f, -0.05f) + lineToRelative(0.92f, -0.38f) + curveToRelative(0.38f, -0.16f, 0.82f, 0.02f, 0.98f, 0.4f) + close() + moveTo(10.85f, 5.33f) + lineTo(10.68f, 5.39f) + curveToRelative(-1.78f, 0.63f, -3.06f, 2.0f, -3.61f, 3.82f) + lineTo(7.0f, 9.46f) + lineToRelative(-0.06f, 0.24f) + lineToRelative(-0.2f, 0.04f) + curveToRelative(-0.62f, 0.13f, -1.18f, 0.37f, -1.68f, 0.71f) + arcToRelative(3.94f, 3.94f, 0.0f, false, true, 5.8f, -5.12f) + close() + moveTo(2.95f, 5.36f) + lineTo(3.05f, 5.4f) + lineTo(3.97f, 5.78f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 3.5f, 7.2f) + lineToRelative(-0.1f, -0.03f) + lineToRelative(-0.93f, -0.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.47f, -1.42f) + close() + moveTo(6.75f, 2.38f) + lineTo(6.8f, 2.47f) + lineTo(7.18f, 3.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, 0.67f) + lineToRelative(-0.04f, -0.1f) + lineToRelative(-0.38f, -0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.66f) + close() + moveTo(11.11f, 2.06f) + curveToRelative(0.35f, 0.14f, 0.53f, 0.52f, 0.44f, 0.87f) + lineToRelative(-0.03f, 0.1f) + lineToRelative(-0.39f, 0.93f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.42f, -0.47f) + lineToRelative(0.04f, -0.1f) + lineToRelative(0.38f, -0.93f) + curveToRelative(0.16f, -0.38f, 0.6f, -0.56f, 0.98f, -0.4f) + close() + } + } + return _weatherHailDay!! + } + +private var _weatherHailDay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherHailNight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherHailNight.kt new file mode 100644 index 00000000..4455beba --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherHailNight.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WeatherHailNight: ImageVector + get() { + if (_weatherHailNight != null) { + return _weatherHailNight!! + } + _weatherHailNight = fluentIcon(name = "Filled.WeatherHailNight") { + fluentPath { + moveTo(13.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(9.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(16.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(13.0f, 6.0f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.64f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) + lineTo(7.69f, 18.0f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) + horizontalLineToRelative(0.08f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 6.0f) + close() + moveTo(6.6f, 2.0f) + arcToRelative(5.06f, 5.06f, 0.0f, false, true, 4.47f, 3.27f) + curveToRelative(-1.98f, 0.56f, -3.4f, 2.0f, -4.0f, 3.95f) + lineTo(7.0f, 9.46f) + lineToRelative(-0.06f, 0.24f) + lineToRelative(-0.2f, 0.04f) + curveToRelative(-1.15f, 0.24f, -2.14f, 0.9f, -2.81f, 1.81f) + lineToRelative(-0.16f, -0.08f) + arcToRelative(5.06f, 5.06f, 0.0f, false, true, -1.64f, -1.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.37f, -1.13f) + curveToRelative(1.64f, -0.59f, 2.53f, -1.25f, 3.03f, -2.21f) + curveToRelative(0.55f, -1.06f, 0.66f, -2.18f, 0.29f, -3.68f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 6.59f, 2.0f) + close() + } + } + return _weatherHailNight!! + } + +private var _weatherHailNight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherHaze.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherHaze.kt new file mode 100644 index 00000000..dea4724d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherHaze.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WeatherHaze: ImageVector + get() { + if (_weatherHaze != null) { + return _weatherHaze!! + } + _weatherHaze = fluentIcon(name = "Filled.WeatherHaze") { + fluentPath { + moveTo(6.84f, 13.98f) + arcToRelative(5.65f, 5.65f, 0.0f, false, true, 1.72f, 0.03f) + curveToRelative(1.29f, 0.2f, 2.52f, 0.83f, 3.82f, 1.6f) + curveToRelative(2.36f, 1.37f, 4.94f, 1.1f, 6.43f, 0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.88f, 1.22f) + curveToRelative(-2.01f, 1.44f, -5.24f, 1.69f, -8.07f, 0.04f) + arcToRelative(10.05f, 10.05f, 0.0f, false, false, -3.3f, -1.41f) + arcToRelative(4.8f, 4.8f, 0.0f, false, false, -3.21f, 0.67f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.72f, -1.32f) + arcToRelative(7.2f, 7.2f, 0.0f, false, true, 2.45f, -0.86f) + close() + moveTo(9.64f, 11.28f) + arcToRelative(5.66f, 5.66f, 0.0f, false, false, -3.08f, -0.25f) + curveToRelative(-0.7f, 0.13f, -1.41f, 0.4f, -2.17f, 0.81f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.72f, 1.32f) + arcToRelative(4.8f, 4.8f, 0.0f, false, true, 4.05f, -0.46f) + arcTo(13.6f, 13.6f, 0.0f, false, true, 11.8f, 14.0f) + curveToRelative(2.78f, 1.53f, 5.92f, 1.26f, 7.89f, -0.14f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.88f, -1.22f) + curveToRelative(-0.4f, 0.3f, -0.9f, 0.52f, -1.44f, 0.68f) + curveToRelative(-1.08f, 0.3f, -2.38f, 0.31f, -3.68f, -0.12f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, -1.31f, -0.6f) + arcToRelative(14.99f, 14.99f, 0.0f, false, false, -2.74f, -1.32f) + close() + moveTo(17.52f, 12.0f) + verticalLineToRelative(0.2f) + curveToRelative(-1.2f, 0.5f, -2.96f, 0.52f, -4.64f, -0.46f) + arcToRelative(12.39f, 12.39f, 0.0f, false, false, -4.17f, -1.72f) + arcToRelative(6.67f, 6.67f, 0.0f, false, false, -1.85f, -0.05f) + arcTo(5.53f, 5.53f, 0.0f, false, true, 17.52f, 12.0f) + close() + moveTo(12.12f, 22.0f) + arcToRelative(0.76f, 0.76f, 0.0f, false, true, -0.25f, 0.0f) + horizontalLineToRelative(0.25f) + close() + moveTo(5.97f, 4.94f) + lineToRelative(-0.08f, -0.07f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 4.91f, 6.0f) + lineToRelative(1.06f, 1.06f) + lineToRelative(0.09f, 0.07f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 7.03f, 6.0f) + lineTo(5.97f, 4.94f) + close() + moveTo(19.15f, 5.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.13f, -0.98f) + lineTo(16.96f, 6.0f) + lineToRelative(-0.08f, 0.09f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.14f, 0.97f) + lineTo(19.08f, 6.0f) + lineToRelative(0.07f, -0.08f) + close() + moveTo(12.75f, 2.64f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + verticalLineToRelative(1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + verticalLineToRelative(-1.6f) + close() + moveTo(5.1f, 19.16f) + arcToRelative(4.8f, 4.8f, 0.0f, false, true, 3.2f, -0.67f) + curveToRelative(1.0f, 0.16f, 2.02f, 0.66f, 3.31f, 1.4f) + curveToRelative(2.83f, 1.66f, 6.06f, 1.4f, 8.07f, -0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.88f, -1.22f) + curveToRelative(-1.49f, 1.06f, -4.07f, 1.34f, -6.43f, -0.04f) + arcTo(11.44f, 11.44f, 0.0f, false, false, 8.56f, 17.0f) + arcToRelative(6.29f, 6.29f, 0.0f, false, false, -4.17f, 0.84f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.72f, 1.32f) + close() + } + } + return _weatherHaze!! + } + +private var _weatherHaze: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherMoon.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherMoon.kt new file mode 100644 index 00000000..f1a7c421 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherMoon.kt @@ -0,0 +1,30 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WeatherMoon: ImageVector + get() { + if (_weatherMoon != null) { + return _weatherMoon!! + } + _weatherMoon = fluentIcon(name = "Filled.WeatherMoon") { + fluentPath { + moveTo(20.03f, 17.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -16.9f, 0.68f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.36f, -1.13f) + curveToRelative(3.77f, -1.35f, 5.79f, -2.91f, 6.96f, -5.15f) + curveToRelative(1.23f, -2.35f, 1.55f, -4.93f, 0.69f, -8.46f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 11.9f, 2.0f) + arcTo(10.0f, 10.0f, 0.0f, false, true, 20.03f, 17.0f) + close() + } + } + return _weatherMoon!! + } + +private var _weatherMoon: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherMoonOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherMoonOff.kt new file mode 100644 index 00000000..13f1c533 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherMoonOff.kt @@ -0,0 +1,39 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WeatherMoonOff: ImageVector + get() { + if (_weatherMoonOff != null) { + return _weatherMoonOff!! + } + _weatherMoonOff = fluentIcon(name = "Filled.WeatherMoonOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(8.2f, 8.2f) + curveToRelative(-1.18f, 2.19f, -3.2f, 3.73f, -6.93f, 5.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.36f, 1.13f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 15.1f, 1.6f) + lineToRelative(2.49f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(16.37f, 3.34f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 3.71f, 13.56f) + lineTo(11.5f, 8.31f) + curveToRelative(0.25f, -1.56f, 0.15f, -3.3f, -0.35f, -5.37f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 11.9f, 2.0f) + curveToRelative(1.55f, 0.09f, 3.08f, 0.53f, 4.46f, 1.33f) + close() + } + } + return _weatherMoonOff!! + } + +private var _weatherMoonOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherPartlyCloudyDay.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherPartlyCloudyDay.kt new file mode 100644 index 00000000..bf98cc08 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherPartlyCloudyDay.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WeatherPartlyCloudyDay: ImageVector + get() { + if (_weatherPartlyCloudyDay != null) { + return _weatherPartlyCloudyDay!! + } + _weatherPartlyCloudyDay = fluentIcon(name = "Filled.WeatherPartlyCloudyDay") { + fluentPath { + moveTo(13.0f, 8.0f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.64f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) + lineTo(7.69f, 20.0f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) + horizontalLineToRelative(0.08f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 8.0f) + close() + moveTo(4.37f, 12.16f) + curveToRelative(0.14f, 0.35f, 0.0f, 0.75f, -0.32f, 0.94f) + lineToRelative(-0.09f, 0.04f) + lineToRelative(-0.92f, 0.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.67f, -1.34f) + lineToRelative(0.1f, -0.05f) + lineToRelative(0.92f, -0.38f) + curveToRelative(0.38f, -0.16f, 0.82f, 0.02f, 0.98f, 0.4f) + close() + moveTo(10.85f, 7.33f) + lineTo(10.68f, 7.39f) + curveToRelative(-1.78f, 0.63f, -3.06f, 2.0f, -3.61f, 3.82f) + lineToRelative(-0.07f, 0.25f) + lineToRelative(-0.06f, 0.24f) + lineToRelative(-0.2f, 0.04f) + curveToRelative(-0.61f, 0.12f, -1.18f, 0.37f, -1.68f, 0.71f) + arcToRelative(3.94f, 3.94f, 0.0f, false, true, 5.8f, -5.12f) + close() + moveTo(2.95f, 7.36f) + lineTo(3.05f, 7.4f) + lineTo(3.97f, 7.78f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 3.5f, 9.2f) + lineToRelative(-0.1f, -0.04f) + lineToRelative(-0.93f, -0.38f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.47f, -1.42f) + close() + moveTo(6.75f, 4.37f) + lineTo(6.8f, 4.47f) + lineTo(7.19f, 5.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.67f) + lineToRelative(-0.04f, -0.1f) + lineToRelative(-0.38f, -0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.67f) + close() + moveTo(11.11f, 4.06f) + curveToRelative(0.35f, 0.14f, 0.53f, 0.52f, 0.44f, 0.87f) + lineToRelative(-0.03f, 0.1f) + lineToRelative(-0.39f, 0.93f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.42f, -0.47f) + lineToRelative(0.04f, -0.1f) + lineToRelative(0.38f, -0.93f) + curveToRelative(0.16f, -0.38f, 0.6f, -0.56f, 0.98f, -0.4f) + close() + } + } + return _weatherPartlyCloudyDay!! + } + +private var _weatherPartlyCloudyDay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherPartlyCloudyNight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherPartlyCloudyNight.kt new file mode 100644 index 00000000..b30c4295 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherPartlyCloudyNight.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WeatherPartlyCloudyNight: ImageVector + get() { + if (_weatherPartlyCloudyNight != null) { + return _weatherPartlyCloudyNight!! + } + _weatherPartlyCloudyNight = fluentIcon(name = "Filled.WeatherPartlyCloudyNight") { + fluentPath { + moveTo(13.0f, 8.01f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.37f) + lineTo(7.69f, 20.01f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.37f) + horizontalLineToRelative(0.08f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 8.01f) + close() + moveTo(6.59f, 4.01f) + arcToRelative(5.06f, 5.06f, 0.0f, false, true, 4.47f, 3.26f) + curveToRelative(-1.98f, 0.57f, -3.4f, 2.0f, -4.0f, 3.95f) + lineToRelative(-0.06f, 0.25f) + lineToRelative(-0.06f, 0.23f) + lineToRelative(-0.2f, 0.04f) + curveToRelative(-1.15f, 0.24f, -2.14f, 0.9f, -2.81f, 1.82f) + lineToRelative(-0.16f, -0.09f) + arcToRelative(5.06f, 5.06f, 0.0f, false, true, -1.64f, -1.51f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.37f, -1.13f) + curveToRelative(1.64f, -0.6f, 2.53f, -1.25f, 3.03f, -2.22f) + curveToRelative(0.55f, -1.05f, 0.66f, -2.17f, 0.29f, -3.68f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.77f, -0.92f) + close() + } + } + return _weatherPartlyCloudyNight!! + } + +private var _weatherPartlyCloudyNight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherRain.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherRain.kt new file mode 100644 index 00000000..7d3e9401 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherRain.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WeatherRain: ImageVector + get() { + if (_weatherRain != null) { + return _weatherRain!! + } + _weatherRain = fluentIcon(name = "Filled.WeatherRain") { + fluentPath { + moveTo(12.0f, 4.0f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.37f) + horizontalLineToRelative(-0.59f) + lineToRelative(-1.58f, 2.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, -0.66f) + lineToRelative(0.04f, -0.09f) + lineTo(15.0f, 16.0f) + horizontalLineToRelative(-2.13f) + lineToRelative(-1.59f, 2.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, -0.66f) + lineToRelative(0.04f, -0.09f) + lineTo(11.12f, 16.0f) + horizontalLineTo(9.0f) + lineTo(7.4f, 18.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, -0.66f) + lineToRelative(0.05f, -0.09f) + lineTo(7.26f, 16.0f) + horizontalLineToRelative(-0.57f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.37f) + horizontalLineToRelative(0.08f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 12.0f, 4.0f) + close() + } + } + return _weatherRain!! + } + +private var _weatherRain: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherRainShowersDay.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherRainShowersDay.kt new file mode 100644 index 00000000..75a424f1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherRainShowersDay.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WeatherRainShowersDay: ImageVector + get() { + if (_weatherRainShowersDay != null) { + return _weatherRainShowersDay!! + } + _weatherRainShowersDay = fluentIcon(name = "Filled.WeatherRainShowersDay") { + fluentPath { + moveTo(13.0f, 6.01f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.37f) + horizontalLineToRelative(-0.52f) + lineToRelative(-1.64f, 2.62f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, -0.66f) + lineToRelative(0.04f, -0.09f) + lineTo(16.06f, 18.0f) + horizontalLineToRelative(-2.13f) + lineToRelative(-1.65f, 2.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, -0.66f) + lineToRelative(0.04f, -0.09f) + lineTo(12.2f, 18.0f) + horizontalLineToRelative(-2.13f) + lineTo(8.4f, 20.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, -0.66f) + lineToRelative(0.04f, -0.09f) + lineTo(8.33f, 18.0f) + horizontalLineToRelative(-0.64f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) + horizontalLineToRelative(0.08f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 6.01f) + close() + moveTo(4.37f, 10.17f) + curveToRelative(0.14f, 0.35f, 0.0f, 0.74f, -0.32f, 0.93f) + lineToRelative(-0.09f, 0.05f) + lineToRelative(-0.92f, 0.38f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.67f, -1.34f) + lineToRelative(0.1f, -0.05f) + lineToRelative(0.92f, -0.38f) + curveToRelative(0.38f, -0.16f, 0.82f, 0.02f, 0.98f, 0.4f) + close() + moveTo(10.85f, 5.33f) + lineTo(10.68f, 5.39f) + curveToRelative(-1.78f, 0.63f, -3.06f, 2.0f, -3.61f, 3.82f) + lineTo(7.0f, 9.46f) + lineToRelative(-0.06f, 0.24f) + lineToRelative(-0.2f, 0.04f) + curveToRelative(-0.61f, 0.13f, -1.18f, 0.37f, -1.68f, 0.71f) + arcToRelative(3.94f, 3.94f, 0.0f, false, true, 5.8f, -5.12f) + close() + moveTo(2.95f, 5.36f) + lineTo(3.05f, 5.4f) + lineTo(3.97f, 5.78f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 3.5f, 7.2f) + lineToRelative(-0.1f, -0.03f) + lineToRelative(-0.93f, -0.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.47f, -1.42f) + close() + moveTo(6.75f, 2.38f) + lineTo(6.8f, 2.47f) + lineTo(7.19f, 3.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.67f) + lineToRelative(-0.04f, -0.1f) + lineToRelative(-0.38f, -0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.66f) + close() + moveTo(11.11f, 2.06f) + curveToRelative(0.35f, 0.14f, 0.53f, 0.52f, 0.44f, 0.87f) + lineToRelative(-0.03f, 0.1f) + lineToRelative(-0.39f, 0.93f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.42f, -0.46f) + lineToRelative(0.04f, -0.11f) + lineToRelative(0.38f, -0.93f) + curveToRelative(0.16f, -0.38f, 0.6f, -0.56f, 0.98f, -0.4f) + close() + } + } + return _weatherRainShowersDay!! + } + +private var _weatherRainShowersDay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherRainShowersNight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherRainShowersNight.kt new file mode 100644 index 00000000..f8ff6c14 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherRainShowersNight.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WeatherRainShowersNight: ImageVector + get() { + if (_weatherRainShowersNight != null) { + return _weatherRainShowersNight!! + } + _weatherRainShowersNight = fluentIcon(name = "Filled.WeatherRainShowersNight") { + fluentPath { + moveTo(13.0f, 6.01f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.37f) + lineToRelative(-0.63f, -0.01f) + lineToRelative(-1.55f, 2.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, -0.66f) + lineToRelative(0.04f, -0.09f) + lineTo(15.94f, 18.0f) + horizontalLineToRelative(-2.13f) + lineToRelative(-1.54f, 2.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, -0.66f) + lineToRelative(0.05f, -0.09f) + lineToRelative(1.1f, -1.88f) + lineTo(9.95f, 18.0f) + lineTo(8.4f, 20.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, -0.66f) + lineToRelative(0.05f, -0.09f) + lineTo(8.2f, 18.0f) + horizontalLineToRelative(-0.6f) + arcTo(3.6f, 3.6f, 0.0f, false, true, 4.0f, 14.32f) + arcToRelative(3.69f, 3.69f, 0.0f, false, true, 3.7f, -3.68f) + horizontalLineToRelative(0.07f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 6.01f) + close() + moveTo(6.59f, 2.01f) + arcToRelative(5.06f, 5.06f, 0.0f, false, true, 4.47f, 3.26f) + curveToRelative(-1.98f, 0.56f, -3.4f, 2.0f, -4.0f, 3.95f) + lineTo(7.0f, 9.46f) + lineToRelative(-0.06f, 0.24f) + lineToRelative(-0.2f, 0.04f) + curveToRelative(-1.15f, 0.24f, -2.14f, 0.9f, -2.81f, 1.81f) + lineToRelative(-0.16f, -0.08f) + arcToRelative(5.06f, 5.06f, 0.0f, false, true, -1.64f, -1.51f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.37f, -1.14f) + curveToRelative(1.64f, -0.59f, 2.52f, -1.25f, 3.03f, -2.21f) + curveToRelative(0.55f, -1.06f, 0.66f, -2.18f, 0.29f, -3.68f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 6.59f, 2.0f) + close() + } + } + return _weatherRainShowersNight!! + } + +private var _weatherRainShowersNight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherRainSnow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherRainSnow.kt new file mode 100644 index 00000000..efc70336 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherRainSnow.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WeatherRainSnow: ImageVector + get() { + if (_weatherRainSnow != null) { + return _weatherRainSnow!! + } + _weatherRainSnow = fluentIcon(name = "Filled.WeatherRainSnow") { + fluentPath { + moveTo(14.53f, 17.55f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(12.0f, 4.0f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.37f) + lineTo(16.0f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.43f, 0.0f) + lineTo(8.99f, 16.0f) + lineTo(7.4f, 18.62f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, -0.65f) + lineToRelative(0.05f, -0.1f) + lineTo(7.26f, 16.0f) + horizontalLineToRelative(-0.57f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.37f) + horizontalLineToRelative(0.08f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 12.0f, 4.0f) + close() + moveTo(11.58f, 16.7f) + curveToRelative(0.33f, 0.2f, 0.46f, 0.6f, 0.32f, 0.94f) + lineToRelative(-0.05f, 0.09f) + lineToRelative(-0.55f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, -0.66f) + lineToRelative(0.05f, -0.1f) + lineToRelative(0.55f, -0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, -0.27f) + close() + moveTo(17.03f, 16.8f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + } + } + return _weatherRainSnow!! + } + +private var _weatherRainSnow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherSnow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherSnow.kt new file mode 100644 index 00000000..01787733 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherSnow.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WeatherSnow: ImageVector + get() { + if (_weatherSnow != null) { + return _weatherSnow!! + } + _weatherSnow = fluentIcon(name = "Filled.WeatherSnow") { + fluentPath { + moveTo(9.75f, 18.15f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(14.25f, 18.15f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(7.5f, 17.15f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(12.0f, 17.15f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(16.5f, 17.15f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(12.0f, 4.0f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.37f) + lineTo(6.69f, 16.0f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.37f) + horizontalLineToRelative(0.08f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 12.0f, 4.0f) + close() + } + } + return _weatherSnow!! + } + +private var _weatherSnow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherSnowShowerDay.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherSnowShowerDay.kt new file mode 100644 index 00000000..ce1aeea5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherSnowShowerDay.kt @@ -0,0 +1,94 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WeatherSnowShowerDay: ImageVector + get() { + if (_weatherSnowShowerDay != null) { + return _weatherSnowShowerDay!! + } + _weatherSnowShowerDay = fluentIcon(name = "Filled.WeatherSnowShowerDay") { + fluentPath { + moveTo(10.75f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(15.25f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(8.5f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(13.0f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(17.5f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(13.0f, 6.01f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.37f) + lineTo(7.69f, 18.01f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.37f) + horizontalLineToRelative(0.08f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 6.01f) + close() + moveTo(4.37f, 10.17f) + curveToRelative(0.14f, 0.35f, 0.0f, 0.74f, -0.32f, 0.93f) + lineToRelative(-0.09f, 0.05f) + lineToRelative(-0.92f, 0.38f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.67f, -1.34f) + lineToRelative(0.1f, -0.05f) + lineToRelative(0.92f, -0.38f) + curveToRelative(0.38f, -0.16f, 0.82f, 0.02f, 0.98f, 0.4f) + close() + moveTo(10.85f, 5.33f) + lineTo(10.68f, 5.39f) + curveToRelative(-1.78f, 0.63f, -3.06f, 2.0f, -3.61f, 3.82f) + lineTo(7.0f, 9.46f) + lineToRelative(-0.06f, 0.24f) + lineToRelative(-0.2f, 0.04f) + curveToRelative(-0.61f, 0.13f, -1.18f, 0.37f, -1.68f, 0.71f) + arcToRelative(3.94f, 3.94f, 0.0f, false, true, 5.8f, -5.12f) + close() + moveTo(2.95f, 5.36f) + lineTo(3.05f, 5.4f) + lineTo(3.97f, 5.78f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 3.5f, 7.2f) + lineToRelative(-0.1f, -0.03f) + lineToRelative(-0.93f, -0.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.47f, -1.42f) + close() + moveTo(6.75f, 2.38f) + lineTo(6.8f, 2.47f) + lineTo(7.19f, 3.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.67f) + lineToRelative(-0.04f, -0.1f) + lineToRelative(-0.38f, -0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.66f) + close() + moveTo(11.11f, 2.06f) + curveToRelative(0.35f, 0.14f, 0.53f, 0.52f, 0.44f, 0.87f) + lineToRelative(-0.03f, 0.1f) + lineToRelative(-0.39f, 0.93f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.42f, -0.46f) + lineToRelative(0.04f, -0.11f) + lineToRelative(0.38f, -0.93f) + curveToRelative(0.16f, -0.38f, 0.6f, -0.56f, 0.98f, -0.4f) + close() + } + } + return _weatherSnowShowerDay!! + } + +private var _weatherSnowShowerDay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherSnowShowerNight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherSnowShowerNight.kt new file mode 100644 index 00000000..b5a98641 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherSnowShowerNight.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WeatherSnowShowerNight: ImageVector + get() { + if (_weatherSnowShowerNight != null) { + return _weatherSnowShowerNight!! + } + _weatherSnowShowerNight = fluentIcon(name = "Filled.WeatherSnowShowerNight") { + fluentPath { + moveTo(10.75f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(15.25f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(8.5f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(13.0f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(17.5f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(13.0f, 6.02f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) + lineTo(7.69f, 18.01f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) + horizontalLineToRelative(0.08f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 6.02f) + close() + moveTo(6.6f, 2.0f) + arcToRelative(5.06f, 5.06f, 0.0f, false, true, 4.47f, 3.27f) + curveToRelative(-1.98f, 0.56f, -3.4f, 2.0f, -4.0f, 3.95f) + lineTo(7.0f, 9.47f) + lineToRelative(-0.06f, 0.24f) + lineToRelative(-0.2f, 0.04f) + curveToRelative(-1.15f, 0.24f, -2.14f, 0.9f, -2.81f, 1.81f) + lineToRelative(-0.16f, -0.08f) + arcToRelative(5.06f, 5.06f, 0.0f, false, true, -1.64f, -1.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.37f, -1.13f) + curveToRelative(1.64f, -0.59f, 2.52f, -1.25f, 3.03f, -2.22f) + curveToRelative(0.55f, -1.05f, 0.66f, -2.17f, 0.29f, -3.67f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 6.59f, 2.0f) + close() + } + } + return _weatherSnowShowerNight!! + } + +private var _weatherSnowShowerNight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherSnowflake.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherSnowflake.kt new file mode 100644 index 00000000..95ff534b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherSnowflake.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WeatherSnowflake: ImageVector + get() { + if (_weatherSnowflake != null) { + return _weatherSnowflake!! + } + _weatherSnowflake = fluentIcon(name = "Filled.WeatherSnowflake") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.55f) + lineToRelative(1.7f, -1.7f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.42f, 1.4f) + lineTo(13.0f, 8.39f) + verticalLineTo(11.0f) + horizontalLineToRelative(2.62f) + lineToRelative(3.12f, -3.12f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.42f, 1.41f) + lineTo(18.45f, 11.0f) + horizontalLineTo(21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-2.55f) + lineToRelative(1.7f, 1.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.4f, 1.42f) + lineTo(15.61f, 13.0f) + horizontalLineTo(13.0f) + verticalLineToRelative(2.62f) + lineToRelative(3.12f, 3.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.41f, 1.42f) + lineTo(13.0f, 18.45f) + verticalLineTo(21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-2.55f) + lineToRelative(-1.7f, 1.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, -1.4f) + lineTo(11.0f, 15.61f) + verticalLineTo(13.0f) + horizontalLineTo(8.38f) + lineToRelative(-3.12f, 3.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, -1.41f) + lineTo(5.55f, 13.0f) + horizontalLineTo(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(2.55f) + lineToRelative(-1.7f, -1.7f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.4f, -1.42f) + lineTo(8.39f, 11.0f) + horizontalLineTo(11.0f) + verticalLineTo(8.38f) + lineTo(7.88f, 5.26f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, -1.42f) + lineTo(11.0f, 5.55f) + verticalLineTo(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + } + } + return _weatherSnowflake!! + } + +private var _weatherSnowflake: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherSqualls.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherSqualls.kt new file mode 100644 index 00000000..0bead5fe --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherSqualls.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WeatherSqualls: ImageVector + get() { + if (_weatherSqualls != null) { + return _weatherSqualls!! + } + _weatherSqualls = fluentIcon(name = "Filled.WeatherSqualls") { + fluentPath { + moveTo(7.75f, 6.19f) + arcToRelative(4.3f, 4.3f, 0.0f, false, true, 3.98f, -2.69f) + arcToRelative(4.25f, 4.25f, 0.0f, true, true, 0.02f, 8.5f) + lineTo(3.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(8.75f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, -0.02f, -4.5f) + arcTo(2.3f, 2.3f, 0.0f, false, false, 9.6f, 6.93f) + lineToRelative(-0.17f, 0.44f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.86f, -0.74f) + lineToRelative(0.18f, -0.44f) + close() + moveTo(15.8f, 11.69f) + arcToRelative(3.18f, 3.18f, 0.0f, false, true, 6.2f, 1.0f) + verticalLineToRelative(0.06f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-1.0f) + curveToRelative(0.16f, 0.38f, 0.25f, 0.8f, 0.25f, 1.25f) + verticalLineToRelative(0.07f) + arcToRelative(3.18f, 3.18f, 0.0f, false, true, -6.2f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.9f, -0.64f) + arcToRelative(1.18f, 1.18f, 0.0f, false, false, 2.3f, -0.36f) + verticalLineToRelative(-0.07f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(3.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(15.75f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-0.07f) + arcToRelative(1.18f, 1.18f, 0.0f, false, false, -2.3f, -0.36f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.9f, -0.64f) + close() + } + } + return _weatherSqualls!! + } + +private var _weatherSqualls: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherSunny.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherSunny.kt new file mode 100644 index 00000000..1ba6d060 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherSunny.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WeatherSunny: ImageVector + get() { + if (_weatherSunny != null) { + return _weatherSunny!! + } + _weatherSunny = fluentIcon(name = "Filled.WeatherSunny") { + fluentPath { + moveTo(12.0f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(17.0f, 12.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, -10.0f, 0.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 10.0f, 0.0f) + close() + moveTo(21.25f, 12.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.5f) + close() + moveTo(12.0f, 19.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(4.25f, 12.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.5f) + close() + moveTo(4.22f, 4.22f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(1.5f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineToRelative(-1.5f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + moveTo(5.28f, 19.78f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(1.5f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-1.5f, 1.5f) + close() + moveTo(19.78f, 4.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineToRelative(1.5f, -1.5f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + close() + moveTo(18.72f, 19.78f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-1.5f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.5f, 1.5f) + close() + } + } + return _weatherSunny!! + } + +private var _weatherSunny: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherSunnyHigh.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherSunnyHigh.kt new file mode 100644 index 00000000..24d34805 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherSunnyHigh.kt @@ -0,0 +1,94 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WeatherSunnyHigh: ImageVector + get() { + if (_weatherSunnyHigh != null) { + return _weatherSunnyHigh!! + } + _weatherSunnyHigh = fluentIcon(name = "Filled.WeatherSunnyHigh") { + fluentPath { + moveTo(12.0f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(8.0f, 9.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, 8.0f, 0.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -8.0f, 0.0f) + close() + moveTo(12.75f, 14.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + close() + moveTo(5.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.5f) + close() + moveTo(17.0f, 8.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(6.72f, 5.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineToRelative(-0.5f, -0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(0.5f, 0.5f) + close() + moveTo(7.78f, 12.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-0.5f, 0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(0.5f, -0.5f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + close() + moveTo(17.28f, 5.78f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(0.5f, -0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-0.5f, 0.5f) + close() + moveTo(16.22f, 12.22f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(0.5f, 0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-0.5f, -0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + moveTo(3.22f, 21.84f) + curveToRelative(-0.33f, 0.25f, -0.8f, 0.2f, -1.06f, -0.12f) + curveToRelative(-0.4f, -0.51f, 0.12f, -1.06f, 0.12f, -1.06f) + horizontalLineToRelative(0.02f) + arcToRelative(3.49f, 3.49f, 0.0f, false, true, 0.18f, -0.15f) + lineToRelative(0.54f, -0.36f) + arcTo(16.78f, 16.78f, 0.0f, false, true, 12.0f, 17.5f) + arcToRelative(16.78f, 16.78f, 0.0f, false, true, 9.7f, 3.15f) + lineToRelative(0.01f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.93f, 1.18f) + lineToRelative(-0.03f, -0.03f) + arcToRelative(5.63f, 5.63f, 0.0f, false, false, -0.58f, -0.4f) + arcTo(15.28f, 15.28f, 0.0f, false, false, 12.0f, 19.0f) + arcToRelative(15.28f, 15.28f, 0.0f, false, false, -8.75f, 2.81f) + lineToRelative(-0.03f, 0.02f) + close() + } + } + return _weatherSunnyHigh!! + } + +private var _weatherSunnyHigh: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherSunnyLow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherSunnyLow.kt new file mode 100644 index 00000000..52ce4e0d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherSunnyLow.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WeatherSunnyLow: ImageVector + get() { + if (_weatherSunnyLow != null) { + return _weatherSunnyLow!! + } + _weatherSunnyLow = fluentIcon(name = "Filled.WeatherSunnyLow") { + fluentPath { + moveTo(12.75f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.5f) + close() + moveTo(19.03f, 4.97f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-1.06f, 1.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(1.06f, -1.06f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(6.59f, 13.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 10.82f, 0.0f) + horizontalLineToRelative(3.84f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(2.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.84f) + close() + moveTo(6.75f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(6.75f, 16.0f) + close() + moveTo(10.75f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.5f) + close() + moveTo(4.97f, 4.97f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(1.06f, 1.06f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(4.97f, 6.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + } + } + return _weatherSunnyLow!! + } + +private var _weatherSunnyLow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherThunderstorm.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherThunderstorm.kt new file mode 100644 index 00000000..f2cd63ef --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WeatherThunderstorm.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WeatherThunderstorm: ImageVector + get() { + if (_weatherThunderstorm != null) { + return _weatherThunderstorm!! + } + _weatherThunderstorm = fluentIcon(name = "Filled.WeatherThunderstorm") { + fluentPath { + moveTo(13.76f, 13.2f) + curveToRelative(0.3f, 0.28f, 0.33f, 0.75f, 0.06f, 1.06f) + lineTo(12.7f, 15.5f) + horizontalLineToRelative(2.28f) + curveToRelative(0.63f, 0.0f, 0.98f, 0.73f, 0.59f, 1.22f) + lineToRelative(-3.21f, 4.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.18f, -0.94f) + lineTo(13.42f, 17.0f) + horizontalLineToRelative(-2.4f) + curveToRelative(-0.65f, 0.0f, -0.99f, -0.77f, -0.56f, -1.25f) + lineToRelative(2.24f, -2.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -0.06f) + close() + moveTo(13.0f, 5.0f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.64f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) + horizontalLineToRelative(-1.75f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.58f, -2.5f) + horizontalLineToRelative(-0.13f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.9f, -1.9f) + lineToRelative(-2.23f, 2.48f) + arcTo(1.73f, 1.73f, 0.0f, false, false, 9.44f, 17.0f) + lineTo(7.7f, 17.0f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) + horizontalLineToRelative(0.08f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 5.0f) + close() + moveTo(10.0f, 2.0f) + curveToRelative(1.62f, 0.0f, 3.05f, 0.82f, 3.9f, 2.06f) + arcToRelative(7.5f, 7.5f, 0.0f, false, false, -0.9f, -0.05f) + curveToRelative(-3.0f, 0.0f, -5.17f, 1.68f, -5.94f, 4.21f) + lineTo(7.0f, 8.46f) + lineToRelative(-0.06f, 0.24f) + lineToRelative(-0.2f, 0.04f) + arcToRelative(4.68f, 4.68f, 0.0f, false, false, -3.46f, 3.04f) + arcTo(3.28f, 3.28f, 0.0f, false, true, 5.1f, 5.9f) + horizontalLineToRelative(0.25f) + arcTo(4.72f, 4.72f, 0.0f, false, true, 10.0f, 2.0f) + close() + } + } + return _weatherThunderstorm!! + } + +private var _weatherThunderstorm: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WebAsset.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WebAsset.kt new file mode 100644 index 00000000..4d5c5dc4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WebAsset.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WebAsset: ImageVector + get() { + if (_webAsset != null) { + return _webAsset!! + } + _webAsset = fluentIcon(name = "Filled.WebAsset") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(6.75f, 6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(6.75f, 6.75f) + close() + } + } + return _webAsset!! + } + +private var _webAsset: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Whiteboard.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Whiteboard.kt new file mode 100644 index 00000000..c89bb869 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Whiteboard.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Whiteboard: ImageVector + get() { + if (_whiteboard != null) { + return _whiteboard!! + } + _whiteboard = fluentIcon(name = "Filled.Whiteboard") { + fluentPath { + moveToRelative(15.99f, 4.0f) + lineToRelative(-3.07f, 3.06f) + curveToRelative(-0.34f, 0.34f, -0.6f, 0.74f, -0.78f, 1.18f) + lineToRelative(-0.08f, 0.23f) + lineToRelative(-0.74f, 2.3f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.64f, 2.88f) + lineToRelative(0.15f, -0.04f) + lineToRelative(2.33f, -0.7f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 1.29f, -0.7f) + lineToRelative(0.18f, -0.18f) + lineTo(22.0f, 7.95f) + verticalLineToRelative(8.8f) + curveToRelative(0.0f, 1.8f, -1.45f, 3.25f, -3.25f, 3.25f) + lineTo(5.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + verticalLineToRelative(-4.2f) + lineToRelative(0.08f, -0.03f) + lineToRelative(0.07f, -0.04f) + lineToRelative(3.76f, -2.36f) + lineToRelative(0.1f, -0.05f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 11.0f) + lineToRelative(-0.04f, 0.1f) + lineToRelative(-1.2f, 2.3f) + lineToRelative(-0.08f, 0.14f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 3.0f, 2.95f) + lineToRelative(0.17f, -0.09f) + lineToRelative(1.76f, -1.0f) + lineToRelative(0.09f, -0.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.74f, -1.3f) + lineToRelative(-0.1f, 0.05f) + lineToRelative(-1.75f, 1.0f) + lineToRelative(-0.1f, 0.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, -0.96f) + lineToRelative(0.04f, -0.09f) + lineToRelative(1.2f, -2.28f) + lineToRelative(0.09f, -0.17f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.12f, -2.87f) + lineToRelative(-0.15f, 0.08f) + lineTo(2.0f, 10.81f) + lineTo(2.0f, 7.24f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(5.25f, 4.0f) + horizontalLineToRelative(10.74f) + close() + moveTo(21.18f, 3.54f) + lineTo(21.31f, 3.67f) + lineTo(21.43f, 3.8f) + curveToRelative(0.76f, 0.89f, 0.72f, 2.23f, -0.13f, 3.07f) + lineToRelative(-4.28f, 4.28f) + curveToRelative(-0.26f, 0.26f, -0.58f, 0.45f, -0.94f, 0.56f) + lineToRelative(-2.33f, 0.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.24f, -1.27f) + lineToRelative(0.74f, -2.29f) + curveToRelative(0.11f, -0.34f, 0.3f, -0.65f, 0.56f, -0.9f) + lineToRelative(4.29f, -4.29f) + arcToRelative(2.27f, 2.27f, 0.0f, false, true, 3.08f, -0.12f) + close() + } + } + return _whiteboard!! + } + +private var _whiteboard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Wifi1.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Wifi1.kt new file mode 100644 index 00000000..2c7596af --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Wifi1.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Wifi1: ImageVector + get() { + if (_wifi1 != null) { + return _wifi1!! + } + _wifi1 = fluentIcon(name = "Filled.Wifi1") { + fluentPath { + moveTo(17.78f, 10.7f) + curveToRelative(0.6f, 0.6f, 1.12f, 1.33f, 1.5f, 2.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.77f, 0.9f) + arcToRelative(6.13f, 6.13f, 0.0f, false, false, -10.94f, -0.02f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.78f, -0.9f) + arcToRelative(8.13f, 8.13f, 0.0f, false, true, 13.0f, -2.07f) + close() + moveTo(15.74f, 13.7f) + curveToRelative(0.46f, 0.46f, 0.83f, 1.02f, 1.1f, 1.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.84f, 0.8f) + arcToRelative(3.23f, 3.23f, 0.0f, false, false, -5.93f, -0.01f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.83f, -0.8f) + arcToRelative(5.23f, 5.23f, 0.0f, false, true, 8.49f, -1.61f) + close() + moveTo(20.42f, 8.3f) + curveToRelative(0.5f, 0.5f, 0.99f, 1.09f, 1.4f, 1.69f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.64f, 1.14f) + arcToRelative(9.92f, 9.92f, 0.0f, false, false, -16.36f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.64f, -1.15f) + arcTo(11.92f, 11.92f, 0.0f, false, true, 20.42f, 8.3f) + close() + moveTo(13.06f, 16.44f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -2.12f, 2.12f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.12f, -2.12f) + close() + } + } + return _wifi1!! + } + +private var _wifi1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Wifi2.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Wifi2.kt new file mode 100644 index 00000000..03a7dc48 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Wifi2.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Wifi2: ImageVector + get() { + if (_wifi2 != null) { + return _wifi2!! + } + _wifi2 = fluentIcon(name = "Filled.Wifi2") { + fluentPath { + moveTo(10.96f, 16.44f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 2.12f, 2.12f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.12f, -2.12f) + close() + moveTo(8.36f, 13.7f) + arcToRelative(5.23f, 5.23f, 0.0f, false, true, 8.5f, 1.62f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.83f, 0.8f) + arcToRelative(3.23f, 3.23f, 0.0f, false, false, -5.93f, -0.01f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.83f, -0.8f) + curveToRelative(0.26f, -0.6f, 0.63f, -1.15f, 1.09f, -1.61f) + close() + moveTo(6.31f, 10.7f) + arcToRelative(8.13f, 8.13f, 0.0f, false, true, 13.0f, 2.1f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.78f, 0.9f) + arcToRelative(6.13f, 6.13f, 0.0f, false, false, -10.94f, -0.02f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.78f, -0.9f) + curveToRelative(0.38f, -0.76f, 0.88f, -1.46f, 1.5f, -2.07f) + close() + } + } + return _wifi2!! + } + +private var _wifi2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Wifi3.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Wifi3.kt new file mode 100644 index 00000000..698d1013 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Wifi3.kt @@ -0,0 +1,33 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Wifi3: ImageVector + get() { + if (_wifi3 != null) { + return _wifi3!! + } + _wifi3 = fluentIcon(name = "Filled.Wifi3") { + fluentPath { + moveTo(10.94f, 16.45f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 2.12f, 2.12f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.12f, -2.12f) + close() + moveTo(8.34f, 13.7f) + arcToRelative(5.23f, 5.23f, 0.0f, false, true, 8.5f, 1.63f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.84f, 0.8f) + arcToRelative(3.23f, 3.23f, 0.0f, false, false, -5.93f, -0.01f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.83f, -0.8f) + curveToRelative(0.27f, -0.6f, 0.63f, -1.16f, 1.1f, -1.62f) + close() + } + } + return _wifi3!! + } + +private var _wifi3: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Wifi4.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Wifi4.kt new file mode 100644 index 00000000..9f273181 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Wifi4.kt @@ -0,0 +1,26 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Wifi4: ImageVector + get() { + if (_wifi4 != null) { + return _wifi4!! + } + _wifi4 = fluentIcon(name = "Filled.Wifi4") { + fluentPath { + moveTo(10.96f, 18.57f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 2.12f, -2.13f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.12f, 2.13f) + close() + } + } + return _wifi4!! + } + +private var _wifi4: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WifiLock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WifiLock.kt new file mode 100644 index 00000000..23ef8fbd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WifiLock.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WifiLock: ImageVector + get() { + if (_wifiLock != null) { + return _wifiLock!! + } + _wifiLock = fluentIcon(name = "Filled.WifiLock") { + fluentPath { + moveTo(17.78f, 10.7f) + curveToRelative(0.6f, 0.6f, 1.12f, 1.33f, 1.5f, 2.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.77f, 0.9f) + arcToRelative(6.13f, 6.13f, 0.0f, false, false, -8.17f, -2.75f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -1.77f, -1.28f) + arcToRelative(8.13f, 8.13f, 0.0f, false, true, 10.21f, 1.04f) + close() + moveTo(4.98f, 9.71f) + arcToRelative(8.3f, 8.3f, 0.0f, false, false, -0.26f, 0.27f) + curveToRelative(-0.6f, 0.36f, -1.08f, 0.88f, -1.38f, 1.51f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 2.18f, 10.0f) + arcToRelative(11.92f, 11.92f, 0.0f, false, true, 19.64f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.64f, 1.14f) + arcToRelative(9.92f, 9.92f, 0.0f, false, false, -15.2f, -1.41f) + close() + moveTo(15.74f, 13.7f) + curveToRelative(0.46f, 0.46f, 0.83f, 1.02f, 1.1f, 1.62f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.84f, 0.8f) + arcToRelative(3.23f, 3.23f, 0.0f, false, false, -3.37f, -1.93f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 10.0f, 13.05f) + lineTo(10.0f, 13.0f) + curveToRelative(0.0f, -0.14f, 0.0f, -0.28f, -0.02f, -0.41f) + curveToRelative(1.9f, -0.82f, 4.2f, -0.45f, 5.76f, 1.11f) + close() + moveTo(13.06f, 16.44f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 12.0f, 19.0f) + verticalLineToRelative(-3.0f) + curveToRelative(0.38f, 0.0f, 0.77f, 0.15f, 1.06f, 0.44f) + close() + moveTo(4.0f, 14.0f) + verticalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(0.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-6.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 2.0f, 20.5f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + lineTo(4.0f, 14.0f) + close() + moveTo(5.5f, 13.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) + close() + moveTo(7.5f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + } + } + return _wifiLock!! + } + +private var _wifiLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WifiOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WifiOff.kt new file mode 100644 index 00000000..0ccd4a02 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WifiOff.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WifiOff: ImageVector + get() { + if (_wifiOff != null) { + return _wifiOff!! + } + _wifiOff = fluentIcon(name = "Filled.WifiOff") { + fluentPath { + moveToRelative(12.86f, 14.27f) + lineToRelative(7.43f, 7.44f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, -1.42f) + lineToRelative(-18.0f, -18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.42f, 1.42f) + lineToRelative(3.1f, 3.1f) + arcToRelative(11.97f, 11.97f, 0.0f, false, false, -3.21f, 3.17f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.64f, 1.14f) + arcToRelative(9.94f, 9.94f, 0.0f, false, true, 3.01f, -2.87f) + lineTo(8.0f, 9.4f) + arcToRelative(8.14f, 8.14f, 0.0f, false, false, -3.2f, 3.38f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.78f, 0.9f) + arcToRelative(6.08f, 6.08f, 0.0f, false, true, 2.9f, -2.8f) + lineToRelative(1.41f, 1.42f) + arcToRelative(5.2f, 5.2f, 0.0f, false, false, -3.63f, 3.01f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.83f, 0.8f) + arcToRelative(3.23f, 3.23f, 0.0f, false, true, 3.78f, -1.84f) + close() + moveTo(11.53f, 8.34f) + lineTo(13.75f, 10.57f) + arcToRelative(6.1f, 6.1f, 0.0f, false, true, 3.76f, 3.13f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.78f, -0.9f) + arcToRelative(8.1f, 8.1f, 0.0f, false, false, -7.76f, -4.45f) + close() + moveTo(8.5f, 5.33f) + lineToRelative(1.65f, 1.65f) + arcToRelative(9.9f, 9.9f, 0.0f, false, true, 10.02f, 4.15f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.64f, -1.14f) + arcTo(11.91f, 11.91f, 0.0f, false, false, 8.51f, 5.33f) + close() + moveTo(13.05f, 16.44f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -2.12f, 2.12f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.12f, -2.12f) + close() + } + } + return _wifiOff!! + } + +private var _wifiOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WifiWarning.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WifiWarning.kt new file mode 100644 index 00000000..e9ba701e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WifiWarning.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WifiWarning: ImageVector + get() { + if (_wifiWarning != null) { + return _wifiWarning!! + } + _wifiWarning = fluentIcon(name = "Filled.WifiWarning") { + fluentPath { + moveToRelative(17.78f, 10.7f) + lineToRelative(0.35f, 0.38f) + curveToRelative(-0.8f, -0.2f, -1.67f, -0.02f, -2.3f, 0.56f) + arcToRelative(6.13f, 6.13f, 0.0f, false, false, -9.26f, 2.04f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.78f, -0.9f) + arcToRelative(8.13f, 8.13f, 0.0f, false, true, 13.0f, -2.07f) + close() + moveTo(11.96f, 19.0f) + lineToRelative(1.21f, -2.43f) + arcTo(1.5f, 1.5f, 0.0f, true, false, 11.95f, 19.0f) + close() + moveTo(14.03f, 14.85f) + lineTo(14.93f, 13.05f) + arcToRelative(5.23f, 5.23f, 0.0f, false, false, -7.69f, 2.26f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.84f, 0.8f) + arcToRelative(3.23f, 3.23f, 0.0f, false, true, 4.95f, -1.26f) + close() + moveTo(20.42f, 8.3f) + curveToRelative(0.5f, 0.5f, 0.99f, 1.09f, 1.4f, 1.69f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.64f, 1.14f) + arcToRelative(9.92f, 9.92f, 0.0f, false, false, -16.36f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.64f, -1.15f) + arcTo(11.92f, 11.92f, 0.0f, false, true, 20.42f, 8.3f) + close() + moveTo(16.16f, 12.83f) + lineTo(12.16f, 20.83f) + arcTo(1.5f, 1.5f, 0.0f, false, false, 13.5f, 23.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.34f, -2.17f) + lineToRelative(-4.0f, -8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.68f, 0.0f) + close() + moveTo(18.0f, 15.5f) + verticalLineToRelative(3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + close() + moveTo(17.5f, 21.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + close() + } + } + return _wifiWarning!! + } + +private var _wifiWarning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Window.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Window.kt new file mode 100644 index 00000000..711eece2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Window.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Window: ImageVector + get() { + if (_window != null) { + return _window!! + } + _window = fluentIcon(name = "Filled.Window") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(4.5f, 17.75f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 8.5f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(9.25f) + close() + } + } + return _window!! + } + +private var _window: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WindowApps.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WindowApps.kt new file mode 100644 index 00000000..e0f7c10a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WindowApps.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WindowApps: ImageVector + get() { + if (_windowApps != null) { + return _windowApps!! + } + _windowApps = fluentIcon(name = "Filled.WindowApps") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(2.76f) + lineTo(20.75f, 9.0f) + lineTo(19.5f, 9.0f) + verticalLineToRelative(-0.5f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(9.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(9.0f, 19.5f) + lineTo(9.0f, 21.0f) + lineTo(6.26f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(12.25f, 15.5f) + horizontalLineToRelative(3.25f) + verticalLineToRelative(-3.25f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(3.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-7.5f) + curveTo(11.01f, 23.0f, 10.0f, 22.0f, 10.0f, 20.75f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + close() + moveTo(17.0f, 12.25f) + verticalLineToRelative(3.25f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(-3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(15.5f, 21.5f) + lineTo(15.5f, 17.0f) + horizontalLineToRelative(-3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.25f) + close() + moveTo(17.0f, 17.0f) + verticalLineToRelative(4.5f) + horizontalLineToRelative(2.75f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(21.5f, 17.0f) + lineTo(17.0f, 17.0f) + close() + } + } + return _windowApps!! + } + +private var _windowApps: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WindowArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WindowArrowUp.kt new file mode 100644 index 00000000..cd866a73 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WindowArrowUp.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WindowArrowUp: ImageVector + get() { + if (_windowArrowUp != null) { + return _windowArrowUp!! + } + _windowArrowUp = fluentIcon(name = "Filled.WindowArrowUp") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(17.51f, 14.0f) + horizontalLineToRelative(-0.08f) + lineToRelative(-0.06f, 0.02f) + lineToRelative(-0.08f, 0.03f) + lineToRelative(-0.07f, 0.04f) + lineToRelative(-0.06f, 0.04f) + lineToRelative(-2.51f, 2.52f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) + lineToRelative(0.06f, 0.07f) + lineToRelative(0.07f, 0.06f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) + lineToRelative(0.07f, -0.06f) + lineTo(17.0f, 15.71f) + verticalLineToRelative(5.38f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + lineToRelative(0.09f, 0.01f) + horizontalLineToRelative(0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + lineTo(18.0f, 21.0f) + verticalLineToRelative(-5.3f) + lineToRelative(1.65f, 1.65f) + lineToRelative(0.07f, 0.06f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-0.07f, -0.06f) + lineToRelative(-2.54f, -2.55f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.07f, -0.03f) + lineToRelative(-0.06f, -0.02f) + lineToRelative(-0.06f, -0.01f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.06f, -0.01f) + close() + moveTo(6.25f, 3.0f) + horizontalLineToRelative(11.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.24f, 3.07f) + lineToRelative(0.01f, 0.18f) + verticalLineToRelative(5.77f) + arcToRelative(6.46f, 6.46f, 0.0f, false, false, -2.0f, -0.85f) + lineTo(19.0f, 8.0f) + lineTo(5.0f, 8.0f) + verticalLineToRelative(9.75f) + curveToRelative(0.0f, 0.65f, 0.5f, 1.18f, 1.12f, 1.24f) + lineToRelative(0.13f, 0.01f) + horizontalLineToRelative(4.92f) + curveToRelative(0.17f, 0.72f, 0.46f, 1.4f, 0.85f, 2.0f) + lineTo(6.25f, 21.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(3.0f, 17.75f) + lineTo(3.0f, 6.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(6.25f, 3.0f) + close() + } + } + return _windowArrowUp!! + } + +private var _windowArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WindowDatabase.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WindowDatabase.kt new file mode 100644 index 00000000..c4b7003d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WindowDatabase.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WindowDatabase: ImageVector + get() { + if (_windowDatabase != null) { + return _windowDatabase!! + } + _windowDatabase = fluentIcon(name = "Filled.WindowDatabase") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(4.58f) + curveToRelative(-0.47f, -0.12f, -0.98f, -0.2f, -1.5f, -0.25f) + lineTo(19.5f, 8.5f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(9.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(5.25f) + lineTo(11.5f, 21.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(14.66f, 12.48f) + curveToRelative(0.9f, -0.3f, 2.07f, -0.48f, 3.34f, -0.48f) + reflectiveCurveToRelative(2.45f, 0.18f, 3.34f, 0.48f) + curveToRelative(0.44f, 0.15f, 0.84f, 0.35f, 1.13f, 0.59f) + curveToRelative(0.3f, 0.24f, 0.53f, 0.55f, 0.53f, 0.93f) + reflectiveCurveToRelative(-0.23f, 0.7f, -0.53f, 0.93f) + curveToRelative(-0.3f, 0.24f, -0.7f, 0.44f, -1.13f, 0.59f) + curveToRelative(-0.9f, 0.3f, -2.07f, 0.48f, -3.34f, 0.48f) + reflectiveCurveToRelative(-2.45f, -0.18f, -3.34f, -0.48f) + arcToRelative(3.79f, 3.79f, 0.0f, false, true, -1.13f, -0.59f) + curveToRelative(-0.3f, -0.24f, -0.53f, -0.55f, -0.53f, -0.93f) + reflectiveCurveToRelative(0.23f, -0.7f, 0.53f, -0.93f) + curveToRelative(0.3f, -0.24f, 0.7f, -0.44f, 1.13f, -0.59f) + close() + moveTo(13.0f, 21.0f) + verticalLineToRelative(-4.6f) + curveToRelative(0.38f, 0.23f, 0.8f, 0.4f, 1.18f, 0.54f) + curveToRelative(1.08f, 0.37f, 2.43f, 0.56f, 3.82f, 0.56f) + curveToRelative(1.39f, 0.0f, 2.74f, -0.2f, 3.82f, -0.56f) + curveToRelative(0.39f, -0.13f, 0.8f, -0.3f, 1.18f, -0.55f) + lineTo(23.0f, 21.0f) + curveToRelative(0.0f, 0.43f, -0.26f, 0.75f, -0.55f, 0.98f) + curveToRelative(-0.29f, 0.22f, -0.68f, 0.4f, -1.11f, 0.55f) + curveToRelative(-0.88f, 0.3f, -2.06f, 0.47f, -3.34f, 0.47f) + curveToRelative(-1.28f, 0.0f, -2.46f, -0.17f, -3.34f, -0.47f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -1.11f, -0.55f) + curveToRelative(-0.29f, -0.23f, -0.55f, -0.55f, -0.55f, -0.98f) + close() + } + } + return _windowDatabase!! + } + +private var _windowDatabase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WindowDevTools.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WindowDevTools.kt new file mode 100644 index 00000000..907f40df --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WindowDevTools.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WindowDevTools: ImageVector + get() { + if (_windowDevTools != null) { + return _windowDevTools!! + } + _windowDevTools = fluentIcon(name = "Filled.WindowDevTools") { + fluentPath { + moveTo(3.0f, 3.05f) + curveToRelative(-0.62f, 0.63f, -1.0f, 1.5f, -1.0f, 2.45f) + verticalLineToRelative(11.0f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 5.5f, 20.0f) + horizontalLineToRelative(7.01f) + curveToRelative(0.06f, -0.25f, 0.15f, -0.5f, 0.28f, -0.74f) + lineToRelative(0.73f, -1.26f) + lineTo(5.5f, 18.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 4.0f, 16.5f) + lineTo(4.0f, 7.0f) + horizontalLineToRelative(14.0f) + verticalLineToRelative(1.25f) + arcToRelative(4.52f, 4.52f, 0.0f, false, true, 2.0f, -0.24f) + lineTo(20.0f, 5.5f) + curveToRelative(0.0f, -0.95f, -0.38f, -1.82f, -1.0f, -2.45f) + lineTo(19.0f, 3.0f) + horizontalLineToRelative(-0.05f) + curveToRelative(-0.63f, -0.62f, -1.5f, -1.0f, -2.45f, -1.0f) + horizontalLineToRelative(-11.0f) + curveToRelative(-0.95f, 0.0f, -1.82f, 0.38f, -2.45f, 1.0f) + lineTo(3.0f, 3.0f) + verticalLineToRelative(0.05f) + close() + moveTo(19.21f, 9.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 0.96f, 0.04f) + lineToRelative(-1.65f, 2.86f) + arcToRelative(1.17f, 1.17f, 0.0f, true, false, 2.02f, 1.17f) + lineToRelative(1.65f, -2.86f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -2.97f, 5.76f) + lineToRelative(-3.03f, 5.25f) + arcToRelative(1.46f, 1.46f, 0.0f, false, true, -2.53f, -1.46f) + lineToRelative(3.02f, -5.24f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 19.21f, 9.0f) + close() + moveTo(10.31f, 9.24f) + curveToRelative(0.27f, 0.3f, 0.25f, 0.78f, -0.05f, 1.06f) + lineToRelative(-2.4f, 2.2f) + lineToRelative(2.4f, 2.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.02f, 1.1f) + lineToRelative(-3.0f, -2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.1f) + lineToRelative(3.0f, -2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 0.04f) + close() + moveTo(13.26f, 15.8f) + lineTo(15.28f, 13.95f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.01f, -2.9f) + lineTo(13.26f, 9.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.02f, 1.1f) + lineToRelative(2.4f, 2.2f) + lineToRelative(-2.4f, 2.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.02f, 1.1f) + close() + } + } + return _windowDevTools!! + } + +private var _windowDevTools: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WindowNew.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WindowNew.kt new file mode 100644 index 00000000..de6611cd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WindowNew.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WindowNew: ImageVector + get() { + if (_windowNew != null) { + return _windowNew!! + } + _windowNew = fluentIcon(name = "Filled.WindowNew") { + fluentPath { + moveTo(19.0f, 17.98f) + verticalLineToRelative(-0.14f) + curveToRelative(1.17f, -0.5f, 2.0f, -1.65f, 2.0f, -3.0f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + horizontalLineToRelative(-8.5f) + curveToRelative(-1.45f, 0.0f, -2.67f, 0.94f, -3.1f, 2.25f) + horizontalLineToRelative(-0.2f) + arcToRelative(2.8f, 2.8f, 0.0f, false, false, -2.22f, 0.95f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 3.0f, 8.5f) + verticalLineToRelative(8.75f) + curveToRelative(0.0f, 1.06f, 0.38f, 2.01f, 1.11f, 2.7f) + arcTo(4.13f, 4.13f, 0.0f, false, false, 7.0f, 21.0f) + horizontalLineToRelative(8.0f) + curveToRelative(0.97f, 0.0f, 1.94f, -0.2f, 2.7f, -0.68f) + arcToRelative(2.7f, 2.7f, 0.0f, false, false, 1.3f, -2.34f) + close() + moveTo(5.96f, 6.75f) + lineTo(6.0f, 6.75f) + verticalLineToRelative(8.09f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(8.25f) + curveToRelative(-0.04f, 0.42f, -0.25f, 0.73f, -0.62f, 0.97f) + curveToRelative(-0.43f, 0.27f, -1.09f, 0.44f, -1.88f, 0.44f) + lineTo(7.0f, 19.5f) + curveToRelative(-0.84f, 0.0f, -1.46f, -0.27f, -1.86f, -0.64f) + curveToRelative(-0.4f, -0.38f, -0.64f, -0.92f, -0.64f, -1.61f) + lineTo(4.5f, 8.5f) + curveToRelative(0.0f, -0.63f, 0.16f, -1.07f, 0.38f, -1.33f) + curveToRelative(0.2f, -0.24f, 0.53f, -0.42f, 1.08f, -0.42f) + close() + moveTo(12.02f, 6.5f) + horizontalLineToRelative(4.73f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(4.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(16.0f, 9.06f) + lineToRelative(-5.22f, 5.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineTo(14.94f, 8.0f) + horizontalLineToRelative(-2.92f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + close() + } + } + return _windowNew!! + } + +private var _windowNew: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WindowShield.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WindowShield.kt new file mode 100644 index 00000000..15df2eb9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WindowShield.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WindowShield: ImageVector + get() { + if (_windowShield != null) { + return _windowShield!! + } + _windowShield = fluentIcon(name = "Filled.WindowShield") { + fluentPath { + moveTo(17.75f, 3.0f) + horizontalLineToRelative(0.18f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 21.0f, 6.08f) + verticalLineToRelative(6.54f) + arcToRelative(3.73f, 3.73f, 0.0f, false, true, -2.0f, -1.18f) + verticalLineTo(8.0f) + horizontalLineTo(5.0f) + verticalLineToRelative(9.75f) + curveToRelative(0.0f, 0.65f, 0.5f, 1.18f, 1.12f, 1.24f) + lineToRelative(0.13f, 0.01f) + horizontalLineToRelative(7.13f) + arcToRelative(5.86f, 5.86f, 0.0f, false, false, 1.15f, 2.0f) + horizontalLineTo(6.25f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.93f) + verticalLineTo(6.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.06f, -3.24f) + lineTo(6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(19.0f, 12.76f) + arcToRelative(4.29f, 4.29f, 0.0f, false, false, 2.6f, 0.9f) + curveToRelative(0.2f, 0.0f, 0.35f, 0.15f, 0.4f, 0.34f) + verticalLineToRelative(2.58f) + curveToRelative(0.0f, 2.69f, -1.31f, 4.51f, -3.87f, 5.4f) + arcToRelative(0.39f, 0.39f, 0.0f, false, true, -0.26f, 0.0f) + arcTo(6.66f, 6.66f, 0.0f, false, true, 16.0f, 21.0f) + arcToRelative(4.84f, 4.84f, 0.0f, false, true, -1.56f, -2.0f) + arcToRelative(6.05f, 6.05f, 0.0f, false, true, -0.44f, -2.15f) + verticalLineToRelative(-2.77f) + arcToRelative(0.4f, 0.4f, 0.0f, false, true, 0.4f, -0.41f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 3.32f, -1.55f) + arcToRelative(0.39f, 0.39f, 0.0f, false, true, 0.56f, 0.0f) + curveToRelative(0.24f, 0.25f, 0.47f, 0.46f, 0.72f, 0.64f) + close() + } + } + return _windowShield!! + } + +private var _windowShield: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WindowWrench.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WindowWrench.kt new file mode 100644 index 00000000..5d4542a1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WindowWrench.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WindowWrench: ImageVector + get() { + if (_windowWrench != null) { + return _windowWrench!! + } + _windowWrench = fluentIcon(name = "Filled.WindowWrench") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(4.8f) + curveToRelative(0.09f, -0.48f, 0.32f, -0.94f, 0.69f, -1.31f) + lineToRelative(0.19f, -0.19f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 8.5f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(2.53f) + lineToRelative(0.51f, 0.09f) + curveToRelative(0.47f, 0.1f, 0.82f, 0.4f, 0.99f, 0.79f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(20.13f, 12.51f) + arcToRelative(0.41f, 0.41f, 0.0f, false, false, -0.33f, -0.42f) + arcToRelative(4.06f, 4.06f, 0.0f, false, false, -3.75f, 1.1f) + arcToRelative(4.07f, 4.07f, 0.0f, false, false, -0.87f, 4.47f) + lineToRelative(-2.73f, 2.73f) + arcToRelative(1.52f, 1.52f, 0.0f, false, false, 0.0f, 2.16f) + curveToRelative(0.6f, 0.6f, 1.56f, 0.6f, 2.16f, 0.0f) + lineToRelative(2.73f, -2.73f) + arcToRelative(4.07f, 4.07f, 0.0f, false, false, 5.57f, -4.62f) + curveToRelative(-0.08f, -0.35f, -0.51f, -0.44f, -0.77f, -0.18f) + lineToRelative(-1.9f, 1.9f) + arcToRelative(1.53f, 1.53f, 0.0f, false, true, -0.74f, 0.4f) + arcToRelative(1.53f, 1.53f, 0.0f, false, true, -1.42f, -2.56f) + lineToRelative(1.9f, -1.9f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.15f, -0.35f) + close() + moveTo(17.72f, 21.0f) + lineToRelative(-0.12f, -0.03f) + lineToRelative(-0.03f, 0.03f) + horizontalLineToRelative(0.15f) + close() + } + } + return _windowWrench!! + } + +private var _windowWrench: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WrenchScrewdriver.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WrenchScrewdriver.kt new file mode 100644 index 00000000..24a6755f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/WrenchScrewdriver.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.WrenchScrewdriver: ImageVector + get() { + if (_wrenchScrewdriver != null) { + return _wrenchScrewdriver!! + } + _wrenchScrewdriver = fluentIcon(name = "Filled.WrenchScrewdriver") { + fluentPath { + moveTo(16.08f, 2.41f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.67f, -0.41f) + horizontalLineToRelative(1.5f) + curveToRelative(0.28f, 0.0f, 0.54f, 0.16f, 0.67f, 0.41f) + lineToRelative(1.0f, 2.0f) + curveToRelative(0.11f, 0.23f, 0.1f, 0.5f, -0.02f, 0.71f) + lineTo(19.0f, 6.7f) + verticalLineTo(12.0f) + horizontalLineToRelative(1.25f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.75f) + horizontalLineToRelative(-7.0f) + verticalLineToRelative(-1.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineTo(16.0f) + verticalLineTo(6.7f) + lineToRelative(-0.9f, -1.58f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.02f, -0.7f) + lineToRelative(1.0f, -2.0f) + close() + moveTo(14.0f, 16.0f) + verticalLineToRelative(2.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 7.0f, 0.0f) + verticalLineTo(16.0f) + horizontalLineToRelative(-7.0f) + close() + moveTo(8.83f, 2.21f) + curveToRelative(0.2f, -0.14f, 0.47f, -0.17f, 0.7f, -0.07f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.5f, 10.0f) + verticalLineToRelative(7.32f) + arcToRelative(2.54f, 2.54f, 0.0f, false, true, -5.07f, 0.0f) + verticalLineToRelative(-7.33f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.51f, -10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, 0.7f) + verticalLineTo(6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineTo(2.83f) + curveToRelative(0.0f, -0.25f, 0.12f, -0.48f, 0.33f, -0.62f) + close() + } + } + return _wrenchScrewdriver!! + } + +private var _wrenchScrewdriver: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/XboxConsole.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/XboxConsole.kt new file mode 100644 index 00000000..a596230d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/XboxConsole.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.XboxConsole: ImageVector + get() { + if (_xboxConsole != null) { + return _xboxConsole!! + } + _xboxConsole = fluentIcon(name = "Filled.XboxConsole") { + fluentPath { + moveTo(5.75f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(18.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineTo(8.0f) + verticalLineTo(11.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineTo(22.0f) + horizontalLineToRelative(8.75f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineTo(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineTo(5.75f) + close() + moveTo(9.5f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + } + } + return _xboxConsole!! + } + +private var _xboxConsole: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/XboxController.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/XboxController.kt new file mode 100644 index 00000000..700e3387 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/XboxController.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.XboxController: ImageVector + get() { + if (_xboxController != null) { + return _xboxController!! + } + _xboxController = fluentIcon(name = "Filled.XboxController") { + fluentPath { + moveTo(9.8f, 5.5f) + arcToRelative(2.58f, 2.58f, 0.0f, false, false, -1.63f, -0.2f) + lineToRelative(-1.18f, 0.23f) + curveToRelative(-0.87f, 0.16f, -1.6f, 0.72f, -2.0f, 1.5f) + curveToRelative(-1.38f, 2.67f, -2.4f, 4.86f, -2.8f, 6.73f) + curveToRelative(-0.42f, 1.92f, -0.17f, 3.57f, 1.07f, 5.07f) + curveToRelative(0.82f, 1.0f, 2.23f, 0.8f, 2.97f, -0.03f) + lineToRelative(1.81f, -2.09f) + curveToRelative(0.41f, -0.47f, 1.0f, -0.75f, 1.63f, -0.75f) + horizontalLineToRelative(4.66f) + curveToRelative(0.62f, 0.0f, 1.22f, 0.28f, 1.63f, 0.75f) + lineToRelative(1.82f, 2.09f) + curveToRelative(0.73f, 0.83f, 2.14f, 1.03f, 2.96f, 0.03f) + curveToRelative(1.24f, -1.5f, 1.49f, -3.15f, 1.08f, -5.07f) + curveToRelative(-0.4f, -1.87f, -1.43f, -4.06f, -2.8f, -6.73f) + arcToRelative(2.85f, 2.85f, 0.0f, false, false, -2.0f, -1.5f) + lineToRelative(-1.19f, -0.23f) + arcToRelative(2.58f, 2.58f, 0.0f, false, false, -1.64f, 0.2f) + lineToRelative(-0.44f, 0.24f) + curveToRelative(-0.35f, 0.19f, -0.73f, 0.3f, -1.1f, 0.3f) + horizontalLineToRelative(-1.3f) + curveToRelative(-0.37f, 0.0f, -0.75f, -0.11f, -1.1f, -0.3f) + lineTo(9.8f, 5.5f) + close() + moveTo(12.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + close() + } + } + return _xboxController!! + } + +private var _xboxController: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/XboxControllerError.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/XboxControllerError.kt new file mode 100644 index 00000000..cc714596 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/XboxControllerError.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.XboxControllerError: ImageVector + get() { + if (_xboxControllerError != null) { + return _xboxControllerError!! + } + _xboxControllerError = fluentIcon(name = "Filled.XboxControllerError") { + fluentPath { + moveTo(9.8f, 4.5f) + arcToRelative(2.58f, 2.58f, 0.0f, false, false, -1.63f, -0.2f) + lineToRelative(-1.18f, 0.23f) + curveToRelative(-0.87f, 0.16f, -1.6f, 0.72f, -2.0f, 1.5f) + curveToRelative(-1.38f, 2.67f, -2.4f, 4.86f, -2.8f, 6.73f) + curveToRelative(-0.42f, 1.92f, -0.17f, 3.57f, 1.07f, 5.07f) + curveToRelative(0.82f, 1.0f, 2.23f, 0.8f, 2.97f, -0.03f) + lineToRelative(1.81f, -2.09f) + curveToRelative(0.41f, -0.47f, 1.0f, -0.75f, 1.63f, -0.75f) + horizontalLineToRelative(1.51f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, 10.23f, -3.65f) + arcTo(42.28f, 42.28f, 0.0f, false, false, 19.0f, 6.03f) + arcToRelative(2.85f, 2.85f, 0.0f, false, false, -2.0f, -1.5f) + lineToRelative(-1.18f, -0.23f) + arcToRelative(2.58f, 2.58f, 0.0f, false, false, -1.64f, 0.2f) + lineToRelative(-0.44f, 0.24f) + curveToRelative(-0.35f, 0.19f, -0.73f, 0.3f, -1.1f, 0.3f) + horizontalLineToRelative(-1.3f) + curveToRelative(-0.37f, 0.0f, -0.75f, -0.11f, -1.1f, -0.3f) + lineTo(9.8f, 4.5f) + close() + moveTo(12.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + close() + moveTo(23.0f, 16.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(17.5f, 13.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) + verticalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(17.5f, 20.13f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.25f) + close() + } + } + return _xboxControllerError!! + } + +private var _xboxControllerError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Xray.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Xray.kt new file mode 100644 index 00000000..261ab637 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/Xray.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.Xray: ImageVector + get() { + if (_xray != null) { + return _xray!! + } + _xray = fluentIcon(name = "Filled.Xray") { + fluentPath { + moveTo(14.0f, 16.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(9.25f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(4.0f, 5.25f) + curveTo(4.0f, 3.45f, 5.46f, 2.0f, 7.25f, 2.0f) + horizontalLineToRelative(9.5f) + curveTo(18.55f, 2.0f, 20.0f, 3.46f, 20.0f, 5.25f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-9.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 4.0f, 18.75f) + lineTo(4.0f, 5.25f) + close() + moveTo(12.75f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(0.75f) + lineTo(9.0f, 6.5f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 9.0f, 8.0f) + horizontalLineToRelative(2.25f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 2.12f, 1.5f) + horizontalLineToRelative(1.26f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 2.12f, -1.5f) + horizontalLineToRelative(-2.0f) + lineTo(12.75f, 13.0f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + lineTo(12.75f, 8.0f) + lineTo(15.0f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.25f) + verticalLineToRelative(-0.75f) + close() + } + } + return _xray!! + } + +private var _xray: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ZoomFit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ZoomFit.kt new file mode 100644 index 00000000..0f95d4dc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ZoomFit.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ZoomFit: ImageVector + get() { + if (_zoomFit != null) { + return _zoomFit!! + } + _zoomFit = fluentIcon(name = "Filled.ZoomFit") { + fluentPath { + moveTo(12.52f, 2.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.03f, 0.0f) + lineTo(9.27f, 4.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.03f, -1.09f) + lineToRelative(2.22f, -2.1f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.1f, 0.01f) + lineToRelative(2.2f, 2.1f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.03f, 1.08f) + lineToRelative(-2.21f, -2.1f) + close() + moveTo(4.77f, 8.2f) + curveToRelative(0.3f, 0.29f, 0.32f, 0.76f, 0.03f, 1.06f) + lineTo(2.7f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.01f, 1.03f) + lineToRelative(2.1f, 2.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.1f, 1.04f) + lineToRelative(-2.09f, -2.21f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -3.1f) + lineToRelative(2.1f, -2.21f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, -0.04f) + close() + moveTo(19.23f, 8.21f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 0.03f) + lineToRelative(2.1f, 2.22f) + curveToRelative(0.82f, 0.86f, 0.82f, 2.22f, 0.0f, 3.1f) + lineToRelative(-2.1f, 2.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.09f, -1.03f) + lineToRelative(2.1f, -2.21f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.03f) + lineToRelative(-2.1f, -2.21f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.03f, -1.07f) + close() + moveTo(15.79f, 19.23f) + curveToRelative(0.29f, 0.3f, 0.28f, 0.77f, -0.02f, 1.06f) + lineToRelative(-2.22f, 2.1f) + curveToRelative(-0.86f, 0.82f, -2.22f, 0.82f, -3.1f, 0.0f) + lineToRelative(-2.2f, -2.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.02f, -1.1f) + lineToRelative(2.22f, 2.1f) + curveToRelative(0.29f, 0.28f, 0.74f, 0.28f, 1.03f, 0.0f) + lineToRelative(2.21f, -2.09f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 0.03f) + close() + moveTo(9.75f, 7.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 7.0f, 9.75f) + verticalLineToRelative(4.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 9.75f, 17.0f) + horizontalLineToRelative(4.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 17.0f, 14.25f) + verticalLineToRelative(-4.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 14.25f, 7.0f) + horizontalLineToRelative(-4.5f) + close() + } + } + return _zoomFit!! + } + +private var _zoomFit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ZoomIn.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ZoomIn.kt new file mode 100644 index 00000000..57a5d176 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ZoomIn.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ZoomIn: ImageVector + get() { + if (_zoomIn != null) { + return _zoomIn!! + } + _zoomIn = fluentIcon(name = "Filled.ZoomIn") { + fluentPath { + moveTo(17.5f, 10.0f) + curveToRelative(0.0f, 1.71f, -0.57f, 3.29f, -1.54f, 4.55f) + lineToRelative(4.75f, 4.74f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.32f, 1.5f) + lineToRelative(-0.1f, -0.08f) + lineToRelative(-4.74f, -4.75f) + arcTo(7.5f, 7.5f, 0.0f, true, true, 17.5f, 10.0f) + close() + moveTo(10.0f, 5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineTo(9.0f) + horizontalLineTo(6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineTo(9.0f) + verticalLineToRelative(2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineTo(11.0f) + horizontalLineToRelative(2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineTo(11.0f) + verticalLineTo(6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + } + } + return _zoomIn!! + } + +private var _zoomIn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ZoomOut.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ZoomOut.kt new file mode 100644 index 00000000..bada9521 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/filled/ZoomOut.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.filled + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Filled.ZoomOut: ImageVector + get() { + if (_zoomOut != null) { + return _zoomOut!! + } + _zoomOut = fluentIcon(name = "Filled.ZoomOut") { + fluentPath { + moveTo(17.5f, 10.0f) + arcToRelative(7.5f, 7.5f, 0.0f, true, false, -2.95f, 5.96f) + lineToRelative(4.74f, 4.75f) + lineToRelative(0.1f, 0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.32f, -1.5f) + lineToRelative(-4.75f, -4.74f) + arcTo(7.47f, 7.47f, 0.0f, false, false, 17.5f, 10.0f) + close() + moveTo(13.5f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + horizontalLineToRelative(7.0f) + close() + } + } + return _zoomOut!! + } + +private var _zoomOut: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AccessTime.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AccessTime.kt new file mode 100644 index 00000000..73960ab6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AccessTime.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AccessTime: ImageVector + get() { + if (_accessTime != null) { + return _accessTime!! + } + _accessTime = fluentIcon(name = "Regular.AccessTime") { + fluentPath { + moveTo(7.5f, 8.74f) + arcTo(2.3f, 2.3f, 0.0f, false, true, 9.25f, 8.0f) + curveToRelative(1.15f, 0.0f, 1.9f, 0.8f, 2.15f, 1.66f) + curveToRelative(0.26f, 0.85f, 0.1f, 1.9f, -0.62f, 2.62f) + arcToRelative(8.1f, 8.1f, 0.0f, false, true, -0.79f, 0.67f) + lineToRelative(-0.04f, 0.03f) + curveToRelative(-0.28f, 0.22f, -0.53f, 0.41f, -0.75f, 0.63f) + arcToRelative(2.3f, 2.3f, 0.0f, false, false, -0.58f, 0.89f) + horizontalLineToRelative(2.13f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + curveToRelative(0.0f, -1.25f, 0.52f, -2.08f, 1.14f, -2.7f) + curveToRelative(0.3f, -0.3f, 0.62f, -0.55f, 0.9f, -0.76f) + curveToRelative(0.28f, -0.22f, 0.5f, -0.4f, 0.68f, -0.57f) + curveToRelative(0.27f, -0.27f, 0.37f, -0.72f, 0.25f, -1.13f) + curveToRelative(-0.12f, -0.38f, -0.37f, -0.59f, -0.72f, -0.59f) + reflectiveCurveToRelative(-0.53f, 0.14f, -0.64f, 0.25f) + arcToRelative(0.84f, 0.84f, 0.0f, false, false, -0.15f, 0.23f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.43f, -0.46f) + lineToRelative(0.04f, -0.1f) + lineToRelative(0.08f, -0.17f) + curveToRelative(0.07f, -0.14f, 0.18f, -0.32f, 0.35f, -0.5f) + close() + moveTo(13.25f, 8.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.75f) + horizontalLineToRelative(1.5f) + verticalLineTo(8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(6.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineTo(13.0f) + horizontalLineToRelative(-2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 20.0f, 0.0f) + close() + moveTo(3.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 17.0f, 0.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, -17.0f, 0.0f) + close() + } + } + return _accessTime!! + } + +private var _accessTime: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Accessibility.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Accessibility.kt new file mode 100644 index 00000000..5d1d454c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Accessibility.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Accessibility: ImageVector + get() { + if (_accessibility != null) { + return _accessibility!! + } + _accessibility = fluentIcon(name = "Regular.Accessibility") { + fluentPath { + moveTo(10.5f, 5.0f) + curveToRelative(0.0f, 0.64f, 0.4f, 1.19f, 0.97f, 1.4f) + curveToRelative(0.35f, 0.09f, 0.71f, 0.09f, 1.06f, 0.0f) + arcTo(1.5f, 1.5f, 0.0f, true, false, 10.5f, 5.0f) + close() + moveTo(9.03f, 5.4f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 5.95f, 0.0f) + lineToRelative(2.87f, -1.22f) + arcToRelative(2.27f, 2.27f, 0.0f, false, true, 2.96f, 1.18f) + arcToRelative(2.24f, 2.24f, 0.0f, false, true, -1.18f, 2.96f) + lineTo(16.0f, 9.86f) + verticalLineToRelative(3.71f) + lineToRelative(1.88f, 5.45f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.26f, 1.46f) + lineTo(12.0f, 15.78f) + lineToRelative(-1.62f, 4.7f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.26f, -1.46f) + lineTo(8.0f, 13.56f) + verticalLineToRelative(-3.7f) + lineTo(4.37f, 8.32f) + arcToRelative(2.24f, 2.24f, 0.0f, false, true, -1.18f, -2.96f) + arcToRelative(2.27f, 2.27f, 0.0f, false, true, 2.96f, -1.18f) + lineTo(9.03f, 5.4f) + close() + moveTo(11.03f, 7.84f) + curveToRelative(-0.17f, -0.05f, -0.34f, -0.1f, -0.5f, -0.17f) + lineTo(5.56f, 5.56f) + arcToRelative(0.77f, 0.77f, 0.0f, false, false, -1.0f, 0.4f) + curveToRelative(-0.16f, 0.38f, 0.02f, 0.81f, 0.4f, 0.98f) + lineToRelative(3.78f, 1.6f) + curveToRelative(0.46f, 0.2f, 0.76f, 0.65f, 0.76f, 1.15f) + verticalLineToRelative(3.91f) + curveToRelative(0.0f, 0.14f, -0.02f, 0.28f, -0.07f, 0.4f) + lineToRelative(-1.89f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.42f, 0.5f) + lineToRelative(2.1f, -6.13f) + arcToRelative(0.99f, 0.99f, 0.0f, false, true, 1.87f, 0.0f) + lineToRelative(2.11f, 6.12f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.42f, -0.48f) + lineToRelative(-1.89f, -5.49f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.07f, -0.4f) + lineTo(14.5f, 9.69f) + curveToRelative(0.0f, -0.5f, 0.3f, -0.95f, 0.76f, -1.15f) + lineToRelative(3.78f, -1.6f) + curveToRelative(0.39f, -0.17f, 0.56f, -0.6f, 0.4f, -0.98f) + arcToRelative(0.77f, 0.77f, 0.0f, false, false, -1.0f, -0.4f) + lineToRelative(-4.97f, 2.1f) + curveToRelative(-0.16f, 0.08f, -0.33f, 0.13f, -0.5f, 0.18f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -1.95f, 0.0f) + close() + } + } + return _accessibility!! + } + +private var _accessibility: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AccessibilityCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AccessibilityCheckmark.kt new file mode 100644 index 00000000..edd82358 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AccessibilityCheckmark.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AccessibilityCheckmark: ImageVector + get() { + if (_accessibilityCheckmark != null) { + return _accessibilityCheckmark!! + } + _accessibilityCheckmark = fluentIcon(name = "Regular.AccessibilityCheckmark") { + fluentPath { + moveTo(9.03f, 5.4f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 5.95f, 0.0f) + lineToRelative(2.87f, -1.22f) + arcToRelative(2.27f, 2.27f, 0.0f, false, true, 2.96f, 1.18f) + arcToRelative(2.24f, 2.24f, 0.0f, false, true, -1.18f, 2.96f) + lineTo(16.0f, 9.86f) + verticalLineToRelative(1.31f) + curveToRelative(-0.53f, 0.13f, -1.03f, 0.32f, -1.5f, 0.56f) + lineTo(14.5f, 9.7f) + curveToRelative(0.0f, -0.5f, 0.3f, -0.95f, 0.76f, -1.15f) + lineToRelative(3.78f, -1.6f) + curveToRelative(0.39f, -0.17f, 0.56f, -0.6f, 0.4f, -0.98f) + arcToRelative(0.77f, 0.77f, 0.0f, false, false, -1.0f, -0.4f) + lineToRelative(-4.97f, 2.1f) + curveToRelative(-0.16f, 0.08f, -0.33f, 0.13f, -0.5f, 0.18f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -1.95f, 0.0f) + curveToRelative(-0.16f, -0.05f, -0.33f, -0.1f, -0.48f, -0.17f) + lineTo(5.55f, 5.56f) + arcToRelative(0.77f, 0.77f, 0.0f, false, false, -1.0f, 0.4f) + curveToRelative(-0.16f, 0.38f, 0.02f, 0.81f, 0.4f, 0.98f) + lineToRelative(3.78f, 1.6f) + curveToRelative(0.46f, 0.2f, 0.76f, 0.65f, 0.76f, 1.15f) + verticalLineToRelative(3.91f) + curveToRelative(0.0f, 0.14f, -0.02f, 0.28f, -0.07f, 0.4f) + lineToRelative(-1.89f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.42f, 0.5f) + lineToRelative(2.1f, -6.13f) + arcToRelative(0.99f, 0.99f, 0.0f, false, true, 1.45f, -0.53f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, -1.44f, 5.13f) + lineToRelative(-0.7f, 2.01f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.25f, -1.46f) + lineTo(8.0f, 13.56f) + verticalLineToRelative(-3.7f) + lineTo(4.37f, 8.32f) + arcToRelative(2.24f, 2.24f, 0.0f, false, true, -1.18f, -2.96f) + arcToRelative(2.27f, 2.27f, 0.0f, false, true, 2.96f, -1.18f) + lineTo(9.03f, 5.4f) + close() + moveTo(10.5f, 5.0f) + curveToRelative(0.0f, 0.64f, 0.4f, 1.19f, 0.97f, 1.4f) + curveToRelative(0.35f, 0.09f, 0.71f, 0.09f, 1.06f, 0.0f) + arcTo(1.5f, 1.5f, 0.0f, true, false, 10.5f, 5.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-3.65f, 3.64f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _accessibilityCheckmark!! + } + +private var _accessibilityCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AddCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AddCircle.kt new file mode 100644 index 00000000..a356c570 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AddCircle.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AddCircle: ImageVector + get() { + if (_addCircle != null) { + return _addCircle!! + } + _addCircle = fluentIcon(name = "Regular.AddCircle") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) + close() + moveTo(12.0f, 7.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + verticalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _addCircle!! + } + +private var _addCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AddSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AddSquare.kt new file mode 100644 index 00000000..05581985 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AddSquare.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AddSquare: ImageVector + get() { + if (_addSquare != null) { + return _addSquare!! + } + _addSquare = fluentIcon(name = "Regular.AddSquare") { + fluentPath { + moveTo(12.0f, 7.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + verticalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(6.25f, 4.5f) + close() + } + } + return _addSquare!! + } + +private var _addSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AddSubtractCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AddSubtractCircle.kt new file mode 100644 index 00000000..345572b3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AddSubtractCircle.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AddSubtractCircle: ImageVector + get() { + if (_addSubtractCircle != null) { + return _addSubtractCircle!! + } + _addSubtractCircle = fluentIcon(name = "Regular.AddSubtractCircle") { + fluentPath { + moveTo(13.0f, 15.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(9.5f, 6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + lineTo(8.0f, 8.0f) + lineTo(6.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(8.0f, 9.5f) + verticalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(9.5f, 9.5f) + horizontalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(9.5f, 8.0f) + lineTo(9.5f, 6.75f) + close() + moveTo(12.0f, 22.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, -20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, 20.0f) + close() + moveTo(12.0f, 20.5f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 6.52f, -13.96f) + lineTo(6.54f, 18.52f) + arcTo(8.47f, 8.47f, 0.0f, false, false, 12.0f, 20.5f) + close() + moveTo(5.48f, 17.46f) + lineTo(17.46f, 5.48f) + arcTo(8.5f, 8.5f, 0.0f, false, false, 5.49f, 17.45f) + close() + } + } + return _addSubtractCircle!! + } + +private var _addSubtractCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Airplane.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Airplane.kt new file mode 100644 index 00000000..5ec548ab --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Airplane.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Airplane: ImageVector + get() { + if (_airplane != null) { + return _airplane!! + } + _airplane = fluentIcon(name = "Regular.Airplane") { + fluentPath { + moveToRelative(9.47f, 9.64f) + lineToRelative(-0.7f, -5.87f) + verticalLineToRelative(-0.08f) + curveToRelative(0.0f, -0.88f, 0.72f, -1.6f, 1.6f, -1.6f) + curveToRelative(0.8f, 0.0f, 1.55f, 0.42f, 1.98f, 1.13f) + lineToRelative(0.1f, 0.16f) + lineToRelative(2.94f, 6.09f) + lineToRelative(3.95f, -0.12f) + arcToRelative(2.6f, 2.6f, 0.0f, false, true, 2.68f, 2.53f) + verticalLineToRelative(0.07f) + arcToRelative(2.6f, 2.6f, 0.0f, false, true, -2.62f, 2.6f) + lineToRelative(-3.97f, -0.12f) + lineToRelative(-2.99f, 6.19f) + arcToRelative(2.3f, 2.3f, 0.0f, false, true, -2.06f, 1.3f) + curveToRelative(-0.9f, 0.0f, -1.61f, -0.73f, -1.61f, -1.64f) + verticalLineToRelative(-0.12f) + lineToRelative(0.71f, -5.9f) + lineToRelative(-2.13f, -0.07f) + lineToRelative(-0.27f, 0.74f) + arcToRelative(1.95f, 1.95f, 0.0f, false, true, -1.83f, 1.28f) + curveToRelative(-0.87f, 0.0f, -1.58f, -0.71f, -1.58f, -1.59f) + verticalLineToRelative(-0.76f) + lineToRelative(-0.16f, -0.03f) + arcToRelative(1.92f, 1.92f, 0.0f, false, true, 0.0f, -3.76f) + lineToRelative(0.16f, -0.03f) + verticalLineToRelative(-0.76f) + curveToRelative(0.0f, -0.8f, 0.6f, -1.48f, 1.43f, -1.58f) + horizontalLineToRelative(0.15f) + curveToRelative(0.75f, 0.0f, 1.43f, 0.42f, 1.77f, 1.12f) + lineToRelative(0.06f, 0.15f) + lineToRelative(0.27f, 0.74f) + lineToRelative(2.12f, -0.07f) + close() + moveTo(10.37f, 3.59f) + curveToRelative(-0.05f, 0.0f, -0.1f, 0.04f, -0.1f, 0.08f) + lineToRelative(0.88f, 7.42f) + lineToRelative(-4.84f, 0.15f) + lineToRelative(-0.62f, -1.72f) + lineToRelative(-0.04f, -0.08f) + curveToRelative(-0.07f, -0.15f, -0.23f, -0.25f, -0.35f, -0.25f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.09f, 0.09f, 0.0f, false, false, -0.07f, 0.09f) + verticalLineToRelative(1.98f) + lineToRelative(-1.35f, 0.28f) + arcToRelative(0.42f, 0.42f, 0.0f, false, false, 0.0f, 0.82f) + lineToRelative(1.35f, 0.28f) + verticalLineToRelative(1.98f) + curveToRelative(0.0f, 0.05f, 0.03f, 0.09f, 0.08f, 0.09f) + curveToRelative(0.19f, 0.0f, 0.36f, -0.12f, 0.42f, -0.3f) + lineToRelative(0.64f, -1.75f) + lineToRelative(4.86f, 0.15f) + lineToRelative(-0.9f, 7.47f) + verticalLineToRelative(0.03f) + curveToRelative(0.0f, 0.06f, 0.05f, 0.1f, 0.1f, 0.1f) + arcToRelative(0.8f, 0.8f, 0.0f, false, false, 0.72f, -0.44f) + lineToRelative(3.42f, -7.07f) + lineToRelative(4.9f, 0.15f) + curveToRelative(0.61f, 0.0f, 1.1f, -0.5f, 1.1f, -1.09f) + verticalLineToRelative(-0.04f) + arcToRelative(1.1f, 1.1f, 0.0f, false, false, -1.12f, -1.07f) + lineToRelative(-4.93f, 0.15f) + lineToRelative(-3.35f, -6.93f) + lineToRelative(-0.06f, -0.1f) + arcToRelative(0.8f, 0.8f, 0.0f, false, false, -0.67f, -0.38f) + close() + } + } + return _airplane!! + } + +private var _airplane: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AirplaneTakeOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AirplaneTakeOff.kt new file mode 100644 index 00000000..bdff6cc0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AirplaneTakeOff.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AirplaneTakeOff: ImageVector + get() { + if (_airplaneTakeOff != null) { + return _airplaneTakeOff!! + } + _airplaneTakeOff = fluentIcon(name = "Regular.AirplaneTakeOff") { + fluentPath { + moveToRelative(8.32f, 8.4f) + lineToRelative(-0.78f, -1.12f) + arcToRelative(2.1f, 2.1f, 0.0f, false, true, 3.05f, -2.81f) + lineToRelative(2.58f, 2.09f) + curveToRelative(0.31f, -0.33f, 0.68f, -0.68f, 1.1f, -1.0f) + arcToRelative(4.7f, 4.7f, 0.0f, false, true, 2.42f, -1.06f) + curveToRelative(2.24f, -0.17f, 3.91f, 1.25f, 4.86f, 2.33f) + curveToRelative(0.49f, 0.56f, 0.58f, 1.27f, 0.37f, 1.88f) + curveToRelative(-0.2f, 0.6f, -0.69f, 1.1f, -1.34f, 1.32f) + lineToRelative(-5.37f, 1.85f) + lineToRelative(-3.16f, 4.22f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.0f, -1.78f) + lineToRelative(0.25f, -1.28f) + lineToRelative(-2.53f, 0.54f) + arcTo(2.28f, 2.28f, 0.0f, false, true, 3.0f, 11.35f) + lineTo(3.0f, 7.7f) + arcToRelative(1.7f, 1.7f, 0.0f, false, true, 3.18f, -0.8f) + lineToRelative(0.96f, 1.76f) + lineToRelative(1.18f, -0.24f) + close() + moveTo(8.78f, 6.43f) + lineTo(9.91f, 8.08f) + lineTo(11.81f, 7.68f) + curveToRelative(0.09f, -0.02f, 0.17f, -0.05f, 0.26f, -0.09f) + lineTo(9.65f, 5.63f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.87f, 0.8f) + close() + moveTo(16.81f, 6.0f) + curveToRelative(-0.5f, 0.04f, -1.07f, 0.32f, -1.63f, 0.75f) + curveToRelative(-0.55f, 0.42f, -1.03f, 0.94f, -1.36f, 1.34f) + curveToRelative(-0.42f, 0.5f, -1.0f, 0.91f, -1.7f, 1.06f) + lineTo(6.9f, 10.23f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.8f, -0.37f) + lineTo(4.85f, 7.6f) + arcToRelative(0.2f, 0.2f, 0.0f, false, false, -0.36f, 0.1f) + verticalLineToRelative(3.65f) + curveToRelative(0.0f, 0.5f, 0.46f, 0.87f, 0.95f, 0.77f) + lineToRelative(3.64f, -0.79f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.9f, 0.88f) + lineToRelative(-0.47f, 2.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.33f, 0.6f) + lineToRelative(3.3f, -4.41f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.36f, -0.26f) + lineToRelative(5.58f, -1.93f) + arcToRelative(0.64f, 0.64f, 0.0f, false, false, 0.41f, -0.38f) + arcToRelative(0.4f, 0.4f, 0.0f, false, false, -0.08f, -0.41f) + curveToRelative(-0.86f, -0.98f, -2.1f, -1.94f, -3.61f, -1.82f) + close() + moveTo(3.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 19.5f) + close() + } + } + return _airplaneTakeOff!! + } + +private var _airplaneTakeOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Album.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Album.kt new file mode 100644 index 00000000..03e7b7e3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Album.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Album: ImageVector + get() { + if (_album != null) { + return _album!! + } + _album = fluentIcon(name = "Regular.Album") { + fluentPath { + moveTo(10.0f, 9.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + verticalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(10.0f, 9.0f) + close() + moveTo(12.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(16.5f, 9.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + horizontalLineToRelative(-4.0f) + close() + moveTo(4.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(12.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(16.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(22.0f, 6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + lineTo(4.0f, 4.0f) + close() + moveTo(20.0f, 5.5f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + verticalLineToRelative(12.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + lineTo(7.5f, 18.5f) + verticalLineToRelative(-13.0f) + lineTo(20.0f, 5.5f) + close() + moveTo(4.0f, 5.5f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(13.0f) + lineTo(4.0f, 18.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(3.5f, 6.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + close() + } + } + return _album!! + } + +private var _album: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlbumAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlbumAdd.kt new file mode 100644 index 00000000..27657110 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlbumAdd.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AlbumAdd: ImageVector + get() { + if (_albumAdd != null) { + return _albumAdd!! + } + _albumAdd = fluentIcon(name = "Regular.AlbumAdd") { + fluentPath { + moveTo(2.0f, 6.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(16.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + verticalLineToRelative(12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-7.5f) + curveToRelative(0.2f, -0.47f, 0.34f, -0.98f, 0.42f, -1.5f) + lineTo(20.0f, 18.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(20.5f, 6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + lineTo(7.5f, 5.5f) + verticalLineToRelative(5.58f) + arcToRelative(6.55f, 6.55f, 0.0f, false, false, -1.5f, -0.06f) + lineTo(6.0f, 5.5f) + lineTo(4.0f, 5.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(5.73f) + curveToRelative(-0.55f, 0.29f, -1.06f, 0.65f, -1.5f, 1.08f) + lineTo(2.0f, 6.0f) + close() + moveTo(12.0f, 7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(18.0f, 9.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(16.0f, 8.5f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + verticalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(11.5f, 9.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(4.0f) + close() + moveTo(6.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(7.0f, 20.5f) + lineTo(7.0f, 18.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + lineTo(7.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -1.0f, 0.0f) + lineTo(6.0f, 17.0f) + lineTo(3.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + lineTo(6.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) + close() + } + } + return _albumAdd!! + } + +private var _albumAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlertBadge.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlertBadge.kt new file mode 100644 index 00000000..7ebe663b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlertBadge.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AlertBadge: ImageVector + get() { + if (_alertBadge != null) { + return _alertBadge!! + } + _alertBadge = fluentIcon(name = "Regular.AlertBadge") { + fluentPath { + moveTo(11.99f, 2.0f) + curveToRelative(1.45f, 0.0f, 2.8f, 0.4f, 3.95f, 1.11f) + curveToRelative(-0.35f, 0.37f, -0.61f, 0.8f, -0.77f, 1.29f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, -9.2f, 5.1f) + verticalLineToRelative(4.4f) + lineTo(4.64f, 17.0f) + horizontalLineToRelative(14.72f) + lineTo(18.0f, 13.9f) + lineTo(18.0f, 9.28f) + lineToRelative(-0.03f, -0.32f) + arcToRelative(3.54f, 3.54f, 0.0f, false, false, 1.5f, -0.1f) + lineToRelative(0.02f, 0.38f) + verticalLineToRelative(4.35f) + lineToRelative(1.39f, 3.16f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.15f, 1.75f) + lineTo(15.0f, 18.5f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.17f) + verticalLineToRelative(-0.18f) + lineTo(4.24f, 18.49f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.15f, -1.74f) + lineToRelative(1.38f, -3.16f) + lineTo(4.47f, 9.5f) + arcToRelative(7.5f, 7.5f, 0.0f, false, true, 7.5f, -7.5f) + close() + moveTo(13.49f, 18.5f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.14f) + verticalLineToRelative(-0.15f) + close() + moveTo(16.03f, 5.05f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 18.5f, 3.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -2.47f, 2.05f) + close() + } + } + return _alertBadge!! + } + +private var _alertBadge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlertOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlertOff.kt new file mode 100644 index 00000000..f5f364d2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlertOff.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AlertOff: ImageVector + get() { + if (_alertOff != null) { + return _alertOff!! + } + _alertOff = fluentIcon(name = "Regular.AlertOff") { + fluentPath { + moveToRelative(5.22f, 6.28f) + lineToRelative(-3.0f, -3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineToRelative(18.5f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-3.28f, -3.28f) + lineTo(15.0f, 18.5f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.18f) + verticalLineToRelative(-0.18f) + lineTo(4.27f, 18.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.14f, -1.75f) + lineTo(4.5f, 13.6f) + lineTo(4.5f, 9.5f) + curveToRelative(0.0f, -1.15f, 0.26f, -2.24f, 0.72f, -3.21f) + close() + moveTo(15.94f, 17.0f) + lineTo(6.36f, 7.43f) + arcTo(6.02f, 6.02f, 0.0f, false, false, 6.0f, 9.5f) + verticalLineToRelative(4.4f) + lineTo(4.66f, 17.0f) + horizontalLineToRelative(11.28f) + close() + moveTo(13.5f, 18.5f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.15f) + verticalLineToRelative(-0.15f) + close() + moveTo(18.0f, 13.9f) + lineTo(18.7f, 15.53f) + lineTo(20.9f, 17.71f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -0.02f, -0.96f) + lineToRelative(-1.38f, -3.16f) + lineTo(19.5f, 9.25f) + arcTo(7.5f, 7.5f, 0.0f, false, false, 7.04f, 3.86f) + lineToRelative(1.07f, 1.06f) + arcTo(5.99f, 5.99f, 0.0f, false, true, 18.0f, 9.28f) + lineTo(18.0f, 13.91f) + close() + } + } + return _alertOff!! + } + +private var _alertOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlertOn.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlertOn.kt new file mode 100644 index 00000000..b43072a6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlertOn.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AlertOn: ImageVector + get() { + if (_alertOn != null) { + return _alertOn!! + } + _alertOn = fluentIcon(name = "Regular.AlertOn") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(7.5f, 7.5f, 0.0f, false, true, 7.5f, 7.25f) + verticalLineToRelative(4.35f) + lineToRelative(1.38f, 3.15f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.15f, 1.75f) + lineTo(15.0f, 18.5f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.18f) + verticalLineToRelative(-0.18f) + lineTo(4.27f, 18.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.14f, -1.75f) + lineTo(4.5f, 13.6f) + lineTo(4.5f, 9.5f) + curveTo(4.5f, 5.35f, 7.85f, 2.0f, 12.0f, 2.0f) + close() + moveTo(13.5f, 18.5f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.15f) + verticalLineToRelative(-0.15f) + close() + moveTo(12.0f, 3.5f) + curveToRelative(-3.32f, 0.0f, -6.0f, 2.67f, -6.0f, 6.0f) + verticalLineToRelative(4.4f) + lineTo(4.66f, 17.0f) + horizontalLineToRelative(14.7f) + lineTo(18.0f, 13.9f) + lineTo(18.0f, 9.29f) + arcToRelative(5.99f, 5.99f, 0.0f, false, false, -6.0f, -5.78f) + close() + moveTo(21.0f, 8.25f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(21.0f, 9.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(1.0f, 8.25f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(1.0f, 9.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(1.0f, 8.25f) + close() + moveTo(22.6f, 2.55f) + curveToRelative(0.23f, 0.3f, 0.2f, 0.72f, -0.07f, 0.98f) + lineToRelative(-0.08f, 0.07f) + lineToRelative(-2.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, -1.13f) + lineToRelative(0.08f, -0.07f) + lineToRelative(2.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, 0.15f) + close() + moveTo(2.45f, 2.4f) + lineToRelative(2.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.9f, 1.2f) + lineToRelative(-2.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.9f, -1.2f) + close() + } + } + return _alertOn!! + } + +private var _alertOn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlertSnooze.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlertSnooze.kt new file mode 100644 index 00000000..d31a2afb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlertSnooze.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AlertSnooze: ImageVector + get() { + if (_alertSnooze != null) { + return _alertSnooze!! + } + _alertSnooze = fluentIcon(name = "Regular.AlertSnooze") { + fluentPath { + moveTo(12.0f, 3.5f) + curveToRelative(-3.1f, 0.0f, -6.0f, 2.43f, -6.0f, 6.25f) + verticalLineToRelative(4.15f) + lineTo(4.68f, 17.0f) + horizontalLineToRelative(14.67f) + lineTo(18.0f, 13.9f) + verticalLineToRelative(-2.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(1.84f) + lineToRelative(1.38f, 3.16f) + curveToRelative(0.36f, 0.82f, -0.24f, 1.75f, -1.15f, 1.75f) + lineTo(15.0f, 18.5f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.0f) + lineTo(4.3f, 18.5f) + curveToRelative(-0.9f, 0.0f, -1.5f, -0.91f, -1.15f, -1.74f) + lineTo(4.5f, 13.6f) + lineTo(4.5f, 9.75f) + arcToRelative(7.53f, 7.53f, 0.0f, false, true, 10.0f, -7.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.5f, 1.42f) + arcToRelative(5.96f, 5.96f, 0.0f, false, false, -2.0f, -0.35f) + close() + moveTo(12.0f, 20.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + horizontalLineToRelative(-3.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + close() + moveTo(15.25f, 7.0f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(1.04f) + lineToRelative(-1.65f, 2.31f) + lineToRelative(-0.06f, 0.1f) + curveToRelative(-0.25f, 0.48f, 0.1f, 1.09f, 0.67f, 1.09f) + horizontalLineToRelative(2.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-1.04f) + lineToRelative(1.65f, -2.31f) + lineToRelative(0.06f, -0.1f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 15.25f, 7.0f) + close() + moveTo(21.25f, 2.0f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(2.13f) + lineToRelative(-2.76f, 4.35f) + lineToRelative(-0.05f, 0.09f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 17.75f, 9.0f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-2.13f) + lineToRelative(2.76f, -4.35f) + lineToRelative(0.05f, -0.09f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 21.25f, 2.0f) + close() + } + } + return _alertSnooze!! + } + +private var _alertSnooze: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlertUrgent.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlertUrgent.kt new file mode 100644 index 00000000..7b27b0b4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlertUrgent.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AlertUrgent: ImageVector + get() { + if (_alertUrgent != null) { + return _alertUrgent!! + } + _alertUrgent = fluentIcon(name = "Regular.AlertUrgent") { + fluentPath { + moveToRelative(10.43f, 19.92f) + lineToRelative(3.56f, -1.5f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -3.56f, 1.5f) + close() + moveTo(15.86f, 2.1f) + arcToRelative(11.72f, 11.72f, 0.0f, false, true, 4.68f, 4.4f) + arcTo(11.72f, 11.72f, 0.0f, false, true, 22.0f, 12.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, -0.04f) + curveToRelative(0.05f, -2.1f, -0.37f, -3.92f, -1.26f, -5.46f) + arcToRelative(10.23f, 10.23f, 0.0f, false, false, -4.1f, -3.82f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.72f, -1.32f) + close() + moveTo(6.71f, 6.52f) + arcToRelative(5.82f, 5.82f, 0.0f, false, true, 7.6f, 2.74f) + lineToRelative(0.1f, 0.21f) + lineToRelative(1.29f, 2.9f) + lineToRelative(1.7f, 1.46f) + curveToRelative(0.09f, 0.08f, 0.17f, 0.18f, 0.26f, 0.33f) + lineToRelative(0.06f, 0.11f) + curveToRelative(0.28f, 0.63f, 0.0f, 1.37f, -0.64f, 1.65f) + lineTo(6.76f, 20.49f) + arcTo(1.25f, 1.25f, 0.0f, false, true, 5.0f, 19.35f) + lineTo(5.0f, 17.0f) + lineToRelative(-1.24f, -2.79f) + arcToRelative(5.82f, 5.82f, 0.0f, false, true, 2.95f, -7.7f) + close() + moveTo(5.13f, 13.6f) + lineTo(6.5f, 16.7f) + verticalLineToRelative(2.27f) + lineToRelative(9.61f, -4.25f) + lineToRelative(-1.65f, -1.43f) + lineToRelative(-1.41f, -3.19f) + lineToRelative(-0.09f, -0.18f) + arcToRelative(4.32f, 4.32f, 0.0f, false, false, -7.83f, 3.7f) + close() + moveTo(15.63f, 5.7f) + curveToRelative(0.96f, 0.52f, 1.74f, 1.29f, 2.31f, 2.28f) + curveToRelative(0.57f, 1.0f, 0.85f, 2.05f, 0.82f, 3.15f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, -0.03f) + curveToRelative(0.02f, -0.82f, -0.18f, -1.6f, -0.62f, -2.37f) + arcToRelative(4.42f, 4.42f, 0.0f, false, false, -1.73f, -1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.71f, -1.32f) + close() + } + } + return _alertUrgent!! + } + +private var _alertUrgent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlignBottom.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlignBottom.kt new file mode 100644 index 00000000..e2ce3912 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlignBottom.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AlignBottom: ImageVector + get() { + if (_alignBottom != null) { + return _alignBottom!! + } + _alignBottom = fluentIcon(name = "Regular.AlignBottom") { + fluentPath { + moveTo(2.75f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(2.75f, 21.0f) + close() + moveTo(4.0f, 15.75f) + curveTo(4.0f, 16.99f, 5.0f, 18.0f, 6.25f, 18.0f) + horizontalLineToRelative(2.5f) + curveTo(9.99f, 18.0f, 11.0f, 17.0f, 11.0f, 15.75f) + lineTo(11.0f, 5.25f) + curveTo(11.0f, 4.01f, 10.0f, 3.0f, 8.75f, 3.0f) + horizontalLineToRelative(-2.5f) + curveTo(5.01f, 3.0f, 4.0f, 4.0f, 4.0f, 5.25f) + verticalLineToRelative(10.5f) + close() + moveTo(6.25f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(5.5f, 5.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-2.5f) + close() + moveTo(13.0f, 15.75f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(2.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-7.0f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-2.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(7.0f) + close() + moveTo(15.25f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-7.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(7.0f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-2.5f) + close() + } + } + return _alignBottom!! + } + +private var _alignBottom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlignCenterHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlignCenterHorizontal.kt new file mode 100644 index 00000000..05d532f7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlignCenterHorizontal.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AlignCenterHorizontal: ImageVector + get() { + if (_alignCenterHorizontal != null) { + return _alignCenterHorizontal!! + } + _alignCenterHorizontal = fluentIcon(name = "Regular.AlignCenterHorizontal") { + fluentPath { + moveTo(21.25f, 12.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(20.0f, 11.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-2.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-2.5f) + curveTo(5.01f, 4.5f, 4.0f, 5.5f, 4.0f, 6.75f) + verticalLineToRelative(4.5f) + lineTo(2.75f, 11.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(4.0f, 12.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(2.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-4.5f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(2.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-2.5f) + horizontalLineToRelative(1.25f) + close() + moveTo(18.5f, 8.75f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-6.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(9.5f, 6.75f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(5.5f, 6.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + } + } + return _alignCenterHorizontal!! + } + +private var _alignCenterHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlignCenterVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlignCenterVertical.kt new file mode 100644 index 00000000..70f6958e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlignCenterVertical.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AlignCenterVertical: ImageVector + get() { + if (_alignCenterVertical != null) { + return _alignCenterVertical!! + } + _alignCenterVertical = fluentIcon(name = "Regular.AlignCenterVertical") { + fluentPath { + moveTo(11.25f, 21.25f) + lineTo(11.25f, 20.0f) + horizontalLineToRelative(-2.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(-4.5f) + curveTo(5.51f, 11.0f, 4.5f, 10.0f, 4.5f, 8.75f) + verticalLineToRelative(-2.5f) + curveTo(4.5f, 5.01f, 5.5f, 4.0f, 6.75f, 4.0f) + horizontalLineToRelative(4.5f) + lineTo(11.25f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(12.75f, 4.0f) + horizontalLineToRelative(4.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-4.5f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(2.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-2.5f) + verticalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(15.25f, 18.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(6.5f) + close() + moveTo(17.25f, 9.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(6.75f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(10.5f) + close() + } + } + return _alignCenterVertical!! + } + +private var _alignCenterVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlignLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlignLeft.kt new file mode 100644 index 00000000..d47ade3b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlignLeft.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AlignLeft: ImageVector + get() { + if (_alignLeft != null) { + return _alignLeft!! + } + _alignLeft = fluentIcon(name = "Regular.AlignLeft") { + fluentPath { + moveTo(3.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(3.0f, 2.75f) + close() + moveTo(8.25f, 4.0f) + curveTo(7.01f, 4.0f, 6.0f, 5.0f, 6.0f, 6.25f) + verticalLineToRelative(2.5f) + curveTo(6.0f, 9.99f, 7.0f, 11.0f, 8.25f, 11.0f) + horizontalLineToRelative(10.5f) + curveTo(19.99f, 11.0f, 21.0f, 10.0f, 21.0f, 8.75f) + verticalLineToRelative(-2.5f) + curveTo(21.0f, 5.01f, 20.0f, 4.0f, 18.75f, 4.0f) + lineTo(8.25f, 4.0f) + close() + moveTo(7.5f, 6.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(10.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(8.25f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-2.5f) + close() + moveTo(8.25f, 13.0f) + curveTo(7.01f, 13.0f, 6.0f, 14.0f, 6.0f, 15.25f) + verticalLineToRelative(2.5f) + curveTo(6.0f, 18.99f, 7.0f, 20.0f, 8.25f, 20.0f) + horizontalLineToRelative(7.0f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-7.0f) + close() + moveTo(7.5f, 15.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-2.5f) + close() + } + } + return _alignLeft!! + } + +private var _alignLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlignRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlignRight.kt new file mode 100644 index 00000000..6f7d0f01 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlignRight.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AlignRight: ImageVector + get() { + if (_alignRight != null) { + return _alignRight!! + } + _alignRight = fluentIcon(name = "Regular.AlignRight") { + fluentPath { + moveTo(21.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(21.0f, 2.75f) + close() + moveTo(15.75f, 4.0f) + curveTo(16.99f, 4.0f, 18.0f, 5.0f, 18.0f, 6.25f) + verticalLineToRelative(2.5f) + curveTo(18.0f, 9.99f, 17.0f, 11.0f, 15.75f, 11.0f) + lineTo(5.25f, 11.0f) + curveTo(4.01f, 11.0f, 3.0f, 10.0f, 3.0f, 8.75f) + verticalLineToRelative(-2.5f) + curveTo(3.0f, 5.01f, 4.0f, 4.0f, 5.25f, 4.0f) + horizontalLineToRelative(10.5f) + close() + moveTo(16.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(5.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(10.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-2.5f) + close() + moveTo(15.75f, 13.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-7.0f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(7.0f) + close() + moveTo(16.5f, 15.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(7.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-2.5f) + close() + } + } + return _alignRight!! + } + +private var _alignRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlignTop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlignTop.kt new file mode 100644 index 00000000..a2f1d9f3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AlignTop.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AlignTop: ImageVector + get() { + if (_alignTop != null) { + return _alignTop!! + } + _alignTop = fluentIcon(name = "Regular.AlignTop") { + fluentPath { + moveTo(2.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(2.75f, 3.0f) + close() + moveTo(4.0f, 8.25f) + curveTo(4.0f, 7.01f, 5.0f, 6.0f, 6.25f, 6.0f) + horizontalLineToRelative(2.5f) + curveTo(9.99f, 6.0f, 11.0f, 7.0f, 11.0f, 8.25f) + verticalLineToRelative(10.5f) + curveTo(11.0f, 19.99f, 10.0f, 21.0f, 8.75f, 21.0f) + horizontalLineToRelative(-2.5f) + curveTo(5.01f, 21.0f, 4.0f, 20.0f, 4.0f, 18.75f) + lineTo(4.0f, 8.25f) + close() + moveTo(6.25f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(9.5f, 8.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.5f) + close() + moveTo(13.0f, 8.25f) + curveTo(13.0f, 7.01f, 14.0f, 6.0f, 15.25f, 6.0f) + horizontalLineToRelative(2.5f) + curveTo(18.99f, 6.0f, 20.0f, 7.0f, 20.0f, 8.25f) + verticalLineToRelative(7.0f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-2.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-7.0f) + close() + moveTo(15.25f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(7.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.5f) + close() + } + } + return _alignTop!! + } + +private var _alignTop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AnimalCat.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AnimalCat.kt new file mode 100644 index 00000000..0c66e089 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AnimalCat.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AnimalCat: ImageVector + get() { + if (_animalCat != null) { + return _animalCat!! + } + _animalCat = fluentIcon(name = "Regular.AnimalCat") { + fluentPath { + moveTo(15.5f, 3.5f) + curveToRelative(-0.85f, 0.08f, -1.5f, 0.79f, -1.5f, 1.65f) + lineTo(14.0f, 10.0f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.76f, 0.75f) + curveToRelative(-1.44f, 0.0f, -2.45f, 0.59f, -3.2f, 1.49f) + arcToRelative(8.67f, 8.67f, 0.0f, false, false, -1.6f, 3.56f) + arcToRelative(19.66f, 19.66f, 0.0f, false, false, -0.47f, 4.7f) + lineTo(15.0f, 20.5f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + lineTo(11.5f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.25f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 3.75f, 3.75f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(0.75f) + curveToRelative(0.42f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-10.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(0.5f) + curveToRelative(0.99f, 0.0f, 1.58f, -1.08f, 1.07f, -1.9f) + lineToRelative(-0.62f, -1.0f) + curveToRelative(-0.23f, -0.38f, -0.63f, -0.6f, -1.06f, -0.6f) + horizontalLineToRelative(-2.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(15.5f, 3.51f) + close() + moveTo(6.47f, 20.5f) + arcTo(23.85f, 23.85f, 0.0f, false, true, 7.0f, 15.45f) + curveToRelative(0.34f, -1.46f, 0.91f, -3.0f, 1.9f, -4.17f) + arcToRelative(5.4f, 5.4f, 0.0f, false, true, 3.6f, -1.99f) + lineTo(12.5f, 5.15f) + arcTo(3.15f, 3.15f, 0.0f, false, true, 15.64f, 2.0f) + curveTo(16.4f, 2.0f, 17.0f, 2.6f, 17.0f, 3.35f) + lineTo(17.0f, 4.0f) + horizontalLineToRelative(1.64f) + curveToRelative(0.95f, 0.0f, 1.83f, 0.5f, 2.33f, 1.3f) + lineToRelative(0.62f, 1.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.09f, 4.19f) + verticalLineToRelative(9.26f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(5.8f, 22.0f) + arcToRelative(3.8f, 3.8f, 0.0f, false, true, -2.78f, -6.39f) + lineToRelative(1.14f, -1.22f) + arcToRelative(3.06f, 3.06f, 0.0f, false, false, -0.08f, -4.25f) + lineTo(2.97f, 9.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineToRelative(1.11f, 1.11f) + arcToRelative(4.56f, 4.56f, 0.0f, false, true, 0.11f, 6.34f) + lineToRelative(-1.13f, 1.21f) + arcTo(2.3f, 2.3f, 0.0f, false, false, 5.8f, 20.5f) + horizontalLineToRelative(0.67f) + close() + } + } + return _animalCat!! + } + +private var _animalCat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AnimalDog.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AnimalDog.kt new file mode 100644 index 00000000..416e434c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AnimalDog.kt @@ -0,0 +1,101 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AnimalDog: ImageVector + get() { + if (_animalDog != null) { + return _animalDog!! + } + _animalDog = fluentIcon(name = "Regular.AnimalDog") { + fluentPath { + moveTo(13.25f, 2.0f) + horizontalLineToRelative(3.18f) + curveToRelative(0.51f, 0.0f, 1.01f, 0.14f, 1.45f, 0.4f) + lineToRelative(2.76f, 1.71f) + curveToRelative(0.22f, 0.14f, 0.36f, 0.38f, 0.36f, 0.64f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-0.25f) + verticalLineToRelative(9.05f) + curveToRelative(1.0f, 0.13f, 1.7f, 0.55f, 2.1f, 1.27f) + curveToRelative(0.22f, 0.4f, 0.31f, 0.84f, 0.36f, 1.25f) + curveToRelative(0.04f, 0.39f, 0.04f, 0.8f, 0.04f, 1.15f) + verticalLineToRelative(0.03f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(5.83f, 22.0f) + arcToRelative(3.83f, 3.83f, 0.0f, false, true, -1.97f, -7.12f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.78f, 1.28f) + arcToRelative(2.33f, 2.33f, 0.0f, false, false, 1.2f, 4.34f) + curveToRelative(0.31f, 0.0f, 0.51f, -0.08f, 0.64f, -0.18f) + curveToRelative(0.14f, -0.1f, 0.25f, -0.23f, 0.33f, -0.4f) + arcToRelative(1.93f, 1.93f, 0.0f, false, false, 0.19f, -0.7f) + verticalLineToRelative(-0.03f) + arcToRelative(7.94f, 7.94f, 0.0f, false, true, 0.03f, -0.65f) + curveToRelative(0.04f, -0.43f, 0.1f, -1.02f, 0.23f, -1.68f) + curveToRelative(0.26f, -1.29f, 0.8f, -2.97f, 1.96f, -4.14f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.54f, -3.36f) + curveTo(11.0f, 8.13f, 11.0f, 7.0f, 11.0f, 6.5f) + lineTo(11.0f, 4.25f) + curveTo(11.0f, 3.01f, 12.0f, 2.0f, 13.25f, 2.0f) + close() + moveTo(7.75f, 19.25f) + lineTo(8.5f, 19.28f) + verticalLineToRelative(0.04f) + arcToRelative(2.57f, 2.57f, 0.0f, false, true, -0.05f, 0.38f) + curveToRelative(-0.04f, 0.21f, -0.12f, 0.5f, -0.25f, 0.8f) + horizontalLineToRelative(7.25f) + arcToRelative(1.7f, 1.7f, 0.0f, false, false, -1.5f, -1.45f) + arcToRelative(4.7f, 4.7f, 0.0f, false, false, -0.98f, -0.05f) + horizontalLineToRelative(-0.2f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.03f, -1.5f) + horizontalLineToRelative(0.51f) + curveToRelative(0.23f, 0.0f, 0.5f, 0.0f, 0.75f, 0.04f) + verticalLineToRelative(-2.29f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(2.8f) + arcToRelative(3.24f, 3.24f, 0.0f, false, true, 1.46f, 2.45f) + horizontalLineToRelative(2.53f) + lineToRelative(-0.02f, -0.27f) + curveToRelative(-0.04f, -0.3f, -0.1f, -0.52f, -0.19f, -0.68f) + curveToRelative(-0.13f, -0.23f, -0.43f, -0.55f, -1.53f, -0.55f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(17.0f, 7.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(19.5f, 5.17f) + lineToRelative(-2.41f, -1.48f) + curveToRelative(-0.2f, -0.13f, -0.42f, -0.19f, -0.66f, -0.19f) + horizontalLineToRelative(-3.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(2.23f) + curveToRelative(0.01f, 0.23f, 0.1f, 0.43f, 0.2f, 0.56f) + curveToRelative(0.1f, 0.11f, 0.27f, 0.21f, 0.55f, 0.21f) + curveToRelative(0.29f, 0.0f, 0.45f, -0.1f, 0.56f, -0.22f) + curveToRelative(0.11f, -0.13f, 0.19f, -0.33f, 0.19f, -0.58f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + curveToRelative(0.0f, 0.55f, -0.18f, 1.13f, -0.57f, 1.57f) + curveToRelative(-0.4f, 0.46f, -0.98f, 0.73f, -1.68f, 0.73f) + curveToRelative(-0.31f, 0.0f, -0.6f, -0.05f, -0.86f, -0.15f) + curveToRelative(-0.03f, 0.33f, -0.08f, 0.68f, -0.15f, 1.04f) + arcToRelative(8.0f, 8.0f, 0.0f, false, true, -1.96f, 4.14f) + arcToRelative(6.78f, 6.78f, 0.0f, false, false, -1.54f, 3.38f) + arcToRelative(12.7f, 12.7f, 0.0f, false, false, -0.24f, 2.06f) + verticalLineToRelative(0.06f) + lineToRelative(-0.75f, -0.03f) + close() + moveTo(16.25f, 22.0f) + verticalLineToRelative(-0.75f) + close() + } + } + return _animalDog!! + } + +private var _animalDog: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AnimalRabbit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AnimalRabbit.kt new file mode 100644 index 00000000..39a77521 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AnimalRabbit.kt @@ -0,0 +1,117 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AnimalRabbit: ImageVector + get() { + if (_animalRabbit != null) { + return _animalRabbit!! + } + _animalRabbit = fluentIcon(name = "Regular.AnimalRabbit") { + fluentPath { + moveTo(7.75f, 19.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.74f, -2.58f) + lineTo(5.0f, 16.25f) + lineTo(5.0f, 15.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 2.56f, -4.56f) + curveToRelative(0.51f, -0.25f, 1.08f, -0.4f, 1.68f, -0.43f) + lineTo(9.5f, 10.0f) + horizontalLineToRelative(4.25f) + lineToRelative(0.24f, 0.03f) + lineToRelative(0.13f, 0.01f) + lineToRelative(0.11f, -0.16f) + lineToRelative(0.13f, -0.18f) + lineToRelative(-1.78f, -1.78f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.22f, -2.57f) + lineToRelative(0.1f, -0.13f) + lineToRelative(0.12f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.7f, -0.12f) + lineToRelative(0.14f, 0.12f) + lineToRelative(5.4f, 5.41f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -2.63f, 6.83f) + lineTo(17.78f, 17.33f) + lineToRelative(-0.03f, 0.06f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.14f, 1.59f) + lineToRelative(-0.19f, 0.01f) + lineToRelative(-0.17f, 0.01f) + horizontalLineToRelative(-7.5f) + close() + moveTo(14.35f, 6.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.76f, 0.64f) + lineToRelative(0.05f, 0.07f) + lineToRelative(2.81f, 2.81f) + lineToRelative(-0.64f, 0.64f) + curveToRelative(-0.2f, 0.21f, -0.38f, 0.45f, -0.52f, 0.7f) + lineToRelative(-0.1f, 0.19f) + lineToRelative(-0.26f, 0.58f) + lineToRelative(-0.62f, -0.17f) + curveToRelative(-0.2f, -0.05f, -0.4f, -0.09f, -0.6f, -0.1f) + lineToRelative(-0.21f, -0.01f) + horizontalLineToRelative(-4.0f) + curveToRelative(-0.7f, 0.0f, -1.34f, 0.24f, -1.85f, 0.64f) + lineToRelative(-0.15f, 0.12f) + lineToRelative(-0.16f, 0.16f) + lineToRelative(-0.1f, 0.1f) + lineToRelative(-0.1f, 0.13f) + lineToRelative(-0.13f, 0.17f) + lineToRelative(-0.04f, 0.06f) + lineToRelative(-0.11f, 0.2f) + lineToRelative(-0.06f, 0.11f) + lineToRelative(-0.06f, 0.14f) + lineToRelative(-0.04f, 0.08f) + lineToRelative(-0.05f, 0.15f) + lineToRelative(-0.05f, 0.18f) + lineToRelative(-0.06f, 0.3f) + lineToRelative(-0.02f, 0.08f) + lineToRelative(-0.01f, 0.19f) + lineToRelative(-0.01f, 0.19f) + verticalLineToRelative(1.75f) + curveToRelative(0.0f, 0.65f, 0.5f, 1.18f, 1.12f, 1.24f) + lineToRelative(0.13f, 0.01f) + lineTo(12.0f, 17.5f) + verticalLineToRelative(-0.25f) + curveToRelative(0.0f, -0.64f, -0.49f, -1.18f, -1.12f, -1.24f) + lineTo(9.75f, 16.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(1.1f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.58f) + lineTo(13.5f, 17.5f) + horizontalLineToRelative(1.75f) + curveToRelative(0.6f, 0.0f, 1.1f, -0.41f, 1.22f, -0.98f) + lineToRelative(0.02f, -0.12f) + lineToRelative(0.1f, -0.84f) + lineToRelative(0.82f, 0.2f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.48f, -4.07f) + lineToRelative(-0.12f, -0.13f) + lineToRelative(-5.41f, -5.4f) + close() + moveTo(5.0f, 10.5f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -0.14f, 3.0f) + horizontalLineToRelative(0.25f) + verticalLineToRelative(-0.03f) + lineToRelative(0.14f, -0.44f) + lineToRelative(0.1f, -0.25f) + lineToRelative(0.1f, -0.24f) + lineToRelative(0.05f, -0.11f) + lineToRelative(0.14f, -0.24f) + lineToRelative(0.08f, -0.14f) + lineToRelative(0.15f, -0.2f) + lineToRelative(0.07f, -0.1f) + lineToRelative(0.11f, -0.14f) + lineToRelative(0.13f, -0.15f) + lineToRelative(0.15f, -0.15f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -1.04f, -0.78f) + lineToRelative(-0.15f, -0.02f) + lineTo(5.0f, 10.5f) + close() + } + } + return _animalRabbit!! + } + +private var _animalRabbit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AnimalTurtle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AnimalTurtle.kt new file mode 100644 index 00000000..67b85079 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AnimalTurtle.kt @@ -0,0 +1,107 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AnimalTurtle: ImageVector + get() { + if (_animalTurtle != null) { + return _animalTurtle!! + } + _animalTurtle = fluentIcon(name = "Regular.AnimalTurtle") { + fluentPath { + moveTo(11.0f, 6.0f) + arcToRelative(6.14f, 6.14f, 0.0f, false, true, 5.8f, 4.12f) + lineToRelative(0.07f, 0.24f) + lineToRelative(0.05f, 0.14f) + horizontalLineToRelative(2.33f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.74f, 2.58f) + verticalLineToRelative(1.17f) + curveToRelative(0.0f, 0.92f, -0.7f, 1.67f, -1.6f, 1.74f) + horizontalLineToRelative(-1.77f) + lineToRelative(0.24f, 0.6f) + curveToRelative(0.35f, 0.84f, -0.01f, 1.8f, -0.81f, 2.21f) + lineToRelative(-0.14f, 0.07f) + curveToRelative(-0.16f, 0.06f, -0.32f, 0.1f, -0.5f, 0.12f) + horizontalLineToRelative(-1.95f) + curveToRelative(-0.63f, 0.0f, -1.2f, -0.33f, -1.51f, -0.86f) + lineToRelative(-0.08f, -0.14f) + lineToRelative(-0.53f, -1.14f) + horizontalLineToRelative(0.05f) + curveToRelative(-1.4f, 0.18f, -2.82f, 0.2f, -4.22f, 0.06f) + lineToRelative(-0.5f, -0.06f) + lineTo(8.14f, 18.0f) + curveToRelative(-0.3f, 0.61f, -0.9f, 1.0f, -1.59f, 1.0f) + horizontalLineToRelative(-1.8f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.62f, -2.41f) + lineToRelative(0.44f, -1.05f) + arcTo(3.24f, 3.24f, 0.0f, false, true, 2.0f, 12.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.64f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(1.89f) + lineToRelative(0.5f, -1.64f) + arcTo(6.14f, 6.14f, 0.0f, false, true, 11.0f, 6.0f) + close() + moveTo(17.77f, 15.7f) + curveToRelative(-0.77f, 0.3f, -1.55f, 0.56f, -2.35f, 0.76f) + lineToRelative(-0.55f, 0.13f) + lineToRelative(0.36f, 0.77f) + curveToRelative(0.03f, 0.05f, 0.07f, 0.09f, 0.12f, 0.11f) + lineToRelative(0.05f, 0.02f) + horizontalLineToRelative(1.84f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.25f, -0.27f) + lineToRelative(-0.02f, -0.07f) + lineTo(17.0f, 16.0f) + horizontalLineToRelative(-0.05f) + lineToRelative(0.42f, -0.15f) + lineToRelative(0.4f, -0.16f) + close() + moveTo(4.22f, 15.7f) + lineTo(4.62f, 15.84f) + lineTo(5.0f, 15.98f) + lineTo(4.52f, 17.15f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.23f, 0.34f) + horizontalLineToRelative(1.86f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.17f, -0.14f) + lineToRelative(0.36f, -0.76f) + horizontalLineToRelative(0.04f) + curveToRelative(-1.0f, -0.2f, -2.0f, -0.51f, -2.96f, -0.9f) + close() + moveTo(11.0f, 7.5f) + arcToRelative(4.64f, 4.64f, 0.0f, false, false, -4.37f, 3.08f) + lineToRelative(-0.07f, 0.21f) + lineToRelative(-1.14f, 3.75f) + lineToRelative(0.17f, 0.06f) + arcToRelative(16.67f, 16.67f, 0.0f, false, false, 10.41f, 0.13f) + lineToRelative(0.41f, -0.13f) + lineToRelative(0.16f, -0.06f) + lineToRelative(-1.13f, -3.75f) + arcToRelative(4.64f, 4.64f, 0.0f, false, false, -4.0f, -3.27f) + lineToRelative(-0.23f, -0.02f) + lineTo(11.0f, 7.5f) + close() + moveTo(4.02f, 14.0f) + lineToRelative(0.15f, -0.5f) + horizontalLineToRelative(-0.5f) + lineToRelative(0.02f, 0.05f) + curveToRelative(0.09f, 0.17f, 0.2f, 0.32f, 0.33f, 0.45f) + close() + moveTo(17.37f, 12.0f) + lineTo(18.13f, 14.5f) + horizontalLineToRelative(2.12f) + curveToRelative(0.11f, 0.0f, 0.21f, -0.08f, 0.24f, -0.2f) + verticalLineToRelative(-1.05f) + curveToRelative(0.0f, -0.65f, -0.49f, -1.18f, -1.12f, -1.24f) + horizontalLineToRelative(-0.12f) + lineTo(17.37f, 12.0f) + close() + } + } + return _animalTurtle!! + } + +private var _animalTurtle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AppFolder.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AppFolder.kt new file mode 100644 index 00000000..6d27ddc8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AppFolder.kt @@ -0,0 +1,122 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AppFolder: ImageVector + get() { + if (_appFolder != null) { + return _appFolder!! + } + _appFolder = fluentIcon(name = "Regular.AppFolder") { + fluentPath { + moveTo(11.5f, 14.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-2.0f) + curveToRelative(-0.96f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(2.0f) + curveTo(6.0f, 17.22f, 6.8f, 18.0f, 7.75f, 18.0f) + horizontalLineToRelative(2.0f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-2.0f) + close() + moveTo(7.75f, 14.0f) + horizontalLineToRelative(2.0f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + close() + moveTo(18.0f, 14.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-2.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(2.0f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-2.0f) + close() + moveTo(14.25f, 14.0f) + horizontalLineToRelative(2.0f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + close() + moveTo(11.5f, 7.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-2.0f) + curveTo(6.78f, 6.0f, 6.0f, 6.78f, 6.0f, 7.75f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(2.0f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-2.0f) + close() + moveTo(7.75f, 7.5f) + horizontalLineToRelative(2.0f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + close() + moveTo(18.0f, 7.75f) + curveTo(18.0f, 6.78f, 17.2f, 6.0f, 16.25f, 6.0f) + horizontalLineToRelative(-2.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(2.0f) + curveToRelative(0.96f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-2.0f) + close() + moveTo(14.25f, 7.5f) + horizontalLineToRelative(2.0f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + close() + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 6.25f) + close() + } + } + return _appFolder!! + } + +private var _appFolder: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AppGeneric.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AppGeneric.kt new file mode 100644 index 00000000..0ecff54c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AppGeneric.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AppGeneric: ImageVector + get() { + if (_appGeneric != null) { + return _appGeneric!! + } + _appGeneric = fluentIcon(name = "Regular.AppGeneric") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(0.25f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(-0.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(6.25f, 4.5f) + close() + moveTo(4.5f, 17.75f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 8.0f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(9.75f) + close() + moveTo(6.85f, 9.5f) + horizontalLineToRelative(3.3f) + curveToRelative(0.47f, 0.0f, 0.85f, 0.38f, 0.85f, 0.85f) + verticalLineToRelative(6.8f) + curveToRelative(0.0f, 0.47f, -0.38f, 0.85f, -0.85f, 0.85f) + horizontalLineToRelative(-3.3f) + arcToRelative(0.85f, 0.85f, 0.0f, false, true, -0.85f, -0.85f) + verticalLineToRelative(-6.8f) + curveToRelative(0.0f, -0.47f, 0.38f, -0.85f, 0.85f, -0.85f) + close() + moveTo(7.5f, 16.5f) + horizontalLineToRelative(2.0f) + lineTo(9.5f, 11.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(5.5f) + close() + moveTo(12.0f, 10.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(12.75f, 12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + close() + } + } + return _appGeneric!! + } + +private var _appGeneric: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AppRecent.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AppRecent.kt new file mode 100644 index 00000000..973b6112 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AppRecent.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AppRecent: ImageVector + get() { + if (_appRecent != null) { + return _appRecent!! + } + _appRecent = fluentIcon(name = "Regular.AppRecent") { + fluentPath { + moveTo(15.75f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + lineTo(18.0f, 5.0f) + horizontalLineToRelative(1.75f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + lineTo(18.0f, 19.0f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + horizontalLineToRelative(-7.5f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(6.0f, 19.75f) + lineTo(6.0f, 19.0f) + lineTo(4.25f, 19.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(2.0f, 16.75f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 5.0f) + lineTo(6.0f, 5.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(8.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(15.75f, 3.5f) + horizontalLineToRelative(-7.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(7.5f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + lineTo(16.5f, 4.25f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + close() + moveTo(6.0f, 6.5f) + lineTo(4.25f, 6.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + lineTo(6.0f, 17.5f) + verticalLineToRelative(-11.0f) + close() + moveTo(19.75f, 6.5f) + lineTo(18.0f, 6.5f) + verticalLineToRelative(11.0f) + horizontalLineToRelative(1.75f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + verticalLineToRelative(-9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + } + } + return _appRecent!! + } + +private var _appRecent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AppStore.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AppStore.kt new file mode 100644 index 00000000..0e1f090c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AppStore.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AppStore: ImageVector + get() { + if (_appStore != null) { + return _appStore!! + } + _appStore = fluentIcon(name = "Regular.AppStore") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(9.37f, 15.25f) + lineToRelative(-0.51f, 0.88f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, -0.67f) + lineToRelative(0.04f, -0.09f) + lineToRelative(0.07f, -0.12f) + horizontalLineToRelative(1.74f) + close() + moveTo(13.29f, 10.02f) + lineTo(15.01f, 13.0f) + horizontalLineToRelative(1.74f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.29f, 0.75f, 0.65f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.75f) + horizontalLineToRelative(-0.97f) + lineToRelative(0.5f, 0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.24f, 0.84f) + lineToRelative(-0.06f, -0.09f) + lineToRelative(-2.66f, -4.6f) + lineToRelative(0.87f, -1.5f) + close() + moveTo(13.26f, 7.1f) + curveToRelative(0.33f, 0.2f, 0.46f, 0.6f, 0.32f, 0.94f) + lineToRelative(-0.05f, 0.09f) + lineTo(10.68f, 13.0f) + horizontalLineToRelative(1.73f) + lineToRelative(0.87f, 1.5f) + lineTo(7.25f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + horizontalLineToRelative(1.8f) + lineToRelative(2.18f, -3.74f) + lineToRelative(-0.67f, -1.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.2f, -0.96f) + lineToRelative(0.08f, -0.06f) + curveToRelative(0.33f, -0.19f, 0.74f, -0.1f, 0.97f, 0.19f) + lineToRelative(0.05f, 0.08f) + lineToRelative(0.24f, 0.41f) + lineToRelative(0.24f, -0.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.02f, -0.28f) + close() + } + } + return _appStore!! + } + +private var _appStore: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AppTitle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AppTitle.kt new file mode 100644 index 00000000..6326b01d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AppTitle.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AppTitle: ImageVector + get() { + if (_appTitle != null) { + return _appTitle!! + } + _appTitle = fluentIcon(name = "Regular.AppTitle") { + fluentPath { + moveTo(4.75f, 20.5f) + horizontalLineToRelative(14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(4.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(14.6f) + horizontalLineToRelative(-14.5f) + close() + moveTo(16.25f, 3.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 20.0f, 6.75f) + verticalLineToRelative(8.5f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 16.25f, 19.0f) + horizontalLineToRelative(-8.5f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 4.0f, 15.25f) + verticalLineToRelative(-8.5f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 7.75f, 3.0f) + horizontalLineToRelative(8.5f) + close() + moveTo(16.25f, 4.5f) + horizontalLineToRelative(-8.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(8.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + close() + } + } + return _appTitle!! + } + +private var _appTitle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ApprovalsApp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ApprovalsApp.kt new file mode 100644 index 00000000..38d38978 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ApprovalsApp.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ApprovalsApp: ImageVector + get() { + if (_approvalsApp != null) { + return _approvalsApp!! + } + _approvalsApp = fluentIcon(name = "Regular.ApprovalsApp") { + fluentPath { + moveTo(11.78f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(11.94f, 4.0f) + arcToRelative(9.0f, 9.0f, 0.0f, true, false, 9.02f, 9.82f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, -0.13f) + arcToRelative(7.5f, 7.5f, 0.0f, true, true, -7.52f, -8.19f) + lineToRelative(-1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.06f) + lineToRelative(-2.5f, -2.5f) + close() + moveTo(15.78f, 10.22f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-4.5f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 0.0f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineToRelative(1.47f, 1.47f) + lineToRelative(3.97f, -3.97f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + } + } + return _approvalsApp!! + } + +private var _approvalsApp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Apps.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Apps.kt new file mode 100644 index 00000000..07702ba2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Apps.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Apps: ImageVector + get() { + if (_apps != null) { + return _apps!! + } + _apps = fluentIcon(name = "Regular.Apps") { + fluentPath { + moveToRelative(18.5f, 2.33f) + lineToRelative(3.17f, 3.18f) + curveToRelative(0.88f, 0.88f, 0.88f, 2.3f, 0.0f, 3.18f) + lineToRelative(-2.58f, 2.59f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 21.0f, 13.5f) + verticalLineToRelative(5.25f) + curveTo(21.0f, 20.0f, 20.0f, 21.0f, 18.75f, 21.0f) + lineTo(5.25f, 21.0f) + curveTo(4.01f, 21.0f, 3.0f, 20.0f, 3.0f, 18.75f) + lineTo(3.0f, 5.25f) + curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(5.25f) + curveToRelative(1.13f, 0.0f, 2.06f, 0.83f, 2.23f, 1.92f) + lineToRelative(2.58f, -2.59f) + curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.0f) + close() + moveTo(4.5f, 18.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(-6.75f) + lineTo(4.5f, 12.75f) + verticalLineToRelative(6.0f) + close() + moveTo(12.75f, 19.5f) + horizontalLineToRelative(6.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(19.5f, 13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-6.0f) + verticalLineToRelative(6.75f) + close() + moveTo(10.5f, 4.5f) + lineTo(5.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.0f) + horizontalLineToRelative(6.75f) + verticalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(12.75f, 9.31f) + verticalLineToRelative(1.94f) + horizontalLineToRelative(1.94f) + lineToRelative(-1.94f, -1.94f) + close() + moveTo(16.37f, 3.39f) + lineTo(13.2f, 6.57f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(3.18f, 3.18f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(3.18f, -3.18f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-3.18f, -3.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + close() + } + } + return _apps!! + } + +private var _apps: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AppsAddIn.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AppsAddIn.kt new file mode 100644 index 00000000..e8a82f0a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AppsAddIn.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AppsAddIn: ImageVector + get() { + if (_appsAddIn != null) { + return _appsAddIn!! + } + _appsAddIn = fluentIcon(name = "Regular.AppsAddIn") { + fluentPath { + moveTo(10.5f, 3.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(6.0f) + horizontalLineToRelative(6.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(5.25f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(5.25f, 21.0f) + curveTo(4.01f, 21.0f, 3.0f, 20.0f, 3.0f, 18.75f) + lineTo(3.0f, 5.25f) + curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(5.25f) + close() + moveTo(11.25f, 12.75f) + lineTo(4.5f, 12.75f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(-6.75f) + close() + moveTo(18.75f, 12.75f) + horizontalLineToRelative(-6.0f) + verticalLineToRelative(6.75f) + horizontalLineToRelative(6.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(19.5f, 13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(10.5f, 4.5f) + lineTo(5.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.0f) + horizontalLineToRelative(6.75f) + verticalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(17.9f, 2.0f) + horizontalLineToRelative(0.1f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(2.5f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineTo(22.0f, 6.0f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-2.5f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineTo(18.0f, 10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-2.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineTo(14.0f, 6.0f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + close() + } + } + return _appsAddIn!! + } + +private var _appsAddIn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AppsList.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AppsList.kt new file mode 100644 index 00000000..1363e8de --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AppsList.kt @@ -0,0 +1,106 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AppsList: ImageVector + get() { + if (_appsList != null) { + return _appsList!! + } + _appsList = fluentIcon(name = "Regular.AppsList") { + fluentPath { + moveTo(6.25f, 16.0f) + curveTo(7.2f, 16.0f, 8.0f, 16.8f, 8.0f, 17.75f) + verticalLineToRelative(2.5f) + curveTo(8.0f, 21.22f, 7.2f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(-2.5f) + curveTo(2.78f, 22.0f, 2.0f, 21.22f, 2.0f, 20.25f) + verticalLineToRelative(-2.5f) + curveTo(2.0f, 16.8f, 2.78f, 16.0f, 3.75f, 16.0f) + horizontalLineToRelative(2.5f) + close() + moveTo(6.25f, 17.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(2.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(9.75f, 18.0f) + horizontalLineToRelative(11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(9.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(11.6f) + horizontalLineToRelative(-11.5f) + close() + moveTo(6.25f, 9.0f) + curveTo(7.2f, 9.0f, 8.0f, 9.78f, 8.0f, 10.75f) + verticalLineToRelative(2.5f) + curveTo(8.0f, 14.22f, 7.2f, 15.0f, 6.25f, 15.0f) + horizontalLineToRelative(-2.5f) + curveTo(2.78f, 15.0f, 2.0f, 14.22f, 2.0f, 13.25f) + verticalLineToRelative(-2.5f) + curveTo(2.0f, 9.78f, 2.78f, 9.0f, 3.75f, 9.0f) + horizontalLineToRelative(2.5f) + close() + moveTo(6.25f, 10.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(2.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(9.75f, 11.0f) + horizontalLineToRelative(11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(9.75f, 12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(11.6f) + horizontalLineToRelative(-11.5f) + close() + moveTo(6.25f, 2.0f) + curveTo(7.2f, 2.0f, 8.0f, 2.78f, 8.0f, 3.75f) + verticalLineToRelative(2.5f) + curveTo(8.0f, 7.2f, 7.2f, 8.0f, 6.25f, 8.0f) + horizontalLineToRelative(-2.5f) + curveTo(2.78f, 8.0f, 2.0f, 7.2f, 2.0f, 6.25f) + verticalLineToRelative(-2.5f) + curveTo(2.0f, 2.78f, 2.78f, 2.0f, 3.75f, 2.0f) + horizontalLineToRelative(2.5f) + close() + moveTo(6.25f, 3.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(2.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(9.75f, 4.0f) + horizontalLineToRelative(11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(9.75f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(11.6f) + horizontalLineToRelative(-11.5f) + close() + } + } + return _appsList!! + } + +private var _appsList: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AppsListDetail.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AppsListDetail.kt new file mode 100644 index 00000000..8a61a78e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AppsListDetail.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AppsListDetail: ImageVector + get() { + if (_appsListDetail != null) { + return _appsListDetail!! + } + _appsListDetail = fluentIcon(name = "Regular.AppsListDetail") { + fluentPath { + moveTo(4.25f, 4.0f) + curveTo(3.01f, 4.0f, 2.0f, 5.0f, 2.0f, 6.25f) + verticalLineToRelative(2.5f) + curveTo(2.0f, 9.99f, 3.0f, 11.0f, 4.25f, 11.0f) + horizontalLineToRelative(2.5f) + curveTo(7.99f, 11.0f, 9.0f, 10.0f, 9.0f, 8.75f) + verticalLineToRelative(-2.5f) + curveTo(9.0f, 5.01f, 8.0f, 4.0f, 6.75f, 4.0f) + horizontalLineToRelative(-2.5f) + close() + moveTo(3.5f, 6.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-2.5f) + close() + moveTo(11.25f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-10.0f) + close() + moveTo(11.25f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-7.0f) + close() + moveTo(4.25f, 13.0f) + curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) + verticalLineToRelative(2.5f) + curveTo(2.0f, 18.99f, 3.0f, 20.0f, 4.25f, 20.0f) + horizontalLineToRelative(2.5f) + curveTo(7.99f, 20.0f, 9.0f, 19.0f, 9.0f, 17.75f) + verticalLineToRelative(-2.5f) + curveTo(9.0f, 14.01f, 8.0f, 13.0f, 6.75f, 13.0f) + horizontalLineToRelative(-2.5f) + close() + moveTo(3.5f, 15.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-2.5f) + close() + moveTo(11.25f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-10.0f) + close() + moveTo(11.25f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-7.0f) + close() + } + } + return _appsListDetail!! + } + +private var _appsListDetail: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Archive.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Archive.kt new file mode 100644 index 00000000..c1ea4e8c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Archive.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Archive: ImageVector + get() { + if (_archive != null) { + return _archive!! + } + _archive = fluentIcon(name = "Regular.Archive") { + fluentPath { + moveTo(10.25f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + close() + moveTo(3.0f, 5.25f) + curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(13.5f) + curveTo(19.99f, 3.0f, 21.0f, 4.0f, 21.0f, 5.25f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.78f, -0.4f, 1.47f, -1.0f, 1.87f) + verticalLineToRelative(8.63f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 16.25f, 21.0f) + horizontalLineToRelative(-8.5f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 4.0f, 17.25f) + lineTo(4.0f, 8.62f) + curveToRelative(-0.6f, -0.4f, -1.0f, -1.09f, -1.0f, -1.87f) + verticalLineToRelative(-1.5f) + close() + moveTo(5.5f, 9.0f) + verticalLineToRelative(8.25f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(8.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(18.5f, 9.0f) + horizontalLineToRelative(-13.0f) + close() + moveTo(5.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(5.25f, 4.5f) + close() + } + } + return _archive!! + } + +private var _archive: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArchiveArrowBack.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArchiveArrowBack.kt new file mode 100644 index 00000000..dbe32751 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArchiveArrowBack.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArchiveArrowBack: ImageVector + get() { + if (_archiveArrowBack != null) { + return _archiveArrowBack!! + } + _archiveArrowBack = fluentIcon(name = "Regular.ArchiveArrowBack") { + fluentPath { + moveTo(10.25f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.1f) + curveToRelative(0.35f, -0.3f, 0.74f, -0.55f, 1.15f, -0.77f) + curveToRelative(-0.01f, -0.4f, -0.34f, -0.73f, -0.75f, -0.73f) + horizontalLineToRelative(-3.5f) + close() + moveTo(7.75f, 19.5f) + horizontalLineToRelative(3.56f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(7.75f, 21.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 4.0f, 17.25f) + lineTo(4.0f, 8.62f) + curveToRelative(-0.6f, -0.4f, -1.0f, -1.09f, -1.0f, -1.87f) + verticalLineToRelative(-1.5f) + curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(13.5f) + curveTo(19.99f, 3.0f, 21.0f, 4.0f, 21.0f, 5.25f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.78f, -0.4f, 1.47f, -1.0f, 1.87f) + verticalLineToRelative(2.88f) + curveToRelative(-0.47f, -0.2f, -0.98f, -0.34f, -1.5f, -0.42f) + lineTo(18.5f, 9.0f) + horizontalLineToRelative(-13.0f) + verticalLineToRelative(8.25f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + close() + moveTo(5.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(5.25f, 4.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(16.35f, 15.35f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(1.5f, 1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-0.64f, -0.65f) + horizontalLineToRelative(2.04f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(0.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-0.25f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-2.04f) + lineToRelative(0.64f, -0.65f) + close() + } + } + return _archiveArrowBack!! + } + +private var _archiveArrowBack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArchiveMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArchiveMultiple.kt new file mode 100644 index 00000000..b5a185dc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArchiveMultiple.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArchiveMultiple: ImageVector + get() { + if (_archiveMultiple != null) { + return _archiveMultiple!! + } + _archiveMultiple = fluentIcon(name = "Regular.ArchiveMultiple") { + fluentPath { + moveTo(9.75f, 10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.48f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(9.75f, 10.5f) + close() + moveTo(4.75f, 2.0f) + curveTo(3.78f, 2.0f, 3.0f, 2.78f, 3.0f, 3.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.7f, 0.4f, 1.3f, 1.0f, 1.58f) + verticalLineToRelative(7.92f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 3.75f, 3.75f) + horizontalLineToRelative(7.5f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 19.0f, 15.75f) + lineTo(19.0f, 7.83f) + curveToRelative(0.6f, -0.28f, 1.0f, -0.88f, 1.0f, -1.58f) + verticalLineToRelative(-2.5f) + curveTo(20.0f, 2.78f, 19.22f, 2.0f, 18.25f, 2.0f) + lineTo(4.75f, 2.0f) + close() + moveTo(5.5f, 15.75f) + lineTo(5.5f, 8.0f) + horizontalLineToRelative(12.0f) + verticalLineToRelative(7.75f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-7.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + close() + moveTo(4.5f, 3.75f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(13.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + lineTo(4.75f, 6.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-2.5f) + close() + moveTo(21.5f, 11.75f) + curveToRelative(0.0f, -1.23f, -0.59f, -2.32f, -1.5f, -3.0f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 2.35f, -1.9f, 4.25f, -4.25f, 4.25f) + horizontalLineToRelative(-8.5f) + curveToRelative(0.68f, 0.91f, 1.77f, 1.5f, 3.0f, 1.5f) + horizontalLineToRelative(5.5f) + arcToRelative(5.75f, 5.75f, 0.0f, false, false, 5.75f, -5.75f) + verticalLineToRelative(-4.5f) + close() + } + } + return _archiveMultiple!! + } + +private var _archiveMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArchiveSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArchiveSettings.kt new file mode 100644 index 00000000..a0deb36e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArchiveSettings.kt @@ -0,0 +1,91 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArchiveSettings: ImageVector + get() { + if (_archiveSettings != null) { + return _archiveSettings!! + } + _archiveSettings = fluentIcon(name = "Regular.ArchiveSettings") { + fluentPath { + moveTo(3.0f, 5.25f) + curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(13.5f) + curveTo(19.99f, 3.0f, 21.0f, 4.0f, 21.0f, 5.25f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.78f, -0.4f, 1.47f, -1.0f, 1.87f) + verticalLineToRelative(2.88f) + curveToRelative(-0.47f, -0.2f, -0.98f, -0.34f, -1.5f, -0.42f) + lineTo(18.5f, 9.0f) + horizontalLineToRelative(-13.0f) + verticalLineToRelative(8.25f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(3.56f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(7.75f, 21.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 4.0f, 17.25f) + lineTo(4.0f, 8.62f) + curveToRelative(-0.6f, -0.4f, -1.0f, -1.09f, -1.0f, -1.87f) + verticalLineToRelative(-1.5f) + close() + moveTo(5.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(5.25f, 4.5f) + close() + moveTo(13.75f, 11.0f) + curveToRelative(0.4f, 0.0f, 0.74f, 0.33f, 0.75f, 0.73f) + curveToRelative(-0.41f, 0.22f, -0.8f, 0.48f, -1.15f, 0.77f) + horizontalLineToRelative(-3.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.5f) + close() + moveTo(14.28f, 13.98f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.59f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) + lineToRelative(0.55f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) + lineToRelative(-0.19f, 0.64f) + curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) + lineToRelative(0.49f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.9f) + lineToRelative(-0.2f, -0.7f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) + lineToRelative(0.59f, -0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, -0.01f, -1.8f) + lineToRelative(-0.54f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.19f, -0.63f) + curveToRelative(-0.44f, -0.39f, -0.94f, -0.7f, -1.49f, -0.93f) + lineToRelative(-0.49f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.91f) + lineToRelative(0.2f, 0.69f) + close() + moveTo(17.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) + close() + } + } + return _archiveSettings!! + } + +private var _archiveSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowAutofitContent.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowAutofitContent.kt new file mode 100644 index 00000000..8bd0b240 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowAutofitContent.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowAutofitContent: ImageVector + get() { + if (_arrowAutofitContent != null) { + return _arrowAutofitContent!! + } + _arrowAutofitContent = fluentIcon(name = "Regular.ArrowAutofitContent") { + fluentPath { + moveTo(6.0f, 4.19f) + curveToRelative(0.3f, 0.27f, 0.34f, 0.74f, 0.06f, 1.05f) + lineTo(5.4f, 6.0f) + horizontalLineToRelative(2.86f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(5.4f, 7.5f) + lineToRelative(0.66f, 0.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.12f, 0.98f) + lineToRelative(-1.75f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -0.98f) + lineToRelative(1.75f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, -0.07f) + close() + moveTo(17.95f, 5.24f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, -0.98f) + lineToRelative(1.75f, 2.0f) + curveToRelative(0.25f, 0.28f, 0.25f, 0.7f, 0.0f, 0.98f) + lineToRelative(-1.75f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) + lineToRelative(0.66f, -0.76f) + horizontalLineToRelative(-2.86f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.86f) + lineToRelative(-0.66f, -0.76f) + close() + moveTo(6.0f, 15.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(6.75f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(5.75f, 11.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 13.75f) + verticalLineToRelative(4.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, 2.75f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 17.75f) + verticalLineToRelative(-4.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 11.0f) + lineTo(5.75f, 11.0f) + close() + moveTo(4.5f, 13.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(12.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + lineTo(5.75f, 19.0f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + verticalLineToRelative(-4.0f) + close() + } + } + return _arrowAutofitContent!! + } + +private var _arrowAutofitContent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowAutofitDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowAutofitDown.kt new file mode 100644 index 00000000..30c43b2d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowAutofitDown.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowAutofitDown: ImageVector + get() { + if (_arrowAutofitDown != null) { + return _arrowAutofitDown!! + } + _arrowAutofitDown = fluentIcon(name = "Regular.ArrowAutofitDown") { + fluentPath { + moveTo(13.22f, 17.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.98f) + lineToRelative(0.07f, 0.08f) + lineToRelative(2.37f, 2.37f) + curveToRelative(0.12f, 0.2f, 0.37f, 0.35f, 0.66f, 0.35f) + curveToRelative(0.25f, 0.0f, 0.48f, -0.1f, 0.61f, -0.28f) + lineToRelative(0.05f, -0.07f) + lineToRelative(2.37f, -2.37f) + lineToRelative(0.07f, -0.08f) + curveToRelative(0.2f, -0.27f, 0.2f, -0.62f, 0.01f, -0.89f) + lineToRelative(-0.08f, -0.1f) + lineToRelative(-0.08f, -0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.88f, -0.01f) + lineToRelative(-0.1f, 0.08f) + lineTo(17.0f, 18.44f) + verticalLineTo(3.56f) + curveToRelative(-0.06f, -0.31f, -0.37f, -0.56f, -0.75f, -0.56f) + reflectiveCurveToRelative(-0.7f, 0.25f, -0.74f, 0.57f) + lineToRelative(-0.01f, 0.09f) + verticalLineToRelative(14.78f) + lineToRelative(-1.22f, -1.22f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) + close() + moveTo(6.25f, 20.0f) + curveTo(5.01f, 20.0f, 4.0f, 19.0f, 4.0f, 17.76f) + verticalLineTo(6.26f) + curveTo(4.0f, 5.02f, 5.0f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.0f) + close() + } + } + return _arrowAutofitDown!! + } + +private var _arrowAutofitDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowAutofitHeight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowAutofitHeight.kt new file mode 100644 index 00000000..b6290bb3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowAutofitHeight.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowAutofitHeight: ImageVector + get() { + if (_arrowAutofitHeight != null) { + return _arrowAutofitHeight!! + } + _arrowAutofitHeight = fluentIcon(name = "Regular.ArrowAutofitHeight") { + fluentPath { + moveTo(13.22f, 6.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(2.37f, -2.37f) + curveToRelative(0.12f, -0.2f, 0.37f, -0.35f, 0.66f, -0.35f) + curveToRelative(0.25f, 0.0f, 0.48f, 0.1f, 0.61f, 0.28f) + lineToRelative(0.05f, 0.07f) + lineToRelative(2.37f, 2.37f) + lineToRelative(0.07f, 0.08f) + curveToRelative(0.2f, 0.27f, 0.2f, 0.62f, 0.01f, 0.89f) + lineToRelative(-0.08f, 0.1f) + lineToRelative(-0.08f, 0.06f) + curveToRelative(-0.26f, 0.2f, -0.62f, 0.2f, -0.88f, 0.01f) + lineToRelative(-0.1f, -0.08f) + lineTo(17.0f, 5.56f) + verticalLineToRelative(3.88f) + curveToRelative(-0.06f, 0.31f, -0.37f, 0.56f, -0.75f, 0.56f) + reflectiveCurveToRelative(-0.7f, -0.25f, -0.74f, -0.57f) + lineToRelative(-0.01f, -0.09f) + lineTo(15.5f, 5.56f) + lineToRelative(-1.22f, 1.22f) + lineToRelative(-0.08f, 0.07f) + curveToRelative(-0.3f, 0.22f, -0.71f, 0.2f, -0.98f, -0.07f) + close() + moveTo(13.22f, 17.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + lineToRelative(1.22f, 1.22f) + verticalLineToRelative(-3.78f) + curveToRelative(0.0f, -0.37f, 0.34f, -0.66f, 0.75f, -0.66f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.25f, 0.75f, 0.57f) + lineTo(17.0f, 18.44f) + lineToRelative(1.22f, -1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.08f, 0.98f) + lineToRelative(-0.08f, 0.08f) + lineToRelative(-2.36f, 2.37f) + arcToRelative(0.77f, 0.77f, 0.0f, false, true, -0.67f, 0.35f) + arcToRelative(0.77f, 0.77f, 0.0f, false, true, -0.66f, -0.35f) + lineToRelative(-2.37f, -2.37f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + moveTo(6.25f, 3.99f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.24f) + verticalLineToRelative(11.5f) + curveTo(4.0f, 18.98f, 5.0f, 20.0f, 6.25f, 20.0f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(5.5f, 6.24f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.0f) + close() + } + } + return _arrowAutofitHeight!! + } + +private var _arrowAutofitHeight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowAutofitHeightDotted.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowAutofitHeightDotted.kt new file mode 100644 index 00000000..dbed2e89 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowAutofitHeightDotted.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowAutofitHeightDotted: ImageVector + get() { + if (_arrowAutofitHeightDotted != null) { + return _arrowAutofitHeightDotted!! + } + _arrowAutofitHeightDotted = fluentIcon(name = "Regular.ArrowAutofitHeightDotted") { + fluentPath { + moveTo(16.78f, 3.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineToRelative(1.97f, -1.97f) + lineToRelative(1.97f, 1.97f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.5f, -2.5f) + close() + moveTo(4.0f, 6.24f) + curveTo(4.0f, 5.0f, 5.0f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.0f) + curveTo(5.01f, 20.0f, 4.0f, 19.0f, 4.0f, 17.74f) + lineTo(4.0f, 6.24f) + close() + moveTo(16.78f, 20.78f) + lineTo(19.28f, 18.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-1.97f, 1.97f) + lineToRelative(-1.97f, -1.97f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(2.5f, 2.5f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + close() + moveTo(16.25f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(15.5f, 15.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(16.25f, 7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + } + } + return _arrowAutofitHeightDotted!! + } + +private var _arrowAutofitHeightDotted: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowAutofitUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowAutofitUp.kt new file mode 100644 index 00000000..e68a56bb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowAutofitUp.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowAutofitUp: ImageVector + get() { + if (_arrowAutofitUp != null) { + return _arrowAutofitUp!! + } + _arrowAutofitUp = fluentIcon(name = "Regular.ArrowAutofitUp") { + fluentPath { + moveTo(13.22f, 6.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(2.37f, -2.37f) + curveToRelative(0.12f, -0.2f, 0.37f, -0.35f, 0.66f, -0.35f) + curveToRelative(0.25f, 0.0f, 0.48f, 0.1f, 0.61f, 0.28f) + lineToRelative(0.05f, 0.07f) + lineToRelative(2.37f, 2.37f) + lineToRelative(0.07f, 0.08f) + curveToRelative(0.2f, 0.27f, 0.2f, 0.62f, 0.01f, 0.89f) + lineToRelative(-0.08f, 0.1f) + lineToRelative(-0.08f, 0.06f) + curveToRelative(-0.26f, 0.2f, -0.62f, 0.2f, -0.88f, 0.01f) + lineToRelative(-0.1f, -0.08f) + lineTo(17.0f, 5.56f) + verticalLineTo(20.44f) + curveToRelative(-0.06f, 0.31f, -0.37f, 0.56f, -0.75f, 0.56f) + reflectiveCurveToRelative(-0.7f, -0.25f, -0.74f, -0.57f) + lineToRelative(-0.01f, -0.09f) + verticalLineTo(5.56f) + lineToRelative(-1.22f, 1.22f) + lineToRelative(-0.08f, 0.07f) + curveToRelative(-0.3f, 0.22f, -0.71f, 0.2f, -0.98f, -0.07f) + close() + moveTo(6.25f, 4.0f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.24f) + verticalLineToRelative(11.5f) + curveTo(4.0f, 18.98f, 5.0f, 20.0f, 6.25f, 20.0f) + horizontalLineToRelative(6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineTo(6.24f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.0f) + close() + } + } + return _arrowAutofitUp!! + } + +private var _arrowAutofitUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowAutofitWidth.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowAutofitWidth.kt new file mode 100644 index 00000000..441d66cd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowAutofitWidth.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowAutofitWidth: ImageVector + get() { + if (_arrowAutofitWidth != null) { + return _arrowAutofitWidth!! + } + _arrowAutofitWidth = fluentIcon(name = "Regular.ArrowAutofitWidth") { + fluentPath { + moveTo(20.0f, 6.24f) + curveTo(20.0f, 5.0f, 19.0f, 4.0f, 17.75f, 4.0f) + lineTo(6.25f, 4.0f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.24f) + verticalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(17.22f, 13.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + lineToRelative(2.37f, 2.37f) + curveToRelative(0.2f, 0.12f, 0.35f, 0.37f, 0.35f, 0.66f) + curveToRelative(0.0f, 0.25f, -0.1f, 0.48f, -0.28f, 0.61f) + lineToRelative(-0.07f, 0.05f) + lineToRelative(-2.37f, 2.37f) + lineToRelative(-0.08f, 0.07f) + curveToRelative(-0.27f, 0.2f, -0.62f, 0.2f, -0.89f, 0.01f) + lineToRelative(-0.1f, -0.08f) + lineToRelative(-0.06f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.01f, -0.88f) + lineToRelative(0.08f, -0.1f) + lineTo(18.44f, 17.0f) + horizontalLineToRelative(-3.88f) + curveToRelative(-0.31f, -0.06f, -0.56f, -0.37f, -0.56f, -0.75f) + reflectiveCurveToRelative(0.25f, -0.7f, 0.57f, -0.74f) + lineToRelative(0.09f, -0.01f) + horizontalLineToRelative(3.78f) + lineToRelative(-1.22f, -1.22f) + lineToRelative(-0.07f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.07f, -0.98f) + close() + moveTo(6.78f, 13.22f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.69f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-1.22f, 1.22f) + horizontalLineToRelative(3.78f) + curveToRelative(0.37f, 0.0f, 0.66f, 0.34f, 0.66f, 0.75f) + curveToRelative(0.0f, 0.38f, -0.25f, 0.7f, -0.57f, 0.75f) + lineTo(5.56f, 17.0f) + lineToRelative(1.22f, 1.22f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.69f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.08f) + lineToRelative(-0.08f, -0.08f) + lineToRelative(-2.37f, -2.36f) + arcToRelative(0.77f, 0.77f, 0.0f, false, true, -0.35f, -0.67f) + curveToRelative(0.0f, -0.28f, 0.14f, -0.53f, 0.35f, -0.66f) + lineToRelative(2.37f, -2.37f) + curveToRelative(0.3f, -0.29f, 0.77f, -0.29f, 1.06f, 0.0f) + close() + } + } + return _arrowAutofitWidth!! + } + +private var _arrowAutofitWidth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowAutofitWidthDotted.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowAutofitWidthDotted.kt new file mode 100644 index 00000000..dc7ac747 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowAutofitWidthDotted.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowAutofitWidthDotted: ImageVector + get() { + if (_arrowAutofitWidthDotted != null) { + return _arrowAutofitWidthDotted!! + } + _arrowAutofitWidthDotted = fluentIcon(name = "Regular.ArrowAutofitWidthDotted") { + fluentPath { + moveTo(17.76f, 4.0f) + curveTo(19.0f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) + verticalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(6.26f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-4.0f) + curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.26f, 4.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(18.28f, 19.28f) + lineTo(20.78f, 16.78f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.97f, 1.97f) + lineToRelative(-1.97f, 1.97f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + close() + moveTo(3.22f, 15.72f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineToRelative(-1.97f, -1.97f) + lineToRelative(1.97f, -1.97f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-2.5f, 2.5f) + close() + moveTo(13.0f, 16.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + close() + moveTo(10.0f, 16.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(17.0f, 16.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + close() + } + } + return _arrowAutofitWidthDotted!! + } + +private var _arrowAutofitWidthDotted: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowBetweenDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowBetweenDown.kt new file mode 100644 index 00000000..9331f195 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowBetweenDown.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowBetweenDown: ImageVector + get() { + if (_arrowBetweenDown != null) { + return _arrowBetweenDown!! + } + _arrowBetweenDown = fluentIcon(name = "Regular.ArrowBetweenDown") { + fluentPath { + moveTo(6.0f, 1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(10.0f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-10.0f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 6.0f, 2.25f) + verticalLineToRelative(-0.5f) + close() + moveTo(11.75f, 6.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(8.69f) + lineToRelative(3.72f, -3.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-5.0f, 5.0f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-5.0f, -5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineTo(11.0f, 15.44f) + verticalLineTo(6.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(4.5f, 21.75f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(10.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.5f) + close() + } + } + return _arrowBetweenDown!! + } + +private var _arrowBetweenDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowBidirectionalUpDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowBidirectionalUpDown.kt new file mode 100644 index 00000000..2bbd1404 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowBidirectionalUpDown.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowBidirectionalUpDown: ImageVector + get() { + if (_arrowBidirectionalUpDown != null) { + return _arrowBidirectionalUpDown!! + } + _arrowBidirectionalUpDown = fluentIcon(name = "Regular.ArrowBidirectionalUpDown") { + fluentPath { + moveTo(11.25f, 5.63f) + verticalLineToRelative(12.74f) + lineToRelative(-3.46f, -3.64f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.08f, 1.04f) + lineToRelative(4.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.08f, 0.0f) + lineToRelative(4.75f, -5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.08f, -1.04f) + lineToRelative(-3.46f, 3.64f) + verticalLineTo(5.63f) + lineToRelative(3.46f, 3.64f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.08f, -1.04f) + lineToRelative(-4.75f, -5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.08f, 0.0f) + lineToRelative(-4.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.08f, 1.04f) + lineToRelative(3.46f, -3.64f) + close() + } + } + return _arrowBidirectionalUpDown!! + } + +private var _arrowBidirectionalUpDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowBounce.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowBounce.kt new file mode 100644 index 00000000..a77085e2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowBounce.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowBounce: ImageVector + get() { + if (_arrowBounce != null) { + return _arrowBounce!! + } + _arrowBounce = fluentIcon(name = "Regular.ArrowBounce") { + fluentPath { + moveTo(11.0f, 6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineTo(8.56f) + lineToRelative(8.72f, 8.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 0.0f) + lineToRelative(8.5f, -8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-7.97f, 7.97f) + lineTo(4.56f, 7.5f) + horizontalLineToRelative(5.7f) + curveToRelative(0.4f, 0.0f, 0.74f, -0.34f, 0.74f, -0.75f) + close() + } + } + return _arrowBounce!! + } + +private var _arrowBounce: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCircleDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCircleDown.kt new file mode 100644 index 00000000..5ad98625 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCircleDown.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowCircleDown: ImageVector + get() { + if (_arrowCircleDown != null) { + return _arrowCircleDown!! + } + _arrowCircleDown = fluentIcon(name = "Regular.ArrowCircleDown") { + fluentPath { + moveToRelative(16.53f, 11.72f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) + lineToRelative(-2.72f, 2.72f) + lineTo(12.75f, 7.65f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 12.0f, 7.0f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + verticalLineToRelative(6.7f) + lineToRelative(-2.72f, -2.73f) + lineToRelative(-0.09f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, 1.13f) + lineToRelative(4.0f, 4.0f) + lineToRelative(0.08f, 0.07f) + curveToRelative(0.3f, 0.22f, 0.71f, 0.2f, 0.98f, -0.07f) + lineToRelative(4.0f, -4.0f) + lineToRelative(0.07f, -0.08f) + curveToRelative(0.22f, -0.3f, 0.2f, -0.71f, -0.07f, -0.98f) + close() + moveTo(2.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, -20.0f, 0.0f) + close() + moveTo(20.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, -17.0f, 0.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, 17.0f, 0.0f) + close() + } + } + return _arrowCircleDown!! + } + +private var _arrowCircleDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCircleDownDouble.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCircleDownDouble.kt new file mode 100644 index 00000000..06164f2e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCircleDownDouble.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowCircleDownDouble: ImageVector + get() { + if (_arrowCircleDownDouble != null) { + return _arrowCircleDownDouble!! + } + _arrowCircleDownDouble = fluentIcon(name = "Regular.ArrowCircleDownDouble") { + fluentPath { + moveToRelative(11.25f, 13.75f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) + lineToRelative(-0.69f, 0.69f) + lineTo(9.5f, 7.65f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 8.74f, 7.0f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + verticalLineToRelative(6.7f) + lineToRelative(-0.69f, -0.7f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 1.13f) + lineToRelative(1.97f, 1.97f) + lineToRelative(0.08f, 0.07f) + curveToRelative(0.3f, 0.22f, 0.71f, 0.2f, 0.98f, -0.07f) + lineToRelative(1.97f, -1.97f) + lineToRelative(0.07f, -0.08f) + curveToRelative(0.22f, -0.3f, 0.2f, -0.71f, -0.07f, -0.98f) + close() + moveTo(2.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, -20.0f, 0.0f) + close() + moveTo(20.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, -17.0f, 0.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, 17.0f, 0.0f) + close() + moveTo(17.75f, 13.75f) + lineTo(17.67f, 13.68f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) + lineToRelative(-0.7f, 0.69f) + verticalLineToRelative(-6.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.74f, -0.64f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + verticalLineToRelative(6.7f) + lineToRelative(-0.69f, -0.7f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 1.13f) + lineToRelative(1.97f, 1.97f) + lineToRelative(0.08f, 0.07f) + curveToRelative(0.3f, 0.22f, 0.71f, 0.2f, 0.98f, -0.07f) + lineToRelative(1.97f, -1.97f) + lineToRelative(0.07f, -0.08f) + curveToRelative(0.22f, -0.3f, 0.2f, -0.71f, -0.07f, -0.98f) + close() + } + } + return _arrowCircleDownDouble!! + } + +private var _arrowCircleDownDouble: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCircleDownRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCircleDownRight.kt new file mode 100644 index 00000000..5efe389a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCircleDownRight.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowCircleDownRight: ImageVector + get() { + if (_arrowCircleDownRight != null) { + return _arrowCircleDownRight!! + } + _arrowCircleDownRight = fluentIcon(name = "Regular.ArrowCircleDownRight") { + fluentPath { + moveTo(13.5f, 14.5f) + lineTo(8.74f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(6.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(4.64f) + lineTo(9.28f, 8.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(5.27f, 5.22f) + close() + moveTo(2.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) + close() + } + } + return _arrowCircleDownRight!! + } + +private var _arrowCircleDownRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCircleDownSplit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCircleDownSplit.kt new file mode 100644 index 00000000..ec3eb165 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCircleDownSplit.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowCircleDownSplit: ImageVector + get() { + if (_arrowCircleDownSplit != null) { + return _arrowCircleDownSplit!! + } + _arrowCircleDownSplit = fluentIcon(name = "Regular.ArrowCircleDownSplit") { + fluentPath { + moveToRelative(11.0f, 14.0f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) + lineToRelative(-0.44f, 0.44f) + lineTo(9.5f, 10.5f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(3.94f) + lineToRelative(-0.51f, -0.44f) + lineToRelative(-0.09f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, 1.13f) + lineToRelative(1.79f, 1.72f) + lineToRelative(0.08f, 0.07f) + curveToRelative(0.3f, 0.22f, 0.71f, 0.2f, 0.98f, -0.07f) + lineToRelative(1.72f, -1.72f) + lineToRelative(0.07f, -0.08f) + curveToRelative(0.22f, -0.3f, 0.2f, -0.72f, -0.07f, -0.98f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) + lineToRelative(-0.44f, 0.44f) + verticalLineToRelative(-4.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.64f) + horizontalLineToRelative(-2.5f) + lineTo(12.75f, 5.65f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 12.0f, 5.0f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + lineTo(11.25f, 9.0f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + verticalLineToRelative(4.69f) + lineTo(7.56f, 14.0f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 1.13f) + lineToRelative(1.72f, 1.72f) + lineToRelative(0.08f, 0.07f) + curveToRelative(0.3f, 0.22f, 0.71f, 0.2f, 0.98f, -0.07f) + lineTo(11.0f, 15.06f) + lineToRelative(0.07f, -0.09f) + curveToRelative(0.22f, -0.29f, 0.2f, -0.7f, -0.07f, -0.97f) + close() + moveTo(2.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, -20.0f, 0.0f) + close() + moveTo(20.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, -17.0f, 0.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, 17.0f, 0.0f) + close() + } + } + return _arrowCircleDownSplit!! + } + +private var _arrowCircleDownSplit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCircleLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCircleLeft.kt new file mode 100644 index 00000000..cba06cf4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCircleLeft.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowCircleLeft: ImageVector + get() { + if (_arrowCircleLeft != null) { + return _arrowCircleLeft!! + } + _arrowCircleLeft = fluentIcon(name = "Regular.ArrowCircleLeft") { + fluentPath { + moveToRelative(12.28f, 16.53f) + lineToRelative(0.07f, -0.08f) + curveToRelative(0.22f, -0.3f, 0.2f, -0.71f, -0.07f, -0.98f) + lineToRelative(-2.72f, -2.72f) + horizontalLineToRelative(6.79f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 17.0f, 12.0f) + verticalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) + horizontalLineToRelative(-6.7f) + lineToRelative(2.73f, -2.72f) + lineToRelative(0.07f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.13f, -0.98f) + lineToRelative(-4.0f, 4.0f) + lineToRelative(-0.07f, 0.08f) + curveToRelative(-0.22f, 0.3f, -0.2f, 0.71f, 0.07f, 0.98f) + lineToRelative(4.0f, 4.0f) + lineToRelative(0.08f, 0.07f) + curveToRelative(0.3f, 0.22f, 0.71f, 0.2f, 0.98f, -0.07f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) + close() + moveTo(12.0f, 20.5f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 0.0f, -17.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, 0.0f, 17.0f) + close() + } + } + return _arrowCircleLeft!! + } + +private var _arrowCircleLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCircleRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCircleRight.kt new file mode 100644 index 00000000..9edf8ef4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCircleRight.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowCircleRight: ImageVector + get() { + if (_arrowCircleRight != null) { + return _arrowCircleRight!! + } + _arrowCircleRight = fluentIcon(name = "Regular.ArrowCircleRight") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) + close() + moveTo(11.65f, 7.55f) + lineTo(11.72f, 7.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + lineToRelative(4.0f, 4.0f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-4.0f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(2.72f, -2.72f) + lineTo(7.75f, 12.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineTo(7.0f, 12.0f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(6.69f) + lineToRelative(-2.72f, -2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(-0.07f, 0.08f) + close() + } + } + return _arrowCircleRight!! + } + +private var _arrowCircleRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCircleUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCircleUp.kt new file mode 100644 index 00000000..4d628d9e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCircleUp.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowCircleUp: ImageVector + get() { + if (_arrowCircleUp != null) { + return _arrowCircleUp!! + } + _arrowCircleUp = fluentIcon(name = "Regular.ArrowCircleUp") { + fluentPath { + moveToRelative(7.47f, 12.28f) + lineToRelative(0.08f, 0.07f) + curveToRelative(0.3f, 0.22f, 0.71f, 0.2f, 0.98f, -0.07f) + lineToRelative(2.72f, -2.72f) + verticalLineToRelative(6.79f) + curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + verticalLineToRelative(-6.7f) + lineToRelative(2.72f, 2.73f) + lineToRelative(0.09f, 0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.97f, -1.13f) + lineToRelative(-4.0f, -4.0f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) + lineToRelative(-4.0f, 4.0f) + lineToRelative(-0.07f, 0.08f) + curveToRelative(-0.22f, 0.3f, -0.2f, 0.71f, 0.07f, 0.98f) + close() + moveTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 20.0f, 0.0f) + close() + moveTo(3.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 17.0f, 0.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, -17.0f, 0.0f) + close() + } + } + return _arrowCircleUp!! + } + +private var _arrowCircleUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCircleUpLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCircleUpLeft.kt new file mode 100644 index 00000000..8433bc15 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCircleUpLeft.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowCircleUpLeft: ImageVector + get() { + if (_arrowCircleUpLeft != null) { + return _arrowCircleUpLeft!! + } + _arrowCircleUpLeft = fluentIcon(name = "Regular.ArrowCircleUpLeft") { + fluentPath { + moveTo(10.5f, 9.5f) + horizontalLineToRelative(4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-4.64f) + lineToRelative(5.22f, 5.17f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(10.5f, 9.5f) + close() + moveTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, -20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 20.0f, 0.0f) + close() + moveTo(12.0f, 20.5f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, -17.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, 17.0f) + close() + } + } + return _arrowCircleUpLeft!! + } + +private var _arrowCircleUpLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowClockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowClockwise.kt new file mode 100644 index 00000000..7a6f5bfe --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowClockwise.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowClockwise: ImageVector + get() { + if (_arrowClockwise != null) { + return _arrowClockwise!! + } + _arrowClockwise = fluentIcon(name = "Regular.ArrowClockwise") { + fluentPath { + moveTo(12.0f, 4.5f) + arcToRelative(7.5f, 7.5f, 0.0f, true, false, 7.42f, 6.4f) + curveToRelative(-0.07f, -0.46f, 0.26f, -0.9f, 0.72f, -0.9f) + curveToRelative(0.37f, 0.0f, 0.7f, 0.26f, 0.76f, 0.62f) + arcTo(9.0f, 9.0f, 0.0f, true, true, 18.0f, 5.3f) + verticalLineTo(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.35f) + arcToRelative(7.47f, 7.47f, 0.0f, false, false, -5.1f, -2.0f) + close() + } + } + return _arrowClockwise!! + } + +private var _arrowClockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowClockwiseDashes.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowClockwiseDashes.kt new file mode 100644 index 00000000..16405895 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowClockwiseDashes.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowClockwiseDashes: ImageVector + get() { + if (_arrowClockwiseDashes != null) { + return _arrowClockwiseDashes!! + } + _arrowClockwiseDashes = fluentIcon(name = "Regular.ArrowClockwiseDashes") { + fluentPath { + moveTo(10.13f, 3.2f) + arcToRelative(9.03f, 9.03f, 0.0f, false, true, 3.74f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.3f, 1.46f) + arcToRelative(7.53f, 7.53f, 0.0f, false, false, -3.13f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.31f, -1.47f) + close() + moveTo(15.87f, 4.67f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, -0.22f) + curveToRelative(0.39f, 0.25f, 0.76f, 0.53f, 1.1f, 0.84f) + lineTo(18.0f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.35f) + curveToRelative(-0.32f, -0.3f, -0.65f, -0.56f, -1.02f, -0.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.21f, -1.03f) + close() + moveTo(19.5f, 12.0f) + verticalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(21.0f, 12.0f) + curveToRelative(0.0f, 0.64f, -0.07f, 1.27f, -0.2f, 1.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.46f, -0.3f) + curveToRelative(0.1f, -0.51f, 0.16f, -1.03f, 0.16f, -1.57f) + close() + moveTo(8.13f, 4.67f) + curveToRelative(0.23f, 0.35f, 0.13f, 0.81f, -0.21f, 1.04f) + arcTo(7.54f, 7.54f, 0.0f, false, false, 5.7f, 7.9f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.26f, -0.81f) + arcTo(9.04f, 9.04f, 0.0f, false, true, 7.1f, 4.45f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, 0.22f) + close() + moveTo(4.66f, 10.44f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.47f, -0.31f) + arcToRelative(9.03f, 9.03f, 0.0f, false, false, 0.0f, 3.74f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.47f, -0.3f) + arcToRelative(7.53f, 7.53f, 0.0f, false, true, 0.0f, -3.13f) + close() + moveTo(19.33f, 15.87f) + curveToRelative(0.35f, 0.22f, 0.44f, 0.69f, 0.22f, 1.03f) + arcToRelative(9.04f, 9.04f, 0.0f, false, true, -2.65f, 2.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.82f, -1.26f) + arcToRelative(7.55f, 7.55f, 0.0f, false, false, 2.21f, -2.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.04f, -0.22f) + close() + moveTo(5.71f, 16.08f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.26f, 0.82f) + arcToRelative(9.04f, 9.04f, 0.0f, false, false, 2.65f, 2.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.82f, -1.26f) + arcToRelative(7.55f, 7.55f, 0.0f, false, true, -2.21f, -2.2f) + close() + moveTo(9.55f, 19.92f) + curveToRelative(0.09f, -0.4f, 0.48f, -0.67f, 0.89f, -0.58f) + arcToRelative(7.54f, 7.54f, 0.0f, false, false, 3.12f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.31f, 1.47f) + arcToRelative(9.03f, 9.03f, 0.0f, false, true, -3.74f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.58f, -0.9f) + close() + } + } + return _arrowClockwiseDashes!! + } + +private var _arrowClockwiseDashes: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCollapseAll.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCollapseAll.kt new file mode 100644 index 00000000..bd667188 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCollapseAll.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowCollapseAll: ImageVector + get() { + if (_arrowCollapseAll != null) { + return _arrowCollapseAll!! + } + _arrowCollapseAll = fluentIcon(name = "Regular.ArrowCollapseAll") { + fluentPath { + moveTo(2.0f, 4.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(2.75f, 5.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 2.0f, 4.75f) + close() + moveTo(6.22f, 8.22f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(3.0f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(7.5f, 10.56f) + verticalLineToRelative(8.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-8.19f) + lineToRelative(-1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(3.0f, -3.0f) + close() + moveTo(11.5f, 8.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _arrowCollapseAll!! + } + +private var _arrowCollapseAll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCounterclockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCounterclockwise.kt new file mode 100644 index 00000000..3962325b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCounterclockwise.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowCounterclockwise: ImageVector + get() { + if (_arrowCounterclockwise != null) { + return _arrowCounterclockwise!! + } + _arrowCounterclockwise = fluentIcon(name = "Regular.ArrowCounterclockwise") { + fluentPath { + moveTo(12.0f, 4.5f) + arcToRelative(7.5f, 7.5f, 0.0f, true, true, -7.42f, 6.4f) + curveToRelative(0.07f, -0.46f, -0.26f, -0.9f, -0.72f, -0.9f) + curveToRelative(-0.37f, 0.0f, -0.7f, 0.26f, -0.76f, 0.62f) + arcTo(9.0f, 9.0f, 0.0f, true, false, 6.0f, 5.3f) + verticalLineTo(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(6.9f) + arcToRelative(7.47f, 7.47f, 0.0f, false, true, 5.1f, -2.0f) + close() + } + } + return _arrowCounterclockwise!! + } + +private var _arrowCounterclockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCounterclockwiseDashes.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCounterclockwiseDashes.kt new file mode 100644 index 00000000..80046113 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCounterclockwiseDashes.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowCounterclockwiseDashes: ImageVector + get() { + if (_arrowCounterclockwiseDashes != null) { + return _arrowCounterclockwiseDashes!! + } + _arrowCounterclockwiseDashes = fluentIcon(name = "Regular.ArrowCounterclockwiseDashes") { + fluentPath { + moveTo(13.87f, 3.2f) + arcToRelative(9.03f, 9.03f, 0.0f, false, false, -3.74f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.3f, 1.46f) + arcToRelative(7.53f, 7.53f, 0.0f, false, true, 3.13f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.31f, -1.47f) + close() + moveTo(8.13f, 4.66f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.03f, -0.22f) + curveToRelative(-0.39f, 0.25f, -0.76f, 0.53f, -1.1f, 0.84f) + lineTo(6.0f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(6.9f, 6.5f) + curveToRelative(0.32f, -0.3f, 0.65f, -0.56f, 1.02f, -0.8f) + curveToRelative(0.34f, -0.22f, 0.44f, -0.68f, 0.21f, -1.03f) + close() + moveTo(4.5f, 12.0f) + verticalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + lineTo(3.0f, 12.0f) + curveToRelative(0.0f, 0.64f, 0.07f, 1.27f, 0.2f, 1.87f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.46f, -0.3f) + curveToRelative(-0.1f, -0.51f, -0.16f, -1.03f, -0.16f, -1.57f) + close() + moveTo(15.87f, 4.67f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.21f, 1.04f) + arcToRelative(7.55f, 7.55f, 0.0f, false, true, 2.21f, 2.2f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.26f, -0.81f) + arcToRelative(9.04f, 9.04f, 0.0f, false, false, -2.65f, -2.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.03f, 0.22f) + close() + moveTo(19.34f, 10.44f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.47f, -0.31f) + arcToRelative(9.03f, 9.03f, 0.0f, false, true, 0.0f, 3.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.47f, -0.3f) + arcToRelative(7.54f, 7.54f, 0.0f, false, false, 0.0f, -3.13f) + close() + moveTo(4.67f, 15.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.22f, 1.03f) + arcToRelative(9.04f, 9.04f, 0.0f, false, false, 2.65f, 2.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.82f, -1.26f) + arcToRelative(7.55f, 7.55f, 0.0f, false, true, -2.21f, -2.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.04f, -0.22f) + close() + moveTo(18.29f, 16.08f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.26f, 0.82f) + arcToRelative(9.04f, 9.04f, 0.0f, false, true, -2.65f, 2.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.82f, -1.26f) + arcToRelative(7.55f, 7.55f, 0.0f, false, false, 2.21f, -2.2f) + close() + moveTo(14.45f, 19.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.89f, -0.58f) + arcToRelative(7.54f, 7.54f, 0.0f, false, true, -3.12f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.31f, 1.47f) + arcToRelative(9.03f, 9.03f, 0.0f, false, false, 3.74f, 0.0f) + curveToRelative(0.4f, -0.1f, 0.67f, -0.49f, 0.58f, -0.9f) + close() + } + } + return _arrowCounterclockwiseDashes!! + } + +private var _arrowCounterclockwiseDashes: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCurveDownLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCurveDownLeft.kt new file mode 100644 index 00000000..d88f9583 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowCurveDownLeft.kt @@ -0,0 +1,39 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowCurveDownLeft: ImageVector + get() { + if (_arrowCurveDownLeft != null) { + return _arrowCurveDownLeft!! + } + _arrowCurveDownLeft = fluentIcon(name = "Regular.ArrowCurveDownLeft") { + fluentPath { + moveTo(16.4f, 3.38f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.02f, -0.28f) + arcToRelative(7.92f, 7.92f, 0.0f, false, false, -3.92f, 4.7f) + arcToRelative(15.4f, 15.4f, 0.0f, false, false, -0.46f, 4.55f) + verticalLineTo(18.44f) + lineToRelative(-3.72f, -3.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(5.0f, 5.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(5.0f, -5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineToRelative(-3.72f, 3.72f) + verticalLineToRelative(-6.07f) + curveToRelative(0.0f, -1.41f, 0.0f, -2.8f, 0.4f, -4.13f) + arcToRelative(6.43f, 6.43f, 0.0f, false, true, 3.22f, -3.84f) + curveToRelative(0.36f, -0.2f, 0.49f, -0.66f, 0.28f, -1.02f) + close() + } + } + return _arrowCurveDownLeft!! + } + +private var _arrowCurveDownLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowEnterLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowEnterLeft.kt new file mode 100644 index 00000000..8f05a0ea --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowEnterLeft.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowEnterLeft: ImageVector + get() { + if (_arrowEnterLeft != null) { + return _arrowEnterLeft!! + } + _arrowEnterLeft = fluentIcon(name = "Regular.ArrowEnterLeft") { + fluentPath { + moveTo(21.25f, 4.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(6.5f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 18.25f, 15.0f) + horizontalLineTo(4.6f) + lineToRelative(3.72f, 3.72f) + curveToRelative(0.26f, 0.27f, 0.29f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-5.0f, -5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.08f, -0.98f) + lineToRelative(0.08f, -0.08f) + lineToRelative(5.0f, -5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-3.72f, 3.72f) + horizontalLineToRelative(13.66f) + curveToRelative(1.2f, 0.0f, 2.17f, -0.93f, 2.25f, -2.1f) + verticalLineTo(4.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _arrowEnterLeft!! + } + +private var _arrowEnterLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowEnterUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowEnterUp.kt new file mode 100644 index 00000000..fa6c6b70 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowEnterUp.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowEnterUp: ImageVector + get() { + if (_arrowEnterUp != null) { + return _arrowEnterUp!! + } + _arrowEnterUp = fluentIcon(name = "Regular.ArrowEnterUp") { + fluentPath { + moveTo(20.0f, 21.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-6.5f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 9.0f, 18.25f) + verticalLineTo(4.6f) + lineTo(5.28f, 8.3f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(5.0f, -5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.08f) + lineToRelative(0.08f, 0.08f) + lineToRelative(5.0f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-3.72f, -3.72f) + verticalLineToRelative(13.66f) + curveToRelative(0.0f, 1.2f, 0.93f, 2.17f, 2.1f, 2.25f) + horizontalLineToRelative(6.65f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + } + } + return _arrowEnterUp!! + } + +private var _arrowEnterUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowExportLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowExportLtr.kt new file mode 100644 index 00000000..41570d7f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowExportLtr.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowExportLtr: ImageVector + get() { + if (_arrowExportLtr != null) { + return _arrowExportLtr!! + } + _arrowExportLtr = fluentIcon(name = "Regular.ArrowExportLtr") { + fluentPath { + moveTo(2.75f, 4.5f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.75f, 0.65f) + verticalLineToRelative(13.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(2.0f, 5.26f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(15.65f, 6.3f) + lineTo(15.72f, 6.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + lineToRelative(5.0f, 5.0f) + curveToRelative(0.26f, 0.26f, 0.29f, 0.68f, 0.07f, 0.97f) + lineToRelative(-0.07f, 0.09f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.97f) + lineToRelative(0.07f, -0.09f) + lineToRelative(3.71f, -3.72f) + lineTo(5.75f, 12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.64f, -0.75f) + lineTo(19.45f, 11.01f) + lineToRelative(-3.73f, -3.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(-0.07f, 0.08f) + close() + } + } + return _arrowExportLtr!! + } + +private var _arrowExportLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowExportRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowExportRtl.kt new file mode 100644 index 00000000..d707e2d2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowExportRtl.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowExportRtl: ImageVector + get() { + if (_arrowExportRtl != null) { + return _arrowExportRtl!! + } + _arrowExportRtl = fluentIcon(name = "Regular.ArrowExportRtl") { + fluentPath { + moveTo(21.24f, 4.5f) + curveToRelative(-0.38f, 0.0f, -0.69f, 0.28f, -0.74f, 0.65f) + verticalLineToRelative(13.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.49f, 0.1f) + verticalLineTo(5.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(8.34f, 6.3f) + lineToRelative(-0.06f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, -0.07f) + lineToRelative(-0.08f, 0.07f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.97f) + lineToRelative(0.07f, 0.09f) + lineToRelative(5.0f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, -0.97f) + lineToRelative(-0.07f, -0.09f) + lineToRelative(-3.71f, -3.72f) + horizontalLineToRelative(13.67f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.64f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.75f) + horizontalLineTo(4.55f) + lineToRelative(3.73f, -3.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.07f, -0.98f) + lineToRelative(-0.07f, -0.08f) + lineToRelative(0.07f, 0.08f) + close() + } + } + return _arrowExportRtl!! + } + +private var _arrowExportRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowExportUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowExportUp.kt new file mode 100644 index 00000000..77de449d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowExportUp.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowExportUp: ImageVector + get() { + if (_arrowExportUp != null) { + return _arrowExportUp!! + } + _arrowExportUp = fluentIcon(name = "Regular.ArrowExportUp") { + fluentPath { + moveTo(12.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineTo(11.0f, 4.56f) + verticalLineToRelative(13.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineTo(4.56f) + lineToRelative(3.72f, 3.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-5.0f, -5.0f) + close() + moveTo(5.25f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-13.0f) + close() + } + } + return _arrowExportUp!! + } + +private var _arrowExportUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowForwardDownLightning.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowForwardDownLightning.kt new file mode 100644 index 00000000..27dbe55e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowForwardDownLightning.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowForwardDownLightning: ImageVector + get() { + if (_arrowForwardDownLightning != null) { + return _arrowForwardDownLightning!! + } + _arrowForwardDownLightning = fluentIcon(name = "Regular.ArrowForwardDownLightning") { + fluentPath { + moveTo(13.0f, 16.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(8.53f, 13.0f) + lineTo(7.1f, 13.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.47f, 0.32f) + lineToRelative(-1.13f, 3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.47f, 0.68f) + horizontalLineToRelative(0.78f) + lineToRelative(-0.77f, 2.32f) + arcToRelative(0.52f, 0.52f, 0.0f, false, false, 0.92f, 0.44f) + lineToRelative(2.63f, -4.03f) + arcToRelative(0.47f, 0.47f, 0.0f, false, false, -0.4f, -0.73f) + lineTo(8.5f, 15.0f) + lineToRelative(0.5f, -1.32f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.47f, -0.68f) + close() + moveTo(16.63f, 6.54f) + lineTo(19.59f, 9.5f) + horizontalLineToRelative(-5.92f) + arcToRelative(6.25f, 6.25f, 0.0f, false, true, -6.02f, -6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) + verticalLineToRelative(0.25f) + arcTo(7.75f, 7.75f, 0.0f, false, false, 13.9f, 11.0f) + horizontalLineToRelative(5.69f) + lineToRelative(-2.97f, 2.96f) + lineToRelative(-0.07f, 0.09f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, 0.97f) + lineToRelative(4.25f, -4.24f) + lineToRelative(0.07f, -0.08f) + curveToRelative(0.22f, -0.3f, 0.2f, -0.71f, -0.07f, -0.98f) + lineToRelative(-4.25f, -4.24f) + lineToRelative(-0.08f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 1.14f) + close() + } + } + return _arrowForwardDownLightning!! + } + +private var _arrowForwardDownLightning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowForwardDownPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowForwardDownPerson.kt new file mode 100644 index 00000000..cb464215 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowForwardDownPerson.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowForwardDownPerson: ImageVector + get() { + if (_arrowForwardDownPerson != null) { + return _arrowForwardDownPerson!! + } + _arrowForwardDownPerson = fluentIcon(name = "Regular.ArrowForwardDownPerson") { + fluentPath { + moveToRelative(19.69f, 9.5f) + lineToRelative(-2.96f, -2.96f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -1.14f) + lineToRelative(0.09f, 0.08f) + lineToRelative(4.24f, 4.24f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-4.24f, 4.24f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.14f, -0.97f) + lineToRelative(0.08f, -0.09f) + lineTo(19.69f, 11.0f) + lineTo(14.0f, 11.0f) + arcToRelative(7.75f, 7.75f, 0.0f, false, true, -7.75f, -7.5f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + arcToRelative(6.25f, 6.25f, 0.0f, false, false, 6.02f, 6.25f) + lineTo(19.7f, 9.5f) + close() + moveTo(9.0f, 13.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(11.0f, 18.88f) + curveTo(11.0f, 20.43f, 9.71f, 22.0f, 6.5f, 22.0f) + reflectiveCurveTo(2.0f, 20.44f, 2.0f, 18.88f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.99f, 0.8f, -1.78f, 1.77f, -1.78f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _arrowForwardDownPerson!! + } + +private var _arrowForwardDownPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowHookDownLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowHookDownLeft.kt new file mode 100644 index 00000000..53d57abe --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowHookDownLeft.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowHookDownLeft: ImageVector + get() { + if (_arrowHookDownLeft != null) { + return _arrowHookDownLeft!! + } + _arrowHookDownLeft = fluentIcon(name = "Regular.ArrowHookDownLeft") { + fluentPath { + moveTo(7.0f, 4.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineTo(14.0f) + curveToRelative(1.98f, 0.0f, 3.5f, 0.82f, 4.52f, 2.07f) + arcTo(7.05f, 7.05f, 0.0f, false, true, 20.0f, 10.5f) + curveToRelative(0.0f, 1.58f, -0.48f, 3.2f, -1.48f, 4.43f) + arcTo(5.63f, 5.63f, 0.0f, false, true, 14.0f, 17.0f) + horizontalLineTo(7.56f) + lineToRelative(2.47f, 2.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-3.75f, -3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(3.75f, -3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineTo(7.56f, 15.5f) + horizontalLineTo(14.0f) + curveToRelative(1.52f, 0.0f, 2.62f, -0.61f, 3.36f, -1.52f) + arcToRelative(5.56f, 5.56f, 0.0f, false, false, 1.14f, -3.48f) + curveToRelative(0.0f, -1.3f, -0.4f, -2.56f, -1.14f, -3.48f) + arcTo(4.13f, 4.13f, 0.0f, false, false, 14.0f, 5.5f) + horizontalLineTo(7.75f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 4.75f) + close() + } + } + return _arrowHookDownLeft!! + } + +private var _arrowHookDownLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowHookDownRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowHookDownRight.kt new file mode 100644 index 00000000..2cc5f069 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowHookDownRight.kt @@ -0,0 +1,39 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowHookDownRight: ImageVector + get() { + if (_arrowHookDownRight != null) { + return _arrowHookDownRight!! + } + _arrowHookDownRight = fluentIcon(name = "Regular.ArrowHookDownRight") { + fluentPath { + moveTo(10.5f, 5.5f) + horizontalLineTo(16.0f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 16.0f, 4.0f) + horizontalLineToRelative(-5.5f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, 0.0f, 13.0f) + horizontalLineToRelative(5.95f) + lineToRelative(-2.62f, 2.62f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(3.89f, -3.88f) + curveToRelative(0.1f, -0.1f, 0.16f, -0.23f, 0.2f, -0.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.21f, -0.74f) + lineToRelative(-3.88f, -3.88f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(2.6f, 2.61f) + horizontalLineTo(10.5f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + } + } + return _arrowHookDownRight!! + } + +private var _arrowHookDownRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowHookUpLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowHookUpLeft.kt new file mode 100644 index 00000000..bff0b9e9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowHookUpLeft.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowHookUpLeft: ImageVector + get() { + if (_arrowHookUpLeft != null) { + return _arrowHookUpLeft!! + } + _arrowHookUpLeft = fluentIcon(name = "Regular.ArrowHookUpLeft") { + fluentPath { + moveTo(7.0f, 19.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineTo(14.0f) + curveToRelative(1.98f, 0.0f, 3.5f, -0.82f, 4.52f, -2.07f) + arcTo(7.05f, 7.05f, 0.0f, false, false, 20.0f, 13.5f) + curveToRelative(0.0f, -1.58f, -0.48f, -3.2f, -1.48f, -4.43f) + arcTo(5.63f, 5.63f, 0.0f, false, false, 14.0f, 7.0f) + horizontalLineTo(7.56f) + lineToRelative(2.47f, -2.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineTo(5.22f, 7.22f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(3.75f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineTo(7.56f, 8.5f) + horizontalLineTo(14.0f) + curveToRelative(1.52f, 0.0f, 2.62f, 0.61f, 3.36f, 1.52f) + arcToRelative(5.56f, 5.56f, 0.0f, false, true, 1.14f, 3.48f) + curveToRelative(0.0f, 1.3f, -0.4f, 2.56f, -1.14f, 3.48f) + arcTo(4.13f, 4.13f, 0.0f, false, true, 14.0f, 18.5f) + horizontalLineTo(7.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + } + } + return _arrowHookUpLeft!! + } + +private var _arrowHookUpLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowHookUpRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowHookUpRight.kt new file mode 100644 index 00000000..2d1e8f60 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowHookUpRight.kt @@ -0,0 +1,39 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowHookUpRight: ImageVector + get() { + if (_arrowHookUpRight != null) { + return _arrowHookUpRight!! + } + _arrowHookUpRight = fluentIcon(name = "Regular.ArrowHookUpRight") { + fluentPath { + moveTo(10.5f, 18.5f) + horizontalLineToRelative(5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineTo(10.5f) + arcToRelative(6.5f, 6.5f, 0.0f, true, true, 0.0f, -13.0f) + horizontalLineToRelative(5.95f) + lineToRelative(-2.62f, -2.62f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineToRelative(3.89f, 3.88f) + curveToRelative(0.1f, 0.1f, 0.16f, 0.23f, 0.2f, 0.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.21f, 0.74f) + lineToRelative(-3.88f, 3.88f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(2.6f, -2.61f) + horizontalLineTo(10.5f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 0.0f, 10.0f) + close() + } + } + return _arrowHookUpRight!! + } + +private var _arrowHookUpRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowImport.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowImport.kt new file mode 100644 index 00000000..9238db54 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowImport.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowImport: ImageVector + get() { + if (_arrowImport != null) { + return _arrowImport!! + } + _arrowImport = fluentIcon(name = "Regular.ArrowImport") { + fluentPath { + moveTo(21.25f, 4.5f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(20.5f, 5.26f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(12.65f, 6.3f) + lineTo(12.72f, 6.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + lineToRelative(5.0f, 5.0f) + curveToRelative(0.26f, 0.26f, 0.29f, 0.68f, 0.07f, 0.97f) + lineToRelative(-0.07f, 0.09f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.97f) + lineToRelative(0.07f, -0.09f) + lineToRelative(3.71f, -3.72f) + lineTo(2.75f, 12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) + lineToRelative(-0.01f, -0.1f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.75f) + lineTo(16.45f, 11.01f) + lineToRelative(-3.73f, -3.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(-0.07f, 0.08f) + close() + } + } + return _arrowImport!! + } + +private var _arrowImport: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowMaximize.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowMaximize.kt new file mode 100644 index 00000000..56f88a27 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowMaximize.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowMaximize: ImageVector + get() { + if (_arrowMaximize != null) { + return _arrowMaximize!! + } + _arrowMaximize = fluentIcon(name = "Regular.ArrowMaximize") { + fluentPath { + moveTo(12.75f, 3.0f) + horizontalLineToRelative(7.55f) + lineToRelative(0.1f, 0.02f) + lineToRelative(0.1f, 0.02f) + lineToRelative(0.06f, 0.03f) + curveToRelative(0.08f, 0.03f, 0.15f, 0.09f, 0.22f, 0.15f) + lineToRelative(0.04f, 0.04f) + lineToRelative(0.06f, 0.09f) + lineToRelative(0.04f, 0.06f) + lineToRelative(0.04f, 0.1f) + lineToRelative(0.02f, 0.06f) + lineToRelative(0.01f, 0.06f) + verticalLineToRelative(0.1f) + lineToRelative(0.01f, 7.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-5.8f) + lineTo(5.56f, 19.5f) + horizontalLineToRelative(5.69f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.29f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + curveToRelative(0.0f, 0.39f, -0.28f, 0.7f, -0.65f, 0.75f) + horizontalLineTo(3.68f) + arcToRelative(0.7f, 0.7f, 0.0f, false, true, -0.18f, -0.04f) + lineToRelative(-0.1f, -0.04f) + horizontalLineTo(3.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.38f, -0.56f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.11f) + verticalLineToRelative(5.8f) + lineTo(18.44f, 4.5f) + horizontalLineToRelative(-5.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + horizontalLineToRelative(0.1f) + close() + } + } + return _arrowMaximize!! + } + +private var _arrowMaximize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowMaximizeVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowMaximizeVertical.kt new file mode 100644 index 00000000..c37e40c6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowMaximizeVertical.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowMaximizeVertical: ImageVector + get() { + if (_arrowMaximizeVertical != null) { + return _arrowMaximizeVertical!! + } + _arrowMaximizeVertical = fluentIcon(name = "Regular.ArrowMaximizeVertical") { + fluentPath { + moveTo(13.72f, 5.78f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineTo(11.0f, 4.56f) + verticalLineToRelative(4.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(12.5f, 4.56f) + lineToRelative(1.22f, 1.22f) + close() + moveTo(4.0f, 11.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(4.75f, 12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(12.5f, 14.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(4.69f) + lineToRelative(-1.22f, -1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(2.5f, 2.5f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-1.22f, 1.22f) + verticalLineToRelative(-4.69f) + close() + } + } + return _arrowMaximizeVertical!! + } + +private var _arrowMaximizeVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowMinimize.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowMinimize.kt new file mode 100644 index 00000000..e8d3b970 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowMinimize.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowMinimize: ImageVector + get() { + if (_arrowMinimize != null) { + return _arrowMinimize!! + } + _arrowMinimize = fluentIcon(name = "Regular.ArrowMinimize") { + fluentPath { + moveTo(21.78f, 2.22f) + curveToRelative(0.26f, 0.27f, 0.29f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-6.23f, 6.23f) + horizontalLineToRelative(5.7f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 0.38f, -0.27f, 0.69f, -0.64f, 0.74f) + horizontalLineTo(13.68f) + arcToRelative(0.73f, 0.73f, 0.0f, false, true, -0.2f, -0.04f) + lineToRelative(-0.1f, -0.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.38f, -0.56f) + verticalLineToRelative(-7.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.49f, -0.1f) + verticalLineTo(8.43f) + lineToRelative(6.23f, -6.22f) + curveToRelative(0.29f, -0.3f, 0.76f, -0.3f, 1.06f, 0.0f) + close() + moveTo(11.0f, 13.75f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.11f) + verticalLineToRelative(-5.8f) + lineToRelative(-6.22f, 6.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(6.22f, -6.22f) + horizontalLineTo(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.42f, 0.33f, -0.76f, 0.74f, -0.76f) + horizontalLineToRelative(7.56f) + lineToRelative(0.07f, 0.01f) + lineToRelative(0.1f, 0.03f) + lineToRelative(0.05f, 0.02f) + lineToRelative(0.09f, 0.04f) + lineToRelative(0.08f, 0.06f) + curveToRelative(0.06f, 0.04f, 0.11f, 0.09f, 0.15f, 0.14f) + lineToRelative(0.07f, 0.1f) + lineToRelative(0.04f, 0.1f) + lineToRelative(0.02f, 0.07f) + lineToRelative(0.01f, 0.06f) + verticalLineToRelative(0.06f) + verticalLineToRelative(-0.01f) + lineToRelative(0.01f, 0.07f) + close() + } + } + return _arrowMinimize!! + } + +private var _arrowMinimize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowMinimizeVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowMinimizeVertical.kt new file mode 100644 index 00000000..2cf22a68 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowMinimizeVertical.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowMinimizeVertical: ImageVector + get() { + if (_arrowMinimizeVertical != null) { + return _arrowMinimizeVertical!! + } + _arrowMinimizeVertical = fluentIcon(name = "Regular.ArrowMinimizeVertical") { + fluentPath { + moveTo(11.75f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(4.19f) + lineToRelative(1.22f, -1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-2.5f, 2.5f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineTo(11.0f, 6.94f) + verticalLineTo(2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + fluentPath { + moveTo(4.0f, 11.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineTo(4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + fluentPath { + moveTo(13.72f, 17.78f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineTo(11.0f, 16.56f) + verticalLineToRelative(4.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-4.69f) + lineToRelative(1.22f, 1.22f) + close() + } + } + return _arrowMinimizeVertical!! + } + +private var _arrowMinimizeVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowMove.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowMove.kt new file mode 100644 index 00000000..03740f85 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowMove.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowMove: ImageVector + get() { + if (_arrowMove != null) { + return _arrowMove!! + } + _arrowMove = fluentIcon(name = "Regular.ArrowMove") { + fluentPath { + moveTo(15.28f, 6.03f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-1.47f, -1.47f) + verticalLineToRelative(3.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(11.25f, 4.56f) + lineTo(9.78f, 6.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(2.75f, -2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 0.0f) + lineToRelative(2.75f, 2.75f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + close() + moveTo(6.03f, 14.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-2.75f, -2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(2.75f, -2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) + lineToRelative(-1.47f, 1.47f) + horizontalLineToRelative(3.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(4.56f, 12.75f) + lineToRelative(1.47f, 1.47f) + close() + moveTo(17.97f, 15.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(1.47f, -1.47f) + horizontalLineToRelative(-3.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.69f) + lineToRelative(-1.47f, -1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineToRelative(2.75f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.06f) + lineToRelative(-2.75f, 2.75f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + close() + moveTo(15.28f, 17.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-1.47f, 1.47f) + verticalLineToRelative(-3.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.69f) + lineToRelative(-1.47f, -1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(2.75f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 0.0f) + lineToRelative(2.75f, -2.75f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + close() + } + } + return _arrowMove!! + } + +private var _arrowMove: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowNext.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowNext.kt new file mode 100644 index 00000000..a94cc648 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowNext.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowNext: ImageVector + get() { + if (_arrowNext != null) { + return _arrowNext!! + } + _arrowNext = fluentIcon(name = "Regular.ArrowNext") { + fluentPath { + moveTo(18.25f, 3.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(17.5f, 3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(5.22f, 3.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + lineToRelative(8.25f, 8.25f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-8.25f, 8.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineTo(12.94f, 12.0f) + lineTo(5.22f, 4.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + } + } + return _arrowNext!! + } + +private var _arrowNext: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowOutlineUpRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowOutlineUpRight.kt new file mode 100644 index 00000000..f6d77231 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowOutlineUpRight.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowOutlineUpRight: ImageVector + get() { + if (_arrowOutlineUpRight != null) { + return _arrowOutlineUpRight!! + } + _arrowOutlineUpRight = fluentIcon(name = "Regular.ArrowOutlineUpRight") { + fluentPath { + moveTo(20.5f, 4.0f) + arcToRelative(0.45f, 0.45f, 0.0f, false, false, -0.5f, -0.5f) + lineTo(7.94f, 4.84f) + arcToRelative(0.45f, 0.45f, 0.0f, false, false, -0.27f, 0.77f) + lineToRelative(1.8f, 1.8f) + curveToRelative(0.29f, 0.29f, 0.29f, 0.76f, 0.0f, 1.06f) + lineTo(3.63f, 14.3f) + arcToRelative(0.45f, 0.45f, 0.0f, false, false, 0.0f, 0.64f) + lineToRelative(5.43f, 5.43f) + curveToRelative(0.18f, 0.17f, 0.46f, 0.17f, 0.64f, 0.0f) + lineToRelative(5.83f, -5.84f) + curveToRelative(0.3f, -0.29f, 0.77f, -0.29f, 1.06f, 0.0f) + lineToRelative(1.8f, 1.8f) + curveToRelative(0.27f, 0.27f, 0.72f, 0.1f, 0.76f, -0.27f) + lineTo(20.5f, 4.0f) + close() + moveTo(19.83f, 2.01f) + curveToRelative(1.24f, -0.14f, 2.3f, 0.91f, 2.16f, 2.16f) + lineToRelative(-1.34f, 12.06f) + arcToRelative(1.95f, 1.95f, 0.0f, false, true, -3.32f, 1.16f) + lineToRelative(-1.27f, -1.27f) + lineToRelative(-5.3f, 5.3f) + curveToRelative(-0.76f, 0.77f, -2.0f, 0.77f, -2.76f, 0.0f) + lineTo(2.57f, 16.0f) + curveToRelative(-0.76f, -0.76f, -0.76f, -2.0f, 0.0f, -2.76f) + lineToRelative(5.3f, -5.3f) + lineToRelative(-1.26f, -1.27f) + arcToRelative(1.95f, 1.95f, 0.0f, false, true, 1.16f, -3.32f) + lineToRelative(12.06f, -1.34f) + close() + } + } + return _arrowOutlineUpRight!! + } + +private var _arrowOutlineUpRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowParagraph.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowParagraph.kt new file mode 100644 index 00000000..db250cbd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowParagraph.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowParagraph: ImageVector + get() { + if (_arrowParagraph != null) { + return _arrowParagraph!! + } + _arrowParagraph = fluentIcon(name = "Regular.ArrowParagraph") { + fluentPath { + moveTo(21.25f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(4.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) + horizontalLineToRelative(-5.69f) + lineToRelative(2.72f, 2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-4.0f, -4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineTo(13.56f, 8.0f) + horizontalLineToRelative(5.69f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(7.72f, 11.22f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineTo(10.44f, 15.0f) + horizontalLineTo(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.69f) + lineToRelative(-2.72f, 2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(4.0f, -4.0f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-4.0f, -4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + close() + } + } + return _arrowParagraph!! + } + +private var _arrowParagraph: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowPrevious.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowPrevious.kt new file mode 100644 index 00000000..d588ba74 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowPrevious.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowPrevious: ImageVector + get() { + if (_arrowPrevious != null) { + return _arrowPrevious!! + } + _arrowPrevious = fluentIcon(name = "Regular.ArrowPrevious") { + fluentPath { + moveTo(5.75f, 3.0f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.1f) + lineTo(6.5f, 3.75f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 5.75f, 3.0f) + close() + moveTo(18.78f, 3.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, -0.07f) + lineToRelative(-0.08f, 0.07f) + lineToRelative(-8.25f, 8.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.98f) + lineToRelative(0.07f, 0.08f) + lineToRelative(8.25f, 8.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, -0.98f) + lineToRelative(-0.07f, -0.08f) + lineTo(11.06f, 12.0f) + lineToRelative(7.72f, -7.72f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + close() + } + } + return _arrowPrevious!! + } + +private var _arrowPrevious: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowRedo.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowRedo.kt new file mode 100644 index 00000000..39487dca --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowRedo.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowRedo: ImageVector + get() { + if (_arrowRedo != null) { + return _arrowRedo!! + } + _arrowRedo = fluentIcon(name = "Regular.ArrowRedo") { + fluentPath { + moveTo(19.25f, 2.0f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(5.69f) + lineToRelative(-4.57f, -4.56f) + arcToRelative(6.41f, 6.41f, 0.0f, false, false, -8.88f, -0.18f) + lineToRelative(-0.19f, 0.18f) + arcToRelative(6.4f, 6.4f, 0.0f, false, false, 0.0f, 9.06f) + lineToRelative(8.85f, 8.84f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineToRelative(-8.85f, -8.84f) + arcToRelative(4.9f, 4.9f, 0.0f, false, true, 6.77f, -7.1f) + lineToRelative(0.18f, 0.16f) + lineToRelative(4.57f, 4.56f) + horizontalLineToRelative(-5.69f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(7.5f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + verticalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + } + } + return _arrowRedo!! + } + +private var _arrowRedo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowRepeat1.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowRepeat1.kt new file mode 100644 index 00000000..0a22b06c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowRepeat1.kt @@ -0,0 +1,88 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowRepeat1: ImageVector + get() { + if (_arrowRepeat1 != null) { + return _arrowRepeat1!! + } + _arrowRepeat1 = fluentIcon(name = "Regular.ArrowRepeat1") { + fluentPath { + moveToRelative(14.61f, 2.47f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) + lineToRelative(-0.07f, 0.08f) + curveToRelative(-0.22f, 0.3f, -0.2f, 0.72f, 0.07f, 0.98f) + lineToRelative(1.97f, 1.98f) + lineTo(8.27f, 5.51f) + arcToRelative(6.51f, 6.51f, 0.0f, false, false, -4.58f, 10.92f) + lineToRelative(0.07f, 0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.08f, -1.03f) + lineToRelative(-0.2f, -0.23f) + arcTo(5.0f, 5.0f, 0.0f, false, true, 8.5f, 7.02f) + horizontalLineToRelative(6.88f) + lineToRelative(-1.83f, 1.84f) + lineToRelative(-0.07f, 0.07f) + curveToRelative(-0.22f, 0.3f, -0.2f, 0.72f, 0.07f, 1.0f) + curveToRelative(0.3f, 0.29f, 0.77f, 0.29f, 1.06f, 0.0f) + lineToRelative(3.18f, -3.2f) + lineToRelative(0.07f, -0.08f) + curveToRelative(0.22f, -0.3f, 0.2f, -0.72f, -0.07f, -0.99f) + lineToRelative(-3.18f, -3.19f) + close() + moveTo(20.23f, 7.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.05f, 1.07f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 1.31f, 3.09f) + curveToRelative(0.54f, 0.28f, 1.03f, 0.63f, 1.47f, 1.04f) + arcToRelative(6.64f, 6.64f, 0.0f, false, false, -1.66f, -5.13f) + lineToRelative(-0.07f, -0.07f) + close() + moveTo(8.56f, 17.05f) + horizontalLineToRelative(2.46f) + arcToRelative(6.6f, 6.6f, 0.0f, false, false, 0.07f, 1.5f) + lineTo(8.56f, 18.55f) + lineToRelative(1.9f, 1.91f) + lineToRelative(0.07f, 0.08f) + curveToRelative(0.22f, 0.3f, 0.2f, 0.72f, -0.07f, 0.99f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 0.07f) + lineToRelative(-0.09f, -0.07f) + lineToRelative(-3.18f, -3.2f) + lineToRelative(-0.07f, -0.07f) + arcToRelative(0.76f, 0.76f, 0.0f, false, true, 0.0f, -0.9f) + lineToRelative(0.07f, -0.09f) + lineToRelative(3.18f, -3.2f) + lineToRelative(0.08f, -0.06f) + curveToRelative(0.26f, -0.2f, 0.63f, -0.2f, 0.9f, 0.0f) + lineToRelative(0.08f, 0.07f) + lineToRelative(0.07f, 0.07f) + curveToRelative(0.2f, 0.27f, 0.2f, 0.64f, 0.0f, 0.9f) + lineToRelative(-0.07f, 0.1f) + lineToRelative(-1.9f, 1.9f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(18.11f, 14.01f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.56f, 0.27f) + curveToRelative(-0.05f, 0.11f, -0.27f, 0.45f, -0.61f, 0.82f) + curveToRelative(-0.33f, 0.38f, -0.74f, 0.74f, -1.16f, 0.95f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.44f, 0.9f) + curveToRelative(0.5f, -0.25f, 0.93f, -0.62f, 1.28f, -0.98f) + verticalLineToRelative(4.53f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.39f, -0.49f) + close() + } + } + return _arrowRepeat1!! + } + +private var _arrowRepeat1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowRepeatAll.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowRepeatAll.kt new file mode 100644 index 00000000..6d622617 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowRepeatAll.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowRepeatAll: ImageVector + get() { + if (_arrowRepeatAll != null) { + return _arrowRepeatAll!! + } + _arrowRepeatAll = fluentIcon(name = "Regular.ArrowRepeatAll") { + fluentPath { + moveToRelative(14.61f, 2.47f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) + lineToRelative(-0.07f, 0.08f) + curveToRelative(-0.22f, 0.3f, -0.2f, 0.72f, 0.07f, 0.98f) + lineToRelative(1.97f, 1.98f) + lineTo(8.27f, 5.51f) + arcToRelative(6.51f, 6.51f, 0.0f, false, false, -4.58f, 10.92f) + lineToRelative(0.07f, 0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.08f, -1.03f) + lineToRelative(-0.2f, -0.23f) + arcTo(5.0f, 5.0f, 0.0f, false, true, 8.5f, 7.02f) + horizontalLineToRelative(6.88f) + lineToRelative(-1.83f, 1.84f) + lineToRelative(-0.07f, 0.07f) + curveToRelative(-0.22f, 0.3f, -0.2f, 0.72f, 0.07f, 1.0f) + curveToRelative(0.3f, 0.29f, 0.77f, 0.29f, 1.06f, 0.0f) + lineToRelative(3.18f, -3.2f) + lineToRelative(0.07f, -0.08f) + curveToRelative(0.22f, -0.3f, 0.2f, -0.72f, -0.07f, -0.99f) + lineToRelative(-3.18f, -3.19f) + close() + moveTo(20.23f, 7.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.05f, 1.07f) + arcToRelative(5.01f, 5.01f, 0.0f, false, true, -3.68f, 8.41f) + lineTo(8.56f, 17.05f) + lineToRelative(1.9f, -1.9f) + lineToRelative(0.08f, -0.1f) + curveToRelative(0.2f, -0.26f, 0.2f, -0.63f, 0.0f, -0.9f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-0.08f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 0.01f) + lineToRelative(-0.08f, 0.07f) + lineToRelative(-3.18f, 3.2f) + lineToRelative(-0.07f, 0.08f) + curveToRelative(-0.2f, 0.26f, -0.2f, 0.63f, 0.0f, 0.9f) + lineToRelative(0.07f, 0.08f) + lineToRelative(3.18f, 3.19f) + lineToRelative(0.09f, 0.07f) + curveToRelative(0.29f, 0.22f, 0.7f, 0.2f, 0.97f, -0.07f) + reflectiveCurveToRelative(0.3f, -0.7f, 0.07f, -0.99f) + lineToRelative(-0.07f, -0.07f) + lineToRelative(-1.9f, -1.91f) + lineTo(15.73f, 18.56f) + arcTo(6.51f, 6.51f, 0.0f, false, false, 20.3f, 7.63f) + lineToRelative(-0.07f, -0.07f) + close() + } + } + return _arrowRepeatAll!! + } + +private var _arrowRepeatAll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowRepeatAllOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowRepeatAllOff.kt new file mode 100644 index 00000000..de83eada --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowRepeatAllOff.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowRepeatAllOff: ImageVector + get() { + if (_arrowRepeatAllOff != null) { + return _arrowRepeatAllOff!! + } + _arrowRepeatAllOff = fluentIcon(name = "Regular.ArrowRepeatAllOff") { + fluentPath { + moveToRelative(3.2f, 2.15f) + lineToRelative(0.08f, 0.07f) + lineToRelative(18.5f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-3.5f, -3.5f) + curveToRelative(-0.45f, 0.11f, -0.9f, 0.19f, -1.37f, 0.21f) + lineToRelative(-0.35f, 0.01f) + lineTo(8.56f, 18.5f) + lineToRelative(1.9f, 1.9f) + lineToRelative(0.07f, 0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.04f, 1.05f) + lineToRelative(-0.09f, -0.07f) + lineToRelative(-3.18f, -3.18f) + lineToRelative(-0.07f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -0.9f) + lineToRelative(0.07f, -0.08f) + lineToRelative(3.18f, -3.18f) + lineToRelative(0.08f, -0.07f) + curveToRelative(0.26f, -0.2f, 0.63f, -0.2f, 0.9f, 0.0f) + lineToRelative(0.08f, 0.07f) + lineToRelative(0.07f, 0.07f) + curveToRelative(0.2f, 0.27f, 0.2f, 0.63f, 0.0f, 0.9f) + lineToRelative(-0.07f, 0.09f) + lineToRelative(-1.9f, 1.9f) + horizontalLineToRelative(6.94f) + curveToRelative(0.14f, 0.0f, 0.28f, 0.0f, 0.42f, -0.02f) + lineTo(6.4f, 7.46f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, -1.6f, 7.9f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.11f, 1.0f) + arcTo(6.47f, 6.47f, 0.0f, false, true, 5.3f, 6.36f) + lineTo(2.22f, 3.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) + close() + moveTo(19.75f, 7.38f) + curveToRelative(0.22f, 0.0f, 0.42f, 0.1f, 0.55f, 0.24f) + arcToRelative(6.47f, 6.47f, 0.0f, false, true, -0.75f, 9.46f) + lineToRelative(-1.06f, -1.07f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 0.69f, -7.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.57f, -1.24f) + close() + moveTo(14.53f, 2.4f) + lineToRelative(0.08f, 0.07f) + lineToRelative(3.18f, 3.18f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.7f, 0.07f, 0.99f) + lineToRelative(-0.07f, 0.07f) + lineToRelative(-3.18f, 3.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineTo(15.38f, 7.0f) + horizontalLineToRelative(-5.9f) + lineTo(7.98f, 5.52f) + lineToRelative(0.28f, -0.02f) + horizontalLineToRelative(7.25f) + lineToRelative(-1.97f, -1.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + curveToRelative(0.27f, -0.27f, 0.69f, -0.3f, 0.98f, -0.07f) + close() + } + } + return _arrowRepeatAllOff!! + } + +private var _arrowRepeatAllOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowReply.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowReply.kt new file mode 100644 index 00000000..9b8eec76 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowReply.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowReply: ImageVector + get() { + if (_arrowReply != null) { + return _arrowReply!! + } + _arrowReply = fluentIcon(name = "Regular.ArrowReply") { + fluentPath { + moveTo(9.28f, 16.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineToRelative(-5.0f, -5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(5.0f, -5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) + lineTo(5.56f, 11.0f) + horizontalLineToRelative(7.84f) + curveToRelative(1.6f, 0.0f, 2.81f, 0.24f, 3.89f, 0.76f) + lineToRelative(0.24f, 0.13f) + arcToRelative(6.2f, 6.2f, 0.0f, false, true, 2.58f, 2.58f) + arcTo(8.4f, 8.4f, 0.0f, false, true, 21.0f, 18.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + curveToRelative(0.0f, -1.48f, -0.23f, -2.52f, -0.71f, -3.43f) + arcToRelative(4.7f, 4.7f, 0.0f, false, false, -1.96f, -1.96f) + arcToRelative(6.63f, 6.63f, 0.0f, false, false, -3.1f, -0.7f) + lineToRelative(-0.33f, -0.01f) + horizontalLineTo(5.56f) + lineToRelative(3.72f, 3.72f) + close() + } + } + return _arrowReply!! + } + +private var _arrowReply: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowReplyAll.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowReplyAll.kt new file mode 100644 index 00000000..b7fa4d47 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowReplyAll.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowReplyAll: ImageVector + get() { + if (_arrowReplyAll != null) { + return _arrowReplyAll!! + } + _arrowReplyAll = fluentIcon(name = "Regular.ArrowReplyAll") { + fluentPath { + moveTo(13.28f, 16.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineToRelative(-5.0f, -5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(5.0f, -5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) + lineTo(9.56f, 11.0f) + horizontalLineToRelative(3.84f) + curveToRelative(1.6f, 0.0f, 2.81f, 0.24f, 3.89f, 0.76f) + lineToRelative(0.24f, 0.13f) + arcToRelative(6.2f, 6.2f, 0.0f, false, true, 2.58f, 2.58f) + arcTo(8.4f, 8.4f, 0.0f, false, true, 21.0f, 18.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + curveToRelative(0.0f, -1.48f, -0.23f, -2.52f, -0.71f, -3.43f) + arcToRelative(4.7f, 4.7f, 0.0f, false, false, -1.96f, -1.96f) + arcToRelative(6.63f, 6.63f, 0.0f, false, false, -3.1f, -0.7f) + lineToRelative(-0.33f, -0.01f) + lineTo(9.56f, 12.5f) + lineToRelative(3.72f, 3.72f) + close() + moveTo(9.28f, 6.22f) + curveToRelative(0.29f, 0.3f, 0.29f, 0.77f, 0.0f, 1.06f) + lineTo(4.8f, 11.75f) + lineToRelative(4.47f, 4.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineToRelative(-5.0f, -5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(5.0f, -5.0f) + curveToRelative(0.29f, -0.3f, 0.76f, -0.3f, 1.06f, 0.0f) + close() + } + } + return _arrowReplyAll!! + } + +private var _arrowReplyAll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowReplyDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowReplyDown.kt new file mode 100644 index 00000000..46ee03bc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowReplyDown.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowReplyDown: ImageVector + get() { + if (_arrowReplyDown != null) { + return _arrowReplyDown!! + } + _arrowReplyDown = fluentIcon(name = "Regular.ArrowReplyDown") { + fluentPath { + moveTo(9.28f, 7.78f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-5.0f, 5.0f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(5.0f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(5.56f, 13.0f) + horizontalLineToRelative(7.84f) + curveToRelative(1.6f, 0.0f, 2.81f, -0.24f, 3.89f, -0.76f) + lineToRelative(0.24f, -0.13f) + arcToRelative(6.2f, 6.2f, 0.0f, false, false, 2.58f, -2.58f) + arcTo(8.4f, 8.4f, 0.0f, false, false, 21.0f, 5.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + curveToRelative(0.0f, 1.48f, -0.23f, 2.52f, -0.71f, 3.43f) + arcToRelative(4.7f, 4.7f, 0.0f, false, true, -1.96f, 1.96f) + curveToRelative(-0.84f, 0.45f, -1.79f, 0.67f, -3.1f, 0.7f) + lineToRelative(-0.33f, 0.01f) + horizontalLineTo(5.56f) + lineToRelative(3.72f, -3.72f) + close() + } + } + return _arrowReplyDown!! + } + +private var _arrowReplyDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowReset.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowReset.kt new file mode 100644 index 00000000..39d746e5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowReset.kt @@ -0,0 +1,37 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowReset: ImageVector + get() { + if (_arrowReset != null) { + return _arrowReset!! + } + _arrowReset = fluentIcon(name = "Regular.ArrowReset") { + fluentPath { + moveTo(6.78f, 2.72f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineTo(4.56f, 6.0f) + horizontalLineToRelative(8.69f) + arcToRelative(7.75f, 7.75f, 0.0f, true, true, -7.75f, 7.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + arcToRelative(6.25f, 6.25f, 0.0f, true, false, 6.25f, -6.25f) + horizontalLineTo(4.56f) + lineToRelative(2.22f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-3.5f, -3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(3.5f, -3.5f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + } + } + return _arrowReset!! + } + +private var _arrowReset: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowRotateClockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowRotateClockwise.kt new file mode 100644 index 00000000..b0b0cd0a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowRotateClockwise.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowRotateClockwise: ImageVector + get() { + if (_arrowRotateClockwise != null) { + return _arrowRotateClockwise!! + } + _arrowRotateClockwise = fluentIcon(name = "Regular.ArrowRotateClockwise") { + fluentPath { + moveTo(12.0f, 3.0f) + arcToRelative(9.0f, 9.0f, 0.0f, false, true, 4.98f, 16.5f) + horizontalLineToRelative(1.77f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-4.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(2.49f) + arcTo(7.5f, 7.5f, 0.0f, true, false, 4.5f, 12.0f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 12.0f) + arcToRelative(9.0f, 9.0f, 0.0f, false, true, 9.0f, -9.0f) + close() + moveTo(12.0f, 9.25f) + arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, 5.5f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.0f, -5.5f) + close() + moveTo(12.0f, 10.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + } + } + return _arrowRotateClockwise!! + } + +private var _arrowRotateClockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowRotateCounterclockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowRotateCounterclockwise.kt new file mode 100644 index 00000000..c4c3addd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowRotateCounterclockwise.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowRotateCounterclockwise: ImageVector + get() { + if (_arrowRotateCounterclockwise != null) { + return _arrowRotateCounterclockwise!! + } + _arrowRotateCounterclockwise = fluentIcon(name = "Regular.ArrowRotateCounterclockwise") { + fluentPath { + moveTo(12.0f, 3.0f) + arcToRelative(9.0f, 9.0f, 0.0f, false, false, -4.98f, 16.5f) + lineTo(5.25f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + horizontalLineToRelative(4.1f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + verticalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, -0.1f) + verticalLineToRelative(2.49f) + arcToRelative(7.5f, 7.5f, 0.0f, true, true, 11.0f, -6.64f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + arcToRelative(9.0f, 9.0f, 0.0f, false, false, -9.0f, -9.0f) + close() + moveTo(12.0f, 9.25f) + arcToRelative(2.75f, 2.75f, 0.0f, true, false, 0.0f, 5.5f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 0.0f, -5.5f) + close() + moveTo(12.0f, 10.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + } + } + return _arrowRotateCounterclockwise!! + } + +private var _arrowRotateCounterclockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowRouting.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowRouting.kt new file mode 100644 index 00000000..7774918e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowRouting.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowRouting: ImageVector + get() { + if (_arrowRouting != null) { + return _arrowRouting!! + } + _arrowRouting = fluentIcon(name = "Regular.ArrowRouting") { + fluentPath { + moveTo(18.78f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(19.44f, 5.0f) + horizontalLineToRelative(-6.19f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.75f, 2.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineToRelative(-1.3f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, -0.12f, 1.5f) + horizontalLineToRelative(1.42f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 12.0f, 17.25f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(6.19f) + lineToRelative(-1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineToRelative(3.0f, -3.0f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-3.0f, -3.0f) + close() + moveTo(3.5f, 19.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + } + } + return _arrowRouting!! + } + +private var _arrowRouting: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowRoutingRectangleMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowRoutingRectangleMultiple.kt new file mode 100644 index 00000000..3689a91e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowRoutingRectangleMultiple.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowRoutingRectangleMultiple: ImageVector + get() { + if (_arrowRoutingRectangleMultiple != null) { + return _arrowRoutingRectangleMultiple!! + } + _arrowRoutingRectangleMultiple = fluentIcon(name = + "Regular.ArrowRoutingRectangleMultiple") { + fluentPath { + moveTo(18.78f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(19.44f, 5.0f) + horizontalLineToRelative(-6.19f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.75f, 2.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineToRelative(-1.3f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, -0.12f, 1.5f) + horizontalLineToRelative(1.42f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 12.0f, 17.25f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(6.19f) + lineToRelative(-1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineToRelative(3.0f, -3.0f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-3.0f, -3.0f) + close() + moveTo(3.5f, 19.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + moveTo(14.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) + verticalLineToRelative(-3.0f) + close() + } + } + return _arrowRoutingRectangleMultiple!! + } + +private var _arrowRoutingRectangleMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowShuffle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowShuffle.kt new file mode 100644 index 00000000..1da05df6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowShuffle.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowShuffle: ImageVector + get() { + if (_arrowShuffle != null) { + return _arrowShuffle!! + } + _arrowShuffle = fluentIcon(name = "Regular.ArrowShuffle") { + fluentPath { + moveTo(19.28f, 4.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(19.44f, 7.0f) + horizontalLineToRelative(-0.19f) + curveToRelative(-3.92f, 0.0f, -6.42f, 2.3f, -8.7f, 4.39f) + lineToRelative(-0.06f, 0.06f) + curveTo(8.15f, 13.6f, 6.04f, 15.5f, 2.75f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + curveToRelative(3.92f, 0.0f, 6.42f, -2.3f, 8.7f, -4.39f) + lineToRelative(0.06f, -0.06f) + curveToRelative(2.34f, -2.15f, 4.45f, -4.05f, 7.74f, -4.05f) + horizontalLineToRelative(0.19f) + lineToRelative(-1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.06f) + lineToRelative(-2.5f, -2.5f) + close() + moveTo(2.75f, 7.0f) + curveToRelative(3.25f, 0.0f, 5.52f, 1.58f, 7.5f, 3.31f) + lineToRelative(-0.3f, 0.28f) + lineToRelative(-0.13f, 0.12f) + lineToRelative(-0.68f, 0.62f) + curveTo(7.28f, 9.73f, 5.4f, 8.5f, 2.75f, 8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + close() + moveTo(19.25f, 17.0f) + curveToRelative(-3.25f, 0.0f, -5.52f, -1.58f, -7.5f, -3.31f) + lineToRelative(0.3f, -0.28f) + lineToRelative(0.13f, -0.12f) + lineToRelative(0.68f, -0.62f) + curveToRelative(1.86f, 1.6f, 3.74f, 2.83f, 6.39f, 2.83f) + horizontalLineToRelative(0.19f) + lineToRelative(-1.22f, -1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineToRelative(2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.06f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineTo(19.44f, 17.0f) + horizontalLineToRelative(-0.19f) + close() + } + } + return _arrowShuffle!! + } + +private var _arrowShuffle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowShuffleOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowShuffleOff.kt new file mode 100644 index 00000000..9e16b6d1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowShuffleOff.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowShuffleOff: ImageVector + get() { + if (_arrowShuffleOff != null) { + return _arrowShuffleOff!! + } + _arrowShuffleOff = fluentIcon(name = "Regular.ArrowShuffleOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(4.7f, 4.7f) + arcTo(9.25f, 9.25f, 0.0f, false, false, 2.75f, 7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + curveToRelative(2.65f, 0.0f, 4.53f, 1.23f, 6.39f, 2.83f) + lineToRelative(0.59f, -0.54f) + lineToRelative(0.7f, 0.7f) + curveToRelative(-2.3f, 2.14f, -4.41f, 4.01f, -7.68f, 4.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + curveToRelative(3.92f, 0.0f, 6.42f, -2.3f, 8.7f, -4.39f) + lineToRelative(0.05f, -0.05f) + lineToRelative(0.7f, 0.7f) + curveToRelative(0.0f, 0.01f, 0.0f, 0.02f, -0.02f, 0.03f) + lineToRelative(-0.13f, 0.12f) + lineToRelative(-0.3f, 0.28f) + curveToRelative(0.94f, 0.82f, 1.94f, 1.6f, 3.09f, 2.2f) + lineToRelative(5.88f, 5.89f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(18.66f, 15.48f) + lineTo(20.87f, 17.68f) + lineTo(21.78f, 16.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.06f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.22f, 1.22f) + horizontalLineToRelative(-0.19f) + curveToRelative(-0.2f, 0.0f, -0.4f, 0.0f, -0.59f, -0.02f) + close() + moveTo(12.7f, 9.52f) + lineToRelative(1.07f, 1.07f) + curveToRelative(1.58f, -1.22f, 3.26f, -2.09f, 5.48f, -2.09f) + horizontalLineToRelative(0.19f) + lineToRelative(-1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.06f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(19.44f, 7.0f) + horizontalLineToRelative(-0.19f) + curveToRelative(-2.74f, 0.0f, -4.79f, 1.13f, -6.55f, 2.52f) + close() + } + } + return _arrowShuffleOff!! + } + +private var _arrowShuffleOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSort.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSort.kt new file mode 100644 index 00000000..61afe07e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSort.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowSort: ImageVector + get() { + if (_arrowSort != null) { + return _arrowSort!! + } + _arrowSort = fluentIcon(name = "Regular.ArrowSort") { + fluentPath { + moveTo(17.25f, 4.0f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + verticalLineToRelative(12.7f) + lineToRelative(-3.22f, -3.23f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 1.14f) + lineToRelative(4.5f, 4.5f) + lineToRelative(0.09f, 0.07f) + curveToRelative(0.3f, 0.22f, 0.7f, 0.2f, 0.97f, -0.07f) + lineToRelative(4.5f, -4.5f) + lineToRelative(0.07f, -0.09f) + curveToRelative(0.22f, -0.3f, 0.2f, -0.7f, -0.07f, -0.98f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) + lineTo(18.0f, 17.45f) + lineTo(18.0f, 4.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) + close() + moveTo(6.21f, 4.22f) + lineTo(1.72f, 8.72f) + lineTo(1.65f, 8.8f) + curveToRelative(-0.22f, 0.3f, -0.2f, 0.7f, 0.07f, 0.98f) + lineToRelative(0.08f, 0.07f) + curveToRelative(0.3f, 0.22f, 0.71f, 0.2f, 0.98f, -0.07f) + lineTo(6.0f, 6.56f) + lineTo(6.0f, 19.36f) + curveToRelative(0.05f, 0.36f, 0.37f, 0.64f, 0.75f, 0.64f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + lineTo(7.5f, 6.55f) + lineToRelative(3.22f, 3.23f) + lineToRelative(0.08f, 0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, -1.14f) + lineToRelative(-4.5f, -4.5f) + lineToRelative(-0.09f, -0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) + close() + } + } + return _arrowSort!! + } + +private var _arrowSort: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSortDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSortDown.kt new file mode 100644 index 00000000..721f659b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSortDown.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowSortDown: ImageVector + get() { + if (_arrowSortDown != null) { + return _arrowSortDown!! + } + _arrowSortDown = fluentIcon(name = "Regular.ArrowSortDown") { + fluentPath { + moveTo(11.65f, 4.0f) + horizontalLineToRelative(0.1f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(12.7f) + lineToRelative(3.22f, -3.23f) + curveToRelative(0.27f, -0.26f, 0.68f, -0.29f, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.69f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.09f) + lineToRelative(-4.5f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 0.07f) + lineToRelative(-0.09f, -0.07f) + lineToRelative(-4.5f, -4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.14f) + lineToRelative(0.08f, 0.07f) + lineTo(11.0f, 17.44f) + verticalLineTo(4.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(-0.1f) + close() + } + } + return _arrowSortDown!! + } + +private var _arrowSortDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSortDownLines.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSortDownLines.kt new file mode 100644 index 00000000..888eac1b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSortDownLines.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowSortDownLines: ImageVector + get() { + if (_arrowSortDownLines != null) { + return _arrowSortDownLines!! + } + _arrowSortDownLines = fluentIcon(name = "Regular.ArrowSortDownLines") { + fluentPath { + moveTo(8.75f, 4.0f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + verticalLineToRelative(12.7f) + lineToRelative(-3.22f, -3.23f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 1.14f) + lineToRelative(4.5f, 4.5f) + lineToRelative(0.09f, 0.07f) + curveToRelative(0.3f, 0.22f, 0.7f, 0.2f, 0.97f, -0.07f) + lineToRelative(4.5f, -4.5f) + lineToRelative(0.07f, -0.09f) + curveToRelative(0.22f, -0.3f, 0.2f, -0.7f, -0.07f, -0.98f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) + lineTo(9.5f, 17.45f) + lineTo(9.5f, 4.65f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 8.74f, 4.0f) + close() + moveTo(12.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-8.0f) + close() + moveTo(11.5f, 8.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(12.25f, 10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.0f) + close() + } + } + return _arrowSortDownLines!! + } + +private var _arrowSortDownLines: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSortUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSortUp.kt new file mode 100644 index 00000000..15e583fa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSortUp.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowSortUp: ImageVector + get() { + if (_arrowSortUp != null) { + return _arrowSortUp!! + } + _arrowSortUp = fluentIcon(name = "Regular.ArrowSortUp") { + fluentPath { + moveToRelative(6.72f, 8.71f) + lineToRelative(4.5f, -4.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -0.07f) + lineToRelative(0.08f, 0.07f) + lineToRelative(4.5f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 1.13f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-3.22f, -3.22f) + verticalLineToRelative(12.7f) + curveToRelative(0.0f, 0.37f, -0.28f, 0.69f, -0.65f, 0.74f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.64f) + verticalLineTo(6.56f) + lineTo(7.78f, 9.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.09f) + lineToRelative(4.5f, -4.49f) + lineToRelative(-4.5f, 4.5f) + close() + } + } + return _arrowSortUp!! + } + +private var _arrowSortUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSplit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSplit.kt new file mode 100644 index 00000000..04555c44 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSplit.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowSplit: ImageVector + get() { + if (_arrowSplit != null) { + return _arrowSplit!! + } + _arrowSplit = fluentIcon(name = "Regular.ArrowSplit") { + fluentPath { + moveTo(12.0f, 3.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineTo(9.5f) + horizontalLineToRelative(2.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.0f, 12.25f) + verticalLineToRelative(6.2f) + lineToRelative(1.72f, -1.73f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-3.0f, 3.0f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-3.0f, -3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(1.72f, 1.72f) + verticalLineToRelative(-6.19f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-6.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(6.19f) + lineToRelative(1.72f, -1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) + lineToRelative(-3.0f, 3.0f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-3.0f, -3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineTo(6.0f, 18.44f) + verticalLineToRelative(-6.19f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 8.75f, 9.5f) + horizontalLineToRelative(2.5f) + verticalLineTo(3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _arrowSplit!! + } + +private var _arrowSplit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSquareDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSquareDown.kt new file mode 100644 index 00000000..53724ee6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSquareDown.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowSquareDown: ImageVector + get() { + if (_arrowSquareDown != null) { + return _arrowSquareDown!! + } + _arrowSquareDown = fluentIcon(name = "Regular.ArrowSquareDown") { + fluentPath { + moveToRelative(16.53f, 11.72f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) + lineToRelative(-2.72f, 2.72f) + verticalLineTo(7.65f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 12.0f, 7.0f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + verticalLineToRelative(6.7f) + lineToRelative(-2.72f, -2.73f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 1.13f) + lineToRelative(4.0f, 4.0f) + lineToRelative(0.08f, 0.07f) + curveToRelative(0.3f, 0.22f, 0.71f, 0.2f, 0.98f, -0.07f) + lineToRelative(4.0f, -4.0f) + lineToRelative(0.07f, -0.08f) + curveToRelative(0.22f, -0.3f, 0.2f, -0.71f, -0.07f, -0.98f) + close() + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineTo(6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + horizontalLineTo(6.25f) + close() + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineTo(6.25f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineTo(6.25f) + close() + } + } + return _arrowSquareDown!! + } + +private var _arrowSquareDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowStepIn.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowStepIn.kt new file mode 100644 index 00000000..0abd773b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowStepIn.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowStepIn: ImageVector + get() { + if (_arrowStepIn != null) { + return _arrowStepIn!! + } + _arrowStepIn = fluentIcon(name = "Regular.ArrowStepIn") { + fluentPath { + moveTo(12.0f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(9.26f) + lineToRelative(3.48f, -3.3f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.04f, 1.08f) + lineToRelative(-4.75f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.04f, 0.0f) + lineTo(6.73f, 9.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.04f, -1.08f) + lineToRelative(3.48f, 3.3f) + lineTo(11.25f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(12.0f, 22.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) + close() + moveTo(12.0f, 20.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) + close() + } + } + return _arrowStepIn!! + } + +private var _arrowStepIn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowStepInLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowStepInLeft.kt new file mode 100644 index 00000000..bd9b0392 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowStepInLeft.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowStepInLeft: ImageVector + get() { + if (_arrowStepInLeft != null) { + return _arrowStepInLeft!! + } + _arrowStepInLeft = fluentIcon(name = "Regular.ArrowStepInLeft") { + fluentPath { + moveTo(15.3f, 16.23f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.1f, 1.04f) + lineToRelative(-4.5f, -4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.04f) + lineToRelative(4.5f, -4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.1f, 1.04f) + lineTo(12.0f, 11.25f) + horizontalLineToRelative(9.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-9.26f) + lineToRelative(3.3f, 3.48f) + close() + moveTo(2.0f, 12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.0f) + close() + moveTo(3.5f, 12.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) + close() + } + } + return _arrowStepInLeft!! + } + +private var _arrowStepInLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowStepInRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowStepInRight.kt new file mode 100644 index 00000000..0118590f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowStepInRight.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowStepInRight: ImageVector + get() { + if (_arrowStepInRight != null) { + return _arrowStepInRight!! + } + _arrowStepInRight = fluentIcon(name = "Regular.ArrowStepInRight") { + fluentPath { + moveTo(8.7f, 16.23f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.1f, 1.04f) + lineToRelative(4.5f, -4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.04f) + lineTo(9.8f, 6.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.1f, 1.04f) + lineToRelative(3.3f, 3.48f) + lineTo(2.76f, 11.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(9.26f) + lineToRelative(-3.3f, 3.48f) + close() + moveTo(22.0f, 12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, -6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 6.0f, 0.0f) + close() + moveTo(20.5f, 12.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + } + } + return _arrowStepInRight!! + } + +private var _arrowStepInRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowStepOut.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowStepOut.kt new file mode 100644 index 00000000..f5ccea11 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowStepOut.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowStepOut: ImageVector + get() { + if (_arrowStepOut != null) { + return _arrowStepOut!! + } + _arrowStepOut = fluentIcon(name = "Regular.ArrowStepOut") { + fluentPath { + moveTo(12.75f, 13.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(11.25f, 4.49f) + lineTo(7.77f, 7.8f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.04f, -1.08f) + lineToRelative(4.75f, -4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.04f, 0.0f) + lineToRelative(4.75f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.04f, 1.08f) + lineToRelative(-3.48f, -3.3f) + verticalLineToRelative(9.26f) + close() + moveTo(15.0f, 19.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) + close() + moveTo(10.5f, 19.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) + close() + } + } + return _arrowStepOut!! + } + +private var _arrowStepOut: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSwap.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSwap.kt new file mode 100644 index 00000000..5e7c1301 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSwap.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowSwap: ImageVector + get() { + if (_arrowSwap != null) { + return _arrowSwap!! + } + _arrowSwap = fluentIcon(name = "Regular.ArrowSwap") { + fluentPath { + moveToRelative(14.78f, 2.22f) + lineToRelative(4.5f, 4.5f) + curveToRelative(0.26f, 0.26f, 0.29f, 0.68f, 0.07f, 0.97f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-4.5f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.97f) + lineToRelative(0.07f, -0.08f) + lineTo(16.94f, 8.0f) + lineTo(5.24f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.38f, 0.27f, -0.7f, 0.64f, -0.75f) + lineTo(16.94f, 6.5f) + lineToRelative(-3.22f, -3.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + lineToRelative(4.5f, 4.5f) + lineToRelative(-4.5f, -4.5f) + close() + moveTo(19.5f, 16.65f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.64f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(7.06f, 17.5f) + lineToRelative(3.22f, 3.22f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.08f, 0.98f) + lineToRelative(-0.08f, 0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 0.07f) + lineToRelative(-0.09f, -0.07f) + lineToRelative(-4.5f, -4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.97f) + lineToRelative(0.07f, -0.09f) + lineToRelative(4.5f, -4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.14f, 0.98f) + lineToRelative(-0.08f, 0.08f) + lineTo(7.07f, 16.0f) + horizontalLineToRelative(11.69f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + verticalLineToRelative(0.1f) + verticalLineToRelative(-0.1f) + close() + } + } + return _arrowSwap!! + } + +private var _arrowSwap: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSyncCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSyncCheckmark.kt new file mode 100644 index 00000000..26dedf33 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSyncCheckmark.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowSyncCheckmark: ImageVector + get() { + if (_arrowSyncCheckmark != null) { + return _arrowSyncCheckmark!! + } + _arrowSyncCheckmark = fluentIcon(name = "Regular.ArrowSyncCheckmark") { + fluentPath { + moveTo(16.4f, 6.23f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.9f, -1.2f) + arcToRelative(8.74f, 8.74f, 0.0f, false, true, -4.58f, 15.7f) + lineToRelative(0.75f, 0.74f) + lineToRelative(0.07f, 0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, 0.98f) + lineToRelative(-2.0f, -2.0f) + lineToRelative(-0.07f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.07f, -0.98f) + lineToRelative(0.33f, -0.33f) + arcToRelative(7.29f, 7.29f, 0.0f, false, false, 2.06f, 0.06f) + arcToRelative(7.25f, 7.25f, 0.0f, false, false, 3.6f, -12.97f) + close() + moveTo(10.53f, 2.53f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-0.33f, 0.33f) + arcToRelative(7.3f, 7.3f, 0.0f, false, false, -2.06f, -0.06f) + arcTo(7.25f, 7.25f, 0.0f, false, false, 7.4f, 17.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.96f, 1.15f) + arcToRelative(8.75f, 8.75f, 0.0f, false, true, 4.85f, -15.47f) + lineToRelative(-0.75f, -0.75f) + close() + moveTo(15.03f, 11.03f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineTo(11.0f, 12.94f) + lineToRelative(-0.97f, -0.97f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.5f, 1.5f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(3.5f, -3.5f) + close() + moveTo(12.0f, 18.0f) + arcToRelative(6.0f, 6.0f, 0.0f, true, false, 0.0f, -12.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, 0.0f, 12.0f) + close() + moveTo(12.0f, 16.5f) + arcToRelative(4.5f, 4.5f, 0.0f, true, true, 0.0f, -9.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 0.0f, 9.0f) + close() + } + } + return _arrowSyncCheckmark!! + } + +private var _arrowSyncCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSyncCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSyncCircle.kt new file mode 100644 index 00000000..53bfdf5f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSyncCircle.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowSyncCircle: ImageVector + get() { + if (_arrowSyncCircle != null) { + return _arrowSyncCircle!! + } + _arrowSyncCircle = fluentIcon(name = "Regular.ArrowSyncCircle") { + fluentPath { + moveTo(16.0f, 8.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(14.0f, 12.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.27f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -5.94f, -1.02f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.16f, -0.96f) + arcTo(5.0f, 5.0f, 0.0f, false, true, 16.0f, 9.0f) + verticalLineToRelative(-0.75f) + close() + moveTo(8.0f, 15.0f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + lineTo(10.0f, 12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(8.84f, 13.5f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 5.84f, 0.77f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.14f, 0.97f) + arcTo(5.01f, 5.01f, 0.0f, false, true, 8.0f, 15.0f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) + close() + moveTo(20.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, -17.0f, 0.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, 17.0f, 0.0f) + close() + } + } + return _arrowSyncCircle!! + } + +private var _arrowSyncCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSyncDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSyncDismiss.kt new file mode 100644 index 00000000..9d8371a9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowSyncDismiss.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowSyncDismiss: ImageVector + get() { + if (_arrowSyncDismiss != null) { + return _arrowSyncDismiss!! + } + _arrowSyncDismiss = fluentIcon(name = "Regular.ArrowSyncDismiss") { + fluentPath { + moveTo(16.27f, 6.12f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, -1.08f) + arcToRelative(8.74f, 8.74f, 0.0f, false, true, -4.58f, 15.68f) + lineToRelative(0.75f, 0.75f) + lineToRelative(0.07f, 0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, 0.98f) + lineToRelative(-2.0f, -2.0f) + lineToRelative(-0.07f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.07f, -0.98f) + lineToRelative(0.31f, -0.31f) + arcToRelative(7.27f, 7.27f, 0.0f, false, false, 5.55f, -13.04f) + close() + moveTo(13.27f, 4.84f) + arcTo(7.27f, 7.27f, 0.0f, false, false, 7.5f, 17.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.05f) + arcToRelative(8.75f, 8.75f, 0.0f, false, true, 4.85f, -15.47f) + lineToRelative(-0.75f, -0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-0.31f, 0.31f) + close() + moveTo(9.47f, 9.47f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineTo(12.0f, 10.94f) + lineToRelative(1.47f, -1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineTo(13.06f, 12.0f) + lineToRelative(1.47f, 1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(12.0f, 13.06f) + lineToRelative(-1.47f, 1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineTo(10.94f, 12.0f) + lineToRelative(-1.47f, -1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + moveTo(12.0f, 18.0f) + arcToRelative(6.0f, 6.0f, 0.0f, true, false, 0.0f, -12.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, 0.0f, 12.0f) + close() + moveTo(12.0f, 16.5f) + arcToRelative(4.5f, 4.5f, 0.0f, true, true, 0.0f, -9.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 0.0f, 9.0f) + close() + } + } + return _arrowSyncDismiss!! + } + +private var _arrowSyncDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTrending.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTrending.kt new file mode 100644 index 00000000..a1a2404a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTrending.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowTrending: ImageVector + get() { + if (_arrowTrending != null) { + return _arrowTrending!! + } + _arrowTrending = fluentIcon(name = "Regular.ArrowTrending") { + fluentPath { + moveTo(13.75f, 5.5f) + horizontalLineToRelative(7.55f) + lineToRelative(0.1f, 0.01f) + lineToRelative(0.1f, 0.03f) + lineToRelative(0.06f, 0.03f) + curveToRelative(0.08f, 0.03f, 0.16f, 0.08f, 0.22f, 0.15f) + lineToRelative(0.04f, 0.04f) + lineToRelative(0.04f, 0.06f) + lineToRelative(0.06f, 0.09f) + lineToRelative(0.04f, 0.09f) + lineToRelative(0.02f, 0.06f) + lineToRelative(0.01f, 0.07f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(7.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-5.8f) + lineToRelative(-7.72f, 7.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-2.97f, -2.97f) + lineToRelative(-5.47f, 5.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(6.0f, -6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + lineToRelative(2.97f, 2.97f) + lineTo(19.44f, 7.0f) + horizontalLineToRelative(-5.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.73f, -0.65f) + lineToRelative(-0.01f, -0.1f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + close() + } + } + return _arrowTrending!! + } + +private var _arrowTrending: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTrendingCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTrendingCheckmark.kt new file mode 100644 index 00000000..c5e73c9b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTrendingCheckmark.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowTrendingCheckmark: ImageVector + get() { + if (_arrowTrendingCheckmark != null) { + return _arrowTrendingCheckmark!! + } + _arrowTrendingCheckmark = fluentIcon(name = "Regular.ArrowTrendingCheckmark") { + fluentPath { + moveTo(20.25f, 3.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(19.5f, 5.56f) + lineToRelative(-5.97f, 5.97f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-2.22f, -2.22f) + lineToRelative(-5.97f, 5.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(6.5f, -6.5f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineTo(13.0f, 9.94f) + lineToRelative(5.44f, -5.44f) + horizontalLineToRelative(-3.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(5.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-3.65f, 3.64f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _arrowTrendingCheckmark!! + } + +private var _arrowTrendingCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTrendingDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTrendingDown.kt new file mode 100644 index 00000000..f6612181 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTrendingDown.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowTrendingDown: ImageVector + get() { + if (_arrowTrendingDown != null) { + return _arrowTrendingDown!! + } + _arrowTrendingDown = fluentIcon(name = "Regular.ArrowTrendingDown") { + fluentPath { + moveTo(13.75f, 18.5f) + horizontalLineToRelative(7.55f) + lineToRelative(0.1f, -0.01f) + lineToRelative(0.1f, -0.03f) + lineToRelative(0.06f, -0.03f) + arcToRelative(0.72f, 0.72f, 0.0f, false, false, 0.22f, -0.15f) + lineToRelative(0.04f, -0.04f) + lineToRelative(0.04f, -0.06f) + lineToRelative(0.06f, -0.09f) + lineToRelative(0.04f, -0.09f) + lineToRelative(0.02f, -0.06f) + lineToRelative(0.01f, -0.07f) + lineToRelative(0.01f, -0.1f) + verticalLineToRelative(-7.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, -0.1f) + verticalLineToRelative(5.8f) + lineToRelative(-7.72f, -7.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, -0.07f) + lineToRelative(-0.08f, 0.07f) + lineToRelative(-2.97f, 2.97f) + lineToRelative(-5.47f, -5.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.13f, 0.98f) + lineToRelative(0.07f, 0.08f) + lineToRelative(6.0f, 6.0f) + curveToRelative(0.27f, 0.27f, 0.68f, 0.3f, 0.98f, 0.07f) + lineToRelative(0.08f, -0.07f) + lineToRelative(2.97f, -2.97f) + lineTo(19.44f, 17.0f) + horizontalLineToRelative(-5.7f) + curveToRelative(-0.37f, 0.0f, -0.68f, 0.28f, -0.73f, 0.65f) + lineToRelative(-0.01f, 0.1f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + close() + } + } + return _arrowTrendingDown!! + } + +private var _arrowTrendingDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTrendingLines.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTrendingLines.kt new file mode 100644 index 00000000..3b274719 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTrendingLines.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowTrendingLines: ImageVector + get() { + if (_arrowTrendingLines != null) { + return _arrowTrendingLines!! + } + _arrowTrendingLines = fluentIcon(name = "Regular.ArrowTrendingLines") { + fluentPath { + moveTo(16.75f, 2.0f) + horizontalLineToRelative(4.55f) + lineToRelative(0.1f, 0.01f) + lineToRelative(0.1f, 0.03f) + lineToRelative(0.06f, 0.03f) + curveToRelative(0.08f, 0.03f, 0.16f, 0.08f, 0.22f, 0.15f) + lineToRelative(0.04f, 0.04f) + lineToRelative(0.04f, 0.06f) + lineToRelative(0.06f, 0.09f) + lineToRelative(0.04f, 0.09f) + lineToRelative(0.02f, 0.06f) + lineToRelative(0.01f, 0.07f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(4.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(20.5f, 4.56f) + lineTo(14.06f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineTo(13.0f, 11.0f) + lineTo(9.97f, 8.09f) + lineToRelative(-5.69f, 5.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineTo(9.44f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + lineToRelative(3.03f, 2.9f) + lineToRelative(5.9f, -5.9f) + horizontalLineToRelative(-2.68f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + close() + moveTo(3.75f, 17.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(9.5f, 13.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-7.5f) + close() + moveTo(13.75f, 15.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-5.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(19.5f, 10.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-10.5f) + close() + } + } + return _arrowTrendingLines!! + } + +private var _arrowTrendingLines: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTrendingSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTrendingSettings.kt new file mode 100644 index 00000000..905b4628 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTrendingSettings.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowTrendingSettings: ImageVector + get() { + if (_arrowTrendingSettings != null) { + return _arrowTrendingSettings!! + } + _arrowTrendingSettings = fluentIcon(name = "Regular.ArrowTrendingSettings") { + fluentPath { + moveTo(20.25f, 3.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(19.5f, 5.56f) + lineToRelative(-5.97f, 5.97f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-2.22f, -2.22f) + lineToRelative(-5.97f, 5.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(6.5f, -6.5f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineTo(13.0f, 9.94f) + lineToRelative(5.44f, -5.44f) + horizontalLineToRelative(-3.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(5.0f) + close() + moveTo(14.28f, 13.98f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.59f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) + lineToRelative(0.55f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) + lineToRelative(-0.19f, 0.63f) + curveToRelative(0.44f, 0.39f, 0.94f, 0.7f, 1.49f, 0.93f) + lineToRelative(0.49f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) + lineToRelative(-0.2f, -0.69f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) + lineToRelative(0.59f, -0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, -1.8f) + lineToRelative(-0.55f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.19f, -0.63f) + curveToRelative(-0.44f, -0.4f, -0.94f, -0.7f, -1.49f, -0.93f) + lineToRelative(-0.49f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) + lineToRelative(0.2f, 0.7f) + close() + moveTo(17.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) + close() + } + } + return _arrowTrendingSettings!! + } + +private var _arrowTrendingSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTrendingSparkle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTrendingSparkle.kt new file mode 100644 index 00000000..3cc66b1f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTrendingSparkle.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowTrendingSparkle: ImageVector + get() { + if (_arrowTrendingSparkle != null) { + return _arrowTrendingSparkle!! + } + _arrowTrendingSparkle = fluentIcon(name = "Regular.ArrowTrendingSparkle") { + fluentPath { + moveTo(4.85f, 8.15f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, 0.69f, 1.11f) + lineToRelative(0.45f, 1.38f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 1.02f, 0.0f) + lineToRelative(0.45f, -1.38f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, 1.8f, -1.8f) + lineToRelative(1.38f, -0.44f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, -1.03f) + horizontalLineToRelative(-0.03f) + lineToRelative(-1.38f, -0.45f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.8f, -1.8f) + lineTo(7.0f, 2.36f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, -1.03f, 0.0f) + lineTo(5.5f, 3.74f) + lineToRelative(-0.01f, 0.03f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.76f, 1.77f) + lineToRelative(-1.38f, 0.44f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, 1.03f) + lineToRelative(1.38f, 0.45f) + curveToRelative(0.42f, 0.14f, 0.8f, 0.37f, 1.11f, 0.69f) + close() + moveTo(20.25f, 7.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(19.5f, 9.56f) + lineToRelative(-5.97f, 5.97f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-2.22f, -2.22f) + lineToRelative(-5.97f, 5.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(6.5f, -6.5f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineTo(13.0f, 13.94f) + lineToRelative(5.44f, -5.44f) + horizontalLineToRelative(-3.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(5.0f) + close() + moveTo(20.02f, 17.96f) + lineTo(20.78f, 18.21f) + horizontalLineToRelative(0.02f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, 0.47f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, 0.1f) + lineToRelative(-0.77f, 0.26f) + arcToRelative(1.58f, 1.58f, 0.0f, false, false, -1.0f, 1.0f) + lineToRelative(-0.24f, 0.76f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.58f, 0.0f) + lineToRelative(-0.24f, -0.77f) + arcToRelative(1.57f, 1.57f, 0.0f, false, false, -1.0f, -1.0f) + lineToRelative(-0.77f, -0.25f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, -0.46f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, -0.1f) + lineToRelative(0.77f, -0.26f) + arcToRelative(1.58f, 1.58f, 0.0f, false, false, 0.98f, -1.0f) + lineToRelative(0.25f, -0.76f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.57f, 0.0f) + lineToRelative(0.25f, 0.77f) + arcToRelative(1.58f, 1.58f, 0.0f, false, false, 1.0f, 1.0f) + close() + } + } + return _arrowTrendingSparkle!! + } + +private var _arrowTrendingSparkle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTrendingText.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTrendingText.kt new file mode 100644 index 00000000..570fc022 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTrendingText.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowTrendingText: ImageVector + get() { + if (_arrowTrendingText != null) { + return _arrowTrendingText!! + } + _arrowTrendingText = fluentIcon(name = "Regular.ArrowTrendingText") { + fluentPath { + moveTo(20.25f, 3.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(19.5f, 5.56f) + lineToRelative(-5.97f, 5.97f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-2.22f, -2.22f) + lineToRelative(-5.97f, 5.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(6.5f, -6.5f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineTo(13.0f, 9.94f) + lineToRelative(5.44f, -5.44f) + horizontalLineToRelative(-3.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(5.0f) + close() + moveTo(14.0f, 13.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + verticalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + horizontalLineToRelative(-7.0f) + close() + moveTo(14.0f, 16.5f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + moveTo(14.0f, 19.5f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + } + } + return _arrowTrendingText!! + } + +private var _arrowTrendingText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTrendingWrench.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTrendingWrench.kt new file mode 100644 index 00000000..01a76061 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTrendingWrench.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowTrendingWrench: ImageVector + get() { + if (_arrowTrendingWrench != null) { + return _arrowTrendingWrench!! + } + _arrowTrendingWrench = fluentIcon(name = "Regular.ArrowTrendingWrench") { + fluentPath { + moveTo(21.0f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.19f) + lineTo(13.0f, 9.94f) + lineToRelative(-2.22f, -2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-6.5f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(5.97f, -5.97f) + lineToRelative(2.22f, 2.22f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(5.97f, -5.97f) + verticalLineToRelative(3.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-5.0f) + close() + moveTo(20.48f, 11.83f) + curveToRelative(0.25f, -0.25f, 0.17f, -0.67f, -0.18f, -0.75f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.54f, 5.47f) + lineToRelative(-3.74f, 3.75f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 2.12f, 2.12f) + lineToRelative(3.74f, -3.74f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 5.47f, -4.54f) + curveToRelative(-0.08f, -0.35f, -0.5f, -0.44f, -0.75f, -0.19f) + lineToRelative(-1.74f, 1.75f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.12f, -2.12f) + lineToRelative(1.74f, -1.75f) + close() + } + } + return _arrowTrendingWrench!! + } + +private var _arrowTrendingWrench: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTurnBidirectionalDownRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTurnBidirectionalDownRight.kt new file mode 100644 index 00000000..deceac4c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTurnBidirectionalDownRight.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowTurnBidirectionalDownRight: ImageVector + get() { + if (_arrowTurnBidirectionalDownRight != null) { + return _arrowTurnBidirectionalDownRight!! + } + _arrowTurnBidirectionalDownRight = fluentIcon(name = + "Regular.ArrowTurnBidirectionalDownRight") { + fluentPath { + moveTo(17.28f, 3.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(3.22f, 3.22f) + horizontalLineToRelative(-7.69f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, -4.25f, 4.25f) + verticalLineToRelative(7.69f) + lineToRelative(-3.22f, -3.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(4.5f, 4.5f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(4.5f, -4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineTo(9.0f, 19.44f) + verticalLineToRelative(-7.69f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 11.75f, 9.0f) + horizontalLineToRelative(7.69f) + lineToRelative(-3.22f, 3.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineToRelative(4.5f, -4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.06f) + lineToRelative(-4.5f, -4.5f) + close() + } + } + return _arrowTurnBidirectionalDownRight!! + } + +private var _arrowTurnBidirectionalDownRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTurnRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTurnRight.kt new file mode 100644 index 00000000..2c53dd75 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowTurnRight.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowTurnRight: ImageVector + get() { + if (_arrowTurnRight != null) { + return _arrowTurnRight!! + } + _arrowTurnRight = fluentIcon(name = "Regular.ArrowTurnRight") { + fluentPath { + moveTo(16.28f, 3.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(3.22f, 3.22f) + horizontalLineToRelative(-7.69f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, -4.25f, 4.25f) + verticalLineTo(20.0f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 8.0f, 20.0f) + verticalLineToRelative(-8.25f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 10.75f, 9.0f) + horizontalLineToRelative(7.69f) + lineToRelative(-3.22f, 3.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineToRelative(4.5f, -4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.06f) + lineToRelative(-4.5f, -4.5f) + close() + } + } + return _arrowTurnRight!! + } + +private var _arrowTurnRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowUndo.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowUndo.kt new file mode 100644 index 00000000..78f9e656 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowUndo.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowUndo: ImageVector + get() { + if (_arrowUndo != null) { + return _arrowUndo!! + } + _arrowUndo = fluentIcon(name = "Regular.ArrowUndo") { + fluentPath { + moveTo(4.75f, 2.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(5.69f) + lineToRelative(4.57f, -4.56f) + arcToRelative(6.41f, 6.41f, 0.0f, false, true, 8.88f, -0.18f) + lineToRelative(0.19f, 0.18f) + arcToRelative(6.4f, 6.4f, 0.0f, false, true, 0.0f, 9.06f) + lineToRelative(-8.85f, 8.84f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(8.85f, -8.84f) + arcToRelative(4.9f, 4.9f, 0.0f, false, false, -6.77f, -7.1f) + lineToRelative(-0.18f, 0.16f) + lineTo(6.56f, 9.5f) + horizontalLineToRelative(5.69f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-7.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _arrowUndo!! + } + +private var _arrowUndo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowUpload.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowUpload.kt new file mode 100644 index 00000000..a2cb2420 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowUpload.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowUpload: ImageVector + get() { + if (_arrowUpload != null) { + return _arrowUpload!! + } + _arrowUpload = fluentIcon(name = "Regular.ArrowUpload") { + fluentPath { + moveTo(18.25f, 3.51f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineToRelative(-13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(13.0f) + close() + moveTo(11.65f, 22.0f) + horizontalLineToRelative(0.1f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.64f) + lineToRelative(0.01f, -0.1f) + verticalLineTo(7.56f) + lineToRelative(3.72f, 3.72f) + curveToRelative(0.27f, 0.27f, 0.68f, 0.29f, 0.98f, 0.07f) + lineToRelative(0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.07f, -0.98f) + lineToRelative(-0.07f, -0.08f) + lineToRelative(-5.0f, -5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, -0.07f) + lineToRelative(-0.09f, 0.07f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) + lineToRelative(0.08f, -0.07f) + lineTo(11.0f, 7.58f) + verticalLineToRelative(13.67f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.75f) + close() + } + } + return _arrowUpload!! + } + +private var _arrowUpload: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowsBidirectional.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowsBidirectional.kt new file mode 100644 index 00000000..9edb714f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ArrowsBidirectional.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ArrowsBidirectional: ImageVector + get() { + if (_arrowsBidirectional != null) { + return _arrowsBidirectional!! + } + _arrowsBidirectional = fluentIcon(name = "Regular.ArrowsBidirectional") { + fluentPath { + moveTo(15.0f, 9.0f) + horizontalLineTo(9.0f) + verticalLineTo(6.75f) + curveToRelative(0.0f, -0.66f, -0.78f, -1.0f, -1.26f, -0.54f) + lineToRelative(-5.5f, 5.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.08f) + lineToRelative(5.5f, 5.25f) + lineToRelative(0.08f, 0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.19f, -0.61f) + verticalLineTo(15.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.66f, 0.78f, 1.0f, 1.26f, 0.54f) + lineToRelative(5.5f, -5.25f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.79f, 0.0f, -1.08f) + lineToRelative(-5.5f, -5.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.27f, 0.54f) + verticalLineTo(9.0f) + close() + moveTo(3.84f, 12.0f) + lineTo(7.5f, 8.5f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.76f, 0.75f) + horizontalLineToRelative(7.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.64f, -0.75f) + verticalLineTo(8.5f) + lineToRelative(3.66f, 3.5f) + lineToRelative(-3.66f, 3.5f) + verticalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-7.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.64f, 0.75f) + verticalLineToRelative(1.25f) + lineTo(3.83f, 12.0f) + close() + } + } + return _arrowsBidirectional!! + } + +private var _arrowsBidirectional: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AttachArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AttachArrowRight.kt new file mode 100644 index 00000000..6513e6dc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AttachArrowRight.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AttachArrowRight: ImageVector + get() { + if (_attachArrowRight != null) { + return _attachArrowRight!! + } + _attachArrowRight = fluentIcon(name = "Regular.AttachArrowRight") { + fluentPath { + moveTo(11.77f, 3.74f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 8.87f, 8.07f) + arcToRelative(6.46f, 6.46f, 0.0f, false, false, -1.49f, -0.6f) + lineToRelative(0.05f, -0.04f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 13.0f, 4.64f) + lineToRelative(-0.17f, 0.16f) + lineToRelative(-0.01f, 0.02f) + lineToRelative(-9.54f, 9.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.97f) + lineToRelative(0.07f, -0.09f) + lineToRelative(9.55f, -9.55f) + close() + moveTo(11.21f, 19.15f) + curveToRelative(0.14f, 0.54f, 0.35f, 1.04f, 0.61f, 1.51f) + lineToRelative(-0.38f, 0.38f) + lineToRelative(-0.03f, 0.03f) + arcToRelative(3.72f, 3.72f, 0.0f, false, true, -5.4f, -5.1f) + lineToRelative(0.05f, -0.06f) + lineToRelative(0.08f, -0.09f) + lineToRelative(0.14f, -0.15f) + lineToRelative(7.44f, -7.45f) + curveToRelative(0.27f, -0.27f, 0.69f, -0.29f, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.08f, 0.98f) + lineToRelative(-0.08f, 0.08f) + lineToRelative(-7.59f, 7.61f) + arcToRelative(2.23f, 2.23f, 0.0f, false, false, 3.17f, 3.1f) + lineToRelative(0.85f, -0.84f) + close() + moveTo(23.01f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.51f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.78f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.7f, 0.7f) + lineTo(19.29f, 17.0f) + lineTo(14.5f, 17.0f) + close() + } + } + return _attachArrowRight!! + } + +private var _attachArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AttachText.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AttachText.kt new file mode 100644 index 00000000..0fa08dcb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AttachText.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AttachText: ImageVector + get() { + if (_attachText != null) { + return _attachText!! + } + _attachText = fluentIcon(name = "Regular.AttachText") { + fluentPath { + moveTo(7.25f, 3.5f) + curveToRelative(2.28f, 0.0f, 4.14f, 1.8f, 4.25f, 4.04f) + lineTo(11.5f, 18.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.16f) + lineTo(6.5f, 9.0f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 8.9f) + verticalLineToRelative(9.6f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.12f) + lineTo(10.0f, 7.75f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -5.5f, -0.17f) + lineTo(4.5f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(3.0f, 7.75f) + curveTo(3.0f, 5.4f, 4.9f, 3.5f, 7.25f, 3.5f) + close() + moveTo(16.25f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(2.6f) + close() + moveTo(20.25f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-6.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(6.6f) + close() + moveTo(20.25f, 10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-6.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(6.6f) + close() + moveTo(20.25f, 7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-6.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(6.6f) + close() + } + } + return _attachText!! + } + +private var _attachText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AutoFitHeight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AutoFitHeight.kt new file mode 100644 index 00000000..4dd518c3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AutoFitHeight.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AutoFitHeight: ImageVector + get() { + if (_autoFitHeight != null) { + return _autoFitHeight!! + } + _autoFitHeight = fluentIcon(name = "Regular.AutoFitHeight") { + fluentPath { + moveTo(5.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(5.75f, 3.0f) + close() + moveTo(9.22f, 14.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + lineToRelative(1.22f, 1.22f) + lineTo(11.5f, 8.56f) + lineToRelative(-1.22f, 1.22f) + lineToRelative(-0.08f, 0.07f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 9.15f, 8.8f) + lineToRelative(0.07f, -0.08f) + lineToRelative(2.37f, -2.37f) + curveToRelative(0.12f, -0.2f, 0.37f, -0.35f, 0.66f, -0.35f) + curveToRelative(0.25f, 0.0f, 0.48f, 0.1f, 0.61f, 0.28f) + lineToRelative(0.05f, 0.07f) + lineToRelative(2.37f, 2.37f) + lineToRelative(0.07f, 0.08f) + curveToRelative(0.2f, 0.27f, 0.2f, 0.62f, 0.01f, 0.89f) + lineToRelative(-0.08f, 0.1f) + lineToRelative(-0.08f, 0.06f) + curveToRelative(-0.26f, 0.2f, -0.62f, 0.2f, -0.88f, 0.01f) + lineToRelative(-0.1f, -0.08f) + lineTo(13.0f, 8.56f) + lineTo(13.0f, 15.44f) + lineToRelative(1.22f, -1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.08f, 0.98f) + lineToRelative(-0.08f, 0.08f) + lineToRelative(-2.36f, 2.37f) + arcToRelative(0.77f, 0.77f, 0.0f, false, true, -0.67f, 0.35f) + arcToRelative(0.77f, 0.77f, 0.0f, false, true, -0.66f, -0.35f) + lineToRelative(-2.37f, -2.37f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + moveTo(5.0f, 20.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(5.75f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _autoFitHeight!! + } + +private var _autoFitHeight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AutoFitWidth.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AutoFitWidth.kt new file mode 100644 index 00000000..7b65acf6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/AutoFitWidth.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.AutoFitWidth: ImageVector + get() { + if (_autoFitWidth != null) { + return _autoFitWidth!! + } + _autoFitWidth = fluentIcon(name = "Regular.AutoFitWidth") { + fluentPath { + moveTo(3.0f, 18.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(4.5f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(12.5f) + close() + moveTo(19.5f, 18.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(21.0f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(12.5f) + close() + moveTo(14.15f, 14.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, 0.98f) + lineToRelative(2.37f, -2.37f) + curveToRelative(0.2f, -0.12f, 0.35f, -0.37f, 0.35f, -0.66f) + arcToRelative(0.77f, 0.77f, 0.0f, false, false, -0.35f, -0.66f) + lineToRelative(-2.37f, -2.37f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) + lineToRelative(-0.07f, 0.08f) + curveToRelative(-0.22f, 0.3f, -0.2f, 0.71f, 0.07f, 0.98f) + lineToRelative(1.22f, 1.22f) + lineTo(8.56f, 11.25f) + lineToRelative(1.22f, -1.22f) + lineToRelative(0.08f, -0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -0.88f) + lineToRelative(-0.08f, -0.08f) + lineToRelative(-0.1f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.88f, 0.0f) + lineToRelative(-0.08f, 0.08f) + lineToRelative(-2.37f, 2.37f) + lineToRelative(-0.07f, 0.05f) + arcTo(0.79f, 0.79f, 0.0f, false, false, 6.0f, 12.0f) + curveToRelative(0.0f, 0.29f, 0.14f, 0.54f, 0.35f, 0.66f) + lineToRelative(2.37f, 2.37f) + lineToRelative(0.08f, 0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.05f, -1.04f) + lineToRelative(-0.07f, -0.09f) + lineToRelative(-1.22f, -1.22f) + lineTo(15.44f, 12.75f) + lineToRelative(-1.22f, 1.22f) + lineToRelative(-0.07f, 0.08f) + close() + } + } + return _autoFitWidth!! + } + +private var _autoFitWidth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Autocorrect.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Autocorrect.kt new file mode 100644 index 00000000..5a45a04c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Autocorrect.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Autocorrect: ImageVector + get() { + if (_autocorrect != null) { + return _autocorrect!! + } + _autocorrect = fluentIcon(name = "Regular.Autocorrect") { + fluentPath { + moveTo(13.46f, 4.93f) + curveToRelative(0.3f, 0.19f, 0.55f, 0.42f, 0.75f, 0.7f) + lineToRelative(0.12f, 0.17f) + lineToRelative(2.94f, 4.7f) + horizontalLineToRelative(4.23f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-3.28f) + arcToRelative(4.75f, 4.75f, 0.0f, true, true, -3.46f, -1.5f) + horizontalLineToRelative(0.75f) + lineToRelative(-2.45f, -3.9f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.04f, -0.11f) + lineToRelative(-0.08f, 0.11f) + lineTo(3.4f, 18.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.33f, -0.7f) + lineToRelative(0.05f, -0.1f) + lineTo(9.67f, 5.8f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 3.8f, -0.87f) + close() + moveTo(14.75f, 12.0f) + arcToRelative(3.25f, 3.25f, 0.0f, true, false, 0.0f, 6.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 0.0f, -6.5f) + close() + } + } + return _autocorrect!! + } + +private var _autocorrect: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Autosum.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Autosum.kt new file mode 100644 index 00000000..54c03672 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Autosum.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Autosum: ImageVector + get() { + if (_autosum != null) { + return _autosum!! + } + _autosum = fluentIcon(name = "Regular.Autosum") { + fluentPath { + moveTo(5.06f, 4.46f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 5.75f, 4.0f) + horizontalLineToRelative(12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineTo(7.52f) + lineToRelative(5.36f, 5.54f) + curveToRelative(0.27f, 0.28f, 0.28f, 0.71f, 0.03f, 1.0f) + lineTo(7.38f, 18.5f) + horizontalLineToRelative(10.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineTo(5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.57f, -1.24f) + lineToRelative(6.15f, -7.17f) + lineTo(5.2f, 5.27f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.15f, -0.81f) + close() + } + } + return _autosum!! + } + +private var _autosum: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Backpack.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Backpack.kt new file mode 100644 index 00000000..e731ebb0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Backpack.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Backpack: ImageVector + get() { + if (_backpack != null) { + return _backpack!! + } + _backpack = fluentIcon(name = "Regular.Backpack") { + fluentPath { + moveTo(10.42f, 8.0f) + arcTo(2.42f, 2.42f, 0.0f, false, false, 8.0f, 10.42f) + curveToRelative(0.0f, 0.87f, 0.7f, 1.58f, 1.58f, 1.58f) + horizontalLineToRelative(4.84f) + curveToRelative(0.87f, 0.0f, 1.58f, -0.7f, 1.58f, -1.58f) + arcTo(2.42f, 2.42f, 0.0f, false, false, 13.58f, 8.0f) + horizontalLineToRelative(-3.16f) + close() + moveTo(9.5f, 10.42f) + curveToRelative(0.0f, -0.51f, 0.41f, -0.92f, 0.92f, -0.92f) + horizontalLineToRelative(3.16f) + curveToRelative(0.51f, 0.0f, 0.92f, 0.41f, 0.92f, 0.92f) + curveToRelative(0.0f, 0.04f, -0.04f, 0.08f, -0.08f, 0.08f) + lineTo(9.58f, 10.5f) + arcToRelative(0.08f, 0.08f, 0.0f, false, true, -0.08f, -0.08f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.74f, 3.42f) + arcTo(8.0f, 8.0f, 0.0f, false, false, 4.0f, 12.5f) + verticalLineToRelative(6.25f) + curveTo(4.0f, 20.55f, 5.46f, 22.0f, 7.25f, 22.0f) + horizontalLineToRelative(9.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(20.0f, 12.5f) + arcToRelative(8.0f, 8.0f, 0.0f, false, false, -4.26f, -7.08f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 12.0f, 2.0f) + close() + moveTo(18.5f, 14.0f) + horizontalLineToRelative(-13.0f) + verticalLineToRelative(-1.5f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, 13.0f, 0.0f) + lineTo(18.5f, 14.0f) + close() + moveTo(8.0f, 17.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.54f) + horizontalLineToRelative(9.0f) + verticalLineToRelative(3.04f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-9.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-3.04f) + lineTo(8.0f, 15.71f) + verticalLineToRelative(1.54f) + close() + moveTo(12.0f, 4.5f) + curveToRelative(-0.7f, 0.0f, -1.37f, 0.09f, -2.02f, 0.26f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.04f, 0.0f) + arcTo(8.01f, 8.01f, 0.0f, false, false, 12.0f, 4.5f) + close() + } + } + return _backpack!! + } + +private var _backpack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BackpackAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BackpackAdd.kt new file mode 100644 index 00000000..fdba372b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BackpackAdd.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BackpackAdd: ImageVector + get() { + if (_backpackAdd != null) { + return _backpackAdd!! + } + _backpackAdd = fluentIcon(name = "Regular.BackpackAdd") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.74f, 3.42f) + arcTo(8.0f, 8.0f, 0.0f, false, false, 4.0f, 12.5f) + verticalLineToRelative(6.25f) + curveTo(4.0f, 20.55f, 5.46f, 22.0f, 7.25f, 22.0f) + horizontalLineToRelative(5.56f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, -1.5f) + lineTo(7.25f, 20.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-3.04f) + lineTo(8.0f, 15.71f) + verticalLineToRelative(1.54f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.54f) + horizontalLineToRelative(1.75f) + curveToRelative(0.17f, -0.6f, 0.44f, -1.19f, 0.77f, -1.71f) + lineTo(5.5f, 14.0f) + verticalLineToRelative(-1.5f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, 12.84f, -1.45f) + curveToRelative(0.56f, 0.08f, 1.1f, 0.22f, 1.6f, 0.42f) + arcToRelative(8.0f, 8.0f, 0.0f, false, false, -4.2f, -6.05f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 12.0f, 2.0f) + close() + moveTo(12.0f, 4.5f) + curveToRelative(-0.7f, 0.0f, -1.37f, 0.09f, -2.02f, 0.26f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.04f, 0.0f) + arcTo(8.01f, 8.01f, 0.0f, false, false, 12.0f, 4.5f) + close() + moveTo(14.03f, 12.0f) + curveToRelative(0.54f, -0.34f, 1.12f, -0.6f, 1.74f, -0.77f) + curveToRelative(0.15f, -0.24f, 0.23f, -0.52f, 0.23f, -0.81f) + arcTo(2.42f, 2.42f, 0.0f, false, false, 13.58f, 8.0f) + horizontalLineToRelative(-3.16f) + arcTo(2.42f, 2.42f, 0.0f, false, false, 8.0f, 10.42f) + curveToRelative(0.0f, 0.87f, 0.7f, 1.58f, 1.58f, 1.58f) + horizontalLineToRelative(4.45f) + close() + moveTo(9.5f, 10.42f) + curveToRelative(0.0f, -0.51f, 0.41f, -0.92f, 0.92f, -0.92f) + horizontalLineToRelative(3.16f) + curveToRelative(0.51f, 0.0f, 0.92f, 0.41f, 0.92f, 0.92f) + curveToRelative(0.0f, 0.04f, -0.04f, 0.08f, -0.08f, 0.08f) + lineTo(9.58f, 10.5f) + arcToRelative(0.08f, 0.08f, 0.0f, false, true, -0.08f, -0.08f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _backpackAdd!! + } + +private var _backpackAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Badge.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Badge.kt new file mode 100644 index 00000000..4781e92b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Badge.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Badge: ImageVector + get() { + if (_badge != null) { + return _badge!! + } + _badge = fluentIcon(name = "Regular.Badge") { + fluentPath { + moveTo(16.34f, 3.0f) + curveToRelative(-0.22f, 0.45f, -0.34f, 0.96f, -0.34f, 1.5f) + lineTo(5.75f, 4.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.7f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(12.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + lineTo(19.5f, 8.0f) + curveToRelative(0.54f, 0.0f, 1.05f, -0.12f, 1.5f, -0.34f) + verticalLineToRelative(10.59f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) + lineTo(5.75f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(10.59f) + close() + moveTo(19.5f, 2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + } + } + return _badge!! + } + +private var _badge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Balloon.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Balloon.kt new file mode 100644 index 00000000..58df0a68 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Balloon.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Balloon: ImageVector + get() { + if (_balloon != null) { + return _balloon!! + } + _balloon = fluentIcon(name = "Regular.Balloon") { + fluentPath { + moveTo(12.02f, 5.66f) + curveToRelative(0.1f, -0.4f, 0.5f, -0.65f, 0.9f, -0.55f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 2.97f, 2.96f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.46f, 0.35f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -1.85f, -1.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.56f, -0.9f) + close() + moveTo(5.0f, 9.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, 14.0f, 0.0f) + curveToRelative(0.0f, 2.03f, -0.67f, 4.24f, -1.85f, 5.96f) + arcToRelative(6.58f, 6.58f, 0.0f, false, true, -4.4f, 2.99f) + verticalLineToRelative(0.3f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.25f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(13.5f, 20.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-0.3f) + arcToRelative(6.58f, 6.58f, 0.0f, false, true, -4.4f, -3.0f) + arcTo(10.88f, 10.88f, 0.0f, false, true, 5.0f, 9.0f) + close() + moveTo(12.0f, 3.5f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 6.5f, 9.0f) + curveToRelative(0.0f, 1.73f, 0.58f, 3.64f, 1.59f, 5.1f) + curveToRelative(1.0f, 1.47f, 2.36f, 2.4f, 3.91f, 2.4f) + curveToRelative(1.55f, 0.0f, 2.9f, -0.93f, 3.91f, -2.4f) + arcTo(9.38f, 9.38f, 0.0f, false, false, 17.5f, 9.0f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 12.0f, 3.5f) + close() + } + } + return _balloon!! + } + +private var _balloon: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BarcodeScanner.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BarcodeScanner.kt new file mode 100644 index 00000000..ffd63889 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BarcodeScanner.kt @@ -0,0 +1,91 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BarcodeScanner: ImageVector + get() { + if (_barcodeScanner != null) { + return _barcodeScanner!! + } + _barcodeScanner = fluentIcon(name = "Regular.BarcodeScanner") { + fluentPath { + moveTo(2.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 3.0f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.5f) + close() + moveTo(17.0f, 3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 5.75f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(2.75f, 16.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 18.25f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(21.25f, 16.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 21.0f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(5.75f, 7.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(10.5f, 7.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-8.5f) + close() + moveTo(13.75f, 7.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(18.5f, 7.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-8.5f) + close() + } + } + return _barcodeScanner!! + } + +private var _barcodeScanner: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery0.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery0.kt new file mode 100644 index 00000000..e89db646 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery0.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Battery0: ImageVector + get() { + if (_battery0 != null) { + return _battery0!! + } + _battery0 = fluentIcon(name = "Regular.Battery0") { + fluentPath { + moveTo(17.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + lineTo(5.0f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(2.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(17.0f, 7.5f) + lineTo(5.0f, 7.5f) + curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.36f) + lineTo(3.5f, 15.0f) + curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.36f, 1.5f) + lineTo(17.0f, 16.5f) + curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) + lineTo(18.5f, 9.0f) + curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) + lineTo(17.0f, 7.5f) + close() + } + } + return _battery0!! + } + +private var _battery0: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery1.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery1.kt new file mode 100644 index 00000000..d8c89bbd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery1.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Battery1: ImageVector + get() { + if (_battery1 != null) { + return _battery1!! + } + _battery1 = fluentIcon(name = "Regular.Battery1") { + fluentPath { + moveTo(17.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + lineTo(5.0f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(2.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(17.0f, 7.5f) + lineTo(5.0f, 7.5f) + curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.36f) + lineTo(3.5f, 15.0f) + curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.36f, 1.5f) + lineTo(17.0f, 16.5f) + curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) + lineTo(18.5f, 9.0f) + curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) + lineTo(17.0f, 7.5f) + close() + moveTo(6.0f, 9.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(8.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + lineTo(6.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.99f, -0.88f) + lineTo(5.01f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) + lineTo(7.0f, 9.0f) + lineTo(6.0f, 9.0f) + close() + } + } + return _battery1!! + } + +private var _battery1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery10.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery10.kt new file mode 100644 index 00000000..9e69ff3a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery10.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Battery10: ImageVector + get() { + if (_battery10 != null) { + return _battery10!! + } + _battery10 = fluentIcon(name = "Regular.Battery10") { + fluentPath { + moveTo(17.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + lineTo(5.0f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(2.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(17.0f, 7.5f) + lineTo(5.0f, 7.5f) + curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.36f) + lineTo(3.5f, 15.0f) + curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.36f, 1.5f) + lineTo(17.0f, 16.5f) + curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) + lineTo(18.5f, 9.0f) + curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) + lineTo(17.0f, 7.5f) + close() + moveTo(6.0f, 9.0f) + horizontalLineToRelative(10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(17.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + lineTo(6.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + lineTo(5.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) + lineTo(16.0f, 9.0f) + lineTo(6.0f, 9.0f) + close() + } + } + return _battery10!! + } + +private var _battery10: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery2.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery2.kt new file mode 100644 index 00000000..2465a52b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery2.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Battery2: ImageVector + get() { + if (_battery2 != null) { + return _battery2!! + } + _battery2 = fluentIcon(name = "Regular.Battery2") { + fluentPath { + moveTo(17.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + lineTo(5.0f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(2.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(17.0f, 7.5f) + lineTo(5.0f, 7.5f) + curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.36f) + lineTo(3.5f, 15.0f) + curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.36f, 1.5f) + lineTo(17.0f, 16.5f) + curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) + lineTo(18.5f, 9.0f) + curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) + lineTo(17.0f, 7.5f) + close() + moveTo(6.0f, 9.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(9.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + lineTo(6.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + lineTo(5.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -0.99f) + lineTo(6.0f, 9.01f) + lineTo(8.0f, 9.0f) + lineTo(6.0f, 9.0f) + close() + } + } + return _battery2!! + } + +private var _battery2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery3.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery3.kt new file mode 100644 index 00000000..34283d3f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery3.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Battery3: ImageVector + get() { + if (_battery3 != null) { + return _battery3!! + } + _battery3 = fluentIcon(name = "Regular.Battery3") { + fluentPath { + moveTo(17.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + lineTo(5.0f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(2.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(17.0f, 7.5f) + lineTo(5.0f, 7.5f) + curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.36f) + lineTo(3.5f, 15.0f) + curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.36f, 1.5f) + lineTo(17.0f, 16.5f) + curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) + lineTo(18.5f, 9.0f) + curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) + lineTo(17.0f, 7.5f) + close() + moveTo(6.02f, 9.0f) + lineTo(9.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(10.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + horizontalLineToRelative(-3.1f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + lineTo(5.02f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) + lineTo(9.0f, 9.0f) + lineTo(6.02f, 9.0f) + close() + } + } + return _battery3!! + } + +private var _battery3: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery4.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery4.kt new file mode 100644 index 00000000..0a2e2d71 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery4.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Battery4: ImageVector + get() { + if (_battery4 != null) { + return _battery4!! + } + _battery4 = fluentIcon(name = "Regular.Battery4") { + fluentPath { + moveTo(17.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + lineTo(5.0f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(2.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(17.0f, 7.5f) + lineTo(5.0f, 7.5f) + curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.36f) + lineTo(3.5f, 15.0f) + curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.36f, 1.5f) + lineTo(17.0f, 16.5f) + curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) + lineTo(18.5f, 9.0f) + curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) + lineTo(17.0f, 7.5f) + close() + moveTo(6.0f, 9.0f) + horizontalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(11.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + lineTo(6.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + lineTo(5.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) + lineTo(10.0f, 9.0f) + lineTo(6.0f, 9.0f) + close() + } + } + return _battery4!! + } + +private var _battery4: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery5.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery5.kt new file mode 100644 index 00000000..ee5eb970 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery5.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Battery5: ImageVector + get() { + if (_battery5 != null) { + return _battery5!! + } + _battery5 = fluentIcon(name = "Regular.Battery5") { + fluentPath { + moveTo(17.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + lineTo(5.0f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(2.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(17.0f, 7.5f) + lineTo(5.0f, 7.5f) + curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.36f) + lineTo(3.5f, 15.0f) + curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.36f, 1.5f) + lineTo(17.0f, 16.5f) + curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) + lineTo(18.5f, 9.0f) + curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) + lineTo(17.0f, 7.5f) + close() + moveTo(6.0f, 9.0f) + horizontalLineToRelative(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(12.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + lineTo(6.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + lineTo(5.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) + lineTo(11.0f, 9.0f) + lineTo(6.0f, 9.0f) + close() + } + } + return _battery5!! + } + +private var _battery5: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery6.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery6.kt new file mode 100644 index 00000000..ee3366fa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery6.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Battery6: ImageVector + get() { + if (_battery6 != null) { + return _battery6!! + } + _battery6 = fluentIcon(name = "Regular.Battery6") { + fluentPath { + moveTo(17.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + lineTo(5.0f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(2.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(17.0f, 7.5f) + lineTo(5.0f, 7.5f) + curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.36f) + lineTo(3.5f, 15.0f) + curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.36f, 1.5f) + lineTo(17.0f, 16.5f) + curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) + lineTo(18.5f, 9.0f) + curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) + lineTo(17.0f, 7.5f) + close() + moveTo(6.0f, 9.0f) + horizontalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(13.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + lineTo(6.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + lineTo(5.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) + lineTo(12.0f, 9.0f) + lineTo(6.0f, 9.0f) + close() + } + } + return _battery6!! + } + +private var _battery6: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery7.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery7.kt new file mode 100644 index 00000000..b6fe2d62 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery7.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Battery7: ImageVector + get() { + if (_battery7 != null) { + return _battery7!! + } + _battery7 = fluentIcon(name = "Regular.Battery7") { + fluentPath { + moveTo(17.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + lineTo(5.0f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(2.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(17.0f, 7.5f) + lineTo(5.0f, 7.5f) + curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.36f) + lineTo(3.5f, 15.0f) + curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.36f, 1.5f) + lineTo(17.0f, 16.5f) + curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) + lineTo(18.5f, 9.0f) + curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) + lineTo(17.0f, 7.5f) + close() + moveTo(6.0f, 9.0f) + horizontalLineToRelative(7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(14.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + lineTo(6.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + lineTo(5.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) + lineTo(13.0f, 9.0f) + lineTo(6.0f, 9.0f) + close() + } + } + return _battery7!! + } + +private var _battery7: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery8.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery8.kt new file mode 100644 index 00000000..5269a693 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery8.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Battery8: ImageVector + get() { + if (_battery8 != null) { + return _battery8!! + } + _battery8 = fluentIcon(name = "Regular.Battery8") { + fluentPath { + moveTo(17.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + lineTo(5.0f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(2.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(17.0f, 7.5f) + lineTo(5.0f, 7.5f) + curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.36f) + lineTo(3.5f, 15.0f) + curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.36f, 1.5f) + lineTo(17.0f, 16.5f) + curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) + lineTo(18.5f, 9.0f) + curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) + lineTo(17.0f, 7.5f) + close() + moveTo(6.0f, 9.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(15.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + lineTo(6.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + lineTo(5.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) + lineTo(14.0f, 9.0f) + lineTo(6.0f, 9.0f) + close() + } + } + return _battery8!! + } + +private var _battery8: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery9.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery9.kt new file mode 100644 index 00000000..50c9a213 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Battery9.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Battery9: ImageVector + get() { + if (_battery9 != null) { + return _battery9!! + } + _battery9 = fluentIcon(name = "Regular.Battery9") { + fluentPath { + moveTo(17.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + lineTo(5.0f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(2.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(17.0f, 7.5f) + lineTo(5.0f, 7.5f) + curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.36f) + lineTo(3.5f, 15.0f) + curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.36f, 1.5f) + lineTo(17.0f, 16.5f) + curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) + lineTo(18.5f, 9.0f) + curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) + lineTo(17.0f, 7.5f) + close() + moveTo(6.0f, 9.0f) + horizontalLineToRelative(9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(16.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.88f, 1.0f) + lineTo(6.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + lineTo(5.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) + lineTo(15.0f, 9.0f) + lineTo(6.0f, 9.0f) + close() + } + } + return _battery9!! + } + +private var _battery9: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BatteryCharge.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BatteryCharge.kt new file mode 100644 index 00000000..ab5542b8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BatteryCharge.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BatteryCharge: ImageVector + get() { + if (_batteryCharge != null) { + return _batteryCharge!! + } + _batteryCharge = fluentIcon(name = "Regular.BatteryCharge") { + fluentPath { + moveTo(10.75f, 6.0f) + lineTo(17.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) + lineTo(20.0f, 10.0f) + lineToRelative(1.0f, 0.02f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + verticalLineToRelative(2.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.87f, 0.99f) + lineTo(21.0f, 14.01f) + lineTo(20.0f, 14.0f) + verticalLineToRelative(1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.82f, 3.0f) + lineTo(8.0f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(17.0f, 16.5f) + curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) + lineTo(18.5f, 9.0f) + curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) + horizontalLineToRelative(-6.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(17.0f, 6.0f) + horizontalLineToRelative(-6.25f) + close() + moveTo(6.25f, 11.0f) + verticalLineToRelative(6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(4.75f, 11.0f) + horizontalLineToRelative(-1.0f) + curveTo(2.78f, 11.0f, 2.0f, 10.22f, 2.0f, 9.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(0.75f) + lineTo(3.5f, 4.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + lineTo(5.0f, 6.0f) + horizontalLineToRelative(1.0f) + lineTo(6.0f, 4.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + curveToRelative(0.38f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) + lineTo(7.49f, 6.0f) + horizontalLineToRelative(0.76f) + curveToRelative(0.42f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + curveTo(9.0f, 10.22f, 8.22f, 11.0f, 7.25f, 11.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(6.25f) + lineTo(6.25f, 11.0f) + close() + moveTo(7.5f, 7.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(1.75f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + lineTo(7.5f, 7.5f) + close() + } + } + return _batteryCharge!! + } + +private var _batteryCharge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BatteryCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BatteryCheckmark.kt new file mode 100644 index 00000000..e3159734 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BatteryCheckmark.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BatteryCheckmark: ImageVector + get() { + if (_batteryCheckmark != null) { + return _batteryCheckmark!! + } + _batteryCheckmark = fluentIcon(name = "Regular.BatteryCheckmark") { + fluentPath { + moveTo(17.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + horizontalLineToRelative(-4.17f) + curveToRelative(0.11f, -0.48f, 0.17f, -0.98f, 0.17f, -1.5f) + horizontalLineToRelative(4.0f) + curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) + lineTo(18.5f, 9.0f) + curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) + lineTo(5.0f, 7.5f) + curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.36f) + verticalLineToRelative(1.87f) + curveToRelative(-0.55f, 0.29f, -1.06f, 0.65f, -1.5f, 1.08f) + lineTo(2.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(12.0f, 16.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(9.85f, 14.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineTo(5.5f, 17.79f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _batteryCheckmark!! + } + +private var _batteryCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BatterySaver.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BatterySaver.kt new file mode 100644 index 00000000..f2f88ff1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BatterySaver.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BatterySaver: ImageVector + get() { + if (_batterySaver != null) { + return _batterySaver!! + } + _batterySaver = fluentIcon(name = "Regular.BatterySaver") { + fluentPath { + moveTo(11.0f, 11.08f) + curveToRelative(0.0f, -1.57f, -0.79f, -3.87f, -2.35f, -6.72f) + curveToRelative(-0.27f, -0.49f, -0.97f, -0.48f, -1.27f, -0.02f) + arcTo(8.81f, 8.81f, 0.0f, false, true, 5.5f, 6.32f) + lineToRelative(-0.37f, 0.3f) + lineToRelative(-0.36f, 0.26f) + lineToRelative(-0.49f, 0.38f) + curveToRelative(-1.72f, 1.37f, -2.4f, 2.6f, -2.26f, 4.4f) + curveToRelative(0.14f, 1.6f, 1.1f, 2.75f, 2.77f, 3.28f) + arcToRelative(6.03f, 6.03f, 0.0f, false, true, -2.33f, 1.62f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.58f, 1.39f) + arcToRelative(7.1f, 7.1f, 0.0f, false, false, 3.9f, -3.64f) + curveToRelative(0.3f, -0.62f, 0.52f, -1.23f, 0.7f, -1.83f) + lineToRelative(0.04f, -0.15f) + lineToRelative(0.1f, -0.42f) + lineToRelative(0.07f, -0.33f) + lineToRelative(0.04f, -0.23f) + lineToRelative(0.06f, -0.48f) + curveToRelative(0.05f, -0.38f, 0.07f, -0.75f, 0.06f, -1.12f) + verticalLineToRelative(-0.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.02f) + curveToRelative(0.02f, 1.46f, -0.28f, 2.95f, -0.89f, 4.46f) + lineToRelative(-0.03f, 0.09f) + arcToRelative(0.45f, 0.45f, 0.0f, false, false, 0.64f, 0.5f) + lineToRelative(0.11f, -0.06f) + curveToRelative(0.08f, -0.04f, 0.14f, -0.09f, 0.2f, -0.14f) + arcTo(4.83f, 4.83f, 0.0f, false, false, 11.0f, 11.08f) + close() + moveTo(17.0f, 6.0f) + horizontalLineToRelative(-5.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(5.39f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 18.5f, 9.0f) + verticalLineToRelative(6.14f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 17.0f, 16.5f) + horizontalLineTo(7.75f) + curveToRelative(-0.4f, 0.03f, -0.75f, 0.32f, -0.75f, 0.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(9.43f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 20.0f, 15.0f) + verticalLineToRelative(-1.0f) + lineToRelative(1.0f, 0.02f) + lineToRelative(0.13f, -0.01f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.87f, -1.0f) + verticalLineTo(10.9f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -0.88f) + lineTo(20.0f, 10.0f) + verticalLineTo(8.82f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 17.0f, 6.0f) + close() + } + } + return _batterySaver!! + } + +private var _batterySaver: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BatteryWarning.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BatteryWarning.kt new file mode 100644 index 00000000..3cc8d51e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BatteryWarning.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BatteryWarning: ImageVector + get() { + if (_batteryWarning != null) { + return _batteryWarning!! + } + _batteryWarning = fluentIcon(name = "Regular.BatteryWarning") { + fluentPath { + moveTo(8.24f, 11.2f) + curveToRelative(0.24f, 0.13f, 0.43f, 0.32f, 0.56f, 0.56f) + lineToRelative(4.0f, 7.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 11.5f, 21.0f) + lineTo(3.5f, 21.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.3f, -2.25f) + lineToRelative(4.0f, -7.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.05f, -0.55f) + close() + moveTo(7.5f, 18.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + close() + moveTo(17.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + horizontalLineToRelative(-3.47f) + lineToRelative(-0.86f, -1.5f) + lineTo(17.0f, 16.5f) + curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) + lineTo(18.5f, 9.0f) + curveToRelative(0.0f, -0.78f, -0.6f, -1.42f, -1.36f, -1.5f) + lineTo(5.0f, 7.5f) + curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.36f) + verticalLineToRelative(5.59f) + lineToRelative(-1.14f, 1.98f) + arcTo(2.99f, 2.99f, 0.0f, false, true, 2.0f, 15.0f) + lineTo(2.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(7.5f, 13.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.41f) + lineTo(7.0f, 16.59f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.99f, 0.0f) + lineTo(7.99f, 13.41f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.41f) + close() + } + } + return _batteryWarning!! + } + +private var _batteryWarning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Beach.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Beach.kt new file mode 100644 index 00000000..307b8dea --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Beach.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Beach: ImageVector + get() { + if (_beach != null) { + return _beach!! + } + _beach = fluentIcon(name = "Regular.Beach") { + fluentPath { + moveTo(9.35f, 5.32f) + arcToRelative(6.75f, 6.75f, 0.0f, false, true, 11.7f, 6.75f) + lineToRelative(-0.26f, 0.43f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.02f, 0.28f) + lineToRelative(-4.56f, -2.63f) + lineToRelative(-2.37f, 4.15f) + arcToRelative(7.75f, 7.75f, 0.0f, false, true, 4.84f, 2.61f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.3f, 0.8f) + arcTo(6.12f, 6.12f, 0.0f, false, false, 12.0f, 15.76f) + curveToRelative(-1.67f, 0.0f, -3.21f, 0.76f, -4.38f, 1.97f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.3f, -0.8f) + arcToRelative(7.76f, 7.76f, 0.0f, false, true, 4.78f, -2.61f) + lineToRelative(2.81f, -4.91f) + lineToRelative(-4.54f, -2.62f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.27f, -1.03f) + lineToRelative(0.25f, -0.43f) + close() + moveTo(10.78f, 5.86f) + lineTo(12.75f, 6.99f) + curveToRelative(0.53f, -0.82f, 1.07f, -1.49f, 1.74f, -2.1f) + curveToRelative(0.52f, -0.48f, 1.12f, -0.9f, 1.83f, -1.32f) + arcToRelative(5.25f, 5.25f, 0.0f, false, false, -5.54f, 2.29f) + close() + moveTo(16.59f, 9.21f) + curveToRelative(0.55f, -1.0f, 0.82f, -1.79f, 0.92f, -2.55f) + curveToRelative(0.07f, -0.62f, 0.04f, -1.26f, -0.07f, -2.01f) + arcToRelative(8.86f, 8.86f, 0.0f, false, false, -3.4f, 3.1f) + lineTo(16.6f, 9.2f) + close() + moveTo(17.89f, 9.96f) + lineTo(19.86f, 11.1f) + arcToRelative(5.25f, 5.25f, 0.0f, false, false, -0.85f, -6.02f) + curveToRelative(0.05f, 0.6f, 0.06f, 1.18f, -0.02f, 1.76f) + curveToRelative(-0.12f, 1.01f, -0.47f, 2.0f, -1.1f, 3.12f) + close() + moveTo(6.7f, 18.66f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.44f, 0.06f) + curveToRelative(-0.21f, 0.89f, -0.6f, 1.36f, -1.04f, 1.63f) + curveToRelative(-0.46f, 0.29f, -1.05f, 0.4f, -1.73f, 0.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + curveToRelative(0.82f, 0.0f, 1.73f, -0.13f, 2.52f, -0.63f) + curveToRelative(0.41f, -0.25f, 0.77f, -0.6f, 1.06f, -1.03f) + arcToRelative(3.81f, 3.81f, 0.0f, false, false, 5.92f, -0.02f) + arcToRelative(3.82f, 3.82f, 0.0f, false, false, 6.0f, -0.08f) + arcToRelative(4.46f, 4.46f, 0.0f, false, false, 3.5f, 1.76f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + curveToRelative(-1.18f, 0.0f, -2.38f, -0.8f, -2.78f, -2.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.43f, -0.01f) + curveToRelative(-0.79f, 2.44f, -3.81f, 2.4f, -4.58f, 0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.42f, 0.0f) + curveToRelative(-0.77f, 2.3f, -3.8f, 2.34f, -4.58f, -0.1f) + close() + } + } + return _beach!! + } + +private var _beach: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Beaker.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Beaker.kt new file mode 100644 index 00000000..b3641863 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Beaker.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Beaker: ImageVector + get() { + if (_beaker != null) { + return _beaker!! + } + _beaker = fluentIcon(name = "Regular.Beaker") { + fluentPath { + moveTo(8.0f, 4.5f) + horizontalLineToRelative(1.0f) + verticalLineToRelative(6.24f) + curveToRelative(0.0f, 0.37f, -0.1f, 0.74f, -0.27f, 1.07f) + lineToRelative(-3.59f, 6.6f) + arcTo(1.75f, 1.75f, 0.0f, false, false, 6.68f, 21.0f) + horizontalLineToRelative(10.64f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 1.54f, -2.59f) + lineToRelative(-3.59f, -6.6f) + curveToRelative(-0.18f, -0.33f, -0.27f, -0.7f, -0.27f, -1.07f) + lineTo(15.0f, 4.5f) + horizontalLineToRelative(1.0f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 16.0f, 3.0f) + lineTo(8.0f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(10.5f, 10.74f) + lineTo(10.5f, 4.5f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(6.24f) + curveToRelative(0.0f, 0.62f, 0.16f, 1.24f, 0.45f, 1.79f) + lineToRelative(0.8f, 1.47f) + horizontalLineToRelative(-5.5f) + lineToRelative(0.8f, -1.47f) + curveToRelative(0.3f, -0.55f, 0.45f, -1.17f, 0.45f, -1.8f) + close() + moveTo(8.43f, 15.5f) + horizontalLineToRelative(7.14f) + lineToRelative(1.97f, 3.63f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.22f, 0.37f) + lineTo(6.68f, 19.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.22f, -0.37f) + lineToRelative(1.97f, -3.63f) + close() + } + } + return _beaker!! + } + +private var _beaker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BeakerEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BeakerEdit.kt new file mode 100644 index 00000000..55573d4a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BeakerEdit.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BeakerEdit: ImageVector + get() { + if (_beakerEdit != null) { + return _beakerEdit!! + } + _beakerEdit = fluentIcon(name = "Regular.BeakerEdit") { + fluentPath { + moveTo(6.0f, 3.5f) + horizontalLineToRelative(1.0f) + verticalLineToRelative(6.24f) + curveToRelative(0.0f, 0.37f, -0.1f, 0.74f, -0.27f, 1.07f) + lineToRelative(-3.59f, 6.6f) + arcTo(1.75f, 1.75f, 0.0f, false, false, 4.68f, 20.0f) + horizontalLineToRelative(6.74f) + lineToRelative(0.1f, -0.42f) + curveToRelative(0.1f, -0.39f, 0.25f, -0.75f, 0.46f, -1.08f) + horizontalLineToRelative(-7.3f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.22f, -0.37f) + lineToRelative(1.97f, -3.63f) + horizontalLineToRelative(7.14f) + lineToRelative(0.8f, 1.48f) + lineToRelative(1.1f, -1.1f) + lineToRelative(-2.2f, -4.07f) + curveToRelative(-0.18f, -0.33f, -0.27f, -0.7f, -0.27f, -1.07f) + lineTo(13.0f, 3.5f) + horizontalLineToRelative(1.0f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 14.0f, 2.0f) + lineTo(6.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(8.5f, 9.74f) + lineTo(8.5f, 3.5f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(6.24f) + curveToRelative(0.0f, 0.62f, 0.16f, 1.24f, 0.45f, 1.79f) + lineToRelative(0.8f, 1.47f) + horizontalLineToRelative(-5.5f) + lineToRelative(0.8f, -1.47f) + curveToRelative(0.3f, -0.55f, 0.45f, -1.17f, 0.45f, -1.8f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _beakerEdit!! + } + +private var _beakerEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Bed.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Bed.kt new file mode 100644 index 00000000..b53a5430 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Bed.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Bed: ImageVector + get() { + if (_bed != null) { + return _bed!! + } + _bed = fluentIcon(name = "Regular.Bed") { + fluentPath { + moveTo(6.75f, 4.0f) + horizontalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 20.0f, 6.58f) + verticalLineToRelative(3.52f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.0f, 2.46f) + verticalLineToRelative(7.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(20.5f, 18.0f) + horizontalLineToRelative(-17.0f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-7.5f) + curveToRelative(0.0f, -1.26f, 0.85f, -2.32f, 2.0f, -2.65f) + lineTo(4.0f, 6.75f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.58f, -2.74f) + lineTo(6.75f, 4.0f) + close() + moveTo(19.25f, 11.5f) + lineTo(4.75f, 11.5f) + curveToRelative(-0.65f, 0.0f, -1.18f, 0.5f, -1.24f, 1.12f) + lineToRelative(-0.01f, 0.13f) + verticalLineToRelative(3.75f) + horizontalLineToRelative(17.0f) + verticalLineToRelative(-3.75f) + curveToRelative(0.0f, -0.65f, -0.5f, -1.18f, -1.12f, -1.24f) + lineToRelative(-0.13f, -0.01f) + close() + moveTo(17.25f, 5.5f) + lineTo(6.75f, 5.5f) + curveToRelative(-0.65f, 0.0f, -1.18f, 0.5f, -1.24f, 1.12f) + lineToRelative(-0.01f, 0.13f) + lineTo(5.5f, 10.0f) + lineTo(7.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(11.0f, 10.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 0.88f) + lineTo(17.0f, 10.0f) + horizontalLineToRelative(1.5f) + lineTo(18.5f, 6.75f) + curveToRelative(0.0f, -0.65f, -0.5f, -1.18f, -1.12f, -1.24f) + lineToRelative(-0.13f, -0.01f) + close() + } + } + return _bed!! + } + +private var _bed: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BinFull.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BinFull.kt new file mode 100644 index 00000000..689828ea --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BinFull.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BinFull: ImageVector + get() { + if (_binFull != null) { + return _binFull!! + } + _binFull = fluentIcon(name = "Regular.BinFull") { + fluentPath { + moveTo(17.38f, 2.34f) + curveToRelative(0.22f, 0.35f, 0.12f, 0.82f, -0.22f, 1.04f) + lineTo(5.3f, 11.0f) + horizontalLineToRelative(4.2f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(3.25f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(3.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(21.0f, 11.0f) + horizontalLineToRelative(0.25f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(7.0f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(5.25f, 22.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 18.75f) + verticalLineToRelative(-7.0f) + curveToRelative(0.0f, -0.26f, 0.13f, -0.5f, 0.34f, -0.63f) + lineToRelative(14.0f, -9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.04f, 0.22f) + close() + moveTo(19.5f, 11.0f) + lineTo(19.5f, 7.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + lineTo(16.0f, 11.0f) + horizontalLineToRelative(3.5f) + close() + moveTo(14.5f, 11.0f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(-3.25f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + lineTo(11.0f, 11.0f) + horizontalLineToRelative(3.5f) + close() + moveTo(3.5f, 12.5f) + verticalLineToRelative(6.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(20.5f, 12.5f) + horizontalLineToRelative(-17.0f) + close() + } + } + return _binFull!! + } + +private var _binFull: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Bluetooth.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Bluetooth.kt new file mode 100644 index 00000000..62cb4b24 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Bluetooth.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Bluetooth: ImageVector + get() { + if (_bluetooth != null) { + return _bluetooth!! + } + _bluetooth = fluentIcon(name = "Regular.Bluetooth") { + fluentPath { + moveTo(11.46f, 2.06f) + curveToRelative(0.28f, -0.12f, 0.6f, -0.05f, 0.82f, 0.16f) + lineToRelative(5.0f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.04f, 1.1f) + lineTo(12.9f, 12.0f) + lineToRelative(4.33f, 3.68f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.04f, 1.1f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.28f, -0.53f) + verticalLineToRelative(-7.63f) + lineToRelative(-3.76f, 3.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, -1.14f) + lineTo(10.6f, 12.0f) + lineTo(6.26f, 8.32f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.98f, -1.14f) + lineToRelative(3.76f, 3.2f) + lineTo(11.0f, 2.75f) + curveToRelative(0.0f, -0.3f, 0.18f, -0.58f, 0.46f, -0.7f) + close() + moveTo(12.5f, 13.62f) + verticalLineToRelative(5.82f) + lineToRelative(3.14f, -3.15f) + lineToRelative(-3.14f, -2.67f) + close() + moveTo(12.5f, 10.38f) + lineTo(15.64f, 7.71f) + lineTo(12.5f, 4.56f) + verticalLineToRelative(5.82f) + close() + } + } + return _bluetooth!! + } + +private var _bluetooth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BluetoothConnected.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BluetoothConnected.kt new file mode 100644 index 00000000..845ec7f5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BluetoothConnected.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BluetoothConnected: ImageVector + get() { + if (_bluetoothConnected != null) { + return _bluetoothConnected!! + } + _bluetoothConnected = fluentIcon(name = "Regular.BluetoothConnected") { + fluentPath { + moveTo(11.46f, 2.06f) + curveToRelative(0.28f, -0.12f, 0.6f, -0.05f, 0.82f, 0.16f) + lineToRelative(5.0f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.04f, 1.1f) + lineTo(12.9f, 12.0f) + lineToRelative(4.33f, 3.68f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.04f, 1.1f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.28f, -0.53f) + verticalLineToRelative(-7.63f) + lineToRelative(-3.76f, 3.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, -1.14f) + lineTo(10.6f, 12.0f) + lineTo(6.26f, 8.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.14f) + lineToRelative(3.76f, 3.2f) + lineTo(11.0f, 2.75f) + curveToRelative(0.0f, -0.3f, 0.18f, -0.58f, 0.46f, -0.7f) + close() + moveTo(12.5f, 13.62f) + verticalLineToRelative(5.82f) + lineToRelative(3.14f, -3.15f) + lineToRelative(-3.14f, -2.67f) + close() + moveTo(12.5f, 10.38f) + lineTo(15.64f, 7.71f) + lineTo(12.5f, 4.56f) + verticalLineToRelative(5.82f) + close() + moveTo(20.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(5.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + } + } + return _bluetoothConnected!! + } + +private var _bluetoothConnected: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BluetoothDisabled.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BluetoothDisabled.kt new file mode 100644 index 00000000..8f3fd46d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BluetoothDisabled.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BluetoothDisabled: ImageVector + get() { + if (_bluetoothDisabled != null) { + return _bluetoothDisabled!! + } + _bluetoothDisabled = fluentIcon(name = "Regular.BluetoothDisabled") { + fluentPath { + moveToRelative(16.5f, 17.56f) + lineToRelative(4.22f, 4.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(8.56f, 8.56f) + lineToRelative(-4.52f, 3.84f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.98f, 1.14f) + lineToRelative(3.76f, -3.2f) + verticalLineToRelative(7.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.28f, 0.53f) + lineToRelative(4.22f, -4.22f) + close() + moveTo(12.9f, 13.96f) + lineTo(15.44f, 16.5f) + lineTo(12.5f, 19.44f) + verticalLineToRelative(-5.82f) + lineToRelative(0.4f, 0.35f) + close() + moveTo(17.24f, 8.32f) + lineTo(14.14f, 10.96f) + lineTo(13.07f, 9.89f) + lineTo(15.64f, 7.71f) + lineTo(12.5f, 4.56f) + verticalLineToRelative(4.76f) + lineTo(11.0f, 7.82f) + lineTo(11.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.28f, -0.53f) + lineToRelative(5.0f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.04f, 1.1f) + close() + } + } + return _bluetoothDisabled!! + } + +private var _bluetoothDisabled: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BluetoothSearching.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BluetoothSearching.kt new file mode 100644 index 00000000..5eadf2ec --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BluetoothSearching.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BluetoothSearching: ImageVector + get() { + if (_bluetoothSearching != null) { + return _bluetoothSearching!! + } + _bluetoothSearching = fluentIcon(name = "Regular.BluetoothSearching") { + fluentPath { + moveTo(11.46f, 2.06f) + curveToRelative(0.28f, -0.12f, 0.6f, -0.05f, 0.82f, 0.16f) + lineToRelative(5.0f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.04f, 1.1f) + lineTo(12.9f, 12.0f) + lineToRelative(4.33f, 3.68f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.04f, 1.1f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.28f, -0.53f) + verticalLineToRelative(-7.63f) + lineToRelative(-3.76f, 3.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, -1.14f) + lineTo(10.6f, 12.0f) + lineTo(6.26f, 8.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.14f) + lineToRelative(3.76f, 3.2f) + lineTo(11.0f, 2.75f) + curveToRelative(0.0f, -0.3f, 0.18f, -0.58f, 0.46f, -0.7f) + close() + moveTo(12.5f, 13.62f) + verticalLineToRelative(5.82f) + lineToRelative(3.14f, -3.15f) + lineToRelative(-3.14f, -2.67f) + close() + moveTo(12.5f, 10.38f) + lineTo(15.64f, 7.71f) + lineTo(12.5f, 4.56f) + verticalLineToRelative(5.82f) + close() + moveTo(17.97f, 9.58f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.01f, 0.32f) + arcToRelative(4.48f, 4.48f, 0.0f, false, true, 0.0f, 4.2f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.33f, -0.7f) + arcToRelative(2.98f, 2.98f, 0.0f, false, false, 0.0f, -2.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.32f, -1.01f) + close() + moveTo(20.6f, 7.8f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.2f, 0.9f) + arcToRelative(5.47f, 5.47f, 0.0f, false, true, 0.0f, 6.6f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.2f, 0.9f) + arcToRelative(6.97f, 6.97f, 0.0f, false, false, 0.0f, -8.4f) + close() + } + } + return _bluetoothSearching!! + } + +private var _bluetoothSearching: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Blur.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Blur.kt new file mode 100644 index 00000000..389c15f2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Blur.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Blur: ImageVector + get() { + if (_blur != null) { + return _blur!! + } + _blur = fluentIcon(name = "Regular.Blur") { + fluentPath { + moveTo(3.0f, 12.0f) + arcToRelative(9.0f, 9.0f, 0.0f, false, true, 13.98f, -7.5f) + lineTo(12.0f, 4.5f) + arcToRelative(7.5f, 7.5f, 0.0f, true, false, 0.0f, 15.0f) + lineTo(12.0f, 18.0f) + horizontalLineToRelative(6.7f) + arcTo(9.0f, 9.0f, 0.0f, false, true, 3.0f, 12.0f) + close() + moveTo(18.23f, 5.5f) + lineTo(12.0f, 5.5f) + lineTo(12.0f, 7.0f) + horizontalLineToRelative(7.48f) + arcToRelative(9.05f, 9.05f, 0.0f, false, false, -1.25f, -1.5f) + close() + moveTo(12.0f, 8.0f) + horizontalLineToRelative(8.06f) + curveToRelative(0.24f, 0.48f, 0.44f, 0.98f, 0.59f, 1.5f) + lineTo(12.0f, 9.5f) + lineTo(12.0f, 8.0f) + close() + moveTo(20.88f, 10.5f) + lineTo(12.0f, 10.5f) + lineTo(12.0f, 12.0f) + horizontalLineToRelative(9.0f) + curveToRelative(0.0f, -0.51f, -0.04f, -1.01f, -0.12f, -1.5f) + close() + moveTo(12.0f, 13.0f) + horizontalLineToRelative(8.95f) + arcToRelative(8.96f, 8.96f, 0.0f, false, true, -0.3f, 1.5f) + lineTo(12.0f, 14.5f) + lineTo(12.0f, 13.0f) + close() + moveTo(20.3f, 15.5f) + lineTo(12.0f, 15.5f) + lineTo(12.0f, 17.0f) + horizontalLineToRelative(7.48f) + curveToRelative(0.32f, -0.47f, 0.6f, -0.97f, 0.81f, -1.5f) + close() + } + } + return _blur!! + } + +private var _blur: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Board.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Board.kt new file mode 100644 index 00000000..1b8b6280 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Board.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Board: ImageVector + get() { + if (_board != null) { + return _board!! + } + _board = fluentIcon(name = "Regular.Board") { + fluentPath { + moveTo(18.25f, 2.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.25f, 3.06f) + verticalLineToRelative(12.19f) + curveToRelative(0.0f, 1.8f, -1.45f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-12.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.06f) + lineTo(3.0f, 17.75f) + verticalLineToRelative(-12.0f) + curveTo(3.0f, 3.95f, 4.46f, 2.5f, 6.25f, 2.5f) + horizontalLineToRelative(12.0f) + close() + moveTo(11.5f, 9.5f) + horizontalLineToRelative(-7.0f) + verticalLineToRelative(8.41f) + curveToRelative(0.09f, 0.9f, 0.84f, 1.6f, 1.75f, 1.6f) + horizontalLineToRelative(5.25f) + lineTo(11.5f, 9.5f) + close() + moveTo(20.0f, 15.5f) + horizontalLineToRelative(-7.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(5.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(20.0f, 15.5f) + close() + moveTo(18.25f, 4.0f) + lineTo(13.0f, 4.0f) + verticalLineToRelative(10.0f) + horizontalLineToRelative(7.0f) + lineTo(20.0f, 5.59f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.75f, -1.6f) + close() + moveTo(11.5f, 4.0f) + lineTo(6.11f, 4.0f) + curveToRelative(-0.9f, 0.08f, -1.6f, 0.83f, -1.6f, 1.75f) + lineTo(4.5f, 8.0f) + horizontalLineToRelative(7.0f) + lineTo(11.5f, 4.0f) + close() + } + } + return _board!! + } + +private var _board: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoardHeart.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoardHeart.kt new file mode 100644 index 00000000..2480f8bb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoardHeart.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BoardHeart: ImageVector + get() { + if (_boardHeart != null) { + return _boardHeart!! + } + _boardHeart = fluentIcon(name = "Regular.BoardHeart") { + fluentPath { + moveTo(21.5f, 5.56f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.25f, -3.06f) + horizontalLineToRelative(-12.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(12.19f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 6.26f, 21.0f) + horizontalLineToRelative(7.12f) + lineToRelative(-1.46f, -1.5f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.91f, 0.0f, -1.66f, -0.7f, -1.74f, -1.59f) + lineToRelative(-0.01f, -0.16f) + lineTo(4.5f, 9.5f) + horizontalLineToRelative(7.0f) + verticalLineToRelative(2.67f) + curveToRelative(0.45f, -0.41f, 0.96f, -0.71f, 1.5f, -0.9f) + lineTo(13.0f, 4.0f) + horizontalLineToRelative(5.25f) + curveToRelative(0.91f, 0.0f, 1.66f, 0.7f, 1.74f, 1.59f) + lineToRelative(0.01f, 0.16f) + verticalLineToRelative(5.28f) + curveToRelative(0.52f, 0.06f, 1.03f, 0.2f, 1.5f, 0.45f) + lineTo(21.5f, 5.56f) + close() + moveTo(6.25f, 4.0f) + horizontalLineToRelative(5.25f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(-7.0f) + lineTo(4.5f, 5.75f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.75f) + horizontalLineToRelative(0.15f) + close() + moveTo(21.98f, 13.06f) + arcToRelative(3.7f, 3.7f, 0.0f, false, true, 0.0f, 5.11f) + lineToRelative(-4.45f, 4.6f) + arcToRelative(0.74f, 0.74f, 0.0f, false, true, -1.06f, 0.0f) + lineToRelative(-4.45f, -4.6f) + arcToRelative(3.73f, 3.73f, 0.0f, false, true, 0.0f, -5.11f) + arcToRelative(3.4f, 3.4f, 0.0f, false, true, 4.94f, 0.0f) + lineToRelative(0.04f, 0.04f) + lineToRelative(0.04f, -0.04f) + arcToRelative(3.42f, 3.42f, 0.0f, false, true, 4.94f, 0.0f) + close() + } + } + return _boardHeart!! + } + +private var _boardHeart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoardSplit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoardSplit.kt new file mode 100644 index 00000000..5e1c5824 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoardSplit.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BoardSplit: ImageVector + get() { + if (_boardSplit != null) { + return _boardSplit!! + } + _boardSplit = fluentIcon(name = "Regular.BoardSplit") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(4.5f, 12.5f) + verticalLineToRelative(5.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(14.0f, 19.5f) + verticalLineToRelative(-7.0f) + lineTo(4.5f, 12.5f) + close() + moveTo(14.0f, 11.0f) + lineTo(14.0f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 11.0f) + lineTo(14.0f, 11.0f) + close() + moveTo(19.5f, 9.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-5.0f) + close() + moveTo(19.5f, 16.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(3.5f) + horizontalLineToRelative(2.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 16.0f) + close() + moveTo(19.5f, 8.0f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(15.5f, 4.5f) + lineTo(15.5f, 8.0f) + horizontalLineToRelative(4.0f) + close() + } + } + return _boardSplit!! + } + +private var _boardSplit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Book.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Book.kt new file mode 100644 index 00000000..bbb9032f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Book.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Book: ImageVector + get() { + if (_book != null) { + return _book!! + } + _book = fluentIcon(name = "Regular.Book") { + fluentPath { + moveTo(7.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + lineTo(8.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(7.0f, 6.0f) + close() + moveTo(8.5f, 7.5f) + horizontalLineToRelative(7.0f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(-7.0f) + verticalLineToRelative(1.0f) + close() + moveTo(4.0f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) + lineTo(18.0f, 2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) + verticalLineToRelative(14.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(5.5f, 19.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(6.5f, 22.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) + verticalLineToRelative(-15.0f) + close() + moveTo(5.5f, 18.0f) + lineTo(19.0f, 18.0f) + lineTo(19.0f, 4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(6.5f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + lineTo(5.5f, 18.0f) + close() + } + } + return _book!! + } + +private var _book: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookAdd.kt new file mode 100644 index 00000000..91a94245 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookAdd.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BookAdd: ImageVector + get() { + if (_bookAdd != null) { + return _bookAdd!! + } + _bookAdd = fluentIcon(name = "Regular.BookAdd") { + fluentPath { + moveTo(3.0f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 5.5f, 2.0f) + lineTo(17.0f, 2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) + verticalLineToRelative(6.81f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, -1.5f, -0.3f) + lineTo(18.0f, 4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(5.5f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + lineTo(4.5f, 18.0f) + horizontalLineToRelative(6.52f) + curveToRelative(0.04f, 0.52f, 0.14f, 1.02f, 0.3f, 1.5f) + lineTo(4.5f, 19.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(6.23f) + curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) + lineTo(5.5f, 22.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 3.0f, 19.5f) + verticalLineToRelative(-15.0f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(18.0f, 20.5f) + lineTo(18.0f, 18.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) + lineTo(18.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -1.0f, 0.0f) + lineTo(17.0f, 17.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + lineTo(17.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) + close() + moveTo(6.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + lineTo(7.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(6.0f, 6.0f) + close() + moveTo(7.5f, 7.5f) + horizontalLineToRelative(7.0f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(-7.0f) + verticalLineToRelative(1.0f) + close() + } + } + return _bookAdd!! + } + +private var _bookAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookArrowClockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookArrowClockwise.kt new file mode 100644 index 00000000..afe25091 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookArrowClockwise.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BookArrowClockwise: ImageVector + get() { + if (_bookArrowClockwise != null) { + return _bookArrowClockwise!! + } + _bookArrowClockwise = fluentIcon(name = "Regular.BookArrowClockwise") { + fluentPath { + moveTo(21.25f, 5.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineTo(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(0.63f) + arcTo(6.0f, 6.0f, 0.0f, true, false, 23.0f, 7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, true, true, -1.67f, -3.5f) + horizontalLineTo(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.75f) + close() + moveTo(6.5f, 2.0f) + horizontalLineToRelative(5.6f) + curveToRelative(-0.45f, 0.44f, -0.84f, 0.95f, -1.16f, 1.5f) + horizontalLineTo(6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineTo(18.0f) + horizontalLineTo(19.0f) + verticalLineToRelative(-4.29f) + arcToRelative(6.96f, 6.96f, 0.0f, false, false, 1.5f, -0.65f) + verticalLineToRelative(5.69f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineTo(5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineTo(6.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) + verticalLineToRelative(-15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) + close() + } + } + return _bookArrowClockwise!! + } + +private var _bookArrowClockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookClock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookClock.kt new file mode 100644 index 00000000..627c4306 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookClock.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BookClock: ImageVector + get() { + if (_bookClock != null) { + return _bookClock!! + } + _bookClock = fluentIcon(name = "Regular.BookClock") { + fluentPath { + moveTo(13.0f, 9.13f) + verticalLineToRelative(1.62f) + horizontalLineToRelative(0.75f) + arcToRelative(0.62f, 0.62f, 0.0f, true, true, 0.0f, 1.25f) + horizontalLineToRelative(-1.37f) + arcToRelative(0.62f, 0.62f, 0.0f, false, true, -0.63f, -0.63f) + lineTo(11.75f, 9.13f) + arcToRelative(0.62f, 0.62f, 0.0f, true, true, 1.25f, 0.0f) + close() + moveTo(12.37f, 6.0f) + arcToRelative(4.75f, 4.75f, 0.0f, true, false, 0.0f, 9.5f) + arcToRelative(4.75f, 4.75f, 0.0f, false, false, 0.0f, -9.5f) + close() + moveTo(8.87f, 10.75f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 7.0f, 0.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -7.0f, 0.0f) + close() + moveTo(6.5f, 2.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) + verticalLineToRelative(15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(6.5f, 20.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + horizontalLineToRelative(14.25f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(20.5f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) + lineTo(6.5f, 2.0f) + close() + moveTo(19.0f, 18.0f) + lineTo(5.5f, 18.0f) + lineTo(5.5f, 4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + lineTo(18.0f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + lineTo(19.0f, 18.0f) + close() + } + } + return _bookClock!! + } + +private var _bookClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookCoins.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookCoins.kt new file mode 100644 index 00000000..42aa284b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookCoins.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BookCoins: ImageVector + get() { + if (_bookCoins != null) { + return _bookCoins!! + } + _bookCoins = fluentIcon(name = "Regular.BookCoins") { + fluentPath { + moveTo(10.2f, 7.46f) + curveToRelative(0.62f, -0.3f, 1.43f, -0.46f, 2.3f, -0.46f) + curveToRelative(0.87f, 0.0f, 1.68f, 0.17f, 2.3f, 0.46f) + curveToRelative(0.58f, 0.28f, 1.2f, 0.78f, 1.2f, 1.54f) + reflectiveCurveToRelative(-0.62f, 1.26f, -1.2f, 1.54f) + curveToRelative(-0.62f, 0.3f, -1.43f, 0.46f, -2.3f, 0.46f) + curveToRelative(-0.87f, 0.0f, -1.68f, -0.17f, -2.3f, -0.46f) + curveTo(9.62f, 10.26f, 9.0f, 9.76f, 9.0f, 9.0f) + reflectiveCurveToRelative(0.62f, -1.26f, 1.2f, -1.54f) + close() + moveTo(10.74f, 8.59f) + curveToRelative(-0.47f, 0.22f, -0.49f, 0.41f, -0.49f, 0.41f) + reflectiveCurveToRelative(0.02f, 0.19f, 0.49f, 0.4f) + curveToRelative(0.42f, 0.2f, 1.04f, 0.35f, 1.76f, 0.35f) + reflectiveCurveToRelative(1.34f, -0.14f, 1.76f, -0.34f) + curveToRelative(0.47f, -0.22f, 0.49f, -0.41f, 0.49f, -0.41f) + reflectiveCurveToRelative(-0.02f, -0.19f, -0.49f, -0.4f) + arcToRelative(4.23f, 4.23f, 0.0f, false, false, -1.76f, -0.35f) + curveToRelative(-0.72f, 0.0f, -1.34f, 0.14f, -1.76f, 0.34f) + close() + moveTo(12.5f, 12.0f) + curveToRelative(1.41f, 0.0f, 2.67f, -0.43f, 3.5f, -1.11f) + lineTo(16.0f, 11.0f) + curveToRelative(0.0f, 1.1f, -1.57f, 2.0f, -3.5f, 2.0f) + reflectiveCurveTo(9.0f, 12.1f, 9.0f, 11.0f) + verticalLineToRelative(-0.11f) + arcTo(5.58f, 5.58f, 0.0f, false, false, 12.5f, 12.0f) + close() + moveTo(12.5f, 14.0f) + curveToRelative(1.41f, 0.0f, 2.67f, -0.43f, 3.5f, -1.11f) + lineTo(16.0f, 13.0f) + curveToRelative(0.0f, 1.1f, -1.57f, 2.0f, -3.5f, 2.0f) + reflectiveCurveTo(9.0f, 14.1f, 9.0f, 13.0f) + verticalLineToRelative(-0.11f) + arcTo(5.58f, 5.58f, 0.0f, false, false, 12.5f, 14.0f) + close() + moveTo(6.5f, 2.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) + verticalLineToRelative(15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(6.5f, 20.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + horizontalLineToRelative(14.25f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(20.5f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) + lineTo(6.5f, 2.0f) + close() + moveTo(19.0f, 18.0f) + lineTo(5.5f, 18.0f) + lineTo(5.5f, 4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + lineTo(18.0f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + lineTo(19.0f, 18.0f) + close() + } + } + return _bookCoins!! + } + +private var _bookCoins: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookCompass.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookCompass.kt new file mode 100644 index 00000000..06459190 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookCompass.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BookCompass: ImageVector + get() { + if (_bookCompass != null) { + return _bookCompass!! + } + _bookCompass = fluentIcon(name = "Regular.BookCompass") { + fluentPath { + moveTo(13.0f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.6f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 10.35f, 12.0f) + lineToRelative(-1.3f, 3.23f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.4f, 0.56f) + lineToRelative(1.23f, -3.09f) + arcToRelative(2.76f, 2.76f, 0.0f, false, false, 1.14f, 0.0f) + lineToRelative(1.23f, 3.09f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.4f, -0.56f) + lineTo(14.15f, 12.0f) + arcTo(2.74f, 2.74f, 0.0f, false, false, 13.0f, 7.35f) + verticalLineToRelative(-1.6f) + close() + moveTo(11.0f, 10.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) + close() + moveTo(6.5f, 2.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) + verticalLineToRelative(15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + horizontalLineToRelative(14.25f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineTo(4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) + horizontalLineTo(6.5f) + close() + moveTo(19.0f, 18.0f) + horizontalLineTo(5.5f) + verticalLineTo(4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineTo(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineTo(18.0f) + close() + } + } + return _bookCompass!! + } + +private var _bookCompass: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookContacts.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookContacts.kt new file mode 100644 index 00000000..b01e49a9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookContacts.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BookContacts: ImageVector + get() { + if (_bookContacts != null) { + return _bookContacts!! + } + _bookContacts = fluentIcon(name = "Regular.BookContacts") { + fluentPath { + moveTo(15.5f, 12.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 1.0f, 1.38f, 1.75f, 3.25f, 1.75f) + reflectiveCurveToRelative(3.25f, -0.75f, 3.25f, -1.75f) + verticalLineToRelative(-0.5f) + close() + moveTo(14.0f, 8.75f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, -3.5f, 0.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 3.5f, 0.0f) + close() + moveTo(4.0f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) + lineTo(18.0f, 2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) + verticalLineToRelative(14.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(5.5f, 19.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(6.5f, 22.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) + verticalLineToRelative(-15.0f) + close() + moveTo(5.5f, 4.5f) + lineTo(5.5f, 18.0f) + lineTo(19.0f, 18.0f) + lineTo(19.0f, 4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(6.5f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + close() + } + } + return _bookContacts!! + } + +private var _bookContacts: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookDatabase.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookDatabase.kt new file mode 100644 index 00000000..e97df1f8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookDatabase.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BookDatabase: ImageVector + get() { + if (_bookDatabase != null) { + return _bookDatabase!! + } + _bookDatabase = fluentIcon(name = "Regular.BookDatabase") { + fluentPath { + moveTo(16.5f, 9.0f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.9f, -0.66f, 1.53f, -1.35f, 1.9f) + arcToRelative(5.7f, 5.7f, 0.0f, false, true, -2.65f, 0.6f) + curveToRelative(-1.0f, 0.0f, -1.94f, -0.22f, -2.65f, -0.6f) + curveToRelative(-0.7f, -0.37f, -1.35f, -1.0f, -1.35f, -1.9f) + lineTo(8.5f, 9.0f) + curveToRelative(0.0f, -0.9f, 0.66f, -1.53f, 1.35f, -1.9f) + arcToRelative(5.7f, 5.7f, 0.0f, false, true, 2.65f, -0.6f) + curveToRelative(1.0f, 0.0f, 1.94f, 0.22f, 2.65f, 0.6f) + curveToRelative(0.7f, 0.37f, 1.35f, 1.0f, 1.35f, 1.9f) + close() + moveTo(10.56f, 8.42f) + curveToRelative(-0.5f, 0.27f, -0.56f, 0.5f, -0.56f, 0.58f) + curveToRelative(0.0f, 0.08f, 0.07f, 0.31f, 0.56f, 0.58f) + curveToRelative(0.46f, 0.24f, 1.14f, 0.42f, 1.94f, 0.42f) + reflectiveCurveToRelative(1.48f, -0.18f, 1.94f, -0.42f) + curveToRelative(0.5f, -0.27f, 0.56f, -0.5f, 0.56f, -0.58f) + curveToRelative(0.0f, -0.08f, -0.07f, -0.31f, -0.56f, -0.58f) + arcTo(4.21f, 4.21f, 0.0f, false, false, 12.5f, 8.0f) + curveToRelative(-0.8f, 0.0f, -1.48f, 0.18f, -1.94f, 0.42f) + close() + moveTo(15.0f, 10.98f) + curveToRelative(-0.7f, 0.33f, -1.57f, 0.52f, -2.5f, 0.52f) + curveToRelative(-0.93f, 0.0f, -1.8f, -0.19f, -2.5f, -0.52f) + lineTo(10.0f, 13.0f) + curveToRelative(0.0f, 0.08f, 0.07f, 0.31f, 0.56f, 0.58f) + curveToRelative(0.46f, 0.24f, 1.14f, 0.42f, 1.94f, 0.42f) + reflectiveCurveToRelative(1.48f, -0.18f, 1.94f, -0.42f) + curveToRelative(0.5f, -0.27f, 0.56f, -0.5f, 0.56f, -0.58f) + verticalLineToRelative(-2.02f) + close() + moveTo(4.0f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) + lineTo(18.0f, 2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) + verticalLineToRelative(14.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(5.5f, 19.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(6.5f, 22.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) + verticalLineToRelative(-15.0f) + close() + moveTo(5.5f, 18.0f) + lineTo(19.0f, 18.0f) + lineTo(19.0f, 4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(6.5f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + lineTo(5.5f, 18.0f) + close() + } + } + return _bookDatabase!! + } + +private var _bookDatabase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookExclamationMark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookExclamationMark.kt new file mode 100644 index 00000000..43dfa5df --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookExclamationMark.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BookExclamationMark: ImageVector + get() { + if (_bookExclamationMark != null) { + return _bookExclamationMark!! + } + _bookExclamationMark = fluentIcon(name = "Regular.BookExclamationMark") { + fluentPath { + moveTo(13.25f, 14.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(11.5f, 6.75f) + verticalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + close() + moveTo(4.0f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) + horizontalLineTo(18.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) + verticalLineToRelative(14.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineTo(5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineTo(6.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) + verticalLineToRelative(-15.0f) + close() + moveTo(19.0f, 18.0f) + verticalLineTo(4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineTo(6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineTo(18.0f) + horizontalLineTo(19.0f) + close() + } + } + return _bookExclamationMark!! + } + +private var _bookExclamationMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookGlobe.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookGlobe.kt new file mode 100644 index 00000000..275ebbb0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookGlobe.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BookGlobe: ImageVector + get() { + if (_bookGlobe != null) { + return _bookGlobe!! + } + _bookGlobe = fluentIcon(name = "Regular.BookGlobe") { + fluentPath { + moveTo(12.04f, 6.02f) + arcToRelative(4.75f, 4.75f, 0.0f, true, false, 0.34f, -0.02f) + horizontalLineToRelative(-0.01f) + arcToRelative(1.35f, 1.35f, 0.0f, false, false, -0.33f, 0.02f) + close() + moveTo(10.42f, 7.85f) + curveToRelative(-0.23f, 0.68f, -0.37f, 1.5f, -0.4f, 2.4f) + horizontalLineToRelative(-1.1f) + curveToRelative(0.14f, -1.0f, 0.7f, -1.86f, 1.5f, -2.4f) + close() + moveTo(10.04f, 11.75f) + curveToRelative(0.07f, 0.7f, 0.2f, 1.36f, 0.38f, 1.91f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -1.4f, -1.91f) + horizontalLineToRelative(1.02f) + close() + moveTo(14.01f, 13.85f) + curveToRelative(0.22f, -0.6f, 0.38f, -1.31f, 0.45f, -2.1f) + horizontalLineToRelative(1.27f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -1.72f, 2.1f) + close() + moveTo(12.95f, 11.75f) + arcToRelative(6.49f, 6.49f, 0.0f, false, true, -0.34f, 1.57f) + arcToRelative(2.06f, 2.06f, 0.0f, false, true, -0.36f, 0.64f) + lineToRelative(-0.02f, -0.02f) + curveToRelative(-0.1f, -0.11f, -0.22f, -0.31f, -0.34f, -0.62f) + arcToRelative(6.49f, 6.49f, 0.0f, false, true, -0.34f, -1.57f) + horizontalLineToRelative(1.4f) + close() + moveTo(12.99f, 10.25f) + lineTo(11.5f, 10.25f) + arcToRelative(7.1f, 7.1f, 0.0f, false, true, 0.38f, -2.07f) + arcToRelative(2.06f, 2.06f, 0.0f, false, true, 0.36f, -0.64f) + lineToRelative(0.02f, 0.02f) + curveToRelative(0.1f, 0.11f, 0.22f, 0.31f, 0.34f, 0.62f) + curveToRelative(0.2f, 0.52f, 0.34f, 1.24f, 0.38f, 2.07f) + close() + moveTo(14.49f, 10.25f) + arcTo(8.65f, 8.65f, 0.0f, false, false, 14.0f, 7.66f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 1.83f, 2.59f) + horizontalLineToRelative(-1.35f) + close() + moveTo(12.3f, 7.49f) + close() + moveTo(12.18f, 7.49f) + close() + moveTo(6.5f, 2.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) + verticalLineToRelative(15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(6.5f, 20.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + horizontalLineToRelative(14.25f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(20.5f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) + lineTo(6.5f, 2.0f) + close() + moveTo(19.0f, 4.5f) + lineTo(19.0f, 18.0f) + lineTo(5.5f, 18.0f) + lineTo(5.5f, 4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + lineTo(18.0f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + close() + moveTo(12.3f, 14.0f) + verticalLineToRelative(0.01f) + close() + } + } + return _bookGlobe!! + } + +private var _bookGlobe: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookInformation.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookInformation.kt new file mode 100644 index 00000000..6d9d385c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookInformation.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BookInformation: ImageVector + get() { + if (_bookInformation != null) { + return _bookInformation!! + } + _bookInformation = fluentIcon(name = "Regular.BookInformation") { + fluentPath { + moveTo(13.25f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(11.5f, 9.75f) + verticalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + close() + moveTo(4.0f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) + horizontalLineTo(18.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) + verticalLineToRelative(14.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineTo(5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineTo(6.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) + verticalLineToRelative(-15.0f) + close() + moveTo(19.0f, 18.0f) + verticalLineTo(4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineTo(6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineTo(18.0f) + horizontalLineTo(19.0f) + close() + } + } + return _bookInformation!! + } + +private var _bookInformation: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookLetter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookLetter.kt new file mode 100644 index 00000000..6877f5e6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookLetter.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BookLetter: ImageVector + get() { + if (_bookLetter != null) { + return _bookLetter!! + } + _bookLetter = fluentIcon(name = "Regular.BookLetter") { + fluentPath { + moveTo(12.5f, 6.0f) + curveToRelative(-0.3f, 0.0f, -0.58f, 0.18f, -0.7f, 0.47f) + lineToRelative(-3.24f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.38f, 0.56f) + lineToRelative(0.83f, -2.03f) + horizontalLineToRelative(3.46f) + lineToRelative(0.83f, 2.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.38f, -0.56f) + lineToRelative(-3.25f, -8.0f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 12.5f, 6.0f) + close() + moveTo(11.38f, 11.5f) + lineTo(12.5f, 8.74f) + lineTo(13.62f, 11.5f) + horizontalLineToRelative(-2.24f) + close() + moveTo(4.0f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) + lineTo(18.0f, 2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) + verticalLineToRelative(14.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(5.5f, 19.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(6.5f, 22.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) + verticalLineToRelative(-15.0f) + close() + moveTo(5.5f, 18.0f) + lineTo(19.0f, 18.0f) + lineTo(19.0f, 4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(6.5f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + lineTo(5.5f, 18.0f) + close() + } + } + return _bookLetter!! + } + +private var _bookLetter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookNumber.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookNumber.kt new file mode 100644 index 00000000..130fcca6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookNumber.kt @@ -0,0 +1,99 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BookNumber: ImageVector + get() { + if (_bookNumber != null) { + return _bookNumber!! + } + _bookNumber = fluentIcon(name = "Regular.BookNumber") { + fluentPath { + moveToRelative(11.02f, 7.57f) + lineToRelative(-0.22f, 0.91f) + lineTo(9.63f, 8.48f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + verticalLineToRelative(0.1f) + curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) + horizontalLineToRelative(0.7f) + lineToRelative(-0.38f, 1.59f) + horizontalLineToRelative(-0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + verticalLineToRelative(0.1f) + curveToRelative(0.06f, 0.36f, 0.37f, 0.65f, 0.75f, 0.65f) + horizontalLineToRelative(0.43f) + lineToRelative(-0.12f, 0.5f) + lineToRelative(-0.02f, 0.1f) + curveToRelative(-0.04f, 0.37f, 0.2f, 0.72f, 0.57f, 0.81f) + lineToRelative(0.1f, 0.02f) + curveToRelative(0.36f, 0.04f, 0.71f, -0.2f, 0.8f, -0.57f) + lineToRelative(0.21f, -0.86f) + horizontalLineToRelative(1.54f) + lineToRelative(-0.12f, 0.51f) + lineToRelative(-0.01f, 0.1f) + curveToRelative(-0.04f, 0.37f, 0.2f, 0.72f, 0.58f, 0.8f) + lineToRelative(0.1f, 0.02f) + curveToRelative(0.37f, 0.03f, 0.71f, -0.21f, 0.8f, -0.58f) + lineToRelative(0.2f, -0.85f) + horizontalLineToRelative(0.93f) + lineToRelative(0.1f, -0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.74f) + verticalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) + horizontalLineToRelative(-0.6f) + lineToRelative(0.37f, -1.59f) + horizontalLineToRelative(0.82f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + verticalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) + horizontalLineToRelative(-0.38f) + lineToRelative(0.13f, -0.56f) + lineToRelative(0.02f, -0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.58f, -0.8f) + lineToRelative(-0.1f, -0.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.8f, 0.58f) + lineToRelative(-0.2f, 0.9f) + horizontalLineToRelative(-1.48f) + lineToRelative(0.14f, -0.55f) + lineToRelative(0.02f, -0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.48f, -0.26f) + close() + moveTo(11.98f, 9.98f) + horizontalLineToRelative(1.49f) + lineToRelative(-0.36f, 1.59f) + horizontalLineToRelative(-1.52f) + lineToRelative(0.39f, -1.59f) + close() + moveTo(6.5f, 2.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) + verticalLineToRelative(15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(6.5f, 20.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + horizontalLineToRelative(14.25f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(20.5f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) + lineTo(6.5f, 2.0f) + close() + moveTo(19.0f, 18.0f) + lineTo(5.5f, 18.0f) + lineTo(5.5f, 4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + lineTo(18.0f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + lineTo(19.0f, 18.0f) + close() + } + } + return _bookNumber!! + } + +private var _bookNumber: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookOpen.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookOpen.kt new file mode 100644 index 00000000..9dd664a2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookOpen.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BookOpen: ImageVector + get() { + if (_bookOpen != null) { + return _bookOpen!! + } + _bookOpen = fluentIcon(name = "Regular.BookOpen") { + fluentPath { + moveTo(12.0f, 19.14f) + curveToRelative(-0.5f, 0.53f, -1.21f, 0.86f, -2.0f, 0.86f) + lineTo(3.75f, 20.0f) + curveTo(2.78f, 20.0f, 2.0f, 19.22f, 2.0f, 18.25f) + lineTo(2.0f, 5.75f) + curveTo(2.0f, 4.78f, 2.78f, 4.0f, 3.75f, 4.0f) + lineTo(10.0f, 4.0f) + curveToRelative(0.79f, 0.0f, 1.5f, 0.33f, 2.0f, 0.86f) + curveToRelative(0.5f, -0.53f, 1.21f, -0.86f, 2.0f, -0.86f) + horizontalLineToRelative(6.25f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(14.0f, 20.0f) + curveToRelative(-0.79f, 0.0f, -1.5f, -0.33f, -2.0f, -0.86f) + close() + moveTo(3.5f, 5.75f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + lineTo(10.0f, 18.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + lineTo(11.25f, 6.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(3.75f, 5.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + close() + moveTo(12.75f, 17.25f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(6.25f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + lineTo(20.5f, 5.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + lineTo(14.0f, 5.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(10.5f) + close() + } + } + return _bookOpen!! + } + +private var _bookOpen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookOpenGlobe.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookOpenGlobe.kt new file mode 100644 index 00000000..41996a6f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookOpenGlobe.kt @@ -0,0 +1,105 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BookOpenGlobe: ImageVector + get() { + if (_bookOpenGlobe != null) { + return _bookOpenGlobe!! + } + _bookOpenGlobe = fluentIcon(name = "Regular.BookOpenGlobe") { + fluentPath { + moveTo(3.5f, 5.75f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineTo(10.0f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(8.96f) + curveToRelative(0.29f, -1.0f, 0.8f, -1.9f, 1.5f, -2.65f) + verticalLineTo(6.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(6.25f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(5.98f) + curveToRelative(0.55f, 0.29f, 1.06f, 0.65f, 1.5f, 1.08f) + verticalLineTo(5.75f) + curveTo(22.0f, 4.78f, 21.22f, 4.0f, 20.25f, 4.0f) + horizontalLineTo(14.0f) + curveToRelative(-0.79f, 0.0f, -1.5f, 0.33f, -2.0f, 0.86f) + arcTo(2.74f, 2.74f, 0.0f, false, false, 10.0f, 4.0f) + horizontalLineTo(3.75f) + curveTo(2.78f, 4.0f, 2.0f, 4.78f, 2.0f, 5.75f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineTo(10.0f) + curveToRelative(0.5f, 0.0f, 0.96f, -0.13f, 1.36f, -0.36f) + arcToRelative(6.47f, 6.47f, 0.0f, false, true, -0.34f, -1.66f) + curveToRelative(-0.23f, 0.31f, -0.6f, 0.52f, -1.02f, 0.52f) + horizontalLineTo(3.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineTo(5.75f) + close() + } + fluentPath { + moveTo(16.0f, 17.0f) + curveToRelative(0.05f, -1.41f, 0.25f, -2.67f, 0.56f, -3.58f) + curveToRelative(0.17f, -0.52f, 0.36f, -0.9f, 0.55f, -1.14f) + curveToRelative(0.2f, -0.25f, 0.33f, -0.28f, 0.39f, -0.28f) + reflectiveCurveToRelative(0.2f, 0.03f, 0.39f, 0.28f) + curveToRelative(0.19f, 0.24f, 0.38f, 0.62f, 0.55f, 1.14f) + curveToRelative(0.3f, 0.91f, 0.51f, 2.17f, 0.55f, 3.58f) + horizontalLineToRelative(-2.98f) + close() + } + fluentPath { + moveTo(15.61f, 13.1f) + curveToRelative(0.1f, -0.32f, 0.23f, -0.62f, 0.37f, -0.89f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 12.02f, 17.0f) + horizontalLineToRelative(2.99f) + curveToRelative(0.04f, -1.5f, 0.26f, -2.87f, 0.6f, -3.9f) + close() + } + fluentPath { + moveTo(19.39f, 13.1f) + curveToRelative(-0.1f, -0.32f, -0.23f, -0.62f, -0.37f, -0.89f) + arcTo(5.5f, 5.5f, 0.0f, false, true, 22.98f, 17.0f) + horizontalLineToRelative(-2.99f) + curveToRelative(-0.04f, -1.5f, -0.26f, -2.87f, -0.6f, -3.9f) + close() + } + fluentPath { + moveTo(20.0f, 18.0f) + horizontalLineToRelative(2.98f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, -3.96f, 4.79f) + curveToRelative(0.14f, -0.27f, 0.26f, -0.57f, 0.37f, -0.89f) + curveToRelative(0.34f, -1.03f, 0.56f, -2.4f, 0.6f, -3.9f) + close() + } + fluentPath { + moveTo(17.89f, 22.72f) + curveToRelative(-0.2f, 0.25f, -0.33f, 0.28f, -0.39f, 0.28f) + reflectiveCurveToRelative(-0.2f, -0.03f, -0.39f, -0.28f) + arcToRelative(3.84f, 3.84f, 0.0f, false, true, -0.55f, -1.14f) + curveToRelative(-0.3f, -0.91f, -0.51f, -2.17f, -0.55f, -3.58f) + horizontalLineToRelative(2.98f) + arcToRelative(12.91f, 12.91f, 0.0f, false, true, -0.55f, 3.58f) + curveToRelative(-0.17f, 0.52f, -0.36f, 0.9f, -0.55f, 1.14f) + close() + } + fluentPath { + moveTo(12.02f, 18.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 3.96f, 4.79f) + arcToRelative(6.13f, 6.13f, 0.0f, false, true, -0.37f, -0.89f) + curveToRelative(-0.34f, -1.03f, -0.56f, -2.4f, -0.6f, -3.9f) + horizontalLineToRelative(-2.99f) + close() + } + } + return _bookOpenGlobe!! + } + +private var _bookOpenGlobe: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookOpenMicrophone.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookOpenMicrophone.kt new file mode 100644 index 00000000..7b84e48f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookOpenMicrophone.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BookOpenMicrophone: ImageVector + get() { + if (_bookOpenMicrophone != null) { + return _bookOpenMicrophone!! + } + _bookOpenMicrophone = fluentIcon(name = "Regular.BookOpenMicrophone") { + fluentPath { + moveTo(12.0f, 19.14f) + curveToRelative(-0.5f, 0.53f, -1.21f, 0.86f, -2.0f, 0.86f) + lineTo(3.75f, 20.0f) + curveTo(2.78f, 20.0f, 2.0f, 19.22f, 2.0f, 18.25f) + lineTo(2.0f, 5.75f) + curveTo(2.0f, 4.78f, 2.78f, 4.0f, 3.75f, 4.0f) + lineTo(10.0f, 4.0f) + curveToRelative(0.79f, 0.0f, 1.5f, 0.33f, 2.0f, 0.86f) + curveToRelative(0.5f, -0.53f, 1.21f, -0.86f, 2.0f, -0.86f) + horizontalLineToRelative(6.25f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(8.75f) + arcToRelative(3.53f, 3.53f, 0.0f, false, false, -1.5f, -2.87f) + lineTo(20.5f, 5.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + lineTo(14.0f, 5.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.3f, 0.1f, 0.58f, 0.28f, 0.8f) + arcToRelative(4.49f, 4.49f, 0.0f, false, false, 0.72f, 1.94f) + arcToRelative(2.74f, 2.74f, 0.0f, false, true, -1.75f, -0.85f) + close() + moveTo(3.5f, 5.75f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + lineTo(10.0f, 18.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + lineTo(11.25f, 6.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(3.75f, 5.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + close() + moveTo(20.51f, 19.98f) + curveToRelative(0.9f, -0.52f, 1.49f, -1.4f, 1.49f, -2.48f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + curveToRelative(0.0f, 2.0f, -1.75f, 3.72f, -4.0f, 3.97f) + verticalLineToRelative(1.03f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-1.03f) + arcTo(4.77f, 4.77f, 0.0f, false, true, 15.02f, 20.0f) + arcToRelative(3.96f, 3.96f, 0.0f, false, true, -0.87f, -1.5f) + curveToRelative(-0.1f, -0.32f, -0.15f, -0.66f, -0.15f, -1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 0.72f, 1.86f) + curveToRelative(0.22f, 0.25f, 0.5f, 0.47f, 0.8f, 0.64f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 1.98f, 0.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 2.01f, -0.52f) + close() + moveTo(18.5f, 19.5f) + curveToRelative(-0.86f, 0.0f, -1.56f, -0.41f, -2.0f, -1.0f) + curveToRelative(-0.32f, -0.44f, -0.5f, -0.97f, -0.5f, -1.5f) + verticalLineToRelative(-2.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + lineTo(21.0f, 17.0f) + curveToRelative(0.0f, 1.25f, -1.0f, 2.5f, -2.5f, 2.5f) + close() + } + } + return _bookOpenMicrophone!! + } + +private var _bookOpenMicrophone: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookPulse.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookPulse.kt new file mode 100644 index 00000000..5e96fbe3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookPulse.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BookPulse: ImageVector + get() { + if (_bookPulse != null) { + return _bookPulse!! + } + _bookPulse = fluentIcon(name = "Regular.BookPulse") { + fluentPath { + moveTo(11.7f, 7.46f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.37f, -0.05f) + lineTo(8.79f, 10.5f) + horizontalLineTo(7.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.5f) + curveToRelative(0.28f, 0.0f, 0.54f, -0.16f, 0.67f, -0.41f) + lineToRelative(1.02f, -2.05f) + lineToRelative(2.12f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.34f, 0.09f) + lineTo(15.93f, 12.0f) + horizontalLineToRelative(0.82f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.37f) + lineToRelative(-1.0f, 1.7f) + lineToRelative(-2.16f, -5.11f) + close() + moveTo(6.5f, 2.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) + verticalLineToRelative(15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + horizontalLineToRelative(14.25f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineTo(4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) + horizontalLineTo(6.5f) + close() + moveTo(19.0f, 18.0f) + horizontalLineTo(5.5f) + verticalLineTo(4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineTo(18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineTo(18.0f) + close() + } + } + return _bookPulse!! + } + +private var _bookPulse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookQuestionMark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookQuestionMark.kt new file mode 100644 index 00000000..560da9b6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookQuestionMark.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BookQuestionMark: ImageVector + get() { + if (_bookQuestionMark != null) { + return _bookQuestionMark!! + } + _bookQuestionMark = fluentIcon(name = "Regular.BookQuestionMark") { + fluentPath { + moveTo(11.0f, 8.02f) + curveToRelative(0.0f, 0.4f, -0.34f, 0.73f, -0.75f, 0.73f) + curveTo(9.5f, 8.75f, 9.5f, 8.0f, 9.5f, 8.0f) + verticalLineToRelative(-0.01f) + arcToRelative(1.4f, 1.4f, 0.0f, false, true, 0.0f, -0.13f) + lineToRelative(0.06f, -0.28f) + curveToRelative(0.05f, -0.22f, 0.16f, -0.5f, 0.37f, -0.8f) + curveToRelative(0.45f, -0.6f, 1.27f, -1.05f, 2.58f, -1.03f) + curveToRelative(0.95f, 0.02f, 1.8f, 0.41f, 2.32f, 1.07f) + curveToRelative(0.54f, 0.67f, 0.72f, 1.57f, 0.37f, 2.46f) + curveToRelative(-0.37f, 0.9f, -1.19f, 1.26f, -1.66f, 1.47f) + lineToRelative(-0.05f, 0.02f) + curveToRelative(-0.28f, 0.13f, -0.4f, 0.19f, -0.49f, 0.25f) + verticalLineToRelative(0.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(11.5f, 11.0f) + curveToRelative(0.0f, -0.52f, 0.25f, -0.9f, 0.56f, -1.15f) + curveToRelative(0.25f, -0.2f, 0.57f, -0.34f, 0.79f, -0.43f) + lineToRelative(0.04f, -0.02f) + curveToRelative(0.54f, -0.24f, 0.8f, -0.39f, 0.91f, -0.68f) + arcToRelative(0.92f, 0.92f, 0.0f, false, false, -0.13f, -0.96f) + curveToRelative(-0.23f, -0.27f, -0.63f, -0.5f, -1.18f, -0.51f) + curveToRelative(-0.94f, -0.02f, -1.25f, 0.29f, -1.36f, 0.43f) + arcToRelative(0.72f, 0.72f, 0.0f, false, false, -0.13f, 0.33f) + close() + moveTo(12.25f, 15.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(4.0f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) + lineTo(18.0f, 2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) + verticalLineToRelative(14.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(5.5f, 19.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(6.5f, 22.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) + verticalLineToRelative(-15.0f) + close() + moveTo(5.5f, 4.5f) + lineTo(5.5f, 18.0f) + lineTo(19.0f, 18.0f) + lineTo(19.0f, 4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(6.5f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + close() + } + } + return _bookQuestionMark!! + } + +private var _bookQuestionMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookQuestionMarkRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookQuestionMarkRtl.kt new file mode 100644 index 00000000..9b8bf71b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookQuestionMarkRtl.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BookQuestionMarkRtl: ImageVector + get() { + if (_bookQuestionMarkRtl != null) { + return _bookQuestionMarkRtl!! + } + _bookQuestionMarkRtl = fluentIcon(name = "Regular.BookQuestionMarkRtl") { + fluentPath { + moveTo(14.5f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.73f) + lineToRelative(-0.01f, -0.08f) + arcToRelative(0.72f, 0.72f, 0.0f, false, false, -0.12f, -0.26f) + curveToRelative(-0.11f, -0.15f, -0.42f, -0.45f, -1.36f, -0.43f) + curveToRelative(-0.55f, 0.0f, -0.95f, 0.24f, -1.18f, 0.51f) + arcToRelative(0.92f, 0.92f, 0.0f, false, false, -0.13f, 0.96f) + curveToRelative(0.11f, 0.3f, 0.37f, 0.44f, 0.91f, 0.68f) + lineToRelative(0.04f, 0.02f) + curveToRelative(0.22f, 0.1f, 0.54f, 0.23f, 0.79f, 0.43f) + curveToRelative(0.3f, 0.25f, 0.56f, 0.63f, 0.56f, 1.15f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + verticalLineToRelative(-0.73f) + arcToRelative(2.49f, 2.49f, 0.0f, false, false, -0.5f, -0.25f) + lineToRelative(-0.04f, -0.02f) + curveToRelative(-0.47f, -0.2f, -1.3f, -0.57f, -1.66f, -1.47f) + curveToRelative(-0.35f, -0.89f, -0.17f, -1.8f, 0.37f, -2.46f) + arcToRelative(3.02f, 3.02f, 0.0f, false, true, 2.32f, -1.07f) + curveToRelative(1.31f, -0.02f, 2.13f, 0.43f, 2.58f, 1.04f) + arcToRelative(2.22f, 2.22f, 0.0f, false, true, 0.43f, 1.2f) + reflectiveCurveToRelative(0.0f, 0.76f, -0.75f, 0.76f) + close() + moveTo(11.5f, 14.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) + close() + moveTo(6.5f, 2.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) + verticalLineToRelative(15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(6.5f, 20.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + horizontalLineToRelative(14.25f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(20.5f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) + lineTo(6.5f, 2.0f) + close() + moveTo(5.5f, 18.0f) + lineTo(5.5f, 4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + lineTo(18.0f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + lineTo(19.0f, 18.0f) + lineTo(5.5f, 18.0f) + close() + } + } + return _bookQuestionMarkRtl!! + } + +private var _bookQuestionMarkRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookSearch.kt new file mode 100644 index 00000000..54971126 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookSearch.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BookSearch: ImageVector + get() { + if (_bookSearch != null) { + return _bookSearch!! + } + _bookSearch = fluentIcon(name = "Regular.BookSearch") { + fluentPath { + moveTo(14.82f, 11.8f) + arcToRelative(3.72f, 3.72f, 0.0f, true, false, -1.02f, 1.02f) + lineToRelative(2.47f, 2.47f) + lineToRelative(0.07f, 0.06f) + arcToRelative(0.72f, 0.72f, 0.0f, false, false, 0.95f, -1.09f) + lineToRelative(-2.47f, -2.46f) + close() + moveTo(11.72f, 7.45f) + arcToRelative(2.28f, 2.28f, 0.0f, true, true, 0.0f, 4.55f) + arcToRelative(2.28f, 2.28f, 0.0f, false, true, 0.0f, -4.55f) + close() + moveTo(6.5f, 2.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) + verticalLineToRelative(15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(6.5f, 20.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + horizontalLineToRelative(14.25f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(20.5f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) + lineTo(6.5f, 2.0f) + close() + moveTo(19.0f, 18.0f) + lineTo(5.5f, 18.0f) + lineTo(5.5f, 4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + lineTo(18.0f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + lineTo(19.0f, 18.0f) + close() + } + } + return _bookSearch!! + } + +private var _bookSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookStar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookStar.kt new file mode 100644 index 00000000..4be610da --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookStar.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BookStar: ImageVector + get() { + if (_bookStar != null) { + return _bookStar!! + } + _bookStar = fluentIcon(name = "Regular.BookStar") { + fluentPath { + moveToRelative(10.54f, 8.6f) + lineToRelative(1.1f, -2.22f) + curveToRelative(0.25f, -0.5f, 0.97f, -0.5f, 1.22f, 0.0f) + lineToRelative(1.1f, 2.23f) + lineToRelative(2.46f, 0.36f) + curveToRelative(0.56f, 0.08f, 0.78f, 0.76f, 0.37f, 1.15f) + lineToRelative(-1.78f, 1.74f) + lineToRelative(0.42f, 2.45f) + curveToRelative(0.1f, 0.55f, -0.48f, 0.97f, -0.98f, 0.71f) + lineToRelative(-2.2f, -1.15f) + lineToRelative(-2.2f, 1.15f) + arcToRelative(0.68f, 0.68f, 0.0f, false, true, -0.98f, -0.71f) + lineToRelative(0.42f, -2.45f) + lineToRelative(-1.78f, -1.74f) + arcToRelative(0.68f, 0.68f, 0.0f, false, true, 0.37f, -1.15f) + lineToRelative(2.46f, -0.36f) + close() + moveTo(11.6f, 9.53f) + curveToRelative(-0.1f, 0.2f, -0.29f, 0.34f, -0.51f, 0.37f) + lineToRelative(-1.45f, 0.21f) + lineToRelative(1.05f, 1.02f) + curveToRelative(0.16f, 0.16f, 0.23f, 0.39f, 0.2f, 0.6f) + lineToRelative(-0.26f, 1.45f) + lineToRelative(1.3f, -0.68f) + curveToRelative(0.2f, -0.1f, 0.44f, -0.1f, 0.64f, 0.0f) + lineToRelative(1.3f, 0.68f) + lineToRelative(-0.25f, -1.44f) + arcToRelative(0.68f, 0.68f, 0.0f, false, true, 0.2f, -0.6f) + lineToRelative(1.04f, -1.03f) + lineToRelative(-1.45f, -0.21f) + arcToRelative(0.68f, 0.68f, 0.0f, false, true, -0.51f, -0.37f) + lineToRelative(-0.65f, -1.32f) + lineToRelative(-0.65f, 1.32f) + close() + moveTo(6.5f, 2.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) + verticalLineToRelative(15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(6.5f, 20.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + horizontalLineToRelative(14.25f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(20.5f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) + lineTo(6.5f, 2.0f) + close() + moveTo(19.0f, 18.0f) + lineTo(5.5f, 18.0f) + lineTo(5.5f, 4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + lineTo(18.0f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + lineTo(19.0f, 18.0f) + close() + } + } + return _bookStar!! + } + +private var _bookStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookTheta.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookTheta.kt new file mode 100644 index 00000000..67be23bd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookTheta.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BookTheta: ImageVector + get() { + if (_bookTheta != null) { + return _bookTheta!! + } + _bookTheta = fluentIcon(name = "Regular.BookTheta") { + fluentPath { + moveTo(12.5f, 16.5f) + curveToRelative(2.2f, 0.0f, 4.0f, -2.46f, 4.0f, -5.5f) + reflectiveCurveToRelative(-1.8f, -5.5f, -4.0f, -5.5f) + reflectiveCurveToRelative(-4.0f, 2.46f, -4.0f, 5.5f) + reflectiveCurveToRelative(1.8f, 5.5f, 4.0f, 5.5f) + close() + moveTo(14.12f, 14.0f) + curveToRelative(-0.52f, 0.72f, -1.11f, 1.0f, -1.62f, 1.0f) + curveToRelative(-0.5f, 0.0f, -1.1f, -0.28f, -1.62f, -1.0f) + arcToRelative(4.79f, 4.79f, 0.0f, false, true, -0.8f, -2.0f) + horizontalLineToRelative(4.84f) + curveToRelative(-0.14f, 0.8f, -0.43f, 1.5f, -0.8f, 2.0f) + close() + moveTo(14.12f, 8.0f) + curveToRelative(0.44f, 0.6f, 0.78f, 1.48f, 0.86f, 2.5f) + horizontalLineToRelative(-4.96f) + curveToRelative(0.08f, -1.02f, 0.42f, -1.9f, 0.86f, -2.5f) + curveToRelative(0.52f, -0.72f, 1.11f, -1.0f, 1.62f, -1.0f) + curveToRelative(0.5f, 0.0f, 1.1f, 0.28f, 1.62f, 1.0f) + close() + moveTo(6.5f, 2.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.0f, 4.5f) + verticalLineToRelative(15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 22.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(6.5f, 20.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + horizontalLineToRelative(14.25f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(20.5f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 18.0f, 2.0f) + lineTo(6.5f, 2.0f) + close() + moveTo(19.0f, 18.0f) + lineTo(5.5f, 18.0f) + lineTo(5.5f, 4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + lineTo(18.0f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + lineTo(19.0f, 18.0f) + close() + } + } + return _bookTheta!! + } + +private var _bookTheta: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookToolbox.kt new file mode 100644 index 00000000..7ee5d1ea --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookToolbox.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BookToolbox: ImageVector + get() { + if (_bookToolbox != null) { + return _bookToolbox!! + } + _bookToolbox = fluentIcon(name = "Regular.BookToolbox") { + fluentPath { + moveTo(14.0f, 4.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + lineTo(12.0f, 7.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(16.0f, 7.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(20.5f, 7.0f) + lineTo(23.0f, 7.0f) + lineTo(23.0f, 5.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(21.0f, 4.0f) + lineTo(21.0f, 3.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.5f) + curveTo(14.78f, 1.25f, 14.0f, 2.03f, 14.0f, 3.0f) + verticalLineToRelative(1.0f) + close() + moveTo(15.5f, 3.0f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-4.0f) + lineTo(15.5f, 3.0f) + close() + moveTo(12.0f, 10.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(16.0f, 8.5f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(20.5f, 8.5f) + lineTo(23.0f, 8.5f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + close() + moveTo(13.0f, 3.05f) + curveToRelative(-0.37f, 0.08f, -0.71f, 0.23f, -1.0f, 0.45f) + lineTo(6.5f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + lineTo(5.5f, 18.0f) + lineTo(19.0f, 18.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(1.5f) + verticalLineToRelative(5.75f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(5.5f, 19.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(6.5f, 22.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 19.5f) + verticalLineToRelative(-15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 6.5f, 2.0f) + horizontalLineToRelative(6.69f) + curveToRelative(-0.12f, 0.31f, -0.19f, 0.65f, -0.19f, 1.0f) + verticalLineToRelative(0.05f) + close() + } + } + return _bookToolbox!! + } + +private var _bookToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Bookmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Bookmark.kt new file mode 100644 index 00000000..9184934a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Bookmark.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Bookmark: ImageVector + get() { + if (_bookmark != null) { + return _bookmark!! + } + _bookmark = fluentIcon(name = "Regular.Bookmark") { + fluentPath { + moveTo(6.2f, 21.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.2f, -0.6f) + verticalLineToRelative(-15.0f) + curveTo(5.0f, 4.45f, 6.46f, 3.0f, 8.25f, 3.0f) + horizontalLineToRelative(7.5f) + curveTo(17.55f, 3.0f, 19.0f, 4.46f, 19.0f, 6.25f) + verticalLineToRelative(15.0f) + curveToRelative(0.0f, 0.6f, -0.7f, 0.96f, -1.19f, 0.6f) + lineToRelative(-5.8f, -4.18f) + lineToRelative(-5.82f, 4.18f) + close() + moveTo(17.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-7.5f) + curveToRelative(-0.96f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(13.53f) + lineToRelative(5.06f, -3.64f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.88f, 0.0f) + lineToRelative(5.06f, 3.64f) + lineTo(17.5f, 6.25f) + close() + } + } + return _bookmark!! + } + +private var _bookmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookmarkAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookmarkAdd.kt new file mode 100644 index 00000000..ed18cf67 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookmarkAdd.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BookmarkAdd: ImageVector + get() { + if (_bookmarkAdd != null) { + return _bookmarkAdd!! + } + _bookmarkAdd = fluentIcon(name = "Regular.BookmarkAdd") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 7.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 7.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 6.0f) + lineTo(17.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + lineTo(18.0f, 6.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 7.0f) + close() + moveTo(17.5f, 19.78f) + lineTo(17.5f, 13.0f) + curveToRelative(0.52f, 0.0f, 1.02f, -0.06f, 1.5f, -0.17f) + verticalLineToRelative(8.42f) + curveToRelative(0.0f, 0.6f, -0.7f, 0.96f, -1.19f, 0.6f) + lineToRelative(-5.8f, -4.18f) + lineToRelative(-5.82f, 4.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.19f, -0.6f) + verticalLineToRelative(-15.0f) + curveTo(5.0f, 4.45f, 6.46f, 3.0f, 8.25f, 3.0f) + horizontalLineToRelative(3.77f) + curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) + lineTo(8.24f, 4.5f) + curveToRelative(-0.96f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(13.53f) + lineToRelative(5.06f, -3.64f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.88f, 0.0f) + lineToRelative(5.06f, 3.64f) + close() + } + } + return _bookmarkAdd!! + } + +private var _bookmarkAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookmarkMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookmarkMultiple.kt new file mode 100644 index 00000000..d473bb24 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookmarkMultiple.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BookmarkMultiple: ImageVector + get() { + if (_bookmarkMultiple != null) { + return _bookmarkMultiple!! + } + _bookmarkMultiple = fluentIcon(name = "Regular.BookmarkMultiple") { + fluentPath { + moveTo(4.0f, 6.75f) + curveTo(4.0f, 5.5f, 5.0f, 4.5f, 6.25f, 4.5f) + horizontalLineToRelative(9.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, 0.65f) + lineToRelative(-5.62f, -3.28f) + lineToRelative(-5.62f, 3.28f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 4.0f, 21.25f) + lineTo(4.0f, 6.75f) + close() + moveTo(6.25f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(13.2f) + lineToRelative(4.87f, -2.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.76f, 0.0f) + lineTo(16.0f, 19.94f) + lineTo(16.0f, 6.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.74f) + horizontalLineToRelative(-9.0f) + close() + moveTo(15.25f, 2.0f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 20.0f, 6.75f) + verticalLineToRelative(11.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(18.5f, 6.75f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + lineTo(6.64f, 3.5f) + reflectiveCurveToRelative(0.11f, -0.56f, 0.8f, -1.08f) + curveTo(8.0f, 2.0f, 8.6f, 2.0f, 8.6f, 2.0f) + horizontalLineToRelative(6.65f) + close() + } + } + return _bookmarkMultiple!! + } + +private var _bookmarkMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookmarkOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookmarkOff.kt new file mode 100644 index 00000000..2dcedb4c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookmarkOff.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BookmarkOff: ImageVector + get() { + if (_bookmarkOff != null) { + return _bookmarkOff!! + } + _bookmarkOff = fluentIcon(name = "Regular.BookmarkOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(2.79f, 2.79f) + verticalLineToRelative(15.18f) + curveToRelative(0.0f, 0.6f, 0.68f, 0.96f, 1.18f, 0.6f) + lineTo(12.0f, 17.67f) + lineToRelative(5.81f, 4.18f) + curveToRelative(0.5f, 0.36f, 1.2f, 0.0f, 1.2f, -0.6f) + verticalLineToRelative(-1.19f) + lineToRelative(1.7f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.07f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(17.5f, 18.56f) + verticalLineToRelative(1.22f) + lineToRelative(-5.06f, -3.64f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.88f, 0.0f) + lineTo(6.5f, 19.78f) + lineTo(6.5f, 7.56f) + lineToRelative(11.0f, 11.0f) + close() + moveTo(17.5f, 6.25f) + verticalLineToRelative(8.07f) + lineToRelative(1.5f, 1.5f) + lineTo(19.0f, 6.25f) + curveTo(19.0f, 4.45f, 17.55f, 3.0f, 15.75f, 3.0f) + horizontalLineToRelative(-7.5f) + curveToRelative(-0.6f, 0.0f, -1.15f, 0.16f, -1.63f, 0.44f) + lineToRelative(1.13f, 1.13f) + curveToRelative(0.16f, -0.05f, 0.33f, -0.07f, 0.5f, -0.07f) + horizontalLineToRelative(7.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + close() + } + } + return _bookmarkOff!! + } + +private var _bookmarkOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookmarkSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookmarkSearch.kt new file mode 100644 index 00000000..3fac9ddc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BookmarkSearch.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BookmarkSearch: ImageVector + get() { + if (_bookmarkSearch != null) { + return _bookmarkSearch!! + } + _bookmarkSearch = fluentIcon(name = "Regular.BookmarkSearch") { + fluentPath { + moveTo(19.1f, 9.17f) + arcToRelative(4.5f, 4.5f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(2.62f, 2.61f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(19.1f, 9.17f) + close() + moveTo(19.5f, 5.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, -6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 6.0f, 0.0f) + close() + moveTo(19.0f, 10.48f) + verticalLineToRelative(10.76f) + curveToRelative(0.0f, 0.62f, -0.7f, 0.97f, -1.19f, 0.61f) + lineToRelative(-5.8f, -4.18f) + lineToRelative(-5.82f, 4.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.19f, -0.6f) + verticalLineToRelative(-15.0f) + curveTo(5.0f, 4.45f, 6.46f, 3.0f, 8.25f, 3.0f) + horizontalLineToRelative(3.35f) + curveToRelative(-0.24f, 0.46f, -0.41f, 0.97f, -0.51f, 1.5f) + lineTo(8.25f, 4.5f) + curveToRelative(-0.96f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(13.53f) + lineToRelative(5.06f, -3.64f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.88f, 0.0f) + lineToRelative(5.06f, 3.64f) + verticalLineToRelative(-8.87f) + curveToRelative(0.51f, -0.1f, 1.0f, -0.26f, 1.45f, -0.48f) + lineToRelative(0.05f, 0.05f) + close() + } + } + return _bookmarkSearch!! + } + +private var _bookmarkSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderAll.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderAll.kt new file mode 100644 index 00000000..6c38159a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderAll.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BorderAll: ImageVector + get() { + if (_borderAll != null) { + return _borderAll!! + } + _borderAll = fluentIcon(name = "Regular.BorderAll") { + fluentPath { + moveTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) + lineTo(5.75f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + close() + moveTo(12.75f, 19.5f) + horizontalLineToRelative(5.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-5.5f) + horizontalLineToRelative(-6.75f) + verticalLineToRelative(6.75f) + close() + moveTo(11.25f, 12.75f) + lineTo(4.5f, 12.75f) + verticalLineToRelative(5.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(5.5f) + verticalLineToRelative(-6.75f) + close() + moveTo(12.75f, 11.25f) + horizontalLineToRelative(6.75f) + verticalLineToRelative(-5.5f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-5.5f) + verticalLineToRelative(6.75f) + close() + moveTo(11.25f, 4.5f) + horizontalLineToRelative(-5.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(5.5f) + horizontalLineToRelative(6.75f) + lineTo(11.25f, 4.5f) + close() + } + } + return _borderAll!! + } + +private var _borderAll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderBottom.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderBottom.kt new file mode 100644 index 00000000..90b852b9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderBottom.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BorderBottom: ImageVector + get() { + if (_borderBottom != null) { + return _borderBottom!! + } + _borderBottom = fluentIcon(name = "Regular.BorderBottom") { + fluentPath { + moveTo(6.25f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(0.5f) + close() + moveTo(17.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) + horizontalLineToRelative(-0.5f) + close() + moveTo(3.75f, 10.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(19.5f, 10.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + close() + moveTo(14.0f, 3.75f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(3.0f, 17.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(12.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) + lineTo(5.75f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + verticalLineToRelative(-0.5f) + close() + } + } + return _borderBottom!! + } + +private var _borderBottom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderBottomDouble.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderBottomDouble.kt new file mode 100644 index 00000000..6dbc94a9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderBottomDouble.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BorderBottomDouble: ImageVector + get() { + if (_borderBottomDouble != null) { + return _borderBottomDouble!! + } + _borderBottomDouble = fluentIcon(name = "Regular.BorderBottomDouble") { + fluentPath { + moveTo(13.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.5f) + close() + moveTo(3.75f, 10.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(20.25f, 10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(3.75f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(3.75f, 21.0f) + close() + moveTo(3.0f, 17.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(7.0f, 3.75f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 6.25f, 3.0f) + horizontalLineToRelative(-0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(0.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + close() + moveTo(17.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) + horizontalLineToRelative(-0.5f) + close() + } + } + return _borderBottomDouble!! + } + +private var _borderBottomDouble: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderBottomThick.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderBottomThick.kt new file mode 100644 index 00000000..3c3bfee2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderBottomThick.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BorderBottomThick: ImageVector + get() { + if (_borderBottomThick != null) { + return _borderBottomThick!! + } + _borderBottomThick = fluentIcon(name = "Regular.BorderBottomThick") { + fluentPath { + moveTo(14.0f, 3.75f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(4.5f, 10.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.5f) + close() + moveTo(19.5f, 10.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + close() + moveTo(6.25f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(0.5f) + close() + moveTo(17.0f, 3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(3.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + lineTo(6.0f, 21.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + close() + } + } + return _borderBottomThick!! + } + +private var _borderBottomThick: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderLeft.kt new file mode 100644 index 00000000..81527f35 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderLeft.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BorderLeft: ImageVector + get() { + if (_borderLeft != null) { + return _borderLeft!! + } + _borderLeft = fluentIcon(name = "Regular.BorderLeft") { + fluentPath { + moveTo(6.25f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(0.5f) + close() + moveTo(13.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.5f) + close() + moveTo(19.5f, 10.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + close() + moveTo(14.0f, 20.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(17.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) + horizontalLineToRelative(-0.5f) + close() + moveTo(17.0f, 20.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) + verticalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + } + } + return _borderLeft!! + } + +private var _borderLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderLeftRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderLeftRight.kt new file mode 100644 index 00000000..b4317654 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderLeftRight.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BorderLeftRight: ImageVector + get() { + if (_borderLeftRight != null) { + return _borderLeftRight!! + } + _borderLeftRight = fluentIcon(name = "Regular.BorderLeftRight") { + fluentPath { + moveTo(17.0f, 3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + lineTo(19.5f, 5.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(13.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.5f) + close() + moveTo(13.25f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.5f) + close() + moveTo(6.25f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(0.5f) + close() + } + } + return _borderLeftRight!! + } + +private var _borderLeftRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderNone.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderNone.kt new file mode 100644 index 00000000..244072c9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderNone.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BorderNone: ImageVector + get() { + if (_borderNone != null) { + return _borderNone!! + } + _borderNone = fluentIcon(name = "Regular.BorderNone") { + fluentPath { + moveTo(14.0f, 3.75f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(4.5f, 10.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.5f) + close() + moveTo(19.5f, 10.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + close() + moveTo(13.25f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.5f) + close() + moveTo(7.0f, 3.75f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 6.25f, 3.0f) + horizontalLineToRelative(-0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(0.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + close() + moveTo(17.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) + horizontalLineToRelative(-0.5f) + close() + moveTo(7.0f, 20.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + verticalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(0.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(17.75f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) + horizontalLineToRelative(-0.5f) + close() + } + } + return _borderNone!! + } + +private var _borderNone: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderOutside.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderOutside.kt new file mode 100644 index 00000000..d2878b66 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderOutside.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BorderOutside: ImageVector + get() { + if (_borderOutside != null) { + return _borderOutside!! + } + _borderOutside = fluentIcon(name = "Regular.BorderOutside") { + fluentPath { + moveTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) + horizontalLineTo(5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + verticalLineTo(5.75f) + close() + moveTo(5.75f, 4.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(12.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineTo(5.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineTo(5.75f) + close() + } + } + return _borderOutside!! + } + +private var _borderOutside: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderOutsideThick.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderOutsideThick.kt new file mode 100644 index 00000000..3444ba75 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderOutsideThick.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BorderOutsideThick: ImageVector + get() { + if (_borderOutsideThick != null) { + return _borderOutsideThick!! + } + _borderOutsideThick = fluentIcon(name = "Regular.BorderOutsideThick") { + fluentPath { + moveTo(3.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + lineTo(6.0f, 21.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(3.0f, 6.0f) + close() + moveTo(6.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + lineTo(19.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(6.0f, 5.0f) + close() + } + } + return _borderOutsideThick!! + } + +private var _borderOutsideThick: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderRight.kt new file mode 100644 index 00000000..542dd066 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderRight.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BorderRight: ImageVector + get() { + if (_borderRight != null) { + return _borderRight!! + } + _borderRight = fluentIcon(name = "Regular.BorderRight") { + fluentPath { + moveTo(13.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.5f) + close() + moveTo(4.5f, 10.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.5f) + close() + moveTo(14.0f, 20.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(6.25f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(0.5f) + close() + moveTo(7.0f, 20.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + verticalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(0.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(17.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) + lineTo(21.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) + horizontalLineToRelative(-0.5f) + close() + } + } + return _borderRight!! + } + +private var _borderRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderTop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderTop.kt new file mode 100644 index 00000000..940cdcfa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderTop.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BorderTop: ImageVector + get() { + if (_borderTop != null) { + return _borderTop!! + } + _borderTop = fluentIcon(name = "Regular.BorderTop") { + fluentPath { + moveTo(3.0f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(12.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) + lineTo(5.75f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(0.5f) + close() + moveTo(4.5f, 10.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.5f) + close() + moveTo(19.5f, 10.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + close() + moveTo(14.0f, 20.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(6.25f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + verticalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) + horizontalLineToRelative(0.5f) + close() + moveTo(17.0f, 20.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) + verticalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + } + } + return _borderTop!! + } + +private var _borderTop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderTopBottom.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderTopBottom.kt new file mode 100644 index 00000000..0bf8058c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderTopBottom.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BorderTopBottom: ImageVector + get() { + if (_borderTopBottom != null) { + return _borderTopBottom!! + } + _borderTopBottom = fluentIcon(name = "Regular.BorderTopBottom") { + fluentPath { + moveTo(3.75f, 7.0f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 6.25f) + verticalLineToRelative(-0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(5.75f, 4.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + close() + moveTo(4.5f, 10.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.5f) + close() + moveTo(19.5f, 10.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + close() + moveTo(3.0f, 17.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(12.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) + lineTo(5.75f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + verticalLineToRelative(-0.5f) + close() + } + } + return _borderTopBottom!! + } + +private var _borderTopBottom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderTopBottomDouble.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderTopBottomDouble.kt new file mode 100644 index 00000000..106c46e8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderTopBottomDouble.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BorderTopBottomDouble: ImageVector + get() { + if (_borderTopBottomDouble != null) { + return _borderTopBottomDouble!! + } + _borderTopBottomDouble = fluentIcon(name = "Regular.BorderTopBottomDouble") { + fluentPath { + moveTo(3.0f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(12.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) + lineTo(5.75f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(0.5f) + close() + moveTo(3.75f, 10.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(20.25f, 10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(3.0f, 20.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(3.75f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(3.75f, 18.5f) + close() + } + } + return _borderTopBottomDouble!! + } + +private var _borderTopBottomDouble: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderTopBottomThick.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderTopBottomThick.kt new file mode 100644 index 00000000..8d5d8176 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BorderTopBottomThick.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BorderTopBottomThick: ImageVector + get() { + if (_borderTopBottomThick != null) { + return _borderTopBottomThick!! + } + _borderTopBottomThick = fluentIcon(name = "Regular.BorderTopBottomThick") { + fluentPath { + moveTo(3.0f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(12.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) + lineTo(5.75f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(0.5f) + close() + moveTo(4.5f, 10.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.5f) + close() + moveTo(19.5f, 10.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + close() + moveTo(4.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) + horizontalLineToRelative(12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + lineTo(6.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + } + } + return _borderTopBottomThick!! + } + +private var _borderTopBottomThick: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Bot.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Bot.kt new file mode 100644 index 00000000..f2478cf2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Bot.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Bot: ImageVector + get() { + if (_bot != null) { + return _bot!! + } + _bot = fluentIcon(name = "Regular.Bot") { + fluentPath { + moveTo(17.75f, 14.0f) + curveTo(19.0f, 14.0f, 20.0f, 15.0f, 20.0f, 16.25f) + verticalLineToRelative(0.9f) + curveToRelative(0.0f, 1.1f, -0.47f, 2.14f, -1.3f, 2.85f) + curveToRelative(-1.57f, 1.34f, -3.81f, 2.0f, -6.7f, 2.0f) + reflectiveCurveToRelative(-5.13f, -0.66f, -6.7f, -2.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 4.0f, 17.16f) + verticalLineToRelative(-0.91f) + curveTo(4.0f, 15.0f, 5.01f, 14.0f, 6.25f, 14.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.75f, 15.5f) + lineTo(6.25f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.9f) + curveToRelative(0.0f, 0.66f, 0.29f, 1.29f, 0.79f, 1.71f) + curveTo(7.55f, 19.94f, 9.44f, 20.5f, 12.0f, 20.5f) + reflectiveCurveToRelative(4.46f, -0.56f, 5.72f, -1.64f) + curveToRelative(0.5f, -0.43f, 0.78f, -1.05f, 0.78f, -1.7f) + verticalLineToRelative(-0.91f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(11.9f, 2.0f) + horizontalLineToRelative(0.1f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(3.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 1.25f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-8.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineTo(12.0f, 2.0f) + horizontalLineToRelative(-0.1f) + close() + moveTo(16.25f, 5.0f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(8.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) + verticalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(9.75f, 6.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(14.25f, 6.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + } + } + return _bot!! + } + +private var _bot: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BotAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BotAdd.kt new file mode 100644 index 00000000..25daa967 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BotAdd.kt @@ -0,0 +1,106 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BotAdd: ImageVector + get() { + if (_botAdd != null) { + return _botAdd!! + } + _botAdd = fluentIcon(name = "Regular.BotAdd") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(12.02f, 14.0f) + curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) + lineTo(4.24f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.9f) + curveToRelative(0.0f, 0.66f, 0.29f, 1.29f, 0.79f, 1.71f) + curveTo(5.55f, 19.94f, 7.44f, 20.5f, 10.0f, 20.5f) + curveToRelative(0.6f, 0.0f, 1.16f, -0.03f, 1.69f, -0.09f) + curveToRelative(0.25f, 0.5f, 0.56f, 0.96f, 0.93f, 1.38f) + curveToRelative(-0.8f, 0.14f, -1.68f, 0.21f, -2.62f, 0.21f) + curveToRelative(-2.89f, 0.0f, -5.13f, -0.66f, -6.7f, -2.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 2.0f, 17.16f) + verticalLineToRelative(-0.91f) + curveTo(2.0f, 15.0f, 3.01f, 14.0f, 4.25f, 14.0f) + horizontalLineToRelative(7.77f) + close() + moveTo(17.5f, 14.0f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) + lineToRelative(-0.01f, 0.1f) + lineTo(17.0f, 17.0f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(0.18f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) + lineToRelative(0.1f, 0.01f) + lineTo(17.0f, 18.0f) + verticalLineToRelative(2.6f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + horizontalLineToRelative(0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) + lineToRelative(0.01f, -0.1f) + lineTo(18.0f, 18.0f) + horizontalLineToRelative(2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + verticalLineToRelative(-0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) + lineToRelative(-0.1f, -0.01f) + lineTo(18.0f, 17.0f) + verticalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) + horizontalLineToRelative(-0.09f) + close() + moveTo(10.0f, 2.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(3.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.3f, -0.06f, 0.6f, -0.17f, 0.86f) + curveToRelative(-1.12f, 0.2f, -2.15f, 0.7f, -2.99f, 1.4f) + lineTo(5.75f, 12.51f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.01f, -2.25f, -2.26f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.35f, 0.23f, -0.64f, 0.55f, -0.72f) + lineTo(9.9f, 2.0f) + lineTo(10.0f, 2.0f) + close() + moveTo(14.25f, 5.0f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(8.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) + verticalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(7.75f, 6.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(12.25f, 6.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + } + } + return _botAdd!! + } + +private var _botAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BotSparkle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BotSparkle.kt new file mode 100644 index 00000000..859b2945 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BotSparkle.kt @@ -0,0 +1,121 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BotSparkle: ImageVector + get() { + if (_botSparkle != null) { + return _botSparkle!! + } + _botSparkle = fluentIcon(name = "Regular.BotSparkle") { + fluentPath { + moveTo(18.5f, 10.25f) + verticalLineToRelative(0.14f) + arcToRelative(1.54f, 1.54f, 0.0f, false, false, -1.5f, -0.32f) + lineTo(17.0f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(8.28f) + lineToRelative(-0.01f, 0.03f) + verticalLineToRelative(0.01f) + lineToRelative(-0.46f, 1.39f) + verticalLineToRelative(0.02f) + lineToRelative(-0.03f, 0.05f) + lineTo(7.75f, 12.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineTo(12.0f, 2.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(3.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(4.5f) + close() + moveTo(13.04f, 14.04f) + lineTo(13.16f, 14.0f) + horizontalLineToRelative(-6.9f) + curveTo(5.0f, 14.0f, 4.0f, 15.0f, 4.0f, 16.25f) + verticalLineToRelative(0.9f) + curveToRelative(0.0f, 1.1f, 0.48f, 2.14f, 1.3f, 2.85f) + curveToRelative(1.57f, 1.34f, 3.81f, 2.0f, 6.7f, 2.0f) + curveToRelative(2.08f, 0.0f, 3.82f, -0.34f, 5.21f, -1.03f) + arcToRelative(1.55f, 1.55f, 0.0f, false, true, -1.17f, -1.0f) + verticalLineToRelative(-0.01f) + lineToRelative(-0.03f, -0.1f) + arcToRelative(11.1f, 11.1f, 0.0f, false, true, -4.01f, 0.64f) + curveToRelative(-2.56f, 0.0f, -4.45f, -0.55f, -5.71f, -1.64f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.79f, -1.7f) + verticalLineToRelative(-0.91f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + lineTo(12.0f, 15.5f) + arcToRelative(1.54f, 1.54f, 0.0f, false, true, 1.03f, -1.46f) + horizontalLineToRelative(0.01f) + close() + moveTo(11.0f, 7.74f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) + close() + moveTo(14.24f, 6.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(16.09f, 17.41f) + arcToRelative(2.83f, 2.83f, 0.0f, false, false, -1.35f, -0.95f) + lineTo(13.36f, 16.0f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, -1.03f) + lineToRelative(1.38f, -0.44f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.76f, -1.77f) + lineToRelative(0.01f, -0.03f) + lineToRelative(0.45f, -1.38f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, 1.03f, 0.0f) + lineToRelative(0.44f, 1.38f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.8f, 1.8f) + lineToRelative(1.38f, 0.44f) + lineToRelative(0.03f, 0.01f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, 1.03f) + lineToRelative(-1.38f, 0.44f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.8f, 1.8f) + lineToRelative(-0.45f, 1.38f) + arcToRelative(0.55f, 0.55f, 0.0f, false, true, -0.2f, 0.26f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, -0.82f, -0.26f) + lineToRelative(-0.45f, -1.38f) + curveToRelative(-0.1f, -0.3f, -0.25f, -0.6f, -0.45f, -0.85f) + close() + moveTo(23.79f, 21.21f) + lineTo(23.02f, 20.96f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, -1.0f, -1.0f) + lineToRelative(-0.25f, -0.76f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, -0.57f, 0.0f) + lineToRelative(-0.25f, 0.77f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, -0.98f, 1.0f) + lineToRelative(-0.77f, 0.24f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.77f, 0.25f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, 1.0f) + lineToRelative(0.25f, 0.77f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.57f, 0.0f) + lineToRelative(0.24f, -0.77f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, -1.0f) + lineToRelative(0.77f, -0.24f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, -0.57f) + horizontalLineToRelative(-0.02f) + close() + } + } + return _botSparkle!! + } + +private var _botSparkle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BowlChopsticks.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BowlChopsticks.kt new file mode 100644 index 00000000..55f3ccfd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BowlChopsticks.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BowlChopsticks: ImageVector + get() { + if (_bowlChopsticks != null) { + return _bowlChopsticks!! + } + _bowlChopsticks = fluentIcon(name = "Regular.BowlChopsticks") { + fluentPath { + moveTo(6.4f, 2.38f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.3f, 0.74f) + lineTo(9.63f, 11.0f) + horizontalLineTo(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineTo(12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 20.0f, 0.0f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-5.88f) + lineTo(10.4f, 2.38f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.3f, 0.74f) + lineTo(13.63f, 11.0f) + horizontalLineToRelative(-2.26f) + lineTo(6.4f, 2.38f) + close() + moveTo(4.79f, 16.5f) + horizontalLineTo(19.2f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, -14.42f, 0.0f) + close() + moveTo(4.04f, 15.0f) + arcToRelative(8.46f, 8.46f, 0.0f, false, true, -0.53f, -2.5f) + horizontalLineTo(20.5f) + arcToRelative(8.46f, 8.46f, 0.0f, false, true, -0.53f, 2.5f) + horizontalLineTo(4.04f) + close() + } + } + return _bowlChopsticks!! + } + +private var _bowlChopsticks: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BowlSalad.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BowlSalad.kt new file mode 100644 index 00000000..8500a508 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BowlSalad.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BowlSalad: ImageVector + get() { + if (_bowlSalad != null) { + return _bowlSalad!! + } + _bowlSalad = fluentIcon(name = "Regular.BowlSalad") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -5.14f, 3.53f) + arcTo(12.95f, 12.95f, 0.0f, false, false, 3.56f, 5.0f) + arcToRelative(12.05f, 12.05f, 0.0f, false, false, -0.78f, 0.0f) + horizontalLineToRelative(-0.04f) + arcToRelative(0.76f, 0.76f, 0.0f, false, false, -0.73f, 0.7f) + verticalLineToRelative(0.07f) + arcToRelative(7.84f, 7.84f, 0.0f, false, false, 0.0f, 0.79f) + curveToRelative(0.02f, 0.51f, 0.08f, 1.23f, 0.22f, 2.03f) + curveToRelative(0.14f, 0.74f, 0.35f, 1.57f, 0.7f, 2.4f) + horizontalLineToRelative(-0.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(2.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 20.0f, 0.0f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(21.0f, 11.0f) + verticalLineToRelative(-0.13f) + arcToRelative(4.88f, 4.88f, 0.0f, false, false, -3.67f, -4.72f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 12.0f, 2.0f) + close() + moveTo(8.27f, 6.04f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 7.45f, -0.02f) + arcToRelative(4.88f, 4.88f, 0.0f, false, false, -4.03f, 2.82f) + arcToRelative(7.61f, 7.61f, 0.0f, false, false, -3.42f, -2.8f) + close() + moveTo(19.5f, 10.87f) + lineTo(19.5f, 11.0f) + horizontalLineToRelative(-6.73f) + lineToRelative(-0.02f, -0.05f) + verticalLineToRelative(-0.07f) + arcToRelative(3.37f, 3.37f, 0.0f, true, true, 6.75f, 0.0f) + close() + moveTo(9.72f, 8.79f) + curveToRelative(0.64f, 0.65f, 1.1f, 1.42f, 1.44f, 2.22f) + horizontalLineToRelative(-2.1f) + lineTo(7.28f, 9.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(0.72f, 0.72f) + lineTo(4.57f, 11.0f) + curveToRelative(-0.44f, -0.88f, -0.7f, -1.81f, -0.86f, -2.67f) + curveToRelative(-0.13f, -0.72f, -0.18f, -1.36f, -0.2f, -1.82f) + curveToRelative(0.46f, 0.02f, 1.1f, 0.07f, 1.82f, 0.2f) + curveToRelative(1.46f, 0.27f, 3.16f, 0.85f, 4.39f, 2.07f) + close() + moveTo(4.79f, 16.5f) + lineTo(19.2f, 16.5f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, -14.42f, 0.0f) + close() + moveTo(3.51f, 12.5f) + lineTo(20.5f, 12.5f) + arcToRelative(8.46f, 8.46f, 0.0f, false, true, -0.53f, 2.5f) + lineTo(4.04f, 15.0f) + arcToRelative(8.46f, 8.46f, 0.0f, false, true, -0.53f, -2.5f) + close() + moveTo(2.71f, 5.0f) + horizontalLineToRelative(0.03f) + horizontalLineToRelative(-0.02f) + close() + } + } + return _bowlSalad!! + } + +private var _bowlSalad: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Box.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Box.kt new file mode 100644 index 00000000..b5165e21 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Box.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Box: ImageVector + get() { + if (_box != null) { + return _box!! + } + _box = fluentIcon(name = "Regular.Box") { + fluentPath { + moveTo(10.6f, 2.51f) + curveToRelative(0.9f, -0.36f, 1.9f, -0.36f, 2.8f, 0.0f) + lineToRelative(7.5f, 3.04f) + curveToRelative(0.67f, 0.27f, 1.1f, 0.91f, 1.1f, 1.62f) + verticalLineToRelative(9.66f) + curveToRelative(0.0f, 0.71f, -0.43f, 1.35f, -1.1f, 1.62f) + lineToRelative(-7.5f, 3.04f) + curveToRelative(-0.9f, 0.37f, -1.9f, 0.37f, -2.8f, 0.0f) + lineToRelative(-7.5f, -3.04f) + curveToRelative(-0.67f, -0.27f, -1.1f, -0.91f, -1.1f, -1.62f) + lineTo(2.0f, 7.17f) + curveToRelative(0.0f, -0.7f, 0.43f, -1.35f, 1.1f, -1.62f) + lineToRelative(7.5f, -3.04f) + close() + moveTo(12.85f, 3.91f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.7f, 0.0f) + lineToRelative(-1.9f, 0.77f) + lineToRelative(7.52f, 2.93f) + lineToRelative(2.67f, -1.03f) + lineToRelative(-6.6f, -2.68f) + close() + moveTo(14.69f, 8.41f) + lineTo(7.21f, 5.5f) + lineTo(4.6f, 6.56f) + lineTo(12.0f, 9.45f) + lineToRelative(2.7f, -1.04f) + close() + moveTo(3.5f, 16.83f) + curveToRelative(0.0f, 0.1f, 0.06f, 0.2f, 0.16f, 0.23f) + lineToRelative(7.5f, 3.04f) + lineToRelative(0.09f, 0.04f) + verticalLineToRelative(-9.38f) + lineTo(3.5f, 7.75f) + verticalLineToRelative(9.08f) + close() + moveTo(12.85f, 20.1f) + lineTo(20.35f, 17.06f) + curveToRelative(0.09f, -0.04f, 0.15f, -0.13f, 0.15f, -0.23f) + lineTo(20.5f, 7.77f) + lineToRelative(-7.75f, 3.0f) + verticalLineToRelative(9.37f) + lineToRelative(0.1f, -0.04f) + close() + } + } + return _box!! + } + +private var _box: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxArrowLeft.kt new file mode 100644 index 00000000..aec937f7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxArrowLeft.kt @@ -0,0 +1,97 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BoxArrowLeft: ImageVector + get() { + if (_boxArrowLeft != null) { + return _boxArrowLeft!! + } + _boxArrowLeft = fluentIcon(name = "Regular.BoxArrowLeft") { + fluentPath { + moveTo(10.6f, 2.51f) + curveToRelative(0.9f, -0.36f, 1.9f, -0.36f, 2.8f, 0.0f) + lineToRelative(7.5f, 3.04f) + curveToRelative(0.67f, 0.27f, 1.1f, 0.91f, 1.1f, 1.62f) + verticalLineToRelative(5.64f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) + lineTo(20.5f, 7.77f) + lineToRelative(-7.75f, 3.0f) + verticalLineToRelative(2.3f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.5f, 2.64f) + verticalLineToRelative(-4.95f) + lineTo(3.5f, 7.75f) + verticalLineToRelative(9.08f) + curveToRelative(0.0f, 0.1f, 0.06f, 0.2f, 0.16f, 0.23f) + lineToRelative(7.5f, 3.04f) + lineToRelative(0.09f, 0.04f) + lineToRelative(0.19f, 0.07f) + lineToRelative(0.18f, 0.06f) + curveToRelative(0.25f, 0.53f, 0.56f, 1.01f, 0.94f, 1.45f) + curveToRelative(-0.66f, 0.1f, -1.34f, 0.02f, -1.97f, -0.23f) + lineToRelative(-7.5f, -3.04f) + curveTo(2.43f, 18.18f, 2.0f, 17.54f, 2.0f, 16.83f) + lineTo(2.0f, 7.17f) + curveToRelative(0.0f, -0.7f, 0.43f, -1.35f, 1.1f, -1.62f) + lineToRelative(7.5f, -3.04f) + close() + moveTo(12.85f, 3.91f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.7f, 0.0f) + lineToRelative(-1.9f, 0.77f) + lineToRelative(7.52f, 2.93f) + lineToRelative(2.67f, -1.03f) + lineToRelative(-6.6f, -2.68f) + close() + moveTo(4.59f, 6.55f) + lineTo(12.0f, 9.45f) + lineToRelative(2.7f, -1.04f) + lineTo(7.21f, 5.5f) + lineTo(4.59f, 6.56f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, -11.0f) + close() + moveTo(14.0f, 17.46f) + lineToRelative(0.02f, -0.09f) + lineToRelative(0.02f, -0.06f) + lineToRelative(0.03f, -0.07f) + lineToRelative(0.03f, -0.04f) + lineToRelative(2.55f, -2.55f) + lineToRelative(0.07f, -0.06f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, 0.7f) + lineToRelative(-0.07f, 0.06f) + lineTo(15.71f, 17.0f) + horizontalLineToRelative(5.38f) + curveToRelative(0.2f, 0.05f, 0.36f, 0.2f, 0.4f, 0.41f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(0.08f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.41f, 0.4f) + lineTo(21.0f, 18.0f) + horizontalLineToRelative(-5.3f) + lineToRelative(1.65f, 1.65f) + lineToRelative(0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 0.57f) + lineToRelative(-0.06f, 0.06f) + lineToRelative(-0.07f, 0.06f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.56f, 0.0f) + lineToRelative(-0.07f, -0.06f) + lineToRelative(-2.52f, -2.5f) + lineToRelative(-0.04f, -0.06f) + lineToRelative(-0.04f, -0.08f) + lineToRelative(-0.03f, -0.08f) + lineToRelative(-0.01f, -0.06f) + lineToRelative(-0.01f, -0.06f) + verticalLineToRelative(-0.05f) + close() + } + } + return _boxArrowLeft!! + } + +private var _boxArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxArrowUp.kt new file mode 100644 index 00000000..21a259ab --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxArrowUp.kt @@ -0,0 +1,96 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BoxArrowUp: ImageVector + get() { + if (_boxArrowUp != null) { + return _boxArrowUp!! + } + _boxArrowUp = fluentIcon(name = "Regular.BoxArrowUp") { + fluentPath { + moveTo(10.6f, 2.51f) + curveToRelative(0.9f, -0.36f, 1.9f, -0.36f, 2.8f, 0.0f) + lineToRelative(7.5f, 3.04f) + curveToRelative(0.67f, 0.27f, 1.1f, 0.91f, 1.1f, 1.62f) + verticalLineToRelative(5.64f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) + lineTo(20.5f, 7.77f) + lineToRelative(-7.75f, 3.0f) + verticalLineToRelative(2.3f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.5f, 2.64f) + verticalLineToRelative(-4.95f) + lineTo(3.5f, 7.75f) + verticalLineToRelative(9.08f) + curveToRelative(0.0f, 0.1f, 0.06f, 0.2f, 0.16f, 0.23f) + lineToRelative(7.5f, 3.04f) + lineToRelative(0.09f, 0.04f) + lineToRelative(0.19f, 0.07f) + lineToRelative(0.18f, 0.06f) + curveToRelative(0.25f, 0.53f, 0.56f, 1.01f, 0.94f, 1.45f) + curveToRelative(-0.66f, 0.1f, -1.34f, 0.02f, -1.97f, -0.23f) + lineToRelative(-7.5f, -3.04f) + curveTo(2.43f, 18.18f, 2.0f, 17.54f, 2.0f, 16.83f) + lineTo(2.0f, 7.17f) + curveToRelative(0.0f, -0.7f, 0.43f, -1.35f, 1.1f, -1.62f) + lineToRelative(7.5f, -3.04f) + close() + moveTo(12.85f, 3.91f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.7f, 0.0f) + lineToRelative(-1.9f, 0.77f) + lineToRelative(7.52f, 2.93f) + lineToRelative(2.67f, -1.03f) + lineToRelative(-6.6f, -2.68f) + close() + moveTo(4.59f, 6.55f) + lineTo(12.0f, 9.45f) + lineToRelative(2.7f, -1.04f) + lineTo(7.21f, 5.5f) + lineTo(4.59f, 6.56f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(17.54f, 14.0f) + lineToRelative(0.09f, 0.02f) + lineToRelative(0.06f, 0.02f) + lineToRelative(0.07f, 0.03f) + lineToRelative(0.05f, 0.04f) + lineToRelative(2.54f, 2.54f) + lineToRelative(0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.7f) + lineToRelative(-0.06f, -0.07f) + lineTo(18.0f, 15.71f) + verticalLineToRelative(5.38f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.41f, 0.4f) + lineToRelative(-0.09f, 0.01f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, -0.4f) + lineTo(17.0f, 21.0f) + verticalLineToRelative(-5.3f) + lineToRelative(-1.65f, 1.65f) + lineToRelative(-0.07f, 0.06f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.56f, 0.0f) + lineToRelative(-0.07f, -0.06f) + lineToRelative(-0.06f, -0.06f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -0.57f) + lineToRelative(0.06f, -0.07f) + lineToRelative(2.5f, -2.51f) + lineToRelative(0.07f, -0.05f) + lineToRelative(0.07f, -0.04f) + lineToRelative(0.08f, -0.03f) + lineToRelative(0.06f, -0.01f) + horizontalLineToRelative(0.11f) + close() + } + } + return _boxArrowUp!! + } + +private var _boxArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxCheckmark.kt new file mode 100644 index 00000000..287ecab1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxCheckmark.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BoxCheckmark: ImageVector + get() { + if (_boxCheckmark != null) { + return _boxCheckmark!! + } + _boxCheckmark = fluentIcon(name = "Regular.BoxCheckmark") { + fluentPath { + moveTo(10.6f, 2.51f) + curveToRelative(0.9f, -0.36f, 1.9f, -0.36f, 2.8f, 0.0f) + lineToRelative(7.5f, 3.04f) + curveToRelative(0.67f, 0.27f, 1.1f, 0.91f, 1.1f, 1.62f) + verticalLineToRelative(5.64f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) + lineTo(20.5f, 7.77f) + lineToRelative(-7.75f, 3.0f) + verticalLineToRelative(2.3f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.5f, 2.64f) + verticalLineToRelative(-4.95f) + lineTo(3.5f, 7.75f) + verticalLineToRelative(9.08f) + curveToRelative(0.0f, 0.1f, 0.06f, 0.2f, 0.16f, 0.23f) + lineToRelative(7.5f, 3.04f) + lineToRelative(0.09f, 0.04f) + lineToRelative(0.19f, 0.07f) + lineToRelative(0.18f, 0.06f) + curveToRelative(0.25f, 0.53f, 0.56f, 1.01f, 0.94f, 1.45f) + curveToRelative(-0.66f, 0.1f, -1.34f, 0.02f, -1.97f, -0.23f) + lineToRelative(-7.5f, -3.04f) + curveTo(2.43f, 18.18f, 2.0f, 17.54f, 2.0f, 16.83f) + lineTo(2.0f, 7.17f) + curveToRelative(0.0f, -0.7f, 0.43f, -1.35f, 1.1f, -1.62f) + lineToRelative(7.5f, -3.04f) + close() + moveTo(12.85f, 3.91f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.7f, 0.0f) + lineToRelative(-1.9f, 0.77f) + lineToRelative(7.52f, 2.93f) + lineToRelative(2.67f, -1.03f) + lineToRelative(-6.6f, -2.68f) + close() + moveTo(4.59f, 6.55f) + lineTo(12.0f, 9.45f) + lineToRelative(2.7f, -1.04f) + lineTo(7.21f, 5.5f) + lineTo(4.59f, 6.56f) + close() + moveTo(17.5f, 23.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) + close() + moveTo(16.5f, 18.8f) + lineTo(20.15f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, 0.7f) + lineToRelative(-4.0f, 4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.0f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, -0.7f) + lineToRelative(1.65f, 1.64f) + close() + } + } + return _boxCheckmark!! + } + +private var _boxCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxDismiss.kt new file mode 100644 index 00000000..01ba8312 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxDismiss.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BoxDismiss: ImageVector + get() { + if (_boxDismiss != null) { + return _boxDismiss!! + } + _boxDismiss = fluentIcon(name = "Regular.BoxDismiss") { + fluentPath { + moveTo(10.6f, 2.51f) + curveToRelative(0.9f, -0.36f, 1.9f, -0.36f, 2.8f, 0.0f) + lineToRelative(7.5f, 3.04f) + curveToRelative(0.67f, 0.27f, 1.1f, 0.91f, 1.1f, 1.62f) + verticalLineToRelative(5.64f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) + lineTo(20.5f, 7.77f) + lineToRelative(-7.75f, 3.0f) + verticalLineToRelative(2.3f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.5f, 2.64f) + verticalLineToRelative(-4.95f) + lineTo(3.5f, 7.75f) + verticalLineToRelative(9.08f) + curveToRelative(0.0f, 0.1f, 0.06f, 0.2f, 0.16f, 0.23f) + lineToRelative(7.5f, 3.04f) + lineToRelative(0.09f, 0.04f) + verticalLineToRelative(-0.85f) + curveToRelative(0.26f, 0.91f, 0.71f, 1.73f, 1.3f, 2.43f) + curveToRelative(-0.65f, 0.1f, -1.33f, 0.02f, -1.96f, -0.23f) + lineToRelative(-7.5f, -3.04f) + curveTo(2.43f, 18.18f, 2.0f, 17.54f, 2.0f, 16.83f) + lineTo(2.0f, 7.17f) + curveToRelative(0.0f, -0.7f, 0.43f, -1.35f, 1.1f, -1.62f) + lineToRelative(7.5f, -3.04f) + close() + moveTo(12.85f, 3.91f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.7f, 0.0f) + lineToRelative(-1.9f, 0.77f) + lineToRelative(7.52f, 2.93f) + lineToRelative(2.67f, -1.03f) + lineToRelative(-6.6f, -2.68f) + close() + moveTo(14.69f, 8.41f) + lineTo(7.21f, 5.5f) + lineTo(4.6f, 6.56f) + lineTo(12.0f, 9.45f) + lineToRelative(2.7f, -1.04f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 15.14f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-1.64f, -1.65f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.65f, 1.64f) + lineToRelative(-1.65f, -1.64f) + close() + } + } + return _boxDismiss!! + } + +private var _boxDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxEdit.kt new file mode 100644 index 00000000..81e7f133 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxEdit.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BoxEdit: ImageVector + get() { + if (_boxEdit != null) { + return _boxEdit!! + } + _boxEdit = fluentIcon(name = "Regular.BoxEdit") { + fluentPath { + moveTo(13.4f, 2.51f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.8f, 0.0f) + lineTo(3.1f, 5.55f) + curveToRelative(-0.67f, 0.27f, -1.1f, 0.91f, -1.1f, 1.62f) + verticalLineToRelative(9.66f) + curveToRelative(0.0f, 0.71f, 0.43f, 1.35f, 1.1f, 1.62f) + lineToRelative(7.5f, 3.04f) + curveToRelative(0.13f, 0.06f, 0.27f, 0.1f, 0.42f, 0.14f) + lineToRelative(0.04f, -0.22f) + lineToRelative(0.46f, -1.83f) + curveToRelative(0.16f, -0.65f, 0.5f, -1.24f, 0.97f, -1.71f) + lineToRelative(0.26f, -0.26f) + verticalLineToRelative(-6.84f) + lineToRelative(7.75f, -3.0f) + verticalLineToRelative(3.24f) + arcToRelative(3.3f, 3.3f, 0.0f, false, true, 1.5f, 0.25f) + lineTo(22.0f, 7.17f) + curveToRelative(0.0f, -0.7f, -0.43f, -1.35f, -1.1f, -1.62f) + lineToRelative(-7.5f, -3.04f) + close() + moveTo(11.15f, 3.91f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 1.7f, 0.0f) + lineToRelative(6.59f, 2.67f) + lineToRelative(-2.67f, 1.03f) + lineToRelative(-7.53f, -2.93f) + lineToRelative(1.91f, -0.78f) + close() + moveTo(7.21f, 5.5f) + lineToRelative(7.48f, 2.9f) + lineTo(12.0f, 9.46f) + lineTo(4.6f, 6.56f) + lineTo(7.21f, 5.5f) + close() + moveTo(3.5f, 7.75f) + lineToRelative(7.75f, 3.01f) + verticalLineToRelative(9.38f) + arcToRelative(2.13f, 2.13f, 0.0f, false, true, -0.1f, -0.04f) + lineToRelative(-7.5f, -3.04f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.15f, -0.23f) + lineTo(3.5f, 7.75f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _boxEdit!! + } + +private var _boxEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxMultiple.kt new file mode 100644 index 00000000..3000a14f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxMultiple.kt @@ -0,0 +1,94 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BoxMultiple: ImageVector + get() { + if (_boxMultiple != null) { + return _boxMultiple!! + } + _boxMultiple = fluentIcon(name = "Regular.BoxMultiple") { + fluentPath { + moveTo(15.78f, 3.74f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.56f, 0.0f) + lineToRelative(-4.3f, 1.59f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.17f, 0.23f) + verticalLineToRelative(2.8f) + curveToRelative(-0.5f, -0.08f, -1.0f, -0.08f, -1.5f, 0.0f) + verticalLineToRelative(-2.8f) + curveToRelative(0.0f, -0.73f, 0.46f, -1.38f, 1.14f, -1.64f) + lineToRelative(4.31f, -1.59f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.6f, 0.0f) + lineToRelative(4.3f, 1.6f) + curveToRelative(0.7f, 0.25f, 1.15f, 0.9f, 1.15f, 1.63f) + verticalLineToRelative(10.67f) + curveToRelative(0.0f, 0.74f, -0.46f, 1.4f, -1.14f, 1.64f) + lineToRelative(-4.02f, 1.49f) + curveToRelative(0.1f, -0.3f, 0.16f, -0.6f, 0.16f, -0.93f) + verticalLineToRelative(-0.73f) + lineToRelative(3.34f, -1.23f) + curveToRelative(0.1f, -0.04f, 0.16f, -0.13f, 0.16f, -0.24f) + lineTo(20.25f, 5.56f) + curveToRelative(0.0f, -0.1f, -0.07f, -0.2f, -0.16f, -0.23f) + lineToRelative(-4.31f, -1.6f) + close() + moveTo(11.77f, 7.67f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.49f, -1.42f) + lineToRelative(2.66f, 0.92f) + curveToRelative(0.05f, 0.02f, 0.1f, 0.02f, 0.16f, 0.0f) + lineToRelative(2.65f, -0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.5f, 1.42f) + lineToRelative(-2.66f, 0.92f) + curveToRelative(-0.37f, 0.12f, -0.77f, 0.12f, -1.14f, 0.0f) + lineToRelative(-2.66f, -0.92f) + close() + moveTo(5.77f, 14.67f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.49f, -1.42f) + lineTo(9.0f, 14.2f) + lineToRelative(2.73f, -0.95f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.5f, 1.42f) + lineToRelative(-2.48f, 0.85f) + verticalLineToRelative(2.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.7f) + lineToRelative(-2.48f, -0.85f) + close() + moveTo(10.3f, 9.53f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.6f, 0.0f) + lineToRelative(-4.3f, 1.6f) + curveToRelative(-0.7f, 0.24f, -1.15f, 0.9f, -1.15f, 1.63f) + verticalLineToRelative(5.67f) + curveToRelative(0.0f, 0.73f, 0.46f, 1.39f, 1.14f, 1.64f) + lineToRelative(4.31f, 1.6f) + curveToRelative(0.84f, 0.3f, 1.76f, 0.3f, 2.6f, 0.0f) + lineToRelative(4.3f, -1.6f) + curveToRelative(0.7f, -0.25f, 1.15f, -0.9f, 1.15f, -1.64f) + verticalLineToRelative(-5.67f) + curveToRelative(0.0f, -0.73f, -0.46f, -1.39f, -1.14f, -1.64f) + lineToRelative(-4.31f, -1.6f) + close() + moveTo(8.22f, 10.93f) + curveToRelative(0.5f, -0.18f, 1.06f, -0.18f, 1.56f, 0.0f) + lineToRelative(4.3f, 1.6f) + curveToRelative(0.1f, 0.03f, 0.17f, 0.13f, 0.17f, 0.23f) + verticalLineToRelative(5.67f) + curveToRelative(0.0f, 0.1f, -0.07f, 0.2f, -0.16f, 0.24f) + lineToRelative(-4.31f, 1.59f) + curveToRelative(-0.5f, 0.18f, -1.06f, 0.18f, -1.56f, 0.0f) + lineToRelative(-4.3f, -1.6f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.17f, -0.23f) + verticalLineToRelative(-5.67f) + curveToRelative(0.0f, -0.1f, 0.07f, -0.2f, 0.16f, -0.23f) + lineToRelative(4.31f, -1.6f) + close() + } + } + return _boxMultiple!! + } + +private var _boxMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxMultipleArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxMultipleArrowLeft.kt new file mode 100644 index 00000000..7774f964 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxMultipleArrowLeft.kt @@ -0,0 +1,101 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BoxMultipleArrowLeft: ImageVector + get() { + if (_boxMultipleArrowLeft != null) { + return _boxMultipleArrowLeft!! + } + _boxMultipleArrowLeft = fluentIcon(name = "Regular.BoxMultipleArrowLeft") { + fluentPath { + moveTo(15.78f, 3.74f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.56f, 0.0f) + lineToRelative(-4.3f, 1.59f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.17f, 0.23f) + verticalLineToRelative(2.8f) + curveToRelative(-0.5f, -0.08f, -1.0f, -0.08f, -1.5f, 0.0f) + verticalLineToRelative(-2.8f) + curveToRelative(0.0f, -0.73f, 0.46f, -1.38f, 1.14f, -1.64f) + lineToRelative(4.31f, -1.59f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.6f, 0.0f) + lineToRelative(4.3f, 1.6f) + curveToRelative(0.7f, 0.25f, 1.15f, 0.9f, 1.15f, 1.63f) + verticalLineToRelative(7.02f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.5f, -0.97f) + lineTo(20.25f, 5.56f) + curveToRelative(0.0f, -0.1f, -0.07f, -0.2f, -0.16f, -0.23f) + lineToRelative(-4.31f, -1.6f) + close() + moveTo(14.61f, 11.12f) + curveToRelative(0.2f, 0.08f, 0.38f, 0.18f, 0.53f, 0.32f) + curveToRelative(-0.57f, 0.22f, -1.1f, 0.52f, -1.58f, 0.9f) + lineToRelative(-3.78f, -1.4f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.56f, 0.0f) + lineToRelative(-4.3f, 1.59f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.17f, 0.23f) + verticalLineToRelative(5.67f) + curveToRelative(0.0f, 0.1f, 0.07f, 0.2f, 0.16f, 0.24f) + lineToRelative(4.31f, 1.59f) + curveToRelative(0.5f, 0.18f, 1.06f, 0.18f, 1.56f, 0.0f) + lineToRelative(1.6f, -0.59f) + curveToRelative(0.16f, 0.48f, 0.39f, 0.93f, 0.66f, 1.35f) + lineToRelative(-1.74f, 0.65f) + curveToRelative(-0.84f, 0.3f, -1.76f, 0.3f, -2.6f, 0.0f) + lineToRelative(-4.3f, -1.6f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.15f, -1.64f) + verticalLineToRelative(-5.67f) + curveToRelative(0.0f, -0.73f, 0.46f, -1.39f, 1.14f, -1.64f) + lineToRelative(4.31f, -1.6f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.6f, 0.0f) + lineToRelative(4.3f, 1.6f) + close() + moveTo(11.73f, 13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.73f, 0.14f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -0.92f, 1.51f) + lineToRelative(-1.79f, 0.62f) + verticalLineToRelative(2.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.7f) + lineToRelative(-2.48f, -0.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.49f, -1.42f) + lineTo(9.0f, 14.2f) + lineToRelative(2.73f, -0.95f) + close() + moveTo(11.77f, 7.67f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.49f, -1.42f) + lineToRelative(2.66f, 0.92f) + curveToRelative(0.05f, 0.02f, 0.1f, 0.02f, 0.16f, 0.0f) + lineToRelative(2.65f, -0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.5f, 1.42f) + lineToRelative(-2.66f, 0.92f) + curveToRelative(-0.37f, 0.12f, -0.77f, 0.12f, -1.14f, 0.0f) + lineToRelative(-2.66f, -0.92f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.5f, 18.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) + horizontalLineToRelative(-4.8f) + lineToRelative(1.65f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineTo(15.71f, 18.0f) + horizontalLineToRelative(4.79f) + close() + } + } + return _boxMultipleArrowLeft!! + } + +private var _boxMultipleArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxMultipleArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxMultipleArrowRight.kt new file mode 100644 index 00000000..60a7c94b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxMultipleArrowRight.kt @@ -0,0 +1,101 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BoxMultipleArrowRight: ImageVector + get() { + if (_boxMultipleArrowRight != null) { + return _boxMultipleArrowRight!! + } + _boxMultipleArrowRight = fluentIcon(name = "Regular.BoxMultipleArrowRight") { + fluentPath { + moveTo(15.78f, 3.74f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.56f, 0.0f) + lineToRelative(-4.3f, 1.59f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.17f, 0.23f) + verticalLineToRelative(2.8f) + curveToRelative(-0.5f, -0.08f, -1.0f, -0.08f, -1.5f, 0.0f) + verticalLineToRelative(-2.8f) + curveToRelative(0.0f, -0.73f, 0.46f, -1.38f, 1.14f, -1.64f) + lineToRelative(4.31f, -1.59f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.6f, 0.0f) + lineToRelative(4.3f, 1.6f) + curveToRelative(0.7f, 0.25f, 1.15f, 0.9f, 1.15f, 1.63f) + verticalLineToRelative(7.02f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.5f, -0.97f) + lineTo(20.25f, 5.56f) + curveToRelative(0.0f, -0.1f, -0.07f, -0.2f, -0.16f, -0.23f) + lineToRelative(-4.31f, -1.6f) + close() + moveTo(14.61f, 11.12f) + curveToRelative(0.2f, 0.08f, 0.38f, 0.18f, 0.53f, 0.32f) + curveToRelative(-0.57f, 0.22f, -1.1f, 0.52f, -1.58f, 0.9f) + lineToRelative(-3.78f, -1.4f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.56f, 0.0f) + lineToRelative(-4.3f, 1.59f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.17f, 0.23f) + verticalLineToRelative(5.67f) + curveToRelative(0.0f, 0.1f, 0.07f, 0.2f, 0.16f, 0.24f) + lineToRelative(4.31f, 1.59f) + curveToRelative(0.5f, 0.18f, 1.06f, 0.18f, 1.56f, 0.0f) + lineToRelative(1.6f, -0.59f) + curveToRelative(0.16f, 0.48f, 0.39f, 0.93f, 0.66f, 1.35f) + lineToRelative(-1.74f, 0.65f) + curveToRelative(-0.84f, 0.3f, -1.76f, 0.3f, -2.6f, 0.0f) + lineToRelative(-4.3f, -1.6f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.15f, -1.64f) + verticalLineToRelative(-5.67f) + curveToRelative(0.0f, -0.73f, 0.46f, -1.39f, 1.14f, -1.64f) + lineToRelative(4.31f, -1.6f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.6f, 0.0f) + lineToRelative(4.3f, 1.6f) + close() + moveTo(11.73f, 13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.73f, 0.14f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -0.92f, 1.51f) + lineToRelative(-1.79f, 0.62f) + verticalLineToRelative(2.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.7f) + lineToRelative(-2.48f, -0.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.49f, -1.42f) + lineTo(9.0f, 14.2f) + lineToRelative(2.73f, -0.95f) + close() + moveTo(11.77f, 7.67f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.49f, -1.42f) + lineToRelative(2.66f, 0.92f) + curveToRelative(0.05f, 0.02f, 0.1f, 0.02f, 0.16f, 0.0f) + lineToRelative(2.65f, -0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.5f, 1.42f) + lineToRelative(-2.66f, 0.92f) + curveToRelative(-0.37f, 0.12f, -0.77f, 0.12f, -1.14f, 0.0f) + lineToRelative(-2.66f, -0.92f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(19.29f, 17.0f) + lineTo(14.5f, 17.0f) + close() + } + } + return _boxMultipleArrowRight!! + } + +private var _boxMultipleArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxMultipleCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxMultipleCheckmark.kt new file mode 100644 index 00000000..af4b6f6b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxMultipleCheckmark.kt @@ -0,0 +1,99 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BoxMultipleCheckmark: ImageVector + get() { + if (_boxMultipleCheckmark != null) { + return _boxMultipleCheckmark!! + } + _boxMultipleCheckmark = fluentIcon(name = "Regular.BoxMultipleCheckmark") { + fluentPath { + moveTo(15.78f, 3.74f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.56f, 0.0f) + lineToRelative(-4.3f, 1.59f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.17f, 0.23f) + verticalLineToRelative(2.8f) + curveToRelative(-0.5f, -0.08f, -1.0f, -0.08f, -1.5f, 0.0f) + verticalLineToRelative(-2.8f) + curveToRelative(0.0f, -0.73f, 0.46f, -1.38f, 1.14f, -1.64f) + lineToRelative(4.31f, -1.59f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.6f, 0.0f) + lineToRelative(4.3f, 1.6f) + curveToRelative(0.7f, 0.25f, 1.15f, 0.9f, 1.15f, 1.63f) + verticalLineToRelative(7.02f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.5f, -0.97f) + lineTo(20.25f, 5.56f) + curveToRelative(0.0f, -0.1f, -0.07f, -0.2f, -0.16f, -0.23f) + lineToRelative(-4.31f, -1.6f) + close() + moveTo(14.61f, 11.12f) + curveToRelative(0.2f, 0.08f, 0.38f, 0.18f, 0.53f, 0.32f) + curveToRelative(-0.57f, 0.22f, -1.1f, 0.52f, -1.58f, 0.9f) + lineToRelative(-3.78f, -1.4f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.56f, 0.0f) + lineToRelative(-4.3f, 1.59f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.17f, 0.23f) + verticalLineToRelative(5.67f) + curveToRelative(0.0f, 0.1f, 0.07f, 0.2f, 0.16f, 0.24f) + lineToRelative(4.31f, 1.59f) + curveToRelative(0.5f, 0.18f, 1.06f, 0.18f, 1.56f, 0.0f) + lineToRelative(1.6f, -0.59f) + curveToRelative(0.16f, 0.48f, 0.39f, 0.93f, 0.66f, 1.35f) + lineToRelative(-1.74f, 0.65f) + curveToRelative(-0.84f, 0.3f, -1.76f, 0.3f, -2.6f, 0.0f) + lineToRelative(-4.3f, -1.6f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.15f, -1.64f) + verticalLineToRelative(-5.67f) + curveToRelative(0.0f, -0.73f, 0.46f, -1.39f, 1.14f, -1.64f) + lineToRelative(4.31f, -1.6f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.6f, 0.0f) + lineToRelative(4.3f, 1.6f) + close() + moveTo(11.73f, 13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.73f, 0.14f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -0.92f, 1.51f) + lineToRelative(-1.79f, 0.62f) + verticalLineToRelative(2.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.7f) + lineToRelative(-2.48f, -0.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.49f, -1.42f) + lineTo(9.0f, 14.2f) + lineToRelative(2.73f, -0.95f) + close() + moveTo(11.77f, 7.67f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.49f, -1.42f) + lineToRelative(2.66f, 0.92f) + curveToRelative(0.05f, 0.02f, 0.1f, 0.02f, 0.16f, 0.0f) + lineToRelative(2.65f, -0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.5f, 1.42f) + lineToRelative(-2.66f, 0.92f) + curveToRelative(-0.37f, 0.12f, -0.77f, 0.12f, -1.14f, 0.0f) + lineToRelative(-2.66f, -0.92f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-3.65f, 3.64f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _boxMultipleCheckmark!! + } + +private var _boxMultipleCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxMultipleSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxMultipleSearch.kt new file mode 100644 index 00000000..b4ca462d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxMultipleSearch.kt @@ -0,0 +1,96 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BoxMultipleSearch: ImageVector + get() { + if (_boxMultipleSearch != null) { + return _boxMultipleSearch!! + } + _boxMultipleSearch = fluentIcon(name = "Regular.BoxMultipleSearch") { + fluentPath { + moveTo(14.22f, 3.74f) + curveToRelative(0.5f, -0.19f, 1.06f, -0.19f, 1.56f, 0.0f) + lineToRelative(4.3f, 1.59f) + curveToRelative(0.1f, 0.04f, 0.17f, 0.13f, 0.17f, 0.23f) + verticalLineToRelative(6.92f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 1.5f, 2.37f) + lineTo(21.75f, 5.56f) + curveToRelative(0.0f, -0.73f, -0.46f, -1.38f, -1.14f, -1.64f) + lineTo(16.3f, 2.33f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.6f, 0.0f) + lineToRelative(-4.3f, 1.6f) + curveToRelative(-0.7f, 0.25f, -1.15f, 0.9f, -1.15f, 1.63f) + verticalLineToRelative(2.8f) + curveToRelative(0.5f, -0.08f, 1.0f, -0.08f, 1.5f, 0.0f) + verticalLineToRelative(-2.8f) + curveToRelative(0.0f, -0.1f, 0.07f, -0.2f, 0.16f, -0.23f) + lineToRelative(4.31f, -1.6f) + close() + moveTo(14.87f, 11.24f) + arcToRelative(1.74f, 1.74f, 0.0f, false, false, -0.26f, -0.12f) + lineToRelative(-4.31f, -1.6f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.6f, 0.0f) + lineToRelative(-4.3f, 1.6f) + curveToRelative(-0.7f, 0.25f, -1.15f, 0.91f, -1.15f, 1.64f) + verticalLineToRelative(5.67f) + curveToRelative(0.0f, 0.73f, 0.46f, 1.39f, 1.14f, 1.64f) + lineToRelative(4.31f, 1.6f) + curveToRelative(0.84f, 0.3f, 1.76f, 0.3f, 2.6f, 0.0f) + lineToRelative(2.64f, -0.98f) + curveToRelative(-0.41f, -0.35f, -0.77f, -0.75f, -1.06f, -1.2f) + lineToRelative(-2.1f, 0.77f) + curveToRelative(-0.5f, 0.18f, -1.06f, 0.18f, -1.56f, 0.0f) + lineToRelative(-4.3f, -1.6f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.17f, -0.23f) + verticalLineToRelative(-5.67f) + curveToRelative(0.0f, -0.1f, 0.07f, -0.2f, 0.16f, -0.23f) + lineToRelative(4.31f, -1.6f) + curveToRelative(0.5f, -0.18f, 1.06f, -0.18f, 1.56f, 0.0f) + lineToRelative(3.33f, 1.24f) + curveToRelative(0.52f, -0.41f, 1.12f, -0.73f, 1.76f, -0.93f) + close() + moveTo(12.09f, 13.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.36f, 0.03f) + lineTo(9.0f, 14.2f) + lineToRelative(-2.74f, -0.95f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.5f, 1.42f) + lineToRelative(2.49f, 0.85f) + verticalLineToRelative(2.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.7f) + lineToRelative(1.45f, -0.5f) + curveToRelative(0.18f, -0.66f, 0.49f, -1.27f, 0.89f, -1.8f) + close() + moveTo(11.31f, 6.72f) + curveToRelative(-0.14f, 0.38f, 0.07f, 0.81f, 0.46f, 0.95f) + lineToRelative(2.66f, 0.92f) + curveToRelative(0.37f, 0.12f, 0.77f, 0.12f, 1.14f, 0.0f) + lineToRelative(2.65f, -0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.49f, -1.42f) + lineToRelative(-2.65f, 0.92f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.16f, 0.0f) + lineToRelative(-2.66f, -0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.95f, 0.46f) + close() + moveTo(20.17f, 19.11f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(2.61f, 2.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.05f) + lineToRelative(-2.61f, -2.61f) + close() + moveTo(19.5f, 16.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) + close() + } + } + return _boxMultipleSearch!! + } + +private var _boxMultipleSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxSearch.kt new file mode 100644 index 00000000..b3d45814 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxSearch.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BoxSearch: ImageVector + get() { + if (_boxSearch != null) { + return _boxSearch!! + } + _boxSearch = fluentIcon(name = "Regular.BoxSearch") { + fluentPath { + moveTo(13.4f, 2.51f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.8f, 0.0f) + lineTo(3.1f, 5.55f) + curveToRelative(-0.67f, 0.27f, -1.1f, 0.91f, -1.1f, 1.62f) + verticalLineToRelative(4.43f) + curveToRelative(0.47f, -0.24f, 0.97f, -0.41f, 1.5f, -0.5f) + lineTo(3.5f, 7.74f) + lineToRelative(7.75f, 3.01f) + verticalLineToRelative(10.02f) + lineToRelative(0.24f, 0.23f) + curveToRelative(0.21f, 0.22f, 0.36f, 0.48f, 0.44f, 0.75f) + curveToRelative(0.5f, 0.01f, 1.0f, -0.08f, 1.48f, -0.27f) + lineToRelative(7.5f, -3.04f) + curveToRelative(0.66f, -0.27f, 1.09f, -0.91f, 1.09f, -1.62f) + lineTo(22.0f, 7.17f) + curveToRelative(0.0f, -0.7f, -0.43f, -1.35f, -1.1f, -1.62f) + lineToRelative(-7.5f, -3.04f) + close() + moveTo(11.15f, 3.91f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 1.7f, 0.0f) + lineToRelative(6.59f, 2.66f) + lineToRelative(-2.67f, 1.04f) + lineToRelative(-7.53f, -2.93f) + lineToRelative(1.91f, -0.78f) + close() + moveTo(7.21f, 5.5f) + lineToRelative(7.48f, 2.9f) + lineTo(12.0f, 9.46f) + lineTo(4.6f, 6.56f) + lineTo(7.21f, 5.5f) + close() + moveTo(20.34f, 17.06f) + lineTo(12.84f, 20.1f) + lineTo(12.75f, 20.13f) + verticalLineToRelative(-9.37f) + lineToRelative(7.75f, -2.99f) + verticalLineToRelative(9.06f) + curveToRelative(0.0f, 0.1f, -0.06f, 0.19f, -0.16f, 0.23f) + close() + moveTo(4.5f, 21.0f) + curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) + lineToRelative(2.62f, 2.61f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.61f, -2.61f) + arcTo(4.5f, 4.5f, 0.0f, true, false, 4.5f, 21.0f) + close() + moveTo(4.5f, 19.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) + close() + } + } + return _boxSearch!! + } + +private var _boxSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxToolbox.kt new file mode 100644 index 00000000..374307dc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BoxToolbox.kt @@ -0,0 +1,104 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BoxToolbox: ImageVector + get() { + if (_boxToolbox != null) { + return _boxToolbox!! + } + _boxToolbox = fluentIcon(name = "Regular.BoxToolbox") { + fluentPath { + moveTo(13.4f, 2.51f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.8f, 0.0f) + lineTo(3.1f, 5.55f) + curveToRelative(-0.67f, 0.27f, -1.1f, 0.91f, -1.1f, 1.62f) + verticalLineToRelative(9.66f) + curveToRelative(0.0f, 0.71f, 0.43f, 1.35f, 1.1f, 1.62f) + lineToRelative(7.5f, 3.04f) + lineToRelative(0.4f, 0.14f) + lineTo(11.0f, 20.04f) + lineToRelative(-7.34f, -2.98f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.16f, -0.23f) + lineTo(3.5f, 7.75f) + lineToRelative(7.75f, 3.01f) + verticalLineToRelative(4.65f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 1.5f, -1.3f) + verticalLineToRelative(-3.34f) + lineToRelative(7.75f, -3.0f) + verticalLineToRelative(3.78f) + curveTo(21.39f, 12.0f, 22.0f, 12.93f, 22.0f, 14.0f) + lineTo(22.0f, 7.17f) + curveToRelative(0.0f, -0.7f, -0.43f, -1.35f, -1.1f, -1.62f) + lineToRelative(-7.5f, -3.04f) + close() + moveTo(11.15f, 3.91f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 1.7f, 0.0f) + lineToRelative(6.59f, 2.67f) + lineToRelative(-2.67f, 1.03f) + lineToRelative(-7.53f, -2.93f) + lineToRelative(1.91f, -0.78f) + close() + moveTo(7.21f, 5.5f) + lineToRelative(7.48f, 2.9f) + lineTo(12.0f, 9.46f) + lineTo(4.6f, 6.56f) + lineTo(7.21f, 5.5f) + close() + moveTo(14.0f, 15.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + lineTo(12.0f, 18.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(16.0f, 18.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(20.5f, 18.0f) + lineTo(23.0f, 18.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(21.0f, 15.0f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(1.0f) + close() + moveTo(15.5f, 14.0f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(12.0f, 21.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + lineTo(23.0f, 19.5f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + close() + } + } + return _boxToolbox!! + } + +private var _boxToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Braces.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Braces.kt new file mode 100644 index 00000000..96a379bc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Braces.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Braces: ImageVector + get() { + if (_braces != null) { + return _braces!! + } + _braces = fluentIcon(name = "Regular.Braces") { + fluentPath { + moveTo(4.5f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 7.25f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + curveTo(6.56f, 4.5f, 6.0f, 5.06f, 6.0f, 5.75f) + verticalLineToRelative(4.3f) + curveToRelative(0.0f, 0.75f, -0.3f, 1.45f, -0.8f, 1.95f) + curveToRelative(0.5f, 0.5f, 0.8f, 1.2f, 0.8f, 1.94f) + verticalLineToRelative(4.31f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, -2.75f) + verticalLineToRelative(-4.3f) + curveToRelative(0.0f, -0.55f, -0.34f, -1.02f, -0.85f, -1.2f) + lineToRelative(-0.14f, -0.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.42f) + lineToRelative(0.14f, -0.05f) + curveToRelative(0.5f, -0.17f, 0.85f, -0.64f, 0.85f, -1.18f) + lineTo(4.5f, 5.75f) + close() + moveTo(19.5f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 16.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(4.3f) + curveToRelative(0.0f, 0.75f, 0.3f, 1.45f, 0.8f, 1.95f) + curveToRelative(-0.5f, 0.5f, -0.8f, 1.2f, -0.8f, 1.94f) + verticalLineToRelative(4.31f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, -2.75f) + verticalLineToRelative(-4.3f) + curveToRelative(0.0f, -0.55f, 0.34f, -1.02f, 0.85f, -1.2f) + lineToRelative(0.14f, -0.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.42f) + lineToRelative(-0.14f, -0.05f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.85f, -1.18f) + lineTo(19.5f, 5.75f) + close() + } + } + return _braces!! + } + +private var _braces: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BracesVariable.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BracesVariable.kt new file mode 100644 index 00000000..ad0f27f0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BracesVariable.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BracesVariable: ImageVector + get() { + if (_bracesVariable != null) { + return _bracesVariable!! + } + _bracesVariable = fluentIcon(name = "Regular.BracesVariable") { + fluentPath { + moveTo(3.5f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 6.25f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + curveTo(5.56f, 4.5f, 5.0f, 5.06f, 5.0f, 5.75f) + verticalLineToRelative(4.3f) + curveToRelative(0.0f, 0.75f, -0.3f, 1.45f, -0.8f, 1.95f) + curveToRelative(0.5f, 0.5f, 0.8f, 1.2f, 0.8f, 1.94f) + verticalLineToRelative(4.31f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, -2.75f) + verticalLineToRelative(-4.3f) + curveToRelative(0.0f, -0.55f, -0.34f, -1.02f, -0.85f, -1.2f) + lineToRelative(-0.14f, -0.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.42f) + lineToRelative(0.14f, -0.05f) + curveToRelative(0.5f, -0.17f, 0.85f, -0.64f, 0.85f, -1.18f) + lineTo(3.5f, 5.75f) + close() + moveTo(20.5f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 17.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(4.3f) + curveToRelative(0.0f, 0.75f, 0.3f, 1.45f, 0.8f, 1.95f) + curveToRelative(-0.5f, 0.5f, -0.8f, 1.2f, -0.8f, 1.94f) + verticalLineToRelative(4.31f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, -2.75f) + verticalLineToRelative(-4.3f) + curveToRelative(0.0f, -0.55f, 0.34f, -1.02f, 0.85f, -1.2f) + lineToRelative(0.14f, -0.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.42f) + lineToRelative(-0.14f, -0.05f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.85f, -1.18f) + lineTo(20.5f, 5.75f) + close() + moveTo(9.1f, 7.04f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.2f, 0.92f) + lineTo(11.06f, 12.0f) + lineToRelative(-3.14f, 4.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.18f, 0.92f) + lineTo(12.0f, 13.22f) + lineToRelative(2.9f, 3.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.2f, -0.92f) + lineTo(12.94f, 12.0f) + lineToRelative(3.14f, -4.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.18f, -0.92f) + lineTo(12.0f, 10.78f) + lineTo(9.1f, 7.04f) + close() + } + } + return _bracesVariable!! + } + +private var _bracesVariable: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BrainCircuit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BrainCircuit.kt new file mode 100644 index 00000000..e9724097 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BrainCircuit.kt @@ -0,0 +1,132 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BrainCircuit: ImageVector + get() { + if (_brainCircuit != null) { + return _brainCircuit!! + } + _brainCircuit = fluentIcon(name = "Regular.BrainCircuit") { + fluentPath { + moveTo(7.15f, 3.01f) + curveToRelative(0.83f, -0.65f, 1.92f, -1.0f, 3.0f, -1.0f) + arcToRelative(2.3f, 2.3f, 0.0f, false, true, 1.86f, 0.88f) + arcTo(2.3f, 2.3f, 0.0f, false, true, 13.86f, 2.0f) + curveToRelative(1.08f, 0.0f, 2.17f, 0.35f, 3.0f, 1.0f) + curveToRelative(0.65f, 0.5f, 1.16f, 1.2f, 1.35f, 2.04f) + curveToRelative(0.42f, 0.07f, 0.8f, 0.28f, 1.1f, 0.57f) + curveToRelative(0.48f, 0.45f, 0.82f, 1.1f, 1.04f, 1.77f) + curveToRelative(0.22f, 0.68f, 0.33f, 1.45f, 0.3f, 2.18f) + arcToRelative(4.9f, 4.9f, 0.0f, false, true, -0.18f, 1.13f) + lineToRelative(0.06f, 0.03f) + curveToRelative(0.37f, 0.17f, 0.67f, 0.45f, 0.9f, 0.8f) + curveToRelative(0.42f, 0.7f, 0.57f, 1.68f, 0.57f, 2.94f) + curveToRelative(0.0f, 1.44f, -0.55f, 2.42f, -1.26f, 3.03f) + curveToRelative(-0.41f, 0.35f, -0.87f, 0.57f, -1.27f, 0.7f) + curveToRelative(-0.14f, 0.68f, -0.49f, 1.46f, -1.02f, 2.13f) + arcTo(4.24f, 4.24f, 0.0f, false, true, 15.09f, 22.0f) + arcToRelative(3.9f, 3.9f, 0.0f, false, true, -2.77f, -1.31f) + arcToRelative(5.36f, 5.36f, 0.0f, false, true, -0.31f, -0.36f) + lineToRelative(-0.31f, 0.36f) + arcToRelative(3.9f, 3.9f, 0.0f, false, true, -2.78f, 1.3f) + arcToRelative(4.24f, 4.24f, 0.0f, false, true, -3.36f, -1.66f) + arcToRelative(5.17f, 5.17f, 0.0f, false, true, -1.01f, -2.14f) + curveToRelative(-0.4f, -0.12f, -0.86f, -0.34f, -1.27f, -0.69f) + arcTo(3.83f, 3.83f, 0.0f, false, true, 2.0f, 14.47f) + curveToRelative(0.0f, -1.26f, 0.15f, -2.25f, 0.58f, -2.93f) + arcToRelative(2.1f, 2.1f, 0.0f, false, true, 0.96f, -0.84f) + arcToRelative(4.9f, 4.9f, 0.0f, false, true, -0.18f, -1.13f) + curveToRelative(-0.03f, -0.73f, 0.08f, -1.5f, 0.3f, -2.18f) + arcTo(4.2f, 4.2f, 0.0f, false, true, 4.7f, 5.62f) + curveToRelative(0.3f, -0.29f, 0.68f, -0.5f, 1.1f, -0.57f) + curveTo(6.0f, 4.2f, 6.5f, 3.52f, 7.15f, 3.0f) + close() + moveTo(8.07f, 4.2f) + curveToRelative(-0.54f, 0.42f, -0.86f, 0.99f, -0.86f, 1.64f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.99f, 0.7f) + curveToRelative(-0.14f, -0.04f, -0.28f, -0.03f, -0.49f, 0.17f) + curveToRelative(-0.23f, 0.22f, -0.47f, 0.61f, -0.64f, 1.14f) + curveToRelative(-0.16f, 0.52f, -0.25f, 1.1f, -0.22f, 1.65f) + curveToRelative(0.02f, 0.56f, 0.16f, 1.02f, 0.37f, 1.33f) + lineToRelative(0.08f, 0.17f) + lineTo(6.4f, 11.0f) + curveToRelative(1.5f, 0.0f, 2.74f, 1.17f, 2.84f, 2.64f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -1.5f, 0.01f) + arcTo(1.35f, 1.35f, 0.0f, false, false, 6.4f, 12.5f) + lineTo(3.78f, 12.5f) + curveToRelative(-0.15f, 0.35f, -0.27f, 0.95f, -0.27f, 1.97f) + reflectiveCurveToRelative(0.38f, 1.58f, 0.74f, 1.9f) + curveToRelative(0.4f, 0.34f, 0.85f, 0.43f, 0.98f, 0.43f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.33f, 0.75f, 0.75f) + reflectiveCurveToRelative(0.23f, 1.18f, 0.76f, 1.84f) + curveToRelative(0.5f, 0.64f, 1.23f, 1.1f, 2.18f, 1.1f) + curveToRelative(0.64f, 0.0f, 1.23f, -0.35f, 1.7f, -0.84f) + arcToRelative(3.7f, 3.7f, 0.0f, false, false, 0.63f, -0.92f) + lineTo(11.25f, 9.25f) + horizontalLineToRelative(-0.9f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(0.9f) + lineTo(11.25f, 5.22f) + arcToRelative(2.06f, 2.06f, 0.0f, false, false, -0.02f, -0.3f) + curveToRelative(-0.03f, -0.19f, -0.07f, -0.43f, -0.16f, -0.67f) + curveToRelative(-0.1f, -0.24f, -0.2f, -0.43f, -0.35f, -0.55f) + arcToRelative(0.8f, 0.8f, 0.0f, false, false, -0.57f, -0.2f) + curveToRelative(-0.76f, 0.0f, -1.52f, 0.26f, -2.08f, 0.7f) + close() + moveTo(12.77f, 17.0f) + verticalLineToRelative(1.73f) + lineToRelative(0.11f, 0.23f) + curveToRelative(0.12f, 0.2f, 0.3f, 0.45f, 0.52f, 0.69f) + curveToRelative(0.47f, 0.49f, 1.06f, 0.85f, 1.7f, 0.85f) + curveToRelative(0.95f, 0.0f, 1.67f, -0.47f, 2.18f, -1.1f) + curveToRelative(0.53f, -0.67f, 0.76f, -1.43f, 0.76f, -1.85f) + curveToRelative(0.0f, -0.42f, 0.33f, -0.75f, 0.75f, -0.75f) + curveToRelative(0.13f, 0.0f, 0.57f, -0.1f, 0.97f, -0.44f) + curveToRelative(0.37f, -0.31f, 0.74f, -0.87f, 0.74f, -1.9f) + curveToRelative(0.0f, -1.2f, -0.16f, -1.82f, -0.35f, -2.13f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.26f, -0.25f) + curveToRelative(-0.1f, -0.04f, -0.25f, -0.08f, -0.49f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.62f, -1.17f) + curveToRelative(0.2f, -0.3f, 0.34f, -0.77f, 0.36f, -1.33f) + arcToRelative(4.84f, 4.84f, 0.0f, false, false, -0.22f, -1.65f) + curveToRelative(-0.17f, -0.53f, -0.4f, -0.92f, -0.64f, -1.14f) + curveToRelative(-0.2f, -0.2f, -0.35f, -0.2f, -0.49f, -0.16f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, -0.71f) + curveToRelative(0.0f, -0.65f, -0.32f, -1.22f, -0.87f, -1.64f) + arcToRelative(3.45f, 3.45f, 0.0f, false, false, -2.08f, -0.7f) + arcToRelative(0.8f, 0.8f, 0.0f, false, false, -0.57f, 0.2f) + curveToRelative(-0.14f, 0.12f, -0.25f, 0.31f, -0.34f, 0.55f) + arcToRelative(3.06f, 3.06f, 0.0f, false, false, -0.19f, 0.96f) + lineTo(12.76f, 15.5f) + horizontalLineToRelative(0.64f) + curveToRelative(0.75f, 0.0f, 1.35f, -0.6f, 1.35f, -1.35f) + verticalLineToRelative(-1.8f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 1.5f, 0.0f) + verticalLineToRelative(1.8f) + arcTo(2.85f, 2.85f, 0.0f, false, true, 13.4f, 17.0f) + horizontalLineToRelative(-0.64f) + close() + moveTo(8.5f, 8.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + close() + moveTo(8.0f, 15.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + close() + moveTo(15.0f, 10.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + close() + } + } + return _brainCircuit!! + } + +private var _brainCircuit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Branch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Branch.kt new file mode 100644 index 00000000..7edaede9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Branch.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Branch: ImageVector + get() { + if (_branch != null) { + return _branch!! + } + _branch = fluentIcon(name = "Regular.Branch") { + fluentPath { + moveTo(4.0f, 5.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 4.49f, 3.36f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 5.26f, 3.89f) + horizontalLineToRelative(0.33f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.33f) + arcToRelative(6.99f, 6.99f, 0.0f, false, true, -5.5f, -2.67f) + verticalLineToRelative(3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, -1.5f, 0.0f) + lineTo(6.75f, 8.92f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 4.0f, 5.5f) + close() + moveTo(7.5f, 3.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, -4.0f) + close() + moveTo(7.5f, 16.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, -4.0f) + close() + moveTo(15.5f, 13.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -4.0f, 0.0f) + close() + } + } + return _branch!! + } + +private var _branch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BranchCompare.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BranchCompare.kt new file mode 100644 index 00000000..b3287fc8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BranchCompare.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BranchCompare: ImageVector + get() { + if (_branchCompare != null) { + return _branchCompare!! + } + _branchCompare = fluentIcon(name = "Regular.BranchCompare") { + fluentPath { + moveTo(9.0f, 5.5f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.0f, 3.46f) + lineTo(6.0f, 15.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) + horizontalLineToRelative(2.69f) + lineToRelative(-0.97f, -0.97f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(2.25f, 2.25f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-2.25f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(0.97f, -0.97f) + lineTo(9.0f, 19.5f) + arcTo(4.5f, 4.5f, 0.0f, false, true, 4.5f, 15.0f) + lineTo(4.5f, 8.86f) + arcTo(3.5f, 3.5f, 0.0f, true, true, 9.0f, 5.5f) + close() + moveTo(7.5f, 5.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 4.0f, 0.0f) + close() + moveTo(22.0f, 18.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, -4.0f, -3.46f) + lineTo(18.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + horizontalLineToRelative(-1.94f) + lineToRelative(0.97f, 0.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineToRelative(-2.25f, -2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(2.25f, -2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-0.97f, 0.97f) + lineTo(15.0f, 4.5f) + arcTo(4.5f, 4.5f, 0.0f, false, true, 19.5f, 9.0f) + verticalLineToRelative(6.14f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 22.0f, 18.5f) + close() + moveTo(20.5f, 18.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 4.0f, 0.0f) + close() + } + } + return _branchCompare!! + } + +private var _branchCompare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BranchFork.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BranchFork.kt new file mode 100644 index 00000000..cb55a0d6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BranchFork.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BranchFork: ImageVector + get() { + if (_branchFork != null) { + return _branchFork!! + } + _branchFork = fluentIcon(name = "Regular.BranchFork") { + fluentPath { + moveTo(11.0f, 5.5f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.0f, 3.46f) + verticalLineToRelative(2.54f) + horizontalLineToRelative(6.25f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-0.4f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 1.5f, 0.11f) + verticalLineToRelative(0.29f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 14.25f, 13.0f) + lineTo(8.0f, 13.0f) + verticalLineToRelative(2.04f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, -1.5f, 0.1f) + lineTo(6.5f, 8.86f) + arcTo(3.5f, 3.5f, 0.0f, true, true, 11.0f, 5.5f) + close() + moveTo(7.5f, 7.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) + close() + moveTo(17.5f, 7.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) + close() + moveTo(9.5f, 18.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 4.0f, 0.0f) + close() + } + } + return _branchFork!! + } + +private var _branchFork: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BranchForkHint.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BranchForkHint.kt new file mode 100644 index 00000000..05f841a7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BranchForkHint.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BranchForkHint: ImageVector + get() { + if (_branchForkHint != null) { + return _branchForkHint!! + } + _branchForkHint = fluentIcon(name = "Regular.BranchForkHint") { + fluentPath { + moveTo(6.5f, 2.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -1.0f, 6.86f) + verticalLineToRelative(5.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(7.0f, 13.0f) + horizontalLineToRelative(6.25f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 17.0f, 9.25f) + verticalLineToRelative(-0.29f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, -1.5f, -0.1f) + verticalLineToRelative(0.39f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(7.0f, 11.5f) + lineTo(7.0f, 8.96f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 6.5f, 2.0f) + close() + moveTo(4.5f, 5.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -4.0f, 0.0f) + close() + moveTo(16.5f, 3.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) + close() + moveTo(5.34f, 16.88f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.87f, -1.22f) + arcToRelative(3.52f, 3.52f, 0.0f, false, false, -1.23f, 1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.4f, 0.53f) + arcToRelative(1.99f, 1.99f, 0.0f, false, true, 0.7f, -0.9f) + close() + moveTo(8.54f, 15.66f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.88f, 1.22f) + arcToRelative(2.01f, 2.01f, 0.0f, false, true, 0.7f, 0.91f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.4f, -0.54f) + arcToRelative(3.49f, 3.49f, 0.0f, false, false, -1.23f, -1.59f) + close() + moveTo(4.78f, 19.52f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.3f, 0.76f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 1.48f, 1.37f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.66f, -1.35f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.84f, -0.78f) + close() + moveTo(9.52f, 20.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.3f, -0.76f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.84f, 0.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.66f, 1.35f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 1.48f, -1.37f) + close() + } + } + return _branchForkHint!! + } + +private var _branchForkHint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BranchForkLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BranchForkLink.kt new file mode 100644 index 00000000..5501b1ed --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BranchForkLink.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BranchForkLink: ImageVector + get() { + if (_branchForkLink != null) { + return _branchForkLink!! + } + _branchForkLink = fluentIcon(name = "Regular.BranchForkLink") { + fluentPath { + moveTo(6.0f, 8.96f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, -1.5f, -0.1f) + verticalLineToRelative(6.28f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 1.5f, -0.1f) + lineTo(6.0f, 13.0f) + horizontalLineToRelative(6.25f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 16.0f, 9.25f) + verticalLineToRelative(-0.29f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, -1.5f, -0.1f) + verticalLineToRelative(0.39f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(6.0f, 11.5f) + lineTo(6.0f, 8.96f) + close() + moveTo(7.5f, 5.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(17.5f, 5.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(5.5f, 16.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) + close() + moveTo(23.0f, 18.75f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 19.25f, 15.0f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + verticalLineToRelative(-0.01f) + horizontalLineToRelative(0.2f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 18.74f) + close() + moveTo(16.5f, 15.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-0.2f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(20.0f, 18.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + } + } + return _branchForkLink!! + } + +private var _branchForkLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BreakoutRoom.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BreakoutRoom.kt new file mode 100644 index 00000000..251d7022 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BreakoutRoom.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BreakoutRoom: ImageVector + get() { + if (_breakoutRoom != null) { + return _breakoutRoom!! + } + _breakoutRoom = fluentIcon(name = "Regular.BreakoutRoom") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-3.54f) + curveToRelative(0.41f, -0.43f, 0.74f, -0.94f, 0.96f, -1.5f) + horizontalLineToRelative(2.58f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineTo(6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineTo(6.25f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(2.58f) + curveToRelative(-0.56f, 0.22f, -1.07f, 0.55f, -1.5f, 0.96f) + verticalLineTo(6.25f) + close() + moveTo(13.49f, 19.5f) + curveToRelative(-0.58f, 0.9f, -1.59f, 1.5f, -2.74f, 1.5f) + horizontalLineToRelative(-4.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + verticalLineToRelative(-4.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 6.25f, 10.0f) + horizontalLineToRelative(4.5f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.64f, -0.19f, 1.24f, -0.51f, 1.75f) + close() + moveTo(4.5f, 13.25f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(4.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + close() + } + } + return _breakoutRoom!! + } + +private var _breakoutRoom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Briefcase.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Briefcase.kt new file mode 100644 index 00000000..d3d7d710 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Briefcase.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Briefcase: ImageVector + get() { + if (_briefcase != null) { + return _briefcase!! + } + _briefcase = fluentIcon(name = "Regular.Briefcase") { + fluentPath { + moveTo(8.75f, 3.0f) + horizontalLineToRelative(6.5f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + lineTo(16.0f, 7.0f) + horizontalLineToRelative(1.75f) + curveTo(19.55f, 7.0f, 21.0f, 8.46f, 21.0f, 10.25f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 16.75f) + verticalLineToRelative(-6.5f) + curveTo(3.0f, 8.45f, 4.46f, 7.0f, 6.25f, 7.0f) + lineTo(8.0f, 7.0f) + lineTo(8.0f, 3.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(6.5f) + horizontalLineToRelative(-6.5f) + close() + moveTo(17.75f, 8.5f) + lineTo(6.25f, 8.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-6.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(14.5f, 4.5f) + horizontalLineToRelative(-5.0f) + lineTo(9.5f, 7.0f) + horizontalLineToRelative(5.0f) + lineTo(14.5f, 4.5f) + close() + } + } + return _briefcase!! + } + +private var _briefcase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BriefcaseMedical.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BriefcaseMedical.kt new file mode 100644 index 00000000..345e7509 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BriefcaseMedical.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BriefcaseMedical: ImageVector + get() { + if (_briefcaseMedical != null) { + return _briefcaseMedical!! + } + _briefcaseMedical = fluentIcon(name = "Regular.BriefcaseMedical") { + fluentPath { + moveTo(11.5f, 12.5f) + verticalLineToRelative(-1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(1.75f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(13.0f, 14.0f) + verticalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(11.5f, 14.0f) + lineTo(9.75f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.75f) + close() + moveTo(8.75f, 3.0f) + horizontalLineToRelative(6.5f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + lineTo(16.0f, 7.0f) + horizontalLineToRelative(1.75f) + curveTo(19.55f, 7.0f, 21.0f, 8.46f, 21.0f, 10.25f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 16.75f) + verticalLineToRelative(-6.5f) + curveTo(3.0f, 8.45f, 4.46f, 7.0f, 6.25f, 7.0f) + lineTo(8.0f, 7.0f) + lineTo(8.0f, 3.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + close() + moveTo(17.75f, 8.5f) + lineTo(6.25f, 8.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-6.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(14.5f, 4.5f) + horizontalLineToRelative(-5.0f) + lineTo(9.5f, 7.0f) + horizontalLineToRelative(5.0f) + lineTo(14.5f, 4.5f) + close() + } + } + return _briefcaseMedical!! + } + +private var _briefcaseMedical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BriefcaseOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BriefcaseOff.kt new file mode 100644 index 00000000..be646990 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BriefcaseOff.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BriefcaseOff: ImageVector + get() { + if (_briefcaseOff != null) { + return _briefcaseOff!! + } + _briefcaseOff = fluentIcon(name = "Regular.BriefcaseOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(3.73f, 3.73f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 10.25f) + verticalLineToRelative(6.5f) + curveTo(3.0f, 18.55f, 4.46f, 20.0f, 6.25f, 20.0f) + horizontalLineToRelative(11.5f) + curveToRelative(0.36f, 0.0f, 0.7f, -0.06f, 1.02f, -0.16f) + lineToRelative(1.95f, 1.94f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(17.44f, 18.5f) + lineTo(6.25f, 18.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-6.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(1.19f) + lineToRelative(10.0f, 10.0f) + close() + moveTo(19.5f, 10.25f) + verticalLineToRelative(6.07f) + lineToRelative(1.36f, 1.36f) + curveToRelative(0.1f, -0.3f, 0.14f, -0.6f, 0.14f, -0.93f) + verticalLineToRelative(-6.5f) + curveTo(21.0f, 8.45f, 19.55f, 7.0f, 17.75f, 7.0f) + lineTo(16.0f, 7.0f) + lineTo(16.0f, 3.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) + horizontalLineToRelative(-6.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + verticalLineToRelative(1.07f) + lineToRelative(1.5f, 1.5f) + lineTo(9.5f, 4.5f) + horizontalLineToRelative(5.0f) + lineTo(14.5f, 7.0f) + horizontalLineToRelative(-4.32f) + lineToRelative(1.5f, 1.5f) + horizontalLineToRelative(6.07f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + close() + } + } + return _briefcaseOff!! + } + +private var _briefcaseOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BrightnessHigh.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BrightnessHigh.kt new file mode 100644 index 00000000..9941a543 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BrightnessHigh.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BrightnessHigh: ImageVector + get() { + if (_brightnessHigh != null) { + return _brightnessHigh!! + } + _brightnessHigh = fluentIcon(name = "Regular.BrightnessHigh") { + fluentPath { + moveTo(12.0f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(12.0f, 17.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, false, 0.0f, -10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 0.0f, 10.0f) + close() + moveTo(12.0f, 15.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 0.0f, -7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 0.0f, 7.0f) + close() + moveTo(21.25f, 12.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.5f) + close() + moveTo(12.0f, 19.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(4.25f, 12.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.5f) + close() + moveTo(4.22f, 4.22f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(1.5f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineToRelative(-1.5f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + moveTo(5.28f, 19.78f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(1.5f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-1.5f, 1.5f) + close() + moveTo(19.78f, 4.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineToRelative(1.5f, -1.5f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + close() + moveTo(18.72f, 19.78f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-1.5f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.5f, 1.5f) + close() + } + } + return _brightnessHigh!! + } + +private var _brightnessHigh: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BrightnessLow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BrightnessLow.kt new file mode 100644 index 00000000..2d472d62 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BrightnessLow.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BrightnessLow: ImageVector + get() { + if (_brightnessLow != null) { + return _brightnessLow!! + } + _brightnessLow = fluentIcon(name = "Regular.BrightnessLow") { + fluentPath { + moveTo(12.0f, 3.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(12.0f, 17.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, false, 0.0f, -10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 0.0f, 10.0f) + close() + moveTo(12.0f, 15.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 0.0f, -7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 0.0f, 7.0f) + close() + moveTo(19.75f, 12.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.0f) + close() + moveTo(12.0f, 18.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(5.25f, 12.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.0f) + close() + moveTo(6.22f, 6.22f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(0.5f, 0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineToRelative(-0.5f, -0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + moveTo(7.28f, 17.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(0.5f, -0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) + lineToRelative(-0.5f, 0.5f) + close() + moveTo(17.78f, 6.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-0.5f, 0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineToRelative(0.5f, -0.5f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + close() + moveTo(16.72f, 17.78f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-0.5f, -0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(0.5f, 0.5f) + close() + } + } + return _brightnessLow!! + } + +private var _brightnessLow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BroadActivityFeed.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BroadActivityFeed.kt new file mode 100644 index 00000000..7467377f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BroadActivityFeed.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BroadActivityFeed: ImageVector + get() { + if (_broadActivityFeed != null) { + return _broadActivityFeed!! + } + _broadActivityFeed = fluentIcon(name = "Regular.BroadActivityFeed") { + fluentPath { + moveTo(9.25f, 14.0f) + curveToRelative(0.97f, 0.0f, 1.76f, 0.79f, 1.76f, 1.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.76f, 1.75f) + horizontalLineToRelative(-5.5f) + curveTo(2.78f, 21.0f, 2.0f, 20.22f, 2.0f, 19.25f) + verticalLineToRelative(-3.5f) + curveTo(2.0f, 14.8f, 2.78f, 14.0f, 3.75f, 14.0f) + horizontalLineToRelative(5.5f) + close() + moveTo(20.25f, 14.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.79f, 1.75f, 1.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-5.5f) + curveToRelative(-0.97f, 0.0f, -1.76f, -0.78f, -1.76f, -1.75f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.96f, 0.79f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(5.51f) + close() + moveTo(9.25f, 15.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(5.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.1f, 0.25f, -0.25f) + verticalLineToRelative(-3.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(20.25f, 15.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.26f, 0.25f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.14f, 0.12f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(5.51f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.1f, 0.25f, -0.25f) + verticalLineToRelative(-3.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(20.25f, 3.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(5.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(3.75f, 12.0f) + curveTo(2.78f, 12.0f, 2.0f, 11.22f, 2.0f, 10.25f) + verticalLineToRelative(-5.5f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) + lineTo(3.76f, 3.0f) + horizontalLineToRelative(16.5f) + close() + moveTo(20.25f, 4.5f) + lineTo(3.69f, 4.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.19f, 0.25f) + verticalLineToRelative(5.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(16.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-5.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + } + } + return _broadActivityFeed!! + } + +private var _broadActivityFeed: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Broom.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Broom.kt new file mode 100644 index 00000000..cbe8a7f0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Broom.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Broom: ImageVector + get() { + if (_broom != null) { + return _broom!! + } + _broom = fluentIcon(name = "Regular.Broom") { + fluentPath { + moveTo(22.45f, 1.92f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-6.93f, 6.93f) + arcToRelative(5.75f, 5.75f, 0.0f, false, true, -0.5f, 7.57f) + lineToRelative(-0.82f, 0.83f) + lineToRelative(-2.79f, 4.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.15f, 0.12f) + lineToRelative(-8.49f, -8.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.11f, -1.15f) + lineToRelative(4.19f, -2.8f) + lineToRelative(0.83f, -0.82f) + arcToRelative(5.75f, 5.75f, 0.0f, false, true, 7.56f, -0.5f) + lineToRelative(6.93f, -6.93f) + curveToRelative(0.3f, -0.29f, 0.77f, -0.29f, 1.06f, 0.0f) + close() + moveTo(7.6f, 10.76f) + lineToRelative(6.01f, 6.01f) + lineToRelative(0.36f, -0.35f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, -6.01f, -6.01f) + lineToRelative(-0.36f, 0.35f) + close() + moveTo(6.45f, 11.73f) + lineTo(3.48f, 13.7f) + lineToRelative(7.19f, 7.19f) + lineToRelative(1.98f, -2.97f) + lineToRelative(-6.2f, -6.2f) + close() + } + } + return _broom!! + } + +private var _broom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Bug.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Bug.kt new file mode 100644 index 00000000..c1060f1d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Bug.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Bug: ImageVector + get() { + if (_bug != null) { + return _bug!! + } + _bug = fluentIcon(name = "Regular.Bug") { + fluentPath { + moveTo(10.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.64f, 0.2f, 1.22f, 0.53f, 1.7f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.52f, 3.3f) + horizontalLineToRelative(-0.25f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 4.5f, 6.22f) + lineTo(4.5f, 4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, -0.01f) + verticalLineToRelative(1.49f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 3.74f, 3.76f) + lineTo(7.0f, 9.99f) + verticalLineToRelative(1.51f) + lineTo(2.75f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(7.0f, 13.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-0.25f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 3.0f, 18.75f) + verticalLineToRelative(1.48f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.49f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.24f, -2.26f) + horizontalLineToRelative(0.48f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 9.54f, 0.0f) + horizontalLineToRelative(0.47f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 2.25f, 2.26f) + verticalLineToRelative(1.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.48f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.74f, -3.77f) + lineTo(17.0f, 14.98f) + lineTo(17.0f, 13.0f) + horizontalLineToRelative(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(17.0f, 11.5f) + lineTo(17.0f, 10.0f) + horizontalLineToRelative(0.25f) + curveTo(19.32f, 9.97f, 21.0f, 8.3f, 21.0f, 6.22f) + lineTo(21.0f, 4.74f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 1.23f, -1.0f, 2.25f, -2.24f, 2.25f) + horizontalLineToRelative(-0.26f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.52f, -3.28f) + curveToRelative(0.33f, -0.49f, 0.53f, -1.07f, 0.53f, -1.7f) + verticalLineToRelative(-0.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(0.75f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + verticalLineToRelative(-0.75f) + close() + moveTo(8.5f, 8.75f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(2.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.01f, 2.25f, 2.25f) + lineTo(15.5f, 15.0f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, -7.0f, 0.0f) + lineTo(8.5f, 8.75f) + close() + } + } + return _bug!! + } + +private var _bug: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Building.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Building.kt new file mode 100644 index 00000000..b605335f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Building.kt @@ -0,0 +1,93 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Building: ImageVector + get() { + if (_building != null) { + return _building!! + } + _building = fluentIcon(name = "Regular.Building") { + fluentPath { + moveTo(6.25f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(5.5f, 20.5f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(-2.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(6.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(2.75f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(-8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-8.0f) + close() + moveTo(9.0f, 18.0f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(2.25f) + lineTo(11.25f, 18.0f) + lineTo(9.0f, 18.0f) + close() + moveTo(12.75f, 18.0f) + verticalLineToRelative(2.5f) + lineTo(15.0f, 20.5f) + lineTo(15.0f, 18.0f) + horizontalLineToRelative(-2.25f) + close() + moveTo(19.25f, 22.0f) + lineTo(4.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-17.0f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(8.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + lineTo(16.5f, 9.5f) + horizontalLineToRelative(1.25f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + close() + moveTo(7.5f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + close() + moveTo(8.5f, 12.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(8.5f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(12.0f, 5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(12.0f, 12.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(15.5f, 12.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(12.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + } + } + return _building!! + } + +private var _building: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingBank.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingBank.kt new file mode 100644 index 00000000..e76f7d31 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingBank.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BuildingBank: ImageVector + get() { + if (_buildingBank != null) { + return _buildingBank!! + } + _buildingBank = fluentIcon(name = "Regular.BuildingBank") { + fluentPath { + moveTo(13.0f, 6.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(13.03f, 2.32f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.06f, 0.0f) + lineTo(3.55f, 7.74f) + curveToRelative(-0.98f, 0.71f, -0.48f, 2.26f, 0.73f, 2.26f) + horizontalLineToRelative(0.22f) + verticalLineToRelative(5.8f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 18.25f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(16.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -1.07f, -0.61f, -2.0f, -1.5f, -2.45f) + lineTo(19.5f, 10.0f) + horizontalLineToRelative(0.22f) + curveToRelative(1.2f, 0.0f, 1.71f, -1.55f, 0.73f, -2.26f) + lineToRelative(-7.42f, -5.42f) + close() + moveTo(11.85f, 3.54f) + curveToRelative(0.09f, -0.07f, 0.21f, -0.07f, 0.3f, 0.0f) + lineToRelative(6.8f, 4.96f) + lineTo(5.05f, 8.5f) + lineToRelative(6.8f, -4.96f) + close() + moveTo(18.0f, 10.0f) + verticalLineToRelative(5.5f) + horizontalLineToRelative(-2.0f) + lineTo(16.0f, 10.0f) + horizontalLineToRelative(2.0f) + close() + moveTo(14.5f, 10.0f) + verticalLineToRelative(5.5f) + horizontalLineToRelative(-1.75f) + lineTo(12.75f, 10.0f) + horizontalLineToRelative(1.75f) + close() + moveTo(11.25f, 10.0f) + verticalLineToRelative(5.5f) + lineTo(9.5f, 15.5f) + lineTo(9.5f, 10.0f) + horizontalLineToRelative(1.75f) + close() + moveTo(5.75f, 17.0f) + horizontalLineToRelative(12.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + lineTo(19.5f, 19.0f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + close() + moveTo(6.0f, 15.5f) + lineTo(6.0f, 10.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(5.5f) + lineTo(6.0f, 15.5f) + close() + } + } + return _buildingBank!! + } + +private var _buildingBank: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingBankLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingBankLink.kt new file mode 100644 index 00000000..98c00725 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingBankLink.kt @@ -0,0 +1,105 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BuildingBankLink: ImageVector + get() { + if (_buildingBankLink != null) { + return _buildingBankLink!! + } + _buildingBankLink = fluentIcon(name = "Regular.BuildingBankLink") { + fluentPath { + moveTo(13.0f, 6.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(13.03f, 2.32f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.06f, 0.0f) + lineTo(3.55f, 7.74f) + curveToRelative(-0.98f, 0.71f, -0.48f, 2.26f, 0.73f, 2.26f) + horizontalLineToRelative(0.22f) + verticalLineToRelative(5.8f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 18.25f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(7.42f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 11.0f, 19.0f) + lineTo(4.5f, 19.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(5.82f) + curveToRelative(0.31f, -0.58f, 0.74f, -1.1f, 1.26f, -1.5f) + horizontalLineToRelative(-0.08f) + lineTo(12.75f, 10.0f) + horizontalLineToRelative(1.75f) + verticalLineToRelative(4.67f) + curveToRelative(0.4f, -0.11f, 0.82f, -0.17f, 1.25f, -0.17f) + lineTo(16.0f, 14.5f) + lineTo(16.0f, 10.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(4.5f) + horizontalLineToRelative(1.5f) + lineTo(19.5f, 10.0f) + horizontalLineToRelative(0.22f) + curveToRelative(1.2f, 0.0f, 1.71f, -1.55f, 0.73f, -2.26f) + lineToRelative(-7.42f, -5.42f) + close() + moveTo(11.85f, 3.54f) + curveToRelative(0.09f, -0.07f, 0.21f, -0.07f, 0.3f, 0.0f) + lineToRelative(6.8f, 4.96f) + lineTo(5.05f, 8.5f) + lineToRelative(6.8f, -4.96f) + close() + moveTo(11.25f, 10.0f) + verticalLineToRelative(5.5f) + lineTo(9.5f, 15.5f) + lineTo(9.5f, 10.0f) + horizontalLineToRelative(1.75f) + close() + moveTo(6.0f, 15.5f) + lineTo(6.0f, 10.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(5.5f) + lineTo(6.0f, 15.5f) + close() + moveTo(23.0f, 19.25f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.75f, -3.75f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + lineTo(19.25f, 23.0f) + horizontalLineToRelative(0.2f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 19.25f) + close() + moveTo(16.5f, 16.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-0.2f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(20.0f, 19.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + } + } + return _buildingBankLink!! + } + +private var _buildingBankLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingBankToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingBankToolbox.kt new file mode 100644 index 00000000..d944bf01 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingBankToolbox.kt @@ -0,0 +1,121 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BuildingBankToolbox: ImageVector + get() { + if (_buildingBankToolbox != null) { + return _buildingBankToolbox!! + } + _buildingBankToolbox = fluentIcon(name = "Regular.BuildingBankToolbox") { + fluentPath { + moveTo(13.0f, 6.26f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(13.03f, 2.34f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.06f, 0.0f) + lineToRelative(-7.42f, 5.4f) + curveToRelative(-0.98f, 0.72f, -0.48f, 2.27f, 0.73f, 2.27f) + horizontalLineToRelative(0.22f) + verticalLineToRelative(5.8f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 18.24f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(11.0f, 20.49f) + lineTo(11.0f, 19.0f) + lineTo(4.5f, 19.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + lineTo(11.0f, 17.0f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -0.35f, 0.07f, -0.7f, 0.2f, -1.0f) + lineTo(9.5f, 15.5f) + lineTo(9.5f, 10.0f) + horizontalLineToRelative(1.75f) + verticalLineToRelative(5.4f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 1.5f, -1.29f) + verticalLineToRelative(-4.1f) + horizontalLineToRelative(1.75f) + verticalLineToRelative(1.54f) + curveToRelative(0.38f, -0.2f, 0.8f, -0.3f, 1.25f, -0.3f) + lineTo(16.0f, 11.25f) + verticalLineToRelative(-1.24f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(1.24f) + horizontalLineToRelative(1.25f) + lineToRelative(0.25f, 0.01f) + verticalLineToRelative(-1.25f) + horizontalLineToRelative(0.22f) + curveToRelative(1.2f, 0.0f, 1.71f, -1.55f, 0.73f, -2.26f) + lineToRelative(-7.42f, -5.41f) + close() + moveTo(11.85f, 3.54f) + curveToRelative(0.09f, -0.06f, 0.21f, -0.06f, 0.3f, 0.0f) + lineToRelative(6.8f, 4.97f) + lineTo(5.05f, 8.51f) + lineToRelative(6.8f, -4.96f) + close() + moveTo(6.0f, 15.5f) + lineTo(6.0f, 10.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(5.5f) + lineTo(6.0f, 15.5f) + close() + moveTo(14.0f, 15.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + lineTo(12.0f, 18.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(16.0f, 18.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(20.5f, 18.0f) + lineTo(23.0f, 18.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(21.0f, 15.0f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(1.0f) + close() + moveTo(15.5f, 14.0f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(13.5f, 23.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + lineTo(23.0f, 19.5f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-8.0f) + close() + } + } + return _buildingBankToolbox!! + } + +private var _buildingBankToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingDesktop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingDesktop.kt new file mode 100644 index 00000000..c7115dd1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingDesktop.kt @@ -0,0 +1,107 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BuildingDesktop: ImageVector + get() { + if (_buildingDesktop != null) { + return _buildingDesktop!! + } + _buildingDesktop = fluentIcon(name = "Regular.BuildingDesktop") { + fluentPath { + moveTo(3.75f, 3.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + lineTo(8.5f, 16.5f) + verticalLineToRelative(0.25f) + curveToRelative(0.0f, 0.42f, 0.07f, 0.85f, 0.21f, 1.25f) + lineTo(3.75f, 18.0f) + curveTo(2.78f, 18.0f, 2.0f, 17.22f, 2.0f, 16.25f) + lineTo(2.0f, 3.75f) + curveTo(2.0f, 2.78f, 2.78f, 2.0f, 3.75f, 2.0f) + horizontalLineToRelative(5.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(1.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(14.0f, 9.0f) + horizontalLineToRelative(-1.5f) + verticalLineToRelative(-0.25f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-1.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-3.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-5.5f) + close() + moveTo(6.0f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(5.25f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(6.0f, 11.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(7.75f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(8.5f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(7.75f, 12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(9.5f, 12.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 12.25f, 10.0f) + horizontalLineToRelative(7.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 12.75f) + verticalLineToRelative(4.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) + lineTo(18.0f, 19.5f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.25f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(-1.25f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, -2.75f) + verticalLineToRelative(-4.0f) + close() + moveTo(15.0f, 19.5f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.5f) + verticalLineToRelative(-1.0f) + lineTo(15.0f, 19.5f) + close() + moveTo(12.25f, 11.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(7.0f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-7.0f) + close() + } + } + return _buildingDesktop!! + } + +private var _buildingDesktop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingFactory.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingFactory.kt new file mode 100644 index 00000000..cc007fb6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingFactory.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BuildingFactory: ImageVector + get() { + if (_buildingFactory != null) { + return _buildingFactory!! + } + _buildingFactory = fluentIcon(name = "Regular.BuildingFactory") { + fluentPath { + moveTo(5.17f, 2.0f) + curveToRelative(-1.2f, 0.0f, -2.18f, 0.93f, -2.25f, 2.13f) + lineToRelative(-0.83f, 15.5f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 4.33f, 22.0f) + horizontalLineToRelative(2.84f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.24f, -2.37f) + lineToRelative(-0.84f, -15.5f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 6.33f, 2.0f) + lineTo(5.17f, 2.0f) + close() + moveTo(4.42f, 4.21f) + curveToRelative(0.02f, -0.4f, 0.35f, -0.71f, 0.75f, -0.71f) + horizontalLineToRelative(1.16f) + curveToRelative(0.4f, 0.0f, 0.73f, 0.31f, 0.75f, 0.71f) + lineToRelative(0.83f, 15.5f) + curveToRelative(0.03f, 0.43f, -0.31f, 0.79f, -0.74f, 0.79f) + lineTo(4.33f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.8f) + lineToRelative(0.84f, -15.49f) + close() + moveTo(9.52f, 22.0f) + curveToRelative(0.39f, -0.41f, 0.67f, -0.93f, 0.8f, -1.5f) + horizontalLineToRelative(1.18f) + verticalLineToRelative(-4.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(4.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.25f) + horizontalLineToRelative(0.75f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(20.5f, 7.71f) + lineToRelative(-5.24f, 4.84f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 14.0f, 12.0f) + lineTo(14.0f, 7.71f) + lineToRelative(-4.03f, 3.72f) + lineToRelative(-0.1f, -1.94f) + lineToRelative(4.37f, -4.04f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 15.5f, 6.0f) + verticalLineToRelative(4.29f) + lineToRelative(5.24f, -4.84f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 22.0f, 6.0f) + verticalLineToRelative(13.75f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(9.5f, 22.0f) + close() + moveTo(13.0f, 16.25f) + verticalLineToRelative(4.25f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(-4.25f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + close() + } + } + return _buildingFactory!! + } + +private var _buildingFactory: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingGovernment.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingGovernment.kt new file mode 100644 index 00000000..ff00d6ca --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingGovernment.kt @@ -0,0 +1,102 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BuildingGovernment: ImageVector + get() { + if (_buildingGovernment != null) { + return _buildingGovernment!! + } + _buildingGovernment = fluentIcon(name = "Regular.BuildingGovernment") { + fluentPath { + moveTo(15.5f, 11.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(11.75f, 11.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(9.5f, 11.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(5.75f, 15.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(19.0f, 16.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.5f) + close() + moveTo(11.75f, 2.0f) + horizontalLineToRelative(3.75f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + verticalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(1.02f) + arcTo(7.0f, 7.0f, 0.0f, false, true, 19.0f, 13.0f) + horizontalLineToRelative(0.75f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(2.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-6.0f) + curveTo(2.0f, 14.01f, 3.0f, 13.0f, 4.25f, 13.0f) + lineTo(5.0f, 13.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, 6.0f, -6.93f) + lineTo(11.0f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(12.0f, 7.5f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 6.5f, 13.0f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(5.25f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(-2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.75f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(-5.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(17.5f, 13.0f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 12.0f, 7.5f) + close() + moveTo(13.0f, 18.5f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(-2.0f) + close() + } + } + return _buildingGovernment!! + } + +private var _buildingGovernment: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingHome.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingHome.kt new file mode 100644 index 00000000..89e0e3a8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingHome.kt @@ -0,0 +1,106 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BuildingHome: ImageVector + get() { + if (_buildingHome != null) { + return _buildingHome!! + } + _buildingHome = fluentIcon(name = "Regular.BuildingHome") { + fluentPath { + moveTo(3.75f, 3.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + lineTo(9.0f, 16.5f) + lineTo(9.0f, 18.0f) + lineTo(3.75f, 18.0f) + curveTo(2.78f, 18.0f, 2.0f, 17.22f, 2.0f, 16.25f) + lineTo(2.0f, 3.75f) + curveTo(2.0f, 2.78f, 2.78f, 2.0f, 3.75f, 2.0f) + horizontalLineToRelative(5.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(1.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(0.07f) + lineToRelative(-1.5f, 1.4f) + lineTo(12.5f, 8.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-1.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-3.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-5.5f) + close() + moveTo(6.0f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(5.25f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(6.0f, 11.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(7.75f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(8.5f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(7.75f, 12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(17.19f, 9.44f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.38f, 0.0f) + lineToRelative(-4.25f, 3.97f) + curveToRelative(-0.36f, 0.33f, -0.56f, 0.79f, -0.56f, 1.27f) + verticalLineToRelative(5.82f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(2.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + lineTo(15.0f, 18.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(2.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-5.82f) + curveToRelative(0.0f, -0.48f, -0.2f, -0.94f, -0.56f, -1.27f) + lineTo(17.2f, 9.44f) + close() + moveTo(15.83f, 10.54f) + curveToRelative(0.1f, -0.1f, 0.24f, -0.1f, 0.34f, 0.0f) + lineToRelative(4.25f, 3.96f) + curveToRelative(0.05f, 0.05f, 0.08f, 0.12f, 0.08f, 0.18f) + verticalLineToRelative(5.82f) + horizontalLineToRelative(-2.0f) + lineTo(18.5f, 18.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + horizontalLineToRelative(-2.0f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-5.82f) + curveToRelative(0.0f, -0.06f, 0.03f, -0.13f, 0.08f, -0.18f) + lineToRelative(4.25f, -3.96f) + close() + } + } + return _buildingHome!! + } + +private var _buildingHome: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingMultiple.kt new file mode 100644 index 00000000..37f887c4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingMultiple.kt @@ -0,0 +1,110 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BuildingMultiple: ImageVector + get() { + if (_buildingMultiple != null) { + return _buildingMultiple!! + } + _buildingMultiple = fluentIcon(name = "Regular.BuildingMultiple") { + fluentPath { + moveTo(8.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(7.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(8.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(8.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(7.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(14.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(17.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(17.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(15.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(17.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(15.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(14.0f, 5.0f) + verticalLineToRelative(-0.75f) + curveTo(14.0f, 3.01f, 13.0f, 2.0f, 11.75f, 2.0f) + horizontalLineToRelative(-6.5f) + curveTo(4.01f, 2.0f, 3.0f, 3.0f, 3.0f, 4.25f) + verticalLineToRelative(16.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(16.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(21.0f, 7.25f) + curveTo(21.0f, 6.01f, 20.0f, 5.0f, 18.75f, 5.0f) + lineTo(14.0f, 5.0f) + close() + moveTo(4.5f, 4.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(12.5f, 5.0f) + horizontalLineToRelative(-0.25f) + curveTo(11.01f, 5.0f, 10.0f, 6.0f, 10.0f, 7.25f) + lineTo(10.0f, 20.0f) + lineTo(4.5f, 20.0f) + lineTo(4.5f, 4.25f) + close() + moveTo(14.5f, 20.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(2.0f) + lineTo(16.5f, 20.0f) + horizontalLineToRelative(-2.0f) + close() + moveTo(18.0f, 17.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(13.0f, 20.0f) + horizontalLineToRelative(-1.5f) + lineTo(11.5f, 7.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(19.5f, 20.0f) + lineTo(18.0f, 20.0f) + verticalLineToRelative(-2.25f) + close() + } + } + return _buildingMultiple!! + } + +private var _buildingMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingPeople.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingPeople.kt new file mode 100644 index 00000000..6b8b2fde --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingPeople.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BuildingPeople: ImageVector + get() { + if (_buildingPeople != null) { + return _buildingPeople!! + } + _buildingPeople = fluentIcon(name = "Regular.BuildingPeople") { + fluentPath { + moveTo(7.5f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + close() + moveTo(8.5f, 12.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(7.5f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + close() + moveTo(12.0f, 5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(11.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + close() + moveTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(8.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + lineTo(16.5f, 9.5f) + horizontalLineToRelative(1.25f) + curveToRelative(1.25f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(1.35f) + curveToRelative(-0.44f, 0.13f, -0.83f, 0.36f, -1.15f, 0.66f) + curveToRelative(-0.09f, -0.26f, -0.2f, -0.5f, -0.35f, -0.74f) + verticalLineToRelative(-1.27f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(5.5f, 20.0f) + lineTo(11.0f, 20.0f) + curveToRelative(0.02f, 0.5f, 0.12f, 1.02f, 0.32f, 1.5f) + lineTo(4.75f, 21.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(4.0f, 4.25f) + close() + moveTo(18.0f, 14.75f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.5f, 0.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.5f, 0.0f) + close() + moveTo(19.5f, 19.88f) + curveToRelative(0.0f, 1.55f, -1.07f, 3.12f, -3.75f, 3.12f) + curveToRelative(-2.68f, 0.0f, -3.75f, -1.56f, -3.75f, -3.13f) + curveToRelative(0.0f, -1.03f, 0.72f, -1.87f, 1.6f, -1.87f) + horizontalLineToRelative(4.3f) + curveToRelative(0.88f, 0.0f, 1.6f, 0.84f, 1.6f, 1.88f) + close() + moveTo(20.75f, 17.5f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, -3.5f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, 3.5f) + close() + moveTo(20.5f, 19.88f) + curveToRelative(0.0f, 0.71f, -0.18f, 1.46f, -0.58f, 2.12f) + lineTo(20.0f, 22.0f) + curveToRelative(2.15f, 0.0f, 3.0f, -1.1f, 3.0f, -2.19f) + arcToRelative(1.3f, 1.3f, 0.0f, false, false, -1.28f, -1.31f) + horizontalLineToRelative(-1.54f) + curveToRelative(0.2f, 0.42f, 0.32f, 0.9f, 0.32f, 1.38f) + close() + } + } + return _buildingPeople!! + } + +private var _buildingPeople: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingRetail.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingRetail.kt new file mode 100644 index 00000000..84849d90 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingRetail.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BuildingRetail: ImageVector + get() { + if (_buildingRetail != null) { + return _buildingRetail!! + } + _buildingRetail = fluentIcon(name = "Regular.BuildingRetail") { + fluentPath { + moveTo(6.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(10.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(6.75f, 8.0f) + close() + moveTo(7.5f, 11.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(9.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-9.0f) + close() + moveTo(13.75f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.5f) + close() + moveTo(14.5f, 16.5f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-2.0f) + close() + moveTo(4.0f, 3.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.0f, 3.73f) + verticalLineToRelative(13.52f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(16.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(21.0f, 6.73f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 20.0f, 3.0f) + lineTo(4.0f, 3.0f) + close() + moveTo(19.5f, 7.0f) + verticalLineToRelative(12.5f) + horizontalLineToRelative(-8.0f) + verticalLineToRelative(-4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.75f) + lineTo(4.5f, 19.5f) + lineTo(4.5f, 7.0f) + horizontalLineToRelative(15.0f) + close() + moveTo(3.5f, 5.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(16.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(4.0f, 5.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + moveTo(10.0f, 19.5f) + lineTo(7.5f, 19.5f) + verticalLineToRelative(-4.0f) + lineTo(10.0f, 15.5f) + verticalLineToRelative(4.0f) + close() + } + } + return _buildingRetail!! + } + +private var _buildingRetail: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingRetailMoney.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingRetailMoney.kt new file mode 100644 index 00000000..e9e0e858 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingRetailMoney.kt @@ -0,0 +1,119 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BuildingRetailMoney: ImageVector + get() { + if (_buildingRetailMoney != null) { + return _buildingRetailMoney!! + } + _buildingRetailMoney = fluentIcon(name = "Regular.BuildingRetailMoney") { + fluentPath { + moveTo(6.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(10.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(6.75f, 8.0f) + close() + moveTo(7.5f, 11.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(9.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-9.0f) + close() + moveTo(13.75f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.3f) + curveToRelative(0.16f, -0.03f, 0.33f, -0.05f, 0.5f, -0.05f) + lineTo(18.0f, 15.0f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.5f) + close() + moveTo(11.5f, 14.75f) + lineTo(11.5f, 16.0f) + curveToRelative(-0.31f, 0.42f, -0.5f, 0.94f, -0.5f, 1.5f) + lineTo(11.0f, 21.0f) + lineTo(3.75f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(3.0f, 6.73f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 4.0f, 3.0f) + horizontalLineToRelative(16.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.0f, 3.73f) + lineTo(21.0f, 15.0f) + horizontalLineToRelative(-1.5f) + lineTo(19.5f, 7.0f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(12.5f) + lineTo(6.0f, 19.5f) + verticalLineToRelative(-4.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(3.5f, 5.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(16.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + lineTo(4.0f, 4.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + close() + moveTo(10.0f, 19.5f) + verticalLineToRelative(-4.0f) + lineTo(7.5f, 15.5f) + verticalLineToRelative(4.0f) + lineTo(10.0f, 19.5f) + close() + moveTo(12.0f, 17.5f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(8.0f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + verticalLineToRelative(-4.0f) + close() + moveTo(22.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + horizontalLineToRelative(-1.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(22.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(14.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + verticalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + horizontalLineToRelative(-1.0f) + close() + moveTo(15.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + verticalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + horizontalLineToRelative(1.0f) + close() + moveTo(19.25f, 19.5f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, -3.5f, 0.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 3.5f, 0.0f) + close() + } + } + return _buildingRetailMoney!! + } + +private var _buildingRetailMoney: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingRetailMore.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingRetailMore.kt new file mode 100644 index 00000000..648ca944 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingRetailMore.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BuildingRetailMore: ImageVector + get() { + if (_buildingRetailMore != null) { + return _buildingRetailMore!! + } + _buildingRetailMore = fluentIcon(name = "Regular.BuildingRetailMore") { + fluentPath { + moveTo(7.75f, 16.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + moveTo(13.25f, 14.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(16.25f, 16.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + moveTo(4.87f, 3.63f) + curveToRelative(0.34f, -0.4f, 0.83f, -0.63f, 1.35f, -0.63f) + horizontalLineToRelative(11.56f) + curveToRelative(0.52f, 0.0f, 1.02f, 0.23f, 1.35f, 0.63f) + lineToRelative(3.58f, 4.32f) + curveToRelative(0.67f, 0.82f, 0.1f, 2.05f, -0.96f, 2.05f) + lineTo(21.0f, 10.0f) + verticalLineToRelative(8.75f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.5f, 2.5f) + horizontalLineToRelative(-13.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.5f, -2.5f) + lineTo(3.0f, 10.0f) + horizontalLineToRelative(-0.75f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.96f, -2.05f) + lineToRelative(3.58f, -4.32f) + close() + moveTo(6.22f, 4.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.2f, 0.09f) + lineTo(2.8f, 8.5f) + lineTo(21.2f, 8.5f) + lineToRelative(-3.24f, -3.91f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.19f, -0.09f) + lineTo(6.22f, 4.5f) + close() + moveTo(4.5f, 10.0f) + verticalLineToRelative(8.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + lineTo(19.5f, 10.0f) + horizontalLineToRelative(-15.0f) + close() + } + } + return _buildingRetailMore!! + } + +private var _buildingRetailMore: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingRetailShield.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingRetailShield.kt new file mode 100644 index 00000000..2bf6393e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingRetailShield.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BuildingRetailShield: ImageVector + get() { + if (_buildingRetailShield != null) { + return _buildingRetailShield!! + } + _buildingRetailShield = fluentIcon(name = "Regular.BuildingRetailShield") { + fluentPath { + moveTo(11.5f, 19.5f) + horizontalLineToRelative(0.97f) + curveToRelative(0.22f, 0.56f, 0.51f, 1.06f, 0.85f, 1.5f) + lineTo(3.75f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(3.0f, 6.73f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 4.0f, 3.0f) + horizontalLineToRelative(16.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.0f, 3.73f) + verticalLineToRelative(4.84f) + curveToRelative(-0.6f, -0.25f, -1.1f, -0.57f, -1.5f, -0.86f) + lineTo(19.5f, 7.0f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(12.5f) + lineTo(6.0f, 19.5f) + verticalLineToRelative(-4.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(4.75f) + close() + moveTo(3.5f, 5.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(16.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + lineTo(4.0f, 4.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + close() + moveTo(7.5f, 15.5f) + verticalLineToRelative(4.0f) + lineTo(10.0f, 19.5f) + verticalLineToRelative(-4.0f) + lineTo(7.5f, 15.5f) + close() + moveTo(6.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(5.33f) + curveToRelative(0.2f, -0.58f, 0.75f, -0.97f, 1.33f, -1.02f) + arcToRelative(5.49f, 5.49f, 0.0f, false, false, 1.76f, -0.48f) + lineTo(7.5f, 11.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(9.0f) + verticalLineToRelative(1.21f) + curveToRelative(0.18f, -0.13f, 0.34f, -0.25f, 0.46f, -0.36f) + curveToRelative(0.3f, -0.26f, 0.67f, -0.38f, 1.04f, -0.38f) + lineTo(18.0f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(6.75f, 8.0f) + close() + moveTo(18.39f, 11.1f) + arcToRelative(7.7f, 7.7f, 0.0f, false, false, 4.11f, 1.88f) + curveToRelative(0.28f, 0.02f, 0.5f, 0.24f, 0.5f, 0.52f) + lineTo(23.0f, 17.0f) + curveToRelative(0.0f, 4.22f, -4.1f, 5.72f, -4.87f, 5.96f) + arcToRelative(0.42f, 0.42f, 0.0f, false, true, -0.26f, 0.0f) + curveTo(17.1f, 22.72f, 13.0f, 21.22f, 13.0f, 17.0f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.52f) + arcToRelative(7.71f, 7.71f, 0.0f, false, false, 4.12f, -1.87f) + arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.77f, 0.0f) + close() + } + } + return _buildingRetailShield!! + } + +private var _buildingRetailShield: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingRetailToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingRetailToolbox.kt new file mode 100644 index 00000000..e8be3bb5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingRetailToolbox.kt @@ -0,0 +1,117 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BuildingRetailToolbox: ImageVector + get() { + if (_buildingRetailToolbox != null) { + return _buildingRetailToolbox!! + } + _buildingRetailToolbox = fluentIcon(name = "Regular.BuildingRetailToolbox") { + fluentPath { + moveTo(6.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(6.44f) + curveToRelative(0.26f, -0.66f, 0.77f, -1.2f, 1.41f, -1.5f) + lineTo(7.5f, 11.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(9.0f) + verticalLineToRelative(1.75f) + lineTo(18.0f, 11.25f) + verticalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(6.75f, 8.0f) + close() + moveTo(11.5f, 14.75f) + lineTo(11.5f, 15.0f) + curveToRelative(-0.31f, 0.42f, -0.5f, 0.94f, -0.5f, 1.5f) + lineTo(11.0f, 21.0f) + lineTo(3.75f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(3.0f, 6.73f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 4.0f, 3.0f) + horizontalLineToRelative(16.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.0f, 3.73f) + verticalLineToRelative(5.15f) + arcToRelative(2.74f, 2.74f, 0.0f, false, false, -1.5f, -0.62f) + lineTo(19.5f, 7.0f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(12.5f) + lineTo(6.0f, 19.5f) + verticalLineToRelative(-4.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(3.5f, 5.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(16.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + lineTo(4.0f, 4.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + close() + moveTo(10.0f, 19.5f) + verticalLineToRelative(-4.0f) + lineTo(7.5f, 15.5f) + verticalLineToRelative(4.0f) + lineTo(10.0f, 19.5f) + close() + moveTo(14.0f, 15.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + lineTo(12.0f, 18.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(16.0f, 18.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(20.5f, 18.0f) + lineTo(23.0f, 18.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(21.0f, 15.0f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(1.0f) + close() + moveTo(15.5f, 14.0f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(12.0f, 21.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + lineTo(23.0f, 19.5f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + close() + } + } + return _buildingRetailToolbox!! + } + +private var _buildingRetailToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingShop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingShop.kt new file mode 100644 index 00000000..d9e2fd9d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingShop.kt @@ -0,0 +1,151 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BuildingShop: ImageVector + get() { + if (_buildingShop != null) { + return _buildingShop!! + } + _buildingShop = fluentIcon(name = "Regular.BuildingShop") { + fluentPath { + moveTo(18.0f, 2.0f) + curveToRelative(0.17f, 0.0f, 0.34f, 0.06f, 0.47f, 0.17f) + lineToRelative(0.08f, 0.07f) + lineToRelative(3.27f, 3.53f) + lineToRelative(0.03f, 0.04f) + curveToRelative(0.1f, 0.13f, 0.15f, 0.29f, 0.15f, 0.44f) + verticalLineToRelative(1.92f) + curveToRelative(0.0f, 1.0f, -0.38f, 1.9f, -1.0f, 2.58f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(3.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + verticalLineToRelative(-10.6f) + arcToRelative(3.82f, 3.82f, 0.0f, false, true, -1.0f, -2.36f) + lineTo(2.01f, 6.3f) + curveToRelative(-0.02f, -0.14f, 0.01f, -0.28f, 0.09f, -0.4f) + lineToRelative(0.06f, -0.1f) + lineToRelative(0.04f, -0.05f) + lineToRelative(3.25f, -3.5f) + curveToRelative(0.12f, -0.13f, 0.28f, -0.2f, 0.45f, -0.23f) + lineTo(6.0f, 2.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(15.08f, 10.44f) + lineTo(15.07f, 10.46f) + arcToRelative(3.83f, 3.83f, 0.0f, false, true, -6.15f, -0.02f) + arcToRelative(3.82f, 3.82f, 0.0f, false, true, -4.42f, 1.32f) + verticalLineToRelative(8.74f) + lineTo(6.0f, 20.5f) + verticalLineToRelative(-6.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + horizontalLineToRelative(4.6f) + curveToRelative(0.38f, 0.0f, 0.69f, 0.27f, 0.74f, 0.64f) + verticalLineToRelative(6.85f) + horizontalLineToRelative(7.5f) + verticalLineToRelative(-8.74f) + arcToRelative(3.82f, 3.82f, 0.0f, false, true, -4.4f, -1.32f) + close() + moveTo(10.5f, 14.5f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(6.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-6.0f) + close() + moveTo(17.26f, 13.0f) + curveToRelative(0.37f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) + verticalLineToRelative(3.6f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.64f, 0.75f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.65f) + verticalLineToRelative(-3.6f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.64f, -0.74f) + horizontalLineToRelative(3.6f) + close() + moveTo(16.5f, 14.5f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(8.17f, 7.0f) + lineTo(3.5f, 7.0f) + lineTo(3.5f, 8.34f) + lineToRelative(0.04f, 0.23f) + lineToRelative(0.03f, 0.16f) + lineToRelative(0.05f, 0.17f) + lineToRelative(0.05f, 0.15f) + lineToRelative(0.04f, 0.09f) + lineToRelative(0.1f, 0.2f) + lineToRelative(0.1f, 0.16f) + lineToRelative(0.06f, 0.07f) + lineToRelative(0.13f, 0.16f) + lineToRelative(0.14f, 0.14f) + lineToRelative(0.1f, 0.09f) + lineToRelative(0.04f, 0.03f) + curveToRelative(0.32f, 0.25f, 0.7f, 0.42f, 1.11f, 0.48f) + lineToRelative(0.18f, 0.02f) + horizontalLineToRelative(0.16f) + curveToRelative(1.24f, 0.0f, 2.25f, -0.95f, 2.33f, -2.16f) + lineTo(8.16f, 7.0f) + close() + moveTo(14.33f, 7.0f) + lineTo(9.67f, 7.0f) + verticalLineToRelative(1.17f) + curveToRelative(0.0f, 1.18f, 0.87f, 2.15f, 2.01f, 2.3f) + lineToRelative(0.16f, 0.02f) + lineTo(12.0f, 10.49f) + curveToRelative(1.23f, 0.0f, 2.24f, -0.95f, 2.33f, -2.16f) + lineTo(14.33f, 7.0f) + close() + moveTo(20.5f, 7.0f) + horizontalLineToRelative(-4.67f) + verticalLineToRelative(1.17f) + curveToRelative(0.0f, 1.18f, 0.88f, 2.15f, 2.02f, 2.3f) + lineToRelative(0.16f, 0.02f) + horizontalLineToRelative(0.16f) + curveToRelative(0.56f, 0.0f, 1.08f, -0.2f, 1.48f, -0.52f) + lineToRelative(0.1f, -0.08f) + lineToRelative(0.1f, -0.12f) + lineToRelative(0.15f, -0.17f) + curveToRelative(0.06f, -0.06f, 0.1f, -0.14f, 0.15f, -0.21f) + lineToRelative(0.1f, -0.19f) + lineToRelative(0.07f, -0.14f) + lineToRelative(0.06f, -0.15f) + lineToRelative(0.03f, -0.1f) + lineToRelative(0.04f, -0.15f) + lineToRelative(0.03f, -0.16f) + lineToRelative(0.01f, -0.16f) + lineTo(20.49f, 7.0f) + close() + moveTo(9.06f, 3.5f) + lineTo(6.33f, 3.5f) + lineToRelative(-1.86f, 2.0f) + horizontalLineToRelative(3.98f) + lineToRelative(0.61f, -2.0f) + close() + moveTo(13.36f, 3.5f) + horizontalLineToRelative(-2.73f) + lineToRelative(-0.62f, 2.0f) + horizontalLineToRelative(3.97f) + lineToRelative(-0.61f, -2.0f) + close() + moveTo(17.67f, 3.5f) + horizontalLineToRelative(-2.73f) + lineToRelative(0.61f, 2.0f) + horizontalLineToRelative(3.98f) + lineToRelative(-1.86f, -2.0f) + close() + } + } + return _buildingShop!! + } + +private var _buildingShop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingSkyscraper.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingSkyscraper.kt new file mode 100644 index 00000000..c6a20e07 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingSkyscraper.kt @@ -0,0 +1,105 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BuildingSkyscraper: ImageVector + get() { + if (_buildingSkyscraper != null) { + return _buildingSkyscraper!! + } + _buildingSkyscraper = fluentIcon(name = "Regular.BuildingSkyscraper") { + fluentPath { + moveTo(12.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(11.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(9.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(8.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(18.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(17.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(8.25f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(7.5f, 5.0f) + lineTo(6.25f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(5.5f, 7.8f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.0f, 10.25f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(15.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -3.1f, -2.45f, -5.62f, -5.51f, -5.74f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -1.49f, -2.2f) + lineTo(13.5f, 5.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(11.5f, 4.99f) + lineTo(11.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.5f) + close() + moveTo(12.0f, 7.5f) + lineTo(7.0f, 7.5f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(1.0f) + close() + moveTo(13.5f, 20.0f) + lineTo(12.0f, 20.0f) + verticalLineToRelative(-2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(7.0f, 20.0f) + lineTo(5.5f, 20.0f) + verticalLineToRelative(-9.75f) + curveTo(5.5f, 9.56f, 6.06f, 9.0f, 6.75f, 9.0f) + horizontalLineToRelative(5.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + lineTo(13.5f, 20.0f) + close() + moveTo(8.5f, 20.0f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-2.0f) + close() + moveTo(15.0f, 20.0f) + verticalLineToRelative(-8.5f) + curveToRelative(2.23f, 0.14f, 4.0f, 1.99f, 4.0f, 4.25f) + lineTo(19.0f, 20.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(10.0f, 5.0f) + lineTo(9.0f, 5.0f) + lineTo(9.0f, 3.5f) + horizontalLineToRelative(1.0f) + lineTo(10.0f, 5.0f) + close() + } + } + return _buildingSkyscraper!! + } + +private var _buildingSkyscraper: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingTownhouse.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingTownhouse.kt new file mode 100644 index 00000000..c9d4aaa7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/BuildingTownhouse.kt @@ -0,0 +1,95 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.BuildingTownhouse: ImageVector + get() { + if (_buildingTownhouse != null) { + return _buildingTownhouse!! + } + _buildingTownhouse = fluentIcon(name = "Regular.BuildingTownhouse") { + fluentPath { + moveToRelative(8.04f, 4.58f) + lineToRelative(2.95f, 2.55f) + curveToRelative(0.17f, 0.15f, 0.26f, 0.35f, 0.26f, 0.57f) + verticalLineToRelative(7.8f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.25f) + lineTo(4.75f, 19.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + lineTo(4.5f, 7.7f) + curveToRelative(0.0f, -0.22f, 0.1f, -0.42f, 0.26f, -0.57f) + lineTo(7.7f, 4.58f) + curveToRelative(0.1f, -0.08f, 0.23f, -0.08f, 0.33f, 0.0f) + close() + moveTo(11.25f, 17.0f) + verticalLineToRelative(2.5f) + lineTo(9.5f, 19.5f) + lineTo(9.5f, 17.0f) + horizontalLineToRelative(1.75f) + close() + moveTo(12.75f, 17.0f) + horizontalLineToRelative(1.75f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(-1.75f) + lineTo(12.75f, 17.0f) + close() + moveTo(16.0f, 19.5f) + verticalLineToRelative(-3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.5f) + lineTo(12.75f, 7.7f) + curveToRelative(0.0f, -0.22f, 0.1f, -0.42f, 0.26f, -0.57f) + lineToRelative(2.95f, -2.55f) + curveToRelative(0.1f, -0.08f, 0.23f, -0.08f, 0.33f, 0.0f) + lineToRelative(2.95f, 2.55f) + curveToRelative(0.17f, 0.15f, 0.26f, 0.35f, 0.26f, 0.57f) + verticalLineToRelative(11.55f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + lineTo(16.0f, 19.5f) + close() + moveTo(4.75f, 21.0f) + horizontalLineToRelative(14.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(21.0f, 7.7f) + curveToRelative(0.0f, -0.65f, -0.28f, -1.27f, -0.78f, -1.7f) + lineToRelative(-2.95f, -2.56f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.3f, 0.0f) + lineTo(12.04f, 6.0f) + lineToRelative(-0.03f, 0.02f) + lineToRelative(-0.03f, -0.02f) + lineToRelative(-2.95f, -2.56f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.3f, 0.0f) + lineTo(3.79f, 6.0f) + curveTo(3.28f, 6.43f, 3.0f, 7.05f, 3.0f, 7.7f) + verticalLineToRelative(11.55f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + close() + moveTo(8.88f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(7.88f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(16.12f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + close() + moveTo(15.12f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) + close() + } + } + return _buildingTownhouse!! + } + +private var _buildingTownhouse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Calculator.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Calculator.kt new file mode 100644 index 00000000..f34219f5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Calculator.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Calculator: ImageVector + get() { + if (_calculator != null) { + return _calculator!! + } + _calculator = fluentIcon(name = "Regular.Calculator") { + fluentPath { + moveTo(7.0f, 7.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + verticalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + lineTo(9.0f, 10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(7.0f, 7.0f) + close() + moveTo(9.0f, 6.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(15.5f, 7.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + lineTo(9.0f, 6.5f) + close() + moveTo(8.25f, 14.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + moveTo(9.5f, 17.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(15.75f, 14.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + moveTo(17.0f, 17.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(12.0f, 14.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + moveTo(13.25f, 17.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(7.25f, 2.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 4.0f, 5.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.55f, 5.46f, 22.0f, 7.25f, 22.0f) + horizontalLineToRelative(9.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(20.0f, 5.25f) + curveTo(20.0f, 3.45f, 18.54f, 2.0f, 16.75f, 2.0f) + horizontalLineToRelative(-9.5f) + close() + moveTo(5.5f, 5.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(9.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-9.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(5.5f, 5.25f) + close() + } + } + return _calculator!! + } + +private var _calculator: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalculatorArrowClockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalculatorArrowClockwise.kt new file mode 100644 index 00000000..c33d7ef4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalculatorArrowClockwise.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalculatorArrowClockwise: ImageVector + get() { + if (_calculatorArrowClockwise != null) { + return _calculatorArrowClockwise!! + } + _calculatorArrowClockwise = fluentIcon(name = "Regular.CalculatorArrowClockwise") { + fluentPath { + moveTo(7.0f, 7.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + verticalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + lineTo(9.0f, 10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(7.0f, 7.0f) + close() + moveTo(9.0f, 6.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(15.5f, 7.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + lineTo(9.0f, 6.5f) + close() + moveTo(8.25f, 14.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + moveTo(9.5f, 17.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(7.25f, 22.0f) + horizontalLineToRelative(4.85f) + arcToRelative(7.03f, 7.03f, 0.0f, false, true, -1.16f, -1.5f) + lineTo(7.25f, 20.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(5.5f, 5.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(9.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.91f) + curveToRelative(0.44f, 0.1f, 0.86f, 0.23f, 1.27f, 0.4f) + arcToRelative(1.76f, 1.76f, 0.0f, false, true, 0.23f, -0.28f) + lineTo(20.0f, 5.25f) + curveTo(20.0f, 3.45f, 18.54f, 2.0f, 16.75f, 2.0f) + horizontalLineToRelative(-9.5f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 4.0f, 5.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.55f, 5.46f, 22.0f, 7.25f, 22.0f) + close() + moveTo(21.25f, 15.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(22.0f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(0.63f) + arcTo(6.0f, 6.0f, 0.0f, true, false, 23.0f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, true, true, -1.69f, -3.51f) + horizontalLineToRelative(0.01f) + verticalLineToRelative(0.01f) + lineTo(18.5f, 13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.75f) + close() + } + } + return _calculatorArrowClockwise!! + } + +private var _calculatorArrowClockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalculatorMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalculatorMultiple.kt new file mode 100644 index 00000000..391247d2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalculatorMultiple.kt @@ -0,0 +1,98 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalculatorMultiple: ImageVector + get() { + if (_calculatorMultiple != null) { + return _calculatorMultiple!! + } + _calculatorMultiple = fluentIcon(name = "Regular.CalculatorMultiple") { + fluentPath { + moveTo(7.75f, 5.0f) + curveTo(6.78f, 5.0f, 6.0f, 5.78f, 6.0f, 6.75f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(5.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-1.0f) + curveTo(15.0f, 5.78f, 14.22f, 5.0f, 13.25f, 5.0f) + horizontalLineToRelative(-5.5f) + close() + moveTo(7.5f, 6.75f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(5.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-1.0f) + close() + moveTo(10.5f, 10.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(9.25f, 15.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) + close() + moveTo(7.0f, 10.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(5.75f, 15.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) + close() + moveTo(14.0f, 10.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(12.75f, 15.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) + close() + moveTo(6.14f, 2.0f) + arcTo(3.14f, 3.14f, 0.0f, false, false, 3.0f, 5.14f) + verticalLineToRelative(11.22f) + curveToRelative(0.0f, 1.74f, 1.4f, 3.14f, 3.14f, 3.14f) + horizontalLineToRelative(8.72f) + curveToRelative(1.74f, 0.0f, 3.14f, -1.4f, 3.14f, -3.14f) + lineTo(18.0f, 5.14f) + curveTo(18.0f, 3.4f, 16.6f, 2.0f, 14.86f, 2.0f) + lineTo(6.14f, 2.0f) + close() + moveTo(4.5f, 5.14f) + curveToRelative(0.0f, -0.9f, 0.73f, -1.64f, 1.64f, -1.64f) + horizontalLineToRelative(8.72f) + curveToRelative(0.9f, 0.0f, 1.64f, 0.73f, 1.64f, 1.64f) + verticalLineToRelative(11.22f) + curveToRelative(0.0f, 0.9f, -0.73f, 1.64f, -1.64f, 1.64f) + lineTo(6.14f, 18.0f) + curveToRelative(-0.9f, 0.0f, -1.64f, -0.73f, -1.64f, -1.64f) + lineTo(4.5f, 5.14f) + close() + moveTo(5.8f, 20.49f) + curveToRelative(0.45f, 0.9f, 1.38f, 1.51f, 2.46f, 1.51f) + horizontalLineToRelative(6.99f) + curveToRelative(2.9f, 0.0f, 5.25f, -2.35f, 5.25f, -5.25f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -1.07f, -0.62f, -2.0f, -1.51f, -2.46f) + lineToRelative(0.01f, 0.35f) + lineTo(19.0f, 16.75f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.75f, 3.75f) + lineTo(6.14f, 20.5f) + lineToRelative(-0.34f, -0.01f) + close() + } + } + return _calculatorMultiple!! + } + +private var _calculatorMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Calendar3Day.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Calendar3Day.kt new file mode 100644 index 00000000..9891ca7b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Calendar3Day.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Calendar3Day: ImageVector + get() { + if (_calendar3Day != null) { + return _calendar3Day!! + } + _calendar3Day = fluentIcon(name = "Regular.Calendar3Day") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(7.75f, 7.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-8.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(16.25f, 7.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-8.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(12.0f, 7.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-8.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _calendar3Day!! + } + +private var _calendar3Day: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarAdd.kt new file mode 100644 index 00000000..1c888515 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarAdd.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarAdd: ImageVector + get() { + if (_calendarAdd != null) { + return _calendarAdd!! + } + _calendarAdd = fluentIcon(name = "Regular.CalendarAdd") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(5.77f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 8.5f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(9.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(5.06f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.5f, 14.0f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + lineToRelative(-0.01f, 0.09f) + lineTo(17.0f, 17.0f) + horizontalLineToRelative(-2.59f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + lineToRelative(-0.01f, 0.09f) + verticalLineToRelative(0.09f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + lineToRelative(0.09f, 0.01f) + lineTo(17.0f, 18.0f) + verticalLineToRelative(2.59f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + lineToRelative(0.09f, 0.01f) + horizontalLineToRelative(0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + lineToRelative(0.01f, -0.09f) + lineTo(18.0f, 18.0f) + horizontalLineToRelative(2.59f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + lineToRelative(0.01f, -0.09f) + verticalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) + lineTo(20.5f, 17.0f) + lineTo(18.0f, 17.0f) + verticalLineToRelative(-2.59f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) + lineTo(17.5f, 14.0f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 7.0f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + } + } + return _calendarAdd!! + } + +private var _calendarAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarAgenda.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarAgenda.kt new file mode 100644 index 00000000..af0bc8bd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarAgenda.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarAgenda: ImageVector + get() { + if (_calendarAgenda != null) { + return _calendarAgenda!! + } + _calendarAgenda = fluentIcon(name = "Regular.CalendarAgenda") { + fluentPath { + moveTo(21.0f, 17.75f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + close() + moveTo(19.5f, 17.75f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + close() + moveTo(17.0f, 7.75f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(8.6f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(17.0f, 16.25f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(8.6f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(17.0f, 12.0f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(8.6f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + } + } + return _calendarAgenda!! + } + +private var _calendarAgenda: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarArrowCounterclockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarArrowCounterclockwise.kt new file mode 100644 index 00000000..60e9626a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarArrowCounterclockwise.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarArrowCounterclockwise: ImageVector + get() { + if (_calendarArrowCounterclockwise != null) { + return _calendarArrowCounterclockwise!! + } + _calendarArrowCounterclockwise = fluentIcon(name = + "Regular.CalendarArrowCounterclockwise") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(2.69f) + lineToRelative(-0.72f, -0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineToRelative(-0.72f, 0.72f) + lineTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(19.5f, 7.0f) + lineTo(5.9f, 7.0f) + arcToRelative(1.74f, 1.74f, 0.0f, false, true, 1.58f, 1.5f) + lineTo(19.5f, 8.5f) + verticalLineToRelative(9.25f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(4.0f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(7.75f, 14.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(12.0f, 14.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(7.75f, 10.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(12.0f, 10.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(16.25f, 10.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + } + } + return _calendarArrowCounterclockwise!! + } + +private var _calendarArrowCounterclockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarArrowDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarArrowDown.kt new file mode 100644 index 00000000..1170882c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarArrowDown.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarArrowDown: ImageVector + get() { + if (_calendarArrowDown != null) { + return _calendarArrowDown!! + } + _calendarArrowDown = fluentIcon(name = "Regular.CalendarArrowDown") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(5.77f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 8.5f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(9.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(5.06f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 7.0f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(18.0f, 14.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(4.8f) + lineToRelative(-1.65f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.5f, 2.5f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineTo(18.0f, 19.29f) + lineTo(18.0f, 14.5f) + close() + } + } + return _calendarArrowDown!! + } + +private var _calendarArrowDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarArrowRight.kt new file mode 100644 index 00000000..5efba581 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarArrowRight.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarArrowRight: ImageVector + get() { + if (_calendarArrowRight != null) { + return _calendarArrowRight!! + } + _calendarArrowRight = fluentIcon(name = "Regular.CalendarArrowRight") { + fluentPath { + moveTo(21.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + lineTo(6.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) + horizontalLineToRelative(6.02f) + curveToRelative(-0.3f, -0.46f, -0.53f, -0.97f, -0.7f, -1.5f) + lineTo(6.0f, 19.5f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 4.5f, 18.0f) + lineTo(4.5f, 8.5f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(2.81f) + curveToRelative(0.53f, 0.18f, 1.04f, 0.42f, 1.5f, 0.71f) + lineTo(21.0f, 6.0f) + close() + moveTo(6.0f, 4.5f) + horizontalLineToRelative(12.0f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-15.0f) + lineTo(4.5f, 6.0f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(17.65f, 15.35f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, -0.7f) + lineToRelative(2.5f, 2.5f) + curveToRelative(0.2f, 0.2f, 0.2f, 0.5f, 0.0f, 0.7f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, -0.7f) + lineTo(19.29f, 18.0f) + lineTo(14.5f, 18.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, -1.65f) + close() + } + } + return _calendarArrowRight!! + } + +private var _calendarArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarAssistant.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarAssistant.kt new file mode 100644 index 00000000..61245fd7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarAssistant.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarAssistant: ImageVector + get() { + if (_calendarAssistant != null) { + return _calendarAssistant!! + } + _calendarAssistant = fluentIcon(name = "Regular.CalendarAssistant") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(5.77f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 8.5f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(9.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(5.06f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 7.0f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(17.5f, 23.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) + close() + moveTo(17.1f, 14.0f) + horizontalLineToRelative(1.43f) + curveToRelative(0.35f, 0.0f, 0.59f, 0.35f, 0.47f, 0.68f) + lineTo(18.5f, 16.0f) + horizontalLineToRelative(0.63f) + curveToRelative(0.38f, 0.0f, 0.6f, 0.41f, 0.4f, 0.73f) + lineToRelative(-2.63f, 4.03f) + arcToRelative(0.52f, 0.52f, 0.0f, false, true, -0.92f, -0.44f) + lineToRelative(0.77f, -2.32f) + horizontalLineToRelative(-0.78f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.47f, -0.68f) + lineToRelative(1.13f, -3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.47f, -0.32f) + close() + } + } + return _calendarAssistant!! + } + +private var _calendarAssistant: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarCancel.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarCancel.kt new file mode 100644 index 00000000..1d058dcc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarCancel.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarCancel: ImageVector + get() { + if (_calendarCancel != null) { + return _calendarCancel!! + } + _calendarCancel = fluentIcon(name = "Regular.CalendarCancel") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(15.02f, 15.02f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.71f) + lineToRelative(1.77f, 1.77f) + lineToRelative(-1.76f, 1.77f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, 0.7f) + lineToRelative(1.77f, -1.76f) + lineToRelative(1.77f, 1.77f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, -0.71f) + lineToRelative(-1.76f, -1.77f) + lineToRelative(1.77f, -1.77f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.78f, 1.76f) + lineToRelative(-1.77f, -1.77f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + close() + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(5.77f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 8.5f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(9.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(5.06f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 7.0f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + } + } + return _calendarCancel!! + } + +private var _calendarCancel: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarChat.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarChat.kt new file mode 100644 index 00000000..4bd87f66 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarChat.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarChat: ImageVector + get() { + if (_calendarChat != null) { + return _calendarChat!! + } + _calendarChat = fluentIcon(name = "Regular.CalendarChat") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(5.77f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 8.5f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(9.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(5.06f) + curveToRelative(0.09f, 0.26f, 0.19f, 0.52f, 0.3f, 0.76f) + lineToRelative(-0.22f, 0.74f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 7.0f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(19.5f, 12.37f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -4.67f, 9.94f) + lineToRelative(-2.18f, 0.67f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.63f, -0.62f) + lineToRelative(0.67f, -2.2f) + arcTo(5.5f, 5.5f, 0.0f, false, true, 17.48f, 12.0f) + lineToRelative(0.02f, 0.01f) + curveToRelative(0.7f, 0.0f, 1.38f, 0.13f, 2.0f, 0.37f) + close() + moveTo(19.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) + horizontalLineToRelative(4.0f) + close() + moveTo(15.5f, 19.0f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) + close() + } + } + return _calendarChat!! + } + +private var _calendarChat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarCheckmark.kt new file mode 100644 index 00000000..9b38d2c3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarCheckmark.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarCheckmark: ImageVector + get() { + if (_calendarCheckmark != null) { + return _calendarCheckmark!! + } + _calendarCheckmark = fluentIcon(name = "Regular.CalendarCheckmark") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(5.77f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 8.5f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(9.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(5.06f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 7.0f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-3.65f, 3.64f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _calendarCheckmark!! + } + +private var _calendarCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarClock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarClock.kt new file mode 100644 index 00000000..9c6a57ea --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarClock.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarClock: ImageVector + get() { + if (_calendarClock != null) { + return _calendarClock!! + } + _calendarClock = fluentIcon(name = "Regular.CalendarClock") { + fluentPath { + moveTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(5.77f) + curveToRelative(-0.3f, -0.46f, -0.53f, -0.97f, -0.7f, -1.5f) + lineTo(6.24f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.49f, 8.5f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(2.81f) + curveToRelative(0.53f, 0.18f, 1.04f, 0.42f, 1.5f, 0.71f) + lineTo(20.99f, 6.25f) + close() + moveTo(6.25f, 4.5f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(19.5f, 7.0f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(17.5f, 17.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(17.0f, 18.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + verticalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + verticalLineToRelative(2.5f) + close() + } + } + return _calendarClock!! + } + +private var _calendarClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarDataBar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarDataBar.kt new file mode 100644 index 00000000..812656a1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarDataBar.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarDataBar: ImageVector + get() { + if (_calendarDataBar != null) { + return _calendarDataBar!! + } + _calendarDataBar = fluentIcon(name = "Regular.CalendarDataBar") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(6.8f) + curveToRelative(-0.37f, 0.07f, -0.7f, 0.23f, -1.0f, 0.45f) + curveToRelative(0.0f, -0.56f, -0.19f, -1.08f, -0.5f, -1.5f) + lineTo(19.5f, 8.5f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(9.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(11.0f, 19.5f) + lineTo(11.0f, 21.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 7.0f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(17.5f, 12.0f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) + verticalLineToRelative(-8.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + close() + moveTo(13.5f, 16.0f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(4.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + close() + moveTo(20.0f, 15.5f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + verticalLineToRelative(6.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + verticalLineToRelative(-6.0f) + close() + } + } + return _calendarDataBar!! + } + +private var _calendarDataBar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarDay.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarDay.kt new file mode 100644 index 00000000..7ffdb167 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarDay.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarDay: ImageVector + get() { + if (_calendarDay != null) { + return _calendarDay!! + } + _calendarDay = fluentIcon(name = "Regular.CalendarDay") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(16.25f, 11.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(8.5f) + close() + moveTo(15.5f, 12.5f) + horizontalLineToRelative(-7.0f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(7.0f) + verticalLineToRelative(-3.0f) + close() + moveTo(7.75f, 7.25f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-8.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(8.6f) + horizontalLineToRelative(-8.5f) + close() + } + } + return _calendarDay!! + } + +private var _calendarDay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarEdit.kt new file mode 100644 index 00000000..14899488 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarEdit.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarEdit: ImageVector + get() { + if (_calendarEdit != null) { + return _calendarEdit!! + } + _calendarEdit = fluentIcon(name = "Regular.CalendarEdit") { + fluentPath { + moveTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.45f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(4.91f) + lineToRelative(0.36f, -1.42f) + lineToRelative(0.02f, -0.08f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 8.5f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(2.73f) + curveToRelative(0.48f, -0.19f, 1.0f, -0.26f, 1.5f, -0.22f) + lineTo(21.0f, 6.25f) + close() + moveTo(6.25f, 4.5f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(19.5f, 7.0f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.34f, -0.6f, 0.78f, -0.71f, 1.25f) + lineToRelative(-0.46f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _calendarEdit!! + } + +private var _calendarEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarEmpty.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarEmpty.kt new file mode 100644 index 00000000..3967344c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarEmpty.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarEmpty: ImageVector + get() { + if (_calendarEmpty != null) { + return _calendarEmpty!! + } + _calendarEmpty = fluentIcon(name = "Regular.CalendarEmpty") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(19.5f, 8.5f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(9.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 8.5f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 7.0f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + } + } + return _calendarEmpty!! + } + +private var _calendarEmpty: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarError.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarError.kt new file mode 100644 index 00000000..716fec38 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarError.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarError: ImageVector + get() { + if (_calendarError != null) { + return _calendarError!! + } + _calendarError = fluentIcon(name = "Regular.CalendarError") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(5.77f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 8.5f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(9.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(5.06f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 7.0f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(17.5f, 14.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(17.5f, 21.13f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.25f) + close() + } + } + return _calendarError!! + } + +private var _calendarError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarLock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarLock.kt new file mode 100644 index 00000000..799bd1c2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarLock.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarLock: ImageVector + get() { + if (_calendarLock != null) { + return _calendarLock!! + } + _calendarLock = fluentIcon(name = "Regular.CalendarLock") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(5.3f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -1.5f, -0.9f) + lineTo(19.5f, 8.5f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(9.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(13.0f, 19.5f) + lineTo(13.0f, 21.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 7.0f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(16.0f, 15.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(6.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(21.0f, 15.0f) + verticalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) + verticalLineToRelative(1.0f) + close() + moveTo(17.5f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(19.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + } + } + return _calendarLock!! + } + +private var _calendarLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarMonth.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarMonth.kt new file mode 100644 index 00000000..619a3dd1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarMonth.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarMonth: ImageVector + get() { + if (_calendarMonth != null) { + return _calendarMonth!! + } + _calendarMonth = fluentIcon(name = "Regular.CalendarMonth") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(7.75f, 13.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(12.0f, 13.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(7.75f, 8.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(12.0f, 8.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(16.25f, 8.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + } + } + return _calendarMonth!! + } + +private var _calendarMonth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarMultiple.kt new file mode 100644 index 00000000..b7d54ab8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarMultiple.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarMultiple: ImageVector + get() { + if (_calendarMultiple != null) { + return _calendarMultiple!! + } + _calendarMultiple = fluentIcon(name = "Regular.CalendarMultiple") { + fluentPath { + moveTo(20.0f, 5.0f) + verticalLineToRelative(11.35f) + arcTo(3.65f, 3.65f, 0.0f, false, true, 16.35f, 20.0f) + lineTo(5.01f, 20.0f) + curveToRelative(0.57f, 0.9f, 1.59f, 1.5f, 2.74f, 1.5f) + horizontalLineToRelative(8.6f) + curveToRelative(2.84f, 0.0f, 5.15f, -2.3f, 5.15f, -5.15f) + verticalLineToRelative(-8.6f) + curveToRelative(0.0f, -1.15f, -0.6f, -2.17f, -1.5f, -2.74f) + close() + moveTo(5.24f, 2.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) + verticalLineToRelative(10.5f) + curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) + horizontalLineToRelative(10.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(19.0f, 5.25f) + curveTo(19.0f, 3.45f, 17.54f, 2.0f, 15.75f, 2.0f) + lineTo(5.25f, 2.0f) + close() + moveTo(3.5f, 7.5f) + horizontalLineToRelative(14.0f) + verticalLineToRelative(8.25f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(5.25f, 17.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(3.5f, 7.5f) + close() + moveTo(5.25f, 3.5f) + horizontalLineToRelative(10.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(17.5f, 6.0f) + horizontalLineToRelative(-14.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + close() + } + } + return _calendarMultiple!! + } + +private var _calendarMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarPerson.kt new file mode 100644 index 00000000..29ca5549 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarPerson.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarPerson: ImageVector + get() { + if (_calendarPerson != null) { + return _calendarPerson!! + } + _calendarPerson = fluentIcon(name = "Regular.CalendarPerson") { + fluentPath { + moveTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(6.92f) + arcToRelative(3.74f, 3.74f, 0.0f, false, true, -0.17f, -1.13f) + verticalLineToRelative(-0.1f) + lineToRelative(0.01f, -0.27f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 8.5f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(2.64f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 1.5f, 0.91f) + verticalLineToRelative(-5.8f) + close() + moveTo(6.25f, 4.5f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(19.5f, 7.0f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + close() + moveTo(21.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(23.0f, 19.88f) + curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) + reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _calendarPerson!! + } + +private var _calendarPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarPlay.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarPlay.kt new file mode 100644 index 00000000..622ddf33 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarPlay.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarPlay: ImageVector + get() { + if (_calendarPlay != null) { + return _calendarPlay!! + } + _calendarPlay = fluentIcon(name = "Regular.CalendarPlay") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(5.77f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 8.5f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(9.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(5.06f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 7.0f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(17.5f, 23.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) + close() + moveTo(16.6f, 15.0f) + curveToRelative(0.11f, 0.0f, 0.22f, 0.03f, 0.31f, 0.1f) + lineToRelative(2.81f, 1.84f) + arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.28f, 0.52f) + arcToRelative(0.65f, 0.65f, 0.0f, false, true, -0.11f, 0.36f) + arcToRelative(0.56f, 0.56f, 0.0f, false, true, -0.16f, 0.16f) + lineToRelative(-2.8f, 1.92f) + arcToRelative(0.66f, 0.66f, 0.0f, false, true, -0.17f, 0.07f) + arcToRelative(0.55f, 0.55f, 0.0f, false, true, -0.4f, -0.02f) + arcToRelative(0.7f, 0.7f, 0.0f, false, true, -0.18f, -0.13f) + arcToRelative(0.61f, 0.61f, 0.0f, false, true, -0.18f, -0.44f) + verticalLineToRelative(-3.76f) + arcToRelative(0.62f, 0.62f, 0.0f, false, true, 0.37f, -0.57f) + arcToRelative(0.53f, 0.53f, 0.0f, false, true, 0.23f, -0.05f) + close() + } + } + return _calendarPlay!! + } + +private var _calendarPlay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarQuestionMark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarQuestionMark.kt new file mode 100644 index 00000000..4355e460 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarQuestionMark.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarQuestionMark: ImageVector + get() { + if (_calendarQuestionMark != null) { + return _calendarQuestionMark!! + } + _calendarQuestionMark = fluentIcon(name = "Regular.CalendarQuestionMark") { + fluentPath { + moveTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(5.77f) + curveToRelative(-0.3f, -0.46f, -0.53f, -0.97f, -0.7f, -1.5f) + lineTo(6.24f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.49f, 8.5f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(2.81f) + curveToRelative(0.53f, 0.18f, 1.04f, 0.42f, 1.5f, 0.71f) + lineTo(20.99f, 6.25f) + close() + moveTo(6.25f, 4.5f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(19.5f, 7.0f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(16.88f, 20.38f) + arcToRelative(0.62f, 0.62f, 0.0f, true, true, 1.24f, 0.0f) + arcToRelative(0.62f, 0.62f, 0.0f, false, true, -1.24f, 0.0f) + close() + moveTo(15.65f, 15.83f) + curveToRelative(-0.01f, -1.14f, 0.8f, -1.96f, 1.85f, -1.96f) + curveToRelative(1.03f, 0.0f, 1.85f, 0.85f, 1.85f, 1.95f) + curveToRelative(0.0f, 0.51f, -0.15f, 0.85f, -0.52f, 1.3f) + lineToRelative(-0.14f, 0.15f) + lineToRelative(-0.27f, 0.3f) + lineToRelative(-0.1f, 0.1f) + lineToRelative(-0.08f, 0.11f) + curveToRelative(-0.18f, 0.23f, -0.24f, 0.39f, -0.24f, 0.6f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + curveToRelative(0.0f, -0.53f, 0.15f, -0.86f, 0.53f, -1.32f) + lineToRelative(0.14f, -0.16f) + lineToRelative(0.27f, -0.29f) + lineToRelative(0.1f, -0.1f) + lineToRelative(0.09f, -0.12f) + curveToRelative(0.17f, -0.22f, 0.22f, -0.37f, 0.22f, -0.57f) + curveToRelative(0.0f, -0.55f, -0.38f, -0.95f, -0.85f, -0.95f) + curveToRelative(-0.5f, 0.0f, -0.86f, 0.37f, -0.85f, 0.95f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + close() + } + } + return _calendarQuestionMark!! + } + +private var _calendarQuestionMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarReply.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarReply.kt new file mode 100644 index 00000000..96445677 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarReply.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarReply: ImageVector + get() { + if (_calendarReply != null) { + return _calendarReply!! + } + _calendarReply = fluentIcon(name = "Regular.CalendarReply") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(5.77f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 8.5f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(9.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(5.06f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 7.0f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(16.35f, 15.35f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(1.5f, 1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-0.64f, -0.65f) + horizontalLineToRelative(2.04f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(0.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-0.25f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-2.04f) + lineToRelative(0.64f, -0.65f) + close() + } + } + return _calendarReply!! + } + +private var _calendarReply: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarRtl.kt new file mode 100644 index 00000000..acecad82 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarRtl.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarRtl: ImageVector + get() { + if (_calendarRtl != null) { + return _calendarRtl!! + } + _calendarRtl = fluentIcon(name = "Regular.CalendarRtl") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(4.5f, 8.5f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(9.25f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 8.5f) + close() + moveTo(16.25f, 14.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(12.0f, 14.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(16.25f, 10.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(12.0f, 10.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(7.75f, 10.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(6.25f, 4.5f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(19.5f, 7.0f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + close() + } + } + return _calendarRtl!! + } + +private var _calendarRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarSettings.kt new file mode 100644 index 00000000..2d314a20 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarSettings.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarSettings: ImageVector + get() { + if (_calendarSettings != null) { + return _calendarSettings!! + } + _calendarSettings = fluentIcon(name = "Regular.CalendarSettings") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(5.77f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 8.5f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(9.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(5.06f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 7.0f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(14.28f, 13.98f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.58f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) + lineToRelative(0.54f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) + lineToRelative(-0.18f, 0.64f) + curveToRelative(0.43f, 0.38f, 0.93f, 0.7f, 1.48f, 0.92f) + lineToRelative(0.5f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.47f, -0.9f) + lineToRelative(-0.2f, -0.7f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, -2.5f) + lineToRelative(0.58f, -0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, -1.8f) + lineToRelative(-0.55f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.2f, -0.63f) + curveToRelative(-0.45f, -0.39f, -0.95f, -0.7f, -1.5f, -0.93f) + lineToRelative(-0.49f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.91f) + lineToRelative(0.2f, 0.69f) + close() + moveTo(17.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) + close() + } + } + return _calendarSettings!! + } + +private var _calendarSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarShield.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarShield.kt new file mode 100644 index 00000000..25f64a22 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarShield.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarShield: ImageVector + get() { + if (_calendarShield != null) { + return _calendarShield!! + } + _calendarShield = fluentIcon(name = "Regular.CalendarShield") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(6.36f) + arcToRelative(3.16f, 3.16f, 0.0f, false, true, -1.5f, -0.72f) + lineTo(19.5f, 8.5f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(9.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(7.32f) + arcToRelative(5.89f, 5.89f, 0.0f, false, false, 0.97f, 1.5f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(14.69f, 19.5f) + curveToRelative(0.32f, 0.58f, 0.76f, 1.08f, 1.31f, 1.5f) + curveToRelative(0.52f, 0.4f, 1.15f, 0.73f, 1.87f, 0.98f) + curveToRelative(0.09f, 0.03f, 0.18f, 0.03f, 0.26f, 0.0f) + curveToRelative(2.56f, -0.89f, 3.87f, -2.71f, 3.87f, -5.4f) + lineTo(22.0f, 14.0f) + arcToRelative(0.4f, 0.4f, 0.0f, false, false, -0.4f, -0.33f) + arcToRelative(4.21f, 4.21f, 0.0f, false, true, -2.1f, -0.57f) + arcToRelative(5.55f, 5.55f, 0.0f, false, true, -1.22f, -0.98f) + arcToRelative(0.39f, 0.39f, 0.0f, false, false, -0.56f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -3.32f, 1.55f) + arcToRelative(0.4f, 0.4f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(2.77f) + curveToRelative(0.04f, 1.01f, 0.27f, 1.9f, 0.69f, 2.65f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 7.0f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + } + } + return _calendarShield!! + } + +private var _calendarShield: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarStar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarStar.kt new file mode 100644 index 00000000..f772cb47 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarStar.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarStar: ImageVector + get() { + if (_calendarStar != null) { + return _calendarStar!! + } + _calendarStar = fluentIcon(name = "Regular.CalendarStar") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(5.77f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 8.5f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(9.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(5.06f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(16.98f, 14.05f) + lineTo(16.94f, 14.15f) + lineTo(16.39f, 15.93f) + horizontalLineToRelative(-1.8f) + curveToRelative(-0.54f, 0.0f, -0.78f, 0.67f, -0.42f, 1.04f) + lineToRelative(0.07f, 0.06f) + lineToRelative(1.46f, 1.1f) + lineToRelative(-0.56f, 1.8f) + curveToRelative(-0.16f, 0.52f, 0.38f, 0.97f, 0.82f, 0.72f) + lineToRelative(0.08f, -0.05f) + lineToRelative(1.46f, -1.1f) + lineToRelative(1.46f, 1.1f) + curveToRelative(0.43f, 0.33f, 1.0f, -0.07f, 0.92f, -0.58f) + lineToRelative(-0.02f, -0.1f) + lineToRelative(-0.56f, -1.78f) + lineToRelative(1.46f, -1.1f) + curveToRelative(0.43f, -0.33f, 0.25f, -1.02f, -0.25f, -1.1f) + lineTo(18.61f, 15.94f) + lineToRelative(-0.55f, -1.8f) + arcToRelative(0.58f, 0.58f, 0.0f, false, false, -1.08f, -0.1f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 7.0f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + } + } + return _calendarStar!! + } + +private var _calendarStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarSync.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarSync.kt new file mode 100644 index 00000000..56e8e8f9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarSync.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarSync: ImageVector + get() { + if (_calendarSync != null) { + return _calendarSync!! + } + _calendarSync = fluentIcon(name = "Regular.CalendarSync") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(5.77f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 8.5f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(9.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(5.06f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 7.0f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) + close() + moveTo(20.5f, 14.0f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + verticalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.8f, -0.59f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) + verticalLineToRelative(-0.55f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + close() + moveTo(15.0f, 19.95f) + verticalLineToRelative(0.55f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.77f, 0.65f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) + close() + } + } + return _calendarSync!! + } + +private var _calendarSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarToday.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarToday.kt new file mode 100644 index 00000000..ea390bd1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarToday.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarToday: ImageVector + get() { + if (_calendarToday != null) { + return _calendarToday!! + } + _calendarToday = fluentIcon(name = "Regular.CalendarToday") { + fluentPath { + moveTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(-4.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 8.5f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(9.25f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-4.0f) + lineTo(13.75f, 21.0f) + horizontalLineToRelative(4.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + close() + moveTo(6.25f, 4.5f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(19.5f, 7.0f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + close() + moveTo(13.25f, 11.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(13.75f, 18.31f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.0f, -1.12f) + lineToRelative(-2.25f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, 0.0f) + lineToRelative(-2.25f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.0f, 1.12f) + lineToRelative(1.0f, -0.89f) + verticalLineToRelative(3.83f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) + verticalLineToRelative(-3.83f) + lineToRelative(1.0f, 0.9f) + close() + } + } + return _calendarToday!! + } + +private var _calendarToday: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarToolbox.kt new file mode 100644 index 00000000..c2ff4536 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarToolbox.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarToolbox: ImageVector + get() { + if (_calendarToolbox != null) { + return _calendarToolbox!! + } + _calendarToolbox = fluentIcon(name = "Regular.CalendarToolbox") { + fluentPath { + moveTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + lineTo(11.0f, 21.0f) + verticalLineToRelative(-1.5f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 8.5f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(2.76f) + curveToRelative(0.57f, 0.05f, 1.08f, 0.28f, 1.5f, 0.62f) + lineTo(21.0f, 6.25f) + close() + moveTo(6.25f, 4.5f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(19.5f, 7.0f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + close() + moveTo(14.0f, 15.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + lineTo(12.0f, 18.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(16.0f, 18.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(20.5f, 18.0f) + lineTo(23.0f, 18.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(21.0f, 15.0f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(1.0f) + close() + moveTo(15.5f, 14.0f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(12.0f, 21.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + lineTo(23.0f, 19.5f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + close() + } + } + return _calendarToolbox!! + } + +private var _calendarToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarWeekNumbers.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarWeekNumbers.kt new file mode 100644 index 00000000..b115d1ae --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarWeekNumbers.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarWeekNumbers: ImageVector + get() { + if (_calendarWeekNumbers != null) { + return _calendarWeekNumbers!! + } + _calendarWeekNumbers = fluentIcon(name = "Regular.CalendarWeekNumbers") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(7.75f, 7.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-1.1f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(8.49f, 15.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.49f, 0.1f) + verticalLineToRelative(1.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + verticalLineToRelative(-1.1f) + close() + moveTo(8.5f, 11.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + verticalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + verticalLineToRelative(-1.25f) + close() + } + } + return _calendarWeekNumbers!! + } + +private var _calendarWeekNumbers: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarWeekStart.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarWeekStart.kt new file mode 100644 index 00000000..25a5e51b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarWeekStart.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarWeekStart: ImageVector + get() { + if (_calendarWeekStart != null) { + return _calendarWeekStart!! + } + _calendarWeekStart = fluentIcon(name = "Regular.CalendarWeekStart") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(7.75f, 7.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-8.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _calendarWeekStart!! + } + +private var _calendarWeekStart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarWorkWeek.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarWorkWeek.kt new file mode 100644 index 00000000..371dcbe3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalendarWorkWeek.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalendarWorkWeek: ImageVector + get() { + if (_calendarWorkWeek != null) { + return _calendarWorkWeek!! + } + _calendarWorkWeek = fluentIcon(name = "Regular.CalendarWorkWeek") { + fluentPath { + moveTo(7.75f, 7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(8.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-8.5f) + close() + moveTo(8.5f, 11.0f) + lineTo(8.5f, 8.5f) + horizontalLineToRelative(7.0f) + lineTo(15.5f, 11.0f) + horizontalLineToRelative(-7.0f) + close() + moveTo(17.75f, 21.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(19.5f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + close() + } + } + return _calendarWorkWeek!! + } + +private var _calendarWorkWeek: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Call.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Call.kt new file mode 100644 index 00000000..23caf5f2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Call.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Call: ImageVector + get() { + if (_call != null) { + return _call!! + } + _call = fluentIcon(name = "Regular.Call") { + fluentPath { + moveToRelative(7.06f, 2.42f) + lineToRelative(1.16f, -0.35f) + curveToRelative(1.33f, -0.4f, 2.74f, 0.24f, 3.3f, 1.5f) + lineToRelative(0.9f, 2.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.63f, 3.15f) + lineTo(10.3f, 10.1f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.08f, 0.16f) + curveToRelative(-0.04f, 0.4f, 0.23f, 1.17f, 0.85f, 2.24f) + curveToRelative(0.45f, 0.78f, 0.86f, 1.33f, 1.2f, 1.64f) + curveToRelative(0.25f, 0.21f, 0.38f, 0.26f, 0.44f, 0.24f) + lineToRelative(2.0f, -0.61f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 3.04f, 1.02f) + lineToRelative(1.28f, 1.77f) + curveToRelative(0.8f, 1.12f, 0.66f, 2.66f, -0.34f, 3.6f) + lineToRelative(-0.88f, 0.85f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.59f, 0.89f) + curveToRelative(-2.75f, -0.77f, -5.22f, -3.1f, -7.44f, -6.93f) + curveToRelative(-2.21f, -3.83f, -2.99f, -7.14f, -2.27f, -9.91f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.55f, -2.65f) + close() + moveTo(7.49f, 3.85f) + curveToRelative(-0.75f, 0.23f, -1.33f, 0.83f, -1.53f, 1.6f) + curveToRelative(-0.6f, 2.33f, 0.09f, 5.26f, 2.12f, 8.78f) + curveToRelative(2.04f, 3.53f, 4.23f, 5.59f, 6.54f, 6.23f) + curveToRelative(0.76f, 0.21f, 1.58f, 0.01f, 2.15f, -0.53f) + lineToRelative(0.9f, -0.84f) + curveToRelative(0.45f, -0.43f, 0.51f, -1.13f, 0.15f, -1.64f) + lineToRelative(-1.29f, -1.77f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.37f, -0.47f) + lineToRelative(-2.02f, 0.62f) + curveToRelative(-1.17f, 0.35f, -2.23f, -0.6f, -3.37f, -2.57f) + curveTo(9.0f, 11.93f, 8.64f, 10.9f, 8.73f, 10.1f) + curveToRelative(0.05f, -0.42f, 0.24f, -0.8f, 0.55f, -1.09f) + lineToRelative(1.5f, -1.39f) + curveToRelative(0.38f, -0.37f, 0.5f, -0.94f, 0.28f, -1.43f) + lineToRelative(-0.9f, -2.0f) + curveToRelative(-0.26f, -0.58f, -0.9f, -0.87f, -1.5f, -0.69f) + lineToRelative(-1.17f, 0.35f) + close() + } + } + return _call!! + } + +private var _call: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallAdd.kt new file mode 100644 index 00000000..f8be8726 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallAdd.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CallAdd: ImageVector + get() { + if (_callAdd != null) { + return _callAdd!! + } + _callAdd = fluentIcon(name = "Regular.CallAdd") { + fluentPath { + moveToRelative(9.53f, 3.57f) + lineToRelative(0.9f, 2.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.64f, 3.15f) + lineTo(8.3f, 10.1f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.08f, 0.16f) + curveToRelative(-0.04f, 0.4f, 0.23f, 1.17f, 0.85f, 2.24f) + curveToRelative(0.45f, 0.78f, 0.86f, 1.33f, 1.2f, 1.64f) + curveToRelative(0.25f, 0.21f, 0.38f, 0.26f, 0.44f, 0.24f) + lineToRelative(2.0f, -0.61f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 3.04f, 1.02f) + lineToRelative(1.28f, 1.77f) + curveToRelative(0.8f, 1.12f, 0.66f, 2.66f, -0.34f, 3.6f) + lineToRelative(-0.88f, 0.85f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.6f, 0.89f) + curveToRelative(-2.74f, -0.77f, -5.21f, -3.1f, -7.43f, -6.93f) + curveToRelative(-2.21f, -3.83f, -2.99f, -7.14f, -2.27f, -9.91f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.55f, -2.65f) + lineToRelative(1.16f, -0.35f) + curveToRelative(1.33f, -0.4f, 2.74f, 0.24f, 3.3f, 1.5f) + close() + moveTo(6.66f, 3.5f) + lineToRelative(-1.17f, 0.35f) + curveToRelative(-0.75f, 0.23f, -1.33f, 0.83f, -1.53f, 1.6f) + curveToRelative(-0.6f, 2.33f, 0.09f, 5.26f, 2.12f, 8.78f) + curveToRelative(2.04f, 3.53f, 4.23f, 5.59f, 6.54f, 6.23f) + curveToRelative(0.76f, 0.21f, 1.58f, 0.01f, 2.15f, -0.53f) + lineToRelative(0.9f, -0.84f) + curveToRelative(0.45f, -0.43f, 0.51f, -1.13f, 0.15f, -1.64f) + lineToRelative(-1.29f, -1.77f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.37f, -0.47f) + lineToRelative(-2.02f, 0.62f) + curveToRelative(-1.17f, 0.35f, -2.23f, -0.6f, -3.37f, -2.57f) + curveTo(7.0f, 11.93f, 6.64f, 10.9f, 6.73f, 10.1f) + curveToRelative(0.05f, -0.42f, 0.24f, -0.8f, 0.55f, -1.09f) + lineToRelative(1.5f, -1.39f) + curveToRelative(0.38f, -0.37f, 0.5f, -0.94f, 0.28f, -1.43f) + lineToRelative(-0.9f, -2.0f) + curveToRelative(-0.26f, -0.58f, -0.9f, -0.87f, -1.5f, -0.69f) + close() + moveTo(17.15f, 2.0f) + horizontalLineToRelative(0.1f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineTo(6.0f) + horizontalLineToRelative(3.25f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.75f, 0.65f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.75f) + horizontalLineTo(18.0f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + verticalLineToRelative(-0.1f) + lineTo(16.5f, 7.5f) + horizontalLineToRelative(-3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + horizontalLineToRelative(3.35f) + verticalLineTo(2.74f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.75f) + horizontalLineToRelative(0.1f) + horizontalLineToRelative(-0.1f) + close() + } + } + return _callAdd!! + } + +private var _callAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallCheckmark.kt new file mode 100644 index 00000000..4fe080f5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallCheckmark.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CallCheckmark: ImageVector + get() { + if (_callCheckmark != null) { + return _callCheckmark!! + } + _callCheckmark = fluentIcon(name = "Regular.CallCheckmark") { + fluentPath { + moveToRelative(6.22f, 2.07f) + lineToRelative(-1.16f, 0.35f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 2.5f, 5.07f) + curveToRelative(-0.72f, 2.77f, 0.06f, 6.08f, 2.27f, 9.91f) + curveToRelative(2.22f, 3.83f, 4.69f, 6.16f, 7.44f, 6.93f) + curveToRelative(1.27f, 0.35f, 2.63f, 0.01f, 3.59f, -0.9f) + lineToRelative(0.88f, -0.83f) + curveToRelative(1.0f, -0.95f, 1.15f, -2.49f, 0.34f, -3.6f) + lineToRelative(-1.28f, -1.78f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -3.03f, -1.02f) + lineToRelative(-2.01f, 0.61f) + curveToRelative(-0.06f, 0.02f, -0.2f, -0.03f, -0.44f, -0.24f) + curveToRelative(-0.34f, -0.31f, -0.75f, -0.86f, -1.2f, -1.64f) + curveToRelative(-0.62f, -1.07f, -0.9f, -1.85f, -0.85f, -2.24f) + curveToRelative(0.0f, -0.06f, 0.04f, -0.12f, 0.08f, -0.16f) + lineToRelative(1.5f, -1.4f) + curveToRelative(0.86f, -0.8f, 1.11f, -2.06f, 0.63f, -3.13f) + lineToRelative(-0.9f, -2.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -3.3f, -1.51f) + close() + moveTo(3.96f, 5.45f) + curveToRelative(0.2f, -0.77f, 0.78f, -1.37f, 1.53f, -1.6f) + lineToRelative(1.17f, -0.35f) + curveToRelative(0.6f, -0.18f, 1.24f, 0.11f, 1.5f, 0.69f) + lineToRelative(0.9f, 2.0f) + curveToRelative(0.22f, 0.5f, 0.1f, 1.06f, -0.29f, 1.43f) + lineToRelative(-1.5f, 1.4f) + curveToRelative(-0.3f, 0.28f, -0.5f, 0.66f, -0.54f, 1.08f) + curveToRelative(-0.09f, 0.8f, 0.27f, 1.83f, 1.04f, 3.16f) + curveToRelative(1.14f, 1.97f, 2.2f, 2.92f, 3.37f, 2.57f) + lineToRelative(2.02f, -0.62f) + curveToRelative(0.5f, -0.16f, 1.06f, 0.03f, 1.37f, 0.47f) + lineToRelative(1.29f, 1.77f) + curveToRelative(0.36f, 0.5f, 0.3f, 1.2f, -0.16f, 1.64f) + lineToRelative(-0.89f, 0.84f) + curveToRelative(-0.57f, 0.54f, -1.39f, 0.74f, -2.15f, 0.53f) + curveToRelative(-2.31f, -0.64f, -4.5f, -2.7f, -6.54f, -6.23f) + curveToRelative(-2.03f, -3.52f, -2.72f, -6.45f, -2.12f, -8.78f) + close() + moveTo(21.78f, 3.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineTo(15.0f, 7.94f) + lineToRelative(-1.87f, -1.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(2.4f, 2.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 0.0f) + lineToRelative(6.25f, -6.25f) + close() + } + } + return _callCheckmark!! + } + +private var _callCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallDismiss.kt new file mode 100644 index 00000000..0b84b895 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallDismiss.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CallDismiss: ImageVector + get() { + if (_callDismiss != null) { + return _callDismiss!! + } + _callDismiss = fluentIcon(name = "Regular.CallDismiss") { + fluentPath { + moveToRelative(9.53f, 3.57f) + lineToRelative(0.9f, 2.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.64f, 3.15f) + lineTo(8.3f, 10.1f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.08f, 0.16f) + curveToRelative(-0.04f, 0.4f, 0.23f, 1.17f, 0.85f, 2.24f) + curveToRelative(0.45f, 0.78f, 0.86f, 1.33f, 1.2f, 1.64f) + curveToRelative(0.25f, 0.21f, 0.38f, 0.26f, 0.44f, 0.24f) + lineToRelative(2.0f, -0.61f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 3.04f, 1.02f) + lineToRelative(1.28f, 1.77f) + curveToRelative(0.8f, 1.12f, 0.66f, 2.66f, -0.34f, 3.6f) + lineToRelative(-0.88f, 0.85f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.6f, 0.89f) + curveToRelative(-2.74f, -0.77f, -5.21f, -3.1f, -7.43f, -6.93f) + curveToRelative(-2.21f, -3.83f, -2.99f, -7.14f, -2.27f, -9.91f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.34f, -2.58f) + lineToRelative(0.2f, -0.07f) + lineToRelative(1.17f, -0.35f) + curveToRelative(1.33f, -0.4f, 2.74f, 0.24f, 3.3f, 1.5f) + close() + moveTo(6.66f, 3.5f) + lineToRelative(-1.17f, 0.35f) + lineToRelative(-0.16f, 0.06f) + curveToRelative(-0.67f, 0.26f, -1.19f, 0.83f, -1.37f, 1.54f) + curveToRelative(-0.6f, 2.33f, 0.09f, 5.26f, 2.12f, 8.78f) + curveToRelative(2.04f, 3.53f, 4.23f, 5.59f, 6.54f, 6.23f) + curveToRelative(0.76f, 0.21f, 1.58f, 0.01f, 2.15f, -0.53f) + lineToRelative(0.9f, -0.84f) + curveToRelative(0.45f, -0.43f, 0.51f, -1.13f, 0.15f, -1.64f) + lineToRelative(-1.29f, -1.77f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.37f, -0.47f) + lineToRelative(-2.02f, 0.62f) + curveToRelative(-1.17f, 0.35f, -2.23f, -0.6f, -3.37f, -2.57f) + curveTo(7.0f, 11.93f, 6.64f, 10.9f, 6.73f, 10.1f) + curveToRelative(0.05f, -0.42f, 0.24f, -0.8f, 0.55f, -1.09f) + lineToRelative(1.5f, -1.39f) + curveToRelative(0.38f, -0.37f, 0.5f, -0.94f, 0.28f, -1.43f) + lineToRelative(-0.9f, -2.0f) + curveToRelative(-0.26f, -0.58f, -0.9f, -0.87f, -1.5f, -0.69f) + close() + moveTo(21.78f, 2.22f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineTo(18.56f, 6.5f) + lineToRelative(3.22f, 3.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(17.5f, 7.56f) + lineToRelative(-3.22f, 3.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(3.22f, -3.22f) + lineToRelative(-3.22f, -3.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineToRelative(3.22f, 3.22f) + lineToRelative(3.22f, -3.22f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + } + } + return _callDismiss!! + } + +private var _callDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallEnd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallEnd.kt new file mode 100644 index 00000000..1dd18d25 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallEnd.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CallEnd: ImageVector + get() { + if (_callEnd != null) { + return _callEnd!! + } + _callEnd = fluentIcon(name = "Regular.CallEnd") { + fluentPath { + moveToRelative(21.9f, 13.2f) + lineToRelative(-0.19f, 0.82f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.95f, 2.1f) + lineTo(17.0f, 15.96f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.4f, -2.12f) + lineToRelative(-0.39f, -1.69f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.11f, -0.15f) + arcToRelative(4.66f, 4.66f, 0.0f, false, false, -2.1f, -0.32f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.79f, 0.19f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.3f, 0.11f) + lineToRelative(-0.09f, 0.05f) + lineToRelative(-0.01f, 0.04f) + lineToRelative(-0.41f, 1.77f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 7.0f, 15.95f) + lineToRelative(-1.75f, 0.18f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.95f, -2.1f) + lineToRelative(-0.2f, -0.82f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 1.13f, -3.65f) + curveTo(5.13f, 7.84f, 8.06f, 7.0f, 12.0f, 7.0f) + curveToRelative(3.94f, 0.0f, 6.88f, 0.84f, 8.78f, 2.57f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 1.17f, 3.41f) + lineToRelative(-0.05f, 0.22f) + close() + moveTo(20.48f, 12.69f) + curveToRelative(0.11f, -0.74f, -0.15f, -1.5f, -0.71f, -2.01f) + curveTo(18.18f, 9.24f, 15.6f, 8.5f, 12.0f, 8.5f) + curveToRelative(-3.6f, 0.0f, -6.18f, 0.74f, -7.76f, 2.17f) + curveToRelative(-0.6f, 0.55f, -0.87f, 1.4f, -0.68f, 2.2f) + lineToRelative(0.2f, 0.81f) + curveToRelative(0.14f, 0.6f, 0.72f, 1.02f, 1.34f, 0.95f) + lineToRelative(1.75f, -0.17f) + curveToRelative(0.53f, -0.06f, 0.97f, -0.45f, 1.09f, -0.97f) + lineToRelative(0.42f, -1.82f) + lineToRelative(0.04f, -0.13f) + curveToRelative(0.38f, -1.0f, 1.6f, -1.37f, 3.6f, -1.37f) + curveToRelative(1.32f, 0.0f, 2.27f, 0.16f, 2.88f, 0.54f) + curveToRelative(0.4f, 0.24f, 0.69f, 0.64f, 0.8f, 1.1f) + lineToRelative(0.38f, 1.68f) + curveToRelative(0.12f, 0.52f, 0.56f, 0.91f, 1.1f, 0.96f) + lineToRelative(1.75f, 0.18f) + curveToRelative(0.62f, 0.07f, 1.2f, -0.34f, 1.34f, -0.95f) + lineToRelative(0.2f, -0.82f) + lineToRelative(0.03f, -0.17f) + close() + } + } + return _callEnd!! + } + +private var _callEnd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallForward.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallForward.kt new file mode 100644 index 00000000..96b7f327 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallForward.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CallForward: ImageVector + get() { + if (_callForward != null) { + return _callForward!! + } + _callForward = fluentIcon(name = "Regular.CallForward") { + fluentPath { + moveToRelative(9.98f, 2.05f) + lineToRelative(0.22f, 0.05f) + lineToRelative(0.82f, 0.2f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.1f, 2.95f) + lineTo(12.95f, 7.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.12f, 2.4f) + lineToRelative(-1.69f, 0.4f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.15f, 0.1f) + curveToRelative(-0.2f, 0.33f, -0.32f, 1.04f, -0.32f, 2.1f) + curveToRelative(0.0f, 0.79f, 0.06f, 1.39f, 0.19f, 1.79f) + curveToRelative(0.04f, 0.14f, 0.08f, 0.24f, 0.11f, 0.3f) + lineToRelative(0.05f, 0.09f) + lineToRelative(0.04f, 0.01f) + lineToRelative(1.77f, 0.41f) + curveToRelative(1.15f, 0.27f, 2.0f, 1.23f, 2.12f, 2.4f) + lineToRelative(0.17f, 1.75f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.1f, 2.95f) + lineToRelative(-0.8f, 0.2f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.66f, -1.13f) + curveTo(4.84f, 18.87f, 4.0f, 15.94f, 4.0f, 12.0f) + curveToRelative(0.0f, -3.94f, 0.84f, -6.87f, 2.57f, -8.77f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 3.41f, -1.18f) + close() + moveTo(7.68f, 4.24f) + curveTo(6.24f, 5.82f, 5.5f, 8.4f, 5.5f, 12.0f) + curveToRelative(0.0f, 3.6f, 0.74f, 6.18f, 2.17f, 7.76f) + curveToRelative(0.55f, 0.6f, 1.4f, 0.87f, 2.2f, 0.68f) + lineToRelative(0.8f, -0.2f) + curveToRelative(0.62f, -0.14f, 1.03f, -0.72f, 0.96f, -1.34f) + lineToRelative(-0.18f, -1.74f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -0.96f, -1.1f) + lineToRelative(-1.82f, -0.42f) + lineToRelative(-0.13f, -0.04f) + curveToRelative(-1.0f, -0.38f, -1.37f, -1.6f, -1.37f, -3.6f) + curveToRelative(0.0f, -1.32f, 0.16f, -2.26f, 0.54f, -2.88f) + curveToRelative(0.24f, -0.4f, 0.64f, -0.68f, 1.1f, -0.79f) + lineToRelative(1.68f, -0.39f) + curveToRelative(0.52f, -0.12f, 0.91f, -0.56f, 0.96f, -1.1f) + lineToRelative(0.18f, -1.75f) + curveToRelative(0.07f, -0.62f, -0.34f, -1.2f, -0.96f, -1.34f) + lineToRelative(-0.81f, -0.19f) + lineToRelative(-0.17f, -0.03f) + curveToRelative(-0.74f, -0.12f, -1.5f, 0.15f, -2.01f, 0.7f) + close() + moveTo(15.65f, 7.3f) + lineTo(15.72f, 7.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + lineToRelative(4.0f, 4.0f) + curveToRelative(0.26f, 0.26f, 0.29f, 0.68f, 0.07f, 0.97f) + lineToRelative(-0.07f, 0.09f) + lineToRelative(-4.0f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.97f) + lineToRelative(0.07f, -0.09f) + lineToRelative(2.71f, -2.71f) + lineTo(12.0f, 12.51f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.38f, 0.27f, -0.7f, 0.64f, -0.75f) + horizontalLineToRelative(6.54f) + lineToRelative(-2.72f, -2.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(-0.07f, 0.08f) + close() + } + } + return _callForward!! + } + +private var _callForward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallInbound.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallInbound.kt new file mode 100644 index 00000000..ef339527 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallInbound.kt @@ -0,0 +1,88 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CallInbound: ImageVector + get() { + if (_callInbound != null) { + return _callInbound!! + } + _callInbound = fluentIcon(name = "Regular.CallInbound") { + fluentPath { + moveToRelative(9.53f, 3.57f) + lineToRelative(0.9f, 2.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.64f, 3.15f) + lineTo(8.3f, 10.1f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.08f, 0.16f) + curveToRelative(-0.04f, 0.4f, 0.23f, 1.17f, 0.85f, 2.24f) + curveToRelative(0.45f, 0.78f, 0.86f, 1.33f, 1.2f, 1.64f) + curveToRelative(0.25f, 0.21f, 0.38f, 0.26f, 0.44f, 0.24f) + lineToRelative(2.0f, -0.61f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 3.04f, 1.02f) + lineToRelative(1.28f, 1.77f) + curveToRelative(0.8f, 1.12f, 0.66f, 2.66f, -0.34f, 3.6f) + lineToRelative(-0.88f, 0.85f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.6f, 0.89f) + curveToRelative(-2.74f, -0.77f, -5.21f, -3.1f, -7.43f, -6.93f) + curveToRelative(-2.21f, -3.83f, -2.99f, -7.14f, -2.27f, -9.91f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.34f, -2.58f) + lineToRelative(0.2f, -0.07f) + lineToRelative(1.17f, -0.35f) + curveToRelative(1.33f, -0.4f, 2.74f, 0.24f, 3.3f, 1.5f) + close() + moveTo(6.66f, 3.5f) + lineToRelative(-1.17f, 0.35f) + lineToRelative(-0.16f, 0.06f) + curveToRelative(-0.67f, 0.26f, -1.19f, 0.83f, -1.37f, 1.54f) + curveToRelative(-0.6f, 2.33f, 0.09f, 5.26f, 2.12f, 8.78f) + curveToRelative(2.04f, 3.53f, 4.23f, 5.59f, 6.54f, 6.23f) + curveToRelative(0.76f, 0.21f, 1.58f, 0.01f, 2.15f, -0.53f) + lineToRelative(0.9f, -0.84f) + curveToRelative(0.45f, -0.43f, 0.51f, -1.13f, 0.15f, -1.64f) + lineToRelative(-1.29f, -1.77f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.37f, -0.47f) + lineToRelative(-2.02f, 0.62f) + curveToRelative(-1.17f, 0.35f, -2.23f, -0.6f, -3.37f, -2.57f) + curveTo(7.0f, 11.93f, 6.64f, 10.9f, 6.73f, 10.1f) + curveToRelative(0.05f, -0.42f, 0.24f, -0.8f, 0.55f, -1.09f) + lineToRelative(1.5f, -1.39f) + curveToRelative(0.38f, -0.37f, 0.5f, -0.94f, 0.28f, -1.43f) + lineToRelative(-0.9f, -2.0f) + curveToRelative(-0.26f, -0.58f, -0.9f, -0.87f, -1.5f, -0.69f) + close() + moveTo(20.25f, 11.0f) + horizontalLineTo(13.7f) + lineToRelative(-0.1f, -0.02f) + lineToRelative(-0.1f, -0.02f) + lineToRelative(-0.05f, -0.02f) + arcToRelative(0.72f, 0.72f, 0.0f, false, true, -0.34f, -0.3f) + lineToRelative(-0.05f, -0.1f) + lineToRelative(-0.03f, -0.06f) + lineToRelative(-0.02f, -0.1f) + lineToRelative(-0.01f, -0.1f) + verticalLineTo(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(4.79f) + lineToRelative(6.22f, -6.22f) + curveToRelative(0.27f, -0.27f, 0.68f, -0.3f, 0.98f, -0.08f) + lineToRelative(0.08f, 0.08f) + curveToRelative(0.27f, 0.26f, 0.29f, 0.68f, 0.07f, 0.97f) + lineToRelative(-0.07f, 0.09f) + lineToRelative(-6.22f, 6.22f) + horizontalLineToRelative(4.69f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + horizontalLineToRelative(-0.1f) + close() + } + } + return _callInbound!! + } + +private var _callInbound: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallMissed.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallMissed.kt new file mode 100644 index 00000000..1ea265c3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallMissed.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CallMissed: ImageVector + get() { + if (_callMissed != null) { + return _callMissed!! + } + _callMissed = fluentIcon(name = "Regular.CallMissed") { + fluentPath { + moveTo(12.01f, 2.5f) + curveToRelative(3.95f, 0.0f, 6.88f, 0.84f, 8.78f, 2.57f) + curveToRelative(0.95f, 0.86f, 1.4f, 2.16f, 1.17f, 3.42f) + lineToRelative(-0.04f, 0.2f) + lineToRelative(-0.2f, 0.82f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.95f, 2.11f) + lineToRelative(-1.75f, -0.18f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.4f, -2.11f) + lineToRelative(-0.4f, -1.69f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.1f, -0.16f) + arcToRelative(4.66f, 4.66f, 0.0f, false, false, -2.1f, -0.32f) + curveToRelative(-1.47f, 0.0f, -2.16f, 0.23f, -2.2f, 0.4f) + lineToRelative(-0.4f, 1.77f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.4f, 2.11f) + lineToRelative(-1.75f, 0.18f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.96f, -2.1f) + lineToRelative(-0.2f, -0.81f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 1.14f, -3.65f) + curveTo(5.15f, 3.34f, 8.08f, 2.5f, 12.0f, 2.5f) + close() + moveTo(12.01f, 4.0f) + curveToRelative(-3.6f, 0.0f, -6.17f, 0.73f, -7.75f, 2.17f) + curveToRelative(-0.61f, 0.55f, -0.87f, 1.39f, -0.68f, 2.19f) + lineToRelative(0.2f, 0.82f) + curveToRelative(0.14f, 0.6f, 0.71f, 1.01f, 1.34f, 0.95f) + lineToRelative(1.74f, -0.18f) + curveToRelative(0.53f, -0.05f, 0.97f, -0.44f, 1.1f, -0.96f) + lineToRelative(0.4f, -1.78f) + curveToRelative(0.27f, -1.13f, 1.53f, -1.55f, 3.65f, -1.55f) + curveToRelative(1.32f, 0.0f, 2.27f, 0.17f, 2.88f, 0.54f) + curveToRelative(0.4f, 0.25f, 0.7f, 0.64f, 0.8f, 1.1f) + lineTo(16.08f, 9.0f) + curveToRelative(0.12f, 0.52f, 0.56f, 0.9f, 1.09f, 0.96f) + lineToRelative(1.75f, 0.18f) + curveToRelative(0.63f, 0.06f, 1.2f, -0.35f, 1.35f, -0.96f) + lineToRelative(0.19f, -0.82f) + lineToRelative(0.03f, -0.17f) + curveToRelative(0.12f, -0.74f, -0.15f, -1.5f, -0.7f, -2.0f) + curveTo(18.18f, 4.74f, 15.61f, 4.0f, 12.0f, 4.0f) + close() + moveTo(12.5f, 14.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(-1.75f) + close() + moveTo(6.5f, 16.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, -11.0f, 0.0f) + close() + moveTo(12.0f, 12.5f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) + close() + } + } + return _callMissed!! + } + +private var _callMissed: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallOutbound.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallOutbound.kt new file mode 100644 index 00000000..0d93b4d0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallOutbound.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CallOutbound: ImageVector + get() { + if (_callOutbound != null) { + return _callOutbound!! + } + _callOutbound = fluentIcon(name = "Regular.CallOutbound") { + fluentPath { + moveToRelative(9.53f, 3.57f) + lineToRelative(0.9f, 2.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.64f, 3.15f) + lineTo(8.3f, 10.1f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.08f, 0.16f) + curveToRelative(-0.04f, 0.4f, 0.23f, 1.17f, 0.85f, 2.24f) + curveToRelative(0.45f, 0.78f, 0.86f, 1.33f, 1.2f, 1.64f) + curveToRelative(0.25f, 0.21f, 0.38f, 0.26f, 0.44f, 0.24f) + lineToRelative(2.0f, -0.61f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 3.04f, 1.02f) + lineToRelative(1.28f, 1.77f) + curveToRelative(0.8f, 1.12f, 0.66f, 2.66f, -0.34f, 3.6f) + lineToRelative(-0.88f, 0.85f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.6f, 0.89f) + curveToRelative(-2.74f, -0.77f, -5.21f, -3.1f, -7.43f, -6.93f) + curveToRelative(-2.21f, -3.83f, -2.99f, -7.14f, -2.27f, -9.91f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.34f, -2.58f) + lineToRelative(0.2f, -0.07f) + lineToRelative(1.17f, -0.35f) + curveToRelative(1.33f, -0.4f, 2.74f, 0.24f, 3.3f, 1.5f) + close() + moveTo(6.66f, 3.5f) + lineToRelative(-1.17f, 0.35f) + lineToRelative(-0.16f, 0.06f) + curveToRelative(-0.67f, 0.26f, -1.19f, 0.83f, -1.37f, 1.54f) + curveToRelative(-0.6f, 2.33f, 0.09f, 5.26f, 2.12f, 8.78f) + curveToRelative(2.04f, 3.53f, 4.23f, 5.59f, 6.54f, 6.23f) + curveToRelative(0.76f, 0.21f, 1.58f, 0.01f, 2.15f, -0.53f) + lineToRelative(0.9f, -0.84f) + curveToRelative(0.45f, -0.43f, 0.51f, -1.13f, 0.15f, -1.64f) + lineToRelative(-1.29f, -1.77f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.37f, -0.47f) + lineToRelative(-2.02f, 0.62f) + curveToRelative(-1.17f, 0.35f, -2.23f, -0.6f, -3.37f, -2.57f) + curveTo(7.0f, 11.93f, 6.64f, 10.9f, 6.73f, 10.1f) + curveToRelative(0.05f, -0.42f, 0.24f, -0.8f, 0.55f, -1.09f) + lineToRelative(1.5f, -1.39f) + curveToRelative(0.38f, -0.37f, 0.5f, -0.94f, 0.28f, -1.43f) + lineToRelative(-0.9f, -2.0f) + curveToRelative(-0.26f, -0.58f, -0.9f, -0.87f, -1.5f, -0.69f) + close() + moveTo(14.75f, 2.0f) + horizontalLineToRelative(6.51f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.08f, 0.0f) + lineToRelative(0.06f, 0.02f) + lineToRelative(0.1f, 0.02f) + lineToRelative(0.09f, 0.04f) + lineToRelative(0.06f, 0.04f) + arcToRelative(0.68f, 0.68f, 0.0f, false, true, 0.23f, 0.22f) + lineToRelative(0.04f, 0.08f) + lineToRelative(0.04f, 0.1f) + lineToRelative(0.03f, 0.1f) + verticalLineToRelative(0.1f) + lineTo(22.0f, 9.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-4.8f) + lineToRelative(-6.22f, 6.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.08f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.09f) + lineToRelative(6.22f, -6.22f) + horizontalLineToRelative(-4.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.73f, -0.65f) + lineToRelative(-0.01f, -0.1f) + curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _callOutbound!! + } + +private var _callOutbound: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallPark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallPark.kt new file mode 100644 index 00000000..7a0c7680 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallPark.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CallPark: ImageVector + get() { + if (_callPark != null) { + return _callPark!! + } + _callPark = fluentIcon(name = "Regular.CallPark") { + fluentPath { + moveToRelative(9.53f, 3.57f) + lineToRelative(0.9f, 2.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.64f, 3.15f) + lineTo(8.3f, 10.1f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.08f, 0.16f) + curveToRelative(-0.04f, 0.4f, 0.23f, 1.17f, 0.85f, 2.24f) + curveToRelative(0.45f, 0.78f, 0.86f, 1.33f, 1.2f, 1.64f) + curveToRelative(0.25f, 0.21f, 0.38f, 0.26f, 0.44f, 0.24f) + lineToRelative(2.0f, -0.61f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 3.04f, 1.02f) + lineToRelative(1.28f, 1.77f) + curveToRelative(0.8f, 1.12f, 0.66f, 2.66f, -0.34f, 3.6f) + lineToRelative(-0.88f, 0.85f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.6f, 0.89f) + curveToRelative(-2.74f, -0.77f, -5.21f, -3.1f, -7.43f, -6.93f) + curveToRelative(-2.21f, -3.83f, -2.99f, -7.14f, -2.27f, -9.91f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 2.55f, -2.65f) + lineToRelative(1.16f, -0.35f) + curveToRelative(1.33f, -0.4f, 2.74f, 0.24f, 3.3f, 1.5f) + close() + moveTo(6.66f, 3.5f) + lineToRelative(-1.17f, 0.35f) + curveToRelative(-0.75f, 0.23f, -1.33f, 0.83f, -1.53f, 1.6f) + curveToRelative(-0.6f, 2.33f, 0.09f, 5.26f, 2.12f, 8.78f) + curveToRelative(2.04f, 3.53f, 4.23f, 5.59f, 6.54f, 6.23f) + curveToRelative(0.76f, 0.21f, 1.58f, 0.01f, 2.15f, -0.53f) + lineToRelative(0.9f, -0.84f) + curveToRelative(0.45f, -0.43f, 0.51f, -1.13f, 0.15f, -1.64f) + lineToRelative(-1.29f, -1.77f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.37f, -0.47f) + lineToRelative(-2.02f, 0.62f) + curveToRelative(-1.17f, 0.35f, -2.23f, -0.6f, -3.37f, -2.57f) + curveTo(7.0f, 11.93f, 6.64f, 10.9f, 6.73f, 10.1f) + curveToRelative(0.05f, -0.42f, 0.24f, -0.8f, 0.55f, -1.09f) + lineToRelative(1.5f, -1.39f) + curveToRelative(0.38f, -0.37f, 0.5f, -0.94f, 0.28f, -1.43f) + lineToRelative(-0.9f, -2.0f) + curveToRelative(-0.26f, -0.58f, -0.9f, -0.87f, -1.5f, -0.69f) + close() + moveTo(14.75f, 2.0f) + horizontalLineToRelative(2.5f) + curveTo(19.64f, 2.0f, 21.0f, 3.14f, 21.0f, 5.25f) + curveToRelative(0.0f, 2.04f, -1.28f, 3.17f, -3.52f, 3.24f) + lineTo(15.5f, 8.49f) + verticalLineToRelative(2.77f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(14.0f, 2.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(2.5f) + horizontalLineToRelative(-2.5f) + close() + moveTo(17.25f, 3.5f) + lineTo(15.5f, 3.5f) + lineTo(15.5f, 7.0f) + horizontalLineToRelative(1.75f) + curveToRelative(1.61f, 0.0f, 2.25f, -0.53f, 2.25f, -1.75f) + curveToRelative(0.0f, -1.17f, -0.59f, -1.7f, -2.06f, -1.75f) + horizontalLineToRelative(-0.2f) + close() + } + } + return _callPark!! + } + +private var _callPark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallPause.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallPause.kt new file mode 100644 index 00000000..00ecaa11 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallPause.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CallPause: ImageVector + get() { + if (_callPause != null) { + return _callPause!! + } + _callPause = fluentIcon(name = "Regular.CallPause") { + fluentPath { + moveTo(15.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-7.5f) + close() + moveTo(19.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-7.5f) + close() + moveTo(10.43f, 5.63f) + lineTo(9.53f, 3.63f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -3.3f, -1.51f) + lineToRelative(-1.17f, 0.35f) + lineToRelative(-0.2f, 0.07f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 2.5f, 5.12f) + curveToRelative(-0.72f, 2.77f, 0.06f, 6.08f, 2.27f, 9.91f) + curveToRelative(2.22f, 3.83f, 4.69f, 6.16f, 7.44f, 6.93f) + curveToRelative(1.27f, 0.35f, 2.63f, 0.01f, 3.59f, -0.9f) + lineToRelative(0.88f, -0.83f) + curveToRelative(1.0f, -0.95f, 1.15f, -2.49f, 0.34f, -3.6f) + lineToRelative(-1.28f, -1.78f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -3.03f, -1.02f) + lineToRelative(-2.01f, 0.61f) + curveToRelative(-0.06f, 0.02f, -0.2f, -0.03f, -0.44f, -0.24f) + curveToRelative(-0.34f, -0.31f, -0.75f, -0.86f, -1.2f, -1.64f) + curveToRelative(-0.62f, -1.07f, -0.9f, -1.85f, -0.85f, -2.24f) + curveToRelative(0.0f, -0.06f, 0.04f, -0.12f, 0.08f, -0.16f) + lineToRelative(1.5f, -1.4f) + curveToRelative(0.86f, -0.8f, 1.11f, -2.06f, 0.63f, -3.13f) + close() + moveTo(5.49f, 3.9f) + lineToRelative(1.17f, -0.36f) + curveToRelative(0.6f, -0.18f, 1.24f, 0.12f, 1.5f, 0.69f) + lineToRelative(0.9f, 2.0f) + curveToRelative(0.22f, 0.5f, 0.1f, 1.07f, -0.29f, 1.43f) + lineToRelative(-1.5f, 1.4f) + curveToRelative(-0.3f, 0.28f, -0.5f, 0.66f, -0.54f, 1.08f) + curveToRelative(-0.09f, 0.8f, 0.27f, 1.83f, 1.04f, 3.16f) + curveToRelative(1.14f, 1.98f, 2.2f, 2.92f, 3.37f, 2.57f) + lineToRelative(2.02f, -0.62f) + curveToRelative(0.5f, -0.15f, 1.06f, 0.03f, 1.37f, 0.47f) + lineToRelative(1.29f, 1.77f) + curveToRelative(0.36f, 0.5f, 0.3f, 1.2f, -0.16f, 1.64f) + lineToRelative(-0.89f, 0.84f) + curveToRelative(-0.57f, 0.54f, -1.39f, 0.75f, -2.15f, 0.53f) + curveToRelative(-2.31f, -0.64f, -4.5f, -2.7f, -6.54f, -6.23f) + curveToRelative(-2.03f, -3.52f, -2.72f, -6.45f, -2.12f, -8.78f) + curveToRelative(0.18f, -0.71f, 0.7f, -1.28f, 1.37f, -1.54f) + lineToRelative(0.16f, -0.05f) + close() + } + } + return _callPause!! + } + +private var _callPause: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallProhibited.kt new file mode 100644 index 00000000..565645b4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallProhibited.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CallProhibited: ImageVector + get() { + if (_callProhibited != null) { + return _callProhibited!! + } + _callProhibited = fluentIcon(name = "Regular.CallProhibited") { + fluentPath { + moveTo(12.01f, 2.5f) + curveToRelative(3.95f, 0.0f, 6.88f, 0.84f, 8.78f, 2.57f) + curveToRelative(0.95f, 0.86f, 1.4f, 2.16f, 1.17f, 3.42f) + lineToRelative(-0.04f, 0.2f) + lineToRelative(-0.2f, 0.82f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.95f, 2.11f) + lineToRelative(-1.75f, -0.18f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.4f, -2.11f) + lineToRelative(-0.4f, -1.69f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.1f, -0.16f) + arcToRelative(4.66f, 4.66f, 0.0f, false, false, -2.1f, -0.32f) + curveToRelative(-1.47f, 0.0f, -2.16f, 0.23f, -2.2f, 0.4f) + lineToRelative(-0.4f, 1.77f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.4f, 2.11f) + lineToRelative(-1.75f, 0.18f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.96f, -2.1f) + lineToRelative(-0.2f, -0.81f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 1.14f, -3.65f) + curveTo(5.15f, 3.34f, 8.08f, 2.5f, 12.0f, 2.5f) + close() + moveTo(12.01f, 4.0f) + curveToRelative(-3.6f, 0.0f, -6.17f, 0.73f, -7.75f, 2.17f) + curveToRelative(-0.61f, 0.55f, -0.87f, 1.39f, -0.68f, 2.19f) + lineToRelative(0.2f, 0.82f) + curveToRelative(0.14f, 0.6f, 0.71f, 1.01f, 1.34f, 0.95f) + lineToRelative(1.74f, -0.18f) + curveToRelative(0.53f, -0.05f, 0.97f, -0.44f, 1.1f, -0.96f) + lineToRelative(0.4f, -1.78f) + curveToRelative(0.27f, -1.13f, 1.53f, -1.55f, 3.65f, -1.55f) + curveToRelative(1.32f, 0.0f, 2.27f, 0.17f, 2.88f, 0.54f) + curveToRelative(0.4f, 0.25f, 0.7f, 0.64f, 0.8f, 1.1f) + lineTo(16.08f, 9.0f) + curveToRelative(0.12f, 0.52f, 0.56f, 0.9f, 1.09f, 0.96f) + lineToRelative(1.75f, 0.18f) + curveToRelative(0.63f, 0.06f, 1.2f, -0.35f, 1.35f, -0.96f) + lineToRelative(0.19f, -0.82f) + lineToRelative(0.03f, -0.17f) + curveToRelative(0.12f, -0.74f, -0.15f, -1.5f, -0.7f, -2.0f) + curveTo(18.18f, 4.74f, 15.61f, 4.0f, 12.0f, 4.0f) + close() + moveTo(12.0f, 22.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, 11.0f) + close() + moveTo(12.0f, 20.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) + lineToRelative(-5.55f, 5.56f) + curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) + close() + moveTo(8.7f, 18.75f) + lineTo(14.25f, 13.19f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -5.56f, 5.56f) + close() + } + } + return _callProhibited!! + } + +private var _callProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallTransfer.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallTransfer.kt new file mode 100644 index 00000000..342c7a60 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CallTransfer.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CallTransfer: ImageVector + get() { + if (_callTransfer != null) { + return _callTransfer!! + } + _callTransfer = fluentIcon(name = "Regular.CallTransfer") { + fluentPath { + moveToRelative(6.22f, 2.07f) + lineToRelative(-1.16f, 0.35f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 2.5f, 5.07f) + curveToRelative(-0.72f, 2.77f, 0.06f, 6.08f, 2.27f, 9.91f) + curveToRelative(2.22f, 3.83f, 4.69f, 6.16f, 7.44f, 6.93f) + curveToRelative(1.27f, 0.35f, 2.63f, 0.01f, 3.59f, -0.9f) + lineToRelative(0.88f, -0.83f) + curveToRelative(1.0f, -0.95f, 1.15f, -2.49f, 0.34f, -3.6f) + lineToRelative(-1.28f, -1.78f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -3.03f, -1.02f) + lineToRelative(-2.01f, 0.61f) + curveToRelative(-0.06f, 0.02f, -0.2f, -0.03f, -0.44f, -0.24f) + curveToRelative(-0.34f, -0.31f, -0.75f, -0.86f, -1.2f, -1.64f) + curveToRelative(-0.62f, -1.07f, -0.9f, -1.85f, -0.85f, -2.24f) + curveToRelative(0.0f, -0.06f, 0.04f, -0.12f, 0.08f, -0.16f) + lineToRelative(1.5f, -1.4f) + curveToRelative(0.86f, -0.8f, 1.11f, -2.06f, 0.63f, -3.13f) + lineToRelative(-0.9f, -2.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -3.3f, -1.51f) + close() + moveTo(3.96f, 5.45f) + curveToRelative(0.2f, -0.77f, 0.78f, -1.37f, 1.53f, -1.6f) + lineToRelative(1.17f, -0.35f) + curveToRelative(0.6f, -0.18f, 1.24f, 0.11f, 1.5f, 0.69f) + lineToRelative(0.9f, 2.0f) + curveToRelative(0.22f, 0.5f, 0.1f, 1.06f, -0.29f, 1.43f) + lineToRelative(-1.5f, 1.4f) + curveToRelative(-0.3f, 0.28f, -0.5f, 0.66f, -0.54f, 1.08f) + curveToRelative(-0.09f, 0.8f, 0.27f, 1.83f, 1.04f, 3.16f) + curveToRelative(1.14f, 1.97f, 2.2f, 2.92f, 3.37f, 2.57f) + lineToRelative(2.02f, -0.62f) + curveToRelative(0.5f, -0.16f, 1.06f, 0.03f, 1.37f, 0.47f) + lineToRelative(1.29f, 1.77f) + curveToRelative(0.36f, 0.5f, 0.3f, 1.2f, -0.16f, 1.64f) + lineToRelative(-0.89f, 0.84f) + curveToRelative(-0.57f, 0.54f, -1.39f, 0.74f, -2.15f, 0.53f) + curveToRelative(-2.31f, -0.64f, -4.5f, -2.7f, -6.54f, -6.23f) + curveToRelative(-2.03f, -3.52f, -2.72f, -6.45f, -2.12f, -8.78f) + close() + moveTo(14.0f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(20.5f, 4.56f) + lineToRelative(-3.97f, 3.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(3.97f, -3.97f) + horizontalLineToRelative(-4.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(14.0f, 10.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(12.75f, 12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + } + } + return _callTransfer!! + } + +private var _callTransfer: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalligraphyPen.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalligraphyPen.kt new file mode 100644 index 00000000..72a3d3de --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CalligraphyPen.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CalligraphyPen: ImageVector + get() { + if (_calligraphyPen != null) { + return _calligraphyPen!! + } + _calligraphyPen = fluentIcon(name = "Regular.CalligraphyPen") { + fluentPath { + moveTo(7.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.9f, 0.67f, 1.64f, 1.54f, 1.74f) + lineToRelative(-1.01f, 2.5f) + curveToRelative(-0.41f, 1.0f, -0.37f, 2.19f, 0.12f, 3.15f) + lineToRelative(3.99f, 7.95f) + curveToRelative(0.28f, 0.56f, 0.8f, 0.91f, 1.36f, 0.91f) + reflectiveCurveToRelative(1.08f, -0.35f, 1.36f, -0.91f) + lineToRelative(4.0f, -7.95f) + curveToRelative(0.48f, -0.96f, 0.52f, -2.14f, 0.11f, -3.15f) + lineToRelative(-1.01f, -2.5f) + curveToRelative(0.87f, -0.1f, 1.54f, -0.84f, 1.54f, -1.74f) + verticalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-3.0f) + close() + moveTo(14.84f, 7.5f) + lineTo(16.08f, 10.56f) + curveToRelative(0.25f, 0.6f, 0.22f, 1.33f, -0.07f, 1.9f) + lineToRelative(-3.26f, 6.5f) + lineTo(12.75f, 12.3f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, -1.5f, 0.0f) + verticalLineToRelative(6.67f) + lineToRelative(-3.26f, -6.5f) + arcToRelative(2.37f, 2.37f, 0.0f, false, true, -0.07f, -1.91f) + lineTo(9.16f, 7.5f) + horizontalLineToRelative(5.68f) + close() + } + } + return _calligraphyPen!! + } + +private var _calligraphyPen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Camera.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Camera.kt new file mode 100644 index 00000000..4e0ff087 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Camera.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Camera: ImageVector + get() { + if (_camera != null) { + return _camera!! + } + _camera = fluentIcon(name = "Regular.Camera") { + fluentPath { + moveTo(13.92f, 2.5f) + curveToRelative(0.8f, 0.0f, 1.54f, 0.43f, 1.94f, 1.11f) + lineToRelative(0.82f, 1.4f) + horizontalLineToRelative(2.07f) + curveTo(20.55f, 5.0f, 22.0f, 6.45f, 22.0f, 8.24f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(5.25f, 20.99f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 17.75f) + verticalLineToRelative(-9.5f) + curveTo(2.0f, 6.45f, 3.46f, 5.0f, 5.25f, 5.0f) + horizontalLineToRelative(2.08f) + lineToRelative(0.88f, -1.42f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 1.91f, -1.08f) + horizontalLineToRelative(3.8f) + close() + moveTo(13.92f, 4.0f) + horizontalLineToRelative(-3.8f) + curveToRelative(-0.22f, 0.0f, -0.43f, 0.1f, -0.57f, 0.27f) + lineToRelative(-0.07f, 0.1f) + lineToRelative(-1.1f, 1.77f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.63f, 0.36f) + horizontalLineToRelative(-2.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.37f) + lineToRelative(-1.03f, -1.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, -0.37f) + close() + moveTo(12.0f, 8.0f) + arcToRelative(4.5f, 4.5f, 0.0f, true, true, 0.0f, 9.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 0.0f, -9.0f) + close() + moveTo(12.0f, 9.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + } + } + return _camera!! + } + +private var _camera: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CameraAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CameraAdd.kt new file mode 100644 index 00000000..a888c40b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CameraAdd.kt @@ -0,0 +1,93 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CameraAdd: ImageVector + get() { + if (_cameraAdd != null) { + return _cameraAdd!! + } + _cameraAdd = fluentIcon(name = "Regular.CameraAdd") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(17.5f, 14.0f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + lineToRelative(-0.01f, 0.09f) + lineTo(17.0f, 17.0f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(0.18f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.37f, 0.4f, 0.4f) + lineToRelative(0.1f, 0.01f) + lineTo(17.0f, 18.0f) + verticalLineToRelative(2.6f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + horizontalLineToRelative(0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) + lineToRelative(0.01f, -0.1f) + lineTo(18.0f, 18.0f) + horizontalLineToRelative(2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) + verticalLineToRelative(-0.19f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) + horizontalLineToRelative(-0.1f) + lineTo(18.0f, 17.0f) + verticalLineToRelative(-2.59f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) + lineTo(17.5f, 14.0f) + close() + moveTo(13.92f, 2.5f) + curveToRelative(0.8f, 0.0f, 1.54f, 0.43f, 1.94f, 1.11f) + lineToRelative(0.82f, 1.4f) + horizontalLineToRelative(2.07f) + curveTo(20.55f, 5.0f, 22.0f, 6.45f, 22.0f, 8.24f) + verticalLineToRelative(4.56f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) + lineTo(20.5f, 8.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.37f) + lineToRelative(-1.03f, -1.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, -0.37f) + horizontalLineToRelative(-3.8f) + curveToRelative(-0.22f, 0.0f, -0.43f, 0.1f, -0.57f, 0.27f) + lineToRelative(-0.07f, 0.1f) + lineToRelative(-1.1f, 1.77f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.63f, 0.36f) + horizontalLineToRelative(-2.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(6.06f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(5.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 17.75f) + verticalLineToRelative(-9.5f) + curveTo(2.0f, 6.45f, 3.46f, 5.0f, 5.25f, 5.0f) + horizontalLineToRelative(2.08f) + lineToRelative(0.88f, -1.42f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 1.91f, -1.08f) + horizontalLineToRelative(3.8f) + close() + moveTo(12.0f, 8.0f) + curveToRelative(2.0f, 0.0f, 3.7f, 1.3f, 4.28f, 3.12f) + curveToRelative(-0.5f, 0.09f, -0.98f, 0.24f, -1.43f, 0.44f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, -3.51f, 3.87f) + curveToRelative(-0.16f, 0.46f, -0.27f, 0.96f, -0.31f, 1.47f) + arcTo(4.5f, 4.5f, 0.0f, false, true, 12.0f, 8.0f) + close() + } + } + return _cameraAdd!! + } + +private var _cameraAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CameraDome.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CameraDome.kt new file mode 100644 index 00000000..236da504 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CameraDome.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CameraDome: ImageVector + get() { + if (_cameraDome != null) { + return _cameraDome!! + } + _cameraDome = fluentIcon(name = "Regular.CameraDome") { + fluentPath { + moveTo(12.0f, 16.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) + close() + moveTo(12.0f, 8.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, -11.0f) + close() + moveTo(8.0f, 13.5f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, 8.0f, 0.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -8.0f, 0.0f) + close() + moveTo(2.0f, 3.75f) + curveTo(2.0f, 2.78f, 2.78f, 2.0f, 3.75f, 2.0f) + horizontalLineToRelative(16.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.7f, -0.4f, 1.3f, -1.0f, 1.58f) + lineTo(21.0f, 13.0f) + arcToRelative(9.0f, 9.0f, 0.0f, true, true, -18.0f, 0.0f) + lineTo(3.0f, 6.83f) + curveToRelative(-0.6f, -0.28f, -1.0f, -0.88f, -1.0f, -1.58f) + verticalLineToRelative(-1.5f) + close() + moveTo(4.5f, 7.0f) + verticalLineToRelative(6.0f) + arcToRelative(7.5f, 7.5f, 0.0f, true, false, 15.0f, 0.0f) + lineTo(19.5f, 7.0f) + horizontalLineToRelative(-15.0f) + close() + moveTo(3.75f, 3.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(16.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-1.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + lineTo(3.75f, 3.5f) + close() + } + } + return _cameraDome!! + } + +private var _cameraDome: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CameraOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CameraOff.kt new file mode 100644 index 00000000..f2432528 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CameraOff.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CameraOff: ImageVector + get() { + if (_cameraOff != null) { + return _cameraOff!! + } + _cameraOff = fluentIcon(name = "Regular.CameraOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(4.14f, 5.2f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 8.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 19.55f, 3.46f, 21.0f, 5.25f, 21.0f) + horizontalLineToRelative(13.5f) + curveToRelative(0.36f, 0.0f, 0.7f, -0.06f, 1.02f, -0.16f) + lineToRelative(0.95f, 0.94f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(18.44f, 19.5f) + lineTo(5.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(0.19f) + lineToRelative(3.11f, 3.11f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 6.34f, 6.34f) + lineToRelative(3.55f, 3.55f) + close() + moveTo(9.62f, 10.68f) + lineTo(13.82f, 14.88f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -4.2f, -4.2f) + close() + moveTo(11.24f, 8.06f) + lineTo(12.8f, 9.6f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.1f, 2.11f) + lineToRelative(1.55f, 1.55f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, -5.2f, -5.2f) + close() + moveTo(20.5f, 8.25f) + verticalLineToRelative(9.07f) + lineToRelative(1.36f, 1.36f) + curveToRelative(0.1f, -0.3f, 0.14f, -0.6f, 0.14f, -0.93f) + verticalLineToRelative(-9.5f) + curveTo(22.0f, 6.45f, 20.54f, 5.0f, 18.75f, 5.0f) + horizontalLineToRelative(-2.07f) + lineToRelative(-0.82f, -1.39f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.94f, -1.1f) + horizontalLineToRelative(-3.8f) + curveToRelative(-0.78f, 0.0f, -1.5f, 0.4f, -1.91f, 1.07f) + lineToRelative(-0.56f, 0.9f) + lineToRelative(1.1f, 1.08f) + lineToRelative(0.73f, -1.2f) + lineToRelative(0.07f, -0.09f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.57f, -0.27f) + horizontalLineToRelative(3.8f) + curveToRelative(0.27f, 0.0f, 0.52f, 0.14f, 0.65f, 0.37f) + lineToRelative(1.03f, 1.76f) + curveToRelative(0.14f, 0.23f, 0.38f, 0.37f, 0.65f, 0.37f) + horizontalLineToRelative(2.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + close() + } + } + return _cameraOff!! + } + +private var _cameraOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CameraSparkles.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CameraSparkles.kt new file mode 100644 index 00000000..370988cb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CameraSparkles.kt @@ -0,0 +1,101 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CameraSparkles: ImageVector + get() { + if (_cameraSparkles != null) { + return _cameraSparkles!! + } + _cameraSparkles = fluentIcon(name = "Regular.CameraSparkles") { + fluentPath { + moveTo(15.85f, 6.15f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, 0.69f, 1.11f) + lineToRelative(0.45f, 1.38f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 1.02f, 0.0f) + lineToRelative(0.45f, -1.38f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, 1.8f, -1.8f) + lineToRelative(1.38f, -0.44f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, -1.03f) + horizontalLineToRelative(-0.03f) + lineToRelative(-1.38f, -0.45f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.8f, -1.8f) + lineTo(18.0f, 0.36f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, -1.03f, 0.0f) + lineToRelative(-0.45f, 1.38f) + lineToRelative(-0.01f, 0.03f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.76f, 1.77f) + lineToRelative(-1.38f, 0.44f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, 1.03f) + lineToRelative(1.38f, 0.45f) + curveToRelative(0.42f, 0.14f, 0.8f, 0.37f, 1.11f, 0.69f) + close() + moveTo(23.02f, 9.96f) + lineTo(23.78f, 10.21f) + horizontalLineToRelative(0.02f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, 0.47f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, 0.1f) + lineToRelative(-0.77f, 0.26f) + arcToRelative(1.58f, 1.58f, 0.0f, false, false, -1.0f, 1.0f) + lineToRelative(-0.24f, 0.76f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.58f, 0.0f) + lineToRelative(-0.24f, -0.77f) + arcToRelative(1.57f, 1.57f, 0.0f, false, false, -1.0f, -1.0f) + lineToRelative(-0.77f, -0.25f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, -0.46f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, -0.1f) + lineToRelative(0.77f, -0.26f) + arcToRelative(1.58f, 1.58f, 0.0f, false, false, 0.98f, -1.0f) + lineToRelative(0.25f, -0.76f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.57f, 0.0f) + lineToRelative(0.25f, 0.77f) + arcToRelative(1.57f, 1.57f, 0.0f, false, false, 1.0f, 1.0f) + close() + moveTo(10.12f, 4.0f) + horizontalLineToRelative(1.96f) + arcToRelative(1.55f, 1.55f, 0.0f, false, true, 0.95f, -0.96f) + lineToRelative(1.4f, -0.45f) + lineToRelative(0.04f, -0.02f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.55f, -0.07f) + horizontalLineToRelative(-3.8f) + curveToRelative(-0.78f, 0.0f, -1.5f, 0.4f, -1.91f, 1.08f) + lineTo(7.33f, 5.0f) + lineTo(5.25f, 5.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 8.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 19.55f, 3.46f, 21.0f, 5.25f, 21.0f) + horizontalLineToRelative(13.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(22.0f, 13.9f) + arcToRelative(1.33f, 1.33f, 0.0f, false, true, -1.5f, -0.37f) + verticalLineToRelative(4.22f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(5.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.26f, 0.0f, 0.5f, -0.14f, 0.64f, -0.36f) + lineToRelative(1.1f, -1.78f) + lineToRelative(0.06f, -0.09f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.57f, -0.27f) + close() + moveTo(16.5f, 12.5f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, -9.0f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 9.0f, 0.0f) + close() + moveTo(9.0f, 12.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.0f) + close() + } + } + return _cameraSparkles!! + } + +private var _cameraSparkles: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CameraSwitch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CameraSwitch.kt new file mode 100644 index 00000000..258f4d72 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CameraSwitch.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CameraSwitch: ImageVector + get() { + if (_cameraSwitch != null) { + return _cameraSwitch!! + } + _cameraSwitch = fluentIcon(name = "Regular.CameraSwitch") { + fluentPath { + moveTo(21.25f, 7.5f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(8.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(6.06f, 20.0f) + lineToRelative(0.72f, 0.72f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-2.0f, -2.0f) + lineToRelative(-0.06f, -0.07f) + lineToRelative(-0.01f, -0.01f) + lineToRelative(0.07f, 0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-0.72f, 0.72f) + horizontalLineToRelative(12.69f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(18.2f, 2.15f) + lineToRelative(0.08f, 0.07f) + lineToRelative(2.0f, 2.0f) + lineToRelative(0.07f, 0.08f) + lineToRelative(-0.07f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.06f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(0.72f, -0.72f) + lineTo(5.25f, 5.5f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + lineToRelative(-0.01f, 0.15f) + verticalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-8.6f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(5.25f, 4.0f) + horizontalLineToRelative(12.69f) + lineToRelative(-0.72f, -0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + close() + moveTo(12.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, 0.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, -8.0f) + close() + moveTo(12.0f, 9.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, -5.0f) + close() + } + } + return _cameraSwitch!! + } + +private var _cameraSwitch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cart.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cart.kt new file mode 100644 index 00000000..bdea40ee --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cart.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Cart: ImageVector + get() { + if (_cart != null) { + return _cart!! + } + _cart = fluentIcon(name = "Regular.Cart") { + fluentPath { + moveTo(2.5f, 4.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(0.56f) + curveToRelative(0.95f, 0.0f, 1.52f, 0.64f, 1.84f, 1.23f) + curveToRelative(0.22f, 0.4f, 0.38f, 0.86f, 0.5f, 1.27f) + horizontalLineToRelative(12.6f) + curveToRelative(0.83f, 0.0f, 1.43f, 0.8f, 1.2f, 1.6f) + lineTo(18.12f, 14.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.64f, 2.0f) + lineTo(9.53f, 16.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.65f, -2.02f) + lineToRelative(-0.76f, -2.78f) + lineToRelative(-1.26f, -4.24f) + verticalLineToRelative(-0.01f) + curveToRelative(-0.16f, -0.57f, -0.3f, -1.1f, -0.52f, -1.5f) + curveTo(4.13f, 5.07f, 3.96f, 5.0f, 3.8f, 5.0f) + horizontalLineToRelative(-0.56f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(7.57f, 10.84f) + lineTo(8.32f, 13.58f) + curveToRelative(0.15f, 0.54f, 0.65f, 0.92f, 1.21f, 0.92f) + horizontalLineToRelative(5.95f) + curveToRelative(0.56f, 0.0f, 1.05f, -0.37f, 1.2f, -0.9f) + lineToRelative(1.74f, -6.1f) + lineTo(6.59f, 7.5f) + lineToRelative(0.97f, 3.29f) + lineToRelative(0.01f, 0.05f) + close() + moveTo(11.0f, 19.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(9.5f, 19.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -1.0f, 0.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + close() + moveTo(18.0f, 19.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(16.5f, 19.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -1.0f, 0.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + close() + } + } + return _cart!! + } + +private var _cart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cast.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cast.kt new file mode 100644 index 00000000..2060b17f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cast.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Cast: ImageVector + get() { + if (_cast != null) { + return _cast!! + } + _cast = fluentIcon(name = "Regular.Cast") { + fluentPath { + moveTo(2.0f, 6.25f) + curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) + horizontalLineToRelative(15.5f) + curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(4.25f, 20.0f) + curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) + lineTo(2.0f, 6.25f) + close() + moveTo(4.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(15.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(20.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(4.25f, 5.5f) + close() + moveTo(7.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(5.0f, 12.75f) + curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.75f, -0.75f) + curveToRelative(2.34f, 0.0f, 4.24f, 1.9f, 4.24f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.74f, -2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(5.0f, 9.75f) + curveToRelative(0.0f, -0.42f, 0.33f, -0.76f, 0.75f, -0.76f) + curveToRelative(4.0f, 0.0f, 7.25f, 3.25f, 7.25f, 7.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + arcToRelative(5.75f, 5.75f, 0.0f, false, false, -5.75f, -5.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _cast!! + } + +private var _cast: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CatchUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CatchUp.kt new file mode 100644 index 00000000..f133086f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CatchUp.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CatchUp: ImageVector + get() { + if (_catchUp != null) { + return _catchUp!! + } + _catchUp = fluentIcon(name = "Regular.CatchUp") { + fluentPath { + moveTo(9.28f, 8.16f) + curveToRelative(0.08f, -0.2f, 0.37f, -0.21f, 0.46f, 0.0f) + lineToRelative(3.24f, 7.76f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 3.17f, 0.12f) + lineToRelative(1.6f, -3.13f) + curveToRelative(0.13f, -0.25f, 0.39f, -0.41f, 0.67f, -0.41f) + horizontalLineToRelative(0.64f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.2f, -1.5f) + horizontalLineToRelative(-0.84f) + curveToRelative(-0.85f, 0.0f, -1.62f, 0.47f, -2.0f, 1.23f) + lineToRelative(-1.6f, 3.13f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.46f, -0.01f) + lineToRelative(-3.24f, -7.77f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -3.23f, 0.01f) + lineToRelative(-1.2f, 2.94f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, 0.47f) + horizontalLineTo(4.73f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.2f, 1.5f) + horizontalLineTo(6.0f) + curveToRelative(0.92f, 0.0f, 1.74f, -0.55f, 2.09f, -1.4f) + lineToRelative(1.2f, -2.94f) + close() + } + } + return _catchUp!! + } + +private var _catchUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cellular3G.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cellular3G.kt new file mode 100644 index 00000000..74ef83f4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cellular3G.kt @@ -0,0 +1,128 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Cellular3G: ImageVector + get() { + if (_cellular3G != null) { + return _cellular3G!! + } + _cellular3G = fluentIcon(name = "Regular.Cellular3G") { + fluentPath { + moveTo(12.9f, 3.62f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.28f, 0.79f) + lineToRelative(-0.02f, -0.02f) + arcToRelative(0.64f, 0.64f, 0.0f, false, false, -0.15f, -0.12f) + curveToRelative(-0.15f, -0.08f, -0.47f, -0.2f, -1.06f, -0.09f) + curveToRelative(-0.41f, 0.08f, -0.62f, 0.33f, -0.75f, 0.67f) + arcToRelative(2.1f, 2.1f, 0.0f, false, false, -0.14f, 0.65f) + verticalLineToRelative(1.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(0.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.97f, -0.75f) + horizontalLineToRelative(-0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.25f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.5f, 2.5f) + horizontalLineToRelative(-0.25f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 8.0f, 6.75f) + verticalLineTo(5.46f) + arcToRelative(2.57f, 2.57f, 0.0f, false, true, 0.03f, -0.34f) + curveToRelative(0.03f, -0.22f, 0.09f, -0.5f, 0.2f, -0.82f) + curveToRelative(0.25f, -0.62f, 0.8f, -1.4f, 1.88f, -1.6f) + curveToRelative(0.92f, -0.16f, 1.6f, 0.0f, 2.07f, 0.26f) + arcToRelative(2.13f, 2.13f, 0.0f, false, true, 0.7f, 0.64f) + lineToRelative(0.01f, 0.01f) + close() + } + fluentPath { + moveToRelative(4.5f, 4.57f) + lineToRelative(-0.06f, 0.04f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.88f, -1.22f) + curveToRelative(-0.07f, 0.06f, 0.64f, -0.64f, 1.69f, -0.64f) + curveToRelative(1.06f, 0.0f, 1.74f, 0.72f, 1.94f, 1.5f) + arcTo(2.07f, 2.07f, 0.0f, false, true, 6.86f, 6.0f) + curveToRelative(0.3f, 0.4f, 0.42f, 0.9f, 0.4f, 1.35f) + curveToRelative(-0.07f, 0.91f, -0.75f, 1.9f, -2.01f, 1.9f) + curveToRelative(-0.54f, 0.0f, -0.97f, -0.17f, -1.27f, -0.34f) + curveToRelative(-0.29f, -0.17f, -0.48f, -0.35f, -0.47f, -0.34f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.14f) + lineToRelative(0.01f, 0.01f) + curveToRelative(0.08f, 0.07f, 0.34f, 0.31f, 0.75f, 0.31f) + curveToRelative(0.18f, 0.0f, 0.29f, -0.06f, 0.36f, -0.14f) + arcToRelative(0.59f, 0.59f, 0.0f, false, false, 0.15f, -0.36f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.1f, -0.36f) + curveToRelative(-0.05f, -0.06f, -0.16f, -0.14f, -0.41f, -0.14f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + curveToRelative(0.28f, 0.0f, 0.38f, -0.1f, 0.43f, -0.18f) + curveToRelative(0.07f, -0.1f, 0.1f, -0.26f, 0.06f, -0.44f) + arcToRelative(0.53f, 0.53f, 0.0f, false, false, -0.17f, -0.28f) + arcToRelative(0.47f, 0.47f, 0.0f, false, false, -0.32f, -0.1f) + arcToRelative(1.06f, 1.06f, 0.0f, false, false, -0.68f, 0.25f) + arcToRelative(1.1f, 1.1f, 0.0f, false, false, -0.04f, 0.04f) + lineToRelative(-0.02f, 0.01f) + lineToRelative(-0.02f, 0.02f) + close() + } + fluentPath { + moveTo(11.75f, 12.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-7.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + fluentPath { + moveTo(15.75f, 9.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineTo(9.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + fluentPath { + moveTo(3.75f, 18.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-1.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + fluentPath { + moveTo(19.74f, 6.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.75f, 0.64f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.12f) + verticalLineTo(6.76f) + curveToRelative(0.0f, -0.42f, 0.33f, -0.76f, 0.74f, -0.76f) + close() + } + fluentPath { + moveTo(7.75f, 15.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-4.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _cellular3G!! + } + +private var _cellular3G: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cellular4G.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cellular4G.kt new file mode 100644 index 00000000..724d934d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cellular4G.kt @@ -0,0 +1,119 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Cellular4G: ImageVector + get() { + if (_cellular4G != null) { + return _cellular4G!! + } + _cellular4G = fluentIcon(name = "Regular.Cellular4G") { + fluentPath { + moveTo(12.9f, 3.62f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.28f, 0.79f) + lineToRelative(-0.02f, -0.02f) + arcToRelative(0.64f, 0.64f, 0.0f, false, false, -0.15f, -0.12f) + curveToRelative(-0.15f, -0.08f, -0.47f, -0.2f, -1.06f, -0.09f) + curveToRelative(-0.41f, 0.08f, -0.62f, 0.33f, -0.75f, 0.67f) + arcToRelative(2.1f, 2.1f, 0.0f, false, false, -0.14f, 0.65f) + verticalLineToRelative(1.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(0.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.97f, -0.75f) + horizontalLineToRelative(-0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(1.25f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.5f, 2.5f) + horizontalLineToRelative(-0.25f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 8.0f, 6.75f) + verticalLineTo(5.46f) + arcToRelative(2.6f, 2.6f, 0.0f, false, true, 0.03f, -0.34f) + curveToRelative(0.03f, -0.22f, 0.09f, -0.5f, 0.2f, -0.82f) + curveToRelative(0.25f, -0.62f, 0.8f, -1.4f, 1.88f, -1.6f) + curveToRelative(0.92f, -0.16f, 1.6f, 0.0f, 2.07f, 0.26f) + arcToRelative(2.13f, 2.13f, 0.0f, false, true, 0.7f, 0.64f) + lineToRelative(0.01f, 0.01f) + close() + } + fluentPath { + moveTo(4.73f, 3.06f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.77f, 0.64f) + verticalLineToRelative(2.8f) + horizontalLineToRelative(0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineTo(6.5f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + verticalLineTo(8.0f) + horizontalLineTo(3.2f) + arcToRelative(1.2f, 1.2f, 0.0f, false, true, -0.92f, -1.96f) + lineToRelative(2.45f, -2.98f) + close() + moveTo(5.0f, 6.5f) + verticalLineTo(5.09f) + lineTo(3.84f, 6.5f) + horizontalLineTo(5.0f) + close() + } + fluentPath { + moveTo(11.75f, 12.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-7.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + fluentPath { + moveTo(15.75f, 9.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineTo(9.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + fluentPath { + moveTo(3.75f, 18.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-1.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + fluentPath { + moveTo(19.74f, 6.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.75f, 0.64f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.12f) + verticalLineTo(6.76f) + curveToRelative(0.0f, -0.42f, 0.33f, -0.76f, 0.74f, -0.76f) + close() + } + fluentPath { + moveTo(7.75f, 15.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-4.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _cellular4G!! + } + +private var _cellular4G: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cellular5G.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cellular5G.kt new file mode 100644 index 00000000..145e0a2a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cellular5G.kt @@ -0,0 +1,121 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Cellular5G: ImageVector + get() { + if (_cellular5G != null) { + return _cellular5G!! + } + _cellular5G = fluentIcon(name = "Regular.Cellular5G") { + fluentPath { + moveTo(12.9f, 3.62f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.28f, 0.79f) + lineToRelative(-0.02f, -0.02f) + arcToRelative(0.64f, 0.64f, 0.0f, false, false, -0.15f, -0.12f) + curveToRelative(-0.15f, -0.08f, -0.47f, -0.2f, -1.06f, -0.09f) + curveToRelative(-0.41f, 0.08f, -0.62f, 0.33f, -0.75f, 0.67f) + arcToRelative(2.1f, 2.1f, 0.0f, false, false, -0.14f, 0.65f) + verticalLineToRelative(1.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(0.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.97f, -0.75f) + horizontalLineToRelative(-0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.25f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.5f, 2.5f) + horizontalLineToRelative(-0.25f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 8.0f, 6.75f) + verticalLineTo(5.46f) + arcToRelative(2.57f, 2.57f, 0.0f, false, true, 0.03f, -0.34f) + curveToRelative(0.03f, -0.22f, 0.09f, -0.5f, 0.2f, -0.82f) + curveToRelative(0.25f, -0.62f, 0.8f, -1.4f, 1.88f, -1.6f) + curveToRelative(0.92f, -0.16f, 1.6f, 0.0f, 2.07f, 0.26f) + arcToRelative(2.13f, 2.13f, 0.0f, false, true, 0.7f, 0.64f) + lineToRelative(0.01f, 0.01f) + close() + } + fluentPath { + moveTo(3.25f, 3.42f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 4.0f, 2.75f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineTo(4.67f) + lineToRelative(-0.06f, 0.58f) + horizontalLineToRelative(0.01f) + arcToRelative(2.23f, 2.23f, 0.0f, true, true, 0.4f, 4.42f) + horizontalLineTo(4.8f) + curveToRelative(-0.75f, 0.0f, -1.45f, -0.38f, -1.87f, -1.0f) + lineToRelative(-0.05f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.24f, -0.84f) + lineToRelative(0.06f, 0.09f) + curveToRelative(0.14f, 0.2f, 0.37f, 0.33f, 0.62f, 0.33f) + horizontalLineToRelative(0.22f) + arcTo(0.73f, 0.73f, 0.0f, true, false, 4.9f, 6.3f) + lineToRelative(-1.0f, 0.19f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 5.67f) + lineToRelative(0.25f, -2.25f) + close() + } + fluentPath { + moveTo(11.75f, 12.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-7.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + fluentPath { + moveTo(15.75f, 9.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineTo(9.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + fluentPath { + moveTo(3.75f, 18.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-1.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + fluentPath { + moveTo(19.74f, 6.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.75f, 0.64f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.12f) + verticalLineTo(6.76f) + curveToRelative(0.0f, -0.42f, 0.33f, -0.76f, 0.74f, -0.76f) + close() + } + fluentPath { + moveTo(7.75f, 15.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-4.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _cellular5G!! + } + +private var _cellular5G: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CellularData1.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CellularData1.kt new file mode 100644 index 00000000..3b16a245 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CellularData1.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CellularData1: ImageVector + get() { + if (_cellularData1 != null) { + return _cellularData1!! + } + _cellularData1 = fluentIcon(name = "Regular.CellularData1") { + fluentPath { + moveTo(3.75f, 17.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-1.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(11.75f, 11.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-7.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(15.75f, 8.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(15.0f, 8.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(19.75f, 5.0f) + curveToRelative(0.37f, 0.0f, 0.69f, 0.28f, 0.74f, 0.64f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.12f) + lineTo(19.0f, 5.76f) + curveToRelative(0.0f, -0.42f, 0.33f, -0.76f, 0.74f, -0.76f) + close() + moveTo(7.75f, 14.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-4.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _cellularData1!! + } + +private var _cellularData1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CellularData2.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CellularData2.kt new file mode 100644 index 00000000..5107e03b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CellularData2.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CellularData2: ImageVector + get() { + if (_cellularData2 != null) { + return _cellularData2!! + } + _cellularData2 = fluentIcon(name = "Regular.CellularData2") { + fluentPath { + moveTo(3.75f, 17.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-1.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(11.75f, 11.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-7.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(15.75f, 8.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(15.0f, 8.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(7.75f, 14.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-4.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _cellularData2!! + } + +private var _cellularData2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CellularData3.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CellularData3.kt new file mode 100644 index 00000000..04d5f4f3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CellularData3.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CellularData3: ImageVector + get() { + if (_cellularData3 != null) { + return _cellularData3!! + } + _cellularData3 = fluentIcon(name = "Regular.CellularData3") { + fluentPath { + moveTo(3.75f, 17.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-1.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(11.75f, 11.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-7.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(7.75f, 14.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-4.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _cellularData3!! + } + +private var _cellularData3: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CellularData4.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CellularData4.kt new file mode 100644 index 00000000..3c21de22 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CellularData4.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CellularData4: ImageVector + get() { + if (_cellularData4 != null) { + return _cellularData4!! + } + _cellularData4 = fluentIcon(name = "Regular.CellularData4") { + fluentPath { + moveTo(3.75f, 17.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-1.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(7.75f, 14.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-4.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _cellularData4!! + } + +private var _cellularData4: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CellularData5.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CellularData5.kt new file mode 100644 index 00000000..fd709ecb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CellularData5.kt @@ -0,0 +1,28 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CellularData5: ImageVector + get() { + if (_cellularData5 != null) { + return _cellularData5!! + } + _cellularData5 = fluentIcon(name = "Regular.CellularData5") { + fluentPath { + moveTo(3.0f, 17.75f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + close() + } + } + return _cellularData5!! + } + +private var _cellularData5: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CellularOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CellularOff.kt new file mode 100644 index 00000000..d8730bf4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CellularOff.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CellularOff: ImageVector + get() { + if (_cellularOff != null) { + return _cellularOff!! + } + _cellularOff = fluentIcon(name = "Regular.CellularOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(11.0f, 12.06f) + verticalLineToRelative(7.29f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + verticalLineToRelative(-5.69f) + lineToRelative(2.5f, 2.5f) + verticalLineToRelative(3.29f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + verticalLineToRelative(-1.69f) + lineToRelative(4.22f, 4.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(19.0f, 15.82f) + lineToRelative(1.5f, 1.5f) + lineTo(20.5f, 5.64f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.12f) + verticalLineToRelative(10.06f) + close() + moveTo(15.0f, 11.82f) + lineTo(16.5f, 13.32f) + lineTo(16.5f, 8.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + verticalLineToRelative(3.07f) + close() + moveTo(3.75f, 17.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-1.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(7.75f, 14.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-4.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _cellularOff!! + } + +private var _cellularOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CellularWarning.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CellularWarning.kt new file mode 100644 index 00000000..eb5559bd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CellularWarning.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CellularWarning: ImageVector + get() { + if (_cellularWarning != null) { + return _cellularWarning!! + } + _cellularWarning = fluentIcon(name = "Regular.CellularWarning") { + fluentPath { + moveTo(3.75f, 18.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-1.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(11.75f, 12.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(5.16f) + lineToRelative(-1.23f, 2.47f) + curveToRelative(-0.05f, 0.1f, -0.1f, 0.2f, -0.13f, 0.3f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.13f, -0.33f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-7.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(15.26f, 12.38f) + curveToRelative(0.29f, -0.57f, 0.73f, -0.96f, 1.24f, -1.18f) + lineTo(16.5f, 9.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + verticalLineToRelative(3.16f) + lineToRelative(0.26f, -0.53f) + close() + moveTo(19.74f, 12.38f) + lineTo(20.49f, 13.9f) + lineTo(20.49f, 6.74f) + lineToRelative(-0.02f, -0.1f) + arcToRelative(0.74f, 0.74f, 0.0f, false, false, -0.74f, -0.64f) + curveToRelative(-0.4f, 0.0f, -0.73f, 0.34f, -0.73f, 0.76f) + verticalLineToRelative(4.74f) + curveToRelative(0.3f, 0.22f, 0.55f, 0.51f, 0.74f, 0.88f) + close() + moveTo(7.75f, 15.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-4.6f) + curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(16.15f, 12.83f) + lineTo(12.16f, 20.83f) + arcTo(1.5f, 1.5f, 0.0f, false, false, 13.5f, 23.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.34f, -2.17f) + lineToRelative(-4.0f, -8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.68f, 0.0f) + close() + moveTo(18.0f, 15.49f) + verticalLineToRelative(3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + verticalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + close() + moveTo(17.5f, 20.99f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + close() + } + } + return _cellularWarning!! + } + +private var _cellularWarning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CenterHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CenterHorizontal.kt new file mode 100644 index 00000000..ee200715 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CenterHorizontal.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CenterHorizontal: ImageVector + get() { + if (_centerHorizontal != null) { + return _centerHorizontal!! + } + _centerHorizontal = fluentIcon(name = "Regular.CenterHorizontal") { + fluentPath { + moveTo(4.5f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(4.5f, 3.75f) + close() + moveTo(19.5f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(19.5f, 3.75f) + close() + moveTo(10.25f, 5.0f) + curveTo(9.01f, 5.0f, 8.0f, 6.0f, 8.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(8.0f, 17.99f, 9.0f, 19.0f, 10.25f, 19.0f) + horizontalLineToRelative(3.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-9.5f) + curveTo(16.0f, 6.01f, 15.0f, 5.0f, 13.75f, 5.0f) + horizontalLineToRelative(-3.5f) + close() + moveTo(9.5f, 7.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-9.5f) + close() + } + } + return _centerHorizontal!! + } + +private var _centerHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CenterVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CenterVertical.kt new file mode 100644 index 00000000..fa864812 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CenterVertical.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CenterVertical: ImageVector + get() { + if (_centerVertical != null) { + return _centerVertical!! + } + _centerVertical = fluentIcon(name = "Regular.CenterVertical") { + fluentPath { + moveTo(21.0f, 3.75f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(3.75f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(16.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(21.0f, 20.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(3.75f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(16.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(7.25f, 8.0f) + curveTo(6.01f, 8.0f, 5.0f, 9.0f, 5.0f, 10.25f) + verticalLineToRelative(3.5f) + curveTo(5.0f, 14.99f, 6.0f, 16.0f, 7.25f, 16.0f) + horizontalLineToRelative(9.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-3.5f) + curveTo(19.0f, 9.01f, 18.0f, 8.0f, 16.75f, 8.0f) + horizontalLineToRelative(-9.5f) + close() + moveTo(6.5f, 10.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(9.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-3.5f) + close() + } + } + return _centerVertical!! + } + +private var _centerVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Certificate.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Certificate.kt new file mode 100644 index 00000000..8be5eba9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Certificate.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Certificate: ImageVector + get() { + if (_certificate != null) { + return _certificate!! + } + _certificate = fluentIcon(name = "Regular.Certificate") { + fluentPath { + moveTo(2.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 3.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 5.75f) + verticalLineToRelative(9.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 18.0f) + lineTo(10.0f, 18.0f) + verticalLineToRelative(-1.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 0.33f, -0.5f) + horizontalLineToRelative(8.92f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(4.75f, 4.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(3.92f) + curveToRelative(-0.59f, 0.34f, -1.1f, 0.8f, -1.5f, 1.33f) + lineTo(2.0f, 5.75f) + close() + moveTo(6.75f, 7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(6.75f, 7.0f) + close() + moveTo(12.75f, 12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + close() + moveTo(6.0f, 10.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) + close() + moveTo(9.0f, 18.0f) + arcToRelative(4.98f, 4.98f, 0.0f, false, true, -6.0f, 0.0f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 0.57f, 0.6f, 0.92f, 1.09f, 0.67f) + lineToRelative(0.09f, -0.06f) + lineTo(6.0f, 20.6f) + lineToRelative(1.82f, 1.27f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.17f, -0.5f) + verticalLineToRelative(-0.11f) + lineTo(9.0f, 18.0f) + close() + } + } + return _certificate!! + } + +private var _certificate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Channel.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Channel.kt new file mode 100644 index 00000000..410df9bd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Channel.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Channel: ImageVector + get() { + if (_channel != null) { + return _channel!! + } + _channel = fluentIcon(name = "Regular.Channel") { + fluentPath { + moveTo(17.75f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 21.0f, 6.07f) + verticalLineToRelative(11.68f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(6.25f, 21.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(3.0f, 17.75f) + lineTo(3.0f, 9.37f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(8.38f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(11.5f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.92f, -0.7f, -1.67f, -1.6f, -1.74f) + lineToRelative(-0.15f, -0.01f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.6f, 0.0f, -1.13f, 0.3f, -1.44f, 0.76f) + arcToRelative(2.23f, 2.23f, 0.0f, false, false, -1.59f, -0.2f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.85f, -2.05f) + lineTo(6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(13.25f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + horizontalLineToRelative(4.6f) + close() + moveTo(15.25f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.49f) + horizontalLineToRelative(-6.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + horizontalLineToRelative(6.6f) + close() + moveTo(3.75f, 6.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + } + } + return _channel!! + } + +private var _channel: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChannelAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChannelAdd.kt new file mode 100644 index 00000000..ca8d68b9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChannelAdd.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChannelAdd: ImageVector + get() { + if (_channelAdd != null) { + return _channelAdd!! + } + _channelAdd = fluentIcon(name = "Regular.ChannelAdd") { + fluentPath { + moveTo(17.75f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 21.0f, 6.07f) + lineTo(21.0f, 12.02f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 6.24f) + curveToRelative(0.0f, -0.92f, -0.7f, -1.67f, -1.6f, -1.74f) + lineToRelative(-0.15f, -0.01f) + lineTo(6.25f, 4.49f) + curveToRelative(-0.6f, 0.0f, -1.13f, 0.3f, -1.44f, 0.76f) + arcToRelative(2.23f, 2.23f, 0.0f, false, false, -1.59f, -0.2f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.85f, -2.05f) + lineTo(6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(11.31f, 19.5f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(6.25f, 21.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(3.0f, 17.75f) + lineTo(3.0f, 9.37f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(8.38f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(5.06f) + close() + moveTo(11.73f, 14.5f) + curveToRelative(0.29f, -0.55f, 0.65f, -1.05f, 1.08f, -1.5f) + lineTo(8.75f, 13.0f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(2.98f) + close() + moveTo(15.25f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.49f) + horizontalLineToRelative(-6.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + horizontalLineToRelative(6.6f) + close() + moveTo(3.75f, 6.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _channelAdd!! + } + +private var _channelAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChannelAlert.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChannelAlert.kt new file mode 100644 index 00000000..64b41b1a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChannelAlert.kt @@ -0,0 +1,88 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChannelAlert: ImageVector + get() { + if (_channelAlert != null) { + return _channelAlert!! + } + _channelAlert = fluentIcon(name = "Regular.ChannelAlert") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(4.5f, 9.37f) + verticalLineToRelative(8.38f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(5.06f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(6.25f, 21.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(3.0f, 17.75f) + lineTo(3.0f, 9.37f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 1.5f, 0.0f) + close() + moveTo(18.5f, 20.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(0.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, -0.12f) + close() + moveTo(17.5f, 14.0f) + horizontalLineToRelative(-0.16f) + curveToRelative(-0.94f, 0.1f, -1.67f, 0.77f, -1.81f, 1.64f) + lineToRelative(-0.02f, 0.16f) + verticalLineToRelative(1.5f) + lineToRelative(-0.86f, 0.85f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.26f, 0.84f) + lineTo(15.0f, 19.0f) + horizontalLineToRelative(5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.41f, -0.79f) + lineToRelative(-0.06f, -0.06f) + lineToRelative(-0.85f, -0.85f) + verticalLineToRelative(-1.5f) + arcToRelative(1.98f, 1.98f, 0.0f, false, false, -2.0f, -1.8f) + close() + moveTo(12.8f, 13.0f) + curveToRelative(-0.42f, 0.45f, -0.78f, 0.95f, -1.07f, 1.5f) + lineTo(8.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + lineTo(12.8f, 13.01f) + close() + moveTo(17.75f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 21.0f, 6.07f) + lineTo(21.0f, 12.02f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 6.24f) + curveToRelative(0.0f, -0.92f, -0.7f, -1.67f, -1.6f, -1.74f) + lineToRelative(-0.15f, -0.01f) + lineTo(6.25f, 4.49f) + curveToRelative(-0.6f, 0.0f, -1.13f, 0.3f, -1.44f, 0.76f) + arcToRelative(2.23f, 2.23f, 0.0f, false, false, -1.59f, -0.2f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.85f, -2.05f) + lineTo(6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(15.25f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.49f) + horizontalLineToRelative(-6.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + horizontalLineToRelative(6.6f) + close() + moveTo(3.75f, 6.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + } + } + return _channelAlert!! + } + +private var _channelAlert: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChannelArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChannelArrowLeft.kt new file mode 100644 index 00000000..31aa5e16 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChannelArrowLeft.kt @@ -0,0 +1,94 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChannelArrowLeft: ImageVector + get() { + if (_channelArrowLeft != null) { + return _channelArrowLeft!! + } + _channelArrowLeft = fluentIcon(name = "Regular.ChannelArrowLeft") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(4.5f, 9.37f) + verticalLineToRelative(8.38f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(5.06f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(6.25f, 21.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(3.0f, 17.75f) + lineTo(3.0f, 9.37f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 1.5f, 0.0f) + close() + moveTo(16.72f, 14.59f) + lineTo(16.65f, 14.65f) + lineTo(14.13f, 17.16f) + lineTo(14.09f, 17.21f) + lineTo(14.05f, 17.29f) + lineTo(14.03f, 17.35f) + lineTo(14.01f, 17.43f) + verticalLineToRelative(0.11f) + lineToRelative(0.01f, 0.09f) + lineToRelative(0.03f, 0.08f) + lineToRelative(0.03f, 0.06f) + lineToRelative(0.05f, 0.07f) + lineToRelative(2.52f, 2.51f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.77f, -0.63f) + lineToRelative(-0.06f, -0.07f) + lineTo(15.7f, 18.0f) + horizontalLineToRelative(4.79f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.41f) + verticalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.5f) + horizontalLineToRelative(-4.88f) + lineToRelative(1.65f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.05f, -0.63f) + lineToRelative(-0.05f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.64f, -0.06f) + close() + moveTo(12.8f, 13.0f) + curveToRelative(-0.43f, 0.45f, -0.8f, 0.95f, -1.08f, 1.5f) + lineTo(8.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + lineTo(12.8f, 13.01f) + close() + moveTo(17.74f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 21.0f, 6.07f) + lineTo(21.0f, 12.02f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 6.24f) + curveToRelative(0.0f, -0.92f, -0.7f, -1.67f, -1.6f, -1.74f) + lineToRelative(-0.15f, -0.01f) + lineTo(6.25f, 4.49f) + curveToRelative(-0.6f, 0.0f, -1.13f, 0.3f, -1.44f, 0.76f) + arcToRelative(2.23f, 2.23f, 0.0f, false, false, -1.59f, -0.2f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.85f, -2.05f) + lineTo(6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(15.24f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.49f) + horizontalLineToRelative(-6.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + horizontalLineToRelative(6.6f) + close() + moveTo(3.75f, 6.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + } + } + return _channelArrowLeft!! + } + +private var _channelArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChannelDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChannelDismiss.kt new file mode 100644 index 00000000..6f717610 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChannelDismiss.kt @@ -0,0 +1,103 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChannelDismiss: ImageVector + get() { + if (_channelDismiss != null) { + return _channelDismiss!! + } + _channelDismiss = fluentIcon(name = "Regular.ChannelDismiss") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(4.5f, 9.37f) + verticalLineToRelative(8.38f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(5.06f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(6.25f, 21.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(3.0f, 17.75f) + lineTo(3.0f, 9.37f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 1.5f, 0.0f) + close() + moveTo(15.1f, 14.97f) + lineTo(15.02f, 15.02f) + lineTo(14.97f, 15.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.05f, 0.07f) + lineToRelative(1.77f, 1.77f) + lineToRelative(-1.76f, 1.77f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.06f, 0.06f) + lineToRelative(0.07f, 0.06f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) + lineToRelative(0.07f, -0.06f) + lineToRelative(1.77f, -1.76f) + lineToRelative(1.77f, 1.77f) + lineToRelative(0.07f, 0.05f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.57f, 0.0f) + lineToRelative(0.07f, -0.05f) + lineToRelative(0.05f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) + lineToRelative(-0.05f, -0.07f) + lineToRelative(-1.77f, -1.77f) + lineToRelative(1.77f, -1.77f) + lineToRelative(0.06f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) + lineToRelative(-0.06f, -0.07f) + lineToRelative(-0.07f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) + lineToRelative(-0.07f, 0.05f) + lineToRelative(-1.77f, 1.77f) + lineToRelative(-1.77f, -1.77f) + lineToRelative(-0.07f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.05f) + lineToRelative(-0.07f, 0.05f) + close() + moveTo(12.8f, 13.0f) + curveToRelative(-0.42f, 0.45f, -0.78f, 0.95f, -1.07f, 1.5f) + lineTo(8.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + lineTo(12.8f, 13.01f) + close() + moveTo(17.75f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 21.0f, 6.07f) + lineTo(21.0f, 12.02f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 6.24f) + curveToRelative(0.0f, -0.92f, -0.7f, -1.67f, -1.6f, -1.74f) + lineToRelative(-0.15f, -0.01f) + lineTo(6.25f, 4.49f) + curveToRelative(-0.6f, 0.0f, -1.13f, 0.3f, -1.44f, 0.76f) + arcToRelative(2.23f, 2.23f, 0.0f, false, false, -1.59f, -0.2f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.85f, -2.05f) + lineTo(6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(15.25f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.49f) + horizontalLineToRelative(-6.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + horizontalLineToRelative(6.6f) + close() + moveTo(3.75f, 6.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + } + } + return _channelDismiss!! + } + +private var _channelDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChannelShare.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChannelShare.kt new file mode 100644 index 00000000..203f2c1b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChannelShare.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChannelShare: ImageVector + get() { + if (_channelShare != null) { + return _channelShare!! + } + _channelShare = fluentIcon(name = "Regular.ChannelShare") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(6.0f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-6.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(5.85f) + arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, 1.5f) + lineTo(6.25f, 15.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 12.25f) + verticalLineToRelative(-6.0f) + close() + moveTo(13.5f, 14.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.5f, 0.0f) + close() + moveTo(17.75f, 10.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-6.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(6.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-6.0f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + lineTo(11.9f, 8.5f) + arcToRelative(2.75f, 2.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(5.85f) + close() + moveTo(9.25f, 8.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + } + } + return _channelShare!! + } + +private var _channelShare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChannelSubtract.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChannelSubtract.kt new file mode 100644 index 00000000..f06efa86 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChannelSubtract.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChannelSubtract: ImageVector + get() { + if (_channelSubtract != null) { + return _channelSubtract!! + } + _channelSubtract = fluentIcon(name = "Regular.ChannelSubtract") { + fluentPath { + moveTo(21.0f, 6.07f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 17.75f, 3.0f) + lineTo(6.07f, 3.0f) + curveToRelative(-1.3f, 0.08f, -2.4f, 0.9f, -2.85f, 2.06f) + arcToRelative(2.26f, 2.26f, 0.0f, false, true, 1.59f, 0.2f) + curveToRelative(0.31f, -0.46f, 0.84f, -0.76f, 1.44f, -0.76f) + horizontalLineToRelative(11.64f) + curveToRelative(0.9f, 0.08f, 1.61f, 0.83f, 1.61f, 1.75f) + verticalLineToRelative(5.06f) + curveToRelative(0.53f, 0.18f, 1.04f, 0.42f, 1.5f, 0.71f) + lineTo(21.0f, 6.07f) + close() + moveTo(12.02f, 21.0f) + curveToRelative(-0.3f, -0.46f, -0.53f, -0.97f, -0.7f, -1.5f) + lineTo(6.1f, 19.5f) + curveToRelative(-0.9f, -0.08f, -1.61f, -0.83f, -1.61f, -1.75f) + lineTo(4.49f, 9.37f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(8.56f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 6.26f, 21.0f) + horizontalLineToRelative(5.77f) + close() + moveTo(11.73f, 14.5f) + curveToRelative(0.29f, -0.55f, 0.65f, -1.05f, 1.08f, -1.5f) + lineTo(8.75f, 13.0f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(2.98f) + close() + moveTo(16.0f, 10.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-6.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(6.5f) + lineToRelative(0.1f, -0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.74f) + close() + moveTo(5.0f, 7.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(20.5f, 18.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(6.0f) + close() + } + } + return _channelSubtract!! + } + +private var _channelSubtract: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChartMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChartMultiple.kt new file mode 100644 index 00000000..a13c6488 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChartMultiple.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChartMultiple: ImageVector + get() { + if (_chartMultiple != null) { + return _chartMultiple!! + } + _chartMultiple = fluentIcon(name = "Regular.ChartMultiple") { + fluentPath { + moveTo(13.0f, 11.75f) + horizontalLineToRelative(6.71f) + curveToRelative(0.34f, -0.35f, 0.79f, -0.6f, 1.28f, -0.7f) + arcTo(9.5f, 9.5f, 0.0f, true, false, 11.0f, 21.0f) + verticalLineToRelative(-1.51f) + arcToRelative(8.0f, 8.0f, 0.0f, false, true, 0.25f, -15.98f) + lineTo(11.25f, 10.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + close() + moveTo(13.0f, 10.25f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + lineTo(12.75f, 3.6f) + arcToRelative(8.0f, 8.0f, 0.0f, false, true, 6.65f, 6.65f) + lineTo(13.0f, 10.25f) + close() + moveTo(21.5f, 12.0f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) + verticalLineToRelative(-8.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + close() + moveTo(13.5f, 18.0f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(2.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + close() + moveTo(16.0f, 16.5f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + verticalLineToRelative(5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + verticalLineToRelative(-5.0f) + close() + } + } + return _chartMultiple!! + } + +private var _chartMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChartPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChartPerson.kt new file mode 100644 index 00000000..570bdfe9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChartPerson.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChartPerson: ImageVector + get() { + if (_chartPerson != null) { + return _chartPerson!! + } + _chartPerson = fluentIcon(name = "Regular.ChartPerson") { + fluentPath { + moveTo(12.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + lineTo(11.0f, 3.0f) + lineTo(5.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 6.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) + horizontalLineToRelative(2.4f) + lineToRelative(-1.48f, 1.77f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.16f, 0.96f) + lineTo(9.6f, 19.0f) + horizontalLineToRelative(3.5f) + curveToRelative(0.19f, -0.61f, 0.57f, -1.14f, 1.08f, -1.5f) + lineTo(5.25f, 17.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(5.38f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 22.0f, 14.5f) + lineTo(22.0f, 6.25f) + curveTo(22.0f, 4.45f, 20.54f, 3.0f, 18.75f, 3.0f) + lineTo(12.5f, 3.0f) + verticalLineToRelative(-0.25f) + close() + moveTo(6.0f, 7.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.0f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 6.0f, 7.75f) + close() + moveTo(6.75f, 10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.5f) + close() + moveTo(6.0f, 13.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(21.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(23.0f, 19.88f) + curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) + reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _chartPerson!! + } + +private var _chartPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Chat.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Chat.kt new file mode 100644 index 00000000..fe979ee1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Chat.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Chat: ImageVector + get() { + if (_chat != null) { + return _chat!! + } + _chat = fluentIcon(name = "Regular.Chat") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, -4.59f, 18.89f) + lineTo(3.6f, 21.96f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.54f, -1.54f) + lineToRelative(1.06f, -3.83f) + arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 2.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, -7.43f, 12.64f) + lineToRelative(0.15f, 0.27f) + lineToRelative(-1.1f, 3.98f) + lineToRelative(3.98f, -1.11f) + lineToRelative(0.27f, 0.15f) + arcTo(8.5f, 8.5f, 0.0f, true, false, 12.0f, 3.5f) + close() + moveTo(8.75f, 13.0f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(4.6f) + horizontalLineToRelative(-4.5f) + close() + moveTo(8.75f, 9.5f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-6.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(6.6f) + horizontalLineToRelative(-6.5f) + close() + } + } + return _chat!! + } + +private var _chat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatAdd.kt new file mode 100644 index 00000000..ebe3d7aa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatAdd.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChatAdd: ImageVector + get() { + if (_chatAdd != null) { + return _chatAdd!! + } + _chatAdd = fluentIcon(name = "Regular.ChatAdd") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 9.97f, 10.78f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.47f, -1.05f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, -15.93f, 4.4f) + lineToRelative(0.15f, 0.28f) + lineToRelative(-1.1f, 3.98f) + lineToRelative(3.98f, -1.11f) + lineToRelative(0.27f, 0.15f) + arcToRelative(8.45f, 8.45f, 0.0f, false, false, 3.86f, 1.07f) + curveToRelative(0.28f, 0.54f, 0.64f, 1.03f, 1.05f, 1.47f) + arcToRelative(10.14f, 10.14f, 0.0f, false, true, -5.37f, -1.08f) + lineTo(3.6f, 21.96f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.54f, -1.54f) + lineToRelative(1.06f, -3.83f) + arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 2.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _chatAdd!! + } + +private var _chatAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatBubblesQuestion.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatBubblesQuestion.kt new file mode 100644 index 00000000..b49679ab --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatBubblesQuestion.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChatBubblesQuestion: ImageVector + get() { + if (_chatBubblesQuestion != null) { + return _chatBubblesQuestion!! + } + _chatBubblesQuestion = fluentIcon(name = "Regular.ChatBubblesQuestion") { + fluentPath { + moveTo(8.14f, 6.3f) + arcToRelative(2.83f, 2.83f, 0.0f, false, true, 2.99f, 0.28f) + curveToRelative(0.52f, 0.42f, 0.87f, 1.07f, 0.87f, 1.92f) + curveToRelative(0.0f, 0.97f, -0.69f, 1.5f, -1.08f, 1.8f) + lineToRelative(-0.08f, 0.07f) + curveToRelative(-0.43f, 0.33f, -0.6f, 0.51f, -0.6f, 0.88f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + curveToRelative(0.0f, -1.13f, 0.72f, -1.7f, 1.17f, -2.06f) + curveToRelative(0.51f, -0.4f, 0.59f, -0.5f, 0.59f, -0.69f) + curveToRelative(0.0f, -0.4f, -0.15f, -0.62f, -0.32f, -0.76f) + curveToRelative(-0.2f, -0.16f, -0.46f, -0.24f, -0.68f, -0.24f) + curveToRelative(-0.3f, 0.0f, -0.5f, 0.05f, -0.65f, 0.13f) + curveToRelative(-0.14f, 0.08f, -0.3f, 0.21f, -0.44f, 0.48f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.32f, -0.71f) + curveToRelative(0.26f, -0.49f, 0.61f, -0.86f, 1.05f, -1.1f) + close() + moveTo(9.5f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(9.5f, 3.0f) + arcToRelative(7.5f, 7.5f, 0.0f, false, false, -6.8f, 10.67f) + lineToRelative(-0.72f, 2.84f) + curveToRelative(-0.24f, 0.92f, 0.59f, 1.75f, 1.5f, 1.53f) + lineToRelative(2.93f, -0.7f) + arcTo(7.5f, 7.5f, 0.0f, true, false, 9.5f, 3.0f) + close() + moveTo(3.5f, 10.5f) + arcToRelative(6.0f, 6.0f, 0.0f, true, true, 3.33f, 5.37f) + lineToRelative(-0.24f, -0.12f) + lineToRelative(-0.27f, 0.07f) + lineToRelative(-2.79f, 0.66f) + lineToRelative(0.7f, -2.7f) + lineToRelative(0.06f, -0.28f) + lineToRelative(-0.13f, -0.25f) + arcToRelative(5.97f, 5.97f, 0.0f, false, true, -0.66f, -2.75f) + close() + moveTo(14.5f, 21.0f) + arcToRelative(7.47f, 7.47f, 0.0f, false, true, -5.1f, -2.0f) + arcToRelative(8.28f, 8.28f, 0.0f, false, false, 2.18f, -0.26f) + arcToRelative(5.97f, 5.97f, 0.0f, false, false, 5.59f, 0.13f) + lineToRelative(0.24f, -0.12f) + lineToRelative(0.27f, 0.07f) + curveToRelative(0.92f, 0.22f, 1.96f, 0.44f, 2.74f, 0.6f) + curveToRelative(-0.18f, -0.74f, -0.42f, -1.75f, -0.65f, -2.64f) + lineToRelative(-0.07f, -0.28f) + lineToRelative(0.14f, -0.25f) + arcToRelative(5.97f, 5.97f, 0.0f, false, false, -2.09f, -7.8f) + arcToRelative(8.44f, 8.44f, 0.0f, false, false, -0.8f, -2.04f) + arcToRelative(7.5f, 7.5f, 0.0f, false, true, 4.35f, 10.26f) + lineToRelative(0.67f, 2.8f) + curveToRelative(0.2f, 0.9f, -0.58f, 1.7f, -1.47f, 1.5f) + curveToRelative(-0.73f, -0.15f, -1.87f, -0.39f, -2.91f, -0.63f) + curveToRelative(-0.95f, 0.42f, -2.0f, 0.66f, -3.1f, 0.66f) + close() + } + } + return _chatBubblesQuestion!! + } + +private var _chatBubblesQuestion: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatCursor.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatCursor.kt new file mode 100644 index 00000000..737f1745 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatCursor.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChatCursor: ImageVector + get() { + if (_chatCursor != null) { + return _chatCursor!! + } + _chatCursor = fluentIcon(name = "Regular.ChatCursor") { + fluentPath { + moveTo(10.0f, 1.0f) + arcToRelative(8.0f, 8.0f, 0.0f, false, true, 7.48f, 10.86f) + lineToRelative(-0.84f, -0.63f) + arcToRelative(7.0f, 7.0f, 0.0f, true, false, -12.75f, 1.2f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.07f, 0.27f) + lineToRelative(-0.02f, 0.1f) + lineToRelative(-0.75f, 3.01f) + lineToRelative(3.02f, -0.75f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.19f, -0.01f) + lineToRelative(0.09f, 0.02f) + lineToRelative(0.09f, 0.04f) + arcToRelative(6.97f, 6.97f, 0.0f, false, false, 4.42f, 0.82f) + verticalLineToRelative(1.0f) + arcToRelative(8.07f, 8.07f, 0.0f, false, true, -4.61f, -0.8f) + lineToRelative(-0.12f, -0.05f) + lineToRelative(-3.65f, 0.9f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.62f, -0.44f) + verticalLineToRelative(-0.08f) + lineToRelative(0.01f, -0.08f) + lineToRelative(0.92f, -3.64f) + lineToRelative(-0.07f, -0.12f) + arcToRelative(7.95f, 7.95f, 0.0f, false, true, -0.83f, -2.9f) + lineToRelative(-0.02f, -0.37f) + lineTo(2.0f, 9.0f) + arcToRelative(8.0f, 8.0f, 0.0f, false, true, 8.0f, -8.0f) + close() + moveTo(21.6f, 16.2f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 21.0f, 18.0f) + horizontalLineToRelative(-4.4f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.88f, 0.53f) + lineToRelative(-1.84f, 3.44f) + curveToRelative(-0.49f, 0.92f, -1.88f, 0.57f, -1.88f, -0.47f) + lineTo(12.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.6f, -0.8f) + lineToRelative(8.0f, 6.0f) + close() + } + } + return _chatCursor!! + } + +private var _chatCursor: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatDismiss.kt new file mode 100644 index 00000000..ad420b89 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatDismiss.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChatDismiss: ImageVector + get() { + if (_chatDismiss != null) { + return _chatDismiss!! + } + _chatDismiss = fluentIcon(name = "Regular.ChatDismiss") { + fluentPath { + moveTo(9.28f, 8.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineTo(10.94f, 12.0f) + lineToRelative(-2.72f, 2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineTo(12.0f, 13.06f) + lineToRelative(2.72f, 2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineTo(13.06f, 12.0f) + lineToRelative(2.72f, -2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineTo(12.0f, 10.94f) + lineTo(9.28f, 8.22f) + close() + moveTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -18.89f, 4.6f) + lineToRelative(-1.06f, 3.82f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 1.54f, 1.54f) + lineToRelative(3.82f, -1.07f) + arcTo(10.0f, 10.0f, 0.0f, false, false, 22.0f, 12.0f) + close() + moveTo(3.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 4.37f, 7.43f) + lineToRelative(-0.27f, -0.15f) + lineToRelative(-3.99f, 1.11f) + lineToRelative(1.11f, -3.98f) + lineToRelative(-0.15f, -0.27f) + arcTo(8.46f, 8.46f, 0.0f, false, true, 3.5f, 12.0f) + close() + } + } + return _chatDismiss!! + } + +private var _chatDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatEmpty.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatEmpty.kt new file mode 100644 index 00000000..ef7c016d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatEmpty.kt @@ -0,0 +1,37 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChatEmpty: ImageVector + get() { + if (_chatEmpty != null) { + return _chatEmpty!! + } + _chatEmpty = fluentIcon(name = "Regular.ChatEmpty") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, -4.59f, 18.89f) + lineTo(3.6f, 21.96f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.54f, -1.54f) + lineToRelative(1.06f, -3.83f) + arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 2.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, -7.43f, 12.64f) + lineToRelative(0.15f, 0.27f) + lineToRelative(-1.1f, 3.98f) + lineToRelative(3.98f, -1.11f) + lineToRelative(0.27f, 0.15f) + arcTo(8.5f, 8.5f, 0.0f, true, false, 12.0f, 3.5f) + close() + } + } + return _chatEmpty!! + } + +private var _chatEmpty: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatHelp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatHelp.kt new file mode 100644 index 00000000..344458a8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatHelp.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChatHelp: ImageVector + get() { + if (_chatHelp != null) { + return _chatHelp!! + } + _chatHelp = fluentIcon(name = "Regular.ChatHelp") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, -4.59f, 18.89f) + lineTo(3.6f, 21.96f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.54f, -1.54f) + lineToRelative(1.06f, -3.83f) + arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 2.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, -7.43f, 12.64f) + lineToRelative(0.15f, 0.27f) + lineToRelative(-1.1f, 3.98f) + lineToRelative(3.98f, -1.11f) + lineToRelative(0.27f, 0.15f) + arcTo(8.5f, 8.5f, 0.0f, true, false, 12.0f, 3.5f) + close() + moveTo(12.0f, 15.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(12.0f, 6.75f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.75f) + curveToRelative(0.0f, 1.01f, -0.3f, 1.57f, -1.05f, 2.36f) + lineToRelative(-0.17f, 0.17f) + curveToRelative(-0.62f, 0.62f, -0.78f, 0.89f, -0.78f, 1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + curveToRelative(0.0f, -1.01f, 0.3f, -1.57f, 1.05f, -2.36f) + lineToRelative(0.17f, -0.17f) + curveToRelative(0.62f, -0.62f, 0.78f, -0.89f, 0.78f, -1.47f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.5f, -0.13f) + verticalLineToRelative(0.13f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 12.0f, 6.75f) + close() + } + } + return _chatHelp!! + } + +private var _chatHelp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatMultiple.kt new file mode 100644 index 00000000..0b288104 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatMultiple.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChatMultiple: ImageVector + get() { + if (_chatMultiple != null) { + return _chatMultiple!! + } + _chatMultiple = fluentIcon(name = "Regular.ChatMultiple") { + fluentPath { + moveTo(9.56f, 3.0f) + arcToRelative(7.5f, 7.5f, 0.0f, false, false, -6.8f, 10.67f) + lineToRelative(-0.72f, 2.84f) + curveToRelative(-0.23f, 0.92f, 0.59f, 1.75f, 1.5f, 1.53f) + lineToRelative(2.93f, -0.7f) + arcTo(7.5f, 7.5f, 0.0f, true, false, 9.56f, 3.0f) + close() + moveTo(3.56f, 10.5f) + arcToRelative(6.0f, 6.0f, 0.0f, true, true, 3.33f, 5.37f) + lineToRelative(-0.24f, -0.12f) + lineToRelative(-0.27f, 0.07f) + lineToRelative(-2.78f, 0.66f) + lineToRelative(0.69f, -2.7f) + lineToRelative(0.07f, -0.28f) + lineToRelative(-0.13f, -0.25f) + arcToRelative(5.97f, 5.97f, 0.0f, false, true, -0.67f, -2.75f) + close() + moveTo(14.56f, 21.0f) + arcToRelative(7.47f, 7.47f, 0.0f, false, true, -5.1f, -2.0f) + arcToRelative(8.28f, 8.28f, 0.0f, false, false, 2.18f, -0.26f) + arcToRelative(5.97f, 5.97f, 0.0f, false, false, 5.6f, 0.13f) + lineToRelative(0.24f, -0.12f) + lineToRelative(0.26f, 0.07f) + curveToRelative(0.92f, 0.22f, 1.96f, 0.44f, 2.74f, 0.6f) + curveToRelative(-0.18f, -0.74f, -0.41f, -1.75f, -0.64f, -2.64f) + lineToRelative(-0.07f, -0.28f) + lineToRelative(0.13f, -0.25f) + arcToRelative(5.97f, 5.97f, 0.0f, false, false, -2.09f, -7.8f) + arcToRelative(8.44f, 8.44f, 0.0f, false, false, -0.8f, -2.04f) + arcToRelative(7.5f, 7.5f, 0.0f, false, true, 4.35f, 10.26f) + lineToRelative(0.67f, 2.8f) + curveToRelative(0.2f, 0.9f, -0.57f, 1.7f, -1.47f, 1.5f) + curveToRelative(-0.72f, -0.15f, -1.87f, -0.39f, -2.91f, -0.63f) + curveToRelative(-0.94f, 0.42f, -1.99f, 0.66f, -3.09f, 0.66f) + close() + } + } + return _chatMultiple!! + } + +private var _chatMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatMultipleHeart.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatMultipleHeart.kt new file mode 100644 index 00000000..91e4f568 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatMultipleHeart.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChatMultipleHeart: ImageVector + get() { + if (_chatMultipleHeart != null) { + return _chatMultipleHeart!! + } + _chatMultipleHeart = fluentIcon(name = "Regular.ChatMultipleHeart") { + fluentPath { + moveTo(6.34f, 8.34f) + curveToRelative(0.8f, -0.79f, 2.08f, -0.79f, 2.87f, 0.0f) + lineToRelative(0.29f, 0.3f) + lineToRelative(0.28f, -0.29f) + arcToRelative(2.03f, 2.03f, 0.0f, false, true, 2.88f, 2.88f) + lineToRelative(-2.93f, 2.93f) + arcToRelative(0.31f, 0.31f, 0.0f, false, true, -0.44f, 0.0f) + lineTo(6.35f, 11.2f) + curveToRelative(-0.8f, -0.8f, -0.8f, -2.08f, 0.0f, -2.87f) + close() + moveTo(2.06f, 10.5f) + arcToRelative(7.5f, 7.5f, 0.0f, true, true, 4.41f, 6.84f) + lineToRelative(-2.93f, 0.7f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.5f, -1.53f) + lineToRelative(0.72f, -2.84f) + arcToRelative(7.47f, 7.47f, 0.0f, false, true, -0.7f, -3.17f) + close() + moveTo(9.56f, 4.5f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, -5.33f, 8.75f) + lineToRelative(0.13f, 0.25f) + lineToRelative(-0.07f, 0.28f) + lineToRelative(-0.7f, 2.7f) + lineToRelative(2.8f, -0.66f) + lineToRelative(0.26f, -0.07f) + lineToRelative(0.24f, 0.12f) + arcTo(6.0f, 6.0f, 0.0f, true, false, 9.56f, 4.5f) + close() + moveTo(9.46f, 19.0f) + arcToRelative(7.47f, 7.47f, 0.0f, false, false, 8.19f, 1.34f) + curveToRelative(1.04f, 0.24f, 2.19f, 0.48f, 2.91f, 0.64f) + curveToRelative(0.9f, 0.18f, 1.67f, -0.62f, 1.47f, -1.5f) + curveToRelative(-0.16f, -0.7f, -0.42f, -1.8f, -0.67f, -2.8f) + arcToRelative(7.5f, 7.5f, 0.0f, false, false, -4.34f, -10.26f) + curveToRelative(0.35f, 0.63f, 0.62f, 1.31f, 0.8f, 2.04f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 2.08f, 7.79f) + lineToRelative(-0.13f, 0.25f) + lineToRelative(0.07f, 0.28f) + curveToRelative(0.23f, 0.9f, 0.46f, 1.9f, 0.64f, 2.65f) + lineToRelative(-2.74f, -0.61f) + lineToRelative(-0.26f, -0.07f) + lineToRelative(-0.25f, 0.12f) + arcToRelative(5.97f, 5.97f, 0.0f, false, true, -5.59f, -0.13f) + arcToRelative(8.52f, 8.52f, 0.0f, false, true, -2.18f, 0.26f) + close() + } + } + return _chatMultipleHeart!! + } + +private var _chatMultipleHeart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatOff.kt new file mode 100644 index 00000000..1e203b96 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatOff.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChatOff: ImageVector + get() { + if (_chatOff != null) { + return _chatOff!! + } + _chatOff = fluentIcon(name = "Regular.ChatOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(2.2f, 2.2f) + arcToRelative(9.96f, 9.96f, 0.0f, false, false, -1.3f, 11.11f) + lineToRelative(-1.07f, 3.83f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 1.54f, 1.54f) + lineToRelative(3.82f, -1.07f) + arcToRelative(9.96f, 9.96f, 0.0f, false, false, 11.11f, -1.3f) + lineToRelative(2.2f, 2.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(17.46f, 18.52f) + arcToRelative(8.47f, 8.47f, 0.0f, false, true, -9.6f, 0.91f) + lineToRelative(-0.26f, -0.15f) + lineToRelative(-3.99f, 1.11f) + lineToRelative(1.11f, -3.98f) + lineToRelative(-0.15f, -0.27f) + arcToRelative(8.46f, 8.46f, 0.0f, false, true, 0.91f, -9.6f) + lineToRelative(3.0f, 3.0f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 8.76f, 11.0f) + horizontalLineToRelative(1.19f) + lineToRelative(2.0f, 2.0f) + lineTo(8.65f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(4.6f) + lineToRelative(0.07f, -0.02f) + lineToRelative(4.04f, 4.04f) + close() + } + fluentPath { + moveTo(15.25f, 9.5f) + horizontalLineToRelative(-2.57f) + lineToRelative(1.5f, 1.5f) + horizontalLineTo(15.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + } + fluentPath { + moveTo(20.5f, 12.0f) + curveToRelative(0.0f, 1.53f, -0.4f, 2.97f, -1.11f, 4.2f) + lineToRelative(1.1f, 1.1f) + arcTo(10.0f, 10.0f, 0.0f, false, false, 6.7f, 3.52f) + lineToRelative(1.08f, 1.1f) + arcTo(8.5f, 8.5f, 0.0f, false, true, 20.5f, 12.0f) + close() + } + } + return _chatOff!! + } + +private var _chatOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatSettings.kt new file mode 100644 index 00000000..68e9edec --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatSettings.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChatSettings: ImageVector + get() { + if (_chatSettings != null) { + return _chatSettings!! + } + _chatSettings = fluentIcon(name = "Regular.ChatSettings") { + fluentPath { + moveTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -18.89f, 4.6f) + lineToRelative(-1.06f, 3.82f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 1.54f, 1.54f) + lineToRelative(3.82f, -1.07f) + arcToRelative(9.96f, 9.96f, 0.0f, false, false, 5.37f, 1.08f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.05f, -1.47f) + arcToRelative(8.45f, 8.45f, 0.0f, false, true, -3.86f, -1.07f) + lineToRelative(-0.27f, -0.15f) + lineToRelative(-3.99f, 1.11f) + lineToRelative(1.11f, -3.98f) + lineToRelative(-0.15f, -0.27f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 15.92f, -4.4f) + curveToRelative(0.55f, 0.27f, 1.04f, 0.63f, 1.48f, 1.04f) + lineTo(22.0f, 12.0f) + close() + moveTo(12.84f, 16.47f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.44f, -2.5f) + lineToRelative(-0.2f, -0.68f) + curveToRelative(0.44f, -0.38f, 0.94f, -0.7f, 1.48f, -0.91f) + lineToRelative(0.5f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.9f, 0.0f) + lineToRelative(0.5f, -0.52f) + curveToRelative(0.54f, 0.23f, 1.04f, 0.54f, 1.48f, 0.93f) + lineToRelative(-0.19f, 0.63f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.45f, 2.5f) + lineToRelative(0.54f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, true, 0.0f, 1.8f) + lineToRelative(-0.58f, 0.15f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.44f, 2.5f) + lineToRelative(0.2f, 0.68f) + curveToRelative(-0.44f, 0.38f, -0.94f, 0.7f, -1.48f, 0.91f) + lineToRelative(-0.5f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.9f, 0.0f) + lineToRelative(-0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, true, -1.48f, -0.92f) + lineToRelative(0.19f, -0.64f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.45f, -2.5f) + lineToRelative(-0.54f, -0.14f) + arcToRelative(5.72f, 5.72f, 0.0f, false, true, 0.0f, -1.8f) + lineToRelative(0.58f, -0.15f) + close() + moveTo(18.95f, 17.5f) + curveToRelative(0.0f, -0.83f, -0.65f, -1.5f, -1.45f, -1.5f) + curveToRelative(-0.8f, 0.0f, -1.45f, 0.67f, -1.45f, 1.5f) + reflectiveCurveTo(16.7f, 19.0f, 17.5f, 19.0f) + curveToRelative(0.8f, 0.0f, 1.45f, -0.67f, 1.45f, -1.5f) + close() + } + } + return _chatSettings!! + } + +private var _chatSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatSparkle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatSparkle.kt new file mode 100644 index 00000000..ec55e5ee --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatSparkle.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChatSparkle: ImageVector + get() { + if (_chatSparkle != null) { + return _chatSparkle!! + } + _chatSparkle = fluentIcon(name = "Regular.ChatSparkle") { + fluentPath { + moveTo(16.09f, 6.41f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.35f, -0.95f) + lineTo(13.36f, 5.0f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, -1.03f) + lineToRelative(1.38f, -0.44f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.76f, -1.77f) + lineToRelative(0.01f, -0.03f) + lineToRelative(0.45f, -1.38f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, 1.03f, 0.0f) + lineToRelative(0.44f, 1.38f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.8f, 1.8f) + lineToRelative(1.38f, 0.44f) + lineToRelative(0.03f, 0.01f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, 1.03f) + lineToRelative(-1.38f, 0.44f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.8f, 1.8f) + lineToRelative(-0.45f, 1.38f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, -1.03f, 0.0f) + lineToRelative(-0.44f, -1.38f) + curveToRelative(-0.1f, -0.3f, -0.25f, -0.6f, -0.45f, -0.85f) + close() + moveTo(23.79f, 10.21f) + lineTo(23.02f, 9.96f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, -1.0f, -1.0f) + lineToRelative(-0.25f, -0.76f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, -0.57f, 0.0f) + lineToRelative(-0.25f, 0.77f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, -0.98f, 1.0f) + lineToRelative(-0.77f, 0.24f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.77f, 0.25f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, 1.0f) + lineToRelative(0.24f, 0.77f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.58f, 0.0f) + lineToRelative(0.24f, -0.77f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, -1.0f) + lineToRelative(0.77f, -0.24f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, -0.57f) + horizontalLineToRelative(-0.02f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 2.76f, 0.39f) + curveToRelative(-0.12f, 0.07f, -0.24f, 0.13f, -0.37f, 0.17f) + lineTo(13.05f, 3.0f) + curveToRelative(-0.28f, 0.1f, -0.53f, 0.28f, -0.72f, 0.5f) + lineTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, -7.43f, 12.64f) + lineToRelative(0.15f, 0.27f) + lineToRelative(-1.1f, 3.98f) + lineToRelative(3.98f, -1.11f) + lineToRelative(0.27f, 0.15f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 12.5f, -5.96f) + curveToRelative(0.1f, 0.13f, 0.2f, 0.24f, 0.34f, 0.34f) + arcToRelative(1.29f, 1.29f, 0.0f, false, false, 1.09f, 0.2f) + arcTo(10.0f, 10.0f, 0.0f, false, true, 7.4f, 20.88f) + lineTo(3.6f, 21.96f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.54f, -1.54f) + lineToRelative(1.06f, -3.83f) + arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 2.0f) + close() + } + } + return _chatSparkle!! + } + +private var _chatSparkle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatVideo.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatVideo.kt new file mode 100644 index 00000000..ea506908 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatVideo.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChatVideo: ImageVector + get() { + if (_chatVideo != null) { + return _chatVideo!! + } + _chatVideo = fluentIcon(name = "Regular.ChatVideo") { + fluentPath { + moveTo(12.0f, 8.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + verticalLineToRelative(4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + lineTo(9.0f, 16.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(3.0f) + close() + moveTo(15.0f, 13.16f) + verticalLineToRelative(-2.32f) + lineToRelative(1.73f, -1.64f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.27f, 0.54f) + verticalLineToRelative(4.52f) + curveToRelative(0.0f, 0.66f, -0.79f, 1.0f, -1.27f, 0.54f) + lineTo(15.0f, 13.16f) + close() + moveTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -18.89f, 4.6f) + lineToRelative(-1.06f, 3.82f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 1.54f, 1.54f) + lineToRelative(3.82f, -1.07f) + arcTo(10.0f, 10.0f, 0.0f, false, false, 22.0f, 12.0f) + close() + moveTo(3.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 4.37f, 7.43f) + lineToRelative(-0.27f, -0.15f) + lineToRelative(-3.99f, 1.11f) + lineToRelative(1.11f, -3.98f) + lineToRelative(-0.15f, -0.27f) + arcTo(8.46f, 8.46f, 0.0f, false, true, 3.5f, 12.0f) + close() + } + } + return _chatVideo!! + } + +private var _chatVideo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatWarning.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatWarning.kt new file mode 100644 index 00000000..8cb83164 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChatWarning.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChatWarning: ImageVector + get() { + if (_chatWarning != null) { + return _chatWarning!! + } + _chatWarning = fluentIcon(name = "Regular.ChatWarning") { + fluentPath { + moveTo(12.0f, 6.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(11.25f, 7.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, -4.59f, 18.89f) + lineTo(3.6f, 21.96f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.54f, -1.54f) + lineToRelative(1.06f, -3.83f) + arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 2.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, -7.43f, 12.64f) + lineToRelative(0.15f, 0.27f) + lineToRelative(-1.1f, 3.98f) + lineToRelative(3.98f, -1.11f) + lineToRelative(0.27f, 0.15f) + arcTo(8.5f, 8.5f, 0.0f, true, false, 12.0f, 3.5f) + close() + } + } + return _chatWarning!! + } + +private var _chatWarning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Check.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Check.kt new file mode 100644 index 00000000..64e73a67 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Check.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Check: ImageVector + get() { + if (_check != null) { + return _check!! + } + _check = fluentIcon(name = "Regular.Check") { + fluentPath { + moveTo(21.78f, 5.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineToRelative(-7.5f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(7.5f, -7.5f) + close() + moveTo(21.95f, 7.03f) + curveToRelative(0.03f, 0.17f, 0.05f, 0.34f, 0.05f, 0.52f) + verticalLineToRelative(6.9f) + curveToRelative(0.0f, 1.4f, -1.14f, 2.55f, -2.55f, 2.55f) + lineTo(4.55f, 17.0f) + arcTo(2.55f, 2.55f, 0.0f, false, true, 2.0f, 14.45f) + verticalLineToRelative(-6.9f) + curveTo(2.0f, 6.15f, 3.14f, 5.0f, 4.55f, 5.0f) + horizontalLineToRelative(14.48f) + lineToRelative(-1.5f, 1.5f) + lineTo(4.55f, 6.5f) + curveToRelative(-0.58f, 0.0f, -1.05f, 0.47f, -1.05f, 1.05f) + verticalLineToRelative(6.9f) + curveToRelative(0.0f, 0.58f, 0.47f, 1.05f, 1.05f, 1.05f) + horizontalLineToRelative(14.9f) + curveToRelative(0.58f, 0.0f, 1.05f, -0.47f, 1.05f, -1.05f) + lineTo(20.5f, 8.47f) + lineToRelative(1.45f, -1.44f) + close() + moveTo(4.5f, 9.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(4.5f, 12.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _check!! + } + +private var _check: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Checkbox1.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Checkbox1.kt new file mode 100644 index 00000000..dbf2bacf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Checkbox1.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Checkbox1: ImageVector + get() { + if (_checkbox1 != null) { + return _checkbox1!! + } + _checkbox1 = fluentIcon(name = "Regular.Checkbox1") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(0.64f, 0.0f, 1.24f, -0.19f, 1.75f, -0.51f) + verticalLineToRelative(-1.66f) + curveToRelative(-0.16f, 0.08f, -0.33f, 0.13f, -0.5f, 0.15f) + curveToRelative(-0.33f, 0.32f, -0.76f, 0.52f, -1.25f, 0.52f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(8.16f) + lineToRelative(0.66f, -0.53f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.84f, -0.36f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(17.28f, 9.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineTo(10.0f, 14.44f) + lineToRelative(-2.22f, -2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(2.75f, 2.75f) + curveToRelative(0.29f, 0.29f, 0.76f, 0.29f, 1.06f, 0.0f) + lineToRelative(6.75f, -6.75f) + close() + moveTo(21.0f, 14.54f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.22f, 0.12f) + lineToRelative(-2.5f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.94f, 1.18f) + lineToRelative(1.28f, -1.03f) + verticalLineToRelative(4.44f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, -0.7f) + close() + } + } + return _checkbox1!! + } + +private var _checkbox1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Checkbox2.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Checkbox2.kt new file mode 100644 index 00000000..7435a8ac --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Checkbox2.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Checkbox2: ImageVector + get() { + if (_checkbox2 != null) { + return _checkbox2!! + } + _checkbox2 = fluentIcon(name = "Regular.Checkbox2") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(10.0f) + curveToRelative(0.04f, -0.58f, 0.19f, -1.08f, 0.4f, -1.5f) + lineTo(6.24f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.49f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(7.25f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 1.5f, 0.35f) + verticalLineToRelative(-7.6f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(17.81f, 19.5f) + arcToRelative(2.86f, 2.86f, 0.0f, false, false, -0.56f, 1.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.06f) + arcToRelative(3.45f, 3.45f, 0.0f, false, true, 1.09f, -1.0f) + lineToRelative(0.04f, -0.03f) + curveToRelative(0.22f, -0.16f, 0.47f, -0.34f, 0.72f, -0.56f) + curveToRelative(0.5f, -0.46f, 0.96f, -1.08f, 0.96f, -2.0f) + curveToRelative(0.0f, -0.63f, -0.17f, -1.18f, -0.5f, -1.6f) + arcToRelative(2.05f, 2.05f, 0.0f, false, false, -1.27f, -0.76f) + arcToRelative(2.82f, 2.82f, 0.0f, false, false, -2.54f, 0.86f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.12f, 1.0f) + arcToRelative(1.32f, 1.32f, 0.0f, false, true, 1.13f, -0.4f) + curveToRelative(0.17f, 0.04f, 0.3f, 0.12f, 0.38f, 0.22f) + curveToRelative(0.09f, 0.11f, 0.18f, 0.31f, 0.18f, 0.68f) + curveToRelative(0.0f, 0.45f, -0.23f, 0.72f, -0.77f, 1.13f) + curveToRelative(-0.13f, 0.1f, -0.26f, 0.2f, -0.42f, 0.3f) + curveToRelative(-0.4f, 0.3f, -0.88f, 0.65f, -1.25f, 1.16f) + close() + moveTo(17.28f, 9.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineTo(10.0f, 14.44f) + lineToRelative(-2.22f, -2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(2.75f, 2.75f) + curveToRelative(0.29f, 0.29f, 0.76f, 0.29f, 1.06f, 0.0f) + lineToRelative(6.75f, -6.75f) + close() + } + } + return _checkbox2!! + } + +private var _checkbox2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckboxArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckboxArrowRight.kt new file mode 100644 index 00000000..aaeb15ec --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckboxArrowRight.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CheckboxArrowRight: ImageVector + get() { + if (_checkboxArrowRight != null) { + return _checkboxArrowRight!! + } + _checkboxArrowRight = fluentIcon(name = "Regular.CheckboxArrowRight") { + fluentPath { + moveTo(5.25f, 2.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) + verticalLineToRelative(11.5f) + curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) + horizontalLineToRelative(6.25f) + curveToRelative(-0.2f, -0.47f, -0.34f, -0.98f, -0.42f, -1.5f) + lineTo(5.25f, 18.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(3.5f, 5.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(5.83f) + curveToRelative(0.52f, 0.08f, 1.03f, 0.22f, 1.5f, 0.42f) + lineTo(20.0f, 5.25f) + curveTo(20.0f, 3.45f, 18.54f, 2.0f, 16.75f, 2.0f) + lineTo(5.25f, 2.0f) + close() + moveTo(16.28f, 8.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineTo(9.0f, 13.44f) + lineToRelative(-2.22f, -2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(2.75f, 2.75f) + curveToRelative(0.29f, 0.29f, 0.76f, 0.29f, 1.06f, 0.0f) + lineToRelative(6.75f, -6.75f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(14.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(19.29f, 17.0f) + lineTo(14.5f, 17.0f) + close() + } + } + return _checkboxArrowRight!! + } + +private var _checkboxArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckboxChecked.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckboxChecked.kt new file mode 100644 index 00000000..c87ee009 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckboxChecked.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CheckboxChecked: ImageVector + get() { + if (_checkboxChecked != null) { + return _checkboxChecked!! + } + _checkboxChecked = fluentIcon(name = "Regular.CheckboxChecked") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 6.25f) + close() + moveTo(17.28f, 9.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineTo(10.0f, 14.44f) + lineToRelative(-2.22f, -2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(2.75f, 2.75f) + curveToRelative(0.29f, 0.29f, 0.76f, 0.29f, 1.06f, 0.0f) + lineToRelative(6.75f, -6.75f) + close() + } + } + return _checkboxChecked!! + } + +private var _checkboxChecked: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckboxIndeterminate.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckboxIndeterminate.kt new file mode 100644 index 00000000..1ffbd2ea --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckboxIndeterminate.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CheckboxIndeterminate: ImageVector + get() { + if (_checkboxIndeterminate != null) { + return _checkboxIndeterminate!! + } + _checkboxIndeterminate = fluentIcon(name = "Regular.CheckboxIndeterminate") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineTo(6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + horizontalLineTo(6.25f) + close() + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineTo(6.25f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineTo(6.25f) + close() + moveTo(7.25f, 6.0f) + curveTo(6.56f, 6.0f, 6.0f, 6.56f, 6.0f, 7.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(9.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-9.5f) + curveTo(18.0f, 6.56f, 17.44f, 6.0f, 16.75f, 6.0f) + horizontalLineToRelative(-9.5f) + close() + } + } + return _checkboxIndeterminate!! + } + +private var _checkboxIndeterminate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckboxPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckboxPerson.kt new file mode 100644 index 00000000..a23fae23 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckboxPerson.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CheckboxPerson: ImageVector + get() { + if (_checkboxPerson != null) { + return _checkboxPerson!! + } + _checkboxPerson = fluentIcon(name = "Regular.CheckboxPerson") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(6.92f) + arcToRelative(3.74f, 3.74f, 0.0f, false, true, -0.17f, -1.13f) + verticalLineToRelative(-0.1f) + lineToRelative(0.01f, -0.27f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.9f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 1.5f, 0.9f) + verticalLineToRelative(-5.8f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(17.28f, 9.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineTo(10.0f, 14.44f) + lineToRelative(-2.22f, -2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(2.75f, 2.75f) + curveToRelative(0.29f, 0.29f, 0.76f, 0.29f, 1.06f, 0.0f) + lineToRelative(6.75f, -6.75f) + close() + moveTo(21.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(23.0f, 19.88f) + curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) + reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _checkboxPerson!! + } + +private var _checkboxPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckboxUnchecked.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckboxUnchecked.kt new file mode 100644 index 00000000..d2a1aaa6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckboxUnchecked.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CheckboxUnchecked: ImageVector + get() { + if (_checkboxUnchecked != null) { + return _checkboxUnchecked!! + } + _checkboxUnchecked = fluentIcon(name = "Regular.CheckboxUnchecked") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineTo(6.25f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + verticalLineTo(6.25f) + close() + moveTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineTo(6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineTo(6.25f) + close() + } + } + return _checkboxUnchecked!! + } + +private var _checkboxUnchecked: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckboxWarning.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckboxWarning.kt new file mode 100644 index 00000000..c251fb6e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckboxWarning.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CheckboxWarning: ImageVector + get() { + if (_checkboxWarning != null) { + return _checkboxWarning!! + } + _checkboxWarning = fluentIcon(name = "Regular.CheckboxWarning") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(4.8f) + curveToRelative(0.05f, -0.2f, 0.12f, -0.42f, 0.22f, -0.62f) + lineToRelative(0.44f, -0.88f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(5.74f) + curveToRelative(0.09f, 0.12f, 0.17f, 0.25f, 0.24f, 0.4f) + lineTo(21.0f, 14.9f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(17.28f, 9.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineTo(10.0f, 14.44f) + lineToRelative(-2.22f, -2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(2.75f, 2.75f) + curveToRelative(0.29f, 0.29f, 0.76f, 0.29f, 1.06f, 0.0f) + lineToRelative(6.75f, -6.75f) + close() + moveTo(16.16f, 12.83f) + lineTo(12.16f, 20.83f) + arcTo(1.5f, 1.5f, 0.0f, false, false, 13.51f, 23.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.33f, -2.17f) + lineToRelative(-4.0f, -8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.68f, 0.0f) + close() + moveTo(18.0f, 15.5f) + verticalLineToRelative(3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + close() + moveTo(17.5f, 21.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + close() + } + } + return _checkboxWarning!! + } + +private var _checkboxWarning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckmarkCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckmarkCircle.kt new file mode 100644 index 00000000..c40eca7f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckmarkCircle.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CheckmarkCircle: ImageVector + get() { + if (_checkmarkCircle != null) { + return _checkmarkCircle!! + } + _checkmarkCircle = fluentIcon(name = "Regular.CheckmarkCircle") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) + close() + moveTo(10.75f, 13.44f) + lineTo(15.22f, 8.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) + lineToRelative(0.08f, 0.07f) + lineToRelative(1.97f, 1.97f) + lineToRelative(4.47f, -4.47f) + lineToRelative(-4.47f, 4.47f) + close() + } + } + return _checkmarkCircle!! + } + +private var _checkmarkCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckmarkLock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckmarkLock.kt new file mode 100644 index 00000000..560b7273 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckmarkLock.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CheckmarkLock: ImageVector + get() { + if (_checkmarkLock != null) { + return _checkmarkLock!! + } + _checkmarkLock = fluentIcon(name = "Regular.CheckmarkLock") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 9.92f, 11.26f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -1.47f, -2.17f) + arcTo(8.5f, 8.5f, 0.0f, true, false, 13.0f, 20.44f) + verticalLineToRelative(1.06f) + curveToRelative(0.0f, 0.15f, 0.01f, 0.3f, 0.04f, 0.45f) + arcTo(10.0f, 10.0f, 0.0f, true, true, 12.0f, 2.0f) + close() + moveTo(20.49f, 12.48f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 16.0f, 14.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(5.0f) + lineToRelative(0.03f, 0.3f) + curveToRelative(0.14f, 0.68f, 0.74f, 1.2f, 1.47f, 1.2f) + horizontalLineToRelative(6.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -1.5f, -1.5f) + lineTo(21.0f, 15.0f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.57f, -0.2f, -1.1f, -0.51f, -1.52f) + close() + moveTo(18.11f, 19.92f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.78f, -1.84f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.78f, 1.84f) + close() + moveTo(17.5f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(10.75f, 13.44f) + lineTo(15.22f, 8.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) + lineToRelative(0.08f, 0.07f) + lineToRelative(1.97f, 1.97f) + close() + } + } + return _checkmarkLock!! + } + +private var _checkmarkLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckmarkSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckmarkSquare.kt new file mode 100644 index 00000000..0f84dda9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckmarkSquare.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CheckmarkSquare: ImageVector + get() { + if (_checkmarkSquare != null) { + return _checkmarkSquare!! + } + _checkmarkSquare = fluentIcon(name = "Regular.CheckmarkSquare") { + fluentPath { + moveTo(16.28f, 9.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineToRelative(-4.47f, 4.47f) + lineToRelative(-1.47f, -1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(5.0f, -5.0f) + close() + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineTo(6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + horizontalLineTo(6.25f) + close() + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineTo(6.25f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineTo(6.25f) + close() + } + } + return _checkmarkSquare!! + } + +private var _checkmarkSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckmarkStarburst.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckmarkStarburst.kt new file mode 100644 index 00000000..d1c4439f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CheckmarkStarburst.kt @@ -0,0 +1,114 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CheckmarkStarburst: ImageVector + get() { + if (_checkmarkStarburst != null) { + return _checkmarkStarburst!! + } + _checkmarkStarburst = fluentIcon(name = "Regular.CheckmarkStarburst") { + fluentPath { + moveToRelative(9.84f, 2.03f) + lineToRelative(0.32f, 0.14f) + lineToRelative(1.29f, 0.63f) + curveToRelative(0.35f, 0.17f, 0.75f, 0.17f, 1.1f, 0.0f) + lineToRelative(1.28f, -0.63f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 3.69f, 1.25f) + lineToRelative(0.07f, 0.17f) + lineToRelative(0.06f, 0.16f) + lineToRelative(0.46f, 1.36f) + curveToRelative(0.13f, 0.36f, 0.42f, 0.65f, 0.78f, 0.78f) + lineToRelative(1.36f, 0.46f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 1.58f, 3.81f) + lineToRelative(-0.63f, 1.29f) + curveToRelative(-0.17f, 0.35f, -0.17f, 0.75f, 0.0f, 1.1f) + lineToRelative(0.63f, 1.28f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -1.58f, 3.82f) + lineToRelative(-1.36f, 0.46f) + curveToRelative(-0.36f, 0.13f, -0.65f, 0.42f, -0.78f, 0.78f) + lineToRelative(-0.46f, 1.36f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -3.82f, 1.58f) + lineToRelative(-1.28f, -0.63f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.1f, 0.0f) + lineToRelative(-1.29f, 0.63f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -3.81f, -1.58f) + lineToRelative(-0.46f, -1.36f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -0.78f, -0.78f) + lineToRelative(-1.36f, -0.46f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -1.58f, -3.82f) + lineToRelative(0.63f, -1.28f) + curveToRelative(0.17f, -0.35f, 0.17f, -0.75f, 0.0f, -1.1f) + lineToRelative(-0.63f, -1.29f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 1.58f, -3.81f) + lineToRelative(1.36f, -0.46f) + curveToRelative(0.36f, -0.13f, 0.65f, -0.42f, 0.78f, -0.78f) + lineToRelative(0.46f, -1.36f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 3.49f, -1.72f) + close() + moveTo(7.77f, 4.23f) + lineTo(7.3f, 5.6f) + curveToRelative(-0.28f, 0.8f, -0.91f, 1.44f, -1.72f, 1.72f) + lineToRelative(-1.36f, 0.46f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -0.71f, 1.73f) + lineToRelative(0.63f, 1.29f) + curveToRelative(0.37f, 0.76f, 0.37f, 1.66f, 0.0f, 2.42f) + lineToRelative(-0.63f, 1.29f) + lineToRelative(-0.07f, 0.15f) + curveToRelative(-0.22f, 0.65f, 0.13f, 1.36f, 0.78f, 1.58f) + lineToRelative(1.36f, 0.46f) + curveToRelative(0.8f, 0.28f, 1.44f, 0.91f, 1.72f, 1.72f) + lineToRelative(0.46f, 1.35f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 1.73f, 0.72f) + lineToRelative(1.29f, -0.63f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.42f, 0.0f) + lineToRelative(1.29f, 0.63f) + lineToRelative(0.15f, 0.07f) + curveToRelative(0.65f, 0.22f, 1.36f, -0.13f, 1.58f, -0.79f) + lineToRelative(0.46f, -1.35f) + curveToRelative(0.28f, -0.8f, 0.91f, -1.44f, 1.72f, -1.72f) + lineToRelative(1.35f, -0.46f) + curveToRelative(0.06f, -0.01f, 0.1f, -0.04f, 0.15f, -0.06f) + curveToRelative(0.62f, -0.3f, 0.88f, -1.05f, 0.57f, -1.67f) + lineToRelative(-0.63f, -1.29f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.0f, -2.42f) + lineToRelative(0.63f, -1.29f) + lineToRelative(0.07f, -0.15f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -0.79f, -1.58f) + lineToRelative(-1.35f, -0.46f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -1.72f, -1.72f) + lineToRelative(-0.46f, -1.36f) + lineToRelative(-0.03f, -0.07f) + lineToRelative(-0.03f, -0.07f) + lineToRelative(-0.06f, -0.12f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.61f, -0.45f) + lineToRelative(-1.29f, 0.63f) + curveToRelative(-0.76f, 0.37f, -1.66f, 0.37f, -2.42f, 0.0f) + lineTo(9.5f, 3.52f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.73f, 0.71f) + close() + moveTo(10.05f, 14.39f) + lineTo(15.47f, 8.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-6.0f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.03f, 0.03f) + lineToRelative(-0.08f, -0.08f) + lineToRelative(-2.5f, -3.0f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 11.94f) + lineToRelative(0.08f, 0.08f) + lineToRelative(1.97f, 2.37f) + lineToRelative(5.42f, -5.42f) + lineToRelative(-5.42f, 5.42f) + close() + } + } + return _checkmarkStarburst!! + } + +private var _checkmarkStarburst: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChevronCircleDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChevronCircleDown.kt new file mode 100644 index 00000000..57a428fb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChevronCircleDown.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChevronCircleDown: ImageVector + get() { + if (_chevronCircleDown != null) { + return _chevronCircleDown!! + } + _chevronCircleDown = fluentIcon(name = "Regular.ChevronCircleDown") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) + close() + moveTo(7.47f, 9.97f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineTo(12.0f, 13.44f) + lineToRelative(3.47f, -3.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-4.0f, 4.0f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-4.0f, -4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + } + } + return _chevronCircleDown!! + } + +private var _chevronCircleDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChevronCircleLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChevronCircleLeft.kt new file mode 100644 index 00000000..bd899091 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChevronCircleLeft.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChevronCircleLeft: ImageVector + get() { + if (_chevronCircleLeft != null) { + return _chevronCircleLeft!! + } + _chevronCircleLeft = fluentIcon(name = "Regular.ChevronCircleLeft") { + fluentPath { + moveTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 20.0f, 0.0f) + close() + moveTo(20.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, -17.0f, 0.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, 17.0f, 0.0f) + close() + moveTo(14.03f, 16.53f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineTo(10.56f, 12.0f) + lineToRelative(3.47f, -3.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineToRelative(-4.0f, 4.0f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(4.0f, 4.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + close() + } + } + return _chevronCircleLeft!! + } + +private var _chevronCircleLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChevronCircleRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChevronCircleRight.kt new file mode 100644 index 00000000..be51cb84 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChevronCircleRight.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChevronCircleRight: ImageVector + get() { + if (_chevronCircleRight != null) { + return _chevronCircleRight!! + } + _chevronCircleRight = fluentIcon(name = "Regular.ChevronCircleRight") { + fluentPath { + moveTo(2.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) + close() + moveTo(3.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, 17.0f, 0.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, -17.0f, 0.0f) + close() + moveTo(9.97f, 16.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineTo(13.44f, 12.0f) + lineTo(9.97f, 8.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineToRelative(4.0f, 4.0f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-4.0f, 4.0f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + close() + } + } + return _chevronCircleRight!! + } + +private var _chevronCircleRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChevronCircleUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChevronCircleUp.kt new file mode 100644 index 00000000..3f36b7a4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChevronCircleUp.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChevronCircleUp: ImageVector + get() { + if (_chevronCircleUp != null) { + return _chevronCircleUp!! + } + _chevronCircleUp = fluentIcon(name = "Regular.ChevronCircleUp") { + fluentPath { + moveTo(12.0f, 22.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) + close() + moveTo(12.0f, 20.5f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 0.0f, -17.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, 0.0f, 17.0f) + close() + moveTo(7.47f, 14.03f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineTo(12.0f, 10.56f) + lineToRelative(3.47f, 3.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-4.0f, -4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-4.0f, 4.0f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + close() + } + } + return _chevronCircleUp!! + } + +private var _chevronCircleUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChevronUpDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChevronUpDown.kt new file mode 100644 index 00000000..64122ae9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ChevronUpDown.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ChevronUpDown: ImageVector + get() { + if (_chevronUpDown != null) { + return _chevronUpDown!! + } + _chevronUpDown = fluentIcon(name = "Regular.ChevronUpDown") { + fluentPath { + moveTo(12.54f, 2.23f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.08f, 0.0f) + lineTo(5.2f, 8.73f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.08f, 1.04f) + lineTo(12.0f, 3.83f) + lineToRelative(5.7f, 5.94f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.1f, -1.04f) + lineToRelative(-6.26f, -6.5f) + close() + moveTo(12.54f, 21.77f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.08f, 0.0f) + lineToRelative(-6.25f, -6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.08f, -1.04f) + lineTo(12.0f, 20.17f) + lineToRelative(5.7f, -5.94f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.1f, 1.04f) + lineToRelative(-6.26f, 6.5f) + close() + } + } + return _chevronUpDown!! + } + +private var _chevronUpDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Circle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Circle.kt new file mode 100644 index 00000000..dfab880d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Circle.kt @@ -0,0 +1,30 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Circle: ImageVector + get() { + if (_circle != null) { + return _circle!! + } + _circle = fluentIcon(name = "Regular.Circle") { + fluentPath { + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) + close() + moveTo(2.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) + close() + } + } + return _circle!! + } + +private var _circle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CircleEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CircleEdit.kt new file mode 100644 index 00000000..7272f75e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CircleEdit.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CircleEdit: ImageVector + get() { + if (_circleEdit != null) { + return _circleEdit!! + } + _circleEdit = fluentIcon(name = "Regular.CircleEdit") { + fluentPath { + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, -0.7f, 16.97f) + lineToRelative(-0.24f, 0.94f) + curveToRelative(-0.04f, 0.18f, -0.07f, 0.36f, -0.06f, 0.54f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 10.97f, -10.7f) + arcToRelative(3.29f, 3.29f, 0.0f, false, false, -1.53f, -0.24f) + arcTo(8.5f, 8.5f, 0.0f, false, false, 12.0f, 3.5f) + close() + } + fluentPath { + moveTo(20.72f, 12.0f) + curveToRelative(-0.6f, 0.0f, -1.18f, 0.22f, -1.62f, 0.67f) + lineToRelative(-5.9f, 5.9f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.71f, 1.25f) + lineToRelative(-0.46f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcTo(2.29f, 2.29f, 0.0f, false, false, 20.72f, 12.0f) + close() + } + } + return _circleEdit!! + } + +private var _circleEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CircleHalfFill.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CircleHalfFill.kt new file mode 100644 index 00000000..a0f38b89 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CircleHalfFill.kt @@ -0,0 +1,35 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CircleHalfFill: ImageVector + get() { + if (_circleHalfFill != null) { + return _circleHalfFill!! + } + _circleHalfFill = fluentIcon(name = "Regular.CircleHalfFill") { + fluentPath { + moveTo(2.03f, 11.25f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 19.94f, 0.0f) + horizontalLineTo(22.0f) + verticalLineTo(12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(0.03f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, -8.47f, 7.75f) + horizontalLineToRelative(16.94f) + arcTo(8.5f, 8.5f, 0.0f, false, false, 12.0f, 3.5f) + close() + } + } + return _circleHalfFill!! + } + +private var _circleHalfFill: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CircleImage.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CircleImage.kt new file mode 100644 index 00000000..e3924c75 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CircleImage.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CircleImage: ImageVector + get() { + if (_circleImage != null) { + return _circleImage!! + } + _circleImage = fluentIcon(name = "Regular.CircleImage") { + fluentPath { + moveTo(9.0f, 3.5f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -1.0f, 10.9f) + verticalLineToRelative(1.53f) + arcTo(7.0f, 7.0f, 0.0f, true, true, 15.93f, 8.0f) + lineTo(14.4f, 8.0f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 9.0f, 3.5f) + close() + moveTo(14.8f, 17.27f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.4f, 0.0f) + lineToRelative(3.14f, 3.13f) + curveToRelative(-0.19f, 0.06f, -0.38f, 0.1f, -0.59f, 0.1f) + horizontalLineToRelative(-6.5f) + curveToRelative(-0.2f, 0.0f, -0.4f, -0.04f, -0.59f, -0.1f) + lineToRelative(3.13f, -3.13f) + close() + moveTo(10.6f, 19.34f) + curveToRelative(-0.06f, -0.19f, -0.1f, -0.38f, -0.1f, -0.59f) + verticalLineToRelative(-6.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(6.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 0.2f, -0.04f, 0.4f, -0.1f, 0.59f) + lineToRelative(-3.13f, -3.13f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -3.54f, 0.0f) + lineToRelative(-3.13f, 3.13f) + close() + moveTo(19.25f, 13.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(12.25f, 9.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 9.0f, 12.25f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(6.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-6.5f) + curveTo(22.0f, 10.45f, 20.54f, 9.0f, 18.75f, 9.0f) + horizontalLineToRelative(-6.5f) + close() + } + } + return _circleImage!! + } + +private var _circleImage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CircleLine.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CircleLine.kt new file mode 100644 index 00000000..1c38a0a1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CircleLine.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CircleLine: ImageVector + get() { + if (_circleLine != null) { + return _circleLine!! + } + _circleLine = fluentIcon(name = "Regular.CircleLine") { + fluentPath { + moveTo(3.53f, 11.25f) + horizontalLineToRelative(16.94f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, -16.94f, 0.0f) + close() + moveTo(20.47f, 12.75f) + lineTo(3.53f, 12.75f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 16.94f, 0.0f) + close() + moveTo(2.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) + close() + } + } + return _circleLine!! + } + +private var _circleLine: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CircleSmall.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CircleSmall.kt new file mode 100644 index 00000000..72547332 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CircleSmall.kt @@ -0,0 +1,30 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CircleSmall: ImageVector + get() { + if (_circleSmall != null) { + return _circleSmall!! + } + _circleSmall = fluentIcon(name = "Regular.CircleSmall") { + fluentPath { + moveTo(12.0f, 9.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, -5.0f) + close() + moveTo(8.0f, 12.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, 8.0f, 0.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -8.0f, 0.0f) + close() + } + } + return _circleSmall!! + } + +private var _circleSmall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/City.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/City.kt new file mode 100644 index 00000000..c2001664 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/City.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.City: ImageVector + get() { + if (_city != null) { + return _city!! + } + _city = fluentIcon(name = "Regular.City") { + fluentPath { + moveTo(12.0f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.33f, 0.75f, 0.75f) + lineTo(12.75f, 4.0f) + horizontalLineToRelative(2.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(16.5f, 11.0f) + horizontalLineToRelative(2.25f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(5.25f, 22.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-8.43f) + curveToRelative(0.0f, -0.62f, 0.33f, -1.2f, 0.86f, -1.5f) + lineTo(7.5f, 8.45f) + lineTo(7.5f, 5.75f) + curveTo(7.5f, 4.78f, 8.28f, 4.0f, 9.25f, 4.0f) + horizontalLineToRelative(2.0f) + lineTo(11.25f, 2.75f) + curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(9.0f, 8.02f) + curveToRelative(0.81f, 0.12f, 1.5f, 0.8f, 1.5f, 1.73f) + lineTo(10.5f, 20.5f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-7.75f) + curveToRelative(0.0f, -0.88f, 0.65f, -1.61f, 1.5f, -1.73f) + lineTo(15.0f, 5.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(2.27f) + close() + moveTo(15.25f, 12.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(7.75f) + horizontalLineToRelative(3.75f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-7.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-3.5f) + close() + moveTo(8.62f, 9.54f) + lineToRelative(-3.5f, 2.06f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.12f, 0.22f) + verticalLineToRelative(8.43f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + lineTo(9.0f, 20.5f) + lineTo(9.0f, 9.75f) + curveToRelative(0.0f, -0.2f, -0.21f, -0.31f, -0.38f, -0.21f) + close() + } + } + return _city!! + } + +private var _city: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Class.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Class.kt new file mode 100644 index 00000000..9df2c10e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Class.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Class: ImageVector + get() { + if (_class != null) { + return _class!! + } + _class = fluentIcon(name = "Regular.Class") { + fluentPath { + moveTo(17.25f, 2.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 20.0f, 4.75f) + verticalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 17.25f, 22.0f) + lineTo(6.75f, 22.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.0f, 19.25f) + lineTo(4.0f, 4.75f) + curveToRelative(0.0f, -1.26f, 0.85f, -2.32f, 2.0f, -2.65f) + verticalLineToRelative(1.65f) + curveToRelative(-0.3f, 0.23f, -0.5f, 0.6f, -0.5f, 1.0f) + verticalLineToRelative(14.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(10.5f) + curveToRelative(0.7f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + lineTo(18.5f, 4.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(15.0f, 3.5f) + lineTo(15.0f, 2.0f) + horizontalLineToRelative(2.25f) + close() + moveTo(14.0f, 2.0f) + verticalLineToRelative(8.14f) + curveToRelative(0.0f, 0.75f, -0.8f, 1.03f, -1.29f, 0.76f) + lineToRelative(-0.08f, -0.05f) + lineToRelative(-2.13f, -1.28f) + lineToRelative(-2.08f, 1.25f) + curveToRelative(-0.5f, 0.36f, -1.33f, 0.14f, -1.41f, -0.56f) + lineTo(7.0f, 10.14f) + lineTo(7.0f, 2.0f) + horizontalLineToRelative(7.0f) + close() + moveTo(12.5f, 3.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(5.52f) + lineToRelative(1.57f, -0.95f) + arcToRelative(0.92f, 0.92f, 0.0f, false, true, 0.82f, -0.02f) + lineToRelative(1.61f, 0.97f) + lineTo(12.5f, 3.5f) + close() + } + } + return _class!! + } + +private var _class: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Classification.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Classification.kt new file mode 100644 index 00000000..9b79c6b8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Classification.kt @@ -0,0 +1,115 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Classification: ImageVector + get() { + if (_classification != null) { + return _classification!! + } + _classification = fluentIcon(name = "Regular.Classification") { + fluentPath { + moveToRelative(9.02f, 6.0f) + lineToRelative(-1.5f, 1.5f) + lineTo(4.26f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.76f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.4f, 0.34f, 0.74f, 0.75f, 0.74f) + horizontalLineToRelative(11.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-3.28f) + lineToRelative(1.5f, -1.49f) + verticalLineToRelative(4.77f) + curveTo(18.0f, 21.0f, 17.0f, 22.0f, 15.75f, 22.0f) + lineTo(4.25f, 22.0f) + curveTo(3.01f, 22.0f, 2.0f, 21.0f, 2.0f, 19.75f) + lineTo(2.0f, 8.25f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.24f, 2.25f, -2.24f) + horizontalLineToRelative(4.77f) + close() + moveTo(5.22f, 12.22f) + lineTo(7.22f, 10.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + lineToRelative(5.5f, 5.5f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-5.5f, -5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(2.0f, -2.0f) + lineToRelative(-2.0f, 2.0f) + close() + moveTo(7.75f, 11.82f) + lineTo(6.81f, 12.75f) + lineTo(11.25f, 17.19f) + lineTo(12.19f, 16.25f) + lineTo(7.75f, 11.81f) + close() + moveTo(21.28f, 2.72f) + arcToRelative(2.58f, 2.58f, 0.0f, false, true, -0.47f, 4.02f) + lineToRelative(-0.14f, 0.08f) + lineToRelative(-1.17f, 0.62f) + lineToRelative(0.51f, 0.51f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.14f, 4.45f) + lineToRelative(-0.14f, 0.15f) + lineToRelative(-1.23f, 1.23f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-0.47f, -0.47f) + lineToRelative(-1.47f, 1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-5.5f, -5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(1.47f, -1.47f) + lineToRelative(-0.47f, -0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(1.23f, -1.23f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 4.45f, -0.14f) + lineToRelative(0.15f, 0.14f) + lineToRelative(0.51f, 0.51f) + lineToRelative(0.62f, -1.16f) + curveToRelative(0.09f, -0.17f, 0.2f, -0.33f, 0.32f, -0.48f) + lineToRelative(0.13f, -0.14f) + curveToRelative(1.01f, -1.0f, 2.64f, -1.0f, 3.65f, 0.0f) + close() + moveTo(11.75f, 7.82f) + lineTo(10.81f, 8.75f) + lineTo(15.25f, 13.19f) + lineTo(16.19f, 12.25f) + lineTo(11.75f, 7.81f) + close() + moveTo(12.64f, 4.94f) + lineTo(12.51f, 5.05f) + lineTo(11.81f, 5.75f) + lineTo(18.25f, 12.19f) + lineTo(18.95f, 11.49f) + curveToRelative(0.68f, -0.68f, 0.69f, -1.77f, 0.02f, -2.46f) + lineToRelative(-3.98f, -3.98f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.35f, -0.11f) + close() + moveTo(18.69f, 3.78f) + curveToRelative(-0.05f, 0.05f, -0.1f, 0.1f, -0.13f, 0.17f) + lineToRelative(-0.06f, 0.09f) + lineToRelative(-0.83f, 1.57f) + lineToRelative(0.72f, 0.72f) + lineToRelative(1.57f, -0.84f) + arcToRelative(1.08f, 1.08f, 0.0f, true, false, -1.27f, -1.7f) + close() + } + } + return _classification!! + } + +private var _classification: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClearFormatting.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClearFormatting.kt new file mode 100644 index 00000000..308724c7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClearFormatting.kt @@ -0,0 +1,94 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClearFormatting: ImageVector + get() { + if (_clearFormatting != null) { + return _clearFormatting!! + } + _clearFormatting = fluentIcon(name = "Regular.ClearFormatting") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(11.31f, 19.5f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(2.75f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(8.66f) + close() + moveTo(15.09f, 14.97f) + lineTo(15.02f, 15.02f) + lineTo(14.97f, 15.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.05f, 0.07f) + lineToRelative(1.77f, 1.77f) + lineToRelative(-1.76f, 1.77f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.06f, 0.06f) + lineToRelative(0.07f, 0.06f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) + lineToRelative(0.07f, -0.06f) + lineToRelative(1.77f, -1.76f) + lineToRelative(1.77f, 1.77f) + lineToRelative(0.07f, 0.05f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.57f, 0.0f) + lineToRelative(0.07f, -0.05f) + lineToRelative(0.05f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) + lineToRelative(-0.05f, -0.07f) + lineToRelative(-1.77f, -1.77f) + lineToRelative(1.77f, -1.77f) + lineToRelative(0.06f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) + lineToRelative(-0.06f, -0.07f) + lineToRelative(-0.07f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) + lineToRelative(-0.07f, 0.05f) + lineToRelative(-1.77f, 1.77f) + lineToRelative(-1.77f, -1.77f) + lineToRelative(-0.07f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.05f) + lineToRelative(-0.07f, 0.05f) + close() + moveTo(15.75f, 3.5f) + curveToRelative(0.43f, 0.0f, 0.76f, 0.36f, 0.75f, 0.77f) + lineToRelative(-0.01f, 0.1f) + lineToRelative(-0.25f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, -0.14f) + lineToRelative(0.01f, -0.1f) + lineToRelative(0.1f, -0.63f) + horizontalLineToRelative(-3.85f) + lineTo(9.0f, 16.5f) + horizontalLineToRelative(0.74f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.83f) + lineToRelative(2.0f, -11.5f) + horizontalLineToRelative(-4.1f) + lineToRelative(-0.14f, 0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, -0.14f) + lineToRelative(0.01f, -0.1f) + lineToRelative(0.25f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.63f, -0.62f) + lineToRelative(0.11f, -0.01f) + horizontalLineToRelative(11.0f) + close() + } + } + return _clearFormatting!! + } + +private var _clearFormatting: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Clipboard.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Clipboard.kt new file mode 100644 index 00000000..81532211 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Clipboard.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Clipboard: ImageVector + get() { + if (_clipboard != null) { + return _clipboard!! + } + _clipboard = fluentIcon(name = "Regular.Clipboard") { + fluentPath { + moveTo(13.75f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + lineToRelative(-0.01f, -0.25f) + horizontalLineToRelative(1.76f) + curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 6.25f) + curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(1.76f) + verticalLineToRelative(0.18f) + lineTo(8.0f, 4.25f) + curveTo(8.0f, 3.01f, 9.0f, 2.0f, 10.25f, 2.0f) + horizontalLineToRelative(3.5f) + close() + moveTo(13.75f, 6.5f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.8f, 0.0f, -1.5f, -0.41f, -1.9f, -1.03f) + lineToRelative(0.03f, 0.03f) + lineTo(6.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(18.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.13f) + lineToRelative(0.02f, -0.03f) + curveToRelative(-0.4f, 0.62f, -1.1f, 1.03f, -1.89f, 1.03f) + close() + moveTo(13.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + } + } + return _clipboard!! + } + +private var _clipboard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Clipboard3Day.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Clipboard3Day.kt new file mode 100644 index 00000000..7df7618c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Clipboard3Day.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Clipboard3Day: ImageVector + get() { + if (_clipboard3Day != null) { + return _clipboard3Day!! + } + _clipboard3Day = fluentIcon(name = "Regular.Clipboard3Day") { + fluentPath { + moveTo(8.0f, 17.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(7.5f) + close() + moveTo(15.25f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + close() + moveTo(11.25f, 17.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(7.5f) + close() + moveTo(15.99f, 4.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) + lineTo(6.25f, 4.0f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 6.25f) + curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) + horizontalLineToRelative(-1.76f) + close() + moveTo(15.99f, 4.1f) + lineTo(16.0f, 4.25f) + lineTo(16.0f, 4.1f) + close() + moveTo(10.25f, 6.5f) + horizontalLineToRelative(3.5f) + curveToRelative(0.78f, 0.0f, 1.47f, -0.4f, 1.87f, -1.0f) + horizontalLineToRelative(2.13f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(6.25f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(5.5f, 6.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.13f) + curveToRelative(0.4f, 0.6f, 1.09f, 1.0f, 1.87f, 1.0f) + close() + moveTo(10.25f, 3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + } + } + return _clipboard3Day!! + } + +private var _clipboard3Day: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardArrowRight.kt new file mode 100644 index 00000000..4177149d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardArrowRight.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClipboardArrowRight: ImageVector + get() { + if (_clipboardArrowRight != null) { + return _clipboardArrowRight!! + } + _clipboardArrowRight = fluentIcon(name = "Regular.ClipboardArrowRight") { + fluentPath { + moveTo(13.75f, 2.0f) + curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) + horizontalLineToRelative(1.76f) + curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) + verticalLineToRelative(5.25f) + curveToRelative(-0.47f, -0.2f, -0.98f, -0.34f, -1.5f, -0.42f) + lineTo(18.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.13f) + curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.78f, 0.0f, -1.47f, -0.4f, -1.87f, -1.0f) + lineTo(6.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(5.48f) + curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 6.25f) + curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(1.76f) + curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) + horizontalLineToRelative(3.5f) + close() + moveTo(15.99f, 4.1f) + lineTo(16.0f, 4.25f) + lineTo(16.0f, 4.1f) + close() + moveTo(13.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(19.29f, 17.0f) + lineTo(14.5f, 17.0f) + close() + } + } + return _clipboardArrowRight!! + } + +private var _clipboardArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardCheckmark.kt new file mode 100644 index 00000000..992f9172 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardCheckmark.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClipboardCheckmark: ImageVector + get() { + if (_clipboardCheckmark != null) { + return _clipboardCheckmark!! + } + _clipboardCheckmark = fluentIcon(name = "Regular.ClipboardCheckmark") { + fluentPath { + moveTo(13.75f, 2.0f) + curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) + horizontalLineToRelative(1.76f) + curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) + verticalLineToRelative(5.25f) + curveToRelative(-0.47f, -0.2f, -0.98f, -0.34f, -1.5f, -0.42f) + lineTo(18.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.13f) + curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.78f, 0.0f, -1.47f, -0.4f, -1.87f, -1.0f) + lineTo(6.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(5.48f) + curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 6.25f) + curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(1.76f) + curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) + horizontalLineToRelative(3.5f) + close() + moveTo(15.99f, 4.1f) + lineTo(16.0f, 4.25f) + lineTo(16.0f, 4.1f) + close() + moveTo(13.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-3.65f, 3.64f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _clipboardCheckmark!! + } + +private var _clipboardCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardClock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardClock.kt new file mode 100644 index 00000000..3b54674c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardClock.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClipboardClock: ImageVector + get() { + if (_clipboardClock != null) { + return _clipboardClock!! + } + _clipboardClock = fluentIcon(name = "Regular.ClipboardClock") { + fluentPath { + moveTo(12.63f, 13.0f) + verticalLineToRelative(-1.63f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, -1.26f, 0.0f) + verticalLineToRelative(2.25f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.7f, 0.62f) + horizontalLineToRelative(1.31f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.24f) + horizontalLineToRelative(-0.76f) + close() + moveTo(7.25f, 13.0f) + arcToRelative(4.75f, 4.75f, 0.0f, true, true, 9.5f, 0.0f) + arcToRelative(4.75f, 4.75f, 0.0f, false, true, -9.5f, 0.0f) + close() + moveTo(12.0f, 9.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + moveTo(16.0f, 4.08f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 13.74f, 2.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) + lineTo(6.25f, 4.0f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 6.25f) + curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) + horizontalLineToRelative(-1.76f) + verticalLineToRelative(0.08f) + close() + moveTo(16.0f, 4.1f) + verticalLineToRelative(0.15f) + verticalLineToRelative(-0.15f) + close() + moveTo(10.25f, 6.5f) + horizontalLineToRelative(3.5f) + curveToRelative(0.78f, 0.0f, 1.47f, -0.4f, 1.87f, -1.0f) + horizontalLineToRelative(2.13f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(6.25f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(5.5f, 6.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.13f) + curveToRelative(0.4f, 0.6f, 1.09f, 1.0f, 1.87f, 1.0f) + close() + moveTo(10.25f, 3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + } + } + return _clipboardClock!! + } + +private var _clipboardClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardCode.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardCode.kt new file mode 100644 index 00000000..227abbdb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardCode.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClipboardCode: ImageVector + get() { + if (_clipboardCode != null) { + return _clipboardCode!! + } + _clipboardCode = fluentIcon(name = "Regular.ClipboardCode") { + fluentPath { + moveTo(13.75f, 2.0f) + curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) + horizontalLineToRelative(1.76f) + curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) + verticalLineToRelative(7.46f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.5f, -1.7f) + lineTo(18.5f, 6.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.13f) + curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.78f, 0.0f, -1.47f, -0.4f, -1.87f, -1.0f) + lineTo(6.25f, 5.51f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(5.38f) + lineToRelative(0.81f, 0.91f) + curveToRelative(0.35f, 0.39f, 0.82f, 0.59f, 1.3f, 0.59f) + lineTo(6.25f, 22.01f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 6.25f) + curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(1.76f) + curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) + horizontalLineToRelative(3.5f) + close() + moveTo(15.99f, 4.1f) + lineTo(16.0f, 4.25f) + lineTo(16.0f, 4.1f) + close() + moveTo(13.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(19.0f, 13.75f) + lineToRelative(-0.03f, 0.21f) + lineToRelative(-2.5f, 8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.44f, -0.42f) + lineToRelative(2.5f, -8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.47f, 0.21f) + close() + moveTo(11.19f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.0f) + lineToRelative(2.0f, -2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.12f, 1.0f) + lineTo(12.75f, 18.0f) + lineToRelative(1.56f, 1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.12f, 1.0f) + lineToRelative(-2.0f, -2.25f) + close() + moveTo(19.75f, 20.81f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.06f, -1.06f) + lineTo(21.25f, 18.0f) + lineToRelative(-1.56f, -1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.12f, -1.0f) + lineToRelative(2.0f, 2.25f) + curveToRelative(0.25f, 0.29f, 0.25f, 0.71f, 0.0f, 1.0f) + lineToRelative(-2.0f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 0.06f) + close() + } + } + return _clipboardCode!! + } + +private var _clipboardCode: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardDataBar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardDataBar.kt new file mode 100644 index 00000000..97511ecb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardDataBar.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClipboardDataBar: ImageVector + get() { + if (_clipboardDataBar != null) { + return _clipboardDataBar!! + } + _clipboardDataBar = fluentIcon(name = "Regular.ClipboardDataBar") { + fluentPath { + moveTo(15.99f, 4.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) + lineTo(6.25f, 4.0f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 6.25f) + curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) + horizontalLineToRelative(-1.76f) + close() + moveTo(15.99f, 4.1f) + lineTo(16.0f, 4.25f) + lineTo(16.0f, 4.1f) + close() + moveTo(10.25f, 6.5f) + horizontalLineToRelative(3.5f) + curveToRelative(0.78f, 0.0f, 1.47f, -0.4f, 1.87f, -1.0f) + horizontalLineToRelative(2.13f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(6.25f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(5.5f, 6.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.13f) + curveToRelative(0.4f, 0.6f, 1.09f, 1.0f, 1.87f, 1.0f) + close() + moveTo(10.25f, 3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(16.5f, 14.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-3.0f) + close() + moveTo(12.0f, 11.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-5.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(9.0f, 9.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-7.5f) + close() + } + } + return _clipboardDataBar!! + } + +private var _clipboardDataBar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardDay.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardDay.kt new file mode 100644 index 00000000..5307bb91 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardDay.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClipboardDay: ImageVector + get() { + if (_clipboardDay != null) { + return _clipboardDay!! + } + _clipboardDay = fluentIcon(name = "Regular.ClipboardDay") { + fluentPath { + moveTo(8.0f, 9.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 9.75f) + close() + moveTo(9.75f, 12.0f) + curveTo(8.78f, 12.0f, 8.0f, 12.78f, 8.0f, 13.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(4.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-4.5f) + close() + moveTo(9.5f, 13.75f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(4.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-2.5f) + close() + moveTo(13.75f, 2.0f) + curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) + horizontalLineToRelative(1.76f) + curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 6.25f) + curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(1.76f) + curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) + horizontalLineToRelative(3.5f) + close() + moveTo(15.99f, 4.1f) + lineTo(16.0f, 4.25f) + lineTo(16.0f, 4.1f) + close() + moveTo(13.75f, 6.5f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.78f, 0.0f, -1.47f, -0.4f, -1.87f, -1.0f) + lineTo(6.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(18.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.13f) + curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) + close() + moveTo(13.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + } + } + return _clipboardDay!! + } + +private var _clipboardDay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardError.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardError.kt new file mode 100644 index 00000000..b77fda70 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardError.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClipboardError: ImageVector + get() { + if (_clipboardError != null) { + return _clipboardError!! + } + _clipboardError = fluentIcon(name = "Regular.ClipboardError") { + fluentPath { + moveTo(13.75f, 2.0f) + curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) + horizontalLineToRelative(1.76f) + curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) + verticalLineToRelative(5.25f) + curveToRelative(-0.47f, -0.2f, -0.98f, -0.34f, -1.5f, -0.42f) + lineTo(18.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.13f) + curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.78f, 0.0f, -1.47f, -0.4f, -1.87f, -1.0f) + lineTo(6.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(5.48f) + curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 6.25f) + curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(1.76f) + curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) + horizontalLineToRelative(3.5f) + close() + moveTo(15.99f, 4.1f) + lineTo(16.0f, 4.25f) + lineTo(16.0f, 4.1f) + close() + moveTo(13.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(17.5f, 14.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(17.5f, 21.13f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.25f) + close() + } + } + return _clipboardError!! + } + +private var _clipboardError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardHeart.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardHeart.kt new file mode 100644 index 00000000..778f0b70 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardHeart.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClipboardHeart: ImageVector + get() { + if (_clipboardHeart != null) { + return _clipboardHeart!! + } + _clipboardHeart = fluentIcon(name = "Regular.ClipboardHeart") { + fluentPath { + moveTo(20.0f, 6.25f) + verticalLineToRelative(4.98f) + curveToRelative(-0.5f, -0.05f, -1.0f, -0.03f, -1.5f, 0.09f) + lineTo(18.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.13f) + curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.78f, 0.0f, -1.47f, -0.4f, -1.87f, -1.0f) + lineTo(6.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(6.79f) + lineToRelative(1.5f, 1.5f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 6.25f) + curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(1.76f) + curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) + horizontalLineToRelative(3.5f) + curveToRelative(1.16f, 0.0f, 2.11f, 0.87f, 2.24f, 2.0f) + horizontalLineToRelative(1.76f) + curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) + close() + moveTo(16.0f, 4.1f) + verticalLineToRelative(0.15f) + verticalLineToRelative(-0.15f) + close() + moveTo(10.25f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + close() + moveTo(16.48f, 22.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 0.0f) + lineToRelative(4.41f, -4.4f) + arcToRelative(3.47f, 3.47f, 0.0f, true, false, -4.9f, -4.91f) + lineToRelative(-0.04f, 0.04f) + lineToRelative(-0.03f, -0.04f) + arcToRelative(3.47f, 3.47f, 0.0f, true, false, -4.9f, 4.9f) + lineToRelative(4.4f, 4.41f) + close() + } + } + return _clipboardHeart!! + } + +private var _clipboardHeart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardImage.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardImage.kt new file mode 100644 index 00000000..431c95eb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardImage.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClipboardImage: ImageVector + get() { + if (_clipboardImage != null) { + return _clipboardImage!! + } + _clipboardImage = fluentIcon(name = "Regular.ClipboardImage") { + fluentPath { + moveTo(13.75f, 2.0f) + curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) + horizontalLineToRelative(1.76f) + curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) + lineTo(20.0f, 11.0f) + horizontalLineToRelative(-1.5f) + lineTo(18.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.13f) + curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.78f, 0.0f, -1.47f, -0.4f, -1.87f, -1.0f) + lineTo(6.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.78f) + curveToRelative(0.07f, 0.54f, 0.24f, 1.05f, 0.5f, 1.5f) + lineTo(6.26f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 6.25f) + curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(1.76f) + curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) + horizontalLineToRelative(3.5f) + close() + moveTo(15.99f, 4.1f) + lineTo(16.0f, 4.25f) + lineTo(16.0f, 4.1f) + close() + moveTo(13.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(15.0f, 12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.56f, 0.15f, 1.08f, 0.42f, 1.52f) + lineToRelative(3.49f, -3.49f) + curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.0f) + lineToRelative(3.5f, 3.5f) + curveToRelative(0.26f, -0.45f, 0.41f, -0.97f, 0.41f, -1.53f) + verticalLineToRelative(-5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + horizontalLineToRelative(-5.0f) + close() + moveTo(15.0f, 23.0f) + curveToRelative(-0.56f, 0.0f, -1.08f, -0.15f, -1.52f, -0.42f) + lineToRelative(3.49f, -3.49f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(3.5f, 3.5f) + curveToRelative(-0.45f, 0.26f, -0.97f, 0.41f, -1.53f, 0.41f) + horizontalLineToRelative(-5.0f) + close() + moveTo(20.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + close() + } + } + return _clipboardImage!! + } + +private var _clipboardImage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardLetter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardLetter.kt new file mode 100644 index 00000000..a0a2ce1a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardLetter.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClipboardLetter: ImageVector + get() { + if (_clipboardLetter != null) { + return _clipboardLetter!! + } + _clipboardLetter = fluentIcon(name = "Regular.ClipboardLetter") { + fluentPath { + moveTo(13.75f, 2.0f) + curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) + horizontalLineToRelative(1.76f) + curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) + verticalLineToRelative(8.27f) + lineToRelative(-1.5f, -3.33f) + lineTo(18.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.13f) + curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.78f, 0.0f, -1.47f, -0.4f, -1.87f, -1.0f) + lineTo(6.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(5.05f) + lineToRelative(-0.17f, 0.38f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -0.05f, 1.12f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 6.25f) + curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(1.76f) + curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) + horizontalLineToRelative(3.5f) + close() + moveTo(15.99f, 4.1f) + lineTo(16.0f, 4.25f) + lineTo(16.0f, 4.1f) + close() + moveTo(13.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(17.45f, 11.3f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.91f, 0.0f) + lineToRelative(-2.7f, 5.99f) + verticalLineToRelative(0.02f) + lineToRelative(-1.8f, 3.98f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.91f, 0.42f) + lineTo(14.62f, 18.0f) + horizontalLineToRelative(4.75f) + lineToRelative(1.67f, 3.7f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.92f, -0.4f) + lineToRelative(-1.8f, -4.0f) + lineToRelative(-0.01f, -0.02f) + lineToRelative(-2.7f, -5.99f) + close() + moveTo(18.92f, 17.0f) + horizontalLineToRelative(-3.85f) + lineToRelative(1.92f, -4.28f) + lineTo(18.92f, 17.0f) + close() + } + } + return _clipboardLetter!! + } + +private var _clipboardLetter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardLink.kt new file mode 100644 index 00000000..458b91c4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardLink.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClipboardLink: ImageVector + get() { + if (_clipboardLink != null) { + return _clipboardLink!! + } + _clipboardLink = fluentIcon(name = "Regular.ClipboardLink") { + fluentPath { + moveTo(15.99f, 4.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) + lineTo(6.25f, 4.0f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + lineTo(11.0f, 22.0f) + curveToRelative(-0.34f, -0.45f, -0.6f, -0.95f, -0.77f, -1.5f) + lineTo(6.25f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(5.5f, 6.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.13f) + curveToRelative(0.4f, 0.6f, 1.09f, 1.0f, 1.87f, 1.0f) + horizontalLineToRelative(3.5f) + curveToRelative(0.78f, 0.0f, 1.46f, -0.4f, 1.87f, -1.0f) + horizontalLineToRelative(2.13f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(18.5f, 14.0f) + lineTo(20.0f, 14.0f) + lineTo(20.0f, 6.25f) + curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) + horizontalLineToRelative(-1.76f) + close() + moveTo(10.25f, 3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(19.0f, 15.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.2f, 8.0f) + lineTo(19.0f, 23.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.16f, -5.0f) + lineTo(19.0f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(15.0f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(15.0f, 16.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -0.16f, 5.0f) + lineTo(15.0f, 21.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(15.0f, 23.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -0.2f, -8.0f) + horizontalLineToRelative(0.2f) + close() + moveTo(15.25f, 18.25f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + } + } + return _clipboardLink!! + } + +private var _clipboardLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardMonth.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardMonth.kt new file mode 100644 index 00000000..61f296a3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardMonth.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClipboardMonth: ImageVector + get() { + if (_clipboardMonth != null) { + return _clipboardMonth!! + } + _clipboardMonth = fluentIcon(name = "Regular.ClipboardMonth") { + fluentPath { + moveTo(8.25f, 12.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + moveTo(8.25f, 16.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + moveTo(17.5f, 11.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(12.25f, 12.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + moveTo(13.5f, 15.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(16.0f, 4.08f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 13.74f, 2.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) + lineTo(6.25f, 4.0f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 6.25f) + curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) + horizontalLineToRelative(-1.76f) + verticalLineToRelative(0.08f) + close() + moveTo(16.0f, 4.1f) + verticalLineToRelative(0.15f) + verticalLineToRelative(-0.15f) + close() + moveTo(10.25f, 6.5f) + horizontalLineToRelative(3.5f) + curveToRelative(0.78f, 0.0f, 1.47f, -0.4f, 1.87f, -1.0f) + horizontalLineToRelative(2.13f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(6.25f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(5.5f, 6.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.13f) + curveToRelative(0.4f, 0.6f, 1.09f, 1.0f, 1.87f, 1.0f) + close() + moveTo(10.25f, 3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + } + } + return _clipboardMonth!! + } + +private var _clipboardMonth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardMore.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardMore.kt new file mode 100644 index 00000000..c84c11ae --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardMore.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClipboardMore: ImageVector + get() { + if (_clipboardMore != null) { + return _clipboardMore!! + } + _clipboardMore = fluentIcon(name = "Regular.ClipboardMore") { + fluentPath { + moveTo(15.99f, 4.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) + lineTo(6.25f, 4.0f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + lineTo(8.5f, 22.0f) + curveToRelative(-0.31f, -0.42f, -0.5f, -0.94f, -0.5f, -1.5f) + lineTo(6.25f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(5.5f, 6.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.13f) + curveToRelative(0.4f, 0.6f, 1.09f, 1.0f, 1.87f, 1.0f) + horizontalLineToRelative(3.5f) + curveToRelative(0.78f, 0.0f, 1.47f, -0.4f, 1.87f, -1.0f) + horizontalLineToRelative(2.13f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(18.5f, 19.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 1.5f, -0.95f) + lineTo(20.0f, 6.25f) + curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) + horizontalLineToRelative(-1.76f) + close() + moveTo(15.99f, 4.1f) + lineTo(16.0f, 4.25f) + lineTo(16.0f, 4.1f) + close() + moveTo(10.25f, 3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(12.0f, 20.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + moveTo(15.5f, 22.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + close() + moveTo(20.5f, 22.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + close() + } + } + return _clipboardMore!! + } + +private var _clipboardMore: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardPulse.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardPulse.kt new file mode 100644 index 00000000..6dc526ba --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardPulse.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClipboardPulse: ImageVector + get() { + if (_clipboardPulse != null) { + return _clipboardPulse!! + } + _clipboardPulse = fluentIcon(name = "Regular.ClipboardPulse") { + fluentPath { + moveTo(13.75f, 2.0f) + curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) + horizontalLineToRelative(1.76f) + curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) + lineTo(20.0f, 13.0f) + horizontalLineToRelative(-1.5f) + lineTo(18.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.13f) + curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.78f, 0.0f, -1.47f, -0.4f, -1.87f, -1.0f) + lineTo(6.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(5.5f, 13.0f) + lineTo(4.0f, 13.0f) + lineTo(4.0f, 6.25f) + curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(1.76f) + curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) + horizontalLineToRelative(3.5f) + close() + moveTo(15.99f, 4.1f) + lineTo(16.0f, 4.25f) + lineTo(16.0f, 4.1f) + close() + moveTo(13.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(18.5f, 16.5f) + lineTo(20.0f, 16.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 16.5f) + horizontalLineToRelative(1.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(18.5f, 16.5f) + close() + moveTo(10.97f, 8.54f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.4f, -0.13f) + lineTo(6.8f, 14.0f) + lineTo(2.75f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.5f) + curveToRelative(0.28f, 0.0f, 0.54f, -0.16f, 0.67f, -0.41f) + lineToRelative(2.15f, -4.3f) + lineToRelative(1.96f, 6.67f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.4f, 0.13f) + lineToRelative(1.88f, -3.78f) + lineToRelative(0.8f, 1.33f) + curveToRelative(0.13f, 0.22f, 0.38f, 0.36f, 0.64f, 0.36f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.08f) + lineToRelative(-1.28f, -2.14f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.31f, 0.05f) + lineToRelative(-1.65f, 3.3f) + lineToRelative(-1.96f, -6.67f) + close() + } + } + return _clipboardPulse!! + } + +private var _clipboardPulse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardSearch.kt new file mode 100644 index 00000000..c69fb68c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardSearch.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClipboardSearch: ImageVector + get() { + if (_clipboardSearch != null) { + return _clipboardSearch!! + } + _clipboardSearch = fluentIcon(name = "Regular.ClipboardSearch") { + fluentPath { + moveTo(15.99f, 4.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) + lineTo(6.25f, 4.0f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) + verticalLineToRelative(3.85f) + curveToRelative(0.47f, -0.24f, 0.97f, -0.41f, 1.5f, -0.5f) + lineTo(5.5f, 6.24f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.13f) + curveToRelative(0.4f, 0.6f, 1.09f, 1.0f, 1.87f, 1.0f) + horizontalLineToRelative(3.5f) + curveToRelative(0.78f, 0.0f, 1.47f, -0.4f, 1.87f, -1.0f) + horizontalLineToRelative(2.13f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-3.92f) + curveToRelative(0.23f, 0.47f, 0.23f, 1.03f, 0.0f, 1.5f) + horizontalLineToRelative(3.92f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 6.25f) + curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) + horizontalLineToRelative(-1.76f) + close() + moveTo(15.99f, 4.1f) + lineTo(16.0f, 4.25f) + lineTo(16.0f, 4.1f) + close() + moveTo(10.25f, 3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(9.95f, 17.89f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, -1.15f, 0.98f) + lineToRelative(2.92f, 2.91f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.83f, -2.83f) + close() + moveTo(6.5f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) + close() + } + } + return _clipboardSearch!! + } + +private var _clipboardSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardSettings.kt new file mode 100644 index 00000000..cb19dc84 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardSettings.kt @@ -0,0 +1,95 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClipboardSettings: ImageVector + get() { + if (_clipboardSettings != null) { + return _clipboardSettings!! + } + _clipboardSettings = fluentIcon(name = "Regular.ClipboardSettings") { + fluentPath { + moveTo(13.75f, 2.0f) + curveToRelative(1.16f, 0.0f, 2.11f, 0.87f, 2.24f, 2.0f) + horizontalLineToRelative(1.76f) + curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) + verticalLineToRelative(5.25f) + curveToRelative(-0.47f, -0.2f, -0.98f, -0.34f, -1.5f, -0.42f) + lineTo(18.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.13f) + curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.78f, 0.0f, -1.47f, -0.4f, -1.87f, -1.0f) + lineTo(6.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(5.48f) + curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 6.25f) + curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(1.76f) + curveToRelative(0.13f, -1.13f, 1.08f, -2.0f, 2.24f, -2.0f) + horizontalLineToRelative(3.5f) + close() + moveTo(15.99f, 4.03f) + lineTo(15.99f, 4.0f) + verticalLineToRelative(0.03f) + close() + moveTo(15.99f, 4.1f) + lineTo(16.0f, 4.25f) + verticalLineToRelative(-0.17f) + verticalLineToRelative(0.02f) + close() + moveTo(13.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(14.28f, 13.98f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.59f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) + lineToRelative(0.55f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) + lineToRelative(-0.19f, 0.64f) + curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) + lineToRelative(0.49f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) + lineToRelative(-0.2f, -0.69f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) + lineToRelative(0.59f, -0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, -1.8f) + lineToRelative(-0.55f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.19f, -0.63f) + curveToRelative(-0.44f, -0.4f, -0.94f, -0.7f, -1.49f, -0.93f) + lineToRelative(-0.49f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) + lineToRelative(0.2f, 0.7f) + close() + moveTo(17.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) + close() + } + } + return _clipboardSettings!! + } + +private var _clipboardSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardTask.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardTask.kt new file mode 100644 index 00000000..3f3fc174 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardTask.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClipboardTask: ImageVector + get() { + if (_clipboardTask != null) { + return _clipboardTask!! + } + _clipboardTask = fluentIcon(name = "Regular.ClipboardTask") { + fluentPath { + moveTo(17.03f, 11.03f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineTo(11.0f, 14.94f) + lineToRelative(-1.97f, -1.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(2.5f, 2.5f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(5.5f, -5.5f) + close() + moveTo(15.99f, 4.08f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 13.75f, 2.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) + lineTo(6.25f, 4.0f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 6.25f) + curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) + horizontalLineToRelative(-1.76f) + verticalLineToRelative(0.08f) + close() + moveTo(15.99f, 4.1f) + lineTo(16.0f, 4.25f) + lineTo(16.0f, 4.1f) + close() + moveTo(10.25f, 6.5f) + horizontalLineToRelative(3.5f) + curveToRelative(0.78f, 0.0f, 1.47f, -0.4f, 1.87f, -1.0f) + horizontalLineToRelative(2.13f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(6.25f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(5.5f, 6.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.13f) + curveToRelative(0.4f, 0.6f, 1.09f, 1.0f, 1.87f, 1.0f) + close() + moveTo(10.25f, 3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + } + } + return _clipboardTask!! + } + +private var _clipboardTask: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardTaskAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardTaskAdd.kt new file mode 100644 index 00000000..b3531f16 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardTaskAdd.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClipboardTaskAdd: ImageVector + get() { + if (_clipboardTaskAdd != null) { + return _clipboardTaskAdd!! + } + _clipboardTaskAdd = fluentIcon(name = "Regular.ClipboardTaskAdd") { + fluentPath { + moveTo(13.99f, 4.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) + lineTo(4.25f, 4.0f) + curveTo(3.01f, 4.0f, 2.0f, 5.0f, 2.0f, 6.25f) + verticalLineToRelative(13.5f) + curveTo(2.0f, 20.99f, 3.0f, 22.0f, 4.25f, 22.0f) + horizontalLineToRelative(8.56f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, -1.5f) + lineTo(4.25f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(3.5f, 6.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.13f) + curveToRelative(0.4f, 0.6f, 1.09f, 1.0f, 1.87f, 1.0f) + horizontalLineToRelative(3.5f) + curveToRelative(0.78f, 0.0f, 1.47f, -0.4f, 1.87f, -1.0f) + horizontalLineToRelative(2.13f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(4.83f) + arcToRelative(6.55f, 6.55f, 0.0f, false, true, 1.5f, -0.06f) + lineTo(18.0f, 6.25f) + curveTo(18.0f, 5.01f, 17.0f, 4.0f, 15.75f, 4.0f) + horizontalLineToRelative(-1.76f) + close() + moveTo(13.99f, 4.1f) + lineTo(14.0f, 4.25f) + lineTo(14.0f, 4.1f) + close() + moveTo(8.25f, 3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(11.95f, 14.1f) + arcToRelative(6.54f, 6.54f, 0.0f, false, true, 2.15f, -2.14f) + lineToRelative(0.93f, -0.93f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineTo(9.0f, 14.94f) + lineToRelative(-1.97f, -1.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(2.5f, 2.5f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.43f, -2.43f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _clipboardTaskAdd!! + } + +private var _clipboardTaskAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardTaskListLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardTaskListLtr.kt new file mode 100644 index 00000000..d3f04864 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardTaskListLtr.kt @@ -0,0 +1,93 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClipboardTaskListLtr: ImageVector + get() { + if (_clipboardTaskListLtr != null) { + return _clipboardTaskListLtr!! + } + _clipboardTaskListLtr = fluentIcon(name = "Regular.ClipboardTaskListLtr") { + fluentPath { + moveTo(12.5f, 10.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(13.25f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + close() + moveTo(10.78f, 9.78f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-1.47f, 1.47f) + lineToRelative(-0.47f, -0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(1.0f, 1.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.0f, -2.0f) + close() + moveTo(10.78f, 14.22f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-2.0f, 2.0f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-1.0f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(0.47f, 0.47f) + lineToRelative(1.47f, -1.47f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(15.99f, 4.08f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 13.75f, 2.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) + lineTo(6.25f, 4.0f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 6.25f) + curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) + horizontalLineToRelative(-1.76f) + verticalLineToRelative(0.08f) + close() + moveTo(15.99f, 4.1f) + lineTo(16.0f, 4.25f) + lineTo(16.0f, 4.1f) + close() + moveTo(10.25f, 6.5f) + horizontalLineToRelative(3.5f) + curveToRelative(0.78f, 0.0f, 1.47f, -0.4f, 1.87f, -1.0f) + horizontalLineToRelative(2.13f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(6.25f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(5.5f, 6.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.13f) + curveToRelative(0.4f, 0.6f, 1.09f, 1.0f, 1.87f, 1.0f) + close() + moveTo(10.25f, 3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + } + } + return _clipboardTaskListLtr!! + } + +private var _clipboardTaskListLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardTaskListRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardTaskListRtl.kt new file mode 100644 index 00000000..51be9097 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardTaskListRtl.kt @@ -0,0 +1,88 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClipboardTaskListRtl: ImageVector + get() { + if (_clipboardTaskListRtl != null) { + return _clipboardTaskListRtl!! + } + _clipboardTaskListRtl = fluentIcon(name = "Regular.ClipboardTaskListRtl") { + fluentPath { + moveTo(17.28f, 8.72f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-2.0f, 2.0f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-1.0f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(0.47f, 0.47f) + lineToRelative(1.47f, -1.47f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(17.28f, 15.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-1.47f, 1.47f) + lineToRelative(-0.47f, -0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.0f, 1.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.0f, -2.0f) + close() + moveTo(7.0f, 10.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(7.75f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + close() + moveTo(15.99f, 4.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) + lineTo(6.25f, 4.0f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 6.25f) + curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) + horizontalLineToRelative(-1.76f) + close() + moveTo(10.25f, 6.5f) + horizontalLineToRelative(3.5f) + curveToRelative(0.78f, 0.0f, 1.47f, -0.4f, 1.87f, -1.0f) + horizontalLineToRelative(2.13f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(6.25f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(5.5f, 6.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.13f) + curveToRelative(0.4f, 0.6f, 1.09f, 1.0f, 1.87f, 1.0f) + close() + moveTo(10.25f, 3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + } + } + return _clipboardTaskListRtl!! + } + +private var _clipboardTaskListRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardTextEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardTextEdit.kt new file mode 100644 index 00000000..b6d0f0f8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardTextEdit.kt @@ -0,0 +1,88 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClipboardTextEdit: ImageVector + get() { + if (_clipboardTextEdit != null) { + return _clipboardTextEdit!! + } + _clipboardTextEdit = fluentIcon(name = "Regular.ClipboardTextEdit") { + fluentPath { + moveTo(15.99f, 4.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) + lineTo(6.25f, 4.0f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + lineTo(11.0f, 22.0f) + curveToRelative(0.0f, -0.2f, 0.01f, -0.4f, 0.06f, -0.6f) + lineToRelative(0.23f, -0.9f) + lineTo(6.25f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(5.5f, 6.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.13f) + curveToRelative(0.4f, 0.6f, 1.09f, 1.0f, 1.87f, 1.0f) + horizontalLineToRelative(3.5f) + curveToRelative(0.78f, 0.0f, 1.47f, -0.4f, 1.87f, -1.0f) + horizontalLineToRelative(2.13f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(5.61f) + curveToRelative(0.44f, -0.4f, 0.96f, -0.66f, 1.5f, -0.78f) + lineTo(20.0f, 6.25f) + curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) + horizontalLineToRelative(-1.76f) + close() + moveTo(15.99f, 4.1f) + lineTo(16.0f, 4.25f) + lineTo(16.0f, 4.1f) + close() + moveTo(10.25f, 3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(13.35f, 17.0f) + lineTo(8.0f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.98f) + curveToRelative(0.15f, -0.23f, 0.32f, -0.44f, 0.51f, -0.64f) + lineToRelative(0.87f, -0.86f) + close() + moveTo(12.0f, 14.5f) + lineTo(8.0f, 14.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 13.0f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(16.0f, 10.5f) + lineTo(8.0f, 10.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 9.0f) + horizontalLineToRelative(8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _clipboardTextEdit!! + } + +private var _clipboardTextEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardTextLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardTextLtr.kt new file mode 100644 index 00000000..913679a3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardTextLtr.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClipboardTextLtr: ImageVector + get() { + if (_clipboardTextLtr != null) { + return _clipboardTextLtr!! + } + _clipboardTextLtr = fluentIcon(name = "Regular.ClipboardTextLtr") { + fluentPath { + moveTo(13.75f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + lineToRelative(-0.01f, -0.25f) + horizontalLineToRelative(1.76f) + curveTo(18.99f, 4.0f, 20.0f, 5.0f, 20.0f, 6.25f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 6.25f) + curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(1.76f) + verticalLineToRelative(0.18f) + lineTo(8.0f, 4.25f) + curveTo(8.0f, 3.01f, 9.0f, 2.0f, 10.25f, 2.0f) + horizontalLineToRelative(3.5f) + close() + moveTo(13.75f, 6.5f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.8f, 0.0f, -1.5f, -0.41f, -1.9f, -1.03f) + lineToRelative(0.03f, 0.03f) + lineTo(6.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(18.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.13f) + lineToRelative(0.02f, -0.03f) + curveToRelative(-0.4f, 0.62f, -1.1f, 1.03f, -1.89f, 1.03f) + close() + moveTo(13.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(8.0f, 14.5f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(8.0f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(8.0f, 10.5f) + horizontalLineToRelative(8.0f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 16.0f, 9.0f) + lineTo(8.0f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(8.0f, 18.5f) + horizontalLineToRelative(6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(8.0f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + } + } + return _clipboardTextLtr!! + } + +private var _clipboardTextLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardTextRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardTextRtl.kt new file mode 100644 index 00000000..3b5ca41f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClipboardTextRtl.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClipboardTextRtl: ImageVector + get() { + if (_clipboardTextRtl != null) { + return _clipboardTextRtl!! + } + _clipboardTextRtl = fluentIcon(name = "Regular.ClipboardTextRtl") { + fluentPath { + moveTo(8.0f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.0f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 16.0f, 9.0f) + horizontalLineTo(8.0f) + close() + } + fluentPath { + moveTo(11.25f, 13.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + fluentPath { + moveTo(10.0f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.0f) + close() + } + fluentPath { + moveTo(15.99f, 4.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-1.16f, 0.0f, -2.11f, 0.87f, -2.24f, 2.0f) + lineTo(6.25f, 4.0f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 6.25f) + curveTo(20.0f, 5.01f, 19.0f, 4.0f, 17.75f, 4.0f) + horizontalLineToRelative(-1.76f) + close() + moveTo(15.99f, 4.1f) + lineTo(16.0f, 4.25f) + lineTo(16.0f, 4.1f) + close() + moveTo(10.25f, 6.5f) + horizontalLineToRelative(3.5f) + curveToRelative(0.78f, 0.0f, 1.47f, -0.4f, 1.87f, -1.0f) + horizontalLineToRelative(2.13f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(6.25f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(5.5f, 6.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.13f) + curveToRelative(0.4f, 0.6f, 1.09f, 1.0f, 1.87f, 1.0f) + close() + moveTo(10.25f, 3.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + } + } + return _clipboardTextRtl!! + } + +private var _clipboardTextRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClockAlarm.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClockAlarm.kt new file mode 100644 index 00000000..edea779e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClockAlarm.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClockAlarm: ImageVector + get() { + if (_clockAlarm != null) { + return _clockAlarm!! + } + _clockAlarm = fluentIcon(name = "Regular.ClockAlarm") { + fluentPath { + moveTo(12.0f, 7.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(12.0f, 12.0f) + lineTo(12.0f, 7.75f) + close() + moveTo(3.48f, 9.1f) + arcTo(4.0f, 4.0f, 0.0f, true, true, 9.1f, 3.48f) + arcToRelative(8.99f, 8.99f, 0.0f, false, true, 5.8f, 0.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, 5.62f, 5.62f) + arcToRelative(8.99f, 8.99f, 0.0f, false, true, -1.65f, 8.71f) + lineToRelative(1.91f, 1.91f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-1.9f, -1.9f) + arcToRelative(8.96f, 8.96f, 0.0f, false, true, -11.63f, 0.0f) + lineToRelative(-1.91f, 1.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(1.9f, -1.9f) + arcTo(8.96f, 8.96f, 0.0f, false, true, 3.49f, 9.1f) + close() + moveTo(3.5f, 6.0f) + curveToRelative(0.0f, 0.63f, 0.23f, 1.2f, 0.62f, 1.65f) + arcToRelative(9.04f, 9.04f, 0.0f, false, true, 3.53f, -3.53f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 3.5f, 6.0f) + close() + moveTo(19.88f, 7.65f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -3.53f, -3.53f) + arcToRelative(9.04f, 9.04f, 0.0f, false, true, 3.53f, 3.53f) + close() + moveTo(4.5f, 12.0f) + arcToRelative(7.5f, 7.5f, 0.0f, true, false, 15.0f, 0.0f) + arcToRelative(7.5f, 7.5f, 0.0f, false, false, -15.0f, 0.0f) + close() + } + } + return _clockAlarm!! + } + +private var _clockAlarm: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClockArrowDownload.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClockArrowDownload.kt new file mode 100644 index 00000000..194ec130 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClockArrowDownload.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClockArrowDownload: ImageVector + get() { + if (_clockArrowDownload != null) { + return _clockArrowDownload!! + } + _clockArrowDownload = fluentIcon(name = "Regular.ClockArrowDownload") { + fluentPath { + moveTo(4.5f, 11.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 8.19f, 8.5f) + curveToRelative(-0.17f, 0.51f, -0.4f, 1.0f, -0.68f, 1.45f) + arcTo(10.0f, 10.0f, 0.0f, true, false, 3.05f, 12.0f) + curveToRelative(0.45f, -0.28f, 0.94f, -0.51f, 1.46f, -0.68f) + lineTo(4.5f, 11.0f) + close() + moveTo(13.0f, 5.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + verticalLineToRelative(6.1f) + curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) + horizontalLineToRelative(4.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + lineTo(13.0f, 11.0f) + lineTo(13.0f, 5.65f) + close() + moveTo(1.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 5.0f, -5.48f) + verticalLineToRelative(5.77f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.5f, 2.5f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineTo(7.0f, 17.79f) + verticalLineToRelative(-5.77f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -6.0f, 5.48f) + close() + moveTo(9.5f, 20.5f) + arcTo(0.5f, 0.5f, 0.0f, false, false, 9.0f, 20.0f) + lineTo(4.0f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + close() + } + } + return _clockArrowDownload!! + } + +private var _clockArrowDownload: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClockDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClockDismiss.kt new file mode 100644 index 00000000..2326300a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClockDismiss.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClockDismiss: ImageVector + get() { + if (_clockDismiss != null) { + return _clockDismiss!! + } + _clockDismiss = fluentIcon(name = "Regular.ClockDismiss") { + fluentPath { + moveTo(4.5f, 11.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 8.19f, 8.5f) + curveToRelative(-0.17f, 0.51f, -0.4f, 1.0f, -0.68f, 1.45f) + arcTo(10.0f, 10.0f, 0.0f, true, false, 3.05f, 12.0f) + curveToRelative(0.45f, -0.28f, 0.94f, -0.51f, 1.46f, -0.68f) + lineTo(4.5f, 11.0f) + close() + moveTo(13.0f, 5.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + verticalLineToRelative(6.1f) + curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) + horizontalLineToRelative(4.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + lineTo(13.0f, 11.0f) + lineTo(13.0f, 5.65f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(6.5f, 16.8f) + lineTo(4.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineTo(7.21f, 17.5f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineTo(6.5f, 16.79f) + close() + } + } + return _clockDismiss!! + } + +private var _clockDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClockLock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClockLock.kt new file mode 100644 index 00000000..e58726bd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClockLock.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClockLock: ImageVector + get() { + if (_clockLock != null) { + return _clockLock!! + } + _clockLock = fluentIcon(name = "Regular.ClockLock") { + fluentPath { + moveTo(11.0f, 21.5f) + verticalLineToRelative(-1.06f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, -7.45f, -9.35f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -1.47f, 2.17f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 8.88f, 8.69f) + curveToRelative(0.03f, -0.15f, 0.04f, -0.3f, 0.04f, -0.45f) + close() + moveTo(12.0f, 6.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + verticalLineToRelative(6.1f) + curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) + horizontalLineToRelative(4.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + lineTo(12.0f, 12.0f) + lineTo(12.0f, 6.65f) + close() + moveTo(3.0f, 15.0f) + verticalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(0.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-6.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 1.0f, 21.5f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + lineTo(3.0f, 15.0f) + close() + moveTo(4.5f, 14.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + close() + moveTo(6.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + } + } + return _clockLock!! + } + +private var _clockLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClockPause.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClockPause.kt new file mode 100644 index 00000000..96ef61c9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClockPause.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClockPause: ImageVector + get() { + if (_clockPause != null) { + return _clockPause!! + } + _clockPause = fluentIcon(name = "Regular.ClockPause") { + fluentPath { + moveTo(4.5f, 11.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 8.19f, 8.5f) + curveToRelative(-0.17f, 0.51f, -0.4f, 1.0f, -0.68f, 1.45f) + arcTo(10.0f, 10.0f, 0.0f, true, false, 3.05f, 12.0f) + curveToRelative(0.45f, -0.28f, 0.94f, -0.51f, 1.46f, -0.68f) + lineTo(4.5f, 11.0f) + close() + moveTo(13.0f, 5.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + verticalLineToRelative(6.1f) + curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) + horizontalLineToRelative(4.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + lineTo(13.0f, 11.0f) + lineTo(13.0f, 5.65f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(4.5f, 20.5f) + arcTo(0.5f, 0.5f, 0.0f, false, false, 5.0f, 20.0f) + verticalLineToRelative(-5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + close() + moveTo(8.5f, 20.5f) + arcTo(0.5f, 0.5f, 0.0f, false, false, 9.0f, 20.0f) + verticalLineToRelative(-5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + close() + } + } + return _clockPause!! + } + +private var _clockPause: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClockToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClockToolbox.kt new file mode 100644 index 00000000..520e8342 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClockToolbox.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClockToolbox: ImageVector + get() { + if (_clockToolbox != null) { + return _clockToolbox!! + } + _clockToolbox = fluentIcon(name = "Regular.ClockToolbox") { + fluentPath { + moveTo(4.5f, 11.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 8.5f, 8.5f) + lineTo(13.0f, 21.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -9.98f, -9.39f) + curveToRelative(0.41f, -0.33f, 0.92f, -0.55f, 1.48f, -0.6f) + lineTo(4.5f, 11.0f) + close() + moveTo(13.0f, 5.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + verticalLineToRelative(6.1f) + curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) + horizontalLineToRelative(4.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + lineTo(13.0f, 11.0f) + lineTo(13.0f, 5.65f) + close() + moveTo(8.24f, 13.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + lineTo(4.49f, 15.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-1.25f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(3.0f, 15.0f) + verticalLineToRelative(-1.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(3.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(10.0f, 15.0f) + horizontalLineToRelative(0.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + lineTo(12.0f, 18.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(0.5f) + lineTo(4.0f, 18.0f) + verticalLineToRelative(-0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(0.5f) + lineTo(1.0f, 18.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + lineTo(3.0f, 15.0f) + close() + moveTo(9.0f, 19.5f) + lineTo(9.0f, 19.0f) + lineTo(4.0f, 19.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + lineTo(3.0f, 19.0f) + lineTo(1.0f, 19.0f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(8.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + lineTo(12.0f, 19.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + close() + } + } + return _clockToolbox!! + } + +private var _clockToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClosedCaption.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClosedCaption.kt new file mode 100644 index 00000000..3a92fc21 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClosedCaption.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClosedCaption: ImageVector + get() { + if (_closedCaption != null) { + return _closedCaption!! + } + _closedCaption = fluentIcon(name = "Regular.ClosedCaption") { + fluentPath { + moveTo(18.75f, 4.0f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(5.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(5.25f, 4.0f) + horizontalLineToRelative(13.5f) + close() + moveTo(18.75f, 5.5f) + lineTo(5.11f, 5.5f) + curveToRelative(-0.9f, 0.08f, -1.61f, 0.83f, -1.61f, 1.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(5.5f, 12.0f) + curveToRelative(0.0f, -3.15f, 2.71f, -4.78f, 5.12f, -3.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 1.3f) + curveTo(8.48f, 9.1f, 7.0f, 10.0f, 7.0f, 12.0f) + reflectiveCurveToRelative(1.48f, 2.9f, 2.88f, 2.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.74f, 1.3f) + curveToRelative(-2.4f, 1.37f, -5.12f, -0.26f, -5.12f, -3.4f) + close() + moveTo(13.0f, 12.0f) + curveToRelative(0.0f, -3.15f, 2.71f, -4.78f, 5.12f, -3.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 1.3f) + curveToRelative(-1.4f, -0.8f, -2.88f, 0.1f, -2.88f, 2.1f) + reflectiveCurveToRelative(1.48f, 2.9f, 2.88f, 2.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.74f, 1.3f) + curveTo(15.72f, 16.78f, 13.0f, 15.15f, 13.0f, 12.0f) + close() + } + } + return _closedCaption!! + } + +private var _closedCaption: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClosedCaptionOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClosedCaptionOff.kt new file mode 100644 index 00000000..5b3ea9af --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ClosedCaptionOff.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ClosedCaptionOff: ImageVector + get() { + if (_closedCaptionOff != null) { + return _closedCaptionOff!! + } + _closedCaptionOff = fluentIcon(name = "Regular.ClosedCaptionOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(1.25f, 1.25f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) + horizontalLineToRelative(13.69f) + lineToRelative(1.78f, 1.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(17.44f, 18.5f) + lineTo(5.25f, 18.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.73f, 0.44f, -1.35f, 1.07f, -1.61f) + lineTo(7.4f, 8.46f) + curveTo(6.3f, 9.04f, 5.5f, 10.3f, 5.5f, 12.0f) + curveToRelative(0.0f, 3.14f, 2.72f, 4.77f, 5.12f, 3.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.74f, -1.3f) + curveTo(8.48f, 14.9f, 7.0f, 14.0f, 7.0f, 12.0f) + curveToRelative(0.0f, -1.37f, 0.69f, -2.22f, 1.57f, -2.37f) + lineToRelative(8.87f, 8.87f) + close() + moveTo(20.43f, 17.25f) + curveToRelative(0.05f, -0.16f, 0.07f, -0.32f, 0.07f, -0.5f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(8.68f, 5.5f) + lineTo(7.18f, 4.0f) + horizontalLineToRelative(11.57f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.6f, -0.16f, 1.15f, -0.44f, 1.63f) + lineToRelative(-1.13f, -1.13f) + close() + moveTo(14.55f, 11.37f) + lineTo(13.35f, 10.17f) + arcToRelative(3.26f, 3.26f, 0.0f, false, true, 4.77f, -1.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 1.3f) + curveToRelative(-1.24f, -0.7f, -2.55f, -0.08f, -2.83f, 1.47f) + close() + } + } + return _closedCaptionOff!! + } + +private var _closedCaptionOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudAdd.kt new file mode 100644 index 00000000..0217d0b5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudAdd.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CloudAdd: ImageVector + get() { + if (_cloudAdd != null) { + return _cloudAdd!! + } + _cloudAdd = fluentIcon(name = "Regular.CloudAdd") { + fluentPath { + moveTo(12.0f, 4.5f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.5f, 4.29f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 0.71f) + lineTo(6.5f, 9.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + horizontalLineToRelative(3.58f) + arcToRelative(6.55f, 6.55f, 0.0f, false, false, -0.06f, 1.5f) + lineTo(6.5f, 17.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.05f, 4.97f) + arcToRelative(6.53f, 6.53f, 0.0f, false, false, -1.8f, -1.85f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 17.5f, 9.5f) + horizontalLineToRelative(-0.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.71f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 4.5f) + close() + moveTo(22.0f, 16.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(17.0f, 17.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(16.0f, 17.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(16.0f, 16.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(17.0f, 16.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(17.0f, 17.0f) + close() + } + } + return _cloudAdd!! + } + +private var _cloudAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudArchive.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudArchive.kt new file mode 100644 index 00000000..f4df8ce5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudArchive.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CloudArchive: ImageVector + get() { + if (_cloudArchive != null) { + return _cloudArchive!! + } + _cloudArchive = fluentIcon(name = "Regular.CloudArchive") { + fluentPath { + moveTo(12.0f, 5.5f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.5f, 4.29f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 0.71f) + lineTo(6.5f, 10.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + horizontalLineToRelative(5.18f) + curveToRelative(0.1f, 0.09f, 0.2f, 0.17f, 0.32f, 0.23f) + lineTo(12.0f, 18.0f) + lineTo(6.5f, 18.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) + arcTo(4.5f, 4.5f, 0.0f, false, true, 21.74f, 12.0f) + lineTo(20.1f, 12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -2.6f, -1.5f) + horizontalLineToRelative(-0.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.71f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 5.5f) + close() + moveTo(13.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineToRelative(-9.0f) + close() + moveTo(20.0f, 23.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-9.0f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(15.5f, 18.5f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + } + } + return _cloudArchive!! + } + +private var _cloudArchive: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudArrowDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudArrowDown.kt new file mode 100644 index 00000000..7f5ad95d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudArrowDown.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CloudArrowDown: ImageVector + get() { + if (_cloudArrowDown != null) { + return _cloudArrowDown!! + } + _cloudArrowDown = fluentIcon(name = "Regular.CloudArrowDown") { + fluentPath { + moveTo(12.0f, 4.5f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.5f, 4.29f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 0.71f) + lineTo(6.5f, 9.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + horizontalLineToRelative(3.58f) + arcToRelative(6.55f, 6.55f, 0.0f, false, false, -0.06f, 1.5f) + lineTo(6.5f, 17.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.05f, 4.97f) + arcToRelative(6.53f, 6.53f, 0.0f, false, false, -1.8f, -1.85f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 17.5f, 9.5f) + horizontalLineToRelative(-0.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.71f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 4.5f) + close() + moveTo(22.0f, 16.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(17.0f, 13.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(4.8f) + lineToRelative(-1.65f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.5f, 2.5f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineTo(17.0f, 18.29f) + lineTo(17.0f, 13.5f) + close() + } + } + return _cloudArrowDown!! + } + +private var _cloudArrowDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudArrowUp.kt new file mode 100644 index 00000000..b5a45c88 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudArrowUp.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CloudArrowUp: ImageVector + get() { + if (_cloudArrowUp != null) { + return _cloudArrowUp!! + } + _cloudArrowUp = fluentIcon(name = "Regular.CloudArrowUp") { + fluentPath { + moveTo(12.0f, 4.5f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.5f, 4.29f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 0.71f) + lineTo(6.5f, 9.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + horizontalLineToRelative(3.58f) + arcToRelative(6.55f, 6.55f, 0.0f, false, false, -0.06f, 1.5f) + lineTo(6.5f, 17.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.05f, 4.97f) + arcToRelative(6.53f, 6.53f, 0.0f, false, false, -1.8f, -1.85f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 17.5f, 9.5f) + horizontalLineToRelative(-0.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.71f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 4.5f) + close() + moveTo(22.0f, 16.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(16.0f, 19.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-4.8f) + lineToRelative(1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineTo(16.0f, 14.71f) + verticalLineToRelative(4.79f) + close() + } + } + return _cloudArrowUp!! + } + +private var _cloudArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudCheckmark.kt new file mode 100644 index 00000000..f66524cf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudCheckmark.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CloudCheckmark: ImageVector + get() { + if (_cloudCheckmark != null) { + return _cloudCheckmark!! + } + _cloudCheckmark = fluentIcon(name = "Regular.CloudCheckmark") { + fluentPath { + moveTo(12.0f, 4.5f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.5f, 4.29f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 0.71f) + lineTo(6.5f, 9.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + horizontalLineToRelative(3.58f) + arcToRelative(6.55f, 6.55f, 0.0f, false, false, -0.06f, 1.5f) + lineTo(6.5f, 17.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.05f, 4.97f) + arcToRelative(6.53f, 6.53f, 0.0f, false, false, -1.8f, -1.85f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 17.5f, 9.5f) + horizontalLineToRelative(-0.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.71f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 4.5f) + close() + moveTo(22.0f, 16.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(19.85f, 14.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-3.65f, 3.64f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _cloudCheckmark!! + } + +private var _cloudCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudDismiss.kt new file mode 100644 index 00000000..166934e9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudDismiss.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CloudDismiss: ImageVector + get() { + if (_cloudDismiss != null) { + return _cloudDismiss!! + } + _cloudDismiss = fluentIcon(name = "Regular.CloudDismiss") { + fluentPath { + moveTo(12.0f, 4.5f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.5f, 4.29f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 0.71f) + lineTo(6.5f, 9.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + horizontalLineToRelative(3.58f) + arcToRelative(6.55f, 6.55f, 0.0f, false, false, -0.06f, 1.5f) + lineTo(6.5f, 17.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.05f, 4.97f) + arcToRelative(6.53f, 6.53f, 0.0f, false, false, -1.8f, -1.85f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 17.5f, 9.5f) + horizontalLineToRelative(-0.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.71f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 4.5f) + close() + moveTo(22.0f, 16.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.85f, 14.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-1.64f, -1.65f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.65f, 1.64f) + lineToRelative(-1.65f, -1.64f) + close() + } + } + return _cloudDismiss!! + } + +private var _cloudDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudEdit.kt new file mode 100644 index 00000000..067d102e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudEdit.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CloudEdit: ImageVector + get() { + if (_cloudEdit != null) { + return _cloudEdit!! + } + _cloudEdit = fluentIcon(name = "Regular.CloudEdit") { + fluentPath { + moveTo(12.0f, 5.5f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.5f, 4.29f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 0.71f) + lineTo(6.5f, 10.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + horizontalLineToRelative(6.36f) + lineToRelative(-0.37f, 0.36f) + curveToRelative(-0.33f, 0.33f, -0.59f, 0.72f, -0.77f, 1.14f) + lineTo(6.5f, 18.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) + curveToRelative(0.92f, 0.08f, 1.76f, 0.45f, 2.43f, 1.0f) + curveToRelative(-0.6f, 0.07f, -1.2f, 0.3f, -1.7f, 0.7f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -1.15f, -0.22f) + horizontalLineToRelative(-0.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.71f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 5.5f) + close() + moveTo(19.1f, 11.67f) + lineTo(13.2f, 17.57f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _cloudEdit!! + } + +private var _cloudEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudError.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudError.kt new file mode 100644 index 00000000..b82afc1a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudError.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CloudError: ImageVector + get() { + if (_cloudError != null) { + return _cloudError!! + } + _cloudError = fluentIcon(name = "Regular.CloudError") { + fluentPath { + moveTo(12.0f, 4.5f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.5f, 4.29f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 0.71f) + lineTo(6.5f, 9.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + horizontalLineToRelative(3.58f) + arcToRelative(6.55f, 6.55f, 0.0f, false, false, -0.06f, 1.5f) + lineTo(6.5f, 17.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.05f, 4.97f) + arcToRelative(6.53f, 6.53f, 0.0f, false, false, -1.8f, -1.85f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 17.5f, 9.5f) + horizontalLineToRelative(-0.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.71f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 4.5f) + close() + moveTo(22.0f, 16.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(16.5f, 13.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(16.5f, 20.13f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.25f) + close() + } + } + return _cloudError!! + } + +private var _cloudError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudFlow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudFlow.kt new file mode 100644 index 00000000..70fd545d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudFlow.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CloudFlow: ImageVector + get() { + if (_cloudFlow != null) { + return _cloudFlow!! + } + _cloudFlow = fluentIcon(name = "Regular.CloudFlow") { + fluentPath { + moveTo(7.5f, 7.79f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 9.0f, 0.0f) + curveToRelative(0.01f, 0.4f, 0.34f, 0.71f, 0.74f, 0.71f) + horizontalLineToRelative(0.26f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.99f, 2.7f) + curveToRelative(0.56f, 0.2f, 1.06f, 0.53f, 1.46f, 0.95f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.03f, -5.13f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, -11.84f, 0.0f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 6.5f, 16.0f) + horizontalLineToRelative(6.68f) + lineToRelative(0.13f, -0.5f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.47f, -1.0f) + lineTo(6.5f, 14.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) + horizontalLineToRelative(0.26f) + curveToRelative(0.4f, 0.0f, 0.73f, -0.31f, 0.75f, -0.71f) + close() + moveTo(19.25f, 13.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(16.22f, 15.75f) + horizontalLineToRelative(0.47f) + arcToRelative(2.75f, 2.75f, 0.0f, true, false, -0.14f, -1.5f) + horizontalLineToRelative(-0.33f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.94f, 1.5f) + lineToRelative(-1.01f, 3.88f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.49f, 0.37f) + horizontalLineToRelative(-0.8f) + arcToRelative(2.75f, 2.75f, 0.0f, true, false, -0.28f, 1.5f) + horizontalLineToRelative(1.08f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.94f, -1.5f) + lineToRelative(1.01f, -3.88f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.49f, -0.37f) + close() + moveTo(8.0f, 20.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) + close() + } + } + return _cloudFlow!! + } + +private var _cloudFlow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudLink.kt new file mode 100644 index 00000000..6e01c2ba --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudLink.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CloudLink: ImageVector + get() { + if (_cloudLink != null) { + return _cloudLink!! + } + _cloudLink = fluentIcon(name = "Regular.CloudLink") { + fluentPath { + moveTo(12.0f, 5.5f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.5f, 4.29f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 0.71f) + lineTo(6.5f, 10.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + lineTo(10.0f, 16.5f) + curveToRelative(0.03f, 0.53f, 0.15f, 1.03f, 0.33f, 1.5f) + lineTo(6.5f, 18.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) + curveToRelative(2.23f, 0.2f, 4.0f, 2.04f, 4.08f, 4.31f) + arcToRelative(4.76f, 4.76f, 0.0f, false, false, -2.0f, -1.5f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -2.5f, -1.33f) + horizontalLineToRelative(-0.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.71f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 5.5f) + close() + moveTo(22.0f, 16.25f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.75f, -3.75f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + lineTo(18.25f, 20.0f) + horizontalLineToRelative(0.2f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 22.0f, 16.24f) + close() + moveTo(15.5f, 13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-0.2f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(19.0f, 16.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + } + } + return _cloudLink!! + } + +private var _cloudLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudOff.kt new file mode 100644 index 00000000..2da2970f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudOff.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CloudOff: ImageVector + get() { + if (_cloudOff != null) { + return _cloudOff!! + } + _cloudOff = fluentIcon(name = "Regular.CloudOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(4.63f, 4.63f) + arcToRelative(5.96f, 5.96f, 0.0f, false, false, -0.77f, 2.1f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 6.5f, 19.0f) + horizontalLineToRelative(11.0f) + curveToRelative(0.14f, 0.0f, 0.28f, 0.0f, 0.42f, -0.02f) + lineToRelative(2.8f, 2.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(16.44f, 17.5f) + lineTo(6.5f, 17.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) + horizontalLineToRelative(0.26f) + curveToRelative(0.4f, 0.0f, 0.73f, -0.31f, 0.75f, -0.71f) + curveToRelative(0.02f, -0.64f, 0.18f, -1.23f, 0.45f, -1.77f) + lineToRelative(8.48f, 8.48f) + close() + moveTo(20.5f, 14.5f) + curveToRelative(0.0f, 0.78f, -0.3f, 1.5f, -0.79f, 2.03f) + lineToRelative(1.06f, 1.06f) + arcToRelative(4.48f, 4.48f, 0.0f, false, false, -2.85f, -7.57f) + arcTo(6.0f, 6.0f, 0.0f, false, false, 8.99f, 5.8f) + lineToRelative(1.11f, 1.1f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 6.4f, 3.87f) + curveToRelative(0.01f, 0.4f, 0.34f, 0.72f, 0.74f, 0.72f) + horizontalLineToRelative(0.26f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + close() + } + } + return _cloudOff!! + } + +private var _cloudOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudSwap.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudSwap.kt new file mode 100644 index 00000000..e92b10a0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudSwap.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CloudSwap: ImageVector + get() { + if (_cloudSwap != null) { + return _cloudSwap!! + } + _cloudSwap = fluentIcon(name = "Regular.CloudSwap") { + fluentPath { + moveTo(12.0f, 5.5f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.5f, 4.29f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 0.71f) + lineTo(6.5f, 10.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + horizontalLineToRelative(2.67f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(6.5f, 18.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 3.75f, 6.18f) + lineToRelative(-1.2f, -1.21f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -2.96f, -3.49f) + horizontalLineToRelative(-0.27f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.71f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 5.5f) + close() + moveTo(13.78f, 15.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-2.5f, 2.5f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineTo(12.56f, 18.0f) + horizontalLineToRelative(6.88f) + lineToRelative(-1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(2.5f, -2.5f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.22f, 1.22f) + horizontalLineToRelative(-6.88f) + lineToRelative(1.22f, -1.22f) + close() + } + } + return _cloudSwap!! + } + +private var _cloudSwap: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudSync.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudSync.kt new file mode 100644 index 00000000..c3c9a7f4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudSync.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CloudSync: ImageVector + get() { + if (_cloudSync != null) { + return _cloudSync!! + } + _cloudSync = fluentIcon(name = "Regular.CloudSync") { + fluentPath { + moveTo(12.0f, 4.5f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.5f, 4.29f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 0.71f) + lineTo(6.5f, 9.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + horizontalLineToRelative(3.58f) + arcToRelative(6.55f, 6.55f, 0.0f, false, false, -0.06f, 1.5f) + lineTo(6.5f, 17.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.42f, -8.98f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 11.84f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.05f, 4.97f) + arcToRelative(6.53f, 6.53f, 0.0f, false, false, -1.8f, -1.85f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 17.5f, 9.5f) + horizontalLineToRelative(-0.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.71f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 4.5f) + close() + moveTo(16.5f, 22.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) + close() + moveTo(18.5f, 15.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -3.86f, -0.17f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.75f, -0.66f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.11f, -0.12f) + verticalLineToRelative(-0.55f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + verticalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineToRelative(1.0f) + close() + moveTo(13.0f, 17.5f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.86f, 0.17f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.75f, 0.66f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.11f, 0.12f) + verticalLineToRelative(0.55f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-2.0f) + close() + } + } + return _cloudSync!! + } + +private var _cloudSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudWords.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudWords.kt new file mode 100644 index 00000000..3f0d45e8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CloudWords.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CloudWords: ImageVector + get() { + if (_cloudWords != null) { + return _cloudWords!! + } + _cloudWords = fluentIcon(name = "Regular.CloudWords") { + fluentPath { + moveTo(7.5f, 10.79f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 9.0f, 0.0f) + curveToRelative(0.01f, 0.4f, 0.34f, 0.71f, 0.74f, 0.71f) + horizontalLineToRelative(0.26f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) + horizontalLineToRelative(-11.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) + horizontalLineToRelative(0.26f) + curveToRelative(0.4f, 0.0f, 0.73f, -0.31f, 0.75f, -0.71f) + close() + moveTo(12.0f, 5.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, -5.92f, 5.02f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 6.5f, 19.0f) + horizontalLineToRelative(11.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 0.42f, -8.98f) + arcTo(6.0f, 6.0f, 0.0f, false, false, 12.0f, 5.0f) + close() + moveTo(10.0f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.0f) + close() + moveTo(5.5f, 14.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(13.75f, 13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.0f) + close() + } + } + return _cloudWords!! + } + +private var _cloudWords: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Clover.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Clover.kt new file mode 100644 index 00000000..8fcf91c5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Clover.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Clover: ImageVector + get() { + if (_clover != null) { + return _clover!! + } + _clover = fluentIcon(name = "Regular.Clover") { + fluentPath { + moveTo(6.75f, 2.0f) + arcToRelative(4.75f, 4.75f, 0.0f, false, false, 0.0f, 9.5f) + horizontalLineToRelative(4.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-4.0f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 6.75f, 2.0f) + close() + moveTo(3.5f, 6.75f) + arcToRelative(3.25f, 3.25f, 0.0f, true, true, 6.5f, 0.0f) + lineTo(10.0f, 10.0f) + lineTo(6.75f, 10.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.5f, 6.75f) + close() + moveTo(6.75f, 22.0f) + arcToRelative(4.75f, 4.75f, 0.0f, true, true, 0.0f, -9.5f) + horizontalLineToRelative(4.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(4.0f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 6.75f, 22.0f) + close() + moveTo(3.5f, 17.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 6.5f, 0.0f) + lineTo(10.0f, 14.0f) + lineTo(6.75f, 14.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.25f, 3.25f) + close() + moveTo(22.0f, 6.75f) + arcToRelative(4.75f, 4.75f, 0.0f, true, false, -9.5f, 0.0f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.0f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 22.0f, 6.75f) + close() + moveTo(17.25f, 3.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, 6.5f) + lineTo(14.0f, 10.0f) + lineTo(14.0f, 6.75f) + curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) + close() + moveTo(17.25f, 22.0f) + arcToRelative(4.75f, 4.75f, 0.0f, true, false, 0.0f, -9.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.0f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 17.25f, 22.0f) + close() + moveTo(20.5f, 17.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.5f, 0.0f) + lineTo(14.0f, 14.0f) + horizontalLineToRelative(3.25f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + close() + } + } + return _clover!! + } + +private var _clover: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Code.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Code.kt new file mode 100644 index 00000000..c8e5dc8b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Code.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Code: ImageVector + get() { + if (_code != null) { + return _code!! + } + _code = fluentIcon(name = "Regular.Code") { + fluentPath { + moveToRelative(8.07f, 18.94f) + lineToRelative(6.5f, -14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.4f, 0.52f) + lineToRelative(-0.04f, 0.1f) + lineToRelative(-6.5f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.4f, -0.52f) + lineToRelative(0.04f, -0.1f) + lineToRelative(6.5f, -14.5f) + lineToRelative(-6.5f, 14.5f) + close() + moveTo(2.22f, 11.47f) + lineTo(6.47f, 7.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineTo(3.81f, 12.0f) + lineToRelative(3.72f, 3.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-4.25f, -4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(4.25f, -4.25f) + lineToRelative(-4.25f, 4.25f) + close() + moveTo(16.47f, 7.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + lineToRelative(4.25f, 4.25f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-4.25f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineTo(20.19f, 12.0f) + lineToRelative(-3.72f, -3.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + } + } + return _code!! + } + +private var _code: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CodeBlock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CodeBlock.kt new file mode 100644 index 00000000..1c47c7ac --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CodeBlock.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CodeBlock: ImageVector + get() { + if (_codeBlock != null) { + return _codeBlock!! + } + _codeBlock = fluentIcon(name = "Regular.CodeBlock") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 6.25f) + close() + moveTo(10.53f, 9.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-3.25f, 3.25f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(3.25f, 3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineTo(7.81f, 12.0f) + lineToRelative(2.72f, -2.72f) + close() + moveTo(14.53f, 8.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(16.19f, 12.0f) + lineToRelative(-2.72f, 2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(3.25f, -3.25f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-3.25f, -3.25f) + close() + } + } + return _codeBlock!! + } + +private var _codeBlock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Collections.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Collections.kt new file mode 100644 index 00000000..5e8b0617 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Collections.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Collections: ImageVector + get() { + if (_collections != null) { + return _collections!! + } + _collections = fluentIcon(name = "Regular.Collections") { + fluentPath { + moveTo(11.07f, 8.0f) + horizontalLineToRelative(7.68f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.24f, 3.06f) + lineToRelative(0.01f, 0.19f) + verticalLineToRelative(7.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + horizontalLineToRelative(-7.68f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.06f) + lineTo(8.0f, 18.75f) + verticalLineToRelative(-7.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 11.07f, 8.0f) + close() + moveTo(18.75f, 9.5f) + horizontalLineToRelative(-7.5f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + lineToRelative(-0.01f, 0.15f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + horizontalLineToRelative(7.65f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.14f) + verticalLineToRelative(-7.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(15.0f, 11.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(15.58f, 4.23f) + lineTo(15.63f, 4.41f) + lineTo(16.33f, 7.0f) + horizontalLineToRelative(-1.56f) + lineToRelative(-0.58f, -2.2f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.15f, -1.24f) + lineTo(4.8f, 5.5f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.27f, 2.0f) + lineToRelative(0.03f, 0.14f) + lineTo(5.5f, 14.9f) + curveToRelative(0.2f, 0.72f, 0.8f, 1.21f, 1.5f, 1.29f) + verticalLineToRelative(1.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -2.9f, -2.23f) + lineToRelative(-0.05f, -0.17f) + lineToRelative(-1.94f, -7.25f) + curveToRelative(-0.45f, -1.67f, 0.5f, -3.39f, 2.12f, -3.92f) + lineToRelative(0.18f, -0.06f) + lineToRelative(7.24f, -1.94f) + curveToRelative(1.68f, -0.45f, 3.4f, 0.5f, 3.93f, 2.12f) + close() + } + } + return _collections!! + } + +private var _collections: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CollectionsAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CollectionsAdd.kt new file mode 100644 index 00000000..ad22d363 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CollectionsAdd.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CollectionsAdd: ImageVector + get() { + if (_collectionsAdd != null) { + return _collectionsAdd!! + } + _collectionsAdd = fluentIcon(name = "Regular.CollectionsAdd") { + fluentPath { + moveTo(11.07f, 8.0f) + horizontalLineToRelative(7.68f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.24f, 3.06f) + lineToRelative(0.01f, 0.19f) + verticalLineToRelative(1.56f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) + verticalLineToRelative(-0.48f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-7.5f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + lineToRelative(-0.01f, 0.15f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + horizontalLineToRelative(0.63f) + curveToRelative(0.29f, 0.56f, 0.65f, 1.06f, 1.08f, 1.5f) + horizontalLineToRelative(-1.56f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.06f) + lineTo(8.0f, 18.75f) + verticalLineToRelative(-7.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 11.07f, 8.0f) + close() + moveTo(15.58f, 4.23f) + lineTo(15.63f, 4.41f) + lineTo(16.33f, 7.0f) + horizontalLineToRelative(-1.56f) + lineToRelative(-0.58f, -2.2f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.15f, -1.24f) + lineTo(4.8f, 5.5f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.27f, 2.0f) + lineToRelative(0.03f, 0.14f) + lineTo(5.5f, 14.9f) + curveToRelative(0.2f, 0.72f, 0.8f, 1.21f, 1.5f, 1.29f) + verticalLineToRelative(1.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -2.9f, -2.23f) + lineToRelative(-0.05f, -0.17f) + lineToRelative(-1.94f, -7.25f) + curveToRelative(-0.45f, -1.67f, 0.5f, -3.39f, 2.12f, -3.92f) + lineToRelative(0.18f, -0.06f) + lineToRelative(7.24f, -1.94f) + curveToRelative(1.68f, -0.45f, 3.4f, 0.5f, 3.93f, 2.12f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(17.41f, 14.0f) + horizontalLineToRelative(0.18f) + curveToRelative(0.2f, 0.04f, 0.36f, 0.2f, 0.4f, 0.4f) + lineToRelative(0.01f, 0.1f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.6f) + curveToRelative(0.2f, 0.05f, 0.36f, 0.2f, 0.4f, 0.41f) + verticalLineToRelative(0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, 0.4f) + lineToRelative(-0.1f, 0.01f) + lineTo(18.0f, 18.0f) + verticalLineToRelative(2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, 0.4f) + horizontalLineToRelative(-0.19f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, -0.4f) + lineTo(17.01f, 18.0f) + lineTo(14.4f, 18.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, -0.41f) + verticalLineToRelative(-0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.4f, -0.4f) + lineToRelative(0.1f, -0.01f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.41f, -0.4f) + close() + } + } + return _collectionsAdd!! + } + +private var _collectionsAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Color.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Color.kt new file mode 100644 index 00000000..72f379f9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Color.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Color: ImageVector + get() { + if (_color != null) { + return _color!! + } + _color = fluentIcon(name = "Regular.Color") { + fluentPath { + moveTo(3.84f, 5.86f) + curveTo(6.78f, 1.94f, 12.87f, 0.8f, 17.2f, 3.5f) + curveToRelative(4.28f, 2.66f, 5.86f, 7.77f, 4.1f, 12.57f) + curveToRelative(-1.65f, 4.54f, -6.01f, 6.33f, -9.16f, 4.05f) + curveToRelative(-1.17f, -0.85f, -1.63f, -1.92f, -1.85f, -3.66f) + lineToRelative(-0.1f, -0.99f) + lineToRelative(-0.05f, -0.4f) + curveToRelative(-0.12f, -0.93f, -0.31f, -1.35f, -0.7f, -1.57f) + curveToRelative(-0.54f, -0.3f, -0.9f, -0.3f, -1.6f, -0.03f) + lineToRelative(-0.35f, 0.14f) + lineToRelative(-0.18f, 0.08f) + curveToRelative(-1.01f, 0.44f, -1.69f, 0.6f, -2.54f, 0.42f) + lineToRelative(-0.2f, -0.05f) + lineToRelative(-0.17f, -0.04f) + curveToRelative(-2.78f, -0.87f, -3.2f, -4.65f, -0.56f, -8.16f) + close() + moveTo(4.82f, 12.57f) + lineTo(4.95f, 12.61f) + lineTo(5.08f, 12.64f) + curveToRelative(0.44f, 0.09f, 0.81f, 0.02f, 1.44f, -0.24f) + lineToRelative(0.6f, -0.26f) + curveToRelative(1.2f, -0.5f, 1.98f, -0.54f, 3.04f, 0.05f) + curveToRelative(0.92f, 0.51f, 1.28f, 1.3f, 1.46f, 2.66f) + lineToRelative(0.06f, 0.46f) + lineToRelative(0.05f, 0.53f) + lineToRelative(0.05f, 0.43f) + curveToRelative(0.17f, 1.36f, 0.48f, 2.09f, 1.24f, 2.64f) + curveToRelative(2.28f, 1.65f, 5.54f, 0.3f, 6.87f, -3.35f) + curveToRelative(1.52f, -4.15f, 0.18f, -8.51f, -3.48f, -10.79f) + curveToRelative(-3.67f, -2.28f, -8.9f, -1.3f, -11.37f, 1.99f) + curveToRelative(-2.08f, 2.76f, -1.82f, 5.28f, -0.22f, 5.81f) + close() + moveTo(16.05f, 10.58f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.41f, -0.65f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.41f, 0.65f) + close() + moveTo(16.55f, 14.07f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.4f, -0.65f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.4f, 0.65f) + close() + moveTo(14.07f, 7.57f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.41f, -0.64f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.41f, 0.65f) + close() + moveTo(14.04f, 16.57f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.42f, -0.64f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.42f, 0.65f) + close() + moveTo(10.54f, 6.61f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.42f, -0.65f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.42f, 0.65f) + close() + } + } + return _color!! + } + +private var _color: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ColorBackground.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ColorBackground.kt new file mode 100644 index 00000000..126b3174 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ColorBackground.kt @@ -0,0 +1,94 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ColorBackground: ImageVector + get() { + if (_colorBackground != null) { + return _colorBackground!! + } + _colorBackground = fluentIcon(name = "Regular.ColorBackground") { + fluentPath { + moveTo(11.34f, 13.0f) + curveToRelative(-0.19f, 0.4f, -0.34f, 0.88f, -0.34f, 1.38f) + curveToRelative(0.0f, 0.73f, 0.29f, 1.42f, 0.77f, 1.9f) + arcToRelative(2.4f, 2.4f, 0.0f, false, false, 1.73f, 0.72f) + curveToRelative(1.47f, 0.0f, 2.5f, -1.23f, 2.5f, -2.62f) + curveToRelative(0.0f, -0.5f, -0.15f, -0.98f, -0.34f, -1.39f) + curveToRelative(-0.2f, -0.41f, -0.44f, -0.8f, -0.68f, -1.13f) + curveToRelative(-0.23f, -0.33f, -0.47f, -0.61f, -0.64f, -0.81f) + lineToRelative(-0.31f, -0.33f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-0.3f, 0.33f) + arcTo(6.98f, 6.98f, 0.0f, false, false, 11.34f, 13.0f) + close() + moveTo(13.77f, 12.73f) + curveToRelative(0.2f, 0.29f, 0.39f, 0.59f, 0.52f, 0.89f) + curveToRelative(0.15f, 0.3f, 0.21f, 0.56f, 0.21f, 0.76f) + curveToRelative(0.0f, 0.69f, -0.48f, 1.12f, -1.0f, 1.12f) + curveToRelative(-0.25f, 0.0f, -0.5f, -0.1f, -0.68f, -0.28f) + curveToRelative(-0.2f, -0.2f, -0.32f, -0.49f, -0.32f, -0.84f) + curveToRelative(0.0f, -0.2f, 0.06f, -0.45f, 0.2f, -0.76f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.8f, -1.24f) + lineToRelative(0.27f, 0.35f) + close() + moveTo(6.75f, 1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(1.76f) + lineToRelative(-0.1f, 0.08f) + lineToRelative(-4.24f, 4.25f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 2.82f) + lineTo(5.2f, 14.2f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.83f, 0.0f) + lineToRelative(4.24f, -4.24f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, -2.83f) + lineTo(8.73f, 3.59f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.23f, -0.57f) + lineTo(7.5f, 1.75f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 6.75f, 1.0f) + close() + moveTo(6.0f, 5.62f) + verticalLineToRelative(0.63f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) + lineTo(7.5f, 4.54f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.17f, 0.11f) + lineToRelative(3.54f, 3.54f) + curveToRelative(0.09f, 0.09f, 0.13f, 0.2f, 0.14f, 0.31f) + lineTo(3.12f, 8.5f) + lineTo(6.0f, 5.62f) + close() + moveTo(6.26f, 13.14f) + lineTo(3.13f, 10.0f) + horizontalLineToRelative(6.97f) + lineToRelative(-3.13f, 3.13f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.71f, 0.0f) + close() + moveTo(2.0f, 17.5f) + verticalLineToRelative(-5.09f) + lineToRelative(1.5f, 1.5f) + verticalLineToRelative(3.59f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineToRelative(-11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineToRelative(-7.44f) + lineTo(10.56f, 4.0f) + horizontalLineToRelative(8.94f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 22.0f, 6.5f) + verticalLineToRelative(11.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.5f, 2.5f) + horizontalLineToRelative(-15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 2.0f, 17.5f) + close() + } + } + return _colorBackground!! + } + +private var _colorBackground: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ColorBackgroundAccent.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ColorBackgroundAccent.kt similarity index 91% rename from fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ColorBackgroundAccent.kt rename to fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ColorBackgroundAccent.kt index cd64b8c5..9fa4a3f8 100644 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ColorBackgroundAccent.kt +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ColorBackgroundAccent.kt @@ -1,11 +1,11 @@ -package com.konyaco.fluent.icons.regular +package io.github.composefluent.icons.regular import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath public val Icons.Regular.ColorBackgroundAccent: ImageVector get() { diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ColorFill.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ColorFill.kt new file mode 100644 index 00000000..092c90d2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ColorFill.kt @@ -0,0 +1,95 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ColorFill: ImageVector + get() { + if (_colorFill != null) { + return _colorFill!! + } + _colorFill = fluentIcon(name = "Regular.ColorFill") { + fluentPath { + moveTo(9.0f, 1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(1.27f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.24f, 0.57f) + lineToRelative(3.53f, 3.54f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, 2.83f) + lineToRelative(-4.24f, 4.24f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.83f, 0.0f) + lineToRelative(-3.54f, -3.54f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -2.82f) + lineToRelative(4.25f, -4.25f) + lineToRelative(0.09f, -0.08f) + lineTo(9.0f, 1.75f) + close() + moveTo(9.0f, 6.25f) + verticalLineToRelative(-0.63f) + lineToRelative(-2.89f, 2.9f) + horizontalLineToRelative(8.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.15f, -0.33f) + lineToRelative(-3.54f, -3.54f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.17f, -0.11f) + verticalLineToRelative(1.71f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + close() + moveTo(6.13f, 10.01f) + lineTo(9.26f, 13.14f) + curveToRelative(0.2f, 0.2f, 0.51f, 0.2f, 0.7f, 0.0f) + lineTo(13.1f, 10.0f) + lineTo(6.13f, 10.0f) + close() + moveTo(6.6f, 14.0f) + lineTo(4.5f, 14.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 2.0f, 16.5f) + verticalLineToRelative(3.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.5f, 22.0f) + horizontalLineToRelative(15.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) + verticalLineToRelative(-3.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.02f, -2.45f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -0.17f, 1.5f) + curveToRelative(0.4f, 0.13f, 0.69f, 0.5f, 0.69f, 0.95f) + verticalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(3.83f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.84f, -0.6f) + lineToRelative(-0.9f, -0.9f) + close() + moveTo(14.01f, 14.38f) + curveToRelative(0.0f, -0.5f, 0.15f, -0.98f, 0.34f, -1.39f) + curveToRelative(0.2f, -0.41f, 0.44f, -0.8f, 0.68f, -1.13f) + curveToRelative(0.23f, -0.33f, 0.47f, -0.61f, 0.64f, -0.81f) + lineToRelative(0.3f, -0.32f) + lineToRelative(0.01f, -0.01f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(0.3f, 0.33f) + arcTo(6.98f, 6.98f, 0.0f, false, true, 18.66f, 13.0f) + curveToRelative(0.2f, 0.4f, 0.35f, 0.88f, 0.35f, 1.38f) + curveToRelative(0.0f, 1.39f, -1.03f, 2.62f, -2.5f, 2.62f) + reflectiveCurveTo(14.0f, 15.77f, 14.0f, 14.37f) + close() + moveTo(16.78f, 12.73f) + arcToRelative(8.42f, 8.42f, 0.0f, false, false, -0.27f, -0.35f) + arcToRelative(8.42f, 8.42f, 0.0f, false, false, -0.8f, 1.24f) + curveToRelative(-0.14f, 0.3f, -0.2f, 0.56f, -0.2f, 0.76f) + curveToRelative(0.0f, 0.69f, 0.48f, 1.12f, 1.0f, 1.12f) + reflectiveCurveToRelative(1.0f, -0.43f, 1.0f, -1.13f) + curveToRelative(0.0f, -0.19f, -0.06f, -0.44f, -0.2f, -0.75f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -0.53f, -0.89f) + close() + } + } + return _colorFill!! + } + +private var _colorFill: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ColorFillAccent.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ColorFillAccent.kt similarity index 86% rename from fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ColorFillAccent.kt rename to fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ColorFillAccent.kt index 5b0d6e47..42beceed 100644 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ColorFillAccent.kt +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ColorFillAccent.kt @@ -1,11 +1,11 @@ -package com.konyaco.fluent.icons.regular +package io.github.composefluent.icons.regular import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath public val Icons.Regular.ColorFillAccent: ImageVector get() { diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ColorLine.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ColorLine.kt new file mode 100644 index 00000000..5eb78ee6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ColorLine.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ColorLine: ImageVector + get() { + if (_colorLine != null) { + return _colorLine!! + } + _colorLine = fluentIcon(name = "Regular.ColorLine") { + fluentPath { + moveTo(4.38f, 14.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 2.0f, 16.5f) + verticalLineToRelative(3.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.5f, 22.0f) + horizontalLineToRelative(15.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) + verticalLineToRelative(-3.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.5f, -2.5f) + horizontalLineToRelative(-5.95f) + lineToRelative(-1.32f, 1.31f) + lineToRelative(-0.2f, 0.19f) + horizontalLineToRelative(7.47f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -0.37f, 0.2f, -0.7f, 0.5f, -0.87f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.1f, -0.74f) + lineToRelative(0.28f, -0.89f) + close() + moveTo(18.65f, 2.94f) + arcToRelative(3.22f, 3.22f, 0.0f, false, true, 0.0f, 4.56f) + lineToRelative(-7.13f, 7.1f) + curveToRelative(-0.26f, 0.27f, -0.58f, 0.46f, -0.94f, 0.57f) + lineToRelative(-4.3f, 1.29f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.23f, -1.27f) + lineToRelative(1.36f, -4.22f) + curveToRelative(0.1f, -0.35f, 0.3f, -0.65f, 0.55f, -0.9f) + lineToRelative(7.13f, -7.13f) + arcToRelative(3.22f, 3.22f, 0.0f, false, true, 4.56f, 0.0f) + close() + moveTo(15.15f, 4.0f) + lineToRelative(-7.13f, 7.12f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.18f, 0.3f) + lineToRelative(-1.07f, 3.33f) + lineToRelative(3.38f, -1.02f) + curveToRelative(0.12f, -0.03f, 0.23f, -0.1f, 0.31f, -0.19f) + lineToRelative(7.13f, -7.1f) + arcTo(1.72f, 1.72f, 0.0f, true, false, 15.15f, 4.0f) + close() + } + } + return _colorLine!! + } + +private var _colorLine: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ColorLineAccent.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ColorLineAccent.kt similarity index 86% rename from fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ColorLineAccent.kt rename to fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ColorLineAccent.kt index d8edbde8..ae2fc979 100644 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/ColorLineAccent.kt +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ColorLineAccent.kt @@ -1,11 +1,11 @@ -package com.konyaco.fluent.icons.regular +package io.github.composefluent.icons.regular import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath public val Icons.Regular.ColorLineAccent: ImageVector get() { diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ColumnEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ColumnEdit.kt new file mode 100644 index 00000000..2ef359c7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ColumnEdit.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ColumnEdit: ImageVector + get() { + if (_columnEdit != null) { + return _columnEdit!! + } + _columnEdit = fluentIcon(name = "Regular.ColumnEdit") { + fluentPath { + moveTo(5.25f, 5.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(4.0f, 3.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.0f, 21.0f) + horizontalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(4.0f, 19.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + lineTo(5.25f, 5.75f) + close() + moveTo(10.75f, 4.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(0.8f) + lineToRelative(-0.03f, 0.08f) + lineToRelative(-0.35f, 1.42f) + horizontalLineToRelative(-0.42f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 8.0f, 18.25f) + lineTo(8.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 10.75f, 3.0f) + horizontalLineToRelative(2.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 16.0f, 5.75f) + verticalLineToRelative(8.6f) + lineToRelative(-1.5f, 1.5f) + lineTo(14.5f, 5.76f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-2.5f) + close() + moveTo(19.0f, 5.75f) + verticalLineToRelative(5.73f) + curveToRelative(-0.22f, 0.14f, -0.42f, 0.3f, -0.6f, 0.48f) + lineToRelative(-0.9f, 0.9f) + lineTo(17.5f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 20.25f, 3.0f) + lineTo(21.0f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.75f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _columnEdit!! + } + +private var _columnEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ColumnTriple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ColumnTriple.kt new file mode 100644 index 00000000..675ed5ca --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ColumnTriple.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ColumnTriple: ImageVector + get() { + if (_columnTriple != null) { + return _columnTriple!! + } + _columnTriple = fluentIcon(name = "Regular.ColumnTriple") { + fluentPath { + moveTo(6.24f, 3.0f) + curveToRelative(0.96f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(14.5f) + curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(1.99f, 4.75f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) + horizontalLineToRelative(2.65f) + close() + moveTo(20.26f, 3.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(14.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.5f) + curveToRelative(-0.96f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(16.01f, 4.75f) + curveToRelative(0.0f, -0.97f, 0.79f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.5f) + close() + moveTo(13.24f, 3.0f) + curveToRelative(0.96f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(14.5f) + curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(8.99f, 4.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.5f) + close() + moveTo(6.24f, 4.5f) + lineTo(3.68f, 4.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.2f, 0.25f) + verticalLineToRelative(14.5f) + curveToRelative(0.0f, 0.14f, 0.12f, 0.25f, 0.26f, 0.25f) + horizontalLineToRelative(2.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + lineTo(6.49f, 4.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(20.26f, 4.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(14.5f) + curveToRelative(0.0f, 0.14f, 0.12f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(2.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + lineTo(20.51f, 4.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(13.24f, 4.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(14.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(2.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + lineTo(13.49f, 4.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + } + } + return _columnTriple!! + } + +private var _columnTriple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ColumnTripleEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ColumnTripleEdit.kt new file mode 100644 index 00000000..f355cb93 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ColumnTripleEdit.kt @@ -0,0 +1,95 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ColumnTripleEdit: ImageVector + get() { + if (_columnTripleEdit != null) { + return _columnTripleEdit!! + } + _columnTripleEdit = fluentIcon(name = "Regular.ColumnTripleEdit") { + fluentPath { + moveTo(6.24f, 3.0f) + curveToRelative(0.96f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(14.5f) + curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(1.99f, 4.75f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) + horizontalLineToRelative(2.65f) + close() + moveTo(6.24f, 4.5f) + lineTo(3.68f, 4.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.2f, 0.25f) + verticalLineToRelative(14.5f) + curveToRelative(0.0f, 0.14f, 0.12f, 0.25f, 0.26f, 0.25f) + horizontalLineToRelative(2.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + lineTo(6.49f, 4.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(20.26f, 3.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(6.52f) + curveToRelative(-0.47f, -0.2f, -0.99f, -0.3f, -1.5f, -0.26f) + lineTo(20.51f, 4.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(8.1f) + lineToRelative(-1.5f, 1.5f) + verticalLineToRelative(-9.6f) + curveToRelative(0.0f, -0.97f, 0.79f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.5f) + close() + moveTo(20.51f, 19.14f) + lineTo(22.01f, 17.64f) + verticalLineToRelative(1.61f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-1.61f) + lineToRelative(1.5f, -1.5f) + horizontalLineToRelative(0.11f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-0.11f) + close() + moveTo(15.0f, 4.75f) + verticalLineToRelative(10.62f) + lineToRelative(-1.5f, 1.5f) + lineTo(13.5f, 4.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(14.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(0.8f) + lineToRelative(-0.02f, 0.08f) + lineToRelative(-0.35f, 1.42f) + horizontalLineToRelative(-0.43f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(9.0f, 4.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.96f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + close() + moveTo(19.11f, 12.67f) + lineTo(13.21f, 18.57f) + curveToRelative(-0.35f, 0.35f, -0.59f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.48f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _columnTripleEdit!! + } + +private var _columnTripleEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Comma.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Comma.kt new file mode 100644 index 00000000..3922b8e8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Comma.kt @@ -0,0 +1,30 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Comma: ImageVector + get() { + if (_comma != null) { + return _comma!! + } + _comma = fluentIcon(name = "Regular.Comma") { + fluentPath { + moveTo(14.62f, 12.02f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, 1.35f, -3.48f) + curveToRelative(0.36f, 1.81f, 0.36f, 3.97f, -0.46f, 5.9f) + curveToRelative(-0.86f, 2.04f, -2.6f, 3.76f, -5.57f, 4.54f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.38f, -1.46f) + curveToRelative(2.53f, -0.66f, 3.9f, -2.06f, 4.57f, -3.66f) + curveToRelative(0.24f, -0.59f, 0.4f, -1.2f, 0.49f, -1.84f) + close() + } + } + return _comma!! + } + +private var _comma: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Comment.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Comment.kt new file mode 100644 index 00000000..22c82923 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Comment.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Comment: ImageVector + get() { + if (_comment != null) { + return _comment!! + } + _comment = fluentIcon(name = "Regular.Comment") { + fluentPath { + moveTo(5.25f, 18.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) + verticalLineToRelative(-8.5f) + curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(13.5f) + curveTo(20.55f, 3.0f, 22.0f, 4.46f, 22.0f, 6.25f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-5.74f) + lineTo(8.0f, 21.75f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.0f, -1.0f) + lineTo(6.0f, 18.0f) + horizontalLineToRelative(-0.75f) + close() + moveTo(12.51f, 16.5f) + horizontalLineToRelative(6.24f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(5.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(7.5f, 16.5f) + verticalLineToRelative(3.75f) + lineToRelative(5.01f, -3.75f) + close() + } + } + return _comment!! + } + +private var _comment: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentAdd.kt new file mode 100644 index 00000000..cb1bddaf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentAdd.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CommentAdd: ImageVector + get() { + if (_commentAdd != null) { + return _commentAdd!! + } + _commentAdd = fluentIcon(name = "Regular.CommentAdd") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 7.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 7.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 6.0f) + lineTo(17.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + lineTo(18.0f, 6.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 7.0f) + close() + moveTo(20.5f, 14.75f) + verticalLineToRelative(-2.48f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(3.56f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-5.74f) + lineTo(8.0f, 21.75f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.0f, -1.0f) + lineTo(6.0f, 18.0f) + horizontalLineToRelative(-0.75f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) + verticalLineToRelative(-8.5f) + curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(6.77f) + curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) + lineTo(5.24f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(7.5f, 16.5f) + verticalLineToRelative(3.75f) + lineToRelative(5.01f, -3.75f) + horizontalLineToRelative(6.24f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + close() + } + } + return _commentAdd!! + } + +private var _commentAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentArrowLeft.kt new file mode 100644 index 00000000..706bdfc7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentArrowLeft.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CommentArrowLeft: ImageVector + get() { + if (_commentArrowLeft != null) { + return _commentArrowLeft!! + } + _commentArrowLeft = fluentIcon(name = "Regular.CommentArrowLeft") { + fluentPath { + moveTo(12.02f, 3.0f) + curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) + lineTo(5.24f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(7.5f, 16.5f) + verticalLineToRelative(3.75f) + lineToRelative(5.01f, -3.75f) + horizontalLineToRelative(6.24f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-2.48f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(3.56f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-5.74f) + lineTo(8.0f, 21.75f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.0f, -1.0f) + lineTo(6.0f, 18.0f) + horizontalLineToRelative(-0.75f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) + verticalLineToRelative(-8.5f) + curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(6.77f) + close() + moveTo(17.5f, 1.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(17.72f, 3.59f) + lineTo(17.65f, 3.65f) + lineTo(17.59f, 3.72f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) + lineToRelative(0.06f, 0.07f) + lineTo(19.29f, 6.0f) + horizontalLineToRelative(-5.38f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + lineToRelative(-0.01f, 0.09f) + verticalLineToRelative(0.09f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + lineTo(14.0f, 7.0f) + horizontalLineToRelative(5.3f) + lineToRelative(-1.65f, 1.65f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(0.06f, -0.07f) + lineToRelative(2.54f, -2.54f) + lineToRelative(0.04f, -0.05f) + lineToRelative(0.03f, -0.07f) + lineToRelative(0.02f, -0.06f) + lineToRelative(0.02f, -0.08f) + verticalLineToRelative(-0.1f) + lineToRelative(-0.02f, -0.08f) + lineToRelative(-0.03f, -0.08f) + lineToRelative(-0.04f, -0.07f) + lineToRelative(-0.04f, -0.06f) + lineToRelative(-2.52f, -2.51f) + lineToRelative(-0.07f, -0.06f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.56f, 0.0f) + close() + } + } + return _commentArrowLeft!! + } + +private var _commentArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentArrowRight.kt new file mode 100644 index 00000000..dbc81003 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentArrowRight.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CommentArrowRight: ImageVector + get() { + if (_commentArrowRight != null) { + return _commentArrowRight!! + } + _commentArrowRight = fluentIcon(name = "Regular.CommentArrowRight") { + fluentPath { + moveTo(12.02f, 3.0f) + curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) + lineTo(5.24f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(7.5f, 16.5f) + verticalLineToRelative(3.75f) + lineToRelative(5.01f, -3.75f) + horizontalLineToRelative(6.24f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-2.48f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(3.56f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-5.74f) + lineTo(8.0f, 21.75f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.0f, -1.0f) + lineTo(6.0f, 18.0f) + horizontalLineToRelative(-0.75f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) + verticalLineToRelative(-8.5f) + curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(6.77f) + close() + moveTo(17.5f, 1.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(16.22f, 3.59f) + lineTo(16.15f, 3.65f) + lineTo(13.62f, 6.18f) + lineTo(13.59f, 6.22f) + lineTo(13.55f, 6.29f) + lineTo(13.52f, 6.37f) + lineTo(13.5f, 6.45f) + verticalLineToRelative(0.14f) + lineToRelative(0.02f, 0.06f) + lineToRelative(0.03f, 0.06f) + lineToRelative(0.03f, 0.06f) + lineToRelative(0.04f, 0.05f) + lineToRelative(2.53f, 2.53f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.76f, -0.63f) + lineToRelative(-0.06f, -0.07f) + lineTo(15.21f, 7.0f) + horizontalLineToRelative(5.29f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.41f) + lineTo(21.0f, 6.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.5f) + lineTo(15.2f, 6.0f) + lineToRelative(1.65f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.06f, -0.63f) + lineToRelative(-0.06f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.63f, -0.06f) + close() + } + } + return _commentArrowRight!! + } + +private var _commentArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentCheckmark.kt new file mode 100644 index 00000000..8908ea49 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentCheckmark.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CommentCheckmark: ImageVector + get() { + if (_commentCheckmark != null) { + return _commentCheckmark!! + } + _commentCheckmark = fluentIcon(name = "Regular.CommentCheckmark") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.15f, 4.15f) + lineTo(16.5f, 7.79f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + close() + moveTo(20.5f, 14.75f) + verticalLineToRelative(-2.48f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(3.56f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-5.74f) + lineTo(8.0f, 21.75f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.0f, -1.0f) + lineTo(6.0f, 18.0f) + horizontalLineToRelative(-0.75f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) + verticalLineToRelative(-8.5f) + curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(6.77f) + curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) + lineTo(5.24f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(7.5f, 16.5f) + verticalLineToRelative(3.75f) + lineToRelative(5.01f, -3.75f) + horizontalLineToRelative(6.24f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + close() + } + } + return _commentCheckmark!! + } + +private var _commentCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentDismiss.kt new file mode 100644 index 00000000..e8754104 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentDismiss.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CommentDismiss: ImageVector + get() { + if (_commentDismiss != null) { + return _commentDismiss!! + } + _commentDismiss = fluentIcon(name = "Regular.CommentDismiss") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 4.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineTo(18.21f, 6.5f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineTo(17.5f, 5.79f) + lineToRelative(-1.65f, -1.64f) + close() + moveTo(20.5f, 14.75f) + verticalLineToRelative(-2.48f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(3.56f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-5.74f) + lineTo(8.0f, 21.75f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.0f, -1.0f) + lineTo(6.0f, 18.0f) + horizontalLineToRelative(-0.75f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) + verticalLineToRelative(-8.5f) + curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(6.77f) + curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) + lineTo(5.24f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(7.5f, 16.5f) + verticalLineToRelative(3.75f) + lineToRelative(5.01f, -3.75f) + horizontalLineToRelative(6.24f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + close() + } + } + return _commentDismiss!! + } + +private var _commentDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentEdit.kt new file mode 100644 index 00000000..dcff69e3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentEdit.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CommentEdit: ImageVector + get() { + if (_commentEdit != null) { + return _commentEdit!! + } + _commentEdit = fluentIcon(name = "Regular.CommentEdit") { + fluentPath { + moveTo(2.0f, 14.75f) + curveTo(2.0f, 16.55f, 3.46f, 18.0f, 5.25f, 18.0f) + lineTo(6.0f, 18.0f) + verticalLineToRelative(2.75f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.0f, 1.0f) + lineToRelative(2.12f, -1.59f) + lineToRelative(0.4f, -1.58f) + curveToRelative(0.07f, -0.29f, 0.18f, -0.56f, 0.31f, -0.82f) + lineToRelative(-3.33f, 2.5f) + lineTo(7.5f, 16.5f) + lineTo(5.25f, 16.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(3.84f) + curveToRelative(0.55f, 0.14f, 1.07f, 0.42f, 1.5f, 0.83f) + lineTo(22.0f, 6.25f) + curveTo(22.0f, 4.45f, 20.54f, 3.0f, 18.75f, 3.0f) + lineTo(5.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 6.25f) + verticalLineToRelative(8.5f) + close() + moveTo(18.1f, 11.67f) + lineTo(12.2f, 17.57f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.71f, 1.25f) + lineToRelative(-0.46f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, true, false, -3.23f, -3.24f) + close() + } + } + return _commentEdit!! + } + +private var _commentEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentError.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentError.kt new file mode 100644 index 00000000..898f4716 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentError.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CommentError: ImageVector + get() { + if (_commentError != null) { + return _commentError!! + } + _commentError = fluentIcon(name = "Regular.CommentError") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(17.5f, 3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(17.5f, 10.13f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.24f) + close() + moveTo(20.5f, 14.75f) + verticalLineToRelative(-2.48f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(3.56f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-5.74f) + lineTo(8.0f, 21.75f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.0f, -1.0f) + lineTo(6.0f, 18.0f) + horizontalLineToRelative(-0.75f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) + verticalLineToRelative(-8.5f) + curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(6.77f) + curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) + lineTo(5.24f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(7.5f, 16.5f) + verticalLineToRelative(3.75f) + lineToRelative(5.01f, -3.75f) + horizontalLineToRelative(6.24f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + close() + } + } + return _commentError!! + } + +private var _commentError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentLightning.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentLightning.kt new file mode 100644 index 00000000..5d7a6469 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentLightning.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CommentLightning: ImageVector + get() { + if (_commentLightning != null) { + return _commentLightning!! + } + _commentLightning = fluentIcon(name = "Regular.CommentLightning") { + fluentPath { + moveTo(16.32f, 1.0f) + horizontalLineToRelative(4.82f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.44f, 0.75f) + lineTo(19.75f, 5.0f) + horizontalLineToRelative(1.5f) + curveToRelative(0.64f, 0.0f, 0.98f, 0.76f, 0.56f, 1.24f) + lineToRelative(-4.82f, 5.51f) + curveToRelative(-0.5f, 0.58f, -1.45f, 0.09f, -1.26f, -0.66f) + lineTo(16.5f, 8.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.46f, -0.71f) + lineToRelative(2.82f, -6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.46f, -0.29f) + close() + moveTo(5.25f, 3.0f) + horizontalLineToRelative(8.7f) + lineToRelative(-0.7f, 1.5f) + horizontalLineToRelative(-8.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineTo(7.5f) + verticalLineToRelative(3.75f) + lineToRelative(5.01f, -3.75f) + horizontalLineToRelative(6.24f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-5.5f) + lineToRelative(1.5f, -1.7f) + verticalLineToRelative(7.2f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-5.74f) + lineTo(8.0f, 21.75f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.0f, -1.0f) + verticalLineTo(18.0f) + horizontalLineToRelative(-0.75f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) + verticalLineToRelative(-8.5f) + curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) + close() + } + } + return _commentLightning!! + } + +private var _commentLightning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentLink.kt new file mode 100644 index 00000000..02c92e4e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentLink.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CommentLink: ImageVector + get() { + if (_commentLink != null) { + return _commentLink!! + } + _commentLink = fluentIcon(name = "Regular.CommentLink") { + fluentPath { + moveTo(23.0f, 5.75f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 19.25f, 2.0f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + lineTo(19.25f, 9.5f) + horizontalLineToRelative(0.2f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 5.74f) + close() + moveTo(16.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-0.2f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(20.0f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(5.25f, 3.0f) + horizontalLineToRelative(6.63f) + curveToRelative(-0.32f, 0.45f, -0.57f, 0.95f, -0.71f, 1.5f) + lineTo(5.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(7.5f, 16.5f) + verticalLineToRelative(3.75f) + lineToRelative(5.01f, -3.75f) + horizontalLineToRelative(6.24f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-4.42f) + curveToRelative(0.55f, -0.14f, 1.05f, -0.39f, 1.5f, -0.7f) + verticalLineToRelative(5.12f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-5.74f) + lineTo(8.0f, 21.75f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.0f, -1.0f) + lineTo(6.0f, 18.0f) + horizontalLineToRelative(-0.75f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) + verticalLineToRelative(-8.5f) + curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) + close() + } + } + return _commentLink!! + } + +private var _commentLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentMention.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentMention.kt new file mode 100644 index 00000000..8a9da59a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentMention.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CommentMention: ImageVector + get() { + if (_commentMention != null) { + return _commentMention!! + } + _commentMention = fluentIcon(name = "Regular.CommentMention") { + fluentPath { + moveTo(18.0f, 2.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 2.22f, 7.34f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.56f, 0.83f) + arcTo(5.0f, 5.0f, 0.0f, true, true, 23.0f, 6.0f) + verticalLineToRelative(0.75f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -3.2f, 0.98f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 15.5f, 6.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 4.0f, -2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + verticalLineToRelative(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(22.0f, 6.0f) + arcTo(4.0f, 4.0f, 0.0f, false, false, 18.0f, 2.0f) + close() + moveTo(16.5f, 6.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) + close() + moveTo(22.0f, 14.75f) + verticalLineToRelative(-4.28f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, -1.5f, 0.99f) + verticalLineToRelative(3.29f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-6.24f) + lineTo(7.5f, 20.25f) + lineTo(7.5f, 16.5f) + lineTo(5.25f, 16.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(6.94f) + curveToRelative(0.14f, -0.53f, 0.34f, -1.04f, 0.61f, -1.5f) + lineTo(5.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 6.25f) + verticalLineToRelative(8.5f) + curveTo(2.0f, 16.55f, 3.46f, 18.0f, 5.25f, 18.0f) + lineTo(6.0f, 18.0f) + verticalLineToRelative(2.75f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.0f, 1.0f) + lineTo(13.0f, 18.0f) + horizontalLineToRelative(5.74f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.45f, 3.25f, -3.25f) + close() + } + } + return _commentMention!! + } + +private var _commentMention: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentMultiple.kt new file mode 100644 index 00000000..444f2e05 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentMultiple.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CommentMultiple: ImageVector + get() { + if (_commentMultiple != null) { + return _commentMultiple!! + } + _commentMultiple = fluentIcon(name = "Regular.CommentMultiple") { + fluentPath { + moveTo(5.0f, 5.0f) + curveToRelative(0.13f, -1.67f, 1.54f, -3.0f, 3.25f, -3.0f) + horizontalLineToRelative(9.0f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 22.0f, 6.75f) + verticalLineToRelative(6.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.0f, 3.24f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 15.74f, 19.0f) + horizontalLineToRelative(-5.08f) + lineTo(7.0f, 21.75f) + curveToRelative(-0.82f, 0.62f, -2.0f, 0.03f, -2.0f, -1.0f) + verticalLineToRelative(-1.76f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.0f, -3.24f) + verticalLineToRelative(-7.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.0f, -3.24f) + close() + moveTo(6.52f, 5.0f) + horizontalLineToRelative(9.23f) + curveTo(17.55f, 5.0f, 19.0f, 6.46f, 19.0f, 8.25f) + verticalLineToRelative(6.23f) + curveToRelative(0.85f, -0.12f, 1.5f, -0.85f, 1.5f, -1.73f) + verticalLineToRelative(-6.0f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-9.0f) + curveToRelative(-0.88f, 0.0f, -1.61f, 0.65f, -1.73f, 1.5f) + close() + moveTo(5.25f, 17.5f) + lineTo(6.5f, 17.5f) + verticalLineToRelative(2.75f) + lineToRelative(3.67f, -2.75f) + horizontalLineToRelative(5.58f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-7.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(5.25f, 6.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + close() + } + } + return _commentMultiple!! + } + +private var _commentMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentMultipleCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentMultipleCheckmark.kt new file mode 100644 index 00000000..d6765f1a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentMultipleCheckmark.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CommentMultipleCheckmark: ImageVector + get() { + if (_commentMultipleCheckmark != null) { + return _commentMultipleCheckmark!! + } + _commentMultipleCheckmark = fluentIcon(name = "Regular.CommentMultipleCheckmark") { + fluentPath { + moveTo(5.0f, 5.0f) + curveToRelative(0.13f, -1.67f, 1.54f, -3.0f, 3.25f, -3.0f) + horizontalLineToRelative(9.0f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 22.0f, 6.75f) + verticalLineToRelative(6.06f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) + lineTo(20.5f, 6.75f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-9.0f) + curveToRelative(-0.88f, 0.0f, -1.61f, 0.65f, -1.73f, 1.5f) + horizontalLineToRelative(9.23f) + curveTo(17.55f, 5.0f, 19.0f, 6.46f, 19.0f, 8.25f) + verticalLineToRelative(2.92f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -0.17f) + lineTo(17.5f, 8.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(5.25f, 6.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(6.5f, 17.5f) + verticalLineToRelative(2.75f) + lineToRelative(3.67f, -2.75f) + lineTo(11.0f, 17.5f) + curveToRelative(0.0f, 0.52f, 0.06f, 1.02f, 0.17f, 1.5f) + horizontalLineToRelative(-0.5f) + lineTo(7.0f, 21.75f) + curveToRelative(-0.82f, 0.62f, -2.0f, 0.03f, -2.0f, -1.0f) + verticalLineToRelative(-1.76f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.0f, -3.24f) + verticalLineToRelative(-7.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.0f, -3.24f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(20.85f, 15.15f) + curveToRelative(0.2f, 0.2f, 0.2f, 0.5f, 0.0f, 0.7f) + lineToRelative(-4.0f, 4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.0f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, -0.7f) + lineToRelative(1.65f, 1.64f) + lineToRelative(3.65f, -3.64f) + curveToRelative(0.2f, -0.2f, 0.5f, -0.2f, 0.7f, 0.0f) + close() + } + } + return _commentMultipleCheckmark!! + } + +private var _commentMultipleCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentMultipleLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentMultipleLink.kt new file mode 100644 index 00000000..10395421 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentMultipleLink.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CommentMultipleLink: ImageVector + get() { + if (_commentMultipleLink != null) { + return _commentMultipleLink!! + } + _commentMultipleLink = fluentIcon(name = "Regular.CommentMultipleLink") { + fluentPath { + moveTo(5.0f, 5.0f) + curveToRelative(0.13f, -1.67f, 1.54f, -3.0f, 3.25f, -3.0f) + horizontalLineToRelative(9.0f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 22.0f, 6.75f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.35f, -0.06f, 0.7f, -0.16f, 1.02f) + arcToRelative(4.73f, 4.73f, 0.0f, false, false, -1.39f, -0.62f) + curveToRelative(0.03f, -0.13f, 0.05f, -0.26f, 0.05f, -0.4f) + verticalLineToRelative(-6.0f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-9.0f) + curveToRelative(-0.88f, 0.0f, -1.61f, 0.65f, -1.73f, 1.5f) + horizontalLineToRelative(9.23f) + curveTo(17.55f, 5.0f, 19.0f, 6.46f, 19.0f, 8.25f) + lineTo(19.0f, 13.0f) + horizontalLineToRelative(-1.5f) + lineTo(17.5f, 8.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(5.25f, 6.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(6.5f, 17.5f) + verticalLineToRelative(2.75f) + lineToRelative(3.67f, -2.75f) + lineTo(11.0f, 17.5f) + arcToRelative(4.82f, 4.82f, 0.0f, false, false, 0.16f, 1.5f) + horizontalLineToRelative(-0.5f) + lineTo(7.0f, 21.75f) + curveToRelative(-0.82f, 0.62f, -2.0f, 0.03f, -2.0f, -1.0f) + verticalLineToRelative(-1.76f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.0f, -3.24f) + verticalLineToRelative(-7.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.0f, -3.24f) + close() + moveTo(23.0f, 17.75f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 19.25f, 14.0f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + verticalLineToRelative(-0.01f) + horizontalLineToRelative(0.2f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 17.74f) + close() + moveTo(16.5f, 14.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-0.2f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(20.0f, 17.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + } + } + return _commentMultipleLink!! + } + +private var _commentMultipleLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentNote.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentNote.kt new file mode 100644 index 00000000..3339a062 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentNote.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CommentNote: ImageVector + get() { + if (_commentNote != null) { + return _commentNote!! + } + _commentNote = fluentIcon(name = "Regular.CommentNote") { + fluentPath { + moveTo(12.0f, 3.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + verticalLineToRelative(6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(12.0f, 3.0f) + close() + moveTo(14.5f, 4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + horizontalLineToRelative(-6.0f) + close() + moveTo(14.5f, 7.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + horizontalLineToRelative(-6.0f) + close() + } + fluentPath { + moveTo(5.25f, 3.0f) + horizontalLineTo(11.0f) + verticalLineToRelative(1.5f) + horizontalLineTo(5.25f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineTo(7.5f) + verticalLineToRelative(3.75f) + lineToRelative(5.01f, -3.75f) + horizontalLineToRelative(6.24f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineTo(12.0f) + horizontalLineToRelative(0.5f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 1.0f, -0.17f) + verticalLineToRelative(2.92f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-5.74f) + lineTo(8.0f, 21.75f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.0f, -1.0f) + verticalLineTo(18.0f) + horizontalLineToRelative(-0.75f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) + verticalLineToRelative(-8.5f) + curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) + close() + } + } + return _commentNote!! + } + +private var _commentNote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentOff.kt new file mode 100644 index 00000000..449ed906 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommentOff.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CommentOff: ImageVector + get() { + if (_commentOff != null) { + return _commentOff!! + } + _commentOff = fluentIcon(name = "Regular.CommentOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(0.7f, 0.7f) + arcTo(3.24f, 3.24f, 0.0f, false, false, 2.0f, 6.25f) + verticalLineToRelative(8.5f) + curveTo(2.0f, 16.55f, 3.46f, 18.0f, 5.25f, 18.0f) + lineTo(6.0f, 18.0f) + verticalLineToRelative(2.75f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.0f, 1.0f) + lineTo(13.0f, 18.0f) + horizontalLineToRelative(3.93f) + lineToRelative(3.78f, 3.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(15.44f, 16.5f) + lineTo(12.5f, 16.5f) + lineTo(7.5f, 20.25f) + lineTo(7.5f, 16.5f) + lineTo(5.25f, 16.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.47f, 0.18f, -0.9f, 0.48f, -1.2f) + lineTo(15.44f, 16.5f) + close() + moveTo(20.5f, 14.75f) + curveToRelative(0.0f, 0.7f, -0.4f, 1.3f, -1.0f, 1.58f) + lineToRelative(1.1f, 1.1f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 1.4f, -2.68f) + verticalLineToRelative(-8.5f) + curveTo(22.0f, 4.45f, 20.54f, 3.0f, 18.75f, 3.0f) + lineTo(6.18f, 3.0f) + lineToRelative(1.5f, 1.5f) + horizontalLineToRelative(11.07f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(8.5f) + close() + } + } + return _commentOff!! + } + +private var _commentOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Communication.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Communication.kt new file mode 100644 index 00000000..ff7a1cda --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Communication.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Communication: ImageVector + get() { + if (_communication != null) { + return _communication!! + } + _communication = fluentIcon(name = "Regular.Communication") { + fluentPath { + moveTo(12.0f, 4.5f) + arcTo(8.5f, 8.5f, 0.0f, false, false, 5.98f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 14.15f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.05f, -1.05f) + arcTo(8.5f, 8.5f, 0.0f, false, false, 12.0f, 4.5f) + close() + moveTo(12.0f, 8.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, -3.53f, 8.54f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + arcToRelative(6.5f, 6.5f, 0.0f, true, true, 9.19f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.07f, -1.06f) + arcTo(5.0f, 5.0f, 0.0f, false, false, 12.0f, 8.0f) + close() + moveTo(12.0f, 10.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, -5.0f) + close() + moveTo(11.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + close() + } + } + return _communication!! + } + +private var _communication: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommunicationPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommunicationPerson.kt new file mode 100644 index 00000000..370ed968 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CommunicationPerson.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CommunicationPerson: ImageVector + get() { + if (_communicationPerson != null) { + return _communicationPerson!! + } + _communicationPerson = fluentIcon(name = "Regular.CommunicationPerson") { + fluentPath { + moveTo(3.5f, 13.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, 16.88f, -1.46f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 1.58f, 2.4f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -17.03f, 6.12f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.05f, -1.05f) + arcTo(8.47f, 8.47f, 0.0f, false, true, 3.5f, 13.0f) + close() + moveTo(18.2f, 11.01f) + arcTo(6.5f, 6.5f, 0.0f, true, false, 7.4f, 17.6f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.07f, -1.06f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 8.3f, -5.07f) + curveToRelative(0.42f, -0.25f, 0.9f, -0.41f, 1.42f, -0.46f) + close() + moveTo(9.5f, 13.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) + close() + moveTo(12.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(21.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(23.0f, 19.88f) + curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) + reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _communicationPerson!! + } + +private var _communicationPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CompassNorthwest.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CompassNorthwest.kt new file mode 100644 index 00000000..b7b90ada --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CompassNorthwest.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CompassNorthwest: ImageVector + get() { + if (_compassNorthwest != null) { + return _compassNorthwest!! + } + _compassNorthwest = fluentIcon(name = "Regular.CompassNorthwest") { + fluentPath { + moveTo(3.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 17.0f, 0.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, -17.0f, 0.0f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) + close() + moveTo(7.08f, 8.7f) + curveToRelative(-0.4f, -1.01f, 0.6f, -2.02f, 1.63f, -1.62f) + lineToRelative(4.03f, 1.6f) + arcToRelative(4.75f, 4.75f, 0.0f, false, true, 2.6f, 2.55f) + lineToRelative(1.86f, 4.33f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.64f, 1.64f) + lineToRelative(-4.33f, -1.86f) + arcToRelative(4.75f, 4.75f, 0.0f, false, true, -2.54f, -2.6f) + lineTo(7.09f, 8.7f) + close() + moveTo(8.69f, 8.7f) + lineTo(10.09f, 12.18f) + curveToRelative(0.31f, 0.8f, 0.94f, 1.44f, 1.73f, 1.78f) + lineToRelative(3.75f, 1.61f) + lineToRelative(-1.6f, -3.75f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -1.79f, -1.74f) + lineTo(8.69f, 8.7f) + close() + } + } + return _compassNorthwest!! + } + +private var _compassNorthwest: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Component2DoubleTapSwipeDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Component2DoubleTapSwipeDown.kt new file mode 100644 index 00000000..58103258 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Component2DoubleTapSwipeDown.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Component2DoubleTapSwipeDown: ImageVector + get() { + if (_component2DoubleTapSwipeDown != null) { + return _component2DoubleTapSwipeDown!! + } + _component2DoubleTapSwipeDown = fluentIcon(name = "Regular.Component2DoubleTapSwipeDown") { + fluentPath { + moveTo(12.0f, 8.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(10.7f) + lineToRelative(2.22f, -2.21f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.08f) + lineToRelative(0.08f, 0.08f) + curveToRelative(0.27f, 0.26f, 0.3f, 0.68f, 0.07f, 0.97f) + lineToRelative(-0.07f, 0.09f) + lineToRelative(-3.5f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-3.5f, -3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.14f) + lineToRelative(0.08f, 0.08f) + lineToRelative(2.22f, 2.21f) + lineTo(11.25f, 8.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, 1.75f, 13.78f) + verticalLineToRelative(-1.56f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -3.5f, 0.0f) + verticalLineToRelative(1.56f) + arcTo(7.0f, 7.0f, 0.0f, false, true, 12.0f, 2.0f) + close() + moveTo(12.0f, 4.5f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 1.75f, 8.65f) + verticalLineToRelative(-1.71f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, -3.5f, 0.0f) + verticalLineToRelative(1.7f) + arcTo(4.5f, 4.5f, 0.0f, false, true, 12.0f, 4.5f) + close() + } + } + return _component2DoubleTapSwipeDown!! + } + +private var _component2DoubleTapSwipeDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Component2DoubleTapSwipeUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Component2DoubleTapSwipeUp.kt new file mode 100644 index 00000000..bb1418da --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Component2DoubleTapSwipeUp.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Component2DoubleTapSwipeUp: ImageVector + get() { + if (_component2DoubleTapSwipeUp != null) { + return _component2DoubleTapSwipeUp!! + } + _component2DoubleTapSwipeUp = fluentIcon(name = "Regular.Component2DoubleTapSwipeUp") { + fluentPath { + moveTo(12.0f, 16.02f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.29f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + lineTo(12.75f, 4.57f) + lineToRelative(2.22f, 2.21f) + curveToRelative(0.27f, 0.27f, 0.68f, 0.3f, 0.98f, 0.07f) + lineToRelative(0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.07f, -0.98f) + lineToRelative(-0.07f, -0.08f) + lineToRelative(-3.5f, -3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, -0.07f) + lineToRelative(-0.08f, 0.07f) + lineToRelative(-3.5f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) + lineToRelative(0.08f, -0.07f) + lineToRelative(2.22f, -2.22f) + verticalLineToRelative(10.7f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.76f, 0.75f, 0.76f) + close() + moveTo(12.0f, 22.02f) + arcToRelative(7.0f, 7.0f, 0.0f, false, false, 1.75f, -13.78f) + lineTo(13.75f, 9.8f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -3.5f, 0.0f) + lineTo(10.25f, 8.24f) + arcTo(7.0f, 7.0f, 0.0f, false, false, 12.0f, 22.02f) + close() + moveTo(12.0f, 19.52f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 1.75f, -8.65f) + verticalLineToRelative(1.71f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, -3.5f, 0.0f) + verticalLineToRelative(-1.71f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 19.52f) + close() + } + } + return _component2DoubleTapSwipeUp!! + } + +private var _component2DoubleTapSwipeUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Compose.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Compose.kt new file mode 100644 index 00000000..3e976ed0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Compose.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Compose: ImageVector + get() { + if (_compose != null) { + return _compose!! + } + _compose = fluentIcon(name = "Regular.Compose") { + fluentPath { + moveTo(21.78f, 3.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-10.0f, 10.0f) + lineToRelative(-0.47f, 1.53f) + lineToRelative(1.53f, -0.47f) + lineToRelative(10.0f, -10.0f) + close() + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(8.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineTo(6.25f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineTo(6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-8.0f) + close() + } + } + return _compose!! + } + +private var _compose: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ConferenceRoom.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ConferenceRoom.kt new file mode 100644 index 00000000..38684e0a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ConferenceRoom.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ConferenceRoom: ImageVector + get() { + if (_conferenceRoom != null) { + return _conferenceRoom!! + } + _conferenceRoom = fluentIcon(name = "Regular.ConferenceRoom") { + fluentPath { + moveToRelative(10.82f, 2.0f) + lineToRelative(0.1f, 0.02f) + lineToRelative(8.5f, 2.0f) + curveToRelative(0.3f, 0.07f, 0.53f, 0.32f, 0.57f, 0.63f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(14.5f) + curveToRelative(0.0f, 0.31f, -0.2f, 0.59f, -0.48f, 0.7f) + lineToRelative(-0.1f, 0.03f) + lineToRelative(-8.5f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.91f, -0.63f) + lineToRelative(-0.01f, -0.1f) + lineTo(10.0f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.33f, -0.74f, 0.72f, -0.75f) + horizontalLineToRelative(0.1f) + close() + moveTo(11.5f, 3.7f) + verticalLineToRelative(16.6f) + lineToRelative(7.0f, -1.64f) + lineTo(18.5f, 5.34f) + lineToRelative(-7.0f, -1.64f) + close() + moveTo(9.0f, 4.0f) + verticalLineToRelative(1.5f) + lineTo(5.5f, 5.5f) + verticalLineToRelative(13.0f) + lineTo(9.0f, 18.5f) + lineTo(9.0f, 20.0f) + lineTo(4.75f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + lineTo(4.0f, 4.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + lineTo(9.0f, 4.0f) + close() + moveTo(14.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + } + } + return _conferenceRoom!! + } + +private var _conferenceRoom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Connector.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Connector.kt new file mode 100644 index 00000000..8c3aff82 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Connector.kt @@ -0,0 +1,103 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Connector: ImageVector + get() { + if (_connector != null) { + return _connector!! + } + _connector = fluentIcon(name = "Regular.Connector") { + fluentPath { + moveTo(8.25f, 4.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(2.77f) + lineToRelative(1.88f, 2.82f) + curveToRelative(0.06f, 0.1f, 0.1f, 0.2f, 0.11f, 0.3f) + lineToRelative(0.01f, 0.11f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(9.0f, 16.0f) + verticalLineToRelative(3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(7.5f, 16.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(3.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, 0.1f) + lineTo(4.01f, 16.0f) + lineTo(2.74f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + verticalLineToRelative(-4.6f) + curveToRelative(0.0f, -0.1f, 0.02f, -0.22f, 0.07f, -0.32f) + lineToRelative(0.05f, -0.1f) + lineTo(4.0f, 7.54f) + lineTo(4.0f, 4.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(3.1f) + curveToRelative(0.0f, 0.11f, -0.02f, 0.22f, -0.07f, 0.32f) + lineToRelative(-0.05f, 0.1f) + lineToRelative(-1.88f, 2.81f) + verticalLineToRelative(3.52f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(-3.52f) + lineTo(7.63f, 8.17f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.12f, -0.31f) + lineTo(7.51f, 4.75f) + curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.74f, -0.75f) + close() + moveTo(15.25f, 4.0f) + horizontalLineToRelative(4.5f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + lineTo(20.5f, 8.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.1f, -0.02f, 0.22f, -0.07f, 0.32f) + lineToRelative(-0.05f, 0.1f) + lineToRelative(-1.88f, 2.8f) + verticalLineToRelative(2.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-3.1f) + curveToRelative(0.0f, -0.11f, 0.03f, -0.22f, 0.07f, -0.32f) + lineToRelative(0.06f, -0.1f) + lineToRelative(1.87f, -2.81f) + lineTo(20.5f, 9.5f) + horizontalLineToRelative(-6.0f) + verticalLineToRelative(3.52f) + lineToRelative(1.88f, 2.81f) + curveToRelative(0.06f, 0.1f, 0.1f, 0.2f, 0.12f, 0.31f) + verticalLineToRelative(3.11f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, 0.1f) + verticalLineToRelative(-2.87f) + lineToRelative(-1.88f, -2.82f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.12f, -0.3f) + lineTo(13.01f, 8.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.64f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(0.76f) + lineTo(14.51f, 4.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.64f, -0.74f) + horizontalLineToRelative(4.6f) + horizontalLineToRelative(-4.5f) + close() + moveTo(19.0f, 5.5f) + horizontalLineToRelative(-3.0f) + lineTo(16.0f, 8.0f) + horizontalLineToRelative(3.0f) + lineTo(19.0f, 5.5f) + close() + } + } + return _connector!! + } + +private var _connector: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ContactCard.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ContactCard.kt new file mode 100644 index 00000000..4e7b87a3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ContactCard.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ContactCard: ImageVector + get() { + if (_contactCard != null) { + return _contactCard!! + } + _contactCard = fluentIcon(name = "Regular.ContactCard") { + fluentPath { + moveTo(19.75f, 4.0f) + curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(22.0f, 19.0f, 21.0f, 20.0f, 19.75f, 20.0f) + lineTo(4.25f, 20.0f) + curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) + lineTo(2.0f, 6.25f) + curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) + horizontalLineToRelative(15.5f) + close() + moveTo(19.75f, 5.5f) + lineTo(4.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(15.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) + lineTo(20.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(9.75f, 12.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.6f) + curveToRelative(-0.17f, 1.11f, -1.1f, 1.65f, -2.5f, 1.65f) + reflectiveCurveToRelative(-2.33f, -0.54f, -2.5f, -1.65f) + verticalLineToRelative(-0.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + close() + moveTo(13.25f, 13.0f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.49f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + horizontalLineToRelative(4.6f) + horizontalLineToRelative(-4.5f) + close() + moveTo(8.0f, 8.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(13.25f, 9.5f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(4.6f) + horizontalLineToRelative(-4.5f) + close() + } + } + return _contactCard!! + } + +private var _contactCard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ContactCardGroup.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ContactCardGroup.kt new file mode 100644 index 00000000..807205d3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ContactCardGroup.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ContactCardGroup: ImageVector + get() { + if (_contactCardGroup != null) { + return _contactCardGroup!! + } + _contactCardGroup = fluentIcon(name = "Regular.ContactCardGroup") { + fluentPath { + moveTo(18.75f, 4.0f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(5.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(5.25f, 4.0f) + horizontalLineToRelative(13.5f) + close() + moveTo(18.75f, 5.5f) + lineTo(5.11f, 5.5f) + curveToRelative(-0.9f, 0.08f, -1.61f, 0.83f, -1.61f, 1.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(9.25f, 12.5f) + curveToRelative(0.42f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.58f) + curveToRelative(0.0f, 1.27f, -0.97f, 1.92f, -2.5f, 1.92f) + reflectiveCurveTo(5.0f, 15.1f, 5.0f, 13.83f) + verticalLineToRelative(-0.58f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + close() + moveTo(10.83f, 12.5f) + horizontalLineToRelative(1.42f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.33f) + curveToRelative(0.0f, 0.97f, -0.77f, 1.42f, -1.88f, 1.42f) + curveToRelative(-0.11f, 0.0f, -0.22f, 0.0f, -0.33f, -0.02f) + curveToRelative(0.11f, -0.26f, 0.18f, -0.56f, 0.2f, -0.9f) + lineToRelative(0.01f, -0.25f) + verticalLineToRelative(-0.58f) + curveToRelative(0.0f, -0.27f, -0.06f, -0.52f, -0.17f, -0.75f) + close() + moveTo(15.25f, 12.5f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-3.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(3.1f) + horizontalLineToRelative(-3.0f) + close() + moveTo(7.5f, 8.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(11.37f, 9.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(15.25f, 9.5f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-3.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(3.1f) + horizontalLineToRelative(-3.0f) + close() + } + } + return _contactCardGroup!! + } + +private var _contactCardGroup: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ContactCardRibbon.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ContactCardRibbon.kt new file mode 100644 index 00000000..4508ef87 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ContactCardRibbon.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ContactCardRibbon: ImageVector + get() { + if (_contactCardRibbon != null) { + return _contactCardRibbon!! + } + _contactCardRibbon = fluentIcon(name = "Regular.ContactCardRibbon") { + fluentPath { + moveTo(19.75f, 4.0f) + curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) + verticalLineToRelative(5.5f) + curveToRelative(-0.45f, -0.3f, -0.96f, -0.52f, -1.5f, -0.64f) + lineTo(20.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(4.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(16.0f, 18.5f) + lineTo(16.0f, 20.0f) + lineTo(4.25f, 20.0f) + curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) + lineTo(2.0f, 6.25f) + curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) + horizontalLineToRelative(15.5f) + close() + moveTo(13.25f, 13.0f) + horizontalLineToRelative(2.51f) + curveToRelative(-0.3f, 0.45f, -0.52f, 0.95f, -0.65f, 1.5f) + horizontalLineToRelative(-1.86f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(9.75f, 12.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.6f) + curveToRelative(-0.17f, 1.11f, -1.1f, 1.65f, -2.5f, 1.65f) + reflectiveCurveToRelative(-2.33f, -0.54f, -2.5f, -1.65f) + verticalLineToRelative(-0.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + close() + moveTo(8.0f, 8.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(13.25f, 9.5f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(23.0f, 15.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, -7.0f, 0.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 7.0f, 0.0f) + close() + moveTo(17.0f, 19.24f) + verticalLineToRelative(3.05f) + curveToRelative(0.0f, 0.63f, 0.76f, 0.95f, 1.21f, 0.5f) + lineToRelative(1.29f, -1.29f) + lineToRelative(1.29f, 1.29f) + arcToRelative(0.71f, 0.71f, 0.0f, false, false, 1.21f, -0.5f) + verticalLineToRelative(-3.05f) + arcToRelative(4.48f, 4.48f, 0.0f, false, true, -5.0f, 0.0f) + close() + } + } + return _contactCardRibbon!! + } + +private var _contactCardRibbon: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ContentSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ContentSettings.kt new file mode 100644 index 00000000..7d762b74 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ContentSettings.kt @@ -0,0 +1,109 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ContentSettings: ImageVector + get() { + if (_contentSettings != null) { + return _contentSettings!! + } + _contentSettings = fluentIcon(name = "Regular.ContentSettings") { + fluentPath { + moveTo(17.75f, 3.0f) + horizontalLineToRelative(0.19f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 21.0f, 6.08f) + lineTo(21.0f, 12.02f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 8.0f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(9.75f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(5.06f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(6.25f, 21.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(3.0f, 17.75f) + lineTo(3.0f, 6.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(0.25f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(-0.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(10.25f, 9.5f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(7.0f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-7.0f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(3.5f) + close() + moveTo(9.5f, 11.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(5.5f) + horizontalLineToRelative(2.0f) + lineTo(9.5f, 11.0f) + close() + moveTo(18.0f, 10.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(14.28f, 13.98f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.59f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.01f, 1.8f) + lineToRelative(0.54f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) + lineToRelative(-0.19f, 0.63f) + curveToRelative(0.44f, 0.39f, 0.94f, 0.7f, 1.49f, 0.93f) + lineToRelative(0.5f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.89f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) + lineToRelative(-0.2f, -0.69f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) + lineToRelative(0.59f, -0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, -1.8f) + lineToRelative(-0.55f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.19f, -0.63f) + curveToRelative(-0.44f, -0.4f, -0.94f, -0.7f, -1.49f, -0.93f) + lineToRelative(-0.49f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) + lineToRelative(0.2f, 0.7f) + close() + moveTo(17.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) + close() + } + } + return _contentSettings!! + } + +private var _contentSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ContentView.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ContentView.kt new file mode 100644 index 00000000..dbdfbac4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ContentView.kt @@ -0,0 +1,95 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ContentView: ImageVector + get() { + if (_contentView != null) { + return _contentView!! + } + _contentView = fluentIcon(name = "Regular.ContentView") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(6.25f, 4.5f) + close() + moveTo(6.0f, 8.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(8.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-8.5f) + curveTo(6.78f, 11.5f, 6.0f, 10.72f, 6.0f, 9.75f) + verticalLineToRelative(-1.5f) + close() + moveTo(7.75f, 8.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(8.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-1.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-8.5f) + close() + moveTo(6.75f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + close() + moveTo(6.0f, 16.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(15.25f, 13.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(1.0f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-1.0f) + close() + moveTo(15.0f, 14.75f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(1.0f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-1.0f) + close() + } + } + return _contentView!! + } + +private var _contentView: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ContentViewGallery.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ContentViewGallery.kt new file mode 100644 index 00000000..db491446 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ContentViewGallery.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ContentViewGallery: ImageVector + get() { + if (_contentViewGallery != null) { + return _contentViewGallery!! + } + _contentViewGallery = fluentIcon(name = "Regular.ContentViewGallery") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(7.25f) + verticalLineToRelative(-15.0f) + lineTo(6.25f, 4.5f) + close() + moveTo(17.75f, 19.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 16.0f) + lineTo(15.0f, 16.0f) + verticalLineToRelative(3.5f) + horizontalLineToRelative(2.75f) + close() + moveTo(19.5f, 14.5f) + verticalLineToRelative(-5.0f) + lineTo(15.0f, 9.5f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(4.5f) + close() + moveTo(19.5f, 8.0f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(15.0f, 4.5f) + lineTo(15.0f, 8.0f) + horizontalLineToRelative(4.5f) + close() + moveTo(6.0f, 13.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(7.25f, 6.5f) + curveTo(6.56f, 6.5f, 6.0f, 7.06f, 6.0f, 7.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-3.5f) + close() + moveTo(7.5f, 10.0f) + lineTo(7.5f, 8.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-3.0f) + close() + moveTo(6.0f, 16.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _contentViewGallery!! + } + +private var _contentViewGallery: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ContractDownLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ContractDownLeft.kt new file mode 100644 index 00000000..cc56ea69 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ContractDownLeft.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ContractDownLeft: ImageVector + get() { + if (_contractDownLeft != null) { + return _contractDownLeft!! + } + _contractDownLeft = fluentIcon(name = "Regular.ContractDownLeft") { + fluentPath { + moveTo(4.5f, 6.25f) + lineTo(4.5f, 12.0f) + horizontalLineToRelative(4.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 12.0f, 14.75f) + verticalLineToRelative(4.75f) + horizontalLineToRelative(5.75f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + close() + moveTo(4.5f, 13.5f) + verticalLineToRelative(4.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(4.25f) + verticalLineToRelative(-4.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(4.5f, 13.5f) + close() + moveTo(15.56f, 9.5f) + horizontalLineToRelative(4.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(4.69f) + lineToRelative(5.22f, -5.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineTo(15.56f, 9.5f) + close() + } + } + return _contractDownLeft!! + } + +private var _contractDownLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ControlButton.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ControlButton.kt new file mode 100644 index 00000000..53cf410f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ControlButton.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ControlButton: ImageVector + get() { + if (_controlButton != null) { + return _controlButton!! + } + _controlButton = fluentIcon(name = "Regular.ControlButton") { + fluentPath { + moveTo(7.75f, 8.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 5.0f, 10.75f) + verticalLineToRelative(2.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 7.75f, 16.0f) + horizontalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.5f) + close() + moveTo(11.5f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + lineTo(10.0f, 11.0f) + horizontalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(10.0f, 12.5f) + lineTo(10.0f, 14.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(12.0f, 14.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.75f) + lineTo(11.5f, 8.75f) + close() + moveTo(19.5f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-6.5f) + close() + moveTo(15.5f, 13.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(16.0f, 11.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(15.5f, 13.0f) + close() + moveTo(5.25f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) + horizontalLineToRelative(13.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-9.5f) + curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) + lineTo(5.25f, 4.0f) + close() + moveTo(3.5f, 7.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(5.25f, 18.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-9.5f) + close() + } + } + return _controlButton!! + } + +private var _controlButton: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ConvertRange.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ConvertRange.kt new file mode 100644 index 00000000..2fdc1d59 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ConvertRange.kt @@ -0,0 +1,95 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ConvertRange: ImageVector + get() { + if (_convertRange != null) { + return _convertRange!! + } + _convertRange = fluentIcon(name = "Regular.ConvertRange") { + fluentPath { + moveTo(6.25f, 3.0f) + curveTo(5.01f, 3.0f, 4.0f, 4.0f, 4.0f, 5.25f) + verticalLineToRelative(2.5f) + curveTo(4.0f, 8.99f, 5.0f, 10.0f, 6.25f, 10.0f) + horizontalLineToRelative(9.5f) + curveTo(16.99f, 10.0f, 18.0f, 9.0f, 18.0f, 7.75f) + verticalLineToRelative(-2.5f) + curveTo(18.0f, 4.01f, 17.0f, 3.0f, 15.75f, 3.0f) + horizontalLineToRelative(-9.5f) + close() + moveTo(5.5f, 5.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(9.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-2.5f) + close() + moveTo(8.7f, 16.0f) + curveToRelative(-0.39f, 0.0f, -0.7f, 0.34f, -0.7f, 0.75f) + reflectiveCurveToRelative(0.31f, 0.75f, 0.7f, 0.75f) + horizontalLineToRelative(4.6f) + curveToRelative(0.39f, 0.0f, 0.7f, -0.34f, 0.7f, -0.75f) + reflectiveCurveToRelative(-0.31f, -0.75f, -0.7f, -0.75f) + lineTo(8.7f, 16.0f) + close() + moveTo(17.35f, 16.45f) + lineTo(17.28f, 16.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-0.72f, 0.72f) + horizontalLineToRelative(1.5f) + curveToRelative(0.65f, 0.0f, 1.18f, -0.5f, 1.24f, -1.12f) + lineToRelative(0.01f, -0.13f) + lineTo(19.31f, 9.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + lineTo(20.81f, 12.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.58f, 2.74f) + lineToRelative(-0.17f, 0.01f) + horizontalLineToRelative(-1.5f) + lineToRelative(0.72f, 0.72f) + curveToRelative(0.27f, 0.26f, 0.3f, 0.68f, 0.07f, 0.98f) + close() + moveTo(18.0f, 19.25f) + verticalLineToRelative(-2.03f) + lineToRelative(-0.01f, 0.02f) + curveToRelative(-0.4f, 0.4f, -0.96f, 0.57f, -1.49f, 0.5f) + verticalLineToRelative(1.51f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.82f) + curveToRelative(0.06f, -0.2f, 0.15f, -0.38f, 0.27f, -0.54f) + lineToRelative(0.03f, -0.03f) + lineToRelative(0.12f, -0.14f) + lineToRelative(0.78f, -0.79f) + lineTo(6.25f, 12.0f) + curveTo(5.01f, 12.0f, 4.0f, 13.0f, 4.0f, 14.25f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(9.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + close() + } + } + return _convertRange!! + } + +private var _convertRange: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cookies.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cookies.kt new file mode 100644 index 00000000..ace910ba --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cookies.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Cookies: ImageVector + get() { + if (_cookies != null) { + return _cookies!! + } + _cookies = fluentIcon(name = "Regular.Cookies") { + fluentPath { + moveTo(12.0f, 2.0f) + curveToRelative(0.71f, 0.0f, 1.42f, 0.07f, 2.1f, 0.22f) + curveToRelative(0.59f, 0.13f, 0.8f, 0.84f, 0.38f, 1.27f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 1.2f, 4.2f) + curveToRelative(0.38f, 0.08f, 0.62f, 0.43f, 0.58f, 0.8f) + lineToRelative(-0.01f, 0.26f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 4.37f, 1.66f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.31f, 0.4f) + arcTo(10.0f, 10.0f, 0.0f, true, true, 12.0f, 2.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, 8.47f, 9.26f) + lineToRelative(0.02f, -0.25f) + verticalLineToRelative(-0.16f) + lineToRelative(-0.2f, 0.09f) + curveToRelative(-0.32f, 0.14f, -0.67f, 0.23f, -1.04f, 0.28f) + lineToRelative(-0.27f, 0.02f) + lineToRelative(-0.23f, 0.01f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -3.96f, -3.4f) + lineToRelative(-0.02f, -0.2f) + lineToRelative(-0.01f, -0.19f) + lineToRelative(-0.15f, -0.06f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -2.34f, -3.23f) + lineToRelative(-0.02f, -0.22f) + verticalLineToRelative(-0.2f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.21f, -1.3f) + lineToRelative(0.1f, -0.23f) + lineToRelative(0.08f, -0.2f) + lineToRelative(-0.28f, -0.01f) + lineTo(12.0f, 3.5f) + close() + moveTo(15.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(8.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(12.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(7.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + } + } + return _cookies!! + } + +private var _cookies: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CopyAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CopyAdd.kt new file mode 100644 index 00000000..5b548471 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CopyAdd.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CopyAdd: ImageVector + get() { + if (_copyAdd != null) { + return _copyAdd!! + } + _copyAdd = fluentIcon(name = "Regular.CopyAdd") { + fluentPath { + moveTo(5.5f, 4.63f) + lineTo(5.5f, 17.25f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(1.98f) + curveToRelative(0.3f, 0.56f, 0.66f, 1.06f, 1.08f, 1.5f) + lineTo(8.75f, 22.0f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 4.0f, 17.25f) + lineTo(4.0f, 6.75f) + curveToRelative(0.0f, -0.98f, 0.63f, -1.81f, 1.5f, -2.12f) + close() + moveTo(20.0f, 4.25f) + verticalLineToRelative(7.77f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(18.5f, 4.24f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(13.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(1.27f) + curveToRelative(0.04f, 0.52f, 0.14f, 1.02f, 0.3f, 1.5f) + lineTo(8.74f, 19.49f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-13.0f) + curveTo(6.5f, 3.01f, 7.5f, 2.0f, 8.75f, 2.0f) + horizontalLineToRelative(9.0f) + curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) + close() + moveTo(22.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(17.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(16.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(16.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(17.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(17.0f, 18.0f) + close() + } + } + return _copyAdd!! + } + +private var _copyAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CopyArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CopyArrowRight.kt new file mode 100644 index 00000000..2f0e31f0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CopyArrowRight.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CopyArrowRight: ImageVector + get() { + if (_copyArrowRight != null) { + return _copyArrowRight!! + } + _copyArrowRight = fluentIcon(name = "Regular.CopyArrowRight") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(5.5f, 4.63f) + lineTo(5.5f, 17.25f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(2.98f) + curveToRelative(0.3f, 0.56f, 0.66f, 1.06f, 1.08f, 1.5f) + lineTo(8.75f, 22.0f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 4.0f, 17.25f) + lineTo(4.0f, 6.75f) + curveToRelative(0.0f, -0.98f, 0.63f, -1.81f, 1.5f, -2.12f) + close() + moveTo(18.28f, 14.59f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.56f, 0.0f) + lineToRelative(-0.07f, 0.06f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) + lineToRelative(0.06f, 0.07f) + lineTo(19.29f, 17.0f) + lineTo(14.4f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(0.18f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(0.06f, -0.07f) + lineToRelative(2.53f, -2.53f) + lineToRelative(0.04f, -0.05f) + lineToRelative(0.04f, -0.08f) + lineToRelative(0.03f, -0.08f) + lineTo(20.99f, 17.39f) + lineToRelative(-0.01f, -0.04f) + lineToRelative(-0.04f, -0.08f) + lineToRelative(-0.02f, -0.04f) + lineToRelative(-0.04f, -0.05f) + lineToRelative(-2.53f, -2.53f) + lineToRelative(-0.07f, -0.06f) + close() + moveTo(17.75f, 2.0f) + curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) + verticalLineToRelative(7.25f) + curveToRelative(-0.47f, -0.2f, -0.98f, -0.34f, -1.5f, -0.42f) + lineTo(18.5f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(13.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(2.27f) + curveToRelative(0.04f, 0.52f, 0.14f, 1.02f, 0.3f, 1.5f) + lineTo(8.74f, 19.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-13.0f) + curveTo(6.5f, 3.01f, 7.5f, 2.0f, 8.75f, 2.0f) + horizontalLineToRelative(9.0f) + close() + } + } + return _copyArrowRight!! + } + +private var _copyArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CopySelect.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CopySelect.kt new file mode 100644 index 00000000..94de2ede --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CopySelect.kt @@ -0,0 +1,102 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CopySelect: ImageVector + get() { + if (_copySelect != null) { + return _copySelect!! + } + _copySelect = fluentIcon(name = "Regular.CopySelect") { + fluentPath { + moveTo(9.25f, 3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.0f) + curveTo(6.0f, 3.45f, 7.46f, 2.0f, 9.25f, 2.0f) + horizontalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.0f) + close() + moveTo(12.0f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(12.75f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.5f) + close() + moveTo(6.75f, 8.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(22.0f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.5f) + close() + moveTo(18.75f, 16.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.0f) + close() + moveTo(20.5f, 5.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.0f) + curveTo(20.55f, 2.0f, 22.0f, 3.46f, 22.0f, 5.25f) + verticalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(9.25f, 16.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.0f) + curveTo(6.0f, 16.55f, 7.46f, 18.0f, 9.25f, 18.0f) + horizontalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.0f) + close() + moveTo(2.0f, 9.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.0f, -3.24f) + verticalLineToRelative(1.5f) + curveToRelative(-0.85f, 0.13f, -1.5f, 0.86f, -1.5f, 1.74f) + verticalLineToRelative(7.0f) + curveToRelative(0.0f, 2.35f, 1.9f, 4.25f, 4.25f, 4.25f) + horizontalLineToRelative(7.0f) + curveToRelative(0.88f, 0.0f, 1.61f, -0.65f, 1.73f, -1.5f) + lineTo(18.0f, 19.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, 3.0f) + horizontalLineToRelative(-7.0f) + arcTo(5.75f, 5.75f, 0.0f, false, true, 2.0f, 16.25f) + verticalLineToRelative(-7.0f) + close() + } + } + return _copySelect!! + } + +private var _copySelect: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Couch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Couch.kt new file mode 100644 index 00000000..ccd7a799 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Couch.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Couch: ImageVector + get() { + if (_couch != null) { + return _couch!! + } + _couch = fluentIcon(name = "Regular.Couch") { + fluentPath { + moveTo(7.25f, 4.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.5f, 6.75f) + verticalLineToRelative(1.34f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 11.25f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 1.43f, 1.1f, 2.61f, 2.5f, 2.74f) + verticalLineToRelative(1.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(6.0f, 17.0f) + horizontalLineToRelative(12.0f) + verticalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.26f) + curveToRelative(1.4f, -0.13f, 2.5f, -1.3f, 2.5f, -2.74f) + verticalLineToRelative(-3.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -2.5f, -3.16f) + lineTo(19.5f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 16.75f, 4.0f) + horizontalLineToRelative(-9.5f) + close() + moveTo(19.25f, 15.5f) + lineTo(4.75f, 15.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + verticalLineToRelative(-3.0f) + arcToRelative(1.75f, 1.75f, 0.0f, true, true, 3.5f, 0.0f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(8.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-0.5f) + arcToRelative(1.75f, 1.75f, 0.0f, true, true, 3.5f, 0.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + close() + moveTo(18.0f, 8.09f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 15.5f, 11.0f) + horizontalLineToRelative(-7.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 6.0f, 8.09f) + lineTo(6.0f, 6.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(9.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(1.34f) + close() + } + } + return _couch!! + } + +private var _couch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CreditCardClock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CreditCardClock.kt new file mode 100644 index 00000000..cfbcfddd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CreditCardClock.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CreditCardClock: ImageVector + get() { + if (_creditCardClock != null) { + return _creditCardClock!! + } + _creditCardClock = fluentIcon(name = "Regular.CreditCardClock") { + fluentPath { + moveTo(5.25f, 5.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 8.25f) + verticalLineToRelative(7.5f) + curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) + horizontalLineToRelative(5.92f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -0.17f, -1.5f) + lineTo(5.25f, 17.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(3.5f, 11.0f) + lineTo(22.0f, 11.0f) + lineTo(22.0f, 8.25f) + curveTo(22.0f, 6.45f, 20.54f, 5.0f, 18.75f, 5.0f) + lineTo(5.25f, 5.0f) + close() + moveTo(20.5f, 8.25f) + lineTo(20.5f, 9.5f) + horizontalLineToRelative(-17.0f) + lineTo(3.5f, 8.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(19.5f, 17.5f) + horizontalLineToRelative(-2.0f) + lineTo(17.5f, 15.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + close() + } + } + return _creditCardClock!! + } + +private var _creditCardClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CreditCardPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CreditCardPerson.kt new file mode 100644 index 00000000..7c238079 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CreditCardPerson.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CreditCardPerson: ImageVector + get() { + if (_creditCardPerson != null) { + return _creditCardPerson!! + } + _creditCardPerson = fluentIcon(name = "Regular.CreditCardPerson") { + fluentPath { + moveTo(5.25f, 5.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 8.25f) + verticalLineToRelative(7.5f) + curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) + horizontalLineToRelative(7.86f) + curveToRelative(0.18f, -0.61f, 0.56f, -1.14f, 1.07f, -1.5f) + lineTo(5.25f, 17.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(3.5f, 11.0f) + lineTo(22.0f, 11.0f) + lineTo(22.0f, 8.25f) + curveTo(22.0f, 6.45f, 20.54f, 5.0f, 18.75f, 5.0f) + lineTo(5.25f, 5.0f) + close() + moveTo(20.5f, 8.25f) + lineTo(20.5f, 9.5f) + horizontalLineToRelative(-17.0f) + lineTo(3.5f, 8.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + close() + moveTo(21.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(23.0f, 19.88f) + curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) + reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _creditCardPerson!! + } + +private var _creditCardPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CreditCardToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CreditCardToolbox.kt new file mode 100644 index 00000000..ad660991 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CreditCardToolbox.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CreditCardToolbox: ImageVector + get() { + if (_creditCardToolbox != null) { + return _creditCardToolbox!! + } + _creditCardToolbox = fluentIcon(name = "Regular.CreditCardToolbox") { + fluentPath { + moveTo(5.25f, 5.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 8.25f) + verticalLineToRelative(7.5f) + curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) + lineTo(11.0f, 19.0f) + verticalLineToRelative(-1.5f) + lineTo(5.25f, 17.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(3.5f, 11.0f) + lineTo(22.0f, 11.0f) + lineTo(22.0f, 8.25f) + curveTo(22.0f, 6.45f, 20.54f, 5.0f, 18.75f, 5.0f) + lineTo(5.25f, 5.0f) + close() + moveTo(20.5f, 8.25f) + lineTo(20.5f, 9.5f) + horizontalLineToRelative(-17.0f) + lineTo(3.5f, 8.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + close() + moveTo(13.5f, 14.75f) + horizontalLineToRelative(0.5f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(3.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(0.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + lineTo(23.0f, 18.0f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(-0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(0.5f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(-0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(0.5f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(-1.75f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + close() + moveTo(15.75f, 13.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-1.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-3.5f) + close() + moveTo(19.0f, 19.5f) + lineTo(19.0f, 19.0f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + lineTo(15.0f, 19.0f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(8.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + lineTo(23.0f, 19.0f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + close() + } + } + return _creditCardToolbox!! + } + +private var _creditCardToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Crop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Crop.kt new file mode 100644 index 00000000..9873a451 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Crop.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Crop: ImageVector + get() { + if (_crop != null) { + return _crop!! + } + _crop = fluentIcon(name = "Regular.Crop") { + fluentPath { + moveTo(21.25f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineTo(18.5f) + verticalLineToRelative(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineTo(18.5f) + horizontalLineTo(8.75f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineToRelative(-0.01f, -0.18f) + verticalLineTo(7.0f) + horizontalLineTo(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineTo(5.5f) + verticalLineTo(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(12.6f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(12.5f) + close() + moveTo(8.0f, 5.5f) + horizontalLineToRelative(7.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.24f, 3.07f) + lineToRelative(0.01f, 0.18f) + verticalLineTo(16.0f) + horizontalLineTo(17.0f) + verticalLineTo(8.75f) + curveToRelative(0.0f, -0.92f, -0.7f, -1.67f, -1.6f, -1.74f) + lineTo(15.24f, 7.0f) + horizontalLineTo(8.0f) + verticalLineTo(5.5f) + close() + } + } + return _crop!! + } + +private var _crop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CropInterim.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CropInterim.kt new file mode 100644 index 00000000..209c5d5c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CropInterim.kt @@ -0,0 +1,139 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CropInterim: ImageVector + get() { + if (_cropInterim != null) { + return _cropInterim!! + } + _cropInterim = fluentIcon(name = "Regular.CropInterim") { + fluentPath { + moveTo(16.67f, 9.1f) + arcToRelative(6.5f, 6.5f, 0.0f, true, true, -5.17f, 11.52f) + verticalLineToRelative(0.63f) + curveToRelative(0.0f, 0.38f, -0.29f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.65f) + verticalLineToRelative(-2.6f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.64f, -0.74f) + horizontalLineToRelative(2.61f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.48f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-0.74f) + arcToRelative(4.98f, 4.98f, 0.0f, false, false, 8.0f, -4.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, -3.6f, -4.8f) + lineToRelative(-0.24f, -1.6f) + close() + moveTo(14.5f, 3.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.97f, 4.8f) + lineToRelative(0.82f, 5.32f) + arcTo(2.5f, 2.5f, 0.0f, true, true, 13.5f, 17.0f) + lineTo(6.5f, 17.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -2.78f, -3.88f) + lineToRelative(0.82f, -5.3f) + arcTo(2.5f, 2.5f, 0.0f, true, true, 7.5f, 4.0f) + horizontalLineToRelative(4.99f) + curveToRelative(0.46f, -0.6f, 1.18f, -1.0f, 2.0f, -1.0f) + close() + moveTo(4.5f, 14.5f) + horizontalLineToRelative(-0.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(0.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -0.88f) + verticalLineToRelative(-0.24f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.52f, -0.76f) + lineToRelative(-0.11f, -0.05f) + lineToRelative(-0.13f, -0.04f) + lineToRelative(-0.08f, -0.02f) + lineToRelative(-0.16f, -0.01f) + close() + moveTo(15.2f, 14.55f) + lineTo(15.14f, 14.57f) + lineTo(15.08f, 14.6f) + lineTo(14.98f, 14.65f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.4f, 1.84f) + lineToRelative(0.12f, 0.01f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.12f, -2.0f) + horizontalLineToRelative(-0.12f) + lineToRelative(-0.16f, 0.01f) + lineToRelative(-0.15f, 0.04f) + close() + moveTo(11.98f, 5.5f) + lineTo(8.0f, 5.5f) + curveToRelative(0.0f, 1.2f, -0.84f, 2.2f, -1.96f, 2.45f) + lineToRelative(-0.8f, 5.16f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 7.0f, 15.31f) + lineToRelative(0.01f, 0.19f) + horizontalLineToRelative(6.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 1.76f, -2.39f) + lineToRelative(-0.8f, -5.16f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 12.0f, 5.67f) + lineTo(12.0f, 5.5f) + close() + moveTo(13.75f, 6.2f) + lineTo(13.78f, 6.22f) + lineTo(13.9f, 6.32f) + lineTo(13.98f, 6.37f) + lineTo(14.08f, 6.42f) + lineTo(14.18f, 6.46f) + lineTo(14.28f, 6.48f) + lineTo(14.35f, 6.5f) + horizontalLineToRelative(0.25f) + lineToRelative(0.17f, -0.04f) + lineToRelative(0.12f, -0.05f) + lineToRelative(0.09f, -0.04f) + lineToRelative(0.1f, -0.06f) + lineToRelative(0.1f, -0.1f) + lineToRelative(0.08f, -0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.3f, -1.5f) + lineToRelative(-0.1f, -0.05f) + lineToRelative(-0.15f, -0.05f) + lineToRelative(-0.08f, -0.01f) + arcToRelative(0.99f, 0.99f, 0.0f, false, false, -0.15f, -0.02f) + lineToRelative(-0.12f, 0.01f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.6f, 1.69f) + close() + moveTo(4.5f, 5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.22f, 0.63f) + lineToRelative(0.07f, 0.07f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.19f, 0.16f) + lineToRelative(0.1f, 0.05f) + lineToRelative(0.1f, 0.04f) + lineToRelative(0.09f, 0.03f) + lineToRelative(0.1f, 0.02f) + horizontalLineToRelative(0.13f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.17f, -0.01f) + lineToRelative(0.07f, -0.02f) + lineToRelative(0.11f, -0.03f) + lineToRelative(0.06f, -0.02f) + lineToRelative(0.15f, -0.09f) + lineToRelative(0.08f, -0.06f) + lineToRelative(0.06f, -0.05f) + lineToRelative(0.08f, -0.1f) + lineToRelative(0.06f, -0.08f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.15f, -0.42f) + lineToRelative(0.01f, -0.12f) + verticalLineToRelative(-0.12f) + lineToRelative(-0.03f, -0.1f) + lineToRelative(-0.01f, -0.07f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.84f, -0.7f) + lineTo(5.5f, 4.51f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.17f, 0.0f) + lineToRelative(-0.08f, 0.02f) + lineToRelative(-0.09f, 0.03f) + lineToRelative(-0.05f, 0.02f) + lineToRelative(-0.1f, 0.05f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.51f, 0.87f) + close() + } + } + return _cropInterim!! + } + +private var _cropInterim: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CropInterimOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CropInterimOff.kt new file mode 100644 index 00000000..ab8a01b5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CropInterimOff.kt @@ -0,0 +1,108 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CropInterimOff: ImageVector + get() { + if (_cropInterimOff != null) { + return _cropInterimOff!! + } + _cropInterimOff = fluentIcon(name = "Regular.CropInterimOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.06f, 1.06f) + arcToRelative(2.49f, 2.49f, 0.0f, false, false, 1.26f, 3.47f) + lineToRelative(-0.82f, 5.31f) + arcTo(2.5f, 2.5f, 0.0f, true, false, 6.5f, 17.0f) + horizontalLineToRelative(7.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.16f, 0.72f) + lineToRelative(1.8f, 1.8f) + arcToRelative(4.98f, 4.98f, 0.0f, false, true, -5.95f, -0.02f) + horizontalLineToRelative(0.84f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + verticalLineToRelative(2.6f) + curveToRelative(0.05f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + verticalLineToRelative(-0.63f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, 8.04f, -0.02f) + lineToRelative(1.18f, 1.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(13.28f, 14.35f) + curveToRelative(-0.17f, 0.34f, -0.28f, 0.73f, -0.28f, 1.15f) + lineTo(7.0f, 15.5f) + verticalLineToRelative(-0.19f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -1.76f, -2.2f) + lineToRelative(0.8f, -5.16f) + curveToRelative(0.22f, -0.05f, 0.43f, -0.13f, 0.62f, -0.23f) + lineToRelative(6.63f, 6.63f) + close() + moveTo(4.5f, 14.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.16f, 0.01f) + lineToRelative(0.08f, 0.02f) + lineToRelative(0.13f, 0.04f) + lineToRelative(0.1f, 0.05f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.52f, 0.76f) + lineToRelative(0.01f, 0.12f) + verticalLineToRelative(0.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 0.88f) + horizontalLineToRelative(-0.12f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + horizontalLineToRelative(0.12f) + close() + moveTo(7.18f, 4.0f) + lineToRelative(1.5f, 1.5f) + horizontalLineToRelative(3.3f) + lineToRelative(0.01f, 0.17f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 1.97f, 2.28f) + lineToRelative(0.52f, 3.35f) + lineToRelative(1.8f, 1.8f) + lineToRelative(-0.82f, -5.3f) + arcTo(2.5f, 2.5f, 0.0f, true, false, 12.5f, 4.0f) + horizontalLineToRelative(-5.3f) + close() + moveTo(13.76f, 6.2f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.61f, -1.69f) + horizontalLineToRelative(0.27f) + lineToRelative(0.08f, 0.02f) + lineToRelative(0.15f, 0.05f) + lineToRelative(0.1f, 0.06f) + verticalLineToRelative(-0.01f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.3f, 1.5f) + lineToRelative(-0.08f, 0.08f) + lineToRelative(-0.1f, 0.1f) + lineToRelative(-0.1f, 0.06f) + lineToRelative(-0.09f, 0.04f) + lineToRelative(-0.12f, 0.05f) + lineToRelative(-0.17f, 0.04f) + horizontalLineToRelative(-0.25f) + lineToRelative(-0.08f, -0.02f) + lineToRelative(-0.09f, -0.02f) + lineToRelative(-0.1f, -0.04f) + lineToRelative(-0.1f, -0.05f) + lineToRelative(-0.08f, -0.05f) + lineToRelative(-0.12f, -0.1f) + lineToRelative(-0.03f, -0.02f) + close() + moveTo(20.26f, 17.07f) + lineTo(21.41f, 18.23f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -4.74f, -9.12f) + lineToRelative(0.25f, 1.6f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 3.33f, 6.36f) + close() + } + } + return _cropInterimOff!! + } + +private var _cropInterimOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cube.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cube.kt new file mode 100644 index 00000000..3f34273f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cube.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Cube: ImageVector + get() { + if (_cube != null) { + return _cube!! + } + _cube = fluentIcon(name = "Regular.Cube") { + fluentPath { + moveTo(6.05f, 7.98f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -0.43f) + lineTo(12.0f, 9.44f) + lineToRelative(4.98f, -1.9f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.54f, 1.41f) + lineToRelative(-4.77f, 1.8f) + verticalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + verticalLineToRelative(-5.5f) + lineToRelative(-4.77f, -1.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.43f, -0.97f) + close() + moveTo(10.59f, 2.51f) + curveToRelative(0.9f, -0.37f, 1.92f, -0.37f, 2.82f, 0.0f) + lineToRelative(7.5f, 3.04f) + curveToRelative(0.66f, 0.27f, 1.09f, 0.91f, 1.09f, 1.62f) + verticalLineToRelative(9.66f) + curveToRelative(0.0f, 0.7f, -0.43f, 1.35f, -1.1f, 1.62f) + lineToRelative(-7.5f, 3.04f) + curveToRelative(-0.9f, 0.36f, -1.9f, 0.36f, -2.8f, 0.0f) + lineToRelative(-7.5f, -3.04f) + curveToRelative(-0.67f, -0.27f, -1.1f, -0.91f, -1.1f, -1.62f) + lineTo(2.0f, 7.17f) + curveToRelative(0.0f, -0.71f, 0.43f, -1.35f, 1.1f, -1.62f) + lineToRelative(7.5f, -3.04f) + close() + moveTo(12.85f, 3.91f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.7f, 0.0f) + lineToRelative(-7.5f, 3.03f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.15f, 0.23f) + verticalLineToRelative(9.66f) + curveToRelative(0.0f, 0.1f, 0.06f, 0.19f, 0.16f, 0.23f) + lineToRelative(7.5f, 3.04f) + curveToRelative(0.54f, 0.22f, 1.14f, 0.22f, 1.69f, 0.0f) + lineToRelative(7.5f, -3.04f) + curveToRelative(0.09f, -0.04f, 0.15f, -0.13f, 0.15f, -0.23f) + lineTo(20.5f, 7.17f) + curveToRelative(0.0f, -0.1f, -0.06f, -0.2f, -0.16f, -0.23f) + lineToRelative(-7.5f, -3.04f) + close() + } + } + return _cube!! + } + +private var _cube: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CubeMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CubeMultiple.kt new file mode 100644 index 00000000..0a74a4ca --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CubeMultiple.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CubeMultiple: ImageVector + get() { + if (_cubeMultiple != null) { + return _cubeMultiple!! + } + _cubeMultiple = fluentIcon(name = "Regular.CubeMultiple") { + fluentPath { + moveTo(10.52f, 4.25f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 3.07f, 0.04f) + lineToRelative(5.91f, 2.1f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 1.0f, 0.59f) + verticalLineToRelative(-0.42f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.33f, -1.88f) + lineTo(14.0f, 2.85f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, -4.02f, 0.0f) + lineTo(4.83f, 4.68f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 3.5f, 6.56f) + verticalLineToRelative(0.42f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 1.0f, -0.6f) + lineToRelative(5.91f, -2.1f) + curveToRelative(0.04f, 0.0f, 0.07f, -0.02f, 0.1f, -0.03f) + close() + moveTo(6.45f, 10.11f) + curveToRelative(0.14f, -0.39f, 0.57f, -0.6f, 0.96f, -0.45f) + lineTo(12.0f, 11.28f) + lineToRelative(4.6f, -1.62f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.5f, 1.4f) + lineToRelative(-4.35f, 1.55f) + verticalLineToRelative(4.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-4.72f) + lineToRelative(-4.34f, -1.54f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.46f, -0.96f) + close() + moveTo(10.75f, 5.23f) + curveToRelative(0.8f, -0.29f, 1.7f, -0.29f, 2.5f, 0.0f) + lineToRelative(5.92f, 2.1f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 20.5f, 9.2f) + verticalLineToRelative(8.24f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.33f, 1.88f) + lineToRelative(-5.92f, 2.1f) + curveToRelative(-0.8f, 0.29f, -1.7f, 0.29f, -2.5f, 0.0f) + lineToRelative(-5.92f, -2.1f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.33f, -1.88f) + lineTo(3.5f, 9.2f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.33f, -1.88f) + lineToRelative(5.92f, -2.1f) + close() + moveTo(12.75f, 6.64f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.5f, 0.0f) + lineToRelative(-5.92f, 2.1f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.33f, 0.47f) + verticalLineToRelative(8.24f) + curveToRelative(0.0f, 0.2f, 0.13f, 0.4f, 0.33f, 0.47f) + lineToRelative(5.92f, 2.1f) + curveToRelative(0.48f, 0.17f, 1.02f, 0.17f, 1.5f, 0.0f) + lineToRelative(5.92f, -2.1f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.33f, -0.47f) + lineTo(19.0f, 9.2f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.33f, -0.47f) + lineToRelative(-5.92f, -2.1f) + close() + } + } + return _cubeMultiple!! + } + +private var _cubeMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CubeQuick.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CubeQuick.kt new file mode 100644 index 00000000..5af6abf1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CubeQuick.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CubeQuick: ImageVector + get() { + if (_cubeQuick != null) { + return _cubeQuick!! + } + _cubeQuick = fluentIcon(name = "Regular.CubeQuick") { + fluentPath { + moveTo(16.27f, 7.55f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.46f, 0.0f) + lineToRelative(3.5f, 1.77f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.27f, 0.45f) + verticalLineToRelative(4.46f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.27f, 0.45f) + lineToRelative(-3.5f, 1.77f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.46f, 0.0f) + lineToRelative(-3.5f, -1.77f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.27f, -0.45f) + lineTo(12.5f, 9.77f) + curveToRelative(0.0f, -0.19f, 0.1f, -0.36f, 0.27f, -0.45f) + lineToRelative(3.5f, -1.77f) + close() + moveTo(17.4f, 6.22f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.8f, 0.0f) + lineToRelative(-3.5f, 1.76f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 11.0f, 9.77f) + verticalLineToRelative(4.46f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.1f, 1.79f) + lineToRelative(3.5f, 1.77f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.8f, 0.0f) + lineToRelative(3.5f, -1.77f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.1f, -1.79f) + lineTo(22.0f, 9.77f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.1f, -1.79f) + lineToRelative(-3.5f, -1.76f) + close() + moveTo(4.0f, 7.74f) + curveToRelative(0.0f, -0.4f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 4.0f, 7.74f) + close() + moveTo(2.0f, 11.74f) + curveToRelative(0.0f, -0.4f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(4.75f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + close() + moveTo(13.58f, 10.41f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.01f, -0.32f) + lineToRelative(1.91f, 0.97f) + lineToRelative(1.91f, -0.97f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.68f, 1.33f) + lineToRelative(-1.84f, 0.94f) + verticalLineToRelative(1.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.9f) + lineToRelative(-1.84f, -0.94f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.33f, -1.0f) + close() + } + } + return _cubeQuick!! + } + +private var _cubeQuick: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CubeSync.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CubeSync.kt new file mode 100644 index 00000000..37b055b0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CubeSync.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CubeSync: ImageVector + get() { + if (_cubeSync != null) { + return _cubeSync!! + } + _cubeSync = fluentIcon(name = "Regular.CubeSync") { + fluentPath { + moveTo(6.05f, 7.99f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -0.44f) + lineTo(12.0f, 9.45f) + lineToRelative(4.98f, -1.9f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.54f, 1.4f) + lineToRelative(-4.77f, 1.81f) + verticalLineToRelative(2.3f) + arcToRelative(6.49f, 6.49f, 0.0f, false, false, -1.5f, 2.65f) + verticalLineToRelative(-4.95f) + lineToRelative(-4.77f, -1.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.43f, -0.97f) + close() + moveTo(20.5f, 7.17f) + verticalLineToRelative(4.56f) + curveToRelative(0.55f, 0.29f, 1.06f, 0.65f, 1.5f, 1.08f) + lineTo(22.0f, 7.17f) + curveToRelative(0.0f, -0.7f, -0.43f, -1.35f, -1.1f, -1.62f) + lineToRelative(-7.5f, -3.04f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -2.8f, 0.0f) + lineTo(3.1f, 5.55f) + curveToRelative(-0.67f, 0.27f, -1.1f, 0.91f, -1.1f, 1.62f) + verticalLineToRelative(9.66f) + curveToRelative(0.0f, 0.71f, 0.43f, 1.35f, 1.1f, 1.62f) + lineToRelative(7.5f, 3.04f) + curveToRelative(0.62f, 0.25f, 1.3f, 0.33f, 1.96f, 0.23f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, -0.96f, -1.5f) + curveToRelative(-0.15f, -0.02f, -0.3f, -0.06f, -0.45f, -0.12f) + lineToRelative(-7.5f, -3.04f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.15f, -0.23f) + lineTo(3.5f, 7.17f) + curveToRelative(0.0f, -0.1f, 0.06f, -0.19f, 0.16f, -0.23f) + lineToRelative(7.5f, -3.04f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 1.69f, 0.0f) + lineToRelative(7.5f, 3.04f) + curveToRelative(0.09f, 0.04f, 0.15f, 0.13f, 0.15f, 0.23f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) + close() + moveTo(20.5f, 14.0f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + verticalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.8f, -0.59f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) + verticalLineToRelative(-0.55f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + close() + moveTo(15.0f, 19.95f) + verticalLineToRelative(0.55f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.77f, 0.65f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) + close() + } + } + return _cubeSync!! + } + +private var _cubeSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CubeTree.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CubeTree.kt new file mode 100644 index 00000000..f70c7fd1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CubeTree.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CubeTree: ImageVector + get() { + if (_cubeTree != null) { + return _cubeTree!! + } + _cubeTree = fluentIcon(name = "Regular.CubeTree") { + fluentPath { + moveTo(9.79f, 5.51f) + curveToRelative(0.13f, -0.39f, 0.55f, -0.6f, 0.95f, -0.47f) + lineToRelative(1.26f, 0.42f) + lineToRelative(1.26f, -0.42f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.48f, 1.42f) + lineToRelative(-0.99f, 0.33f) + verticalLineToRelative(0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.96f) + lineToRelative(-0.99f, -0.33f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.47f, -0.95f) + close() + moveTo(12.24f, 2.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.48f, 0.0f) + lineTo(8.01f, 3.29f) + curveToRelative(-0.3f, 0.1f, -0.51f, 0.39f, -0.51f, 0.71f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.32f, 0.2f, 0.6f, 0.51f, 0.71f) + lineToRelative(3.24f, 1.08f) + lineTo(11.25f, 13.0f) + lineTo(9.5f, 13.0f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(0.84f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 1.5f, 0.0f) + verticalLineToRelative(-0.84f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.84f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 1.5f, 0.0f) + verticalLineToRelative(-0.84f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-1.75f) + verticalLineToRelative(-2.2f) + lineToRelative(3.24f, -1.09f) + curveToRelative(0.3f, -0.1f, 0.51f, -0.39f, 0.51f, -0.71f) + lineTo(16.5f, 4.0f) + curveToRelative(0.0f, -0.32f, -0.2f, -0.6f, -0.51f, -0.71f) + lineToRelative(-3.75f, -1.25f) + close() + moveTo(9.0f, 8.46f) + lineTo(9.0f, 4.54f) + lineToRelative(3.0f, -1.0f) + lineToRelative(3.0f, 1.0f) + verticalLineToRelative(3.92f) + lineToRelative(-3.0f, 1.0f) + lineToRelative(-3.0f, -1.0f) + close() + moveTo(8.0f, 17.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(14.5f, 19.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + } + } + return _cubeTree!! + } + +private var _cubeTree: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CurrencyDollarEuro.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CurrencyDollarEuro.kt new file mode 100644 index 00000000..2a954015 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CurrencyDollarEuro.kt @@ -0,0 +1,96 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CurrencyDollarEuro: ImageVector + get() { + if (_currencyDollarEuro != null) { + return _currencyDollarEuro!! + } + _currencyDollarEuro = fluentIcon(name = "Regular.CurrencyDollarEuro") { + fluentPath { + moveTo(6.25f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.32f) + arcTo(4.25f, 4.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(0.54f) + arcToRelative(4.75f, 4.75f, 0.0f, false, false, 2.67f, 4.27f) + lineToRelative(0.83f, 0.4f) + verticalLineToRelative(6.92f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.0f, -2.65f) + verticalLineToRelative(-0.98f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(0.98f) + curveToRelative(0.0f, 2.1f, 1.51f, 3.83f, 3.5f, 4.18f) + verticalLineToRelative(0.34f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.34f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, 3.5f, -4.18f) + verticalLineToRelative(-0.53f) + arcToRelative(4.75f, 4.75f, 0.0f, false, false, -2.67f, -4.27f) + lineToRelative(-0.83f, -0.4f) + verticalLineTo(4.6f) + curveToRelative(1.16f, 0.33f, 2.0f, 1.4f, 2.0f, 2.65f) + verticalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -2.1f, -1.51f, -3.83f, -3.5f, -4.18f) + verticalLineToRelative(-0.32f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 6.25f, 2.0f) + close() + moveTo(3.5f, 7.25f) + curveToRelative(0.0f, -1.26f, 0.85f, -2.32f, 2.0f, -2.65f) + verticalLineToRelative(6.2f) + lineToRelative(-0.17f, -0.09f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.5f, 7.8f) + verticalLineToRelative(-0.54f) + close() + moveTo(7.0f, 19.37f) + verticalLineTo(13.2f) + lineToRelative(0.17f, 0.08f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 9.0f, 16.2f) + verticalLineToRelative(0.53f) + curveToRelative(0.0f, 1.26f, -0.84f, 2.32f, -2.0f, 2.64f) + close() + moveTo(14.5f, 12.0f) + lineToRelative(0.01f, -0.5f) + horizontalLineToRelative(1.74f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.57f) + arcToRelative(8.8f, 8.8f, 0.0f, false, true, 1.37f, -3.4f) + curveToRelative(0.94f, -1.36f, 2.18f, -2.1f, 3.45f, -2.1f) + curveToRelative(0.47f, 0.0f, 0.97f, 0.14f, 1.34f, 0.38f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.82f, -1.26f) + arcTo(4.03f, 4.03f, 0.0f, false, false, 19.5f, 3.0f) + curveToRelative(-1.9f, 0.0f, -3.54f, 1.1f, -4.68f, 2.74f) + arcTo(10.39f, 10.39f, 0.0f, false, false, 13.16f, 10.0f) + horizontalLineToRelative(-1.4f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.01f, 1.5f) + horizontalLineToRelative(1.26f) + arcToRelative(12.65f, 12.65f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(-1.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.41f) + curveToRelative(0.26f, 1.62f, 0.84f, 3.1f, 1.66f, 4.26f) + curveTo(15.96f, 19.9f, 17.6f, 21.0f, 19.5f, 21.0f) + curveToRelative(0.7f, 0.0f, 1.52f, -0.17f, 2.18f, -0.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.85f, -1.23f) + arcToRelative(2.4f, 2.4f, 0.0f, false, true, -1.33f, 0.36f) + curveToRelative(-1.27f, 0.0f, -2.5f, -0.74f, -3.45f, -2.1f) + arcToRelative(8.8f, 8.8f, 0.0f, false, true, -1.37f, -3.4f) + horizontalLineToRelative(1.57f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineTo(14.5f) + lineToRelative(-0.01f, -0.5f) + close() + } + } + return _currencyDollarEuro!! + } + +private var _currencyDollarEuro: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CurrencyDollarRupee.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CurrencyDollarRupee.kt new file mode 100644 index 00000000..90c9a87e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CurrencyDollarRupee.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CurrencyDollarRupee: ImageVector + get() { + if (_currencyDollarRupee != null) { + return _currencyDollarRupee!! + } + _currencyDollarRupee = fluentIcon(name = "Regular.CurrencyDollarRupee") { + fluentPath { + moveTo(7.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) + verticalLineToRelative(0.32f) + arcTo(4.25f, 4.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(0.54f) + arcToRelative(4.75f, 4.75f, 0.0f, false, false, 2.67f, 4.27f) + lineToRelative(0.83f, 0.4f) + verticalLineToRelative(6.92f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.0f, -2.65f) + verticalLineToRelative(-0.98f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(0.98f) + curveToRelative(0.0f, 2.1f, 1.51f, 3.83f, 3.5f, 4.18f) + verticalLineToRelative(0.34f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.34f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, 3.5f, -4.18f) + verticalLineToRelative(-0.53f) + arcToRelative(4.75f, 4.75f, 0.0f, false, false, -2.67f, -4.27f) + lineToRelative(-0.83f, -0.4f) + verticalLineTo(4.6f) + curveToRelative(1.16f, 0.33f, 2.0f, 1.4f, 2.0f, 2.65f) + verticalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -2.1f, -1.51f, -3.83f, -3.5f, -4.18f) + verticalLineToRelative(-0.32f) + close() + moveTo(5.5f, 4.6f) + verticalLineToRelative(6.2f) + lineToRelative(-0.17f, -0.09f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.5f, 7.8f) + verticalLineToRelative(-0.54f) + curveToRelative(0.0f, -1.26f, 0.85f, -2.32f, 2.0f, -2.65f) + close() + moveTo(7.0f, 13.2f) + lineToRelative(0.17f, 0.08f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 9.0f, 16.2f) + verticalLineToRelative(0.53f) + curveToRelative(0.0f, 1.26f, -0.84f, 2.32f, -2.0f, 2.64f) + verticalLineTo(13.2f) + close() + moveTo(12.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineTo(15.0f) + curveToRelative(1.07f, 0.0f, 2.0f, 0.6f, 2.45f, 1.5f) + horizontalLineToRelative(-4.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.99f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 15.0f, 10.0f) + horizontalLineToRelative(-2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.61f, 1.19f) + lineToRelative(7.5f, 10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.22f, -0.88f) + lineToRelative(-6.65f, -9.31f) + horizontalLineTo(15.0f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, 4.24f, -4.0f) + horizontalLineToRelative(2.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.19f) + arcToRelative(4.24f, 4.24f, 0.0f, false, false, -0.82f, -1.5f) + horizontalLineToRelative(3.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-8.5f) + close() + } + } + return _currencyDollarRupee!! + } + +private var _currencyDollarRupee: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cursor.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cursor.kt new file mode 100644 index 00000000..84409d4d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Cursor.kt @@ -0,0 +1,39 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Cursor: ImageVector + get() { + if (_cursor != null) { + return _cursor!! + } + _cursor = fluentIcon(name = "Regular.Cursor") { + fluentPath { + moveTo(5.5f, 3.48f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 7.92f, 2.3f) + lineTo(21.44f, 12.8f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -0.93f, 2.69f) + horizontalLineToRelative(-6.85f) + curveToRelative(-0.5f, 0.0f, -0.98f, 0.23f, -1.3f, 0.62f) + lineToRelative(-4.18f, 5.3f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.68f, -0.93f) + verticalLineToRelative(-17.0f) + close() + moveTo(20.51f, 14.0f) + lineTo(7.0f, 3.48f) + verticalLineTo(20.5f) + lineToRelative(4.2f, -5.3f) + curveToRelative(0.59f, -0.75f, 1.5f, -1.2f, 2.46f, -1.2f) + horizontalLineToRelative(6.85f) + close() + } + } + return _cursor!! + } + +private var _cursor: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CursorClick.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CursorClick.kt new file mode 100644 index 00000000..9902a9a3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CursorClick.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CursorClick: ImageVector + get() { + if (_cursorClick != null) { + return _cursorClick!! + } + _cursorClick = fluentIcon(name = "Regular.CursorClick") { + fluentPath { + moveTo(9.25f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(4.47f, 3.97f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(1.75f, 1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(4.47f, 5.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + moveTo(14.03f, 3.97f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-1.75f, 1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(1.75f, -1.75f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(2.5f, 8.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(10.68f, 8.49f) + arcToRelative(1.32f, 1.32f, 0.0f, false, false, -2.18f, 1.0f) + verticalLineToRelative(11.27f) + curveToRelative(0.0f, 1.21f, 1.5f, 1.78f, 2.3f, 0.88f) + lineToRelative(2.62f, -2.92f) + curveToRelative(0.27f, -0.31f, 0.66f, -0.5f, 1.07f, -0.5f) + lineToRelative(3.84f, -0.16f) + arcToRelative(1.32f, 1.32f, 0.0f, false, false, 0.8f, -2.32f) + lineToRelative(-8.45f, -7.25f) + close() + moveTo(10.0f, 20.29f) + lineTo(10.0f, 9.89f) + lineToRelative(7.81f, 6.69f) + lineToRelative(-3.38f, 0.13f) + curveToRelative(-0.82f, 0.03f, -1.59f, 0.4f, -2.13f, 1.0f) + lineTo(10.0f, 20.3f) + close() + } + } + return _cursorClick!! + } + +private var _cursorClick: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CursorHover.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CursorHover.kt new file mode 100644 index 00000000..26b6fd5a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CursorHover.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CursorHover: ImageVector + get() { + if (_cursorHover != null) { + return _cursorHover!! + } + _cursorHover = fluentIcon(name = "Regular.CursorHover") { + fluentPath { + moveTo(19.5f, 5.5f) + horizontalLineToRelative(-15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + lineTo(9.0f, 16.5f) + lineTo(9.0f, 18.0f) + lineTo(4.5f, 18.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 2.0f, 15.5f) + verticalLineToRelative(-9.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.5f, 4.0f) + horizontalLineToRelative(15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 22.0f, 6.5f) + verticalLineToRelative(9.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.02f, 2.45f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -0.7f, -1.11f) + lineToRelative(-0.33f, -0.34f) + horizontalLineToRelative(0.55f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineToRelative(-9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + moveTo(11.28f, 10.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.28f, 0.53f) + verticalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.37f, 0.42f) + lineToRelative(2.46f, -3.58f) + lineToRelative(4.27f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.68f, -1.27f) + lineToRelative(-7.5f, -7.5f) + close() + moveTo(11.5f, 18.84f) + verticalLineToRelative(-6.28f) + lineTo(15.94f, 17.0f) + lineToRelative(-2.29f, -0.48f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.77f, 0.3f) + lineToRelative(-1.38f, 2.02f) + close() + } + } + return _cursorHover!! + } + +private var _cursorHover: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CursorHoverOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CursorHoverOff.kt new file mode 100644 index 00000000..6772ffce --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/CursorHoverOff.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.CursorHoverOff: ImageVector + get() { + if (_cursorHoverOff != null) { + return _cursorHoverOff!! + } + _cursorHoverOff = fluentIcon(name = "Regular.CursorHoverOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.05f, 1.05f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 2.0f, 6.5f) + verticalLineToRelative(9.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.5f, 18.0f) + lineTo(9.0f, 18.0f) + verticalLineToRelative(-1.5f) + lineTo(4.5f, 16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineToRelative(-9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.94f, -1.0f) + lineTo(10.0f, 11.06f) + verticalLineToRelative(10.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.37f, 0.42f) + lineToRelative(2.46f, -3.58f) + lineToRelative(4.05f, 0.85f) + lineToRelative(2.84f, 2.84f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(11.5f, 12.56f) + lineTo(15.94f, 17.0f) + lineToRelative(-2.29f, -0.48f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.77f, 0.3f) + lineToRelative(-1.38f, 2.02f) + verticalLineToRelative(-6.28f) + close() + moveTo(20.5f, 15.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.83f, 0.99f) + lineToRelative(1.14f, 1.14f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 22.0f, 15.5f) + verticalLineToRelative(-9.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 19.5f, 4.0f) + lineTo(7.18f, 4.0f) + lineToRelative(1.5f, 1.5f) + lineTo(19.5f, 5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(9.0f) + close() + } + } + return _cursorHoverOff!! + } + +private var _cursorHoverOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DarkTheme.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DarkTheme.kt new file mode 100644 index 00000000..76f38f3a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DarkTheme.kt @@ -0,0 +1,30 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DarkTheme: ImageVector + get() { + if (_darkTheme != null) { + return _darkTheme!! + } + _darkTheme = fluentIcon(name = "Regular.DarkTheme") { + fluentPath { + moveTo(12.0f, 22.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) + close() + moveTo(12.0f, 20.5f) + verticalLineToRelative(-17.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, 0.0f, 17.0f) + close() + } + } + return _darkTheme!! + } + +private var _darkTheme: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataArea.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataArea.kt new file mode 100644 index 00000000..611eb8c9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataArea.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DataArea: ImageVector + get() { + if (_dataArea != null) { + return _dataArea!! + } + _dataArea = fluentIcon(name = "Regular.DataArea") { + fluentPath { + moveTo(3.0f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(6.26f) + lineToRelative(3.65f, -1.92f) + curveToRelative(0.23f, -0.12f, 0.5f, -0.12f, 0.73f, 0.01f) + lineToRelative(3.82f, 2.25f) + lineToRelative(5.6f, -4.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.2f, 0.6f) + lineTo(19.5f, 19.5f) + horizontalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(3.75f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(3.0f, 3.75f) + close() + moveTo(4.5f, 11.7f) + verticalLineToRelative(7.8f) + lineTo(18.0f, 19.5f) + lineTo(18.0f, 8.25f) + lineToRelative(-4.8f, 3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.83f, 0.05f) + lineTo(8.48f, 9.6f) + lineTo(4.5f, 11.7f) + close() + } + } + return _dataArea!! + } + +private var _dataArea: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataBarHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataBarHorizontal.kt new file mode 100644 index 00000000..345239a2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataBarHorizontal.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DataBarHorizontal: ImageVector + get() { + if (_dataBarHorizontal != null) { + return _dataBarHorizontal!! + } + _dataBarHorizontal = fluentIcon(name = "Regular.DataBarHorizontal") { + fluentPath { + moveTo(21.0f, 18.25f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + lineTo(5.25f, 16.0f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, 4.5f) + horizontalLineToRelative(13.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + close() + moveTo(17.0f, 11.75f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-9.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, 4.5f) + horizontalLineToRelative(9.5f) + curveTo(16.0f, 14.0f, 17.0f, 13.0f, 17.0f, 11.75f) + close() + moveTo(13.0f, 5.25f) + curveTo(13.0f, 4.01f, 12.0f, 3.0f, 10.75f, 3.0f) + horizontalLineToRelative(-5.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) + horizontalLineToRelative(5.5f) + curveTo(12.0f, 7.5f, 13.0f, 6.5f, 13.0f, 5.25f) + close() + moveTo(19.5f, 18.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(5.25f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(13.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(15.5f, 11.75f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(9.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(11.5f, 5.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(5.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + } + } + return _dataBarHorizontal!! + } + +private var _dataBarHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataBarVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataBarVertical.kt new file mode 100644 index 00000000..3d7b07e6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataBarVertical.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DataBarVertical: ImageVector + get() { + if (_dataBarVertical != null) { + return _dataBarVertical!! + } + _dataBarVertical = fluentIcon(name = "Regular.DataBarVertical") { + fluentPath { + moveTo(5.75f, 3.0f) + curveTo(6.99f, 3.0f, 8.0f, 4.0f, 8.0f, 5.25f) + verticalLineToRelative(13.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.5f, 0.0f) + lineTo(3.5f, 5.25f) + curveTo(3.5f, 4.0f, 4.5f, 3.0f, 5.75f, 3.0f) + close() + moveTo(12.25f, 7.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(9.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.5f, 0.0f) + verticalLineToRelative(-9.5f) + curveTo(10.0f, 8.0f, 11.0f, 7.0f, 12.25f, 7.0f) + close() + moveTo(18.75f, 11.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(5.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.5f, 0.0f) + verticalLineToRelative(-5.5f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + close() + moveTo(5.75f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(6.5f, 5.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(12.25f, 8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(18.75f, 12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + } + } + return _dataBarVertical!! + } + +private var _dataBarVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataBarVerticalAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataBarVerticalAdd.kt new file mode 100644 index 00000000..69d5887a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataBarVerticalAdd.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DataBarVerticalAdd: ImageVector + get() { + if (_dataBarVerticalAdd != null) { + return _dataBarVerticalAdd!! + } + _dataBarVerticalAdd = fluentIcon(name = "Regular.DataBarVerticalAdd") { + fluentPath { + moveTo(18.25f, 3.0f) + curveTo(17.0f, 3.0f, 16.0f, 4.0f, 16.0f, 5.25f) + verticalLineToRelative(5.92f) + curveToRelative(0.48f, -0.11f, 0.98f, -0.17f, 1.5f, -0.17f) + lineTo(17.5f, 5.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(5.92f) + curveToRelative(0.53f, 0.13f, 1.03f, 0.32f, 1.5f, 0.56f) + lineTo(20.5f, 5.25f) + curveTo(20.5f, 4.0f, 19.5f, 3.0f, 18.25f, 3.0f) + close() + moveTo(14.0f, 9.25f) + verticalLineToRelative(2.77f) + curveToRelative(-0.57f, 0.36f, -1.07f, 0.81f, -1.5f, 1.33f) + verticalLineToRelative(-4.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(8.1f) + arcToRelative(6.75f, 6.75f, 0.0f, false, false, 0.0f, 0.3f) + verticalLineToRelative(1.1f) + curveToRelative(0.0f, 0.23f, 0.1f, 0.43f, 0.25f, 0.56f) + curveToRelative(0.18f, 0.6f, 0.43f, 1.16f, 0.76f, 1.68f) + lineToRelative(-0.26f, 0.01f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-9.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) + close() + moveTo(3.0f, 13.25f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) + verticalLineToRelative(5.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.5f, 0.0f) + verticalLineToRelative(-5.5f) + close() + moveTo(6.0f, 13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-5.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _dataBarVerticalAdd!! + } + +private var _dataBarVerticalAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataBarVerticalStar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataBarVerticalStar.kt new file mode 100644 index 00000000..34d392f6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataBarVerticalStar.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DataBarVerticalStar: ImageVector + get() { + if (_dataBarVerticalStar != null) { + return _dataBarVerticalStar!! + } + _dataBarVerticalStar = fluentIcon(name = "Regular.DataBarVerticalStar") { + fluentPath { + moveTo(18.25f, 3.0f) + curveTo(17.01f, 3.0f, 16.0f, 4.0f, 16.0f, 5.25f) + verticalLineToRelative(5.92f) + curveToRelative(0.48f, -0.11f, 0.98f, -0.17f, 1.5f, -0.17f) + lineTo(17.5f, 5.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + verticalLineToRelative(5.92f) + curveToRelative(0.53f, 0.13f, 1.03f, 0.32f, 1.5f, 0.56f) + lineTo(20.5f, 5.25f) + curveTo(20.5f, 4.0f, 19.5f, 3.0f, 18.25f, 3.0f) + close() + moveTo(14.0f, 9.25f) + verticalLineToRelative(2.77f) + curveToRelative(-0.57f, 0.36f, -1.07f, 0.81f, -1.5f, 1.33f) + verticalLineToRelative(-4.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(8.09f) + arcToRelative(6.62f, 6.62f, 0.0f, false, false, 0.0f, 0.32f) + verticalLineToRelative(1.1f) + curveToRelative(0.0f, 0.21f, 0.1f, 0.42f, 0.26f, 0.55f) + curveToRelative(0.17f, 0.6f, 0.43f, 1.16f, 0.75f, 1.68f) + lineToRelative(-0.26f, 0.01f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-9.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) + close() + moveTo(3.0f, 13.25f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) + verticalLineToRelative(5.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, -4.5f, 0.0f) + verticalLineToRelative(-5.5f) + close() + moveTo(6.0f, 13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-5.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(18.06f, 14.42f) + arcToRelative(0.58f, 0.58f, 0.0f, false, false, -1.12f, 0.0f) + lineToRelative(-0.55f, 1.79f) + horizontalLineToRelative(-1.8f) + curveToRelative(-0.57f, 0.0f, -0.8f, 0.75f, -0.35f, 1.1f) + lineToRelative(1.46f, 1.1f) + lineToRelative(-0.56f, 1.79f) + curveToRelative(-0.17f, 0.56f, 0.44f, 1.03f, 0.9f, 0.68f) + lineToRelative(1.46f, -1.1f) + lineToRelative(1.46f, 1.1f) + curveToRelative(0.46f, 0.35f, 1.07f, -0.12f, 0.9f, -0.68f) + lineToRelative(-0.56f, -1.79f) + lineToRelative(1.46f, -1.1f) + curveToRelative(0.46f, -0.35f, 0.22f, -1.1f, -0.35f, -1.1f) + horizontalLineToRelative(-1.8f) + lineToRelative(-0.55f, -1.79f) + close() + } + } + return _dataBarVerticalStar!! + } + +private var _dataBarVerticalStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataFunnel.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataFunnel.kt new file mode 100644 index 00000000..b6bd4038 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataFunnel.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DataFunnel: ImageVector + get() { + if (_dataFunnel != null) { + return _dataFunnel!! + } + _dataFunnel = fluentIcon(name = "Regular.DataFunnel") { + fluentPath { + moveTo(22.0f, 4.75f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) + lineTo(4.75f, 7.5f) + arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, -5.5f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 4.75f) + close() + moveTo(20.0f, 11.75f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) + lineTo(6.75f, 14.5f) + arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, -5.5f) + horizontalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 20.0f, 11.75f) + close() + moveTo(17.0f, 18.75f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) + horizontalLineToRelative(-4.5f) + arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, -5.5f) + horizontalLineToRelative(4.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 17.0f, 18.75f) + close() + moveTo(20.5f, 4.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(4.75f, 3.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + horizontalLineToRelative(14.5f) + curveToRelative(0.7f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + close() + moveTo(18.5f, 11.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(6.75f, 10.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + horizontalLineToRelative(10.5f) + curveToRelative(0.7f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + close() + moveTo(15.5f, 18.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-4.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + horizontalLineToRelative(4.5f) + curveToRelative(0.7f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + close() + } + } + return _dataFunnel!! + } + +private var _dataFunnel: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataHistogram.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataHistogram.kt new file mode 100644 index 00000000..ec03b30c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataHistogram.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DataHistogram: ImageVector + get() { + if (_dataHistogram != null) { + return _dataHistogram!! + } + _dataHistogram = fluentIcon(name = "Regular.DataHistogram") { + fluentPath { + moveTo(8.5f, 5.23f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(2.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + lineTo(15.5f, 7.0f) + horizontalLineToRelative(3.25f) + curveTo(19.99f, 7.0f, 21.0f, 8.0f, 21.0f, 9.25f) + verticalLineToRelative(11.0f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(3.75f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-8.0f) + curveTo(3.0f, 11.01f, 4.0f, 10.0f, 5.25f, 10.0f) + lineTo(8.5f, 10.0f) + lineTo(8.5f, 5.23f) + close() + moveTo(10.0f, 19.5f) + horizontalLineToRelative(4.0f) + lineTo(14.0f, 5.23f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(10.0f, 19.5f) + close() + moveTo(8.5f, 11.5f) + lineTo(5.25f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(7.25f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-8.0f) + close() + moveTo(15.5f, 19.5f) + horizontalLineToRelative(4.0f) + lineTo(19.5f, 9.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(15.5f, 8.5f) + verticalLineToRelative(11.0f) + close() + } + } + return _dataHistogram!! + } + +private var _dataHistogram: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataLine.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataLine.kt new file mode 100644 index 00000000..4e53faae --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataLine.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DataLine: ImageVector + get() { + if (_dataLine != null) { + return _dataLine!! + } + _dataLine = fluentIcon(name = "Regular.DataLine") { + fluentPath { + moveTo(19.0f, 4.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(16.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 2.52f, 2.96f) + lineToRelative(-2.03f, 3.36f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -4.75f, 3.65f) + lineTo(8.0f, 17.84f) + lineTo(8.0f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, -0.47f, -1.6f) + lineToRelative(3.54f, -1.77f) + arcTo(3.01f, 3.01f, 0.0f, false, true, 14.0f, 11.0f) + curveToRelative(0.48f, 0.0f, 0.94f, 0.11f, 1.34f, 0.32f) + lineToRelative(1.8f, -2.97f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 16.0f, 6.0f) + close() + moveTo(14.0f, 12.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(5.0f, 16.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + } + } + return _dataLine!! + } + +private var _dataLine: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataPie.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataPie.kt new file mode 100644 index 00000000..62b9e172 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataPie.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DataPie: ImageVector + get() { + if (_dataPie != null) { + return _dataPie!! + } + _dataPie = fluentIcon(name = "Regular.DataPie") { + fluentPath { + moveTo(10.25f, 4.25f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(8.0f) + horizontalLineToRelative(8.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + curveToRelative(0.0f, 4.97f, -4.03f, 8.5f, -9.0f, 8.5f) + arcToRelative(9.0f, 9.0f, 0.0f, false, true, -9.0f, -9.0f) + curveToRelative(0.0f, -4.97f, 3.53f, -9.0f, 8.5f, -9.0f) + close() + moveTo(9.5f, 5.79f) + lineToRelative(-0.2f, 0.02f) + curveToRelative(-3.7f, 0.47f, -6.05f, 3.62f, -6.05f, 7.44f) + arcToRelative(7.5f, 7.5f, 0.0f, false, false, 7.5f, 7.5f) + curveToRelative(3.82f, 0.0f, 6.97f, -2.35f, 7.44f, -6.04f) + lineToRelative(0.02f, -0.21f) + horizontalLineToRelative(-7.96f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + lineTo(9.5f, 5.79f) + close() + moveTo(13.25f, 1.75f) + arcToRelative(9.0f, 9.0f, 0.0f, false, true, 9.0f, 9.0f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-8.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(12.5f, 2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(14.0f, 3.29f) + lineTo(14.0f, 10.0f) + horizontalLineToRelative(6.71f) + lineToRelative(-0.02f, -0.2f) + arcTo(7.5f, 7.5f, 0.0f, false, false, 14.2f, 3.3f) + lineTo(14.0f, 3.3f) + close() + } + } + return _dataPie!! + } + +private var _dataPie: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataScatter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataScatter.kt new file mode 100644 index 00000000..a03c1c9d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataScatter.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DataScatter: ImageVector + get() { + if (_dataScatter != null) { + return _dataScatter!! + } + _dataScatter = fluentIcon(name = "Regular.DataScatter") { + fluentPath { + moveTo(3.0f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(4.5f, 19.5f) + horizontalLineToRelative(15.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(3.75f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(3.0f, 3.75f) + close() + moveTo(17.0f, 4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + moveTo(15.5f, 7.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + moveTo(6.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.0f) + close() + moveTo(9.0f, 7.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(15.0f, 12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + moveTo(13.5f, 15.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + } + } + return _dataScatter!! + } + +private var _dataScatter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataSunburst.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataSunburst.kt new file mode 100644 index 00000000..5e583a00 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataSunburst.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DataSunburst: ImageVector + get() { + if (_dataSunburst != null) { + return _dataSunburst!! + } + _dataSunburst = fluentIcon(name = "Regular.DataSunburst") { + fluentPath { + moveTo(15.5f, 4.25f) + arcToRelative(0.82f, 0.82f, 0.0f, false, true, -0.5f, -0.74f) + curveToRelative(0.0f, -0.52f, 0.5f, -0.9f, 0.99f, -0.68f) + curveToRelative(2.31f, 1.0f, 4.18f, 2.87f, 5.18f, 5.18f) + curveToRelative(0.21f, 0.48f, -0.16f, 1.0f, -0.68f, 1.0f) + curveToRelative(-0.32f, 0.0f, -0.6f, -0.21f, -0.74f, -0.5f) + arcToRelative(8.53f, 8.53f, 0.0f, false, false, -4.26f, -4.26f) + close() + moveTo(9.0f, 3.5f) + curveToRelative(0.0f, -0.52f, -0.5f, -0.9f, -0.99f, -0.68f) + curveTo(5.7f, 3.83f, 3.83f, 5.7f, 2.83f, 8.0f) + curveToRelative(-0.21f, 0.48f, 0.16f, 1.0f, 0.68f, 1.0f) + curveToRelative(0.32f, 0.0f, 0.6f, -0.21f, 0.74f, -0.5f) + arcTo(8.53f, 8.53f, 0.0f, false, true, 8.5f, 4.25f) + curveToRelative(0.29f, -0.13f, 0.49f, -0.42f, 0.49f, -0.74f) + close() + moveTo(15.5f, 19.74f) + curveToRelative(-0.3f, 0.13f, -0.5f, 0.42f, -0.5f, 0.74f) + curveToRelative(0.0f, 0.52f, 0.5f, 0.9f, 0.99f, 0.68f) + curveToRelative(2.31f, -1.0f, 4.18f, -2.87f, 5.18f, -5.18f) + curveToRelative(0.21f, -0.48f, -0.16f, -0.99f, -0.68f, -0.99f) + curveToRelative(-0.32f, 0.0f, -0.6f, 0.2f, -0.74f, 0.5f) + arcToRelative(8.53f, 8.53f, 0.0f, false, true, -4.26f, 4.25f) + close() + moveTo(3.5f, 15.0f) + curveToRelative(0.32f, 0.0f, 0.6f, 0.2f, 0.74f, 0.5f) + arcToRelative(8.53f, 8.53f, 0.0f, false, false, 4.26f, 4.25f) + curveToRelative(0.29f, 0.13f, 0.49f, 0.42f, 0.49f, 0.74f) + curveToRelative(0.0f, 0.52f, -0.5f, 0.9f, -0.99f, 0.68f) + curveToRelative(-2.31f, -1.0f, -4.18f, -2.87f, -5.18f, -5.18f) + curveToRelative(-0.21f, -0.48f, 0.16f, -0.99f, 0.68f, -0.99f) + close() + moveTo(12.0f, 6.5f) + curveToRelative(-0.2f, 0.0f, -0.38f, 0.01f, -0.57f, 0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.16f, -1.5f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, 7.55f, 5.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.46f, 0.35f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 12.0f, 6.5f) + close() + moveTo(9.12f, 6.4f) + curveToRelative(0.23f, 0.34f, 0.14f, 0.81f, -0.2f, 1.04f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -1.48f, 7.64f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.24f, 0.84f) + arcTo(6.97f, 6.97f, 0.0f, false, true, 8.08f, 6.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.04f, 0.2f) + close() + moveTo(18.23f, 12.9f) + curveToRelative(0.4f, 0.11f, 0.64f, 0.52f, 0.53f, 0.92f) + arcTo(7.0f, 7.0f, 0.0f, false, true, 8.75f, 18.2f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.7f, -1.33f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 7.86f, -3.44f) + curveToRelative(0.1f, -0.4f, 0.52f, -0.63f, 0.92f, -0.52f) + close() + moveTo(12.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) + close() + moveTo(9.5f, 12.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) + close() + } + } + return _dataSunburst!! + } + +private var _dataSunburst: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataTreemap.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataTreemap.kt new file mode 100644 index 00000000..e69a0ded --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataTreemap.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DataTreemap: ImageVector + get() { + if (_dataTreemap != null) { + return _dataTreemap!! + } + _dataTreemap = fluentIcon(name = "Regular.DataTreemap") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(9.0f, 19.5f) + verticalLineToRelative(-15.0f) + lineTo(6.25f, 4.5f) + close() + moveTo(10.5f, 4.5f) + lineTo(10.5f, 14.0f) + horizontalLineToRelative(9.0f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(10.5f, 4.5f) + close() + moveTo(19.5f, 15.5f) + horizontalLineToRelative(-9.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(7.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 15.5f) + close() + } + } + return _dataTreemap!! + } + +private var _dataTreemap: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataTrending.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataTrending.kt new file mode 100644 index 00000000..3d27095f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataTrending.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DataTrending: ImageVector + get() { + if (_dataTrending != null) { + return _dataTrending!! + } + _dataTrending = fluentIcon(name = "Regular.DataTrending") { + fluentPath { + moveTo(4.5f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(14.0f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-14.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-14.0f) + close() + moveTo(14.75f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.19f) + lineToRelative(-4.69f, 4.69f) + lineToRelative(-1.97f, -1.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-3.75f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(3.22f, -3.22f) + lineToRelative(1.97f, 1.97f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineTo(19.0f, 8.56f) + verticalLineToRelative(3.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineTo(6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-5.0f) + close() + } + } + return _dataTrending!! + } + +private var _dataTrending: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataUsage.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataUsage.kt new file mode 100644 index 00000000..d216e9aa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataUsage.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DataUsage: ImageVector + get() { + if (_dataUsage != null) { + return _dataUsage!! + } + _dataUsage = fluentIcon(name = "Regular.DataUsage") { + fluentPath { + moveTo(18.25f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) + lineTo(5.75f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(12.5f) + close() + moveTo(18.25f, 4.5f) + lineTo(5.75f, 4.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(12.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + lineTo(19.5f, 5.75f) + curveToRelative(0.0f, -0.7f, -0.56f, -1.25f, -1.25f, -1.25f) + close() + moveTo(7.75f, 9.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.64f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(6.51f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-6.6f) + curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(16.25f, 7.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.27f, 0.74f, 0.63f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(8.54f) + curveToRelative(0.0f, 0.4f, -0.34f, 0.73f, -0.75f, 0.73f) + arcToRelative(0.74f, 0.74f, 0.0f, false, true, -0.74f, -0.63f) + lineToRelative(-0.01f, -0.1f) + lineTo(15.5f, 7.73f) + curveToRelative(0.0f, -0.4f, 0.34f, -0.73f, 0.75f, -0.73f) + close() + moveTo(11.98f, 12.0f) + curveToRelative(0.37f, 0.0f, 0.67f, 0.26f, 0.73f, 0.62f) + verticalLineToRelative(0.1f) + lineToRelative(0.04f, 3.54f) + curveToRelative(0.0f, 0.4f, -0.32f, 0.73f, -0.73f, 0.74f) + arcToRelative(0.73f, 0.73f, 0.0f, false, true, -0.73f, -0.62f) + verticalLineToRelative(-0.1f) + lineToRelative(-0.04f, -3.55f) + curveToRelative(0.0f, -0.4f, 0.32f, -0.73f, 0.73f, -0.73f) + close() + } + } + return _dataUsage!! + } + +private var _dataUsage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataUsageEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataUsageEdit.kt new file mode 100644 index 00000000..1acdb0b7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataUsageEdit.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DataUsageEdit: ImageVector + get() { + if (_dataUsageEdit != null) { + return _dataUsageEdit!! + } + _dataUsageEdit = fluentIcon(name = "Regular.DataUsageEdit") { + fluentPath { + moveTo(20.0f, 4.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 17.25f, 2.0f) + lineTo(4.75f, 2.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 4.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 20.0f) + horizontalLineToRelative(6.67f) + lineToRelative(0.1f, -0.42f) + curveToRelative(0.1f, -0.39f, 0.25f, -0.75f, 0.46f, -1.08f) + lineTo(4.75f, 18.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + lineTo(3.5f, 4.75f) + curveToRelative(0.0f, -0.7f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(12.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(7.1f) + curveToRelative(0.44f, -0.4f, 0.96f, -0.65f, 1.5f, -0.77f) + lineTo(20.0f, 4.75f) + close() + moveTo(16.0f, 14.35f) + lineTo(16.0f, 6.63f) + arcToRelative(0.74f, 0.74f, 0.0f, false, false, -0.75f, -0.63f) + arcToRelative(0.74f, 0.74f, 0.0f, false, false, -0.75f, 0.73f) + lineTo(14.5f, 15.37f) + curveToRelative(0.02f, 0.12f, 0.07f, 0.24f, 0.15f, 0.34f) + lineTo(16.0f, 14.35f) + close() + moveTo(7.5f, 8.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + verticalLineToRelative(6.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + verticalLineToRelative(-6.6f) + close() + moveTo(11.7f, 11.62f) + arcToRelative(0.73f, 0.73f, 0.0f, false, false, -0.72f, -0.62f) + curveToRelative(-0.4f, 0.0f, -0.73f, 0.33f, -0.73f, 0.73f) + lineToRelative(0.04f, 3.55f) + verticalLineToRelative(0.1f) + curveToRelative(0.06f, 0.35f, 0.36f, 0.62f, 0.73f, 0.62f) + curveToRelative(0.4f, 0.0f, 0.73f, -0.34f, 0.73f, -0.74f) + lineToRelative(-0.04f, -3.54f) + verticalLineToRelative(-0.1f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _dataUsageEdit!! + } + +private var _dataUsageEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataUsageToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataUsageToolbox.kt new file mode 100644 index 00000000..b3a49ef0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataUsageToolbox.kt @@ -0,0 +1,115 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DataUsageToolbox: ImageVector + get() { + if (_dataUsageToolbox != null) { + return _dataUsageToolbox!! + } + _dataUsageToolbox = fluentIcon(name = "Regular.DataUsageToolbox") { + fluentPath { + moveTo(17.25f, 2.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 20.0f, 4.75f) + verticalLineToRelative(6.6f) + curveToRelative(-0.24f, -0.06f, -0.49f, -0.1f, -0.75f, -0.1f) + horizontalLineToRelative(-0.75f) + verticalLineToRelative(-6.5f) + curveToRelative(0.0f, -0.7f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(4.75f, 3.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + lineTo(11.0f, 18.5f) + lineTo(11.0f, 20.0f) + lineTo(4.75f, 20.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) + lineTo(2.0f, 4.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 2.0f) + horizontalLineToRelative(12.5f) + close() + moveTo(16.0f, 6.73f) + verticalLineToRelative(4.52f) + horizontalLineToRelative(-0.25f) + curveToRelative(-0.45f, 0.0f, -0.88f, 0.1f, -1.25f, 0.3f) + lineTo(14.5f, 6.73f) + curveToRelative(0.0f, -0.4f, 0.34f, -0.73f, 0.75f, -0.73f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.27f, 0.74f, 0.63f) + lineToRelative(0.01f, 0.1f) + close() + moveTo(11.71f, 11.72f) + lineTo(11.74f, 14.72f) + curveToRelative(-0.34f, 0.34f, -0.59f, 0.78f, -0.69f, 1.28f) + horizontalLineToRelative(-0.03f) + arcToRelative(0.73f, 0.73f, 0.0f, false, true, -0.73f, -0.62f) + verticalLineToRelative(-0.1f) + lineToRelative(-0.04f, -3.55f) + curveToRelative(0.0f, -0.4f, 0.32f, -0.73f, 0.73f, -0.73f) + curveToRelative(0.37f, 0.0f, 0.67f, 0.26f, 0.73f, 0.62f) + verticalLineToRelative(0.1f) + close() + moveTo(6.75f, 8.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.64f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(6.51f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-6.6f) + curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(14.0f, 15.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + lineTo(12.0f, 18.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(16.0f, 18.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(20.5f, 18.0f) + lineTo(23.0f, 18.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(21.0f, 15.0f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(1.0f) + close() + moveTo(15.5f, 14.0f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(12.0f, 21.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + lineTo(23.0f, 19.5f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + close() + } + } + return _dataUsageToolbox!! + } + +private var _dataUsageToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataWaterfall.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataWaterfall.kt new file mode 100644 index 00000000..17172daf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataWaterfall.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DataWaterfall: ImageVector + get() { + if (_dataWaterfall != null) { + return _dataWaterfall!! + } + _dataWaterfall = fluentIcon(name = "Regular.DataWaterfall") { + fluentPath { + moveTo(2.0f, 3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineTo(11.0f) + horizontalLineToRelative(6.25f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(6.25f) + horizontalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineTo(12.5f) + horizontalLineTo(6.25f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineTo(4.5f) + horizontalLineTo(2.75f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 2.0f, 3.75f) + close() + moveTo(18.5f, 19.5f) + verticalLineToRelative(-6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineTo(14.0f) + verticalLineToRelative(6.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.75f) + close() + moveTo(10.0f, 5.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineTo(5.5f) + verticalLineToRelative(5.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineTo(10.0f) + verticalLineTo(5.25f) + close() + } + } + return _dataWaterfall!! + } + +private var _dataWaterfall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataWhisker.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataWhisker.kt new file mode 100644 index 00000000..1e486371 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DataWhisker.kt @@ -0,0 +1,106 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DataWhisker: ImageVector + get() { + if (_dataWhisker != null) { + return _dataWhisker!! + } + _dataWhisker = fluentIcon(name = "Regular.DataWhisker") { + fluentPath { + moveTo(14.75f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.0f) + lineTo(15.75f, 7.0f) + horizontalLineToRelative(-0.5f) + curveTo(14.01f, 7.0f, 13.0f, 8.0f, 13.0f, 9.25f) + verticalLineToRelative(7.0f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(0.5f) + lineTo(15.75f, 20.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(0.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-7.0f) + curveTo(20.0f, 8.01f, 19.0f, 7.0f, 17.75f, 7.0f) + horizontalLineToRelative(-0.5f) + lineTo(17.25f, 5.5f) + horizontalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + close() + moveTo(14.5f, 9.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(18.5f, 11.0f) + horizontalLineToRelative(-4.0f) + lineTo(14.5f, 9.25f) + close() + moveTo(14.5f, 12.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(3.75f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(14.5f, 12.5f) + close() + moveTo(5.75f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.0f) + lineTo(6.75f, 5.0f) + horizontalLineToRelative(-0.5f) + curveTo(5.01f, 5.0f, 4.0f, 6.0f, 4.0f, 7.25f) + verticalLineToRelative(7.0f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(0.5f) + lineTo(6.75f, 18.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(0.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-7.0f) + curveTo(11.0f, 6.01f, 10.0f, 5.0f, 8.75f, 5.0f) + horizontalLineToRelative(-0.5f) + lineTo(8.25f, 3.5f) + horizontalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + close() + moveTo(6.25f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(5.5f, 12.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(1.75f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-2.5f) + close() + moveTo(9.5f, 11.0f) + horizontalLineToRelative(-4.0f) + lineTo(5.5f, 7.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(9.5f, 11.0f) + close() + } + } + return _dataWhisker!! + } + +private var _dataWhisker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Database.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Database.kt new file mode 100644 index 00000000..6d82d847 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Database.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Database: ImageVector + get() { + if (_database != null) { + return _database!! + } + _database = fluentIcon(name = "Regular.Database") { + fluentPath { + moveTo(4.0f, 6.0f) + curveToRelative(0.0f, -0.7f, 0.32f, -1.3f, 0.77f, -1.78f) + arcToRelative(5.61f, 5.61f, 0.0f, false, true, 1.8f, -1.2f) + arcTo(13.65f, 13.65f, 0.0f, false, true, 12.0f, 2.0f) + curveToRelative(2.08f, 0.0f, 4.0f, 0.38f, 5.43f, 1.02f) + curveToRelative(0.72f, 0.32f, 1.34f, 0.72f, 1.8f, 1.2f) + curveToRelative(0.45f, 0.49f, 0.77f, 1.09f, 0.77f, 1.78f) + verticalLineToRelative(12.0f) + curveToRelative(0.0f, 0.7f, -0.32f, 1.3f, -0.77f, 1.78f) + curveToRelative(-0.46f, 0.48f, -1.08f, 0.88f, -1.8f, 1.2f) + arcTo(13.65f, 13.65f, 0.0f, false, true, 12.0f, 22.0f) + curveToRelative(-2.08f, 0.0f, -4.0f, -0.38f, -5.43f, -1.02f) + arcToRelative(5.61f, 5.61f, 0.0f, false, true, -1.8f, -1.2f) + arcTo(2.6f, 2.6f, 0.0f, false, true, 4.0f, 18.0f) + lineTo(4.0f, 6.0f) + close() + moveTo(5.5f, 6.0f) + curveToRelative(0.0f, 0.2f, 0.09f, 0.46f, 0.37f, 0.75f) + curveToRelative(0.27f, 0.3f, 0.71f, 0.6f, 1.31f, 0.86f) + curveToRelative(1.2f, 0.54f, 2.9f, 0.89f, 4.82f, 0.89f) + curveToRelative(1.92f, 0.0f, 3.62f, -0.35f, 4.82f, -0.89f) + curveToRelative(0.6f, -0.26f, 1.04f, -0.56f, 1.31f, -0.86f) + curveToRelative(0.28f, -0.3f, 0.37f, -0.54f, 0.37f, -0.75f) + curveToRelative(0.0f, -0.2f, -0.09f, -0.46f, -0.37f, -0.75f) + curveToRelative(-0.27f, -0.3f, -0.71f, -0.6f, -1.31f, -0.86f) + curveToRelative(-1.2f, -0.54f, -2.9f, -0.89f, -4.82f, -0.89f) + curveToRelative(-1.92f, 0.0f, -3.62f, 0.35f, -4.82f, 0.89f) + curveToRelative(-0.6f, 0.26f, -1.04f, 0.56f, -1.31f, 0.86f) + curveToRelative(-0.28f, 0.3f, -0.37f, 0.54f, -0.37f, 0.75f) + close() + moveTo(18.5f, 8.4f) + arcToRelative(6.8f, 6.8f, 0.0f, false, true, -1.07f, 0.58f) + arcTo(13.65f, 13.65f, 0.0f, false, true, 12.0f, 10.0f) + curveToRelative(-2.08f, 0.0f, -4.0f, -0.38f, -5.43f, -1.02f) + arcTo(6.8f, 6.8f, 0.0f, false, true, 5.5f, 8.4f) + lineTo(5.5f, 18.0f) + curveToRelative(0.0f, 0.2f, 0.09f, 0.46f, 0.37f, 0.75f) + curveToRelative(0.27f, 0.3f, 0.71f, 0.6f, 1.31f, 0.86f) + curveToRelative(1.2f, 0.54f, 2.9f, 0.89f, 4.82f, 0.89f) + curveToRelative(1.92f, 0.0f, 3.62f, -0.35f, 4.82f, -0.89f) + curveToRelative(0.6f, -0.26f, 1.04f, -0.56f, 1.31f, -0.86f) + curveToRelative(0.28f, -0.3f, 0.37f, -0.54f, 0.37f, -0.75f) + lineTo(18.5f, 8.4f) + close() + } + } + return _database!! + } + +private var _database: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DatabaseArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DatabaseArrowRight.kt new file mode 100644 index 00000000..d4e86723 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DatabaseArrowRight.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DatabaseArrowRight: ImageVector + get() { + if (_databaseArrowRight != null) { + return _databaseArrowRight!! + } + _databaseArrowRight = fluentIcon(name = "Regular.DatabaseArrowRight") { + fluentPath { + moveTo(4.0f, 6.0f) + curveToRelative(0.0f, -0.7f, 0.32f, -1.3f, 0.77f, -1.78f) + arcToRelative(5.61f, 5.61f, 0.0f, false, true, 1.8f, -1.2f) + arcTo(13.65f, 13.65f, 0.0f, false, true, 12.0f, 2.0f) + curveToRelative(2.08f, 0.0f, 4.0f, 0.38f, 5.43f, 1.02f) + curveToRelative(0.72f, 0.32f, 1.34f, 0.72f, 1.8f, 1.2f) + curveToRelative(0.45f, 0.49f, 0.77f, 1.09f, 0.77f, 1.78f) + verticalLineToRelative(5.5f) + curveToRelative(-0.47f, -0.2f, -0.98f, -0.34f, -1.5f, -0.42f) + lineTo(18.5f, 8.39f) + arcToRelative(6.8f, 6.8f, 0.0f, false, true, -1.07f, 0.6f) + arcTo(13.65f, 13.65f, 0.0f, false, true, 12.0f, 10.0f) + curveToRelative(-2.08f, 0.0f, -4.0f, -0.38f, -5.43f, -1.02f) + arcTo(6.8f, 6.8f, 0.0f, false, true, 5.5f, 8.4f) + lineTo(5.5f, 18.0f) + curveToRelative(0.0f, 0.2f, 0.09f, 0.46f, 0.37f, 0.75f) + curveToRelative(0.27f, 0.3f, 0.71f, 0.6f, 1.31f, 0.86f) + curveToRelative(1.14f, 0.51f, 2.74f, 0.86f, 4.55f, 0.89f) + curveToRelative(0.28f, 0.54f, 0.64f, 1.04f, 1.06f, 1.48f) + lineTo(12.0f, 22.0f) + curveToRelative(-2.08f, 0.0f, -4.0f, -0.38f, -5.43f, -1.02f) + arcToRelative(5.61f, 5.61f, 0.0f, false, true, -1.8f, -1.2f) + arcTo(2.6f, 2.6f, 0.0f, false, true, 4.0f, 18.0f) + lineTo(4.0f, 6.0f) + close() + moveTo(5.5f, 6.0f) + curveToRelative(0.0f, 0.2f, 0.09f, 0.46f, 0.37f, 0.75f) + curveToRelative(0.27f, 0.3f, 0.71f, 0.6f, 1.31f, 0.86f) + curveToRelative(1.2f, 0.54f, 2.9f, 0.89f, 4.82f, 0.89f) + curveToRelative(1.92f, 0.0f, 3.62f, -0.35f, 4.82f, -0.89f) + curveToRelative(0.6f, -0.26f, 1.04f, -0.56f, 1.31f, -0.86f) + curveToRelative(0.28f, -0.3f, 0.37f, -0.54f, 0.37f, -0.75f) + curveToRelative(0.0f, -0.2f, -0.09f, -0.46f, -0.37f, -0.75f) + curveToRelative(-0.27f, -0.3f, -0.71f, -0.6f, -1.31f, -0.86f) + curveToRelative(-1.2f, -0.54f, -2.9f, -0.89f, -4.82f, -0.89f) + curveToRelative(-1.92f, 0.0f, -3.62f, 0.35f, -4.82f, 0.89f) + curveToRelative(-0.6f, 0.26f, -1.04f, 0.56f, -1.31f, 0.86f) + curveToRelative(-0.28f, 0.3f, -0.37f, 0.54f, -0.37f, 0.75f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(14.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(19.29f, 17.0f) + lineTo(14.5f, 17.0f) + close() + } + } + return _databaseArrowRight!! + } + +private var _databaseArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DatabaseLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DatabaseLink.kt new file mode 100644 index 00000000..e53c3c21 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DatabaseLink.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DatabaseLink: ImageVector + get() { + if (_databaseLink != null) { + return _databaseLink!! + } + _databaseLink = fluentIcon(name = "Regular.DatabaseLink") { + fluentPath { + moveTo(4.0f, 6.0f) + verticalLineToRelative(12.0f) + curveToRelative(0.0f, 0.7f, 0.32f, 1.3f, 0.77f, 1.78f) + curveToRelative(0.46f, 0.48f, 1.08f, 0.88f, 1.8f, 1.2f) + curveTo(8.0f, 21.62f, 9.92f, 22.0f, 12.0f, 22.0f) + curveToRelative(0.51f, 0.0f, 1.01f, -0.02f, 1.5f, -0.07f) + arcToRelative(4.77f, 4.77f, 0.0f, false, true, -1.62f, -1.43f) + arcToRelative(12.09f, 12.09f, 0.0f, false, true, -4.7f, -0.89f) + arcToRelative(4.14f, 4.14f, 0.0f, false, true, -1.31f, -0.86f) + curveToRelative(-0.28f, -0.3f, -0.37f, -0.54f, -0.37f, -0.75f) + lineTo(5.5f, 8.4f) + curveToRelative(0.32f, 0.21f, 0.68f, 0.4f, 1.07f, 0.58f) + curveTo(8.0f, 9.62f, 9.92f, 10.0f, 12.0f, 10.0f) + curveToRelative(2.08f, 0.0f, 4.0f, -0.38f, 5.43f, -1.02f) + arcToRelative(6.8f, 6.8f, 0.0f, false, false, 1.07f, -0.59f) + lineTo(18.5f, 13.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.26f, 0.0f, 0.5f, 0.02f, 0.75f, 0.06f) + lineTo(20.0f, 6.0f) + curveToRelative(0.0f, -0.7f, -0.32f, -1.3f, -0.77f, -1.78f) + arcToRelative(5.61f, 5.61f, 0.0f, false, false, -1.8f, -1.2f) + arcTo(13.65f, 13.65f, 0.0f, false, false, 12.0f, 2.0f) + curveToRelative(-2.08f, 0.0f, -4.0f, 0.38f, -5.43f, 1.02f) + curveToRelative(-0.72f, 0.32f, -1.34f, 0.72f, -1.8f, 1.2f) + arcTo(2.6f, 2.6f, 0.0f, false, false, 4.0f, 6.0f) + close() + moveTo(5.5f, 6.0f) + curveToRelative(0.0f, -0.2f, 0.09f, -0.46f, 0.37f, -0.75f) + curveToRelative(0.27f, -0.3f, 0.71f, -0.6f, 1.31f, -0.86f) + curveToRelative(1.2f, -0.54f, 2.9f, -0.89f, 4.82f, -0.89f) + curveToRelative(1.92f, 0.0f, 3.62f, 0.35f, 4.82f, 0.89f) + curveToRelative(0.6f, 0.26f, 1.04f, 0.56f, 1.31f, 0.86f) + curveToRelative(0.28f, 0.3f, 0.37f, 0.54f, 0.37f, 0.75f) + curveToRelative(0.0f, 0.2f, -0.09f, 0.46f, -0.37f, 0.75f) + curveToRelative(-0.27f, 0.3f, -0.71f, 0.6f, -1.31f, 0.86f) + curveToRelative(-1.2f, 0.54f, -2.9f, 0.89f, -4.82f, 0.89f) + curveToRelative(-1.92f, 0.0f, -3.62f, -0.35f, -4.82f, -0.89f) + arcToRelative(4.14f, 4.14f, 0.0f, false, true, -1.31f, -0.86f) + curveToRelative(-0.28f, -0.3f, -0.37f, -0.54f, -0.37f, -0.75f) + close() + moveTo(23.0f, 17.75f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 19.25f, 14.0f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + verticalLineToRelative(-0.01f) + horizontalLineToRelative(0.2f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 17.74f) + close() + moveTo(16.5f, 14.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-0.2f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(20.0f, 17.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + } + } + return _databaseLink!! + } + +private var _databaseLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DatabasePerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DatabasePerson.kt new file mode 100644 index 00000000..4e993f33 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DatabasePerson.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DatabasePerson: ImageVector + get() { + if (_databasePerson != null) { + return _databasePerson!! + } + _databasePerson = fluentIcon(name = "Regular.DatabasePerson") { + fluentPath { + moveTo(4.0f, 6.5f) + curveToRelative(0.0f, -0.7f, 0.32f, -1.3f, 0.77f, -1.78f) + arcToRelative(5.61f, 5.61f, 0.0f, false, true, 1.8f, -1.2f) + arcTo(13.65f, 13.65f, 0.0f, false, true, 12.0f, 2.5f) + curveToRelative(2.08f, 0.0f, 4.0f, 0.38f, 5.43f, 1.02f) + curveToRelative(0.72f, 0.32f, 1.34f, 0.72f, 1.8f, 1.2f) + curveToRelative(0.45f, 0.49f, 0.77f, 1.09f, 0.77f, 1.78f) + verticalLineToRelative(5.34f) + arcToRelative(3.49f, 3.49f, 0.0f, false, false, -1.5f, -0.34f) + lineTo(18.5f, 8.9f) + arcToRelative(6.8f, 6.8f, 0.0f, false, true, -1.07f, 0.58f) + arcTo(13.65f, 13.65f, 0.0f, false, true, 12.0f, 10.5f) + curveToRelative(-2.08f, 0.0f, -4.0f, -0.38f, -5.43f, -1.02f) + arcTo(6.8f, 6.8f, 0.0f, false, true, 5.5f, 8.9f) + verticalLineToRelative(9.61f) + curveToRelative(0.0f, 0.2f, 0.09f, 0.46f, 0.37f, 0.75f) + curveToRelative(0.27f, 0.3f, 0.71f, 0.6f, 1.31f, 0.86f) + curveToRelative(1.2f, 0.54f, 2.9f, 0.89f, 4.82f, 0.89f) + curveToRelative(0.36f, 0.0f, 0.7f, -0.01f, 1.05f, -0.04f) + curveToRelative(0.08f, 0.51f, 0.26f, 1.01f, 0.56f, 1.46f) + curveToRelative(-0.52f, 0.05f, -1.06f, 0.08f, -1.61f, 0.08f) + curveToRelative(-2.08f, 0.0f, -4.0f, -0.38f, -5.43f, -1.02f) + arcToRelative(5.61f, 5.61f, 0.0f, false, true, -1.8f, -1.2f) + arcTo(2.6f, 2.6f, 0.0f, false, true, 4.0f, 18.5f) + verticalLineToRelative(-12.0f) + close() + moveTo(5.5f, 6.5f) + curveToRelative(0.0f, 0.2f, 0.09f, 0.46f, 0.37f, 0.75f) + curveToRelative(0.27f, 0.3f, 0.71f, 0.6f, 1.31f, 0.86f) + curveToRelative(1.2f, 0.54f, 2.9f, 0.89f, 4.82f, 0.89f) + curveToRelative(1.92f, 0.0f, 3.62f, -0.35f, 4.82f, -0.89f) + curveToRelative(0.6f, -0.26f, 1.04f, -0.56f, 1.31f, -0.86f) + curveToRelative(0.28f, -0.3f, 0.37f, -0.54f, 0.37f, -0.75f) + curveToRelative(0.0f, -0.2f, -0.09f, -0.46f, -0.37f, -0.75f) + curveToRelative(-0.27f, -0.3f, -0.71f, -0.6f, -1.31f, -0.86f) + curveTo(15.62f, 4.35f, 13.92f, 4.0f, 12.0f, 4.0f) + curveToRelative(-1.92f, 0.0f, -3.62f, 0.35f, -4.82f, 0.89f) + curveToRelative(-0.6f, 0.26f, -1.04f, 0.56f, -1.31f, 0.86f) + curveToRelative(-0.28f, 0.3f, -0.37f, 0.54f, -0.37f, 0.75f) + close() + moveTo(21.0f, 15.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(23.0f, 20.38f) + curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) + reflectiveCurveTo(14.0f, 21.94f, 14.0f, 20.37f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _databasePerson!! + } + +private var _databasePerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DatabaseSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DatabaseSearch.kt new file mode 100644 index 00000000..518b374c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DatabaseSearch.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DatabaseSearch: ImageVector + get() { + if (_databaseSearch != null) { + return _databaseSearch!! + } + _databaseSearch = fluentIcon(name = "Regular.DatabaseSearch") { + fluentPath { + moveTo(4.0f, 6.0f) + curveToRelative(0.0f, -0.7f, 0.32f, -1.3f, 0.77f, -1.78f) + arcToRelative(5.61f, 5.61f, 0.0f, false, true, 1.8f, -1.2f) + arcTo(13.65f, 13.65f, 0.0f, false, true, 12.0f, 2.0f) + curveToRelative(2.08f, 0.0f, 4.0f, 0.38f, 5.43f, 1.02f) + curveToRelative(0.72f, 0.32f, 1.34f, 0.72f, 1.8f, 1.2f) + curveToRelative(0.45f, 0.49f, 0.77f, 1.09f, 0.77f, 1.78f) + verticalLineToRelative(6.26f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -1.5f, -0.89f) + lineTo(18.5f, 8.4f) + arcToRelative(6.8f, 6.8f, 0.0f, false, true, -1.07f, 0.6f) + arcTo(13.65f, 13.65f, 0.0f, false, true, 12.0f, 10.0f) + curveToRelative(-2.08f, 0.0f, -4.0f, -0.38f, -5.43f, -1.02f) + arcTo(6.8f, 6.8f, 0.0f, false, true, 5.5f, 8.4f) + lineTo(5.5f, 18.0f) + curveToRelative(0.0f, 0.2f, 0.09f, 0.46f, 0.37f, 0.75f) + curveToRelative(0.27f, 0.3f, 0.71f, 0.6f, 1.31f, 0.86f) + arcToRelative(12.18f, 12.18f, 0.0f, false, false, 5.53f, 0.87f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 2.15f, 1.27f) + curveToRelative(-0.9f, 0.16f, -1.86f, 0.25f, -2.86f, 0.25f) + curveToRelative(-2.08f, 0.0f, -4.0f, -0.38f, -5.43f, -1.02f) + arcToRelative(5.61f, 5.61f, 0.0f, false, true, -1.8f, -1.2f) + arcTo(2.6f, 2.6f, 0.0f, false, true, 4.0f, 18.0f) + lineTo(4.0f, 6.0f) + close() + moveTo(5.5f, 6.0f) + curveToRelative(0.0f, 0.2f, 0.09f, 0.46f, 0.37f, 0.75f) + curveToRelative(0.27f, 0.3f, 0.71f, 0.6f, 1.31f, 0.86f) + curveToRelative(1.2f, 0.54f, 2.9f, 0.89f, 4.82f, 0.89f) + curveToRelative(1.92f, 0.0f, 3.62f, -0.35f, 4.82f, -0.89f) + curveToRelative(0.6f, -0.26f, 1.04f, -0.56f, 1.31f, -0.86f) + curveToRelative(0.28f, -0.3f, 0.37f, -0.54f, 0.37f, -0.75f) + curveToRelative(0.0f, -0.2f, -0.09f, -0.46f, -0.37f, -0.75f) + curveToRelative(-0.27f, -0.3f, -0.71f, -0.6f, -1.31f, -0.86f) + curveToRelative(-1.2f, -0.54f, -2.9f, -0.89f, -4.82f, -0.89f) + curveToRelative(-1.92f, 0.0f, -3.62f, 0.35f, -4.82f, 0.89f) + curveToRelative(-0.6f, 0.26f, -1.04f, 0.56f, -1.31f, 0.86f) + curveToRelative(-0.28f, 0.3f, -0.37f, 0.54f, -0.37f, 0.75f) + close() + moveTo(16.5f, 21.0f) + curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) + lineToRelative(2.62f, 2.61f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.61f, -2.61f) + arcTo(4.5f, 4.5f, 0.0f, true, false, 16.5f, 21.0f) + close() + moveTo(16.5f, 19.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) + close() + } + } + return _databaseSearch!! + } + +private var _databaseSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DecimalArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DecimalArrowLeft.kt new file mode 100644 index 00000000..5d13c931 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DecimalArrowLeft.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DecimalArrowLeft: ImageVector + get() { + if (_decimalArrowLeft != null) { + return _decimalArrowLeft!! + } + _decimalArrowLeft = fluentIcon(name = "Regular.DecimalArrowLeft") { + fluentPath { + moveTo(10.0f, 4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 6.0f, 0.0f) + lineTo(13.0f, 7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + close() + moveTo(11.5f, 11.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + lineTo(8.5f, 7.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + verticalLineToRelative(4.0f) + close() + moveTo(5.0f, 12.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + moveTo(19.5f, 7.0f) + verticalLineToRelative(4.0f) + lineToRelative(-0.03f, 0.3f) + curveToRelative(0.49f, 0.16f, 0.95f, 0.37f, 1.38f, 0.63f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 21.0f, 11.0f) + lineTo(21.0f, 7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, -6.0f, 0.0f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.16f, 0.01f, 0.33f, 0.04f, 0.48f) + curveToRelative(0.46f, -0.19f, 0.95f, -0.33f, 1.46f, -0.4f) + lineTo(16.5f, 7.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.5f, 18.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + horizontalLineToRelative(-4.8f) + lineToRelative(1.65f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineTo(15.71f, 18.0f) + horizontalLineToRelative(4.79f) + close() + } + } + return _decimalArrowLeft!! + } + +private var _decimalArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DecimalArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DecimalArrowRight.kt new file mode 100644 index 00000000..4ada677a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DecimalArrowRight.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DecimalArrowRight: ImageVector + get() { + if (_decimalArrowRight != null) { + return _decimalArrowRight!! + } + _decimalArrowRight = fluentIcon(name = "Regular.DecimalArrowRight") { + fluentPath { + moveTo(10.0f, 4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 6.0f, 0.0f) + lineTo(13.0f, 7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + close() + moveTo(11.5f, 11.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + lineTo(8.5f, 7.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + verticalLineToRelative(4.0f) + close() + moveTo(5.0f, 12.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + moveTo(19.5f, 7.0f) + verticalLineToRelative(4.0f) + lineToRelative(-0.03f, 0.3f) + curveToRelative(0.49f, 0.16f, 0.95f, 0.37f, 1.38f, 0.63f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 21.0f, 11.0f) + lineTo(21.0f, 7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, -6.0f, 0.0f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.16f, 0.01f, 0.33f, 0.04f, 0.48f) + curveToRelative(0.46f, -0.19f, 0.95f, -0.33f, 1.46f, -0.4f) + lineTo(16.5f, 7.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(19.29f, 17.0f) + lineTo(14.5f, 17.0f) + close() + } + } + return _decimalArrowRight!! + } + +private var _decimalArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DeleteDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DeleteDismiss.kt new file mode 100644 index 00000000..0a5fa16b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DeleteDismiss.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DeleteDismiss: ImageVector + get() { + if (_deleteDismiss != null) { + return _deleteDismiss!! + } + _deleteDismiss = fluentIcon(name = "Regular.DeleteDismiss") { + fluentPath { + moveTo(14.0f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, -4.0f, 0.0f) + horizontalLineToRelative(4.0f) + close() + moveTo(8.5f, 5.0f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 7.0f, 0.0f) + horizontalLineToRelative(5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.32f) + lineToRelative(-0.5f, 5.2f) + curveToRelative(-0.46f, -0.24f, -0.95f, -0.41f, -1.46f, -0.53f) + lineToRelative(0.45f, -4.67f) + lineTo(5.58f, 6.5f) + lineToRelative(1.15f, 11.97f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.24f, 2.03f) + horizontalLineToRelative(1.76f) + curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) + lineTo(8.97f, 22.0f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.73f, -3.39f) + lineTo(4.07f, 6.5f) + lineTo(2.75f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(8.5f, 5.0f) + close() + moveTo(22.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-1.64f, -1.65f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.65f, 1.64f) + lineToRelative(-1.65f, -1.64f) + close() + } + } + return _deleteDismiss!! + } + +private var _deleteDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DeleteOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DeleteOff.kt new file mode 100644 index 00000000..79a340c9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DeleteOff.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DeleteOff: ImageVector + get() { + if (_deleteOff != null) { + return _deleteOff!! + } + _deleteOff = fluentIcon(name = "Regular.DeleteOff") { + fluentPath { + moveTo(3.94f, 5.0f) + lineTo(2.22f, 3.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(18.5f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineToRelative(-2.2f, -2.19f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.5f, 2.41f) + lineTo(8.98f, 22.0f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.73f, -3.39f) + lineTo(4.07f, 6.5f) + lineTo(2.75f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.19f) + close() + moveTo(17.28f, 18.34f) + lineTo(15.0f, 16.06f) + verticalLineToRelative(1.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.69f) + lineToRelative(-3.0f, -3.0f) + verticalLineToRelative(5.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-7.19f) + lineToRelative(-3.4f, -3.4f) + lineToRelative(1.13f, 11.8f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.24f, 2.04f) + horizontalLineToRelative(6.06f) + curveToRelative(1.15f, 0.0f, 2.12f, -0.88f, 2.24f, -2.03f) + verticalLineToRelative(-0.13f) + close() + moveTo(13.5f, 10.32f) + lineTo(15.0f, 11.82f) + lineTo(15.0f, 9.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(0.57f) + close() + moveTo(18.42f, 6.5f) + lineTo(17.65f, 14.47f) + lineTo(19.03f, 15.85f) + lineTo(19.93f, 6.5f) + horizontalLineToRelative(1.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(15.5f, 5.0f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, -7.0f, 0.0f) + horizontalLineToRelative(-0.32f) + lineToRelative(1.5f, 1.5f) + horizontalLineToRelative(8.74f) + close() + moveTo(14.0f, 5.0f) + horizontalLineToRelative(-4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) + close() + } + } + return _deleteOff!! + } + +private var _deleteOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Dentist.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Dentist.kt new file mode 100644 index 00000000..68fec691 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Dentist.kt @@ -0,0 +1,109 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Dentist: ImageVector + get() { + if (_dentist != null) { + return _dentist!! + } + _dentist = fluentIcon(name = "Regular.Dentist") { + fluentPath { + moveTo(15.75f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + curveToRelative(0.71f, 0.0f, 1.25f, 0.54f, 1.25f, 1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + curveTo(18.5f, 7.21f, 17.3f, 6.0f, 15.75f, 6.0f) + close() + moveTo(7.75f, 3.0f) + curveToRelative(-1.1f, 0.0f, -2.4f, 0.55f, -3.4f, 1.39f) + arcTo(4.74f, 4.74f, 0.0f, false, false, 2.5f, 7.95f) + verticalLineToRelative(0.02f) + curveToRelative(0.0f, 0.71f, 0.0f, 2.3f, 1.21f, 3.74f) + curveToRelative(0.13f, 0.15f, 0.21f, 0.25f, 0.27f, 0.35f) + curveToRelative(0.31f, 0.55f, 0.52f, 1.16f, 0.52f, 1.7f) + curveToRelative(0.01f, 1.9f, 0.35f, 3.52f, 0.96f, 4.7f) + curveToRelative(0.6f, 1.17f, 1.55f, 2.04f, 2.79f, 2.04f) + curveToRelative(0.37f, 0.0f, 0.72f, -0.09f, 1.02f, -0.3f) + curveToRelative(0.3f, -0.2f, 0.5f, -0.48f, 0.62f, -0.76f) + curveToRelative(0.24f, -0.53f, 0.3f, -1.21f, 0.33f, -1.83f) + lineToRelative(0.03f, -0.46f) + curveToRelative(0.06f, -1.2f, 0.13f, -2.46f, 0.67f, -3.57f) + curveToRelative(0.19f, -0.37f, 0.52f, -0.58f, 0.83f, -0.58f) + horizontalLineToRelative(0.5f) + curveToRelative(0.3f, 0.0f, 0.63f, 0.2f, 0.81f, 0.55f) + curveToRelative(0.4f, 1.04f, 0.52f, 2.19f, 0.63f, 3.3f) + lineToRelative(0.09f, 0.8f) + curveToRelative(0.07f, 0.63f, 0.18f, 1.29f, 0.41f, 1.8f) + curveToRelative(0.13f, 0.27f, 0.31f, 0.54f, 0.58f, 0.74f) + curveToRelative(0.29f, 0.2f, 0.62f, 0.31f, 0.98f, 0.31f) + curveToRelative(1.11f, 0.0f, 2.05f, -0.9f, 2.67f, -2.02f) + curveToRelative(0.64f, -1.17f, 1.07f, -2.8f, 1.08f, -4.73f) + curveToRelative(0.0f, -0.59f, 0.26f, -1.28f, 0.63f, -1.86f) + arcToRelative(5.64f, 5.64f, 0.0f, false, false, 1.37f, -3.94f) + curveToRelative(0.0f, -1.48f, -0.85f, -2.72f, -1.85f, -3.56f) + arcTo(5.66f, 5.66f, 0.0f, false, false, 16.25f, 3.0f) + arcToRelative(5.4f, 5.4f, 0.0f, false, false, -2.1f, 0.37f) + curveToRelative(-0.57f, 0.23f, -0.96f, 0.55f, -1.26f, 0.84f) + lineToRelative(-0.35f, 0.37f) + lineToRelative(-0.03f, 0.03f) + curveToRelative(-0.1f, 0.12f, -0.19f, 0.2f, -0.26f, 0.27f) + curveToRelative(-0.12f, 0.1f, -0.18f, 0.12f, -0.25f, 0.12f) + reflectiveCurveToRelative(-0.13f, -0.01f, -0.25f, -0.12f) + arcToRelative(3.83f, 3.83f, 0.0f, false, true, -0.26f, -0.27f) + lineToRelative(-0.03f, -0.03f) + lineToRelative(-0.35f, -0.37f) + curveToRelative(-0.3f, -0.3f, -0.7f, -0.6f, -1.25f, -0.84f) + arcTo(5.4f, 5.4f, 0.0f, false, false, 7.75f, 3.0f) + close() + moveTo(4.0f, 7.95f) + curveToRelative(0.0f, -0.89f, 0.52f, -1.74f, 1.32f, -2.41f) + arcTo(4.2f, 4.2f, 0.0f, false, true, 7.75f, 4.5f) + curveToRelative(0.7f, 0.0f, 1.19f, 0.11f, 1.53f, 0.25f) + curveToRelative(0.34f, 0.15f, 0.57f, 0.33f, 0.78f, 0.54f) + lineToRelative(0.3f, 0.3f) + lineToRelative(0.02f, 0.03f) + curveToRelative(0.1f, 0.12f, 0.23f, 0.26f, 0.37f, 0.38f) + curveToRelative(0.3f, 0.26f, 0.7f, 0.5f, 1.25f, 0.5f) + reflectiveCurveToRelative(0.95f, -0.24f, 1.25f, -0.5f) + curveToRelative(0.14f, -0.12f, 0.26f, -0.26f, 0.37f, -0.38f) + lineToRelative(0.03f, -0.03f) + lineToRelative(0.29f, -0.3f) + curveToRelative(0.2f, -0.2f, 0.44f, -0.4f, 0.78f, -0.54f) + reflectiveCurveToRelative(0.82f, -0.25f, 1.53f, -0.25f) + curveToRelative(0.67f, 0.0f, 1.63f, 0.36f, 2.43f, 1.04f) + curveToRelative(0.8f, 0.67f, 1.32f, 1.52f, 1.32f, 2.4f) + verticalLineToRelative(0.01f) + curveToRelative(0.0f, 0.68f, 0.0f, 1.77f, -1.05f, 3.0f) + arcToRelative(5.26f, 5.26f, 0.0f, false, false, -0.95f, 2.8f) + curveToRelative(0.0f, 1.72f, -0.4f, 3.09f, -0.9f, 4.0f) + curveToRelative(-0.53f, 0.98f, -1.08f, 1.25f, -1.35f, 1.25f) + curveToRelative(-0.06f, 0.0f, -0.08f, -0.01f, -0.08f, -0.02f) + arcToRelative(0.45f, 0.45f, 0.0f, false, true, -0.12f, -0.17f) + curveToRelative(-0.12f, -0.26f, -0.2f, -0.7f, -0.28f, -1.34f) + arcToRelative(41.8f, 41.8f, 0.0f, false, true, -0.08f, -0.7f) + arcToRelative(14.82f, 14.82f, 0.0f, false, false, -0.77f, -3.85f) + arcToRelative(2.45f, 2.45f, 0.0f, false, false, -2.17f, -1.42f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.99f, 0.0f, -1.79f, 0.63f, -2.17f, 1.42f) + curveToRelative(-0.7f, 1.4f, -0.77f, 2.99f, -0.83f, 4.16f) + lineToRelative(-0.03f, 0.44f) + curveToRelative(-0.04f, 0.66f, -0.1f, 1.07f, -0.2f, 1.31f) + curveToRelative(-0.05f, 0.1f, -0.08f, 0.13f, -0.1f, 0.14f) + curveToRelative(0.0f, 0.0f, -0.04f, 0.03f, -0.17f, 0.03f) + curveToRelative(-0.44f, 0.0f, -0.98f, -0.3f, -1.46f, -1.23f) + arcTo(9.15f, 9.15f, 0.0f, false, true, 6.0f, 13.75f) + arcToRelative(5.1f, 5.1f, 0.0f, false, false, -1.13f, -3.0f) + curveTo(4.0f, 9.73f, 4.0f, 8.62f, 4.0f, 7.94f) + close() + } + } + return _dentist!! + } + +private var _dentist: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesignIdeas.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesignIdeas.kt new file mode 100644 index 00000000..f2cbac06 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesignIdeas.kt @@ -0,0 +1,97 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DesignIdeas: ImageVector + get() { + if (_designIdeas != null) { + return _designIdeas!! + } + _designIdeas = fluentIcon(name = "Regular.DesignIdeas") { + fluentPath { + moveTo(5.57f, 2.07f) + curveToRelative(0.26f, 0.13f, 0.43f, 0.4f, 0.43f, 0.68f) + curveToRelative(0.0f, 0.83f, 0.31f, 1.3f, 0.7f, 1.89f) + lineToRelative(0.03f, 0.04f) + curveToRelative(0.33f, 0.5f, 0.77f, 1.14f, 0.77f, 2.07f) + curveToRelative(0.0f, 0.95f, -0.48f, 1.78f, -1.2f, 2.27f) + curveToRelative(0.19f, 0.16f, 0.36f, 0.36f, 0.5f, 0.6f) + curveToRelative(0.48f, 0.77f, 0.7f, 1.94f, 0.7f, 3.63f) + curveToRelative(0.0f, 1.72f, -0.23f, 3.77f, -0.6f, 5.41f) + curveToRelative(-0.2f, 0.82f, -0.42f, 1.57f, -0.7f, 2.14f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.5f, 0.77f) + curveToRelative(-0.21f, 0.21f, -0.53f, 0.43f, -0.95f, 0.43f) + curveToRelative(-0.42f, 0.0f, -0.74f, -0.22f, -0.94f, -0.43f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.51f, -0.77f) + curveToRelative(-0.28f, -0.57f, -0.5f, -1.32f, -0.7f, -2.14f) + curveToRelative(-0.37f, -1.64f, -0.6f, -3.7f, -0.6f, -5.4f) + curveToRelative(0.0f, -1.7f, 0.22f, -2.87f, 0.7f, -3.64f) + curveToRelative(0.14f, -0.24f, 0.31f, -0.44f, 0.5f, -0.6f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 6.75f) + curveToRelative(0.0f, -0.37f, 0.0f, -1.0f, 0.38f, -1.82f) + arcToRelative(8.1f, 8.1f, 0.0f, false, true, 2.4f, -2.77f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.8f, -0.09f) + close() + moveTo(3.5f, 6.75f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) + curveToRelative(0.0f, -0.44f, -0.18f, -0.74f, -0.54f, -1.27f) + lineToRelative(-0.01f, -0.02f) + curveToRelative(-0.23f, -0.34f, -0.5f, -0.74f, -0.7f, -1.26f) + arcToRelative(5.07f, 5.07f, 0.0f, false, false, -1.0f, 1.37f) + curveToRelative(-0.25f, 0.51f, -0.25f, 0.88f, -0.25f, 1.18f) + close() + moveTo(3.97f, 10.41f) + curveToRelative(-0.24f, 0.4f, -0.47f, 1.22f, -0.47f, 2.84f) + curveToRelative(0.0f, 1.6f, 0.22f, 3.55f, 0.57f, 5.08f) + arcToRelative(8.91f, 8.91f, 0.0f, false, false, 0.68f, 2.0f) + curveToRelative(0.03f, -0.05f, 0.07f, -0.11f, 0.1f, -0.19f) + curveToRelative(0.2f, -0.41f, 0.4f, -1.04f, 0.58f, -1.8f) + curveToRelative(0.35f, -1.54f, 0.57f, -3.48f, 0.57f, -5.09f) + curveToRelative(0.0f, -1.62f, -0.23f, -2.44f, -0.47f, -2.84f) + arcToRelative(0.79f, 0.79f, 0.0f, false, false, -0.33f, -0.32f) + curveToRelative(-0.1f, -0.05f, -0.25f, -0.09f, -0.45f, -0.09f) + reflectiveCurveToRelative(-0.34f, 0.04f, -0.45f, 0.09f) + arcToRelative(0.79f, 0.79f, 0.0f, false, false, -0.33f, 0.32f) + close() + moveTo(10.0f, 14.9f) + arcToRelative(5.96f, 5.96f, 0.0f, false, true, -1.53f, -0.47f) + arcToRelative(23.1f, 23.1f, 0.0f, false, false, 0.02f, -1.7f) + curveToRelative(0.45f, 0.3f, 0.96f, 0.52f, 1.51f, 0.65f) + lineTo(10.0f, 10.5f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(4.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, -7.23f, -3.57f) + curveToRelative(-0.2f, -0.56f, -0.49f, -0.98f, -0.69f, -1.27f) + lineToRelative(-0.04f, -0.06f) + arcTo(6.0f, 6.0f, 0.0f, false, true, 17.0f, 9.0f) + horizontalLineToRelative(3.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-9.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + verticalLineToRelative(-4.58f) + close() + moveTo(11.5f, 14.97f) + verticalLineToRelative(4.52f) + horizontalLineToRelative(9.0f) + verticalLineToRelative(-9.0f) + horizontalLineToRelative(-3.69f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, -5.31f, 4.48f) + close() + moveTo(15.24f, 10.49f) + lineTo(11.5f, 10.49f) + verticalLineToRelative(2.97f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 3.74f, -2.97f) + close() + } + } + return _designIdeas!! + } + +private var _designIdeas: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Desktop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Desktop.kt new file mode 100644 index 00000000..af2274ee --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Desktop.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Desktop: ImageVector + get() { + if (_desktop != null) { + return _desktop!! + } + _desktop = fluentIcon(name = "Regular.Desktop") { + fluentPath { + moveTo(6.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(8.5f, 20.5f) + lineTo(8.5f, 18.0f) + lineTo(4.25f, 18.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) + lineTo(2.0f, 15.76f) + lineTo(2.0f, 5.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 3.0f) + horizontalLineToRelative(15.5f) + curveToRelative(1.19f, 0.0f, 2.16f, 0.93f, 2.24f, 2.1f) + verticalLineToRelative(10.65f) + curveToRelative(0.0f, 1.2f, -0.92f, 2.17f, -2.09f, 2.25f) + horizontalLineToRelative(-4.4f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 22.0f) + close() + moveTo(14.0f, 18.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(4.0f) + lineTo(14.0f, 18.0f) + close() + moveTo(19.75f, 4.5f) + lineTo(4.25f, 4.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.75f) + horizontalLineToRelative(15.6f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineTo(20.49f, 5.25f) + curveToRelative(0.0f, -0.38f, -0.27f, -0.7f, -0.64f, -0.74f) + lineToRelative(-0.1f, -0.01f) + close() + } + } + return _desktop!! + } + +private var _desktop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopArrowRight.kt new file mode 100644 index 00000000..f12fbdda --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopArrowRight.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DesktopArrowRight: ImageVector + get() { + if (_desktopArrowRight != null) { + return _desktopArrowRight!! + } + _desktopArrowRight = fluentIcon(name = "Regular.DesktopArrowRight") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.5f, 6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(19.29f, 6.0f) + lineTo(14.5f, 6.0f) + close() + moveTo(20.5f, 15.75f) + verticalLineToRelative(-3.48f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(4.56f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.25f) + horizontalLineToRelative(-4.4f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(8.5f, 20.5f) + lineTo(8.5f, 18.0f) + lineTo(4.25f, 18.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) + lineTo(2.0f, 15.76f) + lineTo(2.0f, 5.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.25f) + horizontalLineToRelative(7.92f) + curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) + lineTo(4.24f, 4.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.75f) + horizontalLineToRelative(15.6f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + verticalLineToRelative(-0.1f) + close() + moveTo(14.0f, 18.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(4.0f) + lineTo(14.0f, 18.0f) + close() + } + } + return _desktopArrowRight!! + } + +private var _desktopArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopCheckmark.kt new file mode 100644 index 00000000..ab611f15 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopCheckmark.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DesktopCheckmark: ImageVector + get() { + if (_desktopCheckmark != null) { + return _desktopCheckmark!! + } + _desktopCheckmark = fluentIcon(name = "Regular.DesktopCheckmark") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.85f, 4.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineTo(16.5f, 7.79f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + moveTo(20.5f, 15.75f) + verticalLineToRelative(-3.48f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(4.56f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.25f) + horizontalLineToRelative(-4.4f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(8.5f, 20.5f) + lineTo(8.5f, 18.0f) + lineTo(4.25f, 18.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) + lineTo(2.0f, 15.76f) + lineTo(2.0f, 5.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.25f) + horizontalLineToRelative(7.92f) + curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) + lineTo(4.24f, 4.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(15.5f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + verticalLineToRelative(-0.1f) + close() + moveTo(14.0f, 18.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(4.0f) + lineTo(14.0f, 18.0f) + close() + } + } + return _desktopCheckmark!! + } + +private var _desktopCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopCursor.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopCursor.kt new file mode 100644 index 00000000..b5c5e251 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopCursor.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DesktopCursor: ImageVector + get() { + if (_desktopCursor != null) { + return _desktopCursor!! + } + _desktopCursor = fluentIcon(name = "Regular.DesktopCursor") { + fluentPath { + moveTo(6.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(8.5f, 20.5f) + lineTo(8.5f, 18.0f) + lineTo(4.25f, 18.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) + lineTo(2.0f, 15.76f) + lineTo(2.0f, 5.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 3.0f) + horizontalLineToRelative(15.5f) + curveToRelative(1.19f, 0.0f, 2.16f, 0.93f, 2.24f, 2.1f) + verticalLineToRelative(10.65f) + curveToRelative(0.0f, 0.37f, -0.08f, 0.72f, -0.24f, 1.03f) + lineTo(20.5f, 15.4f) + lineTo(20.5f, 5.25f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + lineTo(4.25f, 4.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.75f) + lineTo(14.0f, 16.5f) + lineTo(14.0f, 18.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(4.0f) + lineTo(14.0f, 22.0f) + lineTo(6.75f, 22.0f) + close() + moveTo(15.49f, 12.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.82f, 0.2f) + lineToRelative(6.37f, 7.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 1.23f) + lineToRelative(-3.54f, -0.88f) + lineToRelative(-2.03f, 3.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.37f, -0.42f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.31f, 0.2f, -0.59f, 0.49f, -0.7f) + close() + } + } + return _desktopCursor!! + } + +private var _desktopCursor: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopEdit.kt new file mode 100644 index 00000000..5a64d039 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopEdit.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DesktopEdit: ImageVector + get() { + if (_desktopEdit != null) { + return _desktopEdit!! + } + _desktopEdit = fluentIcon(name = "Regular.DesktopEdit") { + fluentPath { + moveToRelative(19.1f, 1.67f) + lineToRelative(-5.9f, 5.9f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + moveTo(4.25f, 3.0f) + horizontalLineToRelative(12.1f) + lineToRelative(-1.5f, 1.5f) + horizontalLineTo(4.26f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(15.5f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + verticalLineTo(8.15f) + lineToRelative(1.5f, -1.5f) + verticalLineToRelative(9.1f) + curveToRelative(0.0f, 1.2f, -0.92f, 2.17f, -2.09f, 2.25f) + horizontalLineToRelative(-4.4f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineTo(6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineTo(8.5f) + verticalLineTo(18.0f) + horizontalLineTo(4.25f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) + lineTo(2.0f, 15.76f) + verticalLineTo(5.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.25f) + horizontalLineToRelative(0.15f) + close() + moveTo(14.0f, 18.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(4.0f) + verticalLineTo(18.0f) + close() + } + } + return _desktopEdit!! + } + +private var _desktopEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopFlow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopFlow.kt new file mode 100644 index 00000000..96828ca5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopFlow.kt @@ -0,0 +1,99 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DesktopFlow: ImageVector + get() { + if (_desktopFlow != null) { + return _desktopFlow!! + } + _desktopFlow = fluentIcon(name = "Regular.DesktopFlow") { + fluentPath { + moveTo(16.67f, 3.0f) + lineTo(4.1f, 3.0f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 5.26f) + verticalLineToRelative(10.66f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 18.0f) + lineTo(8.5f, 18.0f) + verticalLineToRelative(2.49f) + lineTo(6.65f, 20.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(10.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + lineTo(15.5f, 20.49f) + lineTo(15.5f, 18.0f) + horizontalLineToRelative(4.4f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.1f, -2.25f) + lineTo(22.0f, 9.5f) + horizontalLineToRelative(-1.5f) + verticalLineToRelative(6.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, 0.65f) + lineTo(4.15f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) + lineTo(3.5f, 5.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) + lineTo(16.5f, 4.5f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.27f, 0.06f, -0.52f, 0.17f, -0.75f) + close() + moveTo(10.0f, 18.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(-4.0f) + lineTo(10.0f, 18.0f) + close() + moveTo(17.5f, 3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(17.5f, 7.0f) + horizontalLineToRelative(-0.32f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, -0.51f, 0.37f) + lineToRelative(-0.92f, 2.74f) + arcToRelative(2.04f, 2.04f, 0.0f, false, true, -1.93f, 1.39f) + lineTo(13.0f, 11.5f) + verticalLineToRelative(1.75f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(13.0f, 10.0f) + horizontalLineToRelative(0.82f) + curveToRelative(0.23f, 0.0f, 0.44f, -0.15f, 0.51f, -0.37f) + lineToRelative(0.92f, -2.74f) + arcToRelative(2.04f, 2.04f, 0.0f, false, true, 1.93f, -1.39f) + horizontalLineToRelative(0.32f) + lineTo(17.5f, 3.75f) + close() + moveTo(19.0f, 6.27f) + lineTo(19.0f, 7.0f) + horizontalLineToRelative(2.5f) + lineTo(21.5f, 4.5f) + lineTo(19.0f, 4.5f) + verticalLineToRelative(1.73f) + arcToRelative(1.07f, 1.07f, 0.0f, false, true, 0.0f, 0.04f) + close() + moveTo(9.0f, 10.0f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(2.5f) + lineTo(11.5f, 10.0f) + lineTo(9.0f, 10.0f) + close() + } + } + return _desktopFlow!! + } + +private var _desktopFlow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopKeyboard.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopKeyboard.kt new file mode 100644 index 00000000..5cc3c14c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopKeyboard.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DesktopKeyboard: ImageVector + get() { + if (_desktopKeyboard != null) { + return _desktopKeyboard!! + } + _desktopKeyboard = fluentIcon(name = "Regular.DesktopKeyboard") { + fluentPath { + moveTo(6.72f, 22.0f) + horizontalLineToRelative(2.53f) + curveToRelative(-0.16f, -0.38f, -0.25f, -0.8f, -0.25f, -1.25f) + lineTo(9.0f, 16.5f) + lineTo(4.15f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) + lineTo(3.5f, 5.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) + horizontalLineToRelative(15.6f) + curveToRelative(0.37f, 0.06f, 0.65f, 0.37f, 0.65f, 0.75f) + lineTo(20.5f, 12.0f) + horizontalLineToRelative(0.25f) + curveToRelative(0.44f, 0.0f, 0.86f, 0.09f, 1.25f, 0.25f) + lineTo(22.0f, 5.1f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 19.74f, 3.0f) + lineTo(4.1f, 3.0f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 5.26f) + verticalLineToRelative(10.66f) + curveToRelative(0.08f, 1.13f, 1.0f, 2.04f, 2.15f, 2.09f) + lineTo(4.0f, 18.01f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(2.5f) + lineTo(5.65f, 20.51f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.07f, 1.5f) + horizontalLineToRelative(1.0f) + close() + moveTo(10.0f, 15.25f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(8.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(5.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-8.5f) + curveTo(11.01f, 23.0f, 10.0f, 22.0f, 10.0f, 20.75f) + verticalLineToRelative(-5.5f) + close() + moveTo(14.0f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + close() + moveTo(17.5f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + close() + moveTo(20.0f, 16.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(19.25f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + close() + moveTo(15.0f, 18.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(13.0f, 20.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + } + } + return _desktopKeyboard!! + } + +private var _desktopKeyboard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopMac.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopMac.kt new file mode 100644 index 00000000..b847228b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopMac.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DesktopMac: ImageVector + get() { + if (_desktopMac != null) { + return _desktopMac!! + } + _desktopMac = fluentIcon(name = "Regular.DesktopMac") { + fluentPath { + moveTo(4.25f, 3.0f) + curveTo(3.01f, 3.0f, 2.0f, 4.0f, 2.0f, 5.25f) + verticalLineToRelative(10.5f) + curveTo(2.0f, 16.99f, 3.0f, 18.0f, 4.25f, 18.0f) + lineTo(9.5f, 18.0f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + lineTo(14.5f, 18.0f) + horizontalLineToRelative(5.25f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(22.0f, 5.25f) + curveTo(22.0f, 4.01f, 21.0f, 3.0f, 19.75f, 3.0f) + lineTo(4.25f, 3.0f) + close() + moveTo(13.0f, 18.0f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.45f, 0.1f, 0.88f, 0.3f, 1.25f) + horizontalLineToRelative(-2.6f) + curveToRelative(0.2f, -0.38f, 0.3f, -0.8f, 0.3f, -1.25f) + lineTo(11.0f, 18.0f) + horizontalLineToRelative(2.0f) + close() + moveTo(3.5f, 5.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(15.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(20.5f, 13.0f) + horizontalLineToRelative(-17.0f) + lineTo(3.5f, 5.25f) + close() + moveTo(3.5f, 14.5f) + horizontalLineToRelative(17.0f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(4.25f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(3.5f, 14.5f) + close() + } + } + return _desktopMac!! + } + +private var _desktopMac: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopPulse.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopPulse.kt new file mode 100644 index 00000000..bca1d5e8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopPulse.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DesktopPulse: ImageVector + get() { + if (_desktopPulse != null) { + return _desktopPulse!! + } + _desktopPulse = fluentIcon(name = "Regular.DesktopPulse") { + fluentPath { + moveTo(6.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(8.5f, 20.5f) + lineTo(8.5f, 18.0f) + lineTo(4.25f, 18.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) + lineTo(2.0f, 15.76f) + lineTo(2.0f, 13.0f) + horizontalLineToRelative(1.5f) + verticalLineToRelative(2.75f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.75f) + horizontalLineToRelative(15.6f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineTo(20.49f, 13.0f) + lineTo(22.0f, 13.0f) + verticalLineToRelative(2.75f) + curveToRelative(0.0f, 1.2f, -0.92f, 2.17f, -2.09f, 2.25f) + horizontalLineToRelative(-4.4f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 22.0f) + close() + moveTo(14.0f, 18.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(4.0f) + lineTo(14.0f, 18.0f) + close() + moveTo(3.5f, 9.5f) + lineTo(2.0f, 9.5f) + lineTo(2.0f, 5.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 3.0f) + horizontalLineToRelative(15.5f) + curveToRelative(1.19f, 0.0f, 2.16f, 0.93f, 2.24f, 2.1f) + verticalLineToRelative(4.4f) + horizontalLineToRelative(-1.5f) + lineTo(20.49f, 5.25f) + curveToRelative(0.0f, -0.38f, -0.27f, -0.7f, -0.64f, -0.74f) + lineToRelative(-0.1f, -0.01f) + lineTo(4.25f, 4.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + lineTo(3.5f, 9.5f) + close() + moveTo(9.7f, 6.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.38f, -0.03f) + lineTo(6.49f, 10.5f) + lineTo(2.75f, 10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.23f) + curveToRelative(0.3f, 0.0f, 0.56f, -0.17f, 0.68f, -0.44f) + lineToRelative(1.3f, -2.89f) + lineToRelative(2.34f, 5.86f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.35f, 0.1f) + lineToRelative(2.65f, -4.5f) + lineToRelative(1.09f, 1.55f) + curveToRelative(0.14f, 0.2f, 0.37f, 0.32f, 0.61f, 0.32f) + horizontalLineToRelative(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.86f) + lineToRelative(-1.53f, -2.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.26f, 0.05f) + lineToRelative(-2.47f, 4.19f) + lineTo(9.7f, 6.47f) + close() + } + } + return _desktopPulse!! + } + +private var _desktopPulse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopSignal.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopSignal.kt new file mode 100644 index 00000000..3cfbf70c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopSignal.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DesktopSignal: ImageVector + get() { + if (_desktopSignal != null) { + return _desktopSignal!! + } + _desktopSignal = fluentIcon(name = "Regular.DesktopSignal") { + fluentPath { + moveTo(15.0f, 1.5f) + curveToRelative(-0.18f, 0.0f, -0.37f, 0.0f, -0.55f, 0.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + curveTo(14.7f, 3.0f, 14.85f, 3.0f, 15.0f, 3.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, 6.99f, 7.45f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.1f) + lineToRelative(0.01f, -0.55f) + curveToRelative(0.0f, -4.7f, -3.8f, -8.5f, -8.5f, -8.5f) + close() + moveTo(15.0f, 4.0f) + curveToRelative(-0.2f, 0.0f, -0.38f, 0.0f, -0.57f, 0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.14f, 1.49f) + lineTo(15.0f, 5.5f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.48f, 4.93f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.14f) + lineTo(21.0f, 10.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, -6.0f, -6.0f) + close() + moveTo(15.0f, 6.5f) + curveToRelative(-0.22f, 0.0f, -0.43f, 0.02f, -0.64f, 0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.28f, 1.47f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.33f, 2.33f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.47f, 0.28f) + arcTo(3.51f, 3.51f, 0.0f, false, false, 15.0f, 6.5f) + close() + moveTo(12.91f, 3.0f) + lineTo(4.1f, 3.0f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 5.26f) + verticalLineToRelative(10.66f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 18.0f) + lineTo(8.5f, 18.0f) + verticalLineToRelative(2.49f) + lineTo(6.65f, 20.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(10.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + lineTo(15.5f, 20.49f) + lineTo(15.5f, 18.0f) + horizontalLineToRelative(4.4f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.1f, -2.25f) + lineTo(22.0f, 12.1f) + curveToRelative(-0.2f, -0.1f, -0.37f, -0.22f, -0.52f, -0.37f) + curveToRelative(-0.26f, 0.27f, -0.6f, 0.45f, -0.98f, 0.51f) + verticalLineToRelative(3.62f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, 0.65f) + lineTo(4.15f, 16.51f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) + lineTo(3.5f, 5.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) + horizontalLineToRelative(8.52f) + curveToRelative(0.06f, -0.38f, 0.24f, -0.72f, 0.5f, -0.98f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.36f, -0.52f) + close() + moveTo(14.0f, 18.0f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(-4.0f) + lineTo(10.0f, 18.0f) + horizontalLineToRelative(4.0f) + close() + moveTo(16.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + } + } + return _desktopSignal!! + } + +private var _desktopSignal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopSpeaker.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopSpeaker.kt new file mode 100644 index 00000000..31e9f141 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopSpeaker.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DesktopSpeaker: ImageVector + get() { + if (_desktopSpeaker != null) { + return _desktopSpeaker!! + } + _desktopSpeaker = fluentIcon(name = "Regular.DesktopSpeaker") { + fluentPath { + moveTo(6.0f, 21.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(8.93f) + curveToRelative(-0.25f, -0.09f, -0.5f, -0.24f, -0.7f, -0.46f) + lineTo(14.0f, 20.5f) + horizontalLineToRelative(-4.0f) + lineTo(10.0f, 18.0f) + horizontalLineToRelative(1.0f) + verticalLineToRelative(-1.5f) + lineTo(4.15f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) + lineTo(3.5f, 5.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) + horizontalLineToRelative(15.6f) + curveToRelative(0.37f, 0.06f, 0.65f, 0.37f, 0.65f, 0.75f) + verticalLineToRelative(6.77f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 1.5f, 0.5f) + lineTo(22.0f, 5.1f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 19.74f, 3.0f) + lineTo(4.1f, 3.0f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 5.26f) + verticalLineToRelative(10.66f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 18.0f) + lineTo(8.5f, 18.0f) + verticalLineToRelative(2.49f) + lineTo(6.65f, 20.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + close() + moveTo(22.14f, 14.3f) + arcToRelative(4.53f, 4.53f, 0.0f, false, false, -0.91f, -1.13f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.96f, 1.16f) + curveToRelative(0.13f, 0.1f, 0.35f, 0.35f, 0.59f, 0.74f) + curveToRelative(0.4f, 0.67f, 0.64f, 1.48f, 0.64f, 2.43f) + curveToRelative(0.0f, 0.95f, -0.24f, 1.76f, -0.64f, 2.43f) + curveToRelative(-0.24f, 0.39f, -0.46f, 0.64f, -0.59f, 0.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.96f, 1.16f) + curveToRelative(0.25f, -0.21f, 0.59f, -0.58f, 0.91f, -1.13f) + curveToRelative(0.54f, -0.9f, 0.86f, -1.96f, 0.86f, -3.2f) + curveToRelative(0.0f, -1.24f, -0.32f, -2.3f, -0.86f, -3.2f) + close() + moveTo(19.87f, 15.4f) + curveToRelative(-0.23f, -0.36f, -0.48f, -0.6f, -0.67f, -0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 1.2f) + arcToRelative(2.24f, 2.24f, 0.0f, false, true, 0.7f, 1.65f) + arcToRelative(2.24f, 2.24f, 0.0f, false, true, -0.7f, 1.65f) + lineToRelative(-0.08f, 0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) + arcToRelative(3.73f, 3.73f, 0.0f, false, false, 1.3f, -2.85f) + curveToRelative(0.0f, -0.81f, -0.23f, -1.52f, -0.63f, -2.1f) + close() + moveTo(17.0f, 14.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.31f, -0.5f) + lineTo(14.16f, 16.0f) + horizontalLineToRelative(-1.41f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(1.41f) + lineToRelative(1.53f, 1.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.31f, -0.49f) + verticalLineToRelative(-5.5f) + close() + moveTo(16.8f, 22.0f) + horizontalLineToRelative(0.45f) + close() + } + } + return _desktopSpeaker!! + } + +private var _desktopSpeaker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopSpeakerOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopSpeakerOff.kt new file mode 100644 index 00000000..43d90137 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopSpeakerOff.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DesktopSpeakerOff: ImageVector + get() { + if (_desktopSpeakerOff != null) { + return _desktopSpeakerOff!! + } + _desktopSpeakerOff = fluentIcon(name = "Regular.DesktopSpeakerOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(0.4f, 0.4f) + curveTo(2.25f, 4.1f, 2.0f, 4.65f, 2.0f, 5.26f) + verticalLineToRelative(10.66f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 18.0f) + lineTo(8.5f, 18.0f) + verticalLineToRelative(2.49f) + lineTo(6.65f, 20.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(8.93f) + curveToRelative(-0.25f, -0.09f, -0.5f, -0.24f, -0.7f, -0.46f) + lineTo(14.0f, 20.5f) + horizontalLineToRelative(-4.0f) + lineTo(10.0f, 18.0f) + horizontalLineToRelative(1.0f) + verticalLineToRelative(-1.5f) + lineTo(4.15f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) + lineTo(3.5f, 5.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.19f, -0.4f) + lineToRelative(10.83f, 10.83f) + lineToRelative(-0.36f, 0.42f) + horizontalLineToRelative(-1.41f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(1.41f) + lineToRelative(1.53f, 1.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.31f, -0.49f) + verticalLineToRelative(-2.19f) + lineToRelative(3.72f, 3.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(20.5f, 17.32f) + lineTo(18.08f, 14.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.12f, -0.25f) + arcToRelative(3.71f, 3.71f, 0.0f, false, true, 1.3f, 2.66f) + close() + moveTo(22.69f, 19.51f) + lineTo(21.45f, 18.26f) + curveToRelative(0.03f, -0.24f, 0.05f, -0.5f, 0.05f, -0.76f) + curveToRelative(0.0f, -0.95f, -0.24f, -1.76f, -0.64f, -2.43f) + curveToRelative(-0.24f, -0.39f, -0.46f, -0.64f, -0.59f, -0.74f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.96f, -1.16f) + curveToRelative(0.25f, 0.21f, 0.59f, 0.58f, 0.91f, 1.13f) + arcToRelative(6.39f, 6.39f, 0.0f, false, true, 0.55f, 5.2f) + close() + moveTo(7.69f, 4.5f) + lineTo(6.18f, 3.0f) + horizontalLineToRelative(13.56f) + curveToRelative(1.19f, 0.0f, 2.16f, 0.92f, 2.24f, 2.1f) + verticalLineToRelative(7.42f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.5f, -0.5f) + lineTo(20.48f, 5.25f) + curveToRelative(0.0f, -0.38f, -0.27f, -0.7f, -0.64f, -0.74f) + lineToRelative(-0.1f, -0.01f) + lineTo(7.68f, 4.5f) + close() + } + } + return _desktopSpeakerOff!! + } + +private var _desktopSpeakerOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopSync.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopSync.kt new file mode 100644 index 00000000..151d0bc8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopSync.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DesktopSync: ImageVector + get() { + if (_desktopSync != null) { + return _desktopSync!! + } + _desktopSync = fluentIcon(name = "Regular.DesktopSync") { + fluentPath { + moveTo(12.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) + close() + moveTo(20.5f, 3.0f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + verticalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.8f, -0.59f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) + lineTo(20.0f, 3.5f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + close() + moveTo(15.0f, 8.95f) + verticalLineToRelative(0.55f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.77f, 0.65f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) + close() + moveTo(20.5f, 15.75f) + verticalLineToRelative(-3.48f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(4.56f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.25f) + horizontalLineToRelative(-4.4f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(8.5f, 20.5f) + lineTo(8.5f, 18.0f) + lineTo(4.25f, 18.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) + lineTo(2.0f, 15.76f) + lineTo(2.0f, 5.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.25f) + horizontalLineToRelative(7.92f) + curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) + lineTo(4.24f, 4.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(15.5f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + verticalLineToRelative(-0.1f) + close() + moveTo(14.0f, 18.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(4.0f) + lineTo(14.0f, 18.0f) + close() + } + } + return _desktopSync!! + } + +private var _desktopSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopToolbox.kt new file mode 100644 index 00000000..055ed242 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DesktopToolbox.kt @@ -0,0 +1,99 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DesktopToolbox: ImageVector + get() { + if (_desktopToolbox != null) { + return _desktopToolbox!! + } + _desktopToolbox = fluentIcon(name = "Regular.DesktopToolbox") { + fluentPath { + moveTo(6.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(8.5f, 20.5f) + lineTo(8.5f, 18.0f) + lineTo(4.25f, 18.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) + lineTo(2.0f, 15.76f) + lineTo(2.0f, 5.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 3.0f) + horizontalLineToRelative(15.5f) + curveToRelative(1.19f, 0.0f, 2.16f, 0.93f, 2.24f, 2.1f) + verticalLineToRelative(8.82f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -1.5f, -2.37f) + verticalLineToRelative(-6.3f) + curveToRelative(0.0f, -0.38f, -0.27f, -0.7f, -0.64f, -0.74f) + lineToRelative(-0.1f, -0.01f) + lineTo(4.25f, 4.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.75f) + lineTo(11.0f, 16.5f) + lineTo(11.0f, 18.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(1.0f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 0.17f, 0.02f, 0.34f, 0.05f, 0.5f) + horizontalLineToRelative(-4.3f) + close() + moveTo(14.0f, 15.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + lineTo(12.0f, 18.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(16.0f, 18.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(20.5f, 18.0f) + lineTo(23.0f, 18.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(21.0f, 15.0f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(1.0f) + close() + moveTo(15.5f, 14.0f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(12.0f, 21.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + lineTo(23.0f, 19.5f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + close() + } + } + return _desktopToolbox!! + } + +private var _desktopToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DeveloperBoard.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DeveloperBoard.kt new file mode 100644 index 00000000..125baca7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DeveloperBoard.kt @@ -0,0 +1,115 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DeveloperBoard: ImageVector + get() { + if (_developerBoard != null) { + return _developerBoard!! + } + _developerBoard = fluentIcon(name = "Regular.DeveloperBoard") { + fluentPath { + moveTo(15.25f, 2.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(2.33f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 18.93f, 8.0f) + horizontalLineToRelative(2.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(19.0f, 9.5f) + verticalLineToRelative(1.75f) + horizontalLineToRelative(2.25f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(19.0f, 12.75f) + verticalLineToRelative(1.75f) + horizontalLineToRelative(2.25f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-2.33f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 16.0f, 18.92f) + verticalLineToRelative(2.33f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(14.5f, 19.0f) + horizontalLineToRelative(-1.75f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineTo(12.0f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + lineTo(11.25f, 19.0f) + lineTo(9.5f, 19.0f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-2.32f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 5.08f, 16.0f) + lineTo(2.75f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(5.0f, 14.5f) + verticalLineToRelative(-1.75f) + lineTo(2.75f, 12.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineTo(2.0f, 12.0f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + lineTo(5.0f, 11.25f) + lineTo(5.0f, 9.5f) + lineTo(2.75f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineTo(2.0f, 8.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(2.33f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 8.0f, 5.07f) + lineTo(8.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + lineTo(9.5f, 5.0f) + horizontalLineToRelative(1.75f) + lineTo(11.25f, 2.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineTo(12.0f, 2.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + lineTo(12.75f, 5.0f) + horizontalLineToRelative(1.75f) + lineTo(14.5f, 2.75f) + curveToRelative(0.0f, -0.35f, 0.23f, -0.64f, 0.55f, -0.72f) + lineToRelative(0.1f, -0.02f) + lineToRelative(0.1f, -0.01f) + close() + moveTo(15.25f, 6.5f) + horizontalLineToRelative(-6.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(6.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-6.5f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + close() + moveTo(12.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) + close() + moveTo(12.0f, 10.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + } + } + return _developerBoard!! + } + +private var _developerBoard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DeveloperBoardSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DeveloperBoardSearch.kt new file mode 100644 index 00000000..ebe26ddc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DeveloperBoardSearch.kt @@ -0,0 +1,106 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DeveloperBoardSearch: ImageVector + get() { + if (_developerBoardSearch != null) { + return _developerBoardSearch!! + } + _developerBoardSearch = fluentIcon(name = "Regular.DeveloperBoardSearch") { + fluentPath { + moveTo(17.0f, 1.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) + horizontalLineToRelative(-0.1f) + lineToRelative(-0.1f, 0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.55f, 0.72f) + lineTo(15.5f, 4.0f) + horizontalLineToRelative(-1.75f) + lineTo(13.75f, 1.65f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 13.0f, 1.0f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + lineTo(12.25f, 4.0f) + lineTo(10.5f, 4.0f) + lineTo(10.5f, 1.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + verticalLineToRelative(2.32f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 6.08f, 7.0f) + lineTo(3.65f, 7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + verticalLineToRelative(0.1f) + curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) + lineTo(6.0f, 8.5f) + verticalLineToRelative(1.75f) + lineTo(3.65f, 10.25f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 3.0f, 11.0f) + verticalLineToRelative(0.1f) + curveToRelative(0.03f, 0.16f, 0.1f, 0.3f, 0.2f, 0.4f) + arcToRelative(5.48f, 5.48f, 0.0f, false, true, 4.3f, -0.13f) + lineTo(7.5f, 7.75f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(6.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(11.0f, 16.5f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, -0.2f, 1.5f) + horizontalLineToRelative(1.45f) + verticalLineToRelative(2.35f) + curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + lineTo(13.75f, 18.0f) + horizontalLineToRelative(1.75f) + verticalLineToRelative(2.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + verticalLineToRelative(-2.33f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 19.92f, 15.0f) + horizontalLineToRelative(2.43f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + verticalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) + lineTo(20.0f, 13.5f) + verticalLineToRelative(-1.75f) + horizontalLineToRelative(2.35f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 23.0f, 11.0f) + verticalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.65f) + lineTo(20.0f, 10.25f) + lineTo(20.0f, 8.5f) + horizontalLineToRelative(2.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-2.32f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 17.0f, 4.08f) + lineTo(17.0f, 1.65f) + close() + moveTo(16.0f, 11.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, -6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 6.0f, 0.0f) + close() + moveTo(11.5f, 11.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + moveTo(5.5f, 21.0f) + curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) + lineToRelative(2.62f, 2.61f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.61f, -2.61f) + arcTo(4.5f, 4.5f, 0.0f, true, false, 5.5f, 21.0f) + close() + moveTo(5.5f, 19.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) + close() + } + } + return _developerBoardSearch!! + } + +private var _developerBoardSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DeviceEq.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DeviceEq.kt new file mode 100644 index 00000000..49210b33 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DeviceEq.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DeviceEq: ImageVector + get() { + if (_deviceEq != null) { + return _deviceEq!! + } + _deviceEq = fluentIcon(name = "Regular.DeviceEq") { + fluentPath { + moveTo(12.0f, 3.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(11.25f, 3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(8.25f, 6.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.75f, 0.65f) + verticalLineToRelative(10.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, 0.1f) + lineTo(7.51f, 6.75f) + curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.74f, -0.75f) + close() + moveTo(15.75f, 6.0f) + curveToRelative(0.37f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) + verticalLineToRelative(10.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, 0.1f) + lineTo(15.0f, 6.75f) + curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.74f, -0.75f) + close() + moveTo(4.75f, 9.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-4.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(19.25f, 9.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.75f, 0.65f) + verticalLineToRelative(4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-4.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _deviceEq!! + } + +private var _deviceEq: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DeviceMeetingRoom.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DeviceMeetingRoom.kt new file mode 100644 index 00000000..35910b9e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DeviceMeetingRoom.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DeviceMeetingRoom: ImageVector + get() { + if (_deviceMeetingRoom != null) { + return _deviceMeetingRoom!! + } + _deviceMeetingRoom = fluentIcon(name = "Regular.DeviceMeetingRoom") { + fluentPath { + moveTo(7.07f, 3.0f) + curveToRelative(-1.42f, 0.0f, -2.65f, 0.97f, -2.98f, 2.35f) + lineTo(2.1f, 13.62f) + arcTo(3.55f, 3.55f, 0.0f, false, false, 5.55f, 18.0f) + horizontalLineToRelative(12.9f) + curveToRelative(2.29f, 0.0f, 3.98f, -2.15f, 3.44f, -4.38f) + lineTo(19.9f, 5.35f) + arcTo(3.06f, 3.06f, 0.0f, false, false, 16.93f, 3.0f) + horizontalLineTo(7.07f) + close() + moveTo(5.55f, 5.7f) + curveToRelative(0.17f, -0.7f, 0.8f, -1.2f, 1.52f, -1.2f) + horizontalLineToRelative(9.86f) + curveToRelative(0.72f, 0.0f, 1.35f, 0.5f, 1.51f, 1.2f) + lineToRelative(2.0f, 8.27f) + arcToRelative(2.05f, 2.05f, 0.0f, false, true, -2.0f, 2.53f) + horizontalLineTo(5.55f) + arcToRelative(2.05f, 2.05f, 0.0f, false, true, -2.0f, -2.53f) + lineToRelative(2.0f, -8.27f) + close() + moveTo(6.75f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(6.75f) + close() + } + } + return _deviceMeetingRoom!! + } + +private var _deviceMeetingRoom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DeviceMeetingRoomRemote.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DeviceMeetingRoomRemote.kt new file mode 100644 index 00000000..6cc7ce4b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DeviceMeetingRoomRemote.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DeviceMeetingRoomRemote: ImageVector + get() { + if (_deviceMeetingRoomRemote != null) { + return _deviceMeetingRoomRemote!! + } + _deviceMeetingRoomRemote = fluentIcon(name = "Regular.DeviceMeetingRoomRemote") { + fluentPath { + moveTo(4.1f, 5.35f) + arcTo(3.06f, 3.06f, 0.0f, false, true, 7.06f, 3.0f) + horizontalLineToRelative(9.86f) + curveToRelative(1.42f, 0.0f, 2.65f, 0.97f, 2.98f, 2.35f) + lineToRelative(1.99f, 8.27f) + arcTo(3.55f, 3.55f, 0.0f, false, true, 18.45f, 18.0f) + lineTo(10.5f, 18.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(7.95f) + curveToRelative(1.32f, 0.0f, 2.3f, -1.24f, 2.0f, -2.53f) + lineToRelative(-2.0f, -8.27f) + curveToRelative(-0.17f, -0.7f, -0.8f, -1.2f, -1.52f, -1.2f) + lineTo(7.07f, 4.5f) + curveToRelative(-0.72f, 0.0f, -1.35f, 0.5f, -1.52f, 1.2f) + lineToRelative(-0.67f, 2.8f) + lineTo(3.75f, 8.5f) + curveToRelative(-0.14f, 0.0f, -0.29f, 0.01f, -0.42f, 0.03f) + lineToRelative(0.76f, -3.18f) + close() + moveTo(10.49f, 20.5f) + horizontalLineToRelative(6.76f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + lineTo(10.5f, 19.0f) + verticalLineToRelative(1.25f) + lineToRelative(-0.01f, 0.25f) + close() + moveTo(5.75f, 14.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + moveTo(2.0f, 11.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(4.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-4.0f) + curveTo(2.78f, 22.0f, 2.0f, 21.22f, 2.0f, 20.25f) + verticalLineToRelative(-9.0f) + close() + moveTo(3.75f, 11.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(4.0f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-9.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-4.0f) + close() + } + } + return _deviceMeetingRoomRemote!! + } + +private var _deviceMeetingRoomRemote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Diagram.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Diagram.kt new file mode 100644 index 00000000..f95b3cb1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Diagram.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Diagram: ImageVector + get() { + if (_diagram != null) { + return _diagram!! + } + _diagram = fluentIcon(name = "Regular.Diagram") { + fluentPath { + moveTo(2.0f, 5.25f) + curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) + horizontalLineToRelative(10.5f) + curveTo(17.55f, 2.0f, 19.0f, 3.46f, 19.0f, 5.25f) + verticalLineToRelative(6.03f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -1.22f, -0.28f) + horizontalLineToRelative(-0.28f) + lineTo(17.5f, 5.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(5.25f, 3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(3.37f) + lineTo(7.36f, 20.0f) + lineTo(5.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + lineTo(2.0f, 5.25f) + close() + moveTo(6.75f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-7.5f) + close() + moveTo(7.07f, 12.43f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.68f, -0.43f) + horizontalLineToRelative(10.03f) + curveToRelative(0.52f, 0.0f, 1.01f, 0.23f, 1.34f, 0.62f) + lineToRelative(3.7f, 4.4f) + curveToRelative(0.24f, 0.28f, 0.24f, 0.68f, 0.0f, 0.96f) + lineToRelative(-3.7f, 4.4f) + curveToRelative(-0.33f, 0.4f, -0.82f, 0.62f, -1.34f, 0.62f) + lineTo(7.75f, 23.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.57f, -1.23f) + lineToRelative(3.59f, -4.27f) + lineToRelative(-3.6f, -4.27f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -0.8f) + close() + moveTo(9.37f, 13.5f) + lineTo(12.32f, 17.02f) + curveToRelative(0.24f, 0.28f, 0.24f, 0.68f, 0.0f, 0.96f) + lineTo(9.36f, 21.5f) + horizontalLineToRelative(8.42f) + curveToRelative(0.08f, 0.0f, 0.15f, -0.03f, 0.2f, -0.09f) + lineToRelative(3.29f, -3.91f) + lineToRelative(-3.3f, -3.91f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.19f, -0.09f) + lineTo(9.36f, 13.5f) + close() + moveTo(6.74f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + close() + } + } + return _diagram!! + } + +private var _diagram: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Dialpad.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Dialpad.kt new file mode 100644 index 00000000..e725132c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Dialpad.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Dialpad: ImageVector + get() { + if (_dialpad != null) { + return _dialpad!! + } + _dialpad = fluentIcon(name = "Regular.Dialpad") { + fluentPath { + moveTo(12.0f, 17.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(12.0f, 12.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(17.0f, 12.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(7.0f, 12.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(12.0f, 7.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(17.0f, 7.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(7.0f, 7.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(12.0f, 2.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(17.0f, 2.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(7.0f, 2.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + } + } + return _dialpad!! + } + +private var _dialpad: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DialpadOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DialpadOff.kt new file mode 100644 index 00000000..4433ccd0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DialpadOff.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DialpadOff: ImageVector + get() { + if (_dialpadOff != null) { + return _dialpadOff!! + } + _dialpadOff = fluentIcon(name = "Regular.DialpadOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(4.5f, 4.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 1.5f, 1.5f) + lineToRelative(3.5f, 3.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 1.5f, 1.5f) + lineToRelative(7.5f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(18.25f, 14.0f) + curveToRelative(0.0f, 0.3f, -0.1f, 0.57f, -0.28f, 0.79f) + lineToRelative(-1.76f, -1.76f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.04f, 0.97f) + close() + moveTo(13.25f, 9.0f) + curveToRelative(0.0f, 0.3f, -0.1f, 0.57f, -0.28f, 0.79f) + lineToRelative(-1.76f, -1.76f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.04f, 0.97f) + close() + moveTo(8.25f, 4.0f) + curveToRelative(0.0f, 0.3f, -0.1f, 0.58f, -0.28f, 0.79f) + lineTo(6.21f, 3.03f) + curveToRelative(0.22f, -0.17f, 0.5f, -0.28f, 0.8f, -0.28f) + curveToRelative(0.68f, 0.0f, 1.24f, 0.56f, 1.24f, 1.25f) + close() + moveTo(12.0f, 17.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(7.0f, 12.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(17.0f, 7.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(12.0f, 2.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(17.0f, 2.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + } + } + return _dialpadOff!! + } + +private var _dialpadOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Diamond.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Diamond.kt new file mode 100644 index 00000000..a439e256 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Diamond.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Diamond: ImageVector + get() { + if (_diamond != null) { + return _diamond!! + } + _diamond = fluentIcon(name = "Regular.Diamond") { + fluentPath { + moveTo(2.66f, 13.6f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -3.19f) + lineToRelative(7.75f, -7.75f) + curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.0f) + lineToRelative(7.75f, 7.75f) + curveToRelative(0.88f, 0.88f, 0.88f, 2.3f, 0.0f, 3.18f) + lineToRelative(-7.75f, 7.75f) + curveToRelative(-0.88f, 0.88f, -2.3f, 0.88f, -3.18f, 0.0f) + lineTo(2.66f, 13.6f) + close() + moveTo(3.72f, 11.47f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(7.75f, 7.75f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(7.75f, -7.75f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-7.75f, -7.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-7.75f, 7.75f) + close() + } + } + return _diamond!! + } + +private var _diamond: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Directions.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Directions.kt new file mode 100644 index 00000000..844a000c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Directions.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Directions: ImageVector + get() { + if (_directions != null) { + return _directions!! + } + _directions = fluentIcon(name = "Regular.Directions") { + fluentPath { + moveToRelative(14.3f, 2.99f) + lineToRelative(6.72f, 6.71f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, 4.6f) + lineToRelative(-6.72f, 6.72f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -4.6f, 0.0f) + lineTo(2.98f, 14.3f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.6f) + lineTo(9.7f, 3.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 4.6f, 0.0f) + close() + moveTo(10.76f, 4.05f) + lineTo(4.04f, 10.76f) + curveToRelative(-0.68f, 0.69f, -0.68f, 1.8f, 0.0f, 2.48f) + lineToRelative(6.72f, 6.72f) + curveToRelative(0.69f, 0.68f, 1.8f, 0.68f, 2.48f, 0.0f) + lineToRelative(6.71f, -6.72f) + curveToRelative(0.69f, -0.69f, 0.69f, -1.8f, 0.0f, -2.48f) + lineToRelative(-6.71f, -6.71f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.48f, 0.0f) + close() + moveTo(12.46f, 7.31f) + lineTo(12.53f, 7.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.97f) + lineToRelative(0.07f, -0.09f) + lineToRelative(0.72f, -0.72f) + horizontalLineToRelative(-1.5f) + curveToRelative(-0.65f, 0.0f, -1.18f, 0.5f, -1.24f, 1.12f) + lineToRelative(-0.01f, 0.13f) + lineTo(10.5f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-3.35f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.58f, -2.74f) + horizontalLineToRelative(0.17f) + lineToRelative(1.5f, -0.01f) + lineToRelative(-0.72f, -0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.97f) + lineToRelative(0.07f, -0.09f) + lineToRelative(-0.07f, 0.09f) + close() + } + } + return _directions!! + } + +private var _directions: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Dishwasher.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Dishwasher.kt new file mode 100644 index 00000000..cc32cd98 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Dishwasher.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Dishwasher: ImageVector + get() { + if (_dishwasher != null) { + return _dishwasher!! + } + _dishwasher = fluentIcon(name = "Regular.Dishwasher") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + lineTo(3.0f, 10.0f) + horizontalLineToRelative(1.5f) + verticalLineToRelative(-0.5f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(8.25f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(7.0f, 19.5f) + verticalLineToRelative(0.02f) + curveToRelative(0.77f, 0.1f, 1.37f, 0.71f, 1.48f, 1.48f) + horizontalLineToRelative(9.27f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(19.5f, 8.0f) + horizontalLineToRelative(-15.0f) + lineTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(19.5f, 8.0f) + close() + moveTo(9.0f, 6.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(12.75f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + close() + moveTo(2.0f, 11.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 6.0f, 16.91f) + verticalLineToRelative(3.59f) + horizontalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.75f) + verticalLineToRelative(-3.59f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 13.75f) + verticalLineToRelative(-2.0f) + close() + } + } + return _dishwasher!! + } + +private var _dishwasher: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DismissCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DismissCircle.kt new file mode 100644 index 00000000..e0492bc8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DismissCircle.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DismissCircle: ImageVector + get() { + if (_dismissCircle != null) { + return _dismissCircle!! + } + _dismissCircle = fluentIcon(name = "Regular.DismissCircle") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) + close() + moveTo(15.45f, 8.4f) + lineTo(15.53f, 8.47f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineTo(13.06f, 12.0f) + lineToRelative(2.47f, 2.47f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineTo(12.0f, 13.06f) + lineToRelative(-2.47f, 2.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineTo(10.94f, 12.0f) + lineTo(8.47f, 9.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + lineTo(12.0f, 10.94f) + lineToRelative(2.47f, -2.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + close() + } + } + return _dismissCircle!! + } + +private var _dismissCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DismissSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DismissSquare.kt new file mode 100644 index 00000000..e361c44e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DismissSquare.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DismissSquare: ImageVector + get() { + if (_dismissSquare != null) { + return _dismissSquare!! + } + _dismissSquare = fluentIcon(name = "Regular.DismissSquare") { + fluentPath { + moveTo(8.22f, 8.22f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineTo(12.0f, 10.94f) + lineToRelative(2.72f, -2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineTo(13.06f, 12.0f) + lineToRelative(2.72f, 2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(12.0f, 13.06f) + lineToRelative(-2.72f, 2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineTo(10.94f, 12.0f) + lineTo(8.22f, 9.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineTo(6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + horizontalLineTo(6.25f) + close() + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineTo(6.25f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineTo(6.25f) + close() + } + } + return _dismissSquare!! + } + +private var _dismissSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Diversity.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Diversity.kt new file mode 100644 index 00000000..0fc47910 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Diversity.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Diversity: ImageVector + get() { + if (_diversity != null) { + return _diversity!! + } + _diversity = fluentIcon(name = "Regular.Diversity") { + fluentPath { + moveTo(13.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(2.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(2.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(13.0f, 6.0f) + close() + moveTo(5.55f, 3.9f) + curveToRelative(0.6f, -1.2f, 2.3f, -1.2f, 2.9f, 0.0f) + lineToRelative(2.37f, 4.71f) + arcTo(1.64f, 1.64f, 0.0f, false, true, 9.37f, 11.0f) + lineTo(4.63f, 11.0f) + curveToRelative(-1.22f, 0.0f, -2.0f, -1.3f, -1.45f, -2.39f) + lineTo(5.55f, 3.9f) + close() + moveTo(6.94f, 4.52f) + curveToRelative(-0.01f, 0.0f, -0.03f, 0.01f, -0.05f, 0.05f) + lineTo(4.52f, 9.3f) + arcToRelative(0.14f, 0.14f, 0.0f, false, false, -0.02f, 0.07f) + arcToRelative(0.16f, 0.16f, 0.0f, false, false, 0.07f, 0.13f) + arcToRelative(0.1f, 0.1f, 0.0f, false, false, 0.06f, 0.01f) + horizontalLineToRelative(4.74f) + arcToRelative(0.1f, 0.1f, 0.0f, false, false, 0.06f, -0.01f) + lineToRelative(0.05f, -0.05f) + arcToRelative(0.16f, 0.16f, 0.0f, false, false, 0.02f, -0.08f) + curveToRelative(0.0f, -0.01f, 0.0f, -0.04f, -0.02f, -0.07f) + lineTo(7.11f, 4.57f) + curveToRelative(-0.02f, -0.04f, -0.04f, -0.05f, -0.05f, -0.05f) + arcTo(0.13f, 0.13f, 0.0f, false, false, 7.0f, 4.5f) + curveToRelative(-0.03f, 0.0f, -0.05f, 0.0f, -0.06f, 0.02f) + close() + moveTo(11.0f, 17.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, -8.0f, 0.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 8.0f, 0.0f) + close() + moveTo(9.5f, 17.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -3.66f, -2.22f) + lineToRelative(3.38f, 3.38f) + curveToRelative(0.18f, -0.35f, 0.28f, -0.74f, 0.28f, -1.16f) + close() + moveTo(7.0f, 19.5f) + curveToRelative(0.42f, 0.0f, 0.81f, -0.1f, 1.16f, -0.28f) + lineToRelative(-3.38f, -3.38f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 7.0f, 19.5f) + close() + moveTo(16.52f, 13.12f) + curveToRelative(0.3f, -0.16f, 0.66f, -0.16f, 0.96f, 0.0f) + lineToRelative(2.97f, 1.53f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.55f, 0.89f) + verticalLineToRelative(2.92f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.55f, 0.89f) + lineToRelative(-2.97f, 1.53f) + curveToRelative(-0.3f, 0.16f, -0.66f, 0.16f, -0.96f, 0.0f) + lineToRelative(-2.97f, -1.53f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.55f, -0.89f) + verticalLineToRelative(-2.92f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.55f, -0.89f) + lineToRelative(2.97f, -1.53f) + close() + moveTo(14.5f, 15.85f) + verticalLineToRelative(2.3f) + lineToRelative(2.5f, 1.3f) + lineToRelative(2.5f, -1.3f) + verticalLineToRelative(-2.3f) + lineToRelative(-2.5f, -1.3f) + lineToRelative(-2.5f, 1.3f) + close() + } + } + return _diversity!! + } + +private var _diversity: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DividerShort.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DividerShort.kt new file mode 100644 index 00000000..cf8808bb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DividerShort.kt @@ -0,0 +1,28 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DividerShort: ImageVector + get() { + if (_dividerShort != null) { + return _dividerShort!! + } + _dividerShort = fluentIcon(name = "Regular.DividerShort") { + fluentPath { + moveTo(11.25f, 4.75f) + verticalLineToRelative(14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineTo(4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + close() + } + } + return _dividerShort!! + } + +private var _dividerShort: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DividerTall.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DividerTall.kt new file mode 100644 index 00000000..832b6b7e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DividerTall.kt @@ -0,0 +1,28 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DividerTall: ImageVector + get() { + if (_dividerTall != null) { + return _dividerTall!! + } + _dividerTall = fluentIcon(name = "Regular.DividerTall") { + fluentPath { + moveTo(11.25f, 2.75f) + verticalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineTo(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + close() + } + } + return _dividerTall!! + } + +private var _dividerTall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Dock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Dock.kt new file mode 100644 index 00000000..5bc86f00 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Dock.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Dock: ImageVector + get() { + if (_dock != null) { + return _dock!! + } + _dock = fluentIcon(name = "Regular.Dock") { + fluentPath { + moveTo(4.8f, 10.0f) + horizontalLineToRelative(4.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.49f) + lineTo(4.8f, 11.49f) + curveToRelative(-0.68f, 0.0f, -1.2f, 0.46f, -1.27f, 1.0f) + verticalLineToRelative(0.12f) + lineToRelative(-0.03f, 4.78f) + curveToRelative(0.0f, 0.56f, 0.49f, 1.04f, 1.14f, 1.1f) + lineTo(19.23f, 18.49f) + curveToRelative(0.67f, 0.0f, 1.2f, -0.44f, 1.26f, -1.0f) + lineToRelative(0.01f, -0.1f) + lineToRelative(0.02f, -4.78f) + curveToRelative(0.0f, -0.56f, -0.49f, -1.05f, -1.14f, -1.1f) + lineToRelative(-0.13f, -0.01f) + horizontalLineToRelative(-4.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(4.8f) + arcToRelative(2.7f, 2.7f, 0.0f, false, true, 2.77f, 2.44f) + verticalLineToRelative(0.17f) + lineTo(22.0f, 17.39f) + curveToRelative(0.0f, 1.4f, -1.16f, 2.52f, -2.6f, 2.6f) + lineTo(4.77f, 19.99f) + arcToRelative(2.7f, 2.7f, 0.0f, false, true, -2.76f, -2.44f) + lineTo(2.0f, 17.38f) + lineToRelative(0.02f, -4.77f) + curveToRelative(0.0f, -1.4f, 1.16f, -2.52f, 2.6f, -2.6f) + lineToRelative(0.17f, -0.01f) + horizontalLineToRelative(4.7f) + horizontalLineToRelative(-4.7f) + close() + moveTo(12.45f, 3.15f) + lineTo(12.53f, 3.22f) + lineTo(16.46f, 7.14f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.14f) + lineToRelative(-0.09f, -0.07f) + lineToRelative(-2.65f, -2.66f) + verticalLineToRelative(9.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(11.24f, 5.57f) + lineTo(8.61f, 8.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.09f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.09f) + lineToRelative(3.93f, -3.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + close() + } + } + return _dock!! + } + +private var _dock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DockRow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DockRow.kt new file mode 100644 index 00000000..6ec50005 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DockRow.kt @@ -0,0 +1,142 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DockRow: ImageVector + get() { + if (_dockRow != null) { + return _dockRow!! + } + _dockRow = fluentIcon(name = "Regular.DockRow") { + fluentPath { + moveTo(20.25f, 12.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.74f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.96f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.5f) + close() + moveTo(6.25f, 12.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.74f) + verticalLineToRelative(2.5f) + curveTo(8.0f, 17.21f, 7.22f, 18.0f, 6.25f, 18.0f) + horizontalLineToRelative(-2.5f) + curveTo(2.78f, 18.0f, 2.0f, 17.21f, 2.0f, 16.24f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.96f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.5f) + close() + moveTo(13.25f, 12.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.74f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.5f) + curveTo(9.78f, 18.0f, 9.0f, 17.21f, 9.0f, 16.24f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.96f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.5f) + close() + moveTo(20.25f, 13.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.24f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(2.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(6.25f, 13.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.24f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(2.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(13.25f, 13.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.24f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(2.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(13.25f, 5.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.74f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.5f) + curveTo(9.78f, 11.0f, 9.0f, 10.21f, 9.0f, 9.24f) + verticalLineToRelative(-2.5f) + curveTo(9.0f, 5.78f, 9.78f, 5.0f, 10.75f, 5.0f) + horizontalLineToRelative(2.5f) + close() + moveTo(20.25f, 5.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.74f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.96f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.5f) + close() + moveTo(6.25f, 5.0f) + curveTo(7.22f, 5.0f, 8.0f, 5.77f, 8.0f, 6.73f) + verticalLineToRelative(2.5f) + curveTo(8.0f, 10.21f, 7.22f, 11.0f, 6.25f, 11.0f) + horizontalLineToRelative(-2.5f) + curveTo(2.78f, 11.0f, 2.0f, 10.21f, 2.0f, 9.24f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) + horizontalLineToRelative(2.65f) + close() + moveTo(13.25f, 6.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.24f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(2.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(20.25f, 6.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.24f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(2.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(6.25f, 6.5f) + lineTo(3.69f, 6.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.19f, 0.24f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(2.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + } + } + return _dockRow!! + } + +private var _dockRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Doctor.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Doctor.kt new file mode 100644 index 00000000..69359537 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Doctor.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Doctor: ImageVector + get() { + if (_doctor != null) { + return _doctor!! + } + _doctor = fluentIcon(name = "Regular.Doctor") { + fluentPath { + moveTo(9.75f, 4.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(4.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(4.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.0f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-4.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-4.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-4.5f) + close() + moveTo(8.0f, 4.75f) + curveTo(8.0f, 3.78f, 8.78f, 3.0f, 9.75f, 3.0f) + horizontalLineToRelative(4.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineTo(8.0f) + horizontalLineToRelative(3.25f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineTo(16.0f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-4.5f) + curveTo(8.78f, 21.0f, 8.0f, 20.22f, 8.0f, 19.25f) + verticalLineTo(16.0f) + horizontalLineTo(4.75f) + curveTo(3.78f, 16.0f, 3.0f, 15.22f, 3.0f, 14.25f) + verticalLineToRelative(-4.5f) + curveTo(3.0f, 8.78f, 3.78f, 8.0f, 4.75f, 8.0f) + horizontalLineTo(8.0f) + verticalLineTo(4.75f) + close() + } + } + return _doctor!! + } + +private var _doctor: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Document100.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Document100.kt new file mode 100644 index 00000000..f92d3544 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Document100.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Document100: ImageVector + get() { + if (_document100 != null) { + return _document100!! + } + _document100 = fluentIcon(name = "Regular.Document100") { + fluentPath { + moveTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.17f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.42f, 0.59f) + lineTo(19.4f, 8.4f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 20.0f, 9.83f) + lineTo(20.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-2.05f) + curveToRelative(0.42f, -0.41f, 0.73f, -0.92f, 0.9f, -1.5f) + lineTo(18.0f, 20.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(18.5f, 10.0f) + lineTo(14.0f, 10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(12.0f, 3.5f) + lineTo(6.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(10.63f) + curveToRelative(-0.24f, 0.16f, -0.45f, 0.35f, -0.64f, 0.57f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.86f, -0.97f) + lineTo(4.0f, 4.0f) + close() + moveTo(13.5f, 4.62f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(3.38f) + lineTo(13.5f, 4.62f) + close() + moveTo(4.0f, 15.94f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.74f, -0.95f) + curveToRelative(-0.31f, -0.09f, -0.8f, -0.06f, -1.11f, 0.37f) + curveToRelative(-0.32f, 0.44f, -0.76f, 0.94f, -1.28f, 1.24f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.76f, 1.3f) + curveToRelative(0.32f, -0.2f, 0.61f, -0.43f, 0.87f, -0.67f) + verticalLineToRelative(4.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-5.31f) + close() + moveTo(5.0f, 17.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + verticalLineToRelative(2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(7.5f, 16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + close() + moveTo(13.5f, 15.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.5f, 2.5f) + verticalLineToRelative(2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 5.0f, 0.0f) + verticalLineToRelative(-2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.5f, -2.5f) + close() + moveTo(12.5f, 17.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-2.0f) + close() + } + } + return _document100!! + } + +private var _document100: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentAdd.kt new file mode 100644 index 00000000..e0189118 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentAdd.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentAdd: ImageVector + get() { + if (_documentAdd != null) { + return _documentAdd!! + } + _documentAdd = fluentIcon(name = "Regular.DocumentAdd") { + fluentPath { + moveTo(18.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-5.73f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, 1.5f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(13.6f, 2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.5f) + curveToRelative(0.47f, -0.2f, 0.98f, -0.34f, 1.5f, -0.42f) + lineTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + close() + moveTo(13.5f, 4.62f) + lineTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(7.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(6.0f, 18.0f) + lineTo(3.5f, 18.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(6.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(7.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(7.0f, 18.0f) + close() + } + } + return _documentAdd!! + } + +private var _documentAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentArrowLeft.kt new file mode 100644 index 00000000..6da1a9e3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentArrowLeft.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentArrowLeft: ImageVector + get() { + if (_documentArrowLeft != null) { + return _documentArrowLeft!! + } + _documentArrowLeft = fluentIcon(name = "Regular.DocumentArrowLeft") { + fluentPath { + moveTo(18.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-5.73f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, 1.5f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(13.6f, 2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.5f) + curveToRelative(0.47f, -0.2f, 0.98f, -0.34f, 1.5f, -0.42f) + lineTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + close() + moveTo(13.5f, 4.62f) + lineTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(9.5f, 18.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + lineTo(4.7f, 17.0f) + lineToRelative(1.65f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineTo(4.71f, 18.0f) + lineTo(9.5f, 18.0f) + close() + } + } + return _documentArrowLeft!! + } + +private var _documentArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentArrowRight.kt new file mode 100644 index 00000000..77c718be --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentArrowRight.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentArrowRight: ImageVector + get() { + if (_documentArrowRight != null) { + return _documentArrowRight!! + } + _documentArrowRight = fluentIcon(name = "Regular.DocumentArrowRight") { + fluentPath { + moveTo(18.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-5.73f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, 1.5f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(13.6f, 2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.5f) + curveToRelative(0.47f, -0.2f, 0.98f, -0.34f, 1.5f, -0.42f) + lineTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + close() + moveTo(13.5f, 4.62f) + lineTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + close() + } + fluentPath { + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(3.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(8.29f, 17.0f) + horizontalLineTo(3.5f) + close() + } + } + return _documentArrowRight!! + } + +private var _documentArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentBorder.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentBorder.kt new file mode 100644 index 00000000..b86651be --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentBorder.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentBorder: ImageVector + get() { + if (_documentBorder != null) { + return _documentBorder!! + } + _documentBorder = fluentIcon(name = "Regular.DocumentBorder") { + fluentPath { + moveTo(7.25f, 2.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 4.0f, 5.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.55f, 5.46f, 22.0f, 7.25f, 22.0f) + horizontalLineToRelative(9.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(20.0f, 5.25f) + curveTo(20.0f, 3.45f, 18.54f, 2.0f, 16.75f, 2.0f) + horizontalLineToRelative(-9.5f) + close() + moveTo(5.5f, 5.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(9.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-9.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(5.5f, 5.25f) + close() + moveTo(8.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + lineTo(17.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(8.0f, 5.0f) + close() + moveTo(8.5f, 17.5f) + verticalLineToRelative(-11.0f) + horizontalLineToRelative(7.0f) + verticalLineToRelative(11.0f) + horizontalLineToRelative(-7.0f) + close() + } + } + return _documentBorder!! + } + +private var _documentBorder: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentBorderPrint.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentBorderPrint.kt new file mode 100644 index 00000000..f8d45393 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentBorderPrint.kt @@ -0,0 +1,99 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentBorderPrint: ImageVector + get() { + if (_documentBorderPrint != null) { + return _documentBorderPrint!! + } + _documentBorderPrint = fluentIcon(name = "Regular.DocumentBorderPrint") { + fluentPath { + moveTo(7.25f, 2.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 4.0f, 5.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.55f, 5.46f, 22.0f, 7.25f, 22.0f) + horizontalLineToRelative(5.85f) + arcToRelative(2.74f, 2.74f, 0.0f, false, true, -0.09f, -0.5f) + lineTo(13.0f, 21.5f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.73f, -1.0f) + lineTo(7.25f, 20.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(5.5f, 5.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(9.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(18.5f, 11.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.26f, 0.0f, 0.51f, 0.04f, 0.75f, 0.1f) + lineTo(20.0f, 5.25f) + curveTo(20.0f, 3.45f, 18.54f, 2.0f, 16.75f, 2.0f) + horizontalLineToRelative(-9.5f) + close() + moveTo(17.0f, 6.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(-1.25f) + lineToRelative(-0.25f, 0.01f) + lineTo(15.5f, 6.5f) + horizontalLineToRelative(-7.0f) + verticalLineToRelative(11.0f) + lineTo(11.0f, 17.5f) + lineTo(11.0f, 19.0f) + lineTo(8.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(7.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + close() + moveTo(14.0f, 13.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(3.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(0.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(12.0f, 16.0f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(0.5f) + verticalLineToRelative(-0.75f) + close() + moveTo(19.5f, 13.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-0.75f) + close() + moveTo(15.5f, 19.25f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-2.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + close() + } + } + return _documentBorderPrint!! + } + +private var _documentBorderPrint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentBriefcase.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentBriefcase.kt new file mode 100644 index 00000000..3bbbbfa2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentBriefcase.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentBriefcase: ImageVector + get() { + if (_documentBriefcase != null) { + return _documentBriefcase!! + } + _documentBriefcase = fluentIcon(name = "Regular.DocumentBriefcase") { + fluentPath { + moveTo(18.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 0.17f, -0.02f, 0.34f, -0.05f, 0.5f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(13.6f, 2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.1f) + curveToRelative(0.24f, -0.06f, 0.49f, -0.1f, 0.75f, -0.1f) + horizontalLineToRelative(0.75f) + lineTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + close() + moveTo(13.5f, 4.62f) + lineTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + close() + moveTo(3.0f, 15.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(8.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(10.0f, 15.0f) + verticalLineToRelative(-1.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.5f) + curveTo(3.78f, 12.0f, 3.0f, 12.78f, 3.0f, 13.75f) + lineTo(3.0f, 15.0f) + close() + moveTo(4.5f, 13.75f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + lineTo(8.5f, 15.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-1.25f) + close() + } + } + return _documentBriefcase!! + } + +private var _documentBriefcase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentBulletList.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentBulletList.kt new file mode 100644 index 00000000..1de154e9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentBulletList.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentBulletList: ImageVector + get() { + if (_documentBulletList != null) { + return _documentBulletList!! + } + _documentBulletList = fluentIcon(name = "Regular.DocumentBulletList") { + fluentPath { + moveTo(7.0f, 12.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(7.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(7.0f, 18.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(10.75f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.5f) + close() + moveTo(10.0f, 15.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(10.75f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.5f) + close() + moveTo(19.41f, 8.41f) + lineTo(13.6f, 2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(16.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + close() + moveTo(18.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + lineTo(6.0f, 20.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + close() + moveTo(13.5f, 4.62f) + lineTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + close() + } + } + return _documentBulletList!! + } + +private var _documentBulletList: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentBulletListArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentBulletListArrowLeft.kt new file mode 100644 index 00000000..19fcc72d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentBulletListArrowLeft.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentBulletListArrowLeft: ImageVector + get() { + if (_documentBulletListArrowLeft != null) { + return _documentBulletListArrowLeft!! + } + _documentBulletListArrowLeft = fluentIcon(name = "Regular.DocumentBulletListArrowLeft") { + fluentPath { + moveTo(10.75f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.72f, 0.54f) + curveToRelative(0.42f, 0.28f, 0.81f, 0.6f, 1.16f, 0.96f) + horizontalLineToRelative(5.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.5f) + close() + moveTo(5.5f, 4.0f) + verticalLineToRelative(7.08f) + curveToRelative(-0.52f, 0.08f, -1.03f, 0.22f, -1.5f, 0.42f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.17f) + arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.08f, 0.0f) + lineToRelative(0.06f, 0.01f) + curveToRelative(0.22f, 0.02f, 0.43f, 0.06f, 0.63f, 0.14f) + lineToRelative(0.16f, 0.09f) + curveToRelative(0.02f, 0.0f, 0.04f, 0.02f, 0.05f, 0.03f) + lineToRelative(0.05f, 0.02f) + lineToRelative(0.08f, 0.05f) + arcToRelative(2.07f, 2.07f, 0.0f, false, true, 0.3f, 0.25f) + lineToRelative(5.83f, 5.82f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 20.0f, 9.83f) + lineTo(20.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-6.81f) + curveToRelative(0.43f, -0.44f, 0.8f, -0.95f, 1.08f, -1.5f) + lineTo(18.0f, 20.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(18.5f, 10.0f) + lineTo(14.0f, 10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(12.0f, 3.5f) + lineTo(6.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + close() + moveTo(16.25f, 19.0f) + horizontalLineToRelative(-3.42f) + curveToRelative(0.11f, -0.48f, 0.17f, -0.98f, 0.17f, -1.5f) + horizontalLineToRelative(3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(16.25f, 16.0f) + horizontalLineToRelative(-3.42f) + arcToRelative(6.46f, 6.46f, 0.0f, false, false, -0.56f, -1.5f) + horizontalLineToRelative(3.98f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(13.5f, 4.62f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(3.38f) + lineTo(13.5f, 4.62f) + close() + moveTo(6.5f, 23.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, 11.0f) + close() + moveTo(9.5f, 18.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + lineTo(4.7f, 17.0f) + lineToRelative(1.65f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineTo(4.71f, 18.0f) + lineTo(9.5f, 18.0f) + close() + } + } + return _documentBulletListArrowLeft!! + } + +private var _documentBulletListArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentBulletListClock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentBulletListClock.kt new file mode 100644 index 00000000..6cb6bd2c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentBulletListClock.kt @@ -0,0 +1,101 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentBulletListClock: ImageVector + get() { + if (_documentBulletListClock != null) { + return _documentBulletListClock!! + } + _documentBulletListClock = fluentIcon(name = "Regular.DocumentBulletListClock") { + fluentPath { + moveTo(19.41f, 8.41f) + lineTo(13.6f, 2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(16.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(6.81f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, -1.5f) + lineTo(6.0f, 20.51f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(1.08f) + curveToRelative(0.52f, 0.08f, 1.03f, 0.22f, 1.5f, 0.42f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + close() + moveTo(13.5f, 4.62f) + lineToRelative(3.88f, 3.88f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + close() + moveTo(10.75f, 17.5f) + lineTo(11.0f, 17.5f) + curveToRelative(0.0f, 0.52f, 0.06f, 1.02f, 0.17f, 1.5f) + horizontalLineToRelative(-0.42f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(11.17f, 16.0f) + curveToRelative(0.13f, -0.53f, 0.32f, -1.03f, 0.56f, -1.5f) + horizontalLineToRelative(-0.98f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.42f) + close() + moveTo(12.81f, 13.0f) + arcTo(6.51f, 6.51f, 0.0f, false, true, 15.0f, 11.5f) + horizontalLineToRelative(-4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.06f) + close() + moveTo(7.75f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(7.0f, 15.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(7.0f, 18.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(17.22f, 17.92f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.22f, -0.5f) + lineTo(17.0f, 13.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-2.94f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.34f, -0.08f) + close() + } + } + return _documentBulletListClock!! + } + +private var _documentBulletListClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentBulletListCube.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentBulletListCube.kt new file mode 100644 index 00000000..e908e6cf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentBulletListCube.kt @@ -0,0 +1,106 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentBulletListCube: ImageVector + get() { + if (_documentBulletListCube != null) { + return _documentBulletListCube!! + } + _documentBulletListCube = fluentIcon(name = "Regular.DocumentBulletListCube") { + fluentPath { + moveToRelative(10.52f, 12.96f) + lineToRelative(-0.2f, -0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.43f, -1.36f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.23f, -0.04f) + close() + moveTo(12.0f, 16.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.26f, -0.04f, -0.51f, -0.12f, -0.75f) + horizontalLineToRelative(4.37f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(12.0f, 16.0f) + close() + moveTo(12.0f, 19.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(12.0f, 19.0f) + close() + moveTo(5.5f, 11.05f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -0.62f, 0.21f) + lineTo(4.0f, 11.7f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.17f) + arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.08f, 0.0f) + lineToRelative(0.06f, 0.01f) + curveToRelative(0.22f, 0.02f, 0.43f, 0.06f, 0.63f, 0.14f) + lineToRelative(0.16f, 0.09f) + curveToRelative(0.02f, 0.0f, 0.04f, 0.02f, 0.05f, 0.03f) + lineToRelative(0.05f, 0.02f) + lineToRelative(0.08f, 0.05f) + arcToRelative(2.07f, 2.07f, 0.0f, false, true, 0.3f, 0.25f) + lineToRelative(5.83f, 5.82f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 20.0f, 9.83f) + lineTo(20.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-7.4f) + lineToRelative(0.02f, -0.01f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 1.27f, -1.49f) + lineTo(18.0f, 20.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(18.5f, 10.0f) + lineTo(14.0f, 10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(12.0f, 3.5f) + lineTo(6.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(7.05f) + close() + moveTo(17.38f, 8.5f) + lineTo(13.5f, 4.62f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(3.38f) + close() + moveTo(10.18f, 13.9f) + lineTo(6.68f, 12.16f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -1.35f, 0.0f) + lineToRelative(-3.5f, 1.75f) + curveToRelative(-0.5f, 0.25f, -0.83f, 0.77f, -0.83f, 1.34f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.57f, 0.32f, 1.09f, 0.83f, 1.34f) + lineToRelative(3.5f, 1.75f) + curveToRelative(0.42f, 0.22f, 0.92f, 0.22f, 1.34f, 0.0f) + lineToRelative(3.5f, -1.75f) + curveToRelative(0.5f, -0.25f, 0.83f, -0.77f, 0.83f, -1.34f) + verticalLineToRelative(-4.5f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -0.83f, -1.34f) + close() + moveTo(2.55f, 15.28f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.67f, -0.23f) + lineTo(6.0f, 16.45f) + lineToRelative(2.78f, -1.4f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.44f, 0.9f) + lineTo(6.5f, 17.3f) + verticalLineToRelative(3.19f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + verticalLineToRelative(-3.2f) + lineToRelative(-2.72f, -1.35f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.23f, -0.67f) + close() + } + } + return _documentBulletListCube!! + } + +private var _documentBulletListCube: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentBulletListMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentBulletListMultiple.kt new file mode 100644 index 00000000..3ad48f25 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentBulletListMultiple.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentBulletListMultiple: ImageVector + get() { + if (_documentBulletListMultiple != null) { + return _documentBulletListMultiple!! + } + _documentBulletListMultiple = fluentIcon(name = "Regular.DocumentBulletListMultiple") { + fluentPath { + moveTo(7.75f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(7.0f, 15.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(10.0f, 12.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(10.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.05f) + close() + moveTo(6.25f, 2.0f) + curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) + verticalLineToRelative(13.0f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(9.0f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(17.5f, 8.87f) + curveToRelative(0.0f, -0.6f, -0.24f, -1.17f, -0.66f, -1.6f) + lineToRelative(-4.62f, -4.61f) + curveToRelative(-0.42f, -0.42f, -1.0f, -0.66f, -1.59f, -0.66f) + lineTo(6.25f, 2.0f) + close() + moveTo(5.5f, 4.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.25f) + verticalLineToRelative(3.25f) + curveTo(10.5f, 7.99f, 11.51f, 9.0f, 12.75f, 9.0f) + lineTo(16.0f, 9.0f) + verticalLineToRelative(8.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-13.0f) + close() + moveTo(12.0f, 6.75f) + lineTo(12.0f, 4.56f) + lineToRelative(2.94f, 2.94f) + horizontalLineToRelative(-2.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(8.75f, 22.0f) + curveToRelative(-0.98f, 0.0f, -1.81f, -0.63f, -2.12f, -1.5f) + horizontalLineToRelative(8.62f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(18.5f, 8.94f) + lineToRelative(0.84f, 0.84f) + curveToRelative(0.42f, 0.42f, 0.66f, 1.0f, 0.66f, 1.59f) + verticalLineToRelative(5.88f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 15.25f, 22.0f) + horizontalLineToRelative(-6.5f) + close() + } + } + return _documentBulletListMultiple!! + } + +private var _documentBulletListMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentBulletListOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentBulletListOff.kt new file mode 100644 index 00000000..1e61db08 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentBulletListOff.kt @@ -0,0 +1,102 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentBulletListOff: ImageVector + get() { + if (_documentBulletListOff != null) { + return _documentBulletListOff!! + } + _documentBulletListOff = fluentIcon(name = "Regular.DocumentBulletListOff") { + fluentPath { + moveTo(7.0f, 12.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(7.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(7.0f, 18.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(4.0f, 5.06f) + lineTo(2.22f, 3.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(18.5f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineToRelative(-0.92f, -0.92f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 18.0f, 22.0f) + lineTo(6.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(4.0f, 5.06f) + close() + moveTo(18.5f, 19.56f) + lineTo(16.97f, 18.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.72f, 0.97f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(5.5f) + curveToRelative(0.08f, 0.0f, 0.15f, 0.01f, 0.22f, 0.03f) + lineTo(14.94f, 16.0f) + horizontalLineToRelative(-4.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.69f) + lineToRelative(-1.5f, -1.5f) + horizontalLineToRelative(-1.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.26f, -1.45f) + lineTo(5.5f, 6.56f) + lineTo(5.5f, 20.0f) + curveToRelative(0.0f, 0.27f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(12.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-0.44f) + close() + moveTo(12.0f, 8.0f) + curveToRelative(0.0f, 0.5f, 0.18f, 0.94f, 0.47f, 1.3f) + lineToRelative(0.24f, 0.23f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 14.0f, 10.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(5.32f) + lineToRelative(1.5f, 1.5f) + verticalLineToRelative(-7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.4f) + lineTo(13.6f, 2.58f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 1.99f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.7f, 0.12f) + lineTo(6.69f, 3.5f) + lineTo(12.0f, 3.5f) + lineTo(12.0f, 8.0f) + close() + moveTo(13.5f, 4.62f) + lineTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + close() + moveTo(16.25f, 11.5f) + horizontalLineToRelative(-1.57f) + lineToRelative(1.5f, 1.5f) + horizontalLineToRelative(0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + } + } + return _documentBulletListOff!! + } + +private var _documentBulletListOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentCatchUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentCatchUp.kt new file mode 100644 index 00000000..95513961 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentCatchUp.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentCatchUp: ImageVector + get() { + if (_documentCatchUp != null) { + return _documentCatchUp!! + } + _documentCatchUp = fluentIcon(name = "Regular.DocumentCatchUp") { + fluentPath { + moveTo(18.0f, 20.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(18.5f, 10.0f) + lineTo(14.0f, 10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(12.0f, 3.5f) + lineTo(6.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(5.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.17f) + arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.08f, 0.0f) + lineToRelative(0.06f, 0.01f) + curveToRelative(0.22f, 0.02f, 0.43f, 0.06f, 0.63f, 0.14f) + lineToRelative(0.16f, 0.09f) + curveToRelative(0.02f, 0.0f, 0.04f, 0.02f, 0.05f, 0.03f) + lineToRelative(0.05f, 0.02f) + lineToRelative(0.08f, 0.05f) + arcToRelative(2.07f, 2.07f, 0.0f, false, true, 0.3f, 0.25f) + lineToRelative(5.83f, 5.82f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 20.0f, 9.83f) + lineTo(20.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + lineTo(6.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + verticalLineToRelative(-3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(5.5f, 20.0f) + curveToRelative(0.0f, 0.27f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(12.0f) + close() + moveTo(17.38f, 8.5f) + lineTo(13.5f, 4.62f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(3.38f) + close() + moveTo(2.75f, 13.0f) + horizontalLineToRelative(2.5f) + lineToRelative(1.56f, -3.55f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.33f, -0.1f) + verticalLineToRelative(0.02f) + lineToRelative(0.05f, 0.1f) + lineToRelative(2.42f, 6.03f) + lineToRelative(1.42f, -2.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.55f, -0.4f) + horizontalLineToRelative(2.11f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.12f, 1.5f) + lineTo(13.14f, 14.5f) + lineToRelative(-1.98f, 3.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.3f, 0.03f) + lineToRelative(-0.06f, -0.1f) + lineToRelative(-2.33f, -5.84f) + lineToRelative(-1.04f, 2.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.56f, 0.44f) + horizontalLineToRelative(-0.01f) + lineToRelative(-0.11f, 0.01f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.11f, -1.5f) + horizontalLineToRelative(0.11f) + close() + } + } + return _documentCatchUp!! + } + +private var _documentCatchUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentCheckmark.kt new file mode 100644 index 00000000..72c5b2ec --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentCheckmark.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentCheckmark: ImageVector + get() { + if (_documentCheckmark != null) { + return _documentCheckmark!! + } + _documentCheckmark = fluentIcon(name = "Regular.DocumentCheckmark") { + fluentPath { + moveTo(18.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-5.73f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, 1.5f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(13.6f, 2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.5f) + curveToRelative(0.47f, -0.2f, 0.98f, -0.34f, 1.5f, -0.42f) + lineTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + close() + moveTo(13.5f, 4.62f) + lineTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + close() + } + fluentPath { + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(9.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineTo(5.5f, 18.79f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _documentCheckmark!! + } + +private var _documentCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentChevronDouble.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentChevronDouble.kt new file mode 100644 index 00000000..d4087df0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentChevronDouble.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentChevronDouble: ImageVector + get() { + if (_documentChevronDouble != null) { + return _documentChevronDouble!! + } + _documentChevronDouble = fluentIcon(name = "Regular.DocumentChevronDouble") { + fluentPath { + moveTo(18.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-5.73f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, 1.5f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(13.6f, 2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.5f) + curveToRelative(0.47f, -0.2f, 0.98f, -0.34f, 1.5f, -0.42f) + lineTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + close() + moveTo(13.5f, 4.62f) + lineTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + close() + moveTo(6.5f, 23.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, 11.0f) + close() + moveTo(5.35f, 15.35f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineTo(3.21f, 17.5f) + lineToRelative(2.14f, -2.15f) + close() + moveTo(7.65f, 14.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(2.14f, 2.15f) + lineToRelative(-2.14f, 2.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + close() + } + } + return _documentChevronDouble!! + } + +private var _documentChevronDouble: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentCopy.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentCopy.kt new file mode 100644 index 00000000..ec63a1f5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentCopy.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentCopy: ImageVector + get() { + if (_documentCopy != null) { + return _documentCopy!! + } + _documentCopy = fluentIcon(name = "Regular.DocumentCopy") { + fluentPath { + moveTo(5.5f, 4.63f) + lineTo(5.5f, 17.25f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(8.62f) + curveToRelative(-0.31f, 0.88f, -1.15f, 1.5f, -2.13f, 1.5f) + lineTo(8.75f, 22.0f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 4.0f, 17.25f) + lineTo(4.0f, 6.75f) + curveToRelative(0.0f, -0.98f, 0.63f, -1.81f, 1.5f, -2.12f) + close() + moveTo(13.13f, 2.0f) + curveToRelative(0.6f, 0.0f, 1.17f, 0.24f, 1.59f, 0.66f) + lineToRelative(4.62f, 4.62f) + curveToRelative(0.42f, 0.42f, 0.66f, 1.0f, 0.66f, 1.6f) + verticalLineToRelative(8.37f) + curveToRelative(0.0f, 1.25f, -1.01f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-9.0f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-13.0f) + curveTo(6.5f, 3.01f, 7.51f, 2.0f, 8.75f, 2.0f) + horizontalLineToRelative(4.38f) + close() + moveTo(13.0f, 3.5f) + lineTo(8.75f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(13.0f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(9.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) + lineTo(18.5f, 9.0f) + horizontalLineToRelative(-3.25f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) + lineTo(13.0f, 6.76f) + lineTo(13.0f, 3.5f) + close() + moveTo(14.5f, 4.56f) + verticalLineToRelative(2.2f) + curveToRelative(0.0f, 0.37f, 0.28f, 0.69f, 0.65f, 0.74f) + horizontalLineToRelative(2.29f) + lineTo(14.5f, 4.56f) + close() + } + } + return _documentCopy!! + } + +private var _documentCopy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentCss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentCss.kt new file mode 100644 index 00000000..a2454bd9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentCss.kt @@ -0,0 +1,137 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentCss: ImageVector + get() { + if (_documentCss != null) { + return _documentCss!! + } + _documentCss = fluentIcon(name = "Regular.DocumentCss") { + fluentPath { + moveTo(18.0f, 20.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(18.5f, 10.0f) + lineTo(14.0f, 10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(12.0f, 3.5f) + lineTo(6.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(10.63f) + curveToRelative(-0.44f, -0.3f, -0.95f, -0.52f, -1.5f, -0.6f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.17f) + arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.08f, 0.0f) + lineToRelative(0.06f, 0.01f) + curveToRelative(0.22f, 0.02f, 0.43f, 0.06f, 0.63f, 0.14f) + lineToRelative(0.16f, 0.09f) + curveToRelative(0.02f, 0.0f, 0.04f, 0.02f, 0.05f, 0.03f) + lineToRelative(0.05f, 0.02f) + lineToRelative(0.08f, 0.05f) + arcToRelative(2.07f, 2.07f, 0.0f, false, true, 0.3f, 0.25f) + lineToRelative(5.83f, 5.82f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 20.0f, 9.83f) + lineTo(20.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-1.74f) + curveToRelative(0.37f, -0.41f, 0.62f, -0.93f, 0.7f, -1.5f) + lineTo(18.0f, 20.5f) + close() + moveTo(17.38f, 8.5f) + lineTo(13.5f, 4.62f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(3.38f) + close() + moveTo(12.05f, 20.5f) + curveToRelative(0.2f, 0.86f, 0.98f, 1.5f, 1.9f, 1.5f) + horizontalLineToRelative(0.1f) + arcTo(1.95f, 1.95f, 0.0f, false, false, 16.0f, 20.05f) + verticalLineToRelative(-0.23f) + curveToRelative(0.0f, -0.62f, -0.32f, -1.19f, -0.85f, -1.5f) + lineToRelative(-1.53f, -0.92f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.12f, -0.22f) + verticalLineToRelative(-0.23f) + curveToRelative(0.0f, -0.25f, 0.2f, -0.45f, 0.45f, -0.45f) + horizontalLineToRelative(0.1f) + curveToRelative(0.25f, 0.0f, 0.45f, 0.2f, 0.45f, 0.45f) + lineTo(14.5f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.05f) + curveToRelative(0.0f, -1.08f, -0.87f, -1.95f, -1.95f, -1.95f) + horizontalLineToRelative(-0.1f) + curveToRelative(-1.08f, 0.0f, -1.95f, 0.87f, -1.95f, 1.95f) + verticalLineToRelative(0.23f) + curveToRelative(0.0f, 0.62f, 0.32f, 1.19f, 0.85f, 1.5f) + lineToRelative(1.53f, 0.92f) + curveToRelative(0.07f, 0.05f, 0.12f, 0.13f, 0.12f, 0.22f) + verticalLineToRelative(0.23f) + curveToRelative(0.0f, 0.25f, -0.2f, 0.45f, -0.45f, 0.45f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.45f, 0.45f, 0.0f, false, true, -0.45f, -0.45f) + lineTo(13.5f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(0.05f) + curveToRelative(0.0f, 0.15f, 0.02f, 0.3f, 0.05f, 0.45f) + close() + moveTo(5.95f, 22.0f) + lineToRelative(0.05f, -0.05f) + lineTo(6.0f, 22.0f) + horizontalLineToRelative(-0.05f) + close() + moveTo(7.25f, 21.0f) + arcToRelative(1.94f, 1.94f, 0.0f, false, true, -0.25f, -0.95f) + lineTo(7.0f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(0.05f) + curveToRelative(0.0f, 0.25f, 0.2f, 0.45f, 0.45f, 0.45f) + horizontalLineToRelative(0.1f) + curveToRelative(0.25f, 0.0f, 0.45f, -0.2f, 0.45f, -0.45f) + verticalLineToRelative(-0.23f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.12f, -0.22f) + lineToRelative(-1.53f, -0.92f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.85f, -1.5f) + verticalLineToRelative(-0.23f) + curveTo(7.0f, 15.87f, 7.87f, 15.0f, 8.95f, 15.0f) + horizontalLineToRelative(0.1f) + curveToRelative(1.08f, 0.0f, 1.95f, 0.87f, 1.95f, 1.95f) + lineTo(11.0f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.05f) + curveToRelative(0.0f, -0.25f, -0.2f, -0.45f, -0.45f, -0.45f) + horizontalLineToRelative(-0.1f) + curveToRelative(-0.25f, 0.0f, -0.45f, 0.2f, -0.45f, 0.45f) + verticalLineToRelative(0.23f) + curveToRelative(0.0f, 0.1f, 0.05f, 0.17f, 0.12f, 0.22f) + lineToRelative(1.53f, 0.92f) + curveToRelative(0.53f, 0.31f, 0.85f, 0.88f, 0.85f, 1.5f) + verticalLineToRelative(0.23f) + arcTo(1.96f, 1.96f, 0.0f, false, true, 9.05f, 22.0f) + horizontalLineToRelative(-0.1f) + curveToRelative(-0.73f, 0.0f, -1.37f, -0.4f, -1.7f, -1.0f) + close() + moveTo(5.81f, 20.46f) + curveToRelative(0.12f, -0.3f, 0.19f, -0.62f, 0.19f, -0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, 0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, -0.75f) + arcTo(2.49f, 2.49f, 0.0f, false, false, 3.5f, 15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 1.0f, 17.5f) + verticalLineToRelative(2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 4.8f, 0.96f) + close() + } + } + return _documentCss!! + } + +private var _documentCss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentData.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentData.kt new file mode 100644 index 00000000..eff63932 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentData.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentData: ImageVector + get() { + if (_documentData != null) { + return _documentData!! + } + _documentData = fluentIcon(name = "Regular.DocumentData") { + fluentPath { + moveTo(9.5f, 16.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.5f) + close() + moveTo(12.0f, 12.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-5.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(16.0f, 14.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-3.5f) + close() + moveTo(13.59f, 2.59f) + lineTo(19.4f, 8.4f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 20.0f, 9.83f) + lineTo(20.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + lineTo(6.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.17f) + arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.08f, 0.0f) + lineToRelative(0.06f, 0.01f) + curveToRelative(0.22f, 0.02f, 0.43f, 0.06f, 0.63f, 0.14f) + lineToRelative(0.16f, 0.09f) + curveToRelative(0.02f, 0.0f, 0.04f, 0.02f, 0.05f, 0.03f) + lineToRelative(0.05f, 0.02f) + lineToRelative(0.08f, 0.05f) + arcToRelative(2.07f, 2.07f, 0.0f, false, true, 0.3f, 0.25f) + close() + moveTo(18.0f, 20.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(18.5f, 10.0f) + lineTo(14.0f, 10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(12.0f, 3.5f) + lineTo(6.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(16.0f) + curveToRelative(0.0f, 0.27f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(12.0f) + close() + moveTo(17.38f, 8.5f) + lineTo(13.5f, 4.62f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(3.38f) + close() + } + } + return _documentData!! + } + +private var _documentData: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentDataLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentDataLink.kt new file mode 100644 index 00000000..07edf149 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentDataLink.kt @@ -0,0 +1,101 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentDataLink: ImageVector + get() { + if (_documentDataLink != null) { + return _documentDataLink!! + } + _documentDataLink = fluentIcon(name = "Regular.DocumentDataLink") { + fluentPath { + moveTo(12.0f, 12.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(4.98f) + arcToRelative(4.76f, 4.76f, 0.0f, false, false, -1.5f, -2.16f) + verticalLineToRelative(-2.82f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(18.0f, 20.5f) + horizontalLineToRelative(-5.17f) + curveToRelative(-0.14f, 0.55f, -0.39f, 1.05f, -0.7f, 1.5f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(13.6f, 2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(10.56f) + curveToRelative(0.24f, -0.04f, 0.5f, -0.06f, 0.75f, -0.06f) + horizontalLineToRelative(0.75f) + lineTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + close() + moveTo(16.0f, 14.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-3.5f) + close() + moveTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + lineToRelative(3.88f, 3.88f) + close() + moveTo(12.0f, 19.25f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.75f, -3.75f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + lineTo(8.25f, 23.0f) + horizontalLineToRelative(0.2f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 12.0f, 19.24f) + close() + moveTo(5.5f, 16.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-0.2f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + lineTo(4.6f, 21.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(9.0f, 19.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + } + } + return _documentDataLink!! + } + +private var _documentDataLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentDatabase.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentDatabase.kt new file mode 100644 index 00000000..b29b36ed --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentDatabase.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentDatabase: ImageVector + get() { + if (_documentDatabase != null) { + return _documentDatabase!! + } + _documentDatabase = fluentIcon(name = "Regular.DocumentDatabase") { + fluentPath { + moveTo(18.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-6.0f) + curveToRelative(0.0f, 0.58f, -0.2f, 1.08f, -0.53f, 1.5f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(13.6f, 2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.19f) + curveToRelative(0.48f, -0.1f, 0.98f, -0.16f, 1.5f, -0.18f) + lineTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + close() + moveTo(13.5f, 4.62f) + lineTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + close() + moveTo(10.4f, 21.68f) + curveTo(9.57f, 22.47f, 7.9f, 23.0f, 6.0f, 23.0f) + curveToRelative(-2.05f, 0.0f, -3.81f, -0.62f, -4.58f, -1.5f) + curveToRelative(-0.27f, -0.3f, -0.42f, -0.64f, -0.42f, -1.0f) + verticalLineToRelative(-4.0f) + curveToRelative(0.31f, 0.26f, 0.66f, 0.49f, 1.02f, 0.66f) + arcTo(9.1f, 9.1f, 0.0f, false, false, 6.0f, 18.0f) + arcToRelative(10.76f, 10.76f, 0.0f, false, false, 3.0f, -0.44f) + curveToRelative(0.35f, -0.11f, 0.68f, -0.25f, 0.98f, -0.4f) + curveToRelative(0.36f, -0.17f, 0.71f, -0.4f, 1.02f, -0.67f) + verticalLineToRelative(4.01f) + curveToRelative(0.0f, 0.43f, -0.21f, 0.83f, -0.6f, 1.18f) + close() + moveTo(5.5f, 12.01f) + arcToRelative(10.17f, 10.17f, 0.0f, false, true, 2.0f, 0.1f) + curveToRelative(0.55f, 0.09f, 1.05f, 0.22f, 1.5f, 0.39f) + curveToRelative(1.21f, 0.46f, 2.0f, 1.18f, 2.0f, 2.0f) + curveToRelative(0.0f, 0.82f, -0.79f, 1.54f, -2.0f, 2.0f) + curveToRelative(-0.45f, 0.17f, -0.95f, 0.3f, -1.5f, 0.39f) + arcTo(9.7f, 9.7f, 0.0f, false, true, 6.0f, 17.0f) + curveToRelative(-2.76f, 0.0f, -5.0f, -1.12f, -5.0f, -2.5f) + curveToRelative(0.0f, -1.03f, 1.23f, -1.9f, 3.0f, -2.3f) + curveToRelative(0.47f, -0.1f, 0.97f, -0.16f, 1.5f, -0.19f) + close() + } + } + return _documentDatabase!! + } + +private var _documentDatabase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentDismiss.kt new file mode 100644 index 00000000..f9c9c6f9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentDismiss.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentDismiss: ImageVector + get() { + if (_documentDismiss != null) { + return _documentDismiss!! + } + _documentDismiss = fluentIcon(name = "Regular.DocumentDismiss") { + fluentPath { + moveTo(6.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(12.13f, 2.0f) + curveToRelative(0.6f, 0.0f, 1.17f, 0.24f, 1.59f, 0.66f) + lineToRelative(2.81f, 2.8f) + lineToRelative(2.8f, 2.82f) + curveToRelative(0.43f, 0.42f, 0.67f, 1.0f, 0.67f, 1.6f) + verticalLineToRelative(9.87f) + curveToRelative(0.0f, 1.24f, -1.01f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-6.56f) + curveToRelative(0.43f, -0.44f, 0.79f, -0.95f, 1.08f, -1.5f) + horizontalLineToRelative(5.48f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(18.5f, 10.0f) + horizontalLineToRelative(-4.25f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) + lineTo(12.0f, 7.76f) + lineTo(12.0f, 3.5f) + lineTo(6.25f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.83f) + curveToRelative(-0.52f, 0.08f, -1.03f, 0.22f, -1.5f, 0.42f) + lineTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(5.88f) + close() + moveTo(4.09f, 14.97f) + lineToRelative(-0.07f, 0.05f) + lineToRelative(-0.05f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.05f, 0.07f) + lineTo(5.8f, 17.5f) + lineToRelative(-1.76f, 1.77f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.06f, 0.06f) + lineToRelative(0.07f, 0.06f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) + lineToRelative(0.07f, -0.06f) + lineToRelative(1.77f, -1.76f) + lineToRelative(1.77f, 1.77f) + lineToRelative(0.07f, 0.05f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.57f, 0.0f) + lineToRelative(0.07f, -0.05f) + lineToRelative(0.05f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) + lineToRelative(-0.05f, -0.07f) + lineTo(7.2f, 17.5f) + lineToRelative(1.77f, -1.77f) + lineToRelative(0.06f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) + lineToRelative(-0.06f, -0.07f) + lineToRelative(-0.07f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) + lineToRelative(-0.07f, 0.05f) + lineTo(6.5f, 16.8f) + lineToRelative(-1.77f, -1.77f) + lineToRelative(-0.07f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) + close() + moveTo(13.49f, 4.56f) + lineTo(13.5f, 7.76f) + curveToRelative(0.0f, 0.37f, 0.28f, 0.69f, 0.65f, 0.74f) + lineTo(17.45f, 8.5f) + lineTo(13.5f, 4.56f) + close() + } + } + return _documentDismiss!! + } + +private var _documentDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentEdit.kt new file mode 100644 index 00000000..4db43c17 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentEdit.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentEdit: ImageVector + get() { + if (_documentEdit != null) { + return _documentEdit!! + } + _documentEdit = fluentIcon(name = "Regular.DocumentEdit") { + fluentPath { + moveTo(6.25f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.78f) + curveToRelative(-0.1f, 0.55f, 0.0f, 1.07f, 0.27f, 1.5f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(6.09f) + curveToRelative(0.46f, 0.0f, 0.9f, 0.18f, 1.23f, 0.51f) + lineToRelative(5.92f, 5.92f) + curveToRelative(0.33f, 0.32f, 0.51f, 0.77f, 0.51f, 1.23f) + lineTo(20.0f, 10.0f) + horizontalLineToRelative(-6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(12.0f, 3.5f) + lineTo(6.25f, 3.5f) + close() + moveTo(13.5f, 4.56f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(3.44f) + lineTo(13.5f, 4.56f) + close() + moveTo(19.71f, 11.0f) + arcToRelative(2.28f, 2.28f, 0.0f, false, true, 1.62f, 3.9f) + lineToRelative(-5.9f, 5.9f) + curveToRelative(-0.35f, 0.35f, -0.78f, 0.6f, -1.25f, 0.71f) + lineToRelative(-1.83f, 0.46f) + curveToRelative(-0.8f, 0.2f, -1.52f, -0.52f, -1.32f, -1.32f) + lineToRelative(0.46f, -1.83f) + curveToRelative(0.12f, -0.47f, 0.36f, -0.9f, 0.7f, -1.25f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.28f, 2.28f, 0.0f, false, true, 1.62f, -0.67f) + close() + } + } + return _documentEdit!! + } + +private var _documentEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentEndnote.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentEndnote.kt new file mode 100644 index 00000000..0e723d2f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentEndnote.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentEndnote: ImageVector + get() { + if (_documentEndnote != null) { + return _documentEndnote!! + } + _documentEndnote = fluentIcon(name = "Regular.DocumentEndnote") { + fluentPath { + moveTo(5.5f, 4.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + lineTo(12.0f, 3.5f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(9.75f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(13.0f, 20.5f) + lineTo(13.0f, 22.0f) + horizontalLineToRelative(4.75f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 9.66f) + curveToRelative(0.0f, -0.46f, -0.18f, -0.9f, -0.51f, -1.23f) + lineTo(13.57f, 2.5f) + arcTo(1.75f, 1.75f, 0.0f, false, false, 12.34f, 2.0f) + lineTo(6.25f, 2.0f) + curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) + lineTo(4.0f, 12.0f) + horizontalLineToRelative(1.5f) + lineTo(5.5f, 4.25f) + close() + moveTo(13.5f, 8.0f) + lineTo(13.5f, 4.56f) + lineToRelative(3.94f, 3.94f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + moveTo(4.5f, 13.75f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(2.5f, 14.5f) + verticalLineToRelative(7.0f) + horizontalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(2.5f, 23.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 1.0f, 21.5f) + verticalLineToRelative(-7.0f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(1.25f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(9.25f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.25f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(7.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + lineTo(9.25f, 23.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.25f) + verticalLineToRelative(-7.0f) + lineTo(9.25f, 14.5f) + close() + moveTo(6.5f, 16.75f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(7.25f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(6.5f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + } + } + return _documentEndnote!! + } + +private var _documentEndnote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentError.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentError.kt new file mode 100644 index 00000000..1fac0fbf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentError.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentError: ImageVector + get() { + if (_documentError != null) { + return _documentError!! + } + _documentError = fluentIcon(name = "Regular.DocumentError") { + fluentPath { + moveTo(18.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-5.73f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, 1.5f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(13.6f, 2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.5f) + curveToRelative(0.47f, -0.2f, 0.98f, -0.34f, 1.5f, -0.42f) + lineTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + close() + moveTo(13.5f, 4.62f) + lineTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(6.5f, 14.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(6.5f, 21.13f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.25f) + close() + } + } + return _documentError!! + } + +private var _documentError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentFit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentFit.kt new file mode 100644 index 00000000..2fe32d35 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentFit.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentFit: ImageVector + get() { + if (_documentFit != null) { + return _documentFit!! + } + _documentFit = fluentIcon(name = "Regular.DocumentFit") { + fluentPath { + moveTo(6.25f, 2.0f) + curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) + verticalLineToRelative(15.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 4.25f) + curveTo(20.0f, 3.01f, 19.0f, 2.0f, 17.75f, 2.0f) + lineTo(6.25f, 2.0f) + close() + moveTo(5.5f, 4.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(6.25f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(5.5f, 4.25f) + close() + moveTo(9.0f, 6.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(7.0f, 7.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(9.0f, 6.5f) + close() + moveTo(9.0f, 17.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + verticalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + lineTo(7.0f, 17.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(9.0f, 17.5f) + close() + moveTo(15.5f, 7.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + horizontalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(15.0f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + verticalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(15.5f, 7.0f) + close() + moveTo(15.0f, 17.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(17.0f, 17.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(15.0f, 17.5f) + close() + } + } + return _documentFit!! + } + +private var _documentFit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentFlowchart.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentFlowchart.kt new file mode 100644 index 00000000..50ad2b67 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentFlowchart.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentFlowchart: ImageVector + get() { + if (_documentFlowchart != null) { + return _documentFlowchart!! + } + _documentFlowchart = fluentIcon(name = "Regular.DocumentFlowchart") { + fluentPath { + moveTo(6.5f, 8.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-0.5f) + verticalLineToRelative(2.69f) + lineToRelative(1.56f, 1.56f) + horizontalLineToRelative(2.69f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-0.5f) + horizontalLineToRelative(-2.69f) + lineToRelative(-1.78f, 1.78f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(1.78f, -1.78f) + lineTo(7.75f, 11.5f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-2.5f) + close() + moveTo(19.41f, 8.41f) + lineTo(13.6f, 2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(16.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + close() + moveTo(18.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + lineTo(6.0f, 20.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + close() + moveTo(13.5f, 4.62f) + lineTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + close() + } + } + return _documentFlowchart!! + } + +private var _documentFlowchart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentFolder.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentFolder.kt new file mode 100644 index 00000000..9c891c2e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentFolder.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentFolder: ImageVector + get() { + if (_documentFolder != null) { + return _documentFolder!! + } + _documentFolder = fluentIcon(name = "Regular.DocumentFolder") { + fluentPath { + moveTo(18.5f, 4.63f) + lineTo(18.5f, 15.0f) + horizontalLineToRelative(-1.0f) + lineTo(17.5f, 4.25f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-9.0f) + curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) + verticalLineToRelative(4.13f) + curveToRelative(-0.6f, 0.4f, -1.0f, 1.09f, -1.0f, 1.87f) + verticalLineToRelative(8.5f) + curveTo(3.0f, 20.55f, 4.46f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.78f, -0.4f, -1.47f, -1.0f, -1.87f) + lineTo(20.0f, 6.75f) + curveToRelative(0.0f, -0.98f, -0.63f, -1.81f, -1.5f, -2.12f) + close() + moveTo(5.5f, 8.0f) + lineTo(5.5f, 4.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(9.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(16.0f, 15.0f) + horizontalLineToRelative(-0.1f) + curveToRelative(-0.2f, 0.0f, -0.4f, -0.09f, -0.55f, -0.24f) + lineToRelative(-5.6f, -6.04f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 8.1f, 8.0f) + lineTo(5.5f, 8.0f) + close() + moveTo(4.5f, 10.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + lineTo(8.1f, 9.5f) + curveToRelative(0.2f, 0.0f, 0.4f, 0.09f, 0.55f, 0.24f) + lineToRelative(5.6f, 6.04f) + curveToRelative(0.43f, 0.46f, 1.03f, 0.72f, 1.65f, 0.72f) + horizontalLineToRelative(2.85f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(6.25f, 20.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-8.5f) + close() + } + } + return _documentFolder!! + } + +private var _documentFolder: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentFooter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentFooter.kt new file mode 100644 index 00000000..1773e898 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentFooter.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentFooter: ImageVector + get() { + if (_documentFooter != null) { + return _documentFooter!! + } + _documentFooter = fluentIcon(name = "Regular.DocumentFooter") { + fluentPath { + moveTo(8.5f, 16.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + horizontalLineToRelative(7.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + horizontalLineToRelative(-7.0f) + close() + moveTo(20.0f, 4.1f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 17.74f, 2.0f) + horizontalLineTo(6.09f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 4.0f, 4.25f) + verticalLineToRelative(15.5f) + lineToRelative(0.01f, 0.15f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + lineToRelative(0.15f, -0.01f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.1f, -2.25f) + verticalLineTo(4.1f) + close() + moveTo(6.24f, 3.5f) + horizontalLineToRelative(11.6f) + curveToRelative(0.36f, 0.05f, 0.65f, 0.37f, 0.65f, 0.75f) + verticalLineToRelative(15.5f) + lineToRelative(-0.01f, 0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 0.64f) + horizontalLineTo(6.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) + verticalLineTo(4.14f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.64f) + close() + } + } + return _documentFooter!! + } + +private var _documentFooter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentFooterDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentFooterDismiss.kt new file mode 100644 index 00000000..9c15cda3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentFooterDismiss.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentFooterDismiss: ImageVector + get() { + if (_documentFooterDismiss != null) { + return _documentFooterDismiss!! + } + _documentFooterDismiss = fluentIcon(name = "Regular.DocumentFooterDismiss") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 4.15f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, -0.7f) + lineTo(18.21f, 6.5f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.7f, -0.7f) + lineTo(17.5f, 5.79f) + lineToRelative(-1.65f, -1.64f) + close() + moveTo(18.5f, 19.75f) + verticalLineToRelative(-6.83f) + arcToRelative(6.46f, 6.46f, 0.0f, false, false, 1.5f, -0.42f) + verticalLineToRelative(7.24f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.25f) + lineTo(6.25f, 21.99f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.25f, -2.1f) + lineTo(4.0f, 4.25f) + curveTo(4.0f, 3.06f, 4.92f, 2.09f, 6.1f, 2.0f) + horizontalLineToRelative(6.71f) + curveToRelative(-0.42f, 0.44f, -0.79f, 0.94f, -1.07f, 1.5f) + horizontalLineToRelative(-5.5f) + curveToRelative(-0.37f, 0.0f, -0.69f, 0.28f, -0.74f, 0.64f) + verticalLineToRelative(15.6f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.64f, 0.75f) + horizontalLineToRelative(11.6f) + curveToRelative(0.39f, 0.0f, 0.7f, -0.28f, 0.75f, -0.64f) + verticalLineToRelative(-0.1f) + close() + moveTo(8.5f, 16.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + horizontalLineToRelative(7.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + horizontalLineToRelative(-7.0f) + close() + } + } + return _documentFooterDismiss!! + } + +private var _documentFooterDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentHeader.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentHeader.kt new file mode 100644 index 00000000..db070a8e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentHeader.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentHeader: ImageVector + get() { + if (_documentHeader != null) { + return _documentHeader!! + } + _documentHeader = fluentIcon(name = "Regular.DocumentHeader") { + fluentPath { + moveTo(8.5f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + horizontalLineToRelative(7.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + horizontalLineToRelative(-7.0f) + close() + moveTo(20.0f, 4.1f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 17.74f, 2.0f) + horizontalLineTo(6.1f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 4.0f, 4.26f) + verticalLineTo(19.9f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 6.26f, 22.0f) + horizontalLineTo(17.9f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.1f, -2.25f) + verticalLineTo(4.1f) + close() + moveTo(6.24f, 3.5f) + horizontalLineToRelative(11.6f) + curveToRelative(0.37f, 0.06f, 0.65f, 0.37f, 0.65f, 0.75f) + verticalLineToRelative(15.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, 0.65f) + horizontalLineTo(6.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) + verticalLineTo(4.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) + close() + } + } + return _documentHeader!! + } + +private var _documentHeader: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentHeaderArrowDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentHeaderArrowDown.kt new file mode 100644 index 00000000..f211fc67 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentHeaderArrowDown.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentHeaderArrowDown: ImageVector + get() { + if (_documentHeaderArrowDown != null) { + return _documentHeaderArrowDown!! + } + _documentHeaderArrowDown = fluentIcon(name = "Regular.DocumentHeaderArrowDown") { + fluentPath { + moveTo(8.5f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + horizontalLineToRelative(7.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + horizontalLineToRelative(-7.0f) + close() + moveTo(20.0f, 4.1f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 17.74f, 2.0f) + lineTo(6.1f, 2.0f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 4.0f, 4.26f) + lineTo(4.0f, 19.9f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 6.26f, 22.0f) + horizontalLineToRelative(6.56f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, -1.5f) + lineTo(6.15f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) + lineTo(5.5f, 4.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) + horizontalLineToRelative(11.6f) + curveToRelative(0.37f, 0.06f, 0.65f, 0.37f, 0.65f, 0.75f) + verticalLineToRelative(6.83f) + curveToRelative(0.52f, 0.08f, 1.03f, 0.22f, 1.5f, 0.42f) + lineTo(20.0f, 4.1f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(18.0f, 14.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(4.8f) + lineToRelative(-1.65f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.5f, 2.5f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineTo(18.0f, 19.29f) + lineTo(18.0f, 14.5f) + close() + } + } + return _documentHeaderArrowDown!! + } + +private var _documentHeaderArrowDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentHeaderDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentHeaderDismiss.kt new file mode 100644 index 00000000..e8c806dc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentHeaderDismiss.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentHeaderDismiss: ImageVector + get() { + if (_documentHeaderDismiss != null) { + return _documentHeaderDismiss!! + } + _documentHeaderDismiss = fluentIcon(name = "Regular.DocumentHeaderDismiss") { + fluentPath { + moveTo(17.75f, 2.0f) + curveToRelative(1.19f, 0.0f, 2.16f, 0.92f, 2.24f, 2.1f) + verticalLineToRelative(7.4f) + curveToRelative(-0.47f, -0.2f, -0.97f, -0.34f, -1.5f, -0.42f) + lineTo(18.49f, 4.25f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.64f, -0.74f) + lineToRelative(-0.1f, -0.01f) + lineTo(6.25f, 3.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.37f, 0.28f, 0.69f, 0.65f, 0.74f) + horizontalLineToRelative(5.58f) + curveToRelative(0.29f, 0.56f, 0.65f, 1.06f, 1.08f, 1.5f) + lineTo(6.25f, 21.99f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) + lineTo(4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveToRelative(0.0f, -1.2f, 0.92f, -2.17f, 2.1f, -2.24f) + lineTo(6.25f, 2.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(8.5f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + horizontalLineToRelative(7.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + horizontalLineToRelative(-7.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-1.64f, -1.65f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.65f, 1.64f) + lineToRelative(-1.65f, -1.64f) + close() + } + } + return _documentHeaderDismiss!! + } + +private var _documentHeaderDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentHeaderFooter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentHeaderFooter.kt new file mode 100644 index 00000000..da32dce0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentHeaderFooter.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentHeaderFooter: ImageVector + get() { + if (_documentHeaderFooter != null) { + return _documentHeaderFooter!! + } + _documentHeaderFooter = fluentIcon(name = "Regular.DocumentHeaderFooter") { + fluentPath { + moveTo(7.0f, 6.5f) + curveTo(7.0f, 5.68f, 7.69f, 5.0f, 8.5f, 5.0f) + horizontalLineToRelative(7.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) + horizontalLineToRelative(-7.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 7.0f, 6.5f) + close() + moveTo(7.0f, 17.5f) + curveToRelative(0.0f, -0.82f, 0.68f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(7.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + horizontalLineToRelative(-7.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 7.0f, 17.5f) + close() + moveTo(20.0f, 4.1f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 17.74f, 2.0f) + lineTo(6.1f, 2.0f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 4.0f, 4.26f) + lineTo(4.0f, 19.9f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 6.26f, 22.0f) + lineTo(17.9f, 22.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.1f, -2.25f) + lineTo(20.0f, 4.1f) + close() + moveTo(6.24f, 3.5f) + horizontalLineToRelative(11.6f) + curveToRelative(0.37f, 0.06f, 0.65f, 0.37f, 0.65f, 0.75f) + verticalLineToRelative(15.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, 0.65f) + lineTo(6.15f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) + lineTo(5.5f, 4.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) + close() + } + } + return _documentHeaderFooter!! + } + +private var _documentHeaderFooter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentHeart.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentHeart.kt new file mode 100644 index 00000000..f592b59c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentHeart.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentHeart: ImageVector + get() { + if (_documentHeart != null) { + return _documentHeart!! + } + _documentHeart = fluentIcon(name = "Regular.DocumentHeart") { + fluentPath { + moveTo(18.0f, 20.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(18.5f, 10.0f) + lineTo(14.0f, 10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(12.0f, 3.5f) + lineTo(6.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(7.31f) + curveToRelative(-0.5f, -0.1f, -1.0f, -0.13f, -1.5f, -0.08f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.17f) + arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.08f, 0.0f) + lineToRelative(0.06f, 0.01f) + curveToRelative(0.22f, 0.02f, 0.43f, 0.06f, 0.63f, 0.14f) + lineToRelative(0.16f, 0.09f) + curveToRelative(0.02f, 0.0f, 0.04f, 0.02f, 0.05f, 0.03f) + lineToRelative(0.05f, 0.02f) + lineToRelative(0.08f, 0.05f) + curveToRelative(0.08f, 0.05f, 0.15f, 0.11f, 0.22f, 0.18f) + lineToRelative(0.04f, 0.03f) + lineToRelative(0.05f, 0.04f) + lineTo(19.4f, 8.4f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 20.0f, 9.83f) + lineTo(20.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + lineTo(9.49f, 22.0f) + lineToRelative(1.5f, -1.5f) + lineTo(18.0f, 20.5f) + close() + moveTo(17.38f, 8.5f) + lineTo(13.5f, 4.62f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(3.38f) + close() + moveTo(6.48f, 22.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 0.0f) + lineToRelative(4.41f, -4.4f) + arcToRelative(3.47f, 3.47f, 0.0f, true, false, -4.9f, -4.91f) + lineToRelative(-0.04f, 0.04f) + lineToRelative(-0.03f, -0.04f) + arcToRelative(3.47f, 3.47f, 0.0f, true, false, -4.9f, 4.9f) + lineToRelative(4.4f, 4.41f) + close() + } + } + return _documentHeart!! + } + +private var _documentHeart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentHeartPulse.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentHeartPulse.kt new file mode 100644 index 00000000..15109621 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentHeartPulse.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentHeartPulse: ImageVector + get() { + if (_documentHeartPulse != null) { + return _documentHeartPulse!! + } + _documentHeartPulse = fluentIcon(name = "Regular.DocumentHeartPulse") { + fluentPath { + moveTo(5.5f, 4.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + lineTo(12.0f, 3.5f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(9.75f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-6.52f) + lineTo(9.73f, 22.0f) + horizontalLineToRelative(8.02f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 9.66f) + curveToRelative(0.0f, -0.46f, -0.18f, -0.9f, -0.51f, -1.23f) + lineTo(13.57f, 2.5f) + arcTo(1.75f, 1.75f, 0.0f, false, false, 12.34f, 2.0f) + lineTo(6.25f, 2.0f) + curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) + verticalLineToRelative(6.95f) + curveToRelative(0.5f, -0.07f, 1.0f, -0.05f, 1.5f, 0.05f) + verticalLineToRelative(-7.0f) + close() + moveTo(17.44f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.56f) + lineToRelative(3.94f, 3.94f) + close() + moveTo(3.12f, 14.28f) + arcToRelative(2.1f, 2.1f, 0.0f, false, true, 2.98f, 0.0f) + lineToRelative(0.4f, 0.4f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(0.37f, -0.37f) + arcTo(2.1f, 2.1f, 0.0f, false, true, 11.5f, 16.0f) + horizontalLineToRelative(1.5f) + arcToRelative(3.6f, 3.6f, 0.0f, false, false, -5.98f, -2.9f) + arcTo(3.6f, 3.6f, 0.0f, false, false, 1.01f, 16.0f) + horizontalLineToRelative(1.5f) + arcToRelative(2.1f, 2.1f, 0.0f, false, true, 0.61f, -1.72f) + close() + moveTo(5.37f, 19.5f) + lineTo(3.25f, 19.5f) + lineToRelative(3.25f, 3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 0.0f) + lineToRelative(3.26f, -3.25f) + lineTo(8.69f, 19.5f) + lineToRelative(-1.66f, 1.66f) + lineToRelative(-1.66f, -1.66f) + close() + moveTo(5.62f, 15.33f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.3f, 0.08f) + lineTo(3.55f, 17.0f) + lineTo(1.75f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(4.0f, 18.5f) + curveToRelative(0.28f, 0.0f, 0.54f, -0.16f, 0.67f, -0.41f) + lineToRelative(0.42f, -0.85f) + lineToRelative(1.29f, 1.93f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.18f, 0.08f) + lineToRelative(1.46f, -1.65f) + lineToRelative(0.69f, 0.72f) + curveToRelative(0.15f, 0.15f, 0.35f, 0.23f, 0.56f, 0.23f) + lineToRelative(2.0f, -0.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.04f, -1.5f) + lineToRelative(-1.67f, 0.04f) + lineToRelative(-1.02f, -1.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.1f, 0.02f) + lineToRelative(-1.35f, 1.53f) + lineToRelative(-1.47f, -2.2f) + close() + } + } + return _documentHeartPulse!! + } + +private var _documentHeartPulse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentJavascript.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentJavascript.kt new file mode 100644 index 00000000..7da47aa6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentJavascript.kt @@ -0,0 +1,98 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentJavascript: ImageVector + get() { + if (_documentJavascript != null) { + return _documentJavascript!! + } + _documentJavascript = fluentIcon(name = "Regular.DocumentJavascript") { + fluentPath { + moveTo(18.0f, 20.5f) + horizontalLineToRelative(-7.03f) + arcToRelative(2.94f, 2.94f, 0.0f, false, true, -0.7f, 1.5f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(13.6f, 2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(10.02f) + arcToRelative(1.76f, 1.76f, 0.0f, false, true, 1.5f, 0.5f) + lineTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + close() + moveTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + lineToRelative(3.88f, 3.88f) + close() + moveTo(4.25f, 15.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(5.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(2.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-4.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(7.95f, 15.0f) + curveTo(6.87f, 15.0f, 6.0f, 15.87f, 6.0f, 16.95f) + verticalLineToRelative(0.23f) + curveToRelative(0.0f, 0.62f, 0.32f, 1.19f, 0.85f, 1.5f) + lineToRelative(1.53f, 0.92f) + curveToRelative(0.07f, 0.05f, 0.12f, 0.13f, 0.12f, 0.22f) + verticalLineToRelative(0.23f) + curveToRelative(0.0f, 0.25f, -0.2f, 0.45f, -0.45f, 0.45f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.45f, 0.45f, 0.0f, false, true, -0.45f, -0.45f) + lineTo(7.5f, 20.0f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 6.0f, 20.0f) + verticalLineToRelative(0.05f) + curveTo(6.0f, 21.13f, 6.87f, 22.0f, 7.95f, 22.0f) + horizontalLineToRelative(0.1f) + curveToRelative(1.08f, 0.0f, 1.95f, -0.87f, 1.95f, -1.95f) + verticalLineToRelative(-0.23f) + curveToRelative(0.0f, -0.62f, -0.32f, -1.19f, -0.85f, -1.5f) + lineToRelative(-1.53f, -0.92f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.12f, -0.22f) + verticalLineToRelative(-0.23f) + curveToRelative(0.0f, -0.25f, 0.2f, -0.45f, 0.45f, -0.45f) + horizontalLineToRelative(0.1f) + curveToRelative(0.25f, 0.0f, 0.45f, 0.2f, 0.45f, 0.45f) + lineTo(8.5f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.05f) + curveTo(10.0f, 15.87f, 9.13f, 15.0f, 8.05f, 15.0f) + horizontalLineToRelative(-0.1f) + close() + } + } + return _documentJavascript!! + } + +private var _documentJavascript: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentLandscape.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentLandscape.kt new file mode 100644 index 00000000..ecc0e2ff --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentLandscape.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentLandscape: ImageVector + get() { + if (_documentLandscape != null) { + return _documentLandscape!! + } + _documentLandscape = fluentIcon(name = "Regular.DocumentLandscape") { + fluentPath { + moveTo(4.0f, 5.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(12.0f) + curveToRelative(0.0f, 0.28f, 0.23f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(16.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-6.0f) + lineTo(16.0f, 12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(14.0f, 5.5f) + lineTo(4.0f, 5.5f) + close() + moveTo(19.38f, 10.5f) + lineTo(15.5f, 6.62f) + lineTo(15.5f, 10.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(3.38f) + close() + moveTo(15.58f, 4.59f) + lineTo(21.41f, 10.41f) + lineTo(21.48f, 10.5f) + curveToRelative(0.07f, 0.07f, 0.13f, 0.14f, 0.18f, 0.22f) + lineToRelative(0.07f, 0.13f) + lineToRelative(0.12f, 0.21f) + curveToRelative(0.08f, 0.2f, 0.12f, 0.41f, 0.14f, 0.63f) + lineToRelative(0.01f, 0.14f) + lineTo(22.0f, 18.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + lineTo(4.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(2.0f, 6.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(10.17f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.42f, 0.59f) + close() + } + } + return _documentLandscape!! + } + +private var _documentLandscape: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentLandscapeData.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentLandscapeData.kt new file mode 100644 index 00000000..891dfbc9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentLandscapeData.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentLandscapeData: ImageVector + get() { + if (_documentLandscapeData != null) { + return _documentLandscapeData!! + } + _documentLandscapeData = fluentIcon(name = "Regular.DocumentLandscapeData") { + fluentPath { + moveTo(10.0f, 9.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) + verticalLineToRelative(6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + lineTo(10.0f, 9.0f) + close() + moveTo(12.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + lineTo(12.5f, 9.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(5.0f, 14.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) + verticalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(7.5f, 14.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(17.0f, 10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(3.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 4.0f, 0.0f) + verticalLineToRelative(-3.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + close() + moveTo(17.5f, 12.0f) + verticalLineToRelative(3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + close() + moveTo(2.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) + verticalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) + lineTo(4.75f, 20.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) + lineTo(2.0f, 6.75f) + close() + moveTo(4.75f, 5.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(14.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + lineTo(20.5f, 6.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(4.75f, 5.5f) + close() + } + } + return _documentLandscapeData!! + } + +private var _documentLandscapeData: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentLandscapeSplit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentLandscapeSplit.kt new file mode 100644 index 00000000..6f637aef --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentLandscapeSplit.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentLandscapeSplit: ImageVector + get() { + if (_documentLandscapeSplit != null) { + return _documentLandscapeSplit!! + } + _documentLandscapeSplit = fluentIcon(name = "Regular.DocumentLandscapeSplit") { + fluentPath { + moveTo(3.5f, 6.0f) + curveToRelative(0.0f, -0.28f, 0.23f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.5f) + verticalLineToRelative(13.0f) + lineTo(4.0f, 18.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(3.5f, 6.0f) + close() + moveTo(12.0f, 18.5f) + verticalLineToRelative(-13.0f) + horizontalLineToRelative(2.0f) + lineTo(14.0f, 10.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-8.0f) + close() + moveTo(15.5f, 6.62f) + lineTo(19.38f, 10.5f) + lineTo(16.0f, 10.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(15.5f, 6.62f) + close() + moveTo(21.41f, 10.42f) + lineTo(15.6f, 4.58f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 14.17f, 4.0f) + lineTo(4.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(12.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(16.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + verticalLineToRelative(-6.17f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, 0.0f, -0.08f) + lineToRelative(-0.01f, -0.06f) + arcToRelative(1.98f, 1.98f, 0.0f, false, false, -0.14f, -0.63f) + lineToRelative(-0.09f, -0.16f) + arcToRelative(4.26f, 4.26f, 0.0f, false, true, -0.1f, -0.18f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.2f, -0.26f) + lineToRelative(-0.05f, -0.05f) + close() + } + } + return _documentLandscapeSplit!! + } + +private var _documentLandscapeSplit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentLandscapeSplitHint.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentLandscapeSplitHint.kt new file mode 100644 index 00000000..8c8900e1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentLandscapeSplitHint.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentLandscapeSplitHint: ImageVector + get() { + if (_documentLandscapeSplitHint != null) { + return _documentLandscapeSplitHint!! + } + _documentLandscapeSplitHint = fluentIcon(name = "Regular.DocumentLandscapeSplitHint") { + fluentPath { + moveTo(7.0f, 4.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 4.75f) + close() + moveTo(2.75f, 9.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(7.75f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.5f) + close() + moveTo(2.0f, 6.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(4.0f, 5.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(2.0f, 6.0f) + close() + moveTo(4.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + verticalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(3.5f, 18.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(4.0f, 20.0f) + close() + moveTo(10.5f, 5.25f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(2.59f) + curveToRelative(0.46f, 0.0f, 0.9f, 0.18f, 1.23f, 0.51f) + lineToRelative(5.92f, 5.92f) + curveToRelative(0.33f, 0.33f, 0.51f, 0.77f, 0.51f, 1.23f) + lineTo(22.0f, 18.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-8.25f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + lineTo(10.5f, 5.25f) + close() + moveTo(12.0f, 5.5f) + verticalLineToRelative(13.0f) + horizontalLineToRelative(8.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-6.0f) + lineTo(16.0f, 12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(14.0f, 5.5f) + horizontalLineToRelative(-2.0f) + close() + moveTo(15.5f, 6.56f) + lineTo(15.5f, 10.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(3.44f) + lineTo(15.5f, 6.56f) + close() + } + } + return _documentLandscapeSplitHint!! + } + +private var _documentLandscapeSplitHint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentLink.kt new file mode 100644 index 00000000..ee5766ca --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentLink.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentLink: ImageVector + get() { + if (_documentLink != null) { + return _documentLink!! + } + _documentLink = fluentIcon(name = "Regular.DocumentLink") { + fluentPath { + moveTo(18.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-4.23f) + arcTo(4.99f, 4.99f, 0.0f, false, true, 13.0f, 22.0f) + horizontalLineToRelative(5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(13.6f, 2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(10.0f) + horizontalLineToRelative(1.5f) + lineTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + close() + moveTo(13.5f, 4.62f) + lineTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + close() + moveTo(5.75f, 15.75f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 5.0f, 15.0f) + horizontalLineToRelative(-0.2f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.2f, 8.0f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-0.16f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.16f, -5.0f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(13.0f, 19.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, -4.0f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(0.16f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -0.16f, 5.0f) + horizontalLineToRelative(-0.1f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 9.0f, 23.0f) + horizontalLineToRelative(0.2f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.8f, -4.0f) + close() + moveTo(8.75f, 18.25f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + } + } + return _documentLink!! + } + +private var _documentLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentLock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentLock.kt new file mode 100644 index 00000000..dca14c02 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentLock.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentLock: ImageVector + get() { + if (_documentLock != null) { + return _documentLock!! + } + _documentLock = fluentIcon(name = "Regular.DocumentLock") { + fluentPath { + moveTo(18.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-6.0f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 0.17f, -0.02f, 0.34f, -0.05f, 0.5f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(13.6f, 2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.55f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 1.5f, -0.9f) + lineTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + close() + moveTo(13.5f, 4.62f) + lineTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + close() + moveTo(4.0f, 15.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(6.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(9.0f, 15.0f) + verticalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) + verticalLineToRelative(1.0f) + close() + moveTo(5.5f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(7.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + } + } + return _documentLock!! + } + +private var _documentLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentMargins.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentMargins.kt new file mode 100644 index 00000000..4f808e95 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentMargins.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentMargins: ImageVector + get() { + if (_documentMargins != null) { + return _documentMargins!! + } + _documentMargins = fluentIcon(name = "Regular.DocumentMargins") { + fluentPath { + moveTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(11.5f) + curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 4.25f) + close() + moveTo(17.0f, 20.5f) + horizontalLineToRelative(0.75f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(18.5f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(17.0f, 3.5f) + verticalLineToRelative(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(15.5f, 3.5f) + horizontalLineToRelative(-7.0f) + verticalLineToRelative(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(7.0f, 3.5f) + horizontalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(7.0f, 20.5f) + verticalLineToRelative(-2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(2.75f) + horizontalLineToRelative(7.0f) + verticalLineToRelative(-2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(2.75f) + close() + moveTo(7.75f, 8.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-5.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(17.0f, 9.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-5.5f) + close() + } + } + return _documentMargins!! + } + +private var _documentMargins: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentMention.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentMention.kt new file mode 100644 index 00000000..ffe5903a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentMention.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentMention: ImageVector + get() { + if (_documentMention != null) { + return _documentMention!! + } + _documentMention = fluentIcon(name = "Regular.DocumentMention") { + fluentPath { + moveTo(18.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-5.97f) + curveToRelative(-0.54f, 0.56f, -1.25f, 0.95f, -2.08f, 1.04f) + curveToRelative(0.05f, 0.15f, 0.07f, 0.3f, 0.07f, 0.46f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(13.6f, 2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.28f) + curveToRelative(0.48f, -0.19f, 0.98f, -0.33f, 1.5f, -0.4f) + lineTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + close() + moveTo(13.5f, 4.62f) + lineTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + close() + moveTo(4.0f, 14.15f) + arcToRelative(4.16f, 4.16f, 0.0f, false, true, 2.5f, -0.83f) + curveToRelative(2.3f, 0.0f, 4.18f, 1.87f, 4.18f, 4.18f) + curveToRelative(0.0f, 0.9f, -0.55f, 1.54f, -1.1f, 1.54f) + curveToRelative(-0.41f, 0.0f, -0.66f, -0.45f, -0.66f, -1.54f) + verticalLineToRelative(-2.29f) + arcToRelative(0.66f, 0.66f, 0.0f, false, false, -1.23f, -0.24f) + arcToRelative(2.2f, 2.2f, 0.0f, false, false, -1.19f, -0.33f) + curveToRelative(-1.49f, 0.0f, -2.42f, 1.33f, -2.42f, 2.86f) + curveToRelative(0.0f, 0.87f, 0.3f, 1.67f, 0.83f, 2.2f) + arcToRelative(2.22f, 2.22f, 0.0f, false, false, 1.59f, 0.65f) + curveToRelative(0.67f, 0.01f, 1.23f, -0.26f, 1.64f, -0.7f) + curveToRelative(0.32f, 0.45f, 0.8f, 0.71f, 1.44f, 0.71f) + curveToRelative(1.33f, 0.0f, 2.42f, -1.27f, 2.42f, -2.86f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -3.84f, 5.24f) + lineToRelative(0.23f, -0.07f) + lineToRelative(0.08f, -0.04f) + arcToRelative(0.66f, 0.66f, 0.0f, false, false, -0.53f, -1.2f) + lineToRelative(-0.17f, 0.06f) + lineToRelative(-0.25f, 0.06f) + arcTo(4.2f, 4.2f, 0.0f, false, true, 4.0f, 14.15f) + close() + moveTo(5.5f, 18.17f) + arcToRelative(2.18f, 2.18f, 0.0f, false, true, 0.0f, -1.33f) + curveToRelative(0.17f, -0.53f, 0.54f, -0.88f, 1.0f, -0.88f) + curveToRelative(0.64f, 0.0f, 1.1f, 0.66f, 1.1f, 1.54f) + reflectiveCurveToRelative(-0.46f, 1.54f, -1.1f, 1.54f) + curveToRelative(-0.46f, 0.0f, -0.83f, -0.35f, -1.0f, -0.87f) + close() + } + } + return _documentMention!! + } + +private var _documentMention: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentMultiple.kt new file mode 100644 index 00000000..90dd361d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentMultiple.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentMultiple: ImageVector + get() { + if (_documentMultiple != null) { + return _documentMultiple!! + } + _documentMultiple = fluentIcon(name = "Regular.DocumentMultiple") { + fluentPath { + moveTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(4.38f) + curveToRelative(0.6f, 0.0f, 1.17f, 0.24f, 1.6f, 0.66f) + lineToRelative(4.61f, 4.62f) + curveToRelative(0.42f, 0.42f, 0.66f, 1.0f, 0.66f, 1.59f) + verticalLineToRelative(8.38f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-9.0f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-13.0f) + close() + moveTo(6.25f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(13.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(9.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(16.0f, 9.0f) + horizontalLineToRelative(-3.25f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.01f, -2.25f, -2.25f) + lineTo(10.5f, 3.5f) + lineTo(6.25f, 3.5f) + close() + moveTo(12.0f, 4.56f) + verticalLineToRelative(2.19f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(2.19f) + lineTo(12.0f, 4.56f) + close() + } + fluentPath { + moveTo(6.63f, 20.5f) + curveToRelative(0.3f, 0.87f, 1.14f, 1.5f, 2.12f, 1.5f) + horizontalLineToRelative(6.5f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 20.0f, 17.25f) + verticalLineToRelative(-5.88f) + curveToRelative(0.0f, -0.6f, -0.24f, -1.17f, -0.66f, -1.6f) + lineToRelative(-0.84f, -0.83f) + verticalLineToRelative(8.31f) + curveToRelative(0.0f, 1.8f, -1.45f, 3.25f, -3.25f, 3.25f) + horizontalLineTo(6.63f) + close() + } + } + return _documentMultiple!! + } + +private var _documentMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentMultiplePercent.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentMultiplePercent.kt new file mode 100644 index 00000000..195a34cb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentMultiplePercent.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentMultiplePercent: ImageVector + get() { + if (_documentMultiplePercent != null) { + return _documentMultiplePercent!! + } + _documentMultiplePercent = fluentIcon(name = "Regular.DocumentMultiplePercent") { + fluentPath { + moveTo(6.25f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(7.38f) + curveToRelative(-0.44f, -0.3f, -0.95f, -0.52f, -1.5f, -0.6f) + lineTo(4.0f, 4.26f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(4.38f) + curveToRelative(0.6f, 0.0f, 1.17f, 0.24f, 1.6f, 0.66f) + lineToRelative(4.61f, 4.62f) + curveToRelative(0.42f, 0.42f, 0.66f, 1.0f, 0.66f, 1.59f) + verticalLineToRelative(8.38f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-2.4f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -0.9f, -1.5f) + horizontalLineToRelative(3.3f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(16.0f, 9.0f) + horizontalLineToRelative(-3.25f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.01f, -2.25f, -2.25f) + lineTo(10.5f, 3.5f) + lineTo(6.25f, 3.5f) + close() + moveTo(12.0f, 4.56f) + verticalLineToRelative(2.19f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(2.19f) + lineTo(12.0f, 4.56f) + close() + moveTo(15.25f, 22.0f) + horizontalLineToRelative(-2.59f) + curveToRelative(0.22f, -0.45f, 0.34f, -0.96f, 0.34f, -1.5f) + horizontalLineToRelative(2.25f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(18.5f, 8.94f) + lineToRelative(0.84f, 0.84f) + curveToRelative(0.42f, 0.42f, 0.66f, 1.0f, 0.66f, 1.59f) + verticalLineToRelative(5.88f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 15.25f, 22.0f) + close() + moveTo(3.5f, 17.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) + close() + moveTo(3.5f, 13.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(9.5f, 23.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) + close() + moveTo(9.5f, 19.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(10.78f, 14.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-7.5f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(7.5f, -7.5f) + close() + } + } + return _documentMultiplePercent!! + } + +private var _documentMultiplePercent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentMultipleProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentMultipleProhibited.kt new file mode 100644 index 00000000..09433a3d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentMultipleProhibited.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentMultipleProhibited: ImageVector + get() { + if (_documentMultipleProhibited != null) { + return _documentMultipleProhibited!! + } + _documentMultipleProhibited = fluentIcon(name = "Regular.DocumentMultipleProhibited") { + fluentPath { + moveTo(5.5f, 4.63f) + verticalLineToRelative(6.45f) + curveToRelative(-0.52f, 0.08f, -1.03f, 0.22f, -1.5f, 0.42f) + lineTo(4.0f, 6.75f) + curveToRelative(0.0f, -0.98f, 0.63f, -1.81f, 1.5f, -2.12f) + close() + moveTo(17.75f, 19.5f) + horizontalLineToRelative(-5.06f) + curveToRelative(0.15f, -0.47f, 0.25f, -0.98f, 0.3f, -1.5f) + horizontalLineToRelative(4.76f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) + lineTo(18.5f, 9.0f) + horizontalLineToRelative(-3.25f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) + lineTo(13.0f, 6.76f) + lineTo(13.0f, 3.5f) + lineTo(8.75f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.92f) + arcTo(6.52f, 6.52f, 0.0f, false, false, 6.5f, 11.0f) + lineTo(6.5f, 4.25f) + curveTo(6.5f, 3.01f, 7.51f, 2.0f, 8.75f, 2.0f) + horizontalLineToRelative(4.38f) + curveToRelative(0.6f, 0.0f, 1.17f, 0.24f, 1.59f, 0.66f) + lineToRelative(4.62f, 4.62f) + curveToRelative(0.42f, 0.42f, 0.66f, 1.0f, 0.66f, 1.6f) + verticalLineToRelative(8.37f) + curveToRelative(0.0f, 1.25f, -1.01f, 2.25f, -2.25f, 2.25f) + close() + moveTo(14.5f, 4.56f) + verticalLineToRelative(2.2f) + curveToRelative(0.0f, 0.37f, 0.28f, 0.69f, 0.65f, 0.74f) + horizontalLineToRelative(2.29f) + lineTo(14.5f, 4.56f) + close() + moveTo(11.19f, 22.0f) + curveToRelative(0.42f, -0.44f, 0.79f, -0.94f, 1.08f, -1.5f) + horizontalLineToRelative(5.1f) + curveToRelative(-0.31f, 0.88f, -1.15f, 1.5f, -2.13f, 1.5f) + lineTo(11.2f, 22.0f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(2.5f, 17.5f) + curveToRelative(0.0f, 0.83f, 0.25f, 1.6f, 0.7f, 2.25f) + lineToRelative(5.55f, -5.56f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) + close() + moveTo(6.5f, 21.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) + lineToRelative(-5.55f, 5.56f) + curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) + close() + } + } + return _documentMultipleProhibited!! + } + +private var _documentMultipleProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentOnePage.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentOnePage.kt new file mode 100644 index 00000000..be307c1e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentOnePage.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentOnePage: ImageVector + get() { + if (_documentOnePage != null) { + return _documentOnePage!! + } + _documentOnePage = fluentIcon(name = "Regular.DocumentOnePage") { + fluentPath { + moveTo(6.25f, 2.0f) + curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) + verticalLineToRelative(15.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineTo(4.25f) + curveTo(20.0f, 3.01f, 19.0f, 2.0f, 17.75f, 2.0f) + horizontalLineTo(6.25f) + close() + moveTo(5.5f, 4.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineTo(6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineTo(4.25f) + close() + moveTo(7.75f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-8.5f) + close() + moveTo(7.0f, 16.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(7.75f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-8.5f) + close() + } + } + return _documentOnePage!! + } + +private var _documentOnePage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentOnePageAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentOnePageAdd.kt new file mode 100644 index 00000000..3860c37a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentOnePageAdd.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentOnePageAdd: ImageVector + get() { + if (_documentOnePageAdd != null) { + return _documentOnePageAdd!! + } + _documentOnePageAdd = fluentIcon(name = "Regular.DocumentOnePageAdd") { + fluentPath { + moveTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(11.5f) + curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) + verticalLineToRelative(7.25f) + curveToRelative(-0.47f, -0.2f, -0.98f, -0.34f, -1.5f, -0.42f) + lineTo(18.5f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(6.25f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(5.48f) + curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 4.25f) + close() + moveTo(16.25f, 11.0f) + curveToRelative(0.11f, 0.0f, 0.22f, 0.02f, 0.31f, 0.07f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, -3.21f, 1.43f) + horizontalLineToRelative(-5.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(8.5f) + close() + moveTo(7.75f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-8.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _documentOnePageAdd!! + } + +private var _documentOnePageAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentOnePageColumns.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentOnePageColumns.kt new file mode 100644 index 00000000..5bd84055 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentOnePageColumns.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentOnePageColumns: ImageVector + get() { + if (_documentOnePageColumns != null) { + return _documentOnePageColumns!! + } + _documentOnePageColumns = fluentIcon(name = "Regular.DocumentOnePageColumns") { + fluentPath { + moveTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(11.5f) + curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 4.25f) + close() + moveTo(6.25f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(18.5f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(6.25f, 3.5f) + close() + moveTo(9.25f, 5.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(8.5f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(15.5f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(15.5f, 5.75f) + close() + } + } + return _documentOnePageColumns!! + } + +private var _documentOnePageColumns: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentOnePageLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentOnePageLink.kt new file mode 100644 index 00000000..593528d9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentOnePageLink.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentOnePageLink: ImageVector + get() { + if (_documentOnePageLink != null) { + return _documentOnePageLink!! + } + _documentOnePageLink = fluentIcon(name = "Regular.DocumentOnePageLink") { + fluentPath { + moveTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(11.5f) + curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) + verticalLineToRelative(9.58f) + curveToRelative(-0.47f, -0.18f, -0.97f, -0.3f, -1.5f, -0.32f) + lineTo(18.5f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(6.25f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.32f) + curveToRelative(0.31f, 0.58f, 0.74f, 1.1f, 1.26f, 1.5f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 4.25f) + close() + moveTo(7.75f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-8.5f) + close() + moveTo(7.0f, 11.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(22.0f, 18.25f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.75f, -3.75f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + lineTo(18.25f, 22.0f) + horizontalLineToRelative(0.2f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 22.0f, 18.24f) + close() + moveTo(15.5f, 15.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-0.2f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(19.0f, 18.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + } + } + return _documentOnePageLink!! + } + +private var _documentOnePageLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPageBottomCenter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPageBottomCenter.kt new file mode 100644 index 00000000..d447e70c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPageBottomCenter.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentPageBottomCenter: ImageVector + get() { + if (_documentPageBottomCenter != null) { + return _documentPageBottomCenter!! + } + _documentPageBottomCenter = fluentIcon(name = "Regular.DocumentPageBottomCenter") { + fluentPath { + moveTo(17.74f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.92f, 2.25f, 2.1f) + verticalLineToRelative(15.65f) + curveToRelative(0.0f, 1.18f, -0.92f, 2.16f, -2.1f, 2.24f) + lineTo(6.25f, 21.99f) + curveToRelative(-1.19f, 0.0f, -2.16f, -0.92f, -2.24f, -2.1f) + lineTo(4.01f, 4.25f) + curveTo(4.0f, 3.07f, 4.91f, 2.09f, 6.08f, 2.0f) + horizontalLineToRelative(11.65f) + close() + moveTo(17.74f, 3.5f) + lineTo(6.24f, 3.5f) + curveToRelative(-0.38f, 0.0f, -0.69f, 0.28f, -0.74f, 0.64f) + verticalLineToRelative(15.6f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.64f, 0.75f) + horizontalLineToRelative(11.6f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.64f) + lineTo(18.49f, 4.25f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.64f, -0.75f) + horizontalLineToRelative(-0.1f) + close() + moveTo(13.02f, 19.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.63f, -0.86f) + lineToRelative(0.1f, -0.66f) + horizontalLineToRelative(-1.47f) + lineToRelative(-0.14f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, -0.24f) + lineToRelative(0.1f, -0.66f) + horizontalLineToRelative(-0.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.99f) + lineToRelative(0.23f, -1.5f) + horizontalLineToRelative(-0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.96f) + lineToRelative(0.2f, -1.26f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.48f, 0.24f) + lineToRelative(-0.16f, 1.02f) + horizontalLineToRelative(1.48f) + lineToRelative(0.2f, -1.26f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.48f, 0.24f) + lineToRelative(-0.16f, 1.02f) + horizontalLineToRelative(0.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.76f) + lineToRelative(-0.23f, 1.5f) + horizontalLineToRelative(0.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.73f) + lineToRelative(-0.14f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.86f, 0.62f) + close() + moveTo(11.49f, 15.38f) + lineTo(11.26f, 16.88f) + horizontalLineToRelative(1.48f) + lineToRelative(0.23f, -1.5f) + lineTo(11.5f, 15.38f) + close() + } + } + return _documentPageBottomCenter!! + } + +private var _documentPageBottomCenter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPageBottomLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPageBottomLeft.kt new file mode 100644 index 00000000..aa89358b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPageBottomLeft.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentPageBottomLeft: ImageVector + get() { + if (_documentPageBottomLeft != null) { + return _documentPageBottomLeft!! + } + _documentPageBottomLeft = fluentIcon(name = "Regular.DocumentPageBottomLeft") { + fluentPath { + moveTo(17.74f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.92f, 2.25f, 2.1f) + verticalLineToRelative(15.65f) + curveToRelative(0.0f, 1.18f, -0.92f, 2.16f, -2.1f, 2.24f) + lineTo(6.25f, 21.99f) + curveToRelative(-1.19f, 0.0f, -2.16f, -0.92f, -2.24f, -2.1f) + lineTo(4.01f, 4.25f) + curveTo(4.0f, 3.07f, 4.91f, 2.09f, 6.08f, 2.0f) + horizontalLineToRelative(11.65f) + close() + moveTo(17.74f, 3.5f) + lineTo(6.24f, 3.5f) + curveToRelative(-0.38f, 0.0f, -0.69f, 0.28f, -0.74f, 0.64f) + verticalLineToRelative(15.6f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.64f, 0.75f) + horizontalLineToRelative(11.6f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.64f) + lineTo(18.49f, 4.25f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.64f, -0.75f) + horizontalLineToRelative(-0.1f) + close() + moveTo(11.02f, 19.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.63f, -0.86f) + lineToRelative(0.1f, -0.66f) + lineTo(9.03f, 18.38f) + lineToRelative(-0.14f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, -0.24f) + lineToRelative(0.1f, -0.66f) + horizontalLineToRelative(-0.74f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(0.99f) + lineToRelative(0.23f, -1.5f) + horizontalLineToRelative(-0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(0.96f) + lineToRelative(0.2f, -1.26f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.48f, 0.24f) + lineToRelative(-0.16f, 1.02f) + horizontalLineToRelative(1.48f) + lineToRelative(0.2f, -1.26f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.48f, 0.24f) + lineToRelative(-0.16f, 1.02f) + horizontalLineToRelative(0.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.76f) + lineToRelative(-0.23f, 1.5f) + horizontalLineToRelative(0.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.73f) + lineToRelative(-0.14f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.86f, 0.62f) + close() + moveTo(9.49f, 15.38f) + lineTo(9.26f, 16.88f) + horizontalLineToRelative(1.48f) + lineToRelative(0.23f, -1.5f) + lineTo(9.5f, 15.38f) + close() + } + } + return _documentPageBottomLeft!! + } + +private var _documentPageBottomLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPageBottomRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPageBottomRight.kt new file mode 100644 index 00000000..cc1ddf3c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPageBottomRight.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentPageBottomRight: ImageVector + get() { + if (_documentPageBottomRight != null) { + return _documentPageBottomRight!! + } + _documentPageBottomRight = fluentIcon(name = "Regular.DocumentPageBottomRight") { + fluentPath { + moveTo(17.74f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.92f, 2.25f, 2.1f) + verticalLineToRelative(15.65f) + curveToRelative(0.0f, 1.18f, -0.92f, 2.16f, -2.1f, 2.24f) + lineTo(6.25f, 21.99f) + curveToRelative(-1.19f, 0.0f, -2.16f, -0.92f, -2.24f, -2.1f) + lineTo(4.01f, 4.25f) + curveTo(4.0f, 3.07f, 4.91f, 2.09f, 6.08f, 2.0f) + horizontalLineToRelative(11.65f) + close() + moveTo(17.74f, 3.5f) + lineTo(6.24f, 3.5f) + curveToRelative(-0.38f, 0.0f, -0.69f, 0.28f, -0.74f, 0.64f) + verticalLineToRelative(15.6f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.64f, 0.75f) + horizontalLineToRelative(11.6f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.64f) + lineTo(18.49f, 4.25f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.64f, -0.75f) + horizontalLineToRelative(-0.1f) + close() + moveTo(15.02f, 19.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.63f, -0.86f) + lineToRelative(0.1f, -0.66f) + horizontalLineToRelative(-1.47f) + lineToRelative(-0.14f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, -0.24f) + lineToRelative(0.1f, -0.66f) + horizontalLineToRelative(-0.74f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(0.99f) + lineToRelative(0.23f, -1.5f) + horizontalLineToRelative(-0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(0.96f) + lineToRelative(0.2f, -1.26f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.48f, 0.24f) + lineToRelative(-0.16f, 1.02f) + horizontalLineToRelative(1.48f) + lineToRelative(0.2f, -1.26f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.48f, 0.24f) + lineToRelative(-0.16f, 1.02f) + horizontalLineToRelative(0.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.76f) + lineToRelative(-0.23f, 1.5f) + horizontalLineToRelative(0.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.73f) + lineToRelative(-0.14f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.86f, 0.62f) + close() + moveTo(13.49f, 15.38f) + lineTo(13.26f, 16.88f) + horizontalLineToRelative(1.48f) + lineToRelative(0.23f, -1.5f) + lineTo(13.5f, 15.38f) + close() + } + } + return _documentPageBottomRight!! + } + +private var _documentPageBottomRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPageBreak.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPageBreak.kt new file mode 100644 index 00000000..d3210bd8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPageBreak.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentPageBreak: ImageVector + get() { + if (_documentPageBreak != null) { + return _documentPageBreak!! + } + _documentPageBreak = fluentIcon(name = "Regular.DocumentPageBreak") { + fluentPath { + moveTo(2.5f, 12.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 2.5f, 12.0f) + close() + moveTo(6.5f, 12.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 6.5f, 12.0f) + close() + moveTo(10.5f, 12.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(14.5f, 12.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(18.5f, 12.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(4.75f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(4.0f, 7.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + lineTo(18.5f, 7.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + lineTo(6.0f, 7.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(5.5f, 2.75f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 4.75f, 2.0f) + close() + moveTo(19.25f, 22.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(20.0f, 17.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + lineTo(6.0f, 15.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(5.5f, 17.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(12.0f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.23f, 0.5f, 0.5f) + verticalLineToRelative(4.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + close() + } + } + return _documentPageBreak!! + } + +private var _documentPageBreak: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPageNumber.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPageNumber.kt new file mode 100644 index 00000000..d6da154b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPageNumber.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentPageNumber: ImageVector + get() { + if (_documentPageNumber != null) { + return _documentPageNumber!! + } + _documentPageNumber = fluentIcon(name = "Regular.DocumentPageNumber") { + fluentPath { + moveTo(17.74f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.92f, 2.25f, 2.1f) + verticalLineToRelative(15.65f) + curveToRelative(0.0f, 1.18f, -0.92f, 2.16f, -2.1f, 2.24f) + lineTo(6.25f, 21.99f) + curveToRelative(-1.19f, 0.0f, -2.16f, -0.92f, -2.24f, -2.1f) + lineTo(4.01f, 4.25f) + curveTo(4.0f, 3.07f, 4.91f, 2.09f, 6.08f, 2.0f) + horizontalLineToRelative(11.65f) + close() + moveTo(17.74f, 3.5f) + lineTo(6.24f, 3.5f) + curveToRelative(-0.38f, 0.0f, -0.69f, 0.28f, -0.74f, 0.64f) + verticalLineToRelative(15.6f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.64f, 0.75f) + horizontalLineToRelative(11.6f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.64f) + lineTo(18.49f, 4.25f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.64f, -0.75f) + horizontalLineToRelative(-0.1f) + close() + moveTo(13.02f, 16.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.63f, -0.86f) + lineToRelative(0.1f, -0.66f) + horizontalLineToRelative(-1.47f) + lineToRelative(-0.14f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.49f, -0.24f) + lineToRelative(0.1f, -0.66f) + horizontalLineToRelative(-0.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.99f) + lineToRelative(0.23f, -1.5f) + horizontalLineToRelative(-0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.96f) + lineToRelative(0.2f, -1.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.48f, 0.24f) + lineTo(11.73f, 10.0f) + horizontalLineToRelative(1.48f) + lineToRelative(0.2f, -1.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.48f, 0.24f) + lineTo(14.73f, 10.0f) + horizontalLineToRelative(0.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.76f) + lineToRelative(-0.23f, 1.5f) + horizontalLineToRelative(0.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.73f) + lineToRelative(-0.14f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.86f, 0.62f) + close() + moveTo(11.49f, 11.5f) + lineTo(11.26f, 13.0f) + horizontalLineToRelative(1.48f) + lineToRelative(0.23f, -1.5f) + lineTo(11.5f, 11.5f) + close() + } + } + return _documentPageNumber!! + } + +private var _documentPageNumber: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPageTopCenter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPageTopCenter.kt new file mode 100644 index 00000000..a706a2a3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPageTopCenter.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentPageTopCenter: ImageVector + get() { + if (_documentPageTopCenter != null) { + return _documentPageTopCenter!! + } + _documentPageTopCenter = fluentIcon(name = "Regular.DocumentPageTopCenter") { + fluentPath { + moveTo(17.74f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.92f, 2.25f, 2.1f) + verticalLineToRelative(15.65f) + curveToRelative(0.0f, 1.18f, -0.92f, 2.16f, -2.1f, 2.24f) + lineTo(6.25f, 21.99f) + curveToRelative(-1.19f, 0.0f, -2.16f, -0.92f, -2.24f, -2.1f) + lineTo(4.01f, 4.25f) + curveTo(4.0f, 3.07f, 4.91f, 2.09f, 6.08f, 2.0f) + horizontalLineToRelative(11.65f) + close() + moveTo(17.74f, 3.5f) + lineTo(6.24f, 3.5f) + curveToRelative(-0.38f, 0.0f, -0.69f, 0.28f, -0.74f, 0.64f) + verticalLineToRelative(15.6f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.64f, 0.75f) + horizontalLineToRelative(11.6f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.64f) + lineTo(18.49f, 4.25f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.64f, -0.75f) + horizontalLineToRelative(-0.1f) + close() + moveTo(13.02f, 12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.63f, -0.86f) + lineToRelative(0.1f, -0.66f) + horizontalLineToRelative(-1.47f) + lineToRelative(-0.14f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.49f, -0.24f) + lineToRelative(0.1f, -0.66f) + horizontalLineToRelative(-0.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.99f) + lineToRelative(0.23f, -1.5f) + horizontalLineToRelative(-0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(0.96f) + lineToRelative(0.2f, -1.26f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.48f, 0.24f) + lineToRelative(-0.16f, 1.02f) + horizontalLineToRelative(1.48f) + lineToRelative(0.2f, -1.26f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.48f, 0.24f) + lineToRelative(-0.16f, 1.02f) + horizontalLineToRelative(0.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.76f) + lineToRelative(-0.23f, 1.5f) + horizontalLineToRelative(0.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.73f) + lineToRelative(-0.14f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.86f, 0.62f) + close() + moveTo(11.49f, 7.48f) + lineTo(11.26f, 8.98f) + horizontalLineToRelative(1.48f) + lineToRelative(0.23f, -1.5f) + lineTo(11.5f, 7.48f) + close() + } + } + return _documentPageTopCenter!! + } + +private var _documentPageTopCenter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPageTopLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPageTopLeft.kt new file mode 100644 index 00000000..a68bfb56 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPageTopLeft.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentPageTopLeft: ImageVector + get() { + if (_documentPageTopLeft != null) { + return _documentPageTopLeft!! + } + _documentPageTopLeft = fluentIcon(name = "Regular.DocumentPageTopLeft") { + fluentPath { + moveTo(17.74f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.92f, 2.25f, 2.1f) + verticalLineToRelative(15.65f) + curveToRelative(0.0f, 1.18f, -0.92f, 2.16f, -2.1f, 2.24f) + lineTo(6.25f, 21.99f) + curveToRelative(-1.19f, 0.0f, -2.16f, -0.92f, -2.24f, -2.1f) + lineTo(4.01f, 4.25f) + curveTo(4.0f, 3.07f, 4.91f, 2.09f, 6.08f, 2.0f) + horizontalLineToRelative(11.65f) + close() + moveTo(17.74f, 3.5f) + lineTo(6.24f, 3.5f) + curveToRelative(-0.38f, 0.0f, -0.69f, 0.28f, -0.74f, 0.64f) + verticalLineToRelative(15.6f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.64f, 0.75f) + horizontalLineToRelative(11.6f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.64f) + lineTo(18.49f, 4.25f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.64f, -0.75f) + horizontalLineToRelative(-0.1f) + close() + moveTo(11.02f, 12.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.63f, -0.86f) + lineToRelative(0.1f, -0.66f) + lineTo(9.03f, 10.5f) + lineToRelative(-0.14f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, -0.24f) + lineToRelative(0.1f, -0.66f) + horizontalLineToRelative(-0.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.99f) + lineToRelative(0.23f, -1.5f) + horizontalLineToRelative(-0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(0.96f) + lineToRelative(0.2f, -1.26f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.48f, 0.24f) + lineTo(9.73f, 6.0f) + horizontalLineToRelative(1.48f) + lineToRelative(0.2f, -1.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.48f, 0.24f) + lineTo(12.73f, 6.0f) + horizontalLineToRelative(0.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.76f) + lineTo(12.26f, 9.0f) + horizontalLineToRelative(0.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.73f) + lineToRelative(-0.14f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.86f, 0.62f) + close() + moveTo(9.49f, 7.5f) + lineTo(9.26f, 9.0f) + horizontalLineToRelative(1.48f) + lineToRelative(0.23f, -1.5f) + lineTo(9.5f, 7.5f) + close() + } + } + return _documentPageTopLeft!! + } + +private var _documentPageTopLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPageTopRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPageTopRight.kt new file mode 100644 index 00000000..aec770d6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPageTopRight.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentPageTopRight: ImageVector + get() { + if (_documentPageTopRight != null) { + return _documentPageTopRight!! + } + _documentPageTopRight = fluentIcon(name = "Regular.DocumentPageTopRight") { + fluentPath { + moveTo(17.74f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.92f, 2.25f, 2.1f) + verticalLineToRelative(15.65f) + curveToRelative(0.0f, 1.18f, -0.92f, 2.16f, -2.1f, 2.24f) + lineTo(6.25f, 21.99f) + curveToRelative(-1.19f, 0.0f, -2.16f, -0.92f, -2.24f, -2.1f) + lineTo(4.01f, 4.25f) + curveTo(4.0f, 3.07f, 4.91f, 2.09f, 6.08f, 2.0f) + horizontalLineToRelative(11.65f) + close() + moveTo(17.74f, 3.5f) + lineTo(6.24f, 3.5f) + curveToRelative(-0.38f, 0.0f, -0.69f, 0.28f, -0.74f, 0.64f) + verticalLineToRelative(15.6f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.64f, 0.75f) + horizontalLineToRelative(11.6f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.64f) + lineTo(18.49f, 4.25f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.64f, -0.75f) + horizontalLineToRelative(-0.1f) + close() + moveTo(15.02f, 12.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.63f, -0.86f) + lineToRelative(0.1f, -0.66f) + horizontalLineToRelative(-1.47f) + lineToRelative(-0.14f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, -0.24f) + lineToRelative(0.1f, -0.66f) + horizontalLineToRelative(-0.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.99f) + lineToRelative(0.23f, -1.5f) + horizontalLineToRelative(-0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.96f) + lineToRelative(0.2f, -1.26f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.48f, 0.24f) + lineTo(13.73f, 6.0f) + horizontalLineToRelative(1.48f) + lineToRelative(0.2f, -1.26f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.48f, 0.24f) + lineTo(16.73f, 6.0f) + horizontalLineToRelative(0.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.76f) + lineTo(16.26f, 9.0f) + horizontalLineToRelative(0.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.73f) + lineToRelative(-0.14f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.86f, 0.62f) + close() + moveTo(13.49f, 7.5f) + lineTo(13.26f, 9.0f) + horizontalLineToRelative(1.48f) + lineToRelative(0.23f, -1.5f) + lineTo(13.5f, 7.5f) + close() + } + } + return _documentPageTopRight!! + } + +private var _documentPageTopRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPdf.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPdf.kt new file mode 100644 index 00000000..2580b7f5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPdf.kt @@ -0,0 +1,123 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentPdf: ImageVector + get() { + if (_documentPdf != null) { + return _documentPdf!! + } + _documentPdf = fluentIcon(name = "Regular.DocumentPdf") { + fluentPath { + moveTo(7.5f, 13.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + lineTo(8.0f, 16.0f) + horizontalLineToRelative(0.5f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + horizontalLineToRelative(-1.0f) + close() + moveTo(8.5f, 15.0f) + lineTo(8.0f, 15.0f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + close() + moveTo(15.0f, 13.5f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + lineTo(17.0f, 13.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-3.0f) + close() + moveTo(11.5f, 13.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(0.5f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, -4.0f) + horizontalLineToRelative(-0.5f) + close() + moveTo(12.0f, 16.0f) + verticalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + close() + moveTo(20.0f, 20.0f) + verticalLineToRelative(-1.16f) + curveToRelative(0.6f, -0.29f, 1.0f, -0.89f, 1.0f, -1.59f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.7f, -0.4f, -1.3f, -1.0f, -1.58f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(13.6f, 2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.17f) + curveToRelative(-0.6f, 0.28f, -1.0f, 0.88f, -1.0f, 1.58f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.7f, 0.4f, 1.3f, 1.0f, 1.59f) + lineTo(4.0f, 20.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + close() + moveTo(18.0f, 20.5f) + lineTo(6.0f, 20.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(13.0f) + verticalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + close() + moveTo(18.5f, 10.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-13.0f) + lineTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + close() + moveTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + lineToRelative(3.88f, 3.88f) + close() + moveTo(4.75f, 12.5f) + horizontalLineToRelative(14.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + lineTo(4.75f, 17.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + close() + } + } + return _documentPdf!! + } + +private var _documentPdf: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPercent.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPercent.kt new file mode 100644 index 00000000..7b8ba95e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPercent.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentPercent: ImageVector + get() { + if (_documentPercent != null) { + return _documentPercent!! + } + _documentPercent = fluentIcon(name = "Regular.DocumentPercent") { + fluentPath { + moveTo(18.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-5.0f) + curveToRelative(0.0f, 0.54f, -0.12f, 1.05f, -0.34f, 1.5f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(13.6f, 2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.04f) + curveToRelative(0.55f, 0.07f, 1.06f, 0.28f, 1.5f, 0.59f) + lineTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + close() + moveTo(13.5f, 4.62f) + lineTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + close() + moveTo(6.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(4.5f, 14.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(12.0f, 20.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(10.5f, 20.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(10.78f, 13.22f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-7.5f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(7.5f, -7.5f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + } + } + return _documentPercent!! + } + +private var _documentPercent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPill.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPill.kt new file mode 100644 index 00000000..008b36a1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPill.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentPill: ImageVector + get() { + if (_documentPill != null) { + return _documentPill!! + } + _documentPill = fluentIcon(name = "Regular.DocumentPill") { + fluentPath { + moveTo(5.5f, 4.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + lineTo(12.0f, 3.5f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(1.43f) + curveToRelative(0.48f, -0.2f, 0.99f, -0.3f, 1.5f, -0.3f) + lineTo(20.0f, 9.66f) + curveToRelative(0.0f, -0.46f, -0.18f, -0.9f, -0.51f, -1.23f) + lineTo(13.57f, 2.5f) + arcTo(1.75f, 1.75f, 0.0f, false, false, 12.34f, 2.0f) + lineTo(6.25f, 2.0f) + curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) + verticalLineToRelative(15.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(5.43f) + arcToRelative(3.86f, 3.86f, 0.0f, false, true, -0.52f, -1.5f) + lineTo(6.25f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(5.5f, 4.25f) + close() + moveTo(17.44f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.56f) + lineToRelative(3.94f, 3.94f) + close() + moveTo(22.03f, 12.97f) + arcToRelative(2.87f, 2.87f, 0.0f, false, false, -4.06f, 0.0f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(2.87f, 2.87f, 0.0f, true, false, 4.06f, 4.06f) + lineToRelative(5.0f, -5.0f) + arcToRelative(2.87f, 2.87f, 0.0f, false, false, 0.0f, -4.06f) + close() + moveTo(19.03f, 14.03f) + arcToRelative(1.37f, 1.37f, 0.0f, true, true, 1.94f, 1.94f) + lineTo(19.0f, 17.94f) + lineTo(17.06f, 16.0f) + lineToRelative(1.97f, -1.97f) + close() + moveTo(17.03f, 18.97f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-1.0f, 1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(1.0f, -1.0f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + } + } + return _documentPill!! + } + +private var _documentPill: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPrint.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPrint.kt new file mode 100644 index 00000000..8305eae0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentPrint.kt @@ -0,0 +1,100 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentPrint: ImageVector + get() { + if (_documentPrint != null) { + return _documentPrint!! + } + _documentPrint = fluentIcon(name = "Regular.DocumentPrint") { + fluentPath { + moveTo(18.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-5.27f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.73f, 1.0f) + horizontalLineToRelative(-0.01f) + curveToRelative(-0.02f, 0.17f, -0.05f, 0.34f, -0.1f, 0.5f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(13.6f, 2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.1f) + curveToRelative(0.24f, -0.06f, 0.49f, -0.1f, 0.75f, -0.1f) + horizontalLineToRelative(0.75f) + lineTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + close() + moveTo(13.5f, 4.62f) + lineTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + close() + moveTo(3.0f, 13.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(3.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(0.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-3.5f) + curveTo(3.78f, 23.0f, 3.0f, 22.22f, 3.0f, 21.25f) + verticalLineToRelative(-0.75f) + lineTo(2.0f, 20.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(1.0f, 16.0f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + lineTo(3.0f, 14.5f) + verticalLineToRelative(-0.75f) + close() + moveTo(8.5f, 13.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-0.75f) + close() + moveTo(4.5f, 19.25f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-2.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + close() + } + } + return _documentPrint!! + } + +private var _documentPrint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentProhibited.kt new file mode 100644 index 00000000..9f9253c7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentProhibited.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentProhibited: ImageVector + get() { + if (_documentProhibited != null) { + return _documentProhibited!! + } + _documentProhibited = fluentIcon(name = "Regular.DocumentProhibited") { + fluentPath { + moveTo(18.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-5.73f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, 1.5f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(13.6f, 2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.5f) + curveToRelative(0.47f, -0.2f, 0.98f, -0.34f, 1.5f, -0.42f) + lineTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + close() + moveTo(13.5f, 4.62f) + lineTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(2.5f, 17.5f) + curveToRelative(0.0f, 0.83f, 0.25f, 1.6f, 0.7f, 2.25f) + lineToRelative(5.55f, -5.56f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) + close() + moveTo(6.5f, 21.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) + lineToRelative(-5.55f, 5.56f) + curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) + close() + } + } + return _documentProhibited!! + } + +private var _documentProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentQuestionMark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentQuestionMark.kt new file mode 100644 index 00000000..4f7d0203 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentQuestionMark.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentQuestionMark: ImageVector + get() { + if (_documentQuestionMark != null) { + return _documentQuestionMark!! + } + _documentQuestionMark = fluentIcon(name = "Regular.DocumentQuestionMark") { + fluentPath { + moveTo(18.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-5.73f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, 1.5f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(13.6f, 2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.5f) + curveToRelative(0.47f, -0.2f, 0.98f, -0.34f, 1.5f, -0.42f) + lineTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + close() + moveTo(13.5f, 4.62f) + lineTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + close() + moveTo(1.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) + close() + moveTo(5.75f, 20.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(4.5f, 16.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) + curveToRelative(0.0f, 0.73f, -0.21f, 1.14f, -0.75f, 1.7f) + lineToRelative(-0.27f, 0.28f) + lineToRelative(-0.11f, 0.12f) + curveToRelative(-0.29f, 0.32f, -0.37f, 0.53f, -0.37f, 0.9f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + curveToRelative(0.0f, -0.73f, 0.21f, -1.14f, 0.75f, -1.7f) + lineToRelative(0.27f, -0.28f) + lineToRelative(0.11f, -0.12f) + curveToRelative(0.29f, -0.32f, 0.37f, -0.53f, 0.37f, -0.9f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + close() + } + } + return _documentQuestionMark!! + } + +private var _documentQuestionMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentQueue.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentQueue.kt new file mode 100644 index 00000000..7a272fb8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentQueue.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentQueue: ImageVector + get() { + if (_documentQueue != null) { + return _documentQueue!! + } + _documentQueue = fluentIcon(name = "Regular.DocumentQueue") { + fluentPath { + moveTo(8.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.5f) + close() + moveTo(8.0f, 8.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 8.75f) + close() + moveTo(8.75f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.5f) + close() + moveTo(5.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.23f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.42f, 0.59f) + lineToRelative(3.76f, 3.76f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 19.0f, 7.77f) + lineTo(19.0f, 17.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + lineTo(7.0f, 19.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(5.0f, 4.0f) + close() + moveTo(7.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(13.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(10.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(17.5f, 8.5f) + horizontalLineToRelative(-3.25f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(12.5f, 3.5f) + lineTo(7.0f, 3.5f) + close() + moveTo(14.0f, 4.06f) + verticalLineToRelative(2.69f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(2.69f) + lineTo(14.0f, 4.06f) + close() + moveTo(3.5f, 15.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.75f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 6.5f, 22.0f) + horizontalLineToRelative(11.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 4.5f, -4.5f) + verticalLineToRelative(-1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.75f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + horizontalLineToRelative(-11.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + verticalLineToRelative(-1.75f) + close() + } + } + return _documentQueue!! + } + +private var _documentQueue: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentQueueAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentQueueAdd.kt new file mode 100644 index 00000000..18f3e02a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentQueueAdd.kt @@ -0,0 +1,97 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentQueueAdd: ImageVector + get() { + if (_documentQueueAdd != null) { + return _documentQueueAdd!! + } + _documentQueueAdd = fluentIcon(name = "Regular.DocumentQueueAdd") { + fluentPath { + moveTo(7.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(13.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.17f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -0.17f, -1.5f) + lineTo(7.0f, 17.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(6.5f, 4.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(5.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(3.25f) + lineTo(17.5f, 11.0f) + curveToRelative(0.52f, 0.0f, 1.02f, 0.06f, 1.5f, 0.17f) + verticalLineToRelative(-3.4f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(14.65f, 2.6f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 13.23f, 2.0f) + lineTo(7.0f, 2.0f) + close() + moveTo(14.0f, 6.75f) + lineTo(14.0f, 4.06f) + lineTo(16.94f, 7.0f) + horizontalLineToRelative(-2.69f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + close() + moveTo(6.5f, 20.5f) + horizontalLineToRelative(5.23f) + curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) + lineTo(6.5f, 22.0f) + arcTo(4.5f, 4.5f, 0.0f, false, true, 2.0f, 17.5f) + verticalLineToRelative(-1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(1.75f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) + close() + moveTo(8.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 5.75f) + close() + moveTo(8.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.5f) + close() + moveTo(8.75f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _documentQueueAdd!! + } + +private var _documentQueueAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentQueueMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentQueueMultiple.kt new file mode 100644 index 00000000..7efa5384 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentQueueMultiple.kt @@ -0,0 +1,101 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentQueueMultiple: ImageVector + get() { + if (_documentQueueMultiple != null) { + return _documentQueueMultiple!! + } + _documentQueueMultiple = fluentIcon(name = "Regular.DocumentQueueMultiple") { + fluentPath { + moveTo(17.35f, 6.16f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.07f, 0.08f) + lineTo(19.0f, 7.82f) + lineTo(19.0f, 6.5f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(16.7f, 3.4f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 13.35f, 2.0f) + lineTo(7.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(0.13f) + curveToRelative(0.57f, -0.4f, 1.26f, -0.63f, 2.0f, -0.63f) + horizontalLineToRelative(6.35f) + curveToRelative(0.86f, 0.0f, 1.68f, 0.34f, 2.29f, 0.95f) + lineToRelative(1.71f, 1.7f) + close() + moveTo(2.75f, 15.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.75f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) + horizontalLineToRelative(11.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) + verticalLineToRelative(-1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(1.75f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -4.5f, 4.5f) + horizontalLineToRelative(-11.0f) + arcTo(4.5f, 4.5f, 0.0f, false, true, 2.0f, 17.5f) + verticalLineToRelative(-1.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(8.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.5f) + close() + moveTo(8.0f, 11.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(8.75f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.5f) + close() + moveTo(7.0f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(10.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + verticalLineToRelative(-6.23f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(14.65f, 5.6f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 13.23f, 5.0f) + lineTo(7.0f, 5.0f) + close() + moveTo(6.5f, 7.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(5.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(3.25f) + lineTo(17.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + lineTo(7.0f, 17.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(6.5f, 7.0f) + close() + moveTo(14.0f, 9.75f) + lineTo(14.0f, 7.06f) + lineTo(16.94f, 10.0f) + horizontalLineToRelative(-2.69f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + close() + } + } + return _documentQueueMultiple!! + } + +private var _documentQueueMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentRibbon.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentRibbon.kt new file mode 100644 index 00000000..cf0808f6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentRibbon.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentRibbon: ImageVector + get() { + if (_documentRibbon != null) { + return _documentRibbon!! + } + _documentRibbon = fluentIcon(name = "Regular.DocumentRibbon") { + fluentPath { + moveTo(18.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + lineTo(9.0f, 20.5f) + lineTo(9.0f, 22.0f) + horizontalLineToRelative(9.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(13.6f, 2.6f) + arcToRelative(0.49f, 0.49f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.26f) + arcTo(4.5f, 4.5f, 0.0f, false, true, 5.5f, 11.0f) + lineTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + close() + moveTo(13.5f, 4.62f) + lineTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + close() + moveTo(9.0f, 15.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, -7.0f, 0.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 7.0f, 0.0f) + close() + moveTo(3.0f, 19.24f) + verticalLineToRelative(3.05f) + curveToRelative(0.0f, 0.63f, 0.76f, 0.95f, 1.21f, 0.5f) + lineTo(5.5f, 21.5f) + lineToRelative(1.29f, 1.3f) + arcTo(0.71f, 0.71f, 0.0f, false, false, 8.0f, 22.28f) + verticalLineToRelative(-3.05f) + arcToRelative(4.48f, 4.48f, 0.0f, false, true, -5.0f, 0.0f) + close() + } + } + return _documentRibbon!! + } + +private var _documentRibbon: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentSave.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentSave.kt new file mode 100644 index 00000000..90b40f12 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentSave.kt @@ -0,0 +1,94 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentSave: ImageVector + get() { + if (_documentSave != null) { + return _documentSave!! + } + _documentSave = fluentIcon(name = "Regular.DocumentSave") { + fluentPath { + moveTo(18.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 0.17f, -0.02f, 0.34f, -0.05f, 0.5f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(13.6f, 2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.0f) + horizontalLineToRelative(1.5f) + lineTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + close() + moveTo(13.5f, 4.62f) + lineTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + close() + moveTo(5.0f, 12.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(2.0f) + lineTo(5.0f, 14.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(2.5f, 12.0f) + lineTo(4.0f, 12.0f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(9.0f, 12.0f) + horizontalLineToRelative(0.38f) + curveToRelative(0.4f, 0.0f, 0.78f, 0.16f, 1.06f, 0.44f) + lineToRelative(1.12f, 1.12f) + curveToRelative(0.28f, 0.28f, 0.44f, 0.66f, 0.44f, 1.06f) + verticalLineToRelative(6.88f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + lineTo(10.0f, 23.0f) + verticalLineToRelative(-5.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + horizontalLineToRelative(-6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + lineTo(3.0f, 23.0f) + horizontalLineToRelative(-0.5f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 1.0f, 21.5f) + verticalLineToRelative(-8.0f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + close() + moveTo(9.0f, 18.0f) + verticalLineToRelative(5.0f) + lineTo(4.0f, 23.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(5.0f) + close() + } + } + return _documentSave!! + } + +private var _documentSave: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentSearch.kt new file mode 100644 index 00000000..fcfb40c8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentSearch.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentSearch: ImageVector + get() { + if (_documentSearch != null) { + return _documentSearch!! + } + _documentSearch = fluentIcon(name = "Regular.DocumentSearch") { + fluentPath { + moveTo(11.4f, 10.95f) + arcToRelative(4.93f, 4.93f, 0.0f, false, true, 0.55f, 6.32f) + lineToRelative(-0.14f, 0.2f) + lineToRelative(4.22f, 4.21f) + lineToRelative(0.07f, 0.09f) + arcToRelative(0.77f, 0.77f, 0.0f, false, true, -1.08f, 1.08f) + lineToRelative(-0.09f, -0.08f) + lineToRelative(-4.25f, -4.25f) + arcToRelative(4.93f, 4.93f, 0.0f, true, true, 0.73f, -7.57f) + close() + moveTo(13.14f, 2.0f) + curveToRelative(0.6f, 0.0f, 1.17f, 0.24f, 1.59f, 0.66f) + lineToRelative(2.81f, 2.8f) + lineToRelative(2.8f, 2.82f) + curveToRelative(0.43f, 0.42f, 0.67f, 1.0f, 0.67f, 1.6f) + verticalLineToRelative(9.87f) + curveToRelative(0.0f, 1.24f, -1.01f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-1.51f) + curveToRelative(-0.04f, -0.3f, -0.15f, -0.58f, -0.34f, -0.83f) + lineToRelative(-0.12f, -0.14f) + lineToRelative(-0.52f, -0.53f) + horizontalLineToRelative(2.49f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(19.51f, 10.0f) + horizontalLineToRelative(-4.25f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) + lineTo(13.0f, 7.76f) + lineTo(13.0f, 3.5f) + lineTo(7.25f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.42f) + arcToRelative(5.9f, 5.9f, 0.0f, false, false, -1.5f, 0.58f) + verticalLineToRelative(-5.0f) + curveTo(5.0f, 3.01f, 6.0f, 2.0f, 7.25f, 2.0f) + horizontalLineToRelative(5.88f) + close() + moveTo(5.54f, 12.04f) + arcToRelative(3.38f, 3.38f, 0.0f, true, false, 4.79f, 4.78f) + arcToRelative(3.38f, 3.38f, 0.0f, false, false, -4.78f, -4.78f) + close() + moveTo(14.51f, 4.56f) + verticalLineToRelative(3.2f) + curveToRelative(0.0f, 0.37f, 0.28f, 0.69f, 0.65f, 0.74f) + lineTo(18.45f, 8.5f) + lineTo(14.5f, 4.56f) + close() + } + } + return _documentSearch!! + } + +private var _documentSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentSplitHint.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentSplitHint.kt new file mode 100644 index 00000000..d327f7dc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentSplitHint.kt @@ -0,0 +1,94 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentSplitHint: ImageVector + get() { + if (_documentSplitHint != null) { + return _documentSplitHint!! + } + _documentSplitHint = fluentIcon(name = "Regular.DocumentSplitHint") { + fluentPath { + moveTo(20.0f, 11.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(18.5f, 10.0f) + lineTo(14.0f, 10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(12.0f, 3.5f) + lineTo(6.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(7.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.17f) + arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.08f, 0.0f) + lineToRelative(0.06f, 0.01f) + curveToRelative(0.22f, 0.02f, 0.43f, 0.06f, 0.63f, 0.14f) + lineToRelative(0.16f, 0.09f) + curveToRelative(0.02f, 0.0f, 0.04f, 0.02f, 0.05f, 0.03f) + lineToRelative(0.05f, 0.02f) + lineToRelative(0.08f, 0.05f) + arcToRelative(2.07f, 2.07f, 0.0f, false, true, 0.3f, 0.25f) + lineToRelative(5.83f, 5.82f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 20.0f, 9.75f) + verticalLineToRelative(1.5f) + close() + moveTo(13.5f, 4.62f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(3.38f) + lineTo(13.5f, 4.62f) + close() + moveTo(4.75f, 13.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(20.0f, 13.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.5f) + close() + moveTo(9.5f, 21.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(5.5f, 19.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + lineTo(4.0f, 20.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(6.0f, 20.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + verticalLineToRelative(-0.75f) + close() + moveTo(19.25f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(18.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + verticalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + } + } + return _documentSplitHint!! + } + +private var _documentSplitHint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentSplitHintOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentSplitHintOff.kt new file mode 100644 index 00000000..67ae5a1c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentSplitHintOff.kt @@ -0,0 +1,104 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentSplitHintOff: ImageVector + get() { + if (_documentSplitHintOff != null) { + return _documentSplitHintOff!! + } + _documentSplitHintOff = fluentIcon(name = "Regular.DocumentSplitHintOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineTo(4.0f, 5.06f) + verticalLineToRelative(6.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(5.5f, 6.56f) + lineToRelative(13.0f, 13.0f) + lineTo(18.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.8f, -1.14f) + lineToRelative(0.92f, 0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineToRelative(-1.99f, -1.99f) + arcToRelative(0.8f, 0.8f, 0.0f, false, false, -0.02f, -0.02f) + lineTo(3.28f, 2.22f) + close() + moveTo(12.0f, 8.0f) + curveToRelative(0.0f, 0.5f, 0.18f, 0.94f, 0.47f, 1.3f) + lineToRelative(0.24f, 0.23f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 14.0f, 10.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.5f) + lineToRelative(-0.01f, -0.12f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.58f, -1.22f) + lineTo(13.6f, 2.6f) + lineToRelative(-0.05f, -0.04f) + lineToRelative(-0.04f, -0.03f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.3f, -0.23f) + lineToRelative(-0.05f, -0.02f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.7f, 0.12f) + lineTo(6.69f, 3.5f) + lineTo(12.0f, 3.5f) + lineTo(12.0f, 8.0f) + close() + moveTo(13.5f, 4.62f) + lineTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + close() + moveTo(18.5f, 15.32f) + lineTo(19.86f, 16.68f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.14f, -0.44f) + verticalLineToRelative(-2.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.57f) + close() + moveTo(4.75f, 13.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(10.25f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + close() + moveTo(4.75f, 18.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(5.5f, 20.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(6.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _documentSplitHintOff!! + } + +private var _documentSplitHintOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentSync.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentSync.kt new file mode 100644 index 00000000..a0305f3b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentSync.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentSync: ImageVector + get() { + if (_documentSync != null) { + return _documentSync!! + } + _documentSync = fluentIcon(name = "Regular.DocumentSync") { + fluentPath { + moveTo(18.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-5.73f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, 1.5f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(13.6f, 2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.5f) + curveToRelative(0.47f, -0.2f, 0.98f, -0.34f, 1.5f, -0.42f) + lineTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + close() + moveTo(13.5f, 4.62f) + lineTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + close() + moveTo(1.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) + close() + moveTo(9.5f, 14.0f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + verticalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -0.8f, -0.59f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) + verticalLineToRelative(-0.55f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + close() + moveTo(4.0f, 19.95f) + verticalLineToRelative(0.55f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.77f, 0.65f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) + close() + } + } + return _documentSync!! + } + +private var _documentSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTable.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTable.kt new file mode 100644 index 00000000..e24c5a36 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTable.kt @@ -0,0 +1,97 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentTable: ImageVector + get() { + if (_documentTable != null) { + return _documentTable!! + } + _documentTable = fluentIcon(name = "Regular.DocumentTable") { + fluentPath { + moveTo(8.75f, 11.5f) + horizontalLineToRelative(6.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-6.5f) + curveTo(7.78f, 19.0f, 7.0f, 18.22f, 7.0f, 17.25f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + close() + moveTo(8.5f, 13.25f) + verticalLineToRelative(1.25f) + lineTo(10.0f, 14.5f) + lineTo(10.0f, 13.0f) + lineTo(8.75f, 13.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + close() + moveTo(8.5f, 16.0f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + lineTo(10.0f, 17.5f) + lineTo(10.0f, 16.0f) + lineTo(8.5f, 16.0f) + close() + moveTo(11.5f, 16.0f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(3.75f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + lineTo(15.5f, 16.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(15.5f, 14.5f) + verticalLineToRelative(-1.25f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + lineTo(11.5f, 13.0f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(4.0f) + close() + moveTo(13.59f, 2.59f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(16.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(13.6f, 2.6f) + close() + moveTo(18.0f, 20.5f) + lineTo(6.0f, 20.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + close() + moveTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + lineToRelative(3.88f, 3.88f) + close() + } + } + return _documentTable!! + } + +private var _documentTable: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTableArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTableArrowRight.kt new file mode 100644 index 00000000..cdba521e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTableArrowRight.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentTableArrowRight: ImageVector + get() { + if (_documentTableArrowRight != null) { + return _documentTableArrowRight!! + } + _documentTableArrowRight = fluentIcon(name = "Regular.DocumentTableArrowRight") { + fluentPath { + moveTo(18.0f, 20.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(18.5f, 10.0f) + lineTo(14.0f, 10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(12.0f, 3.5f) + lineTo(6.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(7.08f) + curveToRelative(-0.52f, 0.08f, -1.03f, 0.22f, -1.5f, 0.42f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.17f) + arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.08f, 0.0f) + lineToRelative(0.06f, 0.01f) + curveToRelative(0.22f, 0.02f, 0.43f, 0.06f, 0.63f, 0.14f) + lineToRelative(0.16f, 0.09f) + curveToRelative(0.02f, 0.0f, 0.04f, 0.02f, 0.05f, 0.03f) + lineToRelative(0.05f, 0.02f) + lineToRelative(0.08f, 0.05f) + arcToRelative(2.07f, 2.07f, 0.0f, false, true, 0.3f, 0.25f) + lineToRelative(5.83f, 5.82f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 20.0f, 9.83f) + lineTo(20.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-6.81f) + curveToRelative(0.43f, -0.44f, 0.8f, -0.95f, 1.08f, -1.5f) + lineTo(18.0f, 20.5f) + close() + moveTo(17.38f, 8.5f) + lineTo(13.5f, 4.62f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(3.38f) + close() + moveTo(13.0f, 17.5f) + curveToRelative(0.0f, 0.52f, -0.06f, 1.02f, -0.17f, 1.5f) + horizontalLineToRelative(2.42f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(9.0f, 11.5f) + curveToRelative(0.98f, 0.4f, 1.83f, 1.05f, 2.5f, 1.85f) + lineTo(11.5f, 13.0f) + horizontalLineToRelative(3.75f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.25f) + horizontalLineToRelative(-3.23f) + curveToRelative(0.24f, 0.47f, 0.43f, 0.97f, 0.56f, 1.5f) + horizontalLineToRelative(2.67f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + lineTo(13.0f, 17.5f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(3.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(8.29f, 17.0f) + lineTo(3.5f, 17.0f) + close() + } + } + return _documentTableArrowRight!! + } + +private var _documentTableArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTableCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTableCheckmark.kt new file mode 100644 index 00000000..d4d3ff5a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTableCheckmark.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentTableCheckmark: ImageVector + get() { + if (_documentTableCheckmark != null) { + return _documentTableCheckmark!! + } + _documentTableCheckmark = fluentIcon(name = "Regular.DocumentTableCheckmark") { + fluentPath { + moveTo(18.0f, 20.5f) + horizontalLineToRelative(-5.73f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, 1.5f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(13.6f, 2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.5f) + curveToRelative(0.47f, -0.2f, 0.98f, -0.34f, 1.5f, -0.42f) + lineTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + close() + moveTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + lineToRelative(3.88f, 3.88f) + close() + moveTo(13.0f, 17.5f) + curveToRelative(0.0f, 0.52f, -0.06f, 1.02f, -0.17f, 1.5f) + horizontalLineToRelative(2.42f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(9.0f, 11.5f) + curveToRelative(0.98f, 0.4f, 1.83f, 1.05f, 2.5f, 1.85f) + lineTo(11.5f, 13.0f) + horizontalLineToRelative(3.75f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.25f) + horizontalLineToRelative(-3.23f) + curveToRelative(0.24f, 0.47f, 0.43f, 0.97f, 0.56f, 1.5f) + horizontalLineToRelative(2.67f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + lineTo(13.0f, 17.5f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(9.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineTo(5.5f, 18.79f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _documentTableCheckmark!! + } + +private var _documentTableCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTableCube.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTableCube.kt new file mode 100644 index 00000000..266a6445 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTableCube.kt @@ -0,0 +1,110 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentTableCube: ImageVector + get() { + if (_documentTableCube != null) { + return _documentTableCube!! + } + _documentTableCube = fluentIcon(name = "Regular.DocumentTableCube") { + fluentPath { + moveTo(17.0f, 13.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-6.5f) + curveToRelative(-0.42f, 0.0f, -0.8f, 0.15f, -1.1f, 0.4f) + lineTo(9.86f, 13.0f) + lineTo(10.0f, 13.0f) + verticalLineToRelative(0.07f) + lineToRelative(0.6f, 0.3f) + curveToRelative(0.36f, 0.18f, 0.67f, 0.44f, 0.9f, 0.76f) + lineTo(11.5f, 13.0f) + horizontalLineToRelative(3.75f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.25f) + horizontalLineToRelative(-3.78f) + curveToRelative(0.17f, 0.34f, 0.26f, 0.71f, 0.26f, 1.1f) + verticalLineToRelative(0.4f) + horizontalLineToRelative(3.52f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-3.27f) + lineTo(11.98f, 19.0f) + horizontalLineToRelative(3.27f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-4.0f) + close() + moveTo(11.87f, 20.5f) + lineTo(18.0f, 20.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(18.5f, 10.0f) + lineTo(14.0f, 10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(12.0f, 3.5f) + lineTo(6.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(7.4f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -0.64f, 0.22f) + lineToRelative(-0.86f, 0.43f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.17f) + arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.08f, 0.0f) + lineToRelative(0.06f, 0.01f) + curveToRelative(0.22f, 0.02f, 0.43f, 0.06f, 0.63f, 0.14f) + lineToRelative(0.16f, 0.09f) + curveToRelative(0.02f, 0.0f, 0.04f, 0.02f, 0.05f, 0.03f) + lineToRelative(0.05f, 0.02f) + lineToRelative(0.08f, 0.05f) + arcToRelative(2.07f, 2.07f, 0.0f, false, true, 0.3f, 0.25f) + lineToRelative(5.83f, 5.82f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 20.0f, 9.83f) + lineTo(20.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-7.43f) + lineToRelative(0.03f, -0.02f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 1.27f, -1.48f) + close() + moveTo(14.0f, 8.5f) + horizontalLineToRelative(3.38f) + lineTo(13.5f, 4.62f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + close() + moveTo(0.98f, 19.75f) + lineTo(0.98f, 15.6f) + curveToRelative(0.0f, -0.57f, 0.32f, -1.08f, 0.83f, -1.34f) + lineToRelative(3.5f, -1.75f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 1.34f, 0.0f) + lineToRelative(3.5f, 1.75f) + curveToRelative(0.5f, 0.26f, 0.83f, 0.77f, 0.83f, 1.34f) + verticalLineToRelative(4.15f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -0.83f, 1.34f) + lineToRelative(-3.5f, 1.75f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.34f, 0.0f) + lineToRelative(-3.5f, -1.75f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -0.83f, -1.34f) + close() + moveTo(2.53f, 15.7f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.23f, 0.67f) + lineToRelative(2.72f, 1.36f) + verticalLineToRelative(2.95f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-2.95f) + lineToRelative(2.72f, -1.36f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.44f, -0.9f) + lineToRelative(-2.78f, 1.4f) + lineToRelative(-2.78f, -1.4f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.67f, 0.23f) + close() + } + } + return _documentTableCube!! + } + +private var _documentTableCube: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTableSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTableSearch.kt new file mode 100644 index 00000000..6e16288c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTableSearch.kt @@ -0,0 +1,96 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentTableSearch: ImageVector + get() { + if (_documentTableSearch != null) { + return _documentTableSearch!! + } + _documentTableSearch = fluentIcon(name = "Regular.DocumentTableSearch") { + fluentPath { + moveTo(15.25f, 12.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-4.78f) + lineToRelative(-0.04f, -0.05f) + arcToRelative(5.48f, 5.48f, 0.0f, false, false, -0.43f, -5.61f) + verticalLineToRelative(-0.34f) + horizontalLineToRelative(-0.26f) + arcToRelative(5.52f, 5.52f, 0.0f, false, false, -1.67f, -1.36f) + curveToRelative(0.21f, -0.1f, 0.44f, -0.14f, 0.68f, -0.14f) + horizontalLineToRelative(6.5f) + close() + moveTo(11.5f, 16.5f) + lineTo(11.5f, 18.0f) + horizontalLineToRelative(3.75f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + lineTo(15.5f, 16.5f) + horizontalLineToRelative(-4.0f) + close() + moveTo(15.5f, 15.0f) + verticalLineToRelative(-1.25f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + lineTo(11.5f, 13.5f) + lineTo(11.5f, 15.0f) + horizontalLineToRelative(4.0f) + close() + moveTo(18.0f, 21.0f) + horizontalLineToRelative(-6.03f) + lineToRelative(0.52f, 0.51f) + curveToRelative(0.28f, 0.28f, 0.44f, 0.63f, 0.5f, 0.99f) + lineTo(18.0f, 22.5f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 10.33f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(13.6f, 3.1f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.51f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.2f) + curveToRelative(0.48f, -0.13f, 0.98f, -0.2f, 1.5f, -0.2f) + verticalLineToRelative(-7.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + close() + moveTo(17.38f, 9.0f) + lineTo(14.0f, 9.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 5.12f) + lineTo(17.38f, 9.0f) + close() + moveTo(5.5f, 21.5f) + curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) + lineToRelative(2.62f, 2.61f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.61f, -2.61f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, -3.67f, 1.9f) + close() + moveTo(5.5f, 20.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) + close() + } + } + return _documentTableSearch!! + } + +private var _documentTableSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTableTruck.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTableTruck.kt new file mode 100644 index 00000000..c10bc39b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTableTruck.kt @@ -0,0 +1,110 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentTableTruck: ImageVector + get() { + if (_documentTableTruck != null) { + return _documentTableTruck!! + } + _documentTableTruck = fluentIcon(name = "Regular.DocumentTableTruck") { + fluentPath { + moveTo(18.0f, 20.5f) + horizontalLineToRelative(-5.01f) + curveToRelative(-0.06f, 0.6f, -0.34f, 1.12f, -0.76f, 1.5f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(13.6f, 2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.0f) + horizontalLineToRelative(1.5f) + lineTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + close() + moveTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + lineToRelative(3.88f, 3.88f) + close() + moveTo(13.0f, 17.5f) + lineTo(13.0f, 19.0f) + horizontalLineToRelative(2.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(9.18f, 11.5f) + curveToRelative(0.47f, 0.34f, 0.81f, 0.83f, 0.97f, 1.4f) + curveToRelative(0.54f, 0.13f, 1.02f, 0.44f, 1.35f, 0.88f) + lineTo(11.5f, 13.0f) + horizontalLineToRelative(3.75f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.25f) + horizontalLineToRelative(-3.6f) + lineToRelative(0.75f, 1.5f) + horizontalLineToRelative(2.85f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + lineTo(13.0f, 17.5f) + close() + moveTo(2.6f, 12.0f) + curveToRelative(-0.88f, 0.0f, -1.6f, 0.72f, -1.6f, 1.6f) + verticalLineToRelative(6.42f) + curveToRelative(0.0f, 0.65f, 0.39f, 1.21f, 0.94f, 1.46f) + arcToRelative(1.83f, 1.83f, 0.0f, false, false, 3.59f, 0.14f) + horizontalLineToRelative(1.03f) + arcToRelative(1.83f, 1.83f, 0.0f, false, false, 3.55f, 0.0f) + horizontalLineToRelative(0.52f) + curveToRelative(0.75f, 0.0f, 1.37f, -0.61f, 1.37f, -1.37f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -0.2f, -0.05f, -0.42f, -0.15f, -0.6f) + lineToRelative(-1.02f, -2.06f) + curveToRelative(-0.23f, -0.46f, -0.7f, -0.76f, -1.23f, -0.76f) + horizontalLineToRelative(-0.35f) + verticalLineToRelative(-0.23f) + curveToRelative(0.0f, -0.88f, -0.72f, -1.6f, -1.6f, -1.6f) + lineTo(2.6f, 12.0f) + close() + moveTo(9.25f, 16.58f) + verticalLineToRelative(-1.83f) + horizontalLineToRelative(0.35f) + curveToRelative(0.17f, 0.0f, 0.33f, 0.1f, 0.41f, 0.25f) + lineToRelative(0.79f, 1.58f) + lineTo(9.25f, 16.58f) + close() + moveTo(2.83f, 21.17f) + arcToRelative(0.92f, 0.92f, 0.0f, true, true, 1.84f, 0.0f) + arcToRelative(0.92f, 0.92f, 0.0f, false, true, -1.84f, 0.0f) + close() + moveTo(8.33f, 22.08f) + arcToRelative(0.92f, 0.92f, 0.0f, true, true, 0.0f, -1.83f) + arcToRelative(0.92f, 0.92f, 0.0f, false, true, 0.0f, 1.83f) + close() + } + } + return _documentTableTruck!! + } + +private var _documentTableTruck: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentText.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentText.kt new file mode 100644 index 00000000..d849118b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentText.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentText: ImageVector + get() { + if (_documentText != null) { + return _documentText!! + } + _documentText = fluentIcon(name = "Regular.DocumentText") { + fluentPath { + moveTo(8.75f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.5f) + close() + moveTo(8.75f, 14.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.5f) + close() + moveTo(8.75f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.5f) + close() + moveTo(13.59f, 2.59f) + lineTo(19.4f, 8.4f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 20.0f, 9.83f) + lineTo(20.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + lineTo(6.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.17f) + arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.08f, 0.0f) + lineToRelative(0.06f, 0.01f) + curveToRelative(0.22f, 0.02f, 0.43f, 0.06f, 0.63f, 0.14f) + lineToRelative(0.16f, 0.09f) + curveToRelative(0.02f, 0.0f, 0.04f, 0.02f, 0.05f, 0.03f) + lineToRelative(0.05f, 0.02f) + lineToRelative(0.08f, 0.05f) + arcToRelative(2.07f, 2.07f, 0.0f, false, true, 0.3f, 0.25f) + close() + moveTo(18.0f, 20.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(18.5f, 10.0f) + lineTo(14.0f, 10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(12.0f, 3.5f) + lineTo(6.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(16.0f) + curveToRelative(0.0f, 0.27f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(12.0f) + close() + moveTo(17.38f, 8.5f) + lineTo(13.5f, 4.62f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(3.38f) + close() + } + } + return _documentText!! + } + +private var _documentText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTextClock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTextClock.kt new file mode 100644 index 00000000..621bc75e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTextClock.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentTextClock: ImageVector + get() { + if (_documentTextClock != null) { + return _documentTextClock!! + } + _documentTextClock = fluentIcon(name = "Regular.DocumentTextClock") { + fluentPath { + moveTo(11.19f, 13.0f) + arcTo(6.51f, 6.51f, 0.0f, false, false, 9.0f, 11.5f) + horizontalLineToRelative(6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.06f) + close() + moveTo(12.13f, 14.25f) + curveToRelative(0.27f, 0.47f, 0.48f, 0.97f, 0.63f, 1.5f) + horizontalLineToRelative(2.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.12f) + close() + moveTo(13.0f, 17.5f) + curveToRelative(0.0f, 0.34f, -0.03f, 0.67f, -0.08f, 1.0f) + horizontalLineToRelative(2.33f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.27f) + lineToRelative(0.02f, 0.5f) + close() + moveTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-5.73f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, 1.5f) + lineTo(18.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(13.6f, 2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.5f) + curveToRelative(0.47f, -0.2f, 0.98f, -0.34f, 1.5f, -0.42f) + lineTo(5.5f, 4.0f) + close() + moveTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + lineToRelative(3.88f, 3.88f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(6.5f, 17.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + lineTo(6.0f, 18.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + verticalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + verticalLineToRelative(2.5f) + close() + } + } + return _documentTextClock!! + } + +private var _documentTextClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTextExtract.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTextExtract.kt new file mode 100644 index 00000000..f2708f86 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTextExtract.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentTextExtract: ImageVector + get() { + if (_documentTextExtract != null) { + return _documentTextExtract!! + } + _documentTextExtract = fluentIcon(name = "Regular.DocumentTextExtract") { + fluentPath { + moveTo(18.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + lineTo(6.0f, 20.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + verticalLineToRelative(-3.0f) + lineTo(4.0f, 17.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(20.0f, 9.83f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(13.6f, 2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.04f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.34f, -0.25f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.16f, -0.09f) + curveToRelative(-0.2f, -0.08f, -0.41f, -0.12f, -0.63f, -0.14f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.08f, -0.01f) + lineTo(6.0f, 2.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(9.0f) + horizontalLineToRelative(1.5f) + lineTo(5.5f, 4.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(6.0f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(10.0f) + close() + moveTo(13.5f, 4.62f) + lineTo(17.38f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.62f) + close() + moveTo(8.75f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.5f) + close() + moveTo(2.75f, 14.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.5f) + close() + moveTo(8.75f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.5f) + close() + } + } + return _documentTextExtract!! + } + +private var _documentTextExtract: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTextLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTextLink.kt new file mode 100644 index 00000000..1e19abe8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTextLink.kt @@ -0,0 +1,106 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentTextLink: ImageVector + get() { + if (_documentTextLink != null) { + return _documentTextLink!! + } + _documentTextLink = fluentIcon(name = "Regular.DocumentTextLink") { + fluentPath { + moveTo(18.0f, 20.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(18.5f, 10.0f) + lineTo(14.0f, 10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(12.0f, 3.5f) + lineTo(6.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(10.0f) + horizontalLineToRelative(-0.75f) + curveToRelative(-0.26f, 0.0f, -0.5f, 0.02f, -0.75f, 0.06f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.17f) + arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.08f, 0.0f) + lineToRelative(0.06f, 0.01f) + curveToRelative(0.22f, 0.02f, 0.43f, 0.06f, 0.63f, 0.14f) + lineToRelative(0.16f, 0.09f) + curveToRelative(0.02f, 0.0f, 0.04f, 0.02f, 0.05f, 0.03f) + lineToRelative(0.05f, 0.02f) + lineToRelative(0.08f, 0.05f) + arcToRelative(2.07f, 2.07f, 0.0f, false, true, 0.3f, 0.25f) + lineToRelative(5.83f, 5.82f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 20.0f, 9.83f) + lineTo(20.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-6.29f) + curveToRelative(0.41f, -0.43f, 0.74f, -0.94f, 0.96f, -1.5f) + lineTo(18.0f, 20.5f) + close() + moveTo(17.38f, 8.5f) + lineTo(13.5f, 4.62f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(3.38f) + close() + moveTo(9.78f, 14.25f) + curveToRelative(0.85f, 0.29f, 1.6f, 0.82f, 2.15f, 1.5f) + horizontalLineToRelative(3.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(9.77f, 14.25f) + close() + moveTo(12.66f, 17.0f) + curveToRelative(0.18f, 0.47f, 0.3f, 0.97f, 0.32f, 1.5f) + horizontalLineToRelative(2.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.58f) + close() + moveTo(8.74f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.5f) + close() + moveTo(12.0f, 18.75f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 8.25f, 15.0f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + verticalLineToRelative(-0.01f) + horizontalLineToRelative(0.2f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 12.0f, 18.74f) + close() + moveTo(5.5f, 15.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-0.2f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + lineTo(4.6f, 21.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(9.0f, 18.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + } + } + return _documentTextLink!! + } + +private var _documentTextLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTextToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTextToolbox.kt new file mode 100644 index 00000000..07ae5d47 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentTextToolbox.kt @@ -0,0 +1,123 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentTextToolbox: ImageVector + get() { + if (_documentTextToolbox != null) { + return _documentTextToolbox!! + } + _documentTextToolbox = fluentIcon(name = "Regular.DocumentTextToolbox") { + fluentPath { + moveTo(10.81f, 13.0f) + arcToRelative(2.76f, 2.76f, 0.0f, false, false, -1.41f, -1.5f) + horizontalLineToRelative(5.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.44f) + close() + moveTo(11.59f, 14.25f) + curveToRelative(0.61f, 0.3f, 1.09f, 0.84f, 1.3f, 1.5f) + horizontalLineToRelative(2.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.66f) + close() + moveTo(15.25f, 17.0f) + lineTo(13.0f, 17.0f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(5.5f, 4.0f) + verticalLineToRelative(7.25f) + horizontalLineToRelative(-0.75f) + curveToRelative(-0.26f, 0.0f, -0.51f, 0.04f, -0.75f, 0.1f) + lineTo(4.0f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(6.17f) + arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.08f, 0.0f) + lineToRelative(0.06f, 0.01f) + curveToRelative(0.22f, 0.02f, 0.43f, 0.06f, 0.63f, 0.14f) + lineToRelative(0.16f, 0.09f) + curveToRelative(0.02f, 0.0f, 0.04f, 0.02f, 0.05f, 0.03f) + lineToRelative(0.05f, 0.02f) + lineToRelative(0.08f, 0.05f) + arcToRelative(2.07f, 2.07f, 0.0f, false, true, 0.3f, 0.25f) + lineToRelative(5.83f, 5.82f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 20.0f, 9.83f) + lineTo(20.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-5.05f) + curveToRelative(0.03f, -0.16f, 0.05f, -0.33f, 0.05f, -0.5f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(18.5f, 10.0f) + lineTo(14.0f, 10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(12.0f, 3.5f) + lineTo(6.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + close() + moveTo(17.38f, 8.5f) + lineTo(13.5f, 4.62f) + lineTo(13.5f, 8.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(3.38f) + close() + moveTo(3.0f, 15.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + lineTo(1.0f, 18.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(5.0f, 18.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(9.5f, 18.0f) + lineTo(12.0f, 18.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(10.0f, 15.0f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.5f) + curveTo(3.78f, 12.25f, 3.0f, 13.03f, 3.0f, 14.0f) + verticalLineToRelative(1.0f) + close() + moveTo(4.5f, 14.0f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(1.0f, 21.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + lineTo(12.0f, 19.5f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-8.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 1.0f, 21.5f) + close() + } + } + return _documentTextToolbox!! + } + +private var _documentTextToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentToolbox.kt new file mode 100644 index 00000000..1c40a722 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentToolbox.kt @@ -0,0 +1,97 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentToolbox: ImageVector + get() { + if (_documentToolbox != null) { + return _documentToolbox!! + } + _documentToolbox = fluentIcon(name = "Regular.DocumentToolbox") { + fluentPath { + moveTo(5.5f, 4.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + lineTo(12.0f, 3.5f) + lineTo(12.0f, 8.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(9.75f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(13.0f, 20.5f) + lineTo(13.0f, 22.0f) + horizontalLineToRelative(4.75f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 9.66f) + curveToRelative(0.0f, -0.46f, -0.18f, -0.9f, -0.51f, -1.23f) + lineTo(13.57f, 2.5f) + arcTo(1.75f, 1.75f, 0.0f, false, false, 12.34f, 2.0f) + lineTo(6.25f, 2.0f) + curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) + verticalLineToRelative(8.02f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 5.0f, 12.0f) + horizontalLineToRelative(0.5f) + lineTo(5.5f, 4.25f) + close() + moveTo(17.44f, 8.5f) + lineTo(14.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(13.5f, 4.56f) + lineToRelative(3.94f, 3.94f) + close() + moveTo(4.0f, 16.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(2.0f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + lineTo(9.0f, 16.0f) + horizontalLineToRelative(1.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + lineTo(12.0f, 19.0f) + lineTo(9.0f, 19.0f) + verticalLineToRelative(-0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(0.5f) + lineTo(5.0f, 19.0f) + verticalLineToRelative(-0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(0.5f) + lineTo(1.0f, 19.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + lineTo(4.0f, 16.0f) + close() + moveTo(5.0f, 14.5f) + lineTo(5.0f, 16.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + close() + moveTo(9.0f, 20.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-8.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 1.0f, 21.5f) + lineTo(1.0f, 20.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + lineTo(5.0f, 20.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + lineTo(9.0f, 20.0f) + close() + } + } + return _documentToolbox!! + } + +private var _documentToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentWidth.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentWidth.kt new file mode 100644 index 00000000..42e061a7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DocumentWidth.kt @@ -0,0 +1,105 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DocumentWidth: ImageVector + get() { + if (_documentWidth != null) { + return _documentWidth!! + } + _documentWidth = fluentIcon(name = "Regular.DocumentWidth") { + fluentPath { + moveToRelative(18.5f, 15.72f) + lineToRelative(0.01f, 0.02f) + curveToRelative(0.4f, 0.4f, 0.95f, 0.57f, 1.49f, 0.48f) + verticalLineToRelative(3.53f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + lineTo(6.25f, 22.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(4.0f, 19.75f) + verticalLineToRelative(-3.53f) + curveToRelative(0.49f, 0.08f, 0.98f, -0.05f, 1.36f, -0.37f) + lineToRelative(0.14f, -0.13f) + verticalLineToRelative(4.03f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(11.5f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + verticalLineToRelative(-4.03f) + close() + moveTo(4.78f, 8.97f) + curveToRelative(0.27f, 0.26f, 0.3f, 0.68f, 0.07f, 0.97f) + lineToRelative(-0.07f, 0.09f) + lineToRelative(-1.22f, 1.22f) + horizontalLineToRelative(3.78f) + curveToRelative(0.37f, 0.0f, 0.66f, 0.33f, 0.66f, 0.75f) + curveToRelative(0.0f, 0.38f, -0.25f, 0.7f, -0.57f, 0.74f) + lineTo(3.56f, 12.74f) + lineToRelative(1.22f, 1.23f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-2.37f, -2.37f) + arcTo(0.77f, 0.77f, 0.0f, false, true, 1.0f, 12.0f) + curveToRelative(0.0f, -0.29f, 0.14f, -0.54f, 0.35f, -0.66f) + lineToRelative(2.37f, -2.37f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(19.22f, 8.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.08f) + lineToRelative(0.08f, 0.08f) + lineToRelative(2.37f, 2.36f) + curveToRelative(0.2f, 0.13f, 0.35f, 0.38f, 0.35f, 0.67f) + curveToRelative(0.0f, 0.25f, -0.1f, 0.47f, -0.28f, 0.6f) + lineToRelative(-0.07f, 0.06f) + lineToRelative(-2.37f, 2.37f) + lineToRelative(-0.08f, 0.07f) + curveToRelative(-0.27f, 0.2f, -0.62f, 0.2f, -0.89f, 0.0f) + lineToRelative(-0.1f, -0.07f) + lineToRelative(-0.06f, -0.09f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.01f, -0.88f) + lineToRelative(0.08f, -0.1f) + lineToRelative(1.22f, -1.21f) + horizontalLineToRelative(-3.78f) + lineToRelative(-0.1f, -0.01f) + curveToRelative(-0.31f, -0.05f, -0.56f, -0.37f, -0.56f, -0.74f) + curveToRelative(0.0f, -0.38f, 0.25f, -0.7f, 0.57f, -0.75f) + lineTo(20.44f, 11.25f) + lineToRelative(-1.22f, -1.22f) + lineToRelative(-0.07f, -0.09f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.07f, -0.97f) + close() + moveTo(17.75f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(3.52f) + curveToRelative(-0.47f, -0.07f, -0.97f, 0.06f, -1.36f, 0.38f) + lineToRelative(-0.14f, 0.12f) + lineTo(18.5f, 4.25f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + lineTo(6.25f, 3.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(4.02f) + horizontalLineToRelative(-0.01f) + curveToRelative(-0.4f, -0.41f, -0.96f, -0.58f, -1.5f, -0.5f) + lineTo(4.0f, 4.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(6.25f, 2.0f) + horizontalLineToRelative(11.5f) + close() + } + } + return _documentWidth!! + } + +private var _documentWidth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DoorArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DoorArrowLeft.kt new file mode 100644 index 00000000..0720252b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DoorArrowLeft.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DoorArrowLeft: ImageVector + get() { + if (_doorArrowLeft != null) { + return _doorArrowLeft!! + } + _doorArrowLeft = fluentIcon(name = "Regular.DoorArrowLeft") { + fluentPath { + moveTo(6.25f, 2.0f) + curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) + verticalLineToRelative(15.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(6.56f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, -1.5f) + lineTo(6.25f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(5.5f, 4.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(6.83f) + curveToRelative(0.52f, 0.08f, 1.03f, 0.22f, 1.5f, 0.42f) + lineTo(20.0f, 4.25f) + curveTo(20.0f, 3.01f, 19.0f, 2.0f, 17.75f, 2.0f) + lineTo(6.25f, 2.0f) + close() + moveTo(17.5f, 23.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) + close() + moveTo(21.0f, 17.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-4.8f) + lineToRelative(1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, 0.7f) + lineTo(15.71f, 17.0f) + horizontalLineToRelative(4.79f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + close() + moveTo(8.5f, 13.25f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + close() + } + } + return _doorArrowLeft!! + } + +private var _doorArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DoorTag.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DoorTag.kt new file mode 100644 index 00000000..6328d9fd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DoorTag.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DoorTag: ImageVector + get() { + if (_doorTag != null) { + return _doorTag!! + } + _doorTag = fluentIcon(name = "Regular.DoorTag") { + fluentPath { + moveTo(9.75f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + close() + moveTo(10.8f, 7.1f) + arcTo(1.5f, 1.5f, 0.0f, true, true, 12.0f, 9.5f) + horizontalLineTo(8.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineTo(20.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(8.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + verticalLineTo(8.0f) + arcTo(6.0f, 6.0f, 0.0f, false, false, 7.2f, 4.4f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 3.6f, 2.7f) + close() + moveTo(12.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -2.4f, 1.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.2f, -0.9f) + arcTo(4.5f, 4.5f, 0.0f, false, true, 16.5f, 8.0f) + verticalLineToRelative(12.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineTo(8.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) + close() + } + } + return _doorTag!! + } + +private var _doorTag: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DoubleSwipeDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DoubleSwipeDown.kt new file mode 100644 index 00000000..955de5b2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DoubleSwipeDown.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DoubleSwipeDown: ImageVector + get() { + if (_doubleSwipeDown != null) { + return _doubleSwipeDown!! + } + _doubleSwipeDown = fluentIcon(name = "Regular.DoubleSwipeDown") { + fluentPath { + moveTo(6.75f, 6.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(12.69f) + lineToRelative(2.22f, -2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-3.5f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-3.5f, -3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) + lineToRelative(0.08f, 0.07f) + lineTo(6.0f, 19.44f) + lineTo(6.0f, 6.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(17.25f, 6.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + verticalLineToRelative(12.79f) + lineToRelative(2.23f, -2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -0.07f) + lineToRelative(0.09f, 0.07f) + curveToRelative(0.26f, 0.27f, 0.29f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-3.5f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-3.5f, -3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -1.13f) + lineToRelative(0.09f, 0.07f) + lineToRelative(2.22f, 2.22f) + lineTo(16.5f, 6.75f) + curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.75f, -0.75f) + close() + moveTo(6.75f, 2.0f) + arcToRelative(4.75f, 4.75f, 0.0f, false, true, 1.75f, 9.17f) + lineTo(8.5f, 9.49f) + arcToRelative(3.25f, 3.25f, 0.0f, true, false, -3.5f, 0.0f) + verticalLineToRelative(1.68f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 6.75f, 2.0f) + close() + moveTo(17.25f, 2.0f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 19.0f, 11.17f) + lineTo(19.0f, 9.49f) + arcToRelative(3.25f, 3.25f, 0.0f, true, false, -3.5f, 0.0f) + verticalLineToRelative(1.68f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 17.25f, 2.0f) + close() + } + } + return _doubleSwipeDown!! + } + +private var _doubleSwipeDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DoubleSwipeUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DoubleSwipeUp.kt new file mode 100644 index 00000000..00896b88 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DoubleSwipeUp.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DoubleSwipeUp: ImageVector + get() { + if (_doubleSwipeUp != null) { + return _doubleSwipeUp!! + } + _doubleSwipeUp = fluentIcon(name = "Regular.DoubleSwipeUp") { + fluentPath { + moveTo(6.75f, 18.0f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + lineTo(7.5f, 4.56f) + lineToRelative(2.22f, 2.22f) + curveToRelative(0.27f, 0.27f, 0.68f, 0.3f, 0.98f, 0.07f) + lineToRelative(0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.07f, -0.98f) + lineToRelative(-0.07f, -0.08f) + lineToRelative(-3.5f, -3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, -0.07f) + lineToRelative(-0.08f, 0.07f) + lineToRelative(-3.5f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) + lineToRelative(0.08f, -0.07f) + lineTo(6.0f, 4.56f) + verticalLineToRelative(12.69f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + close() + moveTo(17.25f, 18.0f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineTo(17.99f, 4.56f) + lineToRelative(2.23f, 2.22f) + curveToRelative(0.26f, 0.27f, 0.68f, 0.3f, 0.97f, 0.07f) + lineToRelative(0.09f, -0.07f) + curveToRelative(0.26f, -0.27f, 0.29f, -0.68f, 0.07f, -0.98f) + lineToRelative(-0.07f, -0.08f) + lineToRelative(-3.5f, -3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, -0.07f) + lineToRelative(-0.08f, 0.07f) + lineToRelative(-3.5f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.97f, 1.13f) + lineToRelative(0.09f, -0.07f) + lineToRelative(2.22f, -2.22f) + verticalLineToRelative(12.69f) + curveToRelative(0.0f, 0.41f, 0.33f, 0.75f, 0.75f, 0.75f) + close() + moveTo(6.75f, 22.0f) + arcToRelative(4.75f, 4.75f, 0.0f, false, false, 1.75f, -9.17f) + verticalLineToRelative(1.68f) + arcToRelative(3.25f, 3.25f, 0.0f, true, true, -3.5f, 0.0f) + verticalLineToRelative(-1.68f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 6.75f, 22.0f) + close() + moveTo(17.25f, 22.0f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 19.0f, 12.83f) + verticalLineToRelative(1.68f) + arcToRelative(3.25f, 3.25f, 0.0f, true, true, -3.5f, 0.0f) + verticalLineToRelative(-1.68f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 17.25f, 22.0f) + close() + } + } + return _doubleSwipeUp!! + } + +private var _doubleSwipeUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DoubleTapSwipeDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DoubleTapSwipeDown.kt new file mode 100644 index 00000000..7cb932fb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DoubleTapSwipeDown.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DoubleTapSwipeDown: ImageVector + get() { + if (_doubleTapSwipeDown != null) { + return _doubleTapSwipeDown!! + } + _doubleTapSwipeDown = fluentIcon(name = "Regular.DoubleTapSwipeDown") { + fluentPath { + moveTo(12.53f, 21.78f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-3.5f, -3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(2.22f, 2.22f) + lineTo(11.25f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(10.69f) + lineToRelative(2.22f, -2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-3.5f, 3.5f) + close() + moveTo(5.0f, 9.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, false, 5.25f, 6.78f) + verticalLineToRelative(-1.56f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 3.5f, 0.0f) + verticalLineToRelative(1.56f) + arcTo(7.0f, 7.0f, 0.0f, true, false, 5.0f, 9.0f) + close() + moveTo(7.5f, 9.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 2.75f, 4.15f) + verticalLineToRelative(-1.71f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 3.5f, 0.0f) + verticalLineToRelative(1.7f) + arcTo(4.5f, 4.5f, 0.0f, true, false, 7.5f, 9.0f) + close() + } + } + return _doubleTapSwipeDown!! + } + +private var _doubleTapSwipeDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DoubleTapSwipeUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DoubleTapSwipeUp.kt new file mode 100644 index 00000000..84d889ce --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DoubleTapSwipeUp.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DoubleTapSwipeUp: ImageVector + get() { + if (_doubleTapSwipeUp != null) { + return _doubleTapSwipeUp!! + } + _doubleTapSwipeUp = fluentIcon(name = "Regular.DoubleTapSwipeUp") { + fluentPath { + moveTo(12.53f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-3.5f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineToRelative(2.22f, -2.22f) + verticalLineToRelative(10.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(12.75f, 4.56f) + lineToRelative(2.22f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-3.5f, -3.5f) + close() + moveTo(5.0f, 15.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, 5.25f, -6.78f) + verticalLineToRelative(1.56f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 3.5f, 0.0f) + lineTo(13.75f, 8.22f) + arcTo(7.0f, 7.0f, 0.0f, true, true, 5.0f, 15.0f) + close() + moveTo(7.5f, 15.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 2.75f, -4.15f) + verticalLineToRelative(1.71f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 3.5f, 0.0f) + verticalLineToRelative(-1.7f) + arcTo(4.5f, 4.5f, 0.0f, true, true, 7.5f, 15.0f) + close() + } + } + return _doubleTapSwipeUp!! + } + +private var _doubleTapSwipeUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Drafts.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Drafts.kt new file mode 100644 index 00000000..25d8515b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Drafts.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Drafts: ImageVector + get() { + if (_drafts != null) { + return _drafts!! + } + _drafts = fluentIcon(name = "Regular.Drafts") { + fluentPath { + moveToRelative(20.88f, 2.83f) + lineToRelative(0.15f, 0.14f) + lineToRelative(0.15f, 0.15f) + arcToRelative(3.58f, 3.58f, 0.0f, false, true, -0.15f, 4.91f) + lineTo(9.06f, 20.0f) + curveToRelative(-0.27f, 0.28f, -0.62f, 0.48f, -1.0f, 0.58f) + lineToRelative(-5.11f, 1.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.92f, -0.93f) + lineToRelative(1.4f, -5.11f) + curveToRelative(0.1f, -0.38f, 0.3f, -0.72f, 0.57f, -1.0f) + lineTo(15.97f, 2.97f) + arcToRelative(3.58f, 3.58f, 0.0f, false, true, 4.9f, -0.14f) + close() + moveTo(15.0f, 6.06f) + lineTo(5.06f, 16.0f) + curveToRelative(-0.09f, 0.1f, -0.16f, 0.2f, -0.19f, 0.33f) + lineToRelative(-1.05f, 3.85f) + lineToRelative(3.85f, -1.05f) + curveToRelative(0.13f, -0.03f, 0.24f, -0.1f, 0.33f, -0.2f) + lineTo(17.94f, 9.0f) + lineTo(15.0f, 6.06f) + close() + moveTo(6.53f, 11.0f) + lineToRelative(-1.5f, 1.5f) + lineTo(2.75f, 12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.78f) + close() + moveTo(10.53f, 7.0f) + lineTo(9.03f, 8.5f) + lineTo(2.75f, 8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(7.78f) + close() + moveTo(17.03f, 4.03f) + lineTo(16.06f, 5.0f) + lineTo(19.0f, 7.94f) + lineToRelative(0.97f, -0.97f) + arcToRelative(2.08f, 2.08f, 0.0f, true, false, -2.94f, -2.94f) + close() + moveTo(14.53f, 3.0f) + lineToRelative(-1.5f, 1.5f) + lineTo(2.75f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(11.78f) + close() + } + } + return _drafts!! + } + +private var _drafts: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Drag.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Drag.kt new file mode 100644 index 00000000..de830734 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Drag.kt @@ -0,0 +1,152 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Drag: ImageVector + get() { + if (_drag != null) { + return _drag!! + } + _drag = fluentIcon(name = "Regular.Drag") { + fluentPath { + moveTo(12.0f, 16.5f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(2.19f) + lineToRelative(0.72f, -0.72f) + curveToRelative(0.27f, -0.27f, 0.68f, -0.3f, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-2.0f, 2.0f) + lineToRelative(-0.04f, 0.04f) + lineToRelative(-0.07f, 0.05f) + lineToRelative(-0.1f, 0.06f) + lineToRelative(-0.08f, 0.03f) + lineToRelative(-0.1f, 0.03f) + horizontalLineToRelative(-0.19f) + lineToRelative(-0.12f, -0.01f) + lineToRelative(-0.07f, -0.02f) + lineToRelative(-0.06f, -0.02f) + lineToRelative(-0.07f, -0.04f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.03f, -0.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.08f, -0.07f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) + lineToRelative(0.08f, 0.07f) + lineToRelative(0.72f, 0.72f) + verticalLineToRelative(-2.19f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + close() + moveTo(12.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) + close() + moveTo(18.72f, 9.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + lineToRelative(2.0f, 2.0f) + lineToRelative(0.04f, 0.04f) + lineToRelative(0.05f, 0.07f) + lineToRelative(0.06f, 0.1f) + lineToRelative(0.03f, 0.08f) + lineToRelative(0.03f, 0.1f) + verticalLineToRelative(0.31f) + lineToRelative(-0.03f, 0.07f) + lineToRelative(-0.02f, 0.06f) + lineToRelative(-0.04f, 0.07f) + lineToRelative(-0.03f, 0.05f) + lineToRelative(-0.03f, 0.04f) + lineToRelative(-0.06f, 0.07f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(0.72f, -0.72f) + horizontalLineToRelative(-2.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineTo(16.51f, 12.0f) + curveToRelative(0.0f, -0.38f, 0.27f, -0.7f, 0.64f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(2.19f) + lineToRelative(-0.72f, -0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + close() + moveTo(4.22f, 9.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-0.72f, 0.72f) + horizontalLineToRelative(2.2f) + curveToRelative(0.37f, 0.0f, 0.68f, 0.28f, 0.73f, 0.65f) + lineToRelative(0.01f, 0.1f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(4.56f, 12.75f) + lineToRelative(0.72f, 0.72f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-2.0f, -2.0f) + lineToRelative(-0.1f, -0.11f) + lineToRelative(-0.05f, -0.1f) + lineToRelative(-0.03f, -0.08f) + lineToRelative(-0.03f, -0.1f) + verticalLineToRelative(-0.19f) + lineToRelative(0.01f, -0.12f) + lineToRelative(0.02f, -0.07f) + lineToRelative(0.02f, -0.06f) + lineToRelative(0.04f, -0.07f) + lineToRelative(0.03f, -0.05f) + lineToRelative(0.02f, -0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.07f, -0.08f) + lineToRelative(2.0f, -2.0f) + close() + moveTo(12.0f, 10.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(11.86f, 2.01f) + horizontalLineToRelative(0.07f) + lineToRelative(0.09f, -0.01f) + horizontalLineToRelative(0.06f) + lineToRelative(0.1f, 0.02f) + lineToRelative(0.06f, 0.02f) + lineToRelative(0.06f, 0.02f) + lineToRelative(0.07f, 0.04f) + lineToRelative(0.05f, 0.03f) + lineToRelative(0.04f, 0.03f) + lineToRelative(0.07f, 0.06f) + lineToRelative(2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-0.72f, -0.72f) + verticalLineToRelative(2.19f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineTo(11.26f, 4.56f) + lineToRelative(-0.73f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(2.0f, -2.0f) + lineToRelative(0.11f, -0.1f) + lineToRelative(0.1f, -0.05f) + lineToRelative(0.08f, -0.03f) + lineToRelative(0.1f, -0.03f) + close() + } + } + return _drag!! + } + +private var _drag: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrawImage.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrawImage.kt new file mode 100644 index 00000000..1926dc88 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrawImage.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DrawImage: ImageVector + get() { + if (_drawImage != null) { + return _drawImage!! + } + _drawImage = fluentIcon(name = "Regular.DrawImage") { + fluentPath { + moveTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(12.28f) + curveToRelative(0.0f, 1.3f, 1.57f, 1.96f, 2.5f, 1.05f) + lineToRelative(4.03f, -3.96f) + lineToRelative(0.02f, -0.02f) + lineToRelative(1.92f, -1.89f) + lineToRelative(0.09f, -0.07f) + curveToRelative(0.29f, -0.2f, 0.7f, -0.18f, 0.96f, 0.07f) + lineToRelative(2.08f, 2.04f) + lineToRelative(1.06f, -1.06f) + lineToRelative(-2.09f, -2.05f) + lineToRelative(-0.12f, -0.11f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.02f, 0.11f) + lineTo(5.97f, 17.0f) + horizontalLineToRelative(0.01f) + lineTo(4.5f, 18.46f) + lineTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.98f) + curveToRelative(0.48f, -0.19f, 1.0f, -0.26f, 1.5f, -0.22f) + lineTo(21.0f, 6.25f) + close() + moveTo(17.5f, 8.75f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, -4.5f, 0.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) + close() + moveTo(14.5f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(13.2f, 18.57f) + lineTo(19.1f, 12.67f) + arcToRelative(2.29f, 2.29f, 0.0f, true, true, 3.23f, 3.23f) + lineToRelative(-5.9f, 5.9f) + curveToRelative(-0.34f, 0.35f, -0.78f, 0.6f, -1.25f, 0.71f) + lineToRelative(-1.83f, 0.46f) + lineToRelative(-0.15f, 0.03f) + curveToRelative(-0.59f, 0.2f, -2.98f, 0.57f, -3.82f, -0.1f) + curveToRelative(-0.58f, -0.44f, -0.47f, -1.33f, -0.22f, -1.81f) + curveToRelative(0.04f, -0.08f, -0.02f, -0.18f, -0.1f, -0.17f) + curveToRelative(-0.67f, 0.1f, -1.25f, 0.45f, -1.83f, 0.8f) + curveToRelative(-0.79f, 0.47f, -1.57f, 0.94f, -2.55f, 0.82f) + arcToRelative(2.08f, 2.08f, 0.0f, false, true, -1.71f, -1.26f) + curveToRelative(-0.1f, -0.21f, 0.18f, -0.4f, 0.38f, -0.29f) + curveToRelative(0.47f, 0.26f, 1.11f, 0.5f, 1.64f, 0.38f) + curveToRelative(0.37f, -0.08f, 0.9f, -0.45f, 1.5f, -0.87f) + curveToRelative(1.06f, -0.76f, 2.33f, -1.65f, 3.28f, -1.27f) + curveToRelative(0.84f, 0.34f, 1.46f, 1.15f, 1.03f, 2.11f) + curveToRelative(-0.05f, 0.12f, 0.0f, 0.27f, 0.13f, 0.3f) + curveToRelative(0.42f, 0.1f, 0.78f, 0.06f, 1.13f, -0.1f) + lineToRelative(0.43f, -1.72f) + curveToRelative(0.12f, -0.47f, 0.36f, -0.9f, 0.7f, -1.25f) + close() + } + } + return _drawImage!! + } + +private var _drawImage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrawShape.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrawShape.kt new file mode 100644 index 00000000..e743972a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrawShape.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DrawShape: ImageVector + get() { + if (_drawShape != null) { + return _drawShape!! + } + _drawShape = fluentIcon(name = "Regular.DrawShape") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-13.0f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.98f) + curveToRelative(0.48f, -0.19f, 1.0f, -0.26f, 1.5f, -0.22f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(13.2f, 18.57f) + lineTo(19.1f, 12.67f) + arcToRelative(2.29f, 2.29f, 0.0f, true, true, 3.23f, 3.23f) + lineToRelative(-5.9f, 5.9f) + curveToRelative(-0.34f, 0.35f, -0.78f, 0.6f, -1.25f, 0.71f) + lineToRelative(-1.83f, 0.46f) + lineToRelative(-0.15f, 0.03f) + curveToRelative(-0.59f, 0.2f, -2.98f, 0.57f, -3.82f, -0.1f) + curveToRelative(-0.58f, -0.44f, -0.47f, -1.33f, -0.22f, -1.81f) + curveToRelative(0.04f, -0.08f, -0.02f, -0.18f, -0.1f, -0.17f) + curveToRelative(-0.67f, 0.1f, -1.25f, 0.45f, -1.83f, 0.8f) + curveToRelative(-0.79f, 0.47f, -1.57f, 0.94f, -2.55f, 0.82f) + arcToRelative(2.08f, 2.08f, 0.0f, false, true, -1.71f, -1.26f) + curveToRelative(-0.1f, -0.21f, 0.18f, -0.4f, 0.38f, -0.29f) + curveToRelative(0.47f, 0.26f, 1.11f, 0.5f, 1.64f, 0.38f) + curveToRelative(0.37f, -0.08f, 0.9f, -0.45f, 1.5f, -0.87f) + curveToRelative(1.06f, -0.76f, 2.33f, -1.65f, 3.28f, -1.27f) + curveToRelative(0.84f, 0.34f, 1.46f, 1.15f, 1.03f, 2.11f) + curveToRelative(-0.05f, 0.12f, 0.0f, 0.27f, 0.13f, 0.3f) + curveToRelative(0.42f, 0.1f, 0.78f, 0.06f, 1.13f, -0.1f) + lineToRelative(0.43f, -1.72f) + curveToRelative(0.12f, -0.47f, 0.36f, -0.9f, 0.7f, -1.25f) + close() + } + } + return _drawShape!! + } + +private var _drawShape: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrawText.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrawText.kt new file mode 100644 index 00000000..5fc5eec3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrawText.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DrawText: ImageVector + get() { + if (_drawText != null) { + return _drawText!! + } + _drawText = fluentIcon(name = "Regular.DrawText") { + fluentPath { + moveTo(10.0f, 5.71f) + lineTo(7.23f, 13.5f) + horizontalLineToRelative(5.53f) + lineTo(10.0f, 5.71f) + close() + moveTo(13.57f, 15.78f) + lineTo(13.3f, 15.0f) + lineTo(6.7f, 15.0f) + lineToRelative(-1.24f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.42f, -0.5f) + lineTo(9.16f, 3.6f) + arcToRelative(0.89f, 0.89f, 0.0f, false, true, 1.68f, 0.0f) + lineToRelative(3.9f, 11.0f) + lineToRelative(-1.17f, 1.18f) + close() + moveTo(5.0f, 20.38f) + curveToRelative(-0.53f, 0.11f, -1.17f, -0.13f, -1.64f, -0.39f) + curveToRelative(-0.2f, -0.1f, -0.48f, 0.08f, -0.38f, 0.3f) + curveToRelative(0.24f, 0.52f, 0.73f, 1.12f, 1.7f, 1.25f) + curveToRelative(0.99f, 0.12f, 1.77f, -0.35f, 2.56f, -0.82f) + curveToRelative(0.58f, -0.35f, 1.16f, -0.7f, 1.82f, -0.8f) + curveToRelative(0.09f, -0.01f, 0.15f, 0.1f, 0.1f, 0.17f) + curveToRelative(-0.24f, 0.48f, -0.35f, 1.37f, 0.22f, 1.82f) + curveToRelative(0.85f, 0.66f, 3.24f, 0.29f, 3.83f, 0.09f) + lineToRelative(0.15f, -0.03f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + lineToRelative(-5.9f, 5.9f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.44f, 1.71f) + curveToRelative(-0.35f, 0.17f, -0.7f, 0.2f, -1.13f, 0.1f) + curveToRelative(-0.13f, -0.02f, -0.18f, -0.17f, -0.13f, -0.29f) + curveToRelative(0.43f, -0.96f, -0.19f, -1.77f, -1.03f, -2.11f) + curveToRelative(-0.95f, -0.38f, -2.22f, 0.51f, -3.29f, 1.27f) + curveToRelative(-0.6f, 0.42f, -1.12f, 0.8f, -1.5f, 0.87f) + close() + } + } + return _drawText!! + } + +private var _drawText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrawerAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrawerAdd.kt new file mode 100644 index 00000000..afe3cf9c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrawerAdd.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DrawerAdd: ImageVector + get() { + if (_drawerAdd != null) { + return _drawerAdd!! + } + _drawerAdd = fluentIcon(name = "Regular.DrawerAdd") { + fluentPath { + moveTo(22.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(17.0f, 7.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(16.0f, 7.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(16.0f, 6.0f) + lineTo(16.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + lineTo(17.0f, 6.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(17.0f, 7.0f) + close() + moveTo(21.0f, 11.19f) + curveToRelative(-0.44f, 0.43f, -0.95f, 0.8f, -1.5f, 1.08f) + lineTo(19.5f, 14.0f) + horizontalLineToRelative(-4.56f) + arcToRelative(0.7f, 0.7f, 0.0f, false, false, -0.69f, 0.7f) + verticalLineToRelative(0.05f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) + verticalLineToRelative(-0.06f) + arcToRelative(0.7f, 0.7f, 0.0f, false, false, -0.7f, -0.69f) + lineTo(4.5f, 14.0f) + lineTo(4.5f, 9.5f) + horizontalLineToRelative(6.23f) + arcToRelative(6.46f, 6.46f, 0.0f, false, true, -0.56f, -1.5f) + lineTo(4.5f, 8.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(3.83f) + curveToRelative(0.08f, -0.52f, 0.22f, -1.03f, 0.42f, -1.5f) + lineTo(6.25f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 7.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 20.55f, 4.46f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-7.56f) + close() + moveTo(19.5f, 15.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(6.25f, 20.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 15.5f) + horizontalLineToRelative(3.83f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 7.35f, 0.0f) + horizontalLineToRelative(3.82f) + close() + } + } + return _drawerAdd!! + } + +private var _drawerAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrawerArrowDownload.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrawerArrowDownload.kt new file mode 100644 index 00000000..4a2eda6f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrawerArrowDownload.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DrawerArrowDownload: ImageVector + get() { + if (_drawerArrowDownload != null) { + return _drawerArrowDownload!! + } + _drawerArrowDownload = fluentIcon(name = "Regular.DrawerArrowDownload") { + fluentPath { + moveTo(11.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 5.0f, -5.48f) + lineTo(16.0f, 6.8f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.5f, 2.5f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineTo(17.0f, 6.79f) + lineTo(17.0f, 1.02f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -6.0f, 5.48f) + close() + moveTo(19.5f, 9.5f) + arcTo(0.5f, 0.5f, 0.0f, false, false, 19.0f, 9.0f) + horizontalLineToRelative(-5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + close() + moveTo(21.0f, 11.2f) + curveToRelative(-0.44f, 0.42f, -0.95f, 0.78f, -1.5f, 1.07f) + lineTo(19.5f, 14.0f) + horizontalLineToRelative(-4.56f) + arcToRelative(0.7f, 0.7f, 0.0f, false, false, -0.69f, 0.7f) + verticalLineToRelative(0.05f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) + verticalLineToRelative(-0.06f) + arcToRelative(0.7f, 0.7f, 0.0f, false, false, -0.7f, -0.69f) + lineTo(4.5f, 14.0f) + lineTo(4.5f, 9.5f) + horizontalLineToRelative(6.23f) + arcToRelative(6.46f, 6.46f, 0.0f, false, true, -0.56f, -1.5f) + lineTo(4.5f, 8.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(3.83f) + curveToRelative(0.08f, -0.52f, 0.22f, -1.02f, 0.42f, -1.5f) + lineTo(6.25f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 7.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 20.55f, 4.46f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.45f, 3.25f, -3.25f) + lineTo(21.0f, 11.2f) + close() + moveTo(19.5f, 15.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(6.25f, 20.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 15.5f) + horizontalLineToRelative(3.83f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 7.35f, 0.0f) + horizontalLineToRelative(3.82f) + close() + } + } + return _drawerArrowDownload!! + } + +private var _drawerArrowDownload: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrawerDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrawerDismiss.kt new file mode 100644 index 00000000..2fe9ef54 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrawerDismiss.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DrawerDismiss: ImageVector + get() { + if (_drawerDismiss != null) { + return _drawerDismiss!! + } + _drawerDismiss = fluentIcon(name = "Regular.DrawerDismiss") { + fluentPath { + moveTo(22.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.85f, 4.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineTo(17.21f, 6.5f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineTo(16.5f, 5.79f) + lineToRelative(-1.65f, -1.64f) + close() + moveTo(21.0f, 11.19f) + curveToRelative(-0.44f, 0.43f, -0.95f, 0.8f, -1.5f, 1.08f) + lineTo(19.5f, 14.0f) + horizontalLineToRelative(-4.56f) + arcToRelative(0.7f, 0.7f, 0.0f, false, false, -0.69f, 0.7f) + verticalLineToRelative(0.05f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) + verticalLineToRelative(-0.06f) + arcToRelative(0.7f, 0.7f, 0.0f, false, false, -0.7f, -0.69f) + lineTo(4.5f, 14.0f) + lineTo(4.5f, 9.5f) + horizontalLineToRelative(6.23f) + arcToRelative(6.46f, 6.46f, 0.0f, false, true, -0.56f, -1.5f) + lineTo(4.5f, 8.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(3.83f) + curveToRelative(0.08f, -0.52f, 0.22f, -1.03f, 0.42f, -1.5f) + lineTo(6.25f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 7.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 20.55f, 4.46f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-7.56f) + close() + moveTo(19.5f, 15.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(6.25f, 20.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 15.5f) + horizontalLineToRelative(3.83f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 7.35f, 0.0f) + horizontalLineToRelative(3.82f) + close() + } + } + return _drawerDismiss!! + } + +private var _drawerDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrawerPlay.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrawerPlay.kt new file mode 100644 index 00000000..20564679 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrawerPlay.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DrawerPlay: ImageVector + get() { + if (_drawerPlay != null) { + return _drawerPlay!! + } + _drawerPlay = fluentIcon(name = "Regular.DrawerPlay") { + fluentPath { + moveTo(22.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.0f, 8.61f) + curveToRelative(0.0f, 0.4f, 0.42f, 0.63f, 0.76f, 0.43f) + lineToRelative(3.53f, -2.11f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.86f) + lineToRelative(-3.53f, -2.12f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.76f, 0.43f) + verticalLineToRelative(4.23f) + close() + moveTo(21.0f, 11.19f) + curveToRelative(-0.44f, 0.43f, -0.95f, 0.8f, -1.5f, 1.08f) + lineTo(19.5f, 14.0f) + horizontalLineToRelative(-4.56f) + arcToRelative(0.7f, 0.7f, 0.0f, false, false, -0.69f, 0.7f) + verticalLineToRelative(0.05f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) + verticalLineToRelative(-0.06f) + arcToRelative(0.7f, 0.7f, 0.0f, false, false, -0.7f, -0.69f) + lineTo(4.5f, 14.0f) + lineTo(4.5f, 9.5f) + horizontalLineToRelative(6.23f) + arcToRelative(6.46f, 6.46f, 0.0f, false, true, -0.56f, -1.5f) + lineTo(4.5f, 8.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(3.83f) + curveToRelative(0.08f, -0.52f, 0.22f, -1.03f, 0.42f, -1.5f) + lineTo(6.25f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 7.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 20.55f, 4.46f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-7.56f) + close() + moveTo(19.5f, 15.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(6.25f, 20.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 15.5f) + horizontalLineToRelative(3.83f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 7.35f, 0.0f) + horizontalLineToRelative(3.82f) + close() + } + } + return _drawerPlay!! + } + +private var _drawerPlay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrawerSubtract.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrawerSubtract.kt new file mode 100644 index 00000000..20b7e223 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrawerSubtract.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DrawerSubtract: ImageVector + get() { + if (_drawerSubtract != null) { + return _drawerSubtract!! + } + _drawerSubtract = fluentIcon(name = "Regular.DrawerSubtract") { + fluentPath { + moveTo(22.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(13.5f, 7.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineToRelative(6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-6.0f) + close() + moveTo(21.0f, 11.19f) + curveToRelative(-0.44f, 0.43f, -0.95f, 0.8f, -1.5f, 1.08f) + lineTo(19.5f, 14.0f) + horizontalLineToRelative(-4.56f) + arcToRelative(0.7f, 0.7f, 0.0f, false, false, -0.69f, 0.7f) + verticalLineToRelative(0.05f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) + verticalLineToRelative(-0.06f) + arcToRelative(0.7f, 0.7f, 0.0f, false, false, -0.7f, -0.69f) + lineTo(4.5f, 14.0f) + lineTo(4.5f, 9.5f) + horizontalLineToRelative(6.23f) + arcToRelative(6.46f, 6.46f, 0.0f, false, true, -0.56f, -1.5f) + lineTo(4.5f, 8.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(3.83f) + curveToRelative(0.08f, -0.52f, 0.22f, -1.03f, 0.42f, -1.5f) + lineTo(6.25f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 7.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 20.55f, 4.46f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-7.56f) + close() + moveTo(19.5f, 15.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(6.25f, 20.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 15.5f) + horizontalLineToRelative(3.83f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 7.35f, 0.0f) + horizontalLineToRelative(3.82f) + close() + } + } + return _drawerSubtract!! + } + +private var _drawerSubtract: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrinkBeer.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrinkBeer.kt new file mode 100644 index 00000000..6f2730c5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrinkBeer.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DrinkBeer: ImageVector + get() { + if (_drinkBeer != null) { + return _drinkBeer!! + } + _drinkBeer = fluentIcon(name = "Regular.DrinkBeer") { + fluentPath { + moveTo(8.5f, 10.0f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 7.0f, 10.0f) + verticalLineToRelative(7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-7.0f) + close() + moveTo(11.5f, 10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-7.0f) + close() + moveTo(14.5f, 10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-7.0f) + close() + moveTo(4.0f, 5.25f) + curveTo(4.0f, 3.45f, 5.46f, 2.0f, 7.25f, 2.0f) + horizontalLineToRelative(7.0f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + lineTo(17.5f, 6.0f) + horizontalLineToRelative(1.25f) + curveTo(20.55f, 6.0f, 22.0f, 7.46f, 22.0f, 9.25f) + verticalLineToRelative(5.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(17.5f, 18.0f) + verticalLineToRelative(1.75f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-9.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 5.25f) + close() + moveTo(16.0f, 7.5f) + lineTo(5.5f, 7.5f) + verticalLineToRelative(12.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(9.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(16.0f, 7.5f) + close() + moveTo(17.5f, 16.5f) + horizontalLineToRelative(1.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-5.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(17.5f, 7.5f) + verticalLineToRelative(9.0f) + close() + moveTo(16.0f, 5.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-7.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(5.5f, 6.0f) + lineTo(16.0f, 6.0f) + verticalLineToRelative(-0.75f) + close() + } + } + return _drinkBeer!! + } + +private var _drinkBeer: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrinkCoffee.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrinkCoffee.kt new file mode 100644 index 00000000..693e918a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrinkCoffee.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DrinkCoffee: ImageVector + get() { + if (_drinkCoffee != null) { + return _drinkCoffee!! + } + _drinkCoffee = fluentIcon(name = "Regular.DrinkCoffee") { + fluentPath { + moveTo(5.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + curveToRelative(0.0f, 1.27f, 0.93f, 1.92f, 1.5f, 2.32f) + lineToRelative(0.07f, 0.04f) + curveToRelative(0.68f, 0.48f, 0.93f, 0.7f, 0.93f, 1.14f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + curveToRelative(0.0f, -1.27f, -0.93f, -1.92f, -1.5f, -2.32f) + lineToRelative(-0.07f, -0.04f) + curveToRelative(-0.68f, -0.48f, -0.93f, -0.7f, -0.93f, -1.14f) + close() + moveTo(3.0f, 9.82f) + curveTo(3.0f, 8.82f, 3.82f, 8.0f, 4.82f, 8.0f) + horizontalLineToRelative(12.36f) + curveToRelative(1.0f, 0.0f, 1.82f, 0.82f, 1.82f, 1.82f) + verticalLineToRelative(0.68f) + horizontalLineToRelative(0.75f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, 6.5f) + horizontalLineToRelative(-1.33f) + arcTo(8.0f, 8.0f, 0.0f, false, true, 3.0f, 14.0f) + lineTo(3.0f, 9.82f) + close() + moveTo(17.5f, 9.82f) + arcToRelative(0.32f, 0.32f, 0.0f, false, false, -0.32f, -0.32f) + lineTo(4.82f, 9.5f) + arcToRelative(0.32f, 0.32f, 0.0f, false, false, -0.32f, 0.32f) + lineTo(4.5f, 14.0f) + arcToRelative(6.5f, 6.5f, 0.0f, true, false, 13.0f, 0.0f) + lineTo(17.5f, 9.82f) + close() + moveTo(19.75f, 12.0f) + lineTo(19.0f, 12.0f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.51f, -0.05f, 1.01f, -0.14f, 1.5f) + horizontalLineToRelative(0.89f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, -3.5f) + close() + moveTo(8.75f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + curveToRelative(0.0f, 0.43f, 0.25f, 0.66f, 0.93f, 1.14f) + lineToRelative(0.06f, 0.04f) + curveToRelative(0.58f, 0.4f, 1.51f, 1.05f, 1.51f, 2.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + curveToRelative(0.0f, -0.43f, -0.25f, -0.66f, -0.93f, -1.14f) + lineToRelative(-0.06f, -0.04f) + curveTo(8.93f, 4.67f, 8.0f, 4.02f, 8.0f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(13.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + curveToRelative(0.0f, 1.27f, 0.93f, 1.92f, 1.5f, 2.32f) + lineToRelative(0.07f, 0.04f) + curveToRelative(0.68f, 0.48f, 0.93f, 0.7f, 0.93f, 1.14f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + curveToRelative(0.0f, -1.27f, -0.93f, -1.92f, -1.5f, -2.32f) + lineToRelative(-0.07f, -0.04f) + curveToRelative(-0.68f, -0.48f, -0.93f, -0.7f, -0.93f, -1.14f) + close() + } + } + return _drinkCoffee!! + } + +private var _drinkCoffee: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrinkMargarita.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrinkMargarita.kt new file mode 100644 index 00000000..98281e9a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrinkMargarita.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DrinkMargarita: ImageVector + get() { + if (_drinkMargarita != null) { + return _drinkMargarita!! + } + _drinkMargarita = fluentIcon(name = "Regular.DrinkMargarita") { + fluentPath { + moveTo(19.87f, 3.49f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.24f, -1.48f) + lineToRelative(-6.0f, 1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.62f, 0.6f) + lineTo(12.73f, 5.0f) + lineTo(5.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 3.0f, 3.24f) + verticalLineToRelative(0.51f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.25f, 3.93f) + verticalLineToRelative(3.07f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.5f) + verticalLineToRelative(-3.07f) + arcTo(4.0f, 4.0f, 0.0f, false, false, 16.0f, 13.5f) + lineTo(16.0f, 13.0f) + curveToRelative(1.68f, -0.14f, 3.0f, -1.54f, 3.0f, -3.25f) + verticalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.99f) + lineToRelative(0.12f, -0.6f) + lineToRelative(5.5f, -0.91f) + close() + moveTo(17.5f, 8.0f) + horizontalLineToRelative(-3.84f) + lineToRelative(0.3f, -1.5f) + horizontalLineToRelative(3.54f) + lineTo(17.5f, 8.0f) + close() + moveTo(13.36f, 9.5f) + horizontalLineToRelative(4.14f) + verticalLineToRelative(0.25f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(1.25f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) + verticalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(6.5f, 9.5f) + horizontalLineToRelative(5.34f) + lineTo(11.0f, 13.6f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.48f, 0.3f) + lineToRelative(0.87f, -4.4f) + close() + moveTo(12.14f, 8.0f) + lineTo(6.5f, 8.0f) + lineTo(6.5f, 6.5f) + horizontalLineToRelative(5.94f) + lineToRelative(-0.3f, 1.5f) + close() + } + } + return _drinkMargarita!! + } + +private var _drinkMargarita: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrinkToGo.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrinkToGo.kt new file mode 100644 index 00000000..856e743c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrinkToGo.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DrinkToGo: ImageVector + get() { + if (_drinkToGo != null) { + return _drinkToGo!! + } + _drinkToGo = fluentIcon(name = "Regular.DrinkToGo") { + fluentPath { + moveTo(15.72f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) + lineTo(15.56f, 4.5f) + horizontalLineToRelative(2.2f) + curveToRelative(0.3f, 0.0f, 0.59f, 0.2f, 0.7f, 0.5f) + lineToRelative(1.25f, 3.5f) + curveToRelative(0.17f, 0.49f, -0.2f, 1.0f, -0.7f, 1.0f) + horizontalLineToRelative(-1.05f) + lineToRelative(-1.6f, 10.05f) + arcTo(2.89f, 2.89f, 0.0f, false, true, 13.4f, 22.0f) + horizontalLineToRelative(-2.8f) + curveToRelative(-1.5f, 0.0f, -2.76f, -0.99f, -2.97f, -2.44f) + lineTo(6.05f, 9.5f) + lineTo(5.0f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, -1.0f) + lineTo(5.53f, 5.0f) + curveToRelative(0.11f, -0.3f, 0.4f, -0.5f, 0.71f, -0.5f) + horizontalLineToRelative(7.19f) + lineToRelative(2.28f, -2.28f) + close() + moveTo(16.44f, 9.5f) + lineTo(7.56f, 9.5f) + lineToRelative(1.56f, 9.84f) + curveToRelative(0.1f, 0.7f, 0.69f, 1.16f, 1.48f, 1.16f) + horizontalLineToRelative(2.8f) + curveToRelative(0.8f, 0.0f, 1.38f, -0.47f, 1.49f, -1.17f) + lineToRelative(1.55f, -9.83f) + close() + moveTo(17.22f, 6.0f) + lineTo(6.78f, 6.0f) + lineToRelative(-0.72f, 2.0f) + horizontalLineToRelative(11.88f) + lineToRelative(-0.72f, -2.0f) + close() + } + } + return _drinkToGo!! + } + +private var _drinkToGo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrinkWine.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrinkWine.kt new file mode 100644 index 00000000..81f2cef4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DrinkWine.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DrinkWine: ImageVector + get() { + if (_drinkWine != null) { + return _drinkWine!! + } + _drinkWine = fluentIcon(name = "Regular.DrinkWine") { + fluentPath { + moveTo(15.93f, 9.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.47f, -0.28f) + arcToRelative(2.48f, 2.48f, 0.0f, false, true, -1.95f, 1.98f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.31f, 1.47f) + arcToRelative(3.98f, 3.98f, 0.0f, false, false, 3.1f, -3.17f) + close() + moveTo(6.0f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(10.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 3.2f, -2.4f, 5.83f, -5.5f, 6.2f) + verticalLineToRelative(5.06f) + lineToRelative(2.75f, -0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineToRelative(-3.5f, 0.01f) + lineToRelative(-3.0f, -0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(11.0f, 20.5f) + verticalLineToRelative(-5.05f) + arcToRelative(5.75f, 5.75f, 0.0f, false, true, -5.0f, -5.7f) + verticalLineToRelative(-7.0f) + close() + moveTo(7.5f, 3.5f) + verticalLineToRelative(2.75f) + horizontalLineToRelative(9.0f) + lineTo(16.5f, 3.5f) + horizontalLineToRelative(-9.0f) + close() + moveTo(7.5f, 9.75f) + curveTo(7.5f, 12.1f, 9.4f, 14.0f, 11.75f, 14.0f) + arcToRelative(4.75f, 4.75f, 0.0f, false, false, 4.75f, -4.75f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(-9.0f) + verticalLineToRelative(2.0f) + close() + } + } + return _drinkWine!! + } + +private var _drinkWine: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DriveTrain.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DriveTrain.kt new file mode 100644 index 00000000..991636ec --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DriveTrain.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DriveTrain: ImageVector + get() { + if (_driveTrain != null) { + return _driveTrain!! + } + _driveTrain = fluentIcon(name = "Regular.DriveTrain") { + fluentPath { + moveTo(5.5f, 3.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 3.0f, 5.5f) + verticalLineToRelative(3.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 5.0f, 0.0f) + lineTo(8.0f, 8.0f) + horizontalLineToRelative(2.27f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.98f, 0.85f) + verticalLineToRelative(6.3f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.98f, 0.85f) + lineTo(8.0f, 16.0f) + verticalLineToRelative(-0.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) + verticalLineToRelative(3.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 5.0f, 0.0f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(2.06f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 3.88f, 0.0f) + lineTo(16.0f, 17.5f) + verticalLineToRelative(1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 5.0f, 0.0f) + verticalLineToRelative(-3.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) + verticalLineToRelative(0.5f) + horizontalLineToRelative(-2.27f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.98f, -0.85f) + verticalLineToRelative(-6.3f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.98f, -0.85f) + lineTo(16.0f, 8.0f) + verticalLineToRelative(0.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 5.0f, 0.0f) + verticalLineToRelative(-3.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-2.06f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -3.88f, 0.0f) + lineTo(8.0f, 6.5f) + verticalLineToRelative(-1.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 5.5f, 3.0f) + close() + moveTo(4.5f, 5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + verticalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + verticalLineToRelative(-3.0f) + close() + moveTo(5.5f, 14.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(17.5f, 5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-3.0f) + close() + moveTo(18.5f, 14.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + verticalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + } + } + return _driveTrain!! + } + +private var _driveTrain: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Drop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Drop.kt new file mode 100644 index 00000000..202737e3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Drop.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Drop: ImageVector + get() { + if (_drop != null) { + return _drop!! + } + _drop = fluentIcon(name = "Regular.Drop") { + fluentPath { + moveTo(11.47f, 2.22f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + curveToRelative(0.4f, 0.4f, 2.0f, 2.13f, 3.5f, 4.36f) + curveTo(17.5f, 8.78f, 19.0f, 11.63f, 19.0f, 14.25f) + curveToRelative(0.0f, 2.52f, -0.75f, 4.48f, -2.04f, 5.8f) + arcTo(6.78f, 6.78f, 0.0f, false, true, 12.0f, 22.0f) + arcToRelative(6.78f, 6.78f, 0.0f, false, true, -4.96f, -1.94f) + curveTo(5.74f, 18.73f, 5.0f, 16.77f, 5.0f, 14.25f) + curveToRelative(0.0f, -2.62f, 1.5f, -5.46f, 2.97f, -7.67f) + curveToRelative(1.5f, -2.23f, 3.1f, -3.96f, 3.5f, -4.36f) + close() + moveTo(9.22f, 7.42f) + curveToRelative(-1.46f, 2.17f, -2.72f, 4.7f, -2.72f, 6.83f) + curveToRelative(0.0f, 2.23f, 0.65f, 3.77f, 1.62f, 4.76f) + curveToRelative(0.96f, 0.98f, 2.32f, 1.49f, 3.88f, 1.49f) + reflectiveCurveToRelative(2.92f, -0.5f, 3.88f, -1.5f) + curveToRelative(0.97f, -0.98f, 1.62f, -2.52f, 1.62f, -4.75f) + curveToRelative(0.0f, -2.13f, -1.26f, -4.66f, -2.72f, -6.83f) + arcTo(33.36f, 33.36f, 0.0f, false, false, 12.0f, 3.85f) + curveToRelative(-0.65f, 0.73f, -1.74f, 2.02f, -2.78f, 3.57f) + close() + } + } + return _drop!! + } + +private var _drop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreen.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreen.kt new file mode 100644 index 00000000..ed2b8d00 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreen.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DualScreen: ImageVector + get() { + if (_dualScreen != null) { + return _dualScreen!! + } + _dualScreen = fluentIcon(name = "Regular.DualScreen") { + fluentPath { + moveTo(12.75f, 4.0f) + horizontalLineToRelative(7.5f) + curveTo(21.2f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.96f, -0.79f, 1.75f, -1.75f, 1.75f) + lineTo(3.75f, 20.0f) + curveTo(2.78f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) + lineTo(2.0f, 5.75f) + curveTo(2.0f, 4.78f, 2.78f, 4.0f, 3.75f, 4.0f) + horizontalLineToRelative(9.0f) + close() + moveTo(20.25f, 5.5f) + horizontalLineToRelative(-7.5f) + verticalLineToRelative(13.0f) + horizontalLineToRelative(7.5f) + curveToRelative(0.13f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + lineTo(20.5f, 5.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(11.25f, 5.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.13f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(7.5f) + verticalLineToRelative(-13.0f) + close() + moveTo(14.74f, 15.5f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(1.6f) + horizontalLineToRelative(-1.5f) + close() + moveTo(7.74f, 15.5f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(1.6f) + horizontalLineToRelative(-1.5f) + close() + } + } + return _dualScreen!! + } + +private var _dualScreen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenAdd.kt new file mode 100644 index 00000000..3fa638ee --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenAdd.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DualScreenAdd: ImageVector + get() { + if (_dualScreenAdd != null) { + return _dualScreenAdd!! + } + _dualScreenAdd = fluentIcon(name = "Regular.DualScreenAdd") { + fluentPath { + moveTo(10.02f, 6.0f) + arcToRelative(6.63f, 6.63f, 0.0f, false, false, 0.06f, 1.5f) + lineTo(3.75f, 7.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.13f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(7.5f) + lineTo(11.25f, 10.33f) + curveToRelative(0.41f, 0.57f, 0.92f, 1.07f, 1.5f, 1.48f) + verticalLineToRelative(8.69f) + horizontalLineToRelative(7.5f) + curveToRelative(0.13f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-8.62f) + arcTo(6.53f, 6.53f, 0.0f, false, false, 22.0f, 9.97f) + verticalLineToRelative(10.28f) + curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) + lineTo(3.75f, 22.0f) + curveTo(2.78f, 22.0f, 2.0f, 21.2f, 2.0f, 20.25f) + lineTo(2.0f, 7.75f) + curveTo(2.0f, 6.78f, 2.78f, 6.0f, 3.75f, 6.0f) + horizontalLineToRelative(6.27f) + close() + moveTo(16.24f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(1.6f) + close() + moveTo(9.24f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(1.6f) + close() + moveTo(16.5f, 1.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(16.5f, 3.0f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) + lineToRelative(-0.01f, 0.1f) + lineTo(16.0f, 6.0f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(0.18f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) + lineToRelative(0.1f, 0.01f) + lineTo(16.0f, 7.0f) + verticalLineToRelative(2.6f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + horizontalLineToRelative(0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) + lineToRelative(0.01f, -0.1f) + lineTo(17.0f, 7.0f) + horizontalLineToRelative(2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + verticalLineToRelative(-0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) + lineTo(19.5f, 6.0f) + lineTo(17.0f, 6.0f) + lineTo(17.0f, 3.4f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.4f) + close() + } + } + return _dualScreenAdd!! + } + +private var _dualScreenAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenArrowRight.kt new file mode 100644 index 00000000..737ffe2a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenArrowRight.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DualScreenArrowRight: ImageVector + get() { + if (_dualScreenArrowRight != null) { + return _dualScreenArrowRight!! + } + _dualScreenArrowRight = fluentIcon(name = "Regular.DualScreenArrowRight") { + fluentPath { + moveTo(10.02f, 6.0f) + arcToRelative(6.63f, 6.63f, 0.0f, false, false, 0.06f, 1.5f) + lineTo(3.75f, 7.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.13f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(7.5f) + lineTo(11.25f, 10.33f) + curveToRelative(0.41f, 0.57f, 0.92f, 1.07f, 1.5f, 1.48f) + verticalLineToRelative(8.69f) + horizontalLineToRelative(7.5f) + curveToRelative(0.13f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-8.62f) + arcTo(6.53f, 6.53f, 0.0f, false, false, 22.0f, 9.97f) + verticalLineToRelative(10.28f) + curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) + lineTo(3.75f, 22.0f) + curveTo(2.78f, 22.0f, 2.0f, 21.2f, 2.0f, 20.25f) + lineTo(2.0f, 7.75f) + curveTo(2.0f, 6.78f, 2.78f, 6.0f, 3.75f, 6.0f) + horizontalLineToRelative(6.27f) + close() + moveTo(16.24f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(1.6f) + close() + moveTo(9.24f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(1.6f) + close() + moveTo(16.5f, 1.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(16.8f, 3.55f) + lineTo(16.72f, 3.59f) + lineTo(16.65f, 3.65f) + lineTo(16.59f, 3.72f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) + lineToRelative(0.06f, 0.07f) + lineTo(18.29f, 6.0f) + lineTo(13.4f, 6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(0.18f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(0.06f, -0.07f) + lineToRelative(2.53f, -2.53f) + lineToRelative(0.04f, -0.05f) + lineToRelative(0.04f, -0.08f) + lineToRelative(0.03f, -0.08f) + lineTo(19.99f, 6.39f) + lineToRelative(-0.03f, -0.08f) + lineToRelative(-0.04f, -0.08f) + lineToRelative(-0.04f, -0.05f) + lineToRelative(-2.53f, -2.53f) + lineToRelative(-0.07f, -0.06f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.49f, -0.04f) + close() + } + } + return _dualScreenArrowRight!! + } + +private var _dualScreenArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenArrowUp.kt new file mode 100644 index 00000000..dc436b34 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenArrowUp.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DualScreenArrowUp: ImageVector + get() { + if (_dualScreenArrowUp != null) { + return _dualScreenArrowUp!! + } + _dualScreenArrowUp = fluentIcon(name = "Regular.DualScreenArrowUp") { + fluentPath { + moveTo(22.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(16.0f, 4.7f) + verticalLineToRelative(4.8f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + lineTo(17.0f, 4.7f) + lineToRelative(1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineTo(16.0f, 4.71f) + close() + moveTo(10.0f, 6.5f) + curveToRelative(0.0f, -0.17f, 0.0f, -0.33f, 0.02f, -0.5f) + lineTo(3.75f, 6.0f) + curveTo(2.78f, 6.0f, 2.0f, 6.78f, 2.0f, 7.75f) + verticalLineToRelative(12.5f) + curveTo(2.0f, 21.2f, 2.78f, 22.0f, 3.75f, 22.0f) + horizontalLineToRelative(16.5f) + curveToRelative(0.96f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(22.0f, 9.97f) + curveToRelative(-0.4f, 0.64f, -0.91f, 1.2f, -1.5f, 1.66f) + verticalLineToRelative(8.62f) + curveToRelative(0.0f, 0.14f, -0.12f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-7.5f) + verticalLineToRelative(-8.7f) + curveToRelative(-0.58f, -0.4f, -1.09f, -0.9f, -1.5f, -1.47f) + lineTo(11.25f, 20.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + lineTo(3.5f, 7.75f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(6.33f) + arcToRelative(6.55f, 6.55f, 0.0f, false, true, -0.08f, -1.0f) + close() + moveTo(16.99f, 18.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(9.99f, 18.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + } + } + return _dualScreenArrowUp!! + } + +private var _dualScreenArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenClock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenClock.kt new file mode 100644 index 00000000..22517626 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenClock.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DualScreenClock: ImageVector + get() { + if (_dualScreenClock != null) { + return _dualScreenClock!! + } + _dualScreenClock = fluentIcon(name = "Regular.DualScreenClock") { + fluentPath { + moveTo(10.02f, 6.0f) + arcToRelative(6.63f, 6.63f, 0.0f, false, false, 0.06f, 1.5f) + lineTo(3.75f, 7.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.13f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(7.5f) + lineTo(11.25f, 10.33f) + curveToRelative(0.41f, 0.57f, 0.92f, 1.07f, 1.5f, 1.48f) + verticalLineToRelative(8.69f) + horizontalLineToRelative(7.5f) + curveToRelative(0.13f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-8.62f) + arcTo(6.53f, 6.53f, 0.0f, false, false, 22.0f, 9.97f) + verticalLineToRelative(10.28f) + curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) + lineTo(3.75f, 22.0f) + curveTo(2.78f, 22.0f, 2.0f, 21.2f, 2.0f, 20.25f) + lineTo(2.0f, 7.75f) + curveTo(2.0f, 6.78f, 2.78f, 6.0f, 3.75f, 6.0f) + horizontalLineToRelative(6.27f) + close() + moveTo(16.24f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(1.6f) + close() + moveTo(9.24f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(1.6f) + close() + moveTo(16.5f, 1.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(15.5f, 3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + lineTo(16.0f, 7.0f) + lineTo(16.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + } + } + return _dualScreenClock!! + } + +private var _dualScreenClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenClosedAlert.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenClosedAlert.kt new file mode 100644 index 00000000..a6ee914c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenClosedAlert.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DualScreenClosedAlert: ImageVector + get() { + if (_dualScreenClosedAlert != null) { + return _dualScreenClosedAlert!! + } + _dualScreenClosedAlert = fluentIcon(name = "Regular.DualScreenClosedAlert") { + fluentPath { + moveTo(16.5f, 2.0f) + arcToRelative(4.01f, 4.01f, 0.0f, false, true, 4.0f, 4.0f) + verticalLineToRelative(2.52f) + lineToRelative(1.38f, 1.66f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.38f, 0.82f) + horizontalLineToRelative(-10.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.38f, -0.82f) + lineToRelative(1.38f, -1.66f) + lineTo(12.5f, 6.0f) + arcToRelative(4.01f, 4.01f, 0.0f, false, true, 4.0f, -4.0f) + close() + moveTo(5.75f, 5.0f) + horizontalLineToRelative(5.85f) + curveToRelative(-0.06f, 0.33f, -0.1f, 0.66f, -0.1f, 1.0f) + verticalLineToRelative(0.5f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(13.0f) + horizontalLineToRelative(8.25f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-4.92f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 1.5f, 0.13f) + verticalLineToRelative(4.79f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(5.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(15.5f, 12.73f) + curveToRelative(-0.3f, -0.17f, -0.55f, -0.43f, -0.72f, -0.73f) + horizontalLineToRelative(3.44f) + arcToRelative(1.98f, 1.98f, 0.0f, false, true, -2.72f, 0.73f) + close() + } + } + return _dualScreenClosedAlert!! + } + +private var _dualScreenClosedAlert: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenDesktop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenDesktop.kt new file mode 100644 index 00000000..a7f8beca --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenDesktop.kt @@ -0,0 +1,99 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DualScreenDesktop: ImageVector + get() { + if (_dualScreenDesktop != null) { + return _dualScreenDesktop!! + } + _dualScreenDesktop = fluentIcon(name = "Regular.DualScreenDesktop") { + fluentPath { + moveTo(12.25f, 10.0f) + curveToRelative(0.92f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.92f, -0.7f, 1.67f, -1.6f, 1.74f) + lineToRelative(-0.15f, 0.01f) + horizontalLineToRelative(-8.5f) + curveToRelative(-0.92f, 0.0f, -1.67f, -0.7f, -1.74f, -1.6f) + lineTo(2.0f, 20.24f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) + lineToRelative(0.15f, -0.01f) + horizontalLineToRelative(8.5f) + close() + moveTo(7.5f, 11.5f) + lineTo(3.75f, 11.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.24f, 0.2f) + lineToRelative(-0.01f, 0.05f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.12f, 0.08f, 0.22f, 0.2f, 0.24f) + lineToRelative(0.05f, 0.01f) + lineTo(7.5f, 20.5f) + verticalLineToRelative(-9.0f) + close() + moveTo(12.25f, 11.5f) + lineTo(8.5f, 11.5f) + verticalLineToRelative(9.0f) + horizontalLineToRelative(3.75f) + curveToRelative(0.12f, 0.0f, 0.22f, -0.08f, 0.24f, -0.2f) + lineToRelative(0.01f, -0.05f) + verticalLineToRelative(-8.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.2f, -0.24f) + lineToRelative(-0.05f, -0.01f) + close() + moveTo(10.62f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-0.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.6f) + close() + moveTo(5.88f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-0.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.6f) + close() + moveTo(19.74f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + lineTo(17.0f, 15.5f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(15.0f, 19.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(0.5f) + verticalLineToRelative(-2.0f) + lineTo(15.0f, 15.5f) + lineTo(15.0f, 14.0f) + horizontalLineToRelative(4.75f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(6.25f, 3.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + lineTo(5.5f, 9.0f) + lineTo(4.0f, 9.0f) + lineTo(4.0f, 4.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(6.25f, 2.0f) + horizontalLineToRelative(13.5f) + close() + } + } + return _dualScreenDesktop!! + } + +private var _dualScreenDesktop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenDismiss.kt new file mode 100644 index 00000000..9411f679 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenDismiss.kt @@ -0,0 +1,95 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DualScreenDismiss: ImageVector + get() { + if (_dualScreenDismiss != null) { + return _dualScreenDismiss!! + } + _dualScreenDismiss = fluentIcon(name = "Regular.DualScreenDismiss") { + fluentPath { + moveTo(10.0f, 6.5f) + curveToRelative(0.0f, 0.34f, 0.03f, 0.68f, 0.08f, 1.0f) + lineTo(3.75f, 7.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.13f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(7.5f) + lineTo(11.25f, 10.33f) + curveToRelative(0.41f, 0.57f, 0.92f, 1.07f, 1.5f, 1.48f) + verticalLineToRelative(8.69f) + horizontalLineToRelative(7.5f) + curveToRelative(0.13f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-8.62f) + arcTo(6.53f, 6.53f, 0.0f, false, false, 22.0f, 9.97f) + verticalLineToRelative(10.28f) + curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) + lineTo(3.75f, 22.0f) + curveTo(2.78f, 22.0f, 2.0f, 21.2f, 2.0f, 20.25f) + lineTo(2.0f, 7.75f) + curveTo(2.0f, 6.78f, 2.78f, 6.0f, 3.75f, 6.0f) + horizontalLineToRelative(6.27f) + lineToRelative(-0.02f, 0.5f) + close() + moveTo(16.24f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(1.6f) + close() + moveTo(9.24f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(1.6f) + close() + moveTo(16.5f, 1.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(14.66f, 3.97f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) + lineToRelative(-0.07f, 0.05f) + lineToRelative(-0.05f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.05f, 0.07f) + lineTo(15.8f, 6.5f) + lineToRelative(-1.76f, 1.77f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.06f, 0.06f) + lineToRelative(0.07f, 0.06f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) + lineToRelative(0.07f, -0.06f) + lineToRelative(1.77f, -1.76f) + lineToRelative(1.77f, 1.77f) + lineToRelative(0.07f, 0.05f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.57f, 0.0f) + lineToRelative(0.07f, -0.05f) + lineToRelative(0.05f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) + lineToRelative(-0.05f, -0.07f) + lineTo(17.2f, 6.5f) + lineToRelative(1.77f, -1.77f) + lineToRelative(0.06f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) + lineToRelative(-0.06f, -0.07f) + lineToRelative(-0.07f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) + lineToRelative(-0.07f, 0.05f) + lineTo(16.5f, 5.8f) + lineToRelative(-1.77f, -1.77f) + lineToRelative(-0.07f, -0.05f) + close() + } + } + return _dualScreenDismiss!! + } + +private var _dualScreenDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenGroup.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenGroup.kt new file mode 100644 index 00000000..f11b6a5b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenGroup.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DualScreenGroup: ImageVector + get() { + if (_dualScreenGroup != null) { + return _dualScreenGroup!! + } + _dualScreenGroup = fluentIcon(name = "Regular.DualScreenGroup") { + fluentPath { + moveTo(12.76f, 4.0f) + horizontalLineToRelative(7.5f) + curveTo(21.21f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(3.75f, 20.0f) + curveToRelative(-0.96f, 0.0f, -1.74f, -0.79f, -1.74f, -1.75f) + lineTo(2.01f, 5.75f) + curveTo(2.0f, 4.8f, 2.79f, 4.0f, 3.76f, 4.0f) + horizontalLineToRelative(9.0f) + close() + moveTo(20.26f, 5.5f) + horizontalLineToRelative(-7.5f) + verticalLineToRelative(13.0f) + horizontalLineToRelative(7.5f) + curveToRelative(0.13f, 0.0f, 0.24f, -0.11f, 0.24f, -0.25f) + lineTo(20.5f, 5.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(11.26f, 5.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(7.5f) + verticalLineToRelative(-13.0f) + close() + } + } + return _dualScreenGroup!! + } + +private var _dualScreenGroup: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenHeader.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenHeader.kt new file mode 100644 index 00000000..c3e6f1d8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenHeader.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DualScreenHeader: ImageVector + get() { + if (_dualScreenHeader != null) { + return _dualScreenHeader!! + } + _dualScreenHeader = fluentIcon(name = "Regular.DualScreenHeader") { + fluentPath { + moveTo(12.75f, 4.0f) + horizontalLineToRelative(7.5f) + curveTo(21.2f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) + lineTo(3.75f, 20.0f) + curveTo(2.78f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) + lineTo(2.0f, 5.75f) + curveTo(2.0f, 4.8f, 2.78f, 4.0f, 3.75f, 4.0f) + horizontalLineToRelative(9.0f) + close() + moveTo(20.5f, 7.0f) + horizontalLineToRelative(-7.75f) + verticalLineToRelative(11.5f) + horizontalLineToRelative(7.5f) + curveToRelative(0.13f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + lineTo(20.5f, 7.0f) + close() + moveTo(11.25f, 7.0f) + lineTo(3.5f, 7.0f) + verticalLineToRelative(11.25f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(7.5f) + lineTo(11.25f, 7.0f) + close() + } + } + return _dualScreenHeader!! + } + +private var _dualScreenHeader: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenLock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenLock.kt new file mode 100644 index 00000000..73374b5d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenLock.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DualScreenLock: ImageVector + get() { + if (_dualScreenLock != null) { + return _dualScreenLock!! + } + _dualScreenLock = fluentIcon(name = "Regular.DualScreenLock") { + fluentPath { + moveTo(17.0f, 5.0f) + lineTo(17.0f, 4.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(0.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-6.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + verticalLineToRelative(-5.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 16.5f, 5.0f) + horizontalLineToRelative(0.5f) + close() + moveTo(18.5f, 4.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(2.0f) + lineTo(20.5f, 4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + close() + moveTo(20.5f, 8.9f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 0.2f) + arcToRelative(0.98f, 0.98f, 0.0f, false, false, 0.0f, -0.2f) + close() + moveTo(7.74f, 17.5f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(12.74f, 6.0f) + horizontalLineToRelative(1.3f) + curveToRelative(-0.02f, 0.16f, -0.04f, 0.33f, -0.04f, 0.5f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-1.25f) + verticalLineToRelative(13.0f) + horizontalLineToRelative(7.5f) + curveToRelative(0.13f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + lineTo(20.5f, 14.0f) + lineTo(22.0f, 14.0f) + verticalLineToRelative(6.25f) + curveToRelative(0.0f, 0.96f, -0.79f, 1.75f, -1.75f, 1.75f) + lineTo(3.75f, 22.0f) + curveTo(2.78f, 22.0f, 2.0f, 21.2f, 2.0f, 20.25f) + lineTo(2.0f, 7.75f) + curveTo(2.0f, 6.78f, 2.78f, 6.0f, 3.75f, 6.0f) + horizontalLineToRelative(9.0f) + close() + moveTo(11.24f, 7.5f) + lineTo(3.76f, 7.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.13f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(7.5f) + verticalLineToRelative(-13.0f) + close() + moveTo(14.74f, 17.5f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + } + } + return _dualScreenLock!! + } + +private var _dualScreenLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenMirror.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenMirror.kt new file mode 100644 index 00000000..0f89ec32 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenMirror.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DualScreenMirror: ImageVector + get() { + if (_dualScreenMirror != null) { + return _dualScreenMirror!! + } + _dualScreenMirror = fluentIcon(name = "Regular.DualScreenMirror") { + fluentPath { + moveTo(17.17f, 9.42f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.34f, 0.0f) + lineToRelative(-2.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.67f, 1.08f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.67f, -1.08f) + lineToRelative(-2.25f, -4.5f) + close() + moveTo(15.47f, 13.5f) + lineTo(16.5f, 11.43f) + lineTo(17.54f, 13.5f) + horizontalLineToRelative(-2.08f) + close() + moveTo(7.5f, 9.0f) + curveToRelative(0.28f, 0.0f, 0.54f, 0.16f, 0.67f, 0.42f) + lineToRelative(2.25f, 4.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 9.75f, 15.0f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.67f, -1.08f) + lineToRelative(2.25f, -4.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 7.5f, 9.0f) + close() + moveTo(7.5f, 11.43f) + lineTo(6.46f, 13.5f) + horizontalLineToRelative(2.08f) + lineTo(7.5f, 11.43f) + close() + moveTo(12.76f, 4.0f) + horizontalLineToRelative(7.5f) + curveTo(21.21f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(3.75f, 20.0f) + curveToRelative(-0.96f, 0.0f, -1.74f, -0.79f, -1.74f, -1.75f) + lineTo(2.01f, 5.75f) + curveTo(2.0f, 4.8f, 2.79f, 4.0f, 3.76f, 4.0f) + horizontalLineToRelative(9.0f) + close() + moveTo(20.26f, 5.5f) + horizontalLineToRelative(-7.5f) + verticalLineToRelative(13.0f) + horizontalLineToRelative(7.5f) + curveToRelative(0.13f, 0.0f, 0.24f, -0.11f, 0.24f, -0.25f) + lineTo(20.5f, 5.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(11.26f, 5.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(7.5f) + verticalLineToRelative(-13.0f) + close() + } + } + return _dualScreenMirror!! + } + +private var _dualScreenMirror: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenPagination.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenPagination.kt new file mode 100644 index 00000000..50a0247e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenPagination.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DualScreenPagination: ImageVector + get() { + if (_dualScreenPagination != null) { + return _dualScreenPagination!! + } + _dualScreenPagination = fluentIcon(name = "Regular.DualScreenPagination") { + fluentPath { + moveTo(12.75f, 4.0f) + horizontalLineToRelative(7.5f) + curveTo(21.2f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) + lineTo(3.75f, 20.0f) + curveTo(2.78f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) + lineTo(2.0f, 5.75f) + curveTo(2.0f, 4.8f, 2.78f, 4.0f, 3.75f, 4.0f) + horizontalLineToRelative(9.0f) + close() + moveTo(20.25f, 5.5f) + horizontalLineToRelative(-7.5f) + verticalLineToRelative(13.0f) + horizontalLineToRelative(7.5f) + curveToRelative(0.13f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + lineTo(20.5f, 5.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(11.25f, 5.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(7.5f) + verticalLineToRelative(-13.0f) + close() + moveTo(16.63f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(19.13f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(14.13f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + } + } + return _dualScreenPagination!! + } + +private var _dualScreenPagination: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenSettings.kt new file mode 100644 index 00000000..f0299c20 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenSettings.kt @@ -0,0 +1,91 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DualScreenSettings: ImageVector + get() { + if (_dualScreenSettings != null) { + return _dualScreenSettings!! + } + _dualScreenSettings = fluentIcon(name = "Regular.DualScreenSettings") { + fluentPath { + moveTo(13.28f, 2.98f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.59f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.01f, 1.8f) + lineToRelative(0.54f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) + lineToRelative(-0.19f, 0.64f) + curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) + lineToRelative(0.5f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.47f, -0.9f) + lineToRelative(-0.2f, -0.7f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, -2.5f) + lineToRelative(0.58f, -0.14f) + arcToRelative(5.72f, 5.72f, 0.0f, false, false, 0.0f, -1.8f) + lineToRelative(-0.54f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.18f, -0.63f) + curveToRelative(-0.44f, -0.39f, -0.94f, -0.7f, -1.48f, -0.93f) + lineToRelative(-0.5f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.91f) + lineToRelative(0.2f, 0.69f) + close() + moveTo(16.5f, 8.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(15.7f, 5.0f, 16.5f, 5.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(17.3f, 8.0f, 16.5f, 8.0f) + close() + moveTo(10.0f, 6.5f) + curveToRelative(0.0f, -0.17f, 0.0f, -0.33f, 0.02f, -0.5f) + lineTo(3.75f, 6.0f) + curveTo(2.78f, 6.0f, 2.0f, 6.78f, 2.0f, 7.75f) + verticalLineToRelative(12.5f) + curveTo(2.0f, 21.2f, 2.78f, 22.0f, 3.75f, 22.0f) + horizontalLineToRelative(16.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(22.0f, 9.97f) + curveToRelative(-0.4f, 0.64f, -0.91f, 1.2f, -1.5f, 1.66f) + verticalLineToRelative(8.62f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-7.5f) + verticalLineToRelative(-8.7f) + curveToRelative(-0.58f, -0.4f, -1.08f, -0.9f, -1.5f, -1.47f) + lineTo(11.25f, 20.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + lineTo(3.5f, 7.75f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(6.33f) + arcToRelative(6.54f, 6.54f, 0.0f, false, true, -0.08f, -1.0f) + close() + moveTo(17.0f, 18.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.76f, -0.75f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(10.0f, 18.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.76f, -0.75f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + } + } + return _dualScreenSettings!! + } + +private var _dualScreenSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenSpan.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenSpan.kt new file mode 100644 index 00000000..df805a24 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenSpan.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DualScreenSpan: ImageVector + get() { + if (_dualScreenSpan != null) { + return _dualScreenSpan!! + } + _dualScreenSpan = fluentIcon(name = "Regular.DualScreenSpan") { + fluentPath { + moveTo(8.31f, 10.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.12f, -1.0f) + lineToRelative(-2.0f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.0f) + lineToRelative(2.0f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.12f, -1.0f) + lineToRelative(-0.89f, -1.0f) + horizontalLineToRelative(9.16f) + lineToRelative(-0.89f, 1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.12f, 1.0f) + lineToRelative(2.0f, -2.25f) + lineToRelative(0.01f, -0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.01f, -0.99f) + lineToRelative(-2.0f, -2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.12f, 1.0f) + lineToRelative(0.9f, 1.0f) + lineTo(7.41f, 11.25f) + lineToRelative(0.9f, -1.0f) + close() + moveTo(12.76f, 4.0f) + horizontalLineToRelative(7.5f) + curveTo(21.21f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(3.75f, 20.0f) + curveToRelative(-0.96f, 0.0f, -1.74f, -0.79f, -1.74f, -1.75f) + lineTo(2.01f, 5.75f) + curveTo(2.0f, 4.8f, 2.79f, 4.0f, 3.76f, 4.0f) + horizontalLineToRelative(9.0f) + close() + moveTo(20.26f, 5.5f) + horizontalLineToRelative(-7.5f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(-1.5f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(7.5f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(1.5f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(7.5f) + curveToRelative(0.13f, 0.0f, 0.24f, -0.11f, 0.24f, -0.25f) + lineTo(20.5f, 5.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + } + } + return _dualScreenSpan!! + } + +private var _dualScreenSpan: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenSpeaker.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenSpeaker.kt new file mode 100644 index 00000000..0ab11339 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenSpeaker.kt @@ -0,0 +1,103 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DualScreenSpeaker: ImageVector + get() { + if (_dualScreenSpeaker != null) { + return _dualScreenSpeaker!! + } + _dualScreenSpeaker = fluentIcon(name = "Regular.DualScreenSpeaker") { + fluentPath { + moveTo(22.14f, 3.3f) + arcToRelative(4.53f, 4.53f, 0.0f, false, false, -0.9f, -1.13f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, 1.16f) + curveToRelative(0.13f, 0.1f, 0.35f, 0.35f, 0.59f, 0.74f) + curveToRelative(0.4f, 0.67f, 0.64f, 1.48f, 0.64f, 2.43f) + curveToRelative(0.0f, 0.95f, -0.24f, 1.76f, -0.64f, 2.43f) + curveToRelative(-0.24f, 0.39f, -0.46f, 0.64f, -0.59f, 0.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.96f, 1.16f) + curveToRelative(0.25f, -0.21f, 0.59f, -0.58f, 0.91f, -1.13f) + curveToRelative(0.54f, -0.9f, 0.86f, -1.96f, 0.86f, -3.2f) + curveToRelative(0.0f, -1.24f, -0.32f, -2.3f, -0.86f, -3.2f) + close() + } + fluentPath { + moveTo(19.87f, 4.4f) + curveToRelative(-0.23f, -0.36f, -0.48f, -0.6f, -0.67f, -0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 1.2f) + arcTo(2.24f, 2.24f, 0.0f, false, true, 19.0f, 6.5f) + arcToRelative(2.24f, 2.24f, 0.0f, false, true, -0.7f, 1.65f) + lineToRelative(-0.08f, 0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) + arcToRelative(3.73f, 3.73f, 0.0f, false, false, 1.3f, -2.85f) + curveToRelative(0.0f, -0.81f, -0.23f, -1.52f, -0.63f, -2.1f) + close() + } + fluentPath { + moveTo(17.0f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.31f, -0.5f) + lineTo(14.16f, 5.0f) + horizontalLineToRelative(-1.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.76f, 0.75f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(1.41f) + lineToRelative(1.53f, 1.74f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 17.0f, 9.25f) + verticalLineToRelative(-5.5f) + close() + } + fluentPath { + moveTo(11.95f, 4.0f) + horizontalLineToRelative(-8.2f) + curveToRelative(-0.96f, 0.0f, -1.74f, 0.78f, -1.74f, 1.75f) + verticalLineToRelative(12.5f) + curveTo(2.0f, 19.2f, 2.79f, 20.0f, 3.76f, 20.0f) + horizontalLineToRelative(16.5f) + curveToRelative(0.96f, 0.0f, 1.74f, -0.79f, 1.74f, -1.75f) + verticalLineToRelative(-6.77f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.5f, 0.5f) + verticalLineToRelative(6.27f) + curveToRelative(0.0f, 0.14f, -0.1f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-7.5f) + verticalLineTo(9.0f) + horizontalLineTo(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.74f, -0.33f) + verticalLineToRelative(9.83f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineTo(5.75f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineTo(11.0f) + verticalLineTo(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.95f, -1.0f) + close() + } + fluentPath { + moveTo(16.25f, 15.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + } + fluentPath { + moveTo(7.75f, 15.5f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + } + } + return _dualScreenSpeaker!! + } + +private var _dualScreenSpeaker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenStatusBar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenStatusBar.kt new file mode 100644 index 00000000..3678f612 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenStatusBar.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DualScreenStatusBar: ImageVector + get() { + if (_dualScreenStatusBar != null) { + return _dualScreenStatusBar!! + } + _dualScreenStatusBar = fluentIcon(name = "Regular.DualScreenStatusBar") { + fluentPath { + moveTo(12.75f, 4.0f) + horizontalLineToRelative(7.5f) + curveTo(21.2f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) + lineTo(3.75f, 20.0f) + curveTo(2.78f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) + lineTo(2.0f, 5.75f) + curveTo(2.0f, 4.8f, 2.78f, 4.0f, 3.75f, 4.0f) + horizontalLineToRelative(9.0f) + close() + moveTo(20.25f, 5.5f) + horizontalLineToRelative(-7.5f) + verticalLineToRelative(13.0f) + horizontalLineToRelative(7.5f) + curveToRelative(0.13f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + lineTo(20.5f, 5.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(11.25f, 5.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(7.5f) + verticalLineToRelative(-13.0f) + close() + moveTo(18.75f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(4.5f) + close() + } + } + return _dualScreenStatusBar!! + } + +private var _dualScreenStatusBar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenTablet.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenTablet.kt new file mode 100644 index 00000000..485d304f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenTablet.kt @@ -0,0 +1,97 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DualScreenTablet: ImageVector + get() { + if (_dualScreenTablet != null) { + return _dualScreenTablet!! + } + _dualScreenTablet = fluentIcon(name = "Regular.DualScreenTablet") { + fluentPath { + moveTo(12.25f, 9.0f) + curveToRelative(0.92f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.92f, -0.7f, 1.67f, -1.6f, 1.74f) + lineToRelative(-0.15f, 0.01f) + horizontalLineToRelative(-8.5f) + curveToRelative(-0.92f, 0.0f, -1.67f, -0.7f, -1.74f, -1.6f) + lineTo(2.0f, 19.24f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) + lineTo(3.76f, 9.0f) + horizontalLineToRelative(8.5f) + close() + moveTo(7.5f, 10.5f) + lineTo(3.75f, 10.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.24f, 0.2f) + lineToRelative(-0.01f, 0.05f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.12f, 0.08f, 0.22f, 0.2f, 0.24f) + lineToRelative(0.05f, 0.01f) + lineTo(7.5f, 19.5f) + verticalLineToRelative(-9.0f) + close() + moveTo(12.25f, 10.5f) + lineTo(8.5f, 10.5f) + verticalLineToRelative(9.0f) + horizontalLineToRelative(3.75f) + curveToRelative(0.12f, 0.0f, 0.22f, -0.08f, 0.24f, -0.2f) + lineToRelative(0.01f, -0.05f) + verticalLineToRelative(-8.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.2f, -0.24f) + lineToRelative(-0.05f, -0.01f) + close() + moveTo(10.62f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-0.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.6f) + close() + moveTo(5.88f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-0.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.6f) + close() + moveTo(19.74f, 3.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + lineTo(15.0f, 16.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(4.75f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + verticalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(8.25f, 4.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + lineTo(7.5f, 8.0f) + lineTo(6.0f, 8.0f) + lineTo(6.0f, 5.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(8.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(16.24f, 12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(15.0f, 13.5f) + lineTo(15.0f, 12.0f) + horizontalLineToRelative(1.25f) + close() + } + } + return _dualScreenTablet!! + } + +private var _dualScreenTablet: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenUpdate.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenUpdate.kt new file mode 100644 index 00000000..78c2af65 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenUpdate.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DualScreenUpdate: ImageVector + get() { + if (_dualScreenUpdate != null) { + return _dualScreenUpdate!! + } + _dualScreenUpdate = fluentIcon(name = "Regular.DualScreenUpdate") { + fluentPath { + moveTo(12.75f, 4.0f) + horizontalLineToRelative(7.5f) + curveTo(21.2f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) + lineTo(3.75f, 20.0f) + curveTo(2.78f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) + lineTo(2.0f, 5.75f) + curveTo(2.0f, 4.8f, 2.78f, 4.0f, 3.75f, 4.0f) + horizontalLineToRelative(9.0f) + close() + moveTo(20.25f, 5.5f) + horizontalLineToRelative(-7.5f) + verticalLineToRelative(13.0f) + horizontalLineToRelative(7.5f) + curveToRelative(0.13f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + lineTo(20.5f, 5.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(11.25f, 5.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(7.5f) + verticalLineToRelative(-13.0f) + close() + moveTo(16.5f, 7.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.75f, 0.65f) + verticalLineToRelative(6.8f) + lineToRelative(0.97f, -0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.08f) + lineToRelative(0.08f, 0.08f) + curveToRelative(0.27f, 0.26f, 0.3f, 0.68f, 0.07f, 0.97f) + lineToRelative(-0.07f, 0.09f) + lineToRelative(-2.25f, 2.23f) + lineToRelative(-0.04f, 0.04f) + lineToRelative(-0.06f, 0.05f) + lineToRelative(-0.07f, 0.04f) + lineToRelative(-0.06f, 0.03f) + lineToRelative(-0.1f, 0.03f) + lineToRelative(-0.06f, 0.02f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-0.09f) + lineToRelative(-0.09f, -0.01f) + lineToRelative(-0.1f, -0.03f) + lineToRelative(-0.1f, -0.04f) + lineToRelative(-0.08f, -0.05f) + lineToRelative(-0.11f, -0.09f) + lineToRelative(-2.25f, -2.23f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.08f) + lineToRelative(0.08f, 0.08f) + lineToRelative(0.97f, 0.96f) + verticalLineToRelative(-6.7f) + curveToRelative(0.0f, -0.35f, 0.23f, -0.64f, 0.55f, -0.72f) + lineToRelative(0.1f, -0.02f) + horizontalLineToRelative(0.1f) + close() + } + } + return _dualScreenUpdate!! + } + +private var _dualScreenUpdate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenVerticalScroll.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenVerticalScroll.kt new file mode 100644 index 00000000..09c964aa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenVerticalScroll.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DualScreenVerticalScroll: ImageVector + get() { + if (_dualScreenVerticalScroll != null) { + return _dualScreenVerticalScroll!! + } + _dualScreenVerticalScroll = fluentIcon(name = "Regular.DualScreenVerticalScroll") { + fluentPath { + moveTo(12.75f, 4.0f) + horizontalLineToRelative(7.5f) + curveTo(21.2f, 4.0f, 22.0f, 4.8f, 22.0f, 5.75f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) + lineTo(3.75f, 20.0f) + curveTo(2.78f, 20.0f, 2.0f, 19.2f, 2.0f, 18.25f) + lineTo(2.0f, 5.75f) + curveTo(2.0f, 4.8f, 2.78f, 4.0f, 3.75f, 4.0f) + horizontalLineToRelative(9.0f) + close() + moveTo(20.25f, 5.5f) + horizontalLineToRelative(-7.5f) + verticalLineToRelative(13.0f) + horizontalLineToRelative(7.5f) + curveToRelative(0.13f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + lineTo(20.5f, 5.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(11.25f, 5.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(7.5f) + verticalLineToRelative(-13.0f) + close() + moveTo(14.7f, 13.4f) + lineTo(14.79f, 13.48f) + lineTo(16.5f, 15.23f) + lineTo(18.22f, 13.48f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.14f, 0.96f) + lineToRelative(-0.07f, 0.09f) + lineToRelative(-2.25f, 2.3f) + curveToRelative(-0.27f, 0.26f, -0.7f, 0.29f, -0.99f, 0.07f) + lineToRelative(-0.08f, -0.08f) + lineToRelative(-2.26f, -2.3f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.0f, -1.12f) + close() + moveTo(17.04f, 7.23f) + lineTo(19.29f, 9.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.07f, 1.04f) + lineTo(16.5f, 8.82f) + lineToRelative(-1.71f, 1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.08f, -1.05f) + lineToRelative(2.26f, -2.3f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.07f, 0.0f) + close() + } + } + return _dualScreenVerticalScroll!! + } + +private var _dualScreenVerticalScroll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenVibrate.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenVibrate.kt new file mode 100644 index 00000000..4ab35a0e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/DualScreenVibrate.kt @@ -0,0 +1,108 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.DualScreenVibrate: ImageVector + get() { + if (_dualScreenVibrate != null) { + return _dualScreenVibrate!! + } + _dualScreenVibrate = fluentIcon(name = "Regular.DualScreenVibrate") { + fluentPath { + moveTo(16.75f, 6.0f) + curveToRelative(0.92f, 0.0f, 1.67f, 0.7f, 1.75f, 1.6f) + verticalLineToRelative(9.65f) + curveToRelative(0.0f, 0.92f, -0.7f, 1.67f, -1.6f, 1.74f) + lineToRelative(-0.15f, 0.01f) + horizontalLineToRelative(-9.5f) + curveToRelative(-0.92f, 0.0f, -1.67f, -0.7f, -1.74f, -1.6f) + lineToRelative(-0.01f, -0.15f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.68f, 1.6f, -1.75f) + horizontalLineToRelative(9.65f) + close() + moveTo(11.5f, 7.5f) + lineTo(7.25f, 7.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.24f, 0.19f) + lineTo(7.0f, 7.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.12f, 0.08f, 0.22f, 0.2f, 0.24f) + lineToRelative(0.05f, 0.01f) + horizontalLineToRelative(4.25f) + verticalLineToRelative(-10.0f) + close() + moveTo(16.75f, 7.5f) + lineTo(12.5f, 7.5f) + verticalLineToRelative(10.0f) + horizontalLineToRelative(4.25f) + curveToRelative(0.12f, 0.0f, 0.22f, -0.08f, 0.24f, -0.2f) + lineToRelative(0.01f, -0.05f) + verticalLineToRelative(-9.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.2f, -0.25f) + horizontalLineToRelative(-0.05f) + close() + moveTo(15.25f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-1.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + horizontalLineToRelative(1.1f) + close() + moveTo(9.75f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-1.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + horizontalLineToRelative(1.1f) + close() + moveTo(21.12f, 8.04f) + lineTo(21.18f, 8.13f) + lineTo(21.22f, 8.23f) + lineTo(21.8f, 9.68f) + curveToRelative(0.34f, 0.83f, 0.24f, 1.77f, -0.24f, 2.51f) + lineToRelative(-0.11f, 0.16f) + lineToRelative(-0.15f, 0.2f) + curveToRelative(-0.23f, 0.31f, -0.3f, 0.7f, -0.2f, 1.08f) + lineToRelative(0.04f, 0.13f) + lineToRelative(0.58f, 1.46f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.65f) + lineToRelative(-0.04f, -0.1f) + lineToRelative(-0.58f, -1.45f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.24f, -2.51f) + lineToRelative(0.1f, -0.16f) + lineToRelative(0.16f, -0.2f) + curveToRelative(0.23f, -0.31f, 0.3f, -0.71f, 0.2f, -1.08f) + lineToRelative(-0.04f, -0.14f) + lineToRelative(-0.58f, -1.45f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.29f, -0.74f) + close() + moveTo(3.57f, 8.04f) + lineTo(3.63f, 8.13f) + lineTo(3.67f, 8.23f) + lineTo(4.25f, 9.68f) + curveToRelative(0.34f, 0.83f, 0.24f, 1.77f, -0.24f, 2.51f) + lineToRelative(-0.1f, 0.16f) + lineToRelative(-0.16f, 0.2f) + curveToRelative(-0.23f, 0.31f, -0.3f, 0.7f, -0.2f, 1.08f) + lineToRelative(0.04f, 0.13f) + lineToRelative(0.58f, 1.46f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.65f) + lineToRelative(-0.04f, -0.1f) + lineToRelative(-0.58f, -1.45f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.24f, -2.51f) + lineToRelative(0.11f, -0.16f) + lineToRelative(0.15f, -0.2f) + curveToRelative(0.23f, -0.31f, 0.3f, -0.71f, 0.2f, -1.08f) + lineToRelative(-0.04f, -0.14f) + lineToRelative(-0.58f, -1.45f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.29f, -0.74f) + close() + } + } + return _dualScreenVibrate!! + } + +private var _dualScreenVibrate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Dumbbell.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Dumbbell.kt new file mode 100644 index 00000000..87fde4b1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Dumbbell.kt @@ -0,0 +1,103 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Dumbbell: ImageVector + get() { + if (_dumbbell != null) { + return _dumbbell!! + } + _dumbbell = fluentIcon(name = "Regular.Dumbbell") { + fluentPath { + moveTo(17.77f, 7.8f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.07f, 1.06f) + lineTo(15.14f, 7.3f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(1.57f, 1.57f) + close() + moveTo(9.39f, 17.24f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.07f) + lineTo(7.82f, 14.6f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.07f) + lineToRelative(1.57f, 1.57f) + curveToRelative(0.3f, 0.29f, 0.77f, 0.29f, 1.06f, 0.0f) + close() + moveTo(20.94f, 3.08f) + arcToRelative(1.94f, 1.94f, 0.0f, false, false, -2.75f, 0.0f) + lineToRelative(-0.67f, 0.68f) + lineToRelative(-0.2f, -0.21f) + arcToRelative(2.41f, 2.41f, 0.0f, false, false, -3.67f, 0.29f) + arcToRelative(2.93f, 2.93f, 0.0f, false, false, -2.61f, 4.96f) + lineToRelative(0.72f, 0.72f) + lineToRelative(-2.24f, 2.24f) + lineToRelative(-0.72f, -0.72f) + arcToRelative(2.94f, 2.94f, 0.0f, false, false, -4.96f, 2.61f) + lineToRelative(-0.3f, 0.25f) + arcToRelative(2.41f, 2.41f, 0.0f, false, false, 0.0f, 3.42f) + lineToRelative(0.21f, 0.2f) + lineToRelative(-0.69f, 0.7f) + arcToRelative(1.94f, 1.94f, 0.0f, false, false, 2.75f, 2.74f) + lineToRelative(0.69f, -0.7f) + lineToRelative(0.2f, 0.22f) + arcToRelative(2.41f, 2.41f, 0.0f, false, false, 3.67f, -0.3f) + arcToRelative(2.93f, 2.93f, 0.0f, false, false, 2.61f, -4.96f) + lineToRelative(-0.72f, -0.72f) + lineToRelative(2.24f, -2.24f) + lineToRelative(0.72f, 0.72f) + arcToRelative(2.94f, 2.94f, 0.0f, false, false, 4.96f, -2.61f) + arcToRelative(2.42f, 2.42f, 0.0f, false, false, 0.3f, -3.66f) + lineToRelative(-0.21f, -0.21f) + lineToRelative(0.67f, -0.67f) + curveToRelative(0.75f, -0.76f, 0.75f, -1.99f, 0.0f, -2.75f) + close() + moveTo(19.2f, 5.44f) + lineToRelative(-0.63f, -0.62f) + lineToRelative(0.67f, -0.68f) + arcToRelative(0.44f, 0.44f, 0.0f, true, true, 0.63f, 0.63f) + lineToRelative(-0.67f, 0.67f) + close() + moveTo(13.43f, 11.2f) + lineTo(11.19f, 13.44f) + lineTo(10.57f, 12.82f) + lineTo(12.81f, 10.58f) + lineTo(13.43f, 11.2f) + close() + moveTo(5.43f, 19.2f) + lineTo(4.73f, 19.9f) + arcToRelative(0.44f, 0.44f, 0.0f, false, true, -0.62f, -0.62f) + lineToRelative(0.7f, -0.7f) + lineToRelative(0.62f, 0.63f) + close() + moveTo(14.95f, 4.6f) + arcToRelative(0.91f, 0.91f, 0.0f, false, true, 1.3f, 0.0f) + lineToRelative(3.15f, 3.17f) + arcToRelative(0.91f, 0.91f, 0.0f, false, true, -0.36f, 1.51f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.45f, 1.03f) + arcToRelative(1.44f, 1.44f, 0.0f, false, true, -2.32f, 1.61f) + lineTo(12.1f, 7.74f) + arcToRelative(1.44f, 1.44f, 0.0f, false, true, 1.61f, -2.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.03f, -0.45f) + arcToRelative(0.9f, 0.9f, 0.0f, false, true, 0.22f, -0.36f) + close() + moveTo(5.7f, 12.1f) + arcToRelative(1.44f, 1.44f, 0.0f, false, true, 2.03f, 0.0f) + lineToRelative(4.18f, 4.18f) + arcToRelative(1.44f, 1.44f, 0.0f, false, true, -1.61f, 2.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.03f, 0.45f) + arcToRelative(0.91f, 0.91f, 0.0f, false, true, -1.51f, 0.36f) + lineTo(4.6f, 16.25f) + arcToRelative(0.91f, 0.91f, 0.0f, false, true, 0.36f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.45f, -1.03f) + arcToRelative(1.44f, 1.44f, 0.0f, false, true, 0.29f, -1.62f) + close() + } + } + return _dumbbell!! + } + +private var _dumbbell: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Earth.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Earth.kt new file mode 100644 index 00000000..58330685 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Earth.kt @@ -0,0 +1,110 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Earth: ImageVector + get() { + if (_earth != null) { + return _earth!! + } + _earth = fluentIcon(name = "Regular.Earth") { + fluentPath { + moveTo(10.95f, 2.05f) + arcTo(10.0f, 10.0f, 0.0f, true, true, 4.1f, 18.13f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 6.83f, -16.08f) + horizontalLineToRelative(0.02f) + close() + moveTo(12.0f, 3.5f) + horizontalLineToRelative(-0.16f) + curveToRelative(0.12f, 0.25f, 0.26f, 0.53f, 0.37f, 0.85f) + curveToRelative(0.35f, 0.92f, 0.67f, 2.28f, 0.1f, 3.49f) + curveToRelative(-0.52f, 1.11f, -1.42f, 1.4f, -2.09f, 1.57f) + lineToRelative(-0.08f, 0.02f) + curveToRelative(-0.66f, 0.17f, -0.9f, 0.24f, -1.1f, 0.52f) + curveToRelative(-0.16f, 0.25f, -0.14f, 0.58f, 0.07f, 1.25f) + lineToRelative(0.04f, 0.14f) + curveToRelative(0.09f, 0.26f, 0.18f, 0.57f, 0.23f, 0.87f) + curveToRelative(0.07f, 0.36f, 0.09f, 0.82f, -0.15f, 1.27f) + curveToRelative(-0.23f, 0.45f, -0.54f, 0.75f, -0.9f, 0.95f) + curveToRelative(-0.34f, 0.18f, -0.7f, 0.25f, -0.96f, 0.3f) + lineToRelative(-0.09f, 0.02f) + curveToRelative(-0.51f, 0.09f, -0.76f, 0.13f, -1.0f, 0.39f) + curveToRelative(-0.19f, 0.2f, -0.3f, 0.55f, -0.38f, 1.07f) + lineToRelative(-0.06f, 0.65f) + verticalLineToRelative(0.12f) + curveToRelative(-0.03f, 0.24f, -0.05f, 0.52f, -0.1f, 0.76f) + arcToRelative(8.48f, 8.48f, 0.0f, false, false, 10.58f, 1.58f) + lineToRelative(-0.31f, -0.35f) + curveToRelative(-0.34f, -0.43f, -0.79f, -1.16f, -0.63f, -2.03f) + curveToRelative(0.07f, -0.42f, 0.3f, -0.77f, 0.51f, -1.04f) + curveToRelative(0.22f, -0.27f, 0.49f, -0.52f, 0.72f, -0.74f) + lineToRelative(0.16f, -0.14f) + curveToRelative(0.18f, -0.17f, 0.33f, -0.3f, 0.46f, -0.44f) + curveToRelative(0.17f, -0.18f, 0.21f, -0.26f, 0.21f, -0.27f) + curveToRelative(0.07f, -0.22f, -0.01f, -0.38f, -0.1f, -0.45f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, -0.2f, -0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.4f, 0.14f) + arcToRelative(0.91f, 0.91f, 0.0f, false, true, -0.83f, 0.08f) + curveToRelative(-0.27f, -0.1f, -0.41f, -0.31f, -0.49f, -0.43f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -0.27f, -0.77f) + lineToRelative(-0.12f, -0.55f) + lineToRelative(-0.04f, -0.21f) + arcToRelative(4.1f, 4.1f, 0.0f, false, false, -0.13f, -0.54f) + lineToRelative(-0.02f, -0.04f) + arcToRelative(6.23f, 6.23f, 0.0f, false, false, -0.3f, -0.42f) + lineToRelative(-0.1f, -0.14f) + curveToRelative(-0.16f, -0.21f, -0.36f, -0.47f, -0.52f, -0.71f) + curveToRelative(-0.2f, -0.3f, -0.42f, -0.7f, -0.49f, -1.1f) + arcToRelative(1.39f, 1.39f, 0.0f, false, true, 0.54f, -1.38f) + arcToRelative(13.0f, 13.0f, 0.0f, false, false, 1.83f, -1.97f) + curveToRelative(0.29f, -0.36f, 0.54f, -0.7f, 0.73f, -0.95f) + arcTo(8.46f, 8.46f, 0.0f, false, false, 12.0f, 3.5f) + close() + moveTo(17.73f, 5.72f) + lineTo(16.97f, 6.7f) + curveToRelative(-0.6f, 0.75f, -1.4f, 1.68f, -2.05f, 2.19f) + curveToRelative(0.03f, 0.1f, 0.1f, 0.26f, 0.26f, 0.5f) + arcToRelative(10.73f, 10.73f, 0.0f, false, false, 0.56f, 0.77f) + curveToRelative(0.18f, 0.23f, 0.42f, 0.54f, 0.52f, 0.84f) + curveToRelative(0.1f, 0.23f, 0.15f, 0.52f, 0.2f, 0.76f) + lineToRelative(0.05f, 0.25f) + lineToRelative(0.08f, 0.37f) + curveToRelative(0.6f, -0.17f, 1.2f, -0.07f, 1.67f, 0.3f) + curveToRelative(0.6f, 0.46f, 0.86f, 1.28f, 0.62f, 2.07f) + curveToRelative(-0.11f, 0.36f, -0.36f, 0.66f, -0.56f, 0.87f) + lineToRelative(-0.56f, 0.53f) + lineToRelative(-0.13f, 0.12f) + curveToRelative(-0.23f, 0.2f, -0.42f, 0.4f, -0.57f, 0.57f) + arcToRelative(0.9f, 0.9f, 0.0f, false, false, -0.2f, 0.36f) + curveToRelative(-0.04f, 0.22f, 0.06f, 0.51f, 0.32f, 0.84f) + arcToRelative(3.14f, 3.14f, 0.0f, false, false, 0.38f, 0.4f) + arcToRelative(8.48f, 8.48f, 0.0f, false, false, 0.17f, -12.72f) + close() + moveTo(3.5f, 12.0f) + curveToRelative(0.0f, 1.4f, 0.34f, 2.72f, 0.94f, 3.88f) + curveToRelative(0.08f, -0.56f, 0.26f, -1.25f, 0.74f, -1.77f) + arcToRelative(2.91f, 2.91f, 0.0f, false, true, 1.93f, -0.86f) + curveToRelative(0.25f, -0.04f, 0.4f, -0.08f, 0.5f, -0.14f) + arcToRelative(0.7f, 0.7f, 0.0f, false, false, 0.3f, -0.32f) + curveToRelative(0.0f, -0.03f, 0.03f, -0.1f, 0.0f, -0.33f) + curveToRelative(-0.04f, -0.18f, -0.1f, -0.38f, -0.18f, -0.63f) + lineToRelative(-0.06f, -0.2f) + curveToRelative(-0.18f, -0.6f, -0.48f, -1.6f, 0.12f, -2.5f) + curveToRelative(0.53f, -0.8f, 1.36f, -1.0f, 1.9f, -1.13f) + lineToRelative(0.16f, -0.04f) + curveToRelative(0.56f, -0.15f, 0.88f, -0.28f, 1.1f, -0.76f) + curveToRelative(0.3f, -0.63f, 0.18f, -1.48f, -0.14f, -2.32f) + arcToRelative(7.61f, 7.61f, 0.0f, false, false, -0.58f, -1.2f) + arcTo(8.5f, 8.5f, 0.0f, false, false, 3.5f, 12.0f) + close() + } + } + return _earth!! + } + +private var _earth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EarthLeaf.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EarthLeaf.kt new file mode 100644 index 00000000..42784710 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EarthLeaf.kt @@ -0,0 +1,104 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.EarthLeaf: ImageVector + get() { + if (_earthLeaf != null) { + return _earthLeaf!! + } + _earthLeaf = fluentIcon(name = "Regular.EarthLeaf") { + fluentPath { + moveTo(10.95f, 2.05f) + horizontalLineToRelative(-0.02f) + arcTo(10.0f, 10.0f, 0.0f, false, false, 4.1f, 18.15f) + arcToRelative(9.99f, 9.99f, 0.0f, false, false, 6.92f, 3.81f) + curveToRelative(0.05f, -0.47f, 0.17f, -0.97f, 0.34f, -1.47f) + arcToRelative(8.48f, 8.48f, 0.0f, false, true, -5.63f, -2.74f) + curveToRelative(0.06f, -0.24f, 0.08f, -0.52f, 0.1f, -0.76f) + lineToRelative(0.01f, -0.12f) + lineToRelative(0.06f, -0.65f) + curveToRelative(0.07f, -0.52f, 0.2f, -0.87f, 0.38f, -1.07f) + curveToRelative(0.24f, -0.26f, 0.49f, -0.3f, 1.0f, -0.4f) + lineToRelative(0.1f, -0.01f) + curveToRelative(0.26f, -0.05f, 0.61f, -0.12f, 0.95f, -0.3f) + curveToRelative(0.36f, -0.2f, 0.67f, -0.5f, 0.9f, -0.95f) + curveToRelative(0.24f, -0.45f, 0.22f, -0.9f, 0.15f, -1.27f) + arcToRelative(7.0f, 7.0f, 0.0f, false, false, -0.27f, -1.01f) + curveToRelative(-0.2f, -0.67f, -0.23f, -1.0f, -0.06f, -1.25f) + curveToRelative(0.18f, -0.28f, 0.43f, -0.35f, 1.09f, -0.52f) + lineToRelative(0.08f, -0.02f) + curveToRelative(0.67f, -0.17f, 1.57f, -0.46f, 2.1f, -1.57f) + curveToRelative(0.56f, -1.2f, 0.24f, -2.57f, -0.1f, -3.49f) + curveToRelative(-0.13f, -0.32f, -0.26f, -0.6f, -0.38f, -0.85f) + horizontalLineTo(12.0f) + curveToRelative(1.67f, 0.0f, 3.22f, 0.48f, 4.53f, 1.3f) + curveToRelative(-0.19f, 0.26f, -0.44f, 0.6f, -0.73f, 0.96f) + arcToRelative(13.0f, 13.0f, 0.0f, false, true, -1.82f, 1.96f) + arcToRelative(1.39f, 1.39f, 0.0f, false, false, -0.55f, 1.38f) + curveToRelative(0.07f, 0.42f, 0.3f, 0.8f, 0.5f, 1.1f) + curveToRelative(0.15f, 0.25f, 0.35f, 0.5f, 0.5f, 0.72f) + lineToRelative(0.12f, 0.14f) + arcToRelative(6.23f, 6.23f, 0.0f, false, true, 0.29f, 0.42f) + lineToRelative(0.02f, 0.04f) + arcToRelative(4.1f, 4.1f, 0.0f, false, true, 0.15f, 0.65f) + curveToRelative(0.45f, -0.2f, 0.93f, -0.35f, 1.44f, -0.45f) + curveToRelative(-0.04f, -0.23f, -0.1f, -0.5f, -0.19f, -0.72f) + arcToRelative(3.69f, 3.69f, 0.0f, false, false, -0.65f, -1.01f) + curveToRelative(-0.15f, -0.21f, -0.3f, -0.4f, -0.43f, -0.6f) + curveToRelative(-0.16f, -0.24f, -0.23f, -0.4f, -0.26f, -0.5f) + arcToRelative(14.6f, 14.6f, 0.0f, false, false, 2.05f, -2.2f) + curveToRelative(0.3f, -0.36f, 0.56f, -0.7f, 0.76f, -0.97f) + arcToRelative(8.48f, 8.48f, 0.0f, false, true, 2.76f, 5.82f) + curveToRelative(0.58f, 0.04f, 1.08f, 0.12f, 1.5f, 0.2f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, -11.04f, -9.69f) + close() + moveTo(4.44f, 15.88f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, 5.8f, -12.2f) + arcToRelative(7.41f, 7.41f, 0.0f, false, true, 0.57f, 1.2f) + curveToRelative(0.31f, 0.84f, 0.44f, 1.7f, 0.15f, 2.32f) + curveToRelative(-0.23f, 0.48f, -0.55f, 0.61f, -1.11f, 0.76f) + lineTo(9.69f, 8.0f) + curveToRelative(-0.54f, 0.13f, -1.37f, 0.33f, -1.9f, 1.12f) + curveToRelative(-0.6f, 0.91f, -0.3f, 1.91f, -0.12f, 2.52f) + lineToRelative(0.06f, 0.19f) + curveToRelative(0.08f, 0.25f, 0.14f, 0.45f, 0.18f, 0.63f) + curveToRelative(0.03f, 0.22f, 0.0f, 0.3f, 0.0f, 0.33f) + arcToRelative(0.7f, 0.7f, 0.0f, false, true, -0.3f, 0.32f) + curveToRelative(-0.1f, 0.06f, -0.25f, 0.1f, -0.5f, 0.14f) + lineToRelative(-0.13f, 0.02f) + curveToRelative(-0.46f, 0.08f, -1.2f, 0.2f, -1.8f, 0.84f) + arcToRelative(3.27f, 3.27f, 0.0f, false, false, -0.74f, 1.77f) + close() + moveTo(12.0f, 22.2f) + curveToRelative(0.06f, -0.96f, 0.5f, -2.14f, 1.23f, -3.25f) + arcToRelative(8.9f, 8.9f, 0.0f, false, true, 5.38f, -3.97f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.24f, -0.97f) + arcToRelative(9.9f, 9.9f, 0.0f, false, false, -5.73f, 4.0f) + curveToRelative(-0.1f, -0.3f, -0.15f, -0.63f, -0.15f, -1.01f) + curveToRelative(0.0f, -0.92f, 0.47f, -1.91f, 1.2f, -2.7f) + arcToRelative(5.33f, 5.33f, 0.0f, false, true, 3.2f, -1.64f) + arcToRelative(13.5f, 13.5f, 0.0f, false, true, 5.56f, 0.23f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.22f, 1.35f) + arcToRelative(0.91f, 0.91f, 0.0f, false, false, -0.26f, 0.34f) + curveToRelative(-0.11f, 0.2f, -0.22f, 0.48f, -0.32f, 0.82f) + curveToRelative(-0.1f, 0.29f, -0.17f, 0.6f, -0.26f, 0.93f) + lineToRelative(-0.06f, 0.21f) + curveToRelative(-0.11f, 0.41f, -0.24f, 0.85f, -0.38f, 1.29f) + curveToRelative(-0.3f, 0.86f, -0.7f, 1.78f, -1.4f, 2.48f) + arcToRelative(4.02f, 4.02f, 0.0f, false, true, -3.0f, 1.2f) + arcToRelative(3.82f, 3.82f, 0.0f, false, true, -2.85f, -1.16f) + curveToRelative(-0.4f, 0.74f, -0.61f, 1.43f, -0.65f, 1.95f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, -0.1f) + close() + } + } + return _earthLeaf!! + } + +private var _earthLeaf: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EditOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EditOff.kt new file mode 100644 index 00000000..2fbc4d1e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EditOff.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.EditOff: ImageVector + get() { + if (_editOff != null) { + return _editOff!! + } + _editOff = fluentIcon(name = "Regular.EditOff") { + fluentPath { + moveTo(8.94f, 10.0f) + lineTo(2.22f, 3.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(18.5f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineTo(14.0f, 15.06f) + lineToRelative(-5.0f, 5.0f) + curveToRelative(-0.4f, 0.4f, -0.92f, 0.7f, -1.48f, 0.83f) + lineToRelative(-4.6f, 1.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.9f, -0.91f) + lineToRelative(1.1f, -4.6f) + arcTo(3.1f, 3.1f, 0.0f, false, true, 3.94f, 15.0f) + lineToRelative(5.0f, -5.0f) + close() + moveTo(12.94f, 14.0f) + lineTo(10.0f, 11.06f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(1.6f, 1.6f, 0.0f, false, false, -0.42f, 0.76f) + lineToRelative(-0.82f, 3.42f) + lineToRelative(3.42f, -0.81f) + curveToRelative(0.29f, -0.07f, 0.55f, -0.22f, 0.76f, -0.43f) + lineToRelative(5.0f, -5.0f) + close() + moveTo(17.94f, 9.0f) + lineTo(15.06f, 11.88f) + lineTo(16.12f, 12.94f) + lineTo(20.95f, 8.11f) + arcToRelative(3.58f, 3.58f, 0.0f, false, false, -5.06f, -5.06f) + lineToRelative(-4.83f, 4.83f) + lineToRelative(1.06f, 1.06f) + lineTo(15.0f, 6.06f) + lineTo(17.94f, 9.0f) + close() + moveTo(16.95f, 4.1f) + arcToRelative(2.08f, 2.08f, 0.0f, true, true, 2.94f, 2.95f) + lineToRelative(-0.89f, 0.89f) + lineTo(16.06f, 5.0f) + lineToRelative(0.9f, -0.9f) + close() + } + } + return _editOff!! + } + +private var _editOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EditProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EditProhibited.kt new file mode 100644 index 00000000..07a72f0b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EditProhibited.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.EditProhibited: ImageVector + get() { + if (_editProhibited != null) { + return _editProhibited!! + } + _editProhibited = fluentIcon(name = "Regular.EditProhibited") { + fluentPath { + moveTo(20.95f, 3.05f) + arcToRelative(3.58f, 3.58f, 0.0f, false, false, -5.06f, 0.0f) + lineTo(3.94f, 15.0f) + curveToRelative(-0.4f, 0.4f, -0.7f, 0.92f, -0.82f, 1.48f) + lineToRelative(-1.1f, 4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.9f, 0.9f) + lineToRelative(4.6f, -1.1f) + arcTo(3.1f, 3.1f, 0.0f, false, false, 9.0f, 20.07f) + lineToRelative(1.15f, -1.15f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(7.94f, 19.0f) + arcToRelative(1.6f, 1.6f, 0.0f, false, true, -0.76f, 0.43f) + lineToRelative(-3.42f, 0.8f) + lineToRelative(0.82f, -3.4f) + curveToRelative(0.06f, -0.3f, 0.21f, -0.56f, 0.42f, -0.77f) + lineToRelative(10.0f, -10.0f) + lineTo(17.94f, 9.0f) + lineToRelative(-2.03f, 2.03f) + arcToRelative(6.57f, 6.57f, 0.0f, false, true, 2.0f, 0.12f) + lineToRelative(3.04f, -3.04f) + arcToRelative(3.58f, 3.58f, 0.0f, false, false, 0.0f, -5.06f) + close() + moveTo(16.95f, 4.11f) + arcToRelative(2.08f, 2.08f, 0.0f, true, true, 2.94f, 2.94f) + lineToRelative(-0.89f, 0.89f) + lineTo(16.06f, 5.0f) + lineToRelative(0.9f, -0.9f) + close() + moveTo(22.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(12.5f, 17.5f) + curveToRelative(0.0f, 0.83f, 0.26f, 1.6f, 0.7f, 2.25f) + lineToRelative(5.55f, -5.56f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) + close() + moveTo(16.5f, 21.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) + lineToRelative(-5.55f, 5.56f) + curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) + close() + } + } + return _editProhibited!! + } + +private var _editProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EditSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EditSettings.kt new file mode 100644 index 00000000..70772403 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EditSettings.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.EditSettings: ImageVector + get() { + if (_editSettings != null) { + return _editSettings!! + } + _editSettings = fluentIcon(name = "Regular.EditSettings") { + fluentPath { + moveTo(20.95f, 3.05f) + arcToRelative(3.58f, 3.58f, 0.0f, false, false, -5.06f, 0.0f) + lineTo(3.94f, 15.0f) + curveToRelative(-0.4f, 0.4f, -0.7f, 0.92f, -0.82f, 1.48f) + lineToRelative(-1.1f, 4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.9f, 0.9f) + lineToRelative(4.6f, -1.1f) + arcTo(3.1f, 3.1f, 0.0f, false, false, 9.0f, 20.07f) + lineToRelative(1.15f, -1.15f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -0.12f, -2.0f) + lineTo(7.94f, 19.0f) + arcToRelative(1.6f, 1.6f, 0.0f, false, true, -0.76f, 0.43f) + lineToRelative(-3.42f, 0.8f) + lineToRelative(0.82f, -3.4f) + curveToRelative(0.06f, -0.3f, 0.21f, -0.56f, 0.42f, -0.77f) + lineToRelative(10.0f, -10.0f) + lineTo(17.94f, 9.0f) + lineToRelative(-2.03f, 2.03f) + arcToRelative(6.57f, 6.57f, 0.0f, false, true, 2.0f, 0.12f) + lineToRelative(3.04f, -3.04f) + arcToRelative(3.58f, 3.58f, 0.0f, false, false, 0.0f, -5.06f) + close() + moveTo(16.95f, 4.11f) + arcToRelative(2.08f, 2.08f, 0.0f, true, true, 2.94f, 2.94f) + lineToRelative(-0.89f, 0.89f) + lineTo(16.06f, 5.0f) + lineToRelative(0.9f, -0.9f) + close() + moveTo(13.28f, 13.98f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.59f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) + lineToRelative(0.55f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) + lineToRelative(-0.19f, 0.64f) + curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) + lineToRelative(0.49f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.9f) + lineToRelative(-0.2f, -0.7f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) + lineToRelative(0.59f, -0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, -0.01f, -1.8f) + lineToRelative(-0.54f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.19f, -0.63f) + curveToRelative(-0.44f, -0.39f, -0.94f, -0.7f, -1.49f, -0.93f) + lineToRelative(-0.49f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.91f) + lineToRelative(0.2f, 0.69f) + close() + moveTo(16.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(15.7f, 16.0f, 16.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(17.3f, 19.0f, 16.5f, 19.0f) + close() + } + } + return _editSettings!! + } + +private var _editSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Elevator.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Elevator.kt new file mode 100644 index 00000000..2fc07526 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Elevator.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Elevator: ImageVector + get() { + if (_elevator != null) { + return _elevator!! + } + _elevator = fluentIcon(name = "Regular.Elevator") { + fluentPath { + moveTo(8.03f, 8.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-1.75f, 1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(0.47f, -0.47f) + verticalLineToRelative(2.94f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.94f) + lineToRelative(0.47f, 0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(8.03f, 8.97f) + close() + moveTo(14.22f, 13.03f) + lineTo(15.97f, 14.78f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(1.75f, -1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-0.47f, 0.47f) + lineTo(17.25f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.94f) + lineToRelative(-0.47f, -0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + close() + moveTo(5.25f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) + horizontalLineToRelative(13.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-9.5f) + curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) + lineTo(5.25f, 4.0f) + close() + moveTo(3.5f, 7.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(13.0f) + horizontalLineToRelative(-6.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-9.5f) + close() + moveTo(12.75f, 5.5f) + horizontalLineToRelative(6.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-6.0f) + verticalLineToRelative(-13.0f) + close() + } + } + return _elevator!! + } + +private var _elevator: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Emoji.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Emoji.kt new file mode 100644 index 00000000..928d5e56 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Emoji.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Emoji: ImageVector + get() { + if (_emoji != null) { + return _emoji!! + } + _emoji = fluentIcon(name = "Regular.Emoji") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) + close() + moveTo(8.46f, 14.78f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 7.07f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.18f, 0.94f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, -9.43f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.18f, -0.94f) + close() + moveTo(9.0f, 8.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(15.0f, 8.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + } + } + return _emoji!! + } + +private var _emoji: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiAdd.kt new file mode 100644 index 00000000..542fae97 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiAdd.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.EmojiAdd: ImageVector + get() { + if (_emojiAdd != null) { + return _emojiAdd!! + } + _emojiAdd = fluentIcon(name = "Regular.EmojiAdd") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 9.97f, 10.78f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.47f, -1.05f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, -8.77f, 8.77f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, 1.05f, 1.47f) + lineTo(12.0f, 22.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, -20.0f) + close() + moveTo(17.5f, 14.0f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) + lineToRelative(-0.01f, 0.1f) + lineTo(17.0f, 17.0f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) + verticalLineToRelative(0.19f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) + lineTo(17.0f, 17.99f) + verticalLineToRelative(2.61f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + horizontalLineToRelative(0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) + lineToRelative(0.01f, -0.1f) + lineTo(18.0f, 18.0f) + horizontalLineToRelative(2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + verticalLineToRelative(-0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) + lineToRelative(-0.1f, -0.01f) + lineTo(18.0f, 17.0f) + verticalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) + horizontalLineToRelative(-0.09f) + close() + moveTo(8.46f, 14.78f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 2.63f, 1.63f) + arcToRelative(6.46f, 6.46f, 0.0f, false, false, -0.08f, 1.5f) + arcToRelative(5.98f, 5.98f, 0.0f, false, true, -3.73f, -2.2f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.18f, -0.93f) + close() + moveTo(9.0f, 8.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(15.0f, 8.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + } + } + return _emojiAdd!! + } + +private var _emojiAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiAngry.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiAngry.kt new file mode 100644 index 00000000..2f577ff7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiAngry.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.EmojiAngry: ImageVector + get() { + if (_emojiAngry != null) { + return _emojiAngry!! + } + _emojiAngry = fluentIcon(name = "Regular.EmojiAngry") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) + close() + moveTo(12.0f, 13.5f) + curveToRelative(1.63f, 0.0f, 3.16f, 0.65f, 4.28f, 1.8f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.07f, 1.04f) + arcToRelative(4.48f, 4.48f, 0.0f, false, false, -6.43f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.07f, -1.04f) + arcTo(5.98f, 5.98f, 0.0f, false, true, 12.0f, 13.5f) + close() + moveTo(7.16f, 6.78f) + curveToRelative(0.24f, -0.3f, 0.65f, -0.36f, 0.97f, -0.18f) + lineToRelative(0.09f, 0.06f) + lineToRelative(2.5f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.47f, 1.34f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -1.71f, -1.16f) + lineToRelative(-1.26f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.12f, -1.06f) + close() + moveTo(13.28f, 8.66f) + lineTo(15.78f, 6.66f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.02f, 1.1f) + lineToRelative(-0.08f, 0.07f) + lineToRelative(-1.26f, 1.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -1.7f, 1.3f) + lineTo(13.76f, 10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.55f, -1.26f) + lineToRelative(0.07f, -0.08f) + lineToRelative(2.5f, -2.0f) + lineToRelative(-2.5f, 2.0f) + close() + } + } + return _emojiAngry!! + } + +private var _emojiAngry: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiEdit.kt new file mode 100644 index 00000000..ec1ca676 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiEdit.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.EmojiEdit: ImageVector + get() { + if (_emojiEdit != null) { + return _emojiEdit!! + } + _emojiEdit = fluentIcon(name = "Regular.EmojiEdit") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 9.97f, 9.25f) + arcToRelative(3.3f, 3.3f, 0.0f, false, false, -1.53f, -0.24f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, -9.14f, 9.46f) + lineToRelative(-0.24f, 0.94f) + curveToRelative(-0.04f, 0.18f, -0.06f, 0.36f, -0.06f, 0.54f) + arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 2.0f) + close() + moveTo(12.0f, 16.5f) + curveToRelative(1.12f, 0.0f, 2.17f, -0.41f, 2.98f, -1.13f) + lineToRelative(-2.49f, 2.5f) + lineToRelative(-0.12f, 0.12f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, -5.09f, -2.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.18f, -0.93f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 16.5f) + close() + moveTo(9.0f, 8.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(15.0f, 8.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _emojiEdit!! + } + +private var _emojiEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiHand.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiHand.kt new file mode 100644 index 00000000..e6b0b92c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiHand.kt @@ -0,0 +1,110 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.EmojiHand: ImageVector + get() { + if (_emojiHand != null) { + return _emojiHand!! + } + _emojiHand = fluentIcon(name = "Regular.EmojiHand") { + fluentPath { + moveTo(9.24f, 1.82f) + curveToRelative(0.15f, -0.04f, 0.33f, -0.07f, 0.51f, -0.07f) + curveToRelative(1.1f, 0.0f, 1.75f, 0.9f, 1.75f, 1.75f) + verticalLineToRelative(3.67f) + curveToRelative(0.29f, -0.1f, 0.63f, -0.17f, 1.0f, -0.17f) + curveTo(13.9f, 7.0f, 15.0f, 8.03f, 15.0f, 9.5f) + curveToRelative(0.0f, 0.24f, -0.12f, 0.47f, -0.31f, 0.61f) + lineToRelative(-1.72f, 1.23f) + lineToRelative(-0.96f, 0.83f) + curveToRelative(-0.63f, 0.56f, -1.2f, 1.19f, -1.7f, 1.87f) + lineToRelative(-0.6f, 0.83f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 7.48f, 16.0f) + lineTo(5.84f, 16.0f) + curveToRelative(-0.93f, 0.0f, -1.82f, -0.47f, -2.3f, -1.31f) + arcToRelative(20.7f, 20.7f, 0.0f, false, true, -0.98f, -1.9f) + arcTo(5.58f, 5.58f, 0.0f, false, true, 2.0f, 10.75f) + verticalLineToRelative(-6.0f) + arcToRelative(1.74f, 1.74f, 0.0f, false, true, 2.07f, -1.72f) + curveToRelative(0.19f, -0.69f, 0.79f, -1.28f, 1.68f, -1.28f) + curveToRelative(0.18f, 0.0f, 0.35f, 0.03f, 0.51f, 0.07f) + curveToRelative(0.3f, -0.47f, 0.8f, -0.82f, 1.49f, -0.82f) + curveToRelative(0.68f, 0.0f, 1.2f, 0.35f, 1.49f, 0.82f) + close() + moveTo(7.57f, 2.57f) + arcToRelative(0.27f, 0.27f, 0.0f, false, false, -0.07f, 0.18f) + verticalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-3.8f) + arcToRelative(0.22f, 0.22f, 0.0f, false, false, -0.06f, -0.12f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.19f, -0.08f) + curveToRelative(-0.1f, 0.0f, -0.15f, 0.03f, -0.18f, 0.07f) + arcToRelative(0.27f, 0.27f, 0.0f, false, false, -0.07f, 0.18f) + verticalLineToRelative(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-3.0f) + arcToRelative(0.27f, 0.27f, 0.0f, false, false, -0.07f, -0.18f) + curveToRelative(-0.03f, -0.04f, -0.09f, -0.07f, -0.18f, -0.07f) + curveToRelative(-0.1f, 0.0f, -0.15f, 0.03f, -0.18f, 0.07f) + arcToRelative(0.27f, 0.27f, 0.0f, false, false, -0.07f, 0.18f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.28f, 0.15f, 0.79f, 0.43f, 1.43f) + curveToRelative(0.27f, 0.62f, 0.62f, 1.26f, 0.9f, 1.76f) + curveToRelative(0.2f, 0.34f, 0.58f, 0.56f, 1.01f, 0.56f) + horizontalLineToRelative(1.64f) + curveToRelative(0.4f, 0.0f, 0.78f, -0.2f, 1.01f, -0.52f) + lineToRelative(0.6f, -0.82f) + curveToRelative(0.56f, -0.78f, 1.21f, -1.49f, 1.94f, -2.12f) + lineToRelative(0.98f, -0.86f) + arcToRelative(0.78f, 0.78f, 0.0f, false, true, 0.06f, -0.04f) + lineToRelative(1.38f, -0.99f) + curveToRelative(-0.12f, -0.4f, -0.48f, -0.65f, -0.95f, -0.65f) + curveToRelative(-0.63f, 0.0f, -1.09f, 0.4f, -1.24f, 0.53f) + lineToRelative(-0.03f, 0.03f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 10.0f, 8.5f) + lineTo(10.0f, 3.5f) + arcToRelative(0.28f, 0.28f, 0.0f, false, false, -0.07f, -0.18f) + curveToRelative(-0.04f, -0.04f, -0.09f, -0.07f, -0.18f, -0.07f) + curveToRelative(-0.1f, 0.0f, -0.15f, 0.03f, -0.18f, 0.07f) + arcToRelative(0.27f, 0.27f, 0.0f, false, false, -0.07f, 0.18f) + verticalLineToRelative(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-4.5f) + arcToRelative(0.27f, 0.27f, 0.0f, false, false, -0.07f, -0.18f) + curveToRelative(-0.03f, -0.04f, -0.09f, -0.07f, -0.18f, -0.07f) + curveToRelative(-0.1f, 0.0f, -0.15f, 0.03f, -0.18f, 0.07f) + close() + moveTo(13.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(17.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(15.0f, 22.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, -6.73f, -5.08f) + curveToRelative(0.5f, -0.11f, 0.97f, -0.32f, 1.39f, -0.62f) + arcTo(5.5f, 5.5f, 0.0f, true, false, 16.0f, 9.6f) + lineTo(16.0f, 9.5f) + curveToRelative(0.0f, -0.53f, -0.1f, -1.03f, -0.3f, -1.47f) + arcTo(7.0f, 7.0f, 0.0f, false, true, 15.0f, 22.0f) + close() + moveTo(13.2f, 16.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.08f, 1.04f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 5.76f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.08f, -1.04f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -3.6f, 0.0f) + close() + } + } + return _emojiHand!! + } + +private var _emojiHand: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiLaugh.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiLaugh.kt new file mode 100644 index 00000000..49997ba3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiLaugh.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.EmojiLaugh: ImageVector + get() { + if (_emojiLaugh != null) { + return _emojiLaugh!! + } + _emojiLaugh = fluentIcon(name = "Regular.EmojiLaugh") { + fluentPath { + moveTo(6.75f, 12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.82f) + curveToRelative(0.28f, 3.07f, 2.55f, 5.68f, 6.0f, 5.68f) + reflectiveCurveToRelative(5.72f, -2.6f, 6.0f, -5.68f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.82f) + lineTo(6.75f, 12.0f) + close() + moveTo(12.0f, 17.0f) + arcToRelative(4.4f, 4.4f, 0.0f, false, true, -4.37f, -3.5f) + horizontalLineToRelative(8.74f) + arcTo(4.4f, 4.4f, 0.0f, false, true, 12.0f, 17.0f) + close() + moveTo(15.25f, 8.75f) + curveToRelative(-0.4f, 0.0f, -0.71f, 0.29f, -0.76f, 0.61f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.48f, -0.22f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 2.24f, -1.89f) + curveToRelative(1.12f, 0.0f, 2.08f, 0.8f, 2.24f, 1.89f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.48f, 0.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.76f, -0.61f) + close() + moveTo(7.99f, 9.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.76f, -0.61f) + curveToRelative(0.4f, 0.0f, 0.71f, 0.29f, 0.76f, 0.61f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.48f, -0.22f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -1.89f) + curveToRelative(-1.12f, 0.0f, -2.08f, 0.8f, -2.24f, 1.89f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.48f, 0.22f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) + close() + moveTo(3.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 17.0f, 0.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, -17.0f, 0.0f) + close() + } + } + return _emojiLaugh!! + } + +private var _emojiLaugh: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiMeh.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiMeh.kt new file mode 100644 index 00000000..609377a7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiMeh.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.EmojiMeh: ImageVector + get() { + if (_emojiMeh != null) { + return _emojiMeh!! + } + _emojiMeh = fluentIcon(name = "Regular.EmojiMeh") { + fluentPath { + moveTo(9.0f, 8.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(15.0f, 8.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(8.25f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-7.5f) + close() + moveTo(2.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) + close() + } + } + return _emojiMeh!! + } + +private var _emojiMeh: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiMultiple.kt new file mode 100644 index 00000000..e3a8b6f6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiMultiple.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.EmojiMultiple: ImageVector + get() { + if (_emojiMultiple != null) { + return _emojiMultiple!! + } + _emojiMultiple = fluentIcon(name = "Regular.EmojiMultiple") { + fluentPath { + moveTo(8.5f, 2.0f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, 6.31f, 4.94f) + curveToRelative(-0.51f, 0.01f, -1.02f, 0.07f, -1.5f, 0.17f) + arcToRelative(5.0f, 5.0f, 0.0f, true, false, -6.2f, 6.2f) + curveToRelative(-0.1f, 0.48f, -0.16f, 0.99f, -0.17f, 1.5f) + arcTo(6.5f, 6.5f, 0.0f, false, true, 8.5f, 2.0f) + close() + moveTo(8.66f, 10.0f) + curveToRelative(0.36f, -0.45f, 0.76f, -0.86f, 1.2f, -1.22f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -4.02f, 0.95f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.14f, 0.97f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.68f, -0.7f) + close() + moveTo(7.5f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(11.5f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(12.5f, 14.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(17.96f, 16.54f) + curveToRelative(0.31f, 0.27f, 0.35f, 0.74f, 0.08f, 1.06f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -6.08f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.14f, -0.97f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.8f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -0.09f) + close() + moveTo(17.5f, 14.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(15.0f, 22.0f) + arcToRelative(7.0f, 7.0f, 0.0f, true, false, 0.0f, -14.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, false, 0.0f, 14.0f) + close() + moveTo(15.0f, 20.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, 11.0f) + close() + } + } + return _emojiMultiple!! + } + +private var _emojiMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiSad.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiSad.kt new file mode 100644 index 00000000..04858887 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiSad.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.EmojiSad: ImageVector + get() { + if (_emojiSad != null) { + return _emojiSad!! + } + _emojiSad = fluentIcon(name = "Regular.EmojiSad") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) + close() + moveTo(12.0f, 13.5f) + curveToRelative(1.63f, 0.0f, 3.16f, 0.65f, 4.28f, 1.8f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.07f, 1.04f) + arcToRelative(4.48f, 4.48f, 0.0f, false, false, -6.43f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.07f, -1.04f) + arcTo(5.98f, 5.98f, 0.0f, false, true, 12.0f, 13.5f) + close() + moveTo(9.0f, 8.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(15.0f, 8.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + } + } + return _emojiSad!! + } + +private var _emojiSad: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiSadSlight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiSadSlight.kt new file mode 100644 index 00000000..73be96ee --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiSadSlight.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.EmojiSadSlight: ImageVector + get() { + if (_emojiSadSlight != null) { + return _emojiSadSlight!! + } + _emojiSadSlight = fluentIcon(name = "Regular.EmojiSadSlight") { + fluentPath { + moveTo(10.25f, 10.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) + close() + moveTo(16.25f, 10.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) + close() + moveTo(15.75f, 14.0f) + arcToRelative(7.24f, 7.24f, 0.0f, false, false, -4.53f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + curveToRelative(0.27f, -0.28f, 0.8f, -0.6f, 1.47f, -0.86f) + arcToRelative(5.75f, 5.75f, 0.0f, false, true, 2.0f, -0.42f) + horizontalLineToRelative(0.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.6f) + close() + moveTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 20.0f, 0.0f) + close() + moveTo(3.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 17.0f, 0.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, -17.0f, 0.0f) + close() + } + } + return _emojiSadSlight!! + } + +private var _emojiSadSlight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiSmileSlight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiSmileSlight.kt new file mode 100644 index 00000000..6c057d2b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiSmileSlight.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.EmojiSmileSlight: ImageVector + get() { + if (_emojiSmileSlight != null) { + return _emojiSmileSlight!! + } + _emojiSmileSlight = fluentIcon(name = "Regular.EmojiSmileSlight") { + fluentPath { + moveTo(10.25f, 10.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) + close() + moveTo(16.25f, 10.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) + close() + moveTo(10.14f, 15.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.78f, 1.3f) + arcToRelative(5.2f, 5.2f, 0.0f, false, false, 2.64f, 0.66f) + curveToRelative(0.92f, 0.0f, 1.87f, -0.2f, 2.64f, -0.67f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.78f, -1.28f) + curveToRelative(-0.48f, 0.29f, -1.15f, 0.45f, -1.86f, 0.45f) + curveToRelative(-0.7f, 0.0f, -1.38f, -0.16f, -1.86f, -0.45f) + close() + moveTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 20.0f, 0.0f) + close() + moveTo(3.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 17.0f, 0.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, -17.0f, 0.0f) + close() + } + } + return _emojiSmileSlight!! + } + +private var _emojiSmileSlight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiSparkle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiSparkle.kt new file mode 100644 index 00000000..9f784ab5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiSparkle.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.EmojiSparkle: ImageVector + get() { + if (_emojiSparkle != null) { + return _emojiSparkle!! + } + _emojiSparkle = fluentIcon(name = "Regular.EmojiSparkle") { + fluentPath { + moveTo(16.09f, 6.41f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.35f, -0.95f) + lineTo(13.36f, 5.0f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, -1.03f) + lineToRelative(0.71f, -0.23f) + lineToRelative(0.67f, -0.22f) + arcToRelative(2.82f, 2.82f, 0.0f, false, false, 1.76f, -1.76f) + lineToRelative(0.01f, -0.03f) + lineToRelative(0.45f, -1.38f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, 1.03f, 0.0f) + lineToRelative(0.44f, 1.38f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.8f, 1.8f) + lineToRelative(1.38f, 0.44f) + lineToRelative(0.03f, 0.01f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, 1.03f) + lineToRelative(-1.38f, 0.44f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.57f, 1.3f) + curveToRelative(-0.1f, 0.15f, -0.17f, 0.32f, -0.23f, 0.5f) + lineToRelative(-0.45f, 1.38f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, -1.03f, 0.0f) + lineToRelative(-0.44f, -1.38f) + curveToRelative(-0.1f, -0.3f, -0.25f, -0.6f, -0.45f, -0.85f) + close() + moveTo(23.79f, 10.21f) + lineTo(23.02f, 9.96f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, -1.0f, -1.0f) + lineToRelative(-0.25f, -0.76f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, -0.57f, 0.0f) + lineToRelative(-0.25f, 0.77f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, -0.72f, 0.88f) + lineToRelative(-0.26f, 0.11f) + lineToRelative(-0.77f, 0.25f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.77f, 0.25f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, 1.0f) + lineToRelative(0.24f, 0.77f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.12f, 0.14f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.46f, -0.14f) + lineToRelative(0.24f, -0.77f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, -1.0f) + lineToRelative(0.77f, -0.24f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, -0.57f) + horizontalLineToRelative(-0.02f) + close() + moveTo(20.75f, 13.76f) + curveToRelative(-0.15f, -0.1f, -0.27f, -0.23f, -0.36f, -0.38f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, -8.03f, -9.87f) + curveToRelative(0.18f, -0.22f, 0.42f, -0.39f, 0.7f, -0.48f) + lineToRelative(1.35f, -0.44f) + curveToRelative(0.14f, -0.05f, 0.28f, -0.11f, 0.4f, -0.2f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 7.0f, 11.58f) + arcToRelative(1.3f, 1.3f, 0.0f, false, true, -1.06f, -0.2f) + close() + moveTo(12.0f, 16.5f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -3.54f, -1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.18f, 0.93f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, 9.43f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.18f, -0.92f) + arcTo(4.5f, 4.5f, 0.0f, false, true, 12.0f, 16.5f) + close() + moveTo(10.25f, 10.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) + close() + moveTo(16.25f, 10.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) + close() + } + } + return _emojiSparkle!! + } + +private var _emojiSparkle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiSurprise.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiSurprise.kt new file mode 100644 index 00000000..bd55843a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EmojiSurprise.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.EmojiSurprise: ImageVector + get() { + if (_emojiSurprise != null) { + return _emojiSurprise!! + } + _emojiSurprise = fluentIcon(name = "Regular.EmojiSurprise") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) + close() + moveTo(12.0f, 13.0f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -4.5f) + close() + moveTo(9.0f, 8.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(15.0f, 8.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + } + } + return _emojiSurprise!! + } + +private var _emojiSurprise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Engine.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Engine.kt new file mode 100644 index 00000000..30b824a8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Engine.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Engine: ImageVector + get() { + if (_engine != null) { + return _engine!! + } + _engine = fluentIcon(name = "Regular.Engine") { + fluentPath { + moveTo(9.75f, 9.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(0.75f) + lineTo(12.5f, 9.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(3.75f) + horizontalLineToRelative(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 9.0f, 12.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(9.75f, 3.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(10.5f, 5.0f) + horizontalLineToRelative(2.0f) + lineTo(12.5f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(14.0f, 5.0f) + horizontalLineToRelative(2.75f) + curveToRelative(0.3f, 0.0f, 0.58f, 0.19f, 0.7f, 0.47f) + lineToRelative(0.8f, 2.03f) + horizontalLineToRelative(1.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 10.25f) + verticalLineToRelative(5.5f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) + horizontalLineToRelative(-1.0f) + lineToRelative(-0.8f, 2.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, 0.47f) + horizontalLineToRelative(-7.5f) + curveToRelative(-0.2f, 0.0f, -0.4f, -0.09f, -0.55f, -0.24f) + lineTo(5.74f, 17.6f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.0f, 15.7f) + lineTo(5.0f, 12.5f) + lineTo(3.5f, 12.5f) + verticalLineToRelative(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(3.5f, 11.0f) + lineTo(5.0f, 11.0f) + lineTo(5.0f, 7.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 7.75f, 5.0f) + lineTo(9.0f, 5.0f) + lineTo(9.0f, 3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(7.75f, 6.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(7.96f) + curveToRelative(0.0f, 0.32f, 0.12f, 0.62f, 0.34f, 0.85f) + lineToRelative(2.74f, 2.94f) + horizontalLineToRelative(6.66f) + lineToRelative(0.81f, -2.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.7f, -0.47f) + horizontalLineToRelative(1.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-5.5f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.7f, -0.47f) + lineToRelative(-0.8f, -2.03f) + horizontalLineToRelative(-8.5f) + close() + } + } + return _engine!! + } + +private var _engine: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EqualCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EqualCircle.kt new file mode 100644 index 00000000..9a2c05be --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EqualCircle.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.EqualCircle: ImageVector + get() { + if (_equalCircle != null) { + return _equalCircle!! + } + _equalCircle = fluentIcon(name = "Regular.EqualCircle") { + fluentPath { + moveTo(16.26f, 10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(7.77f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.49f) + close() + moveTo(16.26f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(7.77f, 13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.49f) + close() + moveTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 20.0f, 0.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 0.0f, 17.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, 0.0f, -17.0f) + close() + } + } + return _equalCircle!! + } + +private var _equalCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EqualOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EqualOff.kt new file mode 100644 index 00000000..3d6715c4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EqualOff.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.EqualOff: ImageVector + get() { + if (_equalOff != null) { + return _equalOff!! + } + _equalOff = fluentIcon(name = "Regular.EqualOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(6.94f, 8.0f) + horizontalLineTo(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.69f) + lineToRelative(5.0f, 5.0f) + horizontalLineTo(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(11.19f) + lineToRelative(5.78f, 5.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(20.25f, 14.5f) + horizontalLineToRelative(-2.57f) + lineToRelative(1.5f, 1.5f) + horizontalLineToRelative(1.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(11.18f, 8.0f) + lineToRelative(1.5f, 1.5f) + horizontalLineToRelative(7.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-9.07f) + close() + } + } + return _equalOff!! + } + +private var _equalOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Eraser.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Eraser.kt new file mode 100644 index 00000000..12613282 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Eraser.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Eraser: ImageVector + get() { + if (_eraser != null) { + return _eraser!! + } + _eraser = fluentIcon(name = "Regular.Eraser") { + fluentPath { + moveToRelative(15.87f, 2.67f) + lineToRelative(4.97f, 4.97f) + curveToRelative(0.88f, 0.88f, 0.88f, 2.3f, 0.0f, 3.18f) + lineToRelative(-8.68f, 8.68f) + horizontalLineToRelative(6.1f) + curveToRelative(0.37f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.64f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(9.83f, 21.0f) + arcToRelative(2.24f, 2.24f, 0.0f, false, true, -1.71f, -0.65f) + lineToRelative(-4.97f, -4.97f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -3.18f) + lineToRelative(9.53f, -9.53f) + curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.0f) + close() + moveTo(5.71f, 11.77f) + lineTo(4.22f, 13.26f) + curveToRelative(-0.3f, 0.29f, -0.3f, 0.76f, 0.0f, 1.06f) + lineToRelative(4.97f, 4.96f) + curveToRelative(0.15f, 0.15f, 0.34f, 0.22f, 0.53f, 0.22f) + horizontalLineToRelative(0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.46f, -0.22f) + lineToRelative(1.49f, -1.48f) + lineToRelative(-6.03f, -6.03f) + close() + moveTo(13.75f, 3.73f) + lineTo(6.77f, 10.7f) + lineToRelative(6.03f, 6.03f) + lineToRelative(6.98f, -6.98f) + curveToRelative(0.29f, -0.3f, 0.29f, -0.77f, 0.0f, -1.06f) + lineTo(14.8f, 3.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + close() + } + } + return _eraser!! + } + +private var _eraser: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EraserMedium.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EraserMedium.kt new file mode 100644 index 00000000..d87470d9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EraserMedium.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.EraserMedium: ImageVector + get() { + if (_eraserMedium != null) { + return _eraserMedium!! + } + _eraserMedium = fluentIcon(name = "Regular.EraserMedium") { + fluentPath { + moveTo(15.84f, 2.66f) + curveToRelative(-0.87f, -0.89f, -2.3f, -0.9f, -3.19f, -0.02f) + lineToRelative(-9.6f, 9.5f) + curveToRelative(-0.89f, 0.89f, -0.89f, 2.33f, 0.0f, 3.21f) + lineToRelative(5.1f, 5.0f) + curveToRelative(0.9f, 0.88f, 2.31f, 0.87f, 3.18f, -0.01f) + lineToRelative(0.22f, -0.22f) + arcToRelative(6.45f, 6.45f, 0.0f, false, true, -0.48f, -1.65f) + lineToRelative(-0.8f, 0.81f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-5.1f, -5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.07f) + lineToRelative(1.53f, -1.51f) + lineTo(11.0f, 17.07f) + curveToRelative(0.04f, -0.6f, 0.17f, -1.2f, 0.37f, -1.75f) + lineTo(6.7f, 10.64f) + lineToRelative(7.0f, -6.94f) + curveToRelative(0.3f, -0.29f, 0.78f, -0.29f, 1.07f, 0.01f) + lineToRelative(4.91f, 5.01f) + curveToRelative(0.29f, 0.3f, 0.29f, 0.76f, 0.0f, 1.05f) + lineToRelative(-1.28f, 1.3f) + curveToRelative(0.58f, 0.07f, 1.14f, 0.23f, 1.66f, 0.45f) + lineToRelative(0.68f, -0.7f) + curveToRelative(0.87f, -0.87f, 0.87f, -2.27f, 0.01f, -3.15f) + lineToRelative(-4.9f, -5.0f) + close() + } + fluentPath { + moveTo(19.29f, 12.3f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -1.82f, -0.3f) + } + fluentPath { + moveTo(17.5f, 12.0f) + curveToRelative(0.63f, 0.0f, 1.23f, 0.1f, 1.79f, 0.3f) + close() + } + fluentPath { + moveTo(17.5f, 12.0f) + horizontalLineToRelative(-0.03f) + close() + } + } + return _eraserMedium!! + } + +private var _eraserMedium: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EraserSegment.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EraserSegment.kt new file mode 100644 index 00000000..b4d2adf7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EraserSegment.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.EraserSegment: ImageVector + get() { + if (_eraserSegment != null) { + return _eraserSegment!! + } + _eraserSegment = fluentIcon(name = "Regular.EraserSegment") { + fluentPath { + moveTo(15.84f, 2.66f) + curveToRelative(-0.87f, -0.89f, -2.3f, -0.9f, -3.19f, -0.02f) + lineToRelative(-9.6f, 9.5f) + curveToRelative(-0.89f, 0.89f, -0.89f, 2.33f, 0.01f, 3.21f) + lineToRelative(5.1f, 5.0f) + curveToRelative(0.47f, 0.47f, 1.08f, 0.68f, 1.69f, 0.65f) + horizontalLineToRelative(6.26f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.95f) + lineToRelative(8.58f, -8.67f) + curveToRelative(0.87f, -0.88f, 0.87f, -2.28f, 0.01f, -3.16f) + lineToRelative(-4.9f, -5.0f) + close() + moveTo(9.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, -0.21f) + lineToRelative(-5.1f, -5.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.07f) + lineToRelative(1.53f, -1.51f) + lineToRelative(6.1f, 6.1f) + lineToRelative(-1.47f, 1.48f) + curveToRelative(-0.13f, 0.13f, -0.3f, 0.2f, -0.47f, 0.22f) + horizontalLineToRelative(-0.05f) + close() + moveTo(13.71f, 3.7f) + curveToRelative(0.3f, -0.29f, 0.77f, -0.29f, 1.06f, 0.01f) + lineToRelative(4.91f, 5.01f) + curveToRelative(0.29f, 0.3f, 0.29f, 0.76f, 0.0f, 1.05f) + lineToRelative(-6.89f, 6.96f) + lineToRelative(-6.09f, -6.09f) + lineToRelative(7.0f, -6.94f) + close() + } + } + return _eraserSegment!! + } + +private var _eraserSegment: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EraserSmall.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EraserSmall.kt new file mode 100644 index 00000000..a0243b53 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EraserSmall.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.EraserSmall: ImageVector + get() { + if (_eraserSmall != null) { + return _eraserSmall!! + } + _eraserSmall = fluentIcon(name = "Regular.EraserSmall") { + fluentPath { + moveTo(15.84f, 2.66f) + curveToRelative(-0.87f, -0.89f, -2.3f, -0.9f, -3.19f, -0.02f) + lineToRelative(-9.6f, 9.5f) + curveToRelative(-0.89f, 0.89f, -0.89f, 2.33f, 0.0f, 3.21f) + lineToRelative(5.1f, 5.0f) + curveToRelative(0.9f, 0.88f, 2.31f, 0.87f, 3.18f, -0.01f) + lineToRelative(1.79f, -1.8f) + arcToRelative(4.51f, 4.51f, 0.0f, false, true, 0.02f, -2.16f) + lineToRelative(-0.35f, 0.35f) + lineToRelative(-6.09f, -6.09f) + lineToRelative(7.0f, -6.94f) + curveToRelative(0.3f, -0.29f, 0.78f, -0.29f, 1.07f, 0.01f) + lineToRelative(4.91f, 5.01f) + curveToRelative(0.29f, 0.3f, 0.29f, 0.76f, 0.0f, 1.05f) + lineToRelative(-3.35f, 3.38f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 2.16f, -0.04f) + lineToRelative(2.25f, -2.28f) + curveToRelative(0.87f, -0.88f, 0.87f, -2.28f, 0.01f, -3.16f) + lineToRelative(-4.9f, -5.0f) + close() + moveTo(5.64f, 11.7f) + lineToRelative(6.1f, 6.1f) + lineToRelative(-1.47f, 1.48f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-5.1f, -5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.07f) + lineToRelative(1.53f, -1.51f) + close() + moveTo(17.6f, 14.0f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, -3.6f, 3.51f) + verticalLineToRelative(-0.01f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 3.6f, -3.5f) + close() + } + } + return _eraserSmall!! + } + +private var _eraserSmall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EraserTool.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EraserTool.kt new file mode 100644 index 00000000..28354e5b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EraserTool.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.EraserTool: ImageVector + get() { + if (_eraserTool != null) { + return _eraserTool!! + } + _eraserTool = fluentIcon(name = "Regular.EraserTool") { + fluentPath { + moveTo(3.75f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(4.5f, 7.0f) + horizontalLineToRelative(15.0f) + lineTo(19.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(14.5f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 16.25f, 22.0f) + horizontalLineToRelative(-8.5f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 3.0f, 17.25f) + lineTo(3.0f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(19.5f, 8.5f) + horizontalLineToRelative(-15.0f) + lineTo(4.5f, 12.0f) + horizontalLineToRelative(15.0f) + lineTo(19.5f, 8.5f) + close() + moveTo(4.5f, 17.25f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(8.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(19.5f, 13.5f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(3.75f) + close() + } + } + return _eraserTool!! + } + +private var _eraserTool: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ExpandUpLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ExpandUpLeft.kt new file mode 100644 index 00000000..9d7169f5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ExpandUpLeft.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ExpandUpLeft: ImageVector + get() { + if (_expandUpLeft != null) { + return _expandUpLeft!! + } + _expandUpLeft = fluentIcon(name = "Regular.ExpandUpLeft") { + fluentPath { + moveTo(11.0f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(4.5f, 5.56f) + lineToRelative(5.22f, 5.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(5.56f, 4.5f) + horizontalLineToRelative(4.69f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + close() + moveTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(4.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + verticalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(12.0f, 19.5f) + verticalLineToRelative(-4.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 14.75f, 12.0f) + horizontalLineToRelative(4.75f) + lineTo(19.5f, 6.25f) + close() + moveTo(19.5f, 13.5f) + horizontalLineToRelative(-4.75f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(4.75f) + horizontalLineToRelative(4.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 13.5f) + close() + } + } + return _expandUpLeft!! + } + +private var _expandUpLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ExpandUpRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ExpandUpRight.kt new file mode 100644 index 00000000..8622f2e0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ExpandUpRight.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ExpandUpRight: ImageVector + get() { + if (_expandUpRight != null) { + return _expandUpRight!! + } + _expandUpRight = fluentIcon(name = "Regular.ExpandUpRight") { + fluentPath { + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(12.0f, 19.5f) + verticalLineToRelative(-4.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 9.25f, 12.0f) + lineTo(4.5f, 12.0f) + lineTo(4.5f, 6.25f) + close() + moveTo(4.5f, 13.5f) + horizontalLineToRelative(4.75f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(4.75f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 13.5f) + close() + moveTo(13.0f, 3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(19.5f, 5.56f) + lineToRelative(-5.22f, 5.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(5.22f, -5.22f) + horizontalLineToRelative(-4.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _expandUpRight!! + } + +private var _expandUpRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ExtendedDock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ExtendedDock.kt new file mode 100644 index 00000000..dbb5e8e5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ExtendedDock.kt @@ -0,0 +1,96 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ExtendedDock: ImageVector + get() { + if (_extendedDock != null) { + return _extendedDock!! + } + _extendedDock = fluentIcon(name = "Regular.ExtendedDock") { + fluentPath { + moveTo(6.25f, 11.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(2.5f) + curveTo(8.0f, 16.2f, 7.22f, 17.0f, 6.25f, 17.0f) + horizontalLineToRelative(-2.5f) + curveTo(2.78f, 17.0f, 2.0f, 16.2f, 2.0f, 15.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.5f) + close() + moveTo(13.25f, 11.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.96f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.5f) + curveTo(9.78f, 17.0f, 9.0f, 16.2f, 9.0f, 15.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.5f) + close() + moveTo(20.25f, 11.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.96f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.79f, -1.75f, -1.75f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.5f) + close() + moveTo(6.25f, 12.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(2.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(13.25f, 12.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(2.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(20.25f, 12.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(2.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(7.97f, 7.72f) + lineToRelative(3.5f, -3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -0.08f) + lineToRelative(0.08f, 0.07f) + lineToRelative(3.6f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.95f, 1.15f) + lineToRelative(-0.09f, -0.07f) + lineToRelative(-3.07f, -2.99f) + lineToRelative(-2.98f, 2.98f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 7.9f, 7.8f) + lineToRelative(0.07f, -0.08f) + lineToRelative(3.5f, -3.5f) + lineToRelative(-3.5f, 3.5f) + close() + } + } + return _extendedDock!! + } + +private var _extendedDock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EyeLines.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EyeLines.kt new file mode 100644 index 00000000..4dfbb1e8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EyeLines.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.EyeLines: ImageVector + get() { + if (_eyeLines != null) { + return _eyeLines!! + } + _eyeLines = fluentIcon(name = "Regular.EyeLines") { + fluentPath { + moveTo(9.35f, 12.5f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(-7.0f) + curveToRelative(-0.06f, 0.3f, -0.1f, 0.55f, -0.1f, 0.75f) + curveToRelative(0.0f, 0.2f, 0.04f, 0.46f, 0.1f, 0.75f) + horizontalLineToRelative(7.0f) + close() + moveTo(12.0f, 18.5f) + lineTo(6.68f, 18.5f) + arcTo(9.65f, 9.65f, 0.0f, false, false, 12.0f, 20.0f) + curveToRelative(3.64f, 0.0f, 6.1f, -1.7f, 7.61f, -3.56f) + curveToRelative(0.76f, -0.92f, 1.29f, -1.88f, 1.63f, -2.7f) + curveToRelative(0.33f, -0.8f, 0.51f, -1.53f, 0.51f, -1.99f) + curveToRelative(0.0f, -0.46f, -0.18f, -1.2f, -0.51f, -1.99f) + curveToRelative(-0.34f, -0.82f, -0.87f, -1.78f, -1.63f, -2.7f) + arcToRelative(9.51f, 9.51f, 0.0f, false, false, -7.6f, -3.56f) + lineTo(12.0f, 3.5f) + curveToRelative(-2.18f, 0.0f, -3.94f, 0.61f, -5.32f, 1.5f) + lineTo(12.0f, 5.0f) + curveToRelative(3.11f, 0.0f, 5.16f, 1.43f, 6.45f, 3.0f) + curveToRelative(0.65f, 0.8f, 1.1f, 1.64f, 1.4f, 2.34f) + curveToRelative(0.3f, 0.73f, 0.4f, 1.24f, 0.4f, 1.41f) + curveToRelative(0.0f, 0.17f, -0.1f, 0.68f, -0.4f, 1.41f) + curveToRelative(-0.3f, 0.7f, -0.75f, 1.54f, -1.4f, 2.33f) + arcTo(8.02f, 8.02f, 0.0f, false, true, 12.0f, 18.5f) + close() + moveTo(5.38f, 6.0f) + arcToRelative(10.21f, 10.21f, 0.0f, false, false, -1.34f, 1.5f) + lineTo(12.0f, 7.5f) + lineTo(12.0f, 6.0f) + lineTo(5.38f, 6.0f) + close() + moveTo(12.0f, 8.5f) + lineTo(3.4f, 8.5f) + arcToRelative(10.8f, 10.8f, 0.0f, false, false, -0.73f, 1.5f) + horizontalLineToRelative(7.2f) + arcToRelative(2.74f, 2.74f, 0.0f, true, true, 0.0f, 3.5f) + horizontalLineToRelative(-7.2f) + arcToRelative(9.7f, 9.7f, 0.0f, false, false, 0.72f, 1.5f) + lineTo(12.0f, 15.0f) + verticalLineToRelative(1.0f) + arcToRelative(4.25f, 4.25f, 0.0f, true, false, 0.0f, -8.5f) + verticalLineToRelative(1.0f) + close() + moveTo(12.0f, 16.0f) + lineTo(4.04f, 16.0f) + arcToRelative(10.72f, 10.72f, 0.0f, false, false, 1.34f, 1.5f) + lineTo(12.0f, 17.5f) + lineTo(12.0f, 16.0f) + close() + } + } + return _eyeLines!! + } + +private var _eyeLines: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EyeOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EyeOff.kt new file mode 100644 index 00000000..8f288b2b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EyeOff.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.EyeOff: ImageVector + get() { + if (_eyeOff != null) { + return _eyeOff!! + } + _eyeOff = fluentIcon(name = "Regular.EyeOff") { + fluentPath { + moveTo(2.22f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.98f) + lineToRelative(0.07f, 0.08f) + lineToRelative(4.03f, 4.03f) + arcToRelative(9.99f, 9.99f, 0.0f, false, false, -3.95f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.45f, 0.37f) + arcToRelative(8.49f, 8.49f, 0.0f, false, true, 3.58f, -5.04f) + lineToRelative(1.81f, 1.81f) + arcTo(3.99f, 3.99f, 0.0f, false, false, 12.0f, 17.0f) + curveToRelative(1.09f, 0.0f, 2.08f, -0.43f, 2.8f, -1.14f) + lineToRelative(5.92f, 5.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, -0.98f) + lineToRelative(-0.07f, -0.08f) + lineToRelative(-6.11f, -6.11f) + lineToRelative(-1.2f, -1.2f) + lineToRelative(-2.87f, -2.87f) + lineToRelative(-2.88f, -2.88f) + lineToRelative(-1.13f, -1.13f) + lineToRelative(-4.31f, -4.31f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + close() + moveTo(10.2f, 11.27f) + lineTo(13.74f, 14.8f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 9.5f, 13.0f) + curveToRelative(0.0f, -0.67f, 0.27f, -1.28f, 0.7f, -1.73f) + close() + moveTo(12.0f, 5.5f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, -2.89f, 0.42f) + lineToRelative(1.24f, 1.24f) + arcToRelative(8.52f, 8.52f, 0.0f, false, true, 9.9f, 6.27f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.45f, -0.36f) + arcTo(10.0f, 10.0f, 0.0f, false, false, 12.0f, 5.5f) + close() + moveTo(12.2f, 9.0f) + lineTo(16.0f, 12.81f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -3.8f, -3.8f) + close() + } + } + return _eyeOff!! + } + +private var _eyeOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EyeTracking.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EyeTracking.kt new file mode 100644 index 00000000..5b193a72 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EyeTracking.kt @@ -0,0 +1,94 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.EyeTracking: ImageVector + get() { + if (_eyeTracking != null) { + return _eyeTracking!! + } + _eyeTracking = fluentIcon(name = "Regular.EyeTracking") { + fluentPath { + moveTo(8.25f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-3.6f) + curveToRelative(-0.65f, 0.0f, -1.18f, 0.5f, -1.25f, 1.12f) + verticalLineToRelative(3.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-3.6f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.58f, -2.74f) + lineTo(4.75f, 2.0f) + horizontalLineToRelative(3.5f) + close() + moveTo(3.49f, 15.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.49f, 0.0f) + lineTo(2.0f, 19.43f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.58f, 22.0f) + horizontalLineToRelative(3.77f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(4.62f, 20.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.12f, -1.12f) + verticalLineToRelative(-3.63f) + lineToRelative(-0.01f, -0.1f) + close() + moveTo(21.99f, 15.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + verticalLineToRelative(3.63f) + curveToRelative(-0.06f, 0.63f, -0.6f, 1.12f, -1.24f, 1.12f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.66f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 19.25f) + verticalLineToRelative(-3.5f) + lineToRelative(-0.01f, -0.1f) + close() + moveTo(19.41f, 2.0f) + lineTo(19.25f, 2.0f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.72f) + curveToRelative(0.6f, 0.07f, 1.06f, 0.53f, 1.12f, 1.12f) + verticalLineToRelative(3.63f) + lineToRelative(0.01f, 0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.49f, 0.0f) + lineTo(21.99f, 4.58f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 19.41f, 2.0f) + close() + moveTo(6.21f, 11.75f) + verticalLineToRelative(-0.02f) + lineToRelative(0.04f, -0.1f) + lineToRelative(0.21f, -0.39f) + arcToRelative(6.07f, 6.07f, 0.0f, false, true, 5.54f, -3.0f) + arcToRelative(6.24f, 6.24f, 0.0f, false, true, 5.54f, 3.0f) + arcToRelative(4.78f, 4.78f, 0.0f, false, true, 0.25f, 0.5f) + verticalLineToRelative(0.01f) + curveToRelative(0.16f, 0.38f, 0.59f, 0.59f, 0.97f, 0.44f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.44f, -0.96f) + verticalLineToRelative(-0.03f) + arcToRelative(3.2f, 3.2f, 0.0f, false, false, -0.1f, -0.2f) + arcTo(7.57f, 7.57f, 0.0f, false, false, 12.0f, 6.75f) + arcToRelative(7.73f, 7.73f, 0.0f, false, false, -6.84f, 3.75f) + arcToRelative(6.26f, 6.26f, 0.0f, false, false, -0.35f, 0.71f) + verticalLineToRelative(0.02f) + curveToRelative(-0.01f, 0.0f, -0.17f, 0.75f, 0.43f, 0.97f) + curveToRelative(0.38f, 0.15f, 0.81f, -0.05f, 0.96f, -0.43f) + close() + moveTo(12.0f, 10.0f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + moveTo(10.0f, 13.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -4.0f, 0.0f) + close() + } + } + return _eyeTracking!! + } + +private var _eyeTracking: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EyeTrackingOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EyeTrackingOff.kt new file mode 100644 index 00000000..560ea1cb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EyeTrackingOff.kt @@ -0,0 +1,105 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.EyeTrackingOff: ImageVector + get() { + if (_eyeTrackingOff != null) { + return _eyeTrackingOff!! + } + _eyeTrackingOff = fluentIcon(name = "Regular.EyeTrackingOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(0.13f, 0.13f) + curveToRelative(-0.23f, 0.4f, -0.35f, 0.85f, -0.35f, 1.34f) + verticalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + lineTo(3.5f, 4.62f) + lineToRelative(0.01f, -0.05f) + lineToRelative(3.68f, 3.68f) + arcTo(7.44f, 7.44f, 0.0f, false, false, 4.8f, 11.2f) + verticalLineToRelative(0.02f) + curveToRelative(-0.01f, 0.0f, -0.17f, 0.75f, 0.43f, 0.97f) + curveToRelative(0.38f, 0.15f, 0.81f, -0.05f, 0.96f, -0.43f) + lineToRelative(0.01f, -0.03f) + arcToRelative(2.85f, 2.85f, 0.0f, false, true, 0.25f, -0.49f) + arcToRelative(6.07f, 6.07f, 0.0f, false, true, 1.8f, -1.93f) + lineToRelative(1.5f, 1.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 4.92f, 4.93f) + lineToRelative(4.75f, 4.74f) + lineToRelative(-0.18f, 0.01f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.66f) + curveToRelative(0.43f, -0.03f, 0.83f, -0.15f, 1.18f, -0.35f) + lineToRelative(0.13f, 0.13f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(13.62f, 14.68f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -2.8f, -2.8f) + lineToRelative(2.8f, 2.8f) + close() + moveTo(11.45f, 8.27f) + lineTo(10.12f, 6.94f) + curveToRelative(0.57f, -0.12f, 1.2f, -0.19f, 1.88f, -0.19f) + arcToRelative(7.73f, 7.73f, 0.0f, false, true, 6.84f, 3.75f) + arcToRelative(6.3f, 6.3f, 0.0f, false, true, 0.33f, 0.67f) + lineToRelative(0.02f, 0.04f) + verticalLineToRelative(0.02f) + horizontalLineToRelative(0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.4f, 0.53f) + lineToRelative(-0.01f, -0.02f) + lineToRelative(-0.04f, -0.1f) + lineToRelative(-0.21f, -0.39f) + arcToRelative(6.07f, 6.07f, 0.0f, false, false, -5.54f, -3.0f) + curveToRelative(-0.19f, 0.0f, -0.37f, 0.0f, -0.55f, 0.02f) + close() + moveTo(22.0f, 18.82f) + lineToRelative(-1.5f, -1.5f) + verticalLineToRelative(-1.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.49f, -0.1f) + verticalLineToRelative(3.17f) + close() + moveTo(6.68f, 3.5f) + lineTo(5.18f, 2.0f) + horizontalLineToRelative(3.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.68f, 3.5f) + close() + moveTo(2.75f, 15.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + verticalLineToRelative(3.6f) + lineToRelative(0.01f, 0.13f) + curveToRelative(0.06f, 0.59f, 0.53f, 1.06f, 1.12f, 1.12f) + horizontalLineToRelative(3.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(4.58f, 22.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 19.43f) + lineTo(2.0f, 15.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) + close() + moveTo(19.25f, 2.0f) + horizontalLineToRelative(0.16f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 4.59f) + verticalLineToRelative(3.77f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, 0.0f) + lineTo(20.51f, 4.62f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.13f, -1.11f) + lineToRelative(-0.12f, -0.01f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.6f) + close() + } + } + return _eyeTrackingOff!! + } + +private var _eyeTrackingOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Eyedropper.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Eyedropper.kt new file mode 100644 index 00000000..591cfa81 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Eyedropper.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Eyedropper: ImageVector + get() { + if (_eyedropper != null) { + return _eyedropper!! + } + _eyedropper = fluentIcon(name = "Regular.Eyedropper") { + fluentPath { + moveTo(21.03f, 2.97f) + arcToRelative(3.58f, 3.58f, 0.0f, false, false, -5.06f, 0.0f) + lineTo(14.0f, 4.94f) + lineToRelative(-0.01f, -0.01f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.48f, 0.0f) + lineToRelative(-0.58f, 0.58f) + curveToRelative(-0.69f, 0.69f, -0.69f, 1.8f, 0.0f, 2.48f) + lineTo(10.93f, 8.0f) + lineToRelative(-6.77f, 6.78f) + curveToRelative(-0.42f, 0.42f, -0.66f, 1.0f, -0.66f, 1.6f) + verticalLineToRelative(0.68f) + lineTo(2.22f, 19.4f) + curveToRelative(-0.84f, 1.53f, 0.84f, 3.2f, 2.37f, 2.37f) + lineToRelative(2.35f, -1.28f) + horizontalLineToRelative(0.69f) + curveToRelative(0.6f, 0.0f, 1.17f, -0.24f, 1.59f, -0.66f) + lineTo(16.0f, 13.06f) + lineToRelative(0.01f, 0.01f) + curveToRelative(0.69f, 0.69f, 1.8f, 0.69f, 2.48f, 0.0f) + lineToRelative(0.58f, -0.58f) + curveToRelative(0.69f, -0.69f, 0.69f, -1.8f, 0.0f, -2.48f) + lineTo(19.07f, 10.0f) + lineToRelative(1.96f, -1.97f) + arcToRelative(3.58f, 3.58f, 0.0f, false, false, 0.0f, -5.06f) + close() + moveTo(17.03f, 4.03f) + arcToRelative(2.08f, 2.08f, 0.0f, false, true, 2.94f, 2.94f) + lineToRelative(-2.5f, 2.5f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(0.54f, 0.54f) + curveToRelative(0.1f, 0.1f, 0.1f, 0.26f, 0.0f, 0.36f) + lineToRelative(-0.58f, 0.58f) + curveToRelative(-0.1f, 0.1f, -0.26f, 0.1f, -0.36f, 0.0f) + lineTo(12.0f, 6.93f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, 0.0f, -0.36f) + lineToRelative(0.58f, -0.58f) + curveToRelative(0.1f, -0.1f, 0.26f, -0.1f, 0.36f, 0.0f) + lineToRelative(0.54f, 0.54f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.5f, -2.5f) + close() + moveTo(14.93f, 12.0f) + lineToRelative(-6.77f, 6.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.53f, 0.22f) + horizontalLineToRelative(-0.88f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.36f, 0.1f) + lineToRelative(-2.51f, 1.36f) + arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.16f, 0.04f) + arcToRelative(0.26f, 0.26f, 0.0f, false, true, -0.14f, -0.08f) + arcToRelative(0.26f, 0.26f, 0.0f, false, true, -0.08f, -0.14f) + curveToRelative(0.0f, -0.03f, 0.0f, -0.09f, 0.04f, -0.16f) + lineToRelative(1.37f, -2.51f) + curveToRelative(0.06f, -0.11f, 0.09f, -0.23f, 0.09f, -0.36f) + verticalLineToRelative(-0.88f) + curveToRelative(0.0f, -0.2f, 0.08f, -0.39f, 0.22f, -0.53f) + lineTo(12.0f, 9.06f) + lineTo(14.94f, 12.0f) + close() + } + } + return _eyedropper!! + } + +private var _eyedropper: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EyedropperOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EyedropperOff.kt new file mode 100644 index 00000000..105d1900 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/EyedropperOff.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.EyedropperOff: ImageVector + get() { + if (_eyedropperOff != null) { + return _eyedropperOff!! + } + _eyedropperOff = fluentIcon(name = "Regular.EyedropperOff") { + fluentPath { + moveTo(8.94f, 10.0f) + lineTo(2.22f, 3.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineToRelative(18.5f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineTo(14.0f, 15.06f) + lineToRelative(-4.78f, 4.78f) + curveToRelative(-0.42f, 0.42f, -1.0f, 0.66f, -1.59f, 0.66f) + horizontalLineToRelative(-0.69f) + lineTo(4.6f, 21.78f) + curveToRelative(-1.54f, 0.84f, -3.22f, -0.84f, -2.38f, -2.37f) + lineToRelative(1.28f, -2.35f) + verticalLineToRelative(-0.69f) + curveToRelative(0.0f, -0.6f, 0.24f, -1.17f, 0.66f, -1.59f) + lineTo(8.94f, 10.0f) + close() + moveTo(12.94f, 14.0f) + lineTo(10.0f, 11.06f) + lineToRelative(-4.78f, 4.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.22f, 0.53f) + verticalLineToRelative(0.88f) + curveToRelative(0.0f, 0.13f, -0.03f, 0.25f, -0.09f, 0.36f) + lineToRelative(-1.37f, 2.51f) + arcToRelative(0.23f, 0.23f, 0.0f, false, false, -0.03f, 0.16f) + curveToRelative(0.0f, 0.05f, 0.03f, 0.1f, 0.07f, 0.14f) + curveToRelative(0.04f, 0.04f, 0.1f, 0.07f, 0.14f, 0.08f) + curveToRelative(0.04f, 0.0f, 0.09f, 0.0f, 0.16f, -0.04f) + lineToRelative(2.51f, -1.37f) + curveToRelative(0.11f, -0.06f, 0.24f, -0.09f, 0.36f, -0.09f) + horizontalLineToRelative(0.88f) + curveToRelative(0.2f, 0.0f, 0.39f, -0.08f, 0.53f, -0.22f) + lineTo(12.94f, 14.0f) + close() + moveTo(18.49f, 13.07f) + curveToRelative(-0.5f, 0.5f, -1.2f, 0.63f, -1.82f, 0.42f) + lineToRelative(-6.16f, -6.16f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.42f, -1.82f) + lineToRelative(0.58f, -0.58f) + curveToRelative(0.69f, -0.69f, 1.8f, -0.69f, 2.48f, 0.0f) + lineToRelative(0.01f, 0.01f) + lineToRelative(1.97f, -1.97f) + arcToRelative(3.58f, 3.58f, 0.0f, false, true, 5.06f, 5.06f) + lineTo(19.06f, 10.0f) + lineToRelative(0.01f, 0.01f) + curveToRelative(0.69f, 0.69f, 0.69f, 1.8f, 0.0f, 2.48f) + lineToRelative(-0.58f, 0.58f) + close() + moveTo(17.03f, 4.03f) + lineTo(14.53f, 6.53f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineTo(12.93f, 6.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.36f, 0.0f) + lineToRelative(-0.58f, 0.58f) + curveToRelative(-0.1f, 0.1f, -0.1f, 0.26f, 0.0f, 0.36f) + lineTo(17.07f, 12.0f) + curveToRelative(0.1f, 0.1f, 0.26f, 0.1f, 0.36f, 0.0f) + lineToRelative(0.58f, -0.58f) + curveToRelative(0.1f, -0.1f, 0.1f, -0.26f, 0.0f, -0.36f) + lineToRelative(-0.54f, -0.54f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(2.5f, -2.5f) + arcToRelative(2.08f, 2.08f, 0.0f, true, false, -2.94f, -2.94f) + close() + } + } + return _eyedropperOff!! + } + +private var _eyedropperOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FStop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FStop.kt new file mode 100644 index 00000000..d4c02fe6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FStop.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FStop: ImageVector + get() { + if (_fStop != null) { + return _fStop!! + } + _fStop = fluentIcon(name = "Regular.FStop") { + fluentPath { + moveTo(13.2f, 6.53f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 17.46f, 4.0f) + lineToRelative(0.6f, 0.2f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.49f, -1.4f) + lineToRelative(-0.6f, -0.21f) + arcToRelative(4.75f, 4.75f, 0.0f, false, false, -6.23f, 3.69f) + lineTo(11.0f, 10.5f) + horizontalLineTo(6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.99f) + lineToRelative(-0.78f, 4.58f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -4.77f, 2.3f) + lineToRelative(-0.08f, -0.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.72f, 1.32f) + lineToRelative(0.07f, 0.04f) + arcToRelative(4.75f, 4.75f, 0.0f, false, false, 6.98f, -3.36f) + lineToRelative(0.82f, -4.84f) + horizontalLineToRelative(3.99f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.73f) + lineToRelative(0.68f, -3.97f) + close() + } + } + return _fStop!! + } + +private var _fStop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FastAcceleration.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FastAcceleration.kt new file mode 100644 index 00000000..682b6503 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FastAcceleration.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FastAcceleration: ImageVector + get() { + if (_fastAcceleration != null) { + return _fastAcceleration!! + } + _fastAcceleration = fluentIcon(name = "Regular.FastAcceleration") { + fluentPath { + moveTo(13.5f, 4.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, -4.82f, 15.5f) + lineTo(1.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(7.02f, 18.0f) + curveToRelative(-0.4f, -0.46f, -0.73f, -0.96f, -1.02f, -1.5f) + lineTo(3.75f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(5.37f, 15.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, 1.65f, -8.0f) + lineTo(2.75f, 7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(8.68f, 5.5f) + arcTo(8.46f, 8.46f, 0.0f, false, true, 13.5f, 4.0f) + close() + moveTo(13.5f, 5.5f) + arcToRelative(7.0f, 7.0f, 0.0f, true, false, 0.0f, 14.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, false, 0.0f, -14.0f) + close() + moveTo(13.5f, 7.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(14.65f, 14.72f) + arcToRelative(2.49f, 2.49f, 0.0f, false, true, -2.3f, 0.0f) + lineToRelative(-1.09f, 1.1f) + arcToRelative(3.98f, 3.98f, 0.0f, false, false, 4.5f, 0.0f) + lineToRelative(-1.1f, -1.1f) + close() + moveTo(9.5f, 12.5f) + curveToRelative(0.0f, 0.84f, 0.26f, 1.62f, 0.7f, 2.26f) + lineToRelative(1.09f, -1.1f) + arcToRelative(2.49f, 2.49f, 0.0f, false, true, 0.0f, -2.32f) + lineToRelative(-1.1f, -1.09f) + curveToRelative(-0.43f, 0.65f, -0.69f, 1.42f, -0.69f, 2.25f) + close() + moveTo(16.82f, 10.26f) + lineTo(15.72f, 11.36f) + arcToRelative(2.49f, 2.49f, 0.0f, false, true, 0.0f, 2.3f) + lineToRelative(1.1f, 1.1f) + arcToRelative(3.98f, 3.98f, 0.0f, false, false, 0.0f, -4.5f) + close() + moveTo(13.5f, 11.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(13.5f, 8.5f) + curveToRelative(-0.83f, 0.0f, -1.6f, 0.26f, -2.25f, 0.7f) + lineToRelative(1.1f, 1.08f) + arcToRelative(2.49f, 2.49f, 0.0f, false, true, 2.32f, 0.0f) + lineToRelative(1.09f, -1.08f) + arcToRelative(3.98f, 3.98f, 0.0f, false, false, -2.26f, -0.7f) + close() + } + } + return _fastAcceleration!! + } + +private var _fastAcceleration: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FastForward.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FastForward.kt new file mode 100644 index 00000000..b8baf0e0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FastForward.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FastForward: ImageVector + get() { + if (_fastForward != null) { + return _fastForward!! + } + _fastForward = fluentIcon(name = "Regular.FastForward") { + fluentPath { + moveTo(11.5f, 5.5f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.47f, -1.14f) + lineToRelative(7.41f, 6.3f) + curveToRelative(0.82f, 0.7f, 0.82f, 1.97f, 0.0f, 2.67f) + lineToRelative(-7.4f, 6.3f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.48f, -1.13f) + verticalLineToRelative(-4.0f) + lineToRelative(-6.03f, 5.14f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 3.0f, 18.5f) + verticalLineToRelative(-13.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.47f, -1.14f) + lineTo(11.5f, 9.5f) + lineTo(11.5f, 5.5f) + close() + moveTo(11.5f, 11.46f) + lineTo(4.5f, 5.5f) + verticalLineToRelative(13.0f) + lineToRelative(7.0f, -5.96f) + verticalLineToRelative(-1.08f) + close() + moveTo(20.41f, 11.81f) + lineTo(13.0f, 5.5f) + lineTo(13.0f, 18.5f) + lineToRelative(7.41f, -6.31f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.0f, -0.38f) + close() + } + } + return _fastForward!! + } + +private var _fastForward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Feed.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Feed.kt new file mode 100644 index 00000000..c92aebb4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Feed.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Feed: ImageVector + get() { + if (_feed != null) { + return _feed!! + } + _feed = fluentIcon(name = "Regular.Feed") { + fluentPath { + moveTo(6.53f, 7.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(5.78f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.0f) + close() + moveTo(5.03f, 11.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(15.0f, 21.0f) + curveToRelative(0.94f, 0.0f, 1.75f, -0.67f, 1.93f, -1.6f) + lineToRelative(0.48f, -2.4f) + horizontalLineToRelative(2.84f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(22.0f, 9.26f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.26f) + lineTo(14.5f, 7.0f) + lineTo(14.5f, 5.25f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-8.0f) + curveTo(3.01f, 3.0f, 2.0f, 4.0f, 2.0f, 5.25f) + verticalLineToRelative(12.5f) + curveTo(2.0f, 19.55f, 3.46f, 21.0f, 5.25f, 21.0f) + lineTo(15.0f, 21.0f) + close() + moveTo(3.5f, 5.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(8.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(13.76f) + curveToRelative(0.0f, 0.17f, 0.02f, 0.33f, 0.06f, 0.49f) + lineTo(5.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(3.5f, 5.25f) + close() + moveTo(14.5f, 8.5f) + horizontalLineToRelative(3.11f) + curveToRelative(-0.04f, 0.1f, -0.07f, 0.2f, -0.09f, 0.32f) + lineTo(15.46f, 19.1f) + arcToRelative(0.49f, 0.49f, 0.0f, false, true, -0.96f, -0.1f) + lineTo(14.5f, 8.5f) + close() + moveTo(19.0f, 9.11f) + arcToRelative(0.76f, 0.76f, 0.0f, false, true, 1.5f, 0.15f) + verticalLineToRelative(5.99f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-2.54f) + lineTo(19.0f, 9.11f) + close() + } + } + return _feed!! + } + +private var _feed: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Filmstrip.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Filmstrip.kt new file mode 100644 index 00000000..329d7b18 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Filmstrip.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Filmstrip: ImageVector + get() { + if (_filmstrip != null) { + return _filmstrip!! + } + _filmstrip = fluentIcon(name = "Regular.Filmstrip") { + fluentPath { + moveTo(2.0f, 7.25f) + curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) + horizontalLineToRelative(13.5f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(5.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + close() + moveTo(5.25f, 5.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(5.25f, 5.5f) + close() + moveTo(17.5f, 7.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.5f) + close() + moveTo(18.25f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(17.5f, 11.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.5f) + close() + moveTo(5.75f, 7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 5.75f, 7.0f) + close() + moveTo(5.0f, 15.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.5f) + close() + moveTo(5.75f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + } + } + return _filmstrip!! + } + +private var _filmstrip: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FilmstripPlay.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FilmstripPlay.kt new file mode 100644 index 00000000..95dec91d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FilmstripPlay.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FilmstripPlay: ImageVector + get() { + if (_filmstripPlay != null) { + return _filmstripPlay!! + } + _filmstripPlay = fluentIcon(name = "Regular.FilmstripPlay") { + fluentPath { + moveTo(5.25f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) + horizontalLineToRelative(13.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-9.5f) + curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) + lineTo(5.25f, 4.0f) + close() + moveTo(3.5f, 7.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(5.25f, 18.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-9.5f) + close() + moveTo(18.25f, 7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(17.5f, 15.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.5f) + close() + moveTo(18.25f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(5.0f, 7.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.5f) + close() + moveTo(5.75f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(5.0f, 11.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.5f) + close() + moveTo(10.0f, 9.75f) + curveToRelative(0.0f, -0.58f, 0.58f, -0.94f, 1.03f, -0.65f) + lineToRelative(3.68f, 2.35f) + curveToRelative(0.39f, 0.24f, 0.39f, 0.86f, 0.0f, 1.1f) + lineToRelative(-3.68f, 2.35f) + curveToRelative(-0.45f, 0.29f, -1.03f, -0.07f, -1.03f, -0.65f) + verticalLineToRelative(-4.5f) + close() + } + } + return _filmstripPlay!! + } + +private var _filmstripPlay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FilterDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FilterDismiss.kt new file mode 100644 index 00000000..09c4e4c3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FilterDismiss.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FilterDismiss: ImageVector + get() { + if (_filterDismiss != null) { + return _filterDismiss!! + } + _filterDismiss = fluentIcon(name = "Regular.FilterDismiss") { + fluentPath { + moveTo(23.0f, 7.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 5.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineTo(18.21f, 7.5f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineTo(17.5f, 6.79f) + lineToRelative(-1.65f, -1.64f) + close() + } + fluentPath { + moveTo(13.35f, 12.5f) + arcToRelative(6.54f, 6.54f, 0.0f, false, true, -1.33f, -1.5f) + horizontalLineTo(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.85f) + close() + } + fluentPath { + moveTo(11.0f, 7.5f) + curveToRelative(0.0f, -0.52f, 0.06f, -1.02f, 0.17f, -1.5f) + horizontalLineTo(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineTo(11.0f) + close() + } + fluentPath { + moveTo(13.5f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.0f) + close() + } + } + return _filterDismiss!! + } + +private var _filterDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FilterSync.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FilterSync.kt new file mode 100644 index 00000000..9404db64 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FilterSync.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FilterSync: ImageVector + get() { + if (_filterSync != null) { + return _filterSync!! + } + _filterSync = fluentIcon(name = "Regular.FilterSync") { + fluentPath { + moveTo(12.0f, 7.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) + close() + moveTo(20.5f, 4.0f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + verticalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.8f, -0.59f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) + lineTo(20.0f, 4.5f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + close() + moveTo(15.0f, 9.95f) + verticalLineToRelative(0.55f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.77f, 0.65f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) + close() + moveTo(7.5f, 12.5f) + horizontalLineToRelative(5.85f) + arcToRelative(6.54f, 6.54f, 0.0f, false, true, -1.33f, -1.5f) + lineTo(7.5f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(11.0f, 7.5f) + curveToRelative(0.0f, -0.52f, 0.06f, -1.02f, 0.17f, -1.5f) + lineTo(4.5f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(11.0f, 7.5f) + close() + moveTo(13.5f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.0f) + close() + } + } + return _filterSync!! + } + +private var _filterSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fingerprint.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fingerprint.kt new file mode 100644 index 00000000..09702fa4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fingerprint.kt @@ -0,0 +1,108 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Fingerprint: ImageVector + get() { + if (_fingerprint != null) { + return _fingerprint!! + } + _fingerprint = fluentIcon(name = "Regular.Fingerprint") { + fluentPath { + moveTo(14.86f, 12.16f) + curveToRelative(0.56f, 0.57f, 0.87f, 1.27f, 1.1f, 2.23f) + lineToRelative(0.1f, 0.45f) + lineToRelative(0.18f, 0.95f) + curveToRelative(0.1f, 0.44f, 0.16f, 0.7f, 0.26f, 0.9f) + curveToRelative(0.3f, 0.68f, 0.83f, 1.37f, 1.6f, 2.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.02f, 1.1f) + arcToRelative(7.94f, 7.94f, 0.0f, false, true, -1.95f, -2.55f) + arcToRelative(5.24f, 5.24f, 0.0f, false, true, -0.35f, -1.18f) + lineToRelative(-0.21f, -1.1f) + lineToRelative(-0.01f, -0.06f) + curveToRelative(-0.18f, -0.85f, -0.4f, -1.39f, -0.78f, -1.76f) + curveToRelative(-0.7f, -0.73f, -2.35f, -0.54f, -2.8f, 0.15f) + curveToRelative(-0.55f, 0.9f, -0.7f, 2.4f, -0.25f, 3.92f) + curveToRelative(0.34f, 1.17f, 0.8f, 2.33f, 1.37f, 3.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, 0.67f) + arcToRelative(22.28f, 22.28f, 0.0f, false, true, -1.47f, -3.72f) + curveToRelative(-0.56f, -1.91f, -0.38f, -3.86f, 0.43f, -5.14f) + curveToRelative(0.95f, -1.5f, 3.74f, -1.83f, 5.14f, -0.4f) + close() + moveTo(12.49f, 14.47f) + curveToRelative(0.42f, -0.01f, 0.76f, 0.31f, 0.78f, 0.73f) + arcToRelative(7.93f, 7.93f, 0.0f, false, false, 1.44f, 4.3f) + lineToRelative(0.2f, 0.27f) + lineToRelative(0.3f, 0.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.12f, 1.0f) + lineToRelative(-0.07f, -0.09f) + lineToRelative(-0.3f, -0.39f) + arcToRelative(9.43f, 9.43f, 0.0f, false, true, -1.95f, -5.43f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.72f, -0.78f) + close() + moveTo(8.8f, 9.4f) + arcToRelative(6.02f, 6.02f, 0.0f, false, true, 6.73f, -0.28f) + curveToRelative(0.93f, 0.6f, 1.63f, 1.3f, 2.1f, 2.09f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.3f, 0.76f) + arcToRelative(4.87f, 4.87f, 0.0f, false, false, -1.62f, -1.6f) + arcToRelative(4.53f, 4.53f, 0.0f, false, false, -5.02f, 0.24f) + curveToRelative(-1.64f, 1.2f, -2.33f, 3.29f, -2.13f, 5.48f) + arcToRelative(10.5f, 10.5f, 0.0f, false, false, 1.12f, 3.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.67f) + arcToRelative(11.99f, 11.99f, 0.0f, false, true, -1.26f, -4.25f) + curveToRelative(-0.25f, -2.67f, 0.61f, -5.26f, 2.72f, -6.83f) + close() + moveTo(17.97f, 13.7f) + curveToRelative(0.42f, -0.02f, 0.77f, 0.3f, 0.79f, 0.71f) + curveToRelative(0.03f, 0.6f, 0.18f, 1.1f, 0.44f, 1.5f) + curveToRelative(0.22f, 0.33f, 0.42f, 0.52f, 0.57f, 0.6f) + lineToRelative(0.06f, 0.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.44f, 1.43f) + curveToRelative(-0.54f, -0.16f, -1.01f, -0.58f, -1.44f, -1.23f) + arcToRelative(4.41f, 4.41f, 0.0f, false, true, -0.69f, -2.24f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.71f, -0.79f) + close() + moveTo(10.51f, 6.1f) + curveToRelative(0.17f, 0.38f, 0.0f, 0.82f, -0.38f, 1.0f) + curveToRelative(-1.84f, 0.82f, -3.19f, 2.0f, -4.08f, 3.54f) + arcToRelative(9.82f, 9.82f, 0.0f, false, false, -1.16f, 6.08f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.2f) + curveToRelative(-0.28f, -2.2f, 0.06f, -4.78f, 1.36f, -7.03f) + arcToRelative(10.1f, 10.1f, 0.0f, false, true, 4.77f, -4.16f) + curveToRelative(0.38f, -0.17f, 0.82f, 0.0f, 1.0f, 0.37f) + close() + moveTo(12.85f, 5.31f) + curveToRelative(1.83f, 0.04f, 3.66f, 0.88f, 5.46f, 2.5f) + arcToRelative(10.34f, 10.34f, 0.0f, false, true, 3.3f, 6.57f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.49f, 0.2f) + arcToRelative(8.85f, 8.85f, 0.0f, false, false, -2.8f, -5.66f) + curveToRelative(-1.56f, -1.39f, -3.06f, -2.08f, -4.5f, -2.1f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.03f, -1.5f) + close() + moveTo(5.98f, 5.33f) + curveToRelative(0.28f, 0.3f, 0.25f, 0.78f, -0.06f, 1.06f) + arcToRelative(7.46f, 7.46f, 0.0f, false, false, -1.69f, 2.07f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.3f, -0.75f) + arcToRelative(8.91f, 8.91f, 0.0f, false, true, 2.0f, -2.44f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, 0.06f) + close() + moveTo(12.57f, 2.36f) + curveToRelative(2.2f, 0.1f, 4.03f, 0.7f, 5.53f, 1.86f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.92f, 1.2f) + arcToRelative(8.02f, 8.02f, 0.0f, false, false, -4.68f, -1.56f) + arcToRelative(8.71f, 8.71f, 0.0f, false, false, -4.72f, 0.98f) + curveToRelative(-0.38f, 0.21f, -0.81f, 0.1f, -1.03f, -0.25f) + arcTo(0.74f, 0.74f, 0.0f, false, true, 7.0f, 3.56f) + arcToRelative(9.84f, 9.84f, 0.0f, false, true, 5.57f, -1.2f) + close() + } + } + return _fingerprint!! + } + +private var _fingerprint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fire.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fire.kt new file mode 100644 index 00000000..021503d3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fire.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Fire: ImageVector + get() { + if (_fire != null) { + return _fire!! + } + _fire = fluentIcon(name = "Regular.Fire") { + fluentPath { + moveTo(12.54f, 4.3f) + curveToRelative(0.32f, -0.25f, 0.64f, -0.44f, 0.93f, -0.57f) + curveToRelative(0.09f, 2.13f, 1.13f, 3.73f, 2.13f, 5.14f) + lineToRelative(0.27f, 0.38f) + curveToRelative(1.08f, 1.52f, 2.01f, 2.82f, 2.11f, 4.54f) + arcToRelative(6.86f, 6.86f, 0.0f, false, true, -1.33f, 4.83f) + arcToRelative(5.43f, 5.43f, 0.0f, false, true, -4.4f, 1.88f) + curveToRelative(-2.06f, 0.0f, -3.61f, -0.53f, -4.7f, -1.42f) + arcToRelative(5.83f, 5.83f, 0.0f, false, true, -1.98f, -3.87f) + arcToRelative(5.56f, 5.56f, 0.0f, false, true, 0.86f, -4.0f) + lineToRelative(0.32f, 0.6f) + arcToRelative(2.2f, 2.2f, 0.0f, false, false, 2.9f, 0.96f) + curveToRelative(1.3f, -0.62f, 1.58f, -2.21f, 1.17f, -3.33f) + arcToRelative(3.94f, 3.94f, 0.0f, false, true, -0.11f, -2.7f) + arcToRelative(5.32f, 5.32f, 0.0f, false, true, 1.83f, -2.45f) + close() + moveTo(6.16f, 9.31f) + horizontalLineToRelative(-0.01f) + lineToRelative(-0.01f, 0.02f) + arcToRelative(1.94f, 1.94f, 0.0f, false, false, -0.13f, 0.1f) + curveToRelative(-0.07f, 0.07f, -0.18f, 0.16f, -0.3f, 0.3f) + curveToRelative(-0.24f, 0.24f, -0.55f, 0.62f, -0.83f, 1.12f) + arcToRelative(7.06f, 7.06f, 0.0f, false, false, -0.8f, 4.55f) + curveToRelative(0.27f, 2.0f, 1.1f, 3.67f, 2.53f, 4.83f) + curveTo(8.02f, 21.4f, 9.94f, 22.0f, 12.25f, 22.0f) + curveToRelative(2.39f, 0.0f, 4.3f, -0.9f, 5.55f, -2.43f) + arcToRelative(8.35f, 8.35f, 0.0f, false, false, 1.68f, -5.86f) + curveToRelative(-0.13f, -2.18f, -1.31f, -3.83f, -2.36f, -5.29f) + lineToRelative(-0.3f, -0.42f) + curveTo(15.68f, 6.4f, 14.78f, 4.9f, 15.0f, 2.83f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.83f) + curveToRelative(-0.38f, 0.0f, -0.82f, 0.12f, -1.24f, 0.3f) + arcToRelative(6.82f, 6.82f, 0.0f, false, false, -3.72f, 3.96f) + curveToRelative(-0.49f, 1.4f, -0.24f, 2.73f, 0.12f, 3.7f) + curveToRelative(0.24f, 0.64f, -0.02f, 1.27f, -0.4f, 1.46f) + arcToRelative(0.7f, 0.7f, 0.0f, false, true, -0.93f, -0.31f) + lineToRelative(-0.81f, -1.54f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.11f, -0.25f) + close() + } + } + return _fire!! + } + +private var _fire: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fireplace.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fireplace.kt new file mode 100644 index 00000000..d7785bf2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fireplace.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Fireplace: ImageVector + get() { + if (_fireplace != null) { + return _fireplace!! + } + _fireplace = fluentIcon(name = "Regular.Fireplace") { + fluentPath { + moveTo(3.0f, 11.0f) + arcToRelative(9.0f, 9.0f, 0.0f, false, true, 18.0f, 0.0f) + verticalLineToRelative(6.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(3.75f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(3.0f, 11.0f) + close() + moveTo(12.0f, 3.5f) + arcTo(7.5f, 7.5f, 0.0f, false, false, 4.5f, 11.0f) + verticalLineToRelative(5.5f) + horizontalLineToRelative(4.3f) + arcToRelative(4.14f, 4.14f, 0.0f, false, true, -1.3f, -3.01f) + arcToRelative(5.57f, 5.57f, 0.0f, false, true, 1.46f, -3.76f) + lineToRelative(0.02f, -0.02f) + lineTo(9.0f, 9.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 0.03f) + verticalLineToRelative(-0.05f) + lineToRelative(0.02f, -0.16f) + curveToRelative(0.05f, -0.52f, 0.13f, -1.27f, 0.47f, -1.94f) + arcToRelative(2.9f, 2.9f, 0.0f, false, true, 2.04f, -1.56f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.92f, 0.73f) + curveToRelative(0.0f, 1.34f, 0.59f, 2.1f, 1.33f, 3.0f) + lineToRelative(0.07f, 0.08f) + curveToRelative(0.73f, 0.88f, 1.6f, 1.93f, 1.6f, 3.66f) + curveToRelative(0.0f, 1.17f, -0.5f, 2.24f, -1.3f, 3.01f) + horizontalLineToRelative(4.3f) + lineTo(19.51f, 11.0f) + arcTo(7.5f, 7.5f, 0.0f, false, false, 12.0f, 3.5f) + close() + moveTo(9.53f, 11.46f) + arcTo(4.07f, 4.07f, 0.0f, false, false, 9.0f, 13.49f) + curveToRelative(0.0f, 1.47f, 1.23f, 2.76f, 3.0f, 2.76f) + reflectiveCurveToRelative(3.0f, -1.31f, 3.0f, -2.76f) + curveToRelative(0.0f, -1.19f, -0.56f, -1.87f, -1.32f, -2.79f) + arcToRelative(6.46f, 6.46f, 0.0f, false, true, -1.56f, -2.8f) + curveToRelative(-0.1f, 0.11f, -0.17f, 0.23f, -0.24f, 0.35f) + curveToRelative(-0.2f, 0.4f, -0.27f, 0.89f, -0.32f, 1.42f) + lineToRelative(-0.01f, 0.13f) + lineToRelative(-0.07f, 0.62f) + curveToRelative(-0.04f, 0.19f, -0.1f, 0.56f, -0.37f, 0.83f) + arcToRelative(0.99f, 0.99f, 0.0f, false, true, -0.62f, 0.3f) + arcToRelative(1.2f, 1.2f, 0.0f, false, true, -0.57f, -0.1f) + lineToRelative(-0.3f, -0.16f) + lineToRelative(-0.1f, 0.17f) + close() + moveTo(2.0f, 20.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(2.75f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _fireplace!! + } + +private var _fireplace: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FixedWidth.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FixedWidth.kt new file mode 100644 index 00000000..6c962bb3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FixedWidth.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FixedWidth: ImageVector + get() { + if (_fixedWidth != null) { + return _fixedWidth!! + } + _fixedWidth = fluentIcon(name = "Regular.FixedWidth") { + fluentPath { + moveTo(4.5f, 4.69f) + curveToRelative(0.0f, -0.38f, -0.34f, -0.69f, -0.75f, -0.69f) + reflectiveCurveTo(3.0f, 4.3f, 3.0f, 4.69f) + lineTo(3.0f, 8.8f) + curveToRelative(0.0f, 0.38f, 0.34f, 0.69f, 0.75f, 0.69f) + reflectiveCurveToRelative(0.75f, -0.3f, 0.75f, -0.69f) + lineTo(4.5f, 7.5f) + horizontalLineToRelative(6.75f) + verticalLineToRelative(1.31f) + curveToRelative(0.0f, 0.38f, 0.34f, 0.69f, 0.75f, 0.69f) + reflectiveCurveToRelative(0.75f, -0.3f, 0.75f, -0.69f) + lineTo(12.75f, 7.5f) + horizontalLineToRelative(6.75f) + verticalLineToRelative(1.31f) + curveToRelative(0.0f, 0.38f, 0.34f, 0.69f, 0.75f, 0.69f) + reflectiveCurveToRelative(0.75f, -0.3f, 0.75f, -0.69f) + lineTo(21.0f, 4.7f) + curveToRelative(0.0f, -0.38f, -0.34f, -0.69f, -0.75f, -0.69f) + reflectiveCurveToRelative(-0.75f, 0.3f, -0.75f, 0.69f) + lineTo(19.5f, 6.0f) + horizontalLineToRelative(-6.75f) + lineTo(12.75f, 4.69f) + curveToRelative(0.0f, -0.38f, -0.34f, -0.69f, -0.75f, -0.69f) + reflectiveCurveToRelative(-0.75f, 0.3f, -0.75f, 0.69f) + lineTo(11.25f, 6.0f) + lineTo(4.5f, 6.0f) + lineTo(4.5f, 4.69f) + close() + moveTo(5.75f, 11.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 13.75f) + verticalLineToRelative(4.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, 2.75f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 17.75f) + verticalLineToRelative(-4.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 11.0f) + lineTo(5.75f, 11.0f) + close() + moveTo(11.25f, 12.5f) + lineTo(11.25f, 19.0f) + horizontalLineToRelative(-5.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(5.5f) + close() + moveTo(12.75f, 19.0f) + verticalLineToRelative(-6.5f) + horizontalLineToRelative(5.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineToRelative(-5.5f) + close() + } + } + return _fixedWidth!! + } + +private var _fixedWidth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlagClock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlagClock.kt new file mode 100644 index 00000000..e7155d86 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlagClock.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FlagClock: ImageVector + get() { + if (_flagClock != null) { + return _flagClock!! + } + _flagClock = fluentIcon(name = "Regular.FlagClock") { + fluentPath { + moveTo(3.0f, 3.75f) + curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(16.5f) + curveToRelative(0.62f, 0.0f, 0.98f, 0.7f, 0.6f, 1.2f) + lineTo(16.7f, 9.75f) + lineToRelative(0.94f, 1.25f) + arcToRelative(6.15f, 6.15f, 0.0f, false, false, -1.73f, 0.2f) + lineToRelative(-0.75f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -0.9f) + lineToRelative(3.6f, -4.8f) + lineTo(4.5f, 4.5f) + lineTo(4.5f, 15.0f) + horizontalLineToRelative(7.0f) + curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) + lineTo(4.5f, 16.5f) + verticalLineToRelative(4.75f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + lineTo(3.0f, 3.75f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(19.5f, 17.5f) + horizontalLineToRelative(-2.0f) + lineTo(17.5f, 15.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + close() + } + } + return _flagClock!! + } + +private var _flagClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlagOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlagOff.kt new file mode 100644 index 00000000..5feed5c6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlagOff.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FlagOff: ImageVector + get() { + if (_flagOff != null) { + return _flagOff!! + } + _flagOff = fluentIcon(name = "Regular.FlagOff") { + fluentPath { + moveToRelative(2.5f, 2.5f) + lineToRelative(18.0f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineToRelative(-5.06f, -5.06f) + lineTo(4.5f, 16.5f) + verticalLineToRelative(4.75f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + lineTo(3.0f, 5.12f) + lineTo(1.44f, 3.56f) + arcTo(0.75f, 0.75f, 0.0f, true, true, 2.5f, 2.5f) + close() + moveTo(5.12f, 3.0f) + horizontalLineToRelative(15.13f) + curveToRelative(0.62f, 0.0f, 0.98f, 0.7f, 0.6f, 1.2f) + lineTo(16.7f, 9.75f) + lineToRelative(4.16f, 5.55f) + curveToRelative(0.38f, 0.5f, 0.02f, 1.2f, -0.6f, 1.2f) + horizontalLineToRelative(-1.63f) + lineToRelative(-1.5f, -1.5f) + horizontalLineToRelative(1.63f) + lineToRelative(-3.6f, -4.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -0.9f) + lineToRelative(3.6f, -4.8f) + lineTo(6.62f, 4.5f) + lineTo(5.12f, 3.0f) + close() + moveTo(4.5f, 6.62f) + lineTo(4.5f, 15.0f) + horizontalLineToRelative(8.38f) + lineTo(4.5f, 6.62f) + close() + } + } + return _flagOff!! + } + +private var _flagOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlashAuto.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlashAuto.kt new file mode 100644 index 00000000..ca5b7eed --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlashAuto.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FlashAuto: ImageVector + get() { + if (_flashAuto != null) { + return _flashAuto!! + } + _flashAuto = fluentIcon(name = "Regular.FlashAuto") { + fluentPath { + moveTo(7.42f, 2.83f) + curveTo(7.6f, 2.33f, 8.07f, 2.0f, 8.6f, 2.0f) + horizontalLineToRelative(6.46f) + curveToRelative(0.85f, 0.0f, 1.45f, 0.84f, 1.18f, 1.65f) + lineTo(14.8f, 8.0f) + horizontalLineToRelative(3.96f) + curveToRelative(1.1f, 0.0f, 1.66f, 1.33f, 0.9f, 2.12f) + lineToRelative(-0.67f, 0.7f) + curveToRelative(-0.3f, -0.5f, -0.8f, -0.76f, -1.32f, -0.81f) + lineToRelative(0.5f, -0.51f) + horizontalLineToRelative(-4.41f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.71f, -0.99f) + lineTo(14.7f, 3.5f) + lineTo(8.78f, 3.5f) + lineToRelative(-3.26f, 9.16f) + curveToRelative(-0.06f, 0.16f, 0.06f, 0.33f, 0.23f, 0.33f) + lineToRelative(2.5f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.73f, 0.91f) + lineTo(7.51f, 20.5f) + lineToRelative(7.86f, -8.1f) + lineToRelative(-1.44f, 3.63f) + lineToRelative(-5.34f, 5.52f) + curveToRelative(-1.06f, 1.08f, -2.88f, 0.1f, -2.55f, -1.38f) + lineToRelative(1.27f, -5.66f) + lineToRelative(-1.57f, -0.01f) + curveToRelative(-1.2f, 0.0f, -2.04f, -1.2f, -1.64f, -2.34f) + lineToRelative(3.32f, -9.32f) + close() + moveTo(18.19f, 11.47f) + lineTo(21.94f, 20.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.64f) + lineToRelative(-0.04f, -0.09f) + lineToRelative(-1.0f, -2.52f) + horizontalLineToRelative(-4.1f) + lineToRelative(-1.0f, 2.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.88f, 0.45f) + lineToRelative(-0.1f, -0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.45f, -0.87f) + lineToRelative(0.03f, -0.1f) + lineToRelative(3.75f, -9.5f) + arcToRelative(0.73f, 0.73f, 0.0f, false, true, 0.45f, -0.43f) + arcToRelative(0.77f, 0.77f, 0.0f, false, true, 0.55f, 0.02f) + curveToRelative(0.14f, 0.06f, 0.26f, 0.16f, 0.34f, 0.3f) + lineToRelative(0.05f, 0.11f) + close() + moveTo(16.03f, 17.5f) + horizontalLineToRelative(2.93f) + lineToRelative(-1.46f, -3.7f) + lineToRelative(-1.47f, 3.7f) + close() + } + } + return _flashAuto!! + } + +private var _flashAuto: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlashCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlashCheckmark.kt new file mode 100644 index 00000000..db5d702c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlashCheckmark.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FlashCheckmark: ImageVector + get() { + if (_flashCheckmark != null) { + return _flashCheckmark!! + } + _flashCheckmark = fluentIcon(name = "Regular.FlashCheckmark") { + fluentPath { + moveTo(7.42f, 2.83f) + curveTo(7.6f, 2.33f, 8.07f, 2.0f, 8.6f, 2.0f) + horizontalLineToRelative(6.46f) + curveToRelative(0.85f, 0.0f, 1.45f, 0.84f, 1.18f, 1.65f) + lineTo(14.8f, 8.0f) + horizontalLineToRelative(3.96f) + curveToRelative(1.1f, 0.0f, 1.66f, 1.33f, 0.9f, 2.12f) + lineToRelative(-0.96f, 0.99f) + arcToRelative(6.53f, 6.53f, 0.0f, false, false, -2.04f, -0.06f) + lineToRelative(1.5f, -1.55f) + horizontalLineToRelative(-4.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.71f, -0.99f) + lineTo(14.7f, 3.5f) + lineTo(8.78f, 3.5f) + lineToRelative(-3.26f, 9.16f) + curveToRelative(-0.06f, 0.16f, 0.06f, 0.33f, 0.23f, 0.33f) + lineToRelative(2.5f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.73f, 0.91f) + lineTo(7.51f, 20.5f) + lineToRelative(3.52f, -3.63f) + arcToRelative(6.57f, 6.57f, 0.0f, false, false, 0.12f, 2.03f) + lineToRelative(-2.56f, 2.65f) + curveToRelative(-1.06f, 1.08f, -2.88f, 0.1f, -2.55f, -1.38f) + lineToRelative(1.27f, -5.66f) + lineToRelative(-1.57f, -0.01f) + curveToRelative(-1.2f, 0.0f, -2.04f, -1.2f, -1.64f, -2.34f) + lineToRelative(3.32f, -9.32f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-3.65f, 3.64f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _flashCheckmark!! + } + +private var _flashCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlashFlow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlashFlow.kt new file mode 100644 index 00000000..7f820e71 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlashFlow.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FlashFlow: ImageVector + get() { + if (_flashFlow != null) { + return _flashFlow!! + } + _flashFlow = fluentIcon(name = "Regular.FlashFlow") { + fluentPath { + moveTo(7.43f, 2.83f) + curveTo(7.6f, 2.33f, 8.07f, 2.0f, 8.6f, 2.0f) + horizontalLineToRelative(6.46f) + curveToRelative(0.85f, 0.0f, 1.45f, 0.84f, 1.18f, 1.65f) + lineTo(14.8f, 8.0f) + horizontalLineToRelative(3.96f) + curveToRelative(1.1f, 0.0f, 1.67f, 1.33f, 0.9f, 2.12f) + lineToRelative(-3.18f, 3.29f) + arcToRelative(12.41f, 12.41f, 0.0f, false, false, -0.57f, -1.57f) + lineToRelative(2.26f, -2.34f) + horizontalLineToRelative(-4.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.72f, -0.99f) + lineTo(14.7f, 3.5f) + lineTo(8.78f, 3.5f) + lineToRelative(-3.26f, 9.16f) + curveToRelative(-0.06f, 0.16f, 0.06f, 0.33f, 0.23f, 0.33f) + horizontalLineToRelative(0.96f) + arcToRelative(3.76f, 3.76f, 0.0f, false, false, 2.0f, 2.18f) + lineToRelative(-1.2f, 5.32f) + lineToRelative(5.67f, -5.85f) + arcToRelative(52.28f, 52.28f, 0.0f, false, true, 0.43f, 1.71f) + lineToRelative(-5.02f, 5.19f) + curveToRelative(-1.06f, 1.08f, -2.87f, 0.1f, -2.54f, -1.38f) + lineToRelative(1.27f, -5.66f) + lineToRelative(-1.57f, -0.01f) + curveToRelative(-1.21f, 0.0f, -2.05f, -1.2f, -1.65f, -2.34f) + lineToRelative(3.33f, -9.32f) + close() + moveTo(12.81f, 12.75f) + arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.14f, -1.5f) + horizontalLineToRelative(0.3f) + curveToRelative(0.38f, 0.0f, 0.79f, 0.1f, 1.15f, 0.36f) + curveToRelative(0.37f, 0.26f, 0.64f, 0.64f, 0.8f, 1.13f) + curveToRelative(0.2f, 0.48f, 0.45f, 1.46f, 0.65f, 2.27f) + arcToRelative(89.58f, 89.58f, 0.0f, false, true, 0.35f, 1.44f) + lineToRelative(0.02f, 0.1f) + curveToRelative(0.08f, 0.22f, 0.18f, 0.32f, 0.25f, 0.37f) + curveToRelative(0.07f, 0.05f, 0.16f, 0.08f, 0.28f, 0.08f) + horizontalLineToRelative(0.76f) + arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.29f, 1.5f) + horizontalLineToRelative(-1.05f) + curveToRelative(-0.38f, 0.0f, -0.79f, -0.1f, -1.15f, -0.36f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.83f, -1.22f) + verticalLineToRelative(-0.03f) + lineToRelative(-0.03f, -0.1f) + arcToRelative(88.51f, 88.51f, 0.0f, false, false, -0.34f, -1.42f) + arcToRelative(22.53f, 22.53f, 0.0f, false, false, -0.61f, -2.13f) + curveToRelative(-0.09f, -0.26f, -0.19f, -0.36f, -0.26f, -0.41f) + arcToRelative(0.47f, 0.47f, 0.0f, false, false, -0.28f, -0.08f) + horizontalLineToRelative(-0.44f) + close() + moveTo(11.5f, 11.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) + close() + moveTo(20.25f, 18.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + } + } + return _flashFlow!! + } + +private var _flashFlow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlashOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlashOff.kt new file mode 100644 index 00000000..06d1a097 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlashOff.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FlashOff: ImageVector + get() { + if (_flashOff != null) { + return _flashOff!! + } + _flashOff = fluentIcon(name = "Regular.FlashOff") { + fluentPath { + moveTo(5.94f, 7.0f) + lineTo(2.22f, 3.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(18.5f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineToRelative(-6.28f, -6.28f) + lineToRelative(-5.85f, 6.04f) + curveToRelative(-1.06f, 1.08f, -2.88f, 0.1f, -2.55f, -1.38f) + lineToRelative(1.27f, -5.66f) + lineToRelative(-1.57f, -0.01f) + curveToRelative(-1.2f, 0.0f, -2.04f, -1.2f, -1.64f, -2.34f) + lineTo(5.94f, 7.0f) + close() + moveTo(13.38f, 14.44f) + lineTo(7.1f, 8.17f) + lineToRelative(-1.6f, 4.49f) + curveToRelative(-0.05f, 0.16f, 0.07f, 0.33f, 0.24f, 0.33f) + lineToRelative(2.5f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.73f, 0.91f) + lineTo(7.51f, 20.5f) + lineToRelative(5.87f, -6.05f) + close() + moveTo(18.16f, 9.5f) + lineTo(15.46f, 12.28f) + lineTo(16.52f, 13.34f) + lineTo(19.65f, 10.12f) + curveToRelative(0.76f, -0.8f, 0.2f, -2.12f, -0.9f, -2.12f) + horizontalLineToRelative(-3.96f) + lineToRelative(1.45f, -4.35f) + curveToRelative(0.27f, -0.81f, -0.33f, -1.65f, -1.18f, -1.65f) + lineTo(8.6f, 2.0f) + curveToRelative(-0.53f, 0.0f, -1.0f, 0.33f, -1.18f, 0.83f) + lineToRelative(-0.37f, 1.04f) + lineToRelative(1.18f, 1.18f) + lineToRelative(0.55f, -1.55f) + horizontalLineToRelative(5.93f) + lineToRelative(-1.67f, 5.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.7f, 0.99f) + horizontalLineToRelative(4.42f) + close() + } + } + return _flashOff!! + } + +private var _flashOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlashSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlashSettings.kt new file mode 100644 index 00000000..de3322dd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlashSettings.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FlashSettings: ImageVector + get() { + if (_flashSettings != null) { + return _flashSettings!! + } + _flashSettings = fluentIcon(name = "Regular.FlashSettings") { + fluentPath { + moveTo(7.42f, 2.83f) + curveTo(7.6f, 2.33f, 8.07f, 2.0f, 8.6f, 2.0f) + horizontalLineToRelative(6.46f) + curveToRelative(0.85f, 0.0f, 1.45f, 0.84f, 1.18f, 1.65f) + lineTo(14.8f, 8.0f) + horizontalLineToRelative(3.96f) + curveToRelative(1.1f, 0.0f, 1.66f, 1.33f, 0.9f, 2.12f) + lineToRelative(-0.96f, 0.99f) + arcToRelative(6.53f, 6.53f, 0.0f, false, false, -2.04f, -0.06f) + lineToRelative(1.5f, -1.55f) + horizontalLineToRelative(-4.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.71f, -0.99f) + lineTo(14.7f, 3.5f) + lineTo(8.78f, 3.5f) + lineToRelative(-3.26f, 9.16f) + curveToRelative(-0.06f, 0.16f, 0.06f, 0.33f, 0.23f, 0.33f) + lineToRelative(2.5f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.73f, 0.91f) + lineTo(7.51f, 20.5f) + lineToRelative(3.52f, -3.63f) + arcToRelative(6.57f, 6.57f, 0.0f, false, false, 0.12f, 2.03f) + lineToRelative(-2.56f, 2.65f) + curveToRelative(-1.06f, 1.08f, -2.88f, 0.1f, -2.55f, -1.38f) + lineToRelative(1.27f, -5.66f) + lineToRelative(-1.57f, -0.01f) + curveToRelative(-1.2f, 0.0f, -2.04f, -1.2f, -1.64f, -2.34f) + lineToRelative(3.32f, -9.32f) + close() + moveTo(14.28f, 13.98f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.59f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) + lineToRelative(0.55f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) + lineToRelative(-0.19f, 0.64f) + curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) + lineToRelative(0.49f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.9f) + lineToRelative(-0.2f, -0.7f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) + lineToRelative(0.59f, -0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, -0.01f, -1.8f) + lineToRelative(-0.54f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.19f, -0.63f) + curveToRelative(-0.44f, -0.39f, -0.94f, -0.7f, -1.49f, -0.93f) + lineToRelative(-0.49f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.91f) + lineToRelative(0.2f, 0.69f) + close() + moveTo(17.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) + close() + } + } + return _flashSettings!! + } + +private var _flashSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Flashlight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Flashlight.kt new file mode 100644 index 00000000..a914de10 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Flashlight.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Flashlight: ImageVector + get() { + if (_flashlight != null) { + return _flashlight!! + } + _flashlight = fluentIcon(name = "Regular.Flashlight") { + fluentPath { + moveTo(17.5f, 2.0f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 16.0f, 2.0f) + verticalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(17.5f, 2.0f) + close() + moveTo(21.53f, 2.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(2.0f, -2.0f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + close() + moveTo(8.03f, 17.03f) + lineToRelative(1.5f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + close() + moveTo(8.25f, 6.0f) + verticalLineToRelative(4.69f) + lineTo(3.03f, 15.9f) + curveToRelative(-0.88f, 0.88f, -0.88f, 2.3f, 0.0f, 3.18f) + lineToRelative(1.88f, 1.88f) + curveToRelative(0.88f, 0.88f, 2.3f, 0.88f, 3.18f, 0.0f) + lineToRelative(5.22f, -5.22f) + lineTo(18.0f, 15.74f) + curveToRelative(0.2f, 0.0f, 0.39f, -0.08f, 0.53f, -0.22f) + lineToRelative(1.94f, -1.94f) + curveToRelative(0.88f, -0.88f, 0.88f, -2.3f, 0.0f, -3.18f) + lineToRelative(-6.88f, -6.88f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.18f, 0.0f) + lineTo(8.47f, 5.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.22f, 0.53f) + close() + moveTo(11.47f, 4.6f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(6.88f, 6.87f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineTo(18.0f, 13.93f) + lineTo(10.06f, 6.0f) + lineToRelative(1.4f, -1.4f) + close() + moveTo(9.75f, 7.8f) + lineToRelative(6.44f, 6.44f) + lineTo(13.3f, 14.24f) + lineToRelative(-3.56f, -3.56f) + lineTo(9.74f, 7.8f) + close() + moveTo(9.0f, 12.06f) + lineTo(11.94f, 15.0f) + lineToRelative(-4.91f, 4.9f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-1.88f, -1.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineTo(9.0f, 12.07f) + close() + moveTo(21.0f, 8.0f) + horizontalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.0f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 21.0f, 8.0f) + close() + } + } + return _flashlight!! + } + +private var _flashlight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlashlightOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlashlightOff.kt new file mode 100644 index 00000000..25b0ec62 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlashlightOff.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FlashlightOff: ImageVector + get() { + if (_flashlightOff != null) { + return _flashlightOff!! + } + _flashlightOff = fluentIcon(name = "Regular.FlashlightOff") { + fluentPath { + moveTo(9.53f, 14.47f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(1.5f, -1.5f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(6.03f, 6.03f) + verticalLineToRelative(1.38f) + lineTo(3.03f, 15.9f) + curveToRelative(-0.88f, 0.88f, -0.88f, 2.3f, 0.0f, 3.18f) + lineToRelative(1.88f, 1.88f) + curveToRelative(0.88f, 0.88f, 2.3f, 0.88f, 3.18f, 0.0f) + lineToRelative(5.22f, -5.22f) + horizontalLineToRelative(1.38f) + lineToRelative(6.03f, 6.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(9.0f, 12.06f) + lineTo(11.94f, 15.0f) + lineToRelative(-4.91f, 4.9f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-1.88f, -1.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineTo(9.0f, 12.07f) + close() + moveTo(17.84f, 14.09f) + lineTo(19.41f, 12.53f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-6.88f, -6.88f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineTo(9.9f, 6.16f) + lineTo(8.84f, 5.09f) + lineToRelative(1.57f, -1.56f) + curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.0f) + lineToRelative(6.88f, 6.88f) + curveToRelative(0.88f, 0.88f, 0.88f, 2.3f, 0.0f, 3.18f) + lineToRelative(-1.57f, 1.57f) + lineToRelative(-1.06f, -1.07f) + close() + } + } + return _flashlightOff!! + } + +private var _flashlightOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlipHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlipHorizontal.kt new file mode 100644 index 00000000..8d49a729 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlipHorizontal.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FlipHorizontal: ImageVector + get() { + if (_flipHorizontal != null) { + return _flipHorizontal!! + } + _flipHorizontal = fluentIcon(name = "Regular.FlipHorizontal") { + fluentPath { + moveTo(21.88f, 19.66f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.63f, 0.34f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineTo(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.43f, -0.31f) + lineToRelative(7.5f, 16.5f) + curveToRelative(0.1f, 0.23f, 0.09f, 0.5f, -0.05f, 0.72f) + close() + moveTo(14.5f, 6.2f) + verticalLineTo(18.5f) + horizontalLineToRelative(5.59f) + lineTo(14.5f, 6.21f) + close() + moveTo(2.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.45f, -0.71f) + lineToRelative(8.0f, -17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.95f, 0.21f) + verticalLineToRelative(17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-8.0f) + close() + } + } + return _flipHorizontal!! + } + +private var _flipHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlipVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlipVertical.kt new file mode 100644 index 00000000..7b65d723 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlipVertical.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FlipVertical: ImageVector + get() { + if (_flipVertical != null) { + return _flipVertical!! + } + _flipVertical = fluentIcon(name = "Regular.FlipVertical") { + fluentPath { + moveTo(19.66f, 2.12f) + curveToRelative(0.21f, 0.14f, 0.34f, 0.38f, 0.34f, 0.63f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineTo(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.31f, -1.43f) + lineToRelative(16.5f, -7.5f) + curveToRelative(0.23f, -0.1f, 0.5f, -0.09f, 0.72f, 0.05f) + close() + moveTo(6.2f, 9.5f) + horizontalLineTo(18.5f) + verticalLineTo(3.91f) + lineTo(6.21f, 9.5f) + close() + moveTo(20.0f, 21.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.71f, 0.45f) + lineToRelative(-17.0f, -8.0f) + arcTo(0.5f, 0.5f, 0.0f, false, true, 2.5f, 13.0f) + horizontalLineToRelative(17.0f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + verticalLineToRelative(8.0f) + close() + } + } + return _flipVertical!! + } + +private var _flipVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Flowchart.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Flowchart.kt new file mode 100644 index 00000000..406ba6ed --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Flowchart.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Flowchart: ImageVector + get() { + if (_flowchart != null) { + return _flowchart!! + } + _flowchart = fluentIcon(name = "Regular.Flowchart") { + fluentPath { + moveTo(5.25f, 3.0f) + curveTo(4.0f, 3.0f, 3.0f, 4.0f, 3.0f, 5.25f) + verticalLineToRelative(2.5f) + curveTo(3.0f, 9.0f, 4.0f, 10.0f, 5.25f, 10.0f) + horizontalLineToRelative(0.5f) + verticalLineToRelative(3.71f) + curveToRelative(-0.05f, 0.03f, -0.1f, 0.07f, -0.13f, 0.12f) + lineToRelative(-2.8f, 2.79f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 1.77f) + lineToRelative(2.8f, 2.79f) + curveToRelative(0.48f, 0.49f, 1.28f, 0.49f, 1.76f, 0.0f) + lineToRelative(2.8f, -2.8f) + lineToRelative(0.11f, -0.13f) + lineTo(14.0f, 18.25f) + verticalLineToRelative(0.5f) + curveTo(14.0f, 20.0f, 15.01f, 21.0f, 16.25f, 21.0f) + horizontalLineToRelative(2.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-2.5f) + curveTo(15.01f, 14.0f, 14.0f, 15.0f, 14.0f, 16.25f) + verticalLineToRelative(0.5f) + lineTo(10.3f, 16.75f) + curveToRelative(-0.03f, -0.05f, -0.07f, -0.09f, -0.12f, -0.13f) + lineToRelative(-2.79f, -2.8f) + arcToRelative(1.26f, 1.26f, 0.0f, false, false, -0.13f, -0.11f) + verticalLineToRelative(-3.7f) + horizontalLineToRelative(0.5f) + curveTo(9.0f, 10.0f, 10.0f, 9.0f, 10.0f, 7.74f) + verticalLineToRelative(-2.5f) + curveTo(10.0f, 4.0f, 9.0f, 3.0f, 7.75f, 3.0f) + horizontalLineToRelative(-2.5f) + close() + moveTo(4.5f, 5.25f) + curveToRelative(0.0f, -0.42f, 0.33f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.42f, 0.0f, 0.75f, 0.33f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.42f, -0.33f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-2.5f) + close() + moveTo(4.06f, 17.5f) + lineToRelative(2.44f, -2.44f) + lineToRelative(2.44f, 2.44f) + lineToRelative(-2.44f, 2.44f) + lineToRelative(-2.44f, -2.44f) + close() + moveTo(16.26f, 15.5f) + horizontalLineToRelative(2.49f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.42f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _flowchart!! + } + +private var _flowchart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlowchartCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlowchartCircle.kt new file mode 100644 index 00000000..f69c132f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FlowchartCircle.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FlowchartCircle: ImageVector + get() { + if (_flowchartCircle != null) { + return _flowchartCircle!! + } + _flowchartCircle = fluentIcon(name = "Regular.FlowchartCircle") { + fluentPath { + moveTo(7.25f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(0.5f) + verticalLineToRelative(2.69f) + lineToRelative(-1.78f, 1.78f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(1.78f, -1.78f) + horizontalLineToRelative(2.69f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.5f) + horizontalLineToRelative(-2.69f) + lineToRelative(-1.56f, -1.56f) + lineTo(9.25f, 10.5f) + horizontalLineToRelative(0.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.5f) + close() + moveTo(2.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) + close() + } + } + return _flowchartCircle!! + } + +private var _flowchartCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fluent.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fluent.kt new file mode 100644 index 00000000..19221174 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fluent.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Fluent: ImageVector + get() { + if (_fluent != null) { + return _fluent!! + } + _fluent = fluentIcon(name = "Regular.Fluent") { + fluentPath { + moveTo(12.41f, 2.5f) + horizontalLineToRelative(0.13f) + lineToRelative(0.11f, 0.02f) + lineToRelative(0.07f, 0.03f) + lineToRelative(6.0f, 3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 0.9f) + lineTo(13.62f, 9.0f) + lineToRelative(5.1f, 2.55f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 0.9f) + lineToRelative(-5.76f, 2.84f) + lineToRelative(0.04f, 5.7f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.75f, 0.44f) + lineToRelative(-6.0f, -3.5f) + arcTo(0.5f, 0.5f, 0.0f, false, true, 6.0f, 17.5f) + lineTo(6.0f, 5.96f) + lineToRelative(0.02f, -0.1f) + lineToRelative(0.02f, -0.06f) + lineToRelative(0.01f, -0.03f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.06f, -0.09f) + lineToRelative(0.07f, -0.06f) + lineToRelative(0.07f, -0.05f) + lineToRelative(6.08f, -3.04f) + lineToRelative(0.08f, -0.02f) + close() + moveTo(7.0f, 12.82f) + verticalLineToRelative(4.4f) + lineToRelative(5.0f, 2.92f) + lineToRelative(-0.04f, -4.82f) + lineTo(7.0f, 12.81f) + close() + moveTo(7.62f, 12.02f) + lineTo(12.0f, 14.2f) + lineTo(12.0f, 9.83f) + lineTo(7.61f, 12.0f) + close() + moveTo(12.99f, 9.82f) + verticalLineToRelative(4.34f) + lineTo(17.39f, 12.0f) + lineToRelative(-4.39f, -2.2f) + close() + moveTo(7.0f, 11.19f) + lineToRelative(4.37f, -2.17f) + lineTo(7.0f, 6.82f) + verticalLineToRelative(4.37f) + close() + moveTo(12.0f, 3.81f) + lineTo(7.62f, 6.01f) + lineTo(11.99f, 8.21f) + verticalLineToRelative(-4.4f) + close() + moveTo(13.0f, 8.19f) + lineTo(17.37f, 6.0f) + lineTo(13.0f, 3.8f) + verticalLineToRelative(4.4f) + close() + } + } + return _fluent!! + } + +private var _fluent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fluid.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fluid.kt new file mode 100644 index 00000000..cd17c622 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fluid.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Fluid: ImageVector + get() { + if (_fluid != null) { + return _fluid!! + } + _fluid = fluentIcon(name = "Regular.Fluid") { + fluentPath { + moveTo(11.0f, 5.0f) + horizontalLineToRelative(5.75f) + curveTo(17.98f, 5.0f, 19.0f, 6.0f, 19.0f, 7.25f) + lineTo(19.0f, 11.0f) + horizontalLineToRelative(-1.5f) + lineTo(17.5f, 7.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(11.0f, 6.5f) + lineTo(11.0f, 5.0f) + close() + moveTo(6.5f, 11.0f) + verticalLineToRelative(5.75f) + curveToRelative(0.0f, 0.4f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(11.0f, 17.5f) + lineTo(11.0f, 19.0f) + lineTo(7.25f, 19.0f) + curveTo(6.01f, 19.0f, 5.0f, 17.98f, 5.0f, 16.75f) + lineTo(5.0f, 11.0f) + horizontalLineToRelative(1.5f) + close() + moveTo(2.0f, 4.25f) + curveTo(2.0f, 3.01f, 3.0f, 2.0f, 4.25f, 2.0f) + horizontalLineToRelative(3.5f) + curveTo(8.99f, 2.0f, 10.0f, 3.0f, 10.0f, 4.25f) + verticalLineToRelative(3.5f) + curveTo(10.0f, 8.99f, 9.0f, 10.0f, 7.75f, 10.0f) + horizontalLineToRelative(-3.5f) + curveTo(3.01f, 10.0f, 2.0f, 9.0f, 2.0f, 7.75f) + verticalLineToRelative(-3.5f) + close() + moveTo(4.25f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.5f) + close() + moveTo(12.0f, 14.25f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(5.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(5.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-5.5f) + curveTo(13.01f, 22.0f, 12.0f, 21.0f, 12.0f, 19.75f) + verticalLineToRelative(-5.5f) + close() + moveTo(14.25f, 13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(5.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(5.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-5.5f) + close() + } + } + return _fluid!! + } + +private var _fluid: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderAdd.kt new file mode 100644 index 00000000..a9090d75 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderAdd.kt @@ -0,0 +1,97 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FolderAdd: ImageVector + get() { + if (_folderAdd != null) { + return _folderAdd!! + } + _folderAdd = fluentIcon(name = "Regular.FolderAdd") { + fluentPath { + moveTo(17.5f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(17.5f, 13.0f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) + lineToRelative(-0.01f, 0.1f) + lineTo(17.0f, 16.0f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(0.18f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) + lineToRelative(0.1f, 0.01f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(2.6f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + horizontalLineToRelative(0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) + lineToRelative(0.01f, -0.1f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + verticalLineToRelative(-0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) + lineToRelative(-0.1f, -0.01f) + lineTo(18.0f, 16.0f) + verticalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) + horizontalLineToRelative(-0.09f) + close() + moveTo(8.2f, 4.0f) + curveToRelative(0.47f, 0.0f, 0.92f, 0.14f, 1.3f, 0.4f) + lineToRelative(0.15f, 0.12f) + lineToRelative(2.37f, 1.98f) + horizontalLineToRelative(7.73f) + curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) + lineToRelative(0.01f, 0.16f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(3.06f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) + lineTo(20.5f, 8.75f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-7.73f) + lineTo(9.65f, 9.98f) + curveToRelative(-0.36f, 0.3f, -0.8f, 0.47f, -1.25f, 0.51f) + lineToRelative(-0.2f, 0.01f) + lineTo(3.5f, 10.5f) + verticalLineToRelative(7.25f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(7.06f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(4.25f, 20.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(2.0f, 17.75f) + lineTo(2.0f, 6.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 4.0f) + horizontalLineToRelative(3.96f) + close() + moveTo(8.2f, 5.5f) + lineTo(4.26f, 5.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + lineTo(3.51f, 9.0f) + horizontalLineToRelative(4.7f) + curveToRelative(0.15f, 0.0f, 0.28f, -0.04f, 0.4f, -0.11f) + lineToRelative(0.09f, -0.06f) + lineToRelative(1.89f, -1.58f) + lineToRelative(-1.9f, -1.58f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.37f, -0.16f) + lineToRelative(-0.1f, -0.01f) + close() + } + } + return _folderAdd!! + } + +private var _folderAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderArrowLeft.kt new file mode 100644 index 00000000..685221f2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderArrowLeft.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FolderArrowLeft: ImageVector + get() { + if (_folderArrowLeft != null) { + return _folderArrowLeft!! + } + _folderArrowLeft = fluentIcon(name = "Regular.FolderArrowLeft") { + fluentPath { + moveTo(9.5f, 4.4f) + curveToRelative(-0.38f, -0.26f, -0.83f, -0.4f, -1.3f, -0.4f) + lineTo(4.1f, 4.0f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 6.26f) + lineTo(2.0f, 17.9f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 20.0f) + horizontalLineToRelative(7.77f) + curveToRelative(-0.3f, -0.46f, -0.53f, -0.97f, -0.7f, -1.5f) + lineTo(4.14f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) + lineTo(3.49f, 10.5f) + horizontalLineToRelative(4.9f) + curveToRelative(0.46f, -0.05f, 0.9f, -0.23f, 1.25f, -0.52f) + lineTo(12.02f, 8.0f) + horizontalLineToRelative(7.83f) + curveToRelative(0.37f, 0.06f, 0.65f, 0.37f, 0.65f, 0.75f) + verticalLineToRelative(1.98f) + curveToRelative(0.55f, 0.29f, 1.06f, 0.65f, 1.5f, 1.08f) + lineTo(22.0f, 8.6f) + lineToRelative(-0.02f, -0.16f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.23f, -1.94f) + horizontalLineToRelative(-7.73f) + lineTo(9.65f, 4.52f) + lineToRelative(-0.16f, -0.12f) + close() + moveTo(4.24f, 5.5f) + horizontalLineToRelative(4.06f) + curveToRelative(0.14f, 0.03f, 0.27f, 0.08f, 0.38f, 0.17f) + lineToRelative(1.89f, 1.58f) + lineToRelative(-1.9f, 1.58f) + lineToRelative(-0.08f, 0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.4f, 0.11f) + lineTo(3.5f, 9.0f) + lineTo(3.5f, 6.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) + close() + moveTo(17.5f, 22.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, 11.0f) + close() + moveTo(20.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + horizontalLineToRelative(-4.8f) + lineToRelative(1.65f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineTo(15.71f, 17.0f) + horizontalLineToRelative(4.79f) + close() + } + } + return _folderArrowLeft!! + } + +private var _folderArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderArrowRight.kt new file mode 100644 index 00000000..34faef5d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderArrowRight.kt @@ -0,0 +1,102 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FolderArrowRight: ImageVector + get() { + if (_folderArrowRight != null) { + return _folderArrowRight!! + } + _folderArrowRight = fluentIcon(name = "Regular.FolderArrowRight") { + fluentPath { + moveTo(17.5f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(8.2f, 4.0f) + curveToRelative(0.47f, 0.0f, 0.92f, 0.14f, 1.3f, 0.4f) + lineToRelative(0.15f, 0.12f) + lineToRelative(2.37f, 1.98f) + horizontalLineToRelative(7.73f) + curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) + lineToRelative(0.01f, 0.16f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(3.06f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) + lineTo(20.5f, 8.75f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-7.73f) + lineTo(9.65f, 9.98f) + curveToRelative(-0.36f, 0.3f, -0.8f, 0.47f, -1.25f, 0.51f) + lineToRelative(-0.2f, 0.01f) + lineTo(3.5f, 10.5f) + verticalLineToRelative(7.25f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(7.06f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(4.25f, 20.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(2.0f, 17.75f) + lineTo(2.0f, 6.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 4.0f) + horizontalLineToRelative(3.96f) + close() + moveTo(17.8f, 13.55f) + lineTo(17.72f, 13.59f) + lineTo(17.65f, 13.65f) + lineTo(17.59f, 13.72f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) + lineToRelative(0.06f, 0.07f) + lineTo(19.29f, 16.0f) + horizontalLineToRelative(-5.38f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + lineToRelative(-0.01f, 0.09f) + verticalLineToRelative(0.09f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + lineTo(14.0f, 17.0f) + horizontalLineToRelative(5.3f) + lineToRelative(-1.65f, 1.65f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(0.06f, -0.07f) + lineToRelative(2.53f, -2.53f) + lineToRelative(0.05f, -0.06f) + lineToRelative(0.03f, -0.07f) + lineToRelative(0.02f, -0.06f) + lineToRelative(0.02f, -0.08f) + verticalLineToRelative(-0.1f) + lineToRelative(-0.02f, -0.08f) + lineToRelative(-0.03f, -0.08f) + lineToRelative(-0.04f, -0.07f) + lineToRelative(-0.04f, -0.06f) + lineToRelative(-2.52f, -2.51f) + lineToRelative(-0.07f, -0.06f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.49f, -0.04f) + close() + moveTo(8.2f, 5.5f) + lineTo(4.26f, 5.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + lineTo(3.51f, 9.0f) + horizontalLineToRelative(4.7f) + curveToRelative(0.15f, 0.0f, 0.28f, -0.04f, 0.4f, -0.11f) + lineToRelative(0.09f, -0.06f) + lineToRelative(1.89f, -1.58f) + lineToRelative(-1.9f, -1.58f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.37f, -0.16f) + lineToRelative(-0.1f, -0.01f) + close() + } + } + return _folderArrowRight!! + } + +private var _folderArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderArrowUp.kt new file mode 100644 index 00000000..fd352031 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderArrowUp.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FolderArrowUp: ImageVector + get() { + if (_folderArrowUp != null) { + return _folderArrowUp!! + } + _folderArrowUp = fluentIcon(name = "Regular.FolderArrowUp") { + fluentPath { + moveTo(8.2f, 4.0f) + curveToRelative(0.47f, 0.0f, 0.92f, 0.14f, 1.3f, 0.4f) + lineToRelative(0.15f, 0.12f) + lineToRelative(2.37f, 1.98f) + horizontalLineToRelative(7.73f) + curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) + lineToRelative(0.01f, 0.16f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(3.06f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) + lineTo(20.5f, 8.75f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-7.73f) + lineTo(9.65f, 9.98f) + curveToRelative(-0.36f, 0.3f, -0.8f, 0.47f, -1.25f, 0.51f) + lineToRelative(-0.2f, 0.01f) + lineTo(3.5f, 10.5f) + verticalLineToRelative(7.25f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(7.06f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(4.25f, 20.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(2.0f, 17.75f) + lineTo(2.0f, 6.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 4.0f) + horizontalLineToRelative(3.96f) + close() + moveTo(8.2f, 5.5f) + lineTo(4.26f, 5.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + lineTo(3.51f, 9.0f) + horizontalLineToRelative(4.7f) + curveToRelative(0.15f, 0.0f, 0.28f, -0.04f, 0.4f, -0.11f) + lineToRelative(0.09f, -0.06f) + lineToRelative(1.89f, -1.58f) + lineToRelative(-1.9f, -1.58f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.37f, -0.16f) + lineToRelative(-0.1f, -0.01f) + close() + moveTo(23.0f, 16.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(17.0f, 14.7f) + verticalLineToRelative(4.8f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-4.8f) + lineToRelative(1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineTo(17.0f, 14.71f) + close() + } + } + return _folderArrowUp!! + } + +private var _folderArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderLink.kt new file mode 100644 index 00000000..45b34f82 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderLink.kt @@ -0,0 +1,93 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FolderLink: ImageVector + get() { + if (_folderLink != null) { + return _folderLink!! + } + _folderLink = fluentIcon(name = "Regular.FolderLink") { + fluentPath { + moveTo(18.25f, 14.5f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 0.2f, 7.5f) + horizontalLineToRelative(-1.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + horizontalLineToRelative(0.1f) + lineToRelative(1.0f, -0.01f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.15f, -4.5f) + horizontalLineToRelative(-1.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(1.1f) + close() + moveTo(13.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-1.1f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.15f, 4.5f) + horizontalLineToRelative(1.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-1.1f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.2f, -7.5f) + horizontalLineToRelative(1.2f) + close() + moveTo(8.21f, 4.0f) + curveToRelative(0.46f, 0.0f, 0.9f, 0.14f, 1.28f, 0.4f) + lineToRelative(0.16f, 0.12f) + lineToRelative(2.37f, 1.98f) + horizontalLineToRelative(7.73f) + curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) + lineToRelative(0.01f, 0.16f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(6.59f) + curveToRelative(-0.4f, -0.53f, -0.91f, -0.96f, -1.5f, -1.27f) + lineTo(20.5f, 8.75f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-7.73f) + lineTo(9.65f, 9.98f) + curveToRelative(-0.36f, 0.3f, -0.8f, 0.47f, -1.25f, 0.51f) + lineToRelative(-0.2f, 0.01f) + lineTo(3.5f, 10.5f) + verticalLineToRelative(7.25f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(3.76f) + curveToRelative(0.02f, 0.53f, 0.14f, 1.03f, 0.32f, 1.5f) + lineTo(4.25f, 20.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(2.0f, 17.75f) + lineTo(2.0f, 6.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 4.0f) + horizontalLineToRelative(3.96f) + close() + moveTo(18.25f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-5.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(5.6f) + close() + moveTo(8.21f, 5.5f) + lineTo(4.25f, 5.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + lineTo(3.5f, 9.0f) + horizontalLineToRelative(4.7f) + curveToRelative(0.15f, 0.0f, 0.28f, -0.04f, 0.4f, -0.11f) + lineToRelative(0.09f, -0.06f) + lineToRelative(1.89f, -1.58f) + lineToRelative(-1.9f, -1.58f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.37f, -0.16f) + lineToRelative(-0.1f, -0.01f) + close() + } + } + return _folderLink!! + } + +private var _folderLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderMail.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderMail.kt new file mode 100644 index 00000000..ca676723 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderMail.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FolderMail: ImageVector + get() { + if (_folderMail != null) { + return _folderMail!! + } + _folderMail = fluentIcon(name = "Regular.FolderMail") { + fluentPath { + moveTo(9.5f, 4.4f) + curveToRelative(-0.38f, -0.26f, -0.83f, -0.4f, -1.3f, -0.4f) + lineTo(4.1f, 4.0f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 6.26f) + lineTo(2.0f, 17.9f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 20.0f) + lineTo(11.0f, 20.0f) + verticalLineToRelative(-1.5f) + lineTo(4.15f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) + lineTo(3.5f, 10.5f) + horizontalLineToRelative(4.9f) + curveToRelative(0.46f, -0.05f, 0.9f, -0.23f, 1.25f, -0.52f) + lineTo(12.02f, 8.0f) + horizontalLineToRelative(7.83f) + curveToRelative(0.37f, 0.06f, 0.65f, 0.37f, 0.65f, 0.75f) + lineTo(20.5f, 13.0f) + horizontalLineToRelative(0.5f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 1.0f, 0.17f) + lineTo(22.0f, 8.6f) + lineToRelative(-0.02f, -0.16f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.23f, -1.94f) + horizontalLineToRelative(-7.73f) + lineTo(9.65f, 4.52f) + lineToRelative(-0.16f, -0.12f) + close() + moveTo(4.24f, 5.5f) + horizontalLineToRelative(4.06f) + curveToRelative(0.14f, 0.03f, 0.27f, 0.08f, 0.38f, 0.17f) + lineToRelative(1.89f, 1.58f) + lineToRelative(-1.9f, 1.58f) + lineToRelative(-0.08f, 0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.4f, 0.11f) + lineTo(3.5f, 9.0f) + lineTo(3.5f, 6.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) + close() + moveTo(17.5f, 18.93f) + lineTo(12.0f, 15.73f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 14.0f, 14.0f) + horizontalLineToRelative(7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 1.97f) + lineToRelative(-5.49f, 2.96f) + close() + moveTo(17.73f, 19.94f) + lineTo(23.0f, 17.11f) + lineTo(23.0f, 21.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + verticalLineToRelative(-4.13f) + lineToRelative(5.25f, 3.06f) + curveToRelative(0.15f, 0.09f, 0.33f, 0.1f, 0.49f, 0.01f) + close() + } + } + return _folderMail!! + } + +private var _folderMail: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderOpen.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderOpen.kt new file mode 100644 index 00000000..52019f60 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderOpen.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FolderOpen: ImageVector + get() { + if (_folderOpen != null) { + return _folderOpen!! + } + _folderOpen = fluentIcon(name = "Regular.FolderOpen") { + fluentPath { + moveTo(20.0f, 9.5f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-5.72f) + lineTo(9.64f, 4.52f) + curveToRelative(-0.4f, -0.34f, -0.9f, -0.52f, -1.43f, -0.52f) + lineTo(4.25f, 4.0f) + curveTo(3.01f, 4.0f, 2.0f, 5.0f, 2.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(2.0f, 18.99f, 3.0f, 20.0f, 4.25f, 20.0f) + lineTo(18.47f, 20.0f) + curveToRelative(0.8f, 0.0f, 1.5f, -0.55f, 1.7f, -1.33f) + lineToRelative(1.75f, -7.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.7f, -2.17f) + lineTo(20.0f, 9.5f) + close() + moveTo(4.25f, 5.5f) + horizontalLineToRelative(3.96f) + curveToRelative(0.17f, 0.0f, 0.34f, 0.06f, 0.48f, 0.17f) + lineToRelative(2.58f, 2.16f) + curveToRelative(0.14f, 0.1f, 0.3f, 0.17f, 0.48f, 0.17f) + horizontalLineToRelative(6.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.75f) + lineTo(6.42f, 9.5f) + curveToRelative(-1.03f, 0.0f, -1.93f, 0.7f, -2.18f, 1.7f) + lineToRelative(-0.74f, 2.98f) + lineTo(3.5f, 6.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(5.7f, 11.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.72f, -0.57f) + horizontalLineToRelative(13.8f) + curveToRelative(0.16f, 0.0f, 0.28f, 0.15f, 0.24f, 0.31f) + lineToRelative(-1.75f, 7.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.24f, 0.19f) + lineTo(4.28f, 18.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.24f, -0.31f) + lineToRelative(1.66f, -6.62f) + close() + } + } + return _folderOpen!! + } + +private var _folderOpen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderPeople.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderPeople.kt new file mode 100644 index 00000000..7c4a27e5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderPeople.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FolderPeople: ImageVector + get() { + if (_folderPeople != null) { + return _folderPeople!! + } + _folderPeople = fluentIcon(name = "Regular.FolderPeople") { + fluentPath { + moveTo(8.2f, 4.0f) + curveToRelative(0.47f, 0.0f, 0.92f, 0.14f, 1.3f, 0.4f) + lineToRelative(0.15f, 0.12f) + lineToRelative(2.37f, 1.98f) + horizontalLineToRelative(7.73f) + curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) + lineToRelative(0.01f, 0.16f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(4.55f) + arcToRelative(2.74f, 2.74f, 0.0f, false, false, -1.5f, -0.29f) + lineTo(20.5f, 8.75f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-7.73f) + lineTo(9.65f, 9.98f) + curveToRelative(-0.36f, 0.3f, -0.8f, 0.47f, -1.25f, 0.51f) + lineToRelative(-0.2f, 0.01f) + lineTo(3.5f, 10.5f) + verticalLineToRelative(7.25f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(7.08f) + arcTo(3.02f, 3.02f, 0.0f, false, false, 11.0f, 20.0f) + lineTo(4.25f, 20.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(2.0f, 17.75f) + lineTo(2.0f, 6.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 4.0f) + horizontalLineToRelative(3.96f) + close() + moveTo(8.2f, 5.5f) + lineTo(4.26f, 5.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + lineTo(3.51f, 9.0f) + horizontalLineToRelative(4.7f) + curveToRelative(0.15f, 0.0f, 0.28f, -0.04f, 0.4f, -0.11f) + lineToRelative(0.09f, -0.06f) + lineToRelative(1.89f, -1.58f) + lineToRelative(-1.9f, -1.58f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.37f, -0.16f) + lineToRelative(-0.1f, -0.01f) + close() + moveTo(15.76f, 17.0f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, -4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) + close() + moveTo(15.76f, 23.0f) + curveToRelative(2.68f, 0.0f, 3.75f, -1.57f, 3.75f, -3.13f) + curveToRelative(0.0f, -1.03f, -0.72f, -1.87f, -1.6f, -1.87f) + horizontalLineToRelative(-4.3f) + curveToRelative(-0.88f, 0.0f, -1.6f, 0.84f, -1.6f, 1.88f) + curveToRelative(0.0f, 1.56f, 1.07f, 3.12f, 3.75f, 3.12f) + close() + moveTo(22.51f, 15.75f) + arcToRelative(1.75f, 1.75f, 0.0f, true, true, -3.5f, 0.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 3.5f, 0.0f) + close() + moveTo(19.92f, 22.0f) + curveToRelative(0.4f, -0.66f, 0.58f, -1.4f, 0.58f, -2.13f) + curveToRelative(0.0f, -0.47f, -0.11f, -0.95f, -0.32f, -1.37f) + horizontalLineToRelative(1.54f) + curveToRelative(0.7f, 0.0f, 1.28f, 0.59f, 1.28f, 1.31f) + curveToRelative(0.0f, 1.1f, -0.85f, 2.19f, -3.0f, 2.19f) + horizontalLineToRelative(-0.08f) + close() + } + } + return _folderPeople!! + } + +private var _folderPeople: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderProhibited.kt new file mode 100644 index 00000000..acee244e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderProhibited.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FolderProhibited: ImageVector + get() { + if (_folderProhibited != null) { + return _folderProhibited!! + } + _folderProhibited = fluentIcon(name = "Regular.FolderProhibited") { + fluentPath { + moveTo(17.5f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(20.8f, 14.25f) + lineTo(15.25f, 19.81f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 5.56f, -5.56f) + close() + moveTo(8.2f, 4.0f) + curveToRelative(0.47f, 0.0f, 0.92f, 0.14f, 1.3f, 0.4f) + lineToRelative(0.15f, 0.12f) + lineToRelative(2.37f, 1.98f) + horizontalLineToRelative(7.73f) + curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) + lineToRelative(0.01f, 0.16f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(3.06f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) + lineTo(20.5f, 8.75f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-7.73f) + lineTo(9.65f, 9.98f) + curveToRelative(-0.36f, 0.3f, -0.8f, 0.47f, -1.25f, 0.51f) + lineToRelative(-0.2f, 0.01f) + lineTo(3.5f, 10.5f) + verticalLineToRelative(7.25f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(7.06f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(4.25f, 20.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(2.0f, 17.75f) + lineTo(2.0f, 6.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 4.0f) + horizontalLineToRelative(3.96f) + close() + moveTo(17.5f, 12.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -3.3f, 6.25f) + lineToRelative(5.55f, -5.56f) + arcToRelative(3.98f, 3.98f, 0.0f, false, false, -2.25f, -0.69f) + close() + moveTo(8.2f, 5.5f) + lineTo(4.26f, 5.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + lineTo(3.51f, 9.0f) + horizontalLineToRelative(4.7f) + curveToRelative(0.15f, 0.0f, 0.28f, -0.04f, 0.4f, -0.11f) + lineToRelative(0.09f, -0.06f) + lineToRelative(1.89f, -1.58f) + lineToRelative(-1.9f, -1.58f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.37f, -0.16f) + lineToRelative(-0.1f, -0.01f) + close() + } + } + return _folderProhibited!! + } + +private var _folderProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderSwap.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderSwap.kt new file mode 100644 index 00000000..0b0612e4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderSwap.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FolderSwap: ImageVector + get() { + if (_folderSwap != null) { + return _folderSwap!! + } + _folderSwap = fluentIcon(name = "Regular.FolderSwap") { + fluentPath { + moveTo(8.2f, 4.0f) + curveToRelative(0.47f, 0.0f, 0.92f, 0.14f, 1.3f, 0.4f) + lineToRelative(0.15f, 0.12f) + lineToRelative(2.37f, 1.98f) + horizontalLineToRelative(7.73f) + curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) + lineToRelative(0.01f, 0.16f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(8.28f) + lineToRelative(-1.5f, -1.5f) + lineTo(20.5f, 8.75f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-7.73f) + lineTo(9.65f, 9.98f) + curveToRelative(-0.36f, 0.3f, -0.8f, 0.47f, -1.25f, 0.51f) + lineToRelative(-0.2f, 0.01f) + lineTo(3.5f, 10.5f) + verticalLineToRelative(7.25f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(4.77f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.5f, 1.5f) + lineTo(4.25f, 20.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(2.0f, 17.75f) + lineTo(2.0f, 6.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 4.0f) + horizontalLineToRelative(3.96f) + close() + moveTo(8.2f, 5.5f) + lineTo(4.26f, 5.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + lineTo(3.51f, 9.0f) + horizontalLineToRelative(4.7f) + curveToRelative(0.15f, 0.0f, 0.28f, -0.04f, 0.4f, -0.11f) + lineToRelative(0.09f, -0.06f) + lineToRelative(1.89f, -1.58f) + lineToRelative(-1.9f, -1.58f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.37f, -0.16f) + lineToRelative(-0.1f, -0.01f) + close() + moveTo(13.78f, 16.79f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.06f) + lineToRelative(2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.07f) + lineToRelative(-1.22f, -1.22f) + horizontalLineToRelative(6.88f) + lineToRelative(-1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.06f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineTo(19.44f, 18.0f) + horizontalLineToRelative(-6.87f) + lineToRelative(1.21f, -1.21f) + close() + } + } + return _folderSwap!! + } + +private var _folderSwap: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderSync.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderSync.kt new file mode 100644 index 00000000..6701c71b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderSync.kt @@ -0,0 +1,95 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FolderSync: ImageVector + get() { + if (_folderSync != null) { + return _folderSync!! + } + _folderSync = fluentIcon(name = "Regular.FolderSync") { + fluentPath { + moveTo(8.2f, 4.0f) + curveToRelative(0.47f, 0.0f, 0.92f, 0.14f, 1.3f, 0.4f) + lineToRelative(0.15f, 0.12f) + lineToRelative(2.37f, 1.98f) + horizontalLineToRelative(7.73f) + curveToRelative(1.14f, 0.0f, 2.08f, 0.84f, 2.23f, 1.94f) + lineToRelative(0.01f, 0.16f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(3.06f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) + lineTo(20.5f, 8.75f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-7.73f) + lineTo(9.65f, 9.98f) + curveToRelative(-0.36f, 0.3f, -0.8f, 0.47f, -1.25f, 0.51f) + lineToRelative(-0.2f, 0.01f) + lineTo(3.5f, 10.5f) + verticalLineToRelative(7.25f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(7.06f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(4.25f, 20.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(2.0f, 17.75f) + lineTo(2.0f, 6.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 4.0f) + horizontalLineToRelative(3.96f) + close() + moveTo(8.2f, 5.5f) + lineTo(4.26f, 5.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + lineTo(3.51f, 9.0f) + horizontalLineToRelative(4.7f) + curveToRelative(0.15f, 0.0f, 0.28f, -0.04f, 0.4f, -0.11f) + lineToRelative(0.09f, -0.06f) + lineToRelative(1.89f, -1.58f) + lineToRelative(-1.9f, -1.58f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.37f, -0.16f) + lineToRelative(-0.1f, -0.01f) + close() + moveTo(12.0f, 16.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) + close() + moveTo(20.5f, 13.0f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + verticalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.8f, -0.59f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) + verticalLineToRelative(-0.55f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + close() + moveTo(15.0f, 18.95f) + verticalLineToRelative(0.55f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.77f, 0.65f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) + close() + } + } + return _folderSync!! + } + +private var _folderSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderZip.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderZip.kt new file mode 100644 index 00000000..e81fd93a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FolderZip.kt @@ -0,0 +1,94 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FolderZip: ImageVector + get() { + if (_folderZip != null) { + return _folderZip!! + } + _folderZip = fluentIcon(name = "Regular.FolderZip") { + fluentPath { + moveTo(9.5f, 4.4f) + curveToRelative(-0.38f, -0.26f, -0.83f, -0.4f, -1.3f, -0.4f) + lineTo(4.1f, 4.0f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 6.26f) + lineTo(2.0f, 17.9f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 4.26f, 20.0f) + lineTo(19.9f, 20.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.1f, -2.25f) + lineTo(22.0f, 8.6f) + lineToRelative(-0.02f, -0.16f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.23f, -1.94f) + horizontalLineToRelative(-7.73f) + lineTo(9.65f, 4.52f) + lineToRelative(-0.16f, -0.12f) + close() + moveTo(13.5f, 8.0f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.4f, 0.33f, 0.75f, 0.75f, 0.75f) + lineTo(15.0f, 11.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(15.0f, 13.5f) + lineTo(15.0f, 15.0f) + horizontalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(15.0f, 16.5f) + verticalLineToRelative(2.0f) + lineTo(4.15f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) + lineTo(3.5f, 10.5f) + horizontalLineToRelative(4.9f) + curveToRelative(0.46f, -0.05f, 0.9f, -0.23f, 1.25f, -0.52f) + lineTo(12.02f, 8.0f) + horizontalLineToRelative(1.48f) + close() + moveTo(16.5f, 18.0f) + horizontalLineToRelative(0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.25f) + lineTo(16.5f, 15.0f) + horizontalLineToRelative(0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.25f) + lineTo(16.5f, 11.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(18.0f, 8.0f) + horizontalLineToRelative(1.85f) + curveToRelative(0.37f, 0.06f, 0.65f, 0.37f, 0.65f, 0.75f) + verticalLineToRelative(9.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, 0.65f) + lineTo(16.5f, 18.5f) + lineTo(16.5f, 18.0f) + close() + moveTo(16.5f, 8.0f) + verticalLineToRelative(1.5f) + lineTo(15.0f, 9.5f) + lineTo(15.0f, 8.0f) + horizontalLineToRelative(1.5f) + close() + moveTo(4.25f, 5.5f) + horizontalLineToRelative(4.06f) + curveToRelative(0.14f, 0.03f, 0.27f, 0.08f, 0.38f, 0.17f) + lineToRelative(1.89f, 1.58f) + lineToRelative(-1.9f, 1.58f) + lineToRelative(-0.08f, 0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.4f, 0.11f) + lineTo(3.5f, 9.0f) + lineTo(3.5f, 6.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) + close() + } + } + return _folderZip!! + } + +private var _folderZip: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FontDecrease.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FontDecrease.kt new file mode 100644 index 00000000..bf2e7c1c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FontDecrease.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FontDecrease: ImageVector + get() { + if (_fontDecrease != null) { + return _fontDecrease!! + } + _fontDecrease = fluentIcon(name = "Regular.FontDecrease") { + fluentPath { + moveTo(16.25f, 2.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, 1.1f) + lineTo(18.0f, 5.8f) + curveToRelative(0.28f, 0.26f, 0.72f, 0.26f, 1.0f, 0.0f) + lineToRelative(2.75f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.0f, -1.1f) + lineTo(18.5f, 4.24f) + lineTo(16.25f, 2.2f) + close() + moveTo(12.0f, 4.0f) + curveToRelative(0.3f, 0.0f, 0.58f, 0.19f, 0.7f, 0.47f) + lineToRelative(5.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.4f, 0.56f) + lineTo(15.25f, 15.0f) + horizontalLineToRelative(-6.5f) + lineToRelative(-1.8f, 4.53f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.4f, -0.56f) + lineToRelative(5.75f, -14.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 12.0f, 4.0f) + close() + moveTo(12.0f, 6.78f) + lineTo(9.34f, 13.5f) + horizontalLineToRelative(5.32f) + lineTo(12.0f, 6.78f) + close() + } + } + return _fontDecrease!! + } + +private var _fontDecrease: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FontIncrease.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FontIncrease.kt new file mode 100644 index 00000000..fb3baa34 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FontIncrease.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FontIncrease: ImageVector + get() { + if (_fontIncrease != null) { + return _fontIncrease!! + } + _fontIncrease = fluentIcon(name = "Regular.FontIncrease") { + fluentPath { + moveTo(15.2f, 5.75f) + curveToRelative(0.27f, 0.31f, 0.75f, 0.33f, 1.05f, 0.05f) + lineToRelative(2.25f, -2.04f) + lineToRelative(2.25f, 2.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.0f, -1.1f) + lineTo(19.0f, 2.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, 0.0f) + lineToRelative(-2.75f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.05f, 1.05f) + close() + moveTo(12.0f, 4.0f) + curveToRelative(0.3f, 0.0f, 0.58f, 0.19f, 0.7f, 0.47f) + lineToRelative(5.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.4f, 0.56f) + lineTo(15.25f, 15.0f) + horizontalLineToRelative(-6.5f) + lineToRelative(-1.8f, 4.53f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.4f, -0.56f) + lineToRelative(5.75f, -14.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 12.0f, 4.0f) + close() + moveTo(9.34f, 13.5f) + horizontalLineToRelative(5.32f) + lineTo(12.0f, 6.78f) + lineTo(9.34f, 13.5f) + close() + } + } + return _fontIncrease!! + } + +private var _fontIncrease: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FontSpaceTrackingIn.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FontSpaceTrackingIn.kt new file mode 100644 index 00000000..5df170a0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FontSpaceTrackingIn.kt @@ -0,0 +1,99 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FontSpaceTrackingIn: ImageVector + get() { + if (_fontSpaceTrackingIn != null) { + return _fontSpaceTrackingIn!! + } + _fontSpaceTrackingIn = fluentIcon(name = "Regular.FontSpaceTrackingIn") { + fluentPath { + moveToRelative(8.45f, 16.15f) + lineToRelative(0.08f, 0.07f) + lineToRelative(2.25f, 2.25f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-2.25f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(0.97f, -0.97f) + lineTo(3.75f, 19.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(4.79f) + lineToRelative(-0.97f, -0.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + close() + moveTo(15.55f, 16.15f) + curveToRelative(0.26f, -0.2f, 0.62f, -0.2f, 0.89f, -0.01f) + lineToRelative(0.09f, 0.08f) + lineToRelative(0.07f, 0.08f) + curveToRelative(0.2f, 0.26f, 0.2f, 0.62f, 0.01f, 0.89f) + lineToRelative(-0.08f, 0.09f) + lineToRelative(-0.97f, 0.97f) + horizontalLineToRelative(4.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-4.79f) + lineToRelative(0.97f, 0.97f) + lineToRelative(0.07f, 0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.05f, 1.05f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-2.25f, -2.25f) + lineToRelative(-0.07f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.01f, -0.89f) + lineToRelative(0.08f, -0.09f) + lineToRelative(2.25f, -2.25f) + lineToRelative(0.08f, -0.07f) + close() + moveTo(8.84f, 2.28f) + lineToRelative(0.06f, 0.1f) + lineToRelative(0.05f, 0.1f) + lineToRelative(4.5f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.64f) + lineToRelative(-0.05f, -0.1f) + lineToRelative(-1.23f, -3.15f) + lineTo(5.68f, 11.37f) + lineToRelative(-1.23f, 3.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.88f, 0.46f) + lineToRelative(-0.1f, -0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.45f, -0.88f) + lineToRelative(0.03f, -0.1f) + lineToRelative(4.5f, -11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.29f, -0.2f) + close() + moveTo(19.6f, 2.38f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.38f, 0.55f) + lineToRelative(-0.03f, 0.1f) + lineToRelative(-4.5f, 11.5f) + lineToRelative(-0.05f, 0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.3f, 0.0f) + lineToRelative(-0.05f, -0.1f) + lineToRelative(-4.5f, -11.5f) + lineToRelative(-0.03f, -0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.36f, -0.83f) + lineToRelative(0.1f, -0.05f) + lineToRelative(0.1f, -0.03f) + curveToRelative(0.32f, -0.08f, 0.65f, 0.07f, 0.82f, 0.36f) + lineToRelative(0.05f, 0.1f) + lineToRelative(3.8f, 9.71f) + lineToRelative(3.8f, -9.71f) + lineToRelative(0.05f, -0.1f) + close() + moveTo(8.25f, 4.81f) + lineTo(6.27f, 9.87f) + horizontalLineToRelative(3.96f) + lineTo(8.25f, 4.8f) + close() + } + } + return _fontSpaceTrackingIn!! + } + +private var _fontSpaceTrackingIn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FontSpaceTrackingOut.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FontSpaceTrackingOut.kt new file mode 100644 index 00000000..4812f9d3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FontSpaceTrackingOut.kt @@ -0,0 +1,93 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FontSpaceTrackingOut: ImageVector + get() { + if (_fontSpaceTrackingOut != null) { + return _fontSpaceTrackingOut!! + } + _fontSpaceTrackingOut = fluentIcon(name = "Regular.FontSpaceTrackingOut") { + fluentPath { + moveToRelative(19.45f, 16.15f) + lineToRelative(0.08f, 0.07f) + lineToRelative(2.25f, 2.25f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-2.25f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(0.97f, -0.97f) + lineTo(4.56f, 19.75f) + lineToRelative(0.97f, 0.97f) + lineToRelative(0.07f, 0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.05f, 1.05f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-2.25f, -2.25f) + lineToRelative(-0.07f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.01f, -0.89f) + lineToRelative(0.08f, -0.09f) + lineToRelative(2.25f, -2.25f) + lineToRelative(0.08f, -0.07f) + curveToRelative(0.26f, -0.2f, 0.62f, -0.2f, 0.89f, -0.01f) + lineToRelative(0.1f, 0.08f) + lineToRelative(0.06f, 0.08f) + curveToRelative(0.2f, 0.26f, 0.2f, 0.62f, 0.01f, 0.89f) + lineToRelative(-0.08f, 0.09f) + lineToRelative(-0.97f, 0.97f) + horizontalLineToRelative(14.88f) + lineToRelative(-0.97f, -0.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + close() + moveTo(7.84f, 2.28f) + lineToRelative(0.06f, 0.1f) + lineToRelative(0.05f, 0.1f) + lineToRelative(4.5f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.64f) + lineToRelative(-0.05f, -0.1f) + lineToRelative(-1.23f, -3.15f) + lineTo(4.68f, 11.37f) + lineToRelative(-1.23f, 3.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.88f, 0.46f) + lineToRelative(-0.1f, -0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.45f, -0.88f) + lineToRelative(0.03f, -0.1f) + lineToRelative(4.5f, -11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.29f, -0.2f) + close() + moveTo(20.6f, 2.38f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.38f, 0.55f) + lineToRelative(-0.03f, 0.1f) + lineToRelative(-4.5f, 11.5f) + lineToRelative(-0.05f, 0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.3f, 0.0f) + lineToRelative(-0.05f, -0.1f) + lineToRelative(-4.5f, -11.5f) + lineToRelative(-0.03f, -0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.36f, -0.83f) + lineToRelative(0.1f, -0.05f) + lineToRelative(0.1f, -0.03f) + curveToRelative(0.32f, -0.08f, 0.65f, 0.07f, 0.82f, 0.36f) + lineToRelative(0.05f, 0.1f) + lineToRelative(3.8f, 9.71f) + lineToRelative(3.8f, -9.71f) + lineToRelative(0.05f, -0.1f) + close() + moveTo(7.25f, 4.81f) + lineTo(5.27f, 9.87f) + horizontalLineToRelative(3.96f) + lineTo(7.25f, 4.8f) + close() + } + } + return _fontSpaceTrackingOut!! + } + +private var _fontSpaceTrackingOut: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Food.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Food.kt new file mode 100644 index 00000000..b22f6518 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Food.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Food: ImageVector + get() { + if (_food != null) { + return _food!! + } + _food = fluentIcon(name = "Regular.Food") { + fluentPath { + moveTo(18.25f, 3.25f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineTo(19.0f, 4.0f) + verticalLineToRelative(16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(17.5f, 15.0f) + horizontalLineToRelative(-2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + lineTo(14.5f, 7.0f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 3.75f, -3.75f) + close() + moveTo(12.25f, 3.25f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineTo(13.0f, 4.0f) + verticalLineToRelative(4.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -3.25f, 3.93f) + lineTo(9.75f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-8.17f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -3.24f, -3.72f) + lineTo(5.0f, 8.0f) + lineTo(5.0f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + lineTo(6.5f, 8.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 1.75f, 2.39f) + lineTo(8.25f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + lineTo(9.75f, 10.39f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 1.74f, -2.2f) + lineTo(11.5f, 8.0f) + lineTo(11.5f, 4.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(17.5f, 13.5f) + lineTo(17.5f, 4.88f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 16.0f, 6.83f) + verticalLineToRelative(6.67f) + horizontalLineToRelative(1.5f) + lineTo(17.5f, 4.88f) + verticalLineToRelative(8.62f) + close() + } + } + return _food!! + } + +private var _food: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FoodApple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FoodApple.kt new file mode 100644 index 00000000..0b41a21b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FoodApple.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FoodApple: ImageVector + get() { + if (_foodApple != null) { + return _foodApple!! + } + _foodApple = fluentIcon(name = "Regular.FoodApple") { + fluentPath { + moveTo(8.4f, 11.23f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.3f, -1.47f) + arcToRelative(2.7f, 2.7f, 0.0f, false, false, -1.95f, 1.66f) + arcToRelative(4.74f, 4.74f, 0.0f, false, false, -0.13f, 3.01f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.46f, -0.36f) + arcTo(3.27f, 3.27f, 0.0f, false, true, 7.53f, 12.0f) + curveToRelative(0.2f, -0.46f, 0.52f, -0.7f, 0.87f, -0.78f) + close() + moveTo(5.47f, 3.42f) + arcTo(5.18f, 5.18f, 0.0f, false, false, 6.9f, 7.3f) + arcToRelative(5.12f, 5.12f, 0.0f, false, false, -3.66f, 4.22f) + curveToRelative(-0.33f, 2.35f, 0.15f, 4.75f, 1.37f, 6.8f) + lineToRelative(0.35f, 0.58f) + lineToRelative(0.04f, 0.07f) + lineToRelative(1.42f, 1.9f) + arcToRelative(3.46f, 3.46f, 0.0f, false, false, 5.28f, 0.34f) + arcToRelative(0.44f, 0.44f, 0.0f, false, true, 0.62f, 0.0f) + arcToRelative(3.46f, 3.46f, 0.0f, false, false, 5.28f, -0.34f) + lineToRelative(1.42f, -1.9f) + arcToRelative(0.74f, 0.74f, 0.0f, false, false, 0.04f, -0.07f) + lineToRelative(0.35f, -0.59f) + arcToRelative(10.46f, 10.46f, 0.0f, false, false, 1.37f, -6.8f) + arcToRelative(5.12f, 5.12f, 0.0f, false, false, -6.1f, -4.3f) + lineToRelative(-1.9f, 0.4f) + horizontalLineToRelative(-0.01f) + arcToRelative(8.7f, 8.7f, 0.0f, false, true, 0.39f, -2.34f) + curveToRelative(0.29f, -0.87f, 0.7f, -1.4f, 1.14f, -1.58f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.58f, -1.38f) + curveToRelative(-1.05f, 0.44f, -1.65f, 1.48f, -1.98f, 2.48f) + lineToRelative(-0.05f, 0.15f) + arcToRelative(5.19f, 5.19f, 0.0f, false, false, -4.92f, -2.8f) + curveToRelative(-0.7f, 0.04f, -1.25f, 0.59f, -1.29f, 1.28f) + close() + moveTo(6.97f, 3.62f) + arcToRelative(3.68f, 3.68f, 0.0f, false, true, 3.79f, 3.8f) + curveToRelative(-0.19f, 0.0f, -0.37f, 0.0f, -0.55f, -0.03f) + lineToRelative(-0.61f, -0.12f) + arcToRelative(3.67f, 3.67f, 0.0f, false, true, -2.64f, -3.64f) + close() + moveTo(9.03f, 8.68f) + lineTo(9.23f, 8.72f) + curveToRelative(0.25f, 0.07f, 0.49f, 0.12f, 0.73f, 0.15f) + lineToRelative(0.97f, 0.2f) + curveToRelative(0.7f, 0.15f, 1.43f, 0.15f, 2.14f, 0.0f) + lineToRelative(1.9f, -0.39f) + arcToRelative(3.62f, 3.62f, 0.0f, false, true, 4.32f, 3.04f) + arcToRelative(8.96f, 8.96f, 0.0f, false, true, -1.18f, 5.83f) + lineToRelative(-0.33f, 0.55f) + lineToRelative(-1.4f, 1.88f) + arcToRelative(1.96f, 1.96f, 0.0f, false, true, -2.98f, 0.19f) + curveToRelative(-0.77f, -0.8f, -2.03f, -0.8f, -2.8f, 0.0f) + curveToRelative(-0.84f, 0.87f, -2.26f, 0.78f, -2.99f, -0.2f) + lineTo(6.22f, 18.1f) + lineToRelative(-0.33f, -0.55f) + arcToRelative(8.96f, 8.96f, 0.0f, false, true, -1.18f, -5.83f) + arcToRelative(3.62f, 3.62f, 0.0f, false, true, 4.32f, -3.04f) + close() + } + } + return _foodApple!! + } + +private var _foodApple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FoodCake.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FoodCake.kt new file mode 100644 index 00000000..a4b3be1c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FoodCake.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FoodCake: ImageVector + get() { + if (_foodCake != null) { + return _foodCake!! + } + _foodCake = fluentIcon(name = "Regular.FoodCake") { + fluentPath { + moveTo(12.0f, 1.0f) + curveToRelative(-0.95f, 0.0f, -1.59f, 0.68f, -1.94f, 1.28f) + arcToRelative(4.15f, 4.15f, 0.0f, false, false, -0.56f, 1.97f) + curveToRelative(0.0f, 0.5f, 0.06f, 1.17f, 0.43f, 1.75f) + curveToRelative(0.41f, 0.63f, 1.1f, 1.0f, 2.07f, 1.0f) + curveToRelative(0.96f, 0.0f, 1.66f, -0.37f, 2.07f, -1.0f) + curveToRelative(0.37f, -0.58f, 0.43f, -1.26f, 0.43f, -1.75f) + curveToRelative(0.0f, -0.6f, -0.2f, -1.35f, -0.56f, -1.97f) + curveTo(13.59f, 1.68f, 12.95f, 1.0f, 12.0f, 1.0f) + close() + moveTo(11.0f, 4.25f) + curveToRelative(0.0f, -0.3f, 0.12f, -0.8f, 0.36f, -1.21f) + curveToRelative(0.25f, -0.42f, 0.49f, -0.54f, 0.64f, -0.54f) + curveToRelative(0.15f, 0.0f, 0.4f, 0.12f, 0.64f, 0.54f) + curveToRelative(0.24f, 0.4f, 0.36f, 0.9f, 0.36f, 1.21f) + curveToRelative(0.0f, 0.41f, -0.06f, 0.73f, -0.2f, 0.93f) + curveToRelative(-0.08f, 0.14f, -0.26f, 0.32f, -0.8f, 0.32f) + reflectiveCurveToRelative(-0.72f, -0.18f, -0.8f, -0.32f) + curveToRelative(-0.14f, -0.2f, -0.2f, -0.52f, -0.2f, -0.93f) + close() + moveTo(20.5f, 10.25f) + verticalLineToRelative(8.25f) + horizontalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(2.75f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.75f) + verticalLineToRelative(-8.25f) + curveTo(3.5f, 9.01f, 4.5f, 8.0f, 5.75f, 8.0f) + horizontalLineToRelative(12.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + close() + moveTo(5.0f, 10.25f) + verticalLineToRelative(2.1f) + lineToRelative(2.45f, 1.57f) + curveToRelative(0.41f, 0.27f, 0.94f, 0.27f, 1.35f, 0.0f) + lineToRelative(1.75f, -1.13f) + curveToRelative(0.88f, -0.56f, 2.0f, -0.58f, 2.9f, -0.05f) + lineToRelative(2.0f, 1.2f) + curveToRelative(0.43f, 0.25f, 0.96f, 0.23f, 1.37f, -0.05f) + lineTo(19.0f, 12.36f) + verticalLineToRelative(-2.11f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(5.75f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(17.68f, 15.12f) + curveToRelative(-0.89f, 0.62f, -2.06f, 0.67f, -2.99f, 0.11f) + lineToRelative(-2.0f, -1.2f) + curveToRelative(-0.42f, -0.24f, -0.93f, -0.23f, -1.33f, 0.02f) + lineToRelative(-1.74f, 1.13f) + curveToRelative(-0.91f, 0.59f, -2.08f, 0.59f, -2.99f, 0.0f) + lineTo(5.0f, 14.13f) + verticalLineToRelative(4.37f) + horizontalLineToRelative(14.0f) + verticalLineToRelative(-4.3f) + lineToRelative(-1.32f, 0.92f) + close() + } + } + return _foodCake!! + } + +private var _foodCake: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FoodCarrot.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FoodCarrot.kt new file mode 100644 index 00000000..9cb991eb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FoodCarrot.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FoodCarrot: ImageVector + get() { + if (_foodCarrot != null) { + return _foodCarrot!! + } + _foodCarrot = fluentIcon(name = "Regular.FoodCarrot") { + fluentPath { + moveTo(17.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(4.01f) + arcToRelative(4.56f, 4.56f, 0.0f, false, false, -6.3f, 1.22f) + lineToRelative(-7.34f, 10.8f) + curveToRelative(-0.56f, 0.82f, -0.45f, 1.92f, 0.25f, 2.61f) + curveToRelative(0.71f, 0.71f, 1.84f, 0.8f, 2.67f, 0.23f) + lineToRelative(10.79f, -7.46f) + arcTo(4.45f, 4.45f, 0.0f, false, false, 17.24f, 8.0f) + horizontalLineToRelative(4.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.69f) + lineToRelative(3.22f, -3.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineTo(17.5f, 5.44f) + lineTo(17.5f, 2.75f) + close() + moveTo(10.96f, 8.81f) + arcToRelative(3.04f, 3.04f, 0.0f, false, true, 4.65f, -0.44f) + arcToRelative(2.97f, 2.97f, 0.0f, false, true, -0.4f, 4.56f) + lineTo(4.4f, 20.4f) + arcToRelative(0.58f, 0.58f, 0.0f, false, true, -0.73f, -0.06f) + arcToRelative(0.56f, 0.56f, 0.0f, false, true, -0.07f, -0.72f) + lineToRelative(7.35f, -10.8f) + close() + } + } + return _foodCarrot!! + } + +private var _foodCarrot: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FoodChickenLeg.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FoodChickenLeg.kt new file mode 100644 index 00000000..efafb6f9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FoodChickenLeg.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FoodChickenLeg: ImageVector + get() { + if (_foodChickenLeg != null) { + return _foodChickenLeg!! + } + _foodChickenLeg = fluentIcon(name = "Regular.FoodChickenLeg") { + fluentPath { + moveTo(22.0f, 8.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, -11.9f, -1.1f) + arcToRelative(15.12f, 15.12f, 0.0f, false, true, -1.36f, 3.3f) + lineToRelative(-2.52f, 2.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.28f, 1.24f) + lineTo(4.46f, 16.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -1.42f, 4.53f) + curveToRelative(0.17f, 0.12f, 0.31f, 0.26f, 0.43f, 0.43f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 8.0f, 19.53f) + lineToRelative(2.04f, -2.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.24f, 0.29f) + lineToRelative(2.52f, -2.52f) + curveToRelative(0.48f, -0.29f, 1.48f, -0.8f, 3.32f, -1.36f) + arcTo(6.0f, 6.0f, 0.0f, false, false, 22.0f, 8.0f) + close() + moveTo(10.0f, 15.41f) + lineTo(6.88f, 18.53f) + curveToRelative(-0.29f, 0.3f, -0.38f, 0.67f, -0.38f, 0.97f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.81f, 0.58f) + curveToRelative(-0.21f, -0.3f, -0.48f, -0.56f, -0.77f, -0.77f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.58f, -1.81f) + curveToRelative(0.3f, 0.0f, 0.67f, -0.09f, 0.96f, -0.38f) + lineTo(8.58f, 14.0f) + lineTo(10.0f, 14.0f) + verticalLineToRelative(1.41f) + close() + moveTo(16.0f, 3.5f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 0.72f, 8.95f) + arcToRelative(16.28f, 16.28f, 0.0f, false, false, -3.91f, 1.68f) + lineToRelative(-1.31f, 1.3f) + verticalLineToRelative(-2.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(8.56f, 12.5f) + lineToRelative(1.3f, -1.3f) + arcToRelative(16.12f, 16.12f, 0.0f, false, false, 1.71f, -4.0f) + arcTo(4.5f, 4.5f, 0.0f, false, true, 16.0f, 3.5f) + close() + } + } + return _foodChickenLeg!! + } + +private var _foodChickenLeg: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FoodEgg.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FoodEgg.kt new file mode 100644 index 00000000..c328094b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FoodEgg.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FoodEgg: ImageVector + get() { + if (_foodEgg != null) { + return _foodEgg!! + } + _foodEgg = fluentIcon(name = "Regular.FoodEgg") { + fluentPath { + moveTo(11.5f, 12.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + curveTo(11.01f, 10.0f, 10.0f, 11.0f, 10.0f, 12.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + close() + moveTo(7.0f, 12.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, -11.0f, 0.0f) + close() + moveTo(12.5f, 8.5f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) + close() + moveTo(6.21f, 6.5f) + arcTo(8.38f, 8.38f, 0.0f, false, true, 13.5f, 2.0f) + curveToRelative(4.76f, 0.0f, 8.5f, 4.22f, 8.5f, 9.28f) + curveToRelative(0.0f, 0.56f, -0.05f, 1.12f, -0.14f, 1.66f) + curveToRelative(-0.05f, 0.34f, -0.04f, 0.7f, 0.03f, 1.08f) + arcToRelative(6.75f, 6.75f, 0.0f, false, true, -9.62f, 7.3f) + arcToRelative(4.4f, 4.4f, 0.0f, false, false, -2.57f, -0.4f) + curveToRelative(-0.3f, 0.06f, -0.63f, 0.08f, -0.95f, 0.08f) + curveTo(4.97f, 21.0f, 2.0f, 17.7f, 2.0f, 13.75f) + arcToRelative(7.38f, 7.38f, 0.0f, false, true, 3.16f, -6.14f) + curveToRelative(0.45f, -0.3f, 0.81f, -0.68f, 1.05f, -1.12f) + close() + moveTo(13.5f, 3.5f) + arcToRelative(6.88f, 6.88f, 0.0f, false, false, -5.97f, 3.72f) + arcTo(4.8f, 4.8f, 0.0f, false, true, 6.0f, 8.85f) + arcToRelative(5.88f, 5.88f, 0.0f, false, false, -2.5f, 4.9f) + curveToRelative(0.0f, 3.23f, 2.4f, 5.75f, 5.25f, 5.75f) + curveToRelative(0.25f, 0.0f, 0.5f, -0.02f, 0.73f, -0.05f) + arcToRelative(5.9f, 5.9f, 0.0f, false, true, 3.45f, 0.51f) + arcToRelative(5.25f, 5.25f, 0.0f, false, false, 7.48f, -5.67f) + arcToRelative(4.64f, 4.64f, 0.0f, false, true, -0.03f, -1.6f) + curveToRelative(0.08f, -0.46f, 0.12f, -0.93f, 0.12f, -1.41f) + curveToRelative(0.0f, -4.37f, -3.2f, -7.78f, -7.0f, -7.78f) + close() + } + } + return _foodEgg!! + } + +private var _foodEgg: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FoodFish.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FoodFish.kt new file mode 100644 index 00000000..278e6da0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FoodFish.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FoodFish: ImageVector + get() { + if (_foodFish != null) { + return _foodFish!! + } + _foodFish = fluentIcon(name = "Regular.FoodFish") { + fluentPath { + moveTo(9.51f, 11.72f) + curveToRelative(0.0f, -1.13f, 0.1f, -2.4f, 0.4f, -3.58f) + arcToRelative(6.3f, 6.3f, 0.0f, false, true, 1.5f, -2.98f) + arcToRelative(5.93f, 5.93f, 0.0f, false, true, 3.26f, -1.5f) + arcToRelative(14.2f, 14.2f, 0.0f, false, true, 3.69f, -0.08f) + curveToRelative(1.1f, 0.11f, 1.95f, 0.96f, 2.06f, 2.07f) + curveToRelative(0.1f, 1.09f, 0.14f, 2.42f, -0.08f, 3.69f) + arcToRelative(5.93f, 5.93f, 0.0f, false, true, -1.5f, 3.25f) + arcToRelative(6.3f, 6.3f, 0.0f, false, true, -2.97f, 1.52f) + curveToRelative(-1.19f, 0.3f, -2.46f, 0.38f, -3.6f, 0.38f) + curveToRelative(-1.0f, 0.0f, -1.81f, 0.82f, -1.82f, 1.82f) + curveToRelative(0.0f, 1.7f, -0.22f, 3.66f, -0.93f, 5.17f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.08f, -0.14f) + curveToRelative(-0.2f, -0.82f, -0.46f, -1.8f, -0.77f, -2.66f) + curveToRelative(-0.15f, -0.44f, -0.32f, -0.86f, -0.5f, -1.22f) + reflectiveCurveToRelative(-0.4f, -0.71f, -0.66f, -0.97f) + arcToRelative(3.76f, 3.76f, 0.0f, false, false, -0.97f, -0.65f) + curveToRelative(-0.36f, -0.19f, -0.78f, -0.36f, -1.22f, -0.5f) + curveToRelative(-0.87f, -0.32f, -1.85f, -0.58f, -2.66f, -0.78f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.14f, -0.08f) + curveToRelative(1.51f, -0.71f, 3.48f, -0.92f, 5.18f, -0.93f) + curveToRelative(1.0f, 0.0f, 1.82f, -0.82f, 1.81f, -1.83f) + close() + moveTo(10.36f, 4.1f) + curveToRelative(-1.0f, 1.0f, -1.58f, 2.34f, -1.91f, 3.68f) + arcTo(16.66f, 16.66f, 0.0f, false, false, 8.0f, 11.73f) + curveToRelative(0.0f, 0.17f, -0.14f, 0.32f, -0.32f, 0.32f) + curveToRelative(-1.77f, 0.0f, -4.01f, 0.22f, -5.83f, 1.09f) + curveToRelative(-0.68f, 0.32f, -0.97f, 1.0f, -0.82f, 1.63f) + curveToRelative(0.13f, 0.6f, 0.61f, 1.09f, 1.26f, 1.25f) + curveToRelative(0.8f, 0.19f, 1.72f, 0.44f, 2.52f, 0.72f) + curveToRelative(0.4f, 0.15f, 0.76f, 0.3f, 1.05f, 0.44f) + curveToRelative(0.3f, 0.15f, 0.49f, 0.28f, 0.58f, 0.37f) + curveToRelative(0.1f, 0.1f, 0.22f, 0.28f, 0.37f, 0.58f) + curveToRelative(0.15f, 0.29f, 0.3f, 0.65f, 0.44f, 1.05f) + curveToRelative(0.28f, 0.8f, 0.53f, 1.72f, 0.72f, 2.52f) + curveToRelative(0.16f, 0.65f, 0.65f, 1.13f, 1.25f, 1.26f) + curveToRelative(0.64f, 0.14f, 1.3f, -0.14f, 1.63f, -0.82f) + curveToRelative(0.87f, -1.82f, 1.08f, -4.06f, 1.1f, -5.82f) + curveToRelative(0.0f, -0.18f, 0.14f, -0.33f, 0.32f, -0.33f) + curveToRelative(1.2f, 0.0f, 2.6f, -0.1f, 3.95f, -0.43f) + arcToRelative(7.78f, 7.78f, 0.0f, false, false, 3.67f, -1.91f) + arcToRelative(7.4f, 7.4f, 0.0f, false, false, 1.92f, -4.06f) + curveToRelative(0.25f, -1.45f, 0.2f, -2.92f, 0.1f, -4.09f) + arcToRelative(3.77f, 3.77f, 0.0f, false, false, -3.41f, -3.4f) + arcToRelative(15.68f, 15.68f, 0.0f, false, false, -4.1f, 0.09f) + arcToRelative(7.4f, 7.4f, 0.0f, false, false, -4.05f, 1.91f) + close() + moveTo(16.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + } + } + return _foodFish!! + } + +private var _foodFish: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FoodGrains.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FoodGrains.kt new file mode 100644 index 00000000..5adc8b3a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FoodGrains.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FoodGrains: ImageVector + get() { + if (_foodGrains != null) { + return _foodGrains!! + } + _foodGrains = fluentIcon(name = "Regular.FoodGrains") { + fluentPath { + moveTo(11.39f, 2.29f) + arcToRelative(7.23f, 7.23f, 0.0f, false, false, -2.37f, 6.78f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, -5.13f, -0.98f) + arcToRelative(0.96f, 0.96f, 0.0f, false, false, -0.87f, 1.04f) + arcToRelative(8.97f, 8.97f, 0.0f, false, false, 2.06f, 4.78f) + curveToRelative(-0.41f, 0.0f, -0.83f, 0.02f, -1.25f, 0.07f) + curveToRelative(-0.5f, 0.07f, -0.85f, 0.5f, -0.81f, 1.0f) + arcTo(7.6f, 7.6f, 0.0f, false, false, 10.59f, 22.0f) + lineTo(13.4f, 22.0f) + arcToRelative(7.6f, 7.6f, 0.0f, false, false, 7.57f, -7.01f) + arcToRelative(0.94f, 0.94f, 0.0f, false, false, -0.81f, -1.0f) + arcToRelative(8.8f, 8.8f, 0.0f, false, false, -1.23f, -0.08f) + arcTo(8.97f, 8.97f, 0.0f, false, false, 21.0f, 9.13f) + arcToRelative(0.96f, 0.96f, 0.0f, false, false, -0.88f, -1.04f) + arcToRelative(8.55f, 8.55f, 0.0f, false, false, -5.14f, 0.98f) + arcTo(7.23f, 7.23f, 0.0f, false, false, 12.6f, 2.3f) + arcToRelative(0.93f, 0.93f, 0.0f, false, false, -1.22f, 0.0f) + close() + moveTo(12.0f, 11.73f) + arcToRelative(5.74f, 5.74f, 0.0f, false, true, 0.0f, -7.96f) + arcToRelative(5.74f, 5.74f, 0.0f, false, true, 0.0f, 7.96f) + close() + moveTo(12.0f, 17.33f) + arcToRelative(9.02f, 9.02f, 0.0f, false, false, -4.23f, -2.97f) + arcToRelative(7.75f, 7.75f, 0.0f, false, true, -3.18f, -4.8f) + arcToRelative(6.43f, 6.43f, 0.0f, false, true, 4.67f, 1.51f) + curveToRelative(1.03f, 0.87f, 1.48f, 1.93f, 1.82f, 2.72f) + lineToRelative(0.25f, 0.55f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.34f, 0.0f) + lineToRelative(0.25f, -0.55f) + arcToRelative(6.8f, 6.8f, 0.0f, false, true, 1.81f, -2.72f) + arcToRelative(6.46f, 6.46f, 0.0f, false, true, 4.7f, -1.52f) + arcToRelative(7.75f, 7.75f, 0.0f, false, true, -3.17f, 4.8f) + arcTo(9.02f, 9.02f, 0.0f, false, false, 12.0f, 17.33f) + close() + moveTo(12.64f, 19.04f) + curveToRelative(1.4f, -2.33f, 4.0f, -3.78f, 6.78f, -3.62f) + arcToRelative(6.1f, 6.1f, 0.0f, false, true, -6.01f, 5.08f) + lineTo(10.59f, 20.5f) + arcToRelative(6.1f, 6.1f, 0.0f, false, true, -6.01f, -5.08f) + arcToRelative(7.45f, 7.45f, 0.0f, false, true, 6.78f, 3.62f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.28f, 0.0f) + close() + } + } + return _foodGrains!! + } + +private var _foodGrains: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FoodPizza.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FoodPizza.kt new file mode 100644 index 00000000..73a991fc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FoodPizza.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FoodPizza: ImageVector + get() { + if (_foodPizza != null) { + return _foodPizza!! + } + _foodPizza = fluentIcon(name = "Regular.FoodPizza") { + fluentPath { + moveTo(9.0f, 10.99f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(14.0f, 12.99f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(9.0f, 16.99f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(5.0f, 4.66f) + arcToRelative(2.6f, 2.6f, 0.0f, false, true, 2.82f, -2.65f) + arcToRelative(20.78f, 20.78f, 0.0f, false, true, 13.44f, 6.83f) + arcToRelative(2.6f, 2.6f, 0.0f, false, true, -0.48f, 3.85f) + lineToRelative(-5.28f, 3.83f) + lineTo(15.5f, 18.24f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -2.06f, 1.72f) + curveToRelative(-0.2f, 0.83f, -0.93f, 1.53f, -1.94f, 1.53f) + curveToRelative(-0.7f, 0.0f, -1.26f, -0.34f, -1.61f, -0.82f) + lineToRelative(-1.33f, 0.96f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 5.0f, 19.81f) + lineTo(5.0f, 4.66f) + close() + moveTo(7.67f, 3.51f) + curveToRelative(-0.6f, -0.06f, -1.17f, 0.44f, -1.17f, 1.15f) + verticalLineToRelative(0.52f) + curveToRelative(5.25f, 0.22f, 9.91f, 2.75f, 12.98f, 6.6f) + lineToRelative(0.42f, -0.3f) + curveToRelative(0.58f, -0.43f, 0.65f, -1.18f, 0.25f, -1.64f) + arcTo(19.28f, 19.28f, 0.0f, false, false, 7.66f, 3.51f) + close() + moveTo(6.5f, 19.8f) + curveToRelative(0.0f, 0.6f, 0.69f, 0.96f, 1.19f, 0.6f) + curveToRelative(0.72f, -0.52f, 1.5f, -1.07f, 2.12f, -1.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.2f, 0.6f) + curveToRelative(0.0f, 0.28f, 0.2f, 0.5f, 0.49f, 0.5f) + curveToRelative(0.3f, 0.0f, 0.5f, -0.22f, 0.5f, -0.5f) + verticalLineToRelative(-1.24f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + arcToRelative(0.25f, 0.25f, 0.0f, true, false, 0.5f, 0.0f) + verticalLineToRelative(-2.12f) + curveToRelative(0.0f, -0.23f, 0.12f, -0.45f, 0.31f, -0.6f) + lineToRelative(3.96f, -2.86f) + arcTo(16.04f, 16.04f, 0.0f, false, false, 6.5f, 6.68f) + verticalLineToRelative(13.13f) + close() + } + } + return _foodPizza!! + } + +private var _foodPizza: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FoodToast.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FoodToast.kt new file mode 100644 index 00000000..fb136045 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FoodToast.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FoodToast: ImageVector + get() { + if (_foodToast != null) { + return _foodToast!! + } + _foodToast = fluentIcon(name = "Regular.FoodToast") { + fluentPath { + moveTo(8.25f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-4.5f) + close() + moveTo(9.0f, 13.5f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(3.0f) + horizontalLineTo(9.0f) + close() + moveTo(2.0f, 7.75f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 6.75f, 3.0f) + horizontalLineToRelative(10.5f) + arcToRelative(4.75f, 4.75f, 0.0f, false, true, 3.5f, 7.96f) + verticalLineToRelative(7.79f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-13.0f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-7.79f) + arcTo(4.74f, 4.74f, 0.0f, false, true, 2.0f, 7.75f) + close() + moveTo(6.75f, 4.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -2.23f, 5.61f) + curveToRelative(0.15f, 0.14f, 0.23f, 0.34f, 0.23f, 0.54f) + verticalLineToRelative(8.1f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(10.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-7.7f) + curveToRelative(0.0f, -0.24f, 0.12f, -0.47f, 0.33f, -0.61f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -1.83f, -5.94f) + horizontalLineToRelative(-8.0f) + close() + moveTo(19.5f, 7.75f) + curveToRelative(0.0f, 1.49f, -0.68f, 2.81f, -1.75f, 3.68f) + verticalLineToRelative(7.32f) + curveToRelative(0.0f, 0.26f, -0.05f, 0.52f, -0.13f, 0.75f) + horizontalLineToRelative(0.88f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-8.1f) + curveToRelative(0.0f, -0.2f, 0.08f, -0.4f, 0.23f, -0.54f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, -1.08f, -5.4f) + curveToRelative(0.69f, 0.82f, 1.1f, 1.88f, 1.1f, 3.04f) + close() + } + } + return _foodToast!! + } + +private var _foodToast: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Form.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Form.kt new file mode 100644 index 00000000..1dd3986b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Form.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Form: ImageVector + get() { + if (_form != null) { + return _form!! + } + _form = fluentIcon(name = "Regular.Form") { + fluentPath { + moveTo(6.0f, 10.75f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) + close() + moveTo(8.25f, 10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(8.25f, 14.0f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, 4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, -4.5f) + close() + moveTo(7.5f, 16.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(12.0f, 10.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(12.75f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + close() + moveTo(6.0f, 6.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(6.75f, 7.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 6.0f, 6.75f) + close() + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 6.25f) + close() + } + } + return _form!! + } + +private var _form: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FormMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FormMultiple.kt new file mode 100644 index 00000000..b5e8f8e6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FormMultiple.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FormMultiple: ImageVector + get() { + if (_formMultiple != null) { + return _formMultiple!! + } + _formMultiple = fluentIcon(name = "Regular.FormMultiple") { + fluentPath { + moveTo(6.0f, 12.25f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) + close() + moveTo(8.25f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + } + fluentPath { + moveTo(11.5f, 12.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + fluentPath { + moveTo(6.0f, 7.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-8.0f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 6.0f, 7.75f) + close() + } + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(9.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-9.0f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-9.0f) + close() + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(9.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(9.0f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 15.25f, 17.0f) + horizontalLineToRelative(-9.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.75f, -1.75f) + verticalLineToRelative(-9.0f) + close() + } + fluentPath { + moveTo(8.75f, 21.0f) + curveToRelative(-1.15f, 0.0f, -2.16f, -0.6f, -2.74f, -1.5f) + horizontalLineToRelative(9.74f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 3.75f, -3.75f) + verticalLineTo(6.01f) + curveToRelative(0.9f, 0.58f, 1.5f, 1.59f, 1.5f, 2.74f) + verticalLineToRelative(7.0f) + curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) + horizontalLineToRelative(-7.0f) + close() + } + } + return _formMultiple!! + } + +private var _formMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FormNew.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FormNew.kt new file mode 100644 index 00000000..0f1f9d60 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FormNew.kt @@ -0,0 +1,88 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FormNew: ImageVector + get() { + if (_formNew != null) { + return _formNew!! + } + _formNew = fluentIcon(name = "Regular.FormNew") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(5.77f) + curveToRelative(-0.3f, -0.46f, -0.53f, -0.97f, -0.7f, -1.5f) + lineTo(6.24f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.49f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(5.06f) + curveToRelative(0.53f, 0.18f, 1.04f, 0.42f, 1.5f, 0.71f) + lineTo(20.99f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(17.5f, 11.0f) + curveToRelative(0.15f, 0.0f, 0.3f, 0.0f, 0.45f, 0.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.7f, -1.02f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(15.0f, 11.5f) + curveToRelative(0.77f, -0.32f, 1.61f, -0.5f, 2.5f, -0.5f) + close() + moveTo(6.75f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(6.75f, 6.0f) + close() + moveTo(6.0f, 10.75f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) + close() + moveTo(8.25f, 10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(8.25f, 14.0f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, 4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, -4.5f) + close() + moveTo(7.5f, 16.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _formNew!! + } + +private var _formNew: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fps1.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fps1.kt new file mode 100644 index 00000000..e756f547 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fps1.kt @@ -0,0 +1,120 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Fps1: ImageVector + get() { + if (_fps1 != null) { + return _fps1!! + } + _fps1 = fluentIcon(name = "Regular.Fps1") { + fluentPath { + moveTo(6.0f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.36f, -0.44f) + lineToRelative(-0.02f, 0.02f) + arcToRelative(6.36f, 6.36f, 0.0f, false, true, -0.18f, 0.25f) + curveToRelative(-0.13f, 0.16f, -0.31f, 0.4f, -0.54f, 0.64f) + arcToRelative(7.3f, 7.3f, 0.0f, false, true, -1.54f, 1.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.78f, 1.28f) + curveToRelative(0.48f, -0.29f, 0.95f, -0.7f, 1.36f, -1.1f) + verticalLineToRelative(6.46f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-8.5f) + close() + moveTo(9.49f, 5.39f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 5.13f) + lineTo(8.0f, 5.1f) + arcTo(1.36f, 1.36f, 0.0f, false, true, 8.04f, 5.0f) + lineToRelative(0.08f, -0.26f) + curveToRelative(0.08f, -0.2f, 0.21f, -0.46f, 0.43f, -0.72f) + arcTo(3.04f, 3.04f, 0.0f, false, true, 11.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + curveToRelative(0.0f, 1.02f, -0.36f, 1.78f, -0.9f, 2.36f) + curveToRelative(-0.47f, 0.52f, -1.09f, 0.9f, -1.6f, 1.23f) + lineToRelative(-0.1f, 0.06f) + curveToRelative(-0.58f, 0.36f, -1.04f, 0.67f, -1.37f, 1.06f) + curveToRelative(-0.19f, 0.22f, -0.34f, 0.47f, -0.43f, 0.79f) + horizontalLineToRelative(3.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + curveToRelative(0.0f, -1.07f, 0.35f, -1.88f, 0.88f, -2.5f) + curveToRelative(0.5f, -0.6f, 1.17f, -1.03f, 1.72f, -1.37f) + lineToRelative(0.03f, -0.02f) + curveToRelative(0.58f, -0.36f, 1.03f, -0.65f, 1.36f, -1.0f) + curveToRelative(0.3f, -0.34f, 0.51f, -0.74f, 0.51f, -1.36f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + curveToRelative(-0.78f, 0.0f, -1.13f, 0.28f, -1.3f, 0.48f) + arcToRelative(1.12f, 1.12f, 0.0f, false, false, -0.21f, 0.4f) + close() + moveTo(17.99f, 3.0f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 15.0f, 6.0f) + verticalLineToRelative(4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 6.0f, 0.0f) + lineTo(21.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + close() + moveTo(16.5f, 6.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + lineTo(16.5f, 6.0f) + close() + moveTo(4.0f, 15.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(5.5f, 16.5f) + lineTo(5.5f, 18.0f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(5.5f, 19.5f) + verticalLineToRelative(1.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-5.48f) + close() + moveTo(10.25f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(11.0f, 19.5f) + horizontalLineToRelative(0.75f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, -4.5f) + horizontalLineToRelative(-1.5f) + close() + moveTo(11.75f, 18.0f) + lineTo(11.0f, 18.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(15.25f, 17.12f) + curveToRelative(0.0f, -1.17f, 0.95f, -2.12f, 2.13f, -2.12f) + lineTo(18.0f, 15.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + horizontalLineToRelative(-0.63f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, 1.25f) + horizontalLineToRelative(0.5f) + arcToRelative(2.13f, 2.13f, 0.0f, false, true, 0.0f, 4.25f) + horizontalLineToRelative(-0.62f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(0.63f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) + horizontalLineToRelative(-0.5f) + arcToRelative(2.13f, 2.13f, 0.0f, false, true, -2.13f, -2.13f) + close() + } + } + return _fps1!! + } + +private var _fps1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fps120.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fps120.kt new file mode 100644 index 00000000..96b261b7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fps120.kt @@ -0,0 +1,120 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Fps120: ImageVector + get() { + if (_fps120 != null) { + return _fps120!! + } + _fps120 = fluentIcon(name = "Regular.Fps120") { + fluentPath { + moveTo(6.0f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.36f, -0.44f) + lineToRelative(-0.02f, 0.02f) + arcToRelative(6.36f, 6.36f, 0.0f, false, true, -0.18f, 0.25f) + curveToRelative(-0.13f, 0.16f, -0.31f, 0.4f, -0.54f, 0.64f) + arcToRelative(7.3f, 7.3f, 0.0f, false, true, -1.54f, 1.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.78f, 1.28f) + curveToRelative(0.48f, -0.29f, 0.95f, -0.7f, 1.36f, -1.1f) + verticalLineToRelative(6.46f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-8.5f) + close() + moveTo(9.49f, 5.39f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 5.13f) + lineTo(8.0f, 5.1f) + arcTo(1.36f, 1.36f, 0.0f, false, true, 8.04f, 5.0f) + lineToRelative(0.08f, -0.26f) + curveToRelative(0.08f, -0.2f, 0.21f, -0.46f, 0.43f, -0.72f) + arcTo(3.04f, 3.04f, 0.0f, false, true, 11.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + curveToRelative(0.0f, 1.02f, -0.36f, 1.78f, -0.9f, 2.36f) + curveToRelative(-0.47f, 0.52f, -1.09f, 0.9f, -1.6f, 1.23f) + lineToRelative(-0.1f, 0.06f) + curveToRelative(-0.58f, 0.36f, -1.04f, 0.67f, -1.37f, 1.06f) + curveToRelative(-0.19f, 0.22f, -0.34f, 0.47f, -0.43f, 0.79f) + horizontalLineToRelative(3.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + curveToRelative(0.0f, -1.07f, 0.35f, -1.88f, 0.88f, -2.5f) + curveToRelative(0.5f, -0.6f, 1.17f, -1.03f, 1.72f, -1.37f) + lineToRelative(0.03f, -0.02f) + curveToRelative(0.58f, -0.36f, 1.03f, -0.65f, 1.36f, -1.0f) + curveToRelative(0.3f, -0.34f, 0.51f, -0.74f, 0.51f, -1.36f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + curveToRelative(-0.78f, 0.0f, -1.13f, 0.28f, -1.3f, 0.48f) + arcToRelative(1.12f, 1.12f, 0.0f, false, false, -0.21f, 0.4f) + close() + moveTo(17.99f, 3.0f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 15.0f, 6.0f) + verticalLineToRelative(4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 6.0f, 0.0f) + lineTo(21.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + close() + moveTo(16.5f, 6.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + lineTo(16.5f, 6.0f) + close() + moveTo(4.0f, 15.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(5.5f, 16.5f) + lineTo(5.5f, 18.0f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(5.5f, 19.5f) + verticalLineToRelative(1.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-5.48f) + close() + moveTo(10.25f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(11.0f, 19.5f) + horizontalLineToRelative(0.75f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, -4.5f) + horizontalLineToRelative(-1.5f) + close() + moveTo(11.75f, 18.0f) + lineTo(11.0f, 18.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(15.25f, 17.12f) + curveToRelative(0.0f, -1.17f, 0.95f, -2.12f, 2.13f, -2.12f) + lineTo(18.0f, 15.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + horizontalLineToRelative(-0.63f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, 1.25f) + horizontalLineToRelative(0.5f) + arcToRelative(2.13f, 2.13f, 0.0f, false, true, 0.0f, 4.25f) + horizontalLineToRelative(-0.62f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(0.63f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) + horizontalLineToRelative(-0.5f) + arcToRelative(2.13f, 2.13f, 0.0f, false, true, -2.13f, -2.13f) + close() + } + } + return _fps120!! + } + +private var _fps120: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fps2.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fps2.kt new file mode 100644 index 00000000..ec111f06 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fps2.kt @@ -0,0 +1,125 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Fps2: ImageVector + get() { + if (_fps2 != null) { + return _fps2!! + } + _fps2 = fluentIcon(name = "Regular.Fps2") { + fluentPath { + moveTo(3.0f, 4.09f) + verticalLineToRelative(-0.03f) + lineToRelative(0.04f, -0.12f) + curveToRelative(0.04f, -0.11f, 0.1f, -0.25f, 0.2f, -0.39f) + curveToRelative(0.2f, -0.26f, 0.55f, -0.55f, 1.26f, -0.55f) + curveToRelative(0.64f, 0.0f, 1.04f, 0.2f, 1.27f, 0.5f) + curveToRelative(0.23f, 0.3f, 0.35f, 0.76f, 0.24f, 1.42f) + curveToRelative(-0.07f, 0.38f, -0.26f, 0.61f, -0.57f, 0.8f) + curveToRelative(-0.24f, 0.16f, -0.52f, 0.28f, -0.85f, 0.41f) + lineToRelative(-0.43f, 0.18f) + curveToRelative(-0.5f, 0.21f, -1.05f, 0.5f, -1.47f, 1.0f) + arcTo(3.27f, 3.27f, 0.0f, false, false, 2.0f, 9.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, 0.5f) + horizontalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + lineTo(3.03f, 9.0f) + curveToRelative(0.07f, -0.49f, 0.23f, -0.81f, 0.43f, -1.05f) + curveToRelative(0.26f, -0.32f, 0.64f, -0.52f, 1.1f, -0.72f) + curveToRelative(0.1f, -0.05f, 0.2f, -0.1f, 0.32f, -0.14f) + curveToRelative(0.36f, -0.14f, 0.77f, -0.3f, 1.1f, -0.52f) + curveToRelative(0.49f, -0.31f, 0.89f, -0.76f, 1.01f, -1.49f) + curveToRelative(0.15f, -0.84f, 0.02f, -1.62f, -0.44f, -2.2f) + curveTo(6.1f, 2.29f, 5.36f, 2.0f, 4.5f, 2.0f) + arcToRelative(2.44f, 2.44f, 0.0f, false, false, -2.49f, 1.88f) + verticalLineToRelative(0.03f) + reflectiveCurveTo(2.0f, 4.0f, 2.0f, 3.92f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.98f, 0.18f) + close() + moveTo(13.0f, 4.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + verticalLineToRelative(3.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) + verticalLineToRelative(-3.0f) + close() + moveTo(17.0f, 7.5f) + verticalLineToRelative(-3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) + verticalLineToRelative(3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) + close() + moveTo(3.0f, 12.5f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(4.0f, 13.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(4.0f, 16.0f) + verticalLineToRelative(1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-5.0f) + close() + moveTo(8.0f, 12.5f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + lineTo(10.0f, 12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) + lineTo(9.0f, 16.0f) + verticalLineToRelative(1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-5.0f) + close() + moveTo(9.0f, 15.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(9.0f, 13.0f) + verticalLineToRelative(2.0f) + close() + moveTo(14.75f, 12.0f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, 3.5f) + horizontalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.76f) + arcToRelative(0.49f, 0.49f, 0.0f, false, true, -0.49f, -0.49f) + verticalLineToRelative(-0.01f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(0.01f) + curveToRelative(0.0f, 0.82f, 0.67f, 1.49f, 1.49f, 1.49f) + horizontalLineToRelative(0.76f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, -3.5f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.76f) + curveToRelative(0.27f, 0.0f, 0.49f, 0.22f, 0.49f, 0.49f) + verticalLineToRelative(0.01f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-0.01f) + curveToRelative(0.0f, -0.82f, -0.67f, -1.49f, -1.49f, -1.49f) + horizontalLineToRelative(-0.76f) + close() + moveTo(9.0f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, 0.5f) + lineTo(11.0f, 7.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-7.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + lineTo(11.0f, 6.0f) + lineTo(9.0f, 6.0f) + lineTo(9.0f, 2.5f) + close() + } + } + return _fps2!! + } + +private var _fps2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fps240.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fps240.kt new file mode 100644 index 00000000..2a0460af --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fps240.kt @@ -0,0 +1,122 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Fps240: ImageVector + get() { + if (_fps240 != null) { + return _fps240!! + } + _fps240 = fluentIcon(name = "Regular.Fps240") { + fluentPath { + moveTo(2.63f, 5.99f) + curveToRelative(0.4f, 0.07f, 0.78f, -0.2f, 0.86f, -0.6f) + verticalLineToRelative(-0.01f) + lineToRelative(0.03f, -0.1f) + curveToRelative(0.03f, -0.07f, 0.09f, -0.19f, 0.18f, -0.3f) + curveToRelative(0.17f, -0.2f, 0.52f, -0.48f, 1.3f, -0.48f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + curveToRelative(0.0f, 0.62f, -0.2f, 1.02f, -0.5f, 1.35f) + curveToRelative(-0.34f, 0.36f, -0.8f, 0.65f, -1.37f, 1.01f) + lineToRelative(-0.03f, 0.02f) + curveToRelative(-0.55f, 0.34f, -1.21f, 0.76f, -1.72f, 1.36f) + arcTo(3.72f, 3.72f, 0.0f, false, false, 2.0f, 12.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.6f, 11.5f) + curveToRelative(0.09f, -0.32f, 0.24f, -0.57f, 0.43f, -0.79f) + curveToRelative(0.33f, -0.4f, 0.8f, -0.7f, 1.37f, -1.06f) + lineToRelative(0.1f, -0.06f) + curveToRelative(0.51f, -0.32f, 1.12f, -0.7f, 1.6f, -1.23f) + curveToRelative(0.54f, -0.58f, 0.9f, -1.34f, 0.9f, -2.36f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + curveToRelative(-1.22f, 0.0f, -2.0f, 0.47f, -2.45f, 1.02f) + arcTo(2.62f, 2.62f, 0.0f, false, false, 2.0f, 5.11f) + verticalLineToRelative(0.01f) + curveToRelative(-0.07f, 0.41f, 0.2f, 0.8f, 0.62f, 0.87f) + close() + moveTo(16.0f, 5.99f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) + verticalLineToRelative(4.02f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.0f) + lineTo(16.0f, 6.0f) + close() + moveTo(19.0f, 4.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(4.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 3.0f, 0.0f) + lineTo(20.5f, 6.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + close() + moveTo(4.74f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(5.48f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(5.49f, 19.5f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(5.5f, 18.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.0f) + close() + moveTo(9.49f, 15.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 4.5f) + lineTo(11.0f, 19.5f) + verticalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-5.5f) + close() + moveTo(11.0f, 18.0f) + horizontalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + lineTo(11.0f, 16.5f) + lineTo(11.0f, 18.0f) + close() + moveTo(17.38f, 15.0f) + arcToRelative(2.13f, 2.13f, 0.0f, false, false, 0.0f, 4.25f) + horizontalLineToRelative(0.5f) + arcToRelative(0.62f, 0.62f, 0.0f, true, true, 0.0f, 1.25f) + horizontalLineToRelative(-0.63f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(0.63f) + arcToRelative(2.13f, 2.13f, 0.0f, false, false, 0.0f, -4.25f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.62f, 0.62f, 0.0f, true, true, 0.0f, -1.25f) + lineTo(18.0f, 16.5f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + horizontalLineToRelative(-0.63f) + close() + moveTo(14.25f, 3.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(13.5f, 9.0f) + lineTo(9.75f, 9.0f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 9.0f, 8.25f) + verticalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + lineTo(10.5f, 7.5f) + horizontalLineToRelative(3.0f) + lineTo(13.5f, 3.75f) + curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _fps240!! + } + +private var _fps240: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fps30.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fps30.kt new file mode 100644 index 00000000..9b767f19 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fps30.kt @@ -0,0 +1,118 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Fps30: ImageVector + get() { + if (_fps30 != null) { + return _fps30!! + } + _fps30 = fluentIcon(name = "Regular.Fps30") { + fluentPath { + moveTo(8.13f, 4.5f) + horizontalLineToRelative(-0.25f) + curveToRelative(-0.45f, 0.0f, -0.85f, 0.22f, -1.1f, 0.55f) + curveToRelative(-0.18f, 0.24f, -0.44f, 0.45f, -0.74f, 0.45f) + curveToRelative(-0.54f, 0.0f, -0.96f, -0.49f, -0.7f, -0.97f) + arcTo(2.87f, 2.87f, 0.0f, false, true, 7.87f, 3.0f) + horizontalLineToRelative(0.25f) + arcToRelative(2.88f, 2.88f, 0.0f, false, true, 1.93f, 5.0f) + arcToRelative(2.87f, 2.87f, 0.0f, false, true, -1.93f, 5.0f) + horizontalLineToRelative(-0.25f) + curveToRelative(-1.1f, 0.0f, -2.07f, -0.62f, -2.55f, -1.53f) + curveToRelative(-0.25f, -0.48f, 0.17f, -0.97f, 0.71f, -0.97f) + curveToRelative(0.3f, 0.0f, 0.56f, 0.21f, 0.74f, 0.45f) + curveToRelative(0.25f, 0.34f, 0.65f, 0.55f, 1.1f, 0.55f) + horizontalLineToRelative(0.25f) + arcToRelative(1.37f, 1.37f, 0.0f, true, false, 0.0f, -2.75f) + lineTo(8.0f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.13f) + arcToRelative(1.38f, 1.38f, 0.0f, false, false, 0.0f, -2.75f) + close() + moveTo(14.0f, 17.25f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + verticalLineToRelative(5.6f) + curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + lineTo(11.0f, 19.5f) + horizontalLineToRelative(0.9f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.1f, -2.25f) + close() + moveTo(11.0f, 16.5f) + horizontalLineToRelative(0.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, 1.5f) + lineTo(11.0f, 18.0f) + verticalLineToRelative(-1.5f) + close() + moveTo(20.0f, 17.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + horizontalLineToRelative(-0.78f) + arcToRelative(2.13f, 2.13f, 0.0f, false, false, 0.16f, 4.25f) + horizontalLineToRelative(0.59f) + arcToRelative(0.63f, 0.63f, 0.0f, false, true, -0.1f, 1.25f) + horizontalLineToRelative(-0.71f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.41f, -0.5f) + verticalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(0.78f) + arcToRelative(2.13f, 2.13f, 0.0f, false, false, -0.16f, -4.25f) + horizontalLineToRelative(-0.59f) + arcToRelative(0.63f, 0.63f, 0.0f, false, true, 0.1f, -1.25f) + horizontalLineToRelative(0.71f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.41f, 0.5f) + verticalLineToRelative(0.1f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 20.0f, 17.0f) + close() + moveTo(8.5f, 15.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + verticalLineToRelative(5.58f) + curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + lineTo(5.5f, 19.5f) + horizontalLineToRelative(1.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + lineTo(5.5f, 18.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(2.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(18.0f, 5.82f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 15.0f, 3.0f) + horizontalLineToRelative(-0.18f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 12.0f, 6.0f) + verticalLineToRelative(4.18f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 14.83f, 13.0f) + lineTo(15.0f, 13.0f) + horizontalLineToRelative(0.17f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 18.0f, 10.0f) + lineTo(18.0f, 5.83f) + close() + moveTo(15.0f, 4.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(4.15f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.35f, 1.34f) + lineToRelative(-0.16f, 0.01f) + horizontalLineToRelative(-0.14f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 13.5f, 10.0f) + lineTo(13.5f, 5.86f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 15.0f, 4.5f) + close() + } + } + return _fps30!! + } + +private var _fps30: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fps60.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fps60.kt new file mode 100644 index 00000000..2f9a46d3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fps60.kt @@ -0,0 +1,117 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Fps60: ImageVector + get() { + if (_fps60 != null) { + return _fps60!! + } + _fps60 = fluentIcon(name = "Regular.Fps60") { + fluentPath { + moveTo(11.75f, 15.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, 4.5f) + lineTo(11.0f, 19.5f) + verticalLineToRelative(1.75f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-5.5f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(1.5f) + close() + moveTo(18.0f, 15.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(18.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.5f) + horizontalLineToRelative(-0.72f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, -0.09f, 1.24f) + horizontalLineToRelative(0.6f) + arcToRelative(2.13f, 2.13f, 0.0f, false, true, 0.15f, 4.25f) + horizontalLineToRelative(-0.78f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 0.25f, 0.18f, 0.46f, 0.41f, 0.5f) + horizontalLineToRelative(0.72f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.09f, -1.23f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-0.5f) + arcToRelative(2.13f, 2.13f, 0.0f, false, true, -0.15f, -4.25f) + lineTo(18.0f, 15.0f) + close() + moveTo(7.75f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(5.5f, 16.5f) + lineTo(5.5f, 18.0f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(5.5f, 19.5f) + verticalLineToRelative(1.73f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-5.48f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(3.0f) + close() + moveTo(11.75f, 16.5f) + lineTo(11.0f, 16.5f) + lineTo(11.0f, 18.0f) + horizontalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(8.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) + verticalLineToRelative(0.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(9.5f, 5.85f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) + lineTo(6.5f, 7.4f) + arcTo(3.0f, 3.0f, 0.0f, true, true, 5.0f, 10.18f) + lineTo(5.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + close() + moveTo(15.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) + lineTo(18.0f, 10.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.82f, 3.0f) + horizontalLineToRelative(-0.37f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.8f, -2.82f) + lineTo(12.0f, 10.0f) + lineTo(12.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.82f, -3.0f) + lineTo(15.0f, 3.0f) + close() + moveTo(8.0f, 8.5f) + curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.35f) + lineTo(6.5f, 10.0f) + arcTo(1.5f, 1.5f, 0.0f, true, false, 8.0f, 8.5f) + close() + moveTo(15.0f, 4.5f) + curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.35f) + lineTo(13.5f, 10.0f) + curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.35f, 1.5f) + lineTo(15.15f, 11.5f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.34f, -1.35f) + lineToRelative(0.01f, -0.15f) + lineTo(16.5f, 6.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + close() + } + } + return _fps60!! + } + +private var _fps60: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fps960.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fps960.kt new file mode 100644 index 00000000..3eb5ca83 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Fps960.kt @@ -0,0 +1,133 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Fps960: ImageVector + get() { + if (_fps960 != null) { + return _fps960!! + } + _fps960 = fluentIcon(name = "Regular.Fps960") { + fluentPath { + moveTo(11.75f, 15.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, 4.5f) + lineTo(11.0f, 19.5f) + verticalLineToRelative(1.75f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-5.5f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(1.5f) + close() + moveTo(18.0f, 15.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(18.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.5f) + horizontalLineToRelative(-0.72f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, -0.09f, 1.24f) + horizontalLineToRelative(0.6f) + arcToRelative(2.13f, 2.13f, 0.0f, false, true, 0.15f, 4.25f) + horizontalLineToRelative(-0.78f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 0.25f, 0.18f, 0.46f, 0.41f, 0.5f) + horizontalLineToRelative(0.72f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.09f, -1.23f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-0.5f) + arcToRelative(2.13f, 2.13f, 0.0f, false, true, -0.15f, -4.25f) + lineTo(18.0f, 15.0f) + close() + moveTo(7.75f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(5.5f, 16.5f) + lineTo(5.5f, 18.0f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(5.5f, 19.5f) + verticalLineToRelative(1.73f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-5.48f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(3.0f) + close() + moveTo(11.75f, 16.5f) + lineTo(11.0f, 16.5f) + lineTo(11.0f, 18.0f) + horizontalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(12.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) + verticalLineToRelative(0.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(13.5f, 5.85f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) + lineTo(10.5f, 7.4f) + arcTo(3.0f, 3.0f, 0.0f, true, true, 9.0f, 10.18f) + lineTo(9.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + close() + moveTo(5.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) + lineTo(8.0f, 10.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.17f) + verticalLineToRelative(-0.34f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + lineTo(3.5f, 10.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.14f) + lineTo(6.5f, 8.6f) + arcTo(3.0f, 3.0f, 0.0f, true, true, 5.0f, 3.0f) + close() + moveTo(19.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) + lineTo(22.0f, 10.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.82f, 3.0f) + horizontalLineToRelative(-0.37f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.8f, -2.82f) + lineTo(16.0f, 10.0f) + lineTo(16.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.82f, -3.0f) + lineTo(19.0f, 3.0f) + close() + moveTo(12.0f, 8.5f) + curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.35f) + lineTo(10.5f, 10.0f) + arcTo(1.5f, 1.5f, 0.0f, true, false, 12.0f, 8.5f) + close() + moveTo(19.0f, 4.5f) + curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.35f) + lineTo(17.5f, 10.0f) + curveToRelative(0.0f, 0.78f, 0.6f, 1.42f, 1.35f, 1.5f) + lineTo(19.15f, 11.5f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.34f, -1.35f) + lineToRelative(0.01f, -0.15f) + lineTo(20.5f, 6.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + close() + moveTo(5.0f, 4.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 1.5f, 1.65f) + lineTo(6.5f, 6.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + close() + } + } + return _fps960!! + } + +private var _fps960: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FullScreenMaximize.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FullScreenMaximize.kt new file mode 100644 index 00000000..bcd44a28 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FullScreenMaximize.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FullScreenMaximize: ImageVector + get() { + if (_fullScreenMaximize != null) { + return _fullScreenMaximize!! + } + _fullScreenMaximize = fluentIcon(name = "Regular.FullScreenMaximize") { + fluentPath { + moveTo(4.5f, 5.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(4.5f, 18.25f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + verticalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(2.0f) + close() + moveTo(18.25f, 4.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.0f) + close() + moveTo(19.5f, 18.25f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) + verticalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.0f) + close() + } + } + return _fullScreenMaximize!! + } + +private var _fullScreenMaximize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FullScreenMinimize.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FullScreenMinimize.kt new file mode 100644 index 00000000..378e9e22 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/FullScreenMinimize.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.FullScreenMinimize: ImageVector + get() { + if (_fullScreenMinimize != null) { + return _fullScreenMinimize!! + } + _fullScreenMinimize = fluentIcon(name = "Regular.FullScreenMinimize") { + fluentPath { + moveTo(8.5f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-2.5f) + close() + moveTo(8.5f, 20.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(2.5f) + close() + moveTo(16.25f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(15.5f, 20.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(2.5f) + close() + } + } + return _fullScreenMinimize!! + } + +private var _fullScreenMinimize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Games.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Games.kt new file mode 100644 index 00000000..a0306e31 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Games.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Games: ImageVector + get() { + if (_games != null) { + return _games!! + } + _games = fluentIcon(name = "Regular.Games") { + fluentPath { + moveTo(15.0f, 5.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, 0.24f, 14.0f) + lineTo(9.0f, 19.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, -0.24f, -14.0f) + lineTo(15.0f, 5.0f) + close() + moveTo(15.0f, 6.5f) + lineTo(9.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -0.22f, 11.0f) + lineTo(15.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.22f, -11.0f) + lineTo(15.0f, 6.5f) + close() + moveTo(8.0f, 9.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.5f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(1.5f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(14.75f, 12.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(16.75f, 9.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + } + } + return _games!! + } + +private var _games: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GanttChart.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GanttChart.kt new file mode 100644 index 00000000..eb540d2e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GanttChart.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.GanttChart: ImageVector + get() { + if (_ganttChart != null) { + return _ganttChart!! + } + _ganttChart = fluentIcon(name = "Regular.GanttChart") { + fluentPath { + moveTo(6.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + horizontalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + lineTo(6.0f, 8.0f) + close() + moveTo(11.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + horizontalLineToRelative(-4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + close() + moveTo(15.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + horizontalLineToRelative(-3.0f) + close() + moveTo(5.25f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) + horizontalLineToRelative(13.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-9.5f) + curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) + lineTo(5.25f, 4.0f) + close() + moveTo(8.0f, 5.5f) + lineTo(8.0f, 7.0f) + horizontalLineToRelative(1.5f) + lineTo(9.5f, 5.5f) + horizontalLineToRelative(5.0f) + lineTo(14.5f, 10.0f) + lineTo(16.0f, 10.0f) + lineTo(16.0f, 5.5f) + horizontalLineToRelative(2.75f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(16.0f, 18.5f) + lineTo(16.0f, 17.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.5f, -0.06f) + verticalLineToRelative(1.56f) + horizontalLineToRelative(-5.0f) + lineTo(9.5f, 11.0f) + lineTo(8.0f, 11.0f) + verticalLineToRelative(7.5f) + lineTo(5.25f, 18.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + lineTo(8.0f, 5.5f) + close() + } + } + return _ganttChart!! + } + +private var _ganttChart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Gas.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Gas.kt new file mode 100644 index 00000000..8390464c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Gas.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Gas: ImageVector + get() { + if (_gas != null) { + return _gas!! + } + _gas = fluentIcon(name = "Regular.Gas") { + fluentPath { + moveTo(8.22f, 10.22f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineTo(12.0f, 12.94f) + lineToRelative(2.72f, -2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineTo(13.06f, 14.0f) + lineToRelative(0.47f, 0.47f) + lineToRelative(2.0f, 2.0f) + lineToRelative(0.25f, 0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-0.25f, -0.25f) + lineToRelative(-2.0f, -2.0f) + lineToRelative(-0.47f, -0.47f) + lineToRelative(-2.72f, 2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineTo(10.94f, 14.0f) + lineToRelative(-2.72f, -2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + moveTo(13.75f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.6f, 0.3f) + lineTo(10.44f, 6.0f) + lineTo(9.0f, 6.0f) + verticalLineToRelative(-0.25f) + curveTo(9.0f, 3.95f, 7.54f, 2.5f, 5.75f, 2.5f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(7.5f, 6.0f) + horizontalLineToRelative(-0.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.0f, 8.75f) + verticalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 6.75f, 22.0f) + horizontalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 20.0f, 19.25f) + lineTo(20.0f, 8.75f) + curveToRelative(0.0f, -0.86f, -0.4f, -1.63f, -1.01f, -2.13f) + lineTo(19.0f, 6.5f) + lineTo(19.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-4.5f) + close() + moveTo(17.5f, 6.01f) + lineTo(17.25f, 6.0f) + lineTo(12.3f, 6.0f) + lineToRelative(1.83f, -2.5f) + horizontalLineToRelative(3.37f) + verticalLineToRelative(2.51f) + close() + moveTo(6.75f, 7.5f) + horizontalLineToRelative(10.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + lineTo(6.75f, 20.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + lineTo(5.5f, 8.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + close() + } + } + return _gas!! + } + +private var _gas: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GasPump.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GasPump.kt new file mode 100644 index 00000000..8b963a52 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GasPump.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.GasPump: ImageVector + get() { + if (_gasPump != null) { + return _gasPump!! + } + _gasPump = fluentIcon(name = "Regular.GasPump") { + fluentPath { + moveTo(7.75f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(5.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-5.5f) + close() + moveTo(8.5f, 10.5f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(6.75f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.0f, 5.75f) + lineTo(4.0f, 20.5f) + horizontalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(17.0f, 20.5f) + verticalLineToRelative(-1.8f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 4.0f, -2.44f) + verticalLineToRelative(-5.84f) + curveToRelative(0.0f, -0.6f, -0.2f, -1.18f, -0.55f, -1.65f) + lineToRelative(-1.1f, -1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.2f, 0.9f) + lineToRelative(1.1f, 1.47f) + curveToRelative(0.16f, 0.21f, 0.25f, 0.48f, 0.25f, 0.75f) + verticalLineToRelative(5.83f) + arcToRelative(1.24f, 1.24f, 0.0f, true, true, -2.49f, 0.0f) + lineTo(17.01f, 14.5f) + lineToRelative(-0.01f, -0.12f) + lineTo(17.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 14.25f, 3.0f) + horizontalLineToRelative(-7.5f) + close() + moveTo(15.5f, 20.5f) + horizontalLineToRelative(-10.0f) + lineTo(5.5f, 5.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(7.5f) + curveToRelative(0.7f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + lineTo(15.5f, 20.5f) + close() + } + } + return _gasPump!! + } + +private var _gasPump: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Gauge.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Gauge.kt new file mode 100644 index 00000000..fb22f65c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Gauge.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Gauge: ImageVector + get() { + if (_gauge != null) { + return _gauge!! + } + _gauge = fluentIcon(name = "Regular.Gauge") { + fluentPath { + moveTo(7.93f, 16.07f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + arcToRelative(7.25f, 7.25f, 0.0f, false, true, 6.8f, -12.19f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.34f, 1.46f) + arcToRelative(5.75f, 5.75f, 0.0f, false, false, -5.4f, 9.67f) + close() + moveTo(17.89f, 9.14f) + curveToRelative(0.39f, -0.14f, 0.82f, 0.07f, 0.95f, 0.46f) + arcToRelative(7.25f, 7.25f, 0.0f, false, true, -1.71f, 7.53f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + arcToRelative(5.75f, 5.75f, 0.0f, false, false, 1.36f, -5.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.46f, -0.96f) + close() + moveTo(15.88f, 6.67f) + arcToRelative(0.63f, 0.63f, 0.0f, false, true, 0.96f, 0.76f) + lineToRelative(-0.13f, 0.25f) + arcToRelative(354.7f, 354.7f, 0.0f, false, true, -3.02f, 5.67f) + curveToRelative(-0.12f, 0.2f, -0.24f, 0.4f, -0.32f, 0.5f) + arcToRelative(1.88f, 1.88f, 0.0f, false, true, -2.94f, -2.33f) + arcToRelative(37.2f, 37.2f, 0.0f, false, true, 1.1f, -1.05f) + arcToRelative(154.39f, 154.39f, 0.0f, false, true, 4.14f, -3.62f) + lineToRelative(0.2f, -0.18f) + close() + moveTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, -20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 20.0f, 0.0f) + close() + moveTo(3.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, 17.0f, 0.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, -17.0f, 0.0f) + close() + } + } + return _gauge!! + } + +private var _gauge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Gavel.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Gavel.kt new file mode 100644 index 00000000..82deeda7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Gavel.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Gavel: ImageVector + get() { + if (_gavel != null) { + return _gavel!! + } + _gavel = fluentIcon(name = "Regular.Gavel") { + fluentPath { + moveTo(14.14f, 2.98f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.41f, -0.27f) + lineTo(7.26f, 6.18f) + curveToRelative(-1.0f, 1.0f, -0.83f, 2.67f, 0.35f, 3.46f) + lineToRelative(2.0f, 1.34f) + lineToRelative(-6.87f, 6.74f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 3.53f, 3.57f) + lineToRelative(6.88f, -6.88f) + lineToRelative(1.21f, 1.92f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 3.5f, 0.38f) + lineToRelative(3.43f, -3.44f) + curveToRelative(0.98f, -0.98f, 0.85f, -2.6f, -0.27f, -3.4f) + lineToRelative(-3.89f, -2.84f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.16f, -0.16f) + lineToRelative(-2.83f, -3.9f) + close() + moveTo(11.79f, 3.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.14f, 0.08f) + lineToRelative(0.46f, 0.63f) + lineToRelative(-4.32f, 4.32f) + lineToRelative(-0.63f, -0.42f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.12f, -1.15f) + lineToRelative(3.47f, -3.47f) + close() + moveTo(10.34f, 9.66f) + lineTo(14.28f, 5.72f) + lineTo(15.75f, 7.75f) + curveToRelative(0.14f, 0.2f, 0.31f, 0.36f, 0.5f, 0.5f) + lineToRelative(1.96f, 1.42f) + lineToRelative(-3.85f, 3.85f) + lineToRelative(-1.06f, -1.65f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.65f, -0.67f) + lineToRelative(-2.3f, -1.54f) + close() + moveTo(15.18f, 14.82f) + lineTo(19.44f, 10.56f) + lineTo(20.14f, 11.07f) + curveToRelative(0.37f, 0.28f, 0.41f, 0.82f, 0.09f, 1.14f) + lineToRelative(-3.44f, 3.44f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.16f, -0.13f) + lineToRelative(-0.45f, -0.7f) + close() + moveTo(12.32f, 13.12f) + lineTo(5.22f, 20.22f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.43f, -1.43f) + lineToRelative(7.1f, -6.96f) + lineToRelative(0.93f, 0.62f) + curveToRelative(0.09f, 0.06f, 0.16f, 0.13f, 0.22f, 0.22f) + lineToRelative(0.28f, 0.45f) + close() + moveTo(14.75f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + close() + } + } + return _gavel!! + } + +private var _gavel: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Gesture.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Gesture.kt new file mode 100644 index 00000000..0f20cb13 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Gesture.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Gesture: ImageVector + get() { + if (_gesture != null) { + return _gesture!! + } + _gesture = fluentIcon(name = "Regular.Gesture") { + fluentPath { + moveTo(3.75f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(6.75f, 4.0f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-6.6f) + lineToRelative(9.77f, 3.8f) + curveToRelative(0.57f, 0.22f, 0.64f, 0.98f, 0.16f, 1.31f) + lineToRelative(-0.1f, 0.06f) + lineTo(6.1f, 17.93f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.76f, -1.3f) + lineToRelative(0.09f, -0.04f) + lineToRelative(12.97f, -6.5f) + lineTo(6.48f, 5.45f) + curveToRelative(-0.74f, -0.28f, -0.58f, -1.35f, 0.16f, -1.44f) + horizontalLineToRelative(10.61f) + horizontalLineToRelative(-10.5f) + close() + moveTo(19.75f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + } + } + return _gesture!! + } + +private var _gesture: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Gif.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Gif.kt new file mode 100644 index 00000000..416872cc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Gif.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Gif: ImageVector + get() { + if (_gif != null) { + return _gif!! + } + _gif = fluentIcon(name = "Regular.Gif") { + fluentPath { + moveTo(18.75f, 3.5f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(5.25f, 20.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 17.25f) + lineTo(2.0f, 6.75f) + curveTo(2.0f, 4.95f, 3.46f, 3.5f, 5.25f, 3.5f) + horizontalLineToRelative(13.5f) + close() + moveTo(18.75f, 5.0f) + lineTo(5.25f, 5.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(20.5f, 6.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(8.01f, 8.87f) + curveToRelative(0.6f, 0.0f, 1.02f, 0.08f, 1.5f, 0.31f) + arcToRelative(0.62f, 0.62f, 0.0f, true, true, -0.53f, 1.13f) + curveToRelative(-0.3f, -0.14f, -0.54f, -0.19f, -0.97f, -0.19f) + curveToRelative(-0.86f, 0.0f, -1.5f, 0.8f, -1.5f, 1.87f) + curveToRelative(0.0f, 1.08f, 0.64f, 1.88f, 1.5f, 1.88f) + curveToRelative(0.43f, 0.0f, 0.8f, -0.18f, 0.98f, -0.5f) + lineToRelative(0.01f, -0.02f) + verticalLineToRelative(-0.73f) + horizontalLineToRelative(-0.37f) + arcTo(0.63f, 0.63f, 0.0f, false, true, 8.0f, 12.1f) + lineToRelative(-0.01f, -0.1f) + curveToRelative(0.0f, -0.3f, 0.23f, -0.57f, 0.53f, -0.61f) + horizontalLineToRelative(1.1f) + curveToRelative(0.31f, 0.0f, 0.57f, 0.22f, 0.61f, 0.52f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.6f) + lineToRelative(-0.03f, 0.09f) + lineToRelative(-0.02f, 0.05f) + arcToRelative(2.3f, 2.3f, 0.0f, false, true, -2.19f, 1.38f) + curveToRelative(-1.62f, 0.0f, -2.75f, -1.41f, -2.75f, -3.13f) + curveToRelative(0.0f, -1.7f, 1.13f, -3.12f, 2.75f, -3.12f) + close() + moveTo(12.63f, 8.99f) + curveToRelative(0.31f, 0.0f, 0.57f, 0.23f, 0.62f, 0.54f) + verticalLineToRelative(4.85f) + arcToRelative(0.62f, 0.62f, 0.0f, false, true, -1.24f, 0.1f) + lineTo(12.01f, 9.61f) + curveToRelative(0.0f, -0.35f, 0.27f, -0.63f, 0.62f, -0.63f) + close() + moveTo(15.63f, 8.99f) + lineTo(17.63f, 9.0f) + arcToRelative(0.63f, 0.63f, 0.0f, false, true, 0.08f, 1.24f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-1.36f) + lineTo(16.25f, 12.0f) + horizontalLineToRelative(1.12f) + curveToRelative(0.31f, 0.0f, 0.57f, 0.23f, 0.62f, 0.53f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 0.3f, -0.23f, 0.57f, -0.53f, 0.61f) + lineToRelative(-0.09f, 0.01f) + horizontalLineToRelative(-1.12f) + verticalLineToRelative(1.11f) + curveToRelative(0.0f, 0.32f, -0.23f, 0.58f, -0.54f, 0.62f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.63f, 0.63f, 0.0f, false, true, -0.62f, -0.52f) + lineTo(15.0f, 9.62f) + curveToRelative(0.0f, -0.32f, 0.23f, -0.58f, 0.53f, -0.62f) + horizontalLineToRelative(0.1f) + close() + } + } + return _gif!! + } + +private var _gif: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Gift.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Gift.kt new file mode 100644 index 00000000..eb6793ac --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Gift.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Gift: ImageVector + get() { + if (_gift != null) { + return _gift!! + } + _gift = fluentIcon(name = "Regular.Gift") { + fluentPath { + moveTo(14.5f, 2.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.74f, 5.0f) + horizontalLineToRelative(2.51f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.6f, -0.43f, 1.1f, -1.0f, 1.22f) + verticalLineToRelative(5.78f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + horizontalLineToRelative(-9.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(4.0f, 18.75f) + verticalLineToRelative(-5.78f) + curveToRelative(-0.57f, -0.11f, -1.0f, -0.62f, -1.0f, -1.22f) + verticalLineToRelative(-3.5f) + curveTo(3.0f, 7.56f, 3.56f, 7.0f, 4.25f, 7.0f) + horizontalLineToRelative(2.51f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 12.0f, 3.17f) + curveTo(12.6f, 2.46f, 13.5f, 2.0f, 14.5f, 2.0f) + close() + moveTo(11.25f, 13.0f) + lineTo(5.5f, 13.0f) + verticalLineToRelative(5.75f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(4.0f) + lineTo(11.25f, 13.0f) + close() + moveTo(18.5f, 13.0f) + horizontalLineToRelative(-5.75f) + verticalLineToRelative(7.5f) + horizontalLineToRelative(4.0f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + lineTo(18.5f, 13.0f) + close() + moveTo(11.25f, 8.5f) + lineTo(4.5f, 8.5f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(6.75f) + verticalLineToRelative(-3.0f) + close() + moveTo(19.5f, 11.5f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(-6.75f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(6.75f) + close() + moveTo(14.5f, 3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(12.75f, 7.0f) + lineTo(14.64f, 7.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -0.14f, -3.5f) + close() + moveTo(9.5f, 3.5f) + arcTo(1.75f, 1.75f, 0.0f, false, false, 9.36f, 7.0f) + lineTo(11.25f, 7.0f) + lineTo(11.25f, 5.1f) + curveToRelative(-0.08f, -0.9f, -0.83f, -1.61f, -1.75f, -1.61f) + close() + } + } + return _gift!! + } + +private var _gift: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GiftCard.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GiftCard.kt new file mode 100644 index 00000000..840887d7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GiftCard.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.GiftCard: ImageVector + get() { + if (_giftCard != null) { + return _giftCard!! + } + _giftCard = fluentIcon(name = "Regular.GiftCard") { + fluentPath { + moveTo(5.25f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(8.5f) + curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) + horizontalLineToRelative(13.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-8.5f) + curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) + lineTo(5.25f, 4.0f) + close() + moveTo(3.5f, 7.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + lineTo(8.0f, 5.5f) + verticalLineToRelative(1.2f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.5f, 9.0f) + curveToRelative(0.0f, 0.36f, 0.07f, 0.7f, 0.2f, 1.0f) + lineTo(3.5f, 10.0f) + lineTo(3.5f, 7.25f) + close() + moveTo(9.5f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + lineTo(9.5f, 9.0f) + close() + moveTo(8.0f, 10.0f) + lineTo(7.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 1.0f, -1.0f) + verticalLineToRelative(1.0f) + close() + moveTo(8.0f, 12.56f) + verticalLineToRelative(4.94f) + lineTo(5.25f, 17.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(3.5f, 11.5f) + horizontalLineToRelative(3.44f) + lineToRelative(-1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineTo(8.0f, 12.56f) + close() + moveTo(9.5f, 17.5f) + verticalLineToRelative(-4.94f) + lineToRelative(1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-1.72f, -1.72f) + horizontalLineToRelative(9.94f) + verticalLineToRelative(4.25f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(9.5f, 17.5f) + close() + moveTo(9.5f, 6.7f) + lineTo(9.5f, 5.5f) + horizontalLineToRelative(9.25f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(20.5f, 10.0f) + horizontalLineToRelative(-7.7f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.3f, -3.5f) + curveToRelative(-0.36f, 0.0f, -0.7f, 0.07f, -1.0f, 0.2f) + close() + } + } + return _giftCard!! + } + +private var _giftCard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GiftCardAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GiftCardAdd.kt new file mode 100644 index 00000000..61831410 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GiftCardAdd.kt @@ -0,0 +1,96 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.GiftCardAdd: ImageVector + get() { + if (_giftCardAdd != null) { + return _giftCardAdd!! + } + _giftCardAdd = fluentIcon(name = "Regular.GiftCardAdd") { + fluentPath { + moveTo(2.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(14.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(7.81f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) + lineTo(20.5f, 9.5f) + horizontalLineToRelative(-9.94f) + lineToRelative(1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(9.5f, 10.56f) + verticalLineToRelative(4.94f) + horizontalLineToRelative(1.81f) + curveToRelative(-0.15f, 0.48f, -0.25f, 0.98f, -0.3f, 1.5f) + lineTo(5.0f, 17.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(2.0f, 5.0f) + close() + moveTo(5.0f, 3.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(1.2f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 7.0f, 4.5f) + curveToRelative(0.36f, 0.0f, 0.7f, 0.07f, 1.0f, 0.2f) + lineTo(8.0f, 3.5f) + lineTo(5.0f, 3.5f) + close() + moveTo(9.5f, 3.5f) + verticalLineToRelative(1.2f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 13.0f, 7.0f) + curveToRelative(0.0f, 0.36f, -0.07f, 0.7f, -0.2f, 1.0f) + horizontalLineToRelative(7.7f) + lineTo(20.5f, 5.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(9.5f, 3.5f) + close() + moveTo(8.0f, 15.5f) + verticalLineToRelative(-4.94f) + lineToRelative(-1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineTo(6.94f, 9.5f) + lineTo(3.5f, 9.5f) + lineTo(3.5f, 14.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(3.0f) + close() + moveTo(10.5f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.0f, -1.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + close() + moveTo(8.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.0f, 1.0f) + horizontalLineToRelative(1.0f) + lineTo(8.0f, 7.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _giftCardAdd!! + } + +private var _giftCardAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GiftCardArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GiftCardArrowRight.kt new file mode 100644 index 00000000..96856cc0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GiftCardArrowRight.kt @@ -0,0 +1,94 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.GiftCardArrowRight: ImageVector + get() { + if (_giftCardArrowRight != null) { + return _giftCardArrowRight!! + } + _giftCardArrowRight = fluentIcon(name = "Regular.GiftCardArrowRight") { + fluentPath { + moveTo(2.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(14.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(7.81f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) + lineTo(20.5f, 9.5f) + horizontalLineToRelative(-9.94f) + lineToRelative(1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(9.5f, 10.56f) + verticalLineToRelative(4.94f) + horizontalLineToRelative(1.81f) + curveToRelative(-0.15f, 0.48f, -0.25f, 0.98f, -0.3f, 1.5f) + lineTo(5.0f, 17.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(2.0f, 5.0f) + close() + moveTo(5.0f, 3.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(1.2f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 7.0f, 4.5f) + curveToRelative(0.36f, 0.0f, 0.7f, 0.07f, 1.0f, 0.2f) + lineTo(8.0f, 3.5f) + lineTo(5.0f, 3.5f) + close() + moveTo(9.5f, 3.5f) + verticalLineToRelative(1.2f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 13.0f, 7.0f) + curveToRelative(0.0f, 0.36f, -0.07f, 0.7f, -0.2f, 1.0f) + horizontalLineToRelative(7.7f) + lineTo(20.5f, 5.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(9.5f, 3.5f) + close() + moveTo(8.0f, 15.5f) + verticalLineToRelative(-4.94f) + lineToRelative(-1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineTo(6.94f, 9.5f) + lineTo(3.5f, 9.5f) + lineTo(3.5f, 14.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(3.0f) + close() + moveTo(10.5f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.0f, -1.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + close() + moveTo(8.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.0f, 1.0f) + horizontalLineToRelative(1.0f) + lineTo(8.0f, 7.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(19.29f, 17.0f) + lineTo(14.5f, 17.0f) + close() + } + } + return _giftCardArrowRight!! + } + +private var _giftCardArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GiftCardMoney.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GiftCardMoney.kt new file mode 100644 index 00000000..b61d8b97 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GiftCardMoney.kt @@ -0,0 +1,118 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.GiftCardMoney: ImageVector + get() { + if (_giftCardMoney != null) { + return _giftCardMoney!! + } + _giftCardMoney = fluentIcon(name = "Regular.GiftCardMoney") { + fluentPath { + moveTo(2.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(14.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(9.05f) + arcToRelative(2.51f, 2.51f, 0.0f, false, false, -0.5f, -0.05f) + horizontalLineToRelative(-1.0f) + lineTo(20.5f, 9.5f) + horizontalLineToRelative(-9.94f) + lineToRelative(1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(9.5f, 10.56f) + verticalLineToRelative(4.94f) + horizontalLineToRelative(1.7f) + curveToRelative(-0.13f, 0.3f, -0.2f, 0.64f, -0.2f, 1.0f) + verticalLineToRelative(0.5f) + lineTo(5.0f, 17.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(2.0f, 5.0f) + close() + moveTo(5.0f, 3.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(1.2f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 7.0f, 4.5f) + curveToRelative(0.36f, 0.0f, 0.7f, 0.07f, 1.0f, 0.2f) + lineTo(8.0f, 3.5f) + lineTo(5.0f, 3.5f) + close() + moveTo(9.5f, 3.5f) + verticalLineToRelative(1.2f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 13.0f, 7.0f) + curveToRelative(0.0f, 0.36f, -0.07f, 0.7f, -0.2f, 1.0f) + horizontalLineToRelative(7.7f) + lineTo(20.5f, 5.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(9.5f, 3.5f) + close() + moveTo(8.0f, 15.5f) + verticalLineToRelative(-4.94f) + lineToRelative(-1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineTo(6.94f, 9.5f) + lineTo(3.5f, 9.5f) + lineTo(3.5f, 14.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(3.0f) + close() + moveTo(10.5f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.0f, -1.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + close() + moveTo(8.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.0f, 1.0f) + horizontalLineToRelative(1.0f) + lineTo(8.0f, 7.0f) + close() + moveTo(12.0f, 16.5f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(8.0f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + verticalLineToRelative(-4.0f) + close() + moveTo(22.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + horizontalLineToRelative(-1.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(22.0f, 19.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(14.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + verticalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + horizontalLineToRelative(-1.0f) + close() + moveTo(15.0f, 21.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + verticalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + horizontalLineToRelative(1.0f) + close() + moveTo(19.25f, 18.5f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, -3.5f, 0.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 3.5f, 0.0f) + close() + } + } + return _giftCardMoney!! + } + +private var _giftCardMoney: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GiftCardMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GiftCardMultiple.kt new file mode 100644 index 00000000..4f2754b2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GiftCardMultiple.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.GiftCardMultiple: ImageVector + get() { + if (_giftCardMultiple != null) { + return _giftCardMultiple!! + } + _giftCardMultiple = fluentIcon(name = "Regular.GiftCardMultiple") { + fluentPath { + moveTo(5.0f, 4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(7.5f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) + horizontalLineToRelative(11.5f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) + lineTo(19.5f, 7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + lineTo(5.0f, 4.0f) + close() + moveTo(3.5f, 7.0f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(1.2f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.5f, 9.0f) + curveToRelative(0.0f, 0.36f, 0.07f, 0.7f, 0.2f, 1.0f) + lineTo(3.5f, 10.0f) + lineTo(3.5f, 7.0f) + close() + moveTo(9.5f, 6.7f) + lineTo(9.5f, 5.5f) + horizontalLineToRelative(7.0f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(-5.2f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.3f, -3.5f) + curveToRelative(-0.36f, 0.0f, -0.7f, 0.07f, -1.0f, 0.2f) + close() + moveTo(10.56f, 11.5f) + lineTo(18.0f, 11.5f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-7.0f) + verticalLineToRelative(-3.44f) + lineToRelative(1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-1.72f, -1.72f) + close() + moveTo(8.0f, 12.56f) + lineTo(8.0f, 16.0f) + lineTo(5.0f, 16.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(3.44f) + lineToRelative(-1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineTo(8.0f, 12.56f) + close() + moveTo(11.5f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + lineTo(9.5f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(7.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(1.0f) + lineTo(7.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + close() + moveTo(7.5f, 20.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.6f, -1.5f) + horizontalLineToRelative(11.6f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, -4.0f) + lineTo(20.5f, 6.9f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 22.0f, 9.5f) + verticalLineToRelative(5.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, -5.5f, 5.5f) + horizontalLineToRelative(-9.0f) + close() + } + } + return _giftCardMultiple!! + } + +private var _giftCardMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Glance.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Glance.kt new file mode 100644 index 00000000..5833a4d7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Glance.kt @@ -0,0 +1,103 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Glance: ImageVector + get() { + if (_glance != null) { + return _glance!! + } + _glance = fluentIcon(name = "Regular.Glance") { + fluentPath { + moveTo(19.25f, 11.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.79f, 1.75f, 1.75f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-6.5f) + curveToRelative(0.0f, -0.96f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(4.5f) + close() + moveTo(9.27f, 15.01f) + curveToRelative(0.96f, 0.0f, 1.75f, 0.79f, 1.75f, 1.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.96f, -0.79f, 1.74f, -1.75f, 1.74f) + lineTo(4.75f, 21.0f) + curveTo(3.8f, 21.0f, 3.0f, 20.22f, 3.0f, 19.25f) + verticalLineToRelative(-2.49f) + curveToRelative(0.0f, -0.96f, 0.79f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(4.52f) + close() + moveTo(19.25f, 12.51f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.24f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(4.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-6.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(9.27f, 16.51f) + lineTo(4.75f, 16.51f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.13f, 0.12f, 0.24f, 0.25f, 0.24f) + horizontalLineToRelative(4.52f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-2.49f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(9.25f, 3.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 0.92f, -0.7f, 1.67f, -1.6f, 1.74f) + lineToRelative(-0.15f, 0.01f) + horizontalLineToRelative(-4.5f) + curveTo(3.8f, 13.0f, 3.0f, 12.22f, 3.0f, 11.25f) + verticalLineToRelative(-6.5f) + curveTo(3.0f, 3.78f, 3.8f, 3.0f, 4.75f, 3.0f) + horizontalLineToRelative(4.5f) + close() + moveTo(9.25f, 4.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 0.14f, 0.12f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(4.56f) + curveToRelative(0.11f, -0.03f, 0.2f, -0.13f, 0.2f, -0.25f) + verticalLineToRelative(-6.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.26f, -0.25f) + close() + moveTo(19.25f, 3.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(2.5f) + curveTo(21.0f, 8.22f, 20.22f, 9.0f, 19.25f, 9.0f) + horizontalLineToRelative(-4.5f) + curveTo(13.78f, 9.0f, 13.0f, 8.22f, 13.0f, 7.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(4.5f) + close() + moveTo(14.75f, 4.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(4.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-4.5f) + close() + } + } + return _glance!! + } + +private var _glance: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlanceHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlanceHorizontal.kt new file mode 100644 index 00000000..c694a91b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlanceHorizontal.kt @@ -0,0 +1,102 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.GlanceHorizontal: ImageVector + get() { + if (_glanceHorizontal != null) { + return _glanceHorizontal!! + } + _glanceHorizontal = fluentIcon(name = "Regular.GlanceHorizontal") { + fluentPath { + moveTo(13.0f, 4.75f) + curveTo(13.0f, 3.8f, 12.22f, 3.0f, 11.25f, 3.0f) + horizontalLineToRelative(-6.5f) + curveTo(3.78f, 3.0f, 3.0f, 3.8f, 3.0f, 4.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(6.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-4.5f) + close() + moveTo(9.0f, 14.73f) + curveToRelative(0.0f, -0.96f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(4.75f, 12.98f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.79f, -1.75f, 1.75f) + verticalLineToRelative(4.52f) + curveTo(3.0f, 20.2f, 3.78f, 21.0f, 4.75f, 21.0f) + horizontalLineToRelative(2.49f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.79f, 1.75f, -1.75f) + verticalLineToRelative(-4.52f) + close() + moveTo(11.51f, 4.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(6.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + close() + moveTo(7.5f, 14.73f) + verticalLineToRelative(4.52f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + lineTo(4.75f, 19.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-4.52f) + curveToRelative(0.0f, -0.13f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(2.49f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.12f, 0.25f, 0.25f) + close() + moveTo(21.01f, 14.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-6.5f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + verticalLineToRelative(4.65f) + curveToRelative(0.0f, 0.96f, 0.78f, 1.75f, 1.74f, 1.75f) + horizontalLineToRelative(6.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.79f, 1.75f, -1.75f) + verticalLineToRelative(-4.5f) + close() + moveTo(19.51f, 14.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.14f, -0.1f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-4.56f) + curveToRelative(0.04f, -0.11f, 0.13f, -0.2f, 0.25f, -0.2f) + horizontalLineToRelative(6.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.12f, 0.25f, 0.26f) + close() + moveTo(21.01f, 4.75f) + curveTo(21.0f, 3.8f, 20.22f, 3.0f, 19.25f, 3.0f) + horizontalLineToRelative(-2.5f) + curveTo(15.8f, 3.0f, 15.0f, 3.8f, 15.0f, 4.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.97f, 0.79f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-4.5f) + close() + moveTo(19.51f, 9.25f) + curveToRelative(0.0f, 0.14f, -0.1f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(2.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(4.5f) + close() + } + } + return _glanceHorizontal!! + } + +private var _glanceHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlanceHorizontalSparkles.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlanceHorizontalSparkles.kt new file mode 100644 index 00000000..19437e98 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlanceHorizontalSparkles.kt @@ -0,0 +1,122 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.GlanceHorizontalSparkles: ImageVector + get() { + if (_glanceHorizontalSparkles != null) { + return _glanceHorizontalSparkles!! + } + _glanceHorizontalSparkles = fluentIcon(name = "Regular.GlanceHorizontalSparkles") { + fluentPath { + moveTo(16.09f, 6.41f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.35f, -0.95f) + lineTo(13.36f, 5.0f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, -1.03f) + lineToRelative(1.38f, -0.44f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.76f, -1.77f) + lineToRelative(0.01f, -0.03f) + lineToRelative(0.45f, -1.38f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, 1.03f, 0.0f) + lineToRelative(0.44f, 1.38f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.8f, 1.8f) + lineToRelative(1.38f, 0.44f) + lineToRelative(0.03f, 0.01f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, 1.03f) + lineToRelative(-1.38f, 0.44f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.8f, 1.8f) + lineToRelative(-0.45f, 1.38f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, -1.03f, 0.0f) + lineToRelative(-0.44f, -1.38f) + curveToRelative(-0.1f, -0.3f, -0.25f, -0.6f, -0.45f, -0.85f) + close() + moveTo(23.79f, 10.21f) + lineTo(23.02f, 9.96f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, -1.0f, -1.0f) + lineToRelative(-0.25f, -0.76f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, -0.57f, 0.0f) + lineToRelative(-0.25f, 0.77f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, -0.98f, 1.0f) + lineToRelative(-0.77f, 0.24f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.77f, 0.25f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, 1.0f) + lineToRelative(0.24f, 0.77f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.58f, 0.0f) + lineToRelative(0.24f, -0.77f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, -1.0f) + lineToRelative(0.77f, -0.24f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, -0.57f) + horizontalLineToRelative(-0.02f) + close() + moveTo(10.25f, 3.01f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.74f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-5.5f) + curveTo(3.78f, 11.0f, 3.0f, 10.22f, 3.0f, 9.25f) + verticalLineToRelative(-4.5f) + curveTo(3.0f, 3.8f, 3.78f, 3.0f, 4.75f, 3.0f) + horizontalLineToRelative(5.5f) + close() + moveTo(10.5f, 9.25f) + verticalLineToRelative(-4.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(5.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + close() + moveTo(7.24f, 12.98f) + curveToRelative(0.96f, 0.0f, 1.75f, 0.79f, 1.75f, 1.75f) + verticalLineToRelative(4.52f) + curveToRelative(0.0f, 0.96f, -0.79f, 1.75f, -1.75f, 1.75f) + lineTo(4.75f, 21.0f) + curveTo(3.78f, 21.0f, 3.0f, 20.2f, 3.0f, 19.25f) + verticalLineToRelative(-4.52f) + curveToRelative(0.0f, -0.96f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.49f) + close() + moveTo(7.49f, 19.25f) + verticalLineToRelative(-4.52f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + lineTo(4.75f, 14.48f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(4.52f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(2.49f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + close() + moveTo(19.25f, 13.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.96f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-6.5f) + curveTo(11.8f, 21.0f, 11.0f, 20.2f, 11.0f, 19.25f) + lineTo(11.0f, 14.6f) + curveToRelative(0.08f, -0.9f, 0.83f, -1.6f, 1.75f, -1.6f) + horizontalLineToRelative(6.5f) + close() + moveTo(19.5f, 19.25f) + verticalLineToRelative(-4.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.24f, 0.2f) + verticalLineToRelative(4.55f) + curveToRelative(0.0f, 0.14f, 0.1f, 0.25f, 0.24f, 0.25f) + horizontalLineToRelative(6.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + close() + } + } + return _glanceHorizontalSparkles!! + } + +private var _glanceHorizontalSparkles: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Glasses.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Glasses.kt new file mode 100644 index 00000000..afcc0250 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Glasses.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Glasses: ImageVector + get() { + if (_glasses != null) { + return _glasses!! + } + _glasses = fluentIcon(name = "Regular.Glasses") { + fluentPath { + moveTo(7.9f, 5.0f) + horizontalLineToRelative(1.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(7.91f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.48f, 0.17f) + lineToRelative(-0.07f, 0.07f) + lineTo(5.28f, 9.0f) + horizontalLineToRelative(3.47f) + curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) + lineTo(13.0f, 11.0f) + curveToRelative(0.13f, -1.12f, 1.08f, -2.0f, 2.24f, -2.0f) + horizontalLineToRelative(3.48f) + lineToRelative(-2.09f, -2.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.44f, -0.23f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-1.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(16.09f, 5.0f) + curveToRelative(0.57f, 0.0f, 1.11f, 0.21f, 1.52f, 0.6f) + lineToRelative(0.14f, 0.12f) + lineToRelative(3.64f, 3.95f) + lineToRelative(0.12f, 0.18f) + curveToRelative(0.3f, 0.38f, 0.49f, 0.87f, 0.49f, 1.4f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-2.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 13.0f, 14.75f) + lineTo(13.0f, 12.5f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(2.25f) + curveTo(11.0f, 16.55f, 9.54f, 18.0f, 7.75f, 18.0f) + horizontalLineToRelative(-2.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.75f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.56f, 0.2f, -1.08f, 0.55f, -1.47f) + lineToRelative(0.03f, -0.06f) + lineToRelative(0.05f, -0.05f) + lineToRelative(3.62f, -3.94f) + curveToRelative(0.39f, -0.42f, 0.91f, -0.68f, 1.47f, -0.72f) + lineTo(7.91f, 5.0f) + horizontalLineToRelative(1.34f) + lineTo(7.9f, 5.0f) + close() + moveTo(8.75f, 10.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.96f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.79f, 1.75f, -1.75f) + verticalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(19.75f, 10.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.96f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.79f, 1.75f, -1.75f) + verticalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + } + } + return _glasses!! + } + +private var _glasses: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlassesOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlassesOff.kt new file mode 100644 index 00000000..241db3b6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlassesOff.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.GlassesOff: ImageVector + get() { + if (_glassesOff != null) { + return _glassesOff!! + } + _glassesOff = fluentIcon(name = "Regular.GlassesOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(3.27f, 3.27f) + lineToRelative(-2.86f, 3.12f) + lineToRelative(-0.05f, 0.05f) + lineToRelative(-0.03f, 0.06f) + curveToRelative(-0.34f, 0.4f, -0.55f, 0.9f, -0.55f, 1.47f) + verticalLineToRelative(3.5f) + curveTo(2.0f, 16.55f, 3.46f, 18.0f, 5.25f, 18.0f) + horizontalLineToRelative(2.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(11.0f, 12.5f) + horizontalLineToRelative(0.44f) + lineTo(13.0f, 14.06f) + verticalLineToRelative(0.69f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(0.69f) + lineToRelative(3.78f, 3.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(7.94f, 9.0f) + lineTo(5.28f, 9.0f) + lineToRelative(1.27f, -1.38f) + lineTo(7.94f, 9.0f) + close() + moveTo(4.25f, 10.5f) + horizontalLineToRelative(4.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.96f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.79f, -1.75f, -1.75f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(13.3f, 10.12f) + lineTo(14.5f, 11.32f) + verticalLineToRelative(-0.07f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.7f, -0.4f, 1.3f, -1.0f, 1.57f) + lineToRelative(1.1f, 1.1f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 1.4f, -2.67f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.53f, -0.18f, -1.02f, -0.49f, -1.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.12f, -0.18f) + lineToRelative(-3.64f, -3.95f) + lineToRelative(-0.14f, -0.13f) + curveTo(17.2f, 5.21f, 16.66f, 5.0f, 16.1f, 5.0f) + lineTo(14.65f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + lineTo(16.19f, 6.5f) + curveToRelative(0.18f, 0.03f, 0.34f, 0.11f, 0.45f, 0.24f) + lineTo(18.73f, 9.0f) + horizontalLineToRelative(-3.48f) + curveToRelative(-0.83f, 0.0f, -1.56f, 0.45f, -1.95f, 1.12f) + close() + } + } + return _glassesOff!! + } + +private var _glassesOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Globe.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Globe.kt new file mode 100644 index 00000000..76f68291 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Globe.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Globe: ImageVector + get() { + if (_globe != null) { + return _globe!! + } + _globe = fluentIcon(name = "Regular.Globe") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(14.94f, 16.5f) + lineTo(9.06f, 16.5f) + curveToRelative(0.65f, 2.41f, 1.79f, 4.0f, 2.94f, 4.0f) + reflectiveCurveToRelative(2.29f, -1.59f, 2.94f, -4.0f) + close() + moveTo(7.51f, 16.5f) + lineTo(4.79f, 16.5f) + arcToRelative(8.53f, 8.53f, 0.0f, false, false, 4.09f, 3.41f) + curveToRelative(-0.52f, -0.82f, -0.95f, -1.85f, -1.27f, -3.02f) + lineToRelative(-0.1f, -0.39f) + close() + moveTo(19.21f, 16.5f) + lineTo(16.5f, 16.5f) + curveToRelative(-0.32f, 1.33f, -0.79f, 2.5f, -1.37f, 3.41f) + arcToRelative(8.53f, 8.53f, 0.0f, false, false, 3.9f, -3.13f) + lineToRelative(0.2f, -0.28f) + close() + moveTo(7.1f, 10.0f) + lineTo(3.74f, 10.0f) + verticalLineToRelative(0.02f) + arcToRelative(8.52f, 8.52f, 0.0f, false, false, 0.3f, 4.98f) + horizontalLineToRelative(3.18f) + arcToRelative(20.3f, 20.3f, 0.0f, false, true, -0.13f, -5.0f) + close() + moveTo(15.4f, 10.0f) + lineTo(8.6f, 10.0f) + arcToRelative(18.97f, 18.97f, 0.0f, false, false, 0.14f, 5.0f) + horizontalLineToRelative(6.52f) + arcToRelative(18.5f, 18.5f, 0.0f, false, false, 0.14f, -5.0f) + close() + moveTo(20.27f, 10.0f) + horizontalLineToRelative(-3.35f) + arcToRelative(20.85f, 20.85f, 0.0f, false, true, -0.13f, 5.0f) + horizontalLineToRelative(3.18f) + arcToRelative(8.48f, 8.48f, 0.0f, false, false, 0.3f, -5.0f) + close() + moveTo(8.88f, 4.09f) + horizontalLineToRelative(-0.02f) + arcToRelative(8.53f, 8.53f, 0.0f, false, false, -4.61f, 4.4f) + lineToRelative(3.05f, 0.01f) + curveToRelative(0.31f, -1.75f, 0.86f, -3.28f, 1.58f, -4.41f) + close() + moveTo(12.0f, 3.49f) + lineTo(11.88f, 3.5f) + curveToRelative(-1.26f, 0.12f, -2.48f, 2.12f, -3.05f, 5.0f) + horizontalLineToRelative(6.34f) + curveToRelative(-0.56f, -2.87f, -1.78f, -4.87f, -3.04f, -5.0f) + lineTo(12.0f, 3.5f) + close() + moveTo(15.12f, 4.09f) + lineTo(15.22f, 4.26f) + arcTo(12.64f, 12.64f, 0.0f, false, true, 16.7f, 8.5f) + horizontalLineToRelative(3.05f) + arcToRelative(8.53f, 8.53f, 0.0f, false, false, -4.34f, -4.29f) + lineToRelative(-0.29f, -0.12f) + close() + } + } + return _globe!! + } + +private var _globe: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlobeAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlobeAdd.kt new file mode 100644 index 00000000..fc739b1e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlobeAdd.kt @@ -0,0 +1,102 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.GlobeAdd: ImageVector + get() { + if (_globeAdd != null) { + return _globeAdd!! + } + _globeAdd = fluentIcon(name = "Regular.GlobeAdd") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 9.97f, 10.78f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.47f, -1.05f) + verticalLineToRelative(0.18f) + verticalLineToRelative(-0.32f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, -0.23f, -1.59f) + lineTo(16.9f, 10.0f) + lineToRelative(0.07f, 1.02f) + curveToRelative(-0.52f, 0.04f, -1.02f, 0.14f, -1.49f, 0.3f) + curveToRelative(-0.01f, -0.45f, -0.05f, -0.9f, -0.1f, -1.32f) + lineTo(8.6f, 10.0f) + arcToRelative(18.97f, 18.97f, 0.0f, false, false, 0.14f, 5.0f) + horizontalLineToRelative(2.76f) + curveToRelative(-0.2f, 0.48f, -0.34f, 0.98f, -0.42f, 1.5f) + lineTo(9.06f, 16.5f) + curveToRelative(0.6f, 2.22f, 1.6f, 3.74f, 2.66f, 3.97f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, 1.06f, 1.5f) + arcTo(10.0f, 10.0f, 0.0f, true, true, 12.0f, 2.0f) + close() + moveTo(17.5f, 14.0f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) + lineToRelative(-0.01f, 0.1f) + lineTo(17.0f, 17.0f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(0.18f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) + lineToRelative(0.1f, 0.01f) + lineTo(17.0f, 18.0f) + verticalLineToRelative(2.6f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + horizontalLineToRelative(0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) + lineToRelative(0.01f, -0.1f) + lineTo(18.0f, 18.0f) + horizontalLineToRelative(2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + verticalLineToRelative(-0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) + lineToRelative(-0.1f, -0.01f) + lineTo(18.0f, 17.0f) + verticalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) + horizontalLineToRelative(-0.09f) + close() + moveTo(7.51f, 16.5f) + lineTo(4.79f, 16.5f) + arcToRelative(8.53f, 8.53f, 0.0f, false, false, 4.1f, 3.41f) + arcToRelative(11.41f, 11.41f, 0.0f, false, true, -1.38f, -3.4f) + close() + moveTo(3.74f, 10.0f) + verticalLineToRelative(0.02f) + arcToRelative(8.52f, 8.52f, 0.0f, false, false, 0.3f, 4.98f) + horizontalLineToRelative(3.18f) + arcToRelative(20.3f, 20.3f, 0.0f, false, true, -0.13f, -5.0f) + lineTo(3.74f, 10.0f) + close() + moveTo(8.88f, 4.1f) + horizontalLineToRelative(-0.02f) + arcToRelative(8.53f, 8.53f, 0.0f, false, false, -4.6f, 4.4f) + lineTo(7.3f, 8.5f) + curveToRelative(0.31f, -1.75f, 0.86f, -3.28f, 1.58f, -4.4f) + close() + moveTo(12.0f, 3.5f) + horizontalLineToRelative(-0.11f) + curveToRelative(-1.27f, 0.12f, -2.5f, 2.12f, -3.06f, 5.0f) + horizontalLineToRelative(6.34f) + curveToRelative(-0.58f, -2.96f, -1.86f, -5.0f, -3.17f, -5.0f) + close() + moveTo(15.12f, 4.1f) + lineTo(15.22f, 4.26f) + arcTo(12.64f, 12.64f, 0.0f, false, true, 16.7f, 8.5f) + horizontalLineToRelative(3.05f) + curveToRelative(-0.9f, -2.0f, -2.57f, -3.6f, -4.63f, -4.4f) + close() + } + } + return _globeAdd!! + } + +private var _globeAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlobeClock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlobeClock.kt new file mode 100644 index 00000000..926b6479 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlobeClock.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.GlobeClock: ImageVector + get() { + if (_globeClock != null) { + return _globeClock!! + } + _globeClock = fluentIcon(name = "Regular.GlobeClock") { + fluentPath { + moveTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -9.22f, 9.97f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, -1.06f, -1.5f) + curveToRelative(-1.06f, -0.23f, -2.06f, -1.75f, -2.66f, -3.97f) + horizontalLineToRelative(2.02f) + curveToRelative(0.08f, -0.52f, 0.22f, -1.02f, 0.42f, -1.5f) + lineTo(8.74f, 15.0f) + arcToRelative(18.5f, 18.5f, 0.0f, false, true, -0.14f, -5.0f) + horizontalLineToRelative(6.8f) + curveToRelative(0.04f, 0.43f, 0.08f, 0.87f, 0.09f, 1.32f) + curveToRelative(0.47f, -0.16f, 0.97f, -0.26f, 1.5f, -0.3f) + lineTo(16.9f, 10.0f) + horizontalLineToRelative(3.36f) + curveToRelative(0.12f, 0.51f, 0.2f, 1.05f, 0.22f, 1.59f) + lineToRelative(0.01f, 0.32f) + verticalLineToRelative(-0.18f) + curveToRelative(0.54f, 0.28f, 1.03f, 0.64f, 1.47f, 1.05f) + curveToRelative(0.02f, -0.25f, 0.03f, -0.52f, 0.03f, -0.78f) + close() + moveTo(4.8f, 16.5f) + lineTo(7.5f, 16.5f) + curveToRelative(0.32f, 1.34f, 0.8f, 2.5f, 1.37f, 3.41f) + arcToRelative(8.53f, 8.53f, 0.0f, false, true, -4.1f, -3.4f) + close() + moveTo(3.74f, 10.02f) + lineTo(3.74f, 10.0f) + lineTo(7.1f, 10.0f) + arcToRelative(20.85f, 20.85f, 0.0f, false, false, 0.13f, 5.0f) + lineTo(4.04f, 15.0f) + arcToRelative(8.48f, 8.48f, 0.0f, false, true, -0.3f, -4.98f) + close() + moveTo(8.86f, 4.1f) + horizontalLineToRelative(0.02f) + arcTo(12.36f, 12.36f, 0.0f, false, false, 7.3f, 8.5f) + lineTo(4.25f, 8.5f) + curveToRelative(0.9f, -2.0f, 2.56f, -3.59f, 4.61f, -4.4f) + close() + moveTo(11.89f, 3.5f) + lineTo(12.0f, 3.5f) + curveToRelative(1.3f, 0.0f, 2.59f, 2.04f, 3.17f, 5.0f) + lineTo(8.83f, 8.5f) + curveToRelative(0.57f, -2.88f, 1.79f, -4.88f, 3.06f, -5.0f) + close() + moveTo(15.23f, 4.26f) + lineTo(15.13f, 4.09f) + arcToRelative(8.53f, 8.53f, 0.0f, false, true, 4.62f, 4.41f) + lineTo(16.7f, 8.5f) + curveToRelative(-0.3f, -1.66f, -0.8f, -3.12f, -1.47f, -4.24f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(17.5f, 17.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(17.0f, 18.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + verticalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + verticalLineToRelative(2.5f) + close() + } + } + return _globeClock!! + } + +private var _globeClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlobeDesktop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlobeDesktop.kt new file mode 100644 index 00000000..6817c8bd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlobeDesktop.kt @@ -0,0 +1,88 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.GlobeDesktop: ImageVector + get() { + if (_globeDesktop != null) { + return _globeDesktop!! + } + _globeDesktop = fluentIcon(name = "Regular.GlobeDesktop") { + fluentPath { + moveTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -11.0f, 9.95f) + verticalLineToRelative(-1.84f) + curveToRelative(-0.78f, -0.61f, -1.48f, -1.9f, -1.94f, -3.61f) + lineTo(11.0f, 16.5f) + lineTo(11.0f, 15.0f) + lineTo(8.74f, 15.0f) + arcToRelative(18.5f, 18.5f, 0.0f, false, true, -0.14f, -5.0f) + horizontalLineToRelative(6.8f) + curveToRelative(0.06f, 0.64f, 0.1f, 1.3f, 0.1f, 2.0f) + lineTo(17.0f, 12.0f) + curveToRelative(0.0f, -0.68f, -0.03f, -1.35f, -0.1f, -2.0f) + horizontalLineToRelative(3.36f) + curveToRelative(0.16f, 0.64f, 0.24f, 1.31f, 0.24f, 2.0f) + lineTo(22.0f, 12.0f) + close() + moveTo(4.8f, 16.5f) + lineTo(7.5f, 16.5f) + lineToRelative(0.1f, 0.4f) + curveToRelative(0.32f, 1.16f, 0.75f, 2.2f, 1.27f, 3.01f) + arcToRelative(8.53f, 8.53f, 0.0f, false, true, -4.1f, -3.41f) + close() + moveTo(3.74f, 10.0f) + horizontalLineToRelative(3.35f) + arcToRelative(20.85f, 20.85f, 0.0f, false, false, 0.13f, 5.0f) + lineTo(4.04f, 15.0f) + arcToRelative(8.48f, 8.48f, 0.0f, false, true, -0.3f, -4.98f) + lineTo(3.74f, 10.0f) + close() + moveTo(8.86f, 4.1f) + lineTo(8.88f, 4.09f) + arcTo(12.36f, 12.36f, 0.0f, false, false, 7.3f, 8.5f) + lineTo(4.25f, 8.5f) + curveToRelative(0.9f, -2.0f, 2.56f, -3.59f, 4.6f, -4.4f) + close() + moveTo(11.88f, 3.5f) + horizontalLineToRelative(0.25f) + curveToRelative(1.26f, 0.13f, 2.48f, 2.13f, 3.04f, 5.0f) + lineTo(8.83f, 8.5f) + curveToRelative(0.57f, -2.88f, 1.79f, -4.88f, 3.05f, -5.0f) + close() + moveTo(15.23f, 4.26f) + lineTo(15.12f, 4.09f) + lineTo(15.42f, 4.21f) + arcToRelative(8.53f, 8.53f, 0.0f, false, true, 4.33f, 4.29f) + lineTo(16.7f, 8.5f) + curveToRelative(-0.3f, -1.66f, -0.8f, -3.12f, -1.47f, -4.24f) + close() + moveTo(12.0f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) + horizontalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + lineTo(19.0f, 22.0f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineToRelative(-5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineToRelative(-9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(5.0f) + close() + } + } + return _globeDesktop!! + } + +private var _globeDesktop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlobeLocation.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlobeLocation.kt new file mode 100644 index 00000000..b4071b33 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlobeLocation.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.GlobeLocation: ImageVector + get() { + if (_globeLocation != null) { + return _globeLocation!! + } + _globeLocation = fluentIcon(name = "Regular.GlobeLocation") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 9.94f, 11.16f) + curveToRelative(-0.42f, -0.43f, -0.9f, -0.79f, -1.44f, -1.06f) + lineTo(20.5f, 12.0f) + curveToRelative(0.0f, -0.69f, -0.08f, -1.36f, -0.24f, -2.0f) + horizontalLineToRelative(-3.35f) + curveToRelative(0.05f, 0.52f, 0.08f, 1.05f, 0.09f, 1.59f) + curveToRelative(-0.53f, 0.1f, -1.03f, 0.27f, -1.5f, 0.5f) + lineTo(15.5f, 12.0f) + curveToRelative(0.0f, -0.7f, -0.04f, -1.36f, -0.1f, -2.0f) + lineTo(8.6f, 10.0f) + arcToRelative(18.97f, 18.97f, 0.0f, false, false, 0.14f, 5.0f) + horizontalLineToRelative(4.13f) + curveToRelative(-0.18f, 0.47f, -0.3f, 0.97f, -0.35f, 1.5f) + lineTo(9.06f, 16.5f) + curveToRelative(0.65f, 2.41f, 1.79f, 4.0f, 2.94f, 4.0f) + curveToRelative(0.46f, 0.0f, 0.9f, -0.25f, 1.33f, -0.7f) + curveToRelative(0.36f, 0.62f, 0.83f, 1.23f, 1.4f, 1.83f) + arcTo(10.0f, 10.0f, 0.0f, true, true, 12.0f, 2.0f) + close() + moveTo(7.5f, 16.5f) + lineTo(4.8f, 16.5f) + arcToRelative(8.53f, 8.53f, 0.0f, false, false, 4.09f, 3.41f) + curveToRelative(-0.52f, -0.82f, -0.95f, -1.85f, -1.27f, -3.02f) + lineToRelative(-0.1f, -0.39f) + close() + moveTo(7.1f, 10.0f) + lineTo(3.73f, 10.0f) + verticalLineToRelative(0.02f) + arcToRelative(8.52f, 8.52f, 0.0f, false, false, 0.3f, 4.98f) + horizontalLineToRelative(3.18f) + arcToRelative(20.3f, 20.3f, 0.0f, false, true, -0.13f, -5.0f) + close() + moveTo(8.88f, 4.09f) + horizontalLineToRelative(-0.02f) + arcToRelative(8.53f, 8.53f, 0.0f, false, false, -4.61f, 4.4f) + lineToRelative(3.05f, 0.01f) + curveToRelative(0.31f, -1.75f, 0.86f, -3.28f, 1.58f, -4.41f) + close() + moveTo(12.0f, 3.49f) + lineTo(11.88f, 3.5f) + curveToRelative(-1.26f, 0.12f, -2.48f, 2.12f, -3.05f, 5.0f) + horizontalLineToRelative(6.34f) + curveToRelative(-0.56f, -2.87f, -1.78f, -4.87f, -3.04f, -5.0f) + lineTo(12.0f, 3.5f) + close() + moveTo(15.12f, 4.09f) + lineTo(15.22f, 4.26f) + arcTo(12.64f, 12.64f, 0.0f, false, true, 16.7f, 8.5f) + horizontalLineToRelative(3.05f) + arcToRelative(8.53f, 8.53f, 0.0f, false, false, -4.34f, -4.29f) + lineToRelative(-0.29f, -0.12f) + close() + moveTo(22.5f, 16.99f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, -9.0f, 0.0f) + curveToRelative(0.0f, 1.87f, 1.42f, 3.82f, 4.2f, 5.9f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.6f, 0.0f) + curveToRelative(2.78f, -2.08f, 4.2f, -4.03f, 4.2f, -5.9f) + close() + moveTo(16.5f, 16.99f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + } + } + return _globeLocation!! + } + +private var _globeLocation: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlobePerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlobePerson.kt new file mode 100644 index 00000000..9331acf9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlobePerson.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.GlobePerson: ImageVector + get() { + if (_globePerson != null) { + return _globePerson!! + } + _globePerson = fluentIcon(name = "Regular.GlobePerson") { + fluentPath { + moveTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -8.42f, 9.88f) + arcToRelative(3.68f, 3.68f, 0.0f, false, true, -0.57f, -1.78f) + curveToRelative(-0.33f, 0.26f, -0.67f, 0.4f, -1.01f, 0.4f) + curveToRelative(-1.15f, 0.0f, -2.29f, -1.59f, -2.94f, -4.0f) + horizontalLineToRelative(6.57f) + curveToRelative(-0.3f, -0.44f, -0.52f, -0.95f, -0.6f, -1.5f) + horizontalLineToRelative(-6.3f) + arcToRelative(18.5f, 18.5f, 0.0f, false, true, -0.13f, -5.0f) + horizontalLineToRelative(6.8f) + arcToRelative(18.97f, 18.97f, 0.0f, false, true, 0.09f, 2.72f) + curveToRelative(0.35f, -0.6f, 0.87f, -1.08f, 1.5f, -1.38f) + curveToRelative(-0.01f, -0.46f, -0.04f, -0.9f, -0.08f, -1.34f) + horizontalLineToRelative(3.35f) + curveToRelative(0.13f, 0.52f, 0.2f, 1.06f, 0.23f, 1.62f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 1.39f, 1.96f) + curveToRelative(0.08f, -0.52f, 0.12f, -1.04f, 0.12f, -1.58f) + close() + moveTo(4.8f, 16.5f) + lineTo(7.5f, 16.5f) + lineToRelative(0.1f, 0.4f) + curveToRelative(0.32f, 1.16f, 0.75f, 2.2f, 1.27f, 3.01f) + arcToRelative(8.53f, 8.53f, 0.0f, false, true, -4.1f, -3.41f) + close() + moveTo(3.74f, 10.0f) + horizontalLineToRelative(3.35f) + arcToRelative(20.85f, 20.85f, 0.0f, false, false, 0.13f, 5.0f) + lineTo(4.04f, 15.0f) + arcToRelative(8.48f, 8.48f, 0.0f, false, true, -0.3f, -4.98f) + lineTo(3.74f, 10.0f) + close() + moveTo(8.86f, 4.1f) + lineTo(8.88f, 4.09f) + arcTo(12.36f, 12.36f, 0.0f, false, false, 7.3f, 8.5f) + lineTo(4.25f, 8.5f) + curveToRelative(0.9f, -2.0f, 2.56f, -3.59f, 4.6f, -4.4f) + close() + moveTo(11.88f, 3.5f) + horizontalLineToRelative(0.25f) + curveToRelative(1.26f, 0.13f, 2.47f, 2.13f, 3.04f, 5.0f) + lineTo(8.83f, 8.5f) + curveToRelative(0.57f, -2.88f, 1.79f, -4.88f, 3.05f, -5.0f) + close() + moveTo(15.23f, 4.26f) + lineTo(15.12f, 4.09f) + lineTo(15.42f, 4.21f) + arcToRelative(8.53f, 8.53f, 0.0f, false, true, 4.33f, 4.29f) + lineTo(16.7f, 8.5f) + curveToRelative(-0.3f, -1.66f, -0.8f, -3.12f, -1.47f, -4.24f) + close() + moveTo(21.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(23.0f, 19.87f) + curveToRelative(0.0f, 1.56f, -1.29f, 3.13f, -4.5f, 3.13f) + reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _globePerson!! + } + +private var _globePerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlobeSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlobeSearch.kt new file mode 100644 index 00000000..8e6d2b5b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlobeSearch.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.GlobeSearch: ImageVector + get() { + if (_globeSearch != null) { + return _globeSearch!! + } + _globeSearch = fluentIcon(name = "Regular.GlobeSearch") { + fluentPath { + moveTo(3.44f, 9.96f) + arcToRelative(4.93f, 4.93f, 0.0f, false, false, 6.23f, 7.57f) + lineToRelative(4.26f, 4.25f) + arcToRelative(0.77f, 0.77f, 0.0f, false, false, 1.17f, -1.0f) + lineToRelative(-0.08f, -0.1f) + lineToRelative(-4.21f, -4.2f) + arcToRelative(4.93f, 4.93f, 0.0f, false, false, -7.37f, -6.52f) + close() + moveTo(12.03f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, -9.76f, 7.76f) + arcToRelative(5.83f, 5.83f, 0.0f, false, true, 2.24f, -1.73f) + arcToRelative(8.52f, 8.52f, 0.0f, false, true, 4.4f, -3.94f) + lineToRelative(-0.11f, 0.17f) + curveToRelative(-0.54f, 0.9f, -0.97f, 2.01f, -1.28f, 3.28f) + curveToRelative(0.5f, 0.05f, 1.0f, 0.17f, 1.47f, 0.34f) + curveToRelative(0.63f, -2.63f, 1.82f, -4.38f, 3.04f, -4.38f) + horizontalLineToRelative(0.11f) + curveToRelative(1.27f, 0.12f, 2.49f, 2.12f, 3.06f, 5.0f) + horizontalLineToRelative(-5.0f) + arcToRelative(5.95f, 5.95f, 0.0f, false, true, 1.55f, 1.5f) + horizontalLineToRelative(3.67f) + arcToRelative(18.97f, 18.97f, 0.0f, false, true, -0.13f, 5.0f) + horizontalLineToRelative(-2.65f) + curveToRelative(-0.08f, 0.29f, -0.18f, 0.57f, -0.3f, 0.84f) + lineToRelative(-0.13f, 0.27f) + lineToRelative(-0.12f, 0.23f) + lineToRelative(0.16f, 0.16f) + horizontalLineToRelative(2.71f) + curveToRelative(-0.2f, 0.75f, -0.45f, 1.42f, -0.73f, 1.98f) + lineToRelative(1.1f, 1.11f) + curveToRelative(0.5f, -0.86f, 0.9f, -1.9f, 1.19f, -3.09f) + horizontalLineToRelative(2.72f) + arcToRelative(8.54f, 8.54f, 0.0f, false, true, -3.73f, 3.26f) + lineToRelative(0.22f, 0.22f) + lineToRelative(0.13f, 0.14f) + curveToRelative(0.22f, 0.3f, 0.34f, 0.63f, 0.37f, 0.96f) + arcTo(10.0f, 10.0f, 0.0f, false, false, 12.03f, 2.0f) + close() + moveTo(9.3f, 11.05f) + arcToRelative(3.38f, 3.38f, 0.0f, true, true, -4.78f, 4.78f) + arcToRelative(3.38f, 3.38f, 0.0f, false, true, 4.78f, -4.78f) + close() + moveTo(16.93f, 10.0f) + horizontalLineToRelative(3.36f) + verticalLineToRelative(0.03f) + arcTo(8.52f, 8.52f, 0.0f, false, true, 20.0f, 15.0f) + lineTo(16.8f, 15.0f) + arcToRelative(20.31f, 20.31f, 0.0f, false, false, 0.12f, -5.0f) + close() + moveTo(15.14f, 4.09f) + horizontalLineToRelative(0.03f) + curveToRelative(2.04f, 0.82f, 3.7f, 2.41f, 4.6f, 4.4f) + horizontalLineToRelative(-3.04f) + arcToRelative(12.36f, 12.36f, 0.0f, false, false, -1.59f, -4.4f) + close() + } + } + return _globeSearch!! + } + +private var _globeSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlobeShield.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlobeShield.kt new file mode 100644 index 00000000..3b5e81ef --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlobeShield.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.GlobeShield: ImageVector + get() { + if (_globeShield != null) { + return _globeShield!! + } + _globeShield = fluentIcon(name = "Regular.GlobeShield") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 10.0f, 9.89f) + arcToRelative(6.06f, 6.06f, 0.0f, false, true, -1.52f, -0.57f) + curveToRelative(-0.04f, -0.45f, -0.11f, -0.9f, -0.22f, -1.32f) + horizontalLineToRelative(-1.94f) + arcToRelative(1.62f, 1.62f, 0.0f, false, false, -0.64f, 0.0f) + horizontalLineToRelative(-0.77f) + lineToRelative(0.03f, 0.37f) + curveToRelative(-0.33f, 0.27f, -0.83f, 0.65f, -1.45f, 0.97f) + curveToRelative(-0.02f, -0.46f, -0.05f, -0.9f, -0.1f, -1.34f) + lineTo(8.6f, 10.0f) + arcToRelative(18.97f, 18.97f, 0.0f, false, false, 0.14f, 5.0f) + lineTo(12.0f, 15.0f) + verticalLineToRelative(1.5f) + lineTo(9.06f, 16.5f) + curveToRelative(0.65f, 2.41f, 1.79f, 4.0f, 2.94f, 4.0f) + curveToRelative(0.28f, 0.0f, 0.55f, -0.09f, 0.82f, -0.26f) + curveToRelative(0.34f, 0.6f, 0.75f, 1.12f, 1.2f, 1.56f) + arcTo(10.0f, 10.0f, 0.0f, true, true, 12.0f, 2.0f) + close() + moveTo(7.5f, 16.5f) + lineTo(4.8f, 16.5f) + arcToRelative(8.53f, 8.53f, 0.0f, false, false, 4.09f, 3.41f) + curveToRelative(-0.52f, -0.82f, -0.95f, -1.85f, -1.27f, -3.02f) + lineToRelative(-0.1f, -0.39f) + close() + moveTo(7.1f, 10.0f) + lineTo(3.73f, 10.0f) + verticalLineToRelative(0.02f) + arcToRelative(8.52f, 8.52f, 0.0f, false, false, 0.3f, 4.98f) + horizontalLineToRelative(3.18f) + arcToRelative(20.3f, 20.3f, 0.0f, false, true, -0.13f, -5.0f) + close() + moveTo(8.88f, 4.09f) + horizontalLineToRelative(-0.02f) + arcToRelative(8.53f, 8.53f, 0.0f, false, false, -4.61f, 4.4f) + lineToRelative(3.05f, 0.01f) + curveToRelative(0.31f, -1.75f, 0.86f, -3.28f, 1.58f, -4.41f) + close() + moveTo(12.0f, 3.49f) + lineTo(11.88f, 3.5f) + curveToRelative(-1.26f, 0.12f, -2.48f, 2.12f, -3.05f, 5.0f) + horizontalLineToRelative(6.34f) + curveToRelative(-0.56f, -2.87f, -1.78f, -4.87f, -3.04f, -5.0f) + lineTo(12.0f, 3.5f) + close() + moveTo(15.12f, 4.09f) + lineTo(15.22f, 4.26f) + arcTo(12.64f, 12.64f, 0.0f, false, true, 16.7f, 8.5f) + horizontalLineToRelative(3.05f) + arcToRelative(8.53f, 8.53f, 0.0f, false, false, -4.34f, -4.29f) + lineToRelative(-0.29f, -0.12f) + close() + moveTo(22.5f, 12.98f) + arcToRelative(7.7f, 7.7f, 0.0f, false, true, -4.11f, -1.87f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.77f, 0.0f) + curveToRelative(-0.69f, 0.58f, -2.21f, 1.7f, -4.12f, 1.87f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, -0.5f, 0.52f) + lineTo(13.0f, 17.0f) + curveToRelative(0.0f, 4.22f, 4.1f, 5.72f, 4.87f, 5.96f) + curveToRelative(0.09f, 0.03f, 0.17f, 0.03f, 0.26f, 0.0f) + curveTo(18.9f, 22.72f, 23.0f, 21.22f, 23.0f, 17.0f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.28f, -0.22f, -0.5f, -0.5f, -0.52f) + close() + } + } + return _globeShield!! + } + +private var _globeShield: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlobeSurface.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlobeSurface.kt new file mode 100644 index 00000000..1765e92f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlobeSurface.kt @@ -0,0 +1,97 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.GlobeSurface: ImageVector + get() { + if (_globeSurface != null) { + return _globeSurface!! + } + _globeSurface = fluentIcon(name = "Regular.GlobeSurface") { + fluentPath { + moveTo(20.5f, 10.5f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, -17.0f, 0.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 17.0f, 0.0f) + close() + moveTo(13.47f, 15.87f) + curveToRelative(-0.66f, 1.42f, -1.29f, 1.63f, -1.47f, 1.63f) + curveToRelative(-0.18f, 0.0f, -0.8f, -0.21f, -1.47f, -1.63f) + curveToRelative(-0.3f, -0.65f, -0.57f, -1.45f, -0.75f, -2.37f) + horizontalLineToRelative(4.44f) + curveToRelative(-0.18f, 0.92f, -0.44f, 1.72f, -0.75f, 2.37f) + close() + moveTo(9.5f, 10.5f) + curveToRelative(0.0f, -0.52f, 0.02f, -1.02f, 0.07f, -1.5f) + horizontalLineToRelative(4.86f) + arcToRelative(16.42f, 16.42f, 0.0f, false, true, 0.0f, 3.0f) + lineTo(9.57f, 12.0f) + curveToRelative(-0.05f, -0.48f, -0.07f, -0.98f, -0.07f, -1.5f) + close() + moveTo(14.57f, 17.01f) + curveToRelative(0.52f, -0.93f, 0.93f, -2.13f, 1.17f, -3.51f) + horizontalLineToRelative(2.59f) + arcToRelative(7.02f, 7.02f, 0.0f, false, true, -3.76f, 3.51f) + close() + moveTo(15.94f, 12.0f) + arcToRelative(17.98f, 17.98f, 0.0f, false, false, 0.0f, -3.0f) + horizontalLineToRelative(2.9f) + arcToRelative(7.03f, 7.03f, 0.0f, false, true, 0.0f, 3.0f) + horizontalLineToRelative(-2.9f) + close() + moveTo(5.16f, 12.0f) + arcToRelative(7.03f, 7.03f, 0.0f, false, true, 0.0f, -3.0f) + horizontalLineToRelative(2.9f) + arcToRelative(17.98f, 17.98f, 0.0f, false, false, 0.0f, 3.0f) + horizontalLineToRelative(-2.9f) + close() + moveTo(8.26f, 13.5f) + curveToRelative(0.24f, 1.38f, 0.65f, 2.58f, 1.17f, 3.51f) + arcToRelative(7.02f, 7.02f, 0.0f, false, true, -3.76f, -3.51f) + horizontalLineToRelative(2.59f) + close() + moveTo(14.22f, 7.5f) + lineTo(9.78f, 7.5f) + curveToRelative(0.18f, -0.92f, 0.44f, -1.72f, 0.75f, -2.37f) + curveTo(11.19f, 3.7f, 11.82f, 3.5f, 12.0f, 3.5f) + curveToRelative(0.18f, 0.0f, 0.8f, 0.21f, 1.47f, 1.63f) + curveToRelative(0.3f, 0.65f, 0.57f, 1.45f, 0.75f, 2.37f) + close() + moveTo(18.32f, 7.5f) + horizontalLineToRelative(-2.58f) + arcToRelative(11.34f, 11.34f, 0.0f, false, false, -1.17f, -3.51f) + curveToRelative(1.65f, 0.65f, 3.0f, 1.91f, 3.76f, 3.51f) + close() + moveTo(8.26f, 7.5f) + lineTo(5.67f, 7.5f) + arcToRelative(7.02f, 7.02f, 0.0f, false, true, 3.76f, -3.51f) + curveToRelative(-0.52f, 0.93f, -0.93f, 2.13f, -1.17f, 3.51f) + close() + moveTo(4.0f, 16.0f) + horizontalLineToRelative(0.25f) + curveToRelative(0.4f, 0.55f, 0.84f, 1.05f, 1.33f, 1.5f) + lineTo(4.57f, 17.5f) + lineToRelative(-0.83f, 3.0f) + horizontalLineToRelative(16.52f) + lineToRelative(-0.83f, -3.0f) + horizontalLineToRelative(-1.0f) + curveToRelative(0.48f, -0.45f, 0.93f, -0.95f, 1.32f, -1.5f) + lineTo(20.0f, 16.0f) + curveToRelative(0.34f, 0.0f, 0.63f, 0.22f, 0.72f, 0.55f) + lineToRelative(1.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.72f, 0.95f) + lineTo(2.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.72f, -0.95f) + lineToRelative(1.25f, -4.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 4.0f, 16.0f) + close() + } + } + return _globeSurface!! + } + +private var _globeSurface: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlobeVideo.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlobeVideo.kt new file mode 100644 index 00000000..2ed4fdc3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GlobeVideo.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.GlobeVideo: ImageVector + get() { + if (_globeVideo != null) { + return _globeVideo!! + } + _globeVideo = fluentIcon(name = "Regular.GlobeVideo") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 9.88f, 11.57f) + lineToRelative(-0.21f, 0.12f) + lineToRelative(-0.96f, 0.64f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -0.4f, -0.55f) + arcToRelative(8.53f, 8.53f, 0.0f, false, false, -0.05f, -3.78f) + horizontalLineToRelative(-3.35f) + arcToRelative(20.85f, 20.85f, 0.0f, false, true, 0.07f, 3.0f) + horizontalLineToRelative(-1.5f) + arcToRelative(19.28f, 19.28f, 0.0f, false, false, -0.08f, -3.0f) + lineTo(8.6f, 10.0f) + arcToRelative(18.97f, 18.97f, 0.0f, false, false, 0.14f, 5.0f) + horizontalLineToRelative(2.31f) + curveToRelative(-0.03f, 0.16f, -0.05f, 0.33f, -0.05f, 0.5f) + verticalLineToRelative(1.0f) + lineTo(9.06f, 16.5f) + curveToRelative(0.46f, 1.7f, 1.16f, 3.0f, 1.94f, 3.61f) + verticalLineToRelative(1.39f) + curveToRelative(0.0f, 0.16f, 0.02f, 0.3f, 0.04f, 0.46f) + arcTo(10.0f, 10.0f, 0.0f, false, true, 12.0f, 2.0f) + close() + moveTo(7.5f, 16.5f) + lineTo(4.8f, 16.5f) + arcToRelative(8.53f, 8.53f, 0.0f, false, false, 4.1f, 3.41f) + curveToRelative(-0.53f, -0.82f, -0.96f, -1.84f, -1.28f, -3.01f) + lineToRelative(-0.1f, -0.4f) + close() + moveTo(7.1f, 10.0f) + lineTo(3.73f, 10.0f) + verticalLineToRelative(0.02f) + arcToRelative(8.52f, 8.52f, 0.0f, false, false, 0.3f, 4.98f) + horizontalLineToRelative(3.18f) + arcToRelative(20.3f, 20.3f, 0.0f, false, true, -0.13f, -5.0f) + close() + moveTo(8.88f, 4.1f) + horizontalLineToRelative(-0.02f) + arcToRelative(8.53f, 8.53f, 0.0f, false, false, -4.6f, 4.4f) + lineTo(7.3f, 8.5f) + curveToRelative(0.31f, -1.75f, 0.86f, -3.28f, 1.58f, -4.4f) + close() + moveTo(12.0f, 3.5f) + horizontalLineToRelative(-0.11f) + curveToRelative(-1.27f, 0.12f, -2.5f, 2.12f, -3.06f, 5.0f) + horizontalLineToRelative(6.34f) + curveToRelative(-0.56f, -2.87f, -1.78f, -4.87f, -3.04f, -5.0f) + lineTo(12.0f, 3.5f) + close() + moveTo(15.12f, 4.1f) + lineTo(15.22f, 4.26f) + arcTo(12.65f, 12.65f, 0.0f, false, true, 16.7f, 8.5f) + horizontalLineToRelative(3.05f) + arcToRelative(8.53f, 8.53f, 0.0f, false, false, -4.34f, -4.29f) + lineToRelative(-0.29f, -0.12f) + close() + moveTo(12.0f, 15.5f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(5.0f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(0.5f) + lineToRelative(2.22f, -1.48f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.78f, 0.41f) + verticalLineToRelative(7.14f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.78f, 0.41f) + lineTo(20.0f, 21.0f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + verticalLineToRelative(-6.0f) + close() + } + } + return _globeVideo!! + } + +private var _globeVideo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Grid.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Grid.kt new file mode 100644 index 00000000..5f390e5b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Grid.kt @@ -0,0 +1,102 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Grid: ImageVector + get() { + if (_grid != null) { + return _grid!! + } + _grid = fluentIcon(name = "Regular.Grid") { + fluentPath { + moveTo(8.75f, 13.0f) + curveTo(9.99f, 13.0f, 11.0f, 14.0f, 11.0f, 15.25f) + verticalLineToRelative(3.5f) + curveTo(11.0f, 19.99f, 10.0f, 21.0f, 8.75f, 21.0f) + horizontalLineToRelative(-3.5f) + curveTo(4.01f, 21.0f, 3.0f, 20.0f, 3.0f, 18.75f) + verticalLineToRelative(-3.5f) + curveTo(3.0f, 14.01f, 4.0f, 13.0f, 5.25f, 13.0f) + horizontalLineToRelative(3.5f) + close() + moveTo(18.75f, 13.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-3.5f) + curveTo(14.01f, 21.0f, 13.0f, 20.0f, 13.0f, 18.75f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(3.5f) + close() + moveTo(8.75f, 14.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(18.75f, 14.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(8.75f, 3.0f) + curveTo(9.99f, 3.0f, 11.0f, 4.0f, 11.0f, 5.25f) + verticalLineToRelative(3.5f) + curveTo(11.0f, 9.99f, 10.0f, 11.0f, 8.75f, 11.0f) + horizontalLineToRelative(-3.5f) + curveTo(4.01f, 11.0f, 3.0f, 10.0f, 3.0f, 8.75f) + verticalLineToRelative(-3.5f) + curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(3.5f) + close() + moveTo(18.75f, 3.0f) + curveTo(19.99f, 3.0f, 21.0f, 4.0f, 21.0f, 5.25f) + verticalLineToRelative(3.5f) + curveTo(21.0f, 9.99f, 20.0f, 11.0f, 18.75f, 11.0f) + horizontalLineToRelative(-3.5f) + curveTo(14.01f, 11.0f, 13.0f, 10.0f, 13.0f, 8.75f) + verticalLineToRelative(-3.5f) + curveTo(13.0f, 4.01f, 14.0f, 3.0f, 15.25f, 3.0f) + horizontalLineToRelative(3.5f) + close() + moveTo(8.75f, 4.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(18.75f, 4.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + } + } + return _grid!! + } + +private var _grid: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GridCircles.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GridCircles.kt new file mode 100644 index 00000000..07793d2a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GridCircles.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.GridCircles: ImageVector + get() { + if (_gridCircles != null) { + return _gridCircles!! + } + _gridCircles = fluentIcon(name = "Regular.GridCircles") { + fluentPath { + moveTo(11.0f, 7.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, -8.0f, 0.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 8.0f, 0.0f) + close() + moveTo(9.5f, 7.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(21.0f, 7.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, -8.0f, 0.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 8.0f, 0.0f) + close() + moveTo(19.5f, 7.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(7.0f, 21.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, 0.0f, -8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, 8.0f) + close() + moveTo(7.0f, 19.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) + close() + moveTo(21.0f, 17.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, -8.0f, 0.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 8.0f, 0.0f) + close() + moveTo(19.5f, 17.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + } + } + return _gridCircles!! + } + +private var _gridCircles: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GridDots.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GridDots.kt new file mode 100644 index 00000000..f2c46ba0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GridDots.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.GridDots: ImageVector + get() { + if (_gridDots != null) { + return _gridDots!! + } + _gridDots = fluentIcon(name = "Regular.GridDots") { + fluentPath { + moveTo(12.0f, 17.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(19.0f, 17.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(5.0f, 17.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(12.0f, 10.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(19.0f, 10.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(5.0f, 10.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(19.0f, 3.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(5.0f, 3.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + } + } + return _gridDots!! + } + +private var _gridDots: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Group.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Group.kt new file mode 100644 index 00000000..0e2d6aaf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Group.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Group: ImageVector + get() { + if (_group != null) { + return _group!! + } + _group = fluentIcon(name = "Regular.Group") { + fluentPath { + moveTo(5.0f, 7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) + close() + moveTo(19.0f, 7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) + close() + moveTo(21.0f, 19.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(5.0f, 21.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) + close() + moveTo(7.96f, 5.5f) + arcTo(3.02f, 3.02f, 0.0f, false, false, 7.83f, 4.0f) + horizontalLineToRelative(4.67f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 15.0f, 6.5f) + lineTo(15.0f, 9.0f) + horizontalLineToRelative(2.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.5f, 2.5f) + verticalLineToRelative(4.67f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -1.5f, -0.13f) + lineTo(18.5f, 11.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(15.0f, 10.5f) + verticalLineToRelative(2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.5f, 2.5f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(2.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(4.54f) + arcToRelative(3.02f, 3.02f, 0.0f, false, false, 0.13f, 1.5f) + lineTo(11.5f, 20.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 9.0f, 17.5f) + lineTo(9.0f, 15.0f) + lineTo(6.5f, 15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.0f, 12.5f) + lineTo(4.0f, 7.83f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 1.5f, 0.13f) + verticalLineToRelative(4.54f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + lineTo(9.0f, 13.5f) + verticalLineToRelative(-2.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 11.5f, 9.0f) + horizontalLineToRelative(2.0f) + lineTo(13.5f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(7.96f, 5.5f) + close() + moveTo(12.5f, 13.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(2.0f) + close() + } + } + return _group!! + } + +private var _group: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GroupDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GroupDismiss.kt new file mode 100644 index 00000000..12d70f03 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GroupDismiss.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.GroupDismiss: ImageVector + get() { + if (_groupDismiss != null) { + return _groupDismiss!! + } + _groupDismiss = fluentIcon(name = "Regular.GroupDismiss") { + fluentPath { + moveTo(7.0f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(21.0f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(7.0f, 19.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(8.0f, 5.0f) + curveToRelative(0.0f, 0.17f, -0.01f, 0.34f, -0.04f, 0.5f) + horizontalLineToRelative(4.54f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + lineTo(13.5f, 9.0f) + horizontalLineToRelative(-2.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 9.0f, 11.5f) + verticalLineToRelative(2.0f) + lineTo(6.5f, 13.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(5.5f, 7.96f) + arcTo(3.02f, 3.02f, 0.0f, false, true, 4.0f, 7.83f) + verticalLineToRelative(4.67f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 15.0f) + lineTo(9.0f, 15.0f) + verticalLineToRelative(2.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, 2.5f) + arcToRelative(6.45f, 6.45f, 0.0f, false, true, -0.44f, -1.6f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.56f, -0.9f) + verticalLineToRelative(-6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.9f, 0.56f) + curveToRelative(0.56f, 0.08f, 1.1f, 0.23f, 1.6f, 0.44f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 17.5f, 9.0f) + lineTo(15.0f, 9.0f) + lineTo(15.0f, 6.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 12.5f, 4.0f) + lineTo(7.83f, 4.0f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 8.0f, 5.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(17.5f, 16.8f) + lineTo(15.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-1.64f, -1.65f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.65f, 1.64f) + close() + } + } + return _groupDismiss!! + } + +private var _groupDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GroupList.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GroupList.kt new file mode 100644 index 00000000..24459a68 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GroupList.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.GroupList: ImageVector + get() { + if (_groupList != null) { + return _groupList!! + } + _groupList = fluentIcon(name = "Regular.GroupList") { + fluentPath { + moveTo(2.75f, 12.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(3.5f, 13.5f) + lineTo(3.5f, 19.0f) + horizontalLineToRelative(1.75f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 0.38f, -0.27f, 0.7f, -0.64f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-7.0f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.75f) + horizontalLineToRelative(0.1f) + close() + moveTo(21.25f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(7.75f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(13.6f) + close() + moveTo(21.25f, 13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(7.75f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(13.6f) + close() + moveTo(2.75f, 2.5f) + lineTo(5.25f, 2.51f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(3.5f, 4.01f) + verticalLineToRelative(5.48f) + horizontalLineToRelative(1.75f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.29f, 0.74f, 0.65f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 0.38f, -0.27f, 0.7f, -0.64f, 0.75f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-7.0f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + close() + moveTo(21.25f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(7.75f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + horizontalLineToRelative(13.6f) + close() + moveTo(21.25f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(7.75f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + horizontalLineToRelative(13.6f) + close() + } + } + return _groupList!! + } + +private var _groupList: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GroupReturn.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GroupReturn.kt new file mode 100644 index 00000000..01dc39ec --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GroupReturn.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.GroupReturn: ImageVector + get() { + if (_groupReturn != null) { + return _groupReturn!! + } + _groupReturn = fluentIcon(name = "Regular.GroupReturn") { + fluentPath { + moveTo(7.0f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(21.0f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(7.0f, 19.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(8.0f, 5.0f) + curveToRelative(0.0f, 0.17f, -0.01f, 0.34f, -0.04f, 0.5f) + horizontalLineToRelative(4.54f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + lineTo(13.5f, 9.0f) + horizontalLineToRelative(-2.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 9.0f, 11.5f) + verticalLineToRelative(2.0f) + lineTo(6.5f, 13.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(5.5f, 7.96f) + arcTo(3.02f, 3.02f, 0.0f, false, true, 4.0f, 7.83f) + verticalLineToRelative(4.67f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 6.5f, 15.0f) + lineTo(9.0f, 15.0f) + verticalLineToRelative(2.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, 2.5f) + arcToRelative(6.45f, 6.45f, 0.0f, false, true, -0.44f, -1.6f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.56f, -0.9f) + verticalLineToRelative(-6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.9f, 0.56f) + curveToRelative(0.56f, 0.08f, 1.1f, 0.23f, 1.6f, 0.44f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 17.5f, 9.0f) + lineTo(15.0f, 9.0f) + lineTo(15.0f, 6.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 12.5f, 4.0f) + lineTo(7.83f, 4.0f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 8.0f, 5.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.7f, 16.0f) + lineToRelative(0.65f, -0.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(1.5f, 1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-0.64f, -0.65f) + horizontalLineToRelative(2.04f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(0.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-0.25f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-2.04f) + close() + } + } + return _groupReturn!! + } + +private var _groupReturn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Guardian.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Guardian.kt new file mode 100644 index 00000000..963ace44 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Guardian.kt @@ -0,0 +1,97 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Guardian: ImageVector + get() { + if (_guardian != null) { + return _guardian!! + } + _guardian = fluentIcon(name = "Regular.Guardian") { + fluentPath { + moveTo(10.5f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) + close() + moveTo(9.0f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) + close() + moveTo(19.0f, 7.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(17.5f, 7.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(13.4f, 10.75f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.65f, -2.0f) + horizontalLineToRelative(-6.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 11.5f) + verticalLineToRelative(3.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.5f, 1.94f) + lineTo(4.5f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 3.25f, 1.56f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 11.0f, 20.0f) + verticalLineToRelative(-3.56f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 13.44f, 15.0f) + horizontalLineToRelative(0.06f) + verticalLineToRelative(5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 3.25f, 1.56f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 20.0f, 20.0f) + verticalLineToRelative(-2.81f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.5f, -1.94f) + lineTo(22.5f, 13.5f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.75f, -2.75f) + lineTo(13.4f, 10.75f) + close() + moveTo(11.0f, 14.5f) + lineTo(11.0f, 12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(8.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + lineTo(7.0f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(6.0f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + close() + moveTo(13.5f, 12.25f) + horizontalLineToRelative(6.25f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(1.75f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + lineTo(20.0f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + lineTo(16.0f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-0.75f) + verticalLineToRelative(-1.25f) + close() + } + } + return _guardian!! + } + +private var _guardian: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Guest.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Guest.kt new file mode 100644 index 00000000..3edcb911 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Guest.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Guest: ImageVector + get() { + if (_guest != null) { + return _guest!! + } + _guest = fluentIcon(name = "Regular.Guest") { + fluentPath { + moveTo(13.75f, 2.0f) + curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) + horizontalLineToRelative(1.76f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.25f) + lineTo(6.25f, 22.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) + lineTo(4.0f, 19.76f) + lineTo(4.0f, 6.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(6.25f, 4.0f) + horizontalLineToRelative(1.76f) + curveToRelative(0.13f, -1.12f, 1.08f, -2.0f, 2.24f, -2.0f) + horizontalLineToRelative(3.5f) + close() + moveTo(13.75f, 6.5f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.78f, 0.0f, -1.46f, -0.4f, -1.87f, -1.0f) + lineTo(6.25f, 5.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.75f) + horizontalLineToRelative(11.6f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.64f) + lineToRelative(0.01f, -0.1f) + lineTo(18.5f, 6.24f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-2.13f) + curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) + close() + moveTo(14.75f, 14.0f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 1.84f, -1.47f, 2.75f, -4.0f, 2.75f) + curveToRelative(-2.53f, 0.0f, -4.0f, -0.91f, -4.0f, -2.76f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -0.68f, 0.56f, -1.24f, 1.25f, -1.24f) + horizontalLineToRelative(5.5f) + close() + moveTo(14.5f, 15.5f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(0.24f) + curveToRelative(0.0f, 0.83f, 0.7f, 1.26f, 2.5f, 1.26f) + reflectiveCurveToRelative(2.5f, -0.43f, 2.5f, -1.26f) + verticalLineToRelative(-0.24f) + close() + moveTo(12.0f, 8.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + moveTo(12.0f, 9.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(13.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + close() + } + } + return _guest!! + } + +private var _guest: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GuestAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GuestAdd.kt new file mode 100644 index 00000000..51247633 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/GuestAdd.kt @@ -0,0 +1,98 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.GuestAdd: ImageVector + get() { + if (_guestAdd != null) { + return _guestAdd!! + } + _guestAdd = fluentIcon(name = "Regular.GuestAdd") { + fluentPath { + moveTo(12.75f, 2.0f) + curveToRelative(1.16f, 0.0f, 2.11f, 0.88f, 2.24f, 2.0f) + horizontalLineToRelative(1.76f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(4.92f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -0.17f) + lineTo(17.5f, 6.25f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-2.13f) + curveToRelative(-0.4f, 0.6f, -1.09f, 1.0f, -1.87f, 1.0f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.78f, 0.0f, -1.46f, -0.4f, -1.87f, -1.0f) + lineTo(5.25f, 5.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.75f) + horizontalLineToRelative(6.58f) + curveToRelative(0.3f, 0.56f, 0.66f, 1.06f, 1.08f, 1.5f) + lineTo(5.25f, 22.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.1f) + lineTo(3.0f, 19.76f) + lineTo(3.0f, 6.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(5.25f, 4.0f) + horizontalLineToRelative(1.76f) + curveToRelative(0.13f, -1.12f, 1.08f, -2.0f, 2.24f, -2.0f) + horizontalLineToRelative(3.5f) + close() + moveTo(12.75f, 3.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + close() + moveTo(8.25f, 14.0f) + horizontalLineToRelative(3.77f) + curveToRelative(-0.3f, 0.46f, -0.53f, 0.96f, -0.7f, 1.5f) + lineTo(8.5f, 15.5f) + verticalLineToRelative(0.24f) + curveToRelative(0.0f, 0.83f, 0.7f, 1.26f, 2.5f, 1.26f) + horizontalLineToRelative(0.02f) + arcToRelative(6.6f, 6.6f, 0.0f, false, false, 0.06f, 1.5f) + lineTo(11.0f, 18.5f) + curveToRelative(-2.53f, 0.0f, -4.0f, -0.91f, -4.0f, -2.76f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -0.68f, 0.56f, -1.24f, 1.25f, -1.24f) + close() + moveTo(11.0f, 8.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + moveTo(11.0f, 9.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _guestAdd!! + } + +private var _guestAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Guitar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Guitar.kt new file mode 100644 index 00000000..76005702 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Guitar.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Guitar: ImageVector + get() { + if (_guitar != null) { + return _guitar!! + } + _guitar = fluentIcon(name = "Regular.Guitar") { + fluentPath { + moveTo(11.63f, 14.08f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -1.76f, -1.76f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 1.76f, 1.76f) + close() + moveTo(18.15f, 2.72f) + curveToRelative(0.68f, -0.69f, 1.79f, -0.69f, 2.47f, 0.0f) + lineToRelative(0.7f, 0.7f) + curveToRelative(0.7f, 0.69f, 0.7f, 1.8f, 0.0f, 2.48f) + lineToRelative(-5.1f, 5.1f) + curveToRelative(0.92f, 1.34f, 0.47f, 3.24f, -1.04f, 4.0f) + lineToRelative(-0.84f, 0.41f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.32f, 0.67f) + lineToRelative(0.01f, 0.07f) + arcToRelative(4.7f, 4.7f, 0.0f, false, true, -1.79f, 4.69f) + arcToRelative(6.03f, 6.03f, 0.0f, false, true, -7.88f, -0.56f) + lineToRelative(-0.6f, -0.6f) + arcToRelative(6.03f, 6.03f, 0.0f, false, true, -0.55f, -7.88f) + arcToRelative(4.7f, 4.7f, 0.0f, false, true, 4.69f, -1.79f) + lineToRelative(0.07f, 0.01f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, 0.66f, -0.32f) + lineToRelative(0.42f, -0.83f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 4.0f, -1.05f) + lineToRelative(5.1f, -5.1f) + close() + moveTo(19.56f, 3.78f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.35f, 0.0f) + lineToRelative(-1.19f, 1.18f) + lineToRelative(1.06f, 1.06f) + lineToRelative(1.19f, -1.18f) + curveToRelative(0.1f, -0.1f, 0.1f, -0.26f, 0.0f, -0.36f) + lineToRelative(-0.71f, -0.7f) + close() + moveTo(18.02f, 7.08f) + lineTo(16.96f, 6.02f) + lineTo(13.61f, 9.37f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-0.16f, -0.16f) + curveToRelative(-0.6f, -0.6f, -1.62f, -0.43f, -2.0f, 0.33f) + lineToRelative(-0.42f, 0.83f) + arcToRelative(2.1f, 2.1f, 0.0f, false, true, -2.3f, 1.13f) + lineToRelative(-0.07f, -0.02f) + arcToRelative(3.2f, 3.2f, 0.0f, false, false, -3.2f, 1.22f) + arcToRelative(4.53f, 4.53f, 0.0f, false, false, 0.43f, 5.92f) + lineToRelative(0.6f, 0.6f) + arcToRelative(4.53f, 4.53f, 0.0f, false, false, 5.91f, 0.42f) + arcToRelative(3.2f, 3.2f, 0.0f, false, false, 1.22f, -3.2f) + lineToRelative(-0.01f, -0.07f) + arcToRelative(2.1f, 2.1f, 0.0f, false, true, 1.12f, -2.3f) + lineToRelative(0.84f, -0.42f) + curveToRelative(0.76f, -0.38f, 0.92f, -1.4f, 0.32f, -2.0f) + lineToRelative(-0.16f, -0.16f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(3.35f, -3.35f) + close() + } + } + return _guitar!! + } + +private var _guitar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HandDraw.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HandDraw.kt new file mode 100644 index 00000000..a8090557 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HandDraw.kt @@ -0,0 +1,110 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.HandDraw: ImageVector + get() { + if (_handDraw != null) { + return _handDraw!! + } + _handDraw = fluentIcon(name = "Regular.HandDraw") { + fluentPath { + moveTo(19.4f, 2.6f) + curveToRelative(0.32f, 0.25f, 0.6f, 0.63f, 0.6f, 1.15f) + curveToRelative(0.0f, 0.78f, -0.5f, 1.3f, -1.07f, 1.6f) + arcToRelative(6.1f, 6.1f, 0.0f, false, true, -2.0f, 0.53f) + curveToRelative(-1.46f, 0.18f, -3.35f, 0.17f, -5.2f, 0.15f) + horizontalLineToRelative(-0.24f) + arcToRelative(37.54f, 37.54f, 0.0f, false, false, -5.2f, 0.19f) + curveToRelative(-0.7f, 0.1f, -1.2f, 0.24f, -1.5f, 0.42f) + curveToRelative(-0.27f, 0.15f, -0.29f, 0.27f, -0.29f, 0.36f) + curveToRelative(0.0f, 0.01f, 0.02f, 0.04f, 0.08f, 0.08f) + curveToRelative(0.1f, 0.1f, 0.31f, 0.22f, 0.63f, 0.33f) + arcToRelative(11.18f, 11.18f, 0.0f, false, false, 2.79f, 0.5f) + verticalLineToRelative(1.5f) + lineToRelative(-0.45f, -0.04f) + curveToRelative(-0.98f, -0.1f, -2.02f, -0.26f, -2.84f, -0.55f) + curveToRelative(-0.4f, -0.14f, -0.8f, -0.33f, -1.12f, -0.6f) + arcTo(1.6f, 1.6f, 0.0f, false, true, 3.0f, 7.0f) + curveToRelative(0.0f, -0.78f, 0.46f, -1.32f, 1.04f, -1.66f) + curveToRelative(0.55f, -0.32f, 1.27f, -0.5f, 2.02f, -0.6f) + curveToRelative(1.52f, -0.23f, 3.53f, -0.22f, 5.45f, -0.2f) + horizontalLineToRelative(0.18f) + curveToRelative(1.9f, 0.0f, 3.7f, 0.02f, 5.04f, -0.15f) + curveToRelative(0.7f, -0.09f, 1.2f, -0.22f, 1.5f, -0.37f) + curveToRelative(0.2f, -0.1f, 0.25f, -0.18f, 0.27f, -0.23f) + lineToRelative(-0.03f, -0.02f) + curveToRelative(-0.1f, -0.08f, -0.29f, -0.18f, -0.6f, -0.28f) + curveToRelative(-0.61f, -0.2f, -1.5f, -0.32f, -2.46f, -0.4f) + curveToRelative(-1.6f, -0.12f, -3.29f, -0.1f, -4.2f, -0.1f) + lineToRelative(-0.46f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.42f) + curveToRelative(0.9f, -0.01f, 2.68f, -0.04f, 4.36f, 0.1f) + curveToRelative(1.0f, 0.08f, 2.01f, 0.21f, 2.8f, 0.46f) + curveToRelative(0.38f, 0.13f, 0.77f, 0.3f, 1.07f, 0.54f) + close() + moveTo(14.0f, 9.33f) + curveTo(13.92f, 7.97f, 13.1f, 7.0f, 11.74f, 7.0f) + curveTo(10.35f, 7.0f, 9.5f, 8.06f, 9.5f, 9.5f) + verticalLineToRelative(4.18f) + lineToRelative(-0.26f, -0.08f) + curveToRelative(-1.2f, -0.35f, -2.12f, -0.37f, -2.83f, -0.02f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 5.0f, 16.02f) + curveToRelative(0.0f, 0.28f, 0.16f, 0.53f, 0.41f, 0.66f) + lineToRelative(2.36f, 1.17f) + lineToRelative(0.1f, 0.05f) + lineToRelative(0.1f, 0.06f) + lineToRelative(1.88f, 1.26f) + lineToRelative(0.2f, 0.14f) + curveToRelative(0.43f, 0.34f, 0.78f, 0.78f, 1.02f, 1.28f) + lineToRelative(0.03f, 0.06f) + lineToRelative(0.08f, 0.16f) + curveToRelative(0.45f, 0.8f, 1.35f, 1.25f, 2.28f, 1.12f) + lineToRelative(2.42f, -0.35f) + lineToRelative(0.16f, -0.03f) + curveToRelative(0.82f, -0.18f, 1.47f, -0.8f, 1.69f, -1.61f) + lineToRelative(1.05f, -3.93f) + lineToRelative(0.04f, -0.18f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -2.6f, -3.85f) + lineToRelative(-2.22f, -0.4f) + lineTo(14.0f, 9.32f) + close() + moveTo(11.0f, 9.37f) + curveToRelative(0.04f, -0.6f, 0.29f, -0.87f, 0.75f, -0.87f) + curveToRelative(0.5f, 0.0f, 0.75f, 0.32f, 0.75f, 1.0f) + verticalLineToRelative(2.85f) + curveToRelative(0.05f, 0.32f, 0.3f, 0.58f, 0.62f, 0.64f) + lineToRelative(2.9f, 0.53f) + lineToRelative(0.07f, 0.01f) + curveToRelative(0.93f, 0.25f, 1.49f, 1.21f, 1.24f, 2.15f) + lineToRelative(-1.05f, 3.92f) + lineToRelative(-0.04f, 0.1f) + curveToRelative(-0.1f, 0.24f, -0.32f, 0.41f, -0.58f, 0.45f) + lineToRelative(-2.42f, 0.35f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.68f, -0.43f) + lineToRelative(-0.03f, -0.06f) + lineToRelative(-0.12f, -0.25f) + arcToRelative(4.96f, 4.96f, 0.0f, false, false, -1.63f, -1.79f) + lineTo(8.8f, 16.71f) + lineToRelative(-0.18f, -0.1f) + lineToRelative(-0.18f, -0.1f) + lineToRelative(-1.9f, -0.95f) + lineToRelative(0.04f, -0.12f) + curveToRelative(0.08f, -0.23f, 0.25f, -0.4f, 0.5f, -0.52f) + curveToRelative(0.44f, -0.22f, 1.42f, -0.08f, 2.88f, 0.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.04f, -0.7f) + lineTo(11.0f, 9.37f) + close() + } + } + return _handDraw!! + } + +private var _handDraw: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HandLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HandLeft.kt new file mode 100644 index 00000000..dfc83785 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HandLeft.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.HandLeft: ImageVector + get() { + if (_handLeft != null) { + return _handLeft!! + } + _handLeft = fluentIcon(name = "Regular.HandLeft") { + fluentPath { + moveTo(12.0f, 4.0f) + verticalLineToRelative(6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(10.5f, 5.23f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.48f) + curveToRelative(-0.26f, 0.0f, -0.5f, 0.24f, -0.5f, 0.5f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.3f, 0.52f) + arcToRelative(1.46f, 1.46f, 0.0f, false, false, -0.12f, -0.13f) + curveToRelative(-0.1f, -0.08f, -0.23f, -0.2f, -0.4f, -0.32f) + curveToRelative(-0.36f, -0.25f, -0.81f, -0.5f, -1.3f, -0.58f) + arcToRelative(2.28f, 2.28f, 0.0f, false, false, -1.4f, 0.14f) + curveToRelative(-0.2f, 0.1f, -0.36f, 0.26f, -0.44f, 0.53f) + lineToRelative(1.66f, 1.24f) + lineToRelative(0.08f, 0.07f) + lineToRelative(2.18f, 2.18f) + curveToRelative(0.93f, 0.93f, 1.7f, 2.0f, 2.3f, 3.19f) + curveToRelative(0.28f, 0.56f, 0.85f, 0.91f, 1.47f, 0.91f) + horizontalLineToRelative(2.73f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.33f, -0.71f) + curveToRelative(0.73f, -1.26f, 1.71f, -3.29f, 1.71f, -5.04f) + lineTo(18.0f, 7.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(15.5f, 5.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(13.0f, 4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + curveToRelative(-0.29f, 0.0f, -0.5f, 0.22f, -0.5f, 0.5f) + close() + moveTo(10.01f, 3.25f) + curveToRelative(0.21f, 0.0f, 0.42f, 0.03f, 0.6f, 0.1f) + lineToRelative(-0.6f, -0.1f) + close() + moveTo(10.61f, 3.35f) + curveToRelative(0.27f, -0.77f, 0.97f, -1.35f, 1.9f, -1.35f) + curveToRelative(0.9f, 0.0f, 1.61f, 0.59f, 1.88f, 1.34f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.6f, 1.73f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 19.5f, 7.0f) + verticalLineToRelative(7.74f) + curveToRelative(0.0f, 2.18f, -1.17f, 4.51f, -1.92f, 5.8f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 14.96f, 22.0f) + horizontalLineToRelative(-2.73f) + curveToRelative(-1.19f, 0.0f, -2.28f, -0.67f, -2.81f, -1.74f) + arcToRelative(10.76f, 10.76f, 0.0f, false, false, -2.02f, -2.8f) + lineToRelative(-2.14f, -2.14f) + lineToRelative(-1.96f, -1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.3f, -0.6f) + curveToRelative(0.0f, -1.06f, 0.53f, -1.8f, 1.3f, -2.2f) + arcToRelative(3.76f, 3.76f, 0.0f, false, true, 2.33f, -0.29f) + curveToRelative(0.52f, 0.1f, 0.99f, 0.29f, 1.37f, 0.5f) + verticalLineToRelative(-6.0f) + curveToRelative(0.0f, -1.07f, 0.89f, -2.02f, 2.01f, -2.01f) + } + } + return _handLeft!! + } + +private var _handLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HandLeftChat.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HandLeftChat.kt new file mode 100644 index 00000000..755c6be4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HandLeftChat.kt @@ -0,0 +1,94 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.HandLeftChat: ImageVector + get() { + if (_handLeftChat != null) { + return _handLeftChat!! + } + _handLeftChat = fluentIcon(name = "Regular.HandLeftChat") { + fluentPath { + moveTo(12.0f, 4.0f) + verticalLineToRelative(6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(10.5f, 5.23f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.48f) + curveToRelative(-0.26f, 0.0f, -0.5f, 0.24f, -0.5f, 0.5f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.3f, 0.52f) + arcToRelative(1.46f, 1.46f, 0.0f, false, false, -0.12f, -0.13f) + curveToRelative(-0.1f, -0.08f, -0.23f, -0.2f, -0.4f, -0.32f) + curveToRelative(-0.36f, -0.25f, -0.81f, -0.5f, -1.3f, -0.58f) + arcToRelative(2.28f, 2.28f, 0.0f, false, false, -1.4f, 0.14f) + curveToRelative(-0.2f, 0.1f, -0.36f, 0.26f, -0.44f, 0.53f) + lineToRelative(1.66f, 1.24f) + lineToRelative(0.08f, 0.07f) + lineToRelative(2.18f, 2.18f) + curveToRelative(0.93f, 0.93f, 1.7f, 2.0f, 2.3f, 3.19f) + curveToRelative(0.18f, 0.35f, 0.47f, 0.63f, 0.82f, 0.78f) + lineToRelative(-0.44f, 1.44f) + arcToRelative(3.15f, 3.15f, 0.0f, false, true, -1.72f, -1.55f) + arcToRelative(10.76f, 10.76f, 0.0f, false, false, -2.02f, -2.8f) + lineToRelative(-2.14f, -2.14f) + lineToRelative(-1.96f, -1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.3f, -0.6f) + curveToRelative(0.0f, -1.06f, 0.53f, -1.8f, 1.3f, -2.2f) + arcToRelative(3.76f, 3.76f, 0.0f, false, true, 2.33f, -0.29f) + curveToRelative(0.52f, 0.1f, 0.99f, 0.29f, 1.37f, 0.5f) + verticalLineToRelative(-6.0f) + arcToRelative(2.03f, 2.03f, 0.0f, false, true, 2.61f, -1.92f) + curveToRelative(0.27f, -0.76f, 0.97f, -1.34f, 1.9f, -1.34f) + curveToRelative(0.9f, 0.0f, 1.61f, 0.59f, 1.88f, 1.34f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.6f, 1.73f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 19.5f, 7.0f) + verticalLineToRelative(4.3f) + arcToRelative(6.48f, 6.48f, 0.0f, false, false, -1.5f, -0.3f) + verticalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.2f, -0.1f, 0.4f, -0.23f, 0.53f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -0.83f, 0.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.44f, -0.69f) + lineTo(15.5f, 5.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(13.0f, 4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + curveToRelative(-0.29f, 0.0f, -0.5f, 0.22f, -0.5f, 0.5f) + close() + moveTo(17.97f, 12.02f) + arcTo(5.48f, 5.48f, 0.0f, false, true, 23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, -8.17f, 4.81f) + lineToRelative(-2.18f, 0.67f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.63f, -0.62f) + lineToRelative(0.67f, -2.2f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 5.28f, -8.15f) + close() + moveTo(15.0f, 16.5f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + close() + moveTo(15.5f, 19.0f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) + close() + } + } + return _handLeftChat!! + } + +private var _handLeftChat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HandRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HandRight.kt new file mode 100644 index 00000000..415266f1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HandRight.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.HandRight: ImageVector + get() { + if (_handRight != null) { + return _handRight!! + } + _handRight = fluentIcon(name = "Regular.HandRight") { + fluentPath { + moveTo(12.0f, 4.0f) + verticalLineToRelative(6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(13.5f, 5.22f) + curveToRelative(0.0f, -0.24f, 0.2f, -0.47f, 0.5f, -0.48f) + curveToRelative(0.26f, 0.0f, 0.5f, 0.25f, 0.5f, 0.5f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.3f, 0.52f) + arcToRelative(2.23f, 2.23f, 0.0f, false, true, 0.12f, -0.12f) + curveToRelative(0.1f, -0.08f, 0.23f, -0.2f, 0.4f, -0.32f) + curveToRelative(0.36f, -0.25f, 0.81f, -0.5f, 1.3f, -0.58f) + curveToRelative(0.54f, -0.1f, 1.05f, -0.04f, 1.4f, 0.14f) + curveToRelative(0.2f, 0.1f, 0.36f, 0.26f, 0.44f, 0.53f) + lineToRelative(-1.66f, 1.24f) + arcToRelative(0.76f, 0.76f, 0.0f, false, false, -0.08f, 0.07f) + lineToRelative(-2.18f, 2.17f) + curveToRelative(-0.93f, 0.94f, -1.7f, 2.02f, -2.3f, 3.2f) + curveToRelative(-0.28f, 0.56f, -0.85f, 0.91f, -1.47f, 0.91f) + lineTo(9.04f, 20.5f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.33f, -0.71f) + curveTo(6.98f, 18.53f, 6.0f, 16.5f, 6.0f, 14.75f) + lineTo(6.0f, 7.0f) + curveToRelative(0.0f, -0.27f, 0.22f, -0.5f, 0.5f, -0.5f) + curveToRelative(0.29f, 0.0f, 0.5f, 0.23f, 0.5f, 0.5f) + verticalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(8.5f, 5.25f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + curveToRelative(0.29f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + verticalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(11.0f, 4.0f) + curveToRelative(0.0f, -0.28f, 0.21f, -0.5f, 0.5f, -0.5f) + curveToRelative(0.29f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + close() + moveTo(13.99f, 3.24f) + curveToRelative(-0.21f, 0.0f, -0.42f, 0.04f, -0.6f, 0.1f) + close() + moveTo(13.39f, 3.34f) + arcTo(1.98f, 1.98f, 0.0f, false, false, 11.49f, 2.0f) + curveToRelative(-0.9f, 0.0f, -1.61f, 0.58f, -1.88f, 1.34f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.6f, 1.73f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 4.5f, 7.0f) + verticalLineToRelative(7.74f) + curveToRelative(0.0f, 2.18f, 1.17f, 4.51f, 1.92f, 5.8f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 9.04f, 22.0f) + horizontalLineToRelative(2.73f) + curveToRelative(1.19f, 0.0f, 2.28f, -0.67f, 2.81f, -1.74f) + curveToRelative(0.52f, -1.04f, 1.2f, -1.98f, 2.02f, -2.8f) + lineToRelative(2.14f, -2.14f) + lineToRelative(1.96f, -1.47f) + curveToRelative(0.19f, -0.14f, 0.3f, -0.37f, 0.3f, -0.6f) + curveToRelative(0.0f, -1.06f, -0.53f, -1.8f, -1.3f, -2.2f) + arcToRelative(3.76f, 3.76f, 0.0f, false, false, -2.33f, -0.29f) + curveToRelative(-0.52f, 0.1f, -0.99f, 0.29f, -1.37f, 0.5f) + lineTo(16.0f, 5.25f) + curveToRelative(0.0f, -1.06f, -0.89f, -2.01f, -2.01f, -2.0f) + } + } + return _handRight!! + } + +private var _handRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HandWave.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HandWave.kt new file mode 100644 index 00000000..755e1002 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HandWave.kt @@ -0,0 +1,94 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.HandWave: ImageVector + get() { + if (_handWave != null) { + return _handWave!! + } + _handWave = fluentIcon(name = "Regular.HandWave") { + fluentPath { + moveTo(18.63f, 2.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, -0.19f) + arcToRelative(6.9f, 6.9f, 0.0f, false, true, 2.31f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.48f, -0.26f) + arcToRelative(5.4f, 5.4f, 0.0f, false, false, -0.33f, -2.82f) + curveToRelative(-0.35f, -0.9f, -0.87f, -1.6f, -1.36f, -1.93f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.19f, -1.05f) + close() + moveTo(9.59f, 2.87f) + arcTo(2.05f, 2.05f, 0.0f, false, false, 5.87f, 4.0f) + arcToRelative(2.02f, 2.02f, 0.0f, false, false, -1.93f, 2.65f) + lineToRelative(1.96f, 5.92f) + arcToRelative(4.8f, 4.8f, 0.0f, false, false, -1.79f, 0.2f) + arcToRelative(3.9f, 3.9f, 0.0f, false, false, -1.76f, 1.16f) + arcToRelative(1.4f, 1.4f, 0.0f, false, false, -0.28f, 1.42f) + curveToRelative(0.16f, 0.43f, 0.5f, 0.78f, 0.92f, 0.97f) + arcToRelative(25.2f, 25.2f, 0.0f, false, true, 6.75f, 4.48f) + arcToRelative(4.08f, 4.08f, 0.0f, false, false, 3.96f, 1.05f) + lineToRelative(2.59f, -0.78f) + arcToRelative(2.66f, 2.66f, 0.0f, false, false, 1.89f, -2.18f) + curveToRelative(0.14f, -1.05f, 0.32f, -2.64f, 0.32f, -4.14f) + curveToRelative(0.0f, -1.76f, -0.46f, -3.7f, -1.0f, -5.41f) + arcToRelative(37.43f, 37.43f, 0.0f, false, false, -1.63f, -4.15f) + arcToRelative(2.05f, 2.05f, 0.0f, false, false, -2.27f, -1.14f) + arcToRelative(2.1f, 2.1f, 0.0f, false, false, -0.78f, 0.32f) + lineToRelative(-0.16f, -0.48f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 9.6f, 2.87f) + close() + moveTo(8.43f, 3.87f) + lineTo(8.83f, 5.05f) + lineTo(8.87f, 5.15f) + lineTo(10.54f, 9.99f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.17f, 0.35f) + horizontalLineToRelative(0.01f) + curveToRelative(0.24f, -0.2f, 0.34f, -0.53f, 0.24f, -0.83f) + lineToRelative(-1.69f, -4.9f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.97f, -0.27f) + lineToRelative(0.72f, 2.27f) + lineToRelative(0.04f, 0.15f) + lineToRelative(0.87f, 2.7f) + lineToRelative(0.17f, 0.52f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.42f, -0.46f) + lineToRelative(-0.16f, -0.51f) + lineToRelative(-0.89f, -2.79f) + arcToRelative(0.61f, 0.61f, 0.0f, false, true, 0.48f, -0.7f) + curveToRelative(0.27f, -0.06f, 0.52f, 0.08f, 0.62f, 0.3f) + curveToRelative(0.41f, 0.89f, 1.04f, 2.34f, 1.56f, 3.98f) + curveToRelative(0.53f, 1.64f, 0.93f, 3.41f, 0.93f, 4.95f) + curveToRelative(0.0f, 1.4f, -0.17f, 2.9f, -0.3f, 3.93f) + curveToRelative(-0.07f, 0.45f, -0.39f, 0.82f, -0.84f, 0.95f) + lineToRelative(-2.59f, 0.78f) + curveToRelative(-0.84f, 0.25f, -1.8f, -0.02f, -2.5f, -0.69f) + arcToRelative(26.69f, 26.69f, 0.0f, false, false, -7.25f, -4.83f) + lineToRelative(-0.01f, -0.01f) + arcToRelative(2.4f, 2.4f, 0.0f, false, true, 1.06f, -0.68f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 2.24f, 0.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.9f, -0.96f) + lineToRelative(-2.35f, -7.1f) + arcToRelative(0.52f, 0.52f, 0.0f, false, true, 0.98f, -0.32f) + lineToRelative(1.44f, 4.34f) + lineToRelative(0.26f, 0.79f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.42f, -0.48f) + lineToRelative(-0.26f, -0.78f) + lineToRelative(-1.8f, -5.5f) + arcToRelative(0.55f, 0.55f, 0.0f, false, true, 1.03f, -0.36f) + close() + moveTo(18.3f, 4.24f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.1f, 1.02f) + curveToRelative(0.42f, 0.45f, 0.8f, 1.0f, 0.8f, 1.99f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + curveToRelative(0.0f, -1.5f, -0.62f, -2.39f, -1.2f, -3.01f) + close() + } + } + return _handWave!! + } + +private var _handWave: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Handshake.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Handshake.kt new file mode 100644 index 00000000..18ebca1f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Handshake.kt @@ -0,0 +1,126 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Handshake: ImageVector + get() { + if (_handshake != null) { + return _handshake!! + } + _handshake = fluentIcon(name = "Regular.Handshake") { + fluentPath { + moveTo(12.24f, 2.96f) + curveToRelative(-0.23f, 0.0f, -0.44f, 0.11f, -0.58f, 0.28f) + lineToRelative(-0.06f, 0.04f) + arcToRelative(6.3f, 6.3f, 0.0f, false, false, -6.26f, 1.56f) + arcToRelative(6.2f, 6.2f, 0.0f, false, false, -1.74f, 5.5f) + lineToRelative(-0.02f, 0.02f) + lineToRelative(-0.95f, 0.95f) + arcToRelative(2.1f, 2.1f, 0.0f, false, false, 0.0f, 3.0f) + curveToRelative(0.49f, 0.48f, 1.15f, 0.68f, 1.79f, 0.6f) + arcToRelative(2.1f, 2.1f, 0.0f, false, false, 1.88f, 1.56f) + arcToRelative(2.13f, 2.13f, 0.0f, false, false, 2.02f, 1.94f) + arcToRelative(2.14f, 2.14f, 0.0f, false, false, 3.4f, 1.59f) + lineToRelative(0.4f, 0.38f) + arcToRelative(2.15f, 2.15f, 0.0f, false, false, 3.64f, -1.32f) + arcToRelative(2.13f, 2.13f, 0.0f, false, false, 1.94f, -1.93f) + arcToRelative(2.13f, 2.13f, 0.0f, false, false, 1.87f, -1.6f) + arcToRelative(2.1f, 2.1f, 0.0f, false, false, 1.76f, -3.6f) + lineToRelative(-0.83f, -0.83f) + lineToRelative(0.17f, -0.67f) + arcToRelative(6.02f, 6.02f, 0.0f, false, false, -5.83f, -7.46f) + horizontalLineToRelative(-2.6f) + close() + moveTo(15.16f, 7.91f) + lineTo(18.63f, 11.35f) + lineTo(18.65f, 11.37f) + lineTo(20.27f, 12.98f) + curveToRelative(0.25f, 0.25f, 0.25f, 0.64f, 0.0f, 0.88f) + arcToRelative(0.63f, 0.63f, 0.0f, false, true, -0.89f, 0.0f) + lineToRelative(-1.62f, -1.61f) + arcToRelative(0.76f, 0.76f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-0.02f, 0.02f) + curveToRelative(-0.3f, 0.29f, -0.3f, 0.76f, 0.0f, 1.05f) + lineToRelative(1.27f, 1.26f) + curveToRelative(0.24f, 0.24f, 0.24f, 0.64f, 0.0f, 0.88f) + arcToRelative(0.63f, 0.63f, 0.0f, false, true, -0.82f, 0.06f) + arcToRelative(0.76f, 0.76f, 0.0f, false, false, -0.99f, 0.07f) + arcToRelative(0.74f, 0.74f, 0.0f, false, false, -0.06f, 0.98f) + curveToRelative(0.19f, 0.25f, 0.17f, 0.6f, -0.06f, 0.82f) + arcToRelative(0.63f, 0.63f, 0.0f, false, true, -0.83f, 0.05f) + arcToRelative(0.76f, 0.76f, 0.0f, false, false, -1.0f, 0.06f) + curveToRelative(-0.26f, 0.27f, -0.29f, 0.7f, -0.06f, 0.99f) + curveToRelative(0.2f, 0.25f, 0.18f, 0.6f, -0.05f, 0.83f) + arcToRelative(0.64f, 0.64f, 0.0f, false, true, -0.9f, 0.0f) + lineToRelative(-0.37f, -0.37f) + lineToRelative(0.1f, -0.1f) + arcToRelative(2.1f, 2.1f, 0.0f, false, false, -1.4f, -3.61f) + arcToRelative(2.1f, 2.1f, 0.0f, false, false, -1.95f, -2.0f) + arcToRelative(2.14f, 2.14f, 0.0f, false, false, -2.41f, -1.93f) + arcToRelative(2.13f, 2.13f, 0.0f, false, false, -2.12f, -1.56f) + arcToRelative(4.77f, 4.77f, 0.0f, false, true, 4.95f, -5.23f) + lineToRelative(-1.5f, 1.13f) + arcToRelative(2.31f, 2.31f, 0.0f, false, false, -0.44f, 3.25f) + arcToRelative(2.33f, 2.33f, 0.0f, false, false, 3.26f, 0.44f) + lineToRelative(1.9f, -1.43f) + horizontalLineToRelative(1.96f) + close() + moveTo(9.4f, 6.84f) + lineToRelative(3.14f, -2.38f) + horizontalLineToRelative(0.5f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.19f, 0.01f) + horizontalLineToRelative(1.62f) + arcToRelative(4.52f, 4.52f, 0.0f, false, true, 4.43f, 5.37f) + lineToRelative(-3.21f, -3.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.54f, -0.23f) + horizontalLineToRelative(-2.58f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.45f, 0.15f) + lineToRelative(-2.1f, 1.59f) + arcToRelative(0.83f, 0.83f, 0.0f, false, true, -1.16f, -0.16f) + arcToRelative(0.81f, 0.81f, 0.0f, false, true, 0.16f, -1.15f) + close() + moveTo(6.03f, 14.8f) + arcToRelative(0.62f, 0.62f, 0.0f, false, true, 0.0f, -0.88f) + lineToRelative(0.96f, -0.95f) + arcToRelative(0.63f, 0.63f, 0.0f, false, true, 0.89f, 0.0f) + curveToRelative(0.24f, 0.24f, 0.24f, 0.62f, 0.0f, 0.87f) + lineToRelative(-0.96f, 0.96f) + arcToRelative(0.63f, 0.63f, 0.0f, false, true, -0.88f, 0.0f) + close() + moveTo(5.54f, 11.43f) + arcToRelative(0.62f, 0.62f, 0.0f, false, true, 0.0f, 0.87f) + lineToRelative(-0.96f, 0.95f) + arcToRelative(0.63f, 0.63f, 0.0f, false, true, -0.89f, 0.0f) + arcToRelative(0.62f, 0.62f, 0.0f, false, true, 0.0f, -0.88f) + lineToRelative(0.96f, -0.95f) + arcToRelative(0.63f, 0.63f, 0.0f, false, true, 0.88f, 0.0f) + horizontalLineToRelative(0.01f) + close() + moveTo(10.89f, 18.74f) + arcToRelative(0.63f, 0.63f, 0.0f, false, true, -0.89f, 0.0f) + arcToRelative(0.62f, 0.62f, 0.0f, false, true, 0.0f, -0.88f) + lineToRelative(0.96f, -0.95f) + arcToRelative(0.63f, 0.63f, 0.0f, false, true, 0.89f, 0.0f) + curveToRelative(0.24f, 0.25f, 0.24f, 0.64f, 0.0f, 0.88f) + lineToRelative(-0.96f, 0.95f) + close() + moveTo(8.87f, 16.74f) + arcToRelative(0.63f, 0.63f, 0.0f, false, true, -0.89f, 0.0f) + arcToRelative(0.62f, 0.62f, 0.0f, false, true, 0.0f, -0.88f) + lineToRelative(0.96f, -0.96f) + horizontalLineToRelative(0.01f) + arcToRelative(0.63f, 0.63f, 0.0f, false, true, 0.88f, 0.0f) + curveToRelative(0.24f, 0.25f, 0.24f, 0.64f, 0.0f, 0.88f) + lineToRelative(-0.96f, 0.96f) + close() + } + } + return _handshake!! + } + +private var _handshake: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HatGraduation.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HatGraduation.kt new file mode 100644 index 00000000..42315624 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HatGraduation.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.HatGraduation: ImageVector + get() { + if (_hatGraduation != null) { + return _hatGraduation!! + } + _hatGraduation = fluentIcon(name = "Regular.HatGraduation") { + fluentPath { + moveTo(9.9f, 3.7f) + arcToRelative(3.87f, 3.87f, 0.0f, false, true, 4.2f, 0.0f) + lineToRelative(8.05f, 5.17f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.01f, 1.26f) + lineTo(19.0f, 12.19f) + verticalLineToRelative(5.56f) + curveToRelative(0.0f, 0.16f, -0.05f, 0.32f, -0.15f, 0.45f) + lineToRelative(-0.01f, 0.02f) + arcToRelative(2.23f, 2.23f, 0.0f, false, true, -0.11f, 0.13f) + arcToRelative(7.43f, 7.43f, 0.0f, false, true, -1.57f, 1.29f) + arcTo(9.7f, 9.7f, 0.0f, false, true, 12.0f, 21.0f) + arcToRelative(9.7f, 9.7f, 0.0f, false, true, -5.16f, -1.36f) + arcToRelative(7.43f, 7.43f, 0.0f, false, true, -1.69f, -1.44f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.15f, -0.45f) + lineTo(5.0f, 12.2f) + lineToRelative(-2.0f, -1.3f) + verticalLineToRelative(5.36f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + lineTo(1.5f, 9.5f) + curveToRelative(0.0f, -0.27f, 0.14f, -0.5f, 0.36f, -0.64f) + lineTo(9.9f, 3.7f) + close() + moveTo(14.12f, 15.38f) + arcToRelative(3.88f, 3.88f, 0.0f, false, true, -4.24f, 0.0f) + lineToRelative(-3.38f, -2.2f) + verticalLineToRelative(4.29f) + lineToRelative(0.13f, 0.13f) + curveToRelative(0.21f, 0.2f, 0.54f, 0.48f, 1.0f, 0.76f) + arcTo(8.2f, 8.2f, 0.0f, false, false, 12.0f, 19.5f) + arcToRelative(8.2f, 8.2f, 0.0f, false, false, 4.37f, -1.14f) + arcToRelative(5.93f, 5.93f, 0.0f, false, false, 1.13f, -0.89f) + verticalLineToRelative(-4.3f) + lineToRelative(-3.38f, 2.21f) + close() + moveTo(13.28f, 4.96f) + curveToRelative(-0.78f, -0.5f, -1.78f, -0.5f, -2.56f, 0.0f) + lineTo(3.63f, 9.51f) + lineToRelative(7.07f, 4.62f) + curveToRelative(0.79f, 0.51f, 1.81f, 0.51f, 2.6f, 0.0f) + lineToRelative(7.07f, -4.62f) + lineToRelative(-7.09f, -4.55f) + close() + } + } + return _hatGraduation!! + } + +private var _hatGraduation: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Hd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Hd.kt new file mode 100644 index 00000000..148a6f6d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Hd.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Hd: ImageVector + get() { + if (_hd != null) { + return _hd!! + } + _hd = fluentIcon(name = "Regular.Hd") { + fluentPath { + moveTo(7.25f, 8.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.75f) + horizontalLineToRelative(2.0f) + lineTo(10.0f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(10.0f, 13.0f) + lineTo(8.0f, 13.0f) + verticalLineToRelative(2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-6.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(13.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(1.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-1.5f) + curveTo(18.0f, 9.45f, 16.54f, 8.0f, 14.75f, 8.0f) + horizontalLineToRelative(-1.0f) + close() + moveTo(14.5f, 14.5f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(0.25f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-0.25f) + close() + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(6.25f, 4.5f) + close() + } + } + return _hd!! + } + +private var _hd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Hdr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Hdr.kt new file mode 100644 index 00000000..d9098608 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Hdr.kt @@ -0,0 +1,99 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Hdr: ImageVector + get() { + if (_hdr != null) { + return _hdr!! + } + _hdr = fluentIcon(name = "Regular.Hdr") { + fluentPath { + moveTo(18.75f, 3.5f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(5.25f, 20.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 17.25f) + lineTo(2.0f, 6.75f) + curveTo(2.0f, 4.95f, 3.46f, 3.5f, 5.25f, 3.5f) + horizontalLineToRelative(13.5f) + close() + moveTo(18.75f, 5.0f) + lineTo(5.25f, 5.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(20.5f, 6.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(8.38f, 9.0f) + curveToRelative(0.31f, 0.0f, 0.57f, 0.22f, 0.62f, 0.53f) + verticalLineToRelative(4.84f) + arcToRelative(0.62f, 0.62f, 0.0f, false, true, -1.24f, 0.1f) + verticalLineToRelative(-1.83f) + lineTo(6.26f, 12.64f) + verticalLineToRelative(1.75f) + arcToRelative(0.62f, 0.62f, 0.0f, false, true, -1.24f, 0.09f) + lineTo(5.02f, 9.63f) + arcToRelative(0.63f, 0.63f, 0.0f, false, true, 1.24f, -0.09f) + verticalLineToRelative(1.85f) + horizontalLineToRelative(1.48f) + lineTo(7.74f, 9.62f) + curveToRelative(0.0f, -0.35f, 0.28f, -0.63f, 0.63f, -0.63f) + close() + moveTo(17.2f, 9.02f) + arcToRelative(1.8f, 1.8f, 0.0f, false, true, 1.02f, 3.29f) + lineToRelative(0.74f, 1.83f) + arcToRelative(0.62f, 0.62f, 0.0f, false, true, -1.11f, 0.56f) + lineToRelative(-0.05f, -0.1f) + lineToRelative(-0.8f, -1.98f) + horizontalLineToRelative(-0.74f) + verticalLineToRelative(1.75f) + curveToRelative(0.0f, 0.76f, -1.03f, 0.83f, -1.22f, 0.22f) + lineToRelative(-0.02f, -0.1f) + lineToRelative(-0.01f, -0.11f) + lineTo(15.01f, 9.64f) + curveToRelative(0.0f, -0.31f, 0.22f, -0.57f, 0.53f, -0.62f) + lineTo(17.2f, 9.02f) + close() + moveTo(11.38f, 9.0f) + curveToRelative(1.39f, 0.0f, 2.53f, 1.08f, 2.62f, 2.45f) + verticalLineToRelative(0.91f) + curveToRelative(0.0f, 1.4f, -1.09f, 2.54f, -2.46f, 2.62f) + horizontalLineToRelative(-0.92f) + arcToRelative(0.63f, 0.63f, 0.0f, false, true, -0.61f, -0.53f) + lineToRelative(-0.01f, -0.09f) + lineTo(10.0f, 9.63f) + curveToRelative(0.0f, -0.31f, 0.23f, -0.57f, 0.53f, -0.62f) + horizontalLineToRelative(0.85f) + close() + moveTo(11.38f, 10.25f) + horizontalLineToRelative(-0.13f) + verticalLineToRelative(3.49f) + horizontalLineToRelative(0.13f) + curveToRelative(0.71f, 0.0f, 1.3f, -0.55f, 1.36f, -1.25f) + lineToRelative(0.01f, -0.13f) + verticalLineToRelative(-0.74f) + curveToRelative(0.0f, -0.71f, -0.54f, -1.3f, -1.24f, -1.37f) + horizontalLineToRelative(-0.13f) + close() + moveTo(16.25f, 10.25f) + verticalLineToRelative(1.11f) + horizontalLineToRelative(0.95f) + arcToRelative(0.55f, 0.55f, 0.0f, false, false, 0.1f, -1.1f) + horizontalLineToRelative(-1.05f) + close() + } + } + return _hdr!! + } + +private var _hdr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HdrOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HdrOff.kt new file mode 100644 index 00000000..fe6dc482 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HdrOff.kt @@ -0,0 +1,98 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.HdrOff: ImageVector + get() { + if (_hdrOff != null) { + return _hdrOff!! + } + _hdrOff = fluentIcon(name = "Regular.HdrOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(0.96f, 0.96f) + curveTo(2.46f, 4.84f, 2.0f, 5.74f, 2.0f, 6.75f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(13.5f) + curveToRelative(0.22f, 0.0f, 0.43f, -0.02f, 0.63f, -0.06f) + lineToRelative(1.34f, 1.34f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(17.94f, 19.0f) + lineTo(5.25f, 19.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(3.5f, 6.75f) + curveToRelative(0.0f, -0.6f, 0.3f, -1.12f, 0.75f, -1.44f) + lineTo(8.04f, 9.1f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, -0.29f, 0.52f) + verticalLineToRelative(1.77f) + lineTo(6.27f, 11.39f) + lineTo(6.27f, 9.54f) + arcToRelative(0.63f, 0.63f, 0.0f, false, false, -1.25f, 0.1f) + verticalLineToRelative(4.84f) + arcToRelative(0.63f, 0.63f, 0.0f, false, false, 1.25f, -0.1f) + verticalLineToRelative(-1.74f) + horizontalLineToRelative(1.48f) + verticalLineToRelative(1.73f) + lineToRelative(0.01f, 0.1f) + arcToRelative(0.63f, 0.63f, 0.0f, false, false, 1.24f, -0.1f) + verticalLineToRelative(-4.3f) + lineToRelative(1.0f, 0.99f) + verticalLineToRelative(3.41f) + curveToRelative(0.05f, 0.3f, 0.31f, 0.53f, 0.62f, 0.53f) + horizontalLineToRelative(0.92f) + arcToRelative(2.62f, 2.62f, 0.0f, false, false, 1.66f, -0.74f) + lineTo(17.94f, 19.0f) + close() + moveTo(11.24f, 12.31f) + lineTo(12.32f, 13.38f) + curveToRelative(-0.25f, 0.23f, -0.58f, 0.37f, -0.94f, 0.37f) + horizontalLineToRelative(-0.13f) + lineTo(11.25f, 12.3f) + close() + moveTo(16.26f, 13.08f) + lineTo(15.0f, 11.82f) + lineTo(15.0f, 9.64f) + curveToRelative(0.0f, -0.31f, 0.22f, -0.57f, 0.53f, -0.62f) + lineTo(17.2f, 9.02f) + arcToRelative(1.8f, 1.8f, 0.0f, false, true, 1.02f, 3.29f) + lineToRelative(0.74f, 1.83f) + arcToRelative(0.63f, 0.63f, 0.0f, false, true, -0.83f, 0.8f) + lineToRelative(-0.32f, -0.31f) + verticalLineToRelative(-0.02f) + lineToRelative(-0.8f, -1.99f) + horizontalLineToRelative(-0.75f) + verticalLineToRelative(0.46f) + close() + moveTo(16.26f, 11.38f) + horizontalLineToRelative(0.94f) + arcToRelative(0.55f, 0.55f, 0.0f, false, false, 0.1f, -1.1f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-0.95f) + verticalLineToRelative(1.1f) + close() + moveTo(20.5f, 17.32f) + lineTo(20.5f, 6.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(8.18f, 5.0f) + lineToRelative(-1.5f, -1.5f) + horizontalLineToRelative(12.07f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.46f, -0.1f, 0.9f, -0.27f, 1.3f) + lineToRelative(-1.23f, -1.23f) + close() + } + } + return _hdrOff!! + } + +private var _hdrOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Headphones.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Headphones.kt new file mode 100644 index 00000000..035b3c9e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Headphones.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Headphones: ImageVector + get() { + if (_headphones != null) { + return _headphones!! + } + _headphones = fluentIcon(name = "Regular.Headphones") { + fluentPath { + moveTo(22.0f, 12.0f) + verticalLineToRelative(7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.82f, 3.0f) + lineTo(16.0f, 22.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + lineTo(15.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) + horizontalLineToRelative(4.62f) + verticalLineToRelative(-2.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, -17.0f, 0.0f) + verticalLineToRelative(2.0f) + lineTo(8.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + lineTo(5.0f, 22.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + verticalLineToRelative(-7.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) + verticalLineToRelative(7.0f) + verticalLineToRelative(-7.0f) + close() + moveTo(7.5f, 15.5f) + horizontalLineToRelative(-4.0f) + lineTo(3.5f, 19.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(-5.0f) + close() + moveTo(20.5f, 15.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(5.0f) + lineTo(19.0f, 20.5f) + curveToRelative(0.78f, 0.0f, 1.42f, -0.6f, 1.5f, -1.36f) + lineTo(20.5f, 15.5f) + close() + } + } + return _headphones!! + } + +private var _headphones: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HeadphonesSoundWave.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HeadphonesSoundWave.kt new file mode 100644 index 00000000..52c7b1a9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HeadphonesSoundWave.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.HeadphonesSoundWave: ImageVector + get() { + if (_headphonesSoundWave != null) { + return _headphonesSoundWave!! + } + _headphonesSoundWave = fluentIcon(name = "Regular.HeadphonesSoundWave") { + fluentPath { + moveTo(3.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, 17.0f, 0.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(19.0f, 22.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) + verticalLineToRelative(-7.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, -20.0f, 0.0f) + verticalLineToRelative(7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(3.5f, 14.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(20.5f, 15.5f) + lineTo(20.5f, 19.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(1.5f) + close() + moveTo(3.5f, 19.0f) + verticalLineToRelative(-3.5f) + lineTo(5.0f, 15.5f) + verticalLineToRelative(5.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 3.5f, 19.0f) + close() + moveTo(12.75f, 11.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-10.5f) + close() + moveTo(8.75f, 14.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(16.0f, 14.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-4.5f) + close() + } + } + return _headphonesSoundWave!! + } + +private var _headphonesSoundWave: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Headset.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Headset.kt new file mode 100644 index 00000000..f885f3c6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Headset.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Headset: ImageVector + get() { + if (_headset != null) { + return _headset!! + } + _headset = fluentIcon(name = "Regular.Headset") { + fluentPath { + moveTo(12.0f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(17.5f, 10.0f) + lineTo(17.5f, 9.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + verticalLineToRelative(1.0f) + lineTo(9.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + lineTo(6.5f, 16.0f) + verticalLineToRelative(0.25f) + curveToRelative(0.0f, 1.2f, 0.93f, 2.17f, 2.1f, 2.24f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(1.13f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 1.5f) + lineTo(8.75f, 20.0f) + curveToRelative(-2.0f, 0.0f, -3.64f, -1.57f, -3.74f, -3.55f) + lineToRelative(-0.01f, -0.2f) + lineTo(5.0f, 9.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, 14.0f, 0.0f) + verticalLineToRelative(5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.85f, 2.0f) + lineTo(15.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + lineTo(14.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.88f, -1.0f) + horizontalLineToRelative(2.62f) + close() + moveTo(8.5f, 11.5f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(-3.0f) + close() + moveTo(17.5f, 11.5f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(3.0f) + lineTo(17.0f, 14.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.41f) + lineTo(17.5f, 11.5f) + close() + } + } + return _headset!! + } + +private var _headset: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HeadsetAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HeadsetAdd.kt new file mode 100644 index 00000000..ca6215f1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HeadsetAdd.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.HeadsetAdd: ImageVector + get() { + if (_headsetAdd != null) { + return _headsetAdd!! + } + _headsetAdd = fluentIcon(name = "Regular.HeadsetAdd") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 7.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 7.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 6.0f) + lineTo(17.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + lineTo(18.0f, 6.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 7.0f) + close() + moveTo(17.5f, 13.0f) + curveToRelative(0.52f, 0.0f, 1.02f, -0.06f, 1.5f, -0.17f) + lineTo(19.0f, 15.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.85f, 2.0f) + lineTo(15.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -0.88f) + verticalLineToRelative(-4.14f) + curveToRelative(0.46f, 0.3f, 0.97f, 0.53f, 1.5f, 0.7f) + verticalLineToRelative(2.82f) + lineTo(17.0f, 15.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.41f) + lineTo(17.5f, 13.0f) + close() + moveTo(12.02f, 3.0f) + curveToRelative(-0.3f, 0.48f, -0.55f, 1.0f, -0.72f, 1.54f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 6.5f, 10.0f) + verticalLineToRelative(1.0f) + lineTo(9.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + lineTo(6.5f, 17.0f) + verticalLineToRelative(0.25f) + curveToRelative(0.0f, 1.2f, 0.93f, 2.17f, 2.1f, 2.24f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(1.13f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 1.5f) + lineTo(8.75f, 21.0f) + curveToRelative(-2.0f, 0.0f, -3.64f, -1.57f, -3.74f, -3.55f) + lineToRelative(-0.01f, -0.2f) + lineTo(5.0f, 10.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, 7.0f, -7.0f) + horizontalLineToRelative(0.02f) + close() + moveTo(12.0f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(8.5f, 12.5f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(-3.0f) + close() + } + } + return _headsetAdd!! + } + +private var _headsetAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HeadsetVr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HeadsetVr.kt new file mode 100644 index 00000000..6bcf1d3f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HeadsetVr.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.HeadsetVr: ImageVector + get() { + if (_headsetVr != null) { + return _headsetVr!! + } + _headsetVr = fluentIcon(name = "Regular.HeadsetVr") { + fluentPath { + moveTo(13.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(6.75f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.5f) + close() + moveTo(14.0f, 12.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(9.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(9.0f, 5.0f) + lineTo(6.0f, 5.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, 4.0f) + horizontalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(2.0f, 14.0f) + verticalLineToRelative(2.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, 4.0f) + horizontalLineToRelative(1.55f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 2.16f, -0.64f) + lineToRelative(2.15f, -1.38f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, 0.28f, 0.0f) + lineToRelative(2.15f, 1.38f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 2.16f, 0.64f) + lineTo(18.0f, 20.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, -4.0f) + lineTo(22.0f, 14.0f) + horizontalLineToRelative(0.25f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(22.0f, 9.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, -4.0f) + horizontalLineToRelative(-3.0f) + lineTo(15.0f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-4.5f) + close() + moveTo(6.0f, 6.5f) + horizontalLineToRelative(12.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 20.5f, 9.0f) + verticalLineToRelative(7.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 18.0f, 19.0f) + horizontalLineToRelative(-1.55f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -1.35f, -0.4f) + lineToRelative(-2.15f, -1.38f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.9f, 0.0f) + lineTo(8.9f, 18.6f) + curveToRelative(-0.4f, 0.26f, -0.88f, 0.4f, -1.35f, 0.4f) + lineTo(6.0f, 19.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.5f, -2.5f) + lineTo(3.5f, 9.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 6.0f, 6.5f) + close() + } + } + return _headsetVr!! + } + +private var _headsetVr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HeartBroken.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HeartBroken.kt new file mode 100644 index 00000000..29f66e77 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HeartBroken.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.HeartBroken: ImageVector + get() { + if (_heartBroken != null) { + return _heartBroken!! + } + _heartBroken = fluentIcon(name = "Regular.HeartBroken") { + fluentPath { + moveToRelative(12.0f, 5.75f) + lineToRelative(0.82f, -0.82f) + arcToRelative(5.38f, 5.38f, 0.0f, false, true, 7.61f, 7.6f) + lineToRelative(-7.9f, 7.9f) + curveToRelative(-0.3f, 0.29f, -0.77f, 0.29f, -1.06f, 0.0f) + lineToRelative(-7.9f, -7.9f) + arcToRelative(5.37f, 5.37f, 0.0f, true, true, 7.6f, -7.6f) + lineToRelative(0.83f, 0.82f) + close() + moveTo(12.0f, 18.84f) + lineTo(19.37f, 11.47f) + arcToRelative(3.88f, 3.88f, 0.0f, false, false, -5.3f, -5.66f) + lineToRelative(-1.0f, 1.0f) + lineToRelative(-0.52f, 0.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, 0.07f) + lineToRelative(-1.23f, 1.23f) + lineToRelative(2.8f, 2.67f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.01f, 1.07f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(1.96f, -1.96f) + lineToRelative(-2.8f, -2.67f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.01f, -1.07f) + lineToRelative(1.32f, -1.3f) + lineToRelative(-0.82f, -0.83f) + arcToRelative(3.88f, 3.88f, 0.0f, false, false, -5.48f, 5.48f) + lineTo(12.0f, 18.84f) + close() + } + } + return _heartBroken!! + } + +private var _heartBroken: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HeartCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HeartCircle.kt new file mode 100644 index 00000000..3cbead94 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HeartCircle.kt @@ -0,0 +1,39 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.HeartCircle: ImageVector + get() { + if (_heartCircle != null) { + return _heartCircle!! + } + _heartCircle = fluentIcon(name = "Regular.HeartCircle") { + fluentPath { + moveToRelative(11.7f, 16.86f) + lineToRelative(-4.11f, -4.8f) + arcToRelative(2.46f, 2.46f, 0.0f, false, true, 3.58f, -3.36f) + lineToRelative(0.83f, 0.8f) + lineToRelative(0.83f, -0.8f) + arcToRelative(2.46f, 2.46f, 0.0f, false, true, 3.58f, 3.36f) + lineToRelative(-4.1f, 4.8f) + arcToRelative(0.4f, 0.4f, 0.0f, false, true, -0.61f, 0.0f) + close() + moveTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, -20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 20.0f, 0.0f) + close() + moveTo(20.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, -17.0f, 0.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 17.0f, 0.0f) + close() + } + } + return _heartCircle!! + } + +private var _heartCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HeartCircleHint.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HeartCircleHint.kt new file mode 100644 index 00000000..ca197562 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HeartCircleHint.kt @@ -0,0 +1,95 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.HeartCircleHint: ImageVector + get() { + if (_heartCircleHint != null) { + return _heartCircleHint!! + } + _heartCircleHint = fluentIcon(name = "Regular.HeartCircleHint") { + fluentPath { + moveTo(10.68f, 2.09f) + arcToRelative(10.09f, 10.09f, 0.0f, false, true, 2.64f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.2f, 1.48f) + arcToRelative(8.59f, 8.59f, 0.0f, false, false, -2.25f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.2f, -1.48f) + close() + moveTo(21.08f, 10.03f) + curveToRelative(0.4f, -0.05f, 0.78f, 0.24f, 0.83f, 0.65f) + arcToRelative(10.09f, 10.09f, 0.0f, false, true, 0.0f, 2.64f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.48f, -0.2f) + arcToRelative(8.57f, 8.57f, 0.0f, false, false, 0.0f, -2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.64f, -0.84f) + close() + moveTo(2.93f, 10.03f) + curveToRelative(0.4f, 0.06f, 0.7f, 0.43f, 0.64f, 0.84f) + arcToRelative(8.59f, 8.59f, 0.0f, false, false, 0.0f, 2.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.48f, 0.2f) + arcToRelative(10.09f, 10.09f, 0.0f, false, true, 0.0f, -2.65f) + curveToRelative(0.05f, -0.41f, 0.43f, -0.7f, 0.84f, -0.65f) + close() + moveTo(10.03f, 21.07f) + curveToRelative(0.06f, -0.4f, 0.43f, -0.7f, 0.84f, -0.64f) + arcToRelative(8.57f, 8.57f, 0.0f, false, false, 2.26f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.2f, 1.48f) + arcToRelative(10.09f, 10.09f, 0.0f, false, true, -2.65f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.84f) + close() + moveTo(18.07f, 4.06f) + arcToRelative(10.1f, 10.1f, 0.0f, false, true, 1.87f, 1.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.19f, 0.9f) + arcToRelative(8.58f, 8.58f, 0.0f, false, false, -1.59f, -1.58f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.91f, -1.2f) + close() + moveTo(19.81f, 17.02f) + curveToRelative(0.32f, 0.26f, 0.39f, 0.73f, 0.13f, 1.06f) + arcToRelative(10.1f, 10.1f, 0.0f, false, true, -1.87f, 1.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.9f, -1.2f) + arcToRelative(8.57f, 8.57f, 0.0f, false, false, 1.58f, -1.59f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -0.14f) + close() + moveTo(6.98f, 4.2f) + curveToRelative(0.25f, 0.33f, 0.19f, 0.8f, -0.14f, 1.06f) + arcToRelative(8.59f, 8.59f, 0.0f, false, false, -1.6f, 1.59f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.18f, -0.91f) + arcToRelative(10.09f, 10.09f, 0.0f, false, true, 1.87f, -1.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, 0.13f) + close() + moveTo(4.19f, 17.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 0.14f) + arcToRelative(8.58f, 8.58f, 0.0f, false, false, 1.59f, 1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.91f, 1.18f) + arcToRelative(10.1f, 10.1f, 0.0f, false, true, -1.87f, -1.86f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.13f, -1.06f) + close() + moveTo(13.52f, 9.84f) + arcToRelative(1.15f, 1.15f, 0.0f, false, true, 1.7f, 1.57f) + lineTo(12.0f, 15.11f) + lineToRelative(-3.22f, -3.7f) + arcToRelative(1.15f, 1.15f, 0.0f, false, true, 1.7f, -1.57f) + lineToRelative(0.99f, 1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 0.0f) + lineToRelative(1.0f, -1.0f) + close() + moveTo(16.35f, 8.91f) + arcToRelative(2.65f, 2.65f, 0.0f, false, false, -3.9f, -0.12f) + lineToRelative(-0.45f, 0.46f) + lineToRelative(-0.46f, -0.46f) + arcToRelative(2.65f, 2.65f, 0.0f, false, false, -3.89f, 3.6f) + lineToRelative(3.78f, 4.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, 0.0f) + lineToRelative(3.79f, -4.35f) + curveToRelative(0.86f, -1.0f, 0.86f, -2.48f, 0.0f, -3.48f) + close() + } + } + return _heartCircleHint!! + } + +private var _heartCircleHint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HeartPulse.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HeartPulse.kt new file mode 100644 index 00000000..24e63cc4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HeartPulse.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.HeartPulse: ImageVector + get() { + if (_heartPulse != null) { + return _heartPulse!! + } + _heartPulse = fluentIcon(name = "Regular.HeartPulse") { + fluentPath { + moveTo(12.82f, 5.58f) + lineTo(12.0f, 6.4f) + lineToRelative(-0.82f, -0.82f) + arcTo(5.37f, 5.37f, 0.0f, false, false, 2.25f, 11.0f) + horizontalLineToRelative(1.6f) + arcToRelative(3.88f, 3.88f, 0.0f, false, true, 6.27f, -4.36f) + lineTo(11.47f, 8.0f) + curveToRelative(0.3f, 0.3f, 0.79f, 0.29f, 1.08f, -0.02f) + lineToRelative(1.33f, -1.34f) + arcTo(3.88f, 3.88f, 0.0f, false, true, 20.15f, 11.0f) + horizontalLineToRelative(1.6f) + arcToRelative(5.37f, 5.37f, 0.0f, false, false, -8.93f, -5.42f) + close() + moveTo(11.47f, 21.08f) + lineTo(4.89f, 14.5f) + horizontalLineToRelative(2.12f) + lineTo(12.0f, 19.47f) + lineToRelative(4.99f, -4.98f) + horizontalLineToRelative(2.12f) + lineToRelative(-6.58f, 6.58f) + curveToRelative(-0.3f, 0.29f, -0.77f, 0.29f, -1.06f, 0.0f) + close() + moveTo(9.42f, 8.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.35f, 0.02f) + lineTo(6.38f, 12.0f) + lineTo(2.75f, 12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.1f) + curveToRelative(0.3f, 0.0f, 0.56f, -0.17f, 0.69f, -0.43f) + lineToRelative(1.23f, -2.6f) + lineToRelative(2.56f, 5.11f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.28f, 0.1f) + lineToRelative(2.7f, -3.73f) + lineToRelative(1.13f, 1.3f) + curveToRelative(0.14f, 0.16f, 0.34f, 0.25f, 0.56f, 0.25f) + horizontalLineToRelative(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.91f) + lineToRelative(-1.53f, -1.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.17f, 0.05f) + lineToRelative(-2.52f, 3.5f) + lineToRelative(-2.7f, -5.4f) + close() + } + } + return _heartPulse!! + } + +private var _heartPulse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Highlight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Highlight.kt new file mode 100644 index 00000000..faace3d5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Highlight.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Highlight: ImageVector + get() { + if (_highlight != null) { + return _highlight!! + } + _highlight = fluentIcon(name = "Regular.Highlight") { + fluentPath { + moveTo(20.26f, 2.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.29f, 0.74f, 0.65f) + verticalLineToRelative(4.6f) + curveToRelative(0.0f, 1.16f, -0.87f, 2.11f, -2.0f, 2.24f) + verticalLineToRelative(2.26f) + curveToRelative(0.0f, 1.19f, -0.92f, 2.16f, -2.1f, 2.24f) + horizontalLineToRelative(-0.4f) + verticalLineToRelative(2.8f) + curveToRelative(0.0f, 0.81f, -0.44f, 1.56f, -1.14f, 1.96f) + lineToRelative(-0.15f, 0.08f) + lineToRelative(-6.64f, 3.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -0.58f) + lineTo(7.51f, 14.0f) + horizontalLineToRelative(-0.26f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(5.0f, 11.75f) + lineTo(5.0f, 9.49f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 3.0f, 7.4f) + lineTo(3.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(4.6f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(13.5f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.65f) + verticalLineToRelative(-4.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.76f, -0.75f) + close() + moveTo(15.0f, 14.0f) + lineTo(9.0f, 14.0f) + verticalLineToRelative(6.07f) + lineToRelative(5.57f, -2.6f) + curveToRelative(0.23f, -0.11f, 0.39f, -0.33f, 0.42f, -0.57f) + lineToRelative(0.01f, -0.11f) + verticalLineToRelative(-2.8f) + close() + moveTo(17.5f, 9.5f) + horizontalLineToRelative(-11.0f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.69f, 0.65f, 0.74f) + horizontalLineToRelative(9.6f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.64f) + lineTo(17.5f, 9.5f) + close() + } + } + return _highlight!! + } + +private var _highlight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HistoryDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HistoryDismiss.kt new file mode 100644 index 00000000..9275aad1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HistoryDismiss.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.HistoryDismiss: ImageVector + get() { + if (_historyDismiss != null) { + return _historyDismiss!! + } + _historyDismiss = fluentIcon(name = "Regular.HistoryDismiss") { + fluentPath { + moveTo(4.5f, 12.0f) + arcToRelative(7.5f, 7.5f, 0.0f, false, false, 6.8f, 7.47f) + curveToRelative(0.18f, 0.54f, 0.42f, 1.06f, 0.72f, 1.53f) + lineTo(12.0f, 21.0f) + arcToRelative(9.0f, 9.0f, 0.0f, false, true, -8.9f, -10.38f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.76f, -0.62f) + curveToRelative(0.46f, 0.0f, 0.79f, 0.44f, 0.72f, 0.9f) + curveToRelative(-0.05f, 0.35f, -0.08f, 0.72f, -0.08f, 1.1f) + close() + moveTo(12.81f, 13.0f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, 1.88f, -1.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.44f, -0.14f) + lineTo(12.5f, 11.5f) + lineTo(12.5f, 7.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(1.06f) + close() + moveTo(21.0f, 12.02f) + curveToRelative(-0.47f, -0.3f, -0.99f, -0.54f, -1.53f, -0.72f) + arcTo(7.5f, 7.5f, 0.0f, false, false, 6.9f, 6.5f) + horizontalLineToRelative(1.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(1.04f) + arcTo(9.0f, 9.0f, 0.0f, false, true, 21.0f, 12.0f) + verticalLineToRelative(0.03f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-1.64f, -1.65f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.65f, 1.64f) + lineToRelative(-1.65f, -1.64f) + close() + } + } + return _historyDismiss!! + } + +private var _historyDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HomeAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HomeAdd.kt new file mode 100644 index 00000000..ee8fd57c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HomeAdd.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.HomeAdd: ImageVector + get() { + if (_homeAdd != null) { + return _homeAdd!! + } + _homeAdd = fluentIcon(name = "Regular.HomeAdd") { + fluentPath { + moveTo(10.55f, 2.53f) + curveToRelative(0.84f, -0.7f, 2.06f, -0.7f, 2.9f, 0.0f) + lineToRelative(6.75f, 5.7f) + curveToRelative(0.5f, 0.42f, 0.8f, 1.05f, 0.8f, 1.71f) + verticalLineToRelative(2.08f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 9.93f) + curveToRelative(0.0f, -0.22f, -0.1f, -0.43f, -0.27f, -0.57f) + lineToRelative(-6.75f, -5.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.96f, 0.0f) + lineToRelative(-6.75f, 5.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.27f, 0.57f) + verticalLineToRelative(9.31f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(6.56f) + curveToRelative(0.18f, 0.54f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(4.75f, 20.99f) + curveTo(3.78f, 21.0f, 3.0f, 20.22f, 3.0f, 19.25f) + verticalLineToRelative(-9.3f) + curveToRelative(0.0f, -0.67f, 0.3f, -1.3f, 0.8f, -1.73f) + lineToRelative(6.75f, -5.69f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _homeAdd!! + } + +private var _homeAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HomeCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HomeCheckmark.kt new file mode 100644 index 00000000..1e406760 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HomeCheckmark.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.HomeCheckmark: ImageVector + get() { + if (_homeCheckmark != null) { + return _homeCheckmark!! + } + _homeCheckmark = fluentIcon(name = "Regular.HomeCheckmark") { + fluentPath { + moveTo(13.45f, 2.53f) + curveToRelative(-0.84f, -0.7f, -2.06f, -0.7f, -2.9f, 0.0f) + lineTo(3.8f, 8.23f) + curveToRelative(-0.5f, 0.42f, -0.8f, 1.05f, -0.8f, 1.71f) + verticalLineToRelative(9.31f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(14.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-9.3f) + curveToRelative(0.0f, -0.67f, -0.3f, -1.3f, -0.8f, -1.73f) + lineToRelative(-6.75f, -5.69f) + close() + moveTo(11.52f, 3.68f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.96f, 0.0f) + lineToRelative(6.75f, 5.7f) + curveToRelative(0.17f, 0.13f, 0.27f, 0.34f, 0.27f, 0.56f) + verticalLineToRelative(9.31f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + lineTo(4.75f, 19.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-9.3f) + curveToRelative(0.0f, -0.23f, 0.1f, -0.44f, 0.27f, -0.58f) + lineToRelative(6.75f, -5.7f) + close() + moveTo(15.78f, 11.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-3.97f, 3.97f) + lineToRelative(-1.47f, -1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 0.0f) + lineToRelative(4.5f, -4.5f) + close() + } + } + return _homeCheckmark!! + } + +private var _homeCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HomeDatabase.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HomeDatabase.kt new file mode 100644 index 00000000..93399d95 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HomeDatabase.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.HomeDatabase: ImageVector + get() { + if (_homeDatabase != null) { + return _homeDatabase!! + } + _homeDatabase = fluentIcon(name = "Regular.HomeDatabase") { + fluentPath { + moveTo(10.55f, 2.53f) + curveToRelative(0.84f, -0.7f, 2.06f, -0.7f, 2.9f, 0.0f) + lineToRelative(6.75f, 5.7f) + curveToRelative(0.5f, 0.42f, 0.8f, 1.05f, 0.8f, 1.71f) + verticalLineToRelative(1.5f) + arcToRelative(8.99f, 8.99f, 0.0f, false, false, -1.5f, -0.34f) + lineTo(19.5f, 9.94f) + curveToRelative(0.0f, -0.22f, -0.1f, -0.43f, -0.27f, -0.57f) + lineToRelative(-6.75f, -5.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.96f, 0.0f) + lineToRelative(-6.75f, 5.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.27f, 0.57f) + verticalLineToRelative(9.31f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + lineTo(12.0f, 19.5f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 0.17f, 0.02f, 0.34f, 0.06f, 0.5f) + lineTo(4.75f, 21.0f) + curveTo(3.78f, 21.0f, 3.0f, 20.22f, 3.0f, 19.25f) + verticalLineToRelative(-9.3f) + curveToRelative(0.0f, -0.67f, 0.3f, -1.3f, 0.8f, -1.73f) + lineToRelative(6.75f, -5.69f) + close() + moveTo(21.0f, 12.5f) + curveToRelative(-0.45f, -0.17f, -0.95f, -0.3f, -1.5f, -0.39f) + arcTo(9.7f, 9.7f, 0.0f, false, false, 18.0f, 12.0f) + curveToRelative(-2.76f, 0.0f, -5.0f, 1.12f, -5.0f, 2.5f) + reflectiveCurveToRelative(2.24f, 2.5f, 5.0f, 2.5f) + arcToRelative(9.7f, 9.7f, 0.0f, false, false, 1.5f, -0.11f) + arcToRelative(7.68f, 7.68f, 0.0f, false, false, 1.5f, -0.39f) + curveToRelative(1.21f, -0.46f, 2.0f, -1.18f, 2.0f, -2.0f) + curveToRelative(0.0f, -0.82f, -0.79f, -1.54f, -2.0f, -2.0f) + close() + moveTo(21.0f, 17.56f) + arcToRelative(9.08f, 9.08f, 0.0f, false, true, -3.0f, 0.44f) + arcToRelative(9.1f, 9.1f, 0.0f, false, true, -3.98f, -0.84f) + curveToRelative(-0.36f, -0.17f, -0.71f, -0.4f, -1.02f, -0.67f) + verticalLineToRelative(4.01f) + curveToRelative(0.0f, 0.36f, 0.15f, 0.7f, 0.42f, 1.0f) + curveToRelative(0.77f, 0.88f, 2.53f, 1.5f, 4.58f, 1.5f) + curveToRelative(2.76f, 0.0f, 5.0f, -1.12f, 5.0f, -2.5f) + verticalLineToRelative(-4.0f) + curveToRelative(-0.31f, 0.26f, -0.66f, 0.49f, -1.02f, 0.66f) + curveToRelative(-0.3f, 0.15f, -0.63f, 0.29f, -0.98f, 0.4f) + close() + } + } + return _homeDatabase!! + } + +private var _homeDatabase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HomeMore.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HomeMore.kt new file mode 100644 index 00000000..9e97651f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HomeMore.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.HomeMore: ImageVector + get() { + if (_homeMore != null) { + return _homeMore!! + } + _homeMore = fluentIcon(name = "Regular.HomeMore") { + fluentPath { + moveTo(7.75f, 10.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(12.0f, 10.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(17.5f, 11.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) + close() + moveTo(9.0f, 15.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) + close() + moveTo(13.25f, 15.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) + close() + moveTo(16.25f, 14.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(10.54f, 2.53f) + curveToRelative(0.83f, -0.7f, 2.06f, -0.7f, 2.9f, 0.0f) + lineToRelative(6.76f, 5.7f) + curveToRelative(0.5f, 0.43f, 0.8f, 1.06f, 0.8f, 1.72f) + verticalLineToRelative(9.3f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(4.75f, 21.0f) + curveTo(3.78f, 21.0f, 3.0f, 20.22f, 3.0f, 19.25f) + verticalLineToRelative(-9.3f) + curveToRelative(0.0f, -0.66f, 0.3f, -1.3f, 0.8f, -1.72f) + lineToRelative(6.74f, -5.7f) + close() + moveTo(12.47f, 3.68f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.96f, 0.0f) + lineToRelative(-6.74f, 5.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.27f, 0.57f) + verticalLineToRelative(9.3f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(14.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-9.3f) + curveToRelative(0.0f, -0.22f, -0.1f, -0.43f, -0.27f, -0.57f) + lineToRelative(-6.76f, -5.7f) + close() + } + } + return _homeMore!! + } + +private var _homeMore: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HomePerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HomePerson.kt new file mode 100644 index 00000000..2f767f92 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HomePerson.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.HomePerson: ImageVector + get() { + if (_homePerson != null) { + return _homePerson!! + } + _homePerson = fluentIcon(name = "Regular.HomePerson") { + fluentPath { + moveTo(13.45f, 2.53f) + curveToRelative(-0.84f, -0.7f, -2.06f, -0.7f, -2.9f, 0.0f) + lineTo(3.8f, 8.23f) + curveToRelative(-0.5f, 0.42f, -0.8f, 1.05f, -0.8f, 1.71f) + verticalLineToRelative(9.31f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(3.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.1f, 0.25f, 0.25f) + verticalLineToRelative(3.39f) + curveToRelative(0.41f, -0.34f, 0.93f, -0.57f, 1.5f, -0.63f) + verticalLineToRelative(-0.7f) + arcToRelative(3.48f, 3.48f, 0.0f, false, true, -0.29f, -3.02f) + curveToRelative(-0.3f, -0.48f, -0.85f, -0.8f, -1.46f, -0.8f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.79f, -1.75f, 1.76f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-9.3f) + curveToRelative(0.0f, -0.23f, 0.1f, -0.44f, 0.27f, -0.58f) + lineToRelative(6.75f, -5.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.96f, 0.0f) + lineToRelative(6.75f, 5.7f) + curveToRelative(0.17f, 0.14f, 0.27f, 0.35f, 0.27f, 0.57f) + verticalLineToRelative(1.2f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 1.5f, 0.91f) + verticalLineToRelative(-2.1f) + curveToRelative(0.0f, -0.67f, -0.3f, -1.3f, -0.8f, -1.73f) + lineToRelative(-6.75f, -5.69f) + close() + moveTo(21.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(23.0f, 19.88f) + curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) + reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _homePerson!! + } + +private var _homePerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HomeSplit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HomeSplit.kt new file mode 100644 index 00000000..f8b0ac6b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HomeSplit.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.HomeSplit: ImageVector + get() { + if (_homeSplit != null) { + return _homeSplit!! + } + _homeSplit = fluentIcon(name = "Regular.HomeSplit") { + fluentPath { + moveTo(13.45f, 2.53f) + curveToRelative(-0.84f, -0.7f, -2.06f, -0.7f, -2.9f, 0.0f) + lineTo(3.8f, 8.23f) + curveToRelative(-0.5f, 0.42f, -0.8f, 1.05f, -0.8f, 1.71f) + verticalLineToRelative(9.31f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(14.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-9.3f) + curveToRelative(0.0f, -0.67f, -0.3f, -1.3f, -0.8f, -1.73f) + lineToRelative(-6.75f, -5.69f) + close() + moveTo(11.52f, 3.68f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.96f, 0.0f) + lineToRelative(6.75f, 5.7f) + curveToRelative(0.17f, 0.13f, 0.27f, 0.34f, 0.27f, 0.56f) + verticalLineToRelative(9.31f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + lineTo(4.75f, 19.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-9.3f) + curveToRelative(0.0f, -0.23f, 0.1f, -0.44f, 0.27f, -0.58f) + lineToRelative(6.75f, -5.7f) + close() + moveTo(12.75f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.5f) + close() + moveTo(12.0f, 10.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(12.75f, 16.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.5f) + close() + } + } + return _homeSplit!! + } + +private var _homeSplit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Hourglass.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Hourglass.kt new file mode 100644 index 00000000..d81c1719 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Hourglass.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Hourglass: ImageVector + get() { + if (_hourglass != null) { + return _hourglass!! + } + _hourglass = fluentIcon(name = "Regular.Hourglass") { + fluentPath { + moveTo(4.0f, 4.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 6.75f, 2.0f) + horizontalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 20.0f, 4.75f) + verticalLineToRelative(0.42f) + curveToRelative(0.0f, 2.02f, -1.06f, 3.89f, -2.8f, 4.93f) + lineToRelative(-1.8f, 1.09f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.04f, 1.26f) + lineToRelative(2.12f, 1.44f) + arcTo(5.75f, 5.75f, 0.0f, false, true, 20.0f, 18.65f) + verticalLineToRelative(0.6f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 17.25f, 22.0f) + horizontalLineTo(6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.0f, 19.25f) + verticalLineToRelative(-0.6f) + curveToRelative(0.0f, -1.9f, 0.94f, -3.69f, 2.52f, -4.76f) + lineToRelative(2.12f, -1.44f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.04f, -1.26f) + lineTo(6.8f, 10.1f) + arcTo(5.75f, 5.75f, 0.0f, false, true, 4.0f, 5.17f) + verticalLineToRelative(-0.42f) + close() + moveTo(6.75f, 3.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(0.42f) + curveToRelative(0.0f, 1.5f, 0.78f, 2.88f, 2.06f, 3.64f) + lineTo(9.37f, 9.9f) + curveToRelative(1.41f, 0.84f, 1.47f, 2.87f, 0.11f, 3.79f) + lineToRelative(-2.12f, 1.44f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, -1.86f, 3.52f) + verticalLineToRelative(0.6f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(10.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-0.6f) + curveToRelative(0.0f, -1.41f, -0.7f, -2.73f, -1.86f, -3.52f) + lineToRelative(-2.12f, -1.44f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.1f, -3.79f) + lineToRelative(1.82f, -1.09f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, 2.06f, -3.64f) + verticalLineToRelative(-0.42f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineTo(6.75f) + close() + } + } + return _hourglass!! + } + +private var _hourglass: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HourglassHalf.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HourglassHalf.kt new file mode 100644 index 00000000..6afa6eab --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HourglassHalf.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.HourglassHalf: ImageVector + get() { + if (_hourglassHalf != null) { + return _hourglassHalf!! + } + _hourglassHalf = fluentIcon(name = "Regular.HourglassHalf") { + fluentPath { + moveTo(17.25f, 19.5f) + horizontalLineTo(6.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-0.6f) + arcTo(3.24f, 3.24f, 0.0f, false, true, 7.92f, 16.0f) + lineTo(10.0f, 14.52f) + arcTo(3.22f, 3.22f, 0.0f, false, false, 11.44f, 12.0f) + horizontalLineToRelative(1.12f) + arcTo(3.22f, 3.22f, 0.0f, false, false, 14.0f, 14.52f) + lineTo(16.08f, 16.0f) + arcToRelative(3.24f, 3.24f, 0.0f, false, true, 1.42f, 2.65f) + verticalLineToRelative(0.6f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, 0.25f) + close() + moveTo(6.75f, 2.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.0f, 4.75f) + verticalLineToRelative(0.42f) + curveToRelative(0.0f, 2.02f, 1.06f, 3.89f, 2.8f, 4.93f) + lineToRelative(1.8f, 1.09f) + curveToRelative(0.47f, 0.28f, 0.5f, 0.95f, 0.04f, 1.26f) + lineToRelative(-2.12f, 1.44f) + arcTo(5.75f, 5.75f, 0.0f, false, false, 4.0f, 18.65f) + verticalLineToRelative(0.6f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 6.75f, 22.0f) + horizontalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 20.0f, 19.25f) + verticalLineToRelative(-0.6f) + curveToRelative(0.0f, -1.9f, -0.94f, -3.69f, -2.52f, -4.76f) + lineToRelative(-2.12f, -1.44f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.04f, -1.26f) + lineToRelative(1.8f, -1.09f) + arcTo(5.75f, 5.75f, 0.0f, false, false, 20.0f, 5.17f) + verticalLineToRelative(-0.42f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 17.25f, 2.0f) + horizontalLineTo(6.75f) + close() + moveTo(5.5f, 4.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(10.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(0.42f) + curveToRelative(0.0f, 1.5f, -0.78f, 2.88f, -2.06f, 3.64f) + lineTo(14.63f, 9.9f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.11f, 3.79f) + lineToRelative(2.12f, 1.44f) + curveToRelative(1.16f, 0.8f, 1.86f, 2.1f, 1.86f, 3.52f) + verticalLineToRelative(0.6f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineTo(6.75f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + verticalLineToRelative(-0.6f) + curveToRelative(0.0f, -1.41f, 0.7f, -2.73f, 1.86f, -3.52f) + lineToRelative(2.12f, -1.44f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.1f, -3.79f) + lineTo(7.55f, 8.81f) + arcTo(4.25f, 4.25f, 0.0f, false, true, 5.5f, 5.17f) + verticalLineToRelative(-0.42f) + close() + } + } + return _hourglassHalf!! + } + +private var _hourglassHalf: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HourglassOneQuarter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HourglassOneQuarter.kt new file mode 100644 index 00000000..f830fc8c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HourglassOneQuarter.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.HourglassOneQuarter: ImageVector + get() { + if (_hourglassOneQuarter != null) { + return _hourglassOneQuarter!! + } + _hourglassOneQuarter = fluentIcon(name = "Regular.HourglassOneQuarter") { + fluentPath { + moveTo(6.88f, 17.15f) + curveToRelative(0.25f, -0.46f, 0.6f, -0.86f, 1.04f, -1.15f) + horizontalLineToRelative(8.16f) + arcToRelative(3.24f, 3.24f, 0.0f, false, true, 1.42f, 2.65f) + verticalLineToRelative(0.6f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, 0.25f) + horizontalLineTo(6.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-0.6f) + curveToRelative(0.0f, -0.52f, 0.14f, -1.04f, 0.38f, -1.5f) + close() + moveTo(6.75f, 2.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.0f, 4.75f) + verticalLineToRelative(0.42f) + curveToRelative(0.0f, 2.02f, 1.06f, 3.89f, 2.8f, 4.93f) + lineToRelative(1.8f, 1.09f) + curveToRelative(0.47f, 0.28f, 0.5f, 0.95f, 0.04f, 1.26f) + lineToRelative(-2.12f, 1.44f) + arcTo(5.75f, 5.75f, 0.0f, false, false, 4.0f, 18.65f) + verticalLineToRelative(0.6f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 6.75f, 22.0f) + horizontalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 20.0f, 19.25f) + verticalLineToRelative(-0.6f) + curveToRelative(0.0f, -1.9f, -0.94f, -3.69f, -2.52f, -4.76f) + lineToRelative(-2.12f, -1.44f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.04f, -1.26f) + lineToRelative(1.8f, -1.09f) + arcTo(5.75f, 5.75f, 0.0f, false, false, 20.0f, 5.17f) + verticalLineToRelative(-0.42f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 17.25f, 2.0f) + horizontalLineTo(6.75f) + close() + moveTo(5.5f, 4.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(10.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(0.42f) + curveToRelative(0.0f, 1.5f, -0.78f, 2.88f, -2.06f, 3.64f) + lineTo(14.63f, 9.9f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.11f, 3.79f) + lineToRelative(2.12f, 1.44f) + curveToRelative(1.16f, 0.8f, 1.86f, 2.1f, 1.86f, 3.52f) + verticalLineToRelative(0.6f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineTo(6.75f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + verticalLineToRelative(-0.6f) + curveToRelative(0.0f, -1.41f, 0.7f, -2.73f, 1.86f, -3.52f) + lineToRelative(2.12f, -1.44f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.1f, -3.79f) + lineTo(7.55f, 8.81f) + arcTo(4.25f, 4.25f, 0.0f, false, true, 5.5f, 5.17f) + verticalLineToRelative(-0.42f) + close() + } + } + return _hourglassOneQuarter!! + } + +private var _hourglassOneQuarter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HourglassThreeQuarter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HourglassThreeQuarter.kt new file mode 100644 index 00000000..d58a4a87 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/HourglassThreeQuarter.kt @@ -0,0 +1,88 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.HourglassThreeQuarter: ImageVector + get() { + if (_hourglassThreeQuarter != null) { + return _hourglassThreeQuarter!! + } + _hourglassThreeQuarter = fluentIcon(name = "Regular.HourglassThreeQuarter") { + fluentPath { + moveTo(7.92f, 8.0f) + curveToRelative(-0.39f, -0.26f, -0.7f, -0.6f, -0.95f, -1.0f) + horizontalLineToRelative(10.06f) + curveToRelative(-0.24f, 0.4f, -0.56f, 0.74f, -0.95f, 1.0f) + lineTo(14.0f, 9.48f) + curveToRelative(-0.42f, 0.28f, -0.77f, 0.65f, -1.02f, 1.09f) + arcToRelative(2.8f, 2.8f, 0.0f, false, false, 0.0f, 2.86f) + curveToRelative(0.25f, 0.44f, 0.6f, 0.81f, 1.02f, 1.09f) + lineTo(16.08f, 16.0f) + arcToRelative(3.24f, 3.24f, 0.0f, false, true, 1.42f, 2.65f) + verticalLineToRelative(0.6f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, 0.25f) + horizontalLineTo(6.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-0.6f) + arcTo(3.24f, 3.24f, 0.0f, false, true, 7.92f, 16.0f) + lineTo(10.0f, 14.52f) + curveToRelative(0.42f, -0.28f, 0.77f, -0.65f, 1.02f, -1.09f) + arcToRelative(2.8f, 2.8f, 0.0f, false, false, 0.0f, -2.86f) + curveToRelative(-0.25f, -0.44f, -0.6f, -0.81f, -1.02f, -1.09f) + lineTo(7.92f, 8.0f) + close() + moveTo(6.75f, 2.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.0f, 4.75f) + verticalLineToRelative(0.42f) + curveToRelative(0.0f, 2.02f, 1.06f, 3.89f, 2.8f, 4.93f) + lineToRelative(1.8f, 1.09f) + curveToRelative(0.47f, 0.28f, 0.5f, 0.95f, 0.04f, 1.26f) + lineToRelative(-2.12f, 1.44f) + arcTo(5.75f, 5.75f, 0.0f, false, false, 4.0f, 18.65f) + verticalLineToRelative(0.6f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 6.75f, 22.0f) + horizontalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 20.0f, 19.25f) + verticalLineToRelative(-0.6f) + curveToRelative(0.0f, -1.9f, -0.94f, -3.69f, -2.52f, -4.76f) + lineToRelative(-2.12f, -1.44f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.04f, -1.26f) + lineToRelative(1.8f, -1.09f) + arcTo(5.75f, 5.75f, 0.0f, false, false, 20.0f, 5.17f) + verticalLineToRelative(-0.42f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 17.25f, 2.0f) + horizontalLineTo(6.75f) + close() + moveTo(5.5f, 4.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(10.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(0.42f) + curveToRelative(0.0f, 1.5f, -0.78f, 2.88f, -2.06f, 3.64f) + lineTo(14.63f, 9.9f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.11f, 3.79f) + lineToRelative(2.12f, 1.44f) + curveToRelative(1.16f, 0.8f, 1.86f, 2.1f, 1.86f, 3.52f) + verticalLineToRelative(0.6f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineTo(6.75f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + verticalLineToRelative(-0.6f) + curveToRelative(0.0f, -1.41f, 0.7f, -2.73f, 1.86f, -3.52f) + lineToRelative(2.12f, -1.44f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.1f, -3.79f) + lineTo(7.55f, 8.81f) + arcTo(4.25f, 4.25f, 0.0f, false, true, 5.5f, 5.17f) + verticalLineToRelative(-0.42f) + close() + } + } + return _hourglassThreeQuarter!! + } + +private var _hourglassThreeQuarter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Icons.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Icons.kt new file mode 100644 index 00000000..e4c562b6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Icons.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Icons: ImageVector + get() { + if (_icons != null) { + return _icons!! + } + _icons = fluentIcon(name = "Regular.Icons") { + fluentPath { + moveTo(13.0f, 3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -2.67f, 5.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.57f, 1.24f) + lineTo(3.75f, 10.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 2.9f, 2.35f, 5.25f, 5.25f, 5.25f) + horizontalLineToRelative(3.22f) + curveToRelative(0.15f, 0.1f, 0.32f, 0.2f, 0.5f, 0.25f) + curveToRelative(-0.28f, 0.41f, -0.52f, 0.83f, -0.73f, 1.25f) + lineTo(8.75f, 18.5f) + arcTo(6.75f, 6.75f, 0.0f, false, true, 2.0f, 11.75f) + verticalLineToRelative(-1.0f) + curveTo(2.0f, 9.78f, 2.78f, 9.0f, 3.75f, 9.0f) + horizontalLineToRelative(4.67f) + arcTo(4.98f, 4.98f, 0.0f, false, true, 13.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 4.58f, 3.0f) + horizontalLineToRelative(1.67f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) + horizontalLineToRelative(-0.92f) + curveToRelative(-0.14f, 0.24f, -0.29f, 0.46f, -0.46f, 0.67f) + curveToRelative(0.16f, 0.13f, 0.3f, 0.28f, 0.44f, 0.44f) + lineToRelative(-0.54f, 0.06f) + arcToRelative(7.0f, 7.0f, 0.0f, false, false, -1.32f, 0.3f) + arcToRelative(3.05f, 3.05f, 0.0f, false, false, -0.1f, -0.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.11f, -1.23f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 16.36f, 8.0f) + horizontalLineToRelative(1.89f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-2.79f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -3.46f, -3.0f) + close() + moveTo(16.9f, 11.66f) + arcToRelative(13.5f, 13.5f, 0.0f, false, true, 5.56f, 0.23f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.22f, 1.35f) + arcToRelative(0.91f, 0.91f, 0.0f, false, false, -0.26f, 0.34f) + curveToRelative(-0.11f, 0.2f, -0.22f, 0.48f, -0.32f, 0.82f) + curveToRelative(-0.1f, 0.29f, -0.17f, 0.6f, -0.27f, 0.93f) + lineToRelative(-0.05f, 0.21f) + curveToRelative(-0.11f, 0.41f, -0.24f, 0.85f, -0.38f, 1.29f) + curveToRelative(-0.3f, 0.86f, -0.7f, 1.78f, -1.4f, 2.48f) + arcToRelative(4.02f, 4.02f, 0.0f, false, true, -3.0f, 1.2f) + arcToRelative(3.83f, 3.83f, 0.0f, false, true, -2.85f, -1.16f) + curveToRelative(-0.4f, 0.74f, -0.61f, 1.43f, -0.65f, 1.95f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, -0.1f) + arcToRelative(7.4f, 7.4f, 0.0f, false, true, 1.67f, -3.84f) + arcToRelative(8.86f, 8.86f, 0.0f, false, true, 4.38f, -3.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.43f, 1.44f) + arcToRelative(7.31f, 7.31f, 0.0f, false, false, -3.45f, 2.3f) + curveToRelative(0.31f, 0.45f, 0.92f, 0.94f, 1.97f, 0.94f) + curveToRelative(0.91f, 0.0f, 1.5f, -0.3f, 1.93f, -0.74f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 1.05f, -1.92f) + curveToRelative(0.13f, -0.38f, 0.24f, -0.79f, 0.35f, -1.2f) + lineToRelative(0.05f, -0.2f) + lineToRelative(0.28f, -0.98f) + curveToRelative(0.1f, -0.3f, 0.2f, -0.58f, 0.32f, -0.85f) + curveToRelative(-0.9f, -0.13f, -2.15f, -0.19f, -3.88f, 0.04f) + arcToRelative(4.05f, 4.05f, 0.0f, false, false, -3.38f, 2.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.44f, -0.4f) + arcToRelative(5.54f, 5.54f, 0.0f, false, true, 4.62f, -3.72f) + close() + } + } + return _icons!! + } + +private var _icons: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageAdd.kt new file mode 100644 index 00000000..e5647230 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageAdd.kt @@ -0,0 +1,91 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ImageAdd: ImageVector + get() { + if (_imageAdd != null) { + return _imageAdd!! + } + _imageAdd = fluentIcon(name = "Regular.ImageAdd") { + fluentPath { + moveTo(18.75f, 4.0f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(7.25f, 22.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 4.0f, 18.75f) + lineTo(4.0f, 12.5f) + curveToRelative(0.47f, 0.2f, 0.98f, 0.34f, 1.5f, 0.42f) + verticalLineToRelative(5.83f) + curveToRelative(0.0f, 0.2f, 0.04f, 0.4f, 0.1f, 0.6f) + lineToRelative(5.83f, -5.7f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.02f, -0.12f) + lineToRelative(0.12f, 0.11f) + lineToRelative(5.83f, 5.7f) + curveToRelative(0.06f, -0.18f, 0.1f, -0.38f, 0.1f, -0.59f) + lineTo(20.5f, 7.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-5.83f) + arcTo(6.46f, 6.46f, 0.0f, false, false, 12.5f, 4.0f) + horizontalLineToRelative(6.25f) + close() + moveTo(12.55f, 14.64f) + lineTo(12.48f, 14.71f) + lineTo(6.67f, 20.41f) + curveToRelative(0.18f, 0.06f, 0.38f, 0.09f, 0.58f, 0.09f) + horizontalLineToRelative(11.5f) + curveToRelative(0.2f, 0.0f, 0.4f, -0.03f, 0.58f, -0.1f) + lineToRelative(-5.8f, -5.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, -0.07f) + close() + moveTo(16.25f, 7.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -4.5f) + close() + moveTo(6.5f, 1.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(16.25f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(6.5f, 3.0f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) + lineTo(6.0f, 3.5f) + lineTo(6.0f, 6.0f) + lineTo(3.4f, 6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(0.18f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) + lineToRelative(0.1f, 0.01f) + lineTo(6.0f, 7.0f) + verticalLineToRelative(2.6f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + horizontalLineToRelative(0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) + lineTo(7.0f, 9.5f) + lineTo(7.0f, 7.0f) + horizontalLineToRelative(2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + verticalLineToRelative(-0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) + lineTo(9.5f, 6.0f) + lineTo(7.0f, 6.0f) + lineTo(7.0f, 3.4f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) + lineTo(6.5f, 3.0f) + close() + } + } + return _imageAdd!! + } + +private var _imageAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageAltText.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageAltText.kt new file mode 100644 index 00000000..ba9c3575 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageAltText.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ImageAltText: ImageVector + get() { + if (_imageAltText != null) { + return _imageAltText!! + } + _imageAltText = fluentIcon(name = "Regular.ImageAltText") { + fluentPath { + moveTo(1.0f, 3.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + verticalLineToRelative(6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + lineTo(3.0f, 11.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(1.0f, 3.0f) + close() + moveTo(3.5f, 4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + horizontalLineToRelative(-6.0f) + close() + moveTo(3.5f, 7.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + horizontalLineToRelative(-6.0f) + close() + moveTo(4.0f, 12.0f) + horizontalLineToRelative(1.5f) + verticalLineToRelative(6.75f) + curveToRelative(0.0f, 0.2f, 0.04f, 0.4f, 0.1f, 0.6f) + lineToRelative(5.83f, -5.7f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.02f, -0.12f) + lineToRelative(0.12f, 0.11f) + lineToRelative(5.83f, 5.7f) + curveToRelative(0.06f, -0.18f, 0.1f, -0.38f, 0.1f, -0.59f) + lineTo(20.5f, 7.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(13.0f, 5.5f) + lineTo(13.0f, 4.0f) + horizontalLineToRelative(5.75f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(7.25f, 22.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 4.0f, 18.75f) + lineTo(4.0f, 12.0f) + close() + moveTo(19.33f, 20.4f) + lineTo(13.53f, 14.71f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, -0.07f) + lineToRelative(-0.08f, 0.07f) + lineToRelative(-5.81f, 5.7f) + curveToRelative(0.18f, 0.06f, 0.38f, 0.09f, 0.58f, 0.09f) + horizontalLineToRelative(11.5f) + curveToRelative(0.2f, 0.0f, 0.4f, -0.03f, 0.58f, -0.1f) + close() + moveTo(16.25f, 7.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -4.5f) + close() + moveTo(16.25f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + } + } + return _imageAltText!! + } + +private var _imageAltText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageArrowBack.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageArrowBack.kt new file mode 100644 index 00000000..3563ee78 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageArrowBack.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ImageArrowBack: ImageVector + get() { + if (_imageArrowBack != null) { + return _imageArrowBack!! + } + _imageArrowBack = fluentIcon(name = "Regular.ImageArrowBack") { + fluentPath { + moveTo(12.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(5.35f, 4.35f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.7f, -0.7f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(1.5f, 1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, -0.7f) + lineTo(4.71f, 6.0f) + horizontalLineToRelative(2.04f) + curveTo(7.99f, 6.0f, 9.0f, 7.0f, 9.0f, 8.25f) + verticalLineToRelative(0.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-0.25f) + curveTo(10.0f, 6.45f, 8.54f, 5.0f, 6.75f, 5.0f) + lineTo(4.71f, 5.0f) + lineToRelative(0.64f, -0.65f) + close() + moveTo(3.0f, 11.98f) + curveToRelative(0.46f, 0.3f, 0.97f, 0.53f, 1.5f, 0.7f) + verticalLineToRelative(5.07f) + curveToRelative(0.0f, 0.2f, 0.04f, 0.4f, 0.1f, 0.6f) + lineToRelative(5.83f, -5.7f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.02f, -0.12f) + lineToRelative(0.12f, 0.11f) + lineToRelative(5.83f, 5.7f) + curveToRelative(0.06f, -0.18f, 0.1f, -0.38f, 0.1f, -0.59f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-5.06f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, -0.71f, -1.5f) + horizontalLineToRelative(5.77f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + verticalLineToRelative(-5.77f) + close() + moveTo(18.33f, 19.4f) + lineTo(12.53f, 13.71f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, -0.07f) + lineToRelative(-0.08f, 0.07f) + lineToRelative(-5.81f, 5.7f) + curveToRelative(0.18f, 0.06f, 0.38f, 0.09f, 0.58f, 0.09f) + horizontalLineToRelative(11.5f) + curveToRelative(0.2f, 0.0f, 0.4f, -0.03f, 0.58f, -0.1f) + close() + moveTo(15.25f, 6.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -4.5f) + close() + moveTo(15.25f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + } + } + return _imageArrowBack!! + } + +private var _imageArrowBack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageArrowCounterclockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageArrowCounterclockwise.kt new file mode 100644 index 00000000..90cb92c1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageArrowCounterclockwise.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ImageArrowCounterclockwise: ImageVector + get() { + if (_imageArrowCounterclockwise != null) { + return _imageArrowCounterclockwise!! + } + _imageArrowCounterclockwise = fluentIcon(name = "Regular.ImageArrowCounterclockwise") { + fluentPath { + moveTo(12.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(4.0f, 3.5f) + verticalLineToRelative(0.55f) + arcToRelative(3.49f, 3.49f, 0.0f, false, true, 6.0f, 2.45f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -6.19f, 2.24f) + curveToRelative(-0.26f, -0.31f, 0.0f, -0.74f, 0.41f, -0.74f) + curveToRelative(0.18f, 0.0f, 0.34f, 0.09f, 0.46f, 0.21f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 9.0f, 6.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.5f, 5.0f) + horizontalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + verticalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + close() + moveTo(18.75f, 5.5f) + horizontalLineToRelative(-5.83f) + arcTo(6.45f, 6.45f, 0.0f, false, false, 12.5f, 4.0f) + horizontalLineToRelative(6.25f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(7.25f, 22.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 4.0f, 18.75f) + lineTo(4.0f, 12.5f) + curveToRelative(0.47f, 0.2f, 0.98f, 0.34f, 1.5f, 0.42f) + verticalLineToRelative(5.83f) + curveToRelative(0.0f, 0.2f, 0.04f, 0.4f, 0.1f, 0.6f) + lineToRelative(5.83f, -5.7f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.02f, -0.12f) + lineToRelative(0.12f, 0.11f) + lineToRelative(5.83f, 5.7f) + curveToRelative(0.06f, -0.18f, 0.1f, -0.38f, 0.1f, -0.59f) + lineTo(20.5f, 7.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(19.33f, 20.4f) + lineTo(13.53f, 14.71f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, -0.07f) + lineToRelative(-0.08f, 0.07f) + lineToRelative(-5.81f, 5.7f) + curveToRelative(0.18f, 0.06f, 0.38f, 0.09f, 0.58f, 0.09f) + horizontalLineToRelative(11.5f) + curveToRelative(0.2f, 0.0f, 0.4f, -0.03f, 0.58f, -0.1f) + close() + moveTo(16.25f, 7.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -4.5f) + close() + moveTo(16.25f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + } + } + return _imageArrowCounterclockwise!! + } + +private var _imageArrowCounterclockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageArrowForward.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageArrowForward.kt new file mode 100644 index 00000000..3416b689 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageArrowForward.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ImageArrowForward: ImageVector + get() { + if (_imageArrowForward != null) { + return _imageArrowForward!! + } + _imageArrowForward = fluentIcon(name = "Regular.ImageArrowForward") { + fluentPath { + moveTo(1.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) + close() + moveTo(7.65f, 4.35f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.7f, -0.7f) + lineToRelative(1.5f, 1.5f) + curveToRelative(0.2f, 0.2f, 0.2f, 0.5f, 0.0f, 0.7f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -0.7f, -0.7f) + lineTo(8.29f, 6.0f) + lineTo(6.25f, 6.0f) + curveTo(5.01f, 6.0f, 4.0f, 7.0f, 4.0f, 8.25f) + verticalLineToRelative(0.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-0.25f) + curveTo(3.0f, 6.45f, 4.46f, 5.0f, 6.25f, 5.0f) + horizontalLineToRelative(2.04f) + lineToRelative(-0.64f, -0.65f) + close() + moveTo(3.0f, 11.98f) + curveToRelative(0.46f, 0.3f, 0.97f, 0.53f, 1.5f, 0.7f) + verticalLineToRelative(5.07f) + curveToRelative(0.0f, 0.2f, 0.04f, 0.4f, 0.1f, 0.6f) + lineToRelative(5.83f, -5.7f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.02f, -0.12f) + lineToRelative(0.12f, 0.11f) + lineToRelative(5.83f, 5.7f) + curveToRelative(0.06f, -0.18f, 0.1f, -0.38f, 0.1f, -0.59f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-5.06f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, -0.71f, -1.5f) + horizontalLineToRelative(5.77f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + verticalLineToRelative(-5.77f) + close() + moveTo(18.33f, 19.4f) + lineTo(12.53f, 13.71f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, -0.07f) + lineToRelative(-0.08f, 0.07f) + lineToRelative(-5.81f, 5.7f) + curveToRelative(0.18f, 0.06f, 0.38f, 0.09f, 0.58f, 0.09f) + horizontalLineToRelative(11.5f) + curveToRelative(0.2f, 0.0f, 0.4f, -0.03f, 0.58f, -0.1f) + close() + moveTo(15.25f, 6.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -4.5f) + close() + moveTo(15.25f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + } + } + return _imageArrowForward!! + } + +private var _imageArrowForward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageBorder.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageBorder.kt new file mode 100644 index 00000000..adda2fc6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageBorder.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ImageBorder: ImageVector + get() { + if (_imageBorder != null) { + return _imageBorder!! + } + _imageBorder = fluentIcon(name = "Regular.ImageBorder") { + fluentPath { + moveTo(14.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(7.25f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(9.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-9.5f) + close() + moveTo(10.41f, 12.66f) + lineTo(8.0f, 15.06f) + lineTo(8.0f, 8.0f) + horizontalLineToRelative(8.0f) + verticalLineToRelative(7.07f) + lineToRelative(-2.4f, -2.41f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.2f, 0.0f) + close() + moveTo(12.53f, 13.72f) + lineTo(14.81f, 16.0f) + lineTo(9.2f, 16.0f) + lineToRelative(2.28f, -2.28f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 6.25f) + close() + } + } + return _imageBorder!! + } + +private var _imageBorder: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageCircle.kt new file mode 100644 index 00000000..b5b024e0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageCircle.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ImageCircle: ImageVector + get() { + if (_imageCircle != null) { + return _imageCircle!! + } + _imageCircle = fluentIcon(name = "Regular.ImageCircle") { + fluentPath { + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, -6.51f, 13.96f) + lineToRelative(4.93f, -4.84f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.16f, 0.0f) + lineToRelative(4.93f, 4.84f) + arcTo(8.5f, 8.5f, 0.0f, false, false, 12.0f, 3.5f) + close() + moveTo(17.45f, 18.52f) + lineTo(12.53f, 13.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-4.92f, 4.83f) + arcToRelative(8.47f, 8.47f, 0.0f, false, false, 10.9f, 0.0f) + close() + moveTo(2.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) + close() + moveTo(15.25f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(15.25f, 11.0f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, -4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) + close() + } + } + return _imageCircle!! + } + +private var _imageCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageCopy.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageCopy.kt new file mode 100644 index 00000000..e0f3f09f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageCopy.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ImageCopy: ImageVector + get() { + if (_imageCopy != null) { + return _imageCopy!! + } + _imageCopy = fluentIcon(name = "Regular.ImageCopy") { + fluentPath { + moveTo(4.5f, 6.0f) + curveTo(3.6f, 6.59f, 3.0f, 7.6f, 3.0f, 8.76f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 2.9f, 2.35f, 5.25f, 5.25f, 5.25f) + horizontalLineToRelative(6.5f) + curveToRelative(1.15f, 0.0f, 2.17f, -0.6f, 2.74f, -1.5f) + lineTo(8.25f, 19.01f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.75f, -3.75f) + lineTo(4.5f, 6.01f) + close() + moveTo(8.75f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 5.5f, 6.25f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(8.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-8.5f) + close() + moveTo(13.43f, 12.14f) + lineTo(13.53f, 12.21f) + lineTo(17.83f, 16.41f) + curveToRelative(-0.18f, 0.06f, -0.38f, 0.09f, -0.58f, 0.09f) + horizontalLineToRelative(-8.5f) + curveToRelative(-0.2f, 0.0f, -0.4f, -0.03f, -0.58f, -0.1f) + lineToRelative(4.3f, -4.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.96f, -0.07f) + close() + moveTo(8.75f, 4.5f) + horizontalLineToRelative(8.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.2f, -0.04f, 0.4f, -0.1f, 0.6f) + lineToRelative(-4.33f, -4.21f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.0f, -0.12f) + lineToRelative(-0.14f, 0.12f) + lineToRelative(-4.33f, 4.2f) + curveToRelative(-0.06f, -0.18f, -0.1f, -0.38f, -0.1f, -0.59f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + close() + moveTo(10.5f, 6.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + } + } + return _imageCopy!! + } + +private var _imageCopy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageEdit.kt new file mode 100644 index 00000000..76c531ab --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageEdit.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ImageEdit: ImageVector + get() { + if (_imageEdit != null) { + return _imageEdit!! + } + _imageEdit = fluentIcon(name = "Regular.ImageEdit") { + fluentPath { + moveTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.45f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(4.91f) + lineToRelative(0.36f, -1.42f) + lineToRelative(0.02f, -0.08f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.2f, 0.0f, -0.4f, -0.04f, -0.58f, -0.1f) + lineToRelative(5.8f, -5.69f) + lineToRelative(0.09f, -0.07f) + curveToRelative(0.29f, -0.2f, 0.7f, -0.19f, 0.96f, 0.07f) + lineToRelative(2.08f, 2.04f) + lineToRelative(1.06f, -1.06f) + lineToRelative(-2.09f, -2.05f) + lineToRelative(-0.13f, -0.11f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.01f, 0.11f) + lineToRelative(-5.83f, 5.7f) + curveToRelative(-0.06f, -0.18f, -0.1f, -0.38f, -0.1f, -0.6f) + lineTo(4.5f, 6.26f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.98f) + curveToRelative(0.48f, -0.19f, 1.0f, -0.26f, 1.5f, -0.22f) + lineTo(21.0f, 6.25f) + close() + moveTo(17.5f, 8.75f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, -4.5f, 0.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) + close() + moveTo(14.5f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.34f, -0.6f, 0.78f, -0.71f, 1.25f) + lineToRelative(-0.46f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _imageEdit!! + } + +private var _imageEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageGlobe.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageGlobe.kt new file mode 100644 index 00000000..179e6782 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageGlobe.kt @@ -0,0 +1,116 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ImageGlobe: ImageVector + get() { + if (_imageGlobe != null) { + return _imageGlobe!! + } + _imageGlobe = fluentIcon(name = "Regular.ImageGlobe") { + fluentPath { + moveTo(5.0f, 6.0f) + curveToRelative(0.05f, -1.41f, 0.25f, -2.67f, 0.56f, -3.58f) + curveToRelative(0.17f, -0.52f, 0.36f, -0.9f, 0.55f, -1.14f) + curveToRelative(0.2f, -0.25f, 0.33f, -0.28f, 0.39f, -0.28f) + reflectiveCurveToRelative(0.2f, 0.03f, 0.39f, 0.28f) + curveToRelative(0.19f, 0.24f, 0.38f, 0.62f, 0.55f, 1.14f) + curveToRelative(0.3f, 0.91f, 0.51f, 2.17f, 0.55f, 3.58f) + horizontalLineTo(5.01f) + close() + } + fluentPath { + moveTo(4.61f, 2.1f) + curveToRelative(0.1f, -0.32f, 0.23f, -0.62f, 0.37f, -0.89f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 1.02f, 6.0f) + horizontalLineToRelative(2.99f) + curveToRelative(0.04f, -1.5f, 0.26f, -2.87f, 0.6f, -3.9f) + close() + } + fluentPath { + moveTo(8.39f, 2.1f) + curveToRelative(-0.1f, -0.32f, -0.23f, -0.62f, -0.37f, -0.89f) + arcTo(5.5f, 5.5f, 0.0f, false, true, 11.98f, 6.0f) + horizontalLineTo(8.99f) + curveToRelative(-0.04f, -1.5f, -0.26f, -2.87f, -0.6f, -3.9f) + close() + } + fluentPath { + moveTo(9.0f, 7.0f) + horizontalLineToRelative(2.98f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, -3.96f, 4.79f) + curveToRelative(0.14f, -0.27f, 0.26f, -0.57f, 0.37f, -0.89f) + curveToRelative(0.34f, -1.03f, 0.56f, -2.4f, 0.6f, -3.9f) + close() + } + fluentPath { + moveTo(6.89f, 11.72f) + curveToRelative(-0.2f, 0.25f, -0.33f, 0.28f, -0.39f, 0.28f) + reflectiveCurveToRelative(-0.2f, -0.03f, -0.39f, -0.28f) + arcToRelative(3.84f, 3.84f, 0.0f, false, true, -0.55f, -1.14f) + curveToRelative(-0.3f, -0.91f, -0.51f, -2.17f, -0.55f, -3.58f) + horizontalLineToRelative(2.98f) + arcToRelative(12.92f, 12.92f, 0.0f, false, true, -0.55f, 3.58f) + curveToRelative(-0.17f, 0.52f, -0.36f, 0.9f, -0.55f, 1.14f) + close() + } + fluentPath { + moveTo(1.02f, 7.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 3.96f, 4.79f) + arcToRelative(6.13f, 6.13f, 0.0f, false, true, -0.37f, -0.89f) + curveToRelative(-0.34f, -1.03f, -0.56f, -2.4f, -0.6f, -3.9f) + horizontalLineTo(1.02f) + close() + } + fluentPath { + moveTo(17.75f, 4.5f) + horizontalLineToRelative(-5.06f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, -0.71f, -1.5f) + horizontalLineToRelative(5.77f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + verticalLineToRelative(-5.77f) + curveToRelative(0.46f, 0.3f, 0.97f, 0.53f, 1.5f, 0.7f) + verticalLineToRelative(5.07f) + curveToRelative(0.0f, 0.2f, 0.04f, 0.4f, 0.1f, 0.6f) + lineToRelative(5.83f, -5.7f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.02f, -0.12f) + lineToRelative(0.12f, 0.11f) + lineToRelative(5.83f, 5.7f) + curveToRelative(0.06f, -0.18f, 0.1f, -0.38f, 0.1f, -0.59f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(18.33f, 19.4f) + lineTo(12.53f, 13.71f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, -0.07f) + lineToRelative(-0.08f, 0.07f) + lineToRelative(-5.81f, 5.7f) + curveToRelative(0.18f, 0.06f, 0.38f, 0.09f, 0.58f, 0.09f) + horizontalLineToRelative(11.5f) + curveToRelative(0.2f, 0.0f, 0.4f, -0.03f, 0.58f, -0.1f) + close() + } + fluentPath { + moveTo(15.25f, 6.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -4.5f) + close() + moveTo(15.25f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + } + } + return _imageGlobe!! + } + +private var _imageGlobe: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageMultiple.kt new file mode 100644 index 00000000..6625d98b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageMultiple.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ImageMultiple: ImageVector + get() { + if (_imageMultiple != null) { + return _imageMultiple!! + } + _imageMultiple = fluentIcon(name = "Regular.ImageMultiple") { + fluentPath { + moveTo(13.75f, 9.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(9.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-9.0f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-9.0f) + close() + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(9.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 0.23f, -0.04f, 0.45f, -0.13f, 0.65f) + lineToRelative(-4.58f, -4.29f) + curveToRelative(-0.87f, -0.8f, -2.21f, -0.8f, -3.08f, 0.0f) + lineToRelative(-4.58f, 4.3f) + curveToRelative(-0.09f, -0.2f, -0.13f, -0.43f, -0.13f, -0.66f) + verticalLineToRelative(-9.0f) + close() + moveTo(11.26f, 12.71f) + lineTo(15.76f, 16.92f) + curveToRelative(-0.16f, 0.05f, -0.33f, 0.08f, -0.51f, 0.08f) + horizontalLineToRelative(-9.0f) + curveToRelative(-0.18f, 0.0f, -0.35f, -0.03f, -0.52f, -0.08f) + lineToRelative(4.5f, -4.21f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, 0.0f) + close() + moveTo(8.75f, 21.0f) + curveToRelative(-1.15f, 0.0f, -2.16f, -0.6f, -2.74f, -1.5f) + horizontalLineToRelative(9.74f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 3.75f, -3.75f) + lineTo(19.5f, 6.01f) + curveToRelative(0.9f, 0.58f, 1.5f, 1.59f, 1.5f, 2.74f) + verticalLineToRelative(7.0f) + curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) + horizontalLineToRelative(-7.0f) + close() + } + } + return _imageMultiple!! + } + +private var _imageMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageOff.kt new file mode 100644 index 00000000..02f56dfd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageOff.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ImageOff: ImageVector + get() { + if (_imageOff != null) { + return _imageOff!! + } + _imageOff = fluentIcon(name = "Regular.ImageOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.26f, 1.26f) + curveToRelative(-0.3f, 0.5f, -0.48f, 1.08f, -0.48f, 1.71f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(0.63f, 0.0f, 1.21f, -0.18f, 1.7f, -0.48f) + lineToRelative(1.27f, 1.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(12.07f, 13.12f) + lineTo(18.27f, 19.33f) + lineTo(18.33f, 19.4f) + curveToRelative(-0.18f, 0.07f, -0.38f, 0.1f, -0.58f, 0.1f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.2f, 0.0f, -0.4f, -0.03f, -0.58f, -0.1f) + lineToRelative(5.8f, -5.69f) + lineToRelative(0.6f, -0.58f) + close() + moveTo(11.12f, 12.18f) + curveToRelative(-0.25f, 0.1f, -0.49f, 0.26f, -0.7f, 0.46f) + lineToRelative(-5.82f, 5.7f) + curveToRelative(-0.06f, -0.18f, -0.1f, -0.38f, -0.1f, -0.59f) + lineTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.2f, 0.04f, -0.4f, 0.1f, -0.59f) + lineToRelative(6.52f, 6.52f) + close() + moveTo(19.5f, 16.32f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(7.68f, 4.5f) + lineTo(6.18f, 3.0f) + horizontalLineToRelative(11.57f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.57f) + lineToRelative(-1.5f, -1.5f) + close() + moveTo(15.25f, 6.5f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -4.5f) + close() + moveTo(15.25f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + } + } + return _imageOff!! + } + +private var _imageOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageProhibited.kt new file mode 100644 index 00000000..ed4c4bac --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageProhibited.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ImageProhibited: ImageVector + get() { + if (_imageProhibited != null) { + return _imageProhibited!! + } + _imageProhibited = fluentIcon(name = "Regular.ImageProhibited") { + fluentPath { + moveTo(6.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) + close() + moveTo(6.5f, 10.5f) + curveToRelative(-0.83f, 0.0f, -1.6f, -0.25f, -2.25f, -0.7f) + lineToRelative(5.56f, -5.55f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -3.3f, 6.25f) + close() + moveTo(3.2f, 8.75f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 5.56f, -5.56f) + lineTo(3.18f, 8.75f) + close() + moveTo(4.5f, 12.69f) + arcToRelative(6.47f, 6.47f, 0.0f, false, true, -1.5f, -0.71f) + verticalLineToRelative(5.77f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + horizontalLineToRelative(-5.77f) + curveToRelative(0.3f, 0.46f, 0.53f, 0.97f, 0.7f, 1.5f) + horizontalLineToRelative(5.07f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.2f, -0.04f, 0.4f, -0.1f, 0.6f) + lineToRelative(-5.83f, -5.7f) + lineToRelative(-0.12f, -0.12f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.02f, 0.11f) + lineToRelative(-5.83f, 5.7f) + curveToRelative(-0.06f, -0.18f, -0.1f, -0.38f, -0.1f, -0.59f) + verticalLineToRelative(-5.06f) + close() + moveTo(12.52f, 13.71f) + lineTo(18.33f, 19.41f) + curveToRelative(-0.18f, 0.06f, -0.38f, 0.09f, -0.58f, 0.09f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.2f, 0.0f, -0.4f, -0.03f, -0.58f, -0.1f) + lineToRelative(5.8f, -5.69f) + lineToRelative(0.09f, -0.07f) + curveToRelative(0.29f, -0.2f, 0.7f, -0.18f, 0.96f, 0.07f) + close() + moveTo(17.5f, 8.75f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, -4.5f, 0.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) + close() + moveTo(14.5f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + } + } + return _imageProhibited!! + } + +private var _imageProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageReflection.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageReflection.kt new file mode 100644 index 00000000..bfde5d9d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageReflection.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ImageReflection: ImageVector + get() { + if (_imageReflection != null) { + return _imageReflection!! + } + _imageReflection = fluentIcon(name = "Regular.ImageReflection") { + fluentPath { + moveTo(16.25f, 7.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(16.92f, 16.99f) + lineTo(16.75f, 17.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(18.5f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -1.0f, -0.46f, -1.9f, -1.17f, -2.5f) + curveToRelative(0.71f, -0.6f, 1.17f, -1.5f, 1.17f, -2.5f) + verticalLineToRelative(-9.0f) + curveTo(20.0f, 4.45f, 18.54f, 3.0f, 16.75f, 3.0f) + horizontalLineToRelative(-9.5f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 4.0f, 6.25f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 1.0f, 0.46f, 1.9f, 1.17f, 2.5f) + curveToRelative(-0.71f, 0.6f, -1.17f, 1.5f, -1.17f, 2.5f) + lineTo(4.0f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(7.08f, 17.0f) + lineToRelative(4.4f, -4.3f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.04f, 0.0f) + lineToRelative(4.4f, 4.3f) + close() + moveTo(7.25f, 4.5f) + horizontalLineToRelative(9.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 0.34f, -0.1f, 0.66f, -0.27f, 0.93f) + lineToRelative(-4.66f, -4.55f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.14f, 0.0f) + lineToRelative(-4.66f, 4.55f) + arcToRelative(1.74f, 1.74f, 0.0f, false, true, -0.27f, -0.93f) + verticalLineToRelative(-9.0f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + close() + moveTo(11.25f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.5f) + close() + } + } + return _imageReflection!! + } + +private var _imageReflection: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageSearch.kt new file mode 100644 index 00000000..b610a3ae --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageSearch.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ImageSearch: ImageVector + get() { + if (_imageSearch != null) { + return _imageSearch!! + } + _imageSearch = fluentIcon(name = "Regular.ImageSearch") { + fluentPath { + moveTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(4.5f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 1.5f, -0.88f) + lineTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.2f, -0.04f, 0.4f, -0.1f, 0.6f) + lineToRelative(-5.83f, -5.7f) + lineToRelative(-0.12f, -0.12f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.25f, -0.38f) + curveToRelative(0.26f, 0.42f, 0.46f, 0.89f, 0.6f, 1.38f) + curveToRelative(0.25f, -0.07f, 0.53f, 0.0f, 0.72f, 0.18f) + lineToRelative(5.81f, 5.7f) + curveToRelative(-0.18f, 0.06f, -0.38f, 0.09f, -0.58f, 0.09f) + horizontalLineToRelative(-4.78f) + lineToRelative(0.52f, 0.51f) + curveToRelative(0.28f, 0.28f, 0.44f, 0.63f, 0.5f, 0.99f) + horizontalLineToRelative(3.76f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + close() + moveTo(17.5f, 8.75f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, -4.5f, 0.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) + close() + moveTo(14.5f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(9.95f, 17.9f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, -1.15f, 0.98f) + lineToRelative(2.92f, 2.91f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.83f, -2.83f) + close() + moveTo(6.5f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) + close() + } + } + return _imageSearch!! + } + +private var _imageSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageShadow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageShadow.kt new file mode 100644 index 00000000..f758531b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageShadow.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ImageShadow: ImageVector + get() { + if (_imageShadow != null) { + return _imageShadow!! + } + _imageShadow = fluentIcon(name = "Regular.ImageShadow") { + fluentPath { + moveTo(14.0f, 6.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(2.0f, 5.25f) + curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) + horizontalLineToRelative(9.0f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-9.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 14.25f) + verticalLineToRelative(-9.0f) + close() + moveTo(5.25f, 3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 0.23f, 0.04f, 0.45f, 0.13f, 0.65f) + lineToRelative(4.58f, -4.29f) + curveToRelative(0.87f, -0.8f, 2.21f, -0.8f, 3.08f, 0.0f) + lineToRelative(4.58f, 4.3f) + curveToRelative(0.09f, -0.2f, 0.13f, -0.43f, 0.13f, -0.66f) + verticalLineToRelative(-9.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-9.0f) + close() + moveTo(14.77f, 15.92f) + lineTo(10.27f, 11.71f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.03f, 0.0f) + lineToRelative(-4.5f, 4.21f) + curveToRelative(0.16f, 0.05f, 0.33f, 0.08f, 0.51f, 0.08f) + horizontalLineToRelative(9.0f) + curveToRelative(0.18f, 0.0f, 0.35f, -0.03f, 0.52f, -0.08f) + close() + moveTo(6.5f, 18.75f) + verticalLineToRelative(-0.25f) + horizontalLineToRelative(8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, -4.0f) + verticalLineToRelative(-8.0f) + horizontalLineToRelative(0.25f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(7.0f) + curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) + horizontalLineToRelative(-7.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.25f, -3.25f) + close() + } + } + return _imageShadow!! + } + +private var _imageShadow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageTable.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageTable.kt new file mode 100644 index 00000000..062d3306 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImageTable.kt @@ -0,0 +1,102 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ImageTable: ImageVector + get() { + if (_imageTable != null) { + return _imageTable!! + } + _imageTable = fluentIcon(name = "Regular.ImageTable") { + fluentPath { + moveTo(14.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(0.25f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(-0.25f) + close() + moveTo(4.5f, 16.0f) + horizontalLineToRelative(2.0f) + lineTo(6.5f, 8.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(8.0f) + close() + moveTo(16.0f, 6.5f) + verticalLineToRelative(-2.0f) + lineTo(8.0f, 4.5f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(8.0f) + close() + moveTo(17.5f, 6.5f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(-0.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-0.25f) + verticalLineToRelative(2.0f) + close() + moveTo(17.5f, 8.0f) + verticalLineToRelative(8.0f) + horizontalLineToRelative(2.0f) + lineTo(19.5f, 8.0f) + horizontalLineToRelative(-2.0f) + close() + moveTo(17.5f, 17.5f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(0.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-0.25f) + horizontalLineToRelative(-2.0f) + close() + moveTo(16.0f, 17.5f) + lineTo(8.0f, 17.5f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(8.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(6.5f, 17.5f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(0.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(0.25f) + verticalLineToRelative(-2.0f) + close() + moveTo(8.0f, 15.07f) + lineToRelative(2.4f, -2.41f) + curveToRelative(0.89f, -0.88f, 2.31f, -0.88f, 3.2f, 0.0f) + lineToRelative(2.4f, 2.4f) + lineTo(16.0f, 8.0f) + lineTo(8.0f, 8.0f) + verticalLineToRelative(7.07f) + close() + moveTo(14.81f, 16.0f) + lineTo(12.53f, 13.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineTo(9.19f, 16.0f) + horizontalLineToRelative(5.62f) + close() + } + } + return _imageTable!! + } + +private var _imageTable: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImmersiveReader.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImmersiveReader.kt new file mode 100644 index 00000000..d555f7b7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ImmersiveReader.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ImmersiveReader: ImageVector + get() { + if (_immersiveReader != null) { + return _immersiveReader!! + } + _immersiveReader = fluentIcon(name = "Regular.ImmersiveReader") { + fluentPath { + moveTo(11.13f, 19.5f) + lineTo(3.75f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-13.0f) + curveTo(2.0f, 3.78f, 2.78f, 3.0f, 3.75f, 3.0f) + horizontalLineToRelative(6.0f) + curveToRelative(0.79f, 0.0f, 1.5f, 0.33f, 2.0f, 0.86f) + curveToRelative(0.5f, -0.53f, 1.21f, -0.86f, 2.0f, -0.86f) + horizontalLineToRelative(6.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(7.42f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.5f, 0.0f) + lineTo(20.0f, 4.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-6.0f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + lineTo(12.5f, 15.0f) + lineTo(12.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + lineTo(11.0f, 5.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-6.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(13.0f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + lineTo(11.0f, 18.0f) + verticalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.13f, 0.5f) + close() + moveTo(21.23f, 13.17f) + curveToRelative(0.25f, 0.21f, 0.59f, 0.58f, 0.91f, 1.13f) + curveToRelative(0.54f, 0.9f, 0.86f, 1.96f, 0.86f, 3.2f) + curveToRelative(0.0f, 1.24f, -0.32f, 2.3f, -0.86f, 3.2f) + curveToRelative(-0.32f, 0.55f, -0.66f, 0.92f, -0.91f, 1.13f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.96f, -1.16f) + curveToRelative(0.13f, -0.1f, 0.35f, -0.35f, 0.59f, -0.74f) + curveToRelative(0.4f, -0.67f, 0.64f, -1.48f, 0.64f, -2.43f) + curveToRelative(0.0f, -0.95f, -0.24f, -1.76f, -0.64f, -2.43f) + curveToRelative(-0.24f, -0.39f, -0.46f, -0.64f, -0.59f, -0.74f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.96f, -1.16f) + close() + moveTo(19.2f, 14.65f) + arcToRelative(3.73f, 3.73f, 0.0f, false, true, 1.3f, 2.85f) + arcToRelative(3.73f, 3.73f, 0.0f, false, true, -1.3f, 2.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, -1.13f) + lineToRelative(0.08f, -0.07f) + arcToRelative(2.24f, 2.24f, 0.0f, false, false, 0.7f, -1.65f) + arcToRelative(2.24f, 2.24f, 0.0f, false, false, -0.7f, -1.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.9f, -1.2f) + close() + moveTo(16.51f, 14.05f) + curveToRelative(0.3f, 0.1f, 0.49f, 0.39f, 0.49f, 0.7f) + verticalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.31f, 0.5f) + lineTo(14.16f, 19.0f) + horizontalLineToRelative(-1.41f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.41f) + lineToRelative(1.53f, -1.74f) + curveToRelative(0.2f, -0.24f, 0.53f, -0.32f, 0.82f, -0.21f) + close() + } + } + return _immersiveReader!! + } + +private var _immersiveReader: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Incognito.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Incognito.kt new file mode 100644 index 00000000..ad1da7dd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Incognito.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Incognito: ImageVector + get() { + if (_incognito != null) { + return _incognito!! + } + _incognito = fluentIcon(name = "Regular.Incognito") { + fluentPath { + moveTo(8.38f, 4.5f) + curveToRelative(-0.5f, 0.0f, -0.94f, 0.29f, -1.14f, 0.73f) + lineTo(6.18f, 7.56f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.36f, -0.62f) + lineToRelative(1.06f, -2.33f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 8.38f, 3.0f) + horizontalLineToRelative(7.24f) + curveToRelative(1.08f, 0.0f, 2.06f, 0.63f, 2.5f, 1.61f) + lineToRelative(1.06f, 2.33f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.36f, 0.62f) + lineToRelative(-1.06f, -2.33f) + curveToRelative(-0.2f, -0.44f, -0.65f, -0.73f, -1.14f, -0.73f) + lineTo(8.38f, 4.5f) + close() + moveTo(6.5f, 13.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + moveTo(2.0f, 16.5f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 8.97f, -0.5f) + horizontalLineToRelative(2.06f) + arcToRelative(4.5f, 4.5f, 0.0f, true, true, 0.08f, 1.5f) + lineTo(10.9f, 17.5f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -8.89f, -1.0f) + close() + moveTo(17.5f, 13.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + moveTo(2.93f, 10.97f) + curveToRelative(5.13f, -1.3f, 13.0f, -1.3f, 18.14f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.36f, -1.45f) + curveToRelative(-5.37f, -1.36f, -13.5f, -1.36f, -18.86f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.36f, 1.45f) + close() + } + } + return _incognito!! + } + +private var _incognito: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/InkStroke.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/InkStroke.kt new file mode 100644 index 00000000..b1327d23 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/InkStroke.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.InkStroke: ImageVector + get() { + if (_inkStroke != null) { + return _inkStroke!! + } + _inkStroke = fluentIcon(name = "Regular.InkStroke") { + fluentPath { + moveTo(3.25f, 2.93f) + curveToRelative(0.04f, -0.41f, 0.4f, -0.72f, 0.82f, -0.68f) + lineToRelative(3.74f, 0.35f) + curveToRelative(2.66f, 0.27f, 5.2f, 0.58f, 7.28f, 0.94f) + curveToRelative(2.05f, 0.35f, 3.77f, 0.76f, 4.7f, 1.25f) + curveToRelative(0.23f, 0.13f, 0.47f, 0.29f, 0.65f, 0.5f) + curveToRelative(0.2f, 0.21f, 0.36f, 0.55f, 0.3f, 0.95f) + curveToRelative(-0.07f, 0.37f, -0.31f, 0.63f, -0.53f, 0.8f) + curveToRelative(-0.22f, 0.18f, -0.5f, 0.32f, -0.81f, 0.45f) + curveToRelative(-1.24f, 0.51f, -3.6f, 1.0f, -7.33f, 1.5f) + curveToRelative(-2.38f, 0.3f, -3.9f, 0.61f, -4.76f, 0.89f) + lineToRelative(0.08f, 0.02f) + curveToRelative(0.4f, 0.12f, 0.93f, 0.24f, 1.54f, 0.35f) + curveToRelative(1.23f, 0.23f, 2.77f, 0.42f, 4.4f, 0.57f) + curveToRelative(1.25f, 0.1f, 2.57f, 0.28f, 3.7f, 0.5f) + curveToRelative(0.57f, 0.12f, 1.1f, 0.24f, 1.54f, 0.38f) + curveToRelative(0.43f, 0.14f, 0.85f, 0.3f, 1.16f, 0.51f) + curveToRelative(0.15f, 0.1f, 0.33f, 0.26f, 0.45f, 0.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.03f, 0.87f) + curveToRelative(-0.12f, 0.26f, -0.32f, 0.43f, -0.5f, 0.55f) + curveToRelative(-0.17f, 0.12f, -0.39f, 0.23f, -0.63f, 0.32f) + curveToRelative(-0.92f, 0.35f, -2.6f, 0.69f, -5.23f, 1.0f) + curveToRelative(-2.62f, 0.32f, -4.22f, 0.71f, -5.11f, 1.12f) + curveToRelative(-0.45f, 0.2f, -0.65f, 0.38f, -0.73f, 0.48f) + curveToRelative(-0.05f, 0.07f, -0.05f, 0.09f, -0.04f, 0.1f) + curveToRelative(0.02f, 0.06f, 0.08f, 0.2f, 0.29f, 0.4f) + curveToRelative(0.2f, 0.19f, 0.48f, 0.39f, 0.83f, 0.6f) + curveToRelative(0.7f, 0.41f, 1.6f, 0.8f, 2.47f, 1.09f) + lineToRelative(3.24f, 1.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.46f, 1.42f) + lineToRelative(-3.26f, -1.05f) + arcToRelative(15.4f, 15.4f, 0.0f, false, true, -2.75f, -1.22f) + curveToRelative(-0.41f, -0.24f, -0.8f, -0.51f, -1.1f, -0.81f) + arcToRelative(2.4f, 2.4f, 0.0f, false, true, -0.71f, -1.1f) + curveToRelative(-0.13f, -0.48f, -0.02f, -0.97f, 0.3f, -1.39f) + curveToRelative(0.29f, -0.38f, 0.74f, -0.68f, 1.3f, -0.94f) + curveToRelative(1.1f, -0.5f, 2.9f, -0.92f, 5.55f, -1.24f) + curveToRelative(2.29f, -0.27f, 3.72f, -0.55f, 4.54f, -0.8f) + lineToRelative(-0.08f, -0.03f) + curveToRelative(-0.38f, -0.11f, -0.85f, -0.23f, -1.39f, -0.33f) + arcToRelative(35.23f, 35.23f, 0.0f, false, false, -3.54f, -0.49f) + arcToRelative(51.7f, 51.7f, 0.0f, false, true, -4.54f, -0.58f) + curveToRelative(-0.64f, -0.12f, -1.22f, -0.25f, -1.7f, -0.4f) + curveToRelative(-0.46f, -0.13f, -0.9f, -0.3f, -1.21f, -0.52f) + arcToRelative(1.3f, 1.3f, 0.0f, false, true, -0.46f, -0.54f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.06f, -0.9f) + curveToRelative(0.13f, -0.23f, 0.34f, -0.4f, 0.51f, -0.5f) + curveToRelative(0.2f, -0.12f, 0.42f, -0.22f, 0.66f, -0.31f) + curveToRelative(0.98f, -0.36f, 2.7f, -0.72f, 5.35f, -1.06f) + curveToRelative(3.75f, -0.5f, 5.92f, -0.97f, 6.95f, -1.4f) + lineToRelative(0.13f, -0.05f) + curveToRelative(-0.73f, -0.34f, -2.16f, -0.7f, -4.11f, -1.03f) + curveToRelative(-2.04f, -0.35f, -4.54f, -0.66f, -7.17f, -0.92f) + lineToRelative(-3.74f, -0.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.68f, -0.82f) + close() + } + } + return _inkStroke!! + } + +private var _inkStroke: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/InkStrokeArrowDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/InkStrokeArrowDown.kt new file mode 100644 index 00000000..95c552aa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/InkStrokeArrowDown.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.InkStrokeArrowDown: ImageVector + get() { + if (_inkStrokeArrowDown != null) { + return _inkStrokeArrowDown!! + } + _inkStrokeArrowDown = fluentIcon(name = "Regular.InkStrokeArrowDown") { + fluentPath { + moveTo(3.25f, 2.93f) + curveToRelative(0.04f, -0.41f, 0.4f, -0.72f, 0.82f, -0.68f) + lineToRelative(3.74f, 0.35f) + curveToRelative(2.66f, 0.27f, 5.2f, 0.58f, 7.28f, 0.94f) + curveToRelative(2.05f, 0.35f, 3.77f, 0.76f, 4.7f, 1.25f) + curveToRelative(0.23f, 0.13f, 0.47f, 0.29f, 0.65f, 0.5f) + curveToRelative(0.2f, 0.21f, 0.36f, 0.55f, 0.3f, 0.95f) + curveToRelative(-0.07f, 0.37f, -0.31f, 0.63f, -0.53f, 0.8f) + curveToRelative(-0.22f, 0.18f, -0.5f, 0.32f, -0.81f, 0.45f) + curveToRelative(-1.24f, 0.51f, -3.6f, 1.0f, -7.33f, 1.5f) + curveToRelative(-2.38f, 0.3f, -3.9f, 0.61f, -4.76f, 0.89f) + lineToRelative(0.08f, 0.02f) + curveToRelative(0.4f, 0.12f, 0.93f, 0.24f, 1.54f, 0.35f) + curveToRelative(1.23f, 0.23f, 2.77f, 0.42f, 4.4f, 0.57f) + curveToRelative(1.25f, 0.1f, 2.57f, 0.28f, 3.7f, 0.5f) + curveToRelative(0.57f, 0.12f, 1.1f, 0.24f, 1.54f, 0.38f) + curveToRelative(0.3f, 0.1f, 0.6f, 0.2f, 0.85f, 0.33f) + curveToRelative(-0.6f, 0.12f, -1.1f, 0.54f, -1.3f, 1.1f) + curveToRelative(-0.38f, -0.12f, -0.85f, -0.23f, -1.38f, -0.33f) + arcToRelative(35.23f, 35.23f, 0.0f, false, false, -3.54f, -0.49f) + arcToRelative(51.7f, 51.7f, 0.0f, false, true, -4.54f, -0.58f) + curveToRelative(-0.64f, -0.12f, -1.22f, -0.25f, -1.7f, -0.4f) + curveToRelative(-0.46f, -0.13f, -0.9f, -0.3f, -1.21f, -0.52f) + arcToRelative(1.3f, 1.3f, 0.0f, false, true, -0.46f, -0.54f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.06f, -0.9f) + curveToRelative(0.13f, -0.23f, 0.34f, -0.4f, 0.51f, -0.5f) + curveToRelative(0.2f, -0.12f, 0.42f, -0.22f, 0.66f, -0.31f) + curveToRelative(0.98f, -0.36f, 2.7f, -0.72f, 5.35f, -1.06f) + curveToRelative(3.75f, -0.5f, 5.92f, -0.97f, 6.95f, -1.4f) + lineToRelative(0.13f, -0.05f) + curveToRelative(-0.73f, -0.34f, -2.16f, -0.7f, -4.11f, -1.03f) + curveToRelative(-2.04f, -0.35f, -4.54f, -0.66f, -7.17f, -0.92f) + lineToRelative(-3.74f, -0.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.68f, -0.82f) + close() + moveTo(18.0f, 13.75f) + verticalLineToRelative(1.02f) + curveToRelative(-0.97f, 0.24f, -2.34f, 0.47f, -4.15f, 0.68f) + curveToRelative(-2.62f, 0.32f, -4.22f, 0.71f, -5.11f, 1.12f) + curveToRelative(-0.45f, 0.2f, -0.65f, 0.38f, -0.73f, 0.48f) + curveToRelative(-0.05f, 0.07f, -0.05f, 0.09f, -0.04f, 0.1f) + curveToRelative(0.02f, 0.06f, 0.08f, 0.2f, 0.29f, 0.4f) + curveToRelative(0.2f, 0.19f, 0.48f, 0.39f, 0.83f, 0.6f) + curveToRelative(0.7f, 0.41f, 1.6f, 0.8f, 2.47f, 1.09f) + lineToRelative(3.24f, 1.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.46f, 1.42f) + lineToRelative(-3.26f, -1.05f) + arcToRelative(15.4f, 15.4f, 0.0f, false, true, -2.75f, -1.22f) + curveToRelative(-0.41f, -0.24f, -0.8f, -0.51f, -1.1f, -0.81f) + arcToRelative(2.4f, 2.4f, 0.0f, false, true, -0.71f, -1.1f) + curveToRelative(-0.13f, -0.48f, -0.02f, -0.97f, 0.3f, -1.39f) + curveToRelative(0.29f, -0.38f, 0.74f, -0.68f, 1.3f, -0.94f) + curveToRelative(1.1f, -0.5f, 2.9f, -0.92f, 5.55f, -1.24f) + curveToRelative(2.17f, -0.26f, 3.58f, -0.52f, 4.42f, -0.76f) + curveToRelative(-0.06f, 0.17f, -0.09f, 0.36f, -0.09f, 0.55f) + close() + moveTo(20.5f, 13.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(6.69f) + lineToRelative(-1.22f, -1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(2.5f, 2.5f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-1.22f, 1.22f) + verticalLineToRelative(-6.69f) + close() + } + } + return _inkStrokeArrowDown!! + } + +private var _inkStrokeArrowDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/InkStrokeArrowUpDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/InkStrokeArrowUpDown.kt new file mode 100644 index 00000000..fed3063f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/InkStrokeArrowUpDown.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.InkStrokeArrowUpDown: ImageVector + get() { + if (_inkStrokeArrowUpDown != null) { + return _inkStrokeArrowUpDown!! + } + _inkStrokeArrowUpDown = fluentIcon(name = "Regular.InkStrokeArrowUpDown") { + fluentPath { + moveTo(3.25f, 2.93f) + curveToRelative(0.04f, -0.41f, 0.4f, -0.72f, 0.82f, -0.68f) + lineToRelative(3.74f, 0.35f) + curveToRelative(2.66f, 0.27f, 5.2f, 0.58f, 7.28f, 0.94f) + curveToRelative(2.05f, 0.35f, 3.77f, 0.76f, 4.7f, 1.25f) + curveToRelative(0.23f, 0.13f, 0.47f, 0.29f, 0.65f, 0.5f) + curveToRelative(0.2f, 0.21f, 0.36f, 0.55f, 0.3f, 0.95f) + curveToRelative(-0.07f, 0.37f, -0.31f, 0.63f, -0.53f, 0.8f) + curveToRelative(-0.22f, 0.18f, -0.5f, 0.32f, -0.81f, 0.45f) + curveToRelative(-1.24f, 0.51f, -3.6f, 1.0f, -7.33f, 1.5f) + curveToRelative(-2.38f, 0.3f, -3.9f, 0.61f, -4.76f, 0.89f) + lineToRelative(0.08f, 0.02f) + curveToRelative(0.4f, 0.12f, 0.93f, 0.24f, 1.54f, 0.35f) + curveToRelative(1.23f, 0.23f, 2.77f, 0.42f, 4.4f, 0.57f) + arcToRelative(36.74f, 36.74f, 0.0f, false, true, 4.25f, 0.62f) + lineToRelative(-1.27f, 1.28f) + curveToRelative(-0.97f, -0.18f, -2.06f, -0.32f, -3.1f, -0.41f) + arcToRelative(51.7f, 51.7f, 0.0f, false, true, -4.55f, -0.58f) + curveToRelative(-0.64f, -0.12f, -1.22f, -0.25f, -1.7f, -0.4f) + curveToRelative(-0.46f, -0.13f, -0.9f, -0.3f, -1.21f, -0.52f) + arcToRelative(1.3f, 1.3f, 0.0f, false, true, -0.46f, -0.54f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.06f, -0.9f) + curveToRelative(0.13f, -0.23f, 0.34f, -0.4f, 0.51f, -0.5f) + curveToRelative(0.2f, -0.12f, 0.42f, -0.22f, 0.66f, -0.31f) + curveToRelative(0.98f, -0.36f, 2.7f, -0.72f, 5.35f, -1.06f) + curveToRelative(3.75f, -0.5f, 5.92f, -0.97f, 6.95f, -1.4f) + lineToRelative(0.13f, -0.05f) + curveToRelative(-0.73f, -0.34f, -2.16f, -0.7f, -4.11f, -1.03f) + curveToRelative(-2.04f, -0.35f, -4.54f, -0.66f, -7.17f, -0.92f) + lineToRelative(-3.74f, -0.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.68f, -0.82f) + close() + moveTo(15.6f, 13.71f) + curveToRelative(-0.16f, 0.49f, -0.1f, 1.04f, 0.19f, 1.48f) + curveToRelative(-0.58f, 0.1f, -1.22f, 0.18f, -1.93f, 0.26f) + curveToRelative(-2.62f, 0.32f, -4.22f, 0.71f, -5.11f, 1.12f) + curveToRelative(-0.45f, 0.2f, -0.65f, 0.38f, -0.73f, 0.48f) + curveToRelative(-0.05f, 0.07f, -0.05f, 0.09f, -0.04f, 0.1f) + curveToRelative(0.02f, 0.06f, 0.08f, 0.2f, 0.29f, 0.4f) + curveToRelative(0.2f, 0.19f, 0.48f, 0.39f, 0.83f, 0.6f) + curveToRelative(0.7f, 0.41f, 1.6f, 0.8f, 2.47f, 1.09f) + lineToRelative(3.24f, 1.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.46f, 1.42f) + lineToRelative(-3.26f, -1.05f) + arcToRelative(15.4f, 15.4f, 0.0f, false, true, -2.75f, -1.22f) + curveToRelative(-0.41f, -0.24f, -0.8f, -0.51f, -1.1f, -0.81f) + arcToRelative(2.4f, 2.4f, 0.0f, false, true, -0.71f, -1.1f) + curveToRelative(-0.13f, -0.48f, -0.02f, -0.97f, 0.3f, -1.39f) + curveToRelative(0.29f, -0.38f, 0.74f, -0.68f, 1.3f, -0.94f) + curveToRelative(1.1f, -0.5f, 2.9f, -0.92f, 5.55f, -1.24f) + arcToRelative(57.8f, 57.8f, 0.0f, false, false, 1.92f, -0.25f) + close() + moveTo(20.29f, 11.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineTo(19.0f, 13.56f) + verticalLineToRelative(6.88f) + lineToRelative(-1.22f, -1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(2.5f, 2.5f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-1.22f, 1.22f) + verticalLineToRelative(-6.88f) + lineToRelative(1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.5f, -2.5f) + close() + } + } + return _inkStrokeArrowUpDown!! + } + +private var _inkStrokeArrowUpDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/InkingTool.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/InkingTool.kt new file mode 100644 index 00000000..1a8488f4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/InkingTool.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.InkingTool: ImageVector + get() { + if (_inkingTool != null) { + return _inkingTool!! + } + _inkingTool = fluentIcon(name = "Regular.InkingTool") { + fluentPath { + moveTo(4.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.5f) + curveTo(3.0f, 7.22f, 3.78f, 8.0f, 4.75f, 8.0f) + horizontalLineToRelative(0.27f) + lineToRelative(4.03f, 8.97f) + curveToRelative(0.2f, 0.45f, 0.59f, 0.79f, 1.04f, 0.94f) + arcToRelative(5.79f, 5.79f, 0.0f, false, false, 0.27f, 3.01f) + curveToRelative(0.3f, 0.6f, 0.83f, 1.08f, 1.64f, 1.08f) + curveToRelative(0.8f, 0.0f, 1.35f, -0.48f, 1.64f, -1.08f) + arcToRelative(5.79f, 5.79f, 0.0f, false, false, 0.27f, -3.01f) + curveToRelative(0.45f, -0.15f, 0.83f, -0.49f, 1.04f, -0.94f) + lineTo(18.98f, 8.0f) + horizontalLineToRelative(0.27f) + curveTo(20.22f, 8.0f, 21.0f, 7.22f, 21.0f, 6.25f) + verticalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + lineTo(4.75f, 6.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-3.5f) + close() + moveTo(6.66f, 8.0f) + horizontalLineToRelative(10.68f) + lineToRelative(-3.76f, 8.35f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.23f, 0.15f) + horizontalLineToRelative(-2.7f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.23f, -0.15f) + lineTo(6.66f, 8.0f) + close() + moveTo(11.61f, 18.0f) + horizontalLineToRelative(0.78f) + curveToRelative(0.07f, 0.26f, 0.11f, 0.6f, 0.11f, 1.0f) + curveToRelative(0.0f, 0.57f, -0.08f, 1.0f, -0.21f, 1.26f) + curveToRelative(-0.1f, 0.22f, -0.2f, 0.24f, -0.29f, 0.24f) + curveToRelative(-0.1f, 0.0f, -0.18f, -0.02f, -0.29f, -0.24f) + arcTo(3.03f, 3.03f, 0.0f, false, true, 11.5f, 19.0f) + curveToRelative(0.0f, -0.4f, 0.04f, -0.74f, 0.11f, -1.0f) + close() + } + } + return _inkingTool!! + } + +private var _inkingTool: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/InprivateAccount.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/InprivateAccount.kt new file mode 100644 index 00000000..c17094c4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/InprivateAccount.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.InprivateAccount: ImageVector + get() { + if (_inprivateAccount != null) { + return _inprivateAccount!! + } + _inprivateAccount = fluentIcon(name = "Regular.InprivateAccount") { + fluentPath { + moveTo(17.75f, 14.0f) + curveToRelative(1.21f, 0.0f, 2.2f, 0.95f, 2.25f, 2.15f) + verticalLineToRelative(0.1f) + horizontalLineToRelative(-8.0f) + verticalLineToRelative(-0.75f) + lineTo(6.25f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.58f) + curveToRelative(0.0f, 0.53f, 0.2f, 1.05f, 0.54f, 1.46f) + curveTo(7.3f, 19.76f, 9.26f, 20.5f, 12.0f, 20.5f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(6.64f) + curveTo(17.08f, 21.25f, 14.85f, 22.0f, 12.0f, 22.0f) + curveToRelative(-3.15f, 0.0f, -5.53f, -0.9f, -7.1f, -2.74f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.9f, -2.43f) + verticalLineToRelative(-0.58f) + curveTo(4.0f, 15.0f, 5.01f, 14.0f, 6.25f, 14.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(19.47f, 18.75f) + lineTo(12.0f, 18.75f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(7.98f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.51f, 1.5f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 4.0f, 2.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-0.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + lineTo(12.0f, 10.0f) + horizontalLineToRelative(4.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, -4.0f, -8.0f) + close() + moveTo(16.98f, 7.5f) + arcToRelative(4.97f, 4.97f, 0.0f, false, true, -0.4f, 1.5f) + lineTo(12.0f, 9.0f) + lineTo(12.0f, 7.5f) + horizontalLineToRelative(4.98f) + close() + moveTo(16.58f, 5.0f) + curveToRelative(0.2f, 0.47f, 0.34f, 0.97f, 0.4f, 1.5f) + lineTo(12.0f, 6.5f) + lineTo(12.0f, 5.0f) + horizontalLineToRelative(4.58f) + close() + } + } + return _inprivateAccount!! + } + +private var _inprivateAccount: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/IosArrowLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/IosArrowLtr.kt new file mode 100644 index 00000000..bca72a63 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/IosArrowLtr.kt @@ -0,0 +1,31 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.IosArrowLtr: ImageVector + get() { + if (_iosArrowLtr != null) { + return _iosArrowLtr!! + } + _iosArrowLtr = fluentIcon(name = "Regular.IosArrowLtr") { + fluentPath { + moveToRelative(4.3f, 12.0f) + lineToRelative(8.49f, -8.73f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.08f, -1.04f) + lineToRelative(-9.0f, 9.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.04f) + lineToRelative(9.0f, 9.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.08f, -1.04f) + lineTo(4.29f, 12.0f) + close() + } + } + return _iosArrowLtr!! + } + +private var _iosArrowLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/IosArrowRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/IosArrowRtl.kt new file mode 100644 index 00000000..fff9c572 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/IosArrowRtl.kt @@ -0,0 +1,31 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.IosArrowRtl: ImageVector + get() { + if (_iosArrowRtl != null) { + return _iosArrowRtl!! + } + _iosArrowRtl = fluentIcon(name = "Regular.IosArrowRtl") { + fluentPath { + moveToRelative(19.7f, 12.0f) + lineToRelative(-8.49f, -8.73f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.08f, -1.04f) + lineToRelative(9.0f, 9.25f) + curveToRelative(0.28f, 0.29f, 0.28f, 0.75f, 0.0f, 1.04f) + lineToRelative(-9.0f, 9.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.08f, -1.04f) + lineToRelative(8.5f, -8.73f) + close() + } + } + return _iosArrowRtl!! + } + +private var _iosArrowRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Iot.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Iot.kt new file mode 100644 index 00000000..3365451c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Iot.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Iot: ImageVector + get() { + if (_iot != null) { + return _iot!! + } + _iot = fluentIcon(name = "Regular.Iot") { + fluentPath { + moveTo(19.0f, 4.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -3.01f, 2.44f) + lineTo(14.7f, 9.06f) + arcToRelative(3.99f, 3.99f, 0.0f, false, true, 1.29f, 3.0f) + lineToRelative(1.3f, 0.26f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -0.28f, 1.47f) + lineToRelative(-1.32f, -0.26f) + arcToRelative(4.02f, 4.02f, 0.0f, false, true, -1.75f, 1.96f) + lineToRelative(0.5f, 1.51f) + horizontalLineToRelative(0.05f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -1.47f, 0.48f) + lineToRelative(-0.5f, -1.51f) + arcToRelative(4.05f, 4.05f, 0.0f, false, true, -3.75f, -1.6f) + lineToRelative(-1.8f, 0.85f) + lineToRelative(0.02f, 0.28f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -0.62f, -1.65f) + lineToRelative(1.75f, -0.83f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.79f, -3.57f) + lineToRelative(-1.0f, -1.13f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.5f, 6.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 4.59f, 1.38f) + lineToRelative(0.98f, 1.12f) + arcToRelative(3.98f, 3.98f, 0.0f, false, true, 3.36f, -0.23f) + lineToRelative(1.25f, -2.06f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 1.82f, -4.22f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 19.0f, 4.5f) + close() + moveTo(17.5f, 4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(7.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(12.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) + close() + moveTo(5.5f, 15.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(15.5f, 19.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(19.5f, 14.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + } + } + return _iot!! + } + +private var _iot: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/IotAlert.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/IotAlert.kt new file mode 100644 index 00000000..efacc22f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/IotAlert.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.IotAlert: ImageVector + get() { + if (_iotAlert != null) { + return _iotAlert!! + } + _iotAlert = fluentIcon(name = "Regular.IotAlert") { + fluentPath { + moveTo(19.0f, 4.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -3.01f, 2.44f) + lineTo(14.7f, 9.06f) + curveToRelative(0.32f, 0.3f, 0.6f, 0.65f, 0.8f, 1.04f) + curveToRelative(-0.5f, 0.1f, -0.98f, 0.28f, -1.42f, 0.52f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, -2.56f, 3.84f) + curveToRelative(-0.02f, 0.17f, -0.03f, 0.36f, -0.03f, 0.54f) + verticalLineToRelative(0.97f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -2.72f, -1.6f) + lineToRelative(-1.8f, 0.85f) + lineToRelative(0.02f, 0.28f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -0.62f, -1.65f) + lineToRelative(1.75f, -0.83f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.79f, -3.57f) + lineToRelative(-1.0f, -1.13f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 4.5f, 6.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 4.59f, 1.38f) + lineToRelative(0.98f, 1.12f) + arcToRelative(3.98f, 3.98f, 0.0f, false, true, 3.36f, -0.24f) + lineToRelative(1.25f, -2.06f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 16.5f, 2.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 19.0f, 4.5f) + close() + moveTo(17.5f, 4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(7.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(5.5f, 15.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(16.5f, 11.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, 4.0f) + verticalLineToRelative(3.0f) + lineToRelative(-0.95f, 0.8f) + curveToRelative(-0.3f, 0.26f, -0.46f, 0.39f, -0.5f, 0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.24f, 0.65f) + curveToRelative(0.1f, 0.05f, 0.3f, 0.05f, 0.7f, 0.05f) + horizontalLineToRelative(9.02f) + curveToRelative(0.4f, 0.0f, 0.6f, 0.0f, 0.7f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.25f, -0.66f) + curveToRelative(-0.05f, -0.1f, -0.2f, -0.23f, -0.5f, -0.49f) + lineToRelative(-0.96f, -0.8f) + verticalLineToRelative(-3.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, -4.0f) + close() + moveTo(18.0f, 21.0f) + curveToRelative(-0.22f, 0.58f, -0.8f, 1.0f, -1.5f, 1.0f) + curveToRelative(-0.69f, 0.0f, -1.28f, -0.42f, -1.5f, -1.0f) + horizontalLineToRelative(3.0f) + close() + } + } + return _iotAlert!! + } + +private var _iotAlert: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Javascript.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Javascript.kt new file mode 100644 index 00000000..8c2469f3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Javascript.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Javascript: ImageVector + get() { + if (_javascript != null) { + return _javascript!! + } + _javascript = fluentIcon(name = "Regular.Javascript") { + fluentPath { + moveTo(14.0f, 11.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(0.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-1.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-1.5f) + close() + moveTo(12.75f, 10.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + lineTo(9.75f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(11.0f, 18.0f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-6.0f) + close() + moveTo(3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + close() + moveTo(6.25f, 4.5f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + close() + } + } + return _javascript!! + } + +private var _javascript: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyCommand.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyCommand.kt new file mode 100644 index 00000000..cad70b1f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyCommand.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.KeyCommand: ImageVector + get() { + if (_keyCommand != null) { + return _keyCommand!! + } + _keyCommand = fluentIcon(name = "Regular.KeyCommand") { + fluentPath { + moveTo(6.25f, 4.5f) + curveTo(7.22f, 4.5f, 8.0f, 5.28f, 8.0f, 6.25f) + lineTo(8.0f, 8.0f) + lineTo(6.25f, 8.0f) + arcToRelative(1.75f, 1.75f, 0.0f, true, true, 0.0f, -3.5f) + close() + moveTo(9.5f, 8.0f) + lineTo(9.5f, 6.25f) + arcTo(3.25f, 3.25f, 0.0f, true, false, 6.25f, 9.5f) + lineTo(8.0f, 9.5f) + verticalLineToRelative(5.0f) + lineTo(6.25f, 14.5f) + arcToRelative(3.25f, 3.25f, 0.0f, true, false, 3.25f, 3.25f) + lineTo(9.5f, 16.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(1.75f) + arcToRelative(3.25f, 3.25f, 0.0f, true, false, 3.25f, -3.25f) + lineTo(16.0f, 14.5f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(1.75f) + arcToRelative(3.25f, 3.25f, 0.0f, true, false, -3.25f, -3.25f) + lineTo(14.5f, 8.0f) + horizontalLineToRelative(-5.0f) + close() + moveTo(9.5f, 9.5f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(-5.0f) + close() + moveTo(16.0f, 8.0f) + lineTo(16.0f, 6.25f) + arcTo(1.75f, 1.75f, 0.0f, true, true, 17.75f, 8.0f) + lineTo(16.0f, 8.0f) + close() + moveTo(16.0f, 16.0f) + horizontalLineToRelative(1.75f) + arcTo(1.75f, 1.75f, 0.0f, true, true, 16.0f, 17.75f) + lineTo(16.0f, 16.0f) + close() + moveTo(8.0f, 16.0f) + verticalLineToRelative(1.75f) + arcTo(1.75f, 1.75f, 0.0f, true, true, 6.25f, 16.0f) + lineTo(8.0f, 16.0f) + close() + } + } + return _keyCommand!! + } + +private var _keyCommand: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyReset.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyReset.kt new file mode 100644 index 00000000..4e4b7438 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyReset.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.KeyReset: ImageVector + get() { + if (_keyReset != null) { + return _keyReset!! + } + _keyReset = fluentIcon(name = "Regular.KeyReset") { + fluentPath { + moveTo(17.0f, 8.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + moveTo(8.95f, 8.6f) + arcToRelative(6.55f, 6.55f, 0.0f, false, true, 6.55f, -6.55f) + arcToRelative(6.47f, 6.47f, 0.0f, false, true, 5.3f, 10.3f) + arcToRelative(6.01f, 6.01f, 0.0f, false, false, -1.28f, -0.8f) + arcToRelative(4.97f, 4.97f, 0.0f, false, false, -4.02f, -8.0f) + arcToRelative(5.05f, 5.05f, 0.0f, false, false, -4.96f, 5.9f) + curveToRelative(0.1f, 0.55f, -0.07f, 1.14f, -0.49f, 1.56f) + lineToRelative(-6.23f, 6.23f) + curveToRelative(-0.24f, 0.24f, -0.37f, 0.56f, -0.37f, 0.89f) + verticalLineToRelative(2.17f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(2.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.7f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(1.75f) + lineTo(9.45f, 15.8f) + curveToRelative(0.0f, -0.65f, 0.5f, -1.18f, 1.13f, -1.24f) + lineToRelative(1.08f, 1.07f) + curveToRelative(-0.15f, 0.12f, -0.28f, 0.26f, -0.38f, 0.42f) + horizontalLineToRelative(-0.33f) + verticalLineToRelative(1.75f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + lineTo(7.95f, 19.05f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(3.7f, 22.05f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-2.17f) + curveToRelative(0.0f, -0.73f, 0.29f, -1.43f, 0.8f, -1.95f) + lineTo(9.0f, 9.95f) + arcToRelative(0.27f, 0.27f, 0.0f, false, false, 0.07f, -0.25f) + arcToRelative(6.39f, 6.39f, 0.0f, false, true, -0.11f, -1.1f) + close() + moveTo(13.78f, 11.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-2.0f, 2.0f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-0.72f, -0.72f) + lineTo(17.0f, 13.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, -3.5f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, false, 5.0f, -5.0f) + horizontalLineToRelative(-3.94f) + lineToRelative(0.72f, -0.72f) + close() + } + } + return _keyReset!! + } + +private var _keyReset: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Keyboard.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Keyboard.kt new file mode 100644 index 00000000..be444893 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Keyboard.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Keyboard: ImageVector + get() { + if (_keyboard != null) { + return _keyboard!! + } + _keyboard = fluentIcon(name = "Regular.Keyboard") { + fluentPath { + moveTo(19.75f, 5.0f) + curveTo(20.99f, 5.0f, 22.0f, 6.0f, 22.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(22.0f, 18.0f, 20.99f, 19.0f, 19.75f, 19.0f) + lineTo(4.25f, 19.0f) + curveTo(3.01f, 19.0f, 2.0f, 18.0f, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + curveTo(2.0f, 6.01f, 3.0f, 5.0f, 4.25f, 5.0f) + horizontalLineToRelative(15.5f) + close() + moveTo(19.75f, 6.5f) + lineTo(4.25f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(15.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) + verticalLineToRelative(-9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(6.75f, 14.5f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(10.6f) + horizontalLineToRelative(-10.5f) + close() + moveTo(16.5f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(10.5f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(7.5f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(13.5f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(6.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(9.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(12.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(15.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(18.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + } + } + return _keyboard!! + } + +private var _keyboard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Keyboard123.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Keyboard123.kt new file mode 100644 index 00000000..a5fed515 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Keyboard123.kt @@ -0,0 +1,142 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Keyboard123: ImageVector + get() { + if (_keyboard123 != null) { + return _keyboard123!! + } + _keyboard123 = fluentIcon(name = "Regular.Keyboard123") { + fluentPath { + moveTo(5.16f, 4.17f) + curveToRelative(0.37f, 0.18f, 0.81f, 0.04f, 1.0f, -0.32f) + lineToRelative(0.04f, -0.06f) + curveToRelative(0.04f, -0.05f, 0.1f, -0.12f, 0.2f, -0.2f) + curveToRelative(0.2f, -0.16f, 0.53f, -0.34f, 1.1f, -0.34f) + curveToRelative(0.5f, 0.0f, 0.78f, 0.24f, 0.9f, 0.46f) + curveToRelative(0.1f, 0.2f, 0.1f, 0.48f, -0.18f, 0.76f) + curveToRelative(-0.2f, 0.2f, -0.45f, 0.36f, -0.77f, 0.55f) + lineToRelative(-0.29f, 0.16f) + lineToRelative(-0.75f, 0.45f) + curveToRelative(-0.76f, 0.5f, -1.5f, 1.2f, -1.65f, 2.53f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 5.5f, 9.0f) + horizontalLineToRelative(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.7f) + curveToRelative(0.17f, -0.24f, 0.4f, -0.43f, 0.68f, -0.62f) + lineToRelative(0.6f, -0.36f) + lineToRelative(0.38f, -0.2f) + curveToRelative(0.35f, -0.2f, 0.73f, -0.45f, 1.07f, -0.79f) + curveToRelative(0.73f, -0.72f, 0.85f, -1.7f, 0.45f, -2.49f) + arcTo(2.44f, 2.44f, 0.0f, false, false, 7.5f, 1.75f) + curveToRelative(-0.93f, 0.0f, -1.6f, 0.32f, -2.03f, 0.66f) + arcToRelative(2.67f, 2.67f, 0.0f, false, false, -0.62f, 0.72f) + lineToRelative(-0.01f, 0.02f) + verticalLineToRelative(0.01f) + horizontalLineToRelative(-0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.33f, 1.01f) + close() + moveTo(14.37f, 4.48f) + curveToRelative(-0.13f, 0.13f, -0.4f, 0.27f, -0.87f, 0.27f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + curveToRelative(0.47f, 0.0f, 0.74f, 0.14f, 0.87f, 0.27f) + curveToRelative(0.14f, 0.12f, 0.2f, 0.28f, 0.19f, 0.44f) + curveToRelative(-0.02f, 0.26f, -0.29f, 0.79f, -1.31f, 0.79f) + curveToRelative(-0.46f, 0.0f, -0.76f, -0.14f, -0.93f, -0.25f) + arcToRelative(1.04f, 1.04f, 0.0f, false, true, -0.2f, -0.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.04f, -0.2f) + curveToRelative(-0.58f, 0.38f, -0.2f, 1.05f, -0.2f, 1.05f) + verticalLineToRelative(0.01f) + lineToRelative(0.02f, 0.02f) + arcToRelative(1.47f, 1.47f, 0.0f, false, false, 0.15f, 0.18f) + curveToRelative(0.1f, 0.1f, 0.25f, 0.24f, 0.44f, 0.37f) + curveToRelative(0.4f, 0.26f, 0.97f, 0.5f, 1.76f, 0.5f) + curveToRelative(1.62f, 0.0f, 2.73f, -0.97f, 2.8f, -2.2f) + arcToRelative(2.04f, 2.04f, 0.0f, false, false, -0.57f, -1.55f) + curveToRelative(0.41f, -0.43f, 0.6f, -0.99f, 0.57f, -1.54f) + curveToRelative(-0.07f, -1.24f, -1.18f, -2.21f, -2.8f, -2.21f) + curveToRelative(-0.79f, 0.0f, -1.37f, 0.24f, -1.76f, 0.5f) + arcToRelative(2.54f, 2.54f, 0.0f, false, false, -0.6f, 0.55f) + verticalLineToRelative(0.02f) + horizontalLineToRelative(-0.01f) + verticalLineToRelative(0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.23f, 0.85f) + lineToRelative(0.03f, -0.03f) + curveToRelative(0.04f, -0.04f, 0.1f, -0.1f, 0.18f, -0.15f) + curveToRelative(0.17f, -0.11f, 0.47f, -0.25f, 0.93f, -0.25f) + curveToRelative(1.02f, 0.0f, 1.29f, 0.53f, 1.3f, 0.8f) + curveToRelative(0.01f, 0.15f, -0.04f, 0.3f, -0.18f, 0.43f) + close() + moveTo(12.12f, 7.33f) + close() + moveTo(12.12f, 3.67f) + close() + moveTo(3.5f, 2.65f) + verticalLineToRelative(5.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(2.0f, 3.79f) + lineToRelative(-0.51f, 0.17f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.91f, -0.37f) + lineToRelative(-0.04f, -0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.38f, -0.9f) + lineToRelative(0.1f, -0.05f) + lineToRelative(1.5f, -0.5f) + curveToRelative(0.45f, -0.15f, 0.91f, 0.15f, 0.98f, 0.6f) + close() + moveTo(17.03f, 6.5f) + horizontalLineToRelative(2.72f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.42f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(4.25f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(3.5f, 9.8f) + arcToRelative(1.74f, 1.74f, 0.0f, false, true, -1.5f, 0.05f) + verticalLineToRelative(6.9f) + curveTo(2.0f, 18.0f, 3.0f, 19.0f, 4.25f, 19.0f) + horizontalLineToRelative(15.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-9.5f) + curveTo(22.0f, 6.01f, 20.99f, 5.0f, 19.75f, 5.0f) + lineTo(16.9f, 5.0f) + curveToRelative(-0.05f, 0.17f, -0.12f, 0.34f, -0.2f, 0.5f) + curveToRelative(0.16f, 0.31f, 0.27f, 0.65f, 0.32f, 1.0f) + close() + moveTo(17.25f, 14.5f) + lineTo(6.65f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(10.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(11.5f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(8.5f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(14.5f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(19.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + } + } + return _keyboard123!! + } + +private var _keyboard123: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyboardDock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyboardDock.kt new file mode 100644 index 00000000..ac1f3a82 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyboardDock.kt @@ -0,0 +1,103 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.KeyboardDock: ImageVector + get() { + if (_keyboardDock != null) { + return _keyboardDock!! + } + _keyboardDock = fluentIcon(name = "Regular.KeyboardDock") { + fluentPath { + moveTo(17.25f, 12.0f) + lineTo(6.65f, 12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(10.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(17.5f, 9.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(11.5f, 9.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(8.5f, 9.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(14.5f, 9.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(7.0f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(10.0f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(13.0f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(16.0f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(19.0f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(22.0f, 4.75f) + curveToRelative(0.0f, -1.24f, -1.01f, -2.25f, -2.25f, -2.25f) + lineTo(4.25f, 2.5f) + curveTo(3.01f, 2.5f, 2.0f, 3.5f, 2.0f, 4.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.25f, 1.01f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(7.0f) + verticalLineToRelative(2.94f) + lineToRelative(-0.84f, -0.84f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 1.13f) + lineToRelative(2.12f, 2.12f) + lineToRelative(0.09f, 0.07f) + curveToRelative(0.11f, 0.09f, 0.25f, 0.14f, 0.39f, 0.15f) + horizontalLineToRelative(0.1f) + lineToRelative(0.1f, -0.02f) + curveToRelative(0.15f, -0.03f, 0.28f, -0.1f, 0.38f, -0.2f) + lineToRelative(2.12f, -2.12f) + lineToRelative(0.08f, -0.09f) + curveToRelative(0.21f, -0.29f, 0.19f, -0.7f, -0.08f, -0.97f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) + lineToRelative(-0.84f, 0.84f) + lineTo(12.75f, 16.5f) + horizontalLineToRelative(7.0f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-9.5f) + close() + moveTo(12.75f, 15.0f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(15.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.42f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-7.0f) + close() + } + } + return _keyboardDock!! + } + +private var _keyboardDock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyboardLayoutFloat.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyboardLayoutFloat.kt new file mode 100644 index 00000000..15bb6406 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyboardLayoutFloat.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.KeyboardLayoutFloat: ImageVector + get() { + if (_keyboardLayoutFloat != null) { + return _keyboardLayoutFloat!! + } + _keyboardLayoutFloat = fluentIcon(name = "Regular.KeyboardLayoutFloat") { + fluentPath { + moveTo(21.25f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(2.75f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(18.6f) + close() + moveTo(19.75f, 3.0f) + curveTo(20.99f, 3.0f, 22.0f, 4.0f, 22.0f, 5.25f) + verticalLineToRelative(9.5f) + curveTo(22.0f, 16.0f, 20.99f, 17.0f, 19.75f, 17.0f) + horizontalLineToRelative(-6.53f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.44f, 0.0f) + lineTo(4.25f, 17.0f) + curveTo(3.01f, 17.0f, 2.0f, 16.0f, 2.0f, 14.75f) + verticalLineToRelative(-9.5f) + curveTo(2.0f, 4.01f, 3.0f, 3.0f, 4.25f, 3.0f) + horizontalLineToRelative(15.5f) + close() + moveTo(19.75f, 4.5f) + lineTo(4.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(15.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) + verticalLineToRelative(-9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(17.25f, 12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(10.6f) + close() + moveTo(16.5f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(10.5f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(7.5f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(13.5f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(6.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(9.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(12.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(15.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(18.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + } + } + return _keyboardLayoutFloat!! + } + +private var _keyboardLayoutFloat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyboardLayoutOneHandedLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyboardLayoutOneHandedLeft.kt new file mode 100644 index 00000000..123d48cb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyboardLayoutOneHandedLeft.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.KeyboardLayoutOneHandedLeft: ImageVector + get() { + if (_keyboardLayoutOneHandedLeft != null) { + return _keyboardLayoutOneHandedLeft!! + } + _keyboardLayoutOneHandedLeft = fluentIcon(name = "Regular.KeyboardLayoutOneHandedLeft") { + fluentPath { + moveTo(19.75f, 5.0f) + curveTo(20.99f, 5.0f, 22.0f, 6.0f, 22.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(22.0f, 18.0f, 20.99f, 19.0f, 19.75f, 19.0f) + lineTo(4.25f, 19.0f) + curveTo(3.01f, 19.0f, 2.0f, 18.0f, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + curveTo(2.0f, 6.01f, 3.0f, 5.0f, 4.25f, 5.0f) + horizontalLineToRelative(15.5f) + close() + moveTo(19.75f, 6.5f) + lineTo(4.25f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(15.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) + verticalLineToRelative(-9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(6.5f, 16.0f) + lineTo(10.0f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(6.5f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(9.5f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(6.5f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(6.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(9.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + } + } + return _keyboardLayoutOneHandedLeft!! + } + +private var _keyboardLayoutOneHandedLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyboardLayoutResize.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyboardLayoutResize.kt new file mode 100644 index 00000000..6ea880c4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyboardLayoutResize.kt @@ -0,0 +1,119 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.KeyboardLayoutResize: ImageVector + get() { + if (_keyboardLayoutResize != null) { + return _keyboardLayoutResize!! + } + _keyboardLayoutResize = fluentIcon(name = "Regular.KeyboardLayoutResize") { + fluentPath { + moveTo(13.25f, 10.5f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(7.0f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + horizontalLineToRelative(-9.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(2.0f, 19.75f) + verticalLineToRelative(-7.0f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineToRelative(0.15f, -0.01f) + horizontalLineToRelative(9.0f) + close() + moveTo(21.25f, 10.5f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(2.1f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(13.25f, 12.0f) + horizontalLineToRelative(-9.0f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(7.0f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(9.0f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + verticalLineToRelative(-7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(10.75f, 17.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + curveToRelative(0.0f, 0.38f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + curveToRelative(0.0f, -0.38f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.0f) + close() + moveTo(6.0f, 13.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(11.5f, 13.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(8.75f, 13.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(21.25f, 2.0f) + arcToRelative(0.76f, 0.76f, 0.0f, false, true, 0.33f, 0.07f) + lineToRelative(0.04f, 0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.08f, 0.05f) + lineToRelative(0.08f, 0.07f) + lineToRelative(0.05f, 0.06f) + lineToRelative(0.01f, 0.01f) + lineToRelative(0.04f, 0.05f) + arcToRelative(0.74f, 0.74f, 0.0f, false, true, 0.11f, 0.3f) + lineToRelative(0.01f, 0.11f) + verticalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(20.5f, 4.56f) + lineToRelative(-4.47f, 4.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(4.47f, -4.47f) + horizontalLineToRelative(-3.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(5.0f) + close() + moveTo(12.75f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-8.6f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-4.1f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 2.0f) + horizontalLineToRelative(8.5f) + close() + } + } + return _keyboardLayoutResize!! + } + +private var _keyboardLayoutResize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyboardLayoutSplit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyboardLayoutSplit.kt new file mode 100644 index 00000000..e42d2d52 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyboardLayoutSplit.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.KeyboardLayoutSplit: ImageVector + get() { + if (_keyboardLayoutSplit != null) { + return _keyboardLayoutSplit!! + } + _keyboardLayoutSplit = fluentIcon(name = "Regular.KeyboardLayoutSplit") { + fluentPath { + moveTo(19.75f, 5.0f) + curveTo(20.99f, 5.0f, 22.0f, 6.0f, 22.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(22.0f, 18.0f, 20.99f, 19.0f, 19.75f, 19.0f) + lineTo(4.25f, 19.0f) + curveTo(3.01f, 19.0f, 2.0f, 18.0f, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + curveTo(2.0f, 6.01f, 3.0f, 5.0f, 4.25f, 5.0f) + horizontalLineToRelative(15.5f) + close() + moveTo(19.75f, 6.5f) + lineTo(4.25f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(15.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) + verticalLineToRelative(-9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(6.5f, 16.0f) + lineTo(10.0f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(6.5f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(14.0f, 16.0f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(14.0f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(17.5f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(9.5f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(6.5f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(14.5f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(6.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(9.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(15.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(18.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + } + } + return _keyboardLayoutSplit!! + } + +private var _keyboardLayoutSplit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyboardShift.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyboardShift.kt new file mode 100644 index 00000000..2040d7fe --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyboardShift.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.KeyboardShift: ImageVector + get() { + if (_keyboardShift != null) { + return _keyboardShift!! + } + _keyboardShift = fluentIcon(name = "Regular.KeyboardShift") { + fluentPath { + moveTo(10.68f, 2.6f) + curveToRelative(0.7f, -0.8f, 1.94f, -0.8f, 2.64f, 0.0f) + lineToRelative(8.25f, 9.5f) + curveToRelative(0.98f, 1.14f, 0.17f, 2.9f, -1.33f, 2.9f) + lineTo(17.0f, 15.0f) + verticalLineToRelative(5.25f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-6.5f) + curveTo(7.78f, 22.0f, 7.0f, 21.22f, 7.0f, 20.25f) + lineTo(7.0f, 15.0f) + lineTo(3.75f, 15.0f) + curveToRelative(-1.5f, 0.0f, -2.3f, -1.76f, -1.32f, -2.9f) + lineToRelative(8.25f, -9.5f) + close() + moveTo(12.18f, 3.59f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.37f, 0.0f) + lineToRelative(-8.24f, 9.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.18f, 0.41f) + horizontalLineToRelative(4.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(6.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-6.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.0f) + curveToRelative(0.2f, 0.0f, 0.32f, -0.25f, 0.18f, -0.41f) + lineToRelative(-8.24f, -9.5f) + close() + } + } + return _keyboardShift!! + } + +private var _keyboardShift: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyboardShiftUppercase.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyboardShiftUppercase.kt new file mode 100644 index 00000000..514e5cc2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyboardShiftUppercase.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.KeyboardShiftUppercase: ImageVector + get() { + if (_keyboardShiftUppercase != null) { + return _keyboardShiftUppercase!! + } + _keyboardShiftUppercase = fluentIcon(name = "Regular.KeyboardShiftUppercase") { + fluentPath { + moveTo(13.32f, 2.6f) + curveToRelative(-0.7f, -0.8f, -1.94f, -0.8f, -2.64f, 0.0f) + lineToRelative(-8.25f, 9.5f) + arcTo(1.75f, 1.75f, 0.0f, false, false, 3.75f, 15.0f) + lineTo(7.0f, 15.0f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(6.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(17.0f, 15.0f) + horizontalLineToRelative(3.24f) + curveToRelative(1.5f, 0.0f, 2.31f, -1.76f, 1.33f, -2.9f) + lineToRelative(-8.25f, -9.5f) + close() + moveTo(11.81f, 3.59f) + curveToRelative(0.1f, -0.12f, 0.28f, -0.12f, 0.38f, 0.0f) + lineToRelative(8.24f, 9.5f) + curveToRelative(0.14f, 0.16f, 0.03f, 0.41f, -0.19f, 0.41f) + horizontalLineToRelative(-3.99f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.18f, -0.41f) + lineToRelative(8.24f, -9.5f) + close() + moveTo(7.75f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-8.5f) + close() + } + } + return _keyboardShiftUppercase!! + } + +private var _keyboardShiftUppercase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyboardTab.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyboardTab.kt new file mode 100644 index 00000000..b414f3ef --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/KeyboardTab.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.KeyboardTab: ImageVector + get() { + if (_keyboardTab != null) { + return _keyboardTab!! + } + _keyboardTab = fluentIcon(name = "Regular.KeyboardTab") { + fluentPath { + moveToRelative(18.03f, 11.47f) + lineToRelative(-6.5f, -6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.13f, 0.98f) + lineToRelative(0.07f, 0.08f) + lineToRelative(5.22f, 5.22f) + horizontalLineTo(3.75f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineTo(3.0f, 12.0f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(11.94f) + lineToRelative(-5.22f, 5.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.98f) + lineToRelative(0.07f, 0.08f) + curveToRelative(0.27f, 0.27f, 0.68f, 0.3f, 0.98f, 0.07f) + lineToRelative(0.08f, -0.07f) + lineToRelative(6.5f, -6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.07f, -0.98f) + lineToRelative(-0.07f, -0.08f) + lineToRelative(-6.5f, -6.5f) + lineToRelative(6.5f, 6.5f) + close() + moveTo(21.0f, 18.5f) + verticalLineToRelative(-13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + close() + } + } + return _keyboardTab!! + } + +private var _keyboardTab: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Laptop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Laptop.kt new file mode 100644 index 00000000..d9f76bb1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Laptop.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Laptop: ImageVector + get() { + if (_laptop != null) { + return _laptop!! + } + _laptop = fluentIcon(name = "Regular.Laptop") { + fluentPath { + moveTo(2.75f, 16.5f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(2.75f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(18.6f) + horizontalLineToRelative(-18.5f) + close() + moveTo(18.25f, 5.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(5.75f, 16.0f) + curveTo(4.78f, 16.0f, 4.0f, 15.22f, 4.0f, 14.25f) + verticalLineToRelative(-7.5f) + curveTo(4.0f, 5.78f, 4.78f, 5.0f, 5.75f, 5.0f) + horizontalLineToRelative(12.5f) + close() + moveTo(18.25f, 6.5f) + lineTo(5.75f, 6.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(12.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-7.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + } + } + return _laptop!! + } + +private var _laptop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Lasso.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Lasso.kt new file mode 100644 index 00000000..8121e10d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Lasso.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Lasso: ImageVector + get() { + if (_lasso != null) { + return _lasso!! + } + _lasso = fluentIcon(name = "Regular.Lasso") { + fluentPath { + moveTo(9.7f, 2.27f) + arcToRelative(10.03f, 10.03f, 0.0f, false, true, 4.6f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.35f, 1.46f) + arcToRelative(8.53f, 8.53f, 0.0f, false, false, -3.9f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.35f, -1.46f) + close() + moveTo(7.77f, 3.74f) + curveToRelative(0.22f, 0.35f, 0.11f, 0.81f, -0.24f, 1.03f) + arcToRelative(8.55f, 8.55f, 0.0f, false, false, -2.76f, 2.76f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.28f, -0.79f) + arcTo(10.05f, 10.05f, 0.0f, false, true, 6.74f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, 0.25f) + close() + moveTo(16.23f, 3.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, -0.25f) + curveToRelative(1.32f, 0.82f, 2.43f, 1.93f, 3.25f, 3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.28f, 0.8f) + arcToRelative(8.55f, 8.55f, 0.0f, false, false, -2.76f, -2.77f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.24f, -1.03f) + close() + moveTo(3.17f, 9.14f) + curveToRelative(0.4f, 0.1f, 0.65f, 0.5f, 0.56f, 0.9f) + arcToRelative(8.53f, 8.53f, 0.0f, false, false, 0.0f, 3.91f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.46f, 0.35f) + arcToRelative(10.03f, 10.03f, 0.0f, false, true, 0.0f, -4.6f) + curveToRelative(0.09f, -0.4f, 0.5f, -0.65f, 0.9f, -0.56f) + close() + moveTo(20.83f, 9.14f) + curveToRelative(0.4f, -0.09f, 0.81f, 0.16f, 0.9f, 0.56f) + arcToRelative(10.03f, 10.03f, 0.0f, false, true, 0.0f, 4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.46f, -0.35f) + arcToRelative(8.52f, 8.52f, 0.0f, false, false, 0.0f, -3.9f) + curveToRelative(-0.09f, -0.4f, 0.16f, -0.81f, 0.56f, -0.9f) + close() + moveTo(3.73f, 16.23f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.04f, 0.24f) + arcToRelative(8.55f, 8.55f, 0.0f, false, false, 2.76f, 2.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.79f, 1.28f) + arcToRelative(10.05f, 10.05f, 0.0f, false, true, -3.25f, -3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.25f, -1.03f) + close() + moveTo(20.43f, 17.09f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.35f, -0.68f) + lineToRelative(-0.02f, 0.04f) + arcToRelative(4.63f, 4.63f, 0.0f, false, true, -0.36f, 0.59f) + curveToRelative(-0.22f, 0.33f, -0.54f, 0.77f, -0.96f, 1.22f) + arcTo(7.0f, 7.0f, 0.0f, false, false, 13.0f, 16.25f) + curveToRelative(-2.35f, 0.0f, -3.99f, 1.2f, -3.99f, 2.88f) + curveTo(9.01f, 20.8f, 10.65f, 22.0f, 13.0f, 22.0f) + curveToRelative(1.94f, 0.0f, 3.5f, -0.75f, 4.66f, -1.65f) + arcToRelative(11.73f, 11.73f, 0.0f, false, true, 1.39f, 2.16f) + lineToRelative(0.01f, 0.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.37f, -0.6f) + curveToRelative(-0.08f, -0.19f, 0.0f, 0.0f, 0.0f, 0.0f) + verticalLineToRelative(-0.03f) + arcToRelative(3.63f, 3.63f, 0.0f, false, false, -0.12f, -0.24f) + arcToRelative(11.87f, 11.87f, 0.0f, false, false, -1.54f, -2.33f) + arcToRelative(11.06f, 11.06f, 0.0f, false, false, 1.62f, -2.2f) + lineToRelative(0.02f, -0.04f) + verticalLineToRelative(-0.02f) + horizontalLineToRelative(0.01f) + close() + moveTo(13.0f, 17.75f) + curveToRelative(1.43f, 0.0f, 2.64f, 0.65f, 3.62f, 1.51f) + arcTo(6.02f, 6.02f, 0.0f, false, true, 13.0f, 20.5f) + curveToRelative(-1.97f, 0.0f, -2.49f, -0.92f, -2.49f, -1.38f) + curveToRelative(0.0f, -0.45f, 0.52f, -1.37f, 2.49f, -1.37f) + close() + } + } + return _lasso!! + } + +private var _lasso: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LauncherSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LauncherSettings.kt new file mode 100644 index 00000000..cfab3f0b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LauncherSettings.kt @@ -0,0 +1,117 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.LauncherSettings: ImageVector + get() { + if (_launcherSettings != null) { + return _launcherSettings!! + } + _launcherSettings = fluentIcon(name = "Regular.LauncherSettings") { + fluentPath { + moveTo(12.01f, 2.25f) + curveToRelative(0.74f, 0.0f, 1.47f, 0.1f, 2.18f, 0.25f) + curveToRelative(0.32f, 0.07f, 0.55f, 0.33f, 0.59f, 0.65f) + lineToRelative(0.17f, 1.53f) + arcToRelative(1.38f, 1.38f, 0.0f, false, false, 1.92f, 1.11f) + lineToRelative(1.4f, -0.61f) + curveToRelative(0.3f, -0.13f, 0.64f, -0.06f, 0.85f, 0.17f) + arcToRelative(9.8f, 9.8f, 0.0f, false, true, 2.2f, 3.8f) + curveToRelative(0.1f, 0.3f, 0.0f, 0.63f, -0.26f, 0.82f) + lineToRelative(-1.25f, 0.92f) + arcToRelative(1.38f, 1.38f, 0.0f, false, false, 0.0f, 2.22f) + lineToRelative(1.25f, 0.92f) + curveToRelative(0.25f, 0.19f, 0.36f, 0.52f, 0.27f, 0.82f) + arcToRelative(9.8f, 9.8f, 0.0f, false, true, -2.2f, 3.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.85f, 0.17f) + lineToRelative(-1.4f, -0.62f) + arcToRelative(1.38f, 1.38f, 0.0f, false, false, -1.94f, 1.12f) + lineToRelative(-0.16f, 1.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.58f, 0.65f) + arcToRelative(9.52f, 9.52f, 0.0f, false, true, -4.4f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.57f, -0.65f) + lineToRelative(-0.17f, -1.52f) + arcToRelative(1.38f, 1.38f, 0.0f, false, false, -1.93f, -1.11f) + lineToRelative(-1.4f, 0.62f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.85f, -0.18f) + arcToRelative(9.8f, 9.8f, 0.0f, false, true, -2.2f, -3.8f) + curveToRelative(-0.1f, -0.3f, 0.0f, -0.63f, 0.26f, -0.82f) + lineToRelative(1.25f, -0.92f) + arcToRelative(1.38f, 1.38f, 0.0f, false, false, 0.0f, -2.22f) + lineToRelative(-1.25f, -0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.27f, -0.82f) + arcToRelative(9.8f, 9.8f, 0.0f, false, true, 2.2f, -3.8f) + curveToRelative(0.23f, -0.23f, 0.57f, -0.3f, 0.86f, -0.17f) + lineToRelative(1.4f, 0.62f) + curveToRelative(0.4f, 0.17f, 0.86f, 0.15f, 1.25f, -0.08f) + curveToRelative(0.38f, -0.22f, 0.63f, -0.6f, 0.68f, -1.04f) + lineToRelative(0.17f, -1.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.58f, -0.65f) + curveToRelative(0.72f, -0.16f, 1.45f, -0.24f, 2.2f, -0.25f) + close() + moveTo(12.01f, 3.75f) + curveToRelative(-0.45f, 0.0f, -0.9f, 0.04f, -1.35f, 0.12f) + lineToRelative(-0.11f, 0.97f) + arcToRelative(2.89f, 2.89f, 0.0f, false, true, -4.03f, 2.33f) + lineToRelative(-0.9f, -0.4f) + arcTo(8.3f, 8.3f, 0.0f, false, false, 4.29f, 9.1f) + lineToRelative(0.8f, 0.59f) + arcToRelative(2.88f, 2.88f, 0.0f, false, true, 0.0f, 4.64f) + lineToRelative(-0.8f, 0.59f) + arcToRelative(8.3f, 8.3f, 0.0f, false, false, 1.35f, 2.32f) + lineToRelative(0.9f, -0.4f) + arcToRelative(2.88f, 2.88f, 0.0f, false, true, 4.02f, 2.32f) + lineToRelative(0.1f, 0.99f) + curveToRelative(0.9f, 0.15f, 1.8f, 0.15f, 2.7f, 0.0f) + lineToRelative(0.1f, -0.99f) + arcToRelative(2.88f, 2.88f, 0.0f, false, true, 4.02f, -2.32f) + lineToRelative(0.9f, 0.4f) + arcToRelative(8.3f, 8.3f, 0.0f, false, false, 1.35f, -2.32f) + lineToRelative(-0.8f, -0.59f) + arcToRelative(2.88f, 2.88f, 0.0f, false, true, 0.0f, -4.64f) + lineToRelative(0.8f, -0.59f) + arcToRelative(8.3f, 8.3f, 0.0f, false, false, -1.35f, -2.32f) + lineToRelative(-0.9f, 0.4f) + arcToRelative(2.88f, 2.88f, 0.0f, false, true, -4.02f, -2.32f) + lineToRelative(-0.1f, -0.98f) + arcTo(9.0f, 9.0f, 0.0f, false, false, 12.0f, 3.75f) + close() + moveTo(13.58f, 8.0f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.18f, 0.07f) + lineToRelative(0.05f, 0.05f) + lineToRelative(2.78f, 3.57f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.05f, 0.54f) + lineToRelative(-0.05f, 0.08f) + lineToRelative(-2.78f, 3.57f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.17f, 0.11f) + lineToRelative(-0.06f, 0.01f) + horizontalLineToRelative(-2.7f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.28f, -0.43f) + lineToRelative(0.04f, -0.06f) + lineTo(13.4f, 12.0f) + lineToRelative(-3.1f, -4.0f) + horizontalLineToRelative(3.27f) + close() + moveTo(9.68f, 8.8f) + lineTo(11.37f, 11.0f) + lineTo(10.58f, 12.0f) + lineTo(11.22f, 12.81f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.0f, 0.38f) + lineTo(9.9f, 14.87f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.43f, 0.04f) + lineToRelative(-0.04f, -0.05f) + lineToRelative(-2.0f, -2.55f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -0.62f) + lineTo(9.67f, 8.8f) + close() + } + } + return _launcherSettings!! + } + +private var _launcherSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Layer.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Layer.kt new file mode 100644 index 00000000..027d0cb2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Layer.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Layer: ImageVector + get() { + if (_layer != null) { + return _layer!! + } + _layer = fluentIcon(name = "Regular.Layer") { + fluentPath { + moveTo(20.03f, 12.2f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.58f, 0.59f) + lineToRelative(-6.05f, 4.08f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.8f, 0.0f) + lineTo(4.55f, 12.8f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.78f, -2.29f) + lineToRelative(6.84f, 4.56f) + curveToRelative(0.79f, 0.52f, 1.8f, 0.56f, 2.62f, 0.1f) + lineToRelative(0.16f, -0.1f) + lineToRelative(6.84f, -4.56f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.2f, 1.7f) + close() + moveTo(20.23f, 13.75f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.78f, 2.29f) + lineToRelative(-6.05f, 4.08f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.8f, 0.0f) + lineToRelative(-6.05f, -4.08f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.78f, -2.29f) + lineToRelative(6.84f, 4.56f) + curveToRelative(0.79f, 0.52f, 1.8f, 0.56f, 2.62f, 0.1f) + lineToRelative(0.16f, -0.1f) + lineToRelative(6.84f, -4.56f) + close() + moveTo(13.39f, 3.42f) + lineToRelative(6.36f, 4.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.66f) + lineToRelative(-6.36f, 4.25f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.78f, 0.0f) + lineTo(4.25f, 9.33f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.66f) + lineToRelative(6.36f, -4.25f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.78f, 0.0f) + close() + moveTo(11.56f, 4.61f) + lineTo(11.45f, 4.67f) + lineTo(5.7f, 8.5f) + lineToRelative(5.74f, 3.83f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.99f, 0.06f) + lineToRelative(0.11f, -0.06f) + lineTo(18.3f, 8.5f) + lineToRelative(-5.74f, -3.83f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.99f, -0.06f) + close() + } + } + return _layer!! + } + +private var _layer: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LeafOne.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LeafOne.kt new file mode 100644 index 00000000..100b2f6b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LeafOne.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.LeafOne: ImageVector + get() { + if (_leafOne != null) { + return _leafOne!! + } + _leafOne = fluentIcon(name = "Regular.LeafOne") { + fluentPath { + moveTo(13.24f, 3.27f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.48f, 0.0f) + lineToRelative(-3.7f, 3.71f) + arcToRelative(7.0f, 7.0f, 0.0f, false, false, 4.19f, 11.91f) + verticalLineToRelative(2.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.36f) + arcTo(7.0f, 7.0f, 0.0f, false, false, 16.95f, 7.0f) + lineToRelative(-3.71f, -3.72f) + close() + moveTo(12.75f, 17.38f) + verticalLineToRelative(-5.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(5.63f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, -3.14f, -9.34f) + lineToRelative(3.71f, -3.7f) + curveToRelative(0.1f, -0.1f, 0.26f, -0.1f, 0.36f, 0.0f) + lineToRelative(3.7f, 3.7f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, -3.13f, 9.34f) + close() + } + } + return _leafOne!! + } + +private var _leafOne: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LeafThree.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LeafThree.kt new file mode 100644 index 00000000..e5881872 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LeafThree.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.LeafThree: ImageVector + get() { + if (_leafThree != null) { + return _leafThree!! + } + _leafThree = fluentIcon(name = "Regular.LeafThree") { + fluentPath { + moveTo(19.0f, 7.5f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, -0.2f, 1.5f) + horizontalLineToRelative(1.61f) + curveToRelative(0.88f, 0.0f, 1.59f, 0.71f, 1.59f, 1.59f) + verticalLineToRelative(4.91f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, -10.54f, 5.1f) + lineToRelative(-1.18f, 1.18f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(1.18f, -1.18f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, -0.95f, -1.66f) + arcTo(6.0f, 6.0f, 0.0f, false, true, 2.25f, 12.0f) + lineTo(2.25f, 7.51f) + curveToRelative(0.0f, -0.83f, 0.68f, -1.51f, 1.51f, -1.51f) + horizontalLineToRelative(4.45f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 5.29f, -4.0f) + horizontalLineToRelative(4.06f) + curveToRelative(0.8f, 0.0f, 1.44f, 0.65f, 1.44f, 1.44f) + lineTo(19.0f, 7.5f) + close() + moveTo(9.72f, 6.18f) + curveToRelative(1.7f, 0.43f, 3.1f, 1.58f, 3.88f, 3.1f) + arcTo(6.5f, 6.5f, 0.0f, false, true, 15.5f, 9.0f) + horizontalLineToRelative(1.7f) + curveToRelative(0.2f, -0.46f, 0.3f, -0.97f, 0.3f, -1.5f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -3.78f, 2.68f) + close() + moveTo(12.53f, 19.53f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 7.97f, -4.03f) + verticalLineToRelative(-4.91f) + arcToRelative(0.09f, 0.09f, 0.0f, false, false, -0.09f, -0.09f) + lineTo(15.5f, 10.5f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, -4.03f, 7.97f) + lineToRelative(4.25f, -4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-4.25f, 4.25f) + close() + moveTo(9.0f, 15.5f) + curveToRelative(0.0f, -0.6f, 0.08f, -1.17f, 0.23f, -1.71f) + lineToRelative(-2.76f, -2.76f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(2.32f, 2.32f) + curveToRelative(0.56f, -1.0f, 1.39f, -1.83f, 2.37f, -2.4f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 8.25f, 7.5f) + lineTo(3.76f, 7.5f) + lineToRelative(-0.01f, 0.01f) + lineTo(3.75f, 12.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 5.32f, 4.43f) + curveToRelative(-0.05f, -0.3f, -0.07f, -0.62f, -0.07f, -0.93f) + close() + } + } + return _leafThree!! + } + +private var _leafThree: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LeafTwo.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LeafTwo.kt new file mode 100644 index 00000000..0d4f9781 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LeafTwo.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.LeafTwo: ImageVector + get() { + if (_leafTwo != null) { + return _leafTwo!! + } + _leafTwo = fluentIcon(name = "Regular.LeafTwo") { + fluentPath { + moveTo(2.0f, 4.7f) + lineTo(2.0f, 9.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, 6.3f, 6.0f) + curveToRelative(0.26f, 0.88f, 0.69f, 1.69f, 1.25f, 2.39f) + lineToRelative(-2.33f, 2.33f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineToRelative(2.33f, -2.33f) + arcTo(7.0f, 7.0f, 0.0f, false, false, 22.0f, 13.0f) + lineTo(22.0f, 7.75f) + curveTo(22.0f, 6.78f, 21.22f, 6.0f, 20.25f, 6.0f) + lineTo(15.0f, 6.0f) + curveToRelative(-0.58f, 0.0f, -1.15f, 0.07f, -1.69f, 0.2f) + arcTo(6.0f, 6.0f, 0.0f, false, false, 8.01f, 3.0f) + lineTo(3.7f, 3.0f) + curveTo(2.77f, 3.0f, 2.0f, 3.76f, 2.0f, 4.7f) + close() + moveTo(11.68f, 17.38f) + lineTo(15.78f, 13.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineToRelative(-4.1f, 4.1f) + arcTo(5.5f, 5.5f, 0.0f, false, true, 15.0f, 7.5f) + horizontalLineToRelative(5.25f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.1f, 0.25f, 0.25f) + lineTo(20.5f, 13.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, -8.82f, 4.38f) + close() + moveTo(8.0f, 4.5f) + curveToRelative(1.66f, 0.0f, 3.1f, 0.9f, 3.89f, 2.23f) + arcToRelative(7.03f, 7.03f, 0.0f, false, false, -2.71f, 2.39f) + lineToRelative(-1.9f, -1.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(2.24f, 2.24f) + arcToRelative(6.98f, 6.98f, 0.0f, false, false, -0.44f, 2.98f) + lineTo(8.0f, 13.5f) + arcTo(4.5f, 4.5f, 0.0f, false, true, 3.5f, 9.0f) + lineTo(3.5f, 4.7f) + curveToRelative(0.0f, -0.1f, 0.1f, -0.2f, 0.2f, -0.2f) + lineTo(8.0f, 4.5f) + close() + } + } + return _leafTwo!! + } + +private var _leafTwo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LearningApp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LearningApp.kt new file mode 100644 index 00000000..6d59ee7e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LearningApp.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.LearningApp: ImageVector + get() { + if (_learningApp != null) { + return _learningApp!! + } + _learningApp = fluentIcon(name = "Regular.LearningApp") { + fluentPath { + moveTo(5.5f, 2.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 3.0f, 4.5f) + verticalLineToRelative(15.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 5.5f, 22.0f) + horizontalLineToRelative(7.31f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, -1.5f) + lineTo(5.5f, 20.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + horizontalLineToRelative(6.81f) + arcToRelative(6.48f, 6.48f, 0.0f, false, true, -0.3f, -1.5f) + lineTo(4.5f, 18.0f) + lineTo(4.5f, 4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + lineTo(17.0f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(6.52f) + curveToRelative(0.52f, 0.04f, 1.02f, 0.14f, 1.5f, 0.3f) + lineTo(19.5f, 4.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 17.0f, 2.0f) + lineTo(5.5f, 2.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(16.91f, 15.1f) + lineTo(19.72f, 16.94f) + arcToRelative(0.6f, 0.6f, 0.0f, false, true, 0.28f, 0.52f) + curveToRelative(0.0f, 0.1f, -0.02f, 0.2f, -0.07f, 0.3f) + arcToRelative(0.57f, 0.57f, 0.0f, false, true, -0.2f, 0.22f) + lineToRelative(-2.8f, 1.92f) + arcToRelative(0.64f, 0.64f, 0.0f, false, true, -0.17f, 0.07f) + arcToRelative(0.55f, 0.55f, 0.0f, false, true, -0.4f, -0.02f) + arcToRelative(0.69f, 0.69f, 0.0f, false, true, -0.18f, -0.13f) + arcToRelative(0.61f, 0.61f, 0.0f, false, true, -0.18f, -0.44f) + verticalLineToRelative(-3.76f) + arcToRelative(0.62f, 0.62f, 0.0f, false, true, 0.37f, -0.57f) + arcToRelative(0.55f, 0.55f, 0.0f, false, true, 0.55f, 0.05f) + close() + moveTo(6.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + lineTo(7.0f, 9.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(6.0f, 6.0f) + close() + moveTo(7.5f, 7.5f) + horizontalLineToRelative(7.0f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(-7.0f) + verticalLineToRelative(1.0f) + close() + } + } + return _learningApp!! + } + +private var _learningApp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Library.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Library.kt new file mode 100644 index 00000000..72dc286e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Library.kt @@ -0,0 +1,99 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Library: ImageVector + get() { + if (_library != null) { + return _library!! + } + _library = fluentIcon(name = "Regular.Library") { + fluentPath { + moveTo(4.0f, 3.0f) + horizontalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 1.85f) + lineTo(7.0f, 19.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.85f, 2.0f) + lineTo(4.0f, 21.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -1.85f) + lineTo(2.0f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.85f, -2.0f) + lineTo(5.0f, 3.0f) + lineTo(4.0f, 3.0f) + close() + moveTo(10.0f, 3.0f) + horizontalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 1.85f) + lineTo(13.0f, 19.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.85f, 2.0f) + lineTo(10.0f, 21.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -1.85f) + lineTo(8.0f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.85f, -2.0f) + lineTo(11.0f, 3.0f) + horizontalLineToRelative(-1.0f) + close() + moveTo(16.97f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.9f, 1.35f) + lineToRelative(0.04f, 0.15f) + lineToRelative(3.02f, 11.75f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.3f, 2.39f) + lineToRelative(-0.14f, 0.04f) + lineToRelative(-0.97f, 0.25f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.39f, -1.28f) + lineToRelative(-0.05f, -0.16f) + lineToRelative(-3.01f, -11.74f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.3f, -2.4f) + lineToRelative(0.14f, -0.04f) + lineToRelative(0.97f, -0.25f) + curveToRelative(0.16f, -0.04f, 0.33f, -0.06f, 0.5f, -0.06f) + close() + moveTo(5.0f, 4.5f) + lineTo(4.0f, 4.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.41f) + lineTo(3.5f, 19.0f) + curveToRelative(0.0f, 0.24f, 0.18f, 0.45f, 0.41f, 0.5f) + lineTo(5.0f, 19.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.41f) + lineTo(5.5f, 5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.5f) + lineTo(5.0f, 4.5f) + close() + moveTo(11.0f, 4.5f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.41f) + lineTo(9.5f, 19.0f) + curveToRelative(0.0f, 0.24f, 0.18f, 0.45f, 0.41f, 0.5f) + lineTo(11.0f, 19.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.41f) + lineTo(11.5f, 5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.5f) + lineTo(11.0f, 4.5f) + close() + moveTo(16.98f, 6.5f) + horizontalLineToRelative(-0.07f) + lineToRelative(-0.06f, 0.02f) + lineToRelative(-0.97f, 0.24f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.38f, 0.51f) + lineToRelative(0.02f, 0.1f) + lineToRelative(3.02f, 11.75f) + curveToRelative(0.06f, 0.26f, 0.3f, 0.37f, 0.48f, 0.37f) + horizontalLineToRelative(0.06f) + lineToRelative(0.06f, -0.01f) + lineToRelative(0.97f, -0.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.38f, -0.52f) + lineToRelative(-0.02f, -0.09f) + lineToRelative(-3.01f, -11.74f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.48f, -0.38f) + close() + } + } + return _library!! + } + +private var _library: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Lightbulb.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Lightbulb.kt new file mode 100644 index 00000000..56a94b35 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Lightbulb.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Lightbulb: ImageVector + get() { + if (_lightbulb != null) { + return _lightbulb!! + } + _lightbulb = fluentIcon(name = "Regular.Lightbulb") { + fluentPath { + moveTo(12.0f, 2.0f) + curveToRelative(4.0f, 0.0f, 7.25f, 3.25f, 7.25f, 7.25f) + curveToRelative(0.0f, 2.1f, -0.9f, 4.02f, -2.66f, 5.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.18f, 0.27f) + lineToRelative(-0.03f, 0.1f) + lineToRelative(-1.13f, 4.9f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.02f, 1.73f) + lineToRelative(-0.17f, 0.01f) + horizontalLineToRelative(-2.12f) + curveToRelative(-0.99f, 0.0f, -1.85f, -0.65f, -2.14f, -1.58f) + lineToRelative(-0.05f, -0.16f) + lineToRelative(-1.13f, -4.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.2f, -0.37f) + curveToRelative(-1.68f, -1.64f, -2.58f, -3.46f, -2.66f, -5.44f) + lineToRelative(-0.01f, -0.3f) + verticalLineToRelative(-0.24f) + arcToRelative(7.25f, 7.25f, 0.0f, false, true, 7.25f, -7.0f) + close() + moveTo(14.12f, 18.5f) + lineTo(9.88f, 18.5f) + lineToRelative(0.33f, 1.42f) + curveToRelative(0.07f, 0.3f, 0.33f, 0.53f, 0.63f, 0.57f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(2.12f) + curveToRelative(0.31f, 0.0f, 0.59f, -0.2f, 0.7f, -0.48f) + lineToRelative(0.03f, -0.1f) + lineToRelative(0.33f, -1.42f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(5.75f, 5.75f, 0.0f, false, false, -5.75f, 5.53f) + verticalLineToRelative(0.5f) + curveToRelative(0.08f, 1.56f, 0.8f, 3.02f, 2.21f, 4.39f) + curveToRelative(0.27f, 0.26f, 0.46f, 0.58f, 0.57f, 0.93f) + lineToRelative(0.05f, 0.17f) + lineToRelative(0.46f, 1.98f) + horizontalLineToRelative(4.92f) + lineToRelative(0.46f, -1.98f) + curveToRelative(0.08f, -0.36f, 0.25f, -0.69f, 0.5f, -0.97f) + lineToRelative(0.12f, -0.13f) + curveToRelative(1.4f, -1.37f, 2.13f, -2.83f, 2.2f, -4.4f) + lineToRelative(0.01f, -0.27f) + verticalLineToRelative(-0.22f) + arcTo(5.75f, 5.75f, 0.0f, false, false, 12.0f, 3.5f) + close() + } + } + return _lightbulb!! + } + +private var _lightbulb: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LightbulbCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LightbulbCircle.kt new file mode 100644 index 00000000..d18ec579 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LightbulbCircle.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.LightbulbCircle: ImageVector + get() { + if (_lightbulbCircle != null) { + return _lightbulbCircle!! + } + _lightbulbCircle = fluentIcon(name = "Regular.LightbulbCircle") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) + close() + moveTo(12.0f, 5.2f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 3.11f, 8.92f) + lineToRelative(0.03f, -0.03f) + lineToRelative(-0.76f, 3.37f) + arcToRelative(1.73f, 1.73f, 0.0f, false, true, -1.38f, 1.3f) + lineToRelative(-0.15f, 0.03f) + lineTo(11.3f, 18.79f) + curveToRelative(-0.74f, 0.0f, -1.39f, -0.45f, -1.64f, -1.18f) + lineToRelative(-0.05f, -0.16f) + lineToRelative(-0.76f, -3.36f) + lineToRelative(-0.16f, -0.13f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, -1.67f, -3.23f) + lineTo(7.0f, 10.47f) + lineTo(7.0f, 10.2f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 5.0f, -5.0f) + close() + moveTo(13.17f, 16.0f) + horizontalLineToRelative(-2.34f) + lineToRelative(0.24f, 1.08f) + lineToRelative(0.02f, 0.07f) + curveToRelative(0.03f, 0.09f, 0.12f, 0.15f, 0.22f, 0.15f) + lineTo(12.72f, 17.3f) + curveToRelative(0.1f, -0.01f, 0.17f, -0.09f, 0.2f, -0.18f) + lineToRelative(0.25f, -1.12f) + close() + moveTo(12.0f, 6.7f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -3.5f, 3.48f) + verticalLineToRelative(0.23f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 1.46f, 2.64f) + curveToRelative(0.15f, 0.1f, 0.26f, 0.26f, 0.3f, 0.44f) + lineToRelative(0.23f, 1.01f) + horizontalLineToRelative(3.02f) + lineToRelative(0.23f, -1.0f) + curveToRelative(0.03f, -0.14f, 0.1f, -0.27f, 0.2f, -0.37f) + lineToRelative(0.08f, -0.07f) + lineToRelative(0.17f, -0.13f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 12.0f, 6.7f) + close() + } + } + return _lightbulbCircle!! + } + +private var _lightbulbCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LightbulbFilament.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LightbulbFilament.kt new file mode 100644 index 00000000..a92fc2b5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LightbulbFilament.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.LightbulbFilament: ImageVector + get() { + if (_lightbulbFilament != null) { + return _lightbulbFilament!! + } + _lightbulbFilament = fluentIcon(name = "Regular.LightbulbFilament") { + fluentPath { + moveTo(11.25f, 6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.5f) + close() + moveTo(16.28f, 8.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-1.06f, 1.06f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(1.06f, -1.06f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + close() + moveTo(8.78f, 8.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(1.06f, 1.06f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineTo(8.78f, 8.22f) + close() + moveTo(12.0f, 2.0f) + curveToRelative(4.0f, 0.0f, 7.25f, 3.25f, 7.25f, 7.25f) + curveToRelative(0.0f, 2.1f, -0.9f, 4.02f, -2.66f, 5.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.18f, 0.27f) + lineToRelative(-0.03f, 0.1f) + lineToRelative(-1.13f, 4.9f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.02f, 1.73f) + lineToRelative(-0.17f, 0.01f) + horizontalLineToRelative(-2.12f) + curveToRelative(-0.99f, 0.0f, -1.85f, -0.65f, -2.14f, -1.58f) + lineToRelative(-0.05f, -0.16f) + lineToRelative(-1.13f, -4.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.2f, -0.37f) + curveToRelative(-1.68f, -1.64f, -2.58f, -3.46f, -2.66f, -5.44f) + lineToRelative(-0.01f, -0.3f) + verticalLineToRelative(-0.24f) + arcToRelative(7.25f, 7.25f, 0.0f, false, true, 7.25f, -7.0f) + close() + moveTo(14.12f, 18.5f) + lineTo(9.88f, 18.5f) + lineToRelative(0.33f, 1.42f) + curveToRelative(0.07f, 0.3f, 0.33f, 0.53f, 0.63f, 0.57f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(2.12f) + curveToRelative(0.31f, 0.0f, 0.59f, -0.2f, 0.7f, -0.48f) + lineToRelative(0.03f, -0.1f) + lineToRelative(0.33f, -1.42f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(5.75f, 5.75f, 0.0f, false, false, -5.75f, 5.53f) + verticalLineToRelative(0.5f) + curveToRelative(0.08f, 1.56f, 0.8f, 3.02f, 2.21f, 4.39f) + curveToRelative(0.27f, 0.26f, 0.46f, 0.58f, 0.57f, 0.93f) + lineToRelative(0.05f, 0.17f) + lineToRelative(0.46f, 1.98f) + horizontalLineToRelative(1.71f) + verticalLineToRelative(-6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(12.75f, 17.0f) + horizontalLineToRelative(1.71f) + lineToRelative(0.46f, -1.98f) + curveToRelative(0.08f, -0.36f, 0.25f, -0.69f, 0.5f, -0.97f) + lineToRelative(0.12f, -0.13f) + curveToRelative(1.4f, -1.37f, 2.13f, -2.83f, 2.2f, -4.4f) + lineToRelative(0.01f, -0.27f) + verticalLineToRelative(-0.22f) + arcTo(5.75f, 5.75f, 0.0f, false, false, 12.0f, 3.5f) + close() + } + } + return _lightbulbFilament!! + } + +private var _lightbulbFilament: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LightbulbPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LightbulbPerson.kt new file mode 100644 index 00000000..ea34cc55 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LightbulbPerson.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.LightbulbPerson: ImageVector + get() { + if (_lightbulbPerson != null) { + return _lightbulbPerson!! + } + _lightbulbPerson = fluentIcon(name = "Regular.LightbulbPerson") { + fluentPath { + moveTo(12.0f, 2.0f) + curveToRelative(4.0f, 0.0f, 7.25f, 3.25f, 7.25f, 7.25f) + curveToRelative(0.0f, 2.1f, -0.9f, 4.02f, -2.66f, 5.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.18f, 0.27f) + lineToRelative(-0.03f, 0.1f) + lineToRelative(-1.13f, 4.9f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.02f, 1.73f) + lineToRelative(-0.17f, 0.01f) + horizontalLineToRelative(-2.12f) + curveToRelative(-0.99f, 0.0f, -1.85f, -0.65f, -2.14f, -1.58f) + lineToRelative(-0.05f, -0.16f) + lineToRelative(-1.13f, -4.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.2f, -0.37f) + curveToRelative(-1.68f, -1.64f, -2.58f, -3.46f, -2.66f, -5.44f) + lineToRelative(-0.01f, -0.3f) + verticalLineToRelative(-0.24f) + arcToRelative(7.25f, 7.25f, 0.0f, false, true, 7.25f, -7.0f) + close() + moveTo(14.12f, 18.5f) + lineTo(9.88f, 18.5f) + lineToRelative(0.33f, 1.42f) + curveToRelative(0.07f, 0.3f, 0.33f, 0.53f, 0.63f, 0.57f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(2.12f) + curveToRelative(0.31f, 0.0f, 0.59f, -0.2f, 0.7f, -0.48f) + lineToRelative(0.03f, -0.1f) + lineToRelative(0.33f, -1.42f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(5.75f, 5.75f, 0.0f, false, false, -5.75f, 5.53f) + verticalLineToRelative(0.5f) + curveToRelative(0.08f, 1.56f, 0.8f, 3.02f, 2.21f, 4.39f) + curveToRelative(0.11f, 0.1f, 0.2f, 0.22f, 0.3f, 0.35f) + arcToRelative(7.22f, 7.22f, 0.0f, false, true, 6.49f, 0.0f) + lineToRelative(0.16f, -0.22f) + lineToRelative(0.13f, -0.13f) + curveToRelative(1.4f, -1.37f, 2.13f, -2.83f, 2.2f, -4.4f) + lineToRelative(0.01f, -0.27f) + verticalLineToRelative(-0.22f) + arcTo(5.75f, 5.75f, 0.0f, false, false, 12.0f, 3.5f) + close() + moveTo(14.76f, 15.7f) + arcToRelative(5.72f, 5.72f, 0.0f, false, false, -5.52f, 0.0f) + lineToRelative(0.3f, 1.3f) + horizontalLineToRelative(4.92f) + lineToRelative(0.3f, -1.3f) + close() + moveTo(12.0f, 7.5f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, 3.5f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, -3.5f) + close() + moveTo(8.75f, 9.25f) + arcToRelative(3.25f, 3.25f, 0.0f, true, true, 6.5f, 0.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.5f, 0.0f) + close() + } + } + return _lightbulbPerson!! + } + +private var _lightbulbPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Likert.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Likert.kt new file mode 100644 index 00000000..c0259a73 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Likert.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Likert: ImageVector + get() { + if (_likert != null) { + return _likert!! + } + _likert = fluentIcon(name = "Regular.Likert") { + fluentPath { + moveTo(10.75f, 8.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(13.5f, 8.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(16.5f, 8.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(19.5f, 8.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(9.75f, 16.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(12.5f, 16.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(15.5f, 16.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(18.5f, 16.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(5.0f, 4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(10.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, 3.0f) + horizontalLineToRelative(14.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) + lineTo(22.0f, 7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + lineTo(5.0f, 4.0f) + close() + moveTo(19.0f, 5.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(4.25f) + horizontalLineToRelative(-13.0f) + lineTo(7.5f, 5.5f) + lineTo(19.0f, 5.5f) + close() + moveTo(20.5f, 12.75f) + lineTo(20.5f, 17.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + lineTo(7.5f, 18.5f) + verticalLineToRelative(-5.75f) + horizontalLineToRelative(13.0f) + close() + moveTo(6.0f, 11.25f) + lineTo(3.5f, 11.25f) + lineTo(3.5f, 7.0f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(1.0f) + verticalLineToRelative(5.75f) + close() + moveTo(3.5f, 12.75f) + lineTo(6.0f, 12.75f) + verticalLineToRelative(5.75f) + lineTo(5.0f, 18.5f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 3.5f, 17.0f) + verticalLineToRelative(-4.25f) + close() + } + } + return _likert!! + } + +private var _likert: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Line.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Line.kt new file mode 100644 index 00000000..4adeebbb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Line.kt @@ -0,0 +1,29 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Line: ImageVector + get() { + if (_line != null) { + return _line!! + } + _line = fluentIcon(name = "Regular.Line") { + fluentPath { + moveTo(21.78f, 2.22f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-18.5f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(18.5f, -18.5f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + } + } + return _line!! + } + +private var _line: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LineDashes.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LineDashes.kt new file mode 100644 index 00000000..008a95a4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LineDashes.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.LineDashes: ImageVector + get() { + if (_lineDashes != null) { + return _lineDashes!! + } + _lineDashes = fluentIcon(name = "Regular.LineDashes") { + fluentPath { + moveTo(21.79f, 2.22f) + curveToRelative(0.29f, 0.3f, 0.29f, 0.77f, 0.0f, 1.06f) + lineToRelative(-1.0f, 1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.07f, -1.06f) + lineToRelative(1.0f, -1.0f) + curveToRelative(0.3f, -0.29f, 0.77f, -0.29f, 1.07f, 0.0f) + close() + moveTo(17.78f, 6.22f) + curveToRelative(0.29f, 0.3f, 0.29f, 0.77f, 0.0f, 1.06f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(1.5f, -1.5f) + curveToRelative(0.29f, -0.29f, 0.76f, -0.29f, 1.06f, 0.0f) + close() + moveTo(13.28f, 10.72f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(1.5f, -1.5f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(8.78f, 16.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineToRelative(1.5f, -1.5f) + close() + moveTo(4.28f, 20.78f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-1.0f, 1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(1.0f, -1.0f) + close() + } + } + return _lineDashes!! + } + +private var _lineDashes: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LineStyle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LineStyle.kt new file mode 100644 index 00000000..7976dd1f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LineStyle.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.LineStyle: ImageVector + get() { + if (_lineStyle != null) { + return _lineStyle!! + } + _lineStyle = fluentIcon(name = "Regular.LineStyle") { + fluentPath { + moveTo(2.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + close() + } + fluentPath { + moveTo(2.75f, 11.5f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineTo(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + horizontalLineToRelative(0.1f) + close() + } + fluentPath { + moveTo(2.0f, 18.25f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(17.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + horizontalLineTo(3.25f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + close() + } + fluentPath { + moveTo(9.75f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + fluentPath { + moveTo(17.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + close() + } + } + return _lineStyle!! + } + +private var _lineStyle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LineThickness.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LineThickness.kt new file mode 100644 index 00000000..6e84f0fc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LineThickness.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.LineThickness: ImageVector + get() { + if (_lineThickness != null) { + return _lineThickness!! + } + _lineThickness = fluentIcon(name = "Regular.LineThickness") { + fluentPath { + moveTo(2.75f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(2.75f, 3.5f) + close() + moveTo(2.0f, 10.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(17.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + lineTo(3.25f, 12.0f) + curveTo(2.56f, 12.0f, 2.0f, 11.44f, 2.0f, 10.75f) + close() + moveTo(2.0f, 18.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(16.5f) + arcToRelative(1.75f, 1.75f, 0.0f, true, true, 0.0f, 3.5f) + lineTo(3.75f, 20.0f) + curveTo(2.78f, 20.0f, 2.0f, 19.22f, 2.0f, 18.25f) + close() + } + } + return _lineThickness!! + } + +private var _lineThickness: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LinkDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LinkDismiss.kt new file mode 100644 index 00000000..69c1a112 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LinkDismiss.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.LinkDismiss: ImageVector + get() { + if (_linkDismiss != null) { + return _linkDismiss!! + } + _linkDismiss = fluentIcon(name = "Regular.LinkDismiss") { + fluentPath { + moveTo(9.25f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.11f, 1.5f) + lineTo(7.0f, 6.5f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -0.2f, 7.0f) + horizontalLineToRelative(2.45f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.11f, 1.5f) + lineTo(7.0f, 15.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, -0.25f, -10.0f) + horizontalLineToRelative(2.5f) + close() + moveTo(17.0f, 5.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 4.43f, 7.32f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.3f, -0.76f) + arcTo(3.5f, 3.5f, 0.0f, false, false, 17.2f, 6.5f) + lineTo(17.0f, 6.5f) + horizontalLineToRelative(-2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.11f, -1.5f) + lineTo(17.0f, 5.0f) + close() + moveTo(7.0f, 9.25f) + horizontalLineToRelative(10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(7.0f, 10.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(7.0f, 9.25f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-1.64f, -1.65f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.65f, 1.64f) + lineToRelative(-1.65f, -1.64f) + close() + } + } + return _linkDismiss!! + } + +private var _linkDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LinkEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LinkEdit.kt new file mode 100644 index 00000000..9e6e72a5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LinkEdit.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.LinkEdit: ImageVector + get() { + if (_linkEdit != null) { + return _linkEdit!! + } + _linkEdit = fluentIcon(name = "Regular.LinkEdit") { + fluentPath { + moveTo(10.0f, 5.75f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 9.25f, 5.0f) + horizontalLineToRelative(-2.5f) + arcTo(5.0f, 5.0f, 0.0f, false, false, 7.0f, 15.0f) + horizontalLineToRelative(2.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.11f, -1.5f) + lineTo(6.8f, 13.5f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 0.2f, -7.0f) + horizontalLineToRelative(2.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.64f, -0.75f) + close() + moveTo(22.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, -5.0f, -5.0f) + horizontalLineToRelative(-2.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(2.46f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 3.3f, 3.6f) + curveToRelative(0.51f, 0.12f, 1.0f, 0.37f, 1.43f, 0.75f) + curveToRelative(0.04f, -0.27f, 0.07f, -0.56f, 0.07f, -0.85f) + close() + moveTo(17.0f, 9.25f) + lineTo(6.9f, 9.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(10.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(18.1f, 11.67f) + lineTo(12.2f, 17.57f) + curveToRelative(-0.35f, 0.34f, -0.6f, 0.78f, -0.71f, 1.25f) + lineToRelative(-0.46f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _linkEdit!! + } + +private var _linkEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LinkSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LinkSquare.kt new file mode 100644 index 00000000..95b0bdd8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LinkSquare.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.LinkSquare: ImageVector + get() { + if (_linkSquare != null) { + return _linkSquare!! + } + _linkSquare = fluentIcon(name = "Regular.LinkSquare") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineTo(7.5f) + verticalLineTo(14.0f) + horizontalLineTo(6.25f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-6.0f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(6.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineTo(11.0f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(1.25f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-6.0f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-6.0f) + close() + moveTo(10.0f, 11.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineTo(13.0f) + verticalLineTo(8.5f) + horizontalLineToRelative(-1.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.25f, 3.25f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(6.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-6.0f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineTo(16.5f) + verticalLineTo(10.0f) + horizontalLineToRelative(1.25f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-6.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-6.0f) + close() + } + } + return _linkSquare!! + } + +private var _linkSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/List.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/List.kt new file mode 100644 index 00000000..089519d9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/List.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.List: ImageVector + get() { + if (_list != null) { + return _list!! + } + _list = fluentIcon(name = "Regular.List") { + fluentPath { + moveTo(2.75f, 18.0f) + horizontalLineToRelative(12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(2.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(12.6f) + horizontalLineToRelative(-12.5f) + close() + moveTo(2.75f, 11.5f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(2.75f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(18.6f) + horizontalLineToRelative(-18.5f) + close() + moveTo(2.75f, 5.0f) + horizontalLineToRelative(15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(2.75f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + horizontalLineToRelative(15.6f) + horizontalLineToRelative(-15.5f) + close() + } + } + return _list!! + } + +private var _list: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Live.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Live.kt new file mode 100644 index 00000000..6aab86c8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Live.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Live: ImageVector + get() { + if (_live != null) { + return _live!! + } + _live = fluentIcon(name = "Regular.Live") { + fluentPath { + moveTo(5.99f, 4.93f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, 12.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -14.14f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(19.07f, 4.93f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, 14.14f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -12.02f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + close() + moveTo(8.82f, 7.76f) + curveToRelative(0.3f, 0.29f, 0.3f, 0.76f, 0.0f, 1.06f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 0.0f, 6.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 0.0f, -8.48f) + curveToRelative(0.29f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(16.24f, 7.76f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 0.0f, 8.48f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 0.0f, -6.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + close() + moveTo(12.0f, 10.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + } + } + return _live!! + } + +private var _live: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LiveOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LiveOff.kt new file mode 100644 index 00000000..498fbbca --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LiveOff.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.LiveOff: ImageVector + get() { + if (_liveOff != null) { + return _liveOff!! + } + _liveOff = fluentIcon(name = "Regular.LiveOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(2.2f, 2.2f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.5f, 13.6f) + arcTo(0.75f, 0.75f, 0.0f, true, false, 6.0f, 18.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, -0.5f, -11.47f) + lineToRelative(1.77f, 1.78f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, 0.5f, 7.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.49f, -5.79f) + lineToRelative(2.22f, 2.22f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.84f, 1.84f) + lineToRelative(8.33f, 8.33f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(19.38f, 16.21f) + lineTo(20.48f, 17.31f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, -1.4f, -12.38f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 18.0f, 5.99f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, 1.38f, 10.22f) + close() + moveTo(16.35f, 13.17f) + lineTo(17.53f, 14.34f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, -1.29f, -6.58f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 1.17f, 4.35f) + close() + } + } + return _liveOff!! + } + +private var _liveOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LocalLanguage.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LocalLanguage.kt new file mode 100644 index 00000000..9d0bcb8c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LocalLanguage.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.LocalLanguage: ImageVector + get() { + if (_localLanguage != null) { + return _localLanguage!! + } + _localLanguage = fluentIcon(name = "Regular.LocalLanguage") { + fluentPath { + moveToRelative(9.34f, 6.37f) + lineToRelative(0.05f, 0.1f) + lineToRelative(5.56f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.42f, 0.98f) + arcToRelative(0.73f, 0.73f, 0.0f, false, true, -0.9f, -0.33f) + lineToRelative(-0.05f, -0.1f) + lineToRelative(-1.43f, -3.73f) + horizontalLineToRelative(-7.1f) + lineToRelative(-0.08f, -0.01f) + lineToRelative(-1.55f, 3.76f) + arcToRelative(0.73f, 0.73f, 0.0f, false, true, -0.96f, 0.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.43f, -0.88f) + lineToRelative(0.03f, -0.1f) + lineToRelative(5.97f, -14.5f) + arcToRelative(0.73f, 0.73f, 0.0f, false, true, 1.31f, -0.09f) + close() + moveTo(18.74f, 2.0f) + curveToRelative(0.39f, 0.0f, 0.7f, 0.29f, 0.75f, 0.65f) + verticalLineTo(7.5f) + horizontalLineToRelative(1.76f) + curveToRelative(0.38f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.64f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineTo(19.5f) + verticalLineToRelative(7.25f) + curveToRelative(0.0f, 0.38f, -0.29f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.65f) + verticalLineTo(2.75f) + curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.75f, -0.75f) + close() + moveTo(8.82f, 8.75f) + lineToRelative(-3.16f, 7.54f) + horizontalLineToRelative(6.1f) + lineTo(8.82f, 8.75f) + close() + moveTo(10.75f, 2.0f) + horizontalLineToRelative(5.5f) + curveToRelative(0.38f, 0.0f, 0.69f, 0.29f, 0.74f, 0.65f) + verticalLineToRelative(3.1f) + curveTo(17.0f, 8.1f, 15.1f, 10.0f, 12.76f, 10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.74f, -2.58f) + verticalLineTo(3.5f) + horizontalLineToRelative(-4.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + horizontalLineToRelative(5.6f) + horizontalLineToRelative(-5.5f) + close() + } + } + return _localLanguage!! + } + +private var _localLanguage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Location.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Location.kt new file mode 100644 index 00000000..7dedc683 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Location.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Location: ImageVector + get() { + if (_location != null) { + return _location!! + } + _location = fluentIcon(name = "Regular.Location") { + fluentPath { + moveTo(5.84f, 4.57f) + arcToRelative(8.7f, 8.7f, 0.0f, false, true, 12.32f, 12.31f) + lineToRelative(-1.19f, 1.18f) + lineToRelative(-3.4f, 3.3f) + curveToRelative(-0.88f, 0.85f, -2.26f, 0.85f, -3.13f, 0.0f) + lineToRelative(-3.5f, -3.39f) + lineToRelative(-1.1f, -1.09f) + arcToRelative(8.7f, 8.7f, 0.0f, false, true, 0.0f, -12.31f) + close() + moveTo(17.1f, 5.63f) + arcToRelative(7.2f, 7.2f, 0.0f, true, false, -10.2f, 10.2f) + lineToRelative(1.5f, 1.46f) + curveToRelative(0.8f, 0.8f, 1.84f, 1.8f, 3.08f, 3.0f) + curveToRelative(0.29f, 0.28f, 0.75f, 0.28f, 1.04f, 0.0f) + lineToRelative(3.4f, -3.3f) + lineToRelative(1.18f, -1.17f) + arcToRelative(7.2f, 7.2f, 0.0f, false, false, 0.0f, -10.2f) + close() + moveTo(12.0f, 8.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) + close() + moveTo(12.0f, 9.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + } + } + return _location!! + } + +private var _location: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LocationAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LocationAdd.kt new file mode 100644 index 00000000..02204ec3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LocationAdd.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.LocationAdd: ImageVector + get() { + if (_locationAdd != null) { + return _locationAdd!! + } + _locationAdd = fluentIcon(name = "Regular.LocationAdd") { + fluentPath { + moveTo(8.0f, 10.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + verticalLineTo(7.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineTo(10.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + verticalLineToRelative(2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineTo(11.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(5.84f, 4.57f) + arcToRelative(8.7f, 8.7f, 0.0f, false, true, 12.32f, 12.31f) + lineToRelative(-1.19f, 1.18f) + lineToRelative(-3.4f, 3.3f) + curveToRelative(-0.88f, 0.85f, -2.26f, 0.85f, -3.13f, 0.0f) + lineToRelative(-3.5f, -3.39f) + arcToRelative(175.0f, 175.0f, 0.0f, false, true, -1.1f, -1.09f) + arcToRelative(8.7f, 8.7f, 0.0f, false, true, 0.0f, -12.31f) + close() + moveTo(17.1f, 5.63f) + arcToRelative(7.2f, 7.2f, 0.0f, true, false, -10.2f, 10.2f) + lineToRelative(1.5f, 1.46f) + lineToRelative(3.08f, 3.0f) + curveToRelative(0.29f, 0.28f, 0.75f, 0.28f, 1.04f, 0.0f) + lineToRelative(3.4f, -3.3f) + lineToRelative(1.18f, -1.17f) + arcToRelative(7.2f, 7.2f, 0.0f, false, false, 0.0f, -10.2f) + close() + } + } + return _locationAdd!! + } + +private var _locationAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LocationArrow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LocationArrow.kt new file mode 100644 index 00000000..f035c5a1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LocationArrow.kt @@ -0,0 +1,39 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.LocationArrow: ImageVector + get() { + if (_locationArrow != null) { + return _locationArrow!! + } + _locationArrow = fluentIcon(name = "Regular.LocationArrow") { + fluentPath { + moveTo(19.96f, 2.1f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 1.94f, 1.94f) + lineToRelative(-6.54f, 17.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.85f, -0.16f) + lineToRelative(-1.85f, -7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.53f, -0.54f) + lineToRelative(-7.01f, -1.85f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -0.16f, -2.85f) + lineToRelative(17.0f, -6.54f) + close() + moveTo(20.5f, 3.5f) + lineTo(3.5f, 10.04f) + lineTo(10.51f, 11.89f) + curveToRelative(0.79f, 0.2f, 1.4f, 0.81f, 1.6f, 1.6f) + lineToRelative(1.85f, 7.01f) + lineToRelative(6.54f, -17.0f) + close() + } + } + return _locationArrow!! + } + +private var _locationArrow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LocationDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LocationDismiss.kt new file mode 100644 index 00000000..117f493e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LocationDismiss.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.LocationDismiss: ImageVector + get() { + if (_locationDismiss != null) { + return _locationDismiss!! + } + _locationDismiss = fluentIcon(name = "Regular.LocationDismiss") { + fluentPath { + moveTo(5.84f, 4.56f) + arcToRelative(8.7f, 8.7f, 0.0f, false, true, 12.52f, 12.1f) + lineToRelative(-0.2f, 0.21f) + curveToRelative(-0.92f, 0.92f, -2.45f, 2.41f, -4.6f, 4.49f) + curveToRelative(-0.87f, 0.84f, -2.25f, 0.84f, -3.12f, 0.0f) + lineTo(6.59f, 17.6f) + arcToRelative(150.0f, 150.0f, 0.0f, false, true, -0.75f, -0.74f) + arcToRelative(8.7f, 8.7f, 0.0f, false, true, 0.0f, -12.31f) + close() + moveTo(17.1f, 5.62f) + arcToRelative(7.2f, 7.2f, 0.0f, true, false, -10.2f, 10.2f) + lineToRelative(1.7f, 1.66f) + lineToRelative(2.88f, 2.8f) + curveToRelative(0.29f, 0.28f, 0.75f, 0.28f, 1.04f, 0.0f) + lineToRelative(2.98f, -2.89f) + lineToRelative(1.6f, -1.58f) + arcToRelative(7.2f, 7.2f, 0.0f, false, false, 0.0f, -10.19f) + close() + moveTo(14.95f, 7.62f) + lineTo(15.03f, 7.69f) + curveToRelative(0.27f, 0.26f, 0.3f, 0.68f, 0.07f, 0.97f) + lineToRelative(-0.07f, 0.09f) + lineToRelative(-1.97f, 1.97f) + lineToRelative(1.97f, 1.97f) + curveToRelative(0.27f, 0.26f, 0.3f, 0.68f, 0.07f, 0.97f) + lineToRelative(-0.07f, 0.09f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineTo(12.0f, 11.78f) + lineToRelative(-1.97f, 1.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(1.97f, -1.97f) + lineToRelative(-1.97f, -1.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.08f) + lineToRelative(0.08f, 0.08f) + lineTo(12.0f, 9.66f) + lineToRelative(1.97f, -1.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.08f) + close() + } + } + return _locationDismiss!! + } + +private var _locationDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LocationLive.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LocationLive.kt new file mode 100644 index 00000000..5e71a11b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LocationLive.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.LocationLive: ImageVector + get() { + if (_locationLive != null) { + return _locationLive!! + } + _locationLive = fluentIcon(name = "Regular.LocationLive") { + fluentPath { + moveTo(9.8f, 2.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + arcToRelative(10.5f, 10.5f, 0.0f, false, true, 9.78f, 9.77f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, -0.1f) + arcTo(12.0f, 12.0f, 0.0f, false, false, 9.8f, 2.03f) + close() + moveTo(8.5f, 15.63f) + arcToRelative(1.13f, 1.13f, 0.0f, true, false, 0.0f, -2.26f) + arcToRelative(1.13f, 1.13f, 0.0f, false, false, 0.0f, 2.25f) + close() + moveTo(7.98f, 21.77f) + lineTo(7.58f, 21.39f) + arcToRelative(4307.72f, 4307.72f, 0.0f, false, true, -2.96f, -2.96f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 7.77f, 0.0f) + lineToRelative(-2.01f, 2.0f) + lineToRelative(-1.35f, 1.34f) + curveToRelative(-0.29f, 0.3f, -0.76f, 0.3f, -1.05f, 0.0f) + close() + moveTo(5.68f, 11.72f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 5.65f) + lineToRelative(2.04f, 2.03f) + lineToRelative(0.78f, 0.78f) + lineToRelative(0.82f, -0.8f) + lineToRelative(2.01f, -2.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, -5.65f, -5.66f) + close() + moveTo(9.82f, 5.5f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 9.68f, 7.0f) + arcTo(6.99f, 6.99f, 0.0f, false, true, 16.0f, 13.3f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, -0.13f) + arcTo(8.49f, 8.49f, 0.0f, false, false, 9.82f, 5.5f) + close() + } + } + return _locationLive!! + } + +private var _locationLive: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LocationOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LocationOff.kt new file mode 100644 index 00000000..4e4d7e8a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LocationOff.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.LocationOff: ImageVector + get() { + if (_locationOff != null) { + return _locationOff!! + } + _locationOff = fluentIcon(name = "Regular.LocationOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(2.57f, 2.57f) + arcToRelative(8.71f, 8.71f, 0.0f, false, false, 1.05f, 11.03f) + lineToRelative(1.1f, 1.1f) + lineToRelative(3.5f, 3.39f) + curveToRelative(0.87f, 0.84f, 2.25f, 0.84f, 3.12f, 0.0f) + arcToRelative(656.5f, 656.5f, 0.0f, false, false, 3.41f, -3.31f) + lineToRelative(0.01f, -0.02f) + lineToRelative(3.74f, 3.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(15.92f, 16.98f) + lineTo(12.52f, 20.29f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.04f, 0.0f) + lineToRelative(-3.09f, -3.0f) + lineToRelative(-1.49f, -1.47f) + arcToRelative(7.21f, 7.21f, 0.0f, false, true, -1.03f, -8.89f) + lineToRelative(3.24f, 3.24f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.72f, 3.72f) + lineToRelative(3.1f, 3.1f) + close() + moveTo(11.27f, 8.08f) + lineTo(14.91f, 11.73f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.64f, -3.64f) + close() + moveTo(17.1f, 5.63f) + arcToRelative(7.21f, 7.21f, 0.0f, false, true, 0.86f, 9.15f) + lineToRelative(1.08f, 1.08f) + arcTo(8.7f, 8.7f, 0.0f, false, false, 6.87f, 3.69f) + lineToRelative(1.08f, 1.07f) + arcToRelative(7.21f, 7.21f, 0.0f, false, true, 9.15f, 0.87f) + close() + } + } + return _locationOff!! + } + +private var _locationOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LockClosed.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LockClosed.kt new file mode 100644 index 00000000..7511e739 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LockClosed.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.LockClosed: ImageVector + get() { + if (_lockClosed != null) { + return _lockClosed!! + } + _lockClosed = fluentIcon(name = "Regular.LockClosed") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, 4.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(1.75f) + curveTo(18.99f, 8.0f, 20.0f, 9.0f, 20.0f, 10.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + verticalLineToRelative(-9.5f) + curveTo(4.0f, 9.01f, 5.0f, 8.0f, 6.25f, 8.0f) + lineTo(8.0f, 8.0f) + lineTo(8.0f, 6.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, -4.0f) + close() + moveTo(17.75f, 9.5f) + lineTo(6.25f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(12.0f, 13.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(12.0f, 3.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 9.5f, 6.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(5.0f) + lineTo(14.5f, 6.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 12.0f, 3.5f) + close() + } + } + return _lockClosed!! + } + +private var _lockClosed: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LockMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LockMultiple.kt new file mode 100644 index 00000000..931ce2f0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LockMultiple.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.LockMultiple: ImageVector + get() { + if (_lockMultiple != null) { + return _lockMultiple!! + } + _lockMultiple = fluentIcon(name = "Regular.LockMultiple") { + fluentPath { + moveTo(10.75f, 13.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + moveTo(7.25f, 5.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 7.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(1.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-9.0f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-7.5f) + curveTo(4.0f, 7.51f, 5.0f, 6.5f, 6.25f, 6.5f) + horizontalLineToRelative(1.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(12.75f, 5.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, -4.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(5.5f, 8.75f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(9.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(9.75f, 21.0f) + curveToRelative(-0.98f, 0.0f, -1.81f, -0.63f, -2.12f, -1.5f) + horizontalLineToRelative(8.12f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, -2.75f) + verticalLineToRelative(-6.62f) + curveToRelative(0.87f, 0.3f, 1.5f, 1.14f, 1.5f, 2.12f) + verticalLineToRelative(4.5f) + curveTo(20.0f, 19.1f, 18.1f, 21.0f, 15.75f, 21.0f) + horizontalLineToRelative(-6.0f) + close() + } + } + return _lockMultiple!! + } + +private var _lockMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LockOpen.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LockOpen.kt new file mode 100644 index 00000000..082b222f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LockOpen.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.LockOpen: ImageVector + get() { + if (_lockOpen != null) { + return _lockOpen!! + } + _lockOpen = fluentIcon(name = "Regular.LockOpen") { + fluentPath { + moveTo(12.0f, 2.0f) + curveToRelative(1.88f, 0.0f, 3.33f, 1.21f, 3.93f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.43f, 0.48f) + curveTo(14.1f, 4.26f, 13.2f, 3.5f, 12.0f, 3.5f) + curveToRelative(-1.4f, 0.0f, -2.42f, 0.96f, -2.5f, 2.56f) + lineTo(9.5f, 8.0f) + horizontalLineToRelative(8.25f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.92f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.19f, -0.93f, 2.16f, -2.1f, 2.24f) + lineTo(6.25f, 21.99f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.09f) + lineTo(4.0f, 19.75f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.25f) + lineTo(8.0f, 8.0f) + lineTo(8.0f, 6.25f) + curveTo(8.0f, 3.71f, 9.7f, 2.0f, 12.0f, 2.0f) + close() + moveTo(17.75f, 9.5f) + lineTo(6.25f, 9.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.69f, 0.65f, 0.74f) + horizontalLineToRelative(11.6f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.64f) + lineToRelative(0.01f, -0.1f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + close() + moveTo(12.0f, 13.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + } + } + return _lockOpen!! + } + +private var _lockOpen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LockShield.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LockShield.kt new file mode 100644 index 00000000..6bd5fc3f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/LockShield.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.LockShield: ImageVector + get() { + if (_lockShield != null) { + return _lockShield!! + } + _lockShield = fluentIcon(name = "Regular.LockShield") { + fluentPath { + moveTo(10.0f, 2.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, 4.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(1.75f) + curveTo(16.99f, 8.0f, 18.0f, 9.0f, 18.0f, 10.25f) + lineTo(18.0f, 11.0f) + curveToRelative(-0.32f, 0.0f, -0.64f, 0.11f, -0.9f, 0.33f) + lineToRelative(-0.1f, 0.1f) + curveToRelative(-0.17f, 0.17f, -0.33f, 0.32f, -0.5f, 0.46f) + verticalLineToRelative(-1.64f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(4.25f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(9.89f) + curveToRelative(0.4f, 0.58f, 0.92f, 1.08f, 1.54f, 1.5f) + lineTo(4.25f, 22.0f) + curveTo(3.01f, 22.0f, 2.0f, 21.0f, 2.0f, 19.75f) + verticalLineToRelative(-9.5f) + curveTo(2.0f, 9.01f, 3.0f, 8.0f, 4.25f, 8.0f) + lineTo(6.0f, 8.0f) + lineTo(6.0f, 6.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, -4.0f) + close() + moveTo(18.28f, 12.12f) + curveToRelative(1.0f, 1.04f, 2.1f, 1.55f, 3.32f, 1.55f) + curveToRelative(0.2f, 0.0f, 0.35f, 0.14f, 0.4f, 0.33f) + verticalLineToRelative(2.58f) + curveToRelative(0.0f, 2.69f, -1.31f, 4.51f, -3.87f, 5.4f) + arcToRelative(0.39f, 0.39f, 0.0f, false, true, -0.26f, 0.0f) + curveToRelative(-2.47f, -0.86f, -3.78f, -2.6f, -3.87f, -5.13f) + verticalLineToRelative(-2.77f) + arcToRelative(0.4f, 0.4f, 0.0f, false, true, 0.4f, -0.41f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 3.32f, -1.55f) + arcToRelative(0.39f, 0.39f, 0.0f, false, true, 0.56f, 0.0f) + close() + moveTo(10.0f, 13.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(10.0f, 3.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 7.5f, 6.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(5.0f) + lineTo(12.5f, 6.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 10.0f, 3.5f) + close() + } + } + return _lockShield!! + } + +private var _lockShield: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Lottery.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Lottery.kt new file mode 100644 index 00000000..6aade585 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Lottery.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Lottery: ImageVector + get() { + if (_lottery != null) { + return _lottery!! + } + _lottery = fluentIcon(name = "Regular.Lottery") { + fluentPath { + moveTo(14.15f, 4.72f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.3f, 0.0f) + arcToRelative(5.96f, 5.96f, 0.0f, false, false, -1.41f, -0.55f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 7.12f, 0.0f) + curveToRelative(-0.5f, 0.13f, -0.97f, 0.31f, -1.41f, 0.55f) + close() + moveTo(9.38f, 7.44f) + arcToRelative(7.95f, 7.95f, 0.0f, false, true, 1.66f, -0.38f) + arcToRelative(5.0f, 5.0f, 0.0f, true, false, -6.98f, 6.98f) + curveToRelative(0.07f, -0.57f, 0.2f, -1.13f, 0.38f, -1.66f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 4.95f, -4.95f) + close() + moveTo(19.94f, 14.04f) + arcToRelative(5.0f, 5.0f, 0.0f, true, false, -6.98f, -6.98f) + curveToRelative(0.57f, 0.07f, 1.13f, 0.2f, 1.66f, 0.38f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 4.95f, 4.95f) + curveToRelative(0.18f, 0.52f, 0.3f, 1.08f, 0.37f, 1.65f) + close() + moveTo(9.5f, 13.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.5f, 1.31f) + lineToRelative(-0.02f, 0.02f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, -0.26f, 0.26f) + arcToRelative(9.55f, 9.55f, 0.0f, false, false, -2.25f, 3.86f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.44f, -0.4f) + curveToRelative(0.4f, -1.5f, 1.15f, -2.7f, 1.78f, -3.54f) + lineToRelative(0.01f, -0.01f) + horizontalLineToRelative(-2.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(12.0f, 22.0f) + arcToRelative(7.0f, 7.0f, 0.0f, true, false, 0.0f, -14.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, false, 0.0f, 14.0f) + close() + moveTo(12.0f, 20.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, 11.0f) + close() + } + } + return _lottery!! + } + +private var _lottery: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Luggage.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Luggage.kt new file mode 100644 index 00000000..a39c7bb6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Luggage.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Luggage: ImageVector + get() { + if (_luggage != null) { + return _luggage!! + } + _luggage = fluentIcon(name = "Regular.Luggage") { + fluentPath { + moveTo(8.75f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(9.0f, 3.5f) + lineTo(9.0f, 5.0f) + horizontalLineToRelative(-0.75f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 5.0f, 8.25f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 1.35f, 0.83f, 2.51f, 2.0f, 3.0f) + verticalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(7.0f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.0f) + curveToRelative(1.17f, -0.49f, 2.0f, -1.65f, 2.0f, -3.0f) + verticalLineToRelative(-9.0f) + curveTo(19.0f, 6.45f, 17.54f, 5.0f, 15.75f, 5.0f) + lineTo(15.0f, 5.0f) + lineTo(15.0f, 3.5f) + horizontalLineToRelative(0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.5f) + close() + moveTo(13.5f, 3.5f) + lineTo(13.5f, 5.0f) + horizontalLineToRelative(-3.0f) + lineTo(10.5f, 3.5f) + horizontalLineToRelative(3.0f) + close() + moveTo(8.25f, 6.5f) + horizontalLineToRelative(7.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-7.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-9.0f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + close() + moveTo(8.0f, 9.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 9.75f) + close() + } + } + return _luggage!! + } + +private var _luggage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailAdd.kt new file mode 100644 index 00000000..9963cd88 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailAdd.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailAdd: ImageVector + get() { + if (_mailAdd != null) { + return _mailAdd!! + } + _mailAdd = fluentIcon(name = "Regular.MailAdd") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 7.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 7.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 6.0f) + lineTo(17.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + lineTo(18.0f, 6.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 7.0f) + close() + moveTo(20.5f, 16.75f) + verticalLineToRelative(-4.48f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(5.56f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(5.25f, 20.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 16.75f) + verticalLineToRelative(-9.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(5.25f, 4.0f) + horizontalLineToRelative(6.25f) + curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) + lineTo(5.25f, 5.5f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + lineToRelative(-0.01f, 0.15f) + verticalLineToRelative(0.43f) + lineToRelative(8.5f, 4.47f) + lineToRelative(1.3f, -0.68f) + curveToRelative(0.44f, 0.37f, 0.93f, 0.68f, 1.46f, 0.93f) + lineToRelative(-2.41f, 1.26f) + curveToRelative(-0.19f, 0.1f, -0.4f, 0.12f, -0.6f, 0.05f) + lineToRelative(-0.1f, -0.05f) + lineTo(3.5f, 9.37f) + verticalLineToRelative(7.38f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(13.5f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + close() + } + } + return _mailAdd!! + } + +private var _mailAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailAlert.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailAlert.kt new file mode 100644 index 00000000..98c0d887 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailAlert.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailAlert: ImageVector + get() { + if (_mailAlert != null) { + return _mailAlert!! + } + _mailAlert = fluentIcon(name = "Regular.MailAlert") { + fluentPath { + moveTo(17.5f, 1.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, 4.0f) + verticalLineToRelative(3.0f) + lineToRelative(-0.95f, 0.8f) + curveToRelative(-0.3f, 0.26f, -0.46f, 0.39f, -0.5f, 0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.24f, 0.65f) + curveToRelative(0.1f, 0.05f, 0.3f, 0.05f, 0.7f, 0.05f) + horizontalLineToRelative(9.02f) + curveToRelative(0.4f, 0.0f, 0.6f, 0.0f, 0.7f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.25f, -0.66f) + curveToRelative(-0.05f, -0.1f, -0.2f, -0.23f, -0.5f, -0.49f) + lineTo(21.5f, 8.0f) + lineTo(21.5f, 5.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, -4.0f) + close() + moveTo(19.0f, 11.0f) + curveToRelative(-0.22f, 0.58f, -0.8f, 1.0f, -1.5f, 1.0f) + curveToRelative(-0.69f, 0.0f, -1.28f, -0.42f, -1.5f, -1.0f) + horizontalLineToRelative(3.0f) + close() + moveTo(22.0f, 16.75f) + lineTo(22.0f, 11.0f) + horizontalLineToRelative(-1.5f) + verticalLineToRelative(5.89f) + curveToRelative(-0.08f, 0.9f, -0.83f, 1.61f, -1.75f, 1.61f) + lineTo(5.11f, 18.5f) + curveToRelative(-0.9f, -0.08f, -1.61f, -0.83f, -1.61f, -1.75f) + lineTo(3.5f, 9.37f) + lineToRelative(8.15f, 4.3f) + lineToRelative(0.1f, 0.04f) + curveToRelative(0.2f, 0.07f, 0.41f, 0.05f, 0.6f, -0.05f) + lineToRelative(3.1f, -1.63f) + curveToRelative(-0.16f, -0.2f, -0.3f, -0.43f, -0.39f, -0.68f) + lineToRelative(-0.13f, -0.35f) + horizontalLineToRelative(-0.74f) + lineTo(12.0f, 12.15f) + lineTo(3.5f, 7.68f) + lineTo(3.5f, 7.1f) + curveToRelative(0.08f, -0.9f, 0.83f, -1.61f, 1.75f, -1.61f) + horizontalLineToRelative(7.25f) + lineTo(12.5f, 5.0f) + curveToRelative(0.0f, -0.34f, 0.03f, -0.68f, 0.1f, -1.0f) + lineTo(5.07f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.26f) + verticalLineToRelative(9.68f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 5.26f, 20.0f) + horizontalLineToRelative(13.68f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 22.0f, 16.74f) + close() + } + } + return _mailAlert!! + } + +private var _mailAlert: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailAllRead.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailAllRead.kt new file mode 100644 index 00000000..d7225833 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailAllRead.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailAllRead: ImageVector + get() { + if (_mailAllRead != null) { + return _mailAllRead!! + } + _mailAllRead = fluentIcon(name = "Regular.MailAllRead") { + fluentPath { + moveTo(11.36f, 1.84f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.72f, 0.0f) + lineTo(2.83f, 6.1f) + arcTo(1.6f, 1.6f, 0.0f, false, false, 2.0f, 7.5f) + verticalLineToRelative(8.25f) + curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(20.0f, 7.5f) + arcToRelative(1.6f, 1.6f, 0.0f, false, false, -0.83f, -1.4f) + lineToRelative(-7.81f, -4.26f) + close() + moveTo(11.0f, 11.14f) + lineTo(3.86f, 7.26f) + lineTo(11.0f, 3.35f) + lineToRelative(7.14f, 3.9f) + lineToRelative(-7.14f, 3.9f) + close() + moveTo(11.36f, 12.66f) + lineTo(18.5f, 8.76f) + verticalLineToRelative(6.99f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(5.25f, 17.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(3.5f, 8.76f) + lineToRelative(7.14f, 3.9f) + curveToRelative(0.22f, 0.12f, 0.5f, 0.12f, 0.72f, 0.0f) + close() + moveTo(21.0f, 7.5f) + curveToRelative(0.9f, 0.58f, 1.5f, 1.59f, 1.5f, 2.74f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) + horizontalLineToRelative(-9.0f) + curveToRelative(-1.15f, 0.0f, -2.16f, -0.6f, -2.74f, -1.5f) + horizontalLineToRelative(11.74f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 21.0f, 16.25f) + lineTo(21.0f, 7.51f) + close() + } + } + return _mailAllRead!! + } + +private var _mailAllRead: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailArrowDoubleBack.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailArrowDoubleBack.kt new file mode 100644 index 00000000..bc21f157 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailArrowDoubleBack.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailArrowDoubleBack: ImageVector + get() { + if (_mailArrowDoubleBack != null) { + return _mailArrowDoubleBack!! + } + _mailArrowDoubleBack = fluentIcon(name = "Regular.MailArrowDoubleBack") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) + close() + moveTo(15.85f, 4.85f) + lineTo(14.21f, 6.5f) + lineToRelative(1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.7f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -0.7f) + lineToRelative(2.0f, -2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, 0.7f) + close() + moveTo(18.85f, 4.15f) + curveToRelative(0.2f, 0.2f, 0.2f, 0.5f, 0.0f, 0.7f) + lineTo(17.71f, 6.0f) + lineTo(20.0f, 6.0f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + lineTo(21.5f, 8.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-0.5f) + arcTo(0.5f, 0.5f, 0.0f, false, false, 20.0f, 7.0f) + horizontalLineToRelative(-2.3f) + lineToRelative(1.15f, 1.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.7f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -0.7f) + lineToRelative(2.0f, -2.0f) + curveToRelative(0.2f, -0.2f, 0.5f, -0.2f, 0.7f, 0.0f) + close() + moveTo(20.5f, 16.75f) + verticalLineToRelative(-4.48f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(5.56f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(5.25f, 20.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 16.75f) + verticalLineToRelative(-9.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(5.25f, 4.0f) + horizontalLineToRelative(6.25f) + curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) + lineTo(5.25f, 5.5f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + lineToRelative(-0.01f, 0.15f) + verticalLineToRelative(0.43f) + lineToRelative(8.5f, 4.47f) + lineToRelative(1.3f, -0.68f) + curveToRelative(0.44f, 0.37f, 0.93f, 0.68f, 1.46f, 0.93f) + lineToRelative(-2.41f, 1.26f) + curveToRelative(-0.19f, 0.1f, -0.4f, 0.12f, -0.6f, 0.05f) + lineToRelative(-0.1f, -0.05f) + lineTo(3.5f, 9.37f) + verticalLineToRelative(7.38f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(13.5f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + close() + } + } + return _mailArrowDoubleBack!! + } + +private var _mailArrowDoubleBack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailArrowUp.kt new file mode 100644 index 00000000..ff59b934 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailArrowUp.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailArrowUp: ImageVector + get() { + if (_mailArrowUp != null) { + return _mailArrowUp!! + } + _mailArrowUp = fluentIcon(name = "Regular.MailArrowUp") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(17.0f, 4.7f) + verticalLineToRelative(4.8f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + lineTo(18.0f, 4.7f) + lineToRelative(1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineTo(17.0f, 4.71f) + close() + moveTo(20.5f, 16.75f) + verticalLineToRelative(-4.48f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(5.56f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(5.25f, 20.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 16.75f) + verticalLineToRelative(-9.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(5.25f, 4.0f) + horizontalLineToRelative(6.25f) + curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) + lineTo(5.25f, 5.5f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + lineToRelative(-0.01f, 0.15f) + verticalLineToRelative(0.43f) + lineToRelative(8.5f, 4.47f) + lineToRelative(1.3f, -0.68f) + curveToRelative(0.44f, 0.37f, 0.93f, 0.68f, 1.46f, 0.93f) + lineToRelative(-2.41f, 1.26f) + curveToRelative(-0.19f, 0.1f, -0.4f, 0.12f, -0.6f, 0.05f) + lineToRelative(-0.1f, -0.05f) + lineTo(3.5f, 9.37f) + verticalLineToRelative(7.38f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(13.5f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + close() + } + } + return _mailArrowUp!! + } + +private var _mailArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailAttach.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailAttach.kt new file mode 100644 index 00000000..27994db2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailAttach.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailAttach: ImageVector + get() { + if (_mailAttach != null) { + return _mailAttach!! + } + _mailAttach = fluentIcon(name = "Regular.MailAttach") { + fluentPath { + moveTo(17.95f, 4.1f) + arcToRelative(2.08f, 2.08f, 0.0f, false, true, 2.94f, 2.94f) + arcToRelative(0.76f, 0.76f, 0.0f, false, false, -0.07f, 0.08f) + lineToRelative(-4.18f, 4.18f) + arcToRelative(0.67f, 0.67f, 0.0f, false, true, -0.95f, -0.95f) + lineToRelative(3.83f, -3.82f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-3.83f, 3.82f) + arcToRelative(2.17f, 2.17f, 0.0f, true, false, 3.07f, 3.07f) + lineToRelative(4.32f, -4.32f) + arcToRelative(3.58f, 3.58f, 0.0f, false, false, -5.13f, -5.0f) + lineToRelative(-3.67f, 3.68f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(3.67f, -3.68f) + close() + moveTo(13.08f, 11.58f) + lineTo(12.0f, 12.15f) + lineTo(3.5f, 7.68f) + lineTo(3.5f, 7.1f) + curveToRelative(0.08f, -0.9f, 0.83f, -1.6f, 1.75f, -1.6f) + horizontalLineToRelative(7.77f) + lineToRelative(1.5f, -1.5f) + lineTo(5.06f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(9.68f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 3.25f, 3.06f) + horizontalLineToRelative(13.68f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 3.06f, -3.25f) + lineTo(21.99f, 9.48f) + lineToRelative(-1.5f, 1.5f) + verticalLineToRelative(5.91f) + curveToRelative(-0.08f, 0.9f, -0.83f, 1.6f, -1.75f, 1.6f) + lineTo(5.11f, 18.49f) + curveToRelative(-0.9f, -0.08f, -1.61f, -0.83f, -1.61f, -1.75f) + lineTo(3.5f, 9.37f) + lineToRelative(8.15f, 4.29f) + lineToRelative(0.1f, 0.04f) + curveToRelative(0.19f, 0.07f, 0.4f, 0.06f, 0.6f, -0.04f) + lineToRelative(1.42f, -0.75f) + curveToRelative(-0.34f, -0.4f, -0.57f, -0.85f, -0.69f, -1.33f) + close() + } + } + return _mailAttach!! + } + +private var _mailAttach: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailCheckmark.kt new file mode 100644 index 00000000..58cd6779 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailCheckmark.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailCheckmark: ImageVector + get() { + if (_mailCheckmark != null) { + return _mailCheckmark!! + } + _mailCheckmark = fluentIcon(name = "Regular.MailCheckmark") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.85f, 4.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineTo(16.5f, 7.79f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + moveTo(20.5f, 16.75f) + verticalLineToRelative(-4.48f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(5.56f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(5.25f, 20.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 16.75f) + verticalLineToRelative(-9.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(5.25f, 4.0f) + horizontalLineToRelative(6.25f) + curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) + lineTo(5.25f, 5.5f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + lineToRelative(-0.01f, 0.15f) + verticalLineToRelative(0.43f) + lineToRelative(8.5f, 4.47f) + lineToRelative(1.3f, -0.68f) + curveToRelative(0.44f, 0.37f, 0.93f, 0.68f, 1.46f, 0.93f) + lineToRelative(-2.41f, 1.26f) + curveToRelative(-0.19f, 0.1f, -0.4f, 0.12f, -0.6f, 0.05f) + lineToRelative(-0.1f, -0.05f) + lineTo(3.5f, 9.37f) + verticalLineToRelative(7.38f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(13.5f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + close() + } + } + return _mailCheckmark!! + } + +private var _mailCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailClock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailClock.kt new file mode 100644 index 00000000..7ee9ac11 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailClock.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailClock: ImageVector + get() { + if (_mailClock != null) { + return _mailClock!! + } + _mailClock = fluentIcon(name = "Regular.MailClock") { + fluentPath { + moveTo(17.5f, 1.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(19.5f, 6.5f) + horizontalLineToRelative(-2.0f) + lineTo(17.5f, 4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + close() + moveTo(20.5f, 16.75f) + verticalLineToRelative(-4.48f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(5.56f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(5.25f, 20.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 16.75f) + verticalLineToRelative(-9.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(5.25f, 4.0f) + horizontalLineToRelative(6.25f) + curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) + lineTo(5.25f, 5.5f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + lineToRelative(-0.01f, 0.15f) + verticalLineToRelative(0.43f) + lineToRelative(8.5f, 4.47f) + lineToRelative(1.3f, -0.68f) + curveToRelative(0.44f, 0.37f, 0.93f, 0.68f, 1.46f, 0.93f) + lineToRelative(-2.41f, 1.26f) + curveToRelative(-0.19f, 0.1f, -0.4f, 0.12f, -0.6f, 0.05f) + lineToRelative(-0.1f, -0.05f) + lineTo(3.5f, 9.37f) + verticalLineToRelative(7.38f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(13.5f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + close() + } + } + return _mailClock!! + } + +private var _mailClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailCopy.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailCopy.kt new file mode 100644 index 00000000..a3276816 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailCopy.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailCopy: ImageVector + get() { + if (_mailCopy != null) { + return _mailCopy!! + } + _mailCopy = fluentIcon(name = "Regular.MailCopy") { + fluentPath { + moveTo(3.0f, 7.51f) + curveToRelative(-0.9f, 0.58f, -1.5f, 1.59f, -1.5f, 2.74f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 2.9f, 2.35f, 5.25f, 5.25f, 5.25f) + horizontalLineToRelative(9.0f) + curveToRelative(1.15f, 0.0f, 2.16f, -0.6f, 2.74f, -1.5f) + lineTo(6.75f, 20.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 3.0f, 16.25f) + lineTo(3.0f, 7.51f) + close() + moveTo(18.75f, 4.0f) + lineTo(7.25f, 4.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.24f, 3.07f) + lineTo(4.0f, 7.25f) + verticalLineToRelative(8.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 3.07f, 3.24f) + lineToRelative(0.18f, 0.01f) + horizontalLineToRelative(11.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 3.24f, -3.07f) + lineToRelative(0.01f, -0.18f) + verticalLineToRelative(-8.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.07f, -3.24f) + lineTo(18.75f, 4.0f) + close() + moveTo(5.5f, 8.9f) + lineToRelative(7.15f, 3.76f) + curveToRelative(0.19f, 0.1f, 0.4f, 0.12f, 0.6f, 0.05f) + lineToRelative(0.1f, -0.05f) + lineTo(20.5f, 8.9f) + verticalLineToRelative(6.85f) + curveToRelative(0.0f, 0.92f, -0.7f, 1.67f, -1.6f, 1.74f) + lineToRelative(-0.15f, 0.01f) + lineTo(7.25f, 17.5f) + curveToRelative(-0.92f, 0.0f, -1.67f, -0.7f, -1.74f, -1.6f) + lineToRelative(-0.01f, -0.15f) + lineTo(5.5f, 8.9f) + close() + moveTo(7.25f, 5.5f) + horizontalLineToRelative(11.5f) + curveToRelative(0.92f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) + verticalLineToRelative(0.1f) + lineTo(13.0f, 11.16f) + lineTo(5.5f, 7.2f) + curveToRelative(0.02f, -0.94f, 0.8f, -1.7f, 1.75f, -1.7f) + close() + } + } + return _mailCopy!! + } + +private var _mailCopy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailDismiss.kt new file mode 100644 index 00000000..3df2b87f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailDismiss.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailDismiss: ImageVector + get() { + if (_mailDismiss != null) { + return _mailDismiss!! + } + _mailDismiss = fluentIcon(name = "Regular.MailDismiss") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 4.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineTo(18.21f, 6.5f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineTo(17.5f, 5.79f) + lineToRelative(-1.65f, -1.64f) + close() + moveTo(20.5f, 16.75f) + verticalLineToRelative(-4.48f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(5.56f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(5.25f, 20.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 16.75f) + verticalLineToRelative(-9.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(5.25f, 4.0f) + horizontalLineToRelative(6.25f) + curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) + lineTo(5.25f, 5.5f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + lineToRelative(-0.01f, 0.15f) + verticalLineToRelative(0.43f) + lineToRelative(8.5f, 4.47f) + lineToRelative(1.3f, -0.68f) + curveToRelative(0.44f, 0.37f, 0.93f, 0.68f, 1.46f, 0.93f) + lineToRelative(-2.41f, 1.26f) + curveToRelative(-0.19f, 0.1f, -0.4f, 0.12f, -0.6f, 0.05f) + lineToRelative(-0.1f, -0.05f) + lineTo(3.5f, 9.37f) + verticalLineToRelative(7.38f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(13.5f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + close() + } + } + return _mailDismiss!! + } + +private var _mailDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailEdit.kt new file mode 100644 index 00000000..a5d62afa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailEdit.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailEdit: ImageVector + get() { + if (_mailEdit != null) { + return _mailEdit!! + } + _mailEdit = fluentIcon(name = "Regular.MailEdit") { + fluentPath { + moveTo(18.75f, 3.0f) + lineTo(5.07f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 6.26f) + verticalLineToRelative(9.68f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 5.26f, 19.0f) + horizontalLineToRelative(6.47f) + curveToRelative(0.18f, -0.42f, 0.44f, -0.8f, 0.77f, -1.14f) + lineToRelative(0.37f, -0.36f) + lineTo(5.1f, 17.5f) + curveToRelative(-0.9f, -0.08f, -1.61f, -0.83f, -1.61f, -1.75f) + lineTo(3.49f, 8.37f) + lineToRelative(8.15f, 4.3f) + lineToRelative(0.1f, 0.04f) + curveToRelative(0.2f, 0.07f, 0.41f, 0.05f, 0.6f, -0.05f) + lineToRelative(8.15f, -4.29f) + verticalLineToRelative(2.64f) + arcToRelative(3.3f, 3.3f, 0.0f, false, true, 1.5f, 0.25f) + lineTo(21.99f, 6.07f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 18.74f, 3.0f) + close() + moveTo(5.25f, 4.5f) + horizontalLineToRelative(13.64f) + curveToRelative(0.9f, 0.08f, 1.61f, 0.83f, 1.61f, 1.75f) + verticalLineToRelative(0.43f) + lineTo(12.0f, 11.15f) + lineTo(3.5f, 6.68f) + lineTo(3.5f, 6.1f) + curveToRelative(0.08f, -0.9f, 0.83f, -1.61f, 1.75f, -1.61f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _mailEdit!! + } + +private var _mailEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailError.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailError.kt new file mode 100644 index 00000000..729806d2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailError.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailError: ImageVector + get() { + if (_mailError != null) { + return _mailError!! + } + _mailError = fluentIcon(name = "Regular.MailError") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(17.5f, 3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(17.5f, 10.13f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.24f) + close() + moveTo(20.5f, 16.75f) + verticalLineToRelative(-4.48f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(5.56f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(5.25f, 20.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 16.75f) + verticalLineToRelative(-9.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(5.25f, 4.0f) + horizontalLineToRelative(6.25f) + curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) + lineTo(5.25f, 5.5f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + lineToRelative(-0.01f, 0.15f) + verticalLineToRelative(0.43f) + lineToRelative(8.5f, 4.47f) + lineToRelative(1.3f, -0.68f) + curveToRelative(0.44f, 0.37f, 0.93f, 0.68f, 1.46f, 0.93f) + lineToRelative(-2.41f, 1.26f) + curveToRelative(-0.19f, 0.1f, -0.4f, 0.12f, -0.6f, 0.05f) + lineToRelative(-0.1f, -0.05f) + lineTo(3.5f, 9.37f) + verticalLineToRelative(7.38f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(13.5f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + close() + } + } + return _mailError!! + } + +private var _mailError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailInbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailInbox.kt new file mode 100644 index 00000000..d7c470ff --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailInbox.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailInbox: ImageVector + get() { + if (_mailInbox != null) { + return _mailInbox!! + } + _mailInbox = fluentIcon(name = "Regular.MailInbox") { + fluentPath { + moveTo(6.25f, 3.0f) + horizontalLineToRelative(11.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.24f, 3.07f) + lineToRelative(0.01f, 0.18f) + verticalLineToRelative(11.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(6.25f, 21.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(3.0f, 17.75f) + lineTo(3.0f, 6.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(6.25f, 3.0f) + horizontalLineToRelative(11.5f) + horizontalLineToRelative(-11.5f) + close() + moveTo(4.5f, 14.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(11.5f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + lineTo(19.5f, 14.5f) + horizontalLineToRelative(-3.82f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.48f, 3.0f) + lineTo(12.0f, 17.5f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.63f, -2.81f) + lineToRelative(-0.04f, -0.19f) + lineTo(4.5f, 14.5f) + verticalLineToRelative(3.25f) + verticalLineToRelative(-3.25f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + lineToRelative(-0.01f, 0.15f) + lineTo(4.5f, 13.0f) + lineTo(9.0f, 13.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.15f) + verticalLineToRelative(-0.15f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineTo(15.0f, 13.0f) + horizontalLineToRelative(4.5f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.92f, -0.7f, -1.67f, -1.6f, -1.74f) + lineToRelative(-0.15f, -0.01f) + close() + } + } + return _mailInbox!! + } + +private var _mailInbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailInboxAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailInboxAdd.kt new file mode 100644 index 00000000..8ee2ed24 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailInboxAdd.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailInboxAdd: ImageVector + get() { + if (_mailInboxAdd != null) { + return _mailInboxAdd!! + } + _mailInboxAdd = fluentIcon(name = "Regular.MailInboxAdd") { + fluentPath { + moveTo(22.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(17.0f, 7.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(16.0f, 7.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(16.0f, 6.0f) + lineTo(16.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + lineTo(17.0f, 6.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + lineTo(17.0f, 7.0f) + close() + moveTo(19.5f, 14.0f) + verticalLineToRelative(-1.73f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(7.56f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(6.25f, 22.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(3.0f, 18.75f) + lineTo(3.0f, 7.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(6.25f, 4.0f) + horizontalLineToRelative(4.25f) + curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) + lineTo(6.25f, 5.5f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + lineToRelative(-0.01f, 0.15f) + lineTo(4.5f, 14.0f) + lineTo(9.0f, 14.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.15f) + verticalLineToRelative(-0.15f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineTo(15.0f, 14.0f) + horizontalLineToRelative(4.5f) + close() + moveTo(4.5f, 15.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(11.5f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + lineTo(19.5f, 15.5f) + horizontalLineToRelative(-3.82f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.48f, 3.0f) + lineTo(12.0f, 18.5f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.63f, -2.81f) + lineToRelative(-0.04f, -0.19f) + lineTo(4.5f, 15.5f) + close() + } + } + return _mailInboxAdd!! + } + +private var _mailInboxAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailInboxAll.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailInboxAll.kt new file mode 100644 index 00000000..7f7dbed2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailInboxAll.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailInboxAll: ImageVector + get() { + if (_mailInboxAll != null) { + return _mailInboxAll!! + } + _mailInboxAll = fluentIcon(name = "Regular.MailInboxAll") { + fluentPath { + moveTo(6.25f, 3.0f) + horizontalLineToRelative(11.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.24f, 3.07f) + lineToRelative(0.01f, 0.18f) + verticalLineToRelative(11.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(6.25f, 21.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(3.0f, 17.75f) + lineTo(3.0f, 6.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(6.25f, 3.0f) + close() + moveTo(8.33f, 14.5f) + lineTo(4.5f, 14.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(11.5f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + lineTo(19.5f, 14.5f) + horizontalLineToRelative(-3.82f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.48f, 3.0f) + lineTo(12.0f, 17.5f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.63f, -2.81f) + lineToRelative(-0.04f, -0.19f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + lineToRelative(-0.01f, 0.15f) + lineTo(4.5f, 13.0f) + lineTo(9.0f, 13.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.15f) + verticalLineToRelative(-0.15f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineTo(15.0f, 13.0f) + horizontalLineToRelative(4.5f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.92f, -0.7f, -1.67f, -1.6f, -1.74f) + lineToRelative(-0.15f, -0.01f) + close() + moveTo(6.75f, 9.5f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(10.6f) + horizontalLineToRelative(-10.5f) + close() + moveTo(6.75f, 6.5f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(10.6f) + horizontalLineToRelative(-10.5f) + close() + } + } + return _mailInboxAll!! + } + +private var _mailInboxAll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailInboxArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailInboxArrowRight.kt new file mode 100644 index 00000000..f0c2a263 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailInboxArrowRight.kt @@ -0,0 +1,98 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailInboxArrowRight: ImageVector + get() { + if (_mailInboxArrowRight != null) { + return _mailInboxArrowRight!! + } + _mailInboxArrowRight = fluentIcon(name = "Regular.MailInboxArrowRight") { + fluentPath { + moveTo(10.5f, 4.0f) + curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) + lineTo(6.25f, 5.5f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + lineToRelative(-0.01f, 0.15f) + lineTo(4.5f, 14.0f) + lineTo(9.0f, 14.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.15f) + verticalLineToRelative(-0.15f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineTo(15.0f, 14.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(-1.73f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(7.56f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(6.25f, 22.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(3.0f, 18.75f) + lineTo(3.0f, 7.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(6.25f, 4.0f) + horizontalLineToRelative(4.25f) + close() + moveTo(19.5f, 15.5f) + horizontalLineToRelative(-3.82f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.48f, 3.0f) + lineTo(12.0f, 18.5f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.67f, -3.0f) + lineTo(4.5f, 15.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(11.5f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + lineTo(19.5f, 15.5f) + close() + moveTo(16.5f, 1.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(16.72f, 3.59f) + lineTo(16.65f, 3.65f) + lineTo(16.59f, 3.72f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) + lineToRelative(0.06f, 0.07f) + lineTo(18.29f, 6.0f) + horizontalLineToRelative(-5.38f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + lineToRelative(-0.01f, 0.09f) + verticalLineToRelative(0.09f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + lineTo(13.0f, 7.0f) + horizontalLineToRelative(5.3f) + lineToRelative(-1.65f, 1.65f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(0.06f, -0.07f) + lineToRelative(2.54f, -2.54f) + lineToRelative(0.04f, -0.05f) + lineToRelative(0.03f, -0.07f) + lineToRelative(0.02f, -0.06f) + lineToRelative(0.02f, -0.08f) + verticalLineToRelative(-0.1f) + lineToRelative(-0.02f, -0.08f) + lineToRelative(-0.03f, -0.08f) + lineToRelative(-0.04f, -0.07f) + lineToRelative(-0.04f, -0.06f) + lineToRelative(-2.52f, -2.51f) + lineToRelative(-0.07f, -0.06f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.56f, 0.0f) + close() + } + } + return _mailInboxArrowRight!! + } + +private var _mailInboxArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailInboxArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailInboxArrowUp.kt new file mode 100644 index 00000000..0aa98123 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailInboxArrowUp.kt @@ -0,0 +1,98 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailInboxArrowUp: ImageVector + get() { + if (_mailInboxArrowUp != null) { + return _mailInboxArrowUp!! + } + _mailInboxArrowUp = fluentIcon(name = "Regular.MailInboxArrowUp") { + fluentPath { + moveTo(10.5f, 4.0f) + curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) + lineTo(6.25f, 5.5f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + lineToRelative(-0.01f, 0.15f) + lineTo(4.5f, 14.0f) + lineTo(9.0f, 14.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineTo(15.0f, 14.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(-1.73f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(7.56f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(6.25f, 22.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(3.0f, 18.75f) + lineTo(3.0f, 7.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(6.25f, 4.0f) + horizontalLineToRelative(4.25f) + close() + moveTo(8.33f, 15.5f) + lineTo(4.5f, 15.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(11.5f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + lineTo(19.5f, 15.5f) + horizontalLineToRelative(-3.82f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.48f, 3.0f) + lineTo(12.0f, 18.5f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.63f, -2.81f) + lineToRelative(-0.04f, -0.19f) + close() + moveTo(16.5f, 1.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(16.63f, 3.02f) + lineTo(16.54f, 3.0f) + horizontalLineToRelative(-0.11f) + lineToRelative(-0.06f, 0.02f) + lineToRelative(-0.08f, 0.03f) + lineToRelative(-0.07f, 0.04f) + lineToRelative(-0.06f, 0.04f) + lineToRelative(-2.51f, 2.52f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) + lineToRelative(0.06f, 0.07f) + lineToRelative(0.07f, 0.06f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) + lineToRelative(0.07f, -0.06f) + lineTo(16.0f, 4.71f) + verticalLineToRelative(5.38f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + lineToRelative(0.09f, 0.01f) + horizontalLineToRelative(0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + lineTo(17.0f, 10.0f) + lineTo(17.0f, 4.7f) + lineToRelative(1.65f, 1.65f) + lineToRelative(0.07f, 0.06f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-0.07f, -0.06f) + lineToRelative(-2.54f, -2.55f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.07f, -0.03f) + lineToRelative(-0.06f, -0.02f) + close() + } + } + return _mailInboxArrowUp!! + } + +private var _mailInboxArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailInboxCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailInboxCheckmark.kt new file mode 100644 index 00000000..2bdc2302 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailInboxCheckmark.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailInboxCheckmark: ImageVector + get() { + if (_mailInboxCheckmark != null) { + return _mailInboxCheckmark!! + } + _mailInboxCheckmark = fluentIcon(name = "Regular.MailInboxCheckmark") { + fluentPath { + moveTo(22.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(19.85f, 4.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineTo(15.5f, 7.79f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + moveTo(19.5f, 12.27f) + lineTo(19.5f, 14.0f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + verticalLineToRelative(0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, -0.15f) + verticalLineToRelative(-0.1f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 9.0f, 14.0f) + lineTo(4.5f, 14.0f) + lineTo(4.5f, 7.11f) + curveToRelative(0.08f, -0.9f, 0.83f, -1.61f, 1.75f, -1.61f) + horizontalLineToRelative(3.83f) + curveToRelative(0.08f, -0.52f, 0.22f, -1.03f, 0.42f, -1.5f) + lineTo(6.07f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 7.26f) + verticalLineToRelative(11.68f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 6.26f, 22.0f) + horizontalLineToRelative(11.68f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 21.0f, 18.74f) + verticalLineToRelative(-7.56f) + curveToRelative(-0.44f, 0.43f, -0.95f, 0.8f, -1.5f, 1.08f) + close() + moveTo(4.5f, 18.75f) + lineTo(4.5f, 15.5f) + horizontalLineToRelative(3.83f) + lineToRelative(0.04f, 0.19f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 12.0f, 18.5f) + horizontalLineToRelative(0.2f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 3.48f, -3.0f) + horizontalLineToRelative(3.82f) + verticalLineToRelative(3.39f) + curveToRelative(-0.08f, 0.9f, -0.83f, 1.61f, -1.75f, 1.61f) + lineTo(6.11f, 20.5f) + curveToRelative(-0.9f, -0.08f, -1.61f, -0.83f, -1.61f, -1.75f) + close() + } + } + return _mailInboxCheckmark!! + } + +private var _mailInboxCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailInboxDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailInboxDismiss.kt new file mode 100644 index 00000000..24608879 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailInboxDismiss.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailInboxDismiss: ImageVector + get() { + if (_mailInboxDismiss != null) { + return _mailInboxDismiss!! + } + _mailInboxDismiss = fluentIcon(name = "Regular.MailInboxDismiss") { + fluentPath { + moveTo(22.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.85f, 4.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineTo(17.21f, 6.5f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineTo(16.5f, 5.79f) + lineToRelative(-1.65f, -1.64f) + close() + moveTo(19.5f, 14.0f) + verticalLineToRelative(-1.73f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(7.56f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(6.25f, 22.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(3.0f, 18.75f) + lineTo(3.0f, 7.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(6.25f, 4.0f) + horizontalLineToRelative(4.25f) + curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) + lineTo(6.25f, 5.5f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + lineToRelative(-0.01f, 0.15f) + lineTo(4.5f, 14.0f) + lineTo(9.0f, 14.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.15f) + verticalLineToRelative(-0.15f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineTo(15.0f, 14.0f) + horizontalLineToRelative(4.5f) + close() + moveTo(4.5f, 15.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(11.5f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + lineTo(19.5f, 15.5f) + horizontalLineToRelative(-3.82f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.48f, 3.0f) + lineTo(12.0f, 18.5f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.63f, -2.81f) + lineToRelative(-0.04f, -0.19f) + lineTo(4.5f, 15.5f) + close() + } + } + return _mailInboxDismiss!! + } + +private var _mailInboxDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailLink.kt new file mode 100644 index 00000000..875fe9f7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailLink.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailLink: ImageVector + get() { + if (_mailLink != null) { + return _mailLink!! + } + _mailLink = fluentIcon(name = "Regular.MailLink") { + fluentPath { + moveTo(23.0f, 6.75f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 19.25f, 3.0f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + verticalLineToRelative(-0.01f) + horizontalLineToRelative(0.2f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 6.74f) + close() + moveTo(16.5f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-0.2f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(20.0f, 6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(5.25f, 4.0f) + horizontalLineToRelative(6.63f) + curveToRelative(-0.32f, 0.45f, -0.57f, 0.95f, -0.71f, 1.5f) + lineTo(5.25f, 5.5f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + lineToRelative(-0.01f, 0.15f) + verticalLineToRelative(0.43f) + lineToRelative(8.5f, 4.47f) + lineToRelative(1.93f, -1.01f) + curveToRelative(0.56f, 0.23f, 1.17f, 0.36f, 1.82f, 0.36f) + horizontalLineToRelative(0.7f) + lineToRelative(-4.1f, 2.16f) + curveToRelative(-0.19f, 0.1f, -0.4f, 0.12f, -0.6f, 0.05f) + lineToRelative(-0.1f, -0.05f) + lineTo(3.5f, 9.37f) + verticalLineToRelative(7.38f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(13.5f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + verticalLineToRelative(-5.42f) + curveToRelative(0.55f, -0.14f, 1.05f, -0.39f, 1.5f, -0.7f) + verticalLineToRelative(6.12f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(5.25f, 20.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 16.75f) + verticalLineToRelative(-9.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(5.25f, 4.0f) + close() + } + } + return _mailLink!! + } + +private var _mailLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailList.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailList.kt new file mode 100644 index 00000000..276a3b43 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailList.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailList: ImageVector + get() { + if (_mailList != null) { + return _mailList!! + } + _mailList = fluentIcon(name = "Regular.MailList") { + fluentPath { + moveTo(12.53f, 4.0f) + lineTo(5.07f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.26f) + verticalLineToRelative(9.68f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 5.26f, 20.0f) + horizontalLineToRelative(13.68f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 22.0f, 16.74f) + lineTo(22.0f, 9.33f) + curveToRelative(-0.23f, 0.11f, -0.48f, 0.17f, -0.75f, 0.17f) + horizontalLineToRelative(-0.75f) + verticalLineToRelative(7.39f) + curveToRelative(-0.08f, 0.9f, -0.83f, 1.61f, -1.75f, 1.61f) + lineTo(5.11f, 18.5f) + curveToRelative(-0.9f, -0.08f, -1.61f, -0.83f, -1.61f, -1.75f) + lineTo(3.5f, 9.37f) + lineToRelative(8.15f, 4.3f) + lineToRelative(0.1f, 0.04f) + curveToRelative(0.2f, 0.07f, 0.41f, 0.05f, 0.6f, -0.05f) + lineToRelative(7.9f, -4.16f) + horizontalLineToRelative(-3.21f) + lineTo(12.0f, 12.15f) + lineTo(3.5f, 7.68f) + lineTo(3.5f, 7.1f) + curveToRelative(0.08f, -0.9f, 0.83f, -1.61f, 1.75f, -1.61f) + horizontalLineToRelative(6.77f) + arcToRelative(1.76f, 1.76f, 0.0f, false, true, 0.5f, -1.5f) + close() + moveTo(21.25f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.75f) + horizontalLineToRelative(7.5f) + close() + moveTo(21.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + horizontalLineToRelative(-7.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, -1.5f) + horizontalLineToRelative(7.5f) + close() + moveTo(13.0f, 7.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _mailList!! + } + +private var _mailList: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailMultiple.kt new file mode 100644 index 00000000..16427a8e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailMultiple.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailMultiple: ImageVector + get() { + if (_mailMultiple != null) { + return _mailMultiple!! + } + _mailMultiple = fluentIcon(name = "Regular.MailMultiple") { + fluentPath { + moveTo(21.0f, 7.51f) + curveToRelative(0.9f, 0.58f, 1.5f, 1.59f, 1.5f, 2.74f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) + horizontalLineToRelative(-9.0f) + curveToRelative(-1.15f, 0.0f, -2.16f, -0.6f, -2.74f, -1.5f) + horizontalLineToRelative(11.74f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 21.0f, 16.25f) + lineTo(21.0f, 7.51f) + close() + moveTo(5.25f, 4.0f) + horizontalLineToRelative(11.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.24f, 3.07f) + lineToRelative(0.01f, 0.18f) + verticalLineToRelative(8.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(5.25f, 19.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 15.75f) + verticalLineToRelative(-8.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(5.25f, 4.0f) + close() + moveTo(18.5f, 8.9f) + lineToRelative(-7.15f, 3.76f) + curveToRelative(-0.19f, 0.1f, -0.4f, 0.12f, -0.6f, 0.05f) + lineToRelative(-0.1f, -0.05f) + lineTo(3.5f, 8.9f) + verticalLineToRelative(6.85f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(11.5f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + lineTo(18.5f, 8.9f) + close() + moveTo(16.75f, 5.5f) + lineTo(5.25f, 5.5f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + verticalLineToRelative(0.1f) + lineTo(11.0f, 11.16f) + lineToRelative(7.5f, -3.95f) + curveToRelative(-0.02f, -0.94f, -0.8f, -1.7f, -1.75f, -1.7f) + close() + } + } + return _mailMultiple!! + } + +private var _mailMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailOff.kt new file mode 100644 index 00000000..4656bfde --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailOff.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailOff: ImageVector + get() { + if (_mailOff != null) { + return _mailOff!! + } + _mailOff = fluentIcon(name = "Regular.MailOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.25f, 1.25f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(9.68f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 5.26f, 20.0f) + horizontalLineToRelative(13.68f) + lineToRelative(1.79f, 1.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(17.44f, 18.5f) + lineTo(5.1f, 18.5f) + curveToRelative(-0.9f, -0.08f, -1.61f, -0.83f, -1.61f, -1.75f) + lineTo(3.49f, 9.37f) + lineToRelative(8.15f, 4.3f) + lineToRelative(0.1f, 0.04f) + curveToRelative(0.2f, 0.07f, 0.41f, 0.05f, 0.6f, -0.05f) + lineToRelative(0.17f, -0.08f) + lineToRelative(4.92f, 4.92f) + close() + moveTo(10.08f, 11.14f) + lineTo(3.5f, 7.68f) + lineTo(3.5f, 7.1f) + curveToRelative(0.06f, -0.67f, 0.49f, -1.23f, 1.07f, -1.47f) + lineToRelative(5.51f, 5.5f) + close() + moveTo(20.5f, 7.68f) + lineTo(14.18f, 11.0f) + lineToRelative(1.11f, 1.11f) + lineToRelative(5.21f, -2.74f) + verticalLineToRelative(7.52f) + lineToRelative(-0.07f, 0.36f) + lineToRelative(1.13f, 1.13f) + curveToRelative(0.28f, -0.48f, 0.44f, -1.04f, 0.44f, -1.63f) + lineTo(22.0f, 7.07f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 18.74f, 4.0f) + lineTo(7.18f, 4.0f) + lineToRelative(1.5f, 1.5f) + lineTo(18.9f, 5.5f) + curveToRelative(0.9f, 0.08f, 1.61f, 0.83f, 1.61f, 1.75f) + verticalLineToRelative(0.43f) + close() + } + } + return _mailOff!! + } + +private var _mailOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailOpenPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailOpenPerson.kt new file mode 100644 index 00000000..88a42e20 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailOpenPerson.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailOpenPerson: ImageVector + get() { + if (_mailOpenPerson != null) { + return _mailOpenPerson!! + } + _mailOpenPerson = fluentIcon(name = "Regular.MailOpenPerson") { + fluentPath { + moveTo(12.0f, 3.62f) + lineTo(3.9f, 8.43f) + lineToRelative(8.1f, 4.22f) + lineToRelative(8.23f, -4.22f) + lineTo(12.0f, 3.62f) + close() + moveTo(11.83f, 14.23f) + arcToRelative(0.83f, 0.83f, 0.0f, false, true, -0.19f, -0.07f) + lineTo(3.5f, 9.91f) + verticalLineToRelative(6.84f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(8.06f) + curveToRelative(-0.2f, 0.38f, -0.31f, 0.81f, -0.31f, 1.27f) + verticalLineToRelative(0.1f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 0.13f) + lineTo(5.25f, 20.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 16.75f) + lineTo(2.0f, 9.1f) + curveToRelative(0.0f, -0.73f, 0.36f, -1.42f, 0.96f, -1.84f) + lineToRelative(0.14f, -0.1f) + lineToRelative(8.5f, -5.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.78f, 0.0f) + lineToRelative(9.0f, 5.26f) + curveToRelative(0.85f, 0.5f, 0.82f, 1.74f, -0.06f, 2.19f) + lineTo(18.52f, 11.0f) + horizontalLineToRelative(-0.02f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -2.85f, 1.47f) + lineToRelative(-3.3f, 1.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.52f, 0.06f) + close() + moveTo(21.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(23.0f, 19.88f) + curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) + reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.88f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.99f, 0.8f, -1.78f, 1.77f, -1.78f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _mailOpenPerson!! + } + +private var _mailOpenPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailProhibited.kt new file mode 100644 index 00000000..4420ba8a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailProhibited.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailProhibited: ImageVector + get() { + if (_mailProhibited != null) { + return _mailProhibited!! + } + _mailProhibited = fluentIcon(name = "Regular.MailProhibited") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(13.5f, 6.5f) + curveToRelative(0.0f, 0.83f, 0.26f, 1.6f, 0.7f, 2.25f) + lineToRelative(5.55f, -5.56f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) + close() + moveTo(17.5f, 10.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) + lineToRelative(-5.55f, 5.56f) + curveToRelative(0.64f, 0.43f, 1.42f, 0.69f, 2.25f, 0.69f) + close() + moveTo(20.5f, 16.75f) + verticalLineToRelative(-4.48f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(5.56f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(5.25f, 20.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 16.75f) + verticalLineToRelative(-9.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(5.25f, 4.0f) + horizontalLineToRelative(6.25f) + curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) + lineTo(5.25f, 5.5f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + lineToRelative(-0.01f, 0.15f) + verticalLineToRelative(0.43f) + lineToRelative(8.5f, 4.47f) + lineToRelative(1.3f, -0.68f) + curveToRelative(0.44f, 0.37f, 0.93f, 0.68f, 1.46f, 0.93f) + lineToRelative(-2.41f, 1.26f) + curveToRelative(-0.19f, 0.1f, -0.4f, 0.12f, -0.6f, 0.05f) + lineToRelative(-0.1f, -0.05f) + lineTo(3.5f, 9.37f) + verticalLineToRelative(7.38f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(13.5f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + close() + } + } + return _mailProhibited!! + } + +private var _mailProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailRead.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailRead.kt new file mode 100644 index 00000000..a274cbfa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailRead.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailRead: ImageVector + get() { + if (_mailRead != null) { + return _mailRead!! + } + _mailRead = fluentIcon(name = "Regular.MailRead") { + fluentPath { + moveToRelative(3.1f, 8.17f) + lineToRelative(8.52f, -5.06f) + curveToRelative(0.2f, -0.13f, 0.44f, -0.14f, 0.66f, -0.06f) + lineToRelative(0.1f, 0.06f) + lineToRelative(8.52f, 5.06f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 22.0f, 9.93f) + verticalLineToRelative(7.82f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(5.25f, 21.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 17.75f) + lineTo(2.0f, 10.1f) + curveToRelative(0.0f, -0.73f, 0.36f, -1.42f, 0.96f, -1.84f) + lineToRelative(0.14f, -0.1f) + lineToRelative(8.52f, -5.05f) + lineTo(3.1f, 8.17f) + close() + moveTo(20.5f, 10.91f) + lineTo(12.35f, 15.16f) + curveToRelative(-0.18f, 0.1f, -0.4f, 0.12f, -0.59f, 0.05f) + lineToRelative(-0.1f, -0.05f) + lineToRelative(-8.16f, -4.25f) + verticalLineToRelative(6.84f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(13.5f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + verticalLineToRelative(-6.84f) + close() + moveTo(12.0f, 4.62f) + lineTo(3.9f, 9.43f) + lineToRelative(8.1f, 4.22f) + lineToRelative(8.09f, -4.22f) + lineTo(12.0f, 4.63f) + close() + } + } + return _mailRead!! + } + +private var _mailRead: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailReadMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailReadMultiple.kt new file mode 100644 index 00000000..e8fafb47 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailReadMultiple.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailReadMultiple: ImageVector + get() { + if (_mailReadMultiple != null) { + return _mailReadMultiple!! + } + _mailReadMultiple = fluentIcon(name = "Regular.MailReadMultiple") { + fluentPath { + moveTo(11.36f, 1.84f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.72f, 0.0f) + lineTo(2.83f, 6.1f) + arcTo(1.6f, 1.6f, 0.0f, false, false, 2.0f, 7.5f) + verticalLineToRelative(8.25f) + curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(20.0f, 7.5f) + arcToRelative(1.6f, 1.6f, 0.0f, false, false, -0.83f, -1.4f) + lineToRelative(-7.81f, -4.26f) + close() + moveTo(11.0f, 11.14f) + lineTo(3.86f, 7.26f) + lineTo(11.0f, 3.35f) + lineToRelative(7.14f, 3.9f) + lineToRelative(-7.14f, 3.9f) + close() + moveTo(11.36f, 12.66f) + lineTo(18.5f, 8.76f) + verticalLineToRelative(6.99f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(5.25f, 17.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(3.5f, 8.76f) + lineToRelative(7.14f, 3.9f) + curveToRelative(0.22f, 0.12f, 0.5f, 0.12f, 0.72f, 0.0f) + close() + moveTo(21.0f, 7.5f) + curveToRelative(0.9f, 0.58f, 1.5f, 1.59f, 1.5f, 2.74f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) + horizontalLineToRelative(-9.0f) + curveToRelative(-1.15f, 0.0f, -2.16f, -0.6f, -2.74f, -1.5f) + horizontalLineToRelative(11.74f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 21.0f, 16.25f) + lineTo(21.0f, 7.51f) + close() + } + } + return _mailReadMultiple!! + } + +private var _mailReadMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailTemplate.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailTemplate.kt new file mode 100644 index 00000000..82caaf9f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailTemplate.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailTemplate: ImageVector + get() { + if (_mailTemplate != null) { + return _mailTemplate!! + } + _mailTemplate = fluentIcon(name = "Regular.MailTemplate") { + fluentPath { + moveTo(2.0f, 5.25f) + curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) + horizontalLineToRelative(10.5f) + curveTo(17.55f, 2.0f, 19.0f, 3.46f, 19.0f, 5.25f) + verticalLineToRelative(4.76f) + lineToRelative(-0.25f, -0.01f) + lineTo(17.5f, 10.0f) + lineTo(17.5f, 5.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(5.25f, 3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(6.0f, 18.5f) + verticalLineToRelative(0.25f) + curveToRelative(0.0f, 0.43f, 0.07f, 0.85f, 0.19f, 1.25f) + horizontalLineToRelative(-0.94f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + lineTo(2.0f, 5.25f) + close() + moveTo(6.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-7.5f) + close() + moveTo(8.0f, 8.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 8.25f) + close() + moveTo(7.0f, 14.25f) + curveTo(7.0f, 12.45f, 8.46f, 11.0f, 10.25f, 11.0f) + horizontalLineToRelative(8.5f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-8.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 7.0f, 18.75f) + verticalLineToRelative(-4.5f) + close() + moveTo(10.25f, 12.5f) + curveToRelative(-0.5f, 0.0f, -0.96f, 0.21f, -1.28f, 0.55f) + lineToRelative(5.53f, 3.56f) + lineToRelative(5.53f, -3.56f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.28f, -0.55f) + horizontalLineToRelative(-8.5f) + close() + moveTo(8.5f, 18.75f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(8.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-4.22f) + lineToRelative(-5.6f, 3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.8f, 0.0f) + lineToRelative(-5.6f, -3.6f) + verticalLineToRelative(4.22f) + close() + } + } + return _mailTemplate!! + } + +private var _mailTemplate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailUnread.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailUnread.kt new file mode 100644 index 00000000..b6d24d32 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailUnread.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailUnread: ImageVector + get() { + if (_mailUnread != null) { + return _mailUnread!! + } + _mailUnread = fluentIcon(name = "Regular.MailUnread") { + fluentPath { + moveTo(22.0f, 7.83f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, -2.0f, -5.66f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 2.0f, 5.66f) + close() + moveTo(5.25f, 4.0f) + horizontalLineToRelative(11.36f) + arcToRelative(4.51f, 4.51f, 0.0f, false, false, -0.08f, 1.5f) + horizontalLineTo(5.25f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + lineToRelative(-0.01f, 0.15f) + verticalLineToRelative(0.43f) + lineToRelative(8.5f, 4.47f) + lineToRelative(6.5f, -3.41f) + curveToRelative(0.54f, 0.36f, 1.17f, 0.61f, 1.85f, 0.71f) + lineToRelative(-8.0f, 4.21f) + curveToRelative(-0.19f, 0.1f, -0.4f, 0.12f, -0.6f, 0.05f) + lineToRelative(-0.1f, -0.05f) + lineTo(3.5f, 9.37f) + verticalLineToRelative(7.38f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(13.5f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + verticalLineTo(9.47f) + arcTo(4.55f, 4.55f, 0.0f, false, false, 22.0f, 9.4f) + verticalLineToRelative(7.36f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + horizontalLineTo(5.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 16.75f) + verticalLineToRelative(-9.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(5.25f, 4.0f) + close() + } + } + return _mailUnread!! + } + +private var _mailUnread: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailWarning.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailWarning.kt new file mode 100644 index 00000000..96b7158f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MailWarning.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MailWarning: ImageVector + get() { + if (_mailWarning != null) { + return _mailWarning!! + } + _mailWarning = fluentIcon(name = "Regular.MailWarning") { + fluentPath { + moveToRelative(16.16f, 1.83f) + lineToRelative(-4.0f, 8.0f) + arcTo(1.5f, 1.5f, 0.0f, false, false, 13.51f, 12.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.33f, -2.17f) + lineToRelative(-4.0f, -8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.68f, 0.0f) + close() + moveTo(18.0f, 4.5f) + verticalLineToRelative(3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + close() + moveTo(17.5f, 10.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + close() + moveTo(5.25f, 4.0f) + horizontalLineToRelative(8.7f) + lineToRelative(-0.74f, 1.5f) + lineTo(5.25f, 5.5f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + lineToRelative(-0.01f, 0.15f) + verticalLineToRelative(0.43f) + lineToRelative(7.9f, 4.15f) + curveToRelative(0.43f, 0.69f, 1.19f, 1.17f, 2.1f, 1.17f) + horizontalLineToRelative(0.11f) + lineToRelative(-1.26f, 0.66f) + curveToRelative(-0.19f, 0.1f, -0.4f, 0.12f, -0.6f, 0.05f) + lineToRelative(-0.1f, -0.05f) + lineTo(3.5f, 9.37f) + verticalLineToRelative(7.38f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(13.5f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + lineTo(20.5f, 13.0f) + horizontalLineToRelative(1.0f) + curveToRelative(0.17f, 0.0f, 0.34f, -0.02f, 0.5f, -0.05f) + verticalLineToRelative(3.8f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(5.25f, 20.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 16.75f) + verticalLineToRelative(-9.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(5.25f, 4.0f) + close() + } + } + return _mailWarning!! + } + +private var _mailWarning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Map.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Map.kt new file mode 100644 index 00000000..44ba85c1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Map.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Map: ImageVector + get() { + if (_map != null) { + return _map!! + } + _map = fluentIcon(name = "Regular.Map") { + fluentPath { + moveTo(9.2f, 4.0f) + horizontalLineToRelative(0.16f) + lineToRelative(0.02f, 0.01f) + curveToRelative(0.09f, 0.01f, 0.17f, 0.04f, 0.25f, 0.1f) + lineToRelative(0.05f, 0.03f) + lineToRelative(5.07f, 3.56f) + lineToRelative(5.07f, -3.56f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.17f, 0.5f) + lineToRelative(0.01f, 0.11f) + lineTo(21.0f, 15.4f) + curveToRelative(0.0f, 0.2f, -0.09f, 0.4f, -0.24f, 0.54f) + lineToRelative(-0.08f, 0.07f) + lineToRelative(-5.5f, 3.87f) + arcToRelative(0.74f, 0.74f, 0.0f, false, true, -0.83f, 0.02f) + lineToRelative(-5.1f, -3.6f) + lineToRelative(-5.07f, 3.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.17f, -0.5f) + lineTo(3.0f, 19.24f) + lineTo(3.0f, 8.62f) + curveToRelative(0.0f, -0.21f, 0.09f, -0.41f, 0.24f, -0.55f) + lineTo(3.32f, 8.0f) + lineToRelative(5.5f, -3.86f) + arcToRelative(0.76f, 0.76f, 0.0f, false, true, 0.2f, -0.1f) + lineTo(9.14f, 4.0f) + lineTo(9.2f, 4.0f) + close() + moveTo(19.5f, 6.2f) + lineTo(15.5f, 9.0f) + verticalLineToRelative(8.8f) + lineToRelative(4.0f, -2.8f) + lineTo(19.5f, 6.2f) + close() + moveTo(8.5f, 6.2f) + lineTo(4.5f, 9.0f) + verticalLineToRelative(8.8f) + lineToRelative(4.0f, -2.8f) + lineTo(8.5f, 6.2f) + close() + moveTo(10.0f, 6.2f) + lineTo(10.0f, 15.0f) + lineToRelative(4.0f, 2.8f) + lineTo(14.0f, 9.0f) + lineToRelative(-4.0f, -2.8f) + close() + } + } + return _map!! + } + +private var _map: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MapDrive.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MapDrive.kt new file mode 100644 index 00000000..e4066f37 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MapDrive.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MapDrive: ImageVector + get() { + if (_mapDrive != null) { + return _mapDrive!! + } + _mapDrive = fluentIcon(name = "Regular.MapDrive") { + fluentPath { + moveTo(18.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(4.25f, 3.0f) + curveTo(3.01f, 3.0f, 2.0f, 4.0f, 2.0f, 5.25f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(8.5f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineTo(16.0f) + horizontalLineTo(7.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.75f) + horizontalLineTo(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineTo(7.0f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(8.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) + verticalLineTo(19.0f) + horizontalLineToRelative(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(17.0f) + verticalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineTo(14.5f) + verticalLineToRelative(-2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(8.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-5.0f) + curveTo(22.0f, 4.01f, 21.0f, 3.0f, 19.75f, 3.0f) + horizontalLineTo(4.25f) + close() + moveTo(3.5f, 5.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(15.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineTo(9.5f) + horizontalLineToRelative(-17.0f) + verticalLineTo(5.25f) + close() + moveTo(11.0f, 14.5f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(1.75f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-7.0f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(1.75f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) + verticalLineTo(14.5f) + close() + } + } + return _mapDrive!! + } + +private var _mapDrive: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MatchAppLayout.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MatchAppLayout.kt new file mode 100644 index 00000000..de80a9f7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MatchAppLayout.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MatchAppLayout: ImageVector + get() { + if (_matchAppLayout != null) { + return _matchAppLayout!! + } + _matchAppLayout = fluentIcon(name = "Regular.MatchAppLayout") { + fluentPath { + moveTo(9.28f, 8.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(3.75f, 16.0f) + curveTo(2.78f, 16.0f, 2.0f, 15.22f, 2.0f, 14.25f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) + lineTo(3.76f, 8.0f) + horizontalLineToRelative(5.53f) + close() + moveTo(20.25f, 8.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-5.53f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(5.53f) + close() + moveTo(9.28f, 9.5f) + lineTo(3.7f, 9.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.19f, 0.25f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(5.53f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-4.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(20.25f, 9.5f) + horizontalLineToRelative(-5.53f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(5.53f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-4.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + } + } + return _matchAppLayout!! + } + +private var _matchAppLayout: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MathFormatLinear.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MathFormatLinear.kt new file mode 100644 index 00000000..7557ccd6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MathFormatLinear.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MathFormatLinear: ImageVector + get() { + if (_mathFormatLinear != null) { + return _mathFormatLinear!! + } + _mathFormatLinear = fluentIcon(name = "Regular.MathFormatLinear") { + fluentPath { + moveTo(10.99f, 4.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.0f) + lineToRelative(-1.75f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.98f, 1.14f) + lineToRelative(1.26f, -1.08f) + lineToRelative(1.26f, 1.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, -1.14f) + lineToRelative(-1.75f, -1.5f) + close() + moveTo(13.56f, 9.54f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.15f, 0.22f) + lineToRelative(1.2f, 2.27f) + lineToRelative(-3.69f, 3.69f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(3.36f, -3.36f) + lineToRelative(1.32f, 2.52f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 3.46f, 0.66f) + lineToRelative(0.32f, -0.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.98f, -1.14f) + lineToRelative(-0.32f, 0.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.15f, -0.22f) + lineToRelative(-1.54f, -2.93f) + lineToRelative(3.03f, -3.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineToRelative(-2.7f, 2.7f) + lineToRelative(-0.98f, -1.86f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.46f, -0.66f) + lineToRelative(-0.32f, 0.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.98f, 1.14f) + lineToRelative(0.32f, -0.28f) + close() + moveTo(3.59f, 13.47f) + curveToRelative(0.92f, -0.01f, 1.89f, -0.07f, 2.76f, -0.25f) + arcToRelative(4.15f, 4.15f, 0.0f, false, false, 2.71f, -1.63f) + curveToRelative(0.57f, -0.86f, 0.58f, -1.88f, 0.06f, -2.64f) + curveToRelative(-0.53f, -0.77f, -1.51f, -1.12f, -2.6f, -0.87f) + curveToRelative(-0.46f, 0.1f, -1.25f, 0.34f, -2.08f, 1.0f) + arcTo(6.88f, 6.88f, 0.0f, false, false, 2.3f, 12.5f) + arcToRelative(4.55f, 4.55f, 0.0f, false, false, 0.0f, 3.2f) + arcToRelative(2.95f, 2.95f, 0.0f, false, false, 1.96f, 1.67f) + curveToRelative(1.65f, 0.45f, 3.73f, -0.28f, 5.06f, -1.95f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.18f, -0.93f) + curveToRelative(-1.02f, 1.28f, -2.5f, 1.7f, -3.48f, 1.43f) + curveToRelative(-0.46f, -0.13f, -0.8f, -0.4f, -1.0f, -0.82f) + arcToRelative(2.68f, 2.68f, 0.0f, false, true, -0.06f, -1.63f) + close() + moveTo(7.89f, 9.8f) + curveToRelative(0.13f, 0.2f, 0.19f, 0.56f, -0.08f, 0.96f) + curveToRelative(-0.31f, 0.48f, -0.9f, 0.8f, -1.78f, 1.0f) + curveToRelative(-0.58f, 0.12f, -1.23f, 0.17f, -1.92f, 0.2f) + curveToRelative(0.39f, -0.83f, 0.85f, -1.36f, 1.28f, -1.7f) + arcToRelative(3.52f, 3.52f, 0.0f, false, true, 1.46f, -0.72f) + curveToRelative(0.6f, -0.13f, 0.9f, 0.08f, 1.03f, 0.26f) + close() + } + } + return _mathFormatLinear!! + } + +private var _mathFormatLinear: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MathFormatProfessional.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MathFormatProfessional.kt new file mode 100644 index 00000000..2cb41176 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MathFormatProfessional.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MathFormatProfessional: ImageVector + get() { + if (_mathFormatProfessional != null) { + return _mathFormatProfessional!! + } + _mathFormatProfessional = fluentIcon(name = "Regular.MathFormatProfessional") { + fluentPath { + moveTo(15.66f, 4.83f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.09f, -0.24f) + lineToRelative(-0.38f, 0.27f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.88f, -1.22f) + lineToRelative(0.39f, -0.28f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.27f, 0.74f) + lineToRelative(0.67f, 1.2f) + lineToRelative(2.08f, -2.08f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineTo(18.4f, 6.66f) + lineToRelative(0.89f, 1.59f) + curveToRelative(0.22f, 0.4f, 0.76f, 0.5f, 1.12f, 0.21f) + lineToRelative(0.37f, -0.3f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.94f, 1.17f) + lineToRelative(-0.36f, 0.3f) + curveToRelative(-1.09f, 0.88f, -2.7f, 0.57f, -3.38f, -0.65f) + lineToRelative(-0.68f, -1.22f) + lineToRelative(-2.02f, 2.02f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(2.32f, -2.32f) + lineToRelative(-0.88f, -1.57f) + close() + moveTo(8.35f, 13.89f) + curveToRelative(-1.45f, 0.29f, -3.1f, 0.35f, -4.68f, 0.36f) + curveToRelative(-0.34f, 1.25f, -0.24f, 2.16f, 0.07f, 2.79f) + curveToRelative(0.34f, 0.7f, 1.0f, 1.18f, 1.87f, 1.4f) + curveToRelative(1.8f, 0.45f, 4.37f, -0.26f, 6.08f, -2.21f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.12f, 0.99f) + curveToRelative(-2.04f, 2.33f, -5.17f, 3.27f, -7.56f, 2.67f) + arcToRelative(4.2f, 4.2f, 0.0f, false, true, -2.86f, -2.2f) + curveToRelative(-0.57f, -1.18f, -0.59f, -2.68f, 0.02f, -4.44f) + arcTo(9.59f, 9.59f, 0.0f, false, true, 5.73f, 8.5f) + arcToRelative(7.91f, 7.91f, 0.0f, false, true, 3.12f, -1.37f) + curveToRelative(1.55f, -0.32f, 2.9f, 0.12f, 3.65f, 1.1f) + curveToRelative(0.75f, 0.99f, 0.74f, 2.34f, -0.1f, 3.48f) + curveToRelative(-0.92f, 1.27f, -2.44f, 1.88f, -4.05f, 2.2f) + close() + moveTo(9.15f, 8.59f) + curveToRelative(-0.57f, 0.11f, -1.53f, 0.37f, -2.53f, 1.1f) + arcToRelative(7.6f, 7.6f, 0.0f, false, false, -2.39f, 3.05f) + arcToRelative(22.4f, 22.4f, 0.0f, false, false, 3.83f, -0.32f) + curveToRelative(1.48f, -0.29f, 2.54f, -0.8f, 3.13f, -1.6f) + curveToRelative(0.5f, -0.67f, 0.42f, -1.3f, 0.12f, -1.7f) + curveToRelative(-0.32f, -0.4f, -1.03f, -0.77f, -2.16f, -0.53f) + close() + } + } + return _mathFormatProfessional!! + } + +private var _mathFormatProfessional: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MathFormula.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MathFormula.kt new file mode 100644 index 00000000..f02ed94c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MathFormula.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MathFormula: ImageVector + get() { + if (_mathFormula != null) { + return _mathFormula!! + } + _mathFormula = fluentIcon(name = "Regular.MathFormula") { + fluentPath { + moveTo(12.48f, 3.83f) + arcTo(1.75f, 1.75f, 0.0f, false, false, 9.7f, 5.12f) + lineTo(9.54f, 7.5f) + horizontalLineToRelative(2.71f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(9.44f, 9.0f) + lineToRelative(-0.6f, 9.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -5.39f, 2.24f) + lineToRelative(-0.2f, -0.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.0f, -1.12f) + lineToRelative(0.19f, 0.17f) + curveToRelative(1.09f, 0.95f, 2.8f, 0.24f, 2.9f, -1.2f) + lineTo(7.94f, 9.0f) + lineTo(5.74f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.28f) + lineToRelative(0.17f, -2.48f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 5.17f, -2.4f) + lineToRelative(0.38f, 0.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.9f, 1.2f) + lineToRelative(-0.37f, -0.27f) + close() + moveTo(13.71f, 12.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.15f, -0.22f) + lineToRelative(-0.32f, 0.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.98f, -1.14f) + lineToRelative(0.32f, -0.28f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 3.46f, 0.66f) + lineToRelative(0.98f, 1.86f) + lineToRelative(2.7f, -2.7f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-3.03f, 3.03f) + lineToRelative(1.54f, 2.93f) + curveToRelative(0.22f, 0.42f, 0.78f, 0.53f, 1.15f, 0.22f) + lineToRelative(0.32f, -0.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, 1.14f) + lineToRelative(-0.32f, 0.28f) + curveToRelative(-1.1f, 0.94f, -2.79f, 0.61f, -3.46f, -0.67f) + lineToRelative(-1.32f, -2.5f) + lineToRelative(-3.36f, 3.35f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(3.69f, -3.69f) + lineToRelative(-1.2f, -2.27f) + close() + } + } + return _mathFormula!! + } + +private var _mathFormula: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MathSymbols.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MathSymbols.kt new file mode 100644 index 00000000..2cd23f89 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MathSymbols.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MathSymbols: ImageVector + get() { + if (_mathSymbols != null) { + return _mathSymbols!! + } + _mathSymbols = fluentIcon(name = "Regular.MathSymbols") { + fluentPath { + moveTo(6.25f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(7.0f, 5.5f) + horizontalLineToRelative(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(7.0f, 7.0f) + verticalLineToRelative(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(5.5f, 7.0f) + lineTo(2.75f, 7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(5.5f, 5.5f) + lineTo(5.5f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(14.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-7.0f) + close() + moveTo(13.5f, 17.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(17.75f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(18.75f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(2.22f, 14.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(2.97f, 2.97f) + lineToRelative(2.97f, -2.97f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-2.97f, 2.97f) + lineToRelative(2.97f, 2.97f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-2.97f, -2.97f) + lineToRelative(-2.97f, 2.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(2.97f, -2.97f) + lineToRelative(-2.97f, -2.97f) + close() + } + } + return _mathSymbols!! + } + +private var _mathSymbols: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MeetNow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MeetNow.kt new file mode 100644 index 00000000..fad0d66c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MeetNow.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MeetNow: ImageVector + get() { + if (_meetNow != null) { + return _meetNow!! + } + _meetNow = fluentIcon(name = "Regular.MeetNow") { + fluentPath { + moveTo(6.75f, 6.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(6.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-0.73f) + lineToRelative(3.39f, 1.89f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.11f, -0.66f) + verticalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.11f, -0.65f) + lineTo(15.5f, 9.48f) + verticalLineToRelative(-0.73f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-6.5f) + close() + moveTo(15.5f, 11.2f) + lineTo(18.5f, 9.53f) + verticalLineToRelative(4.95f) + lineToRelative(-3.0f, -1.67f) + verticalLineToRelative(-1.62f) + close() + moveTo(14.0f, 8.74f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-6.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(6.42f, 20.92f) + lineToRelative(0.03f, 0.02f) + arcToRelative(4.8f, 4.8f, 0.0f, false, false, 0.39f, 0.16f) + arcTo(15.37f, 15.37f, 0.0f, false, false, 12.0f, 22.0f) + arcToRelative(15.15f, 15.15f, 0.0f, false, false, 5.16f, -0.9f) + arcToRelative(6.9f, 6.9f, 0.0f, false, false, 0.39f, -0.16f) + curveToRelative(0.34f, -0.16f, 0.54f, -0.68f, 0.37f, -1.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, -0.33f) + horizontalLineToRelative(-0.02f) + arcToRelative(2.61f, 2.61f, 0.0f, false, true, -0.29f, 0.13f) + arcToRelative(13.66f, 13.66f, 0.0f, false, true, -4.61f, 0.8f) + arcToRelative(13.88f, 13.88f, 0.0f, false, true, -4.61f, -0.8f) + arcToRelative(5.75f, 5.75f, 0.0f, false, true, -0.3f, -0.13f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.67f, 1.34f) + close() + moveTo(7.96f, 2.52f) + arcTo(15.1f, 15.1f, 0.0f, false, true, 12.0f, 2.0f) + arcToRelative(15.32f, 15.32f, 0.0f, false, true, 5.16f, 0.9f) + arcToRelative(7.19f, 7.19f, 0.0f, false, true, 0.39f, 0.16f) + lineToRelative(0.02f, 0.01f) + horizontalLineToRelative(0.01f) + reflectiveCurveToRelative(0.6f, 0.36f, 0.34f, 1.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.0f, 0.33f) + horizontalLineToRelative(-0.01f) + arcToRelative(2.54f, 2.54f, 0.0f, false, false, -0.3f, -0.13f) + arcTo(13.82f, 13.82f, 0.0f, false, false, 12.0f, 3.5f) + arcToRelative(13.6f, 13.6f, 0.0f, false, false, -4.61f, 0.8f) + arcToRelative(5.6f, 5.6f, 0.0f, false, false, -0.3f, 0.13f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.68f, -1.34f) + horizontalLineToRelative(0.02f) + lineToRelative(0.02f, -0.02f) + arcToRelative(4.2f, 4.2f, 0.0f, false, true, 0.39f, -0.16f) + curveToRelative(0.26f, -0.1f, 0.63f, -0.24f, 1.12f, -0.38f) + close() + moveTo(7.09f, 4.42f) + close() + } + } + return _meetNow!! + } + +private var _meetNow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Megaphone.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Megaphone.kt new file mode 100644 index 00000000..7fd37ece --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Megaphone.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Megaphone: ImageVector + get() { + if (_megaphone != null) { + return _megaphone!! + } + _megaphone = fluentIcon(name = "Regular.Megaphone") { + fluentPath { + moveTo(21.9f, 5.62f) + curveToRelative(0.07f, 0.21f, 0.1f, 0.43f, 0.1f, 0.64f) + verticalLineToRelative(11.48f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.9f, 2.16f) + lineToRelative(-5.5f, -1.64f) + arcTo(4.0f, 4.0f, 0.0f, false, true, 6.0f, 16.7f) + lineTo(6.0f, 16.0f) + lineToRelative(-2.4f, -0.71f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 2.0f, 13.13f) + verticalLineToRelative(-2.26f) + curveToRelative(0.0f, -1.0f, 0.65f, -1.87f, 1.6f, -2.16f) + lineToRelative(15.5f, -4.6f) + curveToRelative(1.2f, -0.36f, 2.45f, 0.32f, 2.8f, 1.51f) + close() + moveTo(7.5f, 16.44f) + verticalLineToRelative(0.06f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 4.62f, 1.32f) + lineTo(7.5f, 16.44f) + close() + moveTo(19.54f, 5.54f) + lineTo(4.04f, 10.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.54f, 0.72f) + verticalLineToRelative(2.26f) + curveToRelative(0.0f, 0.33f, 0.22f, 0.63f, 0.54f, 0.72f) + lineToRelative(15.5f, 4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.96f, -0.71f) + lineTo(20.5f, 6.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.96f, -0.72f) + close() + } + } + return _megaphone!! + } + +private var _megaphone: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MegaphoneCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MegaphoneCircle.kt new file mode 100644 index 00000000..fe580602 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MegaphoneCircle.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MegaphoneCircle: ImageVector + get() { + if (_megaphoneCircle != null) { + return _megaphoneCircle!! + } + _megaphoneCircle = fluentIcon(name = "Regular.MegaphoneCircle") { + fluentPath { + moveTo(3.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 17.0f, 0.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, -17.0f, 0.0f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) + close() + moveTo(14.64f, 7.1f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 17.0f, 8.76f) + verticalLineToRelative(6.5f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -2.36f, 1.64f) + lineToRelative(-1.56f, -0.58f) + arcTo(2.63f, 2.63f, 0.0f, false, true, 8.0f, 15.38f) + verticalLineToRelative(-0.95f) + lineToRelative(-0.86f, -0.31f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 6.0f, 12.46f) + verticalLineToRelative(-0.95f) + curveToRelative(0.0f, -0.73f, 0.45f, -1.38f, 1.14f, -1.64f) + lineToRelative(7.5f, -2.77f) + close() + moveTo(9.5f, 15.0f) + verticalLineToRelative(0.38f) + arcToRelative(1.13f, 1.13f, 0.0f, false, false, 2.17f, 0.42f) + lineTo(9.5f, 15.0f) + close() + moveTo(15.5f, 8.76f) + curveToRelative(0.0f, -0.18f, -0.18f, -0.3f, -0.34f, -0.24f) + lineToRelative(-7.5f, 2.78f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.16f, 0.23f) + verticalLineToRelative(0.95f) + curveToRelative(0.0f, 0.1f, 0.06f, 0.2f, 0.16f, 0.24f) + lineToRelative(7.5f, 2.77f) + curveToRelative(0.16f, 0.06f, 0.34f, -0.06f, 0.34f, -0.23f) + verticalLineToRelative(-6.5f) + close() + } + } + return _megaphoneCircle!! + } + +private var _megaphoneCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MegaphoneLoud.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MegaphoneLoud.kt new file mode 100644 index 00000000..21be04d6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MegaphoneLoud.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MegaphoneLoud: ImageVector + get() { + if (_megaphoneLoud != null) { + return _megaphoneLoud!! + } + _megaphoneLoud = fluentIcon(name = "Regular.MegaphoneLoud") { + fluentPath { + moveTo(17.21f, 2.24f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.42f, -0.48f) + lineToRelative(-0.75f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.42f, 0.48f) + lineToRelative(0.75f, -2.25f) + close() + moveTo(21.78f, 2.22f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(2.5f, -2.5f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(9.08f, 4.32f) + arcToRelative(2.33f, 2.33f, 0.0f, false, true, 3.8f, -0.58f) + lineToRelative(7.0f, 7.5f) + curveToRelative(1.09f, 1.18f, 0.7f, 3.07f, -0.76f, 3.72f) + lineToRelative(-3.42f, 1.51f) + arcTo(3.99f, 3.99f, 0.0f, false, true, 12.0f, 22.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -3.61f, -2.29f) + lineToRelative(-1.42f, 0.63f) + arcTo(1.8f, 1.8f, 0.0f, false, true, 5.0f, 20.01f) + lineToRelative(-1.43f, -1.36f) + arcToRelative(1.8f, 1.8f, 0.0f, false, true, -0.4f, -2.1f) + lineToRelative(5.9f, -12.23f) + close() + moveTo(9.76f, 19.11f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 4.57f, -2.03f) + lineToRelative(-4.57f, 2.03f) + close() + moveTo(11.77f, 4.76f) + arcToRelative(0.83f, 0.83f, 0.0f, false, false, -1.34f, 0.2f) + lineToRelative(-5.9f, 12.25f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.06f, 0.35f) + lineToRelative(1.44f, 1.36f) + curveToRelative(0.1f, 0.08f, 0.22f, 0.1f, 0.33f, 0.05f) + lineToRelative(12.15f, -5.38f) + curveToRelative(0.52f, -0.23f, 0.66f, -0.9f, 0.27f, -1.32f) + lineToRelative(-7.0f, -7.5f) + close() + moveTo(19.0f, 8.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _megaphoneLoud!! + } + +private var _megaphoneLoud: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MegaphoneOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MegaphoneOff.kt new file mode 100644 index 00000000..99ce9975 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MegaphoneOff.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MegaphoneOff: ImageVector + get() { + if (_megaphoneOff != null) { + return _megaphoneOff!! + } + _megaphoneOff = fluentIcon(name = "Regular.MegaphoneOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(4.5f, 4.5f) + lineToRelative(-3.11f, 0.93f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 10.87f) + verticalLineToRelative(2.26f) + curveToRelative(0.0f, 1.0f, 0.65f, 1.87f, 1.6f, 2.16f) + lineToRelative(2.4f, 0.7f) + verticalLineToRelative(0.7f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 7.6f, 1.57f) + lineToRelative(5.12f, 1.52f) + lineToRelative(2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(16.49f, 17.55f) + lineTo(4.04f, 13.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, -0.72f) + verticalLineToRelative(-2.26f) + curveToRelative(0.0f, -0.33f, 0.22f, -0.63f, 0.54f, -0.72f) + lineToRelative(3.9f, -1.16f) + lineToRelative(8.55f, 8.56f) + close() + moveTo(7.49f, 16.45f) + lineTo(12.12f, 17.82f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 7.5f, 16.5f) + verticalLineToRelative(-0.06f) + close() + moveTo(20.5f, 6.25f) + verticalLineToRelative(11.06f) + lineToRelative(1.32f, 1.31f) + curveToRelative(0.11f, -0.27f, 0.18f, -0.57f, 0.18f, -0.9f) + lineTo(22.0f, 6.27f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.9f, -2.15f) + lineTo(10.0f, 6.8f) + lineToRelative(1.2f, 1.21f) + lineToRelative(8.34f, -2.48f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.96f, 0.72f) + close() + } + } + return _megaphoneOff!! + } + +private var _megaphoneOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Mention.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Mention.kt new file mode 100644 index 00000000..fb14d6ba --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Mention.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Mention: ImageVector + get() { + if (_mention != null) { + return _mention!! + } + _mention = fluentIcon(name = "Regular.Mention") { + fluentPath { + moveTo(22.0f, 12.0f) + verticalLineToRelative(1.75f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -7.15f, 1.59f) + arcTo(4.29f, 4.29f, 0.0f, false, true, 11.5f, 17.0f) + curveTo(9.0f, 17.0f, 7.0f, 14.74f, 7.0f, 12.0f) + reflectiveCurveToRelative(2.0f, -5.0f, 4.5f, -5.0f) + curveToRelative(1.16f, 0.0f, 2.2f, 0.48f, 3.0f, 1.27f) + verticalLineToRelative(-0.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(6.1f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.15f) + verticalLineTo(12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, -5.51f, 7.96f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.52f, 1.4f) + arcTo(10.0f, 10.0f, 0.0f, true, true, 22.0f, 11.72f) + lineToRelative(0.01f, 0.29f) + verticalLineToRelative(1.75f) + verticalLineTo(12.0f) + close() + moveTo(11.5f, 8.5f) + curveToRelative(-1.63f, 0.0f, -3.0f, 1.55f, -3.0f, 3.5f) + reflectiveCurveToRelative(1.37f, 3.5f, 3.0f, 3.5f) + reflectiveCurveToRelative(3.0f, -1.55f, 3.0f, -3.5f) + reflectiveCurveToRelative(-1.37f, -3.5f, -3.0f, -3.5f) + close() + } + } + return _mention!! + } + +private var _mention: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Merge.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Merge.kt new file mode 100644 index 00000000..53af9a95 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Merge.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Merge: ImageVector + get() { + if (_merge != null) { + return _merge!! + } + _merge = fluentIcon(name = "Regular.Merge") { + fluentPath { + moveTo(3.0f, 6.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.26f) + curveToRelative(1.0f, 0.0f, 1.95f, 0.4f, 2.65f, 1.1f) + lineToRelative(2.95f, 2.95f) + curveToRelative(0.6f, 0.6f, 1.43f, 0.95f, 2.3f, 0.95f) + horizontalLineToRelative(4.53f) + lineToRelative(-3.72f, -3.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(5.0f, 5.0f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(3.72f, -3.72f) + horizontalLineToRelative(-4.47f) + curveToRelative(-0.9f, 0.0f, -1.75f, 0.37f, -2.36f, 1.01f) + lineToRelative(-2.68f, 2.82f) + curveToRelative(-0.7f, 0.75f, -1.69f, 1.17f, -2.72f, 1.17f) + horizontalLineTo(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.46f) + curveToRelative(0.62f, 0.0f, 1.2f, -0.25f, 1.63f, -0.7f) + lineToRelative(2.68f, -2.82f) + curveToRelative(0.26f, -0.27f, 0.55f, -0.51f, 0.86f, -0.71f) + curveToRelative(-0.3f, -0.19f, -0.58f, -0.4f, -0.83f, -0.66f) + lineTo(8.6f, 8.16f) + curveToRelative(-0.42f, -0.42f, -1.0f, -0.66f, -1.6f, -0.66f) + horizontalLineTo(3.76f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 6.75f) + close() + } + } + return _merge!! + } + +private var _merge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Mic.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Mic.kt new file mode 100644 index 00000000..95083997 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Mic.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Mic: ImageVector + get() { + if (_mic != null) { + return _mic!! + } + _mic = fluentIcon(name = "Regular.Mic") { + fluentPath { + moveTo(18.25f, 11.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(0.5f) + arcToRelative(6.75f, 6.75f, 0.0f, false, true, -6.25f, 6.73f) + verticalLineToRelative(2.27f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-2.37f) + arcTo(6.75f, 6.75f, 0.0f, false, true, 5.0f, 12.48f) + verticalLineToRelative(-0.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.6f) + arcToRelative(5.25f, 5.25f, 0.0f, false, false, 5.03f, 5.25f) + horizontalLineToRelative(0.72f) + arcToRelative(5.25f, 5.25f, 0.0f, false, false, 5.25f, -5.03f) + verticalLineToRelative(-0.72f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, 4.0f) + verticalLineToRelative(6.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -8.0f, 0.0f) + lineTo(8.0f, 6.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, -4.0f) + close() + moveTo(12.0f, 3.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 9.5f, 6.0f) + verticalLineToRelative(6.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 5.0f, 0.0f) + lineTo(14.5f, 6.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 12.0f, 3.5f) + close() + } + } + return _mic!! + } + +private var _mic: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MicOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MicOff.kt new file mode 100644 index 00000000..520d9245 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MicOff.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MicOff: ImageVector + get() { + if (_micOff != null) { + return _micOff!! + } + _micOff = fluentIcon(name = "Regular.MicOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(8.0f, 9.06f) + lineTo(8.0f, 12.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 6.25f, 3.3f) + lineToRelative(1.14f, 1.15f) + arcToRelative(5.23f, 5.23f, 0.0f, false, true, -3.14f, 1.05f) + horizontalLineToRelative(-0.72f) + arcToRelative(5.25f, 5.25f, 0.0f, false, true, -5.03f, -5.25f) + verticalLineToRelative(-0.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + verticalLineToRelative(0.74f) + arcToRelative(6.75f, 6.75f, 0.0f, false, false, 6.25f, 6.5f) + verticalLineToRelative(2.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + verticalLineToRelative(-2.27f) + curveToRelative(1.4f, -0.1f, 2.68f, -0.63f, 3.71f, -1.46f) + lineToRelative(4.26f, 4.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(13.16f, 14.22f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 9.5f, 12.0f) + verticalLineToRelative(-1.44f) + lineToRelative(3.66f, 3.66f) + close() + moveTo(14.5f, 6.0f) + verticalLineToRelative(5.32f) + lineToRelative(1.43f, 1.43f) + curveToRelative(0.05f, -0.24f, 0.07f, -0.5f, 0.07f, -0.75f) + lineTo(16.0f, 6.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -7.86f, -1.04f) + lineTo(9.5f, 6.32f) + lineTo(9.5f, 6.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(17.2f, 14.01f) + lineTo(18.34f, 15.16f) + curveToRelative(0.42f, -0.88f, 0.66f, -1.87f, 0.66f, -2.91f) + verticalLineToRelative(-0.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + verticalLineToRelative(0.72f) + arcToRelative(5.23f, 5.23f, 0.0f, false, true, -0.3f, 1.54f) + close() + } + } + return _micOff!! + } + +private var _micOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MicProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MicProhibited.kt new file mode 100644 index 00000000..fd70b742 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MicProhibited.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MicProhibited: ImageVector + get() { + if (_micProhibited != null) { + return _micProhibited!! + } + _micProhibited = fluentIcon(name = "Regular.MicProhibited") { + fluentPath { + moveTo(15.0f, 6.0f) + verticalLineToRelative(5.5f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.53f, 0.9f) + curveToRelative(0.02f, -0.13f, 0.03f, -0.26f, 0.03f, -0.4f) + lineTo(13.5f, 6.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) + verticalLineToRelative(6.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.3f, 2.37f) + curveToRelative(-0.28f, 0.5f, -0.49f, 1.05f, -0.63f, 1.63f) + lineTo(11.0f, 16.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f) + lineTo(7.0f, 6.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, 8.0f, 0.0f) + close() + moveTo(11.0f, 17.5f) + curveToRelative(0.0f, 1.1f, 0.27f, 2.13f, 0.75f, 3.03f) + verticalLineToRelative(0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-2.37f) + arcTo(6.75f, 6.75f, 0.0f, false, true, 4.0f, 12.48f) + verticalLineToRelative(-0.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.6f) + arcToRelative(5.25f, 5.25f, 0.0f, false, false, 5.03f, 5.25f) + lineTo(11.0f, 17.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(13.5f, 17.5f) + curveToRelative(0.0f, 0.83f, 0.26f, 1.6f, 0.7f, 2.25f) + lineToRelative(5.55f, -5.56f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) + close() + moveTo(17.5f, 21.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) + lineToRelative(-5.55f, 5.56f) + curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) + close() + } + } + return _micProhibited!! + } + +private var _micProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MicPulse.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MicPulse.kt new file mode 100644 index 00000000..3bd903c3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MicPulse.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MicPulse: ImageVector + get() { + if (_micPulse != null) { + return _micPulse!! + } + _micPulse = fluentIcon(name = "Regular.MicPulse") { + fluentPath { + moveTo(11.0f, 17.5f) + curveToRelative(0.0f, 1.1f, 0.27f, 2.13f, 0.75f, 3.03f) + verticalLineToRelative(0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-2.37f) + arcTo(6.75f, 6.75f, 0.0f, false, true, 4.0f, 12.48f) + verticalLineToRelative(-0.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.6f) + arcToRelative(5.25f, 5.25f, 0.0f, false, false, 5.03f, 5.25f) + lineTo(11.0f, 17.5f) + close() + moveTo(15.0f, 6.0f) + verticalLineToRelative(5.5f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.53f, 0.9f) + curveToRelative(0.02f, -0.13f, 0.03f, -0.26f, 0.03f, -0.4f) + lineTo(13.5f, 6.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) + verticalLineToRelative(6.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.3f, 2.37f) + curveToRelative(-0.28f, 0.5f, -0.49f, 1.05f, -0.63f, 1.63f) + lineTo(11.0f, 16.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f) + lineTo(7.0f, 6.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, 8.0f, 0.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(16.01f, 14.5f) + curveToRelative(0.21f, 0.0f, 0.4f, 0.14f, 0.46f, 0.34f) + lineTo(17.53f, 18.0f) + lineToRelative(1.0f, -2.68f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.92f, -0.04f) + lineTo(20.3f, 17.0f) + lineTo(21.0f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.45f, -0.28f) + lineToRelative(-0.48f, -0.97f) + lineToRelative(-1.1f, 2.93f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.94f, -0.02f) + lineToRelative(-1.07f, -3.2f) + lineToRelative(-0.5f, 1.23f) + arcTo(0.5f, 0.5f, 0.0f, false, true, 15.0f, 18.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineToRelative(0.66f) + lineToRelative(0.88f, -2.19f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.47f, -0.31f) + close() + } + } + return _micPulse!! + } + +private var _micPulse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MicPulseOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MicPulseOff.kt new file mode 100644 index 00000000..df3b42ba --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MicPulseOff.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MicPulseOff: ImageVector + get() { + if (_micPulseOff != null) { + return _micPulseOff!! + } + _micPulseOff = fluentIcon(name = "Regular.MicPulseOff") { + fluentPath { + moveTo(7.0f, 8.06f) + lineTo(7.0f, 12.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.17f, 4.0f) + curveToRelative(0.14f, -0.58f, 0.35f, -1.13f, 0.63f, -1.63f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 8.5f, 12.0f) + lineTo(8.5f, 9.56f) + lineToRelative(4.62f, 4.62f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 7.72f, 7.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.94f, -1.16f) + lineTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(7.0f, 8.06f) + close() + moveTo(18.14f, 19.21f) + lineTo(17.97f, 19.68f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.94f, -0.02f) + lineToRelative(-0.79f, -2.36f) + lineToRelative(1.9f, 1.9f) + close() + moveTo(15.8f, 16.86f) + lineTo(15.46f, 17.69f) + arcTo(0.5f, 0.5f, 0.0f, false, true, 15.0f, 18.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineToRelative(0.66f) + lineToRelative(0.37f, -0.91f) + lineToRelative(0.77f, 0.77f) + close() + moveTo(13.5f, 6.0f) + verticalLineToRelative(4.32f) + lineToRelative(1.28f, 1.28f) + lineToRelative(0.22f, -0.1f) + lineTo(15.0f, 6.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -7.59f, -1.77f) + lineToRelative(1.16f, 1.16f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 13.5f, 6.0f) + close() + moveTo(15.54f, 12.36f) + lineTo(22.64f, 19.46f) + arcTo(5.49f, 5.49f, 0.0f, false, false, 17.5f, 12.0f) + curveToRelative(-0.69f, 0.0f, -1.35f, 0.13f, -1.96f, 0.36f) + close() + moveTo(11.0f, 17.5f) + curveToRelative(0.0f, 1.1f, 0.27f, 2.13f, 0.75f, 3.03f) + verticalLineToRelative(0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-2.37f) + arcTo(6.75f, 6.75f, 0.0f, false, true, 4.0f, 12.48f) + verticalLineToRelative(-0.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.6f) + arcToRelative(5.25f, 5.25f, 0.0f, false, false, 5.03f, 5.25f) + lineTo(11.0f, 17.5f) + close() + } + } + return _micPulseOff!! + } + +private var _micPulseOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MicSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MicSettings.kt new file mode 100644 index 00000000..9e35b510 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MicSettings.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MicSettings: ImageVector + get() { + if (_micSettings != null) { + return _micSettings!! + } + _micSettings = fluentIcon(name = "Regular.MicSettings") { + fluentPath { + moveTo(11.0f, 17.5f) + curveToRelative(0.0f, 1.1f, 0.27f, 2.13f, 0.75f, 3.03f) + verticalLineToRelative(0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-2.37f) + arcTo(6.75f, 6.75f, 0.0f, false, true, 4.0f, 12.48f) + verticalLineToRelative(-0.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.6f) + arcToRelative(5.25f, 5.25f, 0.0f, false, false, 5.03f, 5.25f) + lineTo(11.0f, 17.5f) + close() + moveTo(15.0f, 6.0f) + verticalLineToRelative(5.5f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.53f, 0.9f) + curveToRelative(0.02f, -0.13f, 0.03f, -0.26f, 0.03f, -0.4f) + lineTo(13.5f, 6.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) + verticalLineToRelative(6.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.3f, 2.37f) + curveToRelative(-0.28f, 0.5f, -0.49f, 1.05f, -0.63f, 1.63f) + lineTo(11.0f, 16.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f) + lineTo(7.0f, 6.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, 8.0f, 0.0f) + close() + moveTo(14.28f, 13.98f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.59f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) + lineToRelative(0.55f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) + lineToRelative(-0.19f, 0.63f) + curveToRelative(0.44f, 0.39f, 0.94f, 0.7f, 1.49f, 0.93f) + lineToRelative(0.49f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) + lineToRelative(-0.2f, -0.69f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) + lineToRelative(0.59f, -0.14f) + arcToRelative(5.72f, 5.72f, 0.0f, false, false, 0.0f, -1.8f) + lineToRelative(-0.55f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.19f, -0.63f) + curveToRelative(-0.44f, -0.4f, -0.94f, -0.7f, -1.49f, -0.93f) + lineToRelative(-0.49f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) + lineToRelative(0.2f, 0.7f) + close() + moveTo(17.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) + close() + } + } + return _micSettings!! + } + +private var _micSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MicSparkle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MicSparkle.kt new file mode 100644 index 00000000..377788d1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MicSparkle.kt @@ -0,0 +1,95 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MicSparkle: ImageVector + get() { + if (_micSparkle != null) { + return _micSparkle!! + } + _micSparkle = fluentIcon(name = "Regular.MicSparkle") { + fluentPath { + moveTo(13.85f, 15.15f) + arcToRelative(2.85f, 2.85f, 0.0f, false, true, 0.69f, 1.11f) + lineToRelative(0.45f, 1.38f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 1.02f, 0.0f) + lineToRelative(0.45f, -1.38f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, 1.8f, -1.8f) + lineToRelative(1.38f, -0.44f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, -1.03f) + horizontalLineToRelative(-0.03f) + lineToRelative(-1.38f, -0.45f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.8f, -1.8f) + lineTo(16.0f, 9.36f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, -1.03f, 0.0f) + lineToRelative(-0.45f, 1.38f) + lineToRelative(-0.01f, 0.03f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.76f, 1.77f) + lineToRelative(-1.38f, 0.44f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, 1.03f) + lineToRelative(1.38f, 0.45f) + curveToRelative(0.42f, 0.14f, 0.8f, 0.37f, 1.11f, 0.69f) + close() + moveTo(16.0f, 6.0f) + verticalLineToRelative(2.1f) + arcToRelative(1.54f, 1.54f, 0.0f, false, false, -1.5f, 0.24f) + lineTo(14.5f, 6.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.56f, 0.19f, 1.08f, 0.5f, 1.5f) + arcToRelative(1.54f, 1.54f, 0.0f, false, false, 1.03f, 1.45f) + horizontalLineToRelative(0.01f) + lineToRelative(1.39f, 0.46f) + curveToRelative(0.26f, 0.09f, 0.5f, 0.23f, 0.7f, 0.43f) + arcTo(4.0f, 4.0f, 0.0f, false, true, 8.0f, 12.0f) + lineTo(8.0f, 6.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, 8.0f, 0.0f) + close() + moveTo(12.25f, 17.5f) + curveToRelative(0.54f, 0.0f, 1.07f, -0.08f, 1.56f, -0.24f) + lineToRelative(0.23f, 0.7f) + verticalLineToRelative(0.01f) + curveToRelative(0.1f, 0.25f, 0.25f, 0.48f, 0.45f, 0.65f) + curveToRelative(-0.55f, 0.2f, -1.13f, 0.32f, -1.74f, 0.36f) + verticalLineToRelative(2.27f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-2.37f) + arcTo(6.75f, 6.75f, 0.0f, false, true, 5.0f, 12.48f) + verticalLineToRelative(-0.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.6f) + arcToRelative(5.25f, 5.25f, 0.0f, false, false, 5.03f, 5.25f) + horizontalLineToRelative(0.72f) + close() + moveTo(22.02f, 18.96f) + lineTo(22.78f, 19.21f) + horizontalLineToRelative(0.02f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, 0.47f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, 0.1f) + lineToRelative(-0.77f, 0.26f) + arcToRelative(1.58f, 1.58f, 0.0f, false, false, -1.0f, 1.0f) + lineToRelative(-0.24f, 0.76f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.58f, 0.0f) + lineToRelative(-0.24f, -0.77f) + arcToRelative(1.57f, 1.57f, 0.0f, false, false, -1.0f, -1.0f) + lineToRelative(-0.77f, -0.25f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, -0.46f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, -0.1f) + lineToRelative(0.77f, -0.26f) + arcToRelative(1.58f, 1.58f, 0.0f, false, false, 0.98f, -1.0f) + lineToRelative(0.25f, -0.76f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.57f, 0.0f) + lineToRelative(0.25f, 0.77f) + arcToRelative(1.58f, 1.58f, 0.0f, false, false, 1.0f, 1.0f) + close() + } + } + return _micSparkle!! + } + +private var _micSparkle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Microscope.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Microscope.kt new file mode 100644 index 00000000..1c282b25 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Microscope.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Microscope: ImageVector + get() { + if (_microscope != null) { + return _microscope!! + } + _microscope = fluentIcon(name = "Regular.Microscope") { + fluentPath { + moveTo(8.0f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(11.0f, 3.0f) + horizontalLineToRelative(1.25f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.78f) + horizontalLineToRelative(0.03f) + arcToRelative(8.25f, 8.25f, 0.0f, false, true, 3.96f, 14.97f) + horizontalLineToRelative(3.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(3.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(8.53f) + arcTo(6.75f, 6.75f, 0.0f, false, false, 13.0f, 7.04f) + verticalLineToRelative(5.21f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-0.75f) + verticalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + lineTo(8.0f, 3.0f) + verticalLineToRelative(-0.25f) + close() + moveTo(9.0f, 13.0f) + verticalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-1.0f) + lineTo(9.0f, 13.0f) + close() + moveTo(7.5f, 11.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-7.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(7.0f) + close() + moveTo(5.75f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-7.5f) + close() + } + } + return _microscope!! + } + +private var _microscope: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Midi.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Midi.kt new file mode 100644 index 00000000..fd866c2d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Midi.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Midi: ImageVector + get() { + if (_midi != null) { + return _midi!! + } + _midi = fluentIcon(name = "Regular.Midi") { + fluentPath { + moveTo(21.25f, 4.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(14.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.75f) + lineTo(2.75f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + lineTo(2.0f, 4.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + horizontalLineToRelative(18.6f) + close() + moveTo(6.0f, 12.5f) + lineTo(3.5f, 12.5f) + verticalLineToRelative(6.0f) + horizontalLineToRelative(17.0f) + verticalLineToRelative(-6.0f) + lineTo(18.0f, 12.5f) + verticalLineToRelative(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(16.5f, 12.5f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(13.0f, 12.5f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(9.5f, 12.5f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(6.0f, 12.5f) + close() + moveTo(20.5f, 5.5f) + horizontalLineToRelative(-17.0f) + lineTo(3.5f, 11.0f) + horizontalLineToRelative(17.0f) + lineTo(20.5f, 5.5f) + close() + moveTo(9.25f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(17.25f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(2.6f) + close() + moveTo(6.25f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + } + } + return _midi!! + } + +private var _midi: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MobileOptimized.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MobileOptimized.kt new file mode 100644 index 00000000..1c366fef --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MobileOptimized.kt @@ -0,0 +1,102 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MobileOptimized: ImageVector + get() { + if (_mobileOptimized != null) { + return _mobileOptimized!! + } + _mobileOptimized = fluentIcon(name = "Regular.MobileOptimized") { + fluentPath { + moveTo(19.25f, 18.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(20.0f, 20.0f) + verticalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-2.1f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(2.0f) + horizontalLineToRelative(-2.0f) + close() + moveTo(2.75f, 18.5f) + horizontalLineToRelative(2.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(4.0f, 20.0f) + lineTo(2.75f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(2.1f) + horizontalLineToRelative(-2.0f) + close() + moveTo(16.75f, 5.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(6.5f, 6.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(9.5f) + close() + moveTo(16.0f, 7.0f) + lineTo(8.0f, 7.0f) + verticalLineToRelative(10.0f) + horizontalLineToRelative(8.0f) + lineTo(16.0f, 7.0f) + close() + moveTo(9.75f, 12.51f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + horizontalLineToRelative(2.6f) + horizontalLineToRelative(-2.5f) + close() + moveTo(9.75f, 9.5f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(4.6f) + horizontalLineToRelative(-4.5f) + close() + moveTo(4.75f, 2.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(4.0f, 4.0f) + lineTo(4.0f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(19.25f, 2.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + lineTo(20.0f, 4.0f) + horizontalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-2.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _mobileOptimized!! + } + +private var _mobileOptimized: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Molecule.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Molecule.kt new file mode 100644 index 00000000..85d3455e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Molecule.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Molecule: ImageVector + get() { + if (_molecule != null) { + return _molecule!! + } + _molecule = fluentIcon(name = "Regular.Molecule") { + fluentPath { + moveTo(16.0f, 12.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, false, -4.34f, -2.51f) + lineToRelative(-2.71f, 1.8f) + arcTo(3.99f, 3.99f, 0.0f, false, false, 2.0f, 14.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 7.18f, 2.43f) + lineToRelative(3.89f, 1.94f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.67f, -1.34f) + lineToRelative(-3.89f, -1.94f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -0.11f, -2.52f) + lineToRelative(2.86f, -1.9f) + curveToRelative(0.9f, 0.82f, 2.09f, 1.33f, 3.4f, 1.33f) + close() + moveTo(16.0f, 10.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 0.0f, -7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 0.0f, 7.0f) + close() + moveTo(6.0f, 16.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, -5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, 5.0f) + close() + moveTo(17.5f, 19.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + } + } + return _molecule!! + } + +private var _molecule: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Money.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Money.kt new file mode 100644 index 00000000..e435b213 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Money.kt @@ -0,0 +1,100 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Money: ImageVector + get() { + if (_money != null) { + return _money!! + } + _money = fluentIcon(name = "Regular.Money") { + fluentPath { + moveTo(10.5f, 8.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + moveTo(9.0f, 11.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + moveTo(2.0f, 7.25f) + curveTo(2.0f, 6.01f, 3.0f, 5.0f, 4.25f, 5.0f) + horizontalLineToRelative(12.5f) + curveTo(17.99f, 5.0f, 19.0f, 6.0f, 19.0f, 7.25f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(4.25f, 17.0f) + curveTo(3.01f, 17.0f, 2.0f, 16.0f, 2.0f, 14.75f) + verticalLineToRelative(-7.5f) + close() + moveTo(4.25f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(3.5f, 8.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(5.0f, 6.5f) + horizontalLineToRelative(-0.75f) + close() + moveTo(3.5f, 12.5f) + horizontalLineToRelative(0.75f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(8.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(0.75f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(-0.75f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + lineTo(14.5f, 6.5f) + horizontalLineToRelative(-8.0f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(3.5f, 9.5f) + verticalLineToRelative(3.0f) + close() + moveTo(17.5f, 8.0f) + verticalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(16.0f, 6.5f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(0.75f) + close() + moveTo(17.5f, 14.0f) + horizontalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(0.75f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(17.5f, 14.0f) + close() + moveTo(3.5f, 14.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(5.0f, 15.5f) + verticalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(3.5f, 14.0f) + verticalLineToRelative(0.75f) + close() + moveTo(4.4f, 18.5f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 7.0f, 20.0f) + horizontalLineToRelative(10.25f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 22.0f, 15.25f) + lineTo(22.0f, 10.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -1.5f, -2.6f) + verticalLineToRelative(7.85f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(4.4f, 18.5f) + close() + } + } + return _money!! + } + +private var _money: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MoneyCalculator.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MoneyCalculator.kt new file mode 100644 index 00000000..e9e4eb51 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MoneyCalculator.kt @@ -0,0 +1,146 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MoneyCalculator: ImageVector + get() { + if (_moneyCalculator != null) { + return _moneyCalculator!! + } + _moneyCalculator = fluentIcon(name = "Regular.MoneyCalculator") { + fluentPath { + moveTo(10.5f, 7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + moveTo(9.0f, 10.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + moveTo(2.0f, 6.25f) + curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) + horizontalLineToRelative(12.5f) + curveTo(17.99f, 4.0f, 19.0f, 5.0f, 19.0f, 6.25f) + lineTo(19.0f, 11.0f) + horizontalLineToRelative(-1.5f) + lineTo(17.5f, 8.5f) + horizontalLineToRelative(-0.75f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + lineTo(14.5f, 5.5f) + horizontalLineToRelative(-8.0f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(3.5f, 8.5f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(0.75f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(0.75f) + lineTo(14.0f, 14.5f) + lineTo(14.0f, 16.0f) + lineTo(4.25f, 16.0f) + curveTo(3.01f, 16.0f, 2.0f, 15.0f, 2.0f, 13.75f) + verticalLineToRelative(-7.5f) + close() + moveTo(4.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(3.5f, 7.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(5.0f, 5.5f) + horizontalLineToRelative(-0.75f) + close() + moveTo(17.5f, 7.0f) + verticalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(16.0f, 5.5f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(0.75f) + close() + moveTo(3.5f, 13.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(5.0f, 14.5f) + verticalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(3.5f, 13.0f) + verticalLineToRelative(0.75f) + close() + moveTo(4.4f, 17.5f) + lineTo(14.0f, 17.5f) + lineTo(14.0f, 19.0f) + lineTo(7.0f, 19.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.6f, -1.5f) + close() + moveTo(22.0f, 11.0f) + lineTo(22.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -1.5f, -2.6f) + lineTo(20.5f, 11.0f) + lineTo(22.0f, 11.0f) + close() + moveTo(16.5f, 12.0f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(8.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(5.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-8.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + horizontalLineToRelative(-5.0f) + close() + moveTo(17.0f, 16.5f) + horizontalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + close() + moveTo(20.0f, 16.5f) + horizontalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + close() + moveTo(17.0f, 18.5f) + horizontalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + close() + moveTo(20.0f, 18.5f) + horizontalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + close() + moveTo(17.0f, 20.5f) + horizontalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + close() + moveTo(20.0f, 20.5f) + horizontalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + close() + moveTo(16.5f, 14.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(4.0f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + verticalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + verticalLineToRelative(-1.0f) + close() + } + } + return _moneyCalculator!! + } + +private var _moneyCalculator: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MoneyDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MoneyDismiss.kt new file mode 100644 index 00000000..dbe6f414 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MoneyDismiss.kt @@ -0,0 +1,108 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MoneyDismiss: ImageVector + get() { + if (_moneyDismiss != null) { + return _moneyDismiss!! + } + _moneyDismiss = fluentIcon(name = "Regular.MoneyDismiss") { + fluentPath { + moveTo(10.5f, 8.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + moveTo(9.0f, 11.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + moveTo(2.0f, 7.25f) + curveTo(2.0f, 6.01f, 3.0f, 5.0f, 4.25f, 5.0f) + horizontalLineToRelative(12.5f) + curveTo(17.99f, 5.0f, 19.0f, 6.0f, 19.0f, 7.25f) + verticalLineToRelative(3.92f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -0.17f) + lineTo(17.5f, 9.5f) + horizontalLineToRelative(-0.75f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + lineTo(14.5f, 6.5f) + horizontalLineToRelative(-8.0f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(3.5f, 9.5f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(0.75f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(4.81f) + curveToRelative(-0.15f, 0.48f, -0.25f, 0.98f, -0.3f, 1.5f) + lineTo(4.26f, 17.0f) + curveTo(3.01f, 17.0f, 2.0f, 16.0f, 2.0f, 14.75f) + verticalLineToRelative(-7.5f) + close() + moveTo(4.25f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(3.5f, 8.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(5.0f, 6.5f) + horizontalLineToRelative(-0.75f) + close() + moveTo(17.5f, 8.0f) + verticalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(16.0f, 6.5f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(0.75f) + close() + moveTo(3.5f, 14.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(5.0f, 15.5f) + verticalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(3.5f, 14.0f) + verticalLineToRelative(0.75f) + close() + moveTo(4.4f, 18.5f) + horizontalLineToRelative(6.68f) + curveToRelative(0.08f, 0.52f, 0.22f, 1.03f, 0.42f, 1.5f) + lineTo(7.0f, 20.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.6f, -1.5f) + close() + moveTo(20.5f, 11.73f) + curveToRelative(0.55f, 0.29f, 1.06f, 0.65f, 1.5f, 1.08f) + lineTo(22.0f, 10.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -1.5f, -2.6f) + verticalLineToRelative(4.33f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-1.64f, -1.65f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.65f, 1.64f) + lineToRelative(-1.65f, -1.64f) + close() + } + } + return _moneyDismiss!! + } + +private var _moneyDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MoneyHand.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MoneyHand.kt new file mode 100644 index 00000000..05ad2b4a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MoneyHand.kt @@ -0,0 +1,121 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MoneyHand: ImageVector + get() { + if (_moneyHand != null) { + return _moneyHand!! + } + _moneyHand = fluentIcon(name = "Regular.MoneyHand") { + fluentPath { + moveTo(6.25f, 2.0f) + curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) + verticalLineToRelative(15.5f) + curveTo(4.0f, 20.99f, 5.0f, 22.0f, 6.25f, 22.0f) + horizontalLineToRelative(7.5f) + curveToRelative(1.24f, 0.0f, 2.24f, -1.0f, 2.25f, -2.23f) + verticalLineToRelative(-1.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + curveToRelative(-0.45f, 0.0f, -0.74f, -0.12f, -0.94f, -0.28f) + curveToRelative(-0.2f, -0.17f, -0.38f, -0.43f, -0.5f, -0.79f) + arcToRelative(8.4f, 8.4f, 0.0f, false, true, -0.3f, -2.68f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.21f, -0.51f) + lineToRelative(-0.17f, -0.18f) + lineToRelative(-0.17f, -0.17f) + lineToRelative(-1.18f, -1.17f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.81f, -1.17f) + arcToRelative(0.62f, 0.62f, 0.0f, false, true, -0.02f, -0.32f) + curveToRelative(0.02f, -0.09f, 0.08f, -0.2f, 0.2f, -0.33f) + arcToRelative(0.7f, 0.7f, 0.0f, false, true, 0.33f, -0.2f) + arcToRelative(0.61f, 0.61f, 0.0f, false, true, 0.32f, 0.02f) + curveToRelative(0.3f, 0.08f, 0.7f, 0.34f, 1.17f, 0.81f) + lineToRelative(1.51f, 1.5f) + curveToRelative(0.76f, 0.75f, 1.38f, 1.36f, 1.72f, 1.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.1f, -1.02f) + lineTo(16.0f, 11.42f) + lineTo(16.0f, 8.06f) + lineToRelative(2.84f, 2.84f) + curveToRelative(0.42f, 0.42f, 0.66f, 1.0f, 0.66f, 1.6f) + verticalLineToRelative(8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-8.76f) + curveToRelative(0.0f, -1.0f, -0.4f, -1.95f, -1.1f, -2.65f) + lineTo(16.0f, 5.94f) + lineTo(16.0f, 4.25f) + curveTo(16.0f, 3.01f, 15.0f, 2.0f, 13.75f, 2.0f) + horizontalLineToRelative(-7.5f) + close() + moveTo(12.39f, 16.94f) + curveToRelative(0.1f, 0.27f, 0.22f, 0.53f, 0.39f, 0.78f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.28f, 2.03f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + lineTo(5.5f, 17.5f) + verticalLineToRelative(-11.0f) + horizontalLineToRelative(0.75f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(8.5f, 3.5f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(0.75f) + verticalLineToRelative(3.44f) + lineToRelative(-0.47f, -0.47f) + curveToRelative(-0.53f, -0.53f, -1.15f, -1.0f, -1.82f, -1.2f) + arcToRelative(2.1f, 2.1f, 0.0f, false, false, -1.74f, 0.26f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 1.55f, 6.32f) + curveToRelative(0.04f, 0.69f, 0.13f, 1.43f, 0.37f, 2.09f) + close() + moveTo(8.0f, 12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.46f, -1.93f) + curveToRelative(-0.05f, 0.3f, -0.02f, 0.6f, 0.06f, 0.89f) + curveToRelative(0.2f, 0.67f, 0.67f, 1.29f, 1.2f, 1.82f) + lineToRelative(0.67f, 0.66f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 8.0f, 12.0f) + close() + moveTo(5.5f, 4.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + lineTo(7.0f, 3.5f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(5.5f, 5.0f) + verticalLineToRelative(-0.75f) + close() + moveTo(13.0f, 3.5f) + horizontalLineToRelative(0.75f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(14.5f, 5.0f) + horizontalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(13.0f, 3.5f) + close() + moveTo(14.5f, 19.0f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(13.0f, 20.5f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(0.75f) + close() + moveTo(7.0f, 20.5f) + horizontalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(5.5f, 19.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.75f) + close() + } + } + return _moneyHand!! + } + +private var _moneyHand: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MoneyOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MoneyOff.kt new file mode 100644 index 00000000..1ba4565f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MoneyOff.kt @@ -0,0 +1,104 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MoneyOff: ImageVector + get() { + if (_moneyOff != null) { + return _moneyOff!! + } + _moneyOff = fluentIcon(name = "Regular.MoneyOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(1.74f, 1.74f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(7.5f) + curveTo(2.0f, 15.99f, 3.0f, 17.0f, 4.25f, 17.0f) + horizontalLineToRelative(11.69f) + lineToRelative(1.5f, 1.5f) + lineTo(4.4f, 18.5f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 7.0f, 20.0f) + horizontalLineToRelative(10.25f) + curveToRelative(0.51f, 0.0f, 1.0f, -0.08f, 1.46f, -0.23f) + lineToRelative(2.01f, 2.01f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(14.44f, 15.5f) + lineTo(6.5f, 15.5f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + lineTo(3.5f, 12.5f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(0.75f) + curveToRelative(1.14f, 0.0f, 2.09f, -0.85f, 2.23f, -1.96f) + lineToRelative(1.64f, 1.64f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 4.2f, 4.2f) + lineToRelative(2.12f, 2.12f) + close() + moveTo(9.2f, 10.26f) + lineToRelative(2.04f, 2.04f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.05f, -2.05f) + close() + moveTo(3.5f, 7.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + lineTo(5.0f, 6.5f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(3.5f, 8.0f) + verticalLineToRelative(-0.75f) + close() + moveTo(4.25f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(3.5f, 14.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(-0.75f) + close() + moveTo(16.75f, 12.5f) + curveToRelative(-0.32f, 0.0f, -0.62f, 0.06f, -0.89f, 0.18f) + lineTo(17.18f, 14.0f) + horizontalLineToRelative(0.32f) + verticalLineToRelative(0.32f) + lineToRelative(1.32f, 1.32f) + curveToRelative(0.12f, -0.27f, 0.18f, -0.57f, 0.18f, -0.89f) + verticalLineToRelative(-7.5f) + curveTo(19.0f, 6.01f, 18.0f, 5.0f, 16.75f, 5.0f) + lineTo(8.18f, 5.0f) + lineToRelative(1.5f, 1.5f) + horizontalLineToRelative(4.82f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(0.75f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(-0.75f) + close() + moveTo(17.5f, 7.25f) + lineTo(17.5f, 8.0f) + horizontalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(16.0f, 6.5f) + horizontalLineToRelative(0.75f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(20.06f, 16.88f) + lineTo(21.15f, 17.97f) + curveToRelative(0.53f, -0.77f, 0.85f, -1.71f, 0.85f, -2.72f) + lineTo(22.0f, 10.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -1.5f, -2.6f) + verticalLineToRelative(7.85f) + curveToRelative(0.0f, 0.6f, -0.16f, 1.15f, -0.44f, 1.63f) + close() + } + } + return _moneyOff!! + } + +private var _moneyOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MoreCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MoreCircle.kt new file mode 100644 index 00000000..af29d433 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MoreCircle.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MoreCircle: ImageVector + get() { + if (_moreCircle != null) { + return _moreCircle!! + } + _moreCircle = fluentIcon(name = "Regular.MoreCircle") { + fluentPath { + moveTo(20.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, -17.0f, 0.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 17.0f, 0.0f) + close() + moveTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, -20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 20.0f, 0.0f) + close() + moveTo(7.0f, 13.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + moveTo(12.0f, 13.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + moveTo(17.0f, 13.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + close() + } + } + return _moreCircle!! + } + +private var _moreCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MoviesAndTv.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MoviesAndTv.kt new file mode 100644 index 00000000..dec5ecc2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MoviesAndTv.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MoviesAndTv: ImageVector + get() { + if (_moviesAndTv != null) { + return _moviesAndTv!! + } + _moviesAndTv = fluentIcon(name = "Regular.MoviesAndTv") { + fluentPath { + moveToRelative(19.73f, 3.92f) + lineToRelative(0.05f, 0.16f) + lineToRelative(0.55f, 1.92f) + curveToRelative(0.1f, 0.36f, -0.08f, 0.74f, -0.42f, 0.9f) + lineToRelative(-0.1f, 0.03f) + lineTo(9.1f, 10.0f) + horizontalLineToRelative(11.16f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.29f, 0.74f, 0.65f) + verticalLineToRelative(8.6f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.43f, 22.0f) + lineTo(5.75f, 22.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.74f, -2.58f) + lineTo(3.0f, 19.25f) + verticalLineToRelative(-8.4f) + lineToRelative(-0.52f, -1.81f) + curveToRelative(-0.4f, -1.4f, 0.36f, -2.87f, 1.72f, -3.35f) + lineToRelative(0.16f, -0.05f) + lineToRelative(12.02f, -3.45f) + curveToRelative(1.4f, -0.4f, 2.87f, 0.37f, 3.35f, 1.73f) + close() + moveTo(19.5f, 11.5f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(7.75f) + curveToRelative(0.0f, 0.6f, 0.43f, 1.1f, 1.0f, 1.23f) + lineToRelative(0.12f, 0.01f) + lineToRelative(0.13f, 0.01f) + horizontalLineToRelative(12.5f) + curveToRelative(0.65f, 0.0f, 1.18f, -0.5f, 1.24f, -1.12f) + lineTo(19.49f, 11.5f) + close() + moveTo(6.27f, 6.65f) + lineToRelative(-1.5f, 0.43f) + curveToRelative(-0.61f, 0.18f, -1.0f, 0.8f, -0.88f, 1.42f) + lineToRelative(0.03f, 0.12f) + lineToRelative(0.34f, 1.2f) + lineToRelative(0.3f, -0.08f) + lineToRelative(1.71f, -3.1f) + close() + moveTo(11.03f, 5.29f) + lineTo(8.31f, 6.06f) + lineTo(6.6f, 9.16f) + lineTo(9.32f, 8.38f) + lineTo(11.02f, 5.28f) + close() + moveTo(15.79f, 3.92f) + lineTo(13.07f, 4.7f) + lineTo(11.36f, 7.8f) + lineTo(14.07f, 7.0f) + lineToRelative(1.72f, -3.09f) + close() + moveTo(17.63f, 3.69f) + lineTo(16.11f, 6.43f) + lineTo(18.68f, 5.69f) + lineTo(18.34f, 4.49f) + curveToRelative(-0.1f, -0.37f, -0.38f, -0.66f, -0.7f, -0.8f) + close() + } + } + return _moviesAndTv!! + } + +private var _moviesAndTv: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Multiplier12X.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Multiplier12X.kt new file mode 100644 index 00000000..b37eec42 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Multiplier12X.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Multiplier12X: ImageVector + get() { + if (_multiplier12X != null) { + return _multiplier12X!! + } + _multiplier12X = fluentIcon(name = "Regular.Multiplier12X") { + fluentPath { + moveTo(5.45f, 7.03f) + curveToRelative(0.33f, 0.09f, 0.55f, 0.38f, 0.55f, 0.72f) + verticalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(4.5f, 9.83f) + curveToRelative(-0.38f, 0.37f, -0.84f, 0.75f, -1.36f, 1.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.78f, -1.28f) + arcTo(6.88f, 6.88f, 0.0f, false, false, 4.6f, 7.37f) + verticalLineToRelative(-0.01f) + horizontalLineToRelative(0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.84f, -0.33f) + close() + moveTo(10.42f, 10.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.83f, -0.68f) + lineToRelative(0.03f, -0.12f) + curveToRelative(0.03f, -0.1f, 0.1f, -0.25f, 0.2f, -0.38f) + curveToRelative(0.17f, -0.25f, 0.53f, -0.57f, 1.37f, -0.57f) + curveToRelative(0.77f, 0.0f, 1.2f, 0.24f, 1.42f, 0.52f) + curveToRelative(0.24f, 0.3f, 0.38f, 0.8f, 0.24f, 1.6f) + curveToRelative(-0.07f, 0.44f, -0.28f, 0.7f, -0.61f, 0.9f) + arcToRelative(5.7f, 5.7f, 0.0f, false, true, -0.98f, 0.48f) + lineToRelative(-0.52f, 0.22f) + curveToRelative(-0.6f, 0.26f, -1.28f, 0.61f, -1.8f, 1.26f) + arcToRelative(4.23f, 4.23f, 0.0f, false, false, -0.85f, 2.77f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, 0.75f) + horizontalLineToRelative(4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.94f) + curveToRelative(0.08f, -0.5f, 0.25f, -0.83f, 0.45f, -1.07f) + curveToRelative(0.29f, -0.36f, 0.7f, -0.6f, 1.24f, -0.84f) + lineToRelative(0.37f, -0.15f) + curveToRelative(0.43f, -0.18f, 0.94f, -0.39f, 1.35f, -0.66f) + curveToRelative(0.6f, -0.4f, 1.1f, -0.98f, 1.27f, -1.9f) + curveToRelative(0.18f, -1.05f, 0.05f, -2.04f, -0.54f, -2.79f) + curveToRelative(-0.6f, -0.75f, -1.52f, -1.09f, -2.6f, -1.09f) + curveToRelative(-1.32f, 0.0f, -2.13f, 0.55f, -2.6f, 1.18f) + arcToRelative(2.86f, 2.86f, 0.0f, false, false, -0.5f, 1.22f) + verticalLineToRelative(0.01f) + reflectiveCurveToRelative(-0.04f, 0.4f, 0.0f, 0.0f) + curveToRelative(-0.04f, 0.42f, 0.26f, 0.8f, 0.67f, 0.84f) + close() + moveTo(18.28f, 12.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(1.22f, 1.22f) + lineToRelative(-1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineToRelative(1.22f, -1.22f) + lineToRelative(1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineToRelative(-1.22f, -1.22f) + lineToRelative(1.22f, -1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-1.22f, 1.22f) + lineToRelative(-1.22f, -1.22f) + close() + moveTo(8.5f, 16.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + } + } + return _multiplier12X!! + } + +private var _multiplier12X: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Multiplier15X.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Multiplier15X.kt new file mode 100644 index 00000000..f87112e1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Multiplier15X.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Multiplier15X: ImageVector + get() { + if (_multiplier15X != null) { + return _multiplier15X!! + } + _multiplier15X = fluentIcon(name = "Regular.Multiplier15X") { + fluentPath { + moveTo(5.45f, 7.03f) + curveToRelative(0.33f, 0.09f, 0.55f, 0.38f, 0.55f, 0.72f) + verticalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(4.5f, 9.83f) + curveToRelative(-0.38f, 0.37f, -0.84f, 0.75f, -1.36f, 1.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.78f, -1.28f) + arcTo(6.88f, 6.88f, 0.0f, false, false, 4.6f, 7.37f) + verticalLineToRelative(-0.01f) + horizontalLineToRelative(0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.84f, -0.33f) + close() + moveTo(10.75f, 7.0f) + curveToRelative(-0.4f, 0.0f, -0.72f, 0.3f, -0.75f, 0.7f) + lineToRelative(-0.25f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.86f, 0.8f) + lineToRelative(2.2f, -0.32f) + arcToRelative(1.92f, 1.92f, 0.0f, true, true, 0.27f, 3.82f) + horizontalLineToRelative(-0.36f) + curveToRelative(-0.64f, 0.0f, -1.25f, -0.27f, -1.68f, -0.75f) + lineToRelative(-0.23f, -0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.12f, 1.0f) + lineToRelative(0.24f, 0.26f) + arcToRelative(3.78f, 3.78f, 0.0f, false, false, 2.8f, 1.24f) + horizontalLineToRelative(0.35f) + arcToRelative(3.42f, 3.42f, 0.0f, true, false, -0.48f, -6.8f) + lineToRelative(-1.29f, 0.18f) + lineToRelative(0.14f, -2.13f) + horizontalLineToRelative(3.8f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + close() + moveTo(18.28f, 12.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(1.22f, 1.22f) + lineToRelative(-1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(1.22f, -1.22f) + lineToRelative(1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineToRelative(-1.22f, -1.22f) + lineToRelative(1.22f, -1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-1.22f, 1.22f) + lineToRelative(-1.22f, -1.22f) + close() + moveTo(8.5f, 16.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + } + } + return _multiplier15X!! + } + +private var _multiplier15X: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Multiplier18X.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Multiplier18X.kt new file mode 100644 index 00000000..5adebdaf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Multiplier18X.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Multiplier18X: ImageVector + get() { + if (_multiplier18X != null) { + return _multiplier18X!! + } + _multiplier18X = fluentIcon(name = "Regular.Multiplier18X") { + fluentPath { + moveTo(16.0f, 9.5f) + arcToRelative(2.6f, 2.6f, 0.0f, false, true, -0.86f, 1.93f) + curveToRelative(0.82f, 0.58f, 1.36f, 1.5f, 1.36f, 2.57f) + curveToRelative(0.0f, 1.86f, -1.64f, 3.25f, -3.5f, 3.25f) + reflectiveCurveTo(9.5f, 15.86f, 9.5f, 14.0f) + curveToRelative(0.0f, -1.07f, 0.54f, -1.99f, 1.36f, -2.57f) + arcTo(2.6f, 2.6f, 0.0f, false, true, 10.0f, 9.5f) + curveToRelative(0.0f, -1.6f, 1.43f, -2.75f, 3.0f, -2.75f) + reflectiveCurveToRelative(3.0f, 1.15f, 3.0f, 2.75f) + close() + moveTo(13.0f, 8.25f) + curveToRelative(-0.91f, 0.0f, -1.5f, 0.64f, -1.5f, 1.25f) + reflectiveCurveToRelative(0.59f, 1.25f, 1.5f, 1.25f) + reflectiveCurveToRelative(1.5f, -0.64f, 1.5f, -1.25f) + reflectiveCurveToRelative(-0.59f, -1.25f, -1.5f, -1.25f) + close() + moveTo(11.0f, 14.0f) + curveToRelative(0.0f, 0.9f, 0.83f, 1.75f, 2.0f, 1.75f) + reflectiveCurveToRelative(2.0f, -0.85f, 2.0f, -1.75f) + reflectiveCurveToRelative(-0.83f, -1.75f, -2.0f, -1.75f) + reflectiveCurveToRelative(-2.0f, 0.85f, -2.0f, 1.75f) + close() + moveTo(18.28f, 12.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(1.22f, 1.22f) + lineToRelative(-1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(1.22f, -1.22f) + lineToRelative(1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineToRelative(-1.22f, -1.22f) + lineToRelative(1.22f, -1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-1.22f, 1.22f) + lineToRelative(-1.22f, -1.22f) + close() + moveTo(8.5f, 16.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(5.45f, 7.03f) + curveToRelative(0.33f, 0.09f, 0.55f, 0.38f, 0.55f, 0.72f) + verticalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(4.5f, 9.83f) + curveToRelative(-0.38f, 0.37f, -0.84f, 0.75f, -1.36f, 1.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.78f, -1.28f) + arcTo(6.88f, 6.88f, 0.0f, false, false, 4.6f, 7.37f) + verticalLineToRelative(-0.01f) + horizontalLineToRelative(0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.84f, -0.33f) + close() + } + } + return _multiplier18X!! + } + +private var _multiplier18X: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Multiplier1X.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Multiplier1X.kt new file mode 100644 index 00000000..ffbdcbe9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Multiplier1X.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Multiplier1X: ImageVector + get() { + if (_multiplier1X != null) { + return _multiplier1X!! + } + _multiplier1X = fluentIcon(name = "Regular.Multiplier1X") { + fluentPath { + moveTo(10.0f, 7.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.39f, -0.4f) + verticalLineToRelative(0.01f) + arcToRelative(3.07f, 3.07f, 0.0f, false, true, -0.15f, 0.22f) + arcToRelative(6.88f, 6.88f, 0.0f, false, true, -2.1f, 2.03f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.78f, 1.28f) + curveToRelative(0.52f, -0.31f, 0.98f, -0.69f, 1.36f, -1.06f) + verticalLineToRelative(6.42f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-8.5f) + close() + moveTo(13.28f, 12.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(1.22f, 1.22f) + lineToRelative(-1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(1.22f, -1.22f) + lineToRelative(1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineToRelative(-1.22f, -1.22f) + lineToRelative(1.22f, -1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-1.22f, 1.22f) + lineToRelative(-1.22f, -1.22f) + close() + } + } + return _multiplier1X!! + } + +private var _multiplier1X: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Multiplier2X.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Multiplier2X.kt new file mode 100644 index 00000000..2bc30699 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Multiplier2X.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Multiplier2X: ImageVector + get() { + if (_multiplier2X != null) { + return _multiplier2X!! + } + _multiplier2X = fluentIcon(name = "Regular.Multiplier2X") { + fluentPath { + moveTo(6.16f, 10.24f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 7.0f, 9.58f) + lineToRelative(0.03f, -0.12f) + curveToRelative(0.03f, -0.1f, 0.1f, -0.25f, 0.2f, -0.4f) + curveToRelative(0.18f, -0.24f, 0.55f, -0.56f, 1.39f, -0.56f) + curveToRelative(0.77f, 0.0f, 1.28f, 0.24f, 1.57f, 0.56f) + curveToRelative(0.28f, 0.3f, 0.45f, 0.8f, 0.32f, 1.56f) + curveToRelative(-0.07f, 0.43f, -0.28f, 0.68f, -0.64f, 0.9f) + curveToRelative(-0.3f, 0.19f, -0.63f, 0.32f, -1.04f, 0.48f) + lineToRelative(-0.54f, 0.21f) + curveToRelative(-0.62f, 0.26f, -1.34f, 0.61f, -1.9f, 1.26f) + arcToRelative(4.1f, 4.1f, 0.0f, false, false, -0.89f, 2.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, 0.75f) + horizontalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(7.06f, 15.5f) + curveToRelative(0.1f, -0.5f, 0.27f, -0.82f, 0.47f, -1.06f) + curveToRelative(0.32f, -0.36f, 0.76f, -0.6f, 1.33f, -0.84f) + lineToRelative(0.4f, -0.16f) + curveToRelative(0.45f, -0.17f, 0.98f, -0.38f, 1.4f, -0.65f) + curveToRelative(0.63f, -0.39f, 1.17f, -0.97f, 1.33f, -1.91f) + curveToRelative(0.19f, -1.1f, -0.03f, -2.1f, -0.69f, -2.83f) + arcTo(3.52f, 3.52f, 0.0f, false, false, 8.62f, 7.0f) + curveToRelative(-1.32f, 0.0f, -2.14f, 0.55f, -2.6f, 1.18f) + arcToRelative(2.88f, 2.88f, 0.0f, false, false, -0.51f, 1.21f) + verticalLineToRelative(0.02f) + reflectiveCurveToRelative(-0.05f, 0.39f, 0.0f, 0.0f) + curveToRelative(-0.05f, 0.41f, 0.24f, 0.79f, 0.65f, 0.83f) + close() + moveTo(14.28f, 12.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(1.22f, 1.22f) + lineToRelative(-1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(1.22f, -1.22f) + lineToRelative(1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-1.22f, -1.22f) + lineToRelative(1.22f, -1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-1.22f, 1.22f) + lineToRelative(-1.22f, -1.22f) + close() + } + } + return _multiplier2X!! + } + +private var _multiplier2X: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Multiplier5X.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Multiplier5X.kt new file mode 100644 index 00000000..70e386c2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Multiplier5X.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Multiplier5X: ImageVector + get() { + if (_multiplier5X != null) { + return _multiplier5X!! + } + _multiplier5X = fluentIcon(name = "Regular.Multiplier5X") { + fluentPath { + moveTo(7.0f, 7.7f) + curveToRelative(0.03f, -0.4f, 0.36f, -0.7f, 0.75f, -0.7f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.8f) + lineToRelative(-0.14f, 2.13f) + lineToRelative(1.29f, -0.19f) + arcToRelative(3.42f, 3.42f, 0.0f, true, true, 0.48f, 6.81f) + horizontalLineToRelative(-0.36f) + arcToRelative(3.78f, 3.78f, 0.0f, false, true, -2.8f, -1.24f) + lineToRelative(-0.23f, -0.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.12f, -1.0f) + lineToRelative(0.23f, 0.25f) + curveToRelative(0.43f, 0.48f, 1.04f, 0.75f, 1.68f, 0.75f) + horizontalLineToRelative(0.36f) + arcToRelative(1.92f, 1.92f, 0.0f, true, false, -0.27f, -3.82f) + lineToRelative(-2.2f, 0.31f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.86f, -0.79f) + lineTo(7.0f, 7.7f) + close() + moveTo(14.22f, 12.22f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(1.22f, 1.22f) + lineToRelative(1.22f, -1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) + lineToRelative(-1.22f, 1.22f) + lineToRelative(1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-1.22f, -1.22f) + lineToRelative(-1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(1.22f, -1.22f) + lineToRelative(-1.22f, -1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + moveTo(4.75f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + } + } + return _multiplier5X!! + } + +private var _multiplier5X: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MultiselectLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MultiselectLtr.kt new file mode 100644 index 00000000..058e0cc6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MultiselectLtr.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MultiselectLtr: ImageVector + get() { + if (_multiselectLtr != null) { + return _multiselectLtr!! + } + _multiselectLtr = fluentIcon(name = "Regular.MultiselectLtr") { + fluentPath { + moveTo(6.78f, 4.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineTo(3.75f, 5.69f) + lineToRelative(-0.47f, -0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(1.0f, 1.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.5f, -2.5f) + close() + moveTo(9.75f, 18.01f) + horizontalLineToRelative(11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.49f) + lineTo(9.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + horizontalLineToRelative(0.1f) + close() + moveTo(9.75f, 11.5f) + horizontalLineToRelative(11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(9.75f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(9.75f, 5.0f) + horizontalLineToRelative(11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(9.75f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(6.78f, 16.72f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-2.5f, 2.5f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-1.0f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(0.47f, 0.47f) + lineToRelative(1.97f, -1.97f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + } + } + return _multiselectLtr!! + } + +private var _multiselectLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MultiselectRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MultiselectRtl.kt new file mode 100644 index 00000000..d46b4814 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MultiselectRtl.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MultiselectRtl: ImageVector + get() { + if (_multiselectRtl != null) { + return _multiselectRtl!! + } + _multiselectRtl = fluentIcon(name = "Regular.MultiselectRtl") { + fluentPath { + moveTo(21.78f, 4.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineToRelative(-1.97f, 1.97f) + lineToRelative(-0.47f, -0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.0f, 1.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.5f, -2.5f) + close() + moveTo(2.75f, 18.01f) + horizontalLineToRelative(11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.49f) + lineTo(2.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + horizontalLineToRelative(0.1f) + close() + moveTo(2.75f, 11.5f) + horizontalLineToRelative(11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(2.75f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(2.75f, 5.0f) + horizontalLineToRelative(11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(2.75f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(21.78f, 16.72f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-2.5f, 2.5f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-1.0f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(0.47f, 0.47f) + lineToRelative(1.97f, -1.97f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + } + } + return _multiselectRtl!! + } + +private var _multiselectRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MusicNote1.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MusicNote1.kt new file mode 100644 index 00000000..1a0b7eaa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MusicNote1.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MusicNote1: ImageVector + get() { + if (_musicNote1 != null) { + return _musicNote1!! + } + _musicNote1 = fluentIcon(name = "Regular.MusicNote1") { + fluentPath { + moveTo(11.51f, 2.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.01f, 0.7f) + verticalLineToRelative(12.13f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 1.5f, 3.37f) + lineTo(12.0f, 8.83f) + lineToRelative(6.99f, 2.62f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.01f, -0.7f) + lineTo(20.0f, 7.48f) + curveToRelative(0.0f, -1.35f, -0.84f, -2.56f, -2.1f, -3.04f) + lineToRelative(-6.39f, -2.4f) + close() + moveTo(10.5f, 18.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(18.5f, 9.67f) + lineTo(12.0f, 7.23f) + verticalLineToRelative(-3.4f) + lineToRelative(5.36f, 2.01f) + curveToRelative(0.69f, 0.26f, 1.14f, 0.91f, 1.14f, 1.64f) + verticalLineToRelative(2.19f) + close() + } + } + return _musicNote1!! + } + +private var _musicNote1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MusicNote2.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MusicNote2.kt new file mode 100644 index 00000000..868cc721 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MusicNote2.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MusicNote2: ImageVector + get() { + if (_musicNote2 != null) { + return _musicNote2!! + } + _musicNote2 = fluentIcon(name = "Regular.MusicNote2") { + fluentPath { + moveTo(19.7f, 2.15f) + curveToRelative(0.19f, 0.14f, 0.3f, 0.36f, 0.3f, 0.6f) + lineTo(20.0f, 16.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, -1.5f, -2.87f) + lineTo(18.5f, 7.76f) + lineTo(10.0f, 10.3f) + verticalLineToRelative(8.19f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, -1.5f, -2.87f) + lineTo(8.5f, 5.75f) + curveToRelative(0.0f, -0.33f, 0.22f, -0.62f, 0.53f, -0.72f) + lineToRelative(10.0f, -3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.67f, 0.12f) + close() + moveTo(10.0f, 8.75f) + lineToRelative(8.5f, -2.56f) + lineTo(18.5f, 3.76f) + lineTo(10.0f, 6.3f) + verticalLineToRelative(2.43f) + close() + moveTo(6.5f, 16.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, -4.0f) + close() + moveTo(14.5f, 16.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -4.0f, 0.0f) + close() + } + } + return _musicNote2!! + } + +private var _musicNote2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MusicNoteOff1.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MusicNoteOff1.kt new file mode 100644 index 00000000..3504395c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MusicNoteOff1.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MusicNoteOff1: ImageVector + get() { + if (_musicNoteOff1 != null) { + return _musicNoteOff1!! + } + _musicNoteOff1 = fluentIcon(name = "Regular.MusicNoteOff1") { + fluentPath { + moveToRelative(12.0f, 13.06f) + lineToRelative(8.72f, 8.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(8.28f, 8.28f) + verticalLineToRelative(3.32f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 1.5f, 3.37f) + verticalLineToRelative(-5.19f) + close() + moveTo(10.5f, 18.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(18.99f, 11.45f) + lineTo(12.02f, 8.85f) + lineTo(10.5f, 7.32f) + lineTo(10.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.01f, -0.7f) + lineToRelative(6.38f, 2.39f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 20.0f, 7.48f) + verticalLineToRelative(3.27f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.01f, 0.7f) + close() + moveTo(18.5f, 9.67f) + lineTo(18.5f, 7.48f) + curveToRelative(0.0f, -0.73f, -0.45f, -1.38f, -1.14f, -1.64f) + lineToRelative(-5.36f, -2.0f) + verticalLineToRelative(3.39f) + lineToRelative(6.5f, 2.44f) + close() + } + } + return _musicNoteOff1!! + } + +private var _musicNoteOff1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MusicNoteOff2.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MusicNoteOff2.kt new file mode 100644 index 00000000..202c64fa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MusicNoteOff2.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MusicNoteOff2: ImageVector + get() { + if (_musicNoteOff2 != null) { + return _musicNoteOff2!! + } + _musicNoteOff2 = fluentIcon(name = "Regular.MusicNoteOff2") { + fluentPath { + moveTo(8.5f, 9.56f) + verticalLineToRelative(6.07f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 1.5f, 2.62f) + verticalLineToRelative(-7.19f) + lineToRelative(3.55f, 3.55f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 4.84f, 4.84f) + lineToRelative(2.33f, 2.33f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(8.5f, 9.56f) + close() + moveTo(17.28f, 18.34f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.62f, -2.62f) + lineToRelative(2.62f, 2.62f) + close() + moveTo(6.5f, 16.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) + close() + moveTo(16.5f, 13.0f) + lineTo(16.2f, 13.01f) + lineTo(19.99f, 16.81f) + arcToRelative(3.54f, 3.54f, 0.0f, false, false, 0.01f, -0.56f) + lineTo(20.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.97f, -0.72f) + lineToRelative(-10.0f, 3.0f) + curveToRelative(-0.2f, 0.06f, -0.35f, 0.2f, -0.44f, 0.37f) + lineTo(10.0f, 6.82f) + lineTo(10.0f, 6.3f) + lineToRelative(8.5f, -2.55f) + verticalLineToRelative(2.43f) + lineToRelative(-7.02f, 2.1f) + lineToRelative(1.2f, 1.21f) + lineToRelative(5.82f, -1.74f) + verticalLineToRelative(5.87f) + arcToRelative(3.48f, 3.48f, 0.0f, false, false, -2.0f, -0.63f) + close() + } + } + return _musicNoteOff2!! + } + +private var _musicNoteOff2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MyLocation.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MyLocation.kt new file mode 100644 index 00000000..bde91c52 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/MyLocation.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.MyLocation: ImageVector + get() { + if (_myLocation != null) { + return _myLocation!! + } + _myLocation = fluentIcon(name = "Regular.MyLocation") { + fluentPath { + moveTo(12.0f, 2.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.79f) + arcToRelative(7.5f, 7.5f, 0.0f, false, true, 6.71f, 6.71f) + horizontalLineToRelative(1.79f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(19.46f, 12.75f) + arcToRelative(7.5f, 7.5f, 0.0f, false, true, -6.71f, 6.71f) + verticalLineToRelative(1.79f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(11.25f, 19.46f) + arcToRelative(7.5f, 7.5f, 0.0f, false, true, -6.71f, -6.71f) + lineTo(2.75f, 12.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(4.54f, 11.25f) + arcToRelative(7.5f, 7.5f, 0.0f, false, true, 6.71f, -6.71f) + lineTo(11.25f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(12.0f, 6.0f) + arcToRelative(6.0f, 6.0f, 0.0f, true, false, 0.0f, 12.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, 0.0f, -12.0f) + close() + moveTo(12.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, 0.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, -8.0f) + close() + } + } + return _myLocation!! + } + +private var _myLocation: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NavigationUnread.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NavigationUnread.kt new file mode 100644 index 00000000..7caa53c1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NavigationUnread.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.NavigationUnread: ImageVector + get() { + if (_navigationUnread != null) { + return _navigationUnread!! + } + _navigationUnread = fluentIcon(name = "Regular.NavigationUnread") { + fluentPath { + moveTo(19.25f, 8.5f) + arcToRelative(2.75f, 2.75f, 0.0f, true, false, 0.0f, -5.5f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 0.0f, 5.5f) + close() + moveTo(15.58f, 6.5f) + arcToRelative(3.77f, 3.77f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(2.74f, 5.0f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(12.83f) + close() + moveTo(21.25f, 18.0f) + lineTo(2.65f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(18.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(2.75f, 11.5f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(2.75f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + horizontalLineToRelative(0.1f) + close() + } + } + return _navigationUnread!! + } + +private var _navigationUnread: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NetworkCheck.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NetworkCheck.kt new file mode 100644 index 00000000..1628f91d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NetworkCheck.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.NetworkCheck: ImageVector + get() { + if (_networkCheck != null) { + return _networkCheck!! + } + _networkCheck = fluentIcon(name = "Regular.NetworkCheck") { + fluentPath { + moveToRelative(10.05f, 15.42f) + lineToRelative(6.26f, -8.48f) + arcToRelative(0.7f, 0.7f, 0.0f, false, true, 1.23f, 0.57f) + lineToRelative(-0.03f, 0.1f) + lineToRelative(-3.87f, 9.8f) + arcToRelative(2.07f, 2.07f, 0.0f, true, true, -3.74f, -1.76f) + lineToRelative(0.07f, -0.12f) + lineToRelative(0.08f, -0.11f) + lineToRelative(6.26f, -8.48f) + lineToRelative(-6.26f, 8.48f) + close() + moveTo(13.85f, 12.8f) + lineTo(11.25f, 16.31f) + lineTo(11.22f, 16.37f) + arcToRelative(0.57f, 0.57f, 0.0f, false, false, 0.22f, 0.78f) + lineToRelative(0.07f, 0.03f) + curveToRelative(0.26f, 0.1f, 0.55f, 0.0f, 0.7f, -0.24f) + lineToRelative(0.04f, -0.08f) + lineToRelative(1.6f, -4.06f) + close() + moveTo(12.1f, 10.87f) + lineTo(10.87f, 12.53f) + arcToRelative(3.33f, 3.33f, 0.0f, false, false, -2.29f, 3.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, -0.07f) + arcToRelative(4.82f, 4.82f, 0.0f, false, true, 5.02f, -4.62f) + close() + moveTo(16.27f, 13.62f) + curveToRelative(0.28f, 0.59f, 0.43f, 1.22f, 0.46f, 1.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.38f, 0.44f) + lineToRelative(0.92f, -2.3f) + close() + moveTo(14.03f, 8.25f) + lineTo(13.07f, 9.56f) + arcToRelative(6.22f, 6.22f, 0.0f, false, false, -7.16f, 4.41f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.44f, -0.4f) + arcToRelative(7.7f, 7.7f, 0.0f, false, true, 9.56f, -5.32f) + close() + moveTo(17.54f, 10.39f) + arcToRelative(7.66f, 7.66f, 0.0f, false, true, 1.8f, 3.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.44f, 0.42f) + arcToRelative(6.23f, 6.23f, 0.0f, false, false, -0.88f, -1.84f) + lineToRelative(-0.1f, -0.14f) + lineToRelative(0.62f, -1.59f) + close() + moveTo(15.98f, 5.85f) + lineTo(15.89f, 5.91f) + curveToRelative(-0.12f, 0.08f, -0.23f, 0.18f, -0.33f, 0.3f) + lineToRelative(-0.1f, 0.11f) + lineToRelative(-0.54f, 0.73f) + arcToRelative(9.14f, 9.14f, 0.0f, false, false, -11.54f, 5.32f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.4f, -0.54f) + arcToRelative(10.64f, 10.64f, 0.0f, false, true, 14.0f, -5.97f) + close() + moveTo(18.61f, 7.41f) + arcToRelative(10.65f, 10.65f, 0.0f, false, true, 3.22f, 4.41f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.4f, 0.55f) + arcToRelative(9.17f, 9.17f, 0.0f, false, false, -2.32f, -3.4f) + lineToRelative(0.38f, -0.97f) + curveToRelative(0.07f, -0.2f, 0.11f, -0.39f, 0.12f, -0.59f) + close() + } + } + return _networkCheck!! + } + +private var _networkCheck: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/New.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/New.kt new file mode 100644 index 00000000..1a532400 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/New.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.New: ImageVector + get() { + if (_new != null) { + return _new!! + } + _new = fluentIcon(name = "Regular.New") { + fluentPath { + moveTo(18.25f, 4.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(4.0f, 18.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(8.28f, 7.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(6.5f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-6.5f, -6.5f) + close() + } + } + return _new!! + } + +private var _new: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/News.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/News.kt new file mode 100644 index 00000000..993e7161 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/News.kt @@ -0,0 +1,107 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.News: ImageVector + get() { + if (_news != null) { + return _news!! + } + _news = fluentIcon(name = "Regular.News") { + fluentPath { + moveTo(18.75f, 20.0f) + lineTo(5.25f, 20.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 16.75f) + lineTo(2.0f, 6.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(4.25f, 4.0f) + horizontalLineToRelative(12.5f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + lineTo(19.0f, 7.0f) + horizontalLineToRelative(0.75f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(7.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(5.25f, 20.0f) + horizontalLineToRelative(13.5f) + close() + moveTo(5.25f, 18.5f) + horizontalLineToRelative(13.5f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + verticalLineToRelative(-7.5f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + lineTo(19.0f, 8.5f) + verticalLineToRelative(7.75f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-10.0f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + lineTo(4.25f, 5.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(13.5f) + horizontalLineToRelative(-13.5f) + close() + moveTo(12.25f, 14.5f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-3.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(3.1f) + horizontalLineToRelative(-3.0f) + close() + moveTo(9.25f, 11.0f) + curveToRelative(0.4f, 0.0f, 0.74f, 0.34f, 0.74f, 0.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.41f, -0.33f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.75f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + close() + moveTo(8.49f, 12.5f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(12.25f, 11.0f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-3.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + horizontalLineToRelative(3.1f) + horizontalLineToRelative(-3.0f) + close() + moveTo(5.75f, 7.5f) + horizontalLineToRelative(9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-9.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(9.6f) + horizontalLineToRelative(-9.5f) + close() + } + } + return _news!! + } + +private var _news: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Next.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Next.kt new file mode 100644 index 00000000..c36ed723 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Next.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Next: ImageVector + get() { + if (_next != null) { + return _next!! + } + _next = fluentIcon(name = "Regular.Next") { + fluentPath { + moveTo(3.0f, 4.75f) + curveToRelative(0.0f, -1.4f, 1.58f, -2.24f, 2.74f, -1.44f) + lineToRelative(10.5f, 7.2f) + curveToRelative(1.0f, 0.68f, 1.01f, 2.17f, 0.0f, 2.87f) + lineToRelative(-10.5f, 7.3f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 3.0f, 19.25f) + lineTo(3.0f, 4.75f) + close() + moveTo(4.9f, 4.55f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.4f, 0.2f) + verticalLineToRelative(14.5f) + curveToRelative(0.0f, 0.2f, 0.23f, 0.32f, 0.4f, 0.2f) + lineToRelative(10.5f, -7.3f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.01f, -0.41f) + lineToRelative(-10.5f, -7.2f) + close() + moveTo(21.0f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(21.0f, 3.75f) + close() + } + } + return _next!! + } + +private var _next: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Note.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Note.kt new file mode 100644 index 00000000..7ce500c7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Note.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Note: ImageVector + get() { + if (_note != null) { + return _note!! + } + _note = fluentIcon(name = "Regular.Note") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(6.88f) + curveToRelative(0.0f, 0.6f, -0.24f, 1.17f, -0.66f, 1.59f) + lineToRelative(-5.62f, 5.62f) + curveToRelative(-0.42f, 0.42f, -1.0f, 0.66f, -1.6f, 0.66f) + lineTo(6.26f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(13.0f, 19.5f) + verticalLineToRelative(-3.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineToRelative(0.18f, -0.01f) + horizontalLineToRelative(3.25f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(18.44f, 14.5f) + horizontalLineToRelative(-2.19f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + lineToRelative(-0.01f, 0.15f) + verticalLineToRelative(2.19f) + lineToRelative(3.94f, -3.94f) + close() + } + } + return _note!! + } + +private var _note: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NoteAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NoteAdd.kt new file mode 100644 index 00000000..ba1942ad --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NoteAdd.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.NoteAdd: ImageVector + get() { + if (_noteAdd != null) { + return _noteAdd!! + } + _noteAdd = fluentIcon(name = "Regular.NoteAdd") { + fluentPath { + moveTo(12.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(7.0f, 7.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + lineTo(6.0f, 7.0f) + lineTo(3.5f, 7.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(6.0f, 6.0f) + lineTo(6.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + lineTo(7.0f, 6.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(7.0f, 7.0f) + close() + moveTo(17.75f, 4.5f) + horizontalLineToRelative(-5.06f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, -0.71f, -1.5f) + horizontalLineToRelative(5.77f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(6.88f) + curveToRelative(0.0f, 0.6f, -0.24f, 1.17f, -0.66f, 1.59f) + lineToRelative(-5.62f, 5.62f) + curveToRelative(-0.42f, 0.42f, -1.0f, 0.66f, -1.6f, 0.66f) + lineTo(6.26f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + verticalLineToRelative(-5.77f) + curveToRelative(0.46f, 0.3f, 0.97f, 0.53f, 1.5f, 0.7f) + verticalLineToRelative(5.07f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(13.0f, 19.5f) + verticalLineToRelative(-3.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineToRelative(0.18f, -0.01f) + horizontalLineToRelative(3.25f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(18.44f, 14.5f) + horizontalLineToRelative(-2.19f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + lineToRelative(-0.01f, 0.15f) + verticalLineToRelative(2.19f) + lineToRelative(3.94f, -3.94f) + close() + } + } + return _noteAdd!! + } + +private var _noteAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NoteEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NoteEdit.kt new file mode 100644 index 00000000..93620e23 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NoteEdit.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.NoteEdit: ImageVector + get() { + if (_noteEdit != null) { + return _noteEdit!! + } + _noteEdit = fluentIcon(name = "Regular.NoteEdit") { + fluentPath { + moveTo(3.0f, 17.75f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(4.92f) + lineToRelative(0.35f, -1.42f) + lineToRelative(0.02f, -0.08f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 11.0f) + horizontalLineToRelative(3.43f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 11.0f, 7.74f) + lineTo(11.0f, 4.5f) + horizontalLineToRelative(6.75f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.98f) + curveToRelative(0.48f, -0.19f, 1.0f, -0.26f, 1.5f, -0.22f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + horizontalLineToRelative(-6.88f) + curveToRelative(-0.6f, 0.0f, -1.17f, 0.24f, -1.59f, 0.66f) + lineTo(3.66f, 9.28f) + curveToRelative(-0.42f, 0.42f, -0.66f, 1.0f, -0.66f, 1.6f) + verticalLineToRelative(6.87f) + close() + moveTo(7.75f, 9.5f) + lineTo(5.56f, 9.5f) + lineTo(9.5f, 5.56f) + lineTo(9.5f, 7.9f) + curveToRelative(-0.08f, 0.9f, -0.83f, 1.61f, -1.75f, 1.61f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _noteEdit!! + } + +private var _noteEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Notebook.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Notebook.kt new file mode 100644 index 00000000..7ec665e8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Notebook.kt @@ -0,0 +1,94 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Notebook: ImageVector + get() { + if (_notebook != null) { + return _notebook!! + } + _notebook = fluentIcon(name = "Regular.Notebook") { + fluentPath { + moveTo(16.75f, 2.0f) + curveTo(17.99f, 2.0f, 19.0f, 3.0f, 19.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(10.5f) + close() + moveTo(16.75f, 3.5f) + lineTo(6.25f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(10.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(17.5f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(20.0f, 15.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 18.0f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(0.75f) + lineTo(20.0f, 15.0f) + close() + moveTo(20.0f, 11.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 14.0f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(0.75f) + lineTo(20.0f, 11.0f) + close() + moveTo(20.0f, 7.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 10.0f) + lineTo(20.0f, 7.0f) + horizontalLineToRelative(0.75f) + lineTo(20.0f, 7.0f) + close() + moveTo(15.25f, 5.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-7.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 8.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.5f) + close() + moveTo(14.5f, 6.5f) + horizontalLineToRelative(-6.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(-1.0f) + close() + } + } + return _notebook!! + } + +private var _notebook: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NotebookAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NotebookAdd.kt new file mode 100644 index 00000000..e3115a1a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NotebookAdd.kt @@ -0,0 +1,114 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.NotebookAdd: ImageVector + get() { + if (_notebookAdd != null) { + return _notebookAdd!! + } + _notebookAdd = fluentIcon(name = "Regular.NotebookAdd") { + fluentPath { + moveTo(16.75f, 2.0f) + curveTo(17.99f, 2.0f, 19.0f, 3.0f, 19.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-5.56f) + curveToRelative(0.43f, -0.44f, 0.8f, -0.95f, 1.08f, -1.5f) + horizontalLineToRelative(4.48f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineTo(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineTo(6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.83f) + curveToRelative(-0.52f, 0.08f, -1.03f, 0.22f, -1.5f, 0.42f) + verticalLineTo(4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(10.5f) + close() + } + fluentPath { + moveTo(20.0f, 15.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineTo(20.0f) + verticalLineToRelative(-3.0f) + close() + } + fluentPath { + moveTo(20.0f, 11.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineTo(20.0f) + verticalLineToRelative(-3.0f) + close() + } + fluentPath { + moveTo(20.0f, 7.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineTo(20.0f) + verticalLineTo(7.0f) + close() + } + fluentPath { + moveTo(15.25f, 5.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-7.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 8.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.5f) + close() + moveTo(14.5f, 6.5f) + horizontalLineToRelative(-6.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(-1.0f) + close() + } + fluentPath { + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(7.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + verticalLineTo(18.0f) + horizontalLineTo(3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineTo(6.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + verticalLineTo(17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineTo(7.0f) + close() + } + } + return _notebookAdd!! + } + +private var _notebookAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NotebookError.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NotebookError.kt new file mode 100644 index 00000000..4723e2b2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NotebookError.kt @@ -0,0 +1,101 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.NotebookError: ImageVector + get() { + if (_notebookError != null) { + return _notebookError!! + } + _notebookError = fluentIcon(name = "Regular.NotebookError") { + fluentPath { + moveTo(6.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(16.75f, 2.0f) + curveTo(17.99f, 2.0f, 19.0f, 3.0f, 19.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-5.56f) + curveToRelative(0.43f, -0.44f, 0.79f, -0.95f, 1.08f, -1.5f) + horizontalLineToRelative(4.48f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(17.5f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(6.25f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.83f) + curveToRelative(-0.52f, 0.08f, -1.03f, 0.22f, -1.5f, 0.42f) + lineTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(10.5f) + close() + moveTo(6.5f, 19.88f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, 1.25f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, -1.25f) + close() + moveTo(6.5f, 14.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.41f) + verticalLineToRelative(4.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-4.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.4f) + close() + moveTo(20.75f, 15.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 18.0f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(0.75f) + close() + moveTo(20.75f, 11.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 14.0f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(0.75f) + close() + moveTo(20.75f, 7.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 10.0f) + lineTo(20.0f, 7.0f) + horizontalLineToRelative(0.75f) + close() + moveTo(15.25f, 5.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-7.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 8.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.5f) + close() + moveTo(14.5f, 6.5f) + horizontalLineToRelative(-6.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(-1.0f) + close() + } + } + return _notebookError!! + } + +private var _notebookError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NotebookLightning.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NotebookLightning.kt new file mode 100644 index 00000000..ab4f5b51 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NotebookLightning.kt @@ -0,0 +1,104 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.NotebookLightning: ImageVector + get() { + if (_notebookLightning != null) { + return _notebookLightning!! + } + _notebookLightning = fluentIcon(name = "Regular.NotebookLightning") { + fluentPath { + moveTo(6.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(16.75f, 2.0f) + curveTo(17.99f, 2.0f, 19.0f, 3.0f, 19.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-5.56f) + curveToRelative(0.43f, -0.44f, 0.79f, -0.95f, 1.08f, -1.5f) + horizontalLineToRelative(4.48f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(17.5f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(6.25f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.83f) + curveToRelative(-0.52f, 0.08f, -1.03f, 0.22f, -1.5f, 0.42f) + lineTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(10.5f) + close() + moveTo(7.5f, 14.0f) + lineTo(6.0f, 14.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.47f, 0.34f) + lineToRelative(-1.0f, 3.0f) + arcTo(0.5f, 0.5f, 0.0f, false, false, 5.0f, 18.0f) + horizontalLineToRelative(0.8f) + lineToRelative(-0.77f, 2.34f) + curveToRelative(-0.2f, 0.56f, 0.58f, 0.92f, 0.9f, 0.42f) + lineToRelative(2.5f, -4.0f) + arcTo(0.5f, 0.5f, 0.0f, false, false, 8.0f, 16.0f) + horizontalLineToRelative(-0.45f) + lineToRelative(0.43f, -1.35f) + arcTo(0.5f, 0.5f, 0.0f, false, false, 7.5f, 14.0f) + close() + moveTo(20.75f, 15.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 18.0f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(0.75f) + close() + moveTo(20.75f, 11.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 14.0f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(0.75f) + close() + moveTo(20.75f, 7.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 10.0f) + lineTo(20.0f, 7.0f) + horizontalLineToRelative(0.75f) + close() + moveTo(15.25f, 5.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-7.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 8.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.5f) + close() + moveTo(14.5f, 6.5f) + horizontalLineToRelative(-6.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(-1.0f) + close() + } + } + return _notebookLightning!! + } + +private var _notebookLightning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NotebookQuestionMark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NotebookQuestionMark.kt new file mode 100644 index 00000000..6ab47ff4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NotebookQuestionMark.kt @@ -0,0 +1,110 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.NotebookQuestionMark: ImageVector + get() { + if (_notebookQuestionMark != null) { + return _notebookQuestionMark!! + } + _notebookQuestionMark = fluentIcon(name = "Regular.NotebookQuestionMark") { + fluentPath { + moveTo(6.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(16.75f, 2.0f) + curveTo(17.99f, 2.0f, 19.0f, 3.0f, 19.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-5.56f) + curveToRelative(0.43f, -0.44f, 0.79f, -0.95f, 1.08f, -1.5f) + horizontalLineToRelative(4.48f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(17.5f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(6.25f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.83f) + curveToRelative(-0.52f, 0.08f, -1.03f, 0.22f, -1.5f, 0.42f) + lineTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(10.5f) + close() + moveTo(6.5f, 19.88f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, 1.25f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, -1.25f) + close() + moveTo(6.5f, 14.0f) + curveToRelative(-1.05f, 0.0f, -1.86f, 0.82f, -1.85f, 1.96f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, -0.01f) + curveToRelative(0.0f, -0.58f, 0.36f, -0.95f, 0.85f, -0.95f) + curveToRelative(0.47f, 0.0f, 0.85f, 0.4f, 0.85f, 0.95f) + curveToRelative(0.0f, 0.23f, -0.07f, 0.4f, -0.31f, 0.68f) + lineToRelative(-0.1f, 0.11f) + lineToRelative(-0.27f, 0.3f) + curveToRelative(-0.48f, 0.53f, -0.67f, 0.89f, -0.67f, 1.46f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + curveToRelative(0.0f, -0.23f, 0.08f, -0.4f, 0.32f, -0.7f) + lineToRelative(0.1f, -0.1f) + lineToRelative(0.27f, -0.3f) + curveToRelative(0.48f, -0.53f, 0.66f, -0.88f, 0.66f, -1.45f) + curveToRelative(0.0f, -1.1f, -0.82f, -1.95f, -1.85f, -1.95f) + close() + moveTo(20.75f, 15.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 18.0f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(0.75f) + close() + moveTo(20.75f, 11.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 14.0f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(0.75f) + close() + moveTo(20.75f, 7.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 10.0f) + lineTo(20.0f, 7.0f) + horizontalLineToRelative(0.75f) + close() + moveTo(15.25f, 5.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-7.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 8.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.5f) + close() + moveTo(14.5f, 6.5f) + horizontalLineToRelative(-6.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(-1.0f) + close() + } + } + return _notebookQuestionMark!! + } + +private var _notebookQuestionMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NotebookSection.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NotebookSection.kt new file mode 100644 index 00000000..6f146821 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NotebookSection.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.NotebookSection: ImageVector + get() { + if (_notebookSection != null) { + return _notebookSection!! + } + _notebookSection = fluentIcon(name = "Regular.NotebookSection") { + fluentPath { + moveTo(15.65f, 2.0f) + horizontalLineToRelative(0.1f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineTo(20.0f) + horizontalLineTo(9.25f) + curveTo(8.01f, 20.0f, 7.0f, 18.99f, 7.0f, 17.75f) + verticalLineTo(6.25f) + curveTo(7.0f, 5.01f, 8.0f, 4.0f, 9.25f, 4.0f) + horizontalLineTo(15.0f) + verticalLineTo(2.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(-0.1f) + close() + moveTo(15.0f, 5.5f) + horizontalLineTo(9.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineTo(15.0f) + verticalLineToRelative(-13.0f) + close() + } + } + return _notebookSection!! + } + +private var _notebookSection: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NotebookSectionArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NotebookSectionArrowRight.kt new file mode 100644 index 00000000..2672454c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NotebookSectionArrowRight.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.NotebookSectionArrowRight: ImageVector + get() { + if (_notebookSectionArrowRight != null) { + return _notebookSectionArrowRight!! + } + _notebookSectionArrowRight = fluentIcon(name = "Regular.NotebookSectionArrowRight") { + fluentPath { + moveTo(15.65f, 2.0f) + horizontalLineToRelative(0.1f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(8.33f) + curveToRelative(-0.52f, 0.08f, -1.03f, 0.22f, -1.5f, 0.42f) + verticalLineToRelative(-6.0f) + horizontalLineTo(9.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(1.83f) + curveToRelative(0.08f, 0.52f, 0.22f, 1.02f, 0.42f, 1.5f) + horizontalLineTo(9.25f) + curveTo(8.01f, 20.0f, 7.0f, 18.99f, 7.0f, 17.75f) + verticalLineTo(6.25f) + curveTo(7.0f, 5.01f, 8.0f, 4.0f, 9.25f, 4.0f) + horizontalLineTo(15.0f) + verticalLineTo(2.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + close() + } + fluentPath { + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(19.29f, 17.0f) + lineTo(14.5f, 17.0f) + close() + } + } + return _notebookSectionArrowRight!! + } + +private var _notebookSectionArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NotebookSubsection.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NotebookSubsection.kt new file mode 100644 index 00000000..d9106d63 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NotebookSubsection.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.NotebookSubsection: ImageVector + get() { + if (_notebookSubsection != null) { + return _notebookSubsection!! + } + _notebookSubsection = fluentIcon(name = "Regular.NotebookSubsection") { + fluentPath { + moveTo(9.0f, 2.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.5f, 4.5f) + verticalLineToRelative(9.4f) + curveToRelative(0.0f, 0.98f, 0.63f, 1.81f, 1.5f, 2.12f) + verticalLineTo(6.5f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(5.0f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 11.88f, 2.0f) + horizontalLineTo(9.0f) + close() + } + fluentPath { + moveTo(7.0f, 6.75f) + curveTo(7.0f, 5.51f, 8.0f, 4.5f, 9.25f, 4.5f) + lineTo(15.0f, 4.5f) + lineTo(15.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(15.0f, 20.0f) + lineTo(9.25f, 20.0f) + curveTo(8.01f, 20.0f, 7.0f, 19.0f, 7.0f, 17.75f) + verticalLineToRelative(-11.0f) + close() + moveTo(15.0f, 18.5f) + lineTo(15.0f, 6.0f) + lineTo(9.25f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(11.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(15.0f, 18.5f) + close() + } + } + return _notebookSubsection!! + } + +private var _notebookSubsection: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NotebookSync.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NotebookSync.kt new file mode 100644 index 00000000..9a95606b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NotebookSync.kt @@ -0,0 +1,115 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.NotebookSync: ImageVector + get() { + if (_notebookSync != null) { + return _notebookSync!! + } + _notebookSync = fluentIcon(name = "Regular.NotebookSync") { + fluentPath { + moveTo(16.75f, 2.0f) + curveTo(17.99f, 2.0f, 19.0f, 3.0f, 19.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-5.56f) + curveToRelative(0.43f, -0.44f, 0.8f, -0.95f, 1.08f, -1.5f) + horizontalLineToRelative(4.48f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(17.5f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(6.25f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.83f) + curveToRelative(-0.52f, 0.08f, -1.03f, 0.22f, -1.5f, 0.42f) + lineTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(10.5f) + close() + moveTo(20.0f, 15.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 18.0f) + verticalLineToRelative(-3.0f) + close() + moveTo(20.0f, 11.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 14.0f) + verticalLineToRelative(-3.0f) + close() + moveTo(20.0f, 7.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(20.0f, 10.0f) + lineTo(20.0f, 7.0f) + close() + moveTo(15.25f, 5.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-7.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 8.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.5f) + close() + moveTo(14.5f, 6.5f) + horizontalLineToRelative(-6.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(1.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) + close() + moveTo(9.5f, 14.0f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + verticalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -0.8f, -0.59f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) + verticalLineToRelative(-0.55f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + close() + moveTo(4.0f, 19.95f) + verticalLineToRelative(0.55f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.77f, 0.65f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) + close() + } + } + return _notebookSync!! + } + +private var _notebookSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Notepad.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Notepad.kt new file mode 100644 index 00000000..47708aee --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Notepad.kt @@ -0,0 +1,106 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Notepad: ImageVector + get() { + if (_notepad != null) { + return _notepad!! + } + _notepad = fluentIcon(name = "Regular.Notepad") { + fluentPath { + moveTo(5.75f, 22.0f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-14.0f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(0.75f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.75f, 0.65f) + verticalLineToRelative(0.85f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(0.75f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(11.0f) + curveToRelative(0.0f, 0.06f, 0.0f, 0.12f, -0.02f, 0.18f) + lineToRelative(-0.03f, 0.09f) + lineToRelative(-0.04f, 0.1f) + lineToRelative(-0.03f, 0.03f) + arcToRelative(0.69f, 0.69f, 0.0f, false, true, -0.1f, 0.13f) + lineToRelative(-4.5f, 4.5f) + arcToRelative(0.74f, 0.74f, 0.0f, false, true, -0.09f, 0.08f) + lineToRelative(0.09f, -0.08f) + arcToRelative(0.74f, 0.74f, 0.0f, false, true, -0.1f, 0.1f) + lineToRelative(-0.1f, 0.04f) + lineToRelative(-0.11f, 0.05f) + lineToRelative(-0.12f, 0.03f) + horizontalLineToRelative(-9.1f) + close() + moveTo(17.75f, 5.0f) + horizontalLineToRelative(-12.0f) + curveToRelative(-0.42f, 0.0f, -0.75f, 0.34f, -0.75f, 0.75f) + verticalLineToRelative(14.0f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(14.0f, 20.5f) + verticalLineToRelative(-2.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineToRelative(0.16f, -0.01f) + horizontalLineToRelative(2.25f) + lineTo(18.51f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(17.44f, 17.5f) + horizontalLineToRelative(-1.2f) + curveToRelative(-0.37f, 0.0f, -0.69f, 0.28f, -0.74f, 0.65f) + verticalLineToRelative(1.3f) + lineToRelative(1.94f, -1.95f) + close() + moveTo(7.25f, 16.0f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-4.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(4.1f) + horizontalLineToRelative(-4.0f) + close() + moveTo(7.25f, 12.0f) + horizontalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-9.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(9.1f) + horizontalLineToRelative(-9.0f) + close() + moveTo(7.25f, 8.0f) + horizontalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-9.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(9.1f) + horizontalLineToRelative(-9.0f) + close() + } + } + return _notepad!! + } + +private var _notepad: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NotepadPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NotepadPerson.kt new file mode 100644 index 00000000..bb531ae0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NotepadPerson.kt @@ -0,0 +1,94 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.NotepadPerson: ImageVector + get() { + if (_notepadPerson != null) { + return _notepadPerson!! + } + _notepadPerson = fluentIcon(name = "Regular.NotepadPerson") { + fluentPath { + moveTo(5.75f, 22.0f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-14.0f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(0.75f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(0.75f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(5.59f) + arcToRelative(3.49f, 3.49f, 0.0f, false, false, -1.5f, -0.34f) + lineTo(18.5f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-12.0f) + curveToRelative(-0.42f, 0.0f, -0.75f, 0.34f, -0.75f, 0.75f) + verticalLineToRelative(14.0f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(7.3f) + curveToRelative(0.1f, 0.53f, 0.3f, 1.04f, 0.62f, 1.5f) + lineTo(5.75f, 22.0f) + close() + moveTo(7.25f, 16.0f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-4.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(7.25f, 8.0f) + horizontalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-9.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(18.5f, 17.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) + close() + moveTo(18.5f, 23.0f) + curveToRelative(3.21f, 0.0f, 4.5f, -1.57f, 4.5f, -3.13f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, -0.8f, -1.77f, -1.77f, -1.77f) + horizontalLineToRelative(-5.46f) + curveToRelative(-0.98f, 0.0f, -1.77f, 0.8f, -1.77f, 1.77f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 1.57f, 1.29f, 3.13f, 4.5f, 3.13f) + close() + moveTo(7.25f, 12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.0f) + close() + } + } + return _notepadPerson!! + } + +private var _notepadPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NumberCircle1.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NumberCircle1.kt new file mode 100644 index 00000000..376190ea --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NumberCircle1.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.NumberCircle1: ImageVector + get() { + if (_numberCircle1 != null) { + return _numberCircle1!! + } + _numberCircle1 = fluentIcon(name = "Regular.NumberCircle1") { + fluentPath { + moveTo(13.5f, 7.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.49f, -0.15f) + curveToRelative(-0.1f, 0.48f, -0.4f, 1.12f, -0.87f, 1.7f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -1.63f, 1.24f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.48f, 1.42f) + arcTo(4.99f, 4.99f, 0.0f, false, false, 12.0f, 10.1f) + verticalLineToRelative(6.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-9.0f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) + close() + moveTo(3.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 17.0f, 0.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, -17.0f, 0.0f) + close() + } + } + return _numberCircle1!! + } + +private var _numberCircle1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NumberRow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NumberRow.kt new file mode 100644 index 00000000..32a5dbc4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NumberRow.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.NumberRow: ImageVector + get() { + if (_numberRow != null) { + return _numberRow!! + } + _numberRow = fluentIcon(name = "Regular.NumberRow") { + fluentPath { + moveTo(8.75f, 4.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.75f) + verticalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 8.75f, 20.0f) + horizontalLineToRelative(-4.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) + lineTo(2.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) + horizontalLineToRelative(4.0f) + close() + moveTo(8.75f, 5.5f) + horizontalLineToRelative(-4.0f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(4.0f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + lineTo(10.0f, 6.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + close() + moveTo(19.25f, 4.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) + verticalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) + horizontalLineToRelative(-4.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, -2.75f) + lineTo(12.5f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 15.25f, 4.0f) + horizontalLineToRelative(4.0f) + close() + moveTo(19.25f, 5.5f) + horizontalLineToRelative(-4.0f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(4.0f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + lineTo(20.5f, 6.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + close() + moveTo(6.0f, 9.0f) + verticalLineToRelative(6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(7.5f, 9.0f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 6.0f, 9.0f) + close() + moveTo(17.5f, 9.75f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(17.0f, 14.25f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(1.25f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(19.0f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.25f) + close() + } + } + return _numberRow!! + } + +private var _numberRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NumberSymbol.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NumberSymbol.kt new file mode 100644 index 00000000..335bff0c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NumberSymbol.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.NumberSymbol: ImageVector + get() { + if (_numberSymbol != null) { + return _numberSymbol!! + } + _numberSymbol = fluentIcon(name = "Regular.NumberSymbol") { + fluentPath { + moveTo(10.99f, 2.89f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.48f, -0.28f) + lineTo(8.5f, 8.0f) + lineTo(3.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(4.46f) + lineToRelative(-0.95f, 5.0f) + lineTo(2.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.23f) + lineToRelative(-0.97f, 5.11f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.48f, 0.28f) + lineTo(8.5f, 16.0f) + horizontalLineToRelative(5.47f) + lineToRelative(-0.97f, 5.12f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.48f, 0.28f) + lineTo(15.5f, 16.0f) + horizontalLineToRelative(4.74f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.46f) + lineToRelative(0.95f, -5.0f) + horizontalLineToRelative(4.51f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.23f) + lineTo(18.0f, 2.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.48f, -0.28f) + lineTo(15.5f, 8.0f) + horizontalLineToRelative(-5.47f) + lineTo(11.0f, 2.9f) + close() + moveTo(9.74f, 9.49f) + horizontalLineToRelative(5.47f) + lineToRelative(-0.94f, 5.0f) + lineTo(8.79f, 14.49f) + lineToRelative(0.95f, -5.0f) + close() + } + } + return _numberSymbol!! + } + +private var _numberSymbol: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NumberSymbolDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NumberSymbolDismiss.kt new file mode 100644 index 00000000..051365af --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NumberSymbolDismiss.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.NumberSymbolDismiss: ImageVector + get() { + if (_numberSymbolDismiss != null) { + return _numberSymbolDismiss!! + } + _numberSymbolDismiss = fluentIcon(name = "Regular.NumberSymbolDismiss") { + fluentPath { + moveTo(10.99f, 2.89f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.48f, -0.28f) + lineTo(8.5f, 8.0f) + lineTo(3.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(4.46f) + lineToRelative(-0.95f, 5.0f) + lineTo(2.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.23f) + lineToRelative(-0.97f, 5.11f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.48f, 0.28f) + lineTo(8.5f, 16.0f) + horizontalLineToRelative(2.66f) + curveToRelative(0.13f, -0.52f, 0.32f, -1.02f, 0.56f, -1.5f) + lineTo(8.8f, 14.5f) + lineToRelative(0.95f, -5.0f) + horizontalLineToRelative(5.47f) + lineToRelative(-0.4f, 2.09f) + curveToRelative(0.52f, -0.23f, 1.06f, -0.4f, 1.63f, -0.5f) + lineToRelative(0.3f, -1.59f) + horizontalLineToRelative(4.51f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.23f) + lineTo(18.0f, 2.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.48f, -0.28f) + lineTo(15.5f, 8.0f) + horizontalLineToRelative(-5.47f) + lineTo(11.0f, 2.9f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-1.64f, -1.65f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.65f, 1.64f) + lineToRelative(-1.65f, -1.64f) + close() + } + } + return _numberSymbolDismiss!! + } + +private var _numberSymbolDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NumberSymbolSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NumberSymbolSquare.kt new file mode 100644 index 00000000..ac1f3e76 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/NumberSymbolSquare.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.NumberSymbolSquare: ImageVector + get() { + if (_numberSymbolSquare != null) { + return _numberSymbolSquare!! + } + _numberSymbolSquare = fluentIcon(name = "Regular.NumberSymbolSquare") { + fluentPath { + moveTo(10.9f, 7.51f) + curveToRelative(0.4f, 0.09f, 0.67f, 0.48f, 0.59f, 0.89f) + lineToRelative(-0.22f, 1.1f) + horizontalLineToRelative(2.47f) + lineToRelative(0.28f, -1.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.47f, 0.3f) + lineToRelative(-0.22f, 1.1f) + horizontalLineToRelative(0.98f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.28f) + lineToRelative(-0.4f, 2.0f) + horizontalLineToRelative(1.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.48f) + lineToRelative(-0.28f, 1.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.48f, -0.3f) + lineToRelative(0.23f, -1.1f) + horizontalLineToRelative(-2.47f) + lineToRelative(-0.28f, 1.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.48f, -0.3f) + lineToRelative(0.23f, -1.1f) + horizontalLineToRelative(-0.99f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.29f) + lineToRelative(0.4f, -2.0f) + horizontalLineTo(8.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.49f) + lineToRelative(0.28f, -1.4f) + curveToRelative(0.08f, -0.4f, 0.47f, -0.67f, 0.88f, -0.59f) + close() + moveTo(10.57f, 13.0f) + horizontalLineToRelative(2.47f) + lineToRelative(0.4f, -2.0f) + horizontalLineToRelative(-2.47f) + lineToRelative(-0.4f, 2.0f) + close() + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineTo(6.25f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + verticalLineTo(6.25f) + close() + moveTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineTo(6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineTo(6.25f) + close() + } + } + return _numberSymbolSquare!! + } + +private var _numberSymbolSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/OpenFolder.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/OpenFolder.kt new file mode 100644 index 00000000..ea1eabce --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/OpenFolder.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.OpenFolder: ImageVector + get() { + if (_openFolder != null) { + return _openFolder!! + } + _openFolder = fluentIcon(name = "Regular.OpenFolder") { + fluentPath { + moveTo(6.75f, 3.0f) + horizontalLineToRelative(10.5f) + curveToRelative(2.0f, 0.0f, 3.64f, 1.57f, 3.75f, 3.55f) + verticalLineToRelative(4.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, 0.1f) + verticalLineToRelative(-4.6f) + curveToRelative(0.0f, -1.19f, -0.93f, -2.16f, -2.1f, -2.24f) + horizontalLineToRelative(-0.16f) + lineTo(6.75f, 4.5f) + curveToRelative(-1.18f, 0.0f, -2.15f, 0.9f, -2.25f, 2.06f) + verticalLineToRelative(10.69f) + curveToRelative(0.0f, 1.2f, 0.93f, 2.17f, 2.1f, 2.25f) + horizontalLineToRelative(4.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-4.6f) + curveToRelative(-2.0f, 0.0f, -3.64f, -1.57f, -3.75f, -3.55f) + lineTo(3.0f, 6.55f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 6.55f, 3.0f) + lineToRelative(0.2f, -0.01f) + close() + moveTo(9.75f, 9.0f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-4.79f) + lineToRelative(7.22f, 7.22f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.08f, 0.98f) + lineToRelative(-0.08f, 0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 0.07f) + lineToRelative(-0.09f, -0.07f) + lineToRelative(-7.22f, -7.22f) + verticalLineToRelative(4.7f) + curveToRelative(0.0f, 0.37f, -0.28f, 0.68f, -0.65f, 0.73f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + lineTo(9.0f, 9.73f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -0.07f) + lineToRelative(0.03f, -0.11f) + lineToRelative(0.03f, -0.1f) + arcToRelative(0.72f, 0.72f, 0.0f, false, true, 0.16f, -0.23f) + lineToRelative(0.04f, -0.04f) + lineToRelative(0.08f, -0.06f) + lineToRelative(0.06f, -0.04f) + lineToRelative(0.1f, -0.04f) + lineToRelative(0.07f, -0.02f) + lineToRelative(0.06f, -0.01f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(6.52f) + horizontalLineToRelative(-6.5f) + close() + } + } + return _openFolder!! + } + +private var _openFolder: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/OpenOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/OpenOff.kt new file mode 100644 index 00000000..652ff4b6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/OpenOff.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.OpenOff: ImageVector + get() { + if (_openOff != null) { + return _openOff!! + } + _openOff = fluentIcon(name = "Regular.OpenOff") { + fluentPath { + moveToRelative(3.28f, 2.22f) + lineToRelative(18.5f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineToRelative(-1.26f, -1.26f) + curveToRelative(-0.5f, 0.3f, -1.08f, 0.48f, -1.71f, 0.48f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveToRelative(0.0f, -0.63f, 0.18f, -1.21f, 0.48f, -1.7f) + lineTo(2.22f, 3.27f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + close() + moveTo(18.34f, 19.4f) + lineTo(4.6f, 5.66f) + curveToRelative(-0.06f, 0.19f, -0.1f, 0.38f, -0.1f, 0.59f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.2f, 0.0f, 0.4f, -0.04f, 0.59f, -0.1f) + close() + moveTo(13.08f, 9.9f) + lineTo(14.1f, 10.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.18f, -0.14f) + lineToRelative(5.22f, -5.22f) + verticalLineToRelative(4.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.69f) + lineToRelative(-5.22f, 5.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.14f, 0.18f) + close() + moveTo(21.0f, 17.82f) + lineToRelative(-1.5f, -1.5f) + verticalLineToRelative(-2.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(4.07f) + close() + moveTo(6.18f, 3.0f) + lineToRelative(1.5f, 1.5f) + horizontalLineToRelative(2.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(6.18f, 3.0f) + close() + } + } + return _openOff!! + } + +private var _openOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Organization.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Organization.kt new file mode 100644 index 00000000..fc66a59c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Organization.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Organization: ImageVector + get() { + if (_organization != null) { + return _organization!! + } + _organization = fluentIcon(name = "Regular.Organization") { + fluentPath { + moveTo(11.75f, 2.0f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 11.0f, 9.43f) + verticalLineToRelative(2.07f) + horizontalLineTo(7.75f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(0.83f) + arcToRelative(3.75f, 3.75f, 0.0f, true, false, 1.5f, 0.0f) + verticalLineToRelative(-0.83f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(8.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.83f) + arcToRelative(3.75f, 3.75f, 0.0f, true, false, 1.5f, 0.0f) + verticalLineToRelative(-0.83f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineTo(12.5f) + verticalLineTo(9.43f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 11.75f, 2.0f) + close() + moveTo(9.5f, 5.75f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) + close() + moveTo(4.0f, 18.25f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) + close() + moveTo(17.25f, 16.0f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 0.0f, 4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -4.5f) + close() + } + } + return _organization!! + } + +private var _organization: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Orientation.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Orientation.kt new file mode 100644 index 00000000..5dd67fb4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Orientation.kt @@ -0,0 +1,93 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Orientation: ImageVector + get() { + if (_orientation != null) { + return _orientation!! + } + _orientation = fluentIcon(name = "Regular.Orientation") { + fluentPath { + moveTo(6.75f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.5f) + close() + moveTo(3.5f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.5f) + close() + moveTo(3.9f, 11.0f) + arcTo(1.9f, 1.9f, 0.0f, false, false, 2.0f, 12.9f) + verticalLineToRelative(5.2f) + curveToRelative(0.0f, 1.05f, 0.85f, 1.9f, 1.9f, 1.9f) + horizontalLineToRelative(10.2f) + arcToRelative(1.9f, 1.9f, 0.0f, false, false, 1.9f, -1.9f) + verticalLineToRelative(-5.2f) + arcToRelative(1.9f, 1.9f, 0.0f, false, false, -1.9f, -1.9f) + horizontalLineToRelative(-1.85f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(3.9f, 11.0f) + close() + moveTo(3.5f, 12.9f) + curveToRelative(0.0f, -0.22f, 0.18f, -0.4f, 0.4f, -0.4f) + horizontalLineToRelative(10.2f) + curveToRelative(0.22f, 0.0f, 0.4f, 0.18f, 0.4f, 0.4f) + verticalLineToRelative(5.2f) + arcToRelative(0.4f, 0.4f, 0.0f, false, true, -0.4f, 0.4f) + lineTo(3.9f, 18.5f) + arcToRelative(0.4f, 0.4f, 0.0f, false, true, -0.4f, -0.4f) + verticalLineToRelative(-5.2f) + close() + moveTo(3.75f, 5.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.5f) + curveTo(2.0f, 4.78f, 2.78f, 4.0f, 3.75f, 4.0f) + horizontalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.5f) + close() + moveTo(11.5f, 5.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.5f) + close() + moveTo(17.0f, 16.08f) + curveToRelative(0.0f, 0.48f, 0.42f, 0.87f, 0.89f, 0.74f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 17.5f, 6.1f) + lineToRelative(0.3f, -0.35f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.13f, -0.98f) + lineToRelative(-1.5f, 1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 0.98f) + lineToRelative(1.5f, 1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.14f, -0.98f) + lineToRelative(-0.6f, -0.7f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.37f, 7.79f) + curveToRelative(-0.33f, 0.1f, -0.59f, 0.38f, -0.59f, 0.73f) + close() + } + } + return _orientation!! + } + +private var _orientation: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Oval.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Oval.kt new file mode 100644 index 00000000..081e44ab --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Oval.kt @@ -0,0 +1,35 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Oval: ImageVector + get() { + if (_oval != null) { + return _oval!! + } + _oval = fluentIcon(name = "Regular.Oval") { + fluentPath { + moveTo(2.0f, 12.0f) + arcToRelative(8.0f, 8.0f, 0.0f, false, true, 8.0f, -8.0f) + horizontalLineToRelative(4.0f) + arcToRelative(8.0f, 8.0f, 0.0f, true, true, 0.0f, 16.0f) + horizontalLineToRelative(-4.0f) + arcToRelative(8.0f, 8.0f, 0.0f, false, true, -8.0f, -8.0f) + close() + moveTo(10.0f, 5.5f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, 0.0f, 13.0f) + horizontalLineToRelative(4.0f) + arcToRelative(6.5f, 6.5f, 0.0f, true, false, 0.0f, -13.0f) + horizontalLineToRelative(-4.0f) + close() + } + } + return _oval!! + } + +private var _oval: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Oven.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Oven.kt new file mode 100644 index 00000000..e061d60b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Oven.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Oven: ImageVector + get() { + if (_oven != null) { + return _oven!! + } + _oven = fluentIcon(name = "Regular.Oven") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 8.0f) + horizontalLineToRelative(15.0f) + lineTo(19.5f, 6.25f) + close() + moveTo(19.5f, 17.75f) + lineTo(19.5f, 9.5f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(8.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + close() + moveTo(8.0f, 7.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(13.0f, 6.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(16.0f, 7.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(7.5f, 16.5f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(9.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(-9.0f) + close() + moveTo(7.25f, 11.0f) + curveTo(6.56f, 11.0f, 6.0f, 11.56f, 6.0f, 12.25f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(9.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-9.5f) + close() + } + } + return _oven!! + } + +private var _oven: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PaddingDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PaddingDown.kt new file mode 100644 index 00000000..f6031687 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PaddingDown.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PaddingDown: ImageVector + get() { + if (_paddingDown != null) { + return _paddingDown!! + } + _paddingDown = fluentIcon(name = "Regular.PaddingDown") { + fluentPath { + moveTo(4.5f, 2.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(4.5f, 21.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(7.97f, 21.25f) + curveToRelative(0.0f, 0.41f, 0.33f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(1.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(8.72f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(12.3f, 21.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(1.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(16.63f, 21.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(12.28f, 18.78f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-5.0f, -5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineTo(11.0f, 16.44f) + lineTo(11.0f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(10.69f) + lineToRelative(3.72f, -3.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-5.0f, 5.0f) + close() + } + } + return _paddingDown!! + } + +private var _paddingDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PaddingLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PaddingLeft.kt new file mode 100644 index 00000000..a5109115 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PaddingLeft.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PaddingLeft: ImageVector + get() { + if (_paddingLeft != null) { + return _paddingLeft!! + } + _paddingLeft = fluentIcon(name = "Regular.PaddingLeft") { + fluentPath { + moveTo(2.75f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(2.75f, 7.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(1.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(3.5f, 8.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(2.75f, 12.3f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(1.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(2.75f, 16.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(21.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(5.22f, 12.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(5.0f, -5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineTo(7.56f, 11.0f) + horizontalLineToRelative(10.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(7.56f, 12.5f) + lineToRelative(3.72f, 3.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-5.0f, -5.0f) + close() + } + } + return _paddingLeft!! + } + +private var _paddingLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PaddingRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PaddingRight.kt new file mode 100644 index 00000000..07b9cccc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PaddingRight.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PaddingRight: ImageVector + get() { + if (_paddingRight != null) { + return _paddingRight!! + } + _paddingRight = fluentIcon(name = "Regular.PaddingRight") { + fluentPath { + moveTo(2.75f, 4.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-13.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(21.25f, 4.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.87f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(21.25f, 7.97f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.33f, 0.75f, 0.75f) + verticalLineToRelative(1.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(20.5f, 8.72f) + curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(21.25f, 12.3f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.73f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(21.25f, 16.63f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.87f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(18.78f, 12.28f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-5.0f, -5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(16.44f, 11.0f) + lineTo(5.75f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(10.69f) + lineToRelative(-3.72f, 3.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(5.0f, -5.0f) + close() + } + } + return _paddingRight!! + } + +private var _paddingRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PaddingTop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PaddingTop.kt new file mode 100644 index 00000000..5d1bc3d0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PaddingTop.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PaddingTop: ImageVector + get() { + if (_paddingTop != null) { + return _paddingTop!! + } + _paddingTop = fluentIcon(name = "Regular.PaddingTop") { + fluentPath { + moveTo(4.5f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(7.97f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(8.72f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(12.3f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(16.63f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(4.5f, 21.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(12.28f, 5.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineTo(11.0f, 7.56f) + verticalLineToRelative(10.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(12.5f, 7.56f) + lineToRelative(3.72f, 3.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-5.0f, -5.0f) + close() + } + } + return _paddingTop!! + } + +private var _paddingTop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PageFit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PageFit.kt new file mode 100644 index 00000000..bb033ede --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PageFit.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PageFit: ImageVector + get() { + if (_pageFit != null) { + return _pageFit!! + } + _pageFit = fluentIcon(name = "Regular.PageFit") { + fluentPath { + moveTo(18.25f, 4.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 22.0f, 7.75f) + verticalLineToRelative(8.5f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 18.25f, 20.0f) + lineTo(5.75f, 20.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 2.0f, 16.25f) + verticalLineToRelative(-8.5f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 5.75f, 4.0f) + horizontalLineToRelative(12.5f) + close() + moveTo(18.25f, 5.5f) + lineTo(5.75f, 5.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(12.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + close() + moveTo(18.25f, 13.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(19.0f, 15.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(17.0f, 15.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-1.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(5.75f, 13.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(6.5f, 15.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(7.0f, 17.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + verticalLineToRelative(-1.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(7.0f, 7.0f) + horizontalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(7.0f, 8.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.41f) + verticalLineToRelative(1.34f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(5.0f, 9.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.85f, -2.0f) + lineTo(7.0f, 7.0f) + close() + moveTo(17.0f, 7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + verticalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(17.5f, 9.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + horizontalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(17.0f, 7.0f) + close() + } + } + return _pageFit!! + } + +private var _pageFit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PaintBrush.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PaintBrush.kt new file mode 100644 index 00000000..67d29852 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PaintBrush.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PaintBrush: ImageVector + get() { + if (_paintBrush != null) { + return _paintBrush!! + } + _paintBrush = fluentIcon(name = "Regular.PaintBrush") { + fluentPath { + moveTo(5.75f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + lineTo(9.5f, 16.5f) + verticalLineToRelative(3.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 5.0f, 0.0f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(2.25f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(19.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(5.75f, 2.0f) + close() + moveTo(6.5f, 11.0f) + lineTo(6.5f, 3.5f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) + lineTo(14.0f, 3.5f) + horizontalLineToRelative(1.0f) + verticalLineToRelative(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) + lineTo(16.5f, 3.5f) + horizontalLineToRelative(1.0f) + lineTo(17.5f, 11.0f) + horizontalLineToRelative(-11.0f) + close() + moveTo(6.5f, 14.25f) + lineTo(6.5f, 12.5f) + horizontalLineToRelative(11.0f) + verticalLineToRelative(1.75f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + verticalLineToRelative(-3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _paintBrush!! + } + +private var _paintBrush: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PaintBrushArrowDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PaintBrushArrowDown.kt new file mode 100644 index 00000000..fa5f710c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PaintBrushArrowDown.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PaintBrushArrowDown: ImageVector + get() { + if (_paintBrushArrowDown != null) { + return _paintBrushArrowDown!! + } + _paintBrushArrowDown = fluentIcon(name = "Regular.PaintBrushArrowDown") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.5f, 2.5f) + verticalLineToRelative(3.0f) + lineTo(7.11f, 7.5f) + curveToRelative(-1.17f, 0.0f, -2.08f, 1.0f, -2.04f, 2.13f) + curveToRelative(0.04f, 1.3f, 0.05f, 3.36f, -0.22f, 5.48f) + curveToRelative(-0.26f, 2.15f, -0.78f, 4.27f, -1.73f, 5.73f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 3.75f, 22.0f) + horizontalLineToRelative(11.78f) + lineToRelative(-1.02f, -1.01f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.34f, -0.49f) + horizontalLineToRelative(-3.04f) + lineToRelative(0.35f, -1.59f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.46f, -0.32f) + lineToRelative(-0.43f, 1.91f) + lineTo(8.3f, 20.5f) + arcToRelative(13.66f, 13.66f, 0.0f, false, false, 0.7f, -2.64f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.48f, -0.22f) + arcToRelative(10.67f, 10.67f, 0.0f, false, true, -0.83f, 2.8f) + lineToRelative(-0.02f, 0.06f) + lineTo(5.0f, 20.5f) + arcToRelative(18.05f, 18.05f, 0.0f, false, false, 1.33f, -5.2f) + curveToRelative(0.1f, -0.79f, 0.16f, -1.57f, 0.2f, -2.3f) + lineTo(17.5f, 13.0f) + verticalLineToRelative(1.2f) + arcToRelative(1.74f, 1.74f, 0.0f, false, true, 1.5f, -0.05f) + verticalLineToRelative(-4.4f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + lineTo(14.5f, 7.5f) + verticalLineToRelative(-3.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 12.0f, 2.0f) + close() + moveTo(17.5f, 11.5f) + lineTo(6.59f, 11.5f) + curveToRelative(0.01f, -0.74f, 0.0f, -1.4f, -0.02f, -1.92f) + arcTo(0.56f, 0.56f, 0.0f, false, true, 7.11f, 9.0f) + horizontalLineToRelative(3.14f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(11.0f, 4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(3.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.75f) + close() + moveTo(15.22f, 19.22f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(1.27f, 1.27f) + verticalLineToRelative(-4.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(4.64f) + lineToRelative(1.17f, -1.17f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 0.0f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + } + } + return _paintBrushArrowDown!! + } + +private var _paintBrushArrowDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PaintBrushArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PaintBrushArrowUp.kt new file mode 100644 index 00000000..cbc18363 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PaintBrushArrowUp.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PaintBrushArrowUp: ImageVector + get() { + if (_paintBrushArrowUp != null) { + return _paintBrushArrowUp!! + } + _paintBrushArrowUp = fluentIcon(name = "Regular.PaintBrushArrowUp") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.5f, 2.5f) + verticalLineToRelative(3.0f) + lineTo(7.11f, 7.5f) + curveToRelative(-1.17f, 0.0f, -2.08f, 1.0f, -2.04f, 2.13f) + curveToRelative(0.04f, 1.3f, 0.05f, 3.36f, -0.22f, 5.48f) + curveToRelative(-0.26f, 2.15f, -0.78f, 4.27f, -1.73f, 5.73f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 3.75f, 22.0f) + horizontalLineToRelative(12.8f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(-5.42f) + lineToRelative(0.35f, -1.59f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.46f, -0.32f) + lineToRelative(-0.43f, 1.91f) + lineTo(8.3f, 20.5f) + arcToRelative(13.66f, 13.66f, 0.0f, false, false, 0.7f, -2.64f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.48f, -0.22f) + arcToRelative(10.67f, 10.67f, 0.0f, false, true, -0.83f, 2.8f) + lineToRelative(-0.02f, 0.06f) + lineTo(5.0f, 20.5f) + arcToRelative(18.05f, 18.05f, 0.0f, false, false, 1.33f, -5.2f) + curveToRelative(0.1f, -0.79f, 0.16f, -1.57f, 0.2f, -2.3f) + lineTo(17.5f, 13.0f) + verticalLineToRelative(1.17f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(19.0f, 9.75f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + lineTo(14.5f, 7.5f) + verticalLineToRelative(-3.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 12.0f, 2.0f) + close() + moveTo(17.5f, 11.5f) + lineTo(6.59f, 11.5f) + curveToRelative(0.01f, -0.74f, 0.0f, -1.4f, -0.02f, -1.92f) + arcTo(0.56f, 0.56f, 0.0f, false, true, 7.11f, 9.0f) + horizontalLineToRelative(3.14f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(11.0f, 4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(3.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.75f) + close() + moveTo(15.22f, 18.78f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(1.27f, -1.27f) + verticalLineToRelative(4.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-4.64f) + lineToRelative(1.17f, 1.17f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-2.5f, 2.5f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + close() + } + } + return _paintBrushArrowUp!! + } + +private var _paintBrushArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PaintBucket.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PaintBucket.kt new file mode 100644 index 00000000..8d69e1a2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PaintBucket.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PaintBucket: ImageVector + get() { + if (_paintBucket != null) { + return _paintBucket!! + } + _paintBucket = fluentIcon(name = "Regular.PaintBucket") { + fluentPath { + moveTo(12.0f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + lineTo(10.5f, 3.5f) + curveToRelative(-0.3f, 0.1f, -0.6f, 0.28f, -0.84f, 0.53f) + lineToRelative(-6.88f, 6.88f) + curveToRelative(-0.88f, 0.88f, -0.88f, 2.3f, 0.0f, 3.18f) + lineToRelative(4.88f, 4.88f) + curveToRelative(0.88f, 0.88f, 2.3f, 0.88f, 3.18f, 0.0f) + lineToRelative(6.88f, -6.88f) + curveToRelative(0.88f, -0.88f, 0.88f, -2.3f, 0.0f, -3.18f) + lineToRelative(-4.88f, -4.88f) + arcTo(2.24f, 2.24f, 0.0f, false, false, 12.0f, 3.5f) + lineTo(12.0f, 2.25f) + close() + moveTo(3.84f, 11.97f) + lineTo(10.5f, 5.31f) + verticalLineToRelative(1.44f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(12.0f, 5.31f) + lineToRelative(4.66f, 4.66f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-0.97f, 0.97f) + lineTo(3.8f, 12.0f) + lineToRelative(0.03f, -0.03f) + close() + moveTo(4.31f, 13.5f) + horizontalLineToRelative(9.88f) + lineToRelative(-4.41f, 4.4f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-4.4f, -4.4f) + close() + moveTo(19.52f, 13.6f) + arcToRelative(0.87f, 0.87f, 0.0f, false, false, -1.54f, 0.0f) + lineToRelative(-2.0f, 3.77f) + arcToRelative(3.15f, 3.15f, 0.0f, true, false, 5.55f, 0.0f) + lineToRelative(-2.0f, -3.77f) + close() + moveTo(17.29f, 18.07f) + lineTo(18.75f, 15.34f) + lineTo(20.21f, 18.07f) + arcToRelative(1.65f, 1.65f, 0.0f, true, true, -2.92f, 0.0f) + close() + } + } + return _paintBucket!! + } + +private var _paintBucket: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Pair.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Pair.kt new file mode 100644 index 00000000..58fa328b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Pair.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Pair: ImageVector + get() { + if (_pair != null) { + return _pair!! + } + _pair = fluentIcon(name = "Regular.Pair") { + fluentPath { + moveTo(18.67f, 21.0f) + horizontalLineToRelative(-7.34f) + arcToRelative(1.75f, 1.75f, 0.0f, true, true, -2.32f, -2.33f) + verticalLineToRelative(-3.68f) + lineTo(5.33f, 14.99f) + curveToRelative(-0.26f, 0.56f, -0.8f, 0.95f, -1.44f, 1.0f) + lineToRelative(-0.14f, 0.01f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 3.0f, 12.67f) + lineTo(3.0f, 5.33f) + arcTo(1.75f, 1.75f, 0.0f, true, true, 5.33f, 3.0f) + horizontalLineToRelative(7.34f) + arcTo(1.75f, 1.75f, 0.0f, true, true, 15.0f, 5.33f) + lineTo(15.0f, 9.0f) + horizontalLineToRelative(3.67f) + curveToRelative(0.26f, -0.55f, 0.8f, -0.94f, 1.44f, -1.0f) + horizontalLineToRelative(0.14f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.75f, 3.33f) + verticalLineToRelative(7.34f) + arcTo(1.75f, 1.75f, 0.0f, true, true, 18.67f, 21.0f) + horizontalLineToRelative(-7.34f) + horizontalLineToRelative(7.34f) + close() + moveTo(18.67f, 10.5f) + lineTo(15.0f, 10.5f) + verticalLineToRelative(2.16f) + curveToRelative(0.56f, 0.27f, 0.95f, 0.8f, 1.0f, 1.44f) + verticalLineToRelative(0.14f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -3.33f, 0.76f) + horizontalLineToRelative(-2.15f) + verticalLineToRelative(3.67f) + curveToRelative(0.36f, 0.17f, 0.65f, 0.47f, 0.82f, 0.83f) + horizontalLineToRelative(7.34f) + curveToRelative(0.17f, -0.36f, 0.47f, -0.66f, 0.83f, -0.83f) + verticalLineToRelative(-7.34f) + arcToRelative(1.76f, 1.76f, 0.0f, false, true, -0.75f, -0.67f) + lineToRelative(-0.08f, -0.16f) + close() + moveTo(13.49f, 10.5f) + horizontalLineToRelative(-2.16f) + curveToRelative(-0.17f, 0.36f, -0.46f, 0.66f, -0.82f, 0.83f) + verticalLineToRelative(2.16f) + horizontalLineToRelative(2.15f) + curveToRelative(0.18f, -0.36f, 0.47f, -0.65f, 0.84f, -0.83f) + lineTo(13.5f, 10.5f) + close() + moveTo(12.67f, 4.5f) + lineTo(5.33f, 4.5f) + curveToRelative(-0.17f, 0.36f, -0.47f, 0.66f, -0.83f, 0.83f) + verticalLineToRelative(7.34f) + curveToRelative(0.36f, 0.17f, 0.66f, 0.46f, 0.83f, 0.83f) + lineTo(9.0f, 13.5f) + verticalLineToRelative(-2.17f) + curveToRelative(-0.56f, -0.26f, -0.95f, -0.8f, -1.0f, -1.44f) + lineTo(8.0f, 9.75f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 11.33f, 9.0f) + horizontalLineToRelative(2.16f) + lineTo(13.49f, 5.33f) + arcToRelative(1.76f, 1.76f, 0.0f, false, true, -0.74f, -0.68f) + lineToRelative(-0.08f, -0.15f) + close() + } + } + return _pair!! + } + +private var _pair: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelLeft.kt new file mode 100644 index 00000000..2b9b5462 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelLeft.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PanelLeft: ImageVector + get() { + if (_panelLeft != null) { + return _panelLeft!! + } + _panelLeft = fluentIcon(name = "Regular.PanelLeft") { + fluentPath { + moveTo(2.0f, 7.25f) + curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) + horizontalLineToRelative(13.5f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineTo(5.25f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + close() + moveTo(9.5f, 5.5f) + verticalLineToRelative(13.0f) + horizontalLineToRelative(9.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineTo(9.5f) + close() + moveTo(8.0f, 5.5f) + horizontalLineTo(5.25f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineTo(8.0f) + verticalLineToRelative(-13.0f) + close() + } + } + return _panelLeft!! + } + +private var _panelLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelLeftAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelLeftAdd.kt new file mode 100644 index 00000000..8f9dd260 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelLeftAdd.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PanelLeftAdd: ImageVector + get() { + if (_panelLeftAdd != null) { + return _panelLeftAdd!! + } + _panelLeftAdd = fluentIcon(name = "Regular.PanelLeftAdd") { + fluentPath { + moveTo(2.0f, 7.25f) + curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) + horizontalLineToRelative(13.5f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(5.56f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) + lineTo(20.5f, 7.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(9.5f, 5.5f) + verticalLineToRelative(13.0f) + horizontalLineToRelative(1.58f) + curveToRelative(0.08f, 0.52f, 0.22f, 1.03f, 0.42f, 1.5f) + lineTo(5.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + close() + moveTo(8.0f, 5.5f) + lineTo(5.25f, 5.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(8.0f, 18.5f) + verticalLineToRelative(-13.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _panelLeftAdd!! + } + +private var _panelLeftAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelLeftContract.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelLeftContract.kt new file mode 100644 index 00000000..df93e993 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelLeftContract.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PanelLeftContract: ImageVector + get() { + if (_panelLeftContract != null) { + return _panelLeftContract!! + } + _panelLeftContract = fluentIcon(name = "Regular.PanelLeftContract") { + fluentPath { + moveTo(14.8f, 9.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.05f, -0.06f) + lineToRelative(-2.5f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.12f) + lineToRelative(2.5f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.0f, -1.12f) + lineToRelative(-1.05f, -0.94f) + horizontalLineToRelative(3.55f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + lineTo(13.7f, 11.25f) + lineToRelative(1.05f, -0.94f) + curveToRelative(0.31f, -0.28f, 0.33f, -0.75f, 0.06f, -1.06f) + close() + moveTo(2.0f, 17.25f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 20.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 17.25f) + lineTo(22.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 4.0f) + lineTo(4.75f, 4.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 6.75f) + verticalLineToRelative(10.5f) + close() + moveTo(4.75f, 18.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + lineTo(3.5f, 6.75f) + curveToRelative(0.0f, -0.7f, 0.56f, -1.25f, 1.25f, -1.25f) + lineTo(8.0f, 5.5f) + verticalLineToRelative(13.0f) + lineTo(4.75f, 18.5f) + close() + moveTo(9.5f, 18.5f) + verticalLineToRelative(-13.0f) + horizontalLineToRelative(9.75f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.7f, -0.56f, 1.25f, -1.25f, 1.25f) + lineTo(9.5f, 18.5f) + close() + } + } + return _panelLeftContract!! + } + +private var _panelLeftContract: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelLeftExpand.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelLeftExpand.kt new file mode 100644 index 00000000..44a1e40f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelLeftExpand.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PanelLeftExpand: ImageVector + get() { + if (_panelLeftExpand != null) { + return _panelLeftExpand!! + } + _panelLeftExpand = fluentIcon(name = "Regular.PanelLeftExpand") { + fluentPath { + moveTo(14.2f, 14.75f) + curveToRelative(0.27f, 0.3f, 0.74f, 0.33f, 1.05f, 0.06f) + lineToRelative(2.5f, -2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.12f) + lineToRelative(-2.5f, -2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, 1.12f) + lineToRelative(1.05f, 0.94f) + horizontalLineToRelative(-3.55f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(3.55f) + lineToRelative(-1.05f, 0.94f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.06f, 1.06f) + close() + moveTo(2.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) + verticalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) + lineTo(4.75f, 20.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) + lineTo(2.0f, 6.75f) + close() + moveTo(4.75f, 5.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + lineTo(8.0f, 18.5f) + verticalLineToRelative(-13.0f) + lineTo(4.75f, 5.5f) + close() + moveTo(9.5f, 5.5f) + verticalLineToRelative(13.0f) + horizontalLineToRelative(9.75f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + lineTo(20.5f, 6.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(9.5f, 5.5f) + close() + } + } + return _panelLeftExpand!! + } + +private var _panelLeftExpand: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelLeftHeader.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelLeftHeader.kt new file mode 100644 index 00000000..dbe21fc6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelLeftHeader.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PanelLeftHeader: ImageVector + get() { + if (_panelLeftHeader != null) { + return _panelLeftHeader!! + } + _panelLeftHeader = fluentIcon(name = "Regular.PanelLeftHeader") { + fluentPath { + moveTo(5.25f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) + horizontalLineToRelative(13.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-9.5f) + curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) + lineTo(5.25f, 4.0f) + close() + moveTo(9.5f, 10.5f) + horizontalLineToRelative(11.0f) + verticalLineToRelative(6.25f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(9.5f, 18.5f) + verticalLineToRelative(-8.0f) + close() + moveTo(20.5f, 9.0f) + horizontalLineToRelative(-11.0f) + lineTo(9.5f, 5.5f) + horizontalLineToRelative(9.25f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(20.5f, 9.0f) + close() + moveTo(5.25f, 5.5f) + lineTo(8.0f, 5.5f) + verticalLineToRelative(13.0f) + lineTo(5.25f, 18.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + close() + } + } + return _panelLeftHeader!! + } + +private var _panelLeftHeader: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelLeftHeaderAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelLeftHeaderAdd.kt new file mode 100644 index 00000000..0acdb95d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelLeftHeaderAdd.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PanelLeftHeaderAdd: ImageVector + get() { + if (_panelLeftHeaderAdd != null) { + return _panelLeftHeaderAdd!! + } + _panelLeftHeaderAdd = fluentIcon(name = "Regular.PanelLeftHeaderAdd") { + fluentPath { + moveTo(5.25f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) + horizontalLineToRelative(6.25f) + curveToRelative(-0.2f, -0.47f, -0.34f, -0.98f, -0.42f, -1.5f) + lineTo(9.5f, 18.5f) + verticalLineToRelative(-8.0f) + horizontalLineToRelative(11.0f) + verticalLineToRelative(1.23f) + curveToRelative(0.55f, 0.29f, 1.06f, 0.65f, 1.5f, 1.08f) + lineTo(22.0f, 7.25f) + curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) + lineTo(5.25f, 4.0f) + close() + moveTo(20.5f, 9.0f) + horizontalLineToRelative(-11.0f) + lineTo(9.5f, 5.5f) + horizontalLineToRelative(9.25f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(20.5f, 9.0f) + close() + moveTo(5.25f, 5.5f) + lineTo(8.0f, 5.5f) + verticalLineToRelative(13.0f) + lineTo(5.25f, 18.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _panelLeftHeaderAdd!! + } + +private var _panelLeftHeaderAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelLeftHeaderKey.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelLeftHeaderKey.kt new file mode 100644 index 00000000..3b93c7f1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelLeftHeaderKey.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PanelLeftHeaderKey: ImageVector + get() { + if (_panelLeftHeaderKey != null) { + return _panelLeftHeaderKey!! + } + _panelLeftHeaderKey = fluentIcon(name = "Regular.PanelLeftHeaderKey") { + fluentPath { + moveTo(5.25f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) + horizontalLineToRelative(5.95f) + curveToRelative(0.08f, -0.16f, 0.19f, -0.3f, 0.31f, -0.43f) + lineToRelative(1.08f, -1.07f) + lineTo(9.5f, 18.5f) + verticalLineToRelative(-8.0f) + horizontalLineToRelative(11.0f) + verticalLineToRelative(0.61f) + curveToRelative(0.54f, 0.13f, 1.05f, 0.35f, 1.5f, 0.65f) + lineTo(22.0f, 7.25f) + curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) + lineTo(5.25f, 4.0f) + close() + moveTo(20.5f, 9.0f) + horizontalLineToRelative(-11.0f) + lineTo(9.5f, 5.5f) + horizontalLineToRelative(9.25f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(20.5f, 9.0f) + close() + moveTo(8.0f, 5.5f) + verticalLineToRelative(13.0f) + lineTo(5.25f, 18.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + lineTo(8.0f, 5.5f) + close() + moveTo(19.5f, 19.0f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, -3.38f, -2.59f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.15f, 0.12f) + lineToRelative(-3.75f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.22f, 0.53f) + verticalLineToRelative(1.44f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(1.75f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(15.0f, 22.0f) + horizontalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(1.5f) + close() + moveTo(21.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + } + } + return _panelLeftHeaderKey!! + } + +private var _panelLeftHeaderKey: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelLeftKey.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelLeftKey.kt new file mode 100644 index 00000000..32141c22 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelLeftKey.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PanelLeftKey: ImageVector + get() { + if (_panelLeftKey != null) { + return _panelLeftKey!! + } + _panelLeftKey = fluentIcon(name = "Regular.PanelLeftKey") { + fluentPath { + moveTo(2.0f, 7.25f) + curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) + horizontalLineToRelative(13.5f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(4.5f) + curveToRelative(-0.45f, -0.3f, -0.96f, -0.52f, -1.5f, -0.64f) + lineTo(20.5f, 7.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(9.5f, 5.5f) + verticalLineToRelative(13.0f) + horizontalLineToRelative(3.09f) + lineToRelative(-1.08f, 1.07f) + curveToRelative(-0.12f, 0.13f, -0.23f, 0.27f, -0.31f, 0.43f) + lineTo(5.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + close() + moveTo(8.0f, 5.5f) + lineTo(5.25f, 5.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(8.0f, 18.5f) + verticalLineToRelative(-13.0f) + close() + moveTo(23.0f, 15.5f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.5f, 3.5f) + lineTo(18.0f, 19.0f) + verticalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-1.44f) + curveToRelative(0.0f, -0.2f, 0.08f, -0.39f, 0.22f, -0.53f) + lineToRelative(3.75f, -3.75f) + lineToRelative(0.15f, -0.12f) + arcTo(3.5f, 3.5f, 0.0f, true, true, 23.0f, 15.5f) + close() + moveTo(20.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + } + } + return _panelLeftKey!! + } + +private var _panelLeftKey: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelRight.kt new file mode 100644 index 00000000..6e88f01d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelRight.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PanelRight: ImageVector + get() { + if (_panelRight != null) { + return _panelRight!! + } + _panelRight = fluentIcon(name = "Regular.PanelRight") { + fluentPath { + moveTo(22.0f, 7.25f) + curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) + lineTo(5.25f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) + horizontalLineToRelative(13.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-9.5f) + close() + moveTo(14.5f, 5.5f) + verticalLineToRelative(13.0f) + lineTo(5.25f, 18.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(9.25f) + close() + moveTo(16.0f, 5.5f) + horizontalLineToRelative(2.75f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(16.0f, 18.5f) + verticalLineToRelative(-13.0f) + close() + } + } + return _panelRight!! + } + +private var _panelRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelRightContract.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelRightContract.kt new file mode 100644 index 00000000..585e6a57 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelRightContract.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PanelRightContract: ImageVector + get() { + if (_panelRightContract != null) { + return _panelRightContract!! + } + _panelRightContract = fluentIcon(name = "Regular.PanelRightContract") { + fluentPath { + moveTo(9.2f, 9.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, -0.06f) + lineToRelative(2.5f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.12f) + lineToRelative(-2.5f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.0f, -1.12f) + lineToRelative(1.05f, -0.94f) + lineTo(6.75f, 12.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(3.55f) + lineToRelative(-1.05f, -0.94f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.06f, -1.06f) + close() + moveTo(22.0f, 17.25f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) + lineTo(4.75f, 20.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) + lineTo(2.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) + verticalLineToRelative(10.5f) + close() + moveTo(19.25f, 18.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + lineTo(20.5f, 6.75f) + curveToRelative(0.0f, -0.7f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(16.0f, 5.5f) + verticalLineToRelative(13.0f) + horizontalLineToRelative(3.25f) + close() + moveTo(14.5f, 18.5f) + verticalLineToRelative(-13.0f) + lineTo(4.75f, 5.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.7f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(9.75f) + close() + } + } + return _panelRightContract!! + } + +private var _panelRightContract: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelRightCursor.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelRightCursor.kt new file mode 100644 index 00000000..d2865fcf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PanelRightCursor.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PanelRightCursor: ImageVector + get() { + if (_panelRightCursor != null) { + return _panelRightCursor!! + } + _panelRightCursor = fluentIcon(name = "Regular.PanelRightCursor") { + fluentPath { + moveTo(22.0f, 7.25f) + curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) + lineTo(5.25f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) + lineTo(13.0f, 20.0f) + verticalLineToRelative(-1.5f) + lineTo(5.25f, 18.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(9.25f) + verticalLineToRelative(5.52f) + curveToRelative(0.55f, -0.08f, 1.1f, 0.1f, 1.5f, 0.5f) + lineTo(16.0f, 5.5f) + horizontalLineToRelative(2.75f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(9.26f) + lineToRelative(1.28f, 1.42f) + curveToRelative(0.14f, -0.37f, 0.22f, -0.76f, 0.22f, -1.18f) + verticalLineToRelative(-9.5f) + close() + moveTo(14.49f, 12.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.82f, 0.2f) + lineToRelative(6.37f, 7.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, 1.23f) + lineToRelative(-3.54f, -0.88f) + lineToRelative(-2.03f, 3.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.37f, -0.42f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.31f, 0.2f, -0.59f, 0.49f, -0.7f) + close() + } + } + return _panelRightCursor!! + } + +private var _panelRightCursor: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Password.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Password.kt new file mode 100644 index 00000000..c4966630 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Password.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Password: ImageVector + get() { + if (_password != null) { + return _password!! + } + _password = fluentIcon(name = "Regular.Password") { + fluentPath { + moveTo(11.78f, 10.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(0.72f, 0.72f) + lineToRelative(-0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(0.72f, -0.72f) + lineToRelative(0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineToRelative(-0.72f, -0.72f) + lineToRelative(0.72f, -0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-0.72f, 0.72f) + lineToRelative(-0.72f, -0.72f) + close() + moveTo(5.22f, 10.22f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(0.72f, 0.72f) + lineToRelative(0.72f, -0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-0.72f, 0.72f) + lineToRelative(0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(7.0f, 13.06f) + lineToRelative(-0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(0.72f, -0.72f) + lineToRelative(-0.72f, -0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + moveTo(16.5f, 13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(16.5f, 13.5f) + close() + moveTo(5.25f, 5.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 8.25f) + verticalLineToRelative(7.5f) + curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) + horizontalLineToRelative(13.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-7.5f) + curveTo(22.0f, 6.45f, 20.55f, 5.0f, 18.75f, 5.0f) + lineTo(5.25f, 5.0f) + close() + moveTo(3.5f, 8.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(5.25f, 17.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-7.5f) + close() + } + } + return _password!! + } + +private var _password: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Patch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Patch.kt new file mode 100644 index 00000000..cd47141b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Patch.kt @@ -0,0 +1,102 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Patch: ImageVector + get() { + if (_patch != null) { + return _patch!! + } + _patch = fluentIcon(name = "Regular.Patch") { + fluentPath { + moveTo(12.0f, 12.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(10.25f, 12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(14.5f, 12.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(12.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(12.0f, 10.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(3.24f, 18.3f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.6f) + lineTo(13.7f, 3.24f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 4.6f, 0.0f) + lineToRelative(2.46f, 2.46f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, 4.6f) + lineTo(10.3f, 20.76f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -4.6f, 0.0f) + lineTo(3.24f, 18.3f) + close() + moveTo(4.3f, 14.76f) + curveToRelative(-0.69f, 0.69f, -0.69f, 1.8f, 0.0f, 2.48f) + lineToRelative(2.46f, 2.46f) + curveToRelative(0.69f, 0.68f, 1.8f, 0.68f, 2.48f, 0.0f) + lineToRelative(1.7f, -1.7f) + lineTo(6.0f, 13.06f) + lineToRelative(-1.7f, 1.7f) + close() + moveTo(16.94f, 12.0f) + lineTo(12.0f, 7.06f) + lineTo(7.06f, 12.0f) + lineTo(12.0f, 16.94f) + lineTo(16.94f, 12.0f) + close() + moveTo(18.0f, 10.94f) + lineToRelative(1.7f, -1.7f) + curveToRelative(0.69f, -0.69f, 0.69f, -1.8f, 0.0f, -2.48f) + lineTo(17.24f, 4.3f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.48f, 0.0f) + lineTo(13.06f, 6.0f) + lineTo(18.0f, 10.94f) + close() + moveTo(10.23f, 5.29f) + lineTo(9.23f, 4.29f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.47f, 0.0f) + lineTo(4.3f, 6.77f) + curveToRelative(-0.69f, 0.69f, -0.69f, 1.8f, 0.0f, 2.48f) + lineToRelative(1.0f, 1.0f) + lineToRelative(-1.07f, 1.05f) + lineToRelative(-1.0f, -1.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.59f) + lineTo(5.7f, 3.24f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 4.6f, 0.0f) + lineToRelative(1.0f, 1.0f) + lineToRelative(-1.07f, 1.05f) + close() + moveTo(12.71f, 19.77f) + lineTo(13.71f, 20.77f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 4.59f, 0.0f) + lineToRelative(2.46f, -2.47f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 0.0f, -4.6f) + lineToRelative(-1.0f, -1.0f) + lineToRelative(-1.05f, 1.07f) + lineToRelative(1.0f, 1.0f) + curveToRelative(0.67f, 0.68f, 0.67f, 1.78f, 0.0f, 2.47f) + lineToRelative(-2.47f, 2.46f) + curveToRelative(-0.69f, 0.69f, -1.8f, 0.69f, -2.48f, 0.0f) + lineToRelative(-1.0f, -1.0f) + lineToRelative(-1.05f, 1.07f) + close() + } + } + return _patch!! + } + +private var _patch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Patient.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Patient.kt new file mode 100644 index 00000000..bd6e435f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Patient.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Patient: ImageVector + get() { + if (_patient != null) { + return _patient!! + } + _patient = fluentIcon(name = "Regular.Patient") { + fluentPath { + moveTo(17.75f, 2.0f) + curveTo(18.99f, 2.0f, 20.0f, 3.0f, 20.0f, 4.25f) + verticalLineToRelative(15.5f) + curveTo(20.0f, 21.0f, 19.0f, 22.0f, 17.75f, 22.0f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(6.25f, 2.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(18.5f, 16.0f) + horizontalLineToRelative(-13.0f) + verticalLineToRelative(3.75f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) + lineTo(18.5f, 16.0f) + close() + moveTo(7.75f, 17.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-8.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(8.6f) + horizontalLineToRelative(-8.5f) + close() + moveTo(17.75f, 3.5f) + lineTo(6.15f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 0.75f) + lineTo(5.5f, 14.5f) + lineTo(8.0f, 14.5f) + verticalLineToRelative(-2.25f) + curveToRelative(0.0f, -0.65f, 0.5f, -1.18f, 1.12f, -1.25f) + horizontalLineToRelative(5.63f) + curveToRelative(0.65f, 0.0f, 1.18f, 0.49f, 1.24f, 1.12f) + lineToRelative(0.01f, 0.13f) + verticalLineToRelative(2.25f) + horizontalLineToRelative(2.5f) + lineTo(18.5f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(14.5f, 12.5f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(12.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + moveTo(12.0f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + } + } + return _patient!! + } + +private var _patient: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PauseCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PauseCircle.kt new file mode 100644 index 00000000..a4d53aff --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PauseCircle.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PauseCircle: ImageVector + get() { + if (_pauseCircle != null) { + return _pauseCircle!! + } + _pauseCircle = fluentIcon(name = "Regular.PauseCircle") { + fluentPath { + moveTo(10.5f, 8.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-7.5f) + close() + moveTo(15.0f, 8.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-7.5f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) + close() + moveTo(3.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 17.0f, 0.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, -17.0f, 0.0f) + close() + } + } + return _pauseCircle!! + } + +private var _pauseCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Payment.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Payment.kt new file mode 100644 index 00000000..c10c8fb8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Payment.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Payment: ImageVector + get() { + if (_payment != null) { + return _payment!! + } + _payment = fluentIcon(name = "Regular.Payment") { + fluentPath { + moveTo(15.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.5f) + close() + moveTo(2.0f, 8.25f) + curveTo(2.0f, 6.45f, 3.46f, 5.0f, 5.25f, 5.0f) + horizontalLineToRelative(13.5f) + curveTo(20.55f, 5.0f, 22.0f, 6.46f, 22.0f, 8.25f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineTo(5.25f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 15.75f) + verticalLineToRelative(-7.5f) + close() + moveTo(20.5f, 9.5f) + verticalLineTo(8.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineTo(5.25f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineTo(9.5f) + horizontalLineToRelative(17.0f) + close() + moveTo(3.5f, 11.0f) + verticalLineToRelative(4.75f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineTo(11.0f) + horizontalLineToRelative(-17.0f) + close() + } + } + return _payment!! + } + +private var _payment: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Pen.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Pen.kt new file mode 100644 index 00000000..09bc8df9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Pen.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Pen: ImageVector + get() { + if (_pen != null) { + return _pen!! + } + _pen = fluentIcon(name = "Regular.Pen") { + fluentPath { + moveTo(20.95f, 3.05f) + arcToRelative(3.58f, 3.58f, 0.0f, false, false, -5.06f, 0.0f) + lineTo(3.94f, 15.0f) + curveToRelative(-0.4f, 0.4f, -0.7f, 0.92f, -0.82f, 1.48f) + lineToRelative(-1.1f, 4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.9f, 0.9f) + lineToRelative(4.6f, -1.1f) + arcTo(3.1f, 3.1f, 0.0f, false, false, 9.0f, 20.06f) + lineToRelative(10.0f, -10.0f) + curveToRelative(0.68f, 0.68f, 0.68f, 1.79f, 0.0f, 2.47f) + lineToRelative(-1.79f, 1.78f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(1.79f, -1.78f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 0.0f, -4.59f) + lineToRelative(0.9f, -0.9f) + arcToRelative(3.58f, 3.58f, 0.0f, false, false, 0.0f, -5.05f) + close() + moveTo(16.95f, 4.11f) + arcToRelative(2.08f, 2.08f, 0.0f, true, true, 2.94f, 2.94f) + lineTo(7.94f, 19.0f) + arcToRelative(1.6f, 1.6f, 0.0f, false, true, -0.76f, 0.43f) + lineToRelative(-3.42f, 0.8f) + lineToRelative(0.82f, -3.4f) + curveToRelative(0.06f, -0.3f, 0.21f, -0.56f, 0.42f, -0.77f) + lineTo(16.95f, 4.1f) + close() + } + } + return _pen!! + } + +private var _pen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PenOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PenOff.kt new file mode 100644 index 00000000..b6b39635 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PenOff.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PenOff: ImageVector + get() { + if (_penOff != null) { + return _penOff!! + } + _penOff = fluentIcon(name = "Regular.PenOff") { + fluentPath { + moveTo(8.94f, 10.0f) + lineTo(2.22f, 3.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineToRelative(18.5f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(14.0f, 15.06f) + lineToRelative(-5.0f, 5.0f) + curveToRelative(-0.4f, 0.4f, -0.92f, 0.7f, -1.48f, 0.82f) + lineToRelative(-4.6f, 1.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.9f, -0.9f) + lineToRelative(1.1f, -4.6f) + arcTo(3.1f, 3.1f, 0.0f, false, true, 3.94f, 15.0f) + lineToRelative(5.0f, -5.0f) + close() + moveTo(12.94f, 14.0f) + lineTo(10.0f, 11.06f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(1.6f, 1.6f, 0.0f, false, false, -0.42f, 0.76f) + lineToRelative(-0.82f, 3.42f) + lineToRelative(3.42f, -0.81f) + curveToRelative(0.29f, -0.07f, 0.55f, -0.22f, 0.76f, -0.43f) + lineToRelative(5.0f, -5.0f) + close() + moveTo(19.89f, 7.05f) + lineTo(15.06f, 11.88f) + lineTo(16.12f, 12.94f) + lineTo(19.0f, 10.06f) + curveToRelative(0.68f, 0.68f, 0.68f, 1.79f, 0.0f, 2.47f) + lineToRelative(-1.65f, 1.64f) + lineToRelative(1.06f, 1.06f) + lineToRelative(1.64f, -1.64f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 20.07f, 9.0f) + lineToRelative(0.9f, -0.9f) + arcToRelative(3.58f, 3.58f, 0.0f, false, false, -5.07f, -5.05f) + lineToRelative(-4.83f, 4.83f) + lineToRelative(1.06f, 1.06f) + lineToRelative(4.83f, -4.83f) + arcToRelative(2.08f, 2.08f, 0.0f, true, true, 2.94f, 2.94f) + close() + } + } + return _penOff!! + } + +private var _penOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PenProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PenProhibited.kt new file mode 100644 index 00000000..c1ce6497 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PenProhibited.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PenProhibited: ImageVector + get() { + if (_penProhibited != null) { + return _penProhibited!! + } + _penProhibited = fluentIcon(name = "Regular.PenProhibited") { + fluentPath { + moveTo(15.9f, 3.05f) + arcToRelative(3.58f, 3.58f, 0.0f, true, true, 5.05f, 5.06f) + lineToRelative(-3.04f, 3.04f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -2.0f, -0.12f) + lineToRelative(3.98f, -3.98f) + arcToRelative(2.08f, 2.08f, 0.0f, false, false, -2.94f, -2.94f) + lineTo(5.0f, 16.06f) + arcToRelative(1.6f, 1.6f, 0.0f, false, false, -0.42f, 0.76f) + lineToRelative(-0.82f, 3.42f) + lineToRelative(3.42f, -0.81f) + curveToRelative(0.29f, -0.07f, 0.55f, -0.22f, 0.76f, -0.43f) + lineToRelative(2.09f, -2.09f) + arcToRelative(6.57f, 6.57f, 0.0f, false, false, 0.12f, 2.0f) + lineTo(9.0f, 20.06f) + curveToRelative(-0.4f, 0.4f, -0.92f, 0.7f, -1.48f, 0.82f) + lineToRelative(-4.6f, 1.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.9f, -0.9f) + lineToRelative(1.1f, -4.6f) + arcTo(3.1f, 3.1f, 0.0f, false, true, 3.94f, 15.0f) + lineTo(15.9f, 3.05f) + close() + moveTo(22.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(12.5f, 17.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 6.25f, -3.3f) + lineToRelative(-5.56f, 5.55f) + arcToRelative(3.98f, 3.98f, 0.0f, false, true, -0.69f, -2.25f) + close() + moveTo(16.5f, 21.5f) + curveToRelative(-0.83f, 0.0f, -1.6f, -0.26f, -2.25f, -0.7f) + lineToRelative(5.56f, -5.55f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -3.3f, 6.25f) + close() + } + } + return _penProhibited!! + } + +private var _penProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/People.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/People.kt new file mode 100644 index 00000000..1fae19a0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/People.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.People: ImageVector + get() { + if (_people != null) { + return _people!! + } + _people = fluentIcon(name = "Regular.People") { + fluentPath { + moveTo(5.5f, 8.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) + close() + moveTo(8.0f, 4.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) + close() + moveTo(15.5f, 9.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + moveTo(17.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + moveTo(14.25f, 19.04f) + curveToRelative(0.7f, 0.28f, 1.6f, 0.46f, 2.75f, 0.46f) + curveToRelative(2.28f, 0.0f, 3.59f, -0.7f, 4.3f, -1.56f) + arcToRelative(3.14f, 3.14f, 0.0f, false, false, 0.7f, -1.73f) + verticalLineToRelative(-0.03f) + curveToRelative(0.0f, -1.2f, -0.97f, -2.18f, -2.18f, -2.18f) + lineTo(14.1f, 14.0f) + curveToRelative(0.4f, 0.41f, 0.68f, 0.93f, 0.81f, 1.5f) + horizontalLineToRelative(4.91f) + arcToRelative(0.68f, 0.68f, 0.0f, false, true, 0.68f, 0.7f) + lineToRelative(-0.04f, 0.18f) + curveToRelative(-0.04f, 0.16f, -0.13f, 0.38f, -0.32f, 0.6f) + curveTo(19.8f, 17.42f, 18.97f, 18.0f, 17.0f, 18.0f) + curveToRelative(-0.98f, 0.0f, -1.67f, -0.15f, -2.17f, -0.34f) + curveToRelative(-0.1f, 0.4f, -0.28f, 0.88f, -0.58f, 1.38f) + close() + moveTo(4.25f, 14.0f) + curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) + verticalLineToRelative(0.28f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, 0.01f, 0.2f) + curveToRelative(0.02f, 0.14f, 0.04f, 0.32f, 0.1f, 0.53f) + curveToRelative(0.09f, 0.42f, 0.29f, 0.98f, 0.68f, 1.55f) + curveTo(3.61f, 19.97f, 5.17f, 21.0f, 8.0f, 21.0f) + reflectiveCurveToRelative(4.39f, -1.03f, 5.2f, -2.2f) + arcToRelative(4.48f, 4.48f, 0.0f, false, false, 0.8f, -2.27f) + verticalLineToRelative(-0.28f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-7.5f) + close() + moveTo(3.5f, 16.5f) + verticalLineToRelative(-0.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.34f) + lineToRelative(-0.06f, 0.33f) + curveToRelative(-0.07f, 0.28f, -0.2f, 0.65f, -0.46f, 1.02f) + curveToRelative(-0.5f, 0.71f, -1.56f, 1.56f, -3.98f, 1.56f) + reflectiveCurveToRelative(-3.49f, -0.85f, -3.98f, -1.56f) + arcToRelative(2.99f, 2.99f, 0.0f, false, true, -0.52f, -1.43f) + close() + } + } + return _people!! + } + +private var _people: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleAdd.kt new file mode 100644 index 00000000..12bce4d3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleAdd.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PeopleAdd: ImageVector + get() { + if (_peopleAdd != null) { + return _peopleAdd!! + } + _peopleAdd = fluentIcon(name = "Regular.PeopleAdd") { + fluentPath { + moveTo(5.5f, 7.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) + close() + moveTo(8.0f, 3.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) + close() + moveTo(15.5f, 8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + moveTo(17.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + moveTo(4.25f, 13.0f) + curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) + verticalLineToRelative(0.28f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, 0.01f, 0.2f) + curveToRelative(0.02f, 0.14f, 0.04f, 0.32f, 0.1f, 0.53f) + curveToRelative(0.09f, 0.42f, 0.29f, 0.98f, 0.68f, 1.55f) + curveTo(3.61f, 18.97f, 5.17f, 20.0f, 8.0f, 20.0f) + curveToRelative(1.37f, 0.0f, 2.44f, -0.24f, 3.28f, -0.62f) + arcToRelative(6.48f, 6.48f, 0.0f, false, true, -0.27f, -1.55f) + curveToRelative(-0.65f, 0.38f, -1.6f, 0.67f, -3.01f, 0.67f) + curveToRelative(-2.42f, 0.0f, -3.49f, -0.85f, -3.98f, -1.56f) + arcToRelative(2.99f, 2.99f, 0.0f, false, true, -0.52f, -1.43f) + verticalLineToRelative(-0.26f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.48f) + curveToRelative(0.25f, -0.48f, 0.56f, -0.92f, 0.91f, -1.32f) + arcToRelative(2.24f, 2.24f, 0.0f, false, false, -0.89f, -0.18f) + horizontalLineToRelative(-7.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _peopleAdd!! + } + +private var _peopleAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleAudience.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleAudience.kt new file mode 100644 index 00000000..b944f08d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleAudience.kt @@ -0,0 +1,96 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PeopleAudience: ImageVector + get() { + if (_peopleAudience != null) { + return _peopleAudience!! + } + _peopleAudience = fluentIcon(name = "Regular.PeopleAudience") { + fluentPath { + moveTo(14.75f, 10.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-3.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.97f, 0.79f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(5.5f) + close() + moveTo(20.5f, 11.75f) + verticalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.38f) + curveToRelative(0.35f, 0.41f, 0.57f, 0.93f, 0.62f, 1.5f) + horizontalLineToRelative(2.76f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + close() + moveTo(2.0f, 15.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(2.76f) + curveToRelative(0.05f, -0.57f, 0.28f, -1.09f, 0.62f, -1.5f) + lineTo(3.75f, 10.0f) + curveTo(2.78f, 10.0f, 2.0f, 10.78f, 2.0f, 11.75f) + verticalLineToRelative(3.5f) + close() + moveTo(12.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) + close() + moveTo(12.0f, 4.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(18.5f, 4.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + moveTo(18.5f, 5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(5.5f, 4.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + moveTo(5.5f, 5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(2.75f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.5f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 5.75f, 22.0f) + horizontalLineToRelative(12.5f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 22.0f, 18.25f) + verticalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(2.75f, 17.0f) + close() + moveTo(5.75f, 20.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.24f, -2.0f) + lineTo(20.5f, 18.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.24f, 2.0f) + lineTo(5.75f, 20.5f) + close() + } + } + return _peopleAudience!! + } + +private var _peopleAudience: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleCall.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleCall.kt new file mode 100644 index 00000000..c5fcff8d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleCall.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PeopleCall: ImageVector + get() { + if (_peopleCall != null) { + return _peopleCall!! + } + _peopleCall = fluentIcon(name = "Regular.PeopleCall") { + fluentPath { + moveTo(5.5f, 7.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) + close() + moveTo(8.0f, 3.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) + close() + moveTo(15.5f, 8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + moveTo(17.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + moveTo(4.25f, 13.0f) + curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) + verticalLineToRelative(0.28f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, 0.01f, 0.2f) + curveToRelative(0.02f, 0.14f, 0.04f, 0.32f, 0.1f, 0.53f) + curveToRelative(0.09f, 0.42f, 0.29f, 0.98f, 0.68f, 1.55f) + curveTo(3.61f, 18.97f, 5.17f, 20.0f, 8.0f, 20.0f) + reflectiveCurveToRelative(4.39f, -1.03f, 5.2f, -2.2f) + arcToRelative(4.48f, 4.48f, 0.0f, false, false, 0.8f, -2.27f) + verticalLineToRelative(-0.28f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-7.5f) + close() + moveTo(3.5f, 15.5f) + verticalLineToRelative(-0.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.34f) + lineToRelative(-0.06f, 0.33f) + curveToRelative(-0.07f, 0.28f, -0.2f, 0.65f, -0.46f, 1.02f) + curveToRelative(-0.5f, 0.71f, -1.56f, 1.56f, -3.98f, 1.56f) + reflectiveCurveToRelative(-3.49f, -0.85f, -3.98f, -1.56f) + arcToRelative(2.99f, 2.99f, 0.0f, false, true, -0.52f, -1.43f) + close() + moveTo(18.2f, 14.0f) + lineToRelative(0.47f, -1.21f) + curveToRelative(0.24f, -0.61f, 0.92f, -0.93f, 1.55f, -0.73f) + lineToRelative(0.43f, 0.14f) + curveToRelative(0.72f, 0.24f, 1.32f, 0.8f, 1.35f, 1.57f) + curveToRelative(0.1f, 3.11f, -2.48f, 7.58f, -5.22f, 9.06f) + curveToRelative(-0.67f, 0.36f, -1.46f, 0.12f, -2.03f, -0.4f) + lineToRelative(-0.34f, -0.3f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.14f, -1.7f) + lineToRelative(0.8f, -1.02f) + arcToRelative(1.2f, 1.2f, 0.0f, false, true, 1.22f, -0.42f) + lineToRelative(1.3f, 0.32f) + arcToRelative(3.78f, 3.78f, 0.0f, false, false, 1.77f, -3.08f) + lineToRelative(-0.92f, -0.96f) + arcToRelative(1.2f, 1.2f, 0.0f, false, true, -0.25f, -1.28f) + close() + } + } + return _peopleCall!! + } + +private var _peopleCall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleCheckmark.kt new file mode 100644 index 00000000..37bf2145 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleCheckmark.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PeopleCheckmark: ImageVector + get() { + if (_peopleCheckmark != null) { + return _peopleCheckmark!! + } + _peopleCheckmark = fluentIcon(name = "Regular.PeopleCheckmark") { + fluentPath { + moveTo(5.5f, 7.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) + close() + moveTo(8.0f, 3.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) + close() + moveTo(15.5f, 8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + moveTo(17.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + moveTo(4.25f, 13.0f) + curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) + verticalLineToRelative(0.28f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, 0.01f, 0.2f) + curveToRelative(0.02f, 0.14f, 0.04f, 0.32f, 0.1f, 0.53f) + curveToRelative(0.09f, 0.42f, 0.29f, 0.98f, 0.68f, 1.55f) + curveTo(3.61f, 18.97f, 5.17f, 20.0f, 8.0f, 20.0f) + curveToRelative(1.37f, 0.0f, 2.44f, -0.24f, 3.28f, -0.62f) + arcToRelative(6.48f, 6.48f, 0.0f, false, true, -0.27f, -1.55f) + curveToRelative(-0.65f, 0.38f, -1.6f, 0.67f, -3.01f, 0.67f) + curveToRelative(-2.42f, 0.0f, -3.49f, -0.85f, -3.98f, -1.56f) + arcToRelative(2.99f, 2.99f, 0.0f, false, true, -0.52f, -1.43f) + verticalLineToRelative(-0.26f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.48f) + curveToRelative(0.25f, -0.48f, 0.56f, -0.92f, 0.91f, -1.32f) + arcToRelative(2.24f, 2.24f, 0.0f, false, false, -0.89f, -0.18f) + horizontalLineToRelative(-7.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-3.65f, 3.64f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _peopleCheckmark!! + } + +private var _peopleCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleCommunity.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleCommunity.kt new file mode 100644 index 00000000..14a0249c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleCommunity.kt @@ -0,0 +1,96 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PeopleCommunity: ImageVector + get() { + if (_peopleCommunity != null) { + return _peopleCommunity!! + } + _peopleCommunity = fluentIcon(name = "Regular.PeopleCommunity") { + fluentPath { + moveTo(7.5f, 3.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(4.5f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.0f) + close() + moveTo(3.77f, 9.0f) + curveTo(2.79f, 9.0f, 2.0f, 9.8f, 2.0f, 10.77f) + verticalLineToRelative(0.36f) + curveToRelative(0.0f, 0.2f, 0.0f, 1.4f, 0.7f, 2.57f) + arcToRelative(4.6f, 4.6f, 0.0f, false, false, 2.98f, 2.1f) + curveToRelative(0.2f, -0.55f, 0.58f, -1.02f, 1.06f, -1.34f) + curveToRelative(-1.6f, -0.17f, -2.36f, -0.88f, -2.75f, -1.53f) + arcToRelative(3.65f, 3.65f, 0.0f, false, true, -0.49f, -1.8f) + verticalLineToRelative(-0.36f) + curveToRelative(0.0f, -0.15f, 0.12f, -0.27f, 0.27f, -0.27f) + horizontalLineToRelative(4.26f) + curveToRelative(0.07f, -0.54f, 0.24f, -1.05f, 0.5f, -1.5f) + lineTo(3.78f, 9.0f) + close() + moveTo(15.47f, 9.0f) + curveToRelative(0.26f, 0.45f, 0.43f, 0.96f, 0.5f, 1.5f) + horizontalLineToRelative(4.26f) + curveToRelative(0.15f, 0.0f, 0.27f, 0.12f, 0.27f, 0.27f) + verticalLineToRelative(0.36f) + curveToRelative(0.0f, 0.14f, 0.0f, 1.0f, -0.49f, 1.8f) + curveToRelative(-0.39f, 0.65f, -1.14f, 1.36f, -2.75f, 1.53f) + curveToRelative(0.48f, 0.32f, 0.86f, 0.79f, 1.06f, 1.34f) + arcToRelative(4.6f, 4.6f, 0.0f, false, false, 2.98f, -2.1f) + curveToRelative(0.7f, -1.16f, 0.7f, -2.36f, 0.7f, -2.57f) + verticalLineToRelative(-0.36f) + curveTo(22.0f, 9.79f, 21.2f, 9.0f, 20.23f, 9.0f) + horizontalLineToRelative(-4.77f) + close() + moveTo(15.0f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + moveTo(16.5f, 2.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + moveTo(12.0f, 9.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(9.0f, 11.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.0f) + close() + moveTo(6.5f, 16.77f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(7.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.36f) + curveToRelative(0.0f, 0.2f, 0.0f, 1.4f, -0.7f, 2.57f) + curveToRelative(-0.74f, 1.24f, -2.19f, 2.3f, -4.8f, 2.3f) + reflectiveCurveToRelative(-4.06f, -1.06f, -4.8f, -2.3f) + arcToRelative(5.15f, 5.15f, 0.0f, false, true, -0.7f, -2.57f) + verticalLineToRelative(-0.36f) + close() + moveTo(8.27f, 16.5f) + arcToRelative(0.27f, 0.27f, 0.0f, false, false, -0.27f, 0.27f) + verticalLineToRelative(0.36f) + curveToRelative(0.0f, 0.14f, 0.0f, 1.0f, 0.49f, 1.8f) + curveToRelative(0.44f, 0.74f, 1.37f, 1.57f, 3.51f, 1.57f) + curveToRelative(2.14f, 0.0f, 3.07f, -0.83f, 3.51f, -1.57f) + curveToRelative(0.49f, -0.8f, 0.49f, -1.66f, 0.49f, -1.8f) + verticalLineToRelative(-0.36f) + arcToRelative(0.27f, 0.27f, 0.0f, false, false, -0.27f, -0.27f) + lineTo(8.27f, 16.5f) + close() + } + } + return _peopleCommunity!! + } + +private var _peopleCommunity: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleCommunityAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleCommunityAdd.kt new file mode 100644 index 00000000..1e196967 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleCommunityAdd.kt @@ -0,0 +1,105 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PeopleCommunityAdd: ImageVector + get() { + if (_peopleCommunityAdd != null) { + return _peopleCommunityAdd!! + } + _peopleCommunityAdd = fluentIcon(name = "Regular.PeopleCommunityAdd") { + fluentPath { + moveTo(6.0f, 4.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + moveTo(7.5f, 1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + moveTo(2.0f, 9.77f) + curveTo(2.0f, 8.79f, 2.8f, 8.0f, 3.77f, 8.0f) + horizontalLineToRelative(4.77f) + curveToRelative(-0.27f, 0.45f, -0.44f, 0.96f, -0.5f, 1.5f) + lineTo(3.76f, 9.5f) + arcToRelative(0.27f, 0.27f, 0.0f, false, false, -0.27f, 0.27f) + verticalLineToRelative(0.36f) + curveToRelative(0.0f, 0.14f, 0.0f, 1.0f, 0.49f, 1.8f) + curveToRelative(0.39f, 0.65f, 1.14f, 1.36f, 2.75f, 1.53f) + curveToRelative(-0.48f, 0.32f, -0.86f, 0.79f, -1.06f, 1.34f) + arcToRelative(4.6f, 4.6f, 0.0f, false, true, -2.98f, -2.1f) + arcToRelative(5.15f, 5.15f, 0.0f, false, true, -0.7f, -2.57f) + verticalLineToRelative(-0.36f) + close() + moveTo(15.97f, 9.5f) + arcToRelative(3.97f, 3.97f, 0.0f, false, false, -0.5f, -1.5f) + horizontalLineToRelative(4.76f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.36f) + curveToRelative(0.0f, 0.19f, 0.0f, 1.18f, -0.52f, 2.23f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.29f, -0.78f) + curveToRelative(0.3f, -0.69f, 0.31f, -1.33f, 0.31f, -1.46f) + verticalLineToRelative(-0.35f) + arcToRelative(0.27f, 0.27f, 0.0f, false, false, -0.27f, -0.27f) + horizontalLineToRelative(-4.26f) + close() + moveTo(14.42f, 11.78f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, -4.84f, -3.55f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 4.84f, 3.55f) + close() + moveTo(12.02f, 14.0f) + lineTo(8.27f, 14.0f) + curveToRelative(-0.98f, 0.0f, -1.77f, 0.8f, -1.77f, 1.77f) + verticalLineToRelative(0.36f) + curveToRelative(0.0f, 0.2f, 0.0f, 1.4f, 0.7f, 2.57f) + curveTo(7.94f, 19.94f, 9.4f, 21.0f, 12.0f, 21.0f) + horizontalLineToRelative(0.02f) + curveToRelative(-0.3f, -0.47f, -0.54f, -0.99f, -0.72f, -1.53f) + curveToRelative(-1.65f, -0.16f, -2.42f, -0.88f, -2.81f, -1.54f) + arcToRelative(3.65f, 3.65f, 0.0f, false, true, -0.49f, -1.8f) + verticalLineToRelative(-0.36f) + curveToRelative(0.0f, -0.15f, 0.12f, -0.27f, 0.27f, -0.27f) + horizontalLineToRelative(3.04f) + curveToRelative(0.18f, -0.53f, 0.42f, -1.04f, 0.71f, -1.5f) + close() + moveTo(16.5f, 2.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(13.5f, 4.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.0f) + close() + moveTo(10.5f, 10.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(18.0f, 20.5f) + lineTo(18.0f, 18.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + lineTo(18.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -1.0f, 0.0f) + lineTo(17.0f, 17.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + lineTo(17.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) + close() + } + } + return _peopleCommunityAdd!! + } + +private var _peopleCommunityAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleError.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleError.kt new file mode 100644 index 00000000..676c787f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleError.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PeopleError: ImageVector + get() { + if (_peopleError != null) { + return _peopleError!! + } + _peopleError = fluentIcon(name = "Regular.PeopleError") { + fluentPath { + moveTo(5.5f, 7.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) + close() + moveTo(8.0f, 3.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) + close() + moveTo(15.5f, 8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + moveTo(17.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + moveTo(4.25f, 13.0f) + curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) + verticalLineToRelative(0.28f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, 0.01f, 0.2f) + curveToRelative(0.02f, 0.14f, 0.04f, 0.32f, 0.1f, 0.53f) + curveToRelative(0.09f, 0.42f, 0.29f, 0.98f, 0.68f, 1.55f) + curveTo(3.61f, 18.97f, 5.17f, 20.0f, 8.0f, 20.0f) + curveToRelative(1.37f, 0.0f, 2.44f, -0.24f, 3.28f, -0.62f) + arcToRelative(6.48f, 6.48f, 0.0f, false, true, -0.27f, -1.55f) + curveToRelative(-0.65f, 0.38f, -1.6f, 0.67f, -3.01f, 0.67f) + curveToRelative(-2.42f, 0.0f, -3.49f, -0.85f, -3.98f, -1.56f) + arcToRelative(2.99f, 2.99f, 0.0f, false, true, -0.52f, -1.43f) + verticalLineToRelative(-0.26f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.48f) + curveToRelative(0.25f, -0.48f, 0.56f, -0.92f, 0.91f, -1.32f) + arcToRelative(2.24f, 2.24f, 0.0f, false, false, -0.89f, -0.18f) + horizontalLineToRelative(-7.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(17.5f, 14.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(17.5f, 21.13f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.25f) + close() + } + } + return _peopleError!! + } + +private var _peopleError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleList.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleList.kt new file mode 100644 index 00000000..7cde65e3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleList.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PeopleList: ImageVector + get() { + if (_peopleList != null) { + return _peopleList!! + } + _peopleList = fluentIcon(name = "Regular.PeopleList") { + fluentPath { + moveTo(5.5f, 8.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) + close() + moveTo(8.0f, 4.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) + close() + moveTo(15.5f, 9.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + moveTo(17.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + moveTo(4.25f, 14.0f) + curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) + verticalLineToRelative(0.28f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, 0.01f, 0.2f) + curveToRelative(0.02f, 0.14f, 0.04f, 0.32f, 0.1f, 0.53f) + curveToRelative(0.09f, 0.42f, 0.29f, 0.98f, 0.68f, 1.55f) + curveTo(3.61f, 19.97f, 5.17f, 21.0f, 8.0f, 21.0f) + curveToRelative(1.82f, 0.0f, 3.11f, -0.42f, 4.02f, -1.04f) + curveToRelative(0.07f, -0.37f, 0.25f, -0.7f, 0.5f, -0.96f) + arcToRelative(1.74f, 1.74f, 0.0f, false, true, -0.51f, -1.1f) + lineToRelative(-0.03f, 0.04f) + curveToRelative(-0.5f, 0.71f, -1.56f, 1.56f, -3.98f, 1.56f) + reflectiveCurveToRelative(-3.49f, -0.85f, -3.98f, -1.56f) + arcToRelative(2.99f, 2.99f, 0.0f, false, true, -0.52f, -1.43f) + verticalLineToRelative(-0.26f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.5f) + curveToRelative(0.1f, 0.0f, 0.2f, 0.02f, 0.28f, 0.05f) + arcToRelative(1.76f, 1.76f, 0.0f, false, true, 0.4f, -1.45f) + curveToRelative(-0.22f, -0.06f, -0.44f, -0.1f, -0.68f, -0.1f) + horizontalLineToRelative(-7.5f) + close() + moveTo(12.53f, 16.5f) + lineTo(12.5f, 16.53f) + verticalLineToRelative(-0.06f) + lineToRelative(0.03f, 0.03f) + close() + moveTo(13.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-7.5f) + close() + moveTo(13.75f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-7.5f) + close() + moveTo(13.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-7.5f) + close() + } + } + return _peopleList!! + } + +private var _peopleList: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleLock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleLock.kt new file mode 100644 index 00000000..a6e2a19a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleLock.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PeopleLock: ImageVector + get() { + if (_peopleLock != null) { + return _peopleLock!! + } + _peopleLock = fluentIcon(name = "Regular.PeopleLock") { + fluentPath { + moveTo(8.0f, 4.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, -5.0f) + close() + moveTo(4.0f, 7.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, 8.0f, 0.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -8.0f, 0.0f) + close() + moveTo(17.0f, 6.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(14.0f, 8.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 4.45f, 2.63f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -2.44f, 0.2f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 14.0f, 8.0f) + close() + moveTo(13.7f, 14.13f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 11.75f, 13.0f) + horizontalLineToRelative(-7.5f) + curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) + verticalLineToRelative(0.28f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, 0.01f, 0.2f) + curveToRelative(0.02f, 0.14f, 0.04f, 0.32f, 0.1f, 0.53f) + curveToRelative(0.09f, 0.42f, 0.29f, 0.98f, 0.68f, 1.55f) + curveTo(3.61f, 18.97f, 5.17f, 20.0f, 8.0f, 20.0f) + curveToRelative(1.8f, 0.0f, 3.1f, -0.42f, 4.0f, -1.02f) + lineTo(12.0f, 16.9f) + lineToRelative(-0.02f, 0.03f) + curveToRelative(-0.5f, 0.71f, -1.56f, 1.56f, -3.98f, 1.56f) + reflectiveCurveToRelative(-3.49f, -0.85f, -3.98f, -1.56f) + arcToRelative(2.99f, 2.99f, 0.0f, false, true, -0.52f, -1.43f) + verticalLineToRelative(-0.26f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.5f) + curveToRelative(0.34f, 0.0f, 0.63f, 0.23f, 0.72f, 0.54f) + curveToRelative(0.3f, -0.42f, 0.73f, -0.74f, 1.23f, -0.91f) + close() + moveTo(14.5f, 15.0f) + horizontalLineToRelative(0.5f) + verticalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(0.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-6.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + close() + moveTo(16.5f, 14.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + close() + moveTo(18.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + } + } + return _peopleLock!! + } + +private var _peopleLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleMoney.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleMoney.kt new file mode 100644 index 00000000..ef1b589c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleMoney.kt @@ -0,0 +1,94 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PeopleMoney: ImageVector + get() { + if (_peopleMoney != null) { + return _peopleMoney!! + } + _peopleMoney = fluentIcon(name = "Regular.PeopleMoney") { + fluentPath { + moveTo(5.5f, 7.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) + close() + moveTo(8.0f, 3.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) + close() + moveTo(15.5f, 8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + moveTo(17.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + moveTo(11.75f, 13.0f) + curveToRelative(0.3f, 0.0f, 0.59f, 0.06f, 0.85f, 0.17f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -1.4f, 1.33f) + lineTo(4.26f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.34f) + lineToRelative(0.06f, 0.33f) + curveToRelative(0.07f, 0.28f, 0.2f, 0.65f, 0.46f, 1.02f) + curveToRelative(0.5f, 0.71f, 1.56f, 1.56f, 3.98f, 1.56f) + curveToRelative(1.4f, 0.0f, 2.36f, -0.29f, 3.0f, -0.67f) + verticalLineToRelative(1.67f) + curveToRelative(-0.8f, 0.3f, -1.78f, 0.5f, -3.0f, 0.5f) + curveToRelative(-2.83f, 0.0f, -4.39f, -1.03f, -5.2f, -2.2f) + arcToRelative(4.49f, 4.49f, 0.0f, false, true, -0.8f, -2.27f) + verticalLineToRelative(-0.28f) + curveTo(2.0f, 14.01f, 3.0f, 13.0f, 4.25f, 13.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(12.0f, 15.5f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(8.0f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + verticalLineToRelative(-4.0f) + close() + moveTo(13.0f, 16.0f) + verticalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + close() + moveTo(22.0f, 17.0f) + verticalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + horizontalLineToRelative(-1.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + close() + moveTo(20.0f, 20.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + verticalLineToRelative(-1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + close() + moveTo(13.0f, 18.0f) + verticalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + close() + moveTo(17.5f, 19.25f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, -3.5f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, 3.5f) + close() + } + } + return _peopleMoney!! + } + +private var _peopleMoney: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleProhibited.kt new file mode 100644 index 00000000..4827e2df --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleProhibited.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PeopleProhibited: ImageVector + get() { + if (_peopleProhibited != null) { + return _peopleProhibited!! + } + _peopleProhibited = fluentIcon(name = "Regular.PeopleProhibited") { + fluentPath { + moveTo(5.5f, 7.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) + close() + moveTo(8.0f, 3.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) + close() + moveTo(15.5f, 8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + moveTo(17.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + moveTo(4.25f, 13.0f) + curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) + verticalLineToRelative(0.28f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, 0.01f, 0.2f) + curveToRelative(0.02f, 0.14f, 0.04f, 0.32f, 0.1f, 0.53f) + curveToRelative(0.09f, 0.42f, 0.29f, 0.98f, 0.68f, 1.55f) + curveTo(3.61f, 18.97f, 5.17f, 20.0f, 8.0f, 20.0f) + curveToRelative(1.37f, 0.0f, 2.44f, -0.24f, 3.28f, -0.62f) + arcToRelative(6.48f, 6.48f, 0.0f, false, true, -0.27f, -1.55f) + curveToRelative(-0.65f, 0.38f, -1.6f, 0.67f, -3.01f, 0.67f) + curveToRelative(-2.42f, 0.0f, -3.49f, -0.85f, -3.98f, -1.56f) + arcToRelative(2.99f, 2.99f, 0.0f, false, true, -0.52f, -1.43f) + verticalLineToRelative(-0.26f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.48f) + curveToRelative(0.25f, -0.48f, 0.56f, -0.92f, 0.91f, -1.32f) + arcToRelative(2.24f, 2.24f, 0.0f, false, false, -0.89f, -0.18f) + horizontalLineToRelative(-7.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(13.5f, 17.5f) + curveToRelative(0.0f, 0.83f, 0.26f, 1.6f, 0.7f, 2.25f) + lineToRelative(5.55f, -5.56f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) + close() + moveTo(17.5f, 21.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) + lineToRelative(-5.55f, 5.56f) + curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) + close() + } + } + return _peopleProhibited!! + } + +private var _peopleProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleQueue.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleQueue.kt new file mode 100644 index 00000000..2cd0ea52 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleQueue.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PeopleQueue: ImageVector + get() { + if (_peopleQueue != null) { + return _peopleQueue!! + } + _peopleQueue = fluentIcon(name = "Regular.PeopleQueue") { + fluentPath { + moveTo(7.5f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) + close() + moveTo(7.5f, 7.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) + close() + moveTo(3.0f, 11.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(5.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.75f) + arcToRelative(4.5f, 4.5f, 0.0f, true, true, -9.0f, 0.0f) + verticalLineToRelative(-4.75f) + close() + moveTo(4.75f, 11.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(4.75f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 6.0f, 0.0f) + verticalLineToRelative(-4.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-5.5f) + close() + moveTo(10.53f, 8.61f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -5.23f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.75f, 1.3f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 2.63f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -0.75f, 1.3f) + close() + moveTo(10.86f, 20.85f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 5.64f, -4.35f) + verticalLineToRelative(-4.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-2.38f) + curveToRelative(0.34f, 0.42f, 0.57f, 0.93f, 0.62f, 1.5f) + horizontalLineToRelative(1.76f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(4.75f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.89f, 3.0f) + curveToRelative(-0.34f, 0.52f, -0.76f, 0.98f, -1.25f, 1.35f) + close() + moveTo(15.03f, 8.61f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -5.23f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.75f, 1.3f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 2.63f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -0.75f, 1.3f) + close() + moveTo(15.36f, 20.85f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 21.0f, 16.5f) + verticalLineToRelative(-4.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-2.38f) + curveToRelative(0.34f, 0.42f, 0.57f, 0.93f, 0.62f, 1.5f) + horizontalLineToRelative(1.76f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(4.75f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.89f, 3.0f) + curveToRelative(-0.34f, 0.52f, -0.76f, 0.98f, -1.25f, 1.35f) + close() + } + } + return _peopleQueue!! + } + +private var _peopleQueue: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleSearch.kt new file mode 100644 index 00000000..05cb8802 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleSearch.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PeopleSearch: ImageVector + get() { + if (_peopleSearch != null) { + return _peopleSearch!! + } + _peopleSearch = fluentIcon(name = "Regular.PeopleSearch") { + fluentPath { + moveTo(11.9f, 14.0f) + horizontalLineToRelative(7.85f) + curveTo(21.0f, 14.0f, 22.0f, 15.0f, 22.0f, 16.25f) + verticalLineToRelative(0.9f) + curveToRelative(0.0f, 1.1f, -0.47f, 2.14f, -1.3f, 2.85f) + curveToRelative(-1.57f, 1.34f, -3.81f, 2.0f, -6.7f, 2.0f) + horizontalLineToRelative(-0.18f) + curveToRelative(0.23f, -0.47f, 0.24f, -1.02f, 0.03f, -1.5f) + lineTo(14.0f, 20.5f) + curveToRelative(2.56f, 0.0f, 4.46f, -0.56f, 5.72f, -1.64f) + curveToRelative(0.5f, -0.43f, 0.78f, -1.05f, 0.78f, -1.7f) + verticalLineToRelative(-0.91f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-7.77f) + arcToRelative(5.56f, 5.56f, 0.0f, false, false, -0.07f, -1.5f) + close() + moveTo(6.5f, 10.5f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 3.46f, 7.38f) + lineToRelative(2.82f, 2.81f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 1.14f) + lineToRelative(-0.09f, -0.08f) + lineToRelative(-2.9f, -2.9f) + arcTo(4.5f, 4.5f, 0.0f, true, true, 6.5f, 10.5f) + close() + moveTo(6.5f, 12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + moveTo(14.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(14.0f, 3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + } + } + return _peopleSearch!! + } + +private var _peopleSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleSettings.kt new file mode 100644 index 00000000..4c7c398d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleSettings.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PeopleSettings: ImageVector + get() { + if (_peopleSettings != null) { + return _peopleSettings!! + } + _peopleSettings = fluentIcon(name = "Regular.PeopleSettings") { + fluentPath { + moveTo(5.5f, 7.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) + close() + moveTo(8.0f, 3.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) + close() + moveTo(15.5f, 8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + moveTo(17.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + moveTo(4.25f, 13.0f) + curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) + verticalLineToRelative(0.28f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, 0.01f, 0.2f) + curveToRelative(0.02f, 0.14f, 0.04f, 0.32f, 0.1f, 0.53f) + curveToRelative(0.09f, 0.42f, 0.29f, 0.98f, 0.68f, 1.55f) + curveTo(3.61f, 18.97f, 5.17f, 20.0f, 8.0f, 20.0f) + curveToRelative(1.37f, 0.0f, 2.44f, -0.24f, 3.28f, -0.62f) + arcToRelative(6.48f, 6.48f, 0.0f, false, true, -0.27f, -1.55f) + curveToRelative(-0.65f, 0.38f, -1.6f, 0.67f, -3.01f, 0.67f) + curveToRelative(-2.42f, 0.0f, -3.49f, -0.85f, -3.98f, -1.56f) + arcToRelative(2.99f, 2.99f, 0.0f, false, true, -0.52f, -1.43f) + verticalLineToRelative(-0.26f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.48f) + curveToRelative(0.25f, -0.48f, 0.56f, -0.92f, 0.91f, -1.32f) + arcToRelative(2.24f, 2.24f, 0.0f, false, false, -0.89f, -0.18f) + horizontalLineToRelative(-7.5f) + close() + moveTo(14.28f, 13.98f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.59f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) + lineToRelative(0.55f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) + lineToRelative(-0.19f, 0.64f) + curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) + lineToRelative(0.49f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.9f) + lineToRelative(-0.2f, -0.7f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) + lineToRelative(0.59f, -0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, -0.01f, -1.8f) + lineToRelative(-0.54f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.19f, -0.63f) + curveToRelative(-0.44f, -0.39f, -0.94f, -0.7f, -1.49f, -0.93f) + lineToRelative(-0.49f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.91f) + lineToRelative(0.2f, 0.69f) + close() + moveTo(17.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) + close() + } + } + return _peopleSettings!! + } + +private var _peopleSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleStar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleStar.kt new file mode 100644 index 00000000..00ef3815 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleStar.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PeopleStar: ImageVector + get() { + if (_peopleStar != null) { + return _peopleStar!! + } + _peopleStar = fluentIcon(name = "Regular.PeopleStar") { + fluentPath { + moveTo(5.5f, 7.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) + close() + moveTo(8.0f, 3.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) + close() + moveTo(15.5f, 8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + moveTo(17.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + moveTo(4.25f, 13.0f) + curveTo(3.01f, 13.0f, 2.0f, 14.0f, 2.0f, 15.25f) + verticalLineToRelative(0.28f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, 0.01f, 0.2f) + curveToRelative(0.02f, 0.14f, 0.04f, 0.32f, 0.1f, 0.53f) + curveToRelative(0.09f, 0.42f, 0.29f, 0.98f, 0.68f, 1.55f) + curveTo(3.61f, 18.97f, 5.17f, 20.0f, 8.0f, 20.0f) + curveToRelative(1.37f, 0.0f, 2.44f, -0.24f, 3.28f, -0.62f) + arcToRelative(6.48f, 6.48f, 0.0f, false, true, -0.27f, -1.55f) + curveToRelative(-0.65f, 0.38f, -1.6f, 0.67f, -3.01f, 0.67f) + curveToRelative(-2.42f, 0.0f, -3.49f, -0.85f, -3.98f, -1.56f) + arcToRelative(2.99f, 2.99f, 0.0f, false, true, -0.52f, -1.43f) + verticalLineToRelative(-0.26f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.48f) + curveToRelative(0.25f, -0.48f, 0.56f, -0.92f, 0.91f, -1.32f) + arcToRelative(2.24f, 2.24f, 0.0f, false, false, -0.89f, -0.18f) + horizontalLineToRelative(-7.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(18.06f, 14.42f) + arcToRelative(0.58f, 0.58f, 0.0f, false, false, -1.12f, 0.0f) + lineToRelative(-0.55f, 1.79f) + horizontalLineToRelative(-1.8f) + curveToRelative(-0.57f, 0.0f, -0.8f, 0.75f, -0.35f, 1.1f) + lineToRelative(1.46f, 1.1f) + lineToRelative(-0.56f, 1.79f) + curveToRelative(-0.17f, 0.56f, 0.44f, 1.03f, 0.9f, 0.68f) + lineToRelative(1.46f, -1.1f) + lineToRelative(1.46f, 1.1f) + curveToRelative(0.46f, 0.35f, 1.07f, -0.12f, 0.9f, -0.68f) + lineToRelative(-0.56f, -1.79f) + lineToRelative(1.46f, -1.1f) + curveToRelative(0.46f, -0.35f, 0.22f, -1.1f, -0.35f, -1.1f) + horizontalLineToRelative(-1.8f) + lineToRelative(-0.55f, -1.79f) + close() + } + } + return _peopleStar!! + } + +private var _peopleStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleSwap.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleSwap.kt new file mode 100644 index 00000000..c701ecaf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleSwap.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PeopleSwap: ImageVector + get() { + if (_peopleSwap != null) { + return _peopleSwap!! + } + _peopleSwap = fluentIcon(name = "Regular.PeopleSwap") { + fluentPath { + moveTo(8.0f, 5.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, -5.0f) + close() + moveTo(4.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, 8.0f, 0.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -8.0f, 0.0f) + close() + moveTo(17.0f, 7.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(14.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -6.0f, 0.0f) + close() + moveTo(12.78f, 14.25f) + curveToRelative(-0.31f, -0.16f, -0.66f, -0.25f, -1.03f, -0.25f) + horizontalLineToRelative(-7.5f) + curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) + verticalLineToRelative(0.28f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, 0.01f, 0.2f) + curveToRelative(0.02f, 0.14f, 0.04f, 0.32f, 0.1f, 0.53f) + curveToRelative(0.09f, 0.42f, 0.29f, 0.98f, 0.68f, 1.55f) + curveTo(3.61f, 19.97f, 5.17f, 21.0f, 8.0f, 21.0f) + curveToRelative(1.6f, 0.0f, 2.8f, -0.33f, 3.7f, -0.83f) + lineToRelative(-1.13f, -1.12f) + curveToRelative(-0.61f, 0.27f, -1.45f, 0.45f, -2.57f, 0.45f) + curveToRelative(-2.42f, 0.0f, -3.49f, -0.85f, -3.98f, -1.56f) + arcToRelative(2.99f, 2.99f, 0.0f, false, true, -0.52f, -1.43f) + verticalLineToRelative(-0.26f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.28f) + lineToRelative(1.25f, -1.25f) + close() + moveTo(20.28f, 14.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineTo(20.44f, 17.0f) + horizontalLineToRelative(-6.88f) + lineToRelative(1.22f, -1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineToRelative(-2.5f, 2.5f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineToRelative(-1.22f, -1.22f) + horizontalLineToRelative(6.88f) + lineToRelative(-1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineToRelative(2.5f, -2.5f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-2.5f, -2.5f) + close() + } + } + return _peopleSwap!! + } + +private var _peopleSwap: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleTeam.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleTeam.kt new file mode 100644 index 00000000..377231d7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleTeam.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PeopleTeam: ImageVector + get() { + if (_peopleTeam != null) { + return _peopleTeam!! + } + _peopleTeam = fluentIcon(name = "Regular.PeopleTeam") { + fluentPath { + moveTo(14.75f, 10.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.75f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -9.0f, 0.0f) + verticalLineToRelative(-4.75f) + curveToRelative(0.0f, -0.97f, 0.79f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(5.5f) + close() + moveTo(14.75f, 11.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(4.75f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 6.0f, 0.0f) + verticalLineToRelative(-4.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(3.75f, 10.0f) + horizontalLineToRelative(3.38f) + curveToRelative(-0.34f, 0.41f, -0.57f, 0.93f, -0.62f, 1.5f) + lineTo(3.75f, 11.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + lineTo(3.5f, 15.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.08f, 2.43f) + curveToRelative(0.09f, 0.5f, 0.24f, 0.99f, 0.45f, 1.43f) + arcTo(4.0f, 4.0f, 0.0f, false, true, 2.0f, 15.0f) + verticalLineToRelative(-3.24f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + close() + moveTo(16.87f, 10.0f) + horizontalLineToRelative(3.38f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(22.0f, 15.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -5.03f, 3.87f) + curveToRelative(0.21f, -0.45f, 0.37f, -0.93f, 0.46f, -1.44f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 20.5f, 15.0f) + verticalLineToRelative(-3.25f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-2.76f) + arcToRelative(2.74f, 2.74f, 0.0f, false, false, -0.62f, -1.5f) + close() + moveTo(12.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) + close() + moveTo(18.5f, 4.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + moveTo(5.5f, 4.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + moveTo(12.0f, 4.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(18.5f, 5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(5.5f, 5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + } + } + return _peopleTeam!! + } + +private var _peopleTeam: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleTeamAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleTeamAdd.kt new file mode 100644 index 00000000..99f5fb32 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleTeamAdd.kt @@ -0,0 +1,113 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PeopleTeamAdd: ImageVector + get() { + if (_peopleTeamAdd != null) { + return _peopleTeamAdd!! + } + _peopleTeamAdd = fluentIcon(name = "Regular.PeopleTeamAdd") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(17.5f, 14.0f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) + lineToRelative(-0.01f, 0.1f) + lineTo(17.0f, 17.0f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(0.18f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) + lineToRelative(0.1f, 0.01f) + lineTo(17.0f, 18.0f) + verticalLineToRelative(2.6f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + horizontalLineToRelative(0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) + lineToRelative(0.01f, -0.1f) + lineTo(18.0f, 18.0f) + horizontalLineToRelative(2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + verticalLineToRelative(-0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) + lineToRelative(-0.1f, -0.01f) + lineTo(18.0f, 17.0f) + verticalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) + horizontalLineToRelative(-0.09f) + close() + moveTo(14.25f, 10.0f) + curveToRelative(0.84f, 0.0f, 1.57f, 0.45f, 1.96f, 1.13f) + curveToRelative(-0.54f, 0.1f, -1.05f, 0.28f, -1.52f, 0.5f) + arcToRelative(0.74f, 0.74f, 0.0f, false, false, -0.44f, -0.13f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.25f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 2.29f, 2.91f) + curveToRelative(0.17f, 0.57f, 0.42f, 1.1f, 0.73f, 1.6f) + lineTo(12.0f, 21.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -4.5f, -4.5f) + verticalLineToRelative(-4.25f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(4.5f) + close() + moveTo(7.41f, 10.0f) + curveToRelative(-0.4f, 0.41f, -0.69f, 0.93f, -0.82f, 1.5f) + lineTo(4.25f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(3.5f, 15.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.08f, 2.43f) + curveToRelative(0.09f, 0.5f, 0.24f, 0.99f, 0.45f, 1.43f) + arcTo(4.0f, 4.0f, 0.0f, false, true, 2.0f, 15.0f) + verticalLineToRelative(-2.74f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineToRelative(0.15f, -0.01f) + horizontalLineToRelative(3.16f) + close() + moveTo(19.75f, 10.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(0.56f) + arcTo(6.48f, 6.48f, 0.0f, false, false, 17.5f, 11.0f) + horizontalLineToRelative(-0.25f) + arcToRelative(3.21f, 3.21f, 0.0f, false, false, -0.65f, -1.0f) + horizontalLineToRelative(3.15f) + close() + moveTo(18.5f, 4.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + moveTo(12.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) + close() + moveTo(5.5f, 4.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + moveTo(18.5f, 5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(12.0f, 4.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(5.5f, 5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + } + } + return _peopleTeamAdd!! + } + +private var _peopleTeamAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleTeamDelete.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleTeamDelete.kt new file mode 100644 index 00000000..5a648b4c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleTeamDelete.kt @@ -0,0 +1,121 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PeopleTeamDelete: ImageVector + get() { + if (_peopleTeamDelete != null) { + return _peopleTeamDelete!! + } + _peopleTeamDelete = fluentIcon(name = "Regular.PeopleTeamDelete") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(14.25f, 10.0f) + curveToRelative(0.84f, 0.0f, 1.57f, 0.45f, 1.96f, 1.13f) + curveToRelative(-0.54f, 0.1f, -1.05f, 0.28f, -1.52f, 0.5f) + arcToRelative(0.74f, 0.74f, 0.0f, false, false, -0.44f, -0.13f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.25f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 2.29f, 2.91f) + curveToRelative(0.17f, 0.57f, 0.42f, 1.1f, 0.73f, 1.6f) + lineTo(12.0f, 21.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -4.5f, -4.5f) + verticalLineToRelative(-4.25f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(4.5f) + close() + moveTo(15.09f, 14.97f) + lineTo(15.02f, 15.02f) + lineTo(14.97f, 15.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.05f, 0.07f) + lineToRelative(1.77f, 1.77f) + lineToRelative(-1.76f, 1.77f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.06f, 0.06f) + lineToRelative(0.07f, 0.06f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) + lineToRelative(0.07f, -0.06f) + lineToRelative(1.77f, -1.76f) + lineToRelative(1.77f, 1.77f) + lineToRelative(0.07f, 0.05f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.57f, 0.0f) + lineToRelative(0.07f, -0.05f) + lineToRelative(0.05f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) + lineToRelative(-0.05f, -0.07f) + lineToRelative(-1.77f, -1.77f) + lineToRelative(1.77f, -1.77f) + lineToRelative(0.06f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) + lineToRelative(-0.06f, -0.07f) + lineToRelative(-0.07f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) + lineToRelative(-0.07f, 0.05f) + lineToRelative(-1.77f, 1.77f) + lineToRelative(-1.77f, -1.77f) + lineToRelative(-0.07f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.05f) + lineToRelative(-0.07f, 0.05f) + close() + moveTo(7.41f, 10.0f) + curveToRelative(-0.4f, 0.41f, -0.69f, 0.93f, -0.82f, 1.5f) + lineTo(4.25f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(3.5f, 15.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.08f, 2.43f) + curveToRelative(0.09f, 0.5f, 0.24f, 0.99f, 0.45f, 1.43f) + arcTo(4.0f, 4.0f, 0.0f, false, true, 2.0f, 15.0f) + verticalLineToRelative(-2.74f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineToRelative(0.15f, -0.01f) + horizontalLineToRelative(3.16f) + close() + moveTo(19.75f, 10.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(0.56f) + arcTo(6.48f, 6.48f, 0.0f, false, false, 17.5f, 11.0f) + horizontalLineToRelative(-0.25f) + arcToRelative(3.21f, 3.21f, 0.0f, false, false, -0.65f, -1.0f) + horizontalLineToRelative(3.15f) + close() + moveTo(18.5f, 4.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + moveTo(12.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) + close() + moveTo(5.5f, 4.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + moveTo(18.5f, 5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(12.0f, 4.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(5.5f, 5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + } + } + return _peopleTeamDelete!! + } + +private var _peopleTeamDelete: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleTeamToolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleTeamToolbox.kt new file mode 100644 index 00000000..b1294339 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PeopleTeamToolbox.kt @@ -0,0 +1,126 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PeopleTeamToolbox: ImageVector + get() { + if (_peopleTeamToolbox != null) { + return _peopleTeamToolbox!! + } + _peopleTeamToolbox = fluentIcon(name = "Regular.PeopleTeamToolbox") { + fluentPath { + moveTo(14.75f, 10.0f) + curveToRelative(0.8f, 0.0f, 1.47f, 0.53f, 1.68f, 1.25f) + horizontalLineToRelative(-0.68f) + curveToRelative(-0.4f, 0.0f, -0.8f, 0.09f, -1.15f, 0.25f) + lineTo(9.25f, 11.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(4.75f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 2.0f, 2.83f) + verticalLineToRelative(1.56f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -3.5f, -4.4f) + verticalLineToRelative(-4.74f) + curveToRelative(0.0f, -0.97f, 0.79f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(5.5f) + close() + moveTo(19.25f, 11.25f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 13.99f) + verticalLineToRelative(-2.24f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.38f) + curveToRelative(0.3f, 0.35f, 0.5f, 0.78f, 0.59f, 1.25f) + horizontalLineToRelative(1.79f) + close() + moveTo(3.75f, 10.0f) + horizontalLineToRelative(3.38f) + curveToRelative(-0.34f, 0.41f, -0.57f, 0.93f, -0.62f, 1.5f) + lineTo(3.75f, 11.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + lineTo(3.5f, 15.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.08f, 2.43f) + curveToRelative(0.09f, 0.5f, 0.24f, 0.99f, 0.45f, 1.43f) + arcTo(4.0f, 4.0f, 0.0f, false, true, 2.0f, 15.0f) + verticalLineToRelative(-3.24f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + close() + moveTo(12.0f, 3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) + close() + moveTo(12.0f, 4.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(18.5f, 4.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + moveTo(18.5f, 5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(5.5f, 4.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + moveTo(5.5f, 5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(14.0f, 15.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + lineTo(12.0f, 18.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(16.0f, 18.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(20.5f, 18.0f) + lineTo(23.0f, 18.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(21.0f, 15.0f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(1.0f) + close() + moveTo(15.5f, 14.0f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(12.0f, 21.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.75f) + lineTo(23.0f, 19.5f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + close() + } + } + return _peopleTeamToolbox!! + } + +private var _peopleTeamToolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonAccounts.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonAccounts.kt new file mode 100644 index 00000000..f6e1bcbe --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonAccounts.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonAccounts: ImageVector + get() { + if (_personAccounts != null) { + return _personAccounts!! + } + _personAccounts = fluentIcon(name = "Regular.PersonAccounts") { + fluentPath { + moveTo(13.0f, 14.05f) + lineTo(13.0f, 14.0f) + lineTo(4.25f, 14.0f) + curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) + verticalLineToRelative(0.58f) + curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) + curveTo(4.47f, 21.1f, 6.85f, 22.0f, 10.0f, 22.0f) + curveToRelative(0.36f, 0.0f, 0.7f, -0.01f, 1.04f, -0.03f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -0.04f, -0.47f) + verticalLineToRelative(-1.03f) + curveToRelative(-0.32f, 0.02f, -0.65f, 0.03f, -1.0f, 0.03f) + curveToRelative(-2.74f, 0.0f, -4.7f, -0.74f, -5.96f, -2.21f) + curveToRelative(-0.34f, -0.4f, -0.54f, -0.93f, -0.54f, -1.46f) + verticalLineToRelative(-0.58f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.96f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 13.0f, 14.05f) + close() + moveTo(10.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(10.0f, 3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + moveTo(14.0f, 15.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(8.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(21.0f, 15.0f) + verticalLineToRelative(-1.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(14.0f, 15.0f) + close() + moveTo(15.5f, 13.75f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + lineTo(19.5f, 15.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-1.25f) + close() + } + } + return _personAccounts!! + } + +private var _personAccounts: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonAdd.kt new file mode 100644 index 00000000..8d19443c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonAdd.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonAdd: ImageVector + get() { + if (_personAdd != null) { + return _personAdd!! + } + _personAdd = fluentIcon(name = "Regular.PersonAdd") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(12.02f, 14.0f) + curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) + lineTo(4.24f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.58f) + curveToRelative(0.0f, 0.53f, 0.2f, 1.05f, 0.54f, 1.46f) + curveTo(5.3f, 19.76f, 7.26f, 20.5f, 10.0f, 20.5f) + curveToRelative(0.6f, 0.0f, 1.16f, -0.03f, 1.68f, -0.1f) + curveToRelative(0.25f, 0.49f, 0.55f, 0.95f, 0.91f, 1.36f) + curveToRelative(-0.8f, 0.16f, -1.66f, 0.24f, -2.59f, 0.24f) + curveToRelative(-3.15f, 0.0f, -5.53f, -0.9f, -7.1f, -2.74f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.9f, -2.43f) + verticalLineToRelative(-0.58f) + curveTo(2.0f, 15.0f, 3.01f, 14.0f, 4.25f, 14.0f) + horizontalLineToRelative(7.77f) + close() + moveTo(17.5f, 14.0f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + lineToRelative(-0.01f, 0.09f) + lineTo(17.0f, 17.0f) + lineTo(14.4f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(0.18f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.37f, 0.4f, 0.4f) + lineToRelative(0.1f, 0.01f) + lineTo(17.0f, 18.0f) + verticalLineToRelative(2.59f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.37f, 0.41f, 0.4f) + lineToRelative(0.09f, 0.01f) + horizontalLineToRelative(0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + lineToRelative(0.01f, -0.09f) + lineTo(18.0f, 18.0f) + horizontalLineToRelative(2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + verticalLineToRelative(-0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) + lineToRelative(-0.1f, -0.01f) + lineTo(18.0f, 17.0f) + verticalLineToRelative(-2.59f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) + lineTo(17.5f, 14.0f) + close() + moveTo(10.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(10.0f, 3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + } + } + return _personAdd!! + } + +private var _personAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonAlert.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonAlert.kt new file mode 100644 index 00000000..970f353c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonAlert.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonAlert: ImageVector + get() { + if (_personAlert != null) { + return _personAlert!! + } + _personAlert = fluentIcon(name = "Regular.PersonAlert") { + fluentPath { + moveTo(17.76f, 14.0f) + curveTo(19.0f, 14.0f, 20.0f, 15.0f, 20.0f, 16.25f) + verticalLineToRelative(0.57f) + curveToRelative(0.0f, 0.9f, -0.31f, 1.76f, -0.9f, 2.44f) + curveTo(17.53f, 21.1f, 15.15f, 22.0f, 12.0f, 22.0f) + horizontalLineToRelative(-0.48f) + curveToRelative(0.12f, -0.01f, 0.37f, -0.03f, 0.62f, -0.14f) + curveToRelative(0.55f, -0.26f, 0.87f, -0.82f, 0.86f, -1.4f) + curveToRelative(2.23f, -0.16f, 3.87f, -0.89f, 4.96f, -2.17f) + curveToRelative(0.35f, -0.41f, 0.54f, -0.93f, 0.54f, -1.47f) + verticalLineToRelative(-0.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.74f, -0.75f) + horizontalLineToRelative(-6.29f) + arcToRelative(4.97f, 4.97f, 0.0f, false, false, -0.39f, -1.5f) + horizontalLineToRelative(6.68f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + moveTo(6.5f, 12.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, 4.0f) + verticalLineToRelative(3.0f) + lineToRelative(-0.95f, 0.8f) + curveToRelative(-0.3f, 0.26f, -0.46f, 0.39f, -0.5f, 0.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.24f, 0.65f) + curveToRelative(0.1f, 0.05f, 0.3f, 0.05f, 0.7f, 0.05f) + horizontalLineToRelative(9.02f) + curveToRelative(0.4f, 0.0f, 0.6f, 0.0f, 0.7f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.25f, -0.66f) + curveToRelative(-0.05f, -0.1f, -0.2f, -0.23f, -0.5f, -0.49f) + lineToRelative(-0.96f, -0.8f) + verticalLineToRelative(-3.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -4.0f, -4.0f) + close() + moveTo(8.0f, 22.0f) + curveToRelative(-0.22f, 0.58f, -0.8f, 1.0f, -1.5f, 1.0f) + curveToRelative(-0.69f, 0.0f, -1.28f, -0.42f, -1.5f, -1.0f) + horizontalLineToRelative(3.0f) + close() + } + } + return _personAlert!! + } + +private var _personAlert: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonArrowBack.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonArrowBack.kt new file mode 100644 index 00000000..40d251bc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonArrowBack.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonArrowBack: ImageVector + get() { + if (_personArrowBack != null) { + return _personArrowBack!! + } + _personArrowBack = fluentIcon(name = "Regular.PersonArrowBack") { + fluentPath { + moveTo(11.31f, 15.5f) + curveToRelative(0.18f, -0.53f, 0.42f, -1.04f, 0.71f, -1.5f) + lineTo(4.25f, 14.0f) + curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) + verticalLineToRelative(0.58f) + curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) + curveTo(4.47f, 21.1f, 6.85f, 22.0f, 10.0f, 22.0f) + curveToRelative(0.93f, 0.0f, 1.8f, -0.08f, 2.6f, -0.24f) + arcToRelative(6.5f, 6.5f, 0.0f, false, true, -0.92f, -1.37f) + curveToRelative(-0.52f, 0.08f, -1.08f, 0.11f, -1.68f, 0.11f) + curveToRelative(-2.74f, 0.0f, -4.7f, -0.75f, -5.96f, -2.21f) + curveToRelative(-0.34f, -0.41f, -0.54f, -0.93f, -0.54f, -1.46f) + verticalLineToRelative(-0.58f) + curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.06f) + close() + moveTo(10.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(10.0f, 3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(16.35f, 15.35f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(1.5f, 1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-0.64f, -0.65f) + horizontalLineToRelative(2.04f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(0.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-0.25f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-2.04f) + lineToRelative(0.64f, -0.65f) + close() + } + } + return _personArrowBack!! + } + +private var _personArrowBack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonArrowLeft.kt new file mode 100644 index 00000000..f37f60eb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonArrowLeft.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonArrowLeft: ImageVector + get() { + if (_personArrowLeft != null) { + return _personArrowLeft!! + } + _personArrowLeft = fluentIcon(name = "Regular.PersonArrowLeft") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(12.02f, 14.0f) + curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) + lineTo(4.24f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.9f) + curveToRelative(0.0f, 0.66f, 0.29f, 1.29f, 0.79f, 1.71f) + curveTo(5.55f, 19.95f, 7.44f, 20.5f, 10.0f, 20.5f) + curveToRelative(0.6f, 0.0f, 1.16f, -0.03f, 1.69f, -0.09f) + curveToRelative(0.25f, 0.5f, 0.56f, 0.96f, 0.93f, 1.38f) + curveToRelative(-0.8f, 0.14f, -1.68f, 0.21f, -2.62f, 0.21f) + curveToRelative(-2.89f, 0.0f, -5.13f, -0.66f, -6.7f, -2.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 2.0f, 17.16f) + verticalLineToRelative(-0.91f) + curveTo(2.0f, 15.01f, 3.01f, 14.0f, 4.25f, 14.0f) + horizontalLineToRelative(7.77f) + close() + moveTo(16.72f, 14.59f) + lineTo(16.65f, 14.65f) + lineTo(14.13f, 17.16f) + lineTo(14.09f, 17.21f) + lineTo(14.06f, 17.27f) + lineTo(14.03f, 17.35f) + lineTo(14.02f, 17.39f) + lineTo(14.0f, 17.48f) + verticalLineToRelative(0.09f) + lineToRelative(0.03f, 0.08f) + lineToRelative(0.03f, 0.08f) + lineToRelative(0.02f, 0.04f) + lineToRelative(0.05f, 0.07f) + lineToRelative(2.52f, 2.51f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.77f, -0.63f) + lineToRelative(-0.06f, -0.07f) + lineTo(15.7f, 18.0f) + horizontalLineToRelative(4.79f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.41f) + verticalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.5f) + horizontalLineToRelative(-4.88f) + lineToRelative(1.65f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.06f, -0.63f) + lineToRelative(-0.06f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.64f, -0.06f) + close() + moveTo(10.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(10.0f, 3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + } + } + return _personArrowLeft!! + } + +private var _personArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonArrowRight.kt new file mode 100644 index 00000000..ce89c0cd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonArrowRight.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonArrowRight: ImageVector + get() { + if (_personArrowRight != null) { + return _personArrowRight!! + } + _personArrowRight = fluentIcon(name = "Regular.PersonArrowRight") { + fluentPath { + moveTo(11.31f, 15.5f) + curveToRelative(0.18f, -0.53f, 0.42f, -1.04f, 0.71f, -1.5f) + lineTo(4.25f, 14.0f) + curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) + verticalLineToRelative(0.58f) + curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) + curveTo(4.47f, 21.1f, 6.85f, 22.0f, 10.0f, 22.0f) + curveToRelative(0.93f, 0.0f, 1.8f, -0.08f, 2.6f, -0.24f) + arcToRelative(6.51f, 6.51f, 0.0f, false, true, -0.92f, -1.36f) + curveToRelative(-0.52f, 0.07f, -1.08f, 0.1f, -1.68f, 0.1f) + curveToRelative(-2.74f, 0.0f, -4.7f, -0.74f, -5.96f, -2.21f) + curveToRelative(-0.34f, -0.4f, -0.54f, -0.93f, -0.54f, -1.46f) + verticalLineToRelative(-0.58f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.06f) + close() + moveTo(10.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(10.0f, 3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(18.35f, 14.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(19.29f, 17.0f) + lineTo(15.0f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) + horizontalLineToRelative(4.3f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.15f, -0.34f) + verticalLineToRelative(-0.01f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.15f, -0.36f) + lineToRelative(-2.5f, -2.5f) + close() + } + } + return _personArrowRight!! + } + +private var _personArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonAvailable.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonAvailable.kt new file mode 100644 index 00000000..b9347193 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonAvailable.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonAvailable: ImageVector + get() { + if (_personAvailable != null) { + return _personAvailable!! + } + _personAvailable = fluentIcon(name = "Regular.PersonAvailable") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(14.85f, 17.15f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.7f, -0.7f) + lineToRelative(-3.65f, 3.64f) + lineToRelative(-1.65f, -1.64f) + close() + moveTo(12.02f, 14.0f) + curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) + lineTo(4.24f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.58f) + curveToRelative(0.0f, 0.53f, 0.2f, 1.05f, 0.54f, 1.46f) + curveTo(5.3f, 19.76f, 7.26f, 20.5f, 10.0f, 20.5f) + curveToRelative(0.6f, 0.0f, 1.16f, -0.03f, 1.68f, -0.1f) + curveToRelative(0.25f, 0.49f, 0.55f, 0.95f, 0.91f, 1.36f) + curveToRelative(-0.8f, 0.16f, -1.66f, 0.24f, -2.59f, 0.24f) + curveToRelative(-3.15f, 0.0f, -5.53f, -0.9f, -7.1f, -2.74f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.9f, -2.43f) + verticalLineToRelative(-0.58f) + curveTo(2.0f, 15.0f, 3.01f, 14.0f, 4.25f, 14.0f) + horizontalLineToRelative(7.77f) + close() + moveTo(10.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(10.0f, 3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + } + } + return _personAvailable!! + } + +private var _personAvailable: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonBoard.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonBoard.kt new file mode 100644 index 00000000..7fae70ac --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonBoard.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonBoard: ImageVector + get() { + if (_personBoard != null) { + return _personBoard!! + } + _personBoard = fluentIcon(name = "Regular.PersonBoard") { + fluentPath { + moveTo(15.25f, 12.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-6.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 1.08f, 0.52f, 1.66f, 1.38f, 2.2f) + curveToRelative(0.85f, 0.54f, 2.02f, 0.8f, 3.37f, 0.8f) + curveToRelative(1.59f, 0.0f, 2.77f, -0.26f, 3.57f, -0.8f) + curveToRelative(0.81f, -0.56f, 1.18f, -1.15f, 1.18f, -2.2f) + verticalLineToRelative(-0.5f) + close() + moveTo(7.25f, 12.25f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(6.0f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 0.27f, -0.03f, 0.33f, -0.1f, 0.45f) + lineToRelative(-0.06f, 0.1f) + curveToRelative(-0.1f, 0.21f, -0.26f, 0.38f, -0.5f, 0.52f) + curveToRelative(-0.5f, 0.29f, -1.31f, 0.43f, -2.59f, 0.43f) + arcToRelative(5.41f, 5.41f, 0.0f, false, true, -2.41f, -0.43f) + arcToRelative(1.6f, 1.6f, 0.0f, false, true, -0.62f, -0.54f) + arcToRelative(1.98f, 1.98f, 0.0f, false, false, -0.1f, -0.12f) + curveToRelative(-0.07f, -0.1f, -0.12f, -0.17f, -0.12f, -0.41f) + verticalLineToRelative(-0.5f) + close() + moveTo(13.0f, 7.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(11.5f, 7.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(8.5f) + curveTo(16.55f, 3.0f, 18.0f, 4.46f, 18.0f, 6.25f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-8.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 14.75f) + verticalLineToRelative(-8.5f) + close() + moveTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(8.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-8.5f) + close() + moveTo(8.75f, 20.5f) + curveToRelative(-1.15f, 0.0f, -2.16f, -0.6f, -2.74f, -1.5f) + horizontalLineToRelative(9.24f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 19.0f, 15.25f) + lineTo(19.0f, 6.01f) + curveToRelative(0.9f, 0.58f, 1.5f, 1.59f, 1.5f, 2.74f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) + horizontalLineToRelative(-6.5f) + close() + } + } + return _personBoard!! + } + +private var _personBoard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonCall.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonCall.kt new file mode 100644 index 00000000..24631705 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonCall.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonCall: ImageVector + get() { + if (_personCall != null) { + return _personCall!! + } + _personCall = fluentIcon(name = "Regular.PersonCall") { + fluentPath { + moveTo(17.38f, 15.5f) + arcToRelative(2.2f, 2.2f, 0.0f, false, true, -0.23f, -1.5f) + lineTo(6.25f, 14.0f) + curveTo(5.01f, 14.0f, 4.0f, 15.0f, 4.0f, 16.25f) + verticalLineToRelative(0.58f) + curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) + curveTo(6.47f, 21.1f, 8.85f, 22.0f, 12.0f, 22.0f) + arcToRelative(15.0f, 15.0f, 0.0f, false, false, 1.13f, -0.04f) + arcToRelative(2.26f, 2.26f, 0.0f, false, true, 0.0f, -1.5f) + curveToRelative(-0.36f, 0.03f, -0.74f, 0.04f, -1.13f, 0.04f) + curveToRelative(-2.74f, 0.0f, -4.7f, -0.74f, -5.96f, -2.21f) + curveToRelative(-0.34f, -0.41f, -0.54f, -0.93f, -0.54f, -1.46f) + verticalLineToRelative(-0.58f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(11.13f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + moveTo(18.2f, 14.0f) + lineToRelative(0.47f, -1.21f) + curveToRelative(0.24f, -0.61f, 0.92f, -0.93f, 1.55f, -0.73f) + lineToRelative(0.43f, 0.14f) + curveToRelative(0.72f, 0.24f, 1.32f, 0.8f, 1.35f, 1.57f) + curveToRelative(0.1f, 3.11f, -2.48f, 7.58f, -5.22f, 9.06f) + curveToRelative(-0.67f, 0.36f, -1.46f, 0.12f, -2.03f, -0.4f) + lineToRelative(-0.34f, -0.3f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.14f, -1.7f) + lineToRelative(0.8f, -1.02f) + arcToRelative(1.2f, 1.2f, 0.0f, false, true, 1.22f, -0.42f) + lineToRelative(1.3f, 0.32f) + arcToRelative(3.78f, 3.78f, 0.0f, false, false, 1.77f, -3.08f) + lineToRelative(-0.92f, -0.96f) + arcToRelative(1.2f, 1.2f, 0.0f, false, true, -0.25f, -1.28f) + close() + } + } + return _personCall!! + } + +private var _personCall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonChat.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonChat.kt new file mode 100644 index 00000000..6f85a798 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonChat.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonChat: ImageVector + get() { + if (_personChat != null) { + return _personChat!! + } + _personChat = fluentIcon(name = "Regular.PersonChat") { + fluentPath { + moveTo(11.31f, 15.5f) + curveToRelative(0.17f, -0.54f, 0.41f, -1.04f, 0.7f, -1.5f) + lineTo(6.26f, 14.0f) + curveTo(5.0f, 14.0f, 4.0f, 15.0f, 4.0f, 16.25f) + verticalLineToRelative(0.58f) + curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) + curveToRelative(1.41f, 1.65f, 3.49f, 2.55f, 6.19f, 2.71f) + lineToRelative(0.45f, -1.48f) + curveToRelative(-2.5f, -0.08f, -4.32f, -0.82f, -5.5f, -2.2f) + curveToRelative(-0.35f, -0.41f, -0.54f, -0.93f, -0.54f, -1.46f) + verticalLineToRelative(-0.58f) + curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.06f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, -8.17f, 4.81f) + lineToRelative(-2.19f, 0.67f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.62f, -0.63f) + lineToRelative(0.67f, -2.18f) + arcTo(5.5f, 5.5f, 0.0f, true, true, 23.0f, 17.5f) + close() + moveTo(15.5f, 16.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) + horizontalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(15.0f, 18.5f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + close() + } + } + return _personChat!! + } + +private var _personChat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonCircle.kt new file mode 100644 index 00000000..6c6c8c01 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonCircle.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonCircle: ImageVector + get() { + if (_personCircle != null) { + return _personCircle!! + } + _personCircle = fluentIcon(name = "Regular.PersonCircle") { + fluentPath { + moveTo(17.0f, 13.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + horizontalLineToRelative(-7.0f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 1.97f, 1.86f, 4.0f, 5.0f, 4.0f) + curveToRelative(3.14f, 0.0f, 5.0f, -2.03f, 5.0f, -4.0f) + verticalLineToRelative(-0.5f) + close() + moveTo(14.75f, 8.25f) + arcToRelative(2.75f, 2.75f, 0.0f, true, false, -5.5f, 0.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 5.5f, 0.0f) + close() + moveTo(22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, -20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 20.0f, 0.0f) + close() + moveTo(20.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, -17.0f, 0.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 17.0f, 0.0f) + close() + } + } + return _personCircle!! + } + +private var _personCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonClock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonClock.kt new file mode 100644 index 00000000..dbb241a4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonClock.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonClock: ImageVector + get() { + if (_personClock != null) { + return _personClock!! + } + _personClock = fluentIcon(name = "Regular.PersonClock") { + fluentPath { + moveTo(11.31f, 15.5f) + curveToRelative(0.18f, -0.53f, 0.42f, -1.04f, 0.71f, -1.5f) + lineTo(4.25f, 14.0f) + curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) + verticalLineToRelative(0.58f) + curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) + curveTo(4.47f, 21.1f, 6.85f, 22.0f, 10.0f, 22.0f) + curveToRelative(0.93f, 0.0f, 1.8f, -0.08f, 2.6f, -0.24f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -0.92f, -1.36f) + curveToRelative(-0.52f, 0.07f, -1.08f, 0.1f, -1.68f, 0.1f) + curveToRelative(-2.74f, 0.0f, -4.7f, -0.74f, -5.96f, -2.21f) + curveToRelative(-0.34f, -0.4f, -0.54f, -0.93f, -0.54f, -1.46f) + verticalLineToRelative(-0.58f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.06f) + close() + moveTo(10.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(10.0f, 3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(19.5f, 17.5f) + horizontalLineToRelative(-2.0f) + lineTo(17.5f, 15.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -1.0f, 0.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + close() + } + } + return _personClock!! + } + +private var _personClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonDelete.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonDelete.kt new file mode 100644 index 00000000..25ee731a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonDelete.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonDelete: ImageVector + get() { + if (_personDelete != null) { + return _personDelete!! + } + _personDelete = fluentIcon(name = "Regular.PersonDelete") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(12.02f, 14.0f) + curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) + lineTo(4.24f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.9f) + curveToRelative(0.0f, 0.66f, 0.29f, 1.29f, 0.79f, 1.71f) + curveTo(5.55f, 19.95f, 7.44f, 20.5f, 10.0f, 20.5f) + curveToRelative(0.6f, 0.0f, 1.16f, -0.03f, 1.69f, -0.09f) + curveToRelative(0.25f, 0.5f, 0.56f, 0.96f, 0.93f, 1.38f) + curveToRelative(-0.8f, 0.14f, -1.68f, 0.21f, -2.62f, 0.21f) + curveToRelative(-2.89f, 0.0f, -5.13f, -0.66f, -6.7f, -2.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 2.0f, 17.16f) + verticalLineToRelative(-0.91f) + curveTo(2.0f, 15.01f, 3.01f, 14.0f, 4.25f, 14.0f) + horizontalLineToRelative(7.77f) + close() + moveTo(15.09f, 14.97f) + lineTo(15.02f, 15.02f) + lineTo(14.97f, 15.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.05f, 0.07f) + lineToRelative(1.77f, 1.77f) + lineToRelative(-1.76f, 1.77f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.06f, 0.06f) + lineToRelative(0.07f, 0.06f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) + lineToRelative(0.07f, -0.06f) + lineToRelative(1.77f, -1.76f) + lineToRelative(1.77f, 1.77f) + lineToRelative(0.07f, 0.05f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.57f, 0.0f) + lineToRelative(0.07f, -0.05f) + lineToRelative(0.05f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) + lineToRelative(-0.05f, -0.07f) + lineToRelative(-1.77f, -1.77f) + lineToRelative(1.77f, -1.77f) + lineToRelative(0.06f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) + lineToRelative(-0.06f, -0.07f) + lineToRelative(-0.07f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) + lineToRelative(-0.07f, 0.05f) + lineToRelative(-1.77f, 1.77f) + lineToRelative(-1.77f, -1.77f) + lineToRelative(-0.07f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.49f, -0.05f) + lineToRelative(-0.08f, 0.05f) + close() + moveTo(10.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(10.0f, 3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + } + } + return _personDelete!! + } + +private var _personDelete: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonEdit.kt new file mode 100644 index 00000000..1167b1b6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonEdit.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonEdit: ImageVector + get() { + if (_personEdit != null) { + return _personEdit!! + } + _personEdit = fluentIcon(name = "Regular.PersonEdit") { + fluentPath { + moveToRelative(14.86f, 15.5f) + lineToRelative(1.5f, -1.5f) + lineTo(6.26f, 14.0f) + curveTo(5.0f, 14.0f, 4.0f, 15.0f, 4.0f, 16.25f) + verticalLineToRelative(0.58f) + curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) + curveToRelative(1.4f, 1.64f, 3.44f, 2.53f, 6.1f, 2.7f) + curveToRelative(0.0f, -0.17f, 0.02f, -0.36f, 0.06f, -0.55f) + lineToRelative(0.23f, -0.93f) + curveToRelative(-2.37f, -0.12f, -4.1f, -0.85f, -5.25f, -2.2f) + curveToRelative(-0.34f, -0.4f, -0.54f, -0.92f, -0.54f, -1.45f) + verticalLineToRelative(-0.58f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(8.6f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _personEdit!! + } + +private var _personEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonFeedback.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonFeedback.kt new file mode 100644 index 00000000..486ac460 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonFeedback.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonFeedback: ImageVector + get() { + if (_personFeedback != null) { + return _personFeedback!! + } + _personFeedback = fluentIcon(name = "Regular.PersonFeedback") { + fluentPath { + moveTo(14.77f, 12.4f) + curveToRelative(0.15f, 0.07f, 0.32f, 0.1f, 0.48f, 0.1f) + curveToRelative(0.33f, 0.0f, 0.64f, -0.13f, 0.88f, -0.36f) + lineTo(18.31f, 10.0f) + horizontalLineToRelative(0.94f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 7.25f) + verticalLineToRelative(-2.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 2.0f) + horizontalLineToRelative(-4.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 12.0f, 4.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 1.26f, 0.85f, 2.32f, 2.0f, 2.65f) + verticalLineToRelative(1.35f) + curveToRelative(0.0f, 0.5f, 0.31f, 0.95f, 0.77f, 1.15f) + close() + moveTo(13.5f, 4.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(4.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineToRelative(-1.56f) + lineToRelative(-2.19f, 2.15f) + lineTo(15.5f, 8.5f) + horizontalLineToRelative(-0.75f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + verticalLineToRelative(-2.5f) + close() + moveTo(8.0f, 13.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 0.0f, -7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 0.0f, 7.0f) + close() + moveTo(8.0f, 8.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + close() + moveTo(8.0f, 22.0f) + curveToRelative(-2.06f, 0.0f, -3.64f, -0.56f, -4.7f, -1.67f) + curveToRelative(-1.34f, -1.4f, -1.3f, -3.17f, -1.3f, -3.36f) + verticalLineToRelative(-0.01f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 4.0f, 15.0f) + horizontalLineToRelative(8.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + curveToRelative(0.0f, 0.13f, 0.05f, 1.92f, -1.3f, 3.33f) + curveTo(11.64f, 21.44f, 10.06f, 22.0f, 8.0f, 22.0f) + close() + moveTo(4.0f, 16.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + curveToRelative(0.0f, 0.1f, -0.02f, 1.35f, 0.9f, 2.31f) + curveToRelative(0.76f, 0.79f, 1.97f, 1.19f, 3.6f, 1.19f) + curveToRelative(1.63f, 0.0f, 2.85f, -0.41f, 3.61f, -1.21f) + curveToRelative(0.91f, -0.95f, 0.9f, -2.2f, 0.9f, -2.26f) + curveToRelative(0.0f, -0.31f, -0.24f, -0.54f, -0.5f, -0.54f) + lineTo(4.0f, 16.49f) + verticalLineToRelative(0.01f) + close() + } + } + return _personFeedback!! + } + +private var _personFeedback: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonHeart.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonHeart.kt new file mode 100644 index 00000000..967b64cc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonHeart.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonHeart: ImageVector + get() { + if (_personHeart != null) { + return _personHeart!! + } + _personHeart = fluentIcon(name = "Regular.PersonHeart") { + fluentPath { + moveTo(10.1f, 15.5f) + curveToRelative(0.06f, -0.52f, 0.2f, -1.02f, 0.42f, -1.5f) + lineTo(4.25f, 14.0f) + curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) + verticalLineToRelative(0.58f) + curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) + curveTo(4.47f, 21.1f, 6.85f, 22.0f, 10.0f, 22.0f) + curveToRelative(1.41f, 0.0f, 2.67f, -0.18f, 3.77f, -0.55f) + lineToRelative(-1.21f, -1.21f) + curveToRelative(-0.76f, 0.17f, -1.62f, 0.26f, -2.56f, 0.26f) + curveToRelative(-2.74f, 0.0f, -4.7f, -0.75f, -5.96f, -2.21f) + curveToRelative(-0.34f, -0.41f, -0.54f, -0.93f, -0.54f, -1.46f) + verticalLineToRelative(-0.58f) + curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.86f) + close() + moveTo(10.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(10.0f, 3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + moveTo(17.04f, 23.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.53f, -0.22f) + lineToRelative(-4.4f, -4.41f) + arcToRelative(3.47f, 3.47f, 0.0f, false, true, 4.9f, -4.9f) + lineToRelative(0.03f, 0.03f) + lineToRelative(0.04f, -0.03f) + arcToRelative(3.47f, 3.47f, 0.0f, false, true, 4.9f, 4.9f) + lineToRelative(-4.4f, 4.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.23f) + close() + } + } + return _personHeart!! + } + +private var _personHeart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonLightbulb.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonLightbulb.kt new file mode 100644 index 00000000..a6ae2109 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonLightbulb.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonLightbulb: ImageVector + get() { + if (_personLightbulb != null) { + return _personLightbulb!! + } + _personLightbulb = fluentIcon(name = "Regular.PersonLightbulb") { + fluentPath { + moveTo(13.03f, 15.5f) + curveToRelative(0.05f, -0.53f, 0.18f, -1.03f, 0.39f, -1.5f) + lineTo(6.25f, 14.0f) + curveTo(5.01f, 14.0f, 4.0f, 15.0f, 4.0f, 16.25f) + verticalLineToRelative(0.58f) + curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) + curveTo(6.47f, 21.1f, 8.85f, 22.0f, 12.0f, 22.0f) + curveToRelative(1.18f, 0.0f, 2.24f, -0.13f, 3.2f, -0.38f) + lineToRelative(-0.29f, -1.47f) + curveToRelative(-0.85f, 0.23f, -1.82f, 0.35f, -2.91f, 0.35f) + curveToRelative(-2.74f, 0.0f, -4.7f, -0.74f, -5.96f, -2.21f) + curveToRelative(-0.34f, -0.4f, -0.54f, -0.93f, -0.54f, -1.46f) + verticalLineToRelative(-0.58f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.78f) + close() + moveTo(17.0f, 7.0f) + arcTo(5.0f, 5.0f, 0.0f, true, false, 7.0f, 7.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 10.0f, 0.0f) + close() + moveTo(8.5f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 7.0f, 0.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -7.0f, 0.0f) + close() + moveTo(22.0f, 16.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -1.76f, 3.32f) + lineToRelative(-0.14f, 0.68f) + horizontalLineToRelative(-4.2f) + lineToRelative(-0.14f, -0.68f) + arcTo(4.0f, 4.0f, 0.0f, true, true, 22.0f, 16.0f) + close() + moveTo(16.1f, 21.0f) + lineTo(16.26f, 21.8f) + curveToRelative(0.14f, 0.7f, 0.76f, 1.2f, 1.47f, 1.2f) + horizontalLineToRelative(0.54f) + curveToRelative(0.72f, 0.0f, 1.33f, -0.5f, 1.47f, -1.2f) + lineToRelative(0.16f, -0.8f) + horizontalLineToRelative(-3.8f) + close() + } + } + return _personLightbulb!! + } + +private var _personLightbulb: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonLink.kt new file mode 100644 index 00000000..99da1295 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonLink.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonLink: ImageVector + get() { + if (_personLink != null) { + return _personLink!! + } + _personLink = fluentIcon(name = "Regular.PersonLink") { + fluentPath { + moveTo(16.75f, 14.0f) + curveToRelative(0.78f, 0.0f, 1.47f, 0.4f, 1.88f, 1.0f) + horizontalLineToRelative(-2.88f) + curveToRelative(-0.76f, 0.0f, -1.48f, 0.18f, -2.12f, 0.5f) + lineTo(5.25f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.58f) + curveToRelative(0.0f, 0.53f, 0.2f, 1.05f, 0.54f, 1.46f) + curveTo(6.3f, 19.75f, 8.26f, 20.5f, 11.0f, 20.5f) + horizontalLineToRelative(0.06f) + curveToRelative(0.09f, 0.53f, 0.26f, 1.03f, 0.5f, 1.49f) + lineTo(11.0f, 22.0f) + curveToRelative(-3.15f, 0.0f, -5.53f, -0.9f, -7.1f, -2.74f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.9f, -2.43f) + verticalLineToRelative(-0.58f) + curveTo(3.0f, 15.0f, 4.01f, 14.0f, 5.25f, 14.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(11.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(11.0f, 3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + moveTo(23.0f, 19.75f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 19.25f, 16.0f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + verticalLineToRelative(-0.01f) + horizontalLineToRelative(0.2f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 19.74f) + close() + moveTo(16.5f, 16.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-0.2f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(20.0f, 19.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + } + } + return _personLink!! + } + +private var _personLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonLock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonLock.kt new file mode 100644 index 00000000..58a4d037 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonLock.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonLock: ImageVector + get() { + if (_personLock != null) { + return _personLock!! + } + _personLock = fluentIcon(name = "Regular.PersonLock") { + fluentPath { + moveTo(14.0f, 14.0f) + lineTo(4.25f, 14.0f) + curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) + verticalLineToRelative(0.58f) + curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) + curveTo(4.47f, 21.1f, 6.85f, 22.0f, 10.0f, 22.0f) + curveToRelative(0.71f, 0.0f, 1.39f, -0.05f, 2.03f, -0.14f) + arcToRelative(2.53f, 2.53f, 0.0f, false, true, -0.03f, -0.36f) + verticalLineToRelative(-1.15f) + curveToRelative(-0.61f, 0.1f, -1.28f, 0.15f, -2.0f, 0.15f) + curveToRelative(-2.74f, 0.0f, -4.7f, -0.74f, -5.96f, -2.21f) + curveToRelative(-0.34f, -0.4f, -0.54f, -0.93f, -0.54f, -1.46f) + verticalLineToRelative(-0.58f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.96f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 14.0f, 14.05f) + lineTo(14.0f, 14.0f) + close() + moveTo(10.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(10.0f, 3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + moveTo(15.0f, 15.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(6.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(20.0f, 15.0f) + verticalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) + verticalLineToRelative(1.0f) + close() + moveTo(16.5f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(18.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + } + } + return _personLock!! + } + +private var _personLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonMail.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonMail.kt new file mode 100644 index 00000000..6cd63a44 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonMail.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonMail: ImageVector + get() { + if (_personMail != null) { + return _personMail!! + } + _personMail = fluentIcon(name = "Regular.PersonMail") { + fluentPath { + moveTo(11.0f, 15.5f) + curveToRelative(0.0f, -0.56f, 0.19f, -1.08f, 0.5f, -1.5f) + lineTo(5.25f, 14.0f) + curveTo(4.01f, 14.0f, 3.0f, 15.0f, 3.0f, 16.25f) + verticalLineToRelative(0.58f) + curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) + curveTo(5.47f, 21.1f, 7.85f, 22.0f, 11.0f, 22.0f) + horizontalLineToRelative(0.05f) + arcToRelative(2.51f, 2.51f, 0.0f, false, true, -0.05f, -0.5f) + verticalLineToRelative(-1.0f) + curveToRelative(-2.74f, 0.0f, -4.7f, -0.74f, -5.96f, -2.21f) + curveToRelative(-0.34f, -0.4f, -0.54f, -0.93f, -0.54f, -1.46f) + verticalLineToRelative(-0.58f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + lineTo(11.0f, 15.5f) + close() + moveTo(11.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(11.0f, 3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + moveTo(17.51f, 18.93f) + lineTo(12.01f, 15.73f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, -1.73f) + lineTo(21.0f, 14.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 1.97f) + lineToRelative(-5.49f, 2.96f) + close() + moveTo(17.74f, 19.94f) + lineTo(23.0f, 17.11f) + lineTo(23.0f, 21.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + verticalLineToRelative(-4.13f) + lineToRelative(5.25f, 3.06f) + curveToRelative(0.15f, 0.09f, 0.33f, 0.1f, 0.49f, 0.01f) + close() + } + } + return _personMail!! + } + +private var _personMail: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonMoney.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonMoney.kt new file mode 100644 index 00000000..cd03bf0d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonMoney.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonMoney: ImageVector + get() { + if (_personMoney != null) { + return _personMoney!! + } + _personMoney = fluentIcon(name = "Regular.PersonMoney") { + fluentPath { + moveTo(17.75f, 14.0f) + curveToRelative(0.78f, 0.0f, 1.47f, 0.4f, 1.87f, 1.0f) + lineTo(13.5f, 15.0f) + curveToRelative(-0.56f, 0.0f, -1.08f, 0.19f, -1.5f, 0.5f) + lineTo(6.25f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.58f) + curveToRelative(0.0f, 0.53f, 0.2f, 1.05f, 0.54f, 1.46f) + curveToRelative(1.1f, 1.28f, 2.74f, 2.01f, 4.96f, 2.18f) + verticalLineToRelative(1.03f) + curveToRelative(0.0f, 0.16f, 0.02f, 0.32f, 0.04f, 0.47f) + curveToRelative(-2.67f, -0.17f, -4.73f, -1.06f, -6.14f, -2.7f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.9f, -2.44f) + verticalLineToRelative(-0.58f) + curveTo(4.0f, 15.0f, 5.01f, 14.0f, 6.25f, 14.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + moveTo(12.0f, 17.5f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(8.0f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + verticalLineToRelative(-4.0f) + close() + moveTo(22.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + horizontalLineToRelative(-1.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(22.0f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + horizontalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(14.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + verticalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + horizontalLineToRelative(-1.0f) + close() + moveTo(15.0f, 22.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + verticalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + horizontalLineToRelative(1.0f) + close() + moveTo(19.25f, 19.5f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, -3.5f, 0.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 3.5f, 0.0f) + close() + } + } + return _personMoney!! + } + +private var _personMoney: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonNote.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonNote.kt new file mode 100644 index 00000000..c68480b9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonNote.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonNote: ImageVector + get() { + if (_personNote != null) { + return _personNote!! + } + _personNote = fluentIcon(name = "Regular.PersonNote") { + fluentPath { + moveTo(11.0f, 15.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.17f, -1.0f) + lineTo(4.25f, 14.0f) + curveTo(3.01f, 14.0f, 2.0f, 15.0f, 2.0f, 16.25f) + verticalLineToRelative(0.58f) + curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) + curveTo(4.47f, 21.1f, 6.85f, 22.0f, 10.0f, 22.0f) + curveToRelative(0.4f, 0.0f, 0.78f, -0.01f, 1.16f, -0.04f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 11.0f, 21.0f) + verticalLineToRelative(-0.53f) + curveToRelative(-0.32f, 0.02f, -0.65f, 0.03f, -1.0f, 0.03f) + curveToRelative(-2.74f, 0.0f, -4.7f, -0.74f, -5.96f, -2.21f) + curveToRelative(-0.34f, -0.4f, -0.54f, -0.93f, -0.54f, -1.46f) + verticalLineToRelative(-0.58f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + lineTo(11.0f, 15.5f) + lineTo(11.0f, 15.0f) + close() + moveTo(10.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(10.0f, 3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + moveTo(12.0f, 15.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + verticalLineToRelative(6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + verticalLineToRelative(-6.0f) + close() + moveTo(14.5f, 16.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) + horizontalLineToRelative(6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) + horizontalLineToRelative(-6.0f) + close() + moveTo(14.5f, 19.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) + horizontalLineToRelative(6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) + horizontalLineToRelative(-6.0f) + close() + } + } + return _personNote!! + } + +private var _personNote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonPill.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonPill.kt new file mode 100644 index 00000000..6adddd8b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonPill.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonPill: ImageVector + get() { + if (_personPill != null) { + return _personPill!! + } + _personPill = fluentIcon(name = "Regular.PersonPill") { + fluentPath { + moveTo(11.16f, 20.48f) + curveToRelative(0.06f, 0.53f, 0.24f, 1.05f, 0.52f, 1.52f) + curveToRelative(-2.99f, -0.06f, -5.26f, -0.97f, -6.78f, -2.74f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.9f, -2.43f) + verticalLineToRelative(-0.58f) + curveTo(4.0f, 15.0f, 5.01f, 14.0f, 6.25f, 14.0f) + horizontalLineToRelative(9.28f) + lineToRelative(-1.5f, 1.5f) + lineTo(6.25f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.58f) + curveToRelative(0.0f, 0.53f, 0.2f, 1.05f, 0.54f, 1.46f) + curveToRelative(1.12f, 1.3f, 2.81f, 2.04f, 5.12f, 2.19f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + moveTo(22.03f, 12.97f) + arcToRelative(2.87f, 2.87f, 0.0f, false, false, -4.06f, 0.0f) + lineToRelative(-5.0f, 5.0f) + arcToRelative(2.87f, 2.87f, 0.0f, false, false, 4.06f, 4.06f) + lineToRelative(5.0f, -5.0f) + arcToRelative(2.87f, 2.87f, 0.0f, false, false, 0.0f, -4.06f) + close() + moveTo(19.03f, 14.03f) + arcToRelative(1.37f, 1.37f, 0.0f, true, true, 1.94f, 1.94f) + lineTo(19.0f, 17.94f) + lineTo(17.06f, 16.0f) + lineToRelative(1.97f, -1.97f) + close() + moveTo(17.03f, 18.97f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-1.0f, 1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(1.0f, -1.0f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + } + } + return _personPill!! + } + +private var _personPill: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonProhibited.kt new file mode 100644 index 00000000..8caba860 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonProhibited.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonProhibited: ImageVector + get() { + if (_personProhibited != null) { + return _personProhibited!! + } + _personProhibited = fluentIcon(name = "Regular.PersonProhibited") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(12.02f, 14.0f) + curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) + lineTo(4.24f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.9f) + curveToRelative(0.0f, 0.66f, 0.29f, 1.29f, 0.79f, 1.71f) + curveTo(5.55f, 19.95f, 7.44f, 20.5f, 10.0f, 20.5f) + curveToRelative(0.6f, 0.0f, 1.16f, -0.03f, 1.69f, -0.09f) + curveToRelative(0.25f, 0.5f, 0.56f, 0.96f, 0.93f, 1.38f) + curveToRelative(-0.8f, 0.14f, -1.68f, 0.21f, -2.62f, 0.21f) + curveToRelative(-2.89f, 0.0f, -5.13f, -0.66f, -6.7f, -2.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 2.0f, 17.16f) + verticalLineToRelative(-0.91f) + curveTo(2.0f, 15.01f, 3.01f, 14.0f, 4.25f, 14.0f) + horizontalLineToRelative(7.77f) + close() + moveTo(20.81f, 15.25f) + lineTo(15.25f, 20.81f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 5.56f, -5.56f) + close() + moveTo(17.5f, 13.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -3.3f, 6.25f) + lineToRelative(5.55f, -5.56f) + arcToRelative(3.98f, 3.98f, 0.0f, false, false, -2.25f, -0.69f) + close() + moveTo(10.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(10.0f, 3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + } + } + return _personProhibited!! + } + +private var _personProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonQuestionMark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonQuestionMark.kt new file mode 100644 index 00000000..d7f6366e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonQuestionMark.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonQuestionMark: ImageVector + get() { + if (_personQuestionMark != null) { + return _personQuestionMark!! + } + _personQuestionMark = fluentIcon(name = "Regular.PersonQuestionMark") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(17.5f, 19.75f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, 1.25f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, -1.25f) + close() + moveTo(17.5f, 13.87f) + curveToRelative(-1.05f, 0.0f, -1.86f, 0.82f, -1.85f, 1.96f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, -0.01f) + curveToRelative(0.0f, -0.58f, 0.36f, -0.95f, 0.85f, -0.95f) + curveToRelative(0.47f, 0.0f, 0.85f, 0.4f, 0.85f, 0.95f) + curveToRelative(0.0f, 0.2f, -0.05f, 0.35f, -0.22f, 0.57f) + lineToRelative(-0.1f, 0.11f) + lineToRelative(-0.1f, 0.11f) + lineToRelative(-0.26f, 0.3f) + lineToRelative(-0.14f, 0.15f) + curveToRelative(-0.38f, 0.46f, -0.53f, 0.8f, -0.53f, 1.31f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) + curveToRelative(0.0f, -0.2f, 0.06f, -0.36f, 0.24f, -0.59f) + lineToRelative(0.08f, -0.1f) + lineToRelative(0.1f, -0.12f) + lineToRelative(0.27f, -0.29f) + lineToRelative(0.14f, -0.15f) + curveToRelative(0.37f, -0.45f, 0.52f, -0.79f, 0.52f, -1.3f) + curveToRelative(0.0f, -1.1f, -0.82f, -1.95f, -1.85f, -1.95f) + close() + moveTo(12.02f, 14.0f) + curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) + lineTo(4.24f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.58f) + curveToRelative(0.0f, 0.53f, 0.2f, 1.05f, 0.54f, 1.46f) + curveTo(5.3f, 19.76f, 7.26f, 20.5f, 10.0f, 20.5f) + curveToRelative(0.6f, 0.0f, 1.16f, -0.03f, 1.68f, -0.1f) + curveToRelative(0.25f, 0.49f, 0.55f, 0.95f, 0.91f, 1.36f) + curveToRelative(-0.8f, 0.16f, -1.66f, 0.24f, -2.59f, 0.24f) + curveToRelative(-3.15f, 0.0f, -5.53f, -0.9f, -7.1f, -2.74f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.9f, -2.43f) + verticalLineToRelative(-0.58f) + curveTo(2.0f, 15.0f, 3.01f, 14.0f, 4.25f, 14.0f) + horizontalLineToRelative(7.77f) + close() + moveTo(10.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(10.0f, 3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + } + } + return _personQuestionMark!! + } + +private var _personQuestionMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonSearch.kt new file mode 100644 index 00000000..2ed51041 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonSearch.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonSearch: ImageVector + get() { + if (_personSearch != null) { + return _personSearch!! + } + _personSearch = fluentIcon(name = "Regular.PersonSearch") { + fluentPath { + moveTo(11.9f, 14.0f) + horizontalLineToRelative(7.85f) + curveTo(21.0f, 14.0f, 22.0f, 15.0f, 22.0f, 16.25f) + verticalLineToRelative(0.9f) + curveToRelative(0.0f, 1.1f, -0.47f, 2.14f, -1.3f, 2.85f) + curveToRelative(-1.57f, 1.34f, -3.81f, 2.0f, -6.7f, 2.0f) + horizontalLineToRelative(-0.18f) + curveToRelative(0.23f, -0.47f, 0.24f, -1.02f, 0.03f, -1.5f) + lineTo(14.0f, 20.5f) + curveToRelative(2.56f, 0.0f, 4.46f, -0.56f, 5.72f, -1.64f) + curveToRelative(0.5f, -0.43f, 0.78f, -1.05f, 0.78f, -1.7f) + verticalLineToRelative(-0.91f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-7.77f) + arcToRelative(5.56f, 5.56f, 0.0f, false, false, -0.07f, -1.5f) + close() + moveTo(6.5f, 10.5f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 3.46f, 7.38f) + lineToRelative(2.82f, 2.81f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 1.14f) + lineToRelative(-0.09f, -0.08f) + lineToRelative(-2.9f, -2.9f) + arcTo(4.5f, 4.5f, 0.0f, true, true, 6.5f, 10.5f) + close() + moveTo(6.5f, 12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + moveTo(14.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(14.0f, 3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + } + } + return _personSearch!! + } + +private var _personSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonSquare.kt new file mode 100644 index 00000000..e80bbeae --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonSquare.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonSquare: ImageVector + get() { + if (_personSquare != null) { + return _personSquare!! + } + _personSquare = fluentIcon(name = "Regular.PersonSquare") { + fluentPath { + moveTo(15.5f, 12.0f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 1.97f, -1.86f, 4.0f, -5.0f, 4.0f) + curveToRelative(-3.14f, 0.0f, -5.0f, -2.03f, -5.0f, -4.0f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(7.0f) + close() + moveTo(12.0f, 5.5f) + arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, 5.5f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.0f, -5.5f) + close() + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineTo(6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + horizontalLineTo(6.25f) + close() + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineTo(6.25f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineTo(6.25f) + close() + } + } + return _personSquare!! + } + +private var _personSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonStar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonStar.kt new file mode 100644 index 00000000..8e2640d6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonStar.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonStar: ImageVector + get() { + if (_personStar != null) { + return _personStar!! + } + _personStar = fluentIcon(name = "Regular.PersonStar") { + fluentPath { + moveTo(11.31f, 15.5f) + curveToRelative(0.18f, -0.53f, 0.42f, -1.04f, 0.71f, -1.5f) + lineTo(5.25f, 14.0f) + curveTo(4.01f, 14.0f, 3.0f, 15.0f, 3.0f, 16.25f) + verticalLineToRelative(0.58f) + curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) + curveTo(5.47f, 21.1f, 7.85f, 22.0f, 11.0f, 22.0f) + curveToRelative(0.6f, 0.0f, 1.17f, -0.03f, 1.72f, -0.1f) + curveToRelative(-0.4f, -0.42f, -0.73f, -0.9f, -1.0f, -1.42f) + lineToRelative(-0.72f, 0.02f) + curveToRelative(-2.74f, 0.0f, -4.7f, -0.75f, -5.96f, -2.21f) + curveToRelative(-0.34f, -0.41f, -0.54f, -0.93f, -0.54f, -1.46f) + verticalLineToRelative(-0.58f) + curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.06f) + close() + moveTo(11.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(11.0f, 3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(18.06f, 14.42f) + arcToRelative(0.58f, 0.58f, 0.0f, false, false, -1.12f, 0.0f) + lineToRelative(-0.55f, 1.79f) + horizontalLineToRelative(-1.8f) + curveToRelative(-0.57f, 0.0f, -0.8f, 0.75f, -0.35f, 1.1f) + lineToRelative(1.46f, 1.1f) + lineToRelative(-0.56f, 1.79f) + curveToRelative(-0.17f, 0.56f, 0.44f, 1.03f, 0.9f, 0.68f) + lineToRelative(1.46f, -1.1f) + lineToRelative(1.46f, 1.1f) + curveToRelative(0.46f, 0.35f, 1.07f, -0.12f, 0.9f, -0.68f) + lineToRelative(-0.56f, -1.79f) + lineToRelative(1.46f, -1.1f) + curveToRelative(0.46f, -0.35f, 0.22f, -1.1f, -0.35f, -1.1f) + horizontalLineToRelative(-1.8f) + lineToRelative(-0.55f, -1.79f) + close() + } + } + return _personStar!! + } + +private var _personStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonStarburst.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonStarburst.kt new file mode 100644 index 00000000..871d666d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonStarburst.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonStarburst: ImageVector + get() { + if (_personStarburst != null) { + return _personStarburst!! + } + _personStarburst = fluentIcon(name = "Regular.PersonStarburst") { + fluentPath { + moveTo(10.1f, 3.22f) + arcToRelative(2.08f, 2.08f, 0.0f, false, true, 3.8f, 0.0f) + curveToRelative(0.14f, 0.33f, 0.56f, 0.44f, 0.85f, 0.23f) + arcToRelative(2.08f, 2.08f, 0.0f, false, true, 3.28f, 1.9f) + curveToRelative(-0.04f, 0.35f, 0.27f, 0.66f, 0.63f, 0.62f) + arcToRelative(2.08f, 2.08f, 0.0f, false, true, 1.89f, 3.28f) + curveToRelative(-0.21f, 0.3f, -0.1f, 0.7f, 0.23f, 0.86f) + arcToRelative(2.08f, 2.08f, 0.0f, false, true, 0.0f, 3.78f) + arcToRelative(0.58f, 0.58f, 0.0f, false, false, -0.23f, 0.86f) + arcToRelative(2.08f, 2.08f, 0.0f, false, true, -1.9f, 3.28f) + arcToRelative(0.58f, 0.58f, 0.0f, false, false, -0.62f, 0.63f) + arcToRelative(2.08f, 2.08f, 0.0f, false, true, -3.28f, 1.89f) + arcToRelative(0.58f, 0.58f, 0.0f, false, false, -0.86f, 0.23f) + arcToRelative(2.08f, 2.08f, 0.0f, false, true, -3.78f, 0.0f) + arcToRelative(0.58f, 0.58f, 0.0f, false, false, -0.86f, -0.23f) + arcToRelative(2.08f, 2.08f, 0.0f, false, true, -3.28f, -1.9f) + arcToRelative(0.58f, 0.58f, 0.0f, false, false, -0.63f, -0.62f) + arcToRelative(2.08f, 2.08f, 0.0f, false, true, -1.89f, -3.28f) + curveToRelative(0.21f, -0.3f, 0.1f, -0.7f, -0.23f, -0.86f) + arcToRelative(2.08f, 2.08f, 0.0f, false, true, 0.0f, -3.78f) + arcToRelative(0.58f, 0.58f, 0.0f, false, false, 0.23f, -0.86f) + arcToRelative(2.08f, 2.08f, 0.0f, false, true, 1.9f, -3.28f) + curveToRelative(0.35f, 0.04f, 0.66f, -0.27f, 0.62f, -0.63f) + arcToRelative(2.08f, 2.08f, 0.0f, false, true, 3.28f, -1.89f) + curveToRelative(0.3f, 0.21f, 0.7f, 0.1f, 0.86f, -0.23f) + close() + moveTo(12.52f, 3.84f) + arcToRelative(0.58f, 0.58f, 0.0f, false, false, -1.04f, 0.0f) + arcToRelative(2.08f, 2.08f, 0.0f, false, true, -3.1f, 0.83f) + arcToRelative(0.58f, 0.58f, 0.0f, false, false, -0.92f, 0.52f) + curveTo(7.6f, 6.5f, 6.5f, 7.6f, 5.2f, 7.46f) + arcToRelative(0.58f, 0.58f, 0.0f, false, false, -0.52f, 0.91f) + arcToRelative(2.08f, 2.08f, 0.0f, false, true, -0.83f, 3.1f) + arcToRelative(0.58f, 0.58f, 0.0f, false, false, 0.0f, 1.05f) + curveToRelative(1.2f, 0.54f, 1.6f, 2.04f, 0.83f, 3.1f) + curveToRelative(-0.29f, 0.4f, 0.03f, 0.96f, 0.52f, 0.92f) + curveToRelative(1.3f, -0.13f, 2.4f, 0.96f, 2.27f, 2.27f) + curveToRelative(-0.04f, 0.49f, 0.51f, 0.8f, 0.91f, 0.52f) + arcToRelative(2.08f, 2.08f, 0.0f, false, true, 3.1f, 0.83f) + curveToRelative(0.21f, 0.45f, 0.85f, 0.45f, 1.05f, 0.0f) + arcToRelative(2.08f, 2.08f, 0.0f, false, true, 3.1f, -0.83f) + curveToRelative(0.4f, 0.29f, 0.96f, -0.03f, 0.92f, -0.52f) + curveToRelative(-0.13f, -1.3f, 0.96f, -2.4f, 2.27f, -2.27f) + curveToRelative(0.49f, 0.04f, 0.8f, -0.51f, 0.52f, -0.91f) + arcToRelative(2.08f, 2.08f, 0.0f, false, true, 0.83f, -3.1f) + arcToRelative(0.58f, 0.58f, 0.0f, false, false, 0.0f, -1.05f) + arcToRelative(2.08f, 2.08f, 0.0f, false, true, -0.83f, -3.1f) + arcToRelative(0.58f, 0.58f, 0.0f, false, false, -0.52f, -0.92f) + curveToRelative(-1.3f, 0.13f, -2.4f, -0.96f, -2.27f, -2.27f) + arcToRelative(0.58f, 0.58f, 0.0f, false, false, -0.91f, -0.52f) + arcToRelative(2.08f, 2.08f, 0.0f, false, true, -3.1f, -0.83f) + close() + moveTo(12.0f, 5.97f) + arcToRelative(2.41f, 2.41f, 0.0f, true, false, 0.0f, 4.82f) + arcToRelative(2.41f, 2.41f, 0.0f, false, false, 0.0f, -4.82f) + close() + moveTo(15.02f, 12.0f) + lineTo(8.98f, 12.0f) + curveToRelative(-1.0f, 0.0f, -1.8f, 0.81f, -1.8f, 1.81f) + curveToRelative(0.0f, 1.35f, 0.55f, 2.43f, 1.46f, 3.16f) + curveToRelative(0.89f, 0.71f, 2.09f, 1.07f, 3.36f, 1.07f) + reflectiveCurveToRelative(2.47f, -0.36f, 3.36f, -1.07f) + curveToRelative(0.91f, -0.73f, 1.47f, -1.81f, 1.47f, -3.16f) + curveToRelative(0.0f, -1.0f, -0.81f, -1.81f, -1.81f, -1.81f) + close() + } + } + return _personStarburst!! + } + +private var _personStarburst: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonSupport.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonSupport.kt new file mode 100644 index 00000000..f574fdb8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonSupport.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonSupport: ImageVector + get() { + if (_personSupport != null) { + return _personSupport!! + } + _personSupport = fluentIcon(name = "Regular.PersonSupport") { + fluentPath { + moveTo(20.0f, 16.25f) + curveTo(20.0f, 15.0f, 19.0f, 14.0f, 17.75f, 14.0f) + lineTo(6.25f, 14.0f) + curveTo(5.0f, 14.0f, 4.0f, 15.0f, 4.0f, 16.25f) + verticalLineToRelative(0.57f) + curveToRelative(0.0f, 0.9f, 0.32f, 1.76f, 0.9f, 2.44f) + curveTo(6.46f, 21.09f, 8.85f, 22.0f, 12.0f, 22.0f) + curveToRelative(3.14f, 0.0f, 5.53f, -0.9f, 7.1f, -2.74f) + curveToRelative(0.58f, -0.68f, 0.9f, -1.54f, 0.9f, -2.44f) + verticalLineToRelative(-0.57f) + close() + moveTo(6.25f, 15.5f) + horizontalLineToRelative(11.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.33f, 0.75f, 0.75f) + verticalLineToRelative(0.57f) + curveToRelative(0.0f, 0.54f, -0.2f, 1.06f, -0.54f, 1.46f) + curveToRelative(-1.26f, 1.47f, -3.23f, 2.22f, -5.96f, 2.22f) + curveToRelative(-2.74f, 0.0f, -4.7f, -0.75f, -5.96f, -2.22f) + curveToRelative(-0.35f, -0.4f, -0.54f, -0.92f, -0.54f, -1.46f) + verticalLineToRelative(-0.57f) + curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(17.0f, 7.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, -9.03f, -2.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.22f, -0.03f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(5.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 7.25f, 13.0f) + horizontalLineToRelative(0.26f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -0.79f, -1.62f) + curveToRelative(-0.42f, -0.2f, -0.72f, -0.63f, -0.72f, -1.13f) + lineTo(6.0f, 10.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.38f, 0.0f, 0.73f, -0.12f, 1.02f, -0.33f) + arcTo(5.0f, 5.0f, 0.0f, false, false, 17.0f, 7.0f) + close() + moveTo(7.0f, 6.9f) + arcToRelative(5.11f, 5.11f, 0.0f, false, false, 0.0f, 0.2f) + verticalLineToRelative(1.15f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + lineTo(6.0f, 8.5f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(1.0f) + verticalLineToRelative(1.4f) + close() + moveTo(8.5f, 7.1f) + lineTo(8.5f, 6.9f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 0.0f, 0.18f) + close() + } + } + return _personSupport!! + } + +private var _personSupport: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonSwap.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonSwap.kt new file mode 100644 index 00000000..4b40adb7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonSwap.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonSwap: ImageVector + get() { + if (_personSwap != null) { + return _personSwap!! + } + _personSwap = fluentIcon(name = "Regular.PersonSwap") { + fluentPath { + moveTo(15.75f, 14.0f) + curveToRelative(0.98f, 0.0f, 1.82f, 0.62f, 2.12f, 1.5f) + lineTo(4.25f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.57f) + curveToRelative(0.0f, 0.54f, 0.2f, 1.06f, 0.54f, 1.46f) + curveTo(5.29f, 19.75f, 7.26f, 20.5f, 10.0f, 20.5f) + horizontalLineToRelative(0.16f) + curveToRelative(0.09f, 0.18f, 0.2f, 0.35f, 0.35f, 0.5f) + lineToRelative(0.94f, 0.93f) + curveToRelative(-0.47f, 0.05f, -0.95f, 0.07f, -1.45f, 0.07f) + curveToRelative(-3.15f, 0.0f, -5.54f, -0.9f, -7.1f, -2.74f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.9f, -2.44f) + verticalLineToRelative(-0.57f) + curveTo(2.0f, 15.0f, 3.0f, 14.0f, 4.25f, 14.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(10.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(10.0f, 3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + moveTo(14.78f, 17.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.06f) + lineToRelative(2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineToRelative(-1.22f, -1.22f) + horizontalLineToRelative(6.88f) + lineToRelative(-1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.06f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(20.44f, 19.0f) + horizontalLineToRelative(-6.88f) + lineToRelative(1.22f, -1.22f) + close() + } + } + return _personSwap!! + } + +private var _personSwap: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonSync.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonSync.kt new file mode 100644 index 00000000..321ddb1c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonSync.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonSync: ImageVector + get() { + if (_personSync != null) { + return _personSync!! + } + _personSync = fluentIcon(name = "Regular.PersonSync") { + fluentPath { + moveTo(11.31f, 15.5f) + curveToRelative(0.18f, -0.53f, 0.42f, -1.04f, 0.71f, -1.5f) + lineTo(5.25f, 14.0f) + curveTo(4.01f, 14.0f, 3.0f, 15.0f, 3.0f, 16.25f) + verticalLineToRelative(0.58f) + curveToRelative(0.0f, 0.89f, 0.32f, 1.75f, 0.9f, 2.43f) + curveTo(5.47f, 21.1f, 7.85f, 22.0f, 11.0f, 22.0f) + curveToRelative(0.6f, 0.0f, 1.17f, -0.03f, 1.72f, -0.1f) + curveToRelative(-0.4f, -0.42f, -0.73f, -0.9f, -1.0f, -1.42f) + lineToRelative(-0.72f, 0.02f) + curveToRelative(-2.74f, 0.0f, -4.7f, -0.75f, -5.96f, -2.21f) + curveToRelative(-0.34f, -0.41f, -0.54f, -0.93f, -0.54f, -1.46f) + verticalLineToRelative(-0.58f) + curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.06f) + close() + moveTo(11.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, -10.0f) + close() + moveTo(11.0f, 3.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) + close() + moveTo(20.5f, 14.0f) + curveToRelative(0.28f, 0.0f, 0.5f, 0.22f, 0.5f, 0.5f) + verticalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.03f, 0.04f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.8f, -0.59f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 5.33f, -0.4f) + verticalLineToRelative(-0.55f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + close() + moveTo(15.0f, 19.95f) + verticalLineToRelative(0.55f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.91f, 0.11f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.77f, 0.65f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -5.18f, 0.19f) + close() + } + } + return _personSync!! + } + +private var _personSync: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonTag.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonTag.kt new file mode 100644 index 00000000..6303de90 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonTag.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonTag: ImageVector + get() { + if (_personTag != null) { + return _personTag!! + } + _personTag = fluentIcon(name = "Regular.PersonTag") { + fluentPath { + moveTo(11.0f, 14.0f) + verticalLineToRelative(1.5f) + lineTo(4.25f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.74f) + verticalLineToRelative(0.58f) + curveToRelative(0.0f, 0.54f, 0.2f, 1.06f, 0.54f, 1.46f) + curveTo(5.29f, 19.75f, 7.26f, 20.5f, 10.0f, 20.5f) + curveToRelative(1.1f, 0.0f, 2.08f, -0.12f, 2.94f, -0.37f) + lineToRelative(1.17f, 1.2f) + curveToRelative(-1.18f, 0.44f, -2.55f, 0.67f, -4.11f, 0.67f) + curveToRelative(-3.15f, 0.0f, -5.53f, -0.9f, -7.1f, -2.74f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.9f, -2.44f) + verticalLineToRelative(-0.58f) + curveTo(2.0f, 15.0f, 3.0f, 14.0f, 4.25f, 14.0f) + lineTo(11.0f, 14.0f) + close() + moveTo(15.0f, 7.0f) + arcTo(5.0f, 5.0f, 0.0f, true, false, 5.0f, 7.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 10.0f, 0.0f) + close() + moveTo(6.5f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 7.0f, 0.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -7.0f, 0.0f) + close() + moveTo(16.57f, 22.4f) + lineTo(12.57f, 18.33f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.57f, -1.4f) + verticalLineToRelative(-2.94f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(2.92f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.4f, 0.58f) + lineToRelative(4.08f, 4.02f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.02f, 2.83f) + lineToRelative(-3.0f, 3.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.85f, -0.02f) + close() + moveTo(15.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + } + } + return _personTag!! + } + +private var _personTag: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonVoice.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonVoice.kt new file mode 100644 index 00000000..35125ff0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonVoice.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonVoice: ImageVector + get() { + if (_personVoice != null) { + return _personVoice!! + } + _personVoice = fluentIcon(name = "Regular.PersonVoice") { + fluentPath { + moveTo(14.75f, 15.0f) + curveTo(16.0f, 15.0f, 17.0f, 16.0f, 17.0f, 17.25f) + verticalLineToRelative(0.57f) + curveToRelative(0.0f, 0.9f, -0.32f, 1.76f, -0.9f, 2.44f) + curveTo(14.53f, 22.1f, 12.15f, 23.0f, 9.0f, 23.0f) + curveToRelative(-3.15f, 0.0f, -5.53f, -0.9f, -7.1f, -2.74f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.9f, -2.43f) + verticalLineToRelative(-0.58f) + curveTo(1.0f, 16.0f, 2.01f, 15.0f, 3.25f, 15.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(14.75f, 16.5f) + lineTo(3.25f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(0.58f) + curveToRelative(0.0f, 0.53f, 0.2f, 1.05f, 0.54f, 1.46f) + curveTo(4.3f, 20.76f, 6.26f, 21.5f, 9.0f, 21.5f) + curveToRelative(2.74f, 0.0f, 4.7f, -0.74f, 5.96f, -2.21f) + curveToRelative(0.35f, -0.41f, 0.54f, -0.93f, 0.54f, -1.47f) + verticalLineToRelative(-0.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(19.05f, 1.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, 0.28f) + arcToRelative(12.7f, 12.7f, 0.0f, false, true, -0.01f, 12.66f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.3f, -0.75f) + arcToRelative(11.2f, 11.2f, 0.0f, false, false, 0.0f, -11.16f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.28f, -1.03f) + close() + moveTo(9.0f, 3.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 0.0f, 10.0f) + arcTo(5.0f, 5.0f, 0.0f, false, true, 9.0f, 3.0f) + close() + moveTo(15.59f, 3.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.02f, 0.28f) + arcToRelative(8.71f, 8.71f, 0.0f, false, true, 0.0f, 8.65f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.3f, -0.74f) + arcToRelative(7.21f, 7.21f, 0.0f, false, false, 0.0f, -7.17f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.28f, -1.02f) + close() + moveTo(9.0f, 4.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + } + } + return _personVoice!! + } + +private var _personVoice: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonWalking.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonWalking.kt new file mode 100644 index 00000000..9224f0b0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PersonWalking.kt @@ -0,0 +1,99 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PersonWalking: ImageVector + get() { + if (_personWalking != null) { + return _personWalking!! + } + _personWalking = fluentIcon(name = "Regular.PersonWalking") { + fluentPath { + moveTo(13.0f, 3.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(10.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 5.27f, 1.97f) + arcToRelative(2.6f, 2.6f, 0.0f, false, true, 0.76f, 0.76f) + lineTo(17.0f, 9.26f) + lineToRelative(0.16f, 0.23f) + lineToRelative(0.17f, 0.27f) + lineToRelative(1.93f, 0.97f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.0f, 4.03f) + lineToRelative(-2.48f, -1.23f) + arcToRelative(2.15f, 2.15f, 0.0f, false, true, -0.45f, -0.3f) + lineToRelative(-0.1f, -0.08f) + curveToRelative(0.0f, 0.13f, 0.05f, 0.27f, 0.13f, 0.39f) + lineToRelative(0.84f, 1.22f) + curveToRelative(0.33f, 0.5f, 0.53f, 1.04f, 0.58f, 1.63f) + lineToRelative(0.23f, 3.2f) + arcToRelative(2.23f, 2.23f, 0.0f, false, true, -2.08f, 2.39f) + arcToRelative(2.23f, 2.23f, 0.0f, false, true, -2.4f, -2.08f) + lineToRelative(-0.2f, -2.78f) + lineToRelative(-1.03f, -1.26f) + lineToRelative(-1.93f, 4.74f) + curveTo(8.0f, 21.47f, 7.17f, 22.0f, 6.29f, 22.0f) + lineToRelative(-0.04f, -0.01f) + arcToRelative(2.24f, 2.24f, 0.0f, false, true, -2.08f, -3.1f) + lineToRelative(1.8f, -4.42f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -1.82f, -3.03f) + lineToRelative(0.92f, -2.4f) + lineToRelative(0.03f, -0.06f) + lineToRelative(0.52f, -1.36f) + curveToRelative(0.25f, -0.66f, 0.8f, -1.16f, 1.48f, -1.36f) + lineToRelative(2.25f, -0.66f) + lineToRelative(0.09f, -0.03f) + lineToRelative(0.09f, -0.02f) + lineToRelative(0.07f, -0.01f) + curveToRelative(0.15f, -0.03f, 0.3f, -0.04f, 0.44f, -0.04f) + arcTo(3.01f, 3.01f, 0.0f, false, true, 10.0f, 5.0f) + close() + moveTo(10.22f, 7.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.41f, 0.0f) + lineToRelative(-2.3f, 0.67f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.5f, 0.45f) + lineToRelative(-1.46f, 3.83f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.39f, 0.57f) + lineTo(8.16f, 9.8f) + arcToRelative(0.62f, 0.62f, 0.0f, false, true, 1.14f, 0.48f) + lineToRelative(-0.86f, 2.13f) + lineToRelative(-2.88f, 7.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.38f, 0.56f) + lineToRelative(2.2f, -5.39f) + arcToRelative(1.14f, 1.14f, 0.0f, false, true, 1.9f, -0.2f) + lineToRelative(1.68f, 2.04f) + curveToRelative(0.03f, 0.04f, 0.05f, 0.09f, 0.05f, 0.14f) + lineTo(13.0f, 19.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + lineToRelative(-0.23f, -3.19f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -0.31f, -0.87f) + verticalLineToRelative(-0.01f) + lineToRelative(-0.01f, -0.01f) + lineToRelative(-0.84f, -1.23f) + curveToRelative(-0.42f, -0.6f, -0.5f, -1.38f, -0.25f, -2.07f) + lineToRelative(0.25f, -0.64f) + lineToRelative(0.26f, -0.54f) + arcToRelative(0.71f, 0.71f, 0.0f, false, true, 1.17f, -0.15f) + lineToRelative(0.58f, 0.91f) + curveToRelative(0.07f, 0.12f, 0.17f, 0.21f, 0.3f, 0.27f) + lineToRelative(2.5f, 1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.67f, -1.34f) + lineToRelative(-2.32f, -1.16f) + lineToRelative(-0.39f, -0.63f) + arcToRelative(2.28f, 2.28f, 0.0f, false, false, -0.12f, -0.17f) + lineToRelative(-1.03f, -1.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.43f, -0.32f) + lineToRelative(-4.08f, -1.14f) + close() + } + } + return _personWalking!! + } + +private var _personWalking: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Phone.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Phone.kt new file mode 100644 index 00000000..b32c0e3f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Phone.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Phone: ImageVector + get() { + if (_phone != null) { + return _phone!! + } + _phone = fluentIcon(name = "Regular.Phone") { + fluentPath { + moveTo(15.75f, 2.0f) + curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-7.5f) + curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) + lineTo(6.0f, 4.25f) + curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(15.75f, 3.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(7.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(16.5f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(13.25f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.5f) + close() + } + } + return _phone!! + } + +private var _phone: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneAdd.kt new file mode 100644 index 00000000..1c03e8c8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneAdd.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PhoneAdd: ImageVector + get() { + if (_phoneAdd != null) { + return _phoneAdd!! + } + _phoneAdd = fluentIcon(name = "Regular.PhoneAdd") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(13.75f, 2.0f) + curveTo(14.99f, 2.0f, 16.0f, 3.0f, 16.0f, 4.25f) + verticalLineToRelative(6.92f) + curveToRelative(-0.53f, 0.13f, -1.03f, 0.32f, -1.5f, 0.56f) + lineTo(14.5f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(5.48f) + curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(17.5f, 14.0f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) + lineToRelative(-0.01f, 0.1f) + lineTo(17.0f, 17.0f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(0.18f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) + lineToRelative(0.1f, 0.01f) + lineTo(17.0f, 18.0f) + verticalLineToRelative(2.6f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + horizontalLineToRelative(0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) + lineToRelative(0.01f, -0.1f) + lineTo(18.0f, 18.0f) + horizontalLineToRelative(2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + verticalLineToRelative(-0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) + lineToRelative(-0.1f, -0.01f) + lineTo(18.0f, 17.0f) + verticalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) + horizontalLineToRelative(-0.09f) + close() + moveTo(8.75f, 17.5f) + lineTo(11.0f, 17.5f) + curveToRelative(0.0f, 0.52f, 0.06f, 1.02f, 0.17f, 1.5f) + lineTo(8.75f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + } + } + return _phoneAdd!! + } + +private var _phoneAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneArrowRight.kt new file mode 100644 index 00000000..98eaa153 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneArrowRight.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PhoneArrowRight: ImageVector + get() { + if (_phoneArrowRight != null) { + return _phoneArrowRight!! + } + _phoneArrowRight = fluentIcon(name = "Regular.PhoneArrowRight") { + fluentPath { + moveTo(13.75f, 2.0f) + curveTo(14.99f, 2.0f, 16.0f, 3.0f, 16.0f, 4.25f) + verticalLineToRelative(5.77f) + curveToRelative(-0.52f, 0.04f, -1.02f, 0.14f, -1.5f, 0.3f) + lineTo(14.5f, 4.24f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(5.13f) + curveToRelative(0.46f, 0.6f, 1.02f, 1.1f, 1.66f, 1.5f) + lineTo(6.25f, 21.99f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(16.5f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(16.72f, 13.59f) + lineTo(16.65f, 13.65f) + lineTo(16.59f, 13.72f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) + lineToRelative(0.06f, 0.07f) + lineTo(18.29f, 16.0f) + lineTo(13.4f, 16.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(0.18f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(0.06f, -0.07f) + lineToRelative(2.53f, -2.53f) + lineToRelative(0.04f, -0.05f) + lineToRelative(0.04f, -0.08f) + lineToRelative(0.03f, -0.08f) + lineTo(19.99f, 16.39f) + lineToRelative(-0.03f, -0.08f) + lineToRelative(-0.04f, -0.08f) + lineToRelative(-0.04f, -0.05f) + lineToRelative(-2.53f, -2.53f) + lineToRelative(-0.07f, -0.06f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.49f, -0.04f) + lineToRelative(-0.07f, 0.04f) + close() + moveTo(10.08f, 17.5f) + curveToRelative(0.08f, 0.52f, 0.22f, 1.03f, 0.42f, 1.5f) + lineTo(8.75f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.33f) + close() + } + } + return _phoneArrowRight!! + } + +private var _phoneArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneChat.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneChat.kt new file mode 100644 index 00000000..34be9e6a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneChat.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PhoneChat: ImageVector + get() { + if (_phoneChat != null) { + return _phoneChat!! + } + _phoneChat = fluentIcon(name = "Regular.PhoneChat") { + fluentPath { + moveTo(18.0f, 4.25f) + curveTo(18.0f, 3.01f, 17.0f, 2.0f, 15.75f, 2.0f) + horizontalLineToRelative(-7.5f) + curveTo(7.01f, 2.0f, 6.0f, 3.0f, 6.0f, 4.25f) + verticalLineToRelative(15.5f) + curveTo(6.0f, 20.99f, 7.0f, 22.0f, 8.25f, 22.0f) + horizontalLineToRelative(2.84f) + lineToRelative(0.45f, -1.5f) + lineTo(8.25f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(7.5f, 4.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(6.83f) + arcToRelative(6.55f, 6.55f, 0.0f, false, true, 1.5f, -0.06f) + lineTo(18.0f, 4.25f) + close() + moveTo(21.0f, 13.25f) + arcTo(5.48f, 5.48f, 0.0f, false, false, 17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -4.81f, 8.17f) + lineToRelative(-0.67f, 2.19f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.63f, 0.62f) + lineToRelative(2.18f, -0.67f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 21.0f, 13.25f) + close() + moveTo(15.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + horizontalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(17.5f, 19.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + close() + } + } + return _phoneChat!! + } + +private var _phoneChat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneDesktop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneDesktop.kt new file mode 100644 index 00000000..902fc4f3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneDesktop.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PhoneDesktop: ImageVector + get() { + if (_phoneDesktop != null) { + return _phoneDesktop!! + } + _phoneDesktop = fluentIcon(name = "Regular.PhoneDesktop") { + fluentPath { + moveTo(8.25f, 9.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-4.5f) + curveTo(2.78f, 22.0f, 2.0f, 21.22f, 2.0f, 20.25f) + verticalLineToRelative(-9.5f) + curveTo(2.0f, 9.78f, 2.78f, 9.0f, 3.75f, 9.0f) + horizontalLineToRelative(4.5f) + close() + moveTo(8.25f, 10.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(4.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-9.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(6.25f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-0.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.6f) + close() + moveTo(19.75f, 2.0f) + curveToRelative(1.19f, 0.0f, 2.16f, 0.93f, 2.24f, 2.1f) + verticalLineToRelative(9.15f) + curveToRelative(0.0f, 1.2f, -0.92f, 2.17f, -2.09f, 2.24f) + lineToRelative(-0.15f, 0.01f) + lineTo(16.0f, 15.5f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(11.0f, 19.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(-2.0f) + lineTo(11.0f, 15.5f) + lineTo(11.0f, 14.0f) + horizontalLineToRelative(8.75f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + verticalLineToRelative(-9.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.74f, -0.75f) + lineTo(6.25f, 3.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + lineTo(5.5f, 8.0f) + lineTo(4.0f, 8.0f) + lineTo(4.0f, 4.25f) + curveToRelative(0.0f, -1.2f, 0.92f, -2.17f, 2.1f, -2.24f) + lineTo(6.25f, 2.0f) + horizontalLineToRelative(13.5f) + close() + } + } + return _phoneDesktop!! + } + +private var _phoneDesktop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneDismiss.kt new file mode 100644 index 00000000..1b2e84c5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneDismiss.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PhoneDismiss: ImageVector + get() { + if (_phoneDismiss != null) { + return _phoneDismiss!! + } + _phoneDismiss = fluentIcon(name = "Regular.PhoneDismiss") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(13.75f, 2.0f) + curveTo(14.99f, 2.0f, 16.0f, 3.0f, 16.0f, 4.25f) + verticalLineToRelative(6.92f) + curveToRelative(-0.53f, 0.13f, -1.03f, 0.32f, -1.5f, 0.56f) + lineTo(14.5f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(5.48f) + curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(15.09f, 14.97f) + lineTo(15.02f, 15.02f) + lineTo(14.97f, 15.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.05f, 0.07f) + lineToRelative(1.77f, 1.77f) + lineToRelative(-1.76f, 1.77f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.06f, 0.06f) + lineToRelative(0.07f, 0.06f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) + lineToRelative(0.07f, -0.06f) + lineToRelative(1.77f, -1.76f) + lineToRelative(1.77f, 1.77f) + lineToRelative(0.07f, 0.05f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.57f, 0.0f) + lineToRelative(0.07f, -0.05f) + lineToRelative(0.05f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) + lineToRelative(-0.05f, -0.07f) + lineToRelative(-1.77f, -1.77f) + lineToRelative(1.77f, -1.77f) + lineToRelative(0.06f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.57f) + lineToRelative(-0.06f, -0.07f) + lineToRelative(-0.07f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.57f, 0.0f) + lineToRelative(-0.07f, 0.05f) + lineToRelative(-1.77f, 1.77f) + lineToRelative(-1.77f, -1.77f) + lineToRelative(-0.07f, -0.05f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.05f) + lineToRelative(-0.07f, 0.05f) + close() + moveTo(8.75f, 17.5f) + lineTo(11.0f, 17.5f) + curveToRelative(0.0f, 0.52f, 0.06f, 1.02f, 0.17f, 1.5f) + lineTo(8.75f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + } + } + return _phoneDismiss!! + } + +private var _phoneDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneKey.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneKey.kt new file mode 100644 index 00000000..bceea3fa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneKey.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PhoneKey: ImageVector + get() { + if (_phoneKey != null) { + return _phoneKey!! + } + _phoneKey = fluentIcon(name = "Regular.PhoneKey") { + fluentPath { + moveTo(15.75f, 2.0f) + curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) + verticalLineToRelative(7.0f) + curveToRelative(-0.56f, 0.2f, -1.07f, 0.5f, -1.5f, 0.9f) + verticalLineToRelative(-7.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(2.78f) + curveToRelative(-0.02f, 0.1f, -0.03f, 0.2f, -0.03f, 0.31f) + lineTo(11.0f, 22.0f) + lineTo(8.25f, 22.0f) + curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) + lineTo(6.0f, 4.25f) + curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(13.25f, 17.5f) + curveToRelative(0.1f, 0.0f, 0.2f, 0.02f, 0.28f, 0.05f) + lineTo(12.08f, 19.0f) + horizontalLineToRelative(-1.33f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.5f) + close() + moveTo(19.5f, 19.0f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, -3.38f, -2.59f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.15f, 0.12f) + lineToRelative(-3.75f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.22f, 0.53f) + verticalLineToRelative(1.44f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(1.75f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(15.0f, 22.0f) + horizontalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(1.5f) + close() + moveTo(21.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + } + } + return _phoneKey!! + } + +private var _phoneKey: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneLaptop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneLaptop.kt new file mode 100644 index 00000000..0197e897 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneLaptop.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PhoneLaptop: ImageVector + get() { + if (_phoneLaptop != null) { + return _phoneLaptop!! + } + _phoneLaptop = fluentIcon(name = "Regular.PhoneLaptop") { + fluentPath { + moveTo(8.25f, 8.0f) + curveTo(9.22f, 8.0f, 10.0f, 8.8f, 10.0f, 9.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-4.5f) + curveTo(2.78f, 21.0f, 2.0f, 20.22f, 2.0f, 19.25f) + verticalLineToRelative(-9.5f) + curveTo(2.0f, 8.8f, 2.78f, 8.0f, 3.75f, 8.0f) + horizontalLineToRelative(4.5f) + close() + moveTo(8.25f, 9.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(4.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.1f, 0.25f, -0.25f) + verticalLineToRelative(-9.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(6.25f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-0.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.6f) + close() + moveTo(21.25f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(11.0f, 18.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(10.25f) + close() + moveTo(18.25f, 5.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(11.0f, 16.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(7.25f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-7.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + lineTo(5.75f, 6.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + lineTo(5.5f, 7.0f) + lineTo(4.0f, 7.0f) + verticalLineToRelative(-0.25f) + curveTo(4.0f, 5.78f, 4.78f, 5.0f, 5.75f, 5.0f) + horizontalLineToRelative(12.5f) + close() + } + } + return _phoneLaptop!! + } + +private var _phoneLaptop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneLinkSetup.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneLinkSetup.kt new file mode 100644 index 00000000..3997feb9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneLinkSetup.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PhoneLinkSetup: ImageVector + get() { + if (_phoneLinkSetup != null) { + return _phoneLinkSetup!! + } + _phoneLinkSetup = fluentIcon(name = "Regular.PhoneLinkSetup") { + fluentPath { + moveTo(17.5f, 12.0f) + curveToRelative(0.3f, 0.0f, 0.58f, 0.02f, 0.86f, 0.07f) + lineToRelative(0.17f, 0.72f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.42f, 1.47f) + lineToRelative(0.1f, -0.02f) + lineToRelative(0.6f, -0.18f) + curveToRelative(0.36f, 0.46f, 0.65f, 1.0f, 0.85f, 1.57f) + lineToRelative(-0.45f, 0.43f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.17f, 2.7f) + lineToRelative(0.15f, 0.15f) + lineToRelative(0.47f, 0.46f) + curveToRelative(-0.2f, 0.57f, -0.5f, 1.1f, -0.85f, 1.57f) + lineToRelative(-0.6f, -0.18f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.49f, 1.35f) + lineToRelative(-0.03f, 0.1f) + lineToRelative(-0.17f, 0.72f) + arcToRelative(5.18f, 5.18f, 0.0f, false, true, -1.72f, 0.0f) + lineToRelative(-0.17f, -0.72f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.42f, -1.47f) + lineToRelative(-0.1f, 0.02f) + lineToRelative(-0.6f, 0.18f) + curveToRelative(-0.36f, -0.47f, -0.65f, -1.0f, -0.85f, -1.57f) + lineToRelative(0.45f, -0.43f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.17f, -2.7f) + lineToRelative(-0.15f, -0.15f) + lineToRelative(-0.47f, -0.46f) + curveToRelative(0.2f, -0.58f, 0.5f, -1.1f, 0.85f, -1.57f) + lineToRelative(0.6f, 0.18f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.49f, -1.35f) + lineToRelative(0.03f, -0.1f) + lineToRelative(0.17f, -0.72f) + curveToRelative(0.28f, -0.05f, 0.57f, -0.07f, 0.86f, -0.07f) + close() + moveTo(13.75f, 2.0f) + curveTo(14.99f, 2.0f, 16.0f, 3.0f, 16.0f, 4.25f) + verticalLineToRelative(6.92f) + curveToRelative(-0.53f, 0.13f, -1.03f, 0.32f, -1.5f, 0.56f) + lineTo(14.5f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(5.48f) + curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(8.75f, 17.5f) + lineTo(11.0f, 17.5f) + curveToRelative(0.0f, 0.52f, 0.06f, 1.02f, 0.17f, 1.5f) + lineTo(8.75f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(17.5f, 16.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, 0.67f, -1.45f, 1.5f) + reflectiveCurveTo(16.7f, 19.0f, 17.5f, 19.0f) + curveToRelative(0.8f, 0.0f, 1.45f, -0.67f, 1.45f, -1.5f) + reflectiveCurveTo(18.3f, 16.0f, 17.5f, 16.0f) + close() + } + } + return _phoneLinkSetup!! + } + +private var _phoneLinkSetup: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneLock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneLock.kt new file mode 100644 index 00000000..56265e43 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneLock.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PhoneLock: ImageVector + get() { + if (_phoneLock != null) { + return _phoneLock!! + } + _phoneLock = fluentIcon(name = "Regular.PhoneLock") { + fluentPath { + moveTo(13.75f, 2.0f) + curveTo(14.99f, 2.0f, 16.0f, 3.0f, 16.0f, 4.25f) + verticalLineToRelative(6.59f) + curveToRelative(-0.62f, 0.3f, -1.15f, 0.77f, -1.5f, 1.36f) + lineTo(14.5f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(12.0f, 20.5f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 0.17f, 0.02f, 0.34f, 0.05f, 0.5f) + horizontalLineToRelative(-5.8f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(15.0f, 14.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(0.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-6.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(0.5f) + verticalLineToRelative(-1.0f) + close() + moveTo(16.5f, 14.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + close() + moveTo(18.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + moveTo(12.0f, 18.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.33f, 0.75f, 0.75f) + close() + } + } + return _phoneLock!! + } + +private var _phoneLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhonePageHeader.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhonePageHeader.kt new file mode 100644 index 00000000..b9c51de8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhonePageHeader.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PhonePageHeader: ImageVector + get() { + if (_phonePageHeader != null) { + return _phonePageHeader!! + } + _phonePageHeader = fluentIcon(name = "Regular.PhonePageHeader") { + fluentPath { + moveTo(15.75f, 2.0f) + curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-7.5f) + curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) + lineTo(6.0f, 4.25f) + curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(16.5f, 5.0f) + horizontalLineToRelative(-9.0f) + verticalLineToRelative(14.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(7.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(16.5f, 5.0f) + close() + } + } + return _phonePageHeader!! + } + +private var _phonePageHeader: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhonePagination.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhonePagination.kt new file mode 100644 index 00000000..c6166896 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhonePagination.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PhonePagination: ImageVector + get() { + if (_phonePagination != null) { + return _phonePagination!! + } + _phonePagination = fluentIcon(name = "Regular.PhonePagination") { + fluentPath { + moveTo(15.75f, 2.0f) + curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-7.5f) + curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) + lineTo(6.0f, 4.25f) + curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(15.75f, 3.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(7.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(16.5f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(9.5f, 17.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(12.0f, 17.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(14.5f, 17.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + } + } + return _phonePagination!! + } + +private var _phonePagination: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneScreenTime.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneScreenTime.kt new file mode 100644 index 00000000..485da844 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneScreenTime.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PhoneScreenTime: ImageVector + get() { + if (_phoneScreenTime != null) { + return _phoneScreenTime!! + } + _phoneScreenTime = fluentIcon(name = "Regular.PhoneScreenTime") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(13.75f, 2.0f) + curveTo(14.99f, 2.0f, 16.0f, 3.0f, 16.0f, 4.25f) + verticalLineToRelative(6.92f) + curveToRelative(-0.53f, 0.13f, -1.03f, 0.32f, -1.5f, 0.56f) + lineTo(14.5f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(5.48f) + curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) + lineTo(6.25f, 22.0f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(8.75f, 17.5f) + lineTo(11.0f, 17.5f) + curveToRelative(0.0f, 0.52f, 0.06f, 1.02f, 0.17f, 1.5f) + lineTo(8.75f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(16.5f, 14.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + lineTo(17.0f, 18.0f) + verticalLineToRelative(-3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + } + } + return _phoneScreenTime!! + } + +private var _phoneScreenTime: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneShake.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneShake.kt new file mode 100644 index 00000000..9c7d8aa0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneShake.kt @@ -0,0 +1,96 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PhoneShake: ImageVector + get() { + if (_phoneShake != null) { + return _phoneShake!! + } + _phoneShake = fluentIcon(name = "Regular.PhoneShake") { + fluentPath { + moveTo(18.68f, 2.4f) + curveToRelative(0.2f, -0.37f, 0.65f, -0.5f, 1.01f, -0.3f) + arcToRelative(4.9f, 4.9f, 0.0f, false, true, 1.72f, 6.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.33f, -0.7f) + lineToRelative(0.05f, -0.09f) + arcToRelative(3.4f, 3.4f, 0.0f, false, false, -1.16f, -4.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.3f, -1.02f) + close() + moveTo(14.68f, 15.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.91f, -0.53f) + lineToRelative(-1.93f, 0.52f) + lineToRelative(-0.1f, 0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.49f, 1.42f) + lineToRelative(1.93f, -0.52f) + lineToRelative(0.1f, -0.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.43f, -0.88f) + close() + moveTo(15.1f, 5.66f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.76f, -1.59f) + lineTo(7.74f, 5.3f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.58f, 2.76f) + lineTo(8.9f, 18.34f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.76f, 1.6f) + lineToRelative(4.6f, -1.23f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 1.58f, -2.76f) + lineTo(15.1f, 5.66f) + close() + moveTo(12.73f, 5.52f) + curveToRelative(0.4f, -0.1f, 0.8f, 0.13f, 0.92f, 0.53f) + lineToRelative(2.75f, 10.29f) + curveToRelative(0.11f, 0.4f, -0.13f, 0.81f, -0.53f, 0.92f) + lineToRelative(-4.6f, 1.23f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.91f, -0.53f) + lineTo(7.6f, 7.67f) + curveToRelative(-0.1f, -0.4f, 0.14f, -0.81f, 0.54f, -0.92f) + lineToRelative(4.59f, -1.23f) + close() + moveTo(18.55f, 4.3f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.9f, 1.2f) + lineToRelative(0.02f, 0.02f) + lineToRelative(0.16f, 0.18f) + curveToRelative(0.08f, 0.1f, 0.14f, 0.21f, 0.17f, 0.31f) + arcToRelative(1.07f, 1.07f, 0.0f, false, true, -0.04f, 0.58f) + lineToRelative(-0.05f, 0.14f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.42f, 0.49f) + lineToRelative(0.05f, -0.13f) + lineToRelative(0.05f, -0.18f) + curveToRelative(0.1f, -0.41f, 0.13f, -0.85f, 0.01f, -1.29f) + arcToRelative(2.6f, 2.6f, 0.0f, false, false, -0.9f, -1.32f) + close() + moveTo(2.54f, 15.41f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, 0.66f) + lineToRelative(-0.1f, 0.2f) + lineToRelative(-0.1f, 0.28f) + arcToRelative(3.54f, 3.54f, 0.0f, false, false, 0.6f, 3.36f) + curveToRelative(0.26f, 0.32f, 0.51f, 0.54f, 0.68f, 0.65f) + lineToRelative(0.07f, 0.04f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.75f, 1.3f) + arcToRelative(5.04f, 5.04f, 0.0f, false, true, -1.74f, -6.49f) + close() + moveTo(5.65f, 16.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.4f) + arcToRelative(1.8f, 1.8f, 0.0f, false, false, -0.04f, 0.14f) + lineToRelative(-0.06f, 0.17f) + arcToRelative(2.42f, 2.42f, 0.0f, false, false, 0.4f, 2.11f) + curveToRelative(0.18f, 0.23f, 0.35f, 0.4f, 0.48f, 0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.92f, -1.2f) + lineToRelative(-0.04f, -0.02f) + curveToRelative(-0.04f, -0.04f, -0.1f, -0.1f, -0.15f, -0.18f) + arcToRelative(0.95f, 0.95f, 0.0f, false, true, -0.17f, -0.31f) + arcToRelative(1.07f, 1.07f, 0.0f, false, true, 0.03f, -0.58f) + lineToRelative(0.05f, -0.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.44f, -0.88f) + close() + } + } + return _phoneShake!! + } + +private var _phoneShake: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneSpanIn.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneSpanIn.kt new file mode 100644 index 00000000..60c26435 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneSpanIn.kt @@ -0,0 +1,100 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PhoneSpanIn: ImageVector + get() { + if (_phoneSpanIn != null) { + return _phoneSpanIn!! + } + _phoneSpanIn = fluentIcon(name = "Regular.PhoneSpanIn") { + fluentPath { + moveTo(6.0f, 16.07f) + curveToRelative(0.48f, 0.23f, 1.03f, 0.23f, 1.5f, 0.01f) + verticalLineToRelative(3.67f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(7.5f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + verticalLineToRelative(-3.68f) + curveToRelative(0.5f, 0.23f, 1.04f, 0.23f, 1.5f, 0.01f) + verticalLineToRelative(3.67f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + horizontalLineToRelative(-7.5f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(6.0f, 19.75f) + verticalLineToRelative(-3.68f) + close() + moveTo(17.78f, 8.97f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-1.22f, 1.22f) + horizontalLineToRelative(3.78f) + curveToRelative(0.37f, 0.0f, 0.66f, 0.33f, 0.66f, 0.75f) + curveToRelative(0.0f, 0.38f, -0.25f, 0.7f, -0.57f, 0.74f) + lineTo(16.56f, 12.74f) + lineToRelative(1.22f, 1.23f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-2.37f, -2.37f) + arcTo(0.77f, 0.77f, 0.0f, false, true, 14.0f, 12.0f) + curveToRelative(0.0f, -0.29f, 0.14f, -0.54f, 0.35f, -0.66f) + lineToRelative(2.37f, -2.37f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(7.2f, 8.9f) + lineToRelative(0.08f, 0.07f) + lineToRelative(2.37f, 2.37f) + curveToRelative(0.2f, 0.12f, 0.35f, 0.37f, 0.35f, 0.66f) + curveToRelative(0.0f, 0.25f, -0.1f, 0.47f, -0.28f, 0.61f) + lineToRelative(-0.07f, 0.05f) + lineToRelative(-2.37f, 2.37f) + lineToRelative(-0.08f, 0.07f) + curveToRelative(-0.27f, 0.2f, -0.62f, 0.2f, -0.89f, 0.01f) + lineToRelative(-0.1f, -0.08f) + lineToRelative(-0.06f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.01f, -0.89f) + lineToRelative(0.08f, -0.09f) + lineToRelative(1.22f, -1.22f) + lineTo(3.56f, 12.75f) + curveTo(3.26f, 12.68f, 3.0f, 12.37f, 3.0f, 12.0f) + reflectiveCurveToRelative(0.25f, -0.7f, 0.57f, -0.74f) + lineToRelative(0.09f, -0.01f) + horizontalLineToRelative(3.78f) + lineToRelative(-1.22f, -1.22f) + lineToRelative(-0.07f, -0.09f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 7.2f, 8.9f) + close() + moveTo(15.75f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(3.67f) + arcToRelative(1.76f, 1.76f, 0.0f, false, false, -1.5f, 0.0f) + lineTo(16.5f, 4.25f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-7.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(3.67f) + arcToRelative(1.76f, 1.76f, 0.0f, false, false, -1.5f, 0.0f) + lineTo(6.0f, 4.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(8.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + } + } + return _phoneSpanIn!! + } + +private var _phoneSpanIn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneSpanOut.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneSpanOut.kt new file mode 100644 index 00000000..6fcd1df8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneSpanOut.kt @@ -0,0 +1,105 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PhoneSpanOut: ImageVector + get() { + if (_phoneSpanOut != null) { + return _phoneSpanOut!! + } + _phoneSpanOut = fluentIcon(name = "Regular.PhoneSpanOut") { + fluentPath { + moveToRelative(16.5f, 15.72f) + lineToRelative(0.01f, 0.02f) + curveToRelative(0.4f, 0.4f, 0.95f, 0.57f, 1.49f, 0.48f) + verticalLineToRelative(3.53f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + horizontalLineToRelative(-7.5f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineTo(6.0f, 19.75f) + verticalLineToRelative(-3.53f) + curveToRelative(0.49f, 0.08f, 0.98f, -0.05f, 1.36f, -0.37f) + lineToRelative(0.14f, -0.13f) + verticalLineToRelative(4.03f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(7.5f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + verticalLineToRelative(-4.03f) + close() + moveTo(6.78f, 8.97f) + curveToRelative(0.27f, 0.26f, 0.3f, 0.68f, 0.07f, 0.97f) + lineToRelative(-0.07f, 0.09f) + lineToRelative(-1.22f, 1.22f) + horizontalLineToRelative(3.78f) + curveToRelative(0.37f, 0.0f, 0.66f, 0.33f, 0.66f, 0.75f) + curveToRelative(0.0f, 0.38f, -0.25f, 0.7f, -0.57f, 0.74f) + lineTo(5.56f, 12.74f) + lineToRelative(1.22f, 1.23f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-2.37f, -2.37f) + arcTo(0.77f, 0.77f, 0.0f, false, true, 3.0f, 12.0f) + curveToRelative(0.0f, -0.29f, 0.14f, -0.54f, 0.35f, -0.66f) + lineToRelative(2.37f, -2.37f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(17.22f, 8.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.08f) + lineToRelative(0.08f, 0.08f) + lineToRelative(2.37f, 2.36f) + curveToRelative(0.2f, 0.13f, 0.35f, 0.38f, 0.35f, 0.67f) + curveToRelative(0.0f, 0.25f, -0.1f, 0.47f, -0.28f, 0.6f) + lineToRelative(-0.07f, 0.06f) + lineToRelative(-2.37f, 2.37f) + lineToRelative(-0.08f, 0.07f) + curveToRelative(-0.27f, 0.2f, -0.62f, 0.2f, -0.89f, 0.0f) + lineToRelative(-0.1f, -0.07f) + lineToRelative(-0.06f, -0.09f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.01f, -0.88f) + lineToRelative(0.08f, -0.1f) + lineToRelative(1.22f, -1.21f) + horizontalLineToRelative(-3.78f) + lineToRelative(-0.1f, -0.01f) + curveToRelative(-0.31f, -0.05f, -0.56f, -0.37f, -0.56f, -0.74f) + curveToRelative(0.0f, -0.38f, 0.25f, -0.7f, 0.57f, -0.75f) + lineTo(18.44f, 11.25f) + lineToRelative(-1.22f, -1.22f) + lineToRelative(-0.07f, -0.09f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.07f, -0.97f) + close() + moveTo(15.75f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(3.52f) + curveToRelative(-0.47f, -0.07f, -0.97f, 0.06f, -1.36f, 0.38f) + lineToRelative(-0.14f, 0.12f) + lineTo(16.5f, 4.25f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-7.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(4.02f) + horizontalLineToRelative(-0.01f) + curveToRelative(-0.4f, -0.41f, -0.96f, -0.58f, -1.5f, -0.5f) + lineTo(6.0f, 4.25f) + curveToRelative(0.0f, -1.2f, 0.93f, -2.17f, 2.1f, -2.24f) + lineTo(8.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + } + } + return _phoneSpanOut!! + } + +private var _phoneSpanOut: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneSpeaker.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneSpeaker.kt new file mode 100644 index 00000000..b3bea33e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneSpeaker.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PhoneSpeaker: ImageVector + get() { + if (_phoneSpeaker != null) { + return _phoneSpeaker!! + } + _phoneSpeaker = fluentIcon(name = "Regular.PhoneSpeaker") { + fluentPath { + moveTo(13.75f, 2.0f) + curveTo(14.99f, 2.0f, 16.0f, 3.0f, 16.0f, 4.25f) + verticalLineToRelative(8.67f) + curveToRelative(-0.37f, 0.05f, -0.73f, 0.23f, -1.03f, 0.54f) + lineToRelative(-0.47f, 0.5f) + lineTo(14.5f, 4.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(7.5f) + curveToRelative(0.08f, 0.0f, 0.15f, -0.01f, 0.22f, -0.03f) + lineToRelative(1.0f, 1.07f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.06f, 0.06f) + curveToRelative(-0.36f, 0.25f, -0.8f, 0.4f, -1.28f, 0.4f) + horizontalLineToRelative(-7.5f) + curveTo(5.01f, 22.0f, 4.0f, 21.0f, 4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveTo(4.0f, 3.01f, 5.0f, 2.0f, 6.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(8.75f, 17.5f) + lineTo(11.0f, 17.5f) + lineTo(11.0f, 19.0f) + lineTo(8.75f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(22.15f, 14.3f) + arcToRelative(4.53f, 4.53f, 0.0f, false, false, -0.92f, -1.13f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.96f, 1.16f) + curveToRelative(0.13f, 0.1f, 0.35f, 0.35f, 0.59f, 0.74f) + curveToRelative(0.4f, 0.67f, 0.64f, 1.48f, 0.64f, 2.43f) + curveToRelative(0.0f, 0.95f, -0.24f, 1.76f, -0.64f, 2.43f) + curveToRelative(-0.24f, 0.39f, -0.46f, 0.64f, -0.59f, 0.74f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.96f, 1.16f) + curveToRelative(0.25f, -0.21f, 0.59f, -0.58f, 0.91f, -1.13f) + curveToRelative(0.54f, -0.9f, 0.86f, -1.96f, 0.86f, -3.2f) + curveToRelative(0.0f, -1.24f, -0.32f, -2.3f, -0.86f, -3.2f) + close() + moveTo(19.87f, 15.4f) + curveToRelative(-0.23f, -0.36f, -0.48f, -0.6f, -0.67f, -0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 1.2f) + arcToRelative(2.24f, 2.24f, 0.0f, false, true, 0.7f, 1.65f) + arcToRelative(2.24f, 2.24f, 0.0f, false, true, -0.7f, 1.65f) + lineToRelative(-0.08f, 0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) + arcToRelative(3.73f, 3.73f, 0.0f, false, false, 1.3f, -2.85f) + curveToRelative(0.0f, -0.81f, -0.23f, -1.52f, -0.63f, -2.1f) + close() + moveTo(17.0f, 14.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.31f, -0.5f) + lineTo(14.16f, 16.0f) + horizontalLineToRelative(-1.41f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(1.41f) + lineToRelative(1.53f, 1.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.31f, -0.49f) + verticalLineToRelative(-5.5f) + close() + } + } + return _phoneSpeaker!! + } + +private var _phoneSpeaker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneStatusBar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneStatusBar.kt new file mode 100644 index 00000000..7415a5de --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneStatusBar.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PhoneStatusBar: ImageVector + get() { + if (_phoneStatusBar != null) { + return _phoneStatusBar!! + } + _phoneStatusBar = fluentIcon(name = "Regular.PhoneStatusBar") { + fluentPath { + moveTo(15.75f, 2.0f) + curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-7.5f) + curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) + lineTo(6.0f, 4.25f) + curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(15.75f, 3.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(7.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(16.5f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(14.75f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(5.5f) + close() + } + } + return _phoneStatusBar!! + } + +private var _phoneStatusBar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneTablet.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneTablet.kt new file mode 100644 index 00000000..b4c17ff7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneTablet.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PhoneTablet: ImageVector + get() { + if (_phoneTablet != null) { + return _phoneTablet!! + } + _phoneTablet = fluentIcon(name = "Regular.PhoneTablet") { + fluentPath { + moveTo(8.25f, 7.0f) + curveTo(9.22f, 7.0f, 10.0f, 7.78f, 10.0f, 8.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-4.5f) + curveTo(2.78f, 20.0f, 2.0f, 19.22f, 2.0f, 18.25f) + verticalLineToRelative(-9.5f) + curveTo(2.0f, 7.78f, 2.78f, 7.0f, 3.75f, 7.0f) + horizontalLineToRelative(4.5f) + close() + moveTo(8.25f, 8.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(4.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-9.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(6.25f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-0.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.6f) + close() + moveTo(19.75f, 4.0f) + curveToRelative(1.19f, 0.0f, 2.16f, 0.93f, 2.24f, 2.1f) + verticalLineToRelative(8.65f) + curveToRelative(0.0f, 1.2f, -0.92f, 2.17f, -2.09f, 2.24f) + lineToRelative(-0.15f, 0.01f) + lineTo(11.0f, 17.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(8.75f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + verticalLineToRelative(-8.6f) + curveToRelative(0.0f, -0.38f, -0.27f, -0.7f, -0.64f, -0.74f) + lineToRelative(-0.1f, -0.01f) + lineTo(8.25f, 5.5f) + curveToRelative(-0.33f, 0.0f, -0.6f, 0.2f, -0.7f, 0.5f) + lineTo(6.0f, 6.0f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 8.1f, 4.0f) + horizontalLineToRelative(11.66f) + close() + moveTo(15.25f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.5f) + close() + } + } + return _phoneTablet!! + } + +private var _phoneTablet: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneUpdate.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneUpdate.kt new file mode 100644 index 00000000..17131ac0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneUpdate.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PhoneUpdate: ImageVector + get() { + if (_phoneUpdate != null) { + return _phoneUpdate!! + } + _phoneUpdate = fluentIcon(name = "Regular.PhoneUpdate") { + fluentPath { + moveTo(15.75f, 2.0f) + curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-7.5f) + curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) + lineTo(6.0f, 4.25f) + curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(15.75f, 3.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(7.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(16.5f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(12.0f, 7.03f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(6.71f) + lineToRelative(0.96f, -0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-2.24f, 2.24f) + lineToRelative(-0.04f, 0.04f) + lineToRelative(-0.06f, 0.05f) + lineToRelative(-0.07f, 0.04f) + lineToRelative(-0.06f, 0.03f) + lineToRelative(-0.1f, 0.04f) + lineToRelative(-0.06f, 0.01f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-0.09f) + lineToRelative(-0.09f, -0.01f) + lineToRelative(-0.1f, -0.02f) + lineToRelative(-0.1f, -0.05f) + lineToRelative(-0.08f, -0.05f) + lineToRelative(-0.11f, -0.09f) + lineToRelative(-2.24f, -2.24f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -1.13f) + lineToRelative(0.09f, 0.07f) + lineToRelative(0.96f, 0.96f) + lineTo(11.25f, 7.8f) + curveToRelative(0.0f, -0.35f, 0.23f, -0.64f, 0.55f, -0.73f) + lineToRelative(0.1f, -0.02f) + horizontalLineToRelative(0.1f) + close() + } + } + return _phoneUpdate!! + } + +private var _phoneUpdate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneUpdateCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneUpdateCheckmark.kt new file mode 100644 index 00000000..74631cda --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneUpdateCheckmark.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PhoneUpdateCheckmark: ImageVector + get() { + if (_phoneUpdateCheckmark != null) { + return _phoneUpdateCheckmark!! + } + _phoneUpdateCheckmark = fluentIcon(name = "Regular.PhoneUpdateCheckmark") { + fluentPath { + moveTo(8.25f, 22.0f) + horizontalLineToRelative(4.56f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, -1.5f) + lineTo(8.25f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(7.5f, 4.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(6.83f) + arcToRelative(6.55f, 6.55f, 0.0f, false, true, 1.5f, -0.06f) + lineTo(18.0f, 4.25f) + curveTo(18.0f, 3.01f, 17.0f, 2.0f, 15.75f, 2.0f) + horizontalLineToRelative(-7.5f) + curveTo(7.01f, 2.0f, 6.0f, 3.0f, 6.0f, 4.25f) + verticalLineToRelative(15.5f) + curveTo(6.0f, 20.99f, 7.0f, 22.0f, 8.25f, 22.0f) + close() + moveTo(11.25f, 15.7f) + curveToRelative(0.29f, -1.0f, 0.8f, -1.9f, 1.5f, -2.64f) + lineTo(12.75f, 9.51f) + lineToRelative(0.96f, 0.96f) + curveToRelative(0.27f, 0.27f, 0.68f, 0.29f, 0.98f, 0.07f) + lineToRelative(0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.07f, -0.98f) + lineToRelative(-0.07f, -0.08f) + lineToRelative(-2.24f, -2.24f) + lineToRelative(-0.04f, -0.04f) + lineToRelative(-0.06f, -0.05f) + lineToRelative(-0.07f, -0.04f) + lineToRelative(-0.06f, -0.03f) + lineToRelative(-0.1f, -0.04f) + lineToRelative(-0.06f, -0.01f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-0.09f) + lineToRelative(-0.09f, 0.01f) + lineToRelative(-0.1f, 0.02f) + lineToRelative(-0.1f, 0.05f) + lineToRelative(-0.08f, 0.05f) + lineToRelative(-0.11f, 0.09f) + lineTo(9.23f, 9.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.97f, 1.13f) + lineToRelative(0.09f, -0.07f) + lineToRelative(0.96f, -0.96f) + verticalLineToRelative(6.2f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-3.65f, 3.64f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _phoneUpdateCheckmark!! + } + +private var _phoneUpdateCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneVerticalScroll.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneVerticalScroll.kt new file mode 100644 index 00000000..497fcae1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneVerticalScroll.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PhoneVerticalScroll: ImageVector + get() { + if (_phoneVerticalScroll != null) { + return _phoneVerticalScroll!! + } + _phoneVerticalScroll = fluentIcon(name = "Regular.PhoneVerticalScroll") { + fluentPath { + moveTo(15.75f, 2.0f) + curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-7.5f) + curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) + lineTo(6.0f, 4.25f) + curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(15.75f, 3.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(7.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(16.5f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(14.78f, 13.46f) + curveToRelative(0.26f, 0.27f, 0.3f, 0.68f, 0.08f, 0.98f) + lineToRelative(-0.07f, 0.09f) + lineToRelative(-2.25f, 2.3f) + curveToRelative(-0.27f, 0.26f, -0.7f, 0.29f, -1.0f, 0.07f) + lineToRelative(-0.08f, -0.08f) + lineToRelative(-2.25f, -2.3f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.99f, -1.12f) + lineToRelative(0.08f, 0.07f) + lineTo(12.0f, 15.22f) + lineToRelative(1.71f, -1.75f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(12.54f, 7.23f) + lineTo(14.79f, 9.53f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.08f, 1.04f) + lineTo(12.0f, 8.82f) + lineToRelative(-1.72f, 1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.07f, -1.05f) + lineToRelative(2.25f, -2.3f) + curveToRelative(0.3f, -0.3f, 0.78f, -0.3f, 1.08f, 0.0f) + close() + } + } + return _phoneVerticalScroll!! + } + +private var _phoneVerticalScroll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneVibrate.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneVibrate.kt new file mode 100644 index 00000000..a47597fd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhoneVibrate.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PhoneVibrate: ImageVector + get() { + if (_phoneVibrate != null) { + return _phoneVibrate!! + } + _phoneVibrate = fluentIcon(name = "Regular.PhoneVibrate") { + fluentPath { + moveTo(15.75f, 2.0f) + curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-7.5f) + curveTo(7.0f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) + lineTo(6.0f, 4.25f) + curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(15.75f, 3.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.41f, 0.33f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(7.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(16.5f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(13.25f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.5f) + close() + moveTo(20.65f, 8.13f) + lineTo(20.7f, 8.23f) + lineTo(21.28f, 9.68f) + curveToRelative(0.33f, 0.83f, 0.24f, 1.77f, -0.25f, 2.51f) + lineToRelative(-0.1f, 0.16f) + lineToRelative(-0.16f, 0.2f) + curveToRelative(-0.23f, 0.31f, -0.3f, 0.7f, -0.2f, 1.08f) + lineToRelative(0.04f, 0.14f) + lineToRelative(0.59f, 1.45f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.65f) + lineToRelative(-0.05f, -0.1f) + lineToRelative(-0.58f, -1.45f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.24f, -2.51f) + lineToRelative(0.11f, -0.16f) + lineToRelative(0.15f, -0.2f) + curveToRelative(0.24f, -0.31f, 0.31f, -0.7f, 0.21f, -1.08f) + lineToRelative(-0.04f, -0.14f) + lineToRelative(-0.59f, -1.45f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.29f, -0.74f) + lineToRelative(0.06f, 0.09f) + close() + moveTo(4.15f, 8.13f) + lineTo(4.2f, 8.23f) + lineTo(4.78f, 9.68f) + curveToRelative(0.33f, 0.83f, 0.24f, 1.77f, -0.25f, 2.51f) + lineToRelative(-0.1f, 0.16f) + lineToRelative(-0.16f, 0.2f) + curveToRelative(-0.23f, 0.31f, -0.3f, 0.7f, -0.2f, 1.08f) + lineToRelative(0.04f, 0.14f) + lineToRelative(0.59f, 1.45f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.65f) + lineToRelative(-0.05f, -0.1f) + lineToRelative(-0.58f, -1.45f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.24f, -2.51f) + lineToRelative(0.11f, -0.16f) + lineToRelative(0.15f, -0.2f) + curveToRelative(0.24f, -0.31f, 0.31f, -0.7f, 0.21f, -1.08f) + lineToRelative(-0.04f, -0.14f) + lineToRelative(-0.59f, -1.45f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.29f, -0.74f) + lineToRelative(0.06f, 0.09f) + close() + } + } + return _phoneVibrate!! + } + +private var _phoneVibrate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhotoFilter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhotoFilter.kt new file mode 100644 index 00000000..85901d86 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PhotoFilter.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PhotoFilter: ImageVector + get() { + if (_photoFilter != null) { + return _photoFilter!! + } + _photoFilter = fluentIcon(name = "Regular.PhotoFilter") { + fluentPath { + moveTo(9.5f, 2.0f) + arcToRelative(7.5f, 7.5f, 0.0f, false, true, 7.18f, 5.32f) + arcToRelative(7.5f, 7.5f, 0.0f, true, true, -9.36f, 9.36f) + arcTo(7.5f, 7.5f, 0.0f, false, true, 9.5f, 2.0f) + close() + moveTo(16.99f, 9.04f) + verticalLineToRelative(0.22f) + lineToRelative(0.01f, 0.24f) + arcToRelative(7.5f, 7.5f, 0.0f, false, true, -7.96f, 7.49f) + arcToRelative(6.0f, 6.0f, 0.0f, true, false, 7.95f, -7.95f) + close() + moveTo(9.5f, 3.5f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, -2.49f, 11.46f) + verticalLineToRelative(-0.22f) + lineTo(7.0f, 14.5f) + arcToRelative(7.5f, 7.5f, 0.0f, false, true, 7.96f, -7.49f) + arcTo(6.0f, 6.0f, 0.0f, false, false, 9.5f, 3.5f) + close() + } + } + return _photoFilter!! + } + +private var _photoFilter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Pi.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Pi.kt new file mode 100644 index 00000000..48785335 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Pi.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Pi: ImageVector + get() { + if (_pi != null) { + return _pi!! + } + _pi = fluentIcon(name = "Regular.Pi") { + fluentPath { + moveTo(2.5f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.25f, 4.0f) + horizontalLineToRelative(15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineTo(17.0f) + verticalLineToRelative(11.45f) + curveToRelative(0.0f, 1.21f, 1.2f, 2.06f, 2.34f, 1.65f) + lineToRelative(0.16f, -0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.5f, 1.42f) + lineToRelative(-0.16f, 0.05f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -4.34f, -3.06f) + verticalLineTo(5.5f) + horizontalLineToRelative(-6.0f) + arcToRelative(56.9f, 56.9f, 0.0f, false, true, -0.25f, 4.53f) + curveToRelative(-0.25f, 2.87f, -0.76f, 6.5f, -1.8f, 9.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.4f, -0.5f) + arcToRelative(40.07f, 40.07f, 0.0f, false, false, 1.7f, -9.1f) + arcTo(67.9f, 67.9f, 0.0f, false, false, 8.0f, 5.5f) + horizontalLineTo(5.25f) + curveTo(4.56f, 5.5f, 4.0f, 6.06f, 4.0f, 6.75f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.5f) + close() + } + } + return _pi!! + } + +private var _pi: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PictureInPicture.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PictureInPicture.kt new file mode 100644 index 00000000..b0ead776 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PictureInPicture.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PictureInPicture: ImageVector + get() { + if (_pictureInPicture != null) { + return _pictureInPicture!! + } + _pictureInPicture = fluentIcon(name = "Regular.PictureInPicture") { + fluentPath { + moveTo(2.0f, 6.25f) + curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(13.5f) + curveTo(20.55f, 3.0f, 22.0f, 4.46f, 22.0f, 6.25f) + verticalLineTo(12.0f) + horizontalLineToRelative(-1.5f) + verticalLineTo(6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineTo(5.25f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineTo(11.0f) + verticalLineTo(19.0f) + horizontalLineTo(5.25f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 15.75f) + verticalLineToRelative(-9.5f) + close() + moveTo(14.0f, 13.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + verticalLineToRelative(-5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + horizontalLineToRelative(-7.0f) + close() + } + } + return _pictureInPicture!! + } + +private var _pictureInPicture: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PictureInPictureEnter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PictureInPictureEnter.kt new file mode 100644 index 00000000..de4fc362 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PictureInPictureEnter.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PictureInPictureEnter: ImageVector + get() { + if (_pictureInPictureEnter != null) { + return _pictureInPictureEnter!! + } + _pictureInPictureEnter = fluentIcon(name = "Regular.PictureInPictureEnter") { + fluentPath { + moveTo(2.0f, 6.25f) + curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(13.5f) + curveTo(20.55f, 3.0f, 22.0f, 4.46f, 22.0f, 6.25f) + verticalLineTo(12.0f) + horizontalLineToRelative(-1.5f) + verticalLineTo(6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineTo(5.25f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineTo(11.0f) + verticalLineTo(19.0f) + horizontalLineTo(5.25f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 15.75f) + verticalLineToRelative(-9.5f) + close() + moveTo(14.0f, 13.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + verticalLineToRelative(-5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + horizontalLineToRelative(-7.0f) + close() + moveTo(5.22f, 6.22f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineTo(9.5f, 9.44f) + verticalLineTo(7.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.69f) + lineTo(5.22f, 7.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + } + } + return _pictureInPictureEnter!! + } + +private var _pictureInPictureEnter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PictureInPictureExit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PictureInPictureExit.kt new file mode 100644 index 00000000..639987d1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PictureInPictureExit.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PictureInPictureExit: ImageVector + get() { + if (_pictureInPictureExit != null) { + return _pictureInPictureExit!! + } + _pictureInPictureExit = fluentIcon(name = "Regular.PictureInPictureExit") { + fluentPath { + moveTo(10.0f, 11.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + lineTo(12.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + lineTo(3.0f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, 2.0f) + horizontalLineToRelative(7.0f) + close() + moveTo(18.75f, 6.5f) + lineTo(13.0f, 6.5f) + lineTo(13.0f, 5.0f) + horizontalLineToRelative(5.75f) + curveTo(20.55f, 5.0f, 22.0f, 6.46f, 22.0f, 8.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(5.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 17.75f) + verticalLineToRelative(-5.92f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 3.0f, 12.0f) + horizontalLineToRelative(0.5f) + verticalLineToRelative(5.75f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(15.94f, 16.0f) + horizontalLineToRelative(-1.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.69f) + lineToRelative(-2.72f, -2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(15.94f, 16.0f) + close() + } + } + return _pictureInPictureExit!! + } + +private var _pictureInPictureExit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Pill.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Pill.kt new file mode 100644 index 00000000..2baa6d56 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Pill.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Pill: ImageVector + get() { + if (_pill != null) { + return _pill!! + } + _pill = fluentIcon(name = "Regular.Pill") { + fluentPath { + moveTo(10.53f, 15.47f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-2.0f, 2.0f) + curveToRelative(-0.84f, 0.84f, -2.2f, 0.85f, -3.05f, 0.0f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 6.0f, 17.26f) + curveToRelative(0.2f, 0.0f, 0.4f, 0.08f, 0.53f, 0.22f) + curveToRelative(0.26f, 0.26f, 0.68f, 0.26f, 0.94f, 0.0f) + lineToRelative(2.0f, -2.0f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(13.3f, 3.53f) + arcToRelative(5.07f, 5.07f, 0.0f, true, true, 7.17f, 7.17f) + lineToRelative(-9.77f, 9.77f) + arcToRelative(5.07f, 5.07f, 0.0f, false, true, -7.18f, -7.17f) + lineToRelative(9.78f, -9.77f) + close() + moveTo(19.41f, 4.59f) + arcToRelative(3.57f, 3.57f, 0.0f, false, false, -5.05f, 0.0f) + lineTo(10.0f, 8.94f) + lineTo(15.05f, 14.0f) + lineToRelative(4.36f, -4.35f) + arcToRelative(3.57f, 3.57f, 0.0f, false, false, 0.0f, -5.05f) + close() + moveTo(14.0f, 15.06f) + lineTo(8.94f, 10.0f) + lineTo(4.6f, 14.36f) + arcToRelative(3.57f, 3.57f, 0.0f, true, false, 5.05f, 5.05f) + lineToRelative(4.35f, -4.35f) + close() + } + } + return _pill!! + } + +private var _pill: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PinOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PinOff.kt new file mode 100644 index 00000000..dd131a94 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PinOff.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PinOff: ImageVector + get() { + if (_pinOff != null) { + return _pinOff!! + } + _pinOff = fluentIcon(name = "Regular.PinOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(5.9f, 5.9f) + lineToRelative(-3.3f, 1.15f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -0.49f, 2.07f) + lineToRelative(3.1f, 3.1f) + lineTo(3.0f, 19.94f) + lineTo(3.0f, 21.0f) + horizontalLineToRelative(1.06f) + lineToRelative(4.44f, -4.44f) + lineToRelative(3.1f, 3.1f) + curveToRelative(0.66f, 0.66f, 1.77f, 0.4f, 2.07f, -0.47f) + lineToRelative(1.14f, -3.31f) + lineToRelative(5.91f, 5.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(13.64f, 14.7f) + lineToRelative(-1.26f, 3.62f) + lineToRelative(-6.7f, -6.7f) + lineToRelative(3.62f, -1.26f) + lineToRelative(4.34f, 4.34f) + close() + moveTo(19.68f, 10.82f) + lineTo(15.9f, 12.72f) + lineTo(17.0f, 13.82f) + lineToRelative(3.34f, -1.67f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 0.72f, -4.4f) + lineToRelative(-4.83f, -4.83f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -4.4f, 0.72f) + lineToRelative(-1.67f, 3.34f) + lineToRelative(1.12f, 1.11f) + lineToRelative(1.89f, -3.78f) + curveToRelative(0.38f, -0.77f, 1.4f, -0.93f, 2.0f, -0.33f) + lineToRelative(4.83f, 4.83f) + curveToRelative(0.6f, 0.6f, 0.44f, 1.62f, -0.33f, 2.0f) + close() + } + } + return _pinOff!! + } + +private var _pinOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Pipeline.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Pipeline.kt new file mode 100644 index 00000000..c51c5b60 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Pipeline.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Pipeline: ImageVector + get() { + if (_pipeline != null) { + return _pipeline!! + } + _pipeline = fluentIcon(name = "Regular.Pipeline") { + fluentPath { + moveTo(2.0f, 6.25f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 6.49f, 6.0f) + lineTo(17.5f, 6.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.49f, 0.25f) + verticalLineToRelative(10.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.49f, 0.25f) + lineTo(6.5f, 17.0f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 2.0f, 16.75f) + lineTo(2.0f, 6.25f) + close() + moveTo(5.0f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(5.0f, 6.25f) + close() + moveTo(6.5f, 15.5f) + horizontalLineToRelative(11.0f) + verticalLineToRelative(-8.0f) + horizontalLineToRelative(-11.0f) + verticalLineToRelative(8.0f) + close() + moveTo(20.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(20.5f, 6.25f) + close() + } + } + return _pipeline!! + } + +private var _pipeline: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Pivot.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Pivot.kt new file mode 100644 index 00000000..5faccf96 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Pivot.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Pivot: ImageVector + get() { + if (_pivot != null) { + return _pivot!! + } + _pivot = fluentIcon(name = "Regular.Pivot") { + fluentPath { + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.63f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 1.5f, 0.0f) + lineTo(20.5f, 6.25f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-11.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.0f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(4.63f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(6.25f, 19.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-11.0f) + close() + moveTo(6.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + lineTo(7.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(6.0f, 7.0f) + close() + moveTo(11.5f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(11.5f, 7.0f) + close() + moveTo(6.0f, 12.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + lineTo(7.0f, 17.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(20.28f, 12.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(0.22f, -0.22f) + verticalLineToRelative(2.44f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.44f) + lineToRelative(0.22f, -0.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.06f) + lineToRelative(1.5f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-0.22f, -0.22f) + horizontalLineToRelative(2.44f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-2.44f) + lineToRelative(0.22f, 0.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-1.5f, -1.5f) + close() + } + } + return _pivot!! + } + +private var _pivot: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PlayCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PlayCircle.kt new file mode 100644 index 00000000..a30b2935 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PlayCircle.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PlayCircle: ImageVector + get() { + if (_playCircle != null) { + return _playCircle!! + } + _playCircle = fluentIcon(name = "Regular.PlayCircle") { + fluentPath { + moveTo(10.86f, 8.15f) + arcTo(1.25f, 1.25f, 0.0f, false, false, 9.0f, 9.25f) + verticalLineToRelative(5.5f) + curveToRelative(0.0f, 0.95f, 1.02f, 1.56f, 1.86f, 1.1f) + lineToRelative(5.75f, -3.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.3f) + lineToRelative(-5.75f, -3.2f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) + close() + moveTo(3.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 17.0f, 0.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, -17.0f, 0.0f) + close() + } + } + return _playCircle!! + } + +private var _playCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PlayCircleHint.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PlayCircleHint.kt new file mode 100644 index 00000000..0a0bfed0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PlayCircleHint.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PlayCircleHint: ImageVector + get() { + if (_playCircleHint != null) { + return _playCircleHint!! + } + _playCircleHint = fluentIcon(name = "Regular.PlayCircleHint") { + fluentPath { + moveTo(12.0f, 2.0f) + curveToRelative(-0.67f, 0.0f, -1.32f, 0.07f, -1.95f, 0.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.29f, 1.47f) + arcToRelative(8.55f, 8.55f, 0.0f, false, true, 3.32f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.3f, -1.47f) + curveTo(13.31f, 2.07f, 12.65f, 2.0f, 12.0f, 2.0f) + close() + moveTo(7.28f, 4.93f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.84f, -1.25f) + arcToRelative(10.05f, 10.05f, 0.0f, false, false, -2.76f, 2.76f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.25f, 0.84f) + arcToRelative(8.55f, 8.55f, 0.0f, false, true, 2.35f, -2.35f) + close() + moveTo(17.56f, 3.68f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.84f, 1.25f) + arcToRelative(8.55f, 8.55f, 0.0f, false, true, 2.35f, 2.35f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.25f, -0.84f) + arcToRelative(10.05f, 10.05f, 0.0f, false, false, -2.76f, -2.76f) + close() + moveTo(21.81f, 10.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.47f, 0.29f) + arcToRelative(8.54f, 8.54f, 0.0f, false, true, 0.0f, 3.32f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.47f, 0.3f) + arcToRelative(10.05f, 10.05f, 0.0f, false, false, 0.0f, -3.91f) + close() + moveTo(3.66f, 10.34f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.47f, -0.3f) + arcToRelative(10.05f, 10.05f, 0.0f, false, false, 0.0f, 3.91f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.47f, -0.29f) + arcToRelative(8.55f, 8.55f, 0.0f, false, true, 0.0f, -3.32f) + close() + moveTo(4.93f, 16.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.25f, 0.84f) + arcToRelative(10.05f, 10.05f, 0.0f, false, false, 2.76f, 2.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.84f, -1.25f) + arcToRelative(8.55f, 8.55f, 0.0f, false, true, -2.35f, -2.35f) + close() + moveTo(20.32f, 17.56f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.25f, -0.84f) + arcToRelative(8.55f, 8.55f, 0.0f, false, true, -2.35f, 2.35f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.84f, 1.25f) + arcToRelative(10.05f, 10.05f, 0.0f, false, false, 2.76f, -2.76f) + close() + moveTo(10.34f, 20.34f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.3f, 1.47f) + arcToRelative(10.05f, 10.05f, 0.0f, false, false, 3.91f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.29f, -1.47f) + arcToRelative(8.54f, 8.54f, 0.0f, false, true, -3.32f, 0.0f) + close() + moveTo(9.0f, 9.24f) + curveToRelative(0.0f, -0.94f, 1.02f, -1.55f, 1.86f, -1.09f) + lineToRelative(5.75f, 3.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.3f) + lineToRelative(-5.75f, 3.19f) + arcTo(1.25f, 1.25f, 0.0f, false, true, 9.0f, 14.74f) + verticalLineToRelative(-5.5f) + close() + } + } + return _playCircleHint!! + } + +private var _playCircleHint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PlugConnected.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PlugConnected.kt new file mode 100644 index 00000000..db1a3b46 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PlugConnected.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PlugConnected: ImageVector + get() { + if (_plugConnected != null) { + return _plugConnected!! + } + _plugConnected = fluentIcon(name = "Regular.PlugConnected") { + fluentPath { + moveTo(19.49f, 5.57f) + arcToRelative(5.97f, 5.97f, 0.0f, false, true, -1.9f, 8.96f) + curveToRelative(-0.64f, 0.35f, -1.42f, 0.14f, -1.94f, -0.38f) + lineToRelative(-5.8f, -5.8f) + curveToRelative(-0.52f, -0.52f, -0.73f, -1.3f, -0.38f, -1.95f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 8.96f, -1.89f) + lineToRelative(2.29f, -2.29f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-2.29f, 2.3f) + close() + moveTo(17.47f, 12.83f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, -6.3f, -6.3f) + curveToRelative(-0.27f, 0.35f, -0.19f, 0.83f, 0.12f, 1.14f) + lineToRelative(5.04f, 5.04f) + curveToRelative(0.31f, 0.3f, 0.8f, 0.39f, 1.14f, 0.12f) + close() + moveTo(3.28f, 21.78f) + lineToRelative(2.3f, -2.29f) + arcToRelative(5.97f, 5.97f, 0.0f, false, false, 8.95f, -1.9f) + curveToRelative(0.35f, -0.64f, 0.14f, -1.42f, -0.38f, -1.94f) + lineToRelative(-5.8f, -5.8f) + curveToRelative(-0.52f, -0.52f, -1.3f, -0.73f, -1.95f, -0.38f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, -1.89f, 8.96f) + lineToRelative(-2.29f, 2.29f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + close() + moveTo(7.67f, 11.29f) + lineTo(12.71f, 16.33f) + curveToRelative(0.3f, 0.31f, 0.39f, 0.8f, 0.12f, 1.14f) + arcToRelative(4.5f, 4.5f, 0.0f, true, true, -6.3f, -6.3f) + curveToRelative(0.35f, -0.27f, 0.83f, -0.19f, 1.14f, 0.12f) + close() + } + } + return _plugConnected!! + } + +private var _plugConnected: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PlugDisconnected.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PlugDisconnected.kt new file mode 100644 index 00000000..71e820e1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PlugDisconnected.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PlugDisconnected: ImageVector + get() { + if (_plugDisconnected != null) { + return _plugDisconnected!! + } + _plugDisconnected = fluentIcon(name = "Regular.PlugDisconnected") { + fluentPath { + moveTo(21.78f, 3.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineToRelative(-2.01f, 2.01f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, -5.47f, 0.46f) + lineToRelative(-1.06f, 1.07f) + curveToRelative(-0.69f, 0.69f, -0.69f, 1.8f, 0.0f, 2.48f) + lineToRelative(3.58f, 3.58f) + curveToRelative(0.69f, 0.69f, 1.8f, 0.69f, 2.48f, 0.0f) + lineToRelative(1.07f, -1.06f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, 0.46f, -5.47f) + lineToRelative(2.01f, -2.01f) + close() + moveTo(18.19f, 5.76f) + lineTo(18.22f, 5.78f) + lineTo(18.24f, 5.81f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.0f, 3.88f) + lineToRelative(-1.06f, 1.07f) + curveToRelative(-0.1f, 0.1f, -0.26f, 0.1f, -0.36f, 0.0f) + lineToRelative(-3.58f, -3.58f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, 0.0f, -0.36f) + lineToRelative(1.07f, -1.06f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 3.88f, 0.0f) + close() + moveTo(10.78f, 11.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineTo(8.0f, 11.94f) + lineToRelative(-0.47f, -0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-1.78f, 1.77f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, -0.46f, 5.47f) + lineToRelative(-2.01f, 2.01f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(2.01f, -2.01f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, 5.47f, -0.46f) + lineToRelative(1.77f, -1.78f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-0.47f, -0.47f) + lineToRelative(1.72f, -1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineTo(11.0f, 14.94f) + lineTo(9.06f, 13.0f) + lineToRelative(1.72f, -1.72f) + close() + moveTo(7.47f, 13.53f) + lineTo(10.47f, 16.53f) + lineTo(10.94f, 17.0f) + lineTo(9.69f, 18.24f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -3.88f, 0.0f) + lineToRelative(-0.05f, -0.05f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.0f, -3.88f) + lineTo(7.0f, 13.06f) + lineToRelative(0.47f, 0.47f) + close() + } + } + return _plugDisconnected!! + } + +private var _plugDisconnected: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PointScan.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PointScan.kt new file mode 100644 index 00000000..eb9fc2d9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PointScan.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PointScan: ImageVector + get() { + if (_pointScan != null) { + return _pointScan!! + } + _pointScan = fluentIcon(name = "Regular.PointScan") { + fluentPath { + moveTo(10.25f, 2.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(4.8f) + arcTo(6.25f, 6.25f, 0.0f, false, true, 16.46f, 13.0f) + horizontalLineToRelative(4.79f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(16.45f, 14.5f) + arcTo(6.25f, 6.25f, 0.0f, false, true, 11.0f, 19.96f) + verticalLineToRelative(1.29f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(9.5f, 19.95f) + arcToRelative(6.25f, 6.25f, 0.0f, false, true, -5.46f, -5.45f) + lineTo(2.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(4.05f, 13.0f) + arcTo(6.25f, 6.25f, 0.0f, false, true, 9.5f, 7.54f) + lineTo(9.5f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(9.5f, 14.5f) + lineTo(5.56f, 14.5f) + arcToRelative(4.75f, 4.75f, 0.0f, false, false, 3.94f, 3.94f) + lineTo(9.5f, 14.5f) + close() + moveTo(14.94f, 14.5f) + lineTo(11.0f, 14.5f) + verticalLineToRelative(3.94f) + arcToRelative(4.75f, 4.75f, 0.0f, false, false, 3.94f, -3.94f) + close() + moveTo(9.5f, 9.06f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 5.56f, 13.0f) + lineTo(9.5f, 13.0f) + lineTo(9.5f, 9.06f) + close() + moveTo(11.0f, 9.06f) + lineTo(11.0f, 13.0f) + horizontalLineToRelative(3.94f) + arcToRelative(4.75f, 4.75f, 0.0f, false, false, -3.72f, -3.9f) + lineTo(11.0f, 9.06f) + close() + } + } + return _pointScan!! + } + +private var _pointScan: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Poll.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Poll.kt new file mode 100644 index 00000000..dbbf8a14 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Poll.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Poll: ImageVector + get() { + if (_poll != null) { + return _poll!! + } + _poll = fluentIcon(name = "Regular.Poll") { + fluentPath { + moveTo(11.75f, 2.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.75f) + verticalLineToRelative(14.5f) + arcToRelative(2.75f, 2.75f, 0.0f, true, true, -5.5f, 0.0f) + lineTo(9.0f, 4.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 11.75f, 2.0f) + close() + moveTo(18.75f, 7.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.75f) + verticalLineToRelative(9.5f) + arcToRelative(2.75f, 2.75f, 0.0f, true, true, -5.5f, 0.0f) + verticalLineToRelative(-9.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.75f, 7.0f) + close() + moveTo(4.75f, 12.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.75f) + verticalLineToRelative(4.5f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -5.5f, 0.0f) + verticalLineToRelative(-4.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 12.0f) + close() + moveTo(11.75f, 3.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(14.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) + lineTo(13.0f, 4.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + close() + moveTo(18.75f, 8.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(9.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + close() + moveTo(4.75f, 13.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(4.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 2.5f, 0.0f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + close() + } + } + return _poll!! + } + +private var _poll: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PollHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PollHorizontal.kt new file mode 100644 index 00000000..e83f491b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PollHorizontal.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PollHorizontal: ImageVector + get() { + if (_pollHorizontal != null) { + return _pollHorizontal!! + } + _pollHorizontal = fluentIcon(name = "Regular.PollHorizontal") { + fluentPath { + moveTo(22.0f, 11.75f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) + lineTo(4.75f, 14.5f) + arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, -5.5f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 11.75f) + close() + moveTo(17.0f, 18.75f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) + horizontalLineToRelative(-9.5f) + arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, -5.5f) + horizontalLineToRelative(9.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 17.0f, 18.75f) + close() + moveTo(12.0f, 4.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 9.25f, 7.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(2.75f, 2.75f, 0.0f, true, true, 0.0f, -5.5f) + horizontalLineToRelative(4.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 12.0f, 4.75f) + close() + moveTo(20.5f, 11.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(4.75f, 10.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + horizontalLineToRelative(14.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + close() + moveTo(15.5f, 18.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-9.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, 2.5f) + horizontalLineToRelative(9.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + close() + moveTo(10.5f, 4.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-4.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + horizontalLineToRelative(4.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + close() + } + } + return _pollHorizontal!! + } + +private var _pollHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PortHdmi.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PortHdmi.kt new file mode 100644 index 00000000..34bf9e21 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PortHdmi.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PortHdmi: ImageVector + get() { + if (_portHdmi != null) { + return _portHdmi!! + } + _portHdmi = fluentIcon(name = "Regular.PortHdmi") { + fluentPath { + moveTo(21.41f, 11.41f) + lineTo(18.6f, 8.6f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 17.17f, 8.0f) + lineTo(6.83f, 8.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.42f, 0.59f) + lineTo(2.6f, 11.4f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 2.0f, 12.83f) + lineTo(2.0f, 14.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, 2.0f) + horizontalLineToRelative(16.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + verticalLineToRelative(-1.17f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + close() + moveTo(20.5f, 14.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + lineTo(4.0f, 14.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + verticalLineToRelative(-1.17f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.15f, -0.36f) + lineToRelative(2.82f, -2.82f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.36f, -0.15f) + horizontalLineToRelative(10.34f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.36f, 0.15f) + lineToRelative(2.82f, 2.82f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.15f, 0.36f) + lineTo(20.5f, 14.0f) + close() + moveTo(16.25f, 11.25f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + close() + } + } + return _portHdmi!! + } + +private var _portHdmi: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PortMicroUsb.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PortMicroUsb.kt new file mode 100644 index 00000000..ec5a6019 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PortMicroUsb.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PortMicroUsb: ImageVector + get() { + if (_portMicroUsb != null) { + return _portMicroUsb!! + } + _portMicroUsb = fluentIcon(name = "Regular.PortMicroUsb") { + fluentPath { + moveTo(15.17f, 10.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.36f, 0.15f) + lineToRelative(1.82f, 1.82f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.15f, 0.36f) + lineTo(17.5f, 13.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + lineTo(7.0f, 13.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + verticalLineToRelative(-0.17f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.15f, -0.36f) + lineToRelative(1.82f, -1.82f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.36f, -0.15f) + horizontalLineToRelative(6.34f) + close() + moveTo(15.17f, 9.0f) + lineTo(8.83f, 9.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.42f, 0.59f) + lineTo(5.6f, 11.4f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 5.0f, 12.83f) + lineTo(5.0f, 13.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, 2.0f) + horizontalLineToRelative(10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + verticalLineToRelative(-0.17f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.59f, -1.42f) + lineTo(16.6f, 9.6f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 15.17f, 9.0f) + close() + } + } + return _portMicroUsb!! + } + +private var _portMicroUsb: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PortUsbA.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PortUsbA.kt new file mode 100644 index 00000000..9a2d7022 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PortUsbA.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PortUsbA: ImageVector + get() { + if (_portUsbA != null) { + return _portUsbA!! + } + _portUsbA = fluentIcon(name = "Regular.PortUsbA") { + fluentPath { + moveTo(18.0f, 8.0f) + horizontalLineTo(6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, 2.0f) + horizontalLineToRelative(12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + verticalLineToRelative(-4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, -2.0f) + close() + moveTo(5.5f, 10.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.5f, -0.5f) + horizontalLineToRelative(12.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.5f, 0.5f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-13.0f) + verticalLineToRelative(-2.0f) + close() + } + } + return _portUsbA!! + } + +private var _portUsbA: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PortUsbC.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PortUsbC.kt new file mode 100644 index 00000000..351f848d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PortUsbC.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PortUsbC: ImageVector + get() { + if (_portUsbC != null) { + return _portUsbC!! + } + _portUsbC = fluentIcon(name = "Regular.PortUsbC") { + fluentPath { + moveTo(16.0f, 10.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + horizontalLineTo(8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, -3.0f) + horizontalLineToRelative(8.0f) + close() + moveTo(16.0f, 9.0f) + horizontalLineTo(8.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + horizontalLineToRelative(8.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -6.0f) + close() + } + } + return _portUsbC!! + } + +private var _portUsbC: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PositionBackward.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PositionBackward.kt new file mode 100644 index 00000000..31a71522 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PositionBackward.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PositionBackward: ImageVector + get() { + if (_positionBackward != null) { + return _positionBackward!! + } + _positionBackward = fluentIcon(name = "Regular.PositionBackward") { + fluentPath { + moveTo(6.5f, 16.5f) + lineTo(5.25f, 16.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 13.25f) + verticalLineToRelative(-8.0f) + curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) + horizontalLineToRelative(8.0f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + lineTo(16.5f, 6.5f) + horizontalLineToRelative(-1.65f) + lineToRelative(0.15f, -0.15f) + verticalLineToRelative(-1.1f) + curveToRelative(0.0f, -0.23f, -0.04f, -0.45f, -0.13f, -0.65f) + lineToRelative(-1.9f, 1.9f) + horizontalLineToRelative(-2.12f) + lineToRelative(2.92f, -2.92f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -0.52f, -0.08f) + horizontalLineToRelative(-1.28f) + lineTo(3.5f, 11.97f) + verticalLineToRelative(1.28f) + curveToRelative(0.0f, 0.18f, 0.03f, 0.36f, 0.08f, 0.52f) + lineToRelative(2.92f, -2.92f) + verticalLineToRelative(2.12f) + lineToRelative(-1.9f, 1.9f) + curveToRelative(0.2f, 0.09f, 0.42f, 0.13f, 0.65f, 0.13f) + horizontalLineToRelative(1.1f) + lineToRelative(0.15f, -0.15f) + verticalLineToRelative(1.65f) + close() + moveTo(9.85f, 3.5f) + lineTo(7.97f, 3.5f) + lineTo(3.5f, 7.97f) + verticalLineToRelative(1.88f) + lineTo(9.85f, 3.5f) + close() + moveTo(5.85f, 3.5f) + horizontalLineToRelative(-0.6f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(0.6f) + lineTo(5.85f, 3.5f) + close() + moveTo(22.0f, 18.75f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-8.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.25f, -3.25f) + verticalLineToRelative(-8.0f) + curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) + horizontalLineToRelative(8.0f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(8.0f) + close() + moveTo(18.75f, 20.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-8.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-8.0f) + curveTo(9.78f, 9.0f, 9.0f, 9.78f, 9.0f, 10.75f) + verticalLineToRelative(8.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(8.0f) + close() + } + } + return _positionBackward!! + } + +private var _positionBackward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PositionForward.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PositionForward.kt new file mode 100644 index 00000000..b039cc21 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PositionForward.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PositionForward: ImageVector + get() { + if (_positionForward != null) { + return _positionForward!! + } + _positionForward = fluentIcon(name = "Regular.PositionForward") { + fluentPath { + moveTo(18.75f, 22.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-8.0f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + lineTo(17.5f, 7.5f) + lineTo(17.5f, 9.0f) + horizontalLineToRelative(1.25f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(8.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-8.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(9.0f, 17.5f) + lineTo(7.5f, 17.5f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(8.0f) + close() + moveTo(13.25f, 16.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-8.0f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-8.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) + verticalLineToRelative(8.0f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(8.0f) + close() + moveTo(15.0f, 13.25f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-0.78f) + lineTo(15.0f, 12.47f) + verticalLineToRelative(0.78f) + close() + moveTo(15.0f, 10.47f) + lineTo(10.47f, 15.0f) + horizontalLineToRelative(-2.0f) + lineTo(15.0f, 8.47f) + verticalLineToRelative(2.0f) + close() + moveTo(6.35f, 15.0f) + horizontalLineToRelative(-1.1f) + curveToRelative(-0.23f, 0.0f, -0.45f, -0.04f, -0.65f, -0.13f) + lineTo(14.87f, 4.6f) + curveToRelative(0.09f, 0.2f, 0.13f, 0.42f, 0.13f, 0.65f) + verticalLineToRelative(1.1f) + lineTo(6.35f, 15.0f) + close() + moveTo(3.58f, 13.77f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.08f, -0.52f) + verticalLineToRelative(-1.28f) + lineToRelative(8.47f, -8.47f) + horizontalLineToRelative(1.28f) + curveToRelative(0.18f, 0.0f, 0.36f, 0.03f, 0.52f, 0.08f) + lineTo(3.57f, 13.77f) + close() + moveTo(3.5f, 9.85f) + lineTo(3.5f, 7.97f) + lineTo(7.97f, 3.5f) + horizontalLineToRelative(1.88f) + lineTo(3.5f, 9.85f) + close() + moveTo(3.5f, 5.85f) + verticalLineToRelative(-0.6f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(0.6f) + lineTo(3.5f, 5.85f) + close() + } + } + return _positionForward!! + } + +private var _positionForward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PositionToBack.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PositionToBack.kt new file mode 100644 index 00000000..7e387165 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PositionToBack.kt @@ -0,0 +1,102 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PositionToBack: ImageVector + get() { + if (_positionToBack != null) { + return _positionToBack!! + } + _positionToBack = fluentIcon(name = "Regular.PositionToBack") { + fluentPath { + moveTo(14.0f, 16.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 16.75f, 14.0f) + horizontalLineToRelative(3.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 23.0f, 16.75f) + verticalLineToRelative(3.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 20.25f, 23.0f) + horizontalLineToRelative(-3.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 14.0f, 20.25f) + verticalLineToRelative(-3.5f) + close() + moveTo(16.75f, 15.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-3.5f) + close() + moveTo(6.0f, 11.0f) + verticalLineToRelative(3.75f) + curveTo(6.0f, 16.55f, 7.46f, 18.0f, 9.25f, 18.0f) + lineTo(13.0f, 18.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(-0.32f) + lineToRelative(0.37f, -0.37f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 3.08f, -3.08f) + lineToRelative(0.37f, -0.37f) + verticalLineToRelative(0.33f) + lineToRelative(0.25f, -0.01f) + lineTo(18.0f, 13.0f) + lineTo(18.0f, 9.25f) + curveTo(18.0f, 7.45f, 16.54f, 6.0f, 14.75f, 6.0f) + lineTo(11.0f, 6.0f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(0.56f) + lineToRelative(-0.68f, 0.68f) + arcToRelative(3.76f, 3.76f, 0.0f, false, true, -2.7f, 2.7f) + lineToRelative(-0.68f, 0.68f) + lineTo(7.5f, 11.0f) + lineToRelative(-0.25f, 0.01f) + lineTo(6.0f, 11.01f) + close() + moveTo(13.68f, 7.5f) + horizontalLineToRelative(1.07f) + curveToRelative(0.24f, 0.0f, 0.47f, 0.05f, 0.68f, 0.14f) + lineToRelative(-7.8f, 7.79f) + curveToRelative(-0.08f, -0.21f, -0.13f, -0.44f, -0.13f, -0.68f) + verticalLineToRelative(-1.07f) + lineToRelative(6.18f, -6.18f) + close() + moveTo(9.25f, 16.5f) + curveToRelative(-0.17f, 0.0f, -0.34f, -0.02f, -0.5f, -0.07f) + lineToRelative(7.68f, -7.68f) + curveToRelative(0.05f, 0.16f, 0.07f, 0.33f, 0.07f, 0.5f) + verticalLineToRelative(1.31f) + lineToRelative(-5.94f, 5.94f) + lineTo(9.25f, 16.5f) + close() + moveTo(1.0f, 3.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.75f, 1.0f) + horizontalLineToRelative(3.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 10.0f, 3.75f) + verticalLineToRelative(3.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 7.25f, 10.0f) + horizontalLineToRelative(-3.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 1.0f, 7.25f) + verticalLineToRelative(-3.5f) + close() + moveTo(3.75f, 2.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(3.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-3.5f) + close() + } + } + return _positionToBack!! + } + +private var _positionToBack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PositionToFront.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PositionToFront.kt new file mode 100644 index 00000000..41bab532 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PositionToFront.kt @@ -0,0 +1,101 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PositionToFront: ImageVector + get() { + if (_positionToFront != null) { + return _positionToFront!! + } + _positionToFront = fluentIcon(name = "Regular.PositionToFront") { + fluentPath { + moveTo(1.0f, 3.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.75f, 1.0f) + horizontalLineToRelative(3.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 10.0f, 3.75f) + lineTo(10.0f, 5.0f) + horizontalLineToRelative(-0.75f) + curveToRelative(-0.26f, 0.0f, -0.5f, 0.02f, -0.75f, 0.07f) + lineTo(8.5f, 3.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(1.32f) + curveToRelative(-0.05f, 0.24f, -0.07f, 0.5f, -0.07f, 0.75f) + lineTo(5.0f, 10.0f) + lineTo(3.75f, 10.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 1.0f, 7.25f) + verticalLineToRelative(-3.5f) + close() + moveTo(14.0f, 19.0f) + verticalLineToRelative(1.25f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 16.75f, 23.0f) + horizontalLineToRelative(3.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 23.0f, 20.25f) + verticalLineToRelative(-3.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 20.25f, 14.0f) + lineTo(19.0f, 14.0f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.26f, -0.02f, 0.5f, -0.07f, 0.75f) + horizontalLineToRelative(1.32f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineToRelative(-3.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + verticalLineToRelative(-1.32f) + curveToRelative(-0.24f, 0.05f, -0.5f, 0.07f, -0.75f, 0.07f) + lineTo(14.0f, 19.0f) + close() + moveTo(9.25f, 6.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 6.0f, 9.25f) + verticalLineToRelative(5.5f) + curveTo(6.0f, 16.55f, 7.46f, 18.0f, 9.25f, 18.0f) + horizontalLineToRelative(5.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-5.5f) + curveTo(18.0f, 7.45f, 16.54f, 6.0f, 14.75f, 6.0f) + horizontalLineToRelative(-5.5f) + close() + moveTo(11.56f, 7.5f) + lineTo(7.5f, 11.56f) + lineTo(7.5f, 9.68f) + lineTo(9.68f, 7.5f) + horizontalLineToRelative(1.88f) + close() + moveTo(7.5f, 13.68f) + lineToRelative(6.18f, -6.18f) + horizontalLineToRelative(1.07f) + curveToRelative(0.24f, 0.0f, 0.47f, 0.05f, 0.68f, 0.14f) + lineToRelative(-7.8f, 7.79f) + curveToRelative(-0.08f, -0.21f, -0.13f, -0.44f, -0.13f, -0.68f) + verticalLineToRelative(-1.07f) + close() + moveTo(8.75f, 16.43f) + lineTo(16.43f, 8.75f) + curveToRelative(0.05f, 0.16f, 0.07f, 0.33f, 0.07f, 0.5f) + verticalLineToRelative(1.31f) + lineToRelative(-5.94f, 5.94f) + lineTo(9.25f, 16.5f) + curveToRelative(-0.17f, 0.0f, -0.34f, -0.02f, -0.5f, -0.07f) + close() + moveTo(14.69f, 16.5f) + horizontalLineToRelative(-2.0f) + lineToRelative(3.81f, -3.82f) + verticalLineToRelative(2.07f) + lineToRelative(-0.03f, -0.03f) + lineToRelative(-1.78f, 1.78f) + close() + } + } + return _positionToFront!! + } + +private var _positionToFront: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Power.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Power.kt new file mode 100644 index 00000000..5ab62d61 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Power.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Power: ImageVector + get() { + if (_power != null) { + return _power!! + } + _power = fluentIcon(name = "Regular.Power") { + fluentPath { + moveTo(8.2f, 4.82f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.64f, 1.36f) + arcToRelative(7.51f, 7.51f, 0.0f, true, false, 6.34f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.63f, -1.35f) + arcToRelative(9.0f, 9.0f, 0.0f, true, true, -7.6f, -0.01f) + close() + moveTo(12.0f, 2.5f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.64f) + verticalLineToRelative(7.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.48f, 0.1f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-7.5f) + curveToRelative(0.0f, -0.4f, 0.33f, -0.74f, 0.75f, -0.74f) + close() + } + } + return _power!! + } + +private var _power: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Predictions.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Predictions.kt new file mode 100644 index 00000000..07961938 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Predictions.kt @@ -0,0 +1,88 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Predictions: ImageVector + get() { + if (_predictions != null) { + return _predictions!! + } + _predictions = fluentIcon(name = "Regular.Predictions") { + fluentPath { + moveTo(12.0f, 2.0f) + curveToRelative(1.15f, 0.0f, 2.24f, 0.29f, 3.19f, 0.8f) + curveToRelative(-0.08f, 0.45f, -0.23f, 0.76f, -0.43f, 0.96f) + curveToRelative(-0.1f, 0.11f, -0.25f, 0.2f, -0.43f, 0.28f) + arcTo(5.25f, 5.25f, 0.0f, true, false, 11.77f, 14.0f) + lineTo(12.0f, 14.0f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 4.38f, -2.35f) + curveToRelative(0.64f, 0.22f, 1.4f, 0.08f, 1.9f, -0.4f) + arcToRelative(6.76f, 6.76f, 0.0f, false, true, -1.93f, 2.67f) + lineToRelative(1.62f, 4.86f) + curveToRelative(0.26f, 0.8f, -0.08f, 1.67f, -0.81f, 2.08f) + curveToRelative(-1.37f, 0.77f, -3.1f, 1.14f, -5.16f, 1.14f) + reflectiveCurveToRelative(-3.79f, -0.37f, -5.16f, -1.14f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.8f, -2.08f) + lineToRelative(1.61f, -4.86f) + arcTo(6.74f, 6.74f, 0.0f, false, true, 12.0f, 2.0f) + close() + moveTo(15.06f, 14.8f) + lineTo(14.7f, 14.94f) + horizontalLineToRelative(-0.02f) + curveToRelative(-0.73f, 0.32f, -1.52f, 0.51f, -2.35f, 0.55f) + lineTo(12.24f, 15.49f) + lineToRelative(-0.24f, 0.01f) + horizontalLineToRelative(-0.33f) + arcToRelative(6.68f, 6.68f, 0.0f, false, true, -2.35f, -0.55f) + lineToRelative(-0.02f, -0.01f) + lineToRelative(-0.36f, -0.15f) + lineToRelative(-1.48f, 4.46f) + curveToRelative(-0.04f, 0.12f, 0.0f, 0.24f, 0.11f, 0.3f) + curveToRelative(1.13f, 0.63f, 2.6f, 0.95f, 4.43f, 0.95f) + curveToRelative(1.83f, 0.0f, 3.3f, -0.32f, 4.43f, -0.95f) + curveToRelative(0.1f, -0.06f, 0.15f, -0.18f, 0.11f, -0.3f) + lineToRelative(-1.48f, -4.46f) + close() + moveTo(11.69f, 15.5f) + lineTo(12.0f, 15.5f) + horizontalLineToRelative(-0.31f) + close() + moveTo(17.99f, 1.88f) + lineTo(18.0f, 2.0f) + curveToRelative(0.0f, 1.15f, 0.27f, 1.96f, 0.78f, 2.47f) + curveToRelative(0.47f, 0.47f, 1.2f, 0.74f, 2.21f, 0.78f) + horizontalLineToRelative(0.26f) + curveToRelative(0.96f, 0.0f, 1.0f, 1.38f, 0.12f, 1.5f) + horizontalLineToRelative(-0.12f) + curveToRelative(-1.15f, 0.0f, -1.96f, 0.27f, -2.47f, 0.78f) + curveToRelative(-0.47f, 0.47f, -0.74f, 1.2f, -0.78f, 2.21f) + lineTo(18.0f, 10.0f) + curveToRelative(0.0f, 1.0f, -1.5f, 1.0f, -1.5f, 0.0f) + curveToRelative(0.0f, -1.15f, -0.27f, -1.96f, -0.78f, -2.47f) + curveToRelative(-0.47f, -0.47f, -1.2f, -0.74f, -2.21f, -0.78f) + horizontalLineToRelative(-0.26f) + curveToRelative(-0.96f, 0.0f, -1.0f, -1.38f, -0.12f, -1.5f) + horizontalLineToRelative(0.12f) + curveToRelative(1.15f, 0.0f, 1.96f, -0.27f, 2.47f, -0.78f) + curveToRelative(0.51f, -0.51f, 0.78f, -1.32f, 0.78f, -2.47f) + curveToRelative(0.0f, -0.96f, 1.38f, -1.0f, 1.5f, -0.12f) + close() + moveTo(17.25f, 4.95f) + lineTo(17.11f, 5.15f) + arcToRelative(3.6f, 3.6f, 0.0f, false, true, -0.9f, 0.85f) + arcToRelative(3.64f, 3.64f, 0.0f, false, true, 1.04f, 1.05f) + arcTo(3.64f, 3.64f, 0.0f, false, true, 18.3f, 6.0f) + arcToRelative(3.64f, 3.64f, 0.0f, false, true, -0.9f, -0.84f) + lineToRelative(-0.15f, -0.2f) + close() + } + } + return _predictions!! + } + +private var _predictions: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Premium.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Premium.kt new file mode 100644 index 00000000..7828124c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Premium.kt @@ -0,0 +1,94 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Premium: ImageVector + get() { + if (_premium != null) { + return _premium!! + } + _premium = fluentIcon(name = "Regular.Premium") { + fluentPath { + moveTo(18.0f, 3.0f) + curveToRelative(0.24f, 0.0f, 0.46f, 0.12f, 0.6f, 0.3f) + lineToRelative(0.06f, 0.1f) + lineToRelative(3.26f, 6.02f) + lineToRelative(0.04f, 0.1f) + lineToRelative(0.01f, 0.03f) + lineToRelative(0.02f, 0.1f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 0.07f, 0.0f, 0.14f, -0.02f, 0.2f) + lineToRelative(-0.05f, 0.13f) + lineToRelative(-0.03f, 0.06f) + arcToRelative(0.76f, 0.76f, 0.0f, false, true, -0.08f, 0.1f) + lineToRelative(0.06f, -0.07f) + lineToRelative(-0.02f, 0.03f) + lineToRelative(-9.25f, 10.5f) + arcToRelative(0.72f, 0.72f, 0.0f, false, true, -0.3f, 0.24f) + lineToRelative(-0.1f, 0.03f) + lineToRelative(-0.08f, 0.02f) + lineTo(12.0f, 21.0f) + horizontalLineToRelative(-0.1f) + lineToRelative(-0.12f, -0.03f) + arcToRelative(0.72f, 0.72f, 0.0f, false, true, -0.17f, -0.08f) + horizontalLineToRelative(-0.01f) + arcToRelative(0.67f, 0.67f, 0.0f, false, true, -0.13f, -0.1f) + lineToRelative(-9.3f, -10.55f) + lineToRelative(-0.02f, -0.04f) + lineToRelative(-0.04f, -0.06f) + arcToRelative(0.74f, 0.74f, 0.0f, false, true, -0.1f, -0.3f) + lineTo(2.0f, 9.75f) + verticalLineToRelative(-0.07f) + lineToRelative(0.02f, -0.08f) + lineToRelative(0.02f, -0.1f) + lineToRelative(0.02f, -0.05f) + lineToRelative(0.03f, -0.06f) + lineToRelative(3.25f, -6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.56f, -0.38f) + lineTo(6.0f, 3.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(15.0f, 10.5f) + lineTo(9.0f, 10.5f) + lineToRelative(3.0f, 7.69f) + lineToRelative(3.0f, -7.69f) + close() + moveTo(7.39f, 10.5f) + lineTo(4.4f, 10.5f) + lineToRelative(5.35f, 6.07f) + lineToRelative(-2.37f, -6.07f) + close() + moveTo(19.59f, 10.5f) + lineTo(16.6f, 10.5f) + lineToRelative(-2.37f, 6.07f) + lineToRelative(5.35f, -6.07f) + close() + moveTo(8.97f, 4.5f) + lineTo(6.44f, 4.5f) + lineTo(4.01f, 9.0f) + horizontalLineToRelative(3.52f) + lineToRelative(1.44f, -4.5f) + close() + moveTo(13.45f, 4.5f) + horizontalLineToRelative(-2.9f) + lineTo(9.1f, 9.0f) + horizontalLineToRelative(5.79f) + lineToRelative(-1.44f, -4.5f) + close() + moveTo(17.55f, 4.5f) + horizontalLineToRelative(-2.52f) + lineTo(16.47f, 9.0f) + horizontalLineToRelative(3.52f) + lineToRelative(-2.44f, -4.5f) + close() + } + } + return _premium!! + } + +private var _premium: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PremiumPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PremiumPerson.kt new file mode 100644 index 00000000..aa8713d9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PremiumPerson.kt @@ -0,0 +1,104 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PremiumPerson: ImageVector + get() { + if (_premiumPerson != null) { + return _premiumPerson!! + } + _premiumPerson = fluentIcon(name = "Regular.PremiumPerson") { + fluentPath { + moveTo(18.0f, 3.0f) + curveToRelative(0.24f, 0.0f, 0.46f, 0.12f, 0.6f, 0.3f) + lineToRelative(0.06f, 0.1f) + lineToRelative(3.26f, 6.02f) + lineToRelative(0.04f, 0.1f) + lineToRelative(0.01f, 0.03f) + lineToRelative(0.02f, 0.1f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 0.07f, 0.0f, 0.14f, -0.02f, 0.2f) + lineToRelative(-0.05f, 0.13f) + lineToRelative(-0.03f, 0.06f) + arcToRelative(0.8f, 0.8f, 0.0f, false, true, -0.04f, 0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.04f, 0.05f) + lineToRelative(0.02f, -0.03f) + lineToRelative(-1.27f, 1.45f) + curveToRelative(-0.43f, -0.31f, -0.92f, -0.53f, -1.46f, -0.62f) + lineToRelative(0.49f, -0.55f) + lineTo(16.6f, 10.5f) + lineTo(12.7f, 20.52f) + curveToRelative(-0.12f, 0.3f, -0.4f, 0.48f, -0.7f, 0.48f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.74f, 0.74f, 0.0f, false, true, -0.1f, -0.03f) + horizontalLineToRelative(-0.02f) + arcToRelative(0.72f, 0.72f, 0.0f, false, true, -0.17f, -0.08f) + horizontalLineToRelative(-0.01f) + arcToRelative(0.67f, 0.67f, 0.0f, false, true, -0.13f, -0.1f) + lineToRelative(-9.3f, -10.55f) + lineToRelative(-0.02f, -0.04f) + lineToRelative(-0.04f, -0.06f) + arcToRelative(0.74f, 0.74f, 0.0f, false, true, -0.1f, -0.3f) + lineTo(2.0f, 9.75f) + verticalLineToRelative(-0.07f) + lineToRelative(0.02f, -0.08f) + lineToRelative(0.02f, -0.1f) + lineToRelative(0.02f, -0.05f) + lineToRelative(0.03f, -0.06f) + lineToRelative(3.25f, -6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.56f, -0.38f) + lineTo(6.0f, 3.0f) + horizontalLineToRelative(12.0f) + close() + moveTo(15.0f, 10.5f) + lineTo(9.0f, 10.5f) + lineToRelative(3.0f, 7.69f) + lineToRelative(3.0f, -7.69f) + close() + moveTo(7.39f, 10.5f) + lineTo(4.4f, 10.5f) + lineToRelative(5.35f, 6.07f) + lineToRelative(-2.37f, -6.07f) + close() + moveTo(8.97f, 4.5f) + lineTo(6.44f, 4.5f) + lineTo(4.01f, 9.0f) + horizontalLineToRelative(3.52f) + lineToRelative(1.44f, -4.5f) + close() + moveTo(13.45f, 4.5f) + horizontalLineToRelative(-2.9f) + lineTo(9.1f, 9.0f) + horizontalLineToRelative(5.79f) + lineToRelative(-1.44f, -4.5f) + close() + moveTo(17.55f, 4.5f) + horizontalLineToRelative(-2.52f) + lineTo(16.47f, 9.0f) + horizontalLineToRelative(3.52f) + lineToRelative(-2.44f, -4.5f) + close() + moveTo(21.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(23.0f, 19.88f) + curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) + reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _premiumPerson!! + } + +private var _premiumPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PresenceAvailable.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PresenceAvailable.kt new file mode 100644 index 00000000..8795288e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PresenceAvailable.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PresenceAvailable: ImageVector + get() { + if (_presenceAvailable != null) { + return _presenceAvailable!! + } + _presenceAvailable = fluentIcon(name = "Regular.PresenceAvailable") { + fluentPath { + moveTo(12.0f, 0.0f) + arcToRelative(12.0f, 12.0f, 0.0f, true, false, 0.0f, 24.0f) + arcToRelative(12.0f, 12.0f, 0.0f, false, false, 0.0f, -24.0f) + close() + moveTo(3.0f, 12.0f) + arcToRelative(9.0f, 9.0f, 0.0f, true, true, 18.0f, 0.0f) + arcToRelative(9.0f, 9.0f, 0.0f, false, true, -18.0f, 0.0f) + close() + moveTo(17.06f, 8.44f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 2.12f) + lineToRelative(-5.5f, 5.5f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.12f, 0.0f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.12f, -2.12f) + lineToRelative(0.94f, 0.94f) + lineToRelative(4.44f, -4.44f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.12f, 0.0f) + close() + } + } + return _presenceAvailable!! + } + +private var _presenceAvailable: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PresenceAway.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PresenceAway.kt new file mode 100644 index 00000000..1fc6eb1f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PresenceAway.kt @@ -0,0 +1,39 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PresenceAway: ImageVector + get() { + if (_presenceAway != null) { + return _presenceAway!! + } + _presenceAway = fluentIcon(name = "Regular.PresenceAway") { + fluentPath { + moveTo(13.0f, 11.31f) + lineTo(13.0f, 6.5f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) + lineTo(10.0f, 12.0f) + curveToRelative(0.0f, 0.44f, 0.2f, 0.85f, 0.52f, 1.14f) + lineToRelative(3.5f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.96f, -2.28f) + lineTo(13.0f, 11.31f) + close() + moveTo(0.0f, 12.0f) + arcToRelative(12.0f, 12.0f, 0.0f, true, true, 24.0f, 0.0f) + arcToRelative(12.0f, 12.0f, 0.0f, false, true, -24.0f, 0.0f) + close() + moveTo(12.0f, 3.0f) + arcToRelative(9.0f, 9.0f, 0.0f, true, false, 0.0f, 18.0f) + arcToRelative(9.0f, 9.0f, 0.0f, false, false, 0.0f, -18.0f) + close() + } + } + return _presenceAway!! + } + +private var _presenceAway: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PresenceBlocked.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PresenceBlocked.kt similarity index 85% rename from fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PresenceBlocked.kt rename to fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PresenceBlocked.kt index df166957..85666058 100644 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PresenceBlocked.kt +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PresenceBlocked.kt @@ -1,11 +1,11 @@ -package com.konyaco.fluent.icons.regular +package io.github.composefluent.icons.regular import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath public val Icons.Regular.PresenceBlocked: ImageVector get() { diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PresenceDnd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PresenceDnd.kt new file mode 100644 index 00000000..50b6a59d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PresenceDnd.kt @@ -0,0 +1,37 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PresenceDnd: ImageVector + get() { + if (_presenceDnd != null) { + return _presenceDnd!! + } + _presenceDnd = fluentIcon(name = "Regular.PresenceDnd") { + fluentPath { + moveTo(12.0f, 0.0f) + arcToRelative(12.0f, 12.0f, 0.0f, true, false, 0.0f, 24.0f) + arcToRelative(12.0f, 12.0f, 0.0f, false, false, 0.0f, -24.0f) + close() + moveTo(3.0f, 12.0f) + arcToRelative(9.0f, 9.0f, 0.0f, true, true, 18.0f, 0.0f) + arcToRelative(9.0f, 9.0f, 0.0f, false, true, -18.0f, 0.0f) + close() + moveTo(6.0f, 12.0f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(9.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) + horizontalLineToRelative(-9.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 6.0f, 12.0f) + close() + } + } + return _presenceDnd!! + } + +private var _presenceDnd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PresenceOffline.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PresenceOffline.kt similarity index 89% rename from fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PresenceOffline.kt rename to fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PresenceOffline.kt index 74511efa..66daf9eb 100644 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PresenceOffline.kt +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PresenceOffline.kt @@ -1,11 +1,11 @@ -package com.konyaco.fluent.icons.regular +package io.github.composefluent.icons.regular import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath public val Icons.Regular.PresenceOffline: ImageVector get() { diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PresenceOof.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PresenceOof.kt similarity index 88% rename from fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PresenceOof.kt rename to fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PresenceOof.kt index 340c8716..b2ec34c7 100644 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PresenceOof.kt +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PresenceOof.kt @@ -1,11 +1,11 @@ -package com.konyaco.fluent.icons.regular +package io.github.composefluent.icons.regular import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath public val Icons.Regular.PresenceOof: ImageVector get() { diff --git a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PresenceUnknown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PresenceUnknown.kt similarity index 82% rename from fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PresenceUnknown.kt rename to fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PresenceUnknown.kt index dcc9e46e..3dc27f81 100644 --- a/fluent-icons-extended/src/commonMain/kotlin/com/konyaco/fluent/icons/regular/PresenceUnknown.kt +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PresenceUnknown.kt @@ -1,11 +1,11 @@ -package com.konyaco.fluent.icons.regular +package io.github.composefluent.icons.regular import androidx.compose.ui.graphics.vector.ImageVector -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.fluentIcon -import com.konyaco.fluent.icons.fluentPath +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath public val Icons.Regular.PresenceUnknown: ImageVector get() { diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Presenter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Presenter.kt new file mode 100644 index 00000000..7ca2cc4e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Presenter.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Presenter: ImageVector + get() { + if (_presenter != null) { + return _presenter!! + } + _presenter = fluentIcon(name = "Regular.Presenter") { + fluentPath { + moveTo(20.24f, 13.0f) + curveToRelative(0.71f, 0.0f, 1.03f, 0.89f, 0.47f, 1.33f) + lineTo(16.0f, 18.11f) + verticalLineToRelative(1.64f) + curveTo(16.0f, 21.0f, 14.99f, 22.0f, 13.75f, 22.0f) + horizontalLineToRelative(-3.5f) + curveTo(9.01f, 22.0f, 8.0f, 21.0f, 8.0f, 19.75f) + verticalLineToRelative(-1.64f) + lineToRelative(-4.72f, -3.78f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 3.75f, 13.0f) + horizontalLineToRelative(16.5f) + close() + moveTo(18.11f, 14.5f) + lineTo(5.89f, 14.5f) + lineToRelative(3.33f, 2.66f) + curveToRelative(0.18f, 0.15f, 0.28f, 0.36f, 0.28f, 0.59f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.23f, 0.1f, -0.44f, 0.28f, -0.59f) + lineToRelative(3.33f, -2.66f) + close() + moveTo(8.75f, 9.0f) + horizontalLineToRelative(6.5f) + curveToRelative(0.91f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) + lineTo(16.99f, 12.0f) + horizontalLineToRelative(-1.5f) + verticalLineToRelative(-1.25f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.19f, -0.24f) + lineToRelative(-0.05f, -0.01f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.24f, 0.2f) + lineToRelative(-0.01f, 0.05f) + lineTo(8.5f, 12.0f) + lineTo(7.0f, 12.0f) + verticalLineToRelative(-1.25f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) + lineTo(8.76f, 9.0f) + horizontalLineToRelative(6.5f) + horizontalLineToRelative(-6.5f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + } + } + return _presenter!! + } + +private var _presenter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PresenterOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PresenterOff.kt new file mode 100644 index 00000000..2d1d8d24 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PresenterOff.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PresenterOff: ImageVector + get() { + if (_presenterOff != null) { + return _presenterOff!! + } + _presenterOff = fluentIcon(name = "Regular.PresenterOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(5.85f, 5.86f) + curveTo(7.44f, 9.4f, 7.0f, 10.02f, 7.0f, 10.75f) + lineTo(7.0f, 12.0f) + horizontalLineToRelative(1.5f) + verticalLineToRelative(-1.31f) + curveToRelative(0.03f, -0.1f, 0.13f, -0.19f, 0.25f, -0.19f) + horizontalLineToRelative(0.69f) + lineToRelative(2.5f, 2.5f) + horizontalLineToRelative(-8.2f) + curveToRelative(-0.7f, 0.0f, -1.01f, 0.89f, -0.46f, 1.33f) + lineTo(8.0f, 18.11f) + verticalLineToRelative(1.64f) + curveTo(8.0f, 21.0f, 9.0f, 22.0f, 10.25f, 22.0f) + horizontalLineToRelative(3.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-1.64f) + lineToRelative(0.58f, -0.47f) + lineToRelative(4.14f, 4.14f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(15.51f, 16.57f) + lineTo(14.78f, 17.17f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.28f, 0.58f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.42f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.23f, -0.1f, -0.44f, -0.28f, -0.59f) + lineTo(5.89f, 14.5f) + horizontalLineToRelative(7.55f) + lineToRelative(2.07f, 2.07f) + close() + moveTo(12.0f, 8.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.98f, -0.16f) + lineTo(9.16f, 5.98f) + arcTo(3.0f, 3.0f, 0.0f, true, true, 12.0f, 8.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(20.24f, 13.0f) + horizontalLineToRelative(-4.06f) + lineToRelative(2.76f, 2.76f) + lineToRelative(1.77f, -1.43f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.47f, -1.33f) + close() + moveTo(13.68f, 10.5f) + lineTo(12.18f, 9.0f) + horizontalLineToRelative(3.06f) + curveToRelative(0.92f, 0.0f, 1.68f, 0.7f, 1.75f, 1.6f) + lineTo(16.99f, 12.0f) + horizontalLineToRelative(-1.5f) + verticalLineToRelative(-1.25f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.19f, -0.24f) + lineToRelative(-0.06f, -0.01f) + horizontalLineToRelative(-1.56f) + close() + } + } + return _presenterOff!! + } + +private var _presenterOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PreviewLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PreviewLink.kt new file mode 100644 index 00000000..1f6adfbd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PreviewLink.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PreviewLink: ImageVector + get() { + if (_previewLink != null) { + return _previewLink!! + } + _previewLink = fluentIcon(name = "Regular.PreviewLink") { + fluentPath { + moveTo(4.52f, 6.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(13.46f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(5.27f, 10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-3.5f) + close() + moveTo(6.02f, 7.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(11.96f) + lineTo(17.98f, 7.0f) + lineTo(6.02f, 7.0f) + close() + moveTo(14.23f, 11.98f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-4.5f) + close() + moveTo(14.98f, 16.48f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(-3.0f) + close() + moveTo(4.52f, 13.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.98f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(5.27f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(5.27f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.98f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(5.27f, 16.0f) + close() + moveTo(2.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 3.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 21.0f) + lineTo(4.75f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 18.25f) + lineTo(2.0f, 5.75f) + close() + moveTo(4.75f, 4.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(14.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + lineTo(20.5f, 5.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(4.75f, 4.5f) + close() + } + } + return _previewLink!! + } + +private var _previewLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Previous.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Previous.kt new file mode 100644 index 00000000..88a704e8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Previous.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Previous: ImageVector + get() { + if (_previous != null) { + return _previous!! + } + _previous = fluentIcon(name = "Regular.Previous") { + fluentPath { + moveTo(21.0f, 4.75f) + curveToRelative(0.0f, -1.4f, -1.58f, -2.24f, -2.74f, -1.44f) + lineToRelative(-10.5f, 7.2f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, 2.87f) + lineToRelative(10.5f, 7.3f) + curveToRelative(1.15f, 0.81f, 2.74f, -0.02f, 2.74f, -1.43f) + lineTo(21.0f, 4.75f) + close() + moveTo(19.1f, 4.55f) + curveToRelative(0.17f, -0.12f, 0.4f, 0.0f, 0.4f, 0.2f) + verticalLineToRelative(14.5f) + curveToRelative(0.0f, 0.2f, -0.23f, 0.32f, -0.4f, 0.2f) + lineToRelative(-10.5f, -7.3f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, 0.01f, -0.41f) + lineToRelative(10.5f, -7.2f) + close() + moveTo(3.0f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(3.0f, 3.75f) + close() + } + } + return _previous!! + } + +private var _previous: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Print.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Print.kt new file mode 100644 index 00000000..cdb44f15 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Print.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Print: ImageVector + get() { + if (_print != null) { + return _print!! + } + _print = fluentIcon(name = "Regular.Print") { + fluentPath { + moveTo(15.75f, 3.0f) + curveTo(17.0f, 3.0f, 18.0f, 4.0f, 18.0f, 5.25f) + lineTo(18.0f, 6.0f) + horizontalLineToRelative(0.75f) + curveTo(20.55f, 6.0f, 22.0f, 7.46f, 22.0f, 9.25f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.24f, 2.25f) + lineTo(18.0f, 17.5f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-7.5f) + curveTo(7.01f, 21.0f, 6.0f, 20.0f, 6.0f, 18.75f) + lineTo(6.0f, 17.5f) + lineTo(4.25f, 17.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-6.0f) + curveTo(2.0f, 7.45f, 3.46f, 6.0f, 5.25f, 6.0f) + lineTo(6.0f, 6.0f) + verticalLineToRelative(-0.75f) + curveTo(6.0f, 4.01f, 7.0f, 3.0f, 8.25f, 3.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(15.75f, 13.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(7.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(18.75f, 7.5f) + lineTo(5.25f, 7.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.79f, -1.75f, 1.75f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(6.0f, 16.0f) + verticalLineToRelative(-1.75f) + curveTo(6.0f, 13.01f, 7.0f, 12.0f, 8.25f, 12.0f) + horizontalLineToRelative(7.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + lineTo(18.0f, 16.0f) + horizontalLineToRelative(1.78f) + curveToRelative(0.4f, -0.01f, 0.73f, -0.34f, 0.73f, -0.75f) + verticalLineToRelative(-6.0f) + curveToRelative(0.0f, -0.96f, -0.8f, -1.75f, -1.76f, -1.75f) + close() + moveTo(15.75f, 4.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(7.5f, 6.0f) + horizontalLineToRelative(9.0f) + verticalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + } + } + return _print!! + } + +private var _print: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PrintAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PrintAdd.kt new file mode 100644 index 00000000..1c4ad6da --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PrintAdd.kt @@ -0,0 +1,88 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PrintAdd: ImageVector + get() { + if (_printAdd != null) { + return _printAdd!! + } + _printAdd = fluentIcon(name = "Regular.PrintAdd") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 7.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 7.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 6.0f) + lineTo(17.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + lineTo(18.0f, 6.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 7.0f) + close() + moveTo(20.5f, 16.25f) + verticalLineToRelative(-3.98f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -1.08f) + verticalLineToRelative(5.06f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.24f, 2.25f) + lineTo(18.0f, 18.5f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-7.5f) + curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) + lineTo(6.0f, 18.5f) + lineTo(4.25f, 18.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-6.0f) + curveTo(2.0f, 8.45f, 3.46f, 7.0f, 5.25f, 7.0f) + lineTo(6.0f, 7.0f) + verticalLineToRelative(-0.75f) + curveTo(6.0f, 5.01f, 7.0f, 4.0f, 8.25f, 4.0f) + horizontalLineToRelative(3.25f) + curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) + lineTo(8.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(7.5f, 7.0f) + horizontalLineToRelative(3.52f) + curveToRelative(0.04f, 0.52f, 0.14f, 1.03f, 0.3f, 1.5f) + lineTo(5.24f, 8.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.79f, -1.75f, 1.75f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(6.0f, 17.0f) + verticalLineToRelative(-1.75f) + curveTo(6.0f, 14.01f, 7.0f, 13.0f, 8.25f, 13.0f) + horizontalLineToRelative(7.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(1.78f) + curveToRelative(0.4f, -0.01f, 0.73f, -0.34f, 0.73f, -0.75f) + close() + moveTo(16.5f, 15.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(7.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-4.5f) + close() + } + } + return _printAdd!! + } + +private var _printAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Production.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Production.kt new file mode 100644 index 00000000..3b4286f9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Production.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Production: ImageVector + get() { + if (_production != null) { + return _production!! + } + _production = fluentIcon(name = "Regular.Production") { + fluentPath { + moveTo(6.25f, 3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-2.5f) + close() + moveTo(13.5f, 5.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-2.5f) + close() + moveTo(15.25f, 5.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(2.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-2.5f) + close() + moveTo(7.0f, 17.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + close() + moveTo(13.5f, 16.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + moveTo(17.0f, 17.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + close() + moveTo(2.0f, 16.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 4.5f, -4.5f) + horizontalLineToRelative(11.0f) + arcToRelative(4.5f, 4.5f, 0.0f, true, true, 0.0f, 9.0f) + horizontalLineToRelative(-11.0f) + arcTo(4.5f, 4.5f, 0.0f, false, true, 2.0f, 16.0f) + close() + moveTo(6.5f, 13.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + horizontalLineToRelative(11.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) + horizontalLineToRelative(-11.0f) + close() + } + } + return _production!! + } + +private var _production: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ProductionCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ProductionCheckmark.kt new file mode 100644 index 00000000..2d14dcda --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ProductionCheckmark.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ProductionCheckmark: ImageVector + get() { + if (_productionCheckmark != null) { + return _productionCheckmark!! + } + _productionCheckmark = fluentIcon(name = "Regular.ProductionCheckmark") { + fluentPath { + moveTo(6.25f, 3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-2.5f) + close() + moveTo(13.5f, 5.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-2.5f) + close() + moveTo(15.25f, 5.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(2.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-2.5f) + close() + moveTo(7.0f, 17.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + close() + moveTo(6.5f, 13.0f) + horizontalLineToRelative(6.31f) + arcTo(6.51f, 6.51f, 0.0f, false, true, 15.0f, 11.5f) + lineTo(6.5f, 11.5f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, 0.0f, 9.0f) + horizontalLineToRelative(5.23f) + arcToRelative(6.46f, 6.46f, 0.0f, false, true, -0.56f, -1.5f) + lineTo(6.5f, 19.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) + close() + moveTo(10.5f, 16.0f) + curveToRelative(0.0f, 0.45f, 0.2f, 0.85f, 0.51f, 1.13f) + curveToRelative(0.05f, -0.94f, 0.3f, -1.82f, 0.7f, -2.6f) + arcTo(1.5f, 1.5f, 0.0f, false, false, 10.5f, 16.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-3.65f, 3.64f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _productionCheckmark!! + } + +private var _productionCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Prohibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Prohibited.kt new file mode 100644 index 00000000..03c962ae --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Prohibited.kt @@ -0,0 +1,35 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Prohibited: ImageVector + get() { + if (_prohibited != null) { + return _prohibited!! + } + _prohibited = fluentIcon(name = "Regular.Prohibited") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(18.52f, 6.54f) + lineTo(6.54f, 18.52f) + arcTo(8.5f, 8.5f, 0.0f, false, false, 18.51f, 6.55f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, -6.52f, 13.96f) + lineTo(17.46f, 5.48f) + arcTo(8.47f, 8.47f, 0.0f, false, false, 12.0f, 3.5f) + close() + } + } + return _prohibited!! + } + +private var _prohibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ProhibitedMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ProhibitedMultiple.kt new file mode 100644 index 00000000..a8b7e4d2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ProhibitedMultiple.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ProhibitedMultiple: ImageVector + get() { + if (_prohibitedMultiple != null) { + return _prohibitedMultiple!! + } + _prohibitedMultiple = fluentIcon(name = "Regular.ProhibitedMultiple") { + fluentPath { + moveTo(2.0f, 10.75f) + arcToRelative(8.75f, 8.75f, 0.0f, true, true, 17.5f, 0.0f) + arcToRelative(8.75f, 8.75f, 0.0f, false, true, -17.5f, 0.0f) + close() + moveTo(10.75f, 3.5f) + arcToRelative(7.25f, 7.25f, 0.0f, false, false, -5.63f, 11.82f) + lineToRelative(10.2f, -10.2f) + arcToRelative(7.22f, 7.22f, 0.0f, false, false, -4.57f, -1.62f) + close() + moveTo(10.75f, 18.0f) + arcToRelative(7.25f, 7.25f, 0.0f, false, false, 5.63f, -11.82f) + lineToRelative(-10.2f, 10.2f) + arcTo(7.22f, 7.22f, 0.0f, false, false, 10.75f, 18.0f) + close() + moveTo(13.25f, 22.0f) + curveToRelative(-2.1f, 0.0f, -4.04f, -0.75f, -5.55f, -1.99f) + arcToRelative(9.74f, 9.74f, 0.0f, false, false, 4.4f, 0.4f) + arcToRelative(7.25f, 7.25f, 0.0f, false, false, 8.32f, -8.31f) + arcToRelative(9.84f, 9.84f, 0.0f, false, false, -0.4f, -4.4f) + arcTo(8.75f, 8.75f, 0.0f, false, true, 13.25f, 22.0f) + close() + } + } + return _prohibitedMultiple!! + } + +private var _prohibitedMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ProjectionScreen.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ProjectionScreen.kt new file mode 100644 index 00000000..28a23100 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ProjectionScreen.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ProjectionScreen: ImageVector + get() { + if (_projectionScreen != null) { + return _projectionScreen!! + } + _projectionScreen = fluentIcon(name = "Regular.ProjectionScreen") { + fluentPath { + moveTo(3.5f, 3.0f) + arcTo(1.5f, 1.5f, 0.0f, false, false, 3.0f, 5.91f) + verticalLineToRelative(7.34f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 6.75f, 17.0f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + lineTo(12.75f, 17.0f) + horizontalLineToRelative(4.5f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 21.0f, 13.25f) + lineTo(21.0f, 5.91f) + arcTo(1.5f, 1.5f, 0.0f, false, false, 20.5f, 3.0f) + horizontalLineToRelative(-17.0f) + close() + moveTo(4.5f, 6.0f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(7.25f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(6.75f, 15.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + lineTo(4.5f, 6.0f) + close() + } + } + return _projectionScreen!! + } + +private var _projectionScreen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ProjectionScreenDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ProjectionScreenDismiss.kt new file mode 100644 index 00000000..e5439f58 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ProjectionScreenDismiss.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ProjectionScreenDismiss: ImageVector + get() { + if (_projectionScreenDismiss != null) { + return _projectionScreenDismiss!! + } + _projectionScreenDismiss = fluentIcon(name = "Regular.ProjectionScreenDismiss") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 4.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineTo(18.21f, 6.5f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineTo(17.5f, 5.79f) + lineToRelative(-1.65f, -1.64f) + close() + moveTo(19.5f, 13.25f) + verticalLineToRelative(-0.56f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, 1.5f, -0.71f) + verticalLineToRelative(1.27f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 17.25f, 17.0f) + horizontalLineToRelative(-4.5f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.5f) + lineTo(11.25f, 17.0f) + horizontalLineToRelative(-4.5f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 3.0f, 13.25f) + lineTo(3.0f, 5.91f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 3.5f, 3.0f) + horizontalLineToRelative(8.52f) + curveToRelative(-0.56f, 0.88f, -0.92f, 1.9f, -1.0f, 3.0f) + lineTo(4.5f, 6.0f) + verticalLineToRelative(7.25f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(10.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + close() + } + } + return _projectionScreenDismiss!! + } + +private var _projectionScreenDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ProjectionScreenText.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ProjectionScreenText.kt new file mode 100644 index 00000000..cad63a66 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ProjectionScreenText.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ProjectionScreenText: ImageVector + get() { + if (_projectionScreenText != null) { + return _projectionScreenText!! + } + _projectionScreenText = fluentIcon(name = "Regular.ProjectionScreenText") { + fluentPath { + moveTo(9.0f, 7.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.0f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 9.0f, 7.75f) + close() + moveTo(9.75f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.0f) + close() + moveTo(8.75f, 10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.5f) + close() + moveTo(2.0f, 4.5f) + curveTo(2.0f, 3.67f, 2.67f, 3.0f, 3.5f, 3.0f) + horizontalLineToRelative(17.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.5f, 2.91f) + verticalLineToRelative(7.34f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 17.25f, 17.0f) + horizontalLineToRelative(-4.5f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.5f) + lineTo(11.25f, 17.0f) + horizontalLineToRelative(-4.5f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 3.0f, 13.25f) + lineTo(3.0f, 5.91f) + curveToRelative(-0.58f, -0.2f, -1.0f, -0.76f, -1.0f, -1.41f) + close() + moveTo(19.5f, 6.0f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(7.25f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(10.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(19.5f, 6.0f) + close() + } + } + return _projectionScreenText!! + } + +private var _projectionScreenText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ProtocolHandler.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ProtocolHandler.kt new file mode 100644 index 00000000..62b2f9c7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ProtocolHandler.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ProtocolHandler: ImageVector + get() { + if (_protocolHandler != null) { + return _protocolHandler!! + } + _protocolHandler = fluentIcon(name = "Regular.ProtocolHandler") { + fluentPath { + moveToRelative(13.73f, 17.73f) + lineToRelative(-1.02f, -1.02f) + lineToRelative(1.06f, -1.06f) + lineToRelative(1.02f, 1.02f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.42f, 0.0f) + lineToRelative(3.96f, -3.96f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.42f) + lineToRelative(-3.96f, -3.96f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, 0.0f) + lineToRelative(-1.02f, 1.02f) + lineTo(12.7f, 7.3f) + lineToRelative(1.02f, -1.02f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 3.54f, 0.0f) + lineToRelative(3.96f, 3.96f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, 3.54f) + lineToRelative(-3.96f, 3.96f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -3.54f, 0.0f) + close() + moveTo(6.73f, 6.27f) + lineTo(2.77f, 10.23f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 3.54f) + lineToRelative(3.96f, 3.96f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 3.54f, 0.0f) + lineToRelative(3.96f, -3.96f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, -3.54f) + lineToRelative(-3.96f, -3.96f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -3.54f, 0.0f) + close() + moveTo(3.83f, 11.29f) + lineTo(7.79f, 7.33f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.42f, 0.0f) + lineToRelative(3.96f, 3.96f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.42f) + lineToRelative(-3.96f, 3.96f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.42f, 0.0f) + lineToRelative(-3.96f, -3.96f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.42f) + close() + } + } + return _protocolHandler!! + } + +private var _protocolHandler: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Pulse.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Pulse.kt new file mode 100644 index 00000000..23aac5e6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Pulse.kt @@ -0,0 +1,43 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Pulse: ImageVector + get() { + if (_pulse != null) { + return _pulse!! + } + _pulse = fluentIcon(name = "Regular.Pulse") { + fluentPath { + moveToRelative(8.46f, 6.8f) + lineToRelative(3.29f, 13.63f) + curveToRelative(0.17f, 0.73f, 1.2f, 0.77f, 1.44f, 0.05f) + lineToRelative(3.26f, -10.12f) + lineToRelative(0.58f, 2.1f) + curveToRelative(0.1f, 0.32f, 0.39f, 0.54f, 0.72f, 0.54f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.93f) + lineToRelative(-1.1f, -3.95f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.44f, -0.03f) + lineToRelative(-3.2f, 9.96f) + lineToRelative(-3.35f, -13.9f) + curveToRelative(-0.19f, -0.76f, -1.26f, -0.77f, -1.46f, -0.02f) + lineToRelative(-2.1f, 7.94f) + horizontalLineTo(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + curveToRelative(0.34f, 0.0f, 0.63f, -0.23f, 0.72f, -0.56f) + lineToRelative(1.5f, -5.63f) + close() + } + } + return _pulse!! + } + +private var _pulse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PulseSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PulseSquare.kt new file mode 100644 index 00000000..90d7244a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PulseSquare.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PulseSquare: ImageVector + get() { + if (_pulseSquare != null) { + return _pulseSquare!! + } + _pulseSquare = fluentIcon(name = "Regular.PulseSquare") { + fluentPath { + moveTo(18.75f, 3.0f) + curveTo(19.99f, 3.0f, 21.0f, 4.0f, 21.0f, 5.25f) + verticalLineToRelative(13.5f) + curveTo(21.0f, 20.0f, 20.0f, 21.0f, 18.75f, 21.0f) + lineTo(5.25f, 21.0f) + curveTo(4.01f, 21.0f, 3.0f, 20.0f, 3.0f, 18.75f) + lineTo(3.0f, 5.25f) + curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(13.5f) + close() + moveTo(18.75f, 4.5f) + lineTo(5.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) + lineTo(19.5f, 5.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(8.25f, 11.5f) + lineTo(9.81f, 7.95f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.08f) + lineToRelative(0.04f, 0.1f) + lineToRelative(2.39f, 5.95f) + lineToRelative(1.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.56f, -0.41f) + lineToRelative(0.11f, -0.01f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(15.71f, 13.0f) + lineToRelative(-1.54f, 3.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.32f, 0.04f) + lineToRelative(-0.05f, -0.1f) + lineToRelative(-2.33f, -5.83f) + lineToRelative(-1.04f, 2.36f) + curveToRelative(-0.1f, 0.24f, -0.32f, 0.4f, -0.57f, 0.44f) + lineToRelative(-0.11f, 0.01f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(1.6f) + lineToRelative(1.56f, -3.55f) + lineToRelative(-1.55f, 3.55f) + close() + } + } + return _pulseSquare!! + } + +private var _pulseSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PuzzleCube.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PuzzleCube.kt new file mode 100644 index 00000000..91470b76 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PuzzleCube.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PuzzleCube: ImageVector + get() { + if (_puzzleCube != null) { + return _puzzleCube!! + } + _puzzleCube = fluentIcon(name = "Regular.PuzzleCube") { + fluentPath { + moveTo(3.0f, 8.5f) + verticalLineToRelative(9.25f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(8.5f, 3.0f) + verticalLineToRelative(5.5f) + lineTo(3.0f, 8.5f) + close() + moveTo(8.5f, 10.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(4.0f) + close() + moveTo(10.0f, 14.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(15.5f, 14.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(10.0f, 15.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(15.5f, 15.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(15.5f, 19.5f) + verticalLineToRelative(-4.0f) + close() + moveTo(15.5f, 4.5f) + horizontalLineToRelative(2.25f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(19.5f, 8.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(14.0f, 8.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(4.0f) + close() + moveTo(8.5f, 15.5f) + verticalLineToRelative(4.0f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 15.5f) + horizontalLineToRelative(4.0f) + close() + } + } + return _puzzleCube!! + } + +private var _puzzleCube: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PuzzlePiece.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PuzzlePiece.kt new file mode 100644 index 00000000..3b423a07 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/PuzzlePiece.kt @@ -0,0 +1,98 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.PuzzlePiece: ImageVector + get() { + if (_puzzlePiece != null) { + return _puzzlePiece!! + } + _puzzlePiece = fluentIcon(name = "Regular.PuzzlePiece") { + fluentPath { + moveTo(13.0f, 2.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) + lineTo(16.0f, 5.0f) + horizontalLineToRelative(2.25f) + curveToRelative(0.87f, 0.0f, 1.59f, 0.63f, 1.73f, 1.46f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(3.89f) + lineTo(18.0f, 10.5f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -1.48f, 1.24f) + lineToRelative(-0.01f, 0.13f) + lineTo(16.51f, 12.0f) + curveToRelative(0.0f, 0.74f, 0.53f, 1.37f, 1.23f, 1.48f) + lineToRelative(0.13f, 0.02f) + lineTo(20.0f, 13.5f) + verticalLineToRelative(3.75f) + curveToRelative(0.0f, 0.92f, -0.7f, 1.67f, -1.6f, 1.75f) + lineTo(16.0f, 19.0f) + verticalLineToRelative(0.17f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.64f, 2.8f) + lineToRelative(-0.18f, 0.02f) + lineTo(13.0f, 21.99f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -2.81f) + lineTo(10.0f, 19.0f) + lineTo(7.75f, 19.0f) + curveToRelative(-0.87f, 0.0f, -1.59f, -0.63f, -1.73f, -1.46f) + lineToRelative(-0.01f, -0.14f) + lineToRelative(-0.01f, -0.15f) + lineTo(6.0f, 15.0f) + horizontalLineToRelative(-0.16f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.8f, -2.64f) + lineToRelative(-0.02f, -0.18f) + lineTo(3.02f, 12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.82f, -3.0f) + lineTo(6.0f, 9.0f) + lineTo(6.0f, 6.75f) + curveToRelative(0.0f, -0.87f, 0.63f, -1.59f, 1.46f, -1.73f) + lineToRelative(0.15f, -0.01f) + lineToRelative(0.14f, -0.01f) + lineTo(10.0f, 5.0f) + verticalLineToRelative(-0.17f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.64f, -2.8f) + lineToRelative(0.18f, -0.02f) + lineTo(13.0f, 2.01f) + close() + moveTo(13.0f, 3.5f) + curveToRelative(-0.78f, 0.0f, -1.42f, 0.6f, -1.5f, 1.36f) + lineTo(11.5f, 6.5f) + lineTo(7.75f, 6.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.24f, 0.2f) + lineToRelative(-0.01f, 0.05f) + verticalLineToRelative(3.75f) + lineTo(6.0f, 10.5f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -0.14f, 3.0f) + lineTo(7.5f, 13.5f) + verticalLineToRelative(3.75f) + curveToRelative(0.0f, 0.12f, 0.08f, 0.22f, 0.2f, 0.25f) + horizontalLineToRelative(3.8f) + lineTo(11.5f, 19.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.14f) + lineTo(14.5f, 17.5f) + horizontalLineToRelative(3.75f) + curveToRelative(0.12f, 0.0f, 0.22f, -0.08f, 0.24f, -0.19f) + lineTo(18.49f, 15.0f) + horizontalLineToRelative(-0.69f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.8f, -2.85f) + verticalLineToRelative(-0.35f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 17.84f, 9.0f) + horizontalLineToRelative(0.67f) + lineTo(18.51f, 6.75f) + curveToRelative(0.0f, -0.1f, -0.05f, -0.18f, -0.13f, -0.22f) + lineToRelative(-0.06f, -0.02f) + lineToRelative(-0.06f, -0.01f) + lineTo(14.5f, 6.5f) + lineTo(14.5f, 5.0f) + curveToRelative(0.0f, -0.82f, -0.67f, -1.5f, -1.5f, -1.5f) + close() + } + } + return _puzzlePiece!! + } + +private var _puzzlePiece: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/QrCode.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/QrCode.kt new file mode 100644 index 00000000..165a974f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/QrCode.kt @@ -0,0 +1,126 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.QrCode: ImageVector + get() { + if (_qrCode != null) { + return _qrCode!! + } + _qrCode = fluentIcon(name = "Regular.QrCode") { + fluentPath { + moveTo(8.0f, 6.0f) + lineTo(6.0f, 6.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(2.0f) + lineTo(8.0f, 6.0f) + close() + moveTo(3.0f, 5.25f) + curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(3.5f) + curveTo(9.99f, 3.0f, 11.0f, 4.0f, 11.0f, 5.25f) + verticalLineToRelative(3.5f) + curveTo(11.0f, 9.99f, 10.0f, 11.0f, 8.75f, 11.0f) + horizontalLineToRelative(-3.5f) + curveTo(4.01f, 11.0f, 3.0f, 10.0f, 3.0f, 8.75f) + verticalLineToRelative(-3.5f) + close() + moveTo(5.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.5f) + close() + moveTo(6.0f, 16.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(2.0f) + lineTo(6.0f, 18.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(3.0f, 15.25f) + curveTo(3.0f, 14.01f, 4.0f, 13.0f, 5.25f, 13.0f) + horizontalLineToRelative(3.5f) + curveTo(9.99f, 13.0f, 11.0f, 14.0f, 11.0f, 15.25f) + verticalLineToRelative(3.5f) + curveTo(11.0f, 19.99f, 10.0f, 21.0f, 8.75f, 21.0f) + horizontalLineToRelative(-3.5f) + curveTo(4.01f, 21.0f, 3.0f, 20.0f, 3.0f, 18.75f) + verticalLineToRelative(-3.5f) + close() + moveTo(5.25f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.5f) + close() + moveTo(18.0f, 6.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(2.0f) + lineTo(18.0f, 6.0f) + close() + moveTo(15.25f, 3.0f) + curveTo(14.01f, 3.0f, 13.0f, 4.0f, 13.0f, 5.25f) + verticalLineToRelative(3.5f) + curveTo(13.0f, 9.99f, 14.0f, 11.0f, 15.25f, 11.0f) + horizontalLineToRelative(3.5f) + curveTo(19.99f, 11.0f, 21.0f, 10.0f, 21.0f, 8.75f) + verticalLineToRelative(-3.5f) + curveTo(21.0f, 4.01f, 20.0f, 3.0f, 18.75f, 3.0f) + horizontalLineToRelative(-3.5f) + close() + moveTo(14.5f, 5.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-3.5f) + close() + moveTo(13.0f, 13.0f) + horizontalLineToRelative(2.75f) + verticalLineToRelative(2.75f) + lineTo(13.0f, 15.75f) + lineTo(13.0f, 13.0f) + close() + moveTo(18.25f, 15.75f) + horizontalLineToRelative(-2.5f) + verticalLineToRelative(2.5f) + lineTo(13.0f, 18.25f) + lineTo(13.0f, 21.0f) + horizontalLineToRelative(2.75f) + verticalLineToRelative(-2.75f) + horizontalLineToRelative(2.5f) + lineTo(18.25f, 21.0f) + lineTo(21.0f, 21.0f) + verticalLineToRelative(-2.75f) + horizontalLineToRelative(-2.75f) + verticalLineToRelative(-2.5f) + close() + moveTo(18.25f, 15.75f) + lineTo(18.25f, 13.0f) + lineTo(21.0f, 13.0f) + verticalLineToRelative(2.75f) + horizontalLineToRelative(-2.75f) + close() + } + } + return _qrCode!! + } + +private var _qrCode: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Question.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Question.kt new file mode 100644 index 00000000..f09c5b41 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Question.kt @@ -0,0 +1,41 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Question: ImageVector + get() { + if (_question != null) { + return _question!! + } + _question = fluentIcon(name = "Regular.Question") { + fluentPath { + moveTo(12.0f, 4.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, -5.0f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 7.0f, 0.0f) + curveToRelative(0.0f, 0.85f, -0.22f, 1.42f, -0.53f, 1.86f) + arcToRelative(5.82f, 5.82f, 0.0f, false, true, -1.44f, 1.34f) + curveToRelative(-1.0f, 0.77f, -2.28f, 1.73f, -2.28f, 3.8f) + verticalLineToRelative(0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(12.75f, 16.0f) + curveToRelative(0.0f, -1.32f, 0.71f, -1.86f, 1.79f, -2.68f) + lineToRelative(0.04f, -0.04f) + curveToRelative(0.53f, -0.4f, 1.15f, -0.88f, 1.62f, -1.56f) + arcTo(5.0f, 5.0f, 0.0f, false, false, 12.0f, 4.0f) + close() + moveTo(12.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + } + } + return _question!! + } + +private var _question: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/QuestionCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/QuestionCircle.kt new file mode 100644 index 00000000..a6d1bd35 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/QuestionCircle.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.QuestionCircle: ImageVector + get() { + if (_questionCircle != null) { + return _questionCircle!! + } + _questionCircle = fluentIcon(name = "Regular.QuestionCircle") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(12.0f, 3.67f) + arcToRelative(8.34f, 8.34f, 0.0f, false, false, 0.0f, 16.66f) + arcToRelative(8.34f, 8.34f, 0.0f, false, false, 0.0f, -16.66f) + close() + moveTo(12.0f, 15.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(12.0f, 6.75f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.75f, 2.75f) + curveToRelative(0.0f, 1.01f, -0.3f, 1.57f, -1.05f, 2.36f) + lineToRelative(-0.17f, 0.17f) + curveToRelative(-0.62f, 0.62f, -0.78f, 0.89f, -0.78f, 1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + curveToRelative(0.0f, -1.01f, 0.3f, -1.57f, 1.05f, -2.36f) + lineToRelative(0.17f, -0.17f) + curveToRelative(0.62f, -0.62f, 0.78f, -0.89f, 0.78f, -1.47f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.5f, -0.13f) + verticalLineToRelative(0.13f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 12.0f, 6.75f) + close() + } + } + return _questionCircle!! + } + +private var _questionCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/QuizNew.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/QuizNew.kt new file mode 100644 index 00000000..eaf51930 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/QuizNew.kt @@ -0,0 +1,101 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.QuizNew: ImageVector + get() { + if (_quizNew != null) { + return _quizNew!! + } + _quizNew = fluentIcon(name = "Regular.QuizNew") { + fluentPath { + moveTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(6.27f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 5.74f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(5.75f, 4.49f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(5.56f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(5.75f, 20.99f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + close() + moveTo(6.75f, 13.5f) + horizontalLineToRelative(5.63f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -0.88f, 1.5f) + lineTo(6.75f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(10.25f, 18.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(10.0f, 5.0f) + curveToRelative(0.3f, 0.0f, 0.58f, 0.18f, 0.7f, 0.46f) + lineToRelative(2.24f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.39f, 0.57f) + lineToRelative(-0.42f, -1.03f) + lineTo(8.87f, 10.5f) + lineToRelative(-0.43f, 1.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.38f, -0.56f) + lineToRelative(2.25f, -5.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 10.0f, 5.0f) + close() + moveTo(9.48f, 9.0f) + horizontalLineToRelative(1.04f) + lineTo(10.0f, 7.73f) + lineTo(9.48f, 9.0f) + close() + moveTo(15.75f, 5.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.33f, 0.75f, 0.75f) + lineTo(16.5f, 7.0f) + horizontalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(16.5f, 8.5f) + verticalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(15.0f, 8.5f) + horizontalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(15.0f, 7.0f) + lineTo(15.0f, 5.75f) + curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _quizNew!! + } + +private var _quizNew: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RadioButton.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RadioButton.kt new file mode 100644 index 00000000..556fe80e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RadioButton.kt @@ -0,0 +1,30 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.RadioButton: ImageVector + get() { + if (_radioButton != null) { + return _radioButton!! + } + _radioButton = fluentIcon(name = "Regular.RadioButton") { + fluentPath { + moveTo(12.0f, 22.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, -20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, 20.0f) + close() + moveTo(12.0f, 20.5f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 0.0f, -17.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, 0.0f, 17.0f) + close() + } + } + return _radioButton!! + } + +private var _radioButton: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RatingMature.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RatingMature.kt new file mode 100644 index 00000000..839578f6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RatingMature.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.RatingMature: ImageVector + get() { + if (_ratingMature != null) { + return _ratingMature!! + } + _ratingMature = fluentIcon(name = "Regular.RatingMature") { + fluentPath { + moveTo(8.83f, 8.27f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.33f, 0.48f) + verticalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) + verticalLineToRelative(-4.43f) + lineToRelative(2.42f, 2.91f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.16f, 0.0f) + lineToRelative(2.42f, -2.9f) + verticalLineToRelative(4.42f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) + verticalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.33f, -0.48f) + lineTo(12.0f, 12.07f) + lineToRelative(-3.17f, -3.8f) + close() + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineTo(6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + horizontalLineTo(6.25f) + close() + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineTo(6.25f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineTo(6.25f) + close() + } + } + return _ratingMature!! + } + +private var _ratingMature: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RatioOneToOne.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RatioOneToOne.kt new file mode 100644 index 00000000..1746ff3e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RatioOneToOne.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.RatioOneToOne: ImageVector + get() { + if (_ratioOneToOne != null) { + return _ratioOneToOne!! + } + _ratioOneToOne = fluentIcon(name = "Regular.RatioOneToOne") { + fluentPath { + moveTo(8.5f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.17f, -0.62f) + lineToRelative(-1.5f, 1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.84f, 1.24f) + lineToRelative(0.33f, -0.22f) + verticalLineToRelative(5.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-6.5f) + close() + moveTo(17.5f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.17f, -0.62f) + lineToRelative(-1.5f, 1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.84f, 1.24f) + lineToRelative(0.33f, -0.22f) + verticalLineToRelative(5.1f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) + verticalLineToRelative(-6.5f) + close() + moveTo(13.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(12.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(5.25f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) + horizontalLineToRelative(13.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-9.5f) + curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) + lineTo(5.25f, 4.0f) + close() + moveTo(3.5f, 7.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(5.25f, 18.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-9.5f) + close() + } + } + return _ratioOneToOne!! + } + +private var _ratioOneToOne: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReOrderDotsHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReOrderDotsHorizontal.kt new file mode 100644 index 00000000..4927b510 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReOrderDotsHorizontal.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ReOrderDotsHorizontal: ImageVector + get() { + if (_reOrderDotsHorizontal != null) { + return _reOrderDotsHorizontal!! + } + _reOrderDotsHorizontal = fluentIcon(name = "Regular.ReOrderDotsHorizontal") { + fluentPath { + moveTo(7.0f, 15.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + moveTo(7.0f, 8.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + moveTo(14.0f, 15.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + moveTo(14.0f, 8.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + moveTo(21.0f, 15.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + moveTo(21.0f, 8.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + } + } + return _reOrderDotsHorizontal!! + } + +private var _reOrderDotsHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReOrderDotsVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReOrderDotsVertical.kt new file mode 100644 index 00000000..703b53bf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReOrderDotsVertical.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ReOrderDotsVertical: ImageVector + get() { + if (_reOrderDotsVertical != null) { + return _reOrderDotsVertical!! + } + _reOrderDotsVertical = fluentIcon(name = "Regular.ReOrderDotsVertical") { + fluentPath { + moveTo(15.5f, 17.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(8.5f, 17.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(15.5f, 10.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(8.5f, 10.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(15.5f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(8.5f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + } + } + return _reOrderDotsVertical!! + } + +private var _reOrderDotsVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReadAloud.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReadAloud.kt new file mode 100644 index 00000000..eb473236 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReadAloud.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ReadAloud: ImageVector + get() { + if (_readAloud != null) { + return _readAloud!! + } + _readAloud = fluentIcon(name = "Regular.ReadAloud") { + fluentPath { + moveTo(15.86f, 2.1f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.72f, 1.3f) + arcToRelative(10.23f, 10.23f, 0.0f, false, true, 4.1f, 3.83f) + curveToRelative(0.9f, 1.53f, 1.31f, 3.35f, 1.26f, 5.46f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.04f) + curveToRelative(0.06f, -2.38f, -0.43f, -4.47f, -1.46f, -6.25f) + arcToRelative(11.72f, 11.72f, 0.0f, false, false, -4.68f, -4.39f) + close() + moveTo(15.62f, 5.7f) + arcTo(0.75f, 0.75f, 0.0f, true, false, 14.91f, 7.0f) + curveToRelative(0.72f, 0.4f, 1.3f, 0.96f, 1.73f, 1.72f) + curveToRelative(0.44f, 0.76f, 0.65f, 1.54f, 0.63f, 2.37f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.03f) + arcToRelative(5.92f, 5.92f, 0.0f, false, false, -0.83f, -3.15f) + arcToRelative(5.92f, 5.92f, 0.0f, false, false, -2.32f, -2.29f) + close() + moveTo(9.0f, 4.0f) + curveToRelative(0.3f, 0.0f, 0.58f, 0.19f, 0.7f, 0.47f) + lineToRelative(5.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.4f, 0.56f) + lineTo(12.25f, 15.0f) + horizontalLineToRelative(-6.5f) + lineToRelative(-1.8f, 4.53f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.4f, -0.56f) + lineTo(8.3f, 4.47f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 9.0f, 4.0f) + close() + moveTo(9.0f, 6.78f) + lineTo(6.34f, 13.5f) + horizontalLineToRelative(5.32f) + lineTo(9.0f, 6.78f) + close() + } + } + return _readAloud!! + } + +private var _readAloud: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReadingList.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReadingList.kt new file mode 100644 index 00000000..b534fe1d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReadingList.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ReadingList: ImageVector + get() { + if (_readingList != null) { + return _readingList!! + } + _readingList = fluentIcon(name = "Regular.ReadingList") { + fluentPath { + moveTo(7.0f, 18.0f) + horizontalLineToRelative(13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(7.0f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(7.0f, 18.0f) + close() + moveTo(17.0f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(4.0f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(17.0f, 15.0f) + close() + moveTo(20.0f, 12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(7.0f, 13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(20.0f, 12.0f) + close() + moveTo(6.0f, 5.0f) + curveToRelative(1.13f, 0.0f, 2.13f, 0.69f, 2.55f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.65f) + lineToRelative(-0.04f, -0.09f) + arcTo(1.25f, 1.25f, 0.0f, true, false, 6.0f, 9.0f) + horizontalLineToRelative(11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.0f, 10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 6.0f, 5.0f) + close() + moveTo(20.0f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(11.0f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(20.0f, 6.0f) + close() + } + } + return _readingList!! + } + +private var _readingList: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReadingListAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReadingListAdd.kt new file mode 100644 index 00000000..09be53be --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReadingListAdd.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ReadingListAdd: ImageVector + get() { + if (_readingListAdd != null) { + return _readingListAdd!! + } + _readingListAdd = fluentIcon(name = "Regular.ReadingListAdd") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(17.5f, 14.0f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) + lineToRelative(-0.01f, 0.1f) + lineTo(17.0f, 17.0f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(0.18f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) + lineToRelative(0.1f, 0.01f) + lineTo(17.0f, 18.0f) + verticalLineToRelative(2.6f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + horizontalLineToRelative(0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) + lineToRelative(0.01f, -0.1f) + lineTo(18.0f, 18.0f) + horizontalLineToRelative(2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + verticalLineToRelative(-0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) + lineToRelative(-0.1f, -0.01f) + lineTo(18.0f, 17.0f) + verticalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) + horizontalLineToRelative(-0.09f) + close() + moveTo(11.02f, 18.0f) + curveToRelative(0.04f, 0.52f, 0.14f, 1.02f, 0.3f, 1.5f) + lineTo(7.0f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(11.02f, 18.0f) + close() + moveTo(11.5f, 15.0f) + curveToRelative(-0.2f, 0.47f, -0.34f, 0.98f, -0.42f, 1.5f) + lineTo(4.0f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(7.6f) + close() + moveTo(14.04f, 12.0f) + curveToRelative(-0.64f, 0.4f, -1.2f, 0.91f, -1.66f, 1.5f) + lineTo(7.0f, 13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(7.14f) + close() + moveTo(6.0f, 5.0f) + curveToRelative(1.13f, 0.0f, 2.13f, 0.69f, 2.55f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.65f) + lineToRelative(-0.04f, -0.09f) + arcTo(1.25f, 1.25f, 0.0f, true, false, 6.0f, 9.0f) + horizontalLineToRelative(11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.0f, 10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 6.0f, 5.0f) + close() + moveTo(20.0f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(11.0f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(20.0f, 6.0f) + close() + } + } + return _readingListAdd!! + } + +private var _readingListAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReadingModeMobile.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReadingModeMobile.kt new file mode 100644 index 00000000..b9550d2f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReadingModeMobile.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ReadingModeMobile: ImageVector + get() { + if (_readingModeMobile != null) { + return _readingModeMobile!! + } + _readingModeMobile = fluentIcon(name = "Regular.ReadingModeMobile") { + fluentPath { + moveTo(17.75f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.19f, -0.93f, 2.16f, -2.1f, 2.24f) + lineTo(6.25f, 21.99f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.92f, -2.24f, -2.09f) + lineTo(4.0f, 19.75f) + lineTo(4.0f, 4.25f) + curveToRelative(0.0f, -1.19f, 0.93f, -2.16f, 2.1f, -2.24f) + horizontalLineToRelative(11.65f) + close() + moveTo(17.75f, 3.5f) + lineTo(6.25f, 3.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + horizontalLineToRelative(11.6f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.27f, 0.74f, -0.64f) + lineToRelative(0.01f, -0.1f) + lineTo(18.5f, 4.25f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + horizontalLineToRelative(-0.1f) + close() + moveTo(12.25f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(4.6f) + close() + moveTo(16.25f, 10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-8.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(8.6f) + close() + moveTo(16.25f, 7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-8.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(8.6f) + close() + } + } + return _readingModeMobile!! + } + +private var _readingModeMobile: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RealEstate.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RealEstate.kt new file mode 100644 index 00000000..e02e1b42 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RealEstate.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.RealEstate: ImageVector + get() { + if (_realEstate != null) { + return _realEstate!! + } + _realEstate = fluentIcon(name = "Regular.RealEstate") { + fluentPath { + moveTo(10.0f, 12.46f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.35f, -0.76f) + lineToRelative(2.82f, -2.42f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.66f, 0.0f) + lineToRelative(2.82f, 2.42f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.35f, 0.76f) + verticalLineToRelative(3.04f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + horizontalLineToRelative(-1.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + lineTo(14.5f, 14.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + lineTo(10.5f, 16.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + verticalLineToRelative(-3.04f) + close() + moveTo(7.0f, 21.03f) + verticalLineToRelative(-2.78f) + curveToRelative(0.63f, 0.47f, 1.4f, 0.75f, 2.25f, 0.75f) + horizontalLineToRelative(8.5f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 3.75f, -3.75f) + lineTo(21.5f, 7.32f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 20.0f, 4.0f) + lineTo(6.73f, 4.0f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 3.0f, 5.0f) + verticalLineToRelative(16.03f) + curveToRelative(0.0f, 0.54f, 0.43f, 0.97f, 0.97f, 0.97f) + horizontalLineToRelative(2.06f) + curveToRelative(0.54f, 0.0f, 0.97f, -0.43f, 0.97f, -0.97f) + close() + moveTo(5.0f, 4.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.49f, 0.4f) + lineToRelative(0.12f, 0.6f) + lineTo(20.0f, 5.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(5.5f, 6.5f) + verticalLineToRelative(14.0f) + horizontalLineToRelative(-1.0f) + lineTo(4.5f, 5.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + close() + moveTo(9.25f, 17.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + lineTo(7.0f, 8.0f) + horizontalLineToRelative(13.0f) + verticalLineToRelative(7.25f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-8.5f) + close() + } + } + return _realEstate!! + } + +private var _realEstate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Receipt.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Receipt.kt new file mode 100644 index 00000000..60f4058e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Receipt.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Receipt: ImageVector + get() { + if (_receipt != null) { + return _receipt!! + } + _receipt = fluentIcon(name = "Regular.Receipt") { + fluentPath { + moveTo(4.0f, 6.25f) + curveTo(4.0f, 5.01f, 5.0f, 4.0f, 6.25f, 4.0f) + horizontalLineToRelative(8.5f) + curveTo(15.99f, 4.0f, 17.0f, 5.0f, 17.0f, 6.25f) + lineTo(17.0f, 14.0f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-10.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 4.0f, 17.25f) + verticalLineToRelative(-11.0f) + close() + moveTo(17.0f, 15.5f) + lineTo(17.0f, 19.0f) + horizontalLineToRelative(0.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.0f, 15.5f) + horizontalLineToRelative(-2.0f) + close() + moveTo(15.5f, 19.0f) + lineTo(15.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(11.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(8.25f) + close() + moveTo(7.0f, 8.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 8.75f) + close() + moveTo(7.0f, 12.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(7.0f, 15.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _receipt!! + } + +private var _receipt: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReceiptAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReceiptAdd.kt new file mode 100644 index 00000000..212bd90c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReceiptAdd.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ReceiptAdd: ImageVector + get() { + if (_receiptAdd != null) { + return _receiptAdd!! + } + _receiptAdd = fluentIcon(name = "Regular.ReceiptAdd") { + fluentPath { + moveTo(5.0f, 6.25f) + curveTo(5.0f, 5.01f, 6.0f, 4.0f, 7.25f, 4.0f) + horizontalLineToRelative(8.5f) + curveTo(16.99f, 4.0f, 18.0f, 5.0f, 18.0f, 6.25f) + lineTo(18.0f, 14.0f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-5.98f) + curveToRelative(0.24f, -0.47f, 0.43f, -0.97f, 0.56f, -1.5f) + horizontalLineToRelative(3.67f) + lineTo(16.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(6.5f, 11.0f) + curveToRelative(-0.52f, 0.0f, -1.02f, 0.06f, -1.5f, 0.17f) + lineTo(5.0f, 6.25f) + close() + moveTo(14.25f, 13.0f) + horizontalLineToRelative(-3.06f) + arcTo(6.51f, 6.51f, 0.0f, false, false, 9.0f, 11.5f) + horizontalLineToRelative(5.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(18.0f, 19.0f) + horizontalLineToRelative(0.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(20.0f, 15.5f) + horizontalLineToRelative(-2.0f) + lineTo(18.0f, 19.0f) + close() + moveTo(8.0f, 8.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 8.75f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(7.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(6.0f, 18.0f) + lineTo(3.5f, 18.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(6.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(7.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(7.0f, 18.0f) + close() + } + } + return _receiptAdd!! + } + +private var _receiptAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReceiptBag.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReceiptBag.kt new file mode 100644 index 00000000..fb2812b8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReceiptBag.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ReceiptBag: ImageVector + get() { + if (_receiptBag != null) { + return _receiptBag!! + } + _receiptBag = fluentIcon(name = "Regular.ReceiptBag") { + fluentPath { + moveTo(7.25f, 4.0f) + curveTo(6.01f, 4.0f, 5.0f, 5.0f, 5.0f, 6.25f) + verticalLineToRelative(3.29f) + curveToRelative(0.26f, 0.03f, 0.51f, 0.1f, 0.75f, 0.19f) + curveToRelative(0.24f, -0.1f, 0.49f, -0.16f, 0.75f, -0.2f) + lineTo(6.5f, 6.26f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(8.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(16.5f, 19.0f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(6.75f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.5f, 14.0f) + lineTo(18.0f, 14.0f) + lineTo(18.0f, 6.25f) + curveTo(18.0f, 5.01f, 17.0f, 4.0f, 15.75f, 4.0f) + horizontalLineToRelative(-8.5f) + close() + moveTo(10.5f, 13.0f) + horizontalLineToRelative(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.09f) + curveToRelative(0.22f, 0.45f, 0.34f, 0.96f, 0.34f, 1.5f) + close() + moveTo(18.25f, 19.0f) + lineTo(18.0f, 19.0f) + verticalLineToRelative(-3.5f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(1.75f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + close() + moveTo(8.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.5f) + close() + moveTo(1.75f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.0f) + curveTo(1.0f, 21.99f, 2.0f, 23.0f, 3.25f, 23.0f) + horizontalLineToRelative(5.0f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(9.5f, 14.0f) + verticalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -3.75f, -2.17f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 2.0f, 13.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-0.25f) + close() + moveTo(7.0f, 14.0f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.35f, -0.07f, -0.68f, -0.2f, -0.98f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 8.0f, 13.0f) + verticalLineToRelative(1.0f) + lineTo(7.0f, 14.0f) + close() + moveTo(5.5f, 13.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + } + } + return _receiptBag!! + } + +private var _receiptBag: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReceiptCube.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReceiptCube.kt new file mode 100644 index 00000000..5575dea8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReceiptCube.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ReceiptCube: ImageVector + get() { + if (_receiptCube != null) { + return _receiptCube!! + } + _receiptCube = fluentIcon(name = "Regular.ReceiptCube") { + fluentPath { + moveTo(5.0f, 6.25f) + curveTo(5.0f, 5.01f, 6.0f, 4.0f, 7.25f, 4.0f) + horizontalLineToRelative(8.5f) + curveTo(16.99f, 4.0f, 18.0f, 5.0f, 18.0f, 6.25f) + lineTo(18.0f, 14.0f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-6.36f) + curveToRelative(0.07f, -0.24f, 0.11f, -0.49f, 0.11f, -0.75f) + lineTo(12.0f, 19.0f) + horizontalLineToRelative(4.5f) + lineTo(16.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.8f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -1.5f, 0.16f) + lineTo(5.0f, 6.25f) + close() + moveTo(14.25f, 13.0f) + horizontalLineToRelative(-3.66f) + lineToRelative(-2.43f, -1.21f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.59f, -0.29f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(18.0f, 19.0f) + horizontalLineToRelative(0.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(20.0f, 15.5f) + horizontalLineToRelative(-2.0f) + lineTo(18.0f, 19.0f) + close() + moveTo(8.0f, 8.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 8.75f) + close() + moveTo(10.17f, 13.91f) + lineTo(6.67f, 12.16f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -1.34f, 0.0f) + lineToRelative(-3.5f, 1.75f) + curveToRelative(-0.5f, 0.25f, -0.83f, 0.77f, -0.83f, 1.34f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.57f, 0.32f, 1.09f, 0.83f, 1.34f) + lineToRelative(3.5f, 1.75f) + curveToRelative(0.42f, 0.22f, 0.92f, 0.22f, 1.34f, 0.0f) + lineToRelative(3.5f, -1.75f) + curveToRelative(0.5f, -0.25f, 0.83f, -0.77f, 0.83f, -1.34f) + verticalLineToRelative(-4.5f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -0.83f, -1.34f) + close() + moveTo(2.55f, 15.28f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.67f, -0.23f) + lineTo(6.0f, 16.45f) + lineToRelative(2.78f, -1.4f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.44f, 0.9f) + lineTo(6.5f, 17.3f) + verticalLineToRelative(3.19f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + verticalLineToRelative(-3.2f) + lineToRelative(-2.72f, -1.35f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.23f, -0.67f) + close() + } + } + return _receiptCube!! + } + +private var _receiptCube: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReceiptMoney.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReceiptMoney.kt new file mode 100644 index 00000000..4c4124e0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReceiptMoney.kt @@ -0,0 +1,100 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ReceiptMoney: ImageVector + get() { + if (_receiptMoney != null) { + return _receiptMoney!! + } + _receiptMoney = fluentIcon(name = "Regular.ReceiptMoney") { + fluentPath { + moveTo(5.0f, 6.25f) + curveTo(5.0f, 5.01f, 6.0f, 4.0f, 7.25f, 4.0f) + horizontalLineToRelative(8.5f) + curveTo(16.99f, 4.0f, 18.0f, 5.0f, 18.0f, 6.25f) + lineTo(18.0f, 14.0f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(13.0f, 20.5f) + lineTo(13.0f, 19.0f) + horizontalLineToRelative(3.5f) + lineTo(16.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(6.5f, 14.0f) + lineTo(5.0f, 14.0f) + lineTo(5.0f, 6.25f) + close() + moveTo(18.0f, 19.0f) + horizontalLineToRelative(0.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(20.0f, 15.5f) + horizontalLineToRelative(-2.0f) + lineTo(18.0f, 19.0f) + close() + moveTo(8.0f, 8.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 8.75f) + close() + moveTo(8.0f, 12.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(2.5f, 15.0f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(8.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + horizontalLineToRelative(-8.0f) + close() + moveTo(10.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + verticalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + horizontalLineToRelative(1.0f) + close() + moveTo(9.0f, 21.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + verticalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + lineTo(9.0f, 21.0f) + close() + moveTo(2.0f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + horizontalLineToRelative(1.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(2.0f, 19.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + lineTo(3.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(6.5f, 16.75f) + arcToRelative(1.75f, 1.75f, 0.0f, true, true, 0.0f, 3.5f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.0f, -3.5f) + close() + } + } + return _receiptMoney!! + } + +private var _receiptMoney: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReceiptPlay.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReceiptPlay.kt new file mode 100644 index 00000000..adf0c02c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReceiptPlay.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ReceiptPlay: ImageVector + get() { + if (_receiptPlay != null) { + return _receiptPlay!! + } + _receiptPlay = fluentIcon(name = "Regular.ReceiptPlay") { + fluentPath { + moveTo(5.0f, 6.25f) + curveTo(5.0f, 5.01f, 6.0f, 4.0f, 7.25f, 4.0f) + horizontalLineToRelative(8.5f) + curveTo(16.99f, 4.0f, 18.0f, 5.0f, 18.0f, 6.25f) + lineTo(18.0f, 14.0f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-5.98f) + curveToRelative(0.24f, -0.47f, 0.43f, -0.97f, 0.56f, -1.5f) + horizontalLineToRelative(3.67f) + lineTo(16.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(6.5f, 11.0f) + curveToRelative(-0.52f, 0.0f, -1.02f, 0.06f, -1.5f, 0.17f) + lineTo(5.0f, 6.25f) + close() + moveTo(14.25f, 13.0f) + horizontalLineToRelative(-3.06f) + arcTo(6.51f, 6.51f, 0.0f, false, false, 9.0f, 11.5f) + horizontalLineToRelative(5.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(18.0f, 19.0f) + horizontalLineToRelative(0.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(20.0f, 15.5f) + horizontalLineToRelative(-2.0f) + lineTo(18.0f, 19.0f) + close() + moveTo(8.0f, 8.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 8.0f, 8.75f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(5.0f, 19.5f) + curveToRelative(0.0f, 0.4f, 0.44f, 0.64f, 0.78f, 0.42f) + lineToRelative(3.0f, -2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.84f) + lineToRelative(-3.0f, -2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.78f, 0.42f) + verticalLineToRelative(4.0f) + close() + } + } + return _receiptPlay!! + } + +private var _receiptPlay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReceiptSparkles.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReceiptSparkles.kt new file mode 100644 index 00000000..11d7f24a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ReceiptSparkles.kt @@ -0,0 +1,116 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ReceiptSparkles: ImageVector + get() { + if (_receiptSparkles != null) { + return _receiptSparkles!! + } + _receiptSparkles = fluentIcon(name = "Regular.ReceiptSparkles") { + fluentPath { + moveTo(15.85f, 6.15f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, 0.69f, 1.11f) + lineToRelative(0.45f, 1.38f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 1.02f, 0.0f) + lineToRelative(0.45f, -1.38f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, 1.8f, -1.8f) + lineToRelative(1.38f, -0.44f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.0f, -1.03f) + horizontalLineToRelative(-0.03f) + lineToRelative(-1.38f, -0.45f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.8f, -1.8f) + lineTo(18.0f, 0.36f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, -1.03f, 0.0f) + lineToRelative(-0.45f, 1.38f) + lineToRelative(-0.01f, 0.03f) + arcToRelative(2.84f, 2.84f, 0.0f, false, true, -1.76f, 1.77f) + lineToRelative(-1.38f, 0.44f) + arcToRelative(0.57f, 0.57f, 0.0f, false, false, -0.26f, 0.2f) + arcToRelative(0.51f, 0.51f, 0.0f, false, false, -0.1f, 0.34f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.1f, 0.3f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.26f, 0.19f) + lineToRelative(1.38f, 0.45f) + arcToRelative(2.83f, 2.83f, 0.0f, false, true, 0.49f, 0.21f) + arcToRelative(2.8f, 2.8f, 0.0f, false, true, 0.62f, 0.48f) + close() + moveTo(23.02f, 9.96f) + lineTo(23.78f, 10.21f) + horizontalLineToRelative(0.02f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, 0.47f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, 0.1f) + lineToRelative(-0.77f, 0.26f) + arcToRelative(1.58f, 1.58f, 0.0f, false, false, -1.0f, 1.0f) + lineToRelative(-0.24f, 0.76f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.58f, 0.0f) + lineToRelative(-0.24f, -0.77f) + arcToRelative(1.57f, 1.57f, 0.0f, false, false, -1.0f, -1.0f) + lineToRelative(-0.77f, -0.25f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, -0.14f, -0.46f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.14f, -0.1f) + lineToRelative(0.77f, -0.26f) + arcToRelative(1.58f, 1.58f, 0.0f, false, false, 0.98f, -1.0f) + lineToRelative(0.25f, -0.76f) + arcToRelative(0.3f, 0.3f, 0.0f, false, true, 0.57f, 0.0f) + lineToRelative(0.25f, 0.77f) + arcToRelative(1.57f, 1.57f, 0.0f, false, false, 1.0f, 1.0f) + close() + moveTo(17.0f, 14.0f) + lineTo(17.0f, 9.94f) + curveToRelative(-0.15f, -0.05f, -0.3f, -0.12f, -0.43f, -0.21f) + curveToRelative(-0.26f, -0.2f, -0.46f, -0.46f, -0.57f, -0.77f) + lineToRelative(-0.44f, -1.38f) + lineToRelative(-0.06f, -0.16f) + lineTo(15.5f, 19.0f) + lineTo(7.25f, 19.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-11.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.1f) + arcToRelative(1.57f, 1.57f, 0.0f, false, true, -0.28f, -1.5f) + lineTo(6.24f, 4.0f) + curveTo(5.01f, 4.0f, 4.0f, 5.0f, 4.0f, 6.25f) + verticalLineToRelative(11.0f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(10.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(20.5f, 14.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + horizontalLineToRelative(-3.0f) + close() + moveTo(17.25f, 19.0f) + lineTo(17.0f, 19.0f) + verticalLineToRelative(-3.5f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(1.75f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + close() + moveTo(7.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.5f) + close() + moveTo(7.75f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.5f) + close() + moveTo(7.75f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.5f) + close() + } + } + return _receiptSparkles!! + } + +private var _receiptSparkles: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Record.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Record.kt new file mode 100644 index 00000000..e579f68b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Record.kt @@ -0,0 +1,34 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Record: ImageVector + get() { + if (_record != null) { + return _record!! + } + _record = fluentIcon(name = "Regular.Record") { + fluentPath { + moveTo(12.0f, 18.0f) + arcToRelative(6.0f, 6.0f, 0.0f, true, false, 0.0f, -12.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, 0.0f, 12.0f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) + close() + moveTo(3.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 17.0f, 0.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, -17.0f, 0.0f) + close() + } + } + return _record!! + } + +private var _record: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RecordStop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RecordStop.kt new file mode 100644 index 00000000..e1651507 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RecordStop.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.RecordStop: ImageVector + get() { + if (_recordStop != null) { + return _recordStop!! + } + _recordStop = fluentIcon(name = "Regular.RecordStop") { + fluentPath { + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) + close() + moveTo(2.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) + close() + moveTo(8.0f, 9.5f) + curveTo(8.0f, 8.67f, 8.67f, 8.0f, 9.5f, 8.0f) + horizontalLineToRelative(5.0f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-5.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 8.0f, 14.5f) + verticalLineToRelative(-5.0f) + close() + } + } + return _recordStop!! + } + +private var _recordStop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RectangleLandscape.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RectangleLandscape.kt new file mode 100644 index 00000000..2a377607 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RectangleLandscape.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.RectangleLandscape: ImageVector + get() { + if (_rectangleLandscape != null) { + return _rectangleLandscape!! + } + _rectangleLandscape = fluentIcon(name = "Regular.RectangleLandscape") { + fluentPath { + moveTo(2.0f, 7.25f) + curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) + horizontalLineToRelative(13.5f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineTo(5.25f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + close() + moveTo(5.25f, 5.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineTo(5.25f) + close() + } + } + return _rectangleLandscape!! + } + +private var _rectangleLandscape: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Resize.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Resize.kt new file mode 100644 index 00000000..00749fd7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Resize.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Resize: ImageVector + get() { + if (_resize != null) { + return _resize!! + } + _resize = fluentIcon(name = "Regular.Resize") { + fluentPath { + moveTo(11.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-5.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) + verticalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(5.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + close() + moveTo(13.75f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-5.0f) + curveTo(22.0f, 3.45f, 20.54f, 2.0f, 18.75f, 2.0f) + horizontalLineToRelative(-5.0f) + close() + moveTo(13.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(5.0f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-5.0f) + close() + moveTo(10.25f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(5.0f) + curveTo(2.0f, 20.55f, 3.46f, 22.0f, 5.25f, 22.0f) + horizontalLineToRelative(5.0f) + close() + } + } + return _resize!! + } + +private var _resize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ResizeImage.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ResizeImage.kt new file mode 100644 index 00000000..1873bb23 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ResizeImage.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ResizeImage: ImageVector + get() { + if (_resizeImage != null) { + return _resizeImage!! + } + _resizeImage = fluentIcon(name = "Regular.ResizeImage") { + fluentPath { + moveTo(11.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-5.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) + verticalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(5.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + close() + moveTo(13.75f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-5.0f) + curveTo(22.0f, 3.45f, 20.54f, 2.0f, 18.75f, 2.0f) + horizontalLineToRelative(-5.0f) + close() + moveTo(13.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(5.0f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-5.0f) + close() + moveTo(4.0f, 12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.56f, 0.15f, 1.08f, 0.42f, 1.52f) + lineToRelative(3.49f, -3.49f) + curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.0f) + lineToRelative(3.5f, 3.5f) + curveToRelative(0.26f, -0.45f, 0.41f, -0.97f, 0.41f, -1.53f) + verticalLineToRelative(-5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + lineTo(4.0f, 12.0f) + close() + moveTo(4.0f, 23.0f) + curveToRelative(-0.56f, 0.0f, -1.08f, -0.15f, -1.52f, -0.42f) + lineToRelative(3.49f, -3.49f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(3.5f, 3.5f) + curveToRelative(-0.45f, 0.26f, -0.97f, 0.41f, -1.53f, 0.41f) + lineTo(4.0f, 23.0f) + close() + moveTo(9.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + close() + } + } + return _resizeImage!! + } + +private var _resizeImage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ResizeLarge.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ResizeLarge.kt new file mode 100644 index 00000000..23982a53 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ResizeLarge.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ResizeLarge: ImageVector + get() { + if (_resizeLarge != null) { + return _resizeLarge!! + } + _resizeLarge = fluentIcon(name = "Regular.ResizeLarge") { + fluentPath { + moveTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.5f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.5f) + close() + moveTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.5f) + close() + moveTo(19.5f, 17.75f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.5f) + close() + moveTo(4.5f, 17.75f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + verticalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(1.5f) + close() + moveTo(8.25f, 6.0f) + curveTo(7.01f, 6.0f, 6.0f, 7.0f, 6.0f, 8.25f) + verticalLineToRelative(7.5f) + curveTo(6.0f, 16.99f, 7.0f, 18.0f, 8.25f, 18.0f) + horizontalLineToRelative(7.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-7.5f) + curveTo(18.0f, 7.01f, 17.0f, 6.0f, 15.75f, 6.0f) + horizontalLineToRelative(-7.5f) + close() + moveTo(7.5f, 8.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-7.5f) + close() + } + } + return _resizeLarge!! + } + +private var _resizeLarge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ResizeSmall.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ResizeSmall.kt new file mode 100644 index 00000000..75464f6f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ResizeSmall.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ResizeSmall: ImageVector + get() { + if (_resizeSmall != null) { + return _resizeSmall!! + } + _resizeSmall = fluentIcon(name = "Regular.ResizeSmall") { + fluentPath { + moveTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.5f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.5f) + close() + moveTo(7.95f, 10.25f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(3.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-3.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-3.5f) + close() + moveTo(10.2f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.5f) + close() + moveTo(17.75f, 4.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.5f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.5f) + close() + moveTo(17.75f, 19.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.5f) + close() + moveTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.5f) + close() + } + } + return _resizeSmall!! + } + +private var _resizeSmall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ResizeTable.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ResizeTable.kt new file mode 100644 index 00000000..23961e83 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ResizeTable.kt @@ -0,0 +1,121 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ResizeTable: ImageVector + get() { + if (_resizeTable != null) { + return _resizeTable!! + } + _resizeTable = fluentIcon(name = "Regular.ResizeTable") { + fluentPath { + moveTo(5.25f, 2.0f) + horizontalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(3.13f) + curveToRelative(-0.58f, 0.26f, -1.1f, 0.65f, -1.5f, 1.13f) + lineTo(2.0f, 5.25f) + curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) + close() + moveTo(15.62f, 20.5f) + curveToRelative(-0.26f, 0.58f, -0.65f, 1.1f, -1.13f, 1.5f) + horizontalLineToRelative(4.26f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-3.13f) + close() + moveTo(21.25f, 11.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-5.0f) + curveTo(22.0f, 3.45f, 20.54f, 2.0f, 18.75f, 2.0f) + horizontalLineToRelative(-5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + close() + moveTo(5.25f, 9.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 12.25f) + verticalLineToRelative(6.5f) + curveTo(2.0f, 20.55f, 3.46f, 22.0f, 5.25f, 22.0f) + horizontalLineToRelative(6.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-6.5f) + curveTo(15.0f, 10.45f, 13.54f, 9.0f, 11.75f, 9.0f) + horizontalLineToRelative(-6.5f) + close() + moveTo(3.5f, 12.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + lineTo(6.0f, 10.5f) + lineTo(6.0f, 13.0f) + lineTo(3.5f, 13.0f) + verticalLineToRelative(-0.75f) + close() + moveTo(6.0f, 14.5f) + lineTo(6.0f, 17.0f) + lineTo(3.5f, 17.0f) + verticalLineToRelative(-2.5f) + lineTo(6.0f, 14.5f) + close() + moveTo(7.5f, 17.0f) + verticalLineToRelative(-2.5f) + horizontalLineToRelative(2.0f) + lineTo(9.5f, 17.0f) + horizontalLineToRelative(-2.0f) + close() + moveTo(11.0f, 17.0f) + verticalLineToRelative(-2.5f) + horizontalLineToRelative(2.5f) + lineTo(13.5f, 17.0f) + lineTo(11.0f, 17.0f) + close() + moveTo(7.5f, 18.5f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(11.0f, 18.5f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(0.25f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(11.0f, 20.5f) + verticalLineToRelative(-2.0f) + close() + moveTo(11.0f, 10.5f) + horizontalLineToRelative(0.75f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(13.5f, 13.0f) + lineTo(11.0f, 13.0f) + verticalLineToRelative(-2.5f) + close() + moveTo(9.5f, 13.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-2.5f) + horizontalLineToRelative(2.0f) + lineTo(9.5f, 13.0f) + close() + moveTo(6.0f, 18.5f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-0.75f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-0.25f) + lineTo(6.0f, 18.5f) + close() + } + } + return _resizeTable!! + } + +private var _resizeTable: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ResizeVideo.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ResizeVideo.kt new file mode 100644 index 00000000..4bc50cbc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ResizeVideo.kt @@ -0,0 +1,91 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ResizeVideo: ImageVector + get() { + if (_resizeVideo != null) { + return _resizeVideo!! + } + _resizeVideo = fluentIcon(name = "Regular.ResizeVideo") { + fluentPath { + moveTo(21.25f, 13.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(5.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + horizontalLineToRelative(-4.67f) + curveToRelative(0.54f, -0.39f, 0.98f, -0.9f, 1.27f, -1.5f) + horizontalLineToRelative(3.4f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(11.75f, 9.0f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 1.8f, -1.45f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-6.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 18.75f) + verticalLineToRelative(-6.5f) + curveTo(2.0f, 10.45f, 3.46f, 9.0f, 5.25f, 9.0f) + horizontalLineToRelative(6.5f) + close() + moveTo(11.75f, 10.5f) + horizontalLineToRelative(-6.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(6.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-6.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(6.06f, 13.1f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.6f, -0.23f) + lineToRelative(0.08f, 0.03f) + lineToRelative(3.96f, 2.16f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.07f, 0.83f) + lineToRelative(-0.07f, 0.05f) + lineToRelative(-3.96f, 2.16f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.73f, -0.35f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-4.3f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.06f, -0.25f) + close() + moveTo(18.75f, 2.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 22.0f, 5.07f) + verticalLineToRelative(5.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-5.1f) + curveToRelative(0.0f, -0.92f, -0.7f, -1.67f, -1.6f, -1.74f) + lineToRelative(-0.15f, -0.01f) + horizontalLineToRelative(-5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(5.1f) + close() + moveTo(10.25f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-5.1f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + lineToRelative(-0.01f, 0.15f) + verticalLineToRelative(3.4f) + curveToRelative(-0.6f, 0.3f, -1.11f, 0.73f, -1.5f, 1.27f) + lineTo(2.0f, 5.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(5.25f, 2.0f) + horizontalLineToRelative(5.0f) + close() + } + } + return _resizeVideo!! + } + +private var _resizeVideo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Reward.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Reward.kt new file mode 100644 index 00000000..aa7f1084 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Reward.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Reward: ImageVector + get() { + if (_reward != null) { + return _reward!! + } + _reward = fluentIcon(name = "Regular.Reward") { + fluentPath { + moveTo(20.25f, 2.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(3.04f) + curveToRelative(0.0f, 1.03f, -0.57f, 1.97f, -1.48f, 2.44f) + lineToRelative(-6.28f, 3.28f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, -4.48f, 0.0f) + lineTo(3.48f, 9.23f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 6.79f) + lineTo(2.0f, 3.75f) + curveTo(2.0f, 2.78f, 2.78f, 2.0f, 3.75f, 2.0f) + horizontalLineToRelative(16.5f) + close() + moveTo(12.0f, 13.48f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.0f, -7.0f) + close() + moveTo(15.5f, 3.5f) + horizontalLineToRelative(-7.0f) + verticalLineToRelative(6.66f) + lineToRelative(3.38f, 1.77f) + curveToRelative(0.08f, 0.04f, 0.16f, 0.04f, 0.24f, 0.0f) + lineToRelative(3.38f, -1.77f) + lineTo(15.5f, 3.5f) + close() + moveTo(7.0f, 3.5f) + lineTo(3.75f, 3.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(3.04f) + curveToRelative(0.0f, 0.47f, 0.26f, 0.9f, 0.67f, 1.11f) + lineTo(7.0f, 9.38f) + lineTo(7.0f, 3.5f) + close() + moveTo(20.25f, 3.5f) + lineTo(17.0f, 3.5f) + verticalLineToRelative(5.88f) + lineToRelative(2.83f, -1.48f) + curveToRelative(0.41f, -0.22f, 0.67f, -0.64f, 0.67f, -1.1f) + lineTo(20.5f, 3.74f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + } + } + return _reward!! + } + +private var _reward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Rewind.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Rewind.kt new file mode 100644 index 00000000..4c922aec --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Rewind.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Rewind: ImageVector + get() { + if (_rewind != null) { + return _rewind!! + } + _rewind = fluentIcon(name = "Regular.Rewind") { + fluentPath { + moveTo(12.5f, 5.5f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.47f, -1.14f) + lineToRelative(-7.41f, 6.3f) + curveToRelative(-0.82f, 0.7f, -0.82f, 1.97f, 0.0f, 2.67f) + lineToRelative(7.4f, 6.3f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 2.48f, -1.13f) + verticalLineToRelative(-4.0f) + lineToRelative(6.03f, 5.14f) + arcTo(1.5f, 1.5f, 0.0f, false, false, 21.0f, 18.5f) + verticalLineToRelative(-13.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.47f, -1.14f) + lineTo(12.5f, 9.5f) + lineTo(12.5f, 5.5f) + close() + moveTo(12.5f, 12.54f) + verticalLineToRelative(-1.08f) + lineToRelative(7.0f, -5.96f) + verticalLineToRelative(13.0f) + lineToRelative(-7.0f, -5.96f) + close() + moveTo(3.6f, 11.81f) + lineTo(11.0f, 5.5f) + lineTo(11.0f, 18.5f) + lineToRelative(-7.4f, -6.31f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, 0.0f, -0.38f) + close() + } + } + return _rewind!! + } + +private var _rewind: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Rhombus.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Rhombus.kt new file mode 100644 index 00000000..7cc0c886 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Rhombus.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Rhombus: ImageVector + get() { + if (_rhombus != null) { + return _rhombus!! + } + _rhombus = fluentIcon(name = "Regular.Rhombus") { + fluentPath { + moveTo(5.8f, 5.4f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 7.9f, 4.0f) + horizontalLineToRelative(12.85f) + curveToRelative(1.6f, 0.0f, 2.69f, 1.61f, 2.09f, 3.1f) + lineTo(18.2f, 18.6f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 16.1f, 20.0f) + lineTo(3.25f, 20.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.08f, -3.1f) + lineTo(5.8f, 5.4f) + close() + moveTo(7.9f, 5.5f) + curveToRelative(-0.31f, 0.0f, -0.59f, 0.19f, -0.7f, 0.47f) + lineToRelative(-4.64f, 11.5f) + curveToRelative(-0.2f, 0.5f, 0.16f, 1.03f, 0.7f, 1.03f) + lineTo(16.1f, 18.5f) + curveToRelative(0.3f, 0.0f, 0.58f, -0.19f, 0.7f, -0.47f) + lineToRelative(4.64f, -11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.7f, -1.03f) + lineTo(7.9f, 5.5f) + close() + } + } + return _rhombus!! + } + +private var _rhombus: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Ribbon.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Ribbon.kt new file mode 100644 index 00000000..6bf038cd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Ribbon.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Ribbon: ImageVector + get() { + if (_ribbon != null) { + return _ribbon!! + } + _ribbon = fluentIcon(name = "Regular.Ribbon") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, 5.0f, 11.9f) + verticalLineToRelative(7.35f) + curveToRelative(0.0f, 0.57f, -0.6f, 0.92f, -1.1f, 0.67f) + lineToRelative(-0.08f, -0.06f) + lineTo(12.0f, 19.18f) + lineToRelative(-3.82f, 2.68f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.17f, -0.5f) + verticalLineToRelative(-0.11f) + lineTo(7.0f, 13.9f) + arcTo(7.0f, 7.0f, 0.0f, false, true, 12.0f, 2.0f) + close() + moveTo(15.5f, 19.8f) + verticalLineToRelative(-4.74f) + arcToRelative(6.97f, 6.97f, 0.0f, false, true, -7.0f, 0.0f) + verticalLineToRelative(4.74f) + lineToRelative(3.07f, -2.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.76f, -0.06f) + lineToRelative(0.1f, 0.06f) + lineToRelative(3.07f, 2.16f) + verticalLineToRelative(-4.75f) + verticalLineToRelative(4.75f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, -11.0f) + close() + } + } + return _ribbon!! + } + +private var _ribbon: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RibbonAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RibbonAdd.kt new file mode 100644 index 00000000..d5216bd5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RibbonAdd.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.RibbonAdd: ImageVector + get() { + if (_ribbonAdd != null) { + return _ribbonAdd!! + } + _ribbonAdd = fluentIcon(name = "Regular.RibbonAdd") { + fluentPath { + moveTo(23.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 7.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 7.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 6.0f) + lineTo(17.0f, 3.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + lineTo(18.0f, 6.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 7.0f) + close() + moveTo(11.0f, 2.0f) + curveToRelative(0.56f, 0.0f, 1.1f, 0.07f, 1.63f, 0.2f) + curveToRelative(-0.36f, 0.4f, -0.67f, 0.85f, -0.92f, 1.35f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 3.47f, 9.03f) + curveToRelative(0.5f, 0.19f, 1.04f, 0.32f, 1.6f, 0.38f) + curveToRelative(-0.24f, 0.33f, -0.5f, 0.65f, -0.78f, 0.94f) + verticalLineToRelative(7.35f) + curveToRelative(0.0f, 0.57f, -0.6f, 0.92f, -1.1f, 0.67f) + lineToRelative(-0.08f, -0.06f) + lineTo(11.0f, 19.17f) + lineToRelative(-3.82f, 2.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.17f, -0.52f) + verticalLineToRelative(-0.1f) + lineTo(6.0f, 13.9f) + arcTo(7.0f, 7.0f, 0.0f, false, true, 11.0f, 2.0f) + close() + moveTo(14.5f, 19.8f) + verticalLineToRelative(-4.74f) + arcToRelative(6.97f, 6.97f, 0.0f, false, true, -7.0f, 0.0f) + verticalLineToRelative(4.74f) + lineToRelative(3.07f, -2.16f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.76f, -0.06f) + lineToRelative(0.1f, 0.06f) + lineToRelative(3.07f, 2.16f) + close() + } + } + return _ribbonAdd!! + } + +private var _ribbonAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RibbonOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RibbonOff.kt new file mode 100644 index 00000000..5d1a09b6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RibbonOff.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.RibbonOff: ImageVector + get() { + if (_ribbonOff != null) { + return _ribbonOff!! + } + _ribbonOff = fluentIcon(name = "Regular.RibbonOff") { + fluentPath { + moveTo(5.45f, 6.51f) + lineTo(2.22f, 3.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(18.5f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineTo(17.0f, 18.06f) + verticalLineToRelative(3.19f) + curveToRelative(0.0f, 0.57f, -0.6f, 0.92f, -1.1f, 0.67f) + lineToRelative(-0.08f, -0.06f) + lineTo(12.0f, 19.18f) + lineToRelative(-3.82f, 2.68f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.17f, -0.5f) + verticalLineToRelative(-0.11f) + lineTo(7.0f, 13.9f) + arcTo(6.98f, 6.98f, 0.0f, false, true, 5.45f, 6.5f) + close() + moveTo(15.5f, 16.56f) + lineToRelative(-1.01f, -1.01f) + arcToRelative(6.98f, 6.98f, 0.0f, false, true, -5.99f, -0.49f) + verticalLineToRelative(4.74f) + lineToRelative(3.07f, -2.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.76f, -0.06f) + lineToRelative(0.1f, 0.06f) + lineToRelative(3.07f, 2.16f) + verticalLineToRelative(-3.25f) + close() + moveTo(13.29f, 14.35f) + lineTo(6.65f, 7.7f) + arcToRelative(5.51f, 5.51f, 0.0f, false, false, 6.64f, 6.64f) + close() + moveTo(17.5f, 9.0f) + curveToRelative(0.0f, 1.47f, -0.58f, 2.81f, -1.52f, 3.8f) + lineToRelative(1.06f, 1.06f) + arcToRelative(7.0f, 7.0f, 0.0f, false, false, -9.9f, -9.9f) + lineTo(8.2f, 5.02f) + arcTo(5.5f, 5.5f, 0.0f, false, true, 17.5f, 9.0f) + close() + } + } + return _ribbonOff!! + } + +private var _ribbonOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RibbonStar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RibbonStar.kt new file mode 100644 index 00000000..496c9368 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RibbonStar.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.RibbonStar: ImageVector + get() { + if (_ribbonStar != null) { + return _ribbonStar!! + } + _ribbonStar = fluentIcon(name = "Regular.RibbonStar") { + fluentPath { + moveToRelative(12.23f, 5.64f) + lineToRelative(0.91f, 1.86f) + lineToRelative(2.05f, 0.29f) + curveToRelative(0.2f, 0.03f, 0.29f, 0.29f, 0.14f, 0.44f) + lineToRelative(-1.48f, 1.44f) + lineToRelative(0.35f, 2.03f) + curveToRelative(0.03f, 0.21f, -0.19f, 0.37f, -0.37f, 0.27f) + lineTo(12.0f, 11.01f) + lineToRelative(-1.83f, 0.96f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.37f, -0.27f) + lineToRelative(0.35f, -2.03f) + lineToRelative(-1.48f, -1.44f) + arcToRelative(0.26f, 0.26f, 0.0f, false, true, 0.14f, -0.44f) + lineToRelative(2.05f, -0.3f) + lineToRelative(0.91f, -1.85f) + curveToRelative(0.1f, -0.19f, 0.37f, -0.19f, 0.46f, 0.0f) + close() + moveTo(19.0f, 9.0f) + arcToRelative(7.0f, 7.0f, 0.0f, true, false, -12.0f, 4.9f) + lineTo(7.0f, 21.35f) + curveToRelative(0.08f, 0.55f, 0.71f, 0.84f, 1.18f, 0.51f) + lineTo(12.0f, 19.18f) + lineToRelative(3.82f, 2.68f) + lineToRelative(0.09f, 0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.09f, -0.67f) + lineTo(17.0f, 13.9f) + curveToRelative(1.24f, -1.26f, 2.0f, -3.0f, 2.0f, -4.9f) + close() + moveTo(15.5f, 15.06f) + verticalLineToRelative(4.75f) + lineToRelative(-3.07f, -2.16f) + lineToRelative(-0.1f, -0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.76f, 0.06f) + lineTo(8.5f, 19.8f) + verticalLineToRelative(-4.74f) + arcToRelative(6.97f, 6.97f, 0.0f, false, false, 7.0f, 0.0f) + close() + moveTo(6.5f, 9.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, -11.0f, 0.0f) + close() + } + } + return _ribbonStar!! + } + +private var _ribbonStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RoadCone.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RoadCone.kt new file mode 100644 index 00000000..41fc0b44 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RoadCone.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.RoadCone: ImageVector + get() { + if (_roadCone != null) { + return _roadCone!! + } + _roadCone = fluentIcon(name = "Regular.RoadCone") { + fluentPath { + moveTo(11.18f, 2.0f) + curveToRelative(-0.56f, 0.0f, -1.06f, 0.38f, -1.2f, 0.93f) + lineTo(5.29f, 20.5f) + horizontalLineTo(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.54f) + lineTo(14.02f, 2.93f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.2f, -0.93f) + horizontalLineToRelative(-1.64f) + close() + moveTo(6.84f, 20.5f) + lineToRelative(0.94f, -3.5f) + horizontalLineToRelative(5.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(8.18f) + lineToRelative(0.53f, -2.0f) + horizontalLineToRelative(4.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(9.11f) + lineToRelative(2.27f, -8.5f) + horizontalLineToRelative(1.24f) + lineToRelative(4.54f, 17.0f) + horizontalLineTo(6.84f) + close() + } + } + return _roadCone!! + } + +private var _roadCone: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Rocket.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Rocket.kt new file mode 100644 index 00000000..0342a1bc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Rocket.kt @@ -0,0 +1,107 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Rocket: ImageVector + get() { + if (_rocket != null) { + return _rocket!! + } + _rocket = fluentIcon(name = "Regular.Rocket") { + fluentPath { + moveTo(13.06f, 7.43f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 3.53f, 3.54f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -3.53f, -3.54f) + close() + moveTo(15.53f, 8.49f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.41f, 1.42f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.41f, -1.42f) + close() + moveTo(21.51f, 4.32f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -1.81f, -1.8f) + lineToRelative(-0.66f, -0.21f) + curveToRelative(-2.4f, -0.75f, -5.0f, -0.1f, -6.78f, 1.67f) + lineToRelative(-1.0f, 1.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -4.56f, 0.32f) + lineTo(5.45f, 6.55f) + curveToRelative(-0.29f, 0.29f, -0.29f, 0.76f, 0.0f, 1.06f) + lineToRelative(1.6f, 1.59f) + lineToRelative(-0.18f, 0.18f) + curveToRelative(-0.69f, 0.68f, -0.69f, 1.79f, 0.0f, 2.47f) + lineToRelative(0.5f, 0.5f) + lineToRelative(-1.4f, 0.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.16f, 1.17f) + lineToRelative(3.89f, 3.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.18f, -0.16f) + lineToRelative(0.8f, -1.4f) + lineToRelative(0.5f, 0.5f) + curveToRelative(0.68f, 0.68f, 1.78f, 0.68f, 2.47f, 0.0f) + lineToRelative(0.17f, -0.18f) + lineToRelative(1.6f, 1.6f) + curveToRelative(0.29f, 0.28f, 0.76f, 0.28f, 1.05f, 0.0f) + lineToRelative(1.25f, -1.25f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 0.32f, -4.57f) + lineToRelative(1.0f, -1.0f) + arcTo(6.75f, 6.75f, 0.0f, false, false, 21.72f, 5.0f) + lineToRelative(-0.21f, -0.67f) + close() + moveTo(19.25f, 3.94f) + curveToRelative(0.4f, 0.13f, 0.7f, 0.43f, 0.83f, 0.83f) + lineToRelative(0.2f, 0.66f) + curveToRelative(0.58f, 1.86f, 0.08f, 3.9f, -1.3f, 5.27f) + lineToRelative(-5.4f, 5.4f) + curveToRelative(-0.1f, 0.1f, -0.25f, 0.1f, -0.35f, 0.0f) + lineToRelative(-5.3f, -5.3f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, 0.0f, -0.36f) + lineToRelative(5.4f, -5.4f) + arcToRelative(5.25f, 5.25f, 0.0f, false, true, 5.26f, -1.3f) + lineToRelative(0.66f, 0.2f) + close() + moveTo(17.96f, 13.84f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -0.3f, 2.43f) + lineToRelative(-0.72f, 0.71f) + lineToRelative(-1.06f, -1.06f) + lineToRelative(2.08f, -2.08f) + close() + moveTo(7.76f, 6.36f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.43f, -0.3f) + lineTo(8.1f, 8.14f) + lineTo(7.05f, 7.08f) + lineToRelative(0.7f, -0.72f) + close() + moveTo(10.58f, 15.56f) + lineTo(10.06f, 16.46f) + lineTo(7.56f, 13.96f) + lineTo(8.46f, 13.45f) + lineTo(10.58f, 15.56f) + close() + moveTo(6.69f, 18.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineToRelative(-2.48f, 2.48f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineToRelative(2.48f, -2.48f) + close() + moveTo(4.75f, 15.4f) + curveToRelative(0.29f, 0.3f, 0.29f, 0.77f, 0.0f, 1.06f) + lineToRelative(-1.07f, 1.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(1.06f, -1.06f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.07f, 0.0f) + close() + moveTo(8.63f, 20.35f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-1.06f, 1.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineToRelative(1.06f, -1.06f) + close() + } + } + return _rocket!! + } + +private var _rocket: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RotateLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RotateLeft.kt new file mode 100644 index 00000000..d2065b98 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RotateLeft.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.RotateLeft: ImageVector + get() { + if (_rotateLeft != null) { + return _rotateLeft!! + } + _rotateLeft = fluentIcon(name = "Regular.RotateLeft") { + fluentPath { + moveTo(15.02f, 5.0f) + horizontalLineToRelative(0.26f) + curveToRelative(1.16f, 0.05f, 2.24f, 0.37f, 3.13f, 0.89f) + curveTo(19.98f, 6.79f, 21.0f, 8.29f, 21.0f, 10.0f) + curveToRelative(0.0f, 1.7f, -1.03f, 3.22f, -2.6f, 4.12f) + curveToRelative(-0.96f, 0.55f, -2.14f, 0.88f, -3.4f, 0.88f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(0.5f) + arcToRelative(5.4f, 5.4f, 0.0f, false, false, 2.59f, -0.64f) + curveToRelative(1.15f, -0.63f, 1.91f, -1.68f, 1.91f, -2.86f) + reflectiveCurveToRelative(-0.76f, -2.23f, -1.91f, -2.86f) + arcToRelative(5.36f, 5.36f, 0.0f, false, false, -2.37f, -0.64f) + lineTo(8.06f, 6.5f) + lineToRelative(1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-3.0f, -3.0f) + lineToRelative(-0.02f, -0.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.02f, -1.04f) + lineToRelative(3.0f, -3.0f) + lineToRelative(0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, 1.13f) + lineTo(8.06f, 5.0f) + horizontalLineToRelative(6.96f) + close() + moveTo(20.39f, 20.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.25f, 0.93f) + lineTo(4.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineToRelative(-9.13f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.75f, -0.44f) + lineToRelative(16.64f, 9.64f) + close() + moveTo(16.42f, 19.5f) + lineTo(4.5f, 12.6f) + verticalLineToRelative(6.9f) + horizontalLineToRelative(11.92f) + close() + } + } + return _rotateLeft!! + } + +private var _rotateLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RotateRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RotateRight.kt new file mode 100644 index 00000000..f6ecdf3a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RotateRight.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.RotateRight: ImageVector + get() { + if (_rotateRight != null) { + return _rotateRight!! + } + _rotateRight = fluentIcon(name = "Regular.RotateRight") { + fluentPath { + moveTo(8.98f, 5.0f) + horizontalLineToRelative(-0.26f) + arcToRelative(6.79f, 6.79f, 0.0f, false, false, -3.13f, 0.89f) + arcTo(4.82f, 4.82f, 0.0f, false, false, 3.0f, 10.0f) + curveToRelative(0.0f, 1.7f, 1.03f, 3.22f, 2.6f, 4.12f) + curveToRelative(0.96f, 0.55f, 2.14f, 0.88f, 3.4f, 0.88f) + horizontalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(9.0f, 13.5f) + arcToRelative(5.4f, 5.4f, 0.0f, false, true, -2.59f, -0.64f) + curveTo(5.26f, 12.23f, 4.5f, 11.18f, 4.5f, 10.0f) + reflectiveCurveToRelative(0.76f, -2.23f, 1.91f, -2.86f) + curveToRelative(0.68f, -0.37f, 1.49f, -0.6f, 2.37f, -0.64f) + horizontalLineToRelative(7.16f) + lineToRelative(-1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) + lineToRelative(0.08f, -0.07f) + lineToRelative(3.0f, -3.0f) + lineToRelative(0.02f, -0.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.02f, -1.04f) + lineToRelative(-3.0f, -3.0f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 1.13f) + lineTo(15.94f, 5.0f) + lineTo(8.98f, 5.0f) + close() + moveTo(3.61f, 20.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.25f, 0.93f) + lineTo(20.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineToRelative(-9.13f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.75f, -0.44f) + lineTo(3.6f, 20.07f) + close() + moveTo(7.58f, 19.5f) + lineTo(19.5f, 12.6f) + verticalLineToRelative(6.9f) + lineTo(7.58f, 19.5f) + close() + } + } + return _rotateRight!! + } + +private var _rotateRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Router.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Router.kt new file mode 100644 index 00000000..9b589987 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Router.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Router: ImageVector + get() { + if (_router != null) { + return _router!! + } + _router = fluentIcon(name = "Regular.Router") { + fluentPath { + moveTo(12.0f, 3.5f) + arcTo(7.5f, 7.5f, 0.0f, false, false, 4.5f, 11.0f) + verticalLineToRelative(0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(3.0f, 11.0f) + arcToRelative(9.0f, 9.0f, 0.0f, false, true, 18.0f, 0.0f) + verticalLineToRelative(0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(19.5f, 11.0f) + arcTo(7.5f, 7.5f, 0.0f, false, false, 12.0f, 3.5f) + close() + moveTo(12.0f, 6.5f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 7.5f, 11.0f) + verticalLineToRelative(0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(6.0f, 11.0f) + arcToRelative(6.0f, 6.0f, 0.0f, true, true, 12.0f, 0.0f) + verticalLineToRelative(0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(16.5f, 11.0f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 12.0f, 6.5f) + close() + moveTo(12.0f, 8.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -0.75f, 5.9f) + lineTo(11.25f, 16.0f) + lineTo(6.0f, 16.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + horizontalLineToRelative(12.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) + horizontalLineToRelative(-5.25f) + verticalLineToRelative(-2.1f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 12.0f, 8.0f) + close() + moveTo(10.5f, 11.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + moveTo(6.0f, 17.5f) + horizontalLineToRelative(12.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) + lineTo(6.0f, 20.5f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + } + } + return _router!! + } + +private var _router: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RowTriple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RowTriple.kt new file mode 100644 index 00000000..60eb31bc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/RowTriple.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.RowTriple: ImageVector + get() { + if (_rowTriple != null) { + return _rowTriple!! + } + _rowTriple = fluentIcon(name = "Regular.RowTriple") { + fluentPath { + moveTo(4.0f, 3.77f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(12.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(5.75f, 8.02f) + curveTo(4.78f, 8.02f, 4.0f, 7.24f, 4.0f, 6.27f) + verticalLineToRelative(-2.5f) + close() + moveTo(5.75f, 3.52f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(12.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + lineTo(5.75f, 3.52f) + close() + moveTo(4.0f, 10.77f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(12.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(5.75f, 15.02f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-2.5f) + close() + moveTo(5.75f, 10.52f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(12.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-2.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + lineTo(5.75f, 10.52f) + close() + moveTo(5.75f, 16.02f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(12.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(5.75f, 16.02f) + close() + moveTo(5.5f, 17.77f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(12.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + lineTo(5.75f, 20.52f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-2.5f) + close() + } + } + return _rowTriple!! + } + +private var _rowTriple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Rss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Rss.kt new file mode 100644 index 00000000..d4f8c500 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Rss.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Rss: ImageVector + get() { + if (_rss != null) { + return _rss!! + } + _rss = fluentIcon(name = "Regular.Rss") { + fluentPath { + moveTo(6.75f, 7.5f) + arcTo(0.74f, 0.74f, 0.0f, false, true, 6.0f, 6.78f) + verticalLineToRelative(-0.06f) + curveToRelative(0.0f, -0.39f, 0.3f, -0.72f, 0.7f, -0.72f) + horizontalLineToRelative(0.05f) + curveTo(12.96f, 6.0f, 18.0f, 11.04f, 18.0f, 17.25f) + verticalLineToRelative(0.05f) + curveToRelative(0.0f, 0.4f, -0.33f, 0.7f, -0.72f, 0.7f) + horizontalLineToRelative(-0.06f) + arcToRelative(0.74f, 0.74f, 0.0f, false, true, -0.72f, -0.75f) + arcTo(9.75f, 9.75f, 0.0f, false, false, 6.75f, 7.5f) + close() + } + fluentPath { + moveTo(13.3f, 18.0f) + arcToRelative(0.69f, 0.69f, 0.0f, false, false, 0.7f, -0.75f) + arcTo(7.25f, 7.25f, 0.0f, false, false, 6.67f, 10.0f) + arcToRelative(0.69f, 0.69f, 0.0f, false, false, -0.67f, 0.7f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 0.4f, 0.35f, 0.7f, 0.75f, 0.7f) + arcToRelative(5.75f, 5.75f, 0.0f, false, true, 5.75f, 5.75f) + curveToRelative(0.0f, 0.4f, 0.3f, 0.75f, 0.7f, 0.75f) + horizontalLineToRelative(0.1f) + close() + } + fluentPath { + moveTo(9.0f, 16.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + } + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineTo(6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + horizontalLineTo(6.25f) + close() + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineTo(6.25f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineTo(6.25f) + close() + } + } + return _rss!! + } + +private var _rss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Ruler.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Ruler.kt new file mode 100644 index 00000000..2d3b3934 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Ruler.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Ruler: ImageVector + get() { + if (_ruler != null) { + return _ruler!! + } + _ruler = fluentIcon(name = "Regular.Ruler") { + fluentPath { + moveTo(9.25f, 2.0f) + curveTo(8.01f, 2.0f, 7.0f, 3.0f, 7.0f, 4.25f) + verticalLineToRelative(15.5f) + curveTo(7.0f, 20.99f, 8.0f, 22.0f, 9.25f, 22.0f) + horizontalLineToRelative(5.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineTo(4.25f) + curveTo(17.0f, 3.01f, 16.0f, 2.0f, 14.75f, 2.0f) + horizontalLineToRelative(-5.5f) + close() + moveTo(8.5f, 19.0f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(8.5f) + verticalLineTo(16.0f) + horizontalLineToRelative(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(8.5f) + verticalLineToRelative(-1.75f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(8.5f) + verticalLineTo(9.5f) + horizontalLineToRelative(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(8.5f) + verticalLineTo(6.5f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(8.5f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineTo(19.0f) + close() + } + } + return _ruler!! + } + +private var _ruler: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Run.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Run.kt new file mode 100644 index 00000000..6886412b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Run.kt @@ -0,0 +1,97 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Run: ImageVector + get() { + if (_run != null) { + return _run!! + } + _run = fluentIcon(name = "Regular.Run") { + fluentPath { + moveTo(10.64f, 2.55f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.39f, 0.03f) + lineToRelative(7.23f, 2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.03f, 1.4f) + lineToRelative(-0.86f, 0.35f) + curveToRelative(-0.83f, 0.35f, -1.53f, 0.95f, -2.0f, 1.72f) + lineToRelative(-0.54f, 0.89f) + curveToRelative(0.08f, 0.55f, 0.34f, 1.25f, 0.72f, 1.97f) + curveToRelative(0.38f, 0.75f, 0.85f, 1.45f, 1.25f, 1.93f) + lineToRelative(2.38f, 1.19f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 1.52f, 2.46f) + lineTo(20.76f, 20.0f) + curveToRelative(0.0f, 0.4f, -0.34f, 0.74f, -0.75f, 0.74f) + horizontalLineToRelative(-0.84f) + curveToRelative(-3.52f, 0.0f, -7.52f, -1.17f, -10.84f, -2.95f) + curveToRelative(-3.28f, -1.76f, -6.09f, -4.2f, -6.99f, -6.86f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.05f, -0.6f) + curveToRelative(0.34f, -0.62f, 0.71f, -1.2f, 1.1f, -1.75f) + arcToRelative(9.12f, 9.12f, 0.0f, false, true, 0.91f, -1.04f) + arcToRelative(13.0f, 13.0f, 0.0f, false, false, 0.48f, -0.52f) + arcToRelative(19.24f, 19.24f, 0.0f, false, true, 3.86f, -3.25f) + arcToRelative(8.31f, 8.31f, 0.0f, false, true, 2.9f, -1.23f) + close() + moveTo(15.46f, 14.2f) + curveToRelative(-0.4f, -0.54f, -0.83f, -1.2f, -1.18f, -1.88f) + arcToRelative(8.58f, 8.58f, 0.0f, false, true, -0.85f, -2.33f) + lineToRelative(-1.28f, -0.59f) + lineToRelative(1.58f, 3.97f) + curveToRelative(0.07f, 0.18f, 0.07f, 0.38f, 0.0f, 0.56f) + lineToRelative(-0.68f, 1.61f) + lineToRelative(1.21f, 0.45f) + lineToRelative(1.2f, -1.8f) + close() + moveTo(15.75f, 16.46f) + curveToRelative(1.26f, 0.36f, 1.93f, 0.55f, 3.51f, 0.76f) + verticalLineToRelative(-0.01f) + curveToRelative(0.0f, -0.48f, -0.27f, -0.91f, -0.7f, -1.12f) + lineToRelative(-1.92f, -0.97f) + lineToRelative(-0.9f, 1.34f) + close() + moveTo(19.26f, 18.73f) + curveToRelative(-1.87f, -0.24f, -2.6f, -0.45f, -4.0f, -0.86f) + arcToRelative(142.76f, 142.76f, 0.0f, false, false, -0.96f, -0.27f) + lineToRelative(-2.5f, -0.93f) + arcToRelative(22.6f, 22.6f, 0.0f, false, true, -8.66f, -6.36f) + lineToRelative(-0.27f, 0.45f) + curveToRelative(0.83f, 2.02f, 3.14f, 4.1f, 6.17f, 5.72f) + curveToRelative(3.15f, 1.69f, 6.9f, 2.77f, 10.13f, 2.77f) + horizontalLineToRelative(0.1f) + verticalLineToRelative(-0.52f) + close() + moveTo(4.04f, 9.06f) + curveToRelative(0.6f, 0.76f, 1.57f, 1.77f, 2.94f, 2.87f) + lineToRelative(0.42f, -2.34f) + lineToRelative(-1.75f, -2.23f) + curveToRelative(-0.25f, 0.25f, -0.47f, 0.47f, -0.65f, 0.67f) + lineToRelative(-0.54f, 0.58f) + lineToRelative(-0.16f, 0.17f) + lineToRelative(-0.26f, 0.28f) + close() + moveTo(6.76f, 6.35f) + lineTo(8.8f, 8.94f) + curveToRelative(0.13f, 0.16f, 0.18f, 0.38f, 0.14f, 0.59f) + lineToRelative(-0.62f, 3.4f) + curveToRelative(1.04f, 0.75f, 1.97f, 1.33f, 3.36f, 2.02f) + lineToRelative(0.55f, -1.31f) + lineToRelative(-2.15f, -5.43f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.01f, -0.95f) + lineToRelative(2.74f, 1.27f) + lineToRelative(0.33f, -0.54f) + arcToRelative(5.75f, 5.75f, 0.0f, false, true, 1.91f, -1.92f) + lineTo(10.7f, 4.06f) + curveToRelative(-0.66f, 0.15f, -1.4f, 0.5f, -2.17f, 0.98f) + curveToRelative(-0.62f, 0.4f, -1.22f, 0.85f, -1.77f, 1.31f) + close() + } + } + return _run!! + } + +private var _run: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Sanitize.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Sanitize.kt new file mode 100644 index 00000000..d8f999e1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Sanitize.kt @@ -0,0 +1,133 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Sanitize: ImageVector + get() { + if (_sanitize != null) { + return _sanitize!! + } + _sanitize = fluentIcon(name = "Regular.Sanitize") { + fluentPath { + moveTo(7.94f, 4.18f) + lineTo(4.68f, 7.44f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 2.12f) + lineToRelative(3.93f, 3.92f) + curveToRelative(-0.3f, 0.45f, -0.51f, 0.97f, -0.58f, 1.55f) + lineToRelative(-4.4f, -4.4f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -4.25f) + lineToRelative(3.25f, -3.26f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 4.24f, 0.0f) + lineToRelative(3.45f, 3.45f) + curveToRelative(-0.08f, 0.05f, -0.15f, 0.12f, -0.22f, 0.18f) + arcToRelative(2.98f, 2.98f, 0.0f, false, false, -1.4f, 0.32f) + lineToRelative(-2.89f, -2.89f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.12f, 0.0f) + close() + moveTo(14.76f, 7.82f) + arcToRelative(1.82f, 1.82f, 0.0f, false, false, -0.51f, -0.07f) + curveToRelative(-1.1f, 0.0f, -1.75f, 0.9f, -1.75f, 1.75f) + verticalLineToRelative(3.67f) + curveToRelative(-0.29f, -0.1f, -0.63f, -0.17f, -1.0f, -0.17f) + curveToRelative(-1.4f, 0.0f, -2.5f, 1.03f, -2.5f, 2.5f) + curveToRelative(0.0f, 0.24f, 0.12f, 0.47f, 0.31f, 0.6f) + lineToRelative(1.72f, 1.24f) + lineToRelative(0.96f, 0.83f) + curveToRelative(0.63f, 0.56f, 1.2f, 1.19f, 1.7f, 1.87f) + lineToRelative(0.6f, 0.83f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 16.52f, 22.0f) + horizontalLineToRelative(1.64f) + curveToRelative(0.93f, 0.0f, 1.82f, -0.47f, 2.3f, -1.31f) + curveToRelative(0.3f, -0.53f, 0.68f, -1.22f, 0.98f, -1.9f) + curveToRelative(0.29f, -0.65f, 0.56f, -1.42f, 0.56f, -2.04f) + verticalLineToRelative(-6.0f) + arcToRelative(1.74f, 1.74f, 0.0f, false, false, -2.07f, -1.72f) + curveToRelative(-0.19f, -0.69f, -0.79f, -1.28f, -1.68f, -1.28f) + curveToRelative(-0.18f, 0.0f, -0.35f, 0.03f, -0.51f, 0.07f) + arcTo(1.7f, 1.7f, 0.0f, false, false, 16.25f, 7.0f) + curveToRelative(-0.68f, 0.0f, -1.2f, 0.35f, -1.49f, 0.82f) + close() + moveTo(16.43f, 8.57f) + curveToRelative(0.04f, 0.05f, 0.07f, 0.11f, 0.07f, 0.18f) + verticalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-3.8f) + curveToRelative(0.0f, -0.04f, 0.02f, -0.09f, 0.06f, -0.13f) + curveToRelative(0.04f, -0.04f, 0.1f, -0.07f, 0.19f, -0.07f) + curveToRelative(0.1f, 0.0f, 0.15f, 0.03f, 0.18f, 0.07f) + curveToRelative(0.04f, 0.05f, 0.07f, 0.11f, 0.07f, 0.18f) + verticalLineToRelative(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -0.07f, 0.03f, -0.13f, 0.07f, -0.18f) + curveToRelative(0.03f, -0.04f, 0.09f, -0.07f, 0.18f, -0.07f) + curveToRelative(0.1f, 0.0f, 0.15f, 0.03f, 0.18f, 0.07f) + curveToRelative(0.04f, 0.05f, 0.07f, 0.11f, 0.07f, 0.18f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.28f, -0.15f, 0.78f, -0.43f, 1.43f) + arcToRelative(19.2f, 19.2f, 0.0f, false, true, -0.9f, 1.76f) + curveToRelative(-0.2f, 0.34f, -0.58f, 0.56f, -1.01f, 0.56f) + horizontalLineToRelative(-1.64f) + curveToRelative(-0.4f, 0.0f, -0.78f, -0.2f, -1.01f, -0.52f) + lineToRelative(-0.6f, -0.82f) + arcToRelative(12.75f, 12.75f, 0.0f, false, false, -1.94f, -2.12f) + lineToRelative(-0.98f, -0.86f) + arcToRelative(0.78f, 0.78f, 0.0f, false, false, -0.06f, -0.04f) + lineToRelative(-1.38f, -1.0f) + curveToRelative(0.12f, -0.4f, 0.48f, -0.64f, 0.95f, -0.64f) + curveToRelative(0.63f, 0.0f, 1.09f, 0.4f, 1.24f, 0.53f) + lineToRelative(0.03f, 0.03f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 14.0f, 14.5f) + lineTo(14.0f, 9.5f) + curveToRelative(0.0f, -0.07f, 0.03f, -0.14f, 0.07f, -0.18f) + curveToRelative(0.04f, -0.04f, 0.09f, -0.07f, 0.18f, -0.07f) + curveToRelative(0.1f, 0.0f, 0.15f, 0.03f, 0.18f, 0.07f) + curveToRelative(0.04f, 0.05f, 0.07f, 0.11f, 0.07f, 0.18f) + verticalLineToRelative(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.07f, 0.03f, -0.13f, 0.07f, -0.18f) + curveToRelative(0.03f, -0.04f, 0.09f, -0.07f, 0.18f, -0.07f) + curveToRelative(0.1f, 0.0f, 0.15f, 0.03f, 0.18f, 0.07f) + close() + moveTo(4.25f, 14.0f) + curveToRelative(0.42f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(5.0f, 17.0f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(3.5f, 17.0f) + horizontalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.75f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(8.25f, 17.5f) + curveToRelative(0.42f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(9.0f, 19.0f) + horizontalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(9.0f, 20.5f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.75f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _sanitize!! + } + +private var _sanitize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SaveArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SaveArrowRight.kt new file mode 100644 index 00000000..da1de54d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SaveArrowRight.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SaveArrowRight: ImageVector + get() { + if (_saveArrowRight != null) { + return _saveArrowRight!! + } + _saveArrowRight = fluentIcon(name = "Regular.SaveArrowRight") { + fluentPath { + moveTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(9.96f) + curveToRelative(0.87f, 0.0f, 1.7f, 0.34f, 2.3f, 0.95f) + lineTo(20.05f, 6.0f) + curveToRelative(0.6f, 0.6f, 0.95f, 1.43f, 0.95f, 2.3f) + verticalLineToRelative(3.73f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 8.28f) + curveToRelative(0.0f, -0.47f, -0.18f, -0.91f, -0.51f, -1.24f) + lineTo(16.95f, 5.0f) + curveToRelative(-0.26f, -0.26f, -0.6f, -0.43f, -0.95f, -0.49f) + verticalLineToRelative(2.73f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-4.5f) + curveTo(8.01f, 9.5f, 7.0f, 8.5f, 7.0f, 7.25f) + lineTo(7.0f, 4.5f) + lineTo(5.75f, 4.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + lineTo(6.0f, 19.5f) + verticalLineToRelative(-5.25f) + curveTo(6.0f, 13.01f, 7.0f, 12.0f, 8.25f, 12.0f) + horizontalLineToRelative(5.78f) + curveToRelative(-0.63f, 0.4f, -1.2f, 0.91f, -1.65f, 1.5f) + lineTo(8.25f, 13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(5.25f) + horizontalLineToRelative(3.81f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(5.75f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + close() + moveTo(8.5f, 4.5f) + verticalLineToRelative(2.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(14.5f, 4.5f) + horizontalLineToRelative(-6.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(19.29f, 17.0f) + lineTo(14.5f, 17.0f) + close() + } + } + return _saveArrowRight!! + } + +private var _saveArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SaveCopy.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SaveCopy.kt new file mode 100644 index 00000000..d350d10b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SaveCopy.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SaveCopy: ImageVector + get() { + if (_saveCopy != null) { + return _saveCopy!! + } + _saveCopy = fluentIcon(name = "Regular.SaveCopy") { + fluentPath { + moveTo(20.5f, 5.63f) + curveToRelative(0.87f, 0.3f, 1.5f, 1.14f, 1.5f, 2.12f) + verticalLineToRelative(10.0f) + curveTo(22.0f, 20.1f, 20.1f, 22.0f, 17.75f, 22.0f) + horizontalLineToRelative(-10.0f) + curveToRelative(-0.98f, 0.0f, -1.82f, -0.63f, -2.12f, -1.5f) + horizontalLineToRelative(12.12f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, -2.75f) + lineTo(20.5f, 5.63f) + close() + moveTo(17.25f, 2.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(13.0f) + curveToRelative(0.0f, 1.24f, -1.01f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-13.0f) + curveTo(3.01f, 19.5f, 2.0f, 18.49f, 2.0f, 17.25f) + verticalLineToRelative(-13.0f) + curveTo(2.0f, 3.01f, 3.0f, 2.0f, 4.25f, 2.0f) + horizontalLineToRelative(13.0f) + close() + moveTo(17.25f, 3.5f) + horizontalLineToRelative(-13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(13.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(13.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(10.75f, 6.75f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(11.5f, 10.0f) + lineTo(14.0f, 10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + lineTo(11.5f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + lineTo(7.5f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(10.0f, 10.0f) + lineTo(10.0f, 7.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _saveCopy!! + } + +private var _saveCopy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SaveEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SaveEdit.kt new file mode 100644 index 00000000..fac735a6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SaveEdit.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SaveEdit: ImageVector + get() { + if (_saveEdit != null) { + return _saveEdit!! + } + _saveEdit = fluentIcon(name = "Regular.SaveEdit") { + fluentPath { + moveTo(5.75f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) + horizontalLineTo(10.0f) + curveToRelative(0.0f, -0.2f, 0.01f, -0.4f, 0.06f, -0.6f) + lineToRelative(0.23f, -0.9f) + horizontalLineTo(7.5f) + verticalLineToRelative(-5.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.6f) + lineToRelative(1.44f, -1.44f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, -0.54f, -0.06f) + horizontalLineToRelative(-7.5f) + curveTo(7.01f, 12.0f, 6.0f, 13.0f, 6.0f, 14.25f) + verticalLineToRelative(5.25f) + horizontalLineToRelative(-0.25f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + verticalLineTo(5.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineTo(7.0f) + verticalLineToRelative(2.75f) + curveTo(7.0f, 8.49f, 8.0f, 9.5f, 9.25f, 9.5f) + horizontalLineToRelative(4.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineTo(4.52f) + curveToRelative(0.36f, 0.06f, 0.7f, 0.23f, 0.95f, 0.5f) + lineTo(19.0f, 7.04f) + curveToRelative(0.33f, 0.33f, 0.51f, 0.77f, 0.51f, 1.24f) + verticalLineTo(10.0f) + lineToRelative(0.21f, -0.01f) + curveToRelative(0.44f, 0.0f, 0.88f, 0.09f, 1.29f, 0.26f) + verticalLineTo(8.3f) + curveToRelative(0.0f, -0.87f, -0.34f, -1.7f, -0.95f, -2.3f) + lineTo(18.0f, 3.95f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -2.3f, -0.95f) + horizontalLineTo(5.75f) + close() + moveTo(8.5f, 7.25f) + verticalLineTo(4.5f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(2.75f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(19.72f, 11.0f) + curveToRelative(-0.6f, 0.0f, -1.18f, 0.22f, -1.62f, 0.67f) + lineToRelative(-5.9f, 5.9f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.71f, 1.25f) + lineToRelative(-0.46f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcTo(2.29f, 2.29f, 0.0f, false, false, 19.72f, 11.0f) + close() + } + } + return _saveEdit!! + } + +private var _saveEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SaveMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SaveMultiple.kt new file mode 100644 index 00000000..a03f8475 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SaveMultiple.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SaveMultiple: ImageVector + get() { + if (_saveMultiple != null) { + return _saveMultiple!! + } + _saveMultiple = fluentIcon(name = "Regular.SaveMultiple") { + fluentPath { + moveTo(5.75f, 18.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 15.25f) + verticalLineToRelative(-9.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(6.96f) + curveToRelative(0.87f, 0.0f, 1.7f, 0.34f, 2.3f, 0.95f) + lineTo(17.05f, 6.0f) + curveToRelative(0.6f, 0.6f, 0.95f, 1.43f, 0.95f, 2.3f) + verticalLineToRelative(6.96f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 15.25f, 18.0f) + horizontalLineToRelative(-9.5f) + close() + moveTo(4.5f, 5.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + lineTo(6.0f, 16.5f) + verticalLineToRelative(-3.25f) + curveTo(6.0f, 12.01f, 7.0f, 11.0f, 8.25f, 11.0f) + horizontalLineToRelative(4.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(3.25f) + horizontalLineToRelative(0.25f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + lineTo(16.5f, 8.29f) + curveToRelative(0.0f, -0.47f, -0.18f, -0.91f, -0.51f, -1.24f) + lineTo(14.0f, 5.06f) + verticalLineToRelative(1.19f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-2.5f) + curveTo(8.01f, 8.5f, 7.0f, 7.5f, 7.0f, 6.25f) + lineTo(7.0f, 4.5f) + lineTo(5.75f, 4.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + close() + moveTo(13.5f, 16.5f) + verticalLineToRelative(-3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.25f) + horizontalLineToRelative(6.0f) + close() + moveTo(8.5f, 6.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(12.5f, 4.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(1.75f) + close() + moveTo(10.75f, 21.0f) + curveToRelative(-1.37f, 0.0f, -2.6f, -0.58f, -3.46f, -1.5f) + horizontalLineToRelative(8.96f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.45f, 3.25f, -3.25f) + lineTo(19.5f, 8.44f) + lineToRelative(0.55f, 0.55f) + curveToRelative(0.6f, 0.6f, 0.95f, 1.43f, 0.95f, 2.3f) + verticalLineToRelative(4.96f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 16.25f, 21.0f) + horizontalLineToRelative(-5.5f) + close() + } + } + return _saveMultiple!! + } + +private var _saveMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Savings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Savings.kt new file mode 100644 index 00000000..57dca083 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Savings.kt @@ -0,0 +1,97 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Savings: ImageVector + get() { + if (_savings != null) { + return _savings!! + } + _savings = fluentIcon(name = "Regular.Savings") { + fluentPath { + moveTo(10.08f, 4.09f) + curveToRelative(0.53f, 0.36f, 1.04f, 0.6f, 1.46f, 0.66f) + curveToRelative(-0.23f, 0.45f, -0.4f, 0.94f, -0.47f, 1.44f) + arcToRelative(5.39f, 5.39f, 0.0f, false, true, -1.84f, -0.87f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -0.73f, -0.55f) + lineTo(8.5f, 7.0f) + curveToRelative(0.0f, 0.3f, -0.19f, 0.58f, -0.47f, 0.7f) + arcToRelative(2.52f, 2.52f, 0.0f, false, false, -0.17f, 0.07f) + arcToRelative(6.99f, 6.99f, 0.0f, false, false, -1.83f, 1.26f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -0.9f, 1.54f) + curveToRelative(-0.2f, 0.6f, -0.7f, 1.16f, -1.44f, 1.28f) + arcToRelative(0.22f, 0.22f, 0.0f, false, false, -0.19f, 0.22f) + verticalLineToRelative(1.76f) + curveToRelative(0.0f, 0.16f, 0.12f, 0.3f, 0.28f, 0.33f) + curveToRelative(0.63f, 0.1f, 1.12f, 0.51f, 1.4f, 1.0f) + curveToRelative(0.25f, 0.46f, 0.7f, 1.15f, 1.35f, 1.8f) + arcToRelative(4.96f, 4.96f, 0.0f, false, false, 2.36f, 1.3f) + curveToRelative(0.36f, 0.07f, 0.61f, 0.38f, 0.61f, 0.74f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + lineTo(11.0f, 20.5f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(2.0f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + horizontalLineToRelative(1.25f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + lineTo(17.5f, 18.0f) + curveToRelative(0.0f, -0.28f, 0.16f, -0.54f, 0.41f, -0.67f) + horizontalLineToRelative(0.02f) + lineToRelative(0.07f, -0.05f) + lineToRelative(0.28f, -0.19f) + arcToRelative(5.6f, 5.6f, 0.0f, false, false, 2.22f, -4.6f) + curveToRelative(0.0f, -1.0f, -0.19f, -1.81f, -0.5f, -2.48f) + curveToRelative(0.35f, -0.47f, 0.62f, -1.0f, 0.79f, -1.57f) + arcTo(6.89f, 6.89f, 0.0f, false, true, 22.0f, 12.5f) + arcToRelative(7.1f, 7.1f, 0.0f, false, true, -3.0f, 5.92f) + verticalLineToRelative(1.83f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(16.0f, 22.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + horizontalLineToRelative(-2.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + lineTo(9.75f, 22.0f) + curveTo(8.78f, 22.0f, 8.0f, 21.22f, 8.0f, 20.25f) + verticalLineToRelative(-0.68f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, -2.53f, -1.54f) + arcToRelative(9.86f, 9.86f, 0.0f, false, true, -1.6f, -2.13f) + arcToRelative(0.49f, 0.49f, 0.0f, false, false, -0.33f, -0.26f) + arcTo(1.84f, 1.84f, 0.0f, false, true, 2.0f, 13.83f) + verticalLineToRelative(-1.76f) + curveToRelative(0.0f, -0.84f, 0.6f, -1.56f, 1.44f, -1.7f) + curveToRelative(0.09f, -0.01f, 0.22f, -0.1f, 0.28f, -0.28f) + curveToRelative(0.19f, -0.58f, 0.56f, -1.43f, 1.25f, -2.12f) + arcTo(7.94f, 7.94f, 0.0f, false, true, 7.0f, 6.52f) + lineTo(7.0f, 3.67f) + curveToRelative(0.0f, -0.94f, 1.13f, -1.32f, 1.74f, -0.72f) + curveToRelative(0.33f, 0.33f, 0.81f, 0.77f, 1.34f, 1.14f) + close() + moveTo(13.07f, 8.85f) + curveToRelative(-0.49f, -0.2f, -0.9f, -0.6f, -1.0f, -1.11f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, 6.19f, 2.56f) + curveToRelative(-0.44f, 0.3f, -1.0f, 0.28f, -1.5f, 0.08f) + lineToRelative(-3.69f, -1.53f) + close() + moveTo(17.47f, 9.03f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, -3.94f, -1.63f) + lineToRelative(0.02f, 0.01f) + lineToRelative(0.1f, 0.05f) + lineTo(17.33f, 9.0f) + arcToRelative(0.54f, 0.54f, 0.0f, false, false, 0.12f, 0.04f) + close() + moveTo(9.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + } + } + return _savings!! + } + +private var _savings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScaleFill.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScaleFill.kt new file mode 100644 index 00000000..c34538a5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScaleFill.kt @@ -0,0 +1,91 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ScaleFill: ImageVector + get() { + if (_scaleFill != null) { + return _scaleFill!! + } + _scaleFill = fluentIcon(name = "Regular.ScaleFill") { + fluentPath { + moveTo(6.0f, 6.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.69f) + lineToRelative(1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(7.5f, 8.56f) + verticalLineToRelative(0.7f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + lineTo(6.0f, 6.74f) + close() + moveTo(17.25f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, -0.75f) + verticalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(0.69f) + lineToRelative(-1.72f, -1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(1.72f, 1.72f) + horizontalLineToRelative(-0.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.5f) + close() + moveTo(17.78f, 6.22f) + curveToRelative(0.14f, 0.14f, 0.22f, 0.33f, 0.22f, 0.53f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.69f) + lineToRelative(-1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(1.72f, -1.72f) + horizontalLineToRelative(-0.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.51f) + curveToRelative(0.2f, 0.0f, 0.39f, 0.08f, 0.53f, 0.22f) + close() + moveTo(6.0f, 17.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, 0.75f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.69f) + lineToRelative(1.72f, -1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineTo(7.5f, 15.44f) + verticalLineToRelative(-0.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.5f) + close() + moveTo(3.0f, 5.25f) + curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(13.5f) + curveTo(19.99f, 3.0f, 21.0f, 4.0f, 21.0f, 5.25f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(5.25f, 21.0f) + curveTo(4.01f, 21.0f, 3.0f, 20.0f, 3.0f, 18.75f) + lineTo(3.0f, 5.25f) + close() + moveTo(5.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(19.5f, 5.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(5.25f, 4.5f) + close() + } + } + return _scaleFill!! + } + +private var _scaleFill: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScaleFit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScaleFit.kt new file mode 100644 index 00000000..88932757 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScaleFit.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ScaleFit: ImageVector + get() { + if (_scaleFit != null) { + return _scaleFit!! + } + _scaleFit = fluentIcon(name = "Regular.ScaleFit") { + fluentPath { + moveTo(8.0f, 9.44f) + curveToRelative(0.3f, 0.27f, 0.34f, 0.74f, 0.06f, 1.05f) + lineToRelative(-0.66f, 0.76f) + horizontalLineToRelative(2.86f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(7.4f, 12.75f) + lineToRelative(0.66f, 0.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.12f, 0.98f) + lineToRelative(-1.75f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -0.98f) + lineToRelative(1.75f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, -0.07f) + close() + moveTo(15.95f, 10.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, -0.98f) + lineToRelative(1.75f, 2.0f) + curveToRelative(0.25f, 0.28f, 0.25f, 0.7f, 0.0f, 0.98f) + lineToRelative(-1.75f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) + lineToRelative(0.66f, -0.76f) + horizontalLineToRelative(-2.86f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.86f) + lineToRelative(-0.66f, -0.76f) + close() + moveTo(2.0f, 6.25f) + curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) + horizontalLineToRelative(15.5f) + curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(4.25f, 20.0f) + curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) + lineTo(2.0f, 6.25f) + close() + moveTo(4.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(15.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(20.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(4.25f, 5.5f) + close() + } + } + return _scaleFit!! + } + +private var _scaleFit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Scales.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Scales.kt new file mode 100644 index 00000000..77cde6ca --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Scales.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Scales: ImageVector + get() { + if (_scales != null) { + return _scales!! + } + _scales = fluentIcon(name = "Regular.Scales") { + fluentPath { + moveTo(3.0f, 3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.04f) + lineToRelative(2.73f, 6.72f) + curveToRelative(0.04f, 0.09f, 0.06f, 0.18f, 0.06f, 0.28f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, -7.0f, 0.0f) + curveToRelative(0.0f, -0.1f, 0.02f, -0.2f, 0.06f, -0.28f) + lineToRelative(2.73f, -6.72f) + horizontalLineToRelative(-5.04f) + verticalLineToRelative(12.0f) + horizontalLineToRelative(4.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, 4.5f) + horizontalLineToRelative(-9.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -4.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-12.0f) + lineTo(6.21f, 4.5f) + lineToRelative(2.73f, 6.72f) + curveToRelative(0.04f, 0.09f, 0.06f, 0.18f, 0.06f, 0.28f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, -7.0f, 0.0f) + curveToRelative(0.0f, -0.1f, 0.02f, -0.2f, 0.06f, -0.28f) + lineTo(4.79f, 4.5f) + lineTo(3.75f, 4.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 3.75f) + close() + moveTo(6.5f, 18.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(7.35f, 12.25f) + horizontalLineToRelative(-3.7f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 3.7f, 0.0f) + close() + moveTo(7.13f, 10.75f) + lineTo(5.5f, 6.74f) + lineToRelative(-1.63f, 4.01f) + horizontalLineToRelative(3.26f) + close() + moveTo(18.5f, 13.5f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.85f, -1.25f) + horizontalLineToRelative(-3.7f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.85f, 1.25f) + close() + moveTo(16.87f, 10.75f) + horizontalLineToRelative(3.26f) + lineTo(18.5f, 6.74f) + lineToRelative(-1.63f, 4.01f) + close() + } + } + return _scales!! + } + +private var _scales: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Scan.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Scan.kt new file mode 100644 index 00000000..a0acbbc7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Scan.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Scan: ImageVector + get() { + if (_scan != null) { + return _scan!! + } + _scan = fluentIcon(name = "Regular.Scan") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(15.25f, 14.33f) + lineTo(15.21f, 14.4f) + lineTo(15.15f, 14.5f) + lineTo(10.39f, 20.35f) + arcToRelative(8.54f, 8.54f, 0.0f, false, false, 7.26f, -2.0f) + lineToRelative(-2.08f, -4.54f) + curveToRelative(-0.1f, 0.18f, -0.2f, 0.36f, -0.32f, 0.52f) + close() + moveTo(4.49f, 16.0f) + arcToRelative(8.53f, 8.53f, 0.0f, false, false, 4.34f, 3.9f) + lineTo(11.99f, 16.0f) + horizontalLineToRelative(-0.19f) + lineToRelative(-0.13f, -0.01f) + lineTo(4.49f, 15.99f) + close() + moveTo(20.13f, 9.5f) + horizontalLineToRelative(-5.0f) + arcToRelative(4.02f, 4.02f, 0.0f, false, true, 0.3f, 0.41f) + lineToRelative(0.05f, 0.1f) + lineToRelative(0.04f, 0.07f) + curveToRelative(0.08f, 0.16f, 0.16f, 0.33f, 0.22f, 0.5f) + lineToRelative(3.02f, 6.57f) + arcToRelative(8.46f, 8.46f, 0.0f, false, false, 1.37f, -7.65f) + close() + moveTo(3.5f, 12.0f) + curveToRelative(0.0f, 0.86f, 0.13f, 1.7f, 0.37f, 2.49f) + horizontalLineToRelative(5.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -0.23f, -0.32f) + lineToRelative(-0.14f, -0.23f) + lineToRelative(-3.61f, -6.6f) + arcTo(8.46f, 8.46f, 0.0f, false, false, 3.5f, 12.0f) + close() + moveTo(10.02f, 10.47f) + lineTo(9.98f, 10.55f) + arcTo(2.48f, 2.48f, 0.0f, false, false, 9.5f, 12.0f) + curveToRelative(0.0f, 1.3f, 0.98f, 2.36f, 2.24f, 2.49f) + horizontalLineToRelative(0.52f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -0.03f, -4.98f) + horizontalLineToRelative(-0.43f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -1.78f, 0.96f) + close() + moveTo(12.0f, 3.5f) + curveToRelative(-2.4f, 0.0f, -4.55f, 0.99f, -6.1f, 2.58f) + lineToRelative(2.4f, 4.38f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.49f, -0.85f) + lineToRelative(3.9f, -6.08f) + arcTo(8.62f, 8.62f, 0.0f, false, false, 12.0f, 3.5f) + close() + moveTo(11.6f, 8.02f) + arcToRelative(4.05f, 4.05f, 0.0f, false, true, 0.7f, 0.0f) + horizontalLineToRelative(7.2f) + arcTo(8.52f, 8.52f, 0.0f, false, false, 14.6f, 3.9f) + lineToRelative(-0.3f, -0.09f) + lineToRelative(-2.7f, 4.21f) + close() + } + } + return _scan!! + } + +private var _scan: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanCamera.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanCamera.kt new file mode 100644 index 00000000..fb3e4294 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanCamera.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ScanCamera: ImageVector + get() { + if (_scanCamera != null) { + return _scanCamera!! + } + _scanCamera = fluentIcon(name = "Regular.ScanCamera") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(15.0f, 3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(3.75f, 15.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(20.25f, 15.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.0f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(12.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(10.85f, 7.0f) + curveToRelative(-0.48f, 0.0f, -0.9f, 0.26f, -1.12f, 0.68f) + lineTo(9.24f, 9.0f) + horizontalLineToRelative(-0.57f) + curveTo(7.75f, 9.0f, 7.0f, 9.6f, 7.0f, 10.5f) + verticalLineToRelative(3.86f) + curveToRelative(0.0f, 0.9f, 0.75f, 1.64f, 1.67f, 1.64f) + horizontalLineToRelative(6.66f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.73f, 1.67f, -1.64f) + lineTo(17.0f, 10.5f) + curveToRelative(0.0f, -0.9f, -0.75f, -1.5f, -1.67f, -1.5f) + horizontalLineToRelative(-0.57f) + lineToRelative(-0.49f, -1.32f) + arcTo(1.25f, 1.25f, 0.0f, false, false, 13.15f, 7.0f) + horizontalLineToRelative(-2.3f) + close() + moveTo(12.0f, 14.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, 4.0f) + close() + } + } + return _scanCamera!! + } + +private var _scanCamera: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanDash.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanDash.kt new file mode 100644 index 00000000..3f2e55df --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanDash.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ScanDash: ImageVector + get() { + if (_scanDash != null) { + return _scanDash!! + } + _scanDash = fluentIcon(name = "Regular.ScanDash") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.0f) + close() + moveTo(15.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.0f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + horizontalLineToRelative(-2.0f) + close() + moveTo(4.5f, 15.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.0f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-2.0f) + close() + moveTo(21.0f, 15.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-2.0f) + close() + moveTo(7.5f, 11.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-9.0f) + close() + } + } + return _scanDash!! + } + +private var _scanDash: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanObject.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanObject.kt new file mode 100644 index 00000000..8763ad70 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanObject.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ScanObject: ImageVector + get() { + if (_scanObject != null) { + return _scanObject!! + } + _scanObject = fluentIcon(name = "Regular.ScanObject") { + fluentPath { + moveTo(5.25f, 3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-3.0f) + curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.0f) + close() + moveTo(18.75f, 3.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-3.0f) + curveTo(22.0f, 3.45f, 20.54f, 2.0f, 18.75f, 2.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.0f) + close() + moveTo(3.5f, 18.75f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 18.75f) + verticalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(3.0f) + close() + moveTo(18.75f, 20.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.0f) + close() + moveTo(13.82f, 8.23f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.64f, 0.0f) + lineToRelative(-3.05f, 4.2f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 8.95f, 16.0f) + horizontalLineToRelative(6.1f) + curveToRelative(1.84f, 0.0f, 2.9f, -2.09f, 1.82f, -3.57f) + lineToRelative(-3.05f, -4.2f) + close() + moveTo(11.39f, 9.11f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.22f, 0.0f) + lineToRelative(3.05f, 4.2f) + curveToRelative(0.36f, 0.5f, 0.0f, 1.19f, -0.6f, 1.19f) + lineTo(8.94f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.61f, -1.2f) + lineToRelative(3.05f, -4.2f) + close() + } + } + return _scanObject!! + } + +private var _scanObject: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanQrCode.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanQrCode.kt new file mode 100644 index 00000000..6d1d0530 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanQrCode.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ScanQrCode: ImageVector + get() { + if (_scanQrCode != null) { + return _scanQrCode!! + } + _scanQrCode = fluentIcon(name = "Regular.ScanQrCode") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(15.0f, 3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(3.75f, 15.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(20.25f, 15.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.0f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(10.0f, 7.0f) + lineTo(7.0f, 7.0f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(4.0f) + lineTo(7.0f, 14.0f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(3.0f) + lineTo(17.0f, 7.0f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(-4.0f) + lineTo(10.0f, 7.0f) + close() + } + } + return _scanQrCode!! + } + +private var _scanQrCode: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanTable.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanTable.kt new file mode 100644 index 00000000..fe56c2e6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanTable.kt @@ -0,0 +1,101 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ScanTable: ImageVector + get() { + if (_scanTable != null) { + return _scanTable!! + } + _scanTable = fluentIcon(name = "Regular.ScanTable") { + fluentPath { + moveTo(2.75f, 15.0f) + curveToRelative(0.38f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) + verticalLineToRelative(3.6f) + lineToRelative(0.01f, 0.13f) + curveToRelative(0.06f, 0.59f, 0.53f, 1.06f, 1.12f, 1.12f) + horizontalLineToRelative(3.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(4.58f, 22.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 19.43f) + lineTo(2.0f, 15.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) + close() + moveTo(21.25f, 15.0f) + curveToRelative(0.38f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) + verticalLineToRelative(3.6f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 19.42f, 22.0f) + horizontalLineToRelative(-3.66f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(3.6f) + curveToRelative(0.64f, 0.0f, 1.18f, -0.49f, 1.24f, -1.12f) + verticalLineToRelative(-3.63f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.76f, -0.75f) + close() + moveTo(15.25f, 6.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.74f, 2.58f) + lineToRelative(0.01f, 0.17f) + verticalLineToRelative(6.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 15.42f, 18.0f) + lineTo(8.75f, 18.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 6.0f, 15.42f) + lineTo(6.0f, 8.75f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.58f, -2.74f) + lineTo(8.75f, 6.0f) + horizontalLineToRelative(6.5f) + close() + moveTo(16.5f, 11.0f) + horizontalLineToRelative(-9.0f) + verticalLineToRelative(4.25f) + curveToRelative(0.0f, 0.65f, 0.5f, 1.18f, 1.12f, 1.24f) + lineToRelative(0.13f, 0.01f) + horizontalLineToRelative(6.5f) + curveToRelative(0.65f, 0.0f, 1.18f, -0.5f, 1.24f, -1.12f) + lineToRelative(0.01f, -0.13f) + verticalLineToRelative(-4.26f) + close() + moveTo(15.25f, 7.5f) + horizontalLineToRelative(-6.5f) + curveToRelative(-0.65f, 0.0f, -1.18f, 0.5f, -1.24f, 1.12f) + lineToRelative(-0.01f, 0.13f) + verticalLineToRelative(0.74f) + horizontalLineToRelative(9.0f) + verticalLineToRelative(-0.74f) + curveToRelative(0.0f, -0.65f, -0.5f, -1.18f, -1.12f, -1.24f) + lineToRelative(-0.13f, -0.01f) + close() + moveTo(8.25f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-3.6f) + curveToRelative(-0.65f, 0.0f, -1.18f, 0.5f, -1.25f, 1.12f) + verticalLineToRelative(3.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-3.6f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.58f, -2.74f) + lineTo(4.75f, 2.0f) + horizontalLineToRelative(3.5f) + close() + moveTo(19.25f, 2.0f) + horizontalLineToRelative(0.16f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 4.59f) + verticalLineToRelative(3.77f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, 0.0f) + verticalLineToRelative(-3.6f) + lineToRelative(-0.01f, -0.13f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.12f, -1.11f) + lineToRelative(-0.12f, -0.01f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.6f) + close() + } + } + return _scanTable!! + } + +private var _scanTable: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanText.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanText.kt new file mode 100644 index 00000000..7156a661 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanText.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ScanText: ImageVector + get() { + if (_scanText != null) { + return _scanText!! + } + _scanText = fluentIcon(name = "Regular.ScanText") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(2.12f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.12f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(6.25f, 3.0f) + close() + moveTo(15.63f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.12f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(2.12f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-2.12f) + close() + moveTo(3.0f, 15.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(2.12f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 1.75f, 1.75f) + horizontalLineToRelative(2.12f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + verticalLineToRelative(-2.12f) + close() + moveTo(19.5f, 15.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(2.12f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 17.75f, 21.0f) + horizontalLineToRelative(-2.12f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.12f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 1.75f, -1.75f) + verticalLineToRelative(-2.12f) + close() + moveTo(7.0f, 7.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-8.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 7.0f, 7.75f) + close() + moveTo(7.75f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-8.5f) + close() + moveTo(7.0f, 15.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _scanText!! + } + +private var _scanText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanThumbUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanThumbUp.kt new file mode 100644 index 00000000..9ed1b09b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanThumbUp.kt @@ -0,0 +1,106 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ScanThumbUp: ImageVector + get() { + if (_scanThumbUp != null) { + return _scanThumbUp!! + } + _scanThumbUp = fluentIcon(name = "Regular.ScanThumbUp") { + fluentPath { + moveTo(3.5f, 5.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) + verticalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-3.0f) + close() + moveTo(20.5f, 5.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.0f) + curveTo(20.55f, 2.0f, 22.0f, 3.46f, 22.0f, 5.25f) + verticalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-3.0f) + close() + moveTo(5.25f, 20.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.0f) + curveTo(2.0f, 20.55f, 3.46f, 22.0f, 5.25f, 22.0f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.0f) + close() + moveTo(20.5f, 18.75f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.0f) + close() + moveTo(13.47f, 5.31f) + curveToRelative(-1.12f, -0.29f, -1.92f, 0.5f, -2.18f, 1.11f) + curveToRelative(-0.19f, 0.44f, -0.35f, 0.75f, -0.57f, 1.14f) + lineToRelative(-0.46f, 0.88f) + arcToRelative(5.94f, 5.94f, 0.0f, false, true, -1.25f, 1.7f) + lineToRelative(-1.54f, 0.85f) + arcToRelative(2.27f, 2.27f, 0.0f, false, false, -1.06f, 2.84f) + lineToRelative(0.44f, 1.09f) + arcToRelative(2.4f, 2.4f, 0.0f, false, false, 1.56f, 1.39f) + lineToRelative(4.5f, 1.32f) + arcToRelative(2.88f, 2.88f, 0.0f, false, false, 3.59f, -1.82f) + lineToRelative(1.15f, -3.65f) + curveToRelative(0.49f, -1.56f, -0.78f, -3.0f, -2.34f, -3.0f) + horizontalLineToRelative(-0.19f) + curveToRelative(0.08f, -0.38f, 0.15f, -0.81f, 0.14f, -1.2f) + curveToRelative(-0.01f, -0.42f, -0.05f, -0.97f, -0.3f, -1.47f) + curveToRelative(-0.29f, -0.58f, -0.8f, -1.0f, -1.5f, -1.18f) + close() + moveTo(8.19f, 12.3f) + lineToRelative(1.55f, -0.85f) + arcToRelative(0.79f, 0.79f, 0.0f, false, false, 0.06f, -0.04f) + horizontalLineToRelative(0.01f) + lineToRelative(0.01f, -0.01f) + lineToRelative(0.02f, -0.01f) + lineToRelative(0.13f, -0.1f) + arcTo(7.42f, 7.42f, 0.0f, false, false, 11.6f, 9.1f) + lineToRelative(0.44f, -0.84f) + curveToRelative(0.22f, -0.4f, 0.41f, -0.75f, 0.63f, -1.25f) + curveToRelative(0.03f, -0.08f, 0.1f, -0.17f, 0.19f, -0.22f) + arcToRelative(0.28f, 0.28f, 0.0f, false, true, 0.23f, -0.04f) + curveToRelative(0.3f, 0.08f, 0.44f, 0.22f, 0.52f, 0.4f) + curveToRelative(0.1f, 0.19f, 0.14f, 0.46f, 0.15f, 0.82f) + curveToRelative(0.0f, 0.32f, -0.07f, 0.75f, -0.18f, 1.17f) + curveToRelative(-0.04f, 0.2f, -0.1f, 0.38f, -0.15f, 0.54f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.72f, 0.98f) + horizontalLineToRelative(1.16f) + curveToRelative(0.7f, 0.0f, 1.05f, 0.58f, 0.9f, 1.04f) + lineToRelative(-1.14f, 3.65f) + curveToRelative(-0.2f, 0.63f, -0.96f, 1.06f, -1.73f, 0.83f) + lineToRelative(-4.51f, -1.32f) + arcToRelative(0.9f, 0.9f, 0.0f, false, true, -0.59f, -0.51f) + lineToRelative(-0.44f, -1.09f) + curveToRelative(-0.13f, -0.34f, 0.0f, -0.75f, 0.4f, -0.97f) + close() + } + } + return _scanThumbUp!! + } + +private var _scanThumbUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanThumbUpOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanThumbUpOff.kt new file mode 100644 index 00000000..ac1a9ad8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanThumbUpOff.kt @@ -0,0 +1,121 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ScanThumbUpOff: ImageVector + get() { + if (_scanThumbUpOff != null) { + return _scanThumbUpOff!! + } + _scanThumbUpOff = fluentIcon(name = "Regular.ScanThumbUpOff") { + fluentPath { + moveTo(2.48f, 3.54f) + curveToRelative(-0.3f, 0.5f, -0.48f, 1.08f, -0.48f, 1.71f) + verticalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -0.2f, 0.04f, -0.4f, 0.1f, -0.59f) + lineToRelative(5.45f, 5.45f) + horizontalLineToRelative(-0.01f) + lineToRelative(-0.03f, 0.03f) + lineToRelative(-1.54f, 0.85f) + arcToRelative(2.27f, 2.27f, 0.0f, false, false, -1.06f, 2.84f) + lineToRelative(0.44f, 1.09f) + arcToRelative(2.4f, 2.4f, 0.0f, false, false, 1.56f, 1.39f) + lineToRelative(4.5f, 1.32f) + curveToRelative(1.06f, 0.3f, 2.2f, 0.0f, 2.93f, -0.73f) + lineToRelative(3.5f, 3.5f) + curveToRelative(-0.19f, 0.06f, -0.38f, 0.1f, -0.59f, 0.1f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.0f) + curveToRelative(0.63f, 0.0f, 1.21f, -0.18f, 1.7f, -0.48f) + lineToRelative(0.27f, 0.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(0.26f, 0.26f) + close() + moveTo(14.78f, 15.84f) + curveToRelative(-0.34f, 0.34f, -0.89f, 0.51f, -1.44f, 0.35f) + lineToRelative(-4.51f, -1.32f) + arcToRelative(0.9f, 0.9f, 0.0f, false, true, -0.59f, -0.51f) + lineToRelative(-0.44f, -1.09f) + curveToRelative(-0.13f, -0.34f, 0.0f, -0.75f, 0.4f, -0.97f) + lineToRelative(1.54f, -0.85f) + arcToRelative(0.79f, 0.79f, 0.0f, false, false, 0.06f, -0.04f) + horizontalLineToRelative(0.01f) + lineToRelative(0.01f, -0.01f) + lineToRelative(0.02f, -0.01f) + arcToRelative(2.35f, 2.35f, 0.0f, false, false, 0.27f, -0.22f) + lineToRelative(4.67f, 4.67f) + close() + moveTo(10.73f, 7.54f) + lineTo(11.83f, 8.66f) + lineTo(12.04f, 8.27f) + curveToRelative(0.22f, -0.4f, 0.41f, -0.75f, 0.63f, -1.25f) + curveToRelative(0.03f, -0.08f, 0.1f, -0.17f, 0.19f, -0.22f) + arcToRelative(0.28f, 0.28f, 0.0f, false, true, 0.23f, -0.04f) + curveToRelative(0.3f, 0.08f, 0.44f, 0.22f, 0.52f, 0.4f) + curveToRelative(0.1f, 0.19f, 0.14f, 0.46f, 0.15f, 0.82f) + curveToRelative(0.0f, 0.32f, -0.07f, 0.75f, -0.18f, 1.17f) + curveToRelative(-0.04f, 0.2f, -0.1f, 0.38f, -0.15f, 0.54f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.11f, 0.67f) + lineToRelative(0.16f, 0.16f) + curveToRelative(0.13f, 0.1f, 0.29f, 0.15f, 0.45f, 0.15f) + horizontalLineToRelative(1.16f) + curveToRelative(0.7f, 0.0f, 1.05f, 0.58f, 0.9f, 1.04f) + lineToRelative(-0.31f, 1.0f) + lineToRelative(1.2f, 1.2f) + lineToRelative(0.55f, -1.75f) + curveToRelative(0.49f, -1.56f, -0.78f, -3.0f, -2.34f, -3.0f) + horizontalLineToRelative(-0.19f) + curveToRelative(0.08f, -0.38f, 0.15f, -0.81f, 0.14f, -1.2f) + curveToRelative(-0.01f, -0.42f, -0.05f, -0.97f, -0.3f, -1.47f) + curveToRelative(-0.29f, -0.58f, -0.8f, -1.0f, -1.5f, -1.18f) + curveToRelative(-1.1f, -0.29f, -1.9f, 0.5f, -2.17f, 1.11f) + curveToRelative(-0.19f, 0.44f, -0.35f, 0.74f, -0.56f, 1.13f) + close() + moveTo(20.5f, 17.32f) + lineTo(22.0f, 18.82f) + verticalLineToRelative(-3.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.57f) + close() + moveTo(5.18f, 2.0f) + lineToRelative(1.5f, 1.5f) + horizontalLineToRelative(1.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(5.18f, 2.0f) + close() + moveTo(20.5f, 5.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.0f) + curveTo(20.55f, 2.0f, 22.0f, 3.46f, 22.0f, 5.25f) + verticalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-3.0f) + close() + moveTo(5.25f, 20.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.0f) + curveTo(2.0f, 20.55f, 3.46f, 22.0f, 5.25f, 22.0f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.0f) + close() + } + } + return _scanThumbUpOff!! + } + +private var _scanThumbUpOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanType.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanType.kt new file mode 100644 index 00000000..2d7b314c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanType.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ScanType: ImageVector + get() { + if (_scanType != null) { + return _scanType!! + } + _scanType = fluentIcon(name = "Regular.ScanType") { + fluentPath { + moveTo(5.25f, 3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-3.0f) + curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.0f) + close() + moveTo(5.25f, 20.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.0f) + curveTo(2.0f, 20.55f, 3.46f, 22.0f, 5.25f, 22.0f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.0f) + close() + moveTo(20.5f, 5.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.0f) + curveTo(20.55f, 2.0f, 22.0f, 3.46f, 22.0f, 5.25f) + verticalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-3.0f) + close() + moveTo(18.75f, 20.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.0f) + close() + moveTo(7.75f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(7.0f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + horizontalLineToRelative(2.75f) + verticalLineToRelative(9.0f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.5f) + verticalLineToRelative(-9.0f) + horizontalLineToRelative(2.75f) + lineTo(15.5f, 8.0f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 17.0f, 8.0f) + lineTo(17.0f, 6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-8.5f) + close() + } + } + return _scanType!! + } + +private var _scanType: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanTypeCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanTypeCheckmark.kt new file mode 100644 index 00000000..addef70b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScanTypeCheckmark.kt @@ -0,0 +1,88 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ScanTypeCheckmark: ImageVector + get() { + if (_scanTypeCheckmark != null) { + return _scanTypeCheckmark!! + } + _scanTypeCheckmark = fluentIcon(name = "Regular.ScanTypeCheckmark") { + fluentPath { + moveTo(5.25f, 3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-3.0f) + curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.0f) + close() + moveTo(5.25f, 20.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.0f) + curveTo(2.0f, 20.55f, 3.46f, 22.0f, 5.25f, 22.0f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.0f) + close() + moveTo(20.5f, 5.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.0f) + curveTo(20.55f, 2.0f, 22.0f, 3.46f, 22.0f, 5.25f) + verticalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-3.0f) + close() + moveTo(7.75f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(7.0f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + horizontalLineToRelative(2.75f) + verticalLineToRelative(8.2f) + curveToRelative(0.29f, -1.0f, 0.8f, -1.9f, 1.5f, -2.64f) + lineTo(12.75f, 7.5f) + horizontalLineToRelative(2.75f) + lineTo(15.5f, 8.0f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 17.0f, 8.0f) + lineTo(17.0f, 6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-8.5f) + close() + moveTo(9.75f, 16.5f) + horizontalLineToRelative(1.33f) + arcToRelative(6.55f, 6.55f, 0.0f, false, false, -0.06f, 1.5f) + lineTo(9.75f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-3.65f, 3.64f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _scanTypeCheckmark!! + } + +private var _scanTypeCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Scratchpad.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Scratchpad.kt new file mode 100644 index 00000000..492b7fe7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Scratchpad.kt @@ -0,0 +1,96 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Scratchpad: ImageVector + get() { + if (_scratchpad != null) { + return _scratchpad!! + } + _scratchpad = fluentIcon(name = "Regular.Scratchpad") { + fluentPath { + moveTo(17.78f, 2.0f) + curveTo(19.03f, 2.0f, 20.0f, 3.0f, 20.0f, 4.26f) + verticalLineToRelative(4.0f) + arcToRelative(4.76f, 4.76f, 0.0f, false, false, -1.5f, -1.6f) + verticalLineToRelative(-2.4f) + curveToRelative(0.0f, -0.4f, -0.3f, -0.74f, -0.72f, -0.74f) + lineTo(6.26f, 3.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineToRelative(-0.01f, 15.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.74f, 0.76f, 0.74f) + lineTo(13.3f, 20.51f) + curveToRelative(0.54f, 0.26f, 1.07f, 0.39f, 1.2f, 0.43f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.16f, 1.07f) + lineTo(6.26f, 22.01f) + curveTo(5.0f, 22.0f, 4.0f, 21.0f, 4.0f, 19.76f) + lineTo(4.0f, 4.26f) + curveTo(4.0f, 3.0f, 5.02f, 2.0f, 6.27f, 2.0f) + horizontalLineToRelative(11.52f) + close() + moveTo(21.25f, 13.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(0.75f) + arcToRelative(5.64f, 5.64f, 0.0f, false, true, -5.0f, 5.6f) + verticalLineToRelative(1.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(15.5f, 20.1f) + arcToRelative(5.65f, 5.65f, 0.0f, false, true, -5.0f, -5.36f) + verticalLineToRelative(-0.99f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.85f) + curveToRelative(0.0f, 2.35f, 1.9f, 4.15f, 4.25f, 4.15f) + curveToRelative(2.28f, 0.0f, 4.13f, -1.7f, 4.24f, -3.94f) + lineToRelative(0.01f, -0.21f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(16.25f, 7.0f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(4.0f) + arcToRelative(3.25f, 3.25f, 0.0f, true, true, -6.5f, 0.0f) + verticalLineToRelative(-4.0f) + curveTo(13.0f, 8.45f, 14.46f, 7.0f, 16.25f, 7.0f) + close() + moveTo(16.25f, 8.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(4.0f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, 3.5f, 0.0f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(9.67f, 13.0f) + arcToRelative(0.66f, 0.66f, 0.0f, false, false, -0.12f, 0.25f) + curveToRelative(-0.03f, 0.1f, -0.05f, 0.25f, -0.05f, 0.45f) + verticalLineToRelative(0.8f) + lineTo(8.25f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(1.52f) + close() + moveTo(8.25f, 10.0f) + lineTo(12.0f, 10.0f) + verticalLineToRelative(1.5f) + lineTo(8.25f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(13.5f, 7.0f) + curveToRelative(-0.3f, 0.26f, -0.53f, 0.48f, -0.65f, 0.65f) + curveToRelative(-0.09f, 0.12f, -0.2f, 0.3f, -0.33f, 0.54f) + lineToRelative(-0.17f, 0.31f) + horizontalLineToRelative(-4.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(5.35f) + close() + } + } + return _scratchpad!! + } + +private var _scratchpad: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScreenSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScreenSearch.kt new file mode 100644 index 00000000..cc283701 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ScreenSearch.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ScreenSearch: ImageVector + get() { + if (_screenSearch != null) { + return _screenSearch!! + } + _screenSearch = fluentIcon(name = "Regular.ScreenSearch") { + fluentPath { + moveTo(2.0f, 7.25f) + curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) + horizontalLineToRelative(13.5f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-6.28f) + lineToRelative(-1.5f, -1.5f) + horizontalLineToRelative(7.78f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(5.25f, 5.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(3.12f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -1.5f, 0.89f) + lineTo(2.0f, 7.25f) + close() + moveTo(5.5f, 20.0f) + curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) + lineToRelative(2.62f, 2.61f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.61f, -2.61f) + arcTo(4.5f, 4.5f, 0.0f, true, false, 5.5f, 20.0f) + close() + moveTo(5.5f, 18.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) + close() + } + } + return _screenSearch!! + } + +private var _screenSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Screenshot.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Screenshot.kt new file mode 100644 index 00000000..e4c2df7c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Screenshot.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Screenshot: ImageVector + get() { + if (_screenshot != null) { + return _screenshot!! + } + _screenshot = fluentIcon(name = "Regular.Screenshot") { + fluentPath { + moveTo(17.25f, 3.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 21.0f, 6.75f) + verticalLineToRelative(10.5f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 17.25f, 21.0f) + lineTo(6.75f, 21.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 3.0f, 17.25f) + lineTo(3.0f, 6.75f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 6.75f, 3.0f) + horizontalLineToRelative(10.5f) + close() + moveTo(17.25f, 4.5f) + lineTo(6.75f, 4.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(10.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(19.5f, 6.75f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + close() + moveTo(17.25f, 13.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(18.0f, 16.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(16.0f, 16.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-2.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(6.75f, 13.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(7.5f, 16.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(8.0f, 18.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + verticalLineToRelative(-2.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(8.0f, 6.0f) + horizontalLineToRelative(2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(8.0f, 7.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.41f) + verticalLineToRelative(2.34f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(6.0f, 8.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.85f, -2.0f) + horizontalLineToRelative(2.4f) + lineTo(8.0f, 6.0f) + close() + moveTo(16.0f, 6.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + verticalLineToRelative(2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(16.5f, 8.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + horizontalLineToRelative(-2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(16.0f, 6.0f) + close() + } + } + return _screenshot!! + } + +private var _screenshot: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SearchInfo.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SearchInfo.kt new file mode 100644 index 00000000..e4e9b994 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SearchInfo.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SearchInfo: ImageVector + get() { + if (_searchInfo != null) { + return _searchInfo!! + } + _searchInfo = fluentIcon(name = "Regular.SearchInfo") { + fluentPath { + moveTo(10.0f, 9.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(10.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(10.0f, 2.75f) + arcToRelative(7.25f, 7.25f, 0.0f, false, true, 5.63f, 11.82f) + lineToRelative(4.9f, 4.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-4.9f, -4.9f) + arcTo(7.25f, 7.25f, 0.0f, true, true, 10.0f, 2.75f) + close() + moveTo(10.0f, 4.25f) + arcToRelative(5.75f, 5.75f, 0.0f, true, false, 0.0f, 11.5f) + arcToRelative(5.75f, 5.75f, 0.0f, false, false, 0.0f, -11.5f) + close() + } + } + return _searchInfo!! + } + +private var _searchInfo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SearchSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SearchSquare.kt new file mode 100644 index 00000000..6043e1bf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SearchSquare.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SearchSquare: ImageVector + get() { + if (_searchSquare != null) { + return _searchSquare!! + } + _searchSquare = fluentIcon(name = "Regular.SearchSquare") { + fluentPath { + moveTo(11.0f, 15.5f) + curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) + lineToRelative(2.62f, 2.61f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.61f, -2.61f) + arcTo(4.5f, 4.5f, 0.0f, true, false, 11.0f, 15.5f) + close() + moveTo(11.0f, 14.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) + close() + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 6.25f) + close() + } + } + return _searchSquare!! + } + +private var _searchSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SearchVisual.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SearchVisual.kt new file mode 100644 index 00000000..104bb72d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SearchVisual.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SearchVisual: ImageVector + get() { + if (_searchVisual != null) { + return _searchVisual!! + } + _searchVisual = fluentIcon(name = "Regular.SearchVisual") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.0f) + close() + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.0f) + close() + moveTo(17.75f, 21.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.0f) + close() + moveTo(3.0f, 17.75f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.0f) + close() + moveTo(12.0f, 15.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) + close() + moveTo(12.0f, 13.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) + close() + moveTo(7.5f, 8.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + } + } + return _searchVisual!! + } + +private var _searchVisual: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SelectAllOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SelectAllOff.kt new file mode 100644 index 00000000..32359ff7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SelectAllOff.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SelectAllOff: ImageVector + get() { + if (_selectAllOff != null) { + return _selectAllOff!! + } + _selectAllOff = fluentIcon(name = "Regular.SelectAllOff") { + fluentPath { + moveTo(20.5f, 5.63f) + curveToRelative(0.87f, 0.3f, 1.5f, 1.14f, 1.5f, 2.12f) + verticalLineToRelative(10.0f) + curveTo(22.0f, 20.1f, 20.1f, 22.0f, 17.75f, 22.0f) + horizontalLineToRelative(-10.0f) + curveToRelative(-0.98f, 0.0f, -1.82f, -0.63f, -2.12f, -1.5f) + horizontalLineToRelative(12.12f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, -2.75f) + lineTo(20.5f, 5.63f) + close() + moveTo(17.25f, 2.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(13.0f) + curveToRelative(0.0f, 1.24f, -1.01f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-13.0f) + curveTo(3.01f, 19.5f, 2.0f, 18.49f, 2.0f, 17.25f) + verticalLineToRelative(-13.0f) + curveTo(2.0f, 3.01f, 3.0f, 2.0f, 4.25f, 2.0f) + horizontalLineToRelative(13.0f) + close() + moveTo(17.25f, 3.5f) + horizontalLineToRelative(-13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(13.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(13.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + } + } + return _selectAllOff!! + } + +private var _selectAllOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SelectAllOn.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SelectAllOn.kt new file mode 100644 index 00000000..9489aa14 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SelectAllOn.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SelectAllOn: ImageVector + get() { + if (_selectAllOn != null) { + return _selectAllOn!! + } + _selectAllOn = fluentIcon(name = "Regular.SelectAllOn") { + fluentPath { + moveTo(20.5f, 5.63f) + curveToRelative(0.87f, 0.3f, 1.5f, 1.14f, 1.5f, 2.12f) + verticalLineToRelative(10.0f) + curveTo(22.0f, 20.1f, 20.1f, 22.0f, 17.75f, 22.0f) + horizontalLineToRelative(-10.0f) + curveToRelative(-0.98f, 0.0f, -1.82f, -0.63f, -2.12f, -1.5f) + horizontalLineToRelative(12.12f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, -2.75f) + lineTo(20.5f, 5.63f) + close() + moveTo(17.25f, 2.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(13.0f) + curveToRelative(0.0f, 1.24f, -1.01f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-13.0f) + curveTo(3.01f, 19.5f, 2.0f, 18.49f, 2.0f, 17.25f) + verticalLineToRelative(-13.0f) + curveTo(2.0f, 3.01f, 3.0f, 2.0f, 4.25f, 2.0f) + horizontalLineToRelative(13.0f) + close() + moveTo(17.25f, 3.5f) + horizontalLineToRelative(-13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(13.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(13.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(9.58f, 11.36f) + lineTo(13.47f, 7.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-4.5f, 4.5f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.29f, -1.06f, 0.0f) + lineToRelative(-0.07f, -0.08f) + lineToRelative(-1.5f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, -0.98f) + lineToRelative(0.07f, 0.08f) + lineToRelative(0.98f, 1.3f) + lineToRelative(3.89f, -3.88f) + lineToRelative(-3.89f, 3.89f) + close() + } + } + return _selectAllOn!! + } + +private var _selectAllOn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SelectObject.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SelectObject.kt new file mode 100644 index 00000000..7cd3947b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SelectObject.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SelectObject: ImageVector + get() { + if (_selectObject != null) { + return _selectObject!! + } + _selectObject = fluentIcon(name = "Regular.SelectObject") { + fluentPath { + moveTo(7.0f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(8.0f, 4.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(4.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-6.5f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 4.75f, 8.0f) + close() + moveTo(19.25f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(8.75f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.5f) + close() + moveTo(5.0f, 21.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) + close() + moveTo(21.0f, 5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(19.0f, 21.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) + close() + } + } + return _selectObject!! + } + +private var _selectObject: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SelectObjectSkew.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SelectObjectSkew.kt new file mode 100644 index 00000000..617f70a2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SelectObjectSkew.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SelectObjectSkew: ImageVector + get() { + if (_selectObjectSkew != null) { + return _selectObjectSkew!! + } + _selectObjectSkew = fluentIcon(name = "Regular.SelectObjectSkew") { + fluentPath { + moveTo(18.88f, 6.66f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.33f, 0.33f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, -1.33f, -0.33f) + close() + moveTo(14.0f, 19.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -4.0f, 0.0f) + close() + moveTo(4.0f, 21.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, 4.0f) + close() + moveTo(6.88f, 6.66f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 3.0f, -0.97f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, -3.0f, 0.97f) + close() + moveTo(6.48f, 7.59f) + lineTo(4.08f, 16.0f) + curveToRelative(0.52f, 0.01f, 1.01f, 0.16f, 1.44f, 0.41f) + lineTo(7.92f, 8.0f) + arcToRelative(2.98f, 2.98f, 0.0f, false, true, -1.44f, -0.41f) + close() + moveTo(17.1f, 5.75f) + horizontalLineToRelative(-6.18f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(6.18f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(13.1f, 19.75f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(6.91f, 18.25f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(6.18f) + close() + moveTo(16.08f, 16.0f) + lineToRelative(2.4f, -8.41f) + curveToRelative(0.43f, 0.25f, 0.92f, 0.4f, 1.44f, 0.4f) + lineToRelative(-2.4f, 8.42f) + curveToRelative(-0.43f, -0.25f, -0.92f, -0.4f, -1.44f, -0.4f) + close() + } + } + return _selectObjectSkew!! + } + +private var _selectObjectSkew: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SelectObjectSkewDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SelectObjectSkewDismiss.kt new file mode 100644 index 00000000..47b7d836 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SelectObjectSkewDismiss.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SelectObjectSkewDismiss: ImageVector + get() { + if (_selectObjectSkewDismiss != null) { + return _selectObjectSkewDismiss!! + } + _selectObjectSkewDismiss = fluentIcon(name = "Regular.SelectObjectSkewDismiss") { + fluentPath { + moveTo(18.88f, 6.66f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.33f, 0.33f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, -1.33f, -0.33f) + close() + moveTo(2.0f, 19.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -4.0f, 0.0f) + close() + moveTo(6.88f, 6.66f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 3.0f, -0.97f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, -3.0f, 0.97f) + close() + moveTo(4.08f, 16.0f) + lineToRelative(2.4f, -8.41f) + curveToRelative(0.43f, 0.25f, 0.92f, 0.4f, 1.44f, 0.4f) + lineToRelative(-2.4f, 8.42f) + curveToRelative(-0.43f, -0.25f, -0.92f, -0.4f, -1.44f, -0.4f) + close() + moveTo(17.09f, 5.75f) + horizontalLineToRelative(-6.18f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(6.18f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(11.4f, 19.75f) + curveToRelative(-0.18f, -0.48f, -0.3f, -0.98f, -0.36f, -1.5f) + lineTo(6.91f, 18.25f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(4.49f) + close() + moveTo(19.92f, 8.0f) + lineToRelative(-0.9f, 3.18f) + arcTo(6.52f, 6.52f, 0.0f, false, false, 17.5f, 11.0f) + lineToRelative(0.97f, -3.41f) + curveToRelative(0.43f, 0.25f, 0.92f, 0.4f, 1.44f, 0.4f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-1.64f, -1.65f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.65f, 1.64f) + lineToRelative(-1.65f, -1.64f) + close() + } + } + return _selectObjectSkewDismiss!! + } + +private var _selectObjectSkewDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SelectObjectSkewEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SelectObjectSkewEdit.kt new file mode 100644 index 00000000..e51d3222 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SelectObjectSkewEdit.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SelectObjectSkewEdit: ImageVector + get() { + if (_selectObjectSkewEdit != null) { + return _selectObjectSkewEdit!! + } + _selectObjectSkewEdit = fluentIcon(name = "Regular.SelectObjectSkewEdit") { + fluentPath { + moveTo(18.88f, 6.66f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.33f, 0.33f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, -1.33f, -0.33f) + close() + moveTo(2.0f, 19.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -4.0f, 0.0f) + close() + moveTo(6.88f, 6.66f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 3.0f, -0.97f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, -3.0f, 0.97f) + close() + moveTo(4.08f, 16.0f) + lineToRelative(2.4f, -8.41f) + curveToRelative(0.43f, 0.25f, 0.92f, 0.4f, 1.44f, 0.4f) + lineToRelative(-2.4f, 8.42f) + curveToRelative(-0.43f, -0.25f, -0.92f, -0.4f, -1.44f, -0.4f) + close() + moveTo(17.09f, 5.75f) + horizontalLineToRelative(-6.18f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(6.18f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(11.52f, 19.58f) + curveToRelative(0.12f, -0.49f, 0.34f, -0.94f, 0.64f, -1.33f) + lineTo(6.9f, 18.25f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(4.57f) + lineToRelative(0.04f, -0.17f) + close() + moveTo(19.92f, 8.0f) + lineToRelative(-1.0f, 3.54f) + arcToRelative(3.3f, 3.3f, 0.0f, false, false, -0.53f, 0.42f) + lineToRelative(-1.62f, 1.63f) + lineToRelative(1.71f, -6.0f) + curveToRelative(0.43f, 0.25f, 0.92f, 0.4f, 1.44f, 0.4f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _selectObjectSkewEdit!! + } + +private var _selectObjectSkewEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SendClock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SendClock.kt new file mode 100644 index 00000000..dfcae629 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SendClock.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SendClock: ImageVector + get() { + if (_sendClock != null) { + return _sendClock!! + } + _sendClock = fluentIcon(name = "Regular.SendClock") { + fluentPath { + moveTo(5.7f, 12.0f) + lineTo(2.3f, 3.27f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.94f, -0.98f) + lineToRelative(0.1f, 0.04f) + lineToRelative(18.0f, 9.0f) + curveToRelative(0.44f, 0.22f, 0.52f, 0.77f, 0.26f, 1.12f) + arcTo(6.47f, 6.47f, 0.0f, false, false, 17.33f, 11.0f) + lineTo(4.4f, 4.54f) + lineToRelative(2.61f, 6.7f) + lineToRelative(6.63f, 0.01f) + curveToRelative(0.35f, 0.0f, 0.64f, 0.24f, 0.72f, 0.56f) + curveToRelative(-0.47f, 0.26f, -0.9f, 0.57f, -1.3f, 0.94f) + horizontalLineTo(7.01f) + lineToRelative(-2.6f, 6.7f) + lineToRelative(6.74f, -3.37f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -0.14f, 1.75f) + lineToRelative(-7.68f, 3.84f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -0.85f) + lineToRelative(0.03f, -0.1f) + lineTo(5.7f, 12.0f) + close() + } + fluentPath { + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(17.5f, 17.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(17.0f, 18.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + verticalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + verticalLineToRelative(2.5f) + close() + } + } + return _sendClock!! + } + +private var _sendClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SendCopy.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SendCopy.kt new file mode 100644 index 00000000..212bc4bc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SendCopy.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SendCopy: ImageVector + get() { + if (_sendCopy != null) { + return _sendCopy!! + } + _sendCopy = fluentIcon(name = "Regular.SendCopy") { + fluentPath { + moveTo(19.75f, 11.5f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(5.0f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 15.97f, 22.0f) + lineTo(8.25f, 22.0f) + curveToRelative(-0.98f, 0.0f, -1.81f, -0.63f, -2.12f, -1.5f) + lineTo(15.93f, 20.5f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 19.0f, 17.42f) + lineToRelative(0.01f, -0.18f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(17.25f, 9.5f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(7.0f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + horizontalLineToRelative(-10.0f) + curveToRelative(-1.2f, 0.0f, -2.17f, -0.93f, -2.24f, -2.1f) + lineToRelative(-0.01f, -0.15f) + verticalLineToRelative(-7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(7.1f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(10.0f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + verticalLineToRelative(-7.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(6.22f, 6.22f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -0.07f) + lineToRelative(0.09f, 0.07f) + lineToRelative(4.0f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-2.72f, -2.72f) + verticalLineToRelative(9.7f) + curveToRelative(0.0f, 0.37f, -0.28f, 0.69f, -0.65f, 0.74f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-9.7f) + lineTo(7.28f, 7.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(4.0f, -4.0f) + lineToRelative(-4.0f, 4.0f) + close() + } + } + return _sendCopy!! + } + +private var _sendCopy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SerialPort.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SerialPort.kt new file mode 100644 index 00000000..299e591c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SerialPort.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SerialPort: ImageVector + get() { + if (_serialPort != null) { + return _serialPort!! + } + _serialPort = fluentIcon(name = "Regular.SerialPort") { + fluentPath { + moveTo(7.0f, 11.5f) + arcTo(0.75f, 0.75f, 0.0f, true, false, 7.0f, 10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(10.25f, 10.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(8.25f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(11.5f, 13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(13.25f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(16.5f, 13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(12.0f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(15.25f, 10.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(17.0f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(4.9f, 7.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.67f, 3.39f) + lineToRelative(1.07f, 4.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 5.98f, 17.0f) + horizontalLineToRelative(12.04f) + curveToRelative(1.27f, 0.0f, 2.38f, -0.87f, 2.67f, -2.11f) + lineToRelative(1.08f, -4.5f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.68f, -3.4f) + lineTo(4.91f, 6.99f) + close() + moveTo(3.7f, 10.04f) + curveToRelative(-0.2f, -0.79f, 0.4f, -1.54f, 1.2f, -1.54f) + horizontalLineToRelative(14.2f) + curveToRelative(0.8f, 0.0f, 1.4f, 0.75f, 1.2f, 1.54f) + lineToRelative(-1.07f, 4.5f) + curveToRelative(-0.13f, 0.56f, -0.63f, 0.96f, -1.21f, 0.96f) + lineTo(5.98f, 15.5f) + curveToRelative(-0.58f, 0.0f, -1.08f, -0.4f, -1.22f, -0.96f) + lineToRelative(-1.07f, -4.5f) + close() + } + } + return _serialPort!! + } + +private var _serialPort: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Server.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Server.kt new file mode 100644 index 00000000..6567c261 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Server.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Server: ImageVector + get() { + if (_server != null) { + return _server!! + } + _server = fluentIcon(name = "Regular.Server") { + fluentPath { + moveTo(9.25f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.5f) + close() + moveTo(8.5f, 17.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(9.25f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.5f) + close() + moveTo(6.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f) + horizontalLineToRelative(6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + verticalLineToRelative(14.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + lineTo(9.0f, 22.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f) + lineTo(6.0f, 5.0f) + close() + moveTo(9.0f, 3.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(14.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(6.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + lineTo(16.5f, 5.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(9.0f, 3.5f) + close() + } + } + return _server!! + } + +private var _server: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ServiceBell.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ServiceBell.kt new file mode 100644 index 00000000..1e1bf8d3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ServiceBell.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ServiceBell: ImageVector + get() { + if (_serviceBell != null) { + return _serviceBell!! + } + _serviceBell = fluentIcon(name = "Regular.ServiceBell") { + fluentPath { + moveTo(11.75f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + arcToRelative(4.4f, 4.4f, 0.0f, false, true, 3.4f, 1.76f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.24f, -0.86f) + arcToRelative(5.9f, 5.9f, 0.0f, false, false, -4.64f, -2.4f) + close() + moveTo(9.5f, 4.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + verticalLineToRelative(0.88f) + arcToRelative(8.25f, 8.25f, 0.0f, false, true, 5.75f, 7.87f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + curveToRelative(0.0f, -3.68f, 2.42f, -6.8f, 5.75f, -7.86f) + lineTo(9.5f, 4.5f) + close() + moveTo(13.0f, 4.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(0.56f) + arcToRelative(8.33f, 8.33f, 0.0f, false, true, 2.0f, 0.0f) + lineTo(13.0f, 4.5f) + close() + moveTo(5.3f, 12.5f) + horizontalLineToRelative(13.4f) + arcToRelative(6.73f, 6.73f, 0.0f, false, false, -6.68f, -6.0f) + arcToRelative(6.77f, 6.77f, 0.0f, false, false, -6.73f, 6.0f) + close() + moveTo(4.0f, 15.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, 4.0f) + horizontalLineToRelative(16.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) + lineTo(4.0f, 15.0f) + close() + moveTo(3.5f, 17.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(16.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(4.0f, 17.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + close() + } + } + return _serviceBell!! + } + +private var _serviceBell: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SettingsChat.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SettingsChat.kt new file mode 100644 index 00000000..615020b0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SettingsChat.kt @@ -0,0 +1,105 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SettingsChat: ImageVector + get() { + if (_settingsChat != null) { + return _settingsChat!! + } + _settingsChat = fluentIcon(name = "Regular.SettingsChat") { + fluentPath { + moveTo(12.01f, 2.25f) + curveToRelative(0.74f, 0.0f, 1.47f, 0.1f, 2.18f, 0.25f) + curveToRelative(0.32f, 0.07f, 0.55f, 0.33f, 0.59f, 0.65f) + lineToRelative(0.17f, 1.53f) + arcToRelative(1.38f, 1.38f, 0.0f, false, false, 1.92f, 1.11f) + lineToRelative(1.4f, -0.61f) + curveToRelative(0.3f, -0.13f, 0.64f, -0.06f, 0.85f, 0.17f) + arcToRelative(9.8f, 9.8f, 0.0f, false, true, 2.2f, 3.8f) + curveToRelative(0.1f, 0.3f, 0.0f, 0.63f, -0.26f, 0.82f) + lineToRelative(-1.24f, 0.92f) + curveToRelative(-0.16f, 0.1f, -0.28f, 0.25f, -0.37f, 0.4f) + curveToRelative(-0.49f, -0.15f, -1.0f, -0.24f, -1.52f, -0.28f) + curveToRelative(0.19f, -0.52f, 0.53f, -1.0f, 1.0f, -1.33f) + lineToRelative(0.8f, -0.59f) + arcToRelative(8.3f, 8.3f, 0.0f, false, false, -1.35f, -2.32f) + lineToRelative(-0.9f, 0.4f) + arcToRelative(2.88f, 2.88f, 0.0f, false, true, -4.02f, -2.32f) + lineToRelative(-0.11f, -0.98f) + arcTo(9.0f, 9.0f, 0.0f, false, false, 12.0f, 3.75f) + curveToRelative(-0.45f, 0.0f, -0.9f, 0.04f, -1.35f, 0.12f) + lineToRelative(-0.11f, 0.97f) + arcToRelative(2.89f, 2.89f, 0.0f, false, true, -4.02f, 2.33f) + lineToRelative(-0.9f, -0.4f) + arcTo(8.3f, 8.3f, 0.0f, false, false, 4.28f, 9.1f) + lineToRelative(0.8f, 0.59f) + arcToRelative(2.88f, 2.88f, 0.0f, false, true, 0.0f, 4.64f) + lineToRelative(-0.8f, 0.59f) + arcToRelative(8.3f, 8.3f, 0.0f, false, false, 1.35f, 2.32f) + lineToRelative(0.9f, -0.4f) + arcToRelative(2.88f, 2.88f, 0.0f, false, true, 4.02f, 2.32f) + lineToRelative(0.1f, 0.99f) + curveToRelative(0.32f, 0.05f, 0.64f, 0.08f, 0.95f, 0.1f) + lineToRelative(0.02f, 0.02f) + lineToRelative(-0.45f, 1.45f) + arcToRelative(9.53f, 9.53f, 0.0f, false, true, -1.37f, -0.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.57f, -0.65f) + lineToRelative(-0.17f, -1.52f) + arcToRelative(1.38f, 1.38f, 0.0f, false, false, -1.93f, -1.11f) + lineToRelative(-1.4f, 0.62f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.85f, -0.18f) + arcToRelative(9.8f, 9.8f, 0.0f, false, true, -2.2f, -3.8f) + curveToRelative(-0.1f, -0.3f, 0.0f, -0.63f, 0.27f, -0.82f) + lineToRelative(1.24f, -0.92f) + arcToRelative(1.38f, 1.38f, 0.0f, false, false, 0.0f, -2.22f) + lineToRelative(-1.24f, -0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.28f, -0.82f) + arcToRelative(9.8f, 9.8f, 0.0f, false, true, 2.2f, -3.8f) + curveToRelative(0.23f, -0.23f, 0.57f, -0.3f, 0.86f, -0.17f) + lineToRelative(1.4f, 0.62f) + curveToRelative(0.4f, 0.17f, 0.86f, 0.15f, 1.25f, -0.08f) + curveToRelative(0.38f, -0.22f, 0.63f, -0.6f, 0.68f, -1.04f) + lineToRelative(0.17f, -1.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.58f, -0.65f) + curveToRelative(0.72f, -0.16f, 1.45f, -0.24f, 2.2f, -0.25f) + close() + moveTo(17.75f, 12.01f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -2.92f, 10.3f) + lineToRelative(-2.18f, 0.67f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.63f, -0.62f) + lineToRelative(0.67f, -2.2f) + arcTo(5.5f, 5.5f, 0.0f, false, true, 17.75f, 12.0f) + close() + moveTo(17.5f, 18.01f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.8f) + curveToRelative(0.1f, 0.12f, 0.24f, 0.2f, 0.4f, 0.2f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) + close() + moveTo(15.5f, 17.01f) + horizontalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.36f, 0.83f) + curveToRelative(0.09f, 0.1f, 0.22f, 0.16f, 0.36f, 0.16f) + close() + moveTo(12.0f, 8.24f) + curveToRelative(1.82f, 0.0f, 3.33f, 1.3f, 3.68f, 3.0f) + curveToRelative(-0.5f, 0.16f, -0.99f, 0.36f, -1.43f, 0.62f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, -2.38f, 2.38f) + curveToRelative(-0.26f, 0.44f, -0.46f, 0.92f, -0.61f, 1.43f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 12.0f, 8.25f) + close() + } + } + return _settingsChat!! + } + +private var _settingsChat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShapeExclude.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShapeExclude.kt new file mode 100644 index 00000000..7e64d354 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShapeExclude.kt @@ -0,0 +1,117 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShapeExclude: ImageVector + get() { + if (_shapeExclude != null) { + return _shapeExclude!! + } + _shapeExclude = fluentIcon(name = "Regular.ShapeExclude") { + fluentPath { + moveTo(2.0f, 5.25f) + curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) + horizontalLineToRelative(8.0f) + arcToRelative(3.3f, 3.3f, 0.0f, false, true, 1.82f, 0.56f) + arcToRelative(3.27f, 3.27f, 0.0f, false, true, 1.42f, 2.4f) + lineToRelative(0.01f, 0.29f) + lineTo(16.5f, 7.5f) + horizontalLineToRelative(2.25f) + arcTo(3.24f, 3.24f, 0.0f, false, true, 22.0f, 10.75f) + verticalLineToRelative(8.0f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-8.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.25f, -3.25f) + lineTo(7.5f, 16.5f) + lineTo(5.25f, 16.5f) + arcToRelative(3.28f, 3.28f, 0.0f, false, true, -1.7f, -0.48f) + horizontalLineToRelative(-0.02f) + arcToRelative(3.27f, 3.27f, 0.0f, false, true, -1.52f, -2.47f) + lineToRelative(-0.01f, -0.3f) + verticalLineToRelative(-8.0f) + close() + moveTo(3.5f, 8.06f) + verticalLineToRelative(1.88f) + lineTo(9.94f, 3.5f) + lineTo(8.06f, 3.5f) + lineTo(3.5f, 8.06f) + close() + moveTo(5.94f, 3.5f) + horizontalLineToRelative(-0.69f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(0.69f) + lineTo(5.94f, 3.5f) + close() + moveTo(12.06f, 3.5f) + lineTo(3.5f, 12.06f) + verticalLineToRelative(1.19f) + curveToRelative(0.0f, 0.2f, 0.04f, 0.4f, 0.1f, 0.59f) + lineTo(7.64f, 9.8f) + arcTo(3.26f, 3.26f, 0.0f, false, true, 9.8f, 7.64f) + lineToRelative(4.04f, -4.04f) + curveToRelative(-0.19f, -0.06f, -0.38f, -0.1f, -0.59f, -0.1f) + horizontalLineToRelative(-1.19f) + close() + moveTo(14.9f, 4.66f) + lineTo(12.06f, 7.5f) + horizontalLineToRelative(1.88f) + lineTo(15.0f, 6.44f) + lineTo(15.0f, 5.25f) + curveToRelative(0.0f, -0.2f, -0.04f, -0.4f, -0.1f, -0.59f) + close() + moveTo(7.5f, 12.06f) + lineTo(4.66f, 14.9f) + curveToRelative(0.19f, 0.06f, 0.38f, 0.1f, 0.59f, 0.1f) + horizontalLineToRelative(1.19f) + lineToRelative(1.06f, -1.06f) + verticalLineToRelative(-1.88f) + close() + moveTo(9.0f, 18.56f) + verticalLineToRelative(0.19f) + curveToRelative(0.0f, 0.47f, 0.18f, 0.9f, 0.48f, 1.2f) + lineToRelative(3.46f, -3.45f) + horizontalLineToRelative(-1.88f) + lineTo(9.0f, 18.56f) + close() + moveTo(16.5f, 12.94f) + lineTo(19.96f, 9.48f) + curveToRelative(-0.32f, -0.3f, -0.74f, -0.48f, -1.21f, -0.48f) + horizontalLineToRelative(-0.19f) + lineToRelative(-2.06f, 2.06f) + verticalLineToRelative(1.88f) + close() + moveTo(20.5f, 11.06f) + lineTo(11.06f, 20.5f) + horizontalLineToRelative(1.88f) + lineToRelative(7.56f, -7.56f) + verticalLineToRelative(-1.88f) + close() + moveTo(20.5f, 15.06f) + lineTo(15.06f, 20.5f) + horizontalLineToRelative(1.88f) + lineToRelative(3.56f, -3.56f) + verticalLineToRelative(-1.88f) + close() + moveTo(20.47f, 19.09f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.38f, 1.38f) + lineToRelative(1.38f, -1.38f) + close() + moveTo(9.0f, 10.75f) + lineTo(9.0f, 15.0f) + horizontalLineToRelative(4.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(15.0f, 9.0f) + horizontalLineToRelative(-4.25f) + curveTo(9.78f, 9.0f, 9.0f, 9.78f, 9.0f, 10.75f) + close() + } + } + return _shapeExclude!! + } + +private var _shapeExclude: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShapeIntersect.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShapeIntersect.kt new file mode 100644 index 00000000..8b6a785d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShapeIntersect.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShapeIntersect: ImageVector + get() { + if (_shapeIntersect != null) { + return _shapeIntersect!! + } + _shapeIntersect = fluentIcon(name = "Regular.ShapeIntersect") { + fluentPath { + moveTo(2.0f, 5.25f) + curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) + horizontalLineToRelative(8.0f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + lineTo(16.5f, 7.5f) + horizontalLineToRelative(2.25f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(8.0f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-8.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.25f, -3.25f) + lineTo(7.5f, 16.5f) + lineTo(5.25f, 16.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 13.25f) + verticalLineToRelative(-8.0f) + close() + moveTo(15.0f, 5.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-8.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(8.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(7.5f, 15.0f) + verticalLineToRelative(-4.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.25f, -3.25f) + lineTo(15.0f, 7.5f) + lineTo(15.0f, 5.25f) + close() + moveTo(9.0f, 14.56f) + lineTo(9.0f, 15.0f) + horizontalLineToRelative(1.44f) + lineTo(15.0f, 10.44f) + lineTo(15.0f, 9.0f) + horizontalLineToRelative(-0.44f) + lineTo(9.0f, 14.56f) + close() + moveTo(12.44f, 9.0f) + horizontalLineToRelative(-1.69f) + lineToRelative(-0.2f, 0.01f) + lineTo(9.0f, 10.55f) + lineToRelative(-0.01f, 0.2f) + verticalLineToRelative(1.69f) + lineTo(12.44f, 9.0f) + close() + moveTo(16.5f, 9.0f) + verticalLineToRelative(4.25f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(9.0f, 16.5f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(8.0f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-8.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(16.5f, 9.0f) + close() + moveTo(12.56f, 15.0f) + horizontalLineToRelative(0.69f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-0.69f) + lineTo(12.56f, 15.0f) + close() + } + } + return _shapeIntersect!! + } + +private var _shapeIntersect: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShapeSubtract.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShapeSubtract.kt new file mode 100644 index 00000000..1adb0402 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShapeSubtract.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShapeSubtract: ImageVector + get() { + if (_shapeSubtract != null) { + return _shapeSubtract!! + } + _shapeSubtract = fluentIcon(name = "Regular.ShapeSubtract") { + fluentPath { + moveTo(5.25f, 2.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) + verticalLineToRelative(8.0f) + arcToRelative(3.3f, 3.3f, 0.0f, false, false, 0.56f, 1.82f) + arcToRelative(3.27f, 3.27f, 0.0f, false, false, 2.4f, 1.42f) + lineToRelative(0.29f, 0.01f) + lineTo(7.5f, 16.5f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(8.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-8.0f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + lineTo(16.5f, 7.5f) + lineTo(16.5f, 5.25f) + arcToRelative(3.28f, 3.28f, 0.0f, false, false, -1.54f, -2.77f) + arcToRelative(3.29f, 3.29f, 0.0f, false, false, -1.7f, -0.48f) + lineTo(5.24f, 2.0f) + close() + moveTo(5.94f, 3.5f) + lineTo(3.5f, 5.94f) + verticalLineToRelative(-0.69f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(0.69f) + close() + moveTo(3.5f, 8.06f) + lineTo(8.06f, 3.5f) + horizontalLineToRelative(1.88f) + lineTo(3.5f, 9.94f) + lineTo(3.5f, 8.06f) + close() + moveTo(12.06f, 3.5f) + horizontalLineToRelative(1.19f) + curveToRelative(0.2f, 0.0f, 0.4f, 0.04f, 0.59f, 0.1f) + lineTo(9.8f, 7.64f) + arcTo(3.26f, 3.26f, 0.0f, false, false, 7.64f, 9.8f) + lineTo(3.6f, 13.84f) + curveToRelative(-0.06f, -0.19f, -0.1f, -0.38f, -0.1f, -0.59f) + verticalLineToRelative(-1.19f) + lineToRelative(8.56f, -8.56f) + close() + moveTo(14.9f, 4.66f) + curveToRelative(0.06f, 0.19f, 0.1f, 0.38f, 0.1f, 0.59f) + verticalLineToRelative(1.19f) + lineTo(13.94f, 7.5f) + horizontalLineToRelative(-1.88f) + lineToRelative(2.84f, -2.84f) + close() + moveTo(7.5f, 12.06f) + verticalLineToRelative(1.88f) + lineTo(6.44f, 15.0f) + lineTo(5.25f, 15.0f) + curveToRelative(-0.2f, 0.0f, -0.4f, -0.04f, -0.59f, -0.1f) + lineToRelative(2.84f, -2.84f) + close() + moveTo(9.0f, 10.75f) + curveTo(9.0f, 9.78f, 9.78f, 9.0f, 10.75f, 9.0f) + horizontalLineToRelative(8.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(8.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-8.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-8.0f) + close() + } + } + return _shapeSubtract!! + } + +private var _shapeSubtract: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShapeUnion.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShapeUnion.kt new file mode 100644 index 00000000..2437676e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShapeUnion.kt @@ -0,0 +1,101 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShapeUnion: ImageVector + get() { + if (_shapeUnion != null) { + return _shapeUnion!! + } + _shapeUnion = fluentIcon(name = "Regular.ShapeUnion") { + fluentPath { + moveTo(5.25f, 2.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) + verticalLineToRelative(8.0f) + arcToRelative(3.3f, 3.3f, 0.0f, false, false, 0.56f, 1.82f) + arcToRelative(3.27f, 3.27f, 0.0f, false, false, 2.4f, 1.42f) + lineToRelative(0.29f, 0.01f) + lineTo(7.5f, 16.5f) + verticalLineToRelative(2.25f) + arcTo(3.24f, 3.24f, 0.0f, false, false, 10.75f, 22.0f) + horizontalLineToRelative(8.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-8.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.25f, -3.25f) + lineTo(16.5f, 7.5f) + lineTo(16.5f, 5.25f) + arcToRelative(3.28f, 3.28f, 0.0f, false, false, -1.54f, -2.77f) + arcToRelative(3.29f, 3.29f, 0.0f, false, false, -1.7f, -0.48f) + lineTo(5.24f, 2.0f) + close() + moveTo(5.94f, 3.5f) + lineTo(3.5f, 5.94f) + verticalLineToRelative(-0.69f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(0.69f) + close() + moveTo(3.5f, 8.06f) + lineTo(8.06f, 3.5f) + horizontalLineToRelative(1.88f) + lineTo(3.5f, 9.94f) + lineTo(3.5f, 8.06f) + close() + moveTo(12.06f, 3.5f) + horizontalLineToRelative(1.19f) + curveToRelative(0.2f, 0.0f, 0.4f, 0.04f, 0.59f, 0.1f) + lineTo(3.6f, 13.84f) + curveToRelative(-0.06f, -0.19f, -0.1f, -0.38f, -0.1f, -0.59f) + verticalLineToRelative(-1.19f) + lineToRelative(8.56f, -8.56f) + close() + moveTo(14.9f, 4.66f) + curveToRelative(0.06f, 0.19f, 0.1f, 0.38f, 0.1f, 0.59f) + verticalLineToRelative(1.19f) + lineTo(6.44f, 15.0f) + lineTo(5.25f, 15.0f) + curveToRelative(-0.2f, 0.0f, -0.4f, -0.04f, -0.59f, -0.1f) + lineTo(14.9f, 4.66f) + close() + moveTo(15.0f, 8.56f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, 0.44f) + horizontalLineToRelative(0.94f) + lineTo(9.0f, 16.44f) + verticalLineToRelative(-0.94f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.44f, -0.5f) + lineTo(15.0f, 8.56f) + close() + moveTo(18.56f, 9.0f) + horizontalLineToRelative(0.19f) + curveToRelative(0.47f, 0.0f, 0.9f, 0.18f, 1.2f, 0.48f) + lineTo(9.49f, 19.96f) + curveToRelative(-0.3f, -0.32f, -0.48f, -0.74f, -0.48f, -1.21f) + verticalLineToRelative(-0.19f) + lineTo(18.56f, 9.0f) + close() + moveTo(20.5f, 11.06f) + verticalLineToRelative(1.88f) + lineToRelative(-7.56f, 7.56f) + horizontalLineToRelative(-1.88f) + lineToRelative(9.44f, -9.44f) + close() + moveTo(20.5f, 15.06f) + verticalLineToRelative(1.88f) + lineToRelative(-3.56f, 3.56f) + horizontalLineToRelative(-1.88f) + lineToRelative(5.44f, -5.44f) + close() + moveTo(20.47f, 19.09f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.38f, 1.38f) + lineToRelative(1.38f, -1.38f) + close() + } + } + return _shapeUnion!! + } + +private var _shapeUnion: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Shapes.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Shapes.kt new file mode 100644 index 00000000..bd1fa863 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Shapes.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Shapes: ImageVector + get() { + if (_shapes != null) { + return _shapes!! + } + _shapes = fluentIcon(name = "Regular.Shapes") { + fluentPath { + moveTo(8.75f, 3.5f) + arcTo(5.25f, 5.25f, 0.0f, false, false, 8.0f, 13.95f) + verticalLineToRelative(1.5f) + arcTo(6.75f, 6.75f, 0.0f, true, true, 15.46f, 8.0f) + horizontalLineToRelative(-1.51f) + arcToRelative(5.25f, 5.25f, 0.0f, false, false, -5.2f, -4.5f) + close() + moveTo(12.25f, 9.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 9.0f, 12.25f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(6.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-6.5f) + curveTo(22.0f, 10.45f, 20.54f, 9.0f, 18.75f, 9.0f) + horizontalLineToRelative(-6.5f) + close() + moveTo(10.5f, 12.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(6.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-6.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-6.5f) + close() + } + } + return _shapes!! + } + +private var _shapes: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShareAndroid.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShareAndroid.kt new file mode 100644 index 00000000..31a90728 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShareAndroid.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShareAndroid: ImageVector + get() { + if (_shareAndroid != null) { + return _shareAndroid!! + } + _shareAndroid = fluentIcon(name = "Regular.ShareAndroid") { + fluentPath { + moveTo(17.0f, 2.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, -2.6f, 5.85f) + lineToRelative(-4.56f, 2.6f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 0.0f, 2.1f) + lineToRelative(4.56f, 2.6f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 20.5f, 18.0f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, -6.84f, -1.05f) + lineToRelative(-4.56f, -2.6f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 3.0f, 12.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 6.1f, -2.35f) + lineToRelative(4.56f, -2.6f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 17.0f, 2.5f) + close() + moveTo(17.0f, 16.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, -4.0f) + close() + moveTo(6.5f, 10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, -4.0f) + close() + moveTo(17.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, -4.0f) + close() + } + } + return _shareAndroid!! + } + +private var _shareAndroid: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShareCloseTray.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShareCloseTray.kt new file mode 100644 index 00000000..9cb498de --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShareCloseTray.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShareCloseTray: ImageVector + get() { + if (_shareCloseTray != null) { + return _shareCloseTray!! + } + _shareCloseTray = fluentIcon(name = "Regular.ShareCloseTray") { + fluentPath { + moveTo(2.0f, 17.75f) + curveTo(2.0f, 18.99f, 3.0f, 20.0f, 4.25f, 20.0f) + horizontalLineToRelative(15.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(22.0f, 6.25f) + curveTo(22.0f, 5.01f, 21.0f, 4.0f, 19.75f, 4.0f) + lineTo(4.25f, 4.0f) + curveTo(3.01f, 4.0f, 2.0f, 5.0f, 2.0f, 6.25f) + verticalLineToRelative(11.5f) + close() + moveTo(4.25f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(3.5f, 6.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(15.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(4.25f, 18.5f) + close() + moveTo(12.0f, 16.75f) + curveToRelative(0.2f, 0.0f, 0.39f, -0.07f, 0.53f, -0.22f) + lineToRelative(3.25f, -3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-1.97f, 1.97f) + lineTo(12.75f, 7.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(6.44f) + lineToRelative(-1.97f, -1.97f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(3.25f, 3.25f) + curveToRelative(0.14f, 0.15f, 0.33f, 0.22f, 0.53f, 0.22f) + close() + } + } + return _shareCloseTray!! + } + +private var _shareCloseTray: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShareIos.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShareIos.kt new file mode 100644 index 00000000..fb11e23c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShareIos.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShareIos: ImageVector + get() { + if (_shareIos != null) { + return _shareIos!! + } + _shareIos = fluentIcon(name = "Regular.ShareIos") { + fluentPath { + moveTo(19.75f, 11.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.75f, 0.65f) + verticalLineToRelative(7.1f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 17.44f, 22.0f) + horizontalLineTo(6.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.06f) + verticalLineToRelative(-7.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.49f, -0.1f) + verticalLineToRelative(7.1f) + curveToRelative(0.0f, 0.92f, 0.71f, 1.67f, 1.61f, 1.75f) + horizontalLineToRelative(11.14f) + curveToRelative(0.92f, 0.0f, 1.68f, -0.7f, 1.75f, -1.6f) + verticalLineToRelative(-7.15f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(6.22f, 7.22f) + lineToRelative(5.0f, -5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -0.07f) + lineToRelative(0.09f, 0.07f) + lineToRelative(5.0f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-3.72f, -3.72f) + verticalLineToRelative(11.7f) + curveToRelative(0.0f, 0.37f, -0.28f, 0.69f, -0.65f, 0.74f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) + lineToRelative(-0.01f, -0.1f) + verticalLineTo(4.55f) + lineTo(7.28f, 8.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(5.0f, -5.0f) + lineToRelative(-5.0f, 5.0f) + close() + } + } + return _shareIos!! + } + +private var _shareIos: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShareScreenPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShareScreenPerson.kt new file mode 100644 index 00000000..071ff35e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShareScreenPerson.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShareScreenPerson: ImageVector + get() { + if (_shareScreenPerson != null) { + return _shareScreenPerson!! + } + _shareScreenPerson = fluentIcon(name = "Regular.ShareScreenPerson") { + fluentPath { + moveTo(5.25f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) + lineTo(13.0f, 20.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, -0.13f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.46f, 0.11f, -0.89f, 0.3f, -1.27f) + lineTo(5.26f, 18.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.38f) + arcTo(3.5f, 3.5f, 0.0f, false, true, 22.0f, 14.5f) + lineTo(22.0f, 7.25f) + curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) + lineTo(5.25f, 4.0f) + close() + moveTo(21.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(23.0f, 19.88f) + curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) + reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _shareScreenPerson!! + } + +private var _shareScreenPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShareScreenPersonOverlay.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShareScreenPersonOverlay.kt new file mode 100644 index 00000000..3f1945de --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShareScreenPersonOverlay.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShareScreenPersonOverlay: ImageVector + get() { + if (_shareScreenPersonOverlay != null) { + return _shareScreenPersonOverlay!! + } + _shareScreenPersonOverlay = fluentIcon(name = "Regular.ShareScreenPersonOverlay") { + fluentPath { + moveTo(2.0f, 7.25f) + curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) + horizontalLineToRelative(13.5f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(7.25f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -1.5f, -2.87f) + lineTo(20.5f, 7.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(5.25f, 5.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(8.06f) + curveToRelative(-0.2f, 0.38f, -0.31f, 0.81f, -0.31f, 1.27f) + verticalLineToRelative(0.1f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 0.13f) + lineTo(5.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + close() + moveTo(18.5f, 17.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) + close() + moveTo(18.5f, 23.0f) + curveToRelative(3.21f, 0.0f, 4.5f, -1.57f, 4.5f, -3.13f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, -0.8f, -1.77f, -1.77f, -1.77f) + horizontalLineToRelative(-5.46f) + curveToRelative(-0.98f, 0.0f, -1.77f, 0.8f, -1.77f, 1.77f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 1.57f, 1.29f, 3.13f, 4.5f, 3.13f) + close() + moveTo(6.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + lineTo(12.0f, 8.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(6.0f, 7.0f) + close() + } + } + return _shareScreenPersonOverlay!! + } + +private var _shareScreenPersonOverlay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShareScreenPersonOverlayInside.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShareScreenPersonOverlayInside.kt new file mode 100644 index 00000000..68e38886 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShareScreenPersonOverlayInside.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShareScreenPersonOverlayInside: ImageVector + get() { + if (_shareScreenPersonOverlayInside != null) { + return _shareScreenPersonOverlayInside!! + } + _shareScreenPersonOverlayInside = fluentIcon(name = + "Regular.ShareScreenPersonOverlayInside") { + fluentPath { + moveTo(16.0f, 12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) + close() + moveTo(13.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(4.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(0.25f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 16.25f, 17.0f) + horizontalLineToRelative(-0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 13.0f, 14.25f) + lineTo(13.0f, 14.0f) + close() + moveTo(6.25f, 7.0f) + curveTo(5.56f, 7.0f, 5.0f, 7.56f, 5.0f, 8.25f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(4.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-3.5f) + curveTo(12.0f, 7.56f, 11.44f, 7.0f, 10.75f, 7.0f) + horizontalLineToRelative(-4.5f) + close() + moveTo(5.25f, 4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 18.55f, 3.46f, 20.0f, 5.25f, 20.0f) + horizontalLineToRelative(13.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-9.5f) + curveTo(22.0f, 5.45f, 20.54f, 4.0f, 18.75f, 4.0f) + lineTo(5.25f, 4.0f) + close() + moveTo(3.5f, 7.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(5.25f, 18.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-9.5f) + close() + } + } + return _shareScreenPersonOverlayInside!! + } + +private var _shareScreenPersonOverlayInside: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShareScreenPersonP.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShareScreenPersonP.kt new file mode 100644 index 00000000..654da773 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShareScreenPersonP.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShareScreenPersonP: ImageVector + get() { + if (_shareScreenPersonP != null) { + return _shareScreenPersonP!! + } + _shareScreenPersonP = fluentIcon(name = "Regular.ShareScreenPersonP") { + fluentPath { + moveTo(2.0f, 7.25f) + curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) + horizontalLineToRelative(13.5f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(7.25f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -1.5f, -2.87f) + lineTo(20.5f, 7.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(5.25f, 5.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(8.06f) + curveToRelative(-0.2f, 0.38f, -0.31f, 0.81f, -0.31f, 1.27f) + verticalLineToRelative(0.1f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 0.13f) + lineTo(5.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + close() + moveTo(18.5f, 17.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) + close() + moveTo(18.5f, 23.0f) + curveToRelative(3.21f, 0.0f, 4.5f, -1.57f, 4.5f, -3.13f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, -0.8f, -1.77f, -1.77f, -1.77f) + horizontalLineToRelative(-5.46f) + curveToRelative(-0.98f, 0.0f, -1.77f, 0.8f, -1.77f, 1.77f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 1.57f, 1.29f, 3.13f, 4.5f, 3.13f) + close() + moveTo(7.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(8.5f, 13.5f) + horizontalLineToRelative(1.25f) + arcToRelative(2.75f, 2.75f, 0.0f, true, false, 0.0f, -5.5f) + horizontalLineToRelative(-2.0f) + close() + moveTo(9.75f, 12.0f) + lineTo(8.5f, 12.0f) + lineTo(8.5f, 9.5f) + horizontalLineToRelative(1.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + close() + } + } + return _shareScreenPersonP!! + } + +private var _shareScreenPersonP: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShareScreenStart.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShareScreenStart.kt new file mode 100644 index 00000000..154abd62 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShareScreenStart.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShareScreenStart: ImageVector + get() { + if (_shareScreenStart != null) { + return _shareScreenStart!! + } + _shareScreenStart = fluentIcon(name = "Regular.ShareScreenStart") { + fluentPath { + moveTo(2.0f, 6.25f) + curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) + horizontalLineToRelative(15.5f) + curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(4.25f, 20.0f) + curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) + lineTo(2.0f, 6.25f) + close() + moveTo(4.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(15.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(20.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(4.25f, 5.5f) + close() + moveTo(12.0f, 7.25f) + curveToRelative(0.2f, 0.0f, 0.39f, 0.07f, 0.53f, 0.22f) + lineToRelative(3.25f, 3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-1.97f, -1.97f) + verticalLineToRelative(6.44f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(11.25f, 9.81f) + lineToRelative(-1.97f, 1.97f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(3.25f, -3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.53f, -0.22f) + close() + } + } + return _shareScreenStart!! + } + +private var _shareScreenStart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShareScreenStop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShareScreenStop.kt new file mode 100644 index 00000000..fb27a1b8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShareScreenStop.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShareScreenStop: ImageVector + get() { + if (_shareScreenStop != null) { + return _shareScreenStop!! + } + _shareScreenStop = fluentIcon(name = "Regular.ShareScreenStop") { + fluentPath { + moveTo(2.0f, 6.25f) + curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) + horizontalLineToRelative(15.5f) + curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(4.25f, 20.0f) + curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) + lineTo(2.0f, 6.25f) + close() + moveTo(4.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(15.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(20.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(4.25f, 5.5f) + close() + moveTo(8.22f, 8.22f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineTo(12.0f, 10.94f) + lineToRelative(2.72f, -2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) + lineTo(13.06f, 12.0f) + lineToRelative(2.72f, 2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(12.0f, 13.06f) + lineToRelative(-2.72f, 2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineTo(10.94f, 12.0f) + lineTo(8.22f, 9.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + } + } + return _shareScreenStop!! + } + +private var _shareScreenStop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Shield.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Shield.kt new file mode 100644 index 00000000..fb2d8446 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Shield.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Shield: ImageVector + get() { + if (_shield != null) { + return _shield!! + } + _shield = fluentIcon(name = "Regular.Shield") { + fluentPath { + moveTo(3.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + curveToRelative(2.66f, 0.0f, 5.26f, -0.94f, 7.8f, -2.85f) + curveToRelative(0.27f, -0.2f, 0.63f, -0.2f, 0.9f, 0.0f) + curveTo(14.99f, 4.05f, 17.59f, 5.0f, 20.25f, 5.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(21.0f, 11.0f) + curveToRelative(0.0f, 5.0f, -2.96f, 8.68f, -8.73f, 10.95f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.0f) + curveTo(5.96f, 19.68f, 3.0f, 16.0f, 3.0f, 11.0f) + lineTo(3.0f, 5.75f) + close() + moveTo(4.5f, 6.48f) + lineTo(4.5f, 11.0f) + curveToRelative(0.0f, 4.26f, 2.45f, 7.38f, 7.5f, 9.44f) + curveToRelative(5.05f, -2.06f, 7.5f, -5.18f, 7.5f, -9.44f) + lineTo(19.5f, 6.48f) + arcToRelative(14.36f, 14.36f, 0.0f, false, true, -7.5f, -2.8f) + arcToRelative(14.36f, 14.36f, 0.0f, false, true, -7.5f, 2.8f) + close() + } + } + return _shield!! + } + +private var _shield: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldAdd.kt new file mode 100644 index 00000000..65b15f18 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldAdd.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShieldAdd: ImageVector + get() { + if (_shieldAdd != null) { + return _shieldAdd!! + } + _shieldAdd = fluentIcon(name = "Regular.ShieldAdd") { + fluentPath { + moveTo(3.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + curveToRelative(2.66f, 0.0f, 5.26f, -0.94f, 7.8f, -2.85f) + curveToRelative(0.27f, -0.2f, 0.63f, -0.2f, 0.9f, 0.0f) + curveTo(14.99f, 4.05f, 17.59f, 5.0f, 20.25f, 5.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(21.0f, 11.0f) + curveToRelative(0.0f, 0.34f, -0.01f, 0.67f, -0.04f, 1.0f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, -1.46f, -0.69f) + lineTo(19.5f, 6.48f) + arcToRelative(14.36f, 14.36f, 0.0f, false, true, -7.5f, -2.8f) + arcToRelative(14.36f, 14.36f, 0.0f, false, true, -7.5f, 2.8f) + lineTo(4.5f, 11.0f) + curveToRelative(0.0f, 4.15f, 2.33f, 7.22f, 7.13f, 9.28f) + curveToRelative(0.26f, 0.56f, 0.6f, 1.07f, 1.0f, 1.52f) + lineToRelative(-0.36f, 0.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.0f) + curveTo(5.96f, 19.68f, 3.0f, 16.0f, 3.0f, 11.0f) + lineTo(3.0f, 5.75f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _shieldAdd!! + } + +private var _shieldAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldBadge.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldBadge.kt new file mode 100644 index 00000000..cfdef294 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldBadge.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShieldBadge: ImageVector + get() { + if (_shieldBadge != null) { + return _shieldBadge!! + } + _shieldBadge = fluentIcon(name = "Regular.ShieldBadge") { + fluentPath { + moveTo(4.75f, 5.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 7.75f) + verticalLineToRelative(4.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 15.0f) + lineTo(11.0f, 15.0f) + verticalLineToRelative(-1.5f) + lineTo(4.75f, 13.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(12.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(1.33f) + curveToRelative(0.46f, 0.55f, 1.0f, 0.9f, 1.5f, 1.13f) + lineTo(20.0f, 7.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 17.25f, 5.0f) + lineTo(4.75f, 5.0f) + close() + moveTo(17.0f, 9.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.61f, 0.32f) + horizontalLineToRelative(-0.01f) + arcToRelative(5.64f, 5.64f, 0.0f, false, true, -0.96f, 0.95f) + curveToRelative(-0.65f, 0.51f, -1.56f, 0.98f, -2.67f, 0.98f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(12.0f, 15.0f) + curveToRelative(0.0f, 1.64f, 0.44f, 2.95f, 1.3f, 3.98f) + arcToRelative(7.98f, 7.98f, 0.0f, false, false, 3.44f, 2.22f) + curveToRelative(0.17f, 0.07f, 0.35f, 0.07f, 0.52f, 0.0f) + curveToRelative(1.4f, -0.52f, 2.6f, -1.2f, 3.44f, -2.22f) + arcTo(5.97f, 5.97f, 0.0f, false, false, 22.0f, 15.0f) + verticalLineToRelative(-2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + arcToRelative(4.37f, 4.37f, 0.0f, false, true, -2.67f, -0.97f) + arcToRelative(5.64f, 5.64f, 0.0f, false, true, -0.96f, -0.95f) + verticalLineToRelative(-0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.62f, -0.32f) + close() + moveTo(16.33f, 11.72f) + curveToRelative(0.26f, -0.2f, 0.49f, -0.4f, 0.67f, -0.59f) + arcToRelative(6.02f, 6.02f, 0.0f, false, false, 3.5f, 1.81f) + lineTo(20.5f, 15.0f) + curveToRelative(0.0f, 1.36f, -0.35f, 2.3f, -0.95f, 3.02f) + arcTo(6.22f, 6.22f, 0.0f, false, true, 17.0f, 19.7f) + arcToRelative(6.22f, 6.22f, 0.0f, false, true, -2.55f, -1.68f) + arcTo(4.48f, 4.48f, 0.0f, false, true, 13.5f, 15.0f) + verticalLineToRelative(-2.05f) + curveToRelative(1.2f, -0.17f, 2.16f, -0.71f, 2.83f, -1.23f) + close() + moveTo(16.39f, 9.57f) + close() + } + } + return _shieldBadge!! + } + +private var _shieldBadge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldCheckmark.kt new file mode 100644 index 00000000..7ae41ee2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldCheckmark.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShieldCheckmark: ImageVector + get() { + if (_shieldCheckmark != null) { + return _shieldCheckmark!! + } + _shieldCheckmark = fluentIcon(name = "Regular.ShieldCheckmark") { + fluentPath { + moveTo(3.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + curveToRelative(2.66f, 0.0f, 5.26f, -0.94f, 7.8f, -2.85f) + curveToRelative(0.27f, -0.2f, 0.63f, -0.2f, 0.9f, 0.0f) + curveTo(14.99f, 4.05f, 17.59f, 5.0f, 20.25f, 5.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(21.0f, 11.0f) + curveToRelative(0.0f, 0.34f, -0.01f, 0.67f, -0.04f, 1.0f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, -1.46f, -0.69f) + lineTo(19.5f, 6.48f) + arcToRelative(14.36f, 14.36f, 0.0f, false, true, -7.5f, -2.8f) + arcToRelative(14.36f, 14.36f, 0.0f, false, true, -7.5f, 2.8f) + lineTo(4.5f, 11.0f) + curveToRelative(0.0f, 4.15f, 2.33f, 7.22f, 7.13f, 9.28f) + curveToRelative(0.26f, 0.56f, 0.6f, 1.07f, 1.0f, 1.52f) + lineToRelative(-0.36f, 0.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.0f) + curveTo(5.96f, 19.68f, 3.0f, 16.0f, 3.0f, 11.0f) + lineTo(3.0f, 5.75f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(20.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineToRelative(-3.65f, 3.64f) + lineToRelative(-1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _shieldCheckmark!! + } + +private var _shieldCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldDismiss.kt new file mode 100644 index 00000000..121ba2d7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldDismiss.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShieldDismiss: ImageVector + get() { + if (_shieldDismiss != null) { + return _shieldDismiss!! + } + _shieldDismiss = fluentIcon(name = "Regular.ShieldDismiss") { + fluentPath { + moveTo(12.45f, 2.15f) + curveTo(14.99f, 4.05f, 17.59f, 5.0f, 20.25f, 5.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineTo(11.0f) + curveToRelative(0.0f, 5.0f, -2.96f, 8.68f, -8.73f, 10.95f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.0f) + curveTo(5.96f, 19.68f, 3.0f, 16.0f, 3.0f, 11.0f) + verticalLineTo(5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + curveToRelative(2.66f, 0.0f, 5.26f, -0.94f, 7.8f, -2.85f) + curveToRelative(0.27f, -0.2f, 0.63f, -0.2f, 0.9f, 0.0f) + close() + moveTo(12.0f, 3.68f) + arcToRelative(14.36f, 14.36f, 0.0f, false, true, -7.5f, 2.8f) + verticalLineTo(11.0f) + curveToRelative(0.0f, 4.26f, 2.45f, 7.38f, 7.5f, 9.44f) + curveToRelative(5.05f, -2.06f, 7.5f, -5.18f, 7.5f, -9.44f) + verticalLineTo(6.48f) + arcToRelative(14.36f, 14.36f, 0.0f, false, true, -7.5f, -2.8f) + close() + moveTo(9.28f, 8.22f) + lineTo(12.0f, 10.94f) + lineToRelative(2.73f, -2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.97f, -0.07f) + lineToRelative(0.09f, 0.07f) + curveToRelative(0.26f, 0.27f, 0.29f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineTo(13.06f, 12.0f) + lineToRelative(2.73f, 2.73f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(12.0f, 13.06f) + lineTo(9.28f, 15.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 0.07f) + lineToRelative(-0.09f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineTo(10.94f, 12.0f) + lineTo(8.22f, 9.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + close() + } + } + return _shieldDismiss!! + } + +private var _shieldDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldError.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldError.kt new file mode 100644 index 00000000..eef39dd6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldError.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShieldError: ImageVector + get() { + if (_shieldError != null) { + return _shieldError!! + } + _shieldError = fluentIcon(name = "Regular.ShieldError") { + fluentPath { + moveTo(20.25f, 5.0f) + curveToRelative(-2.66f, 0.0f, -5.26f, -0.94f, -7.8f, -2.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 0.0f) + curveTo(9.01f, 4.05f, 6.41f, 5.0f, 3.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(3.0f, 11.0f) + curveToRelative(0.0f, 5.0f, 2.96f, 8.68f, 8.73f, 10.95f) + curveToRelative(0.17f, 0.07f, 0.37f, 0.07f, 0.54f, 0.0f) + curveTo(18.04f, 19.68f, 21.0f, 16.0f, 21.0f, 11.0f) + lineTo(21.0f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(4.5f, 6.48f) + arcToRelative(14.36f, 14.36f, 0.0f, false, false, 7.5f, -2.8f) + arcToRelative(14.36f, 14.36f, 0.0f, false, false, 7.5f, 2.8f) + lineTo(19.5f, 11.0f) + curveToRelative(0.0f, 4.26f, -2.45f, 7.38f, -7.5f, 9.44f) + curveToRelative(-5.05f, -2.06f, -7.5f, -5.18f, -7.5f, -9.44f) + lineTo(4.5f, 6.48f) + close() + moveTo(12.74f, 7.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.49f, 0.1f) + verticalLineToRelative(6.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + verticalLineToRelative(-6.6f) + close() + moveTo(12.0f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + } + } + return _shieldError!! + } + +private var _shieldError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldGlobe.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldGlobe.kt new file mode 100644 index 00000000..5ca0b3ee --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldGlobe.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShieldGlobe: ImageVector + get() { + if (_shieldGlobe != null) { + return _shieldGlobe!! + } + _shieldGlobe = fluentIcon(name = "Regular.ShieldGlobe") { + fluentPath { + moveTo(3.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(3.0f, 11.0f) + curveToRelative(0.0f, 5.0f, 2.96f, 8.68f, 8.73f, 10.95f) + curveToRelative(0.17f, 0.07f, 0.37f, 0.07f, 0.54f, 0.0f) + curveTo(18.04f, 19.68f, 21.0f, 16.0f, 21.0f, 11.0f) + lineTo(21.0f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + curveToRelative(-2.66f, 0.0f, -5.26f, -0.94f, -7.8f, -2.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 0.0f) + curveTo(9.01f, 4.05f, 6.41f, 5.0f, 3.75f, 5.0f) + close() + moveTo(4.5f, 11.0f) + lineTo(4.5f, 6.48f) + arcToRelative(14.36f, 14.36f, 0.0f, false, false, 7.5f, -2.8f) + arcToRelative(14.36f, 14.36f, 0.0f, false, false, 7.5f, 2.8f) + lineTo(19.5f, 11.0f) + curveToRelative(0.0f, 4.26f, -2.45f, 7.38f, -7.5f, 9.44f) + curveToRelative(-5.05f, -2.06f, -7.5f, -5.18f, -7.5f, -9.44f) + close() + moveTo(10.07f, 15.5f) + arcToRelative(9.63f, 9.63f, 0.0f, false, true, -0.55f, -2.75f) + lineTo(8.07f, 12.75f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 2.0f, 2.76f) + close() + moveTo(11.6f, 15.27f) + curveToRelative(0.17f, 0.37f, 0.3f, 0.56f, 0.4f, 0.65f) + curveToRelative(0.1f, -0.1f, 0.23f, -0.28f, 0.4f, -0.65f) + curveToRelative(0.28f, -0.62f, 0.5f, -1.49f, 0.57f, -2.52f) + horizontalLineToRelative(-1.94f) + curveToRelative(0.07f, 1.03f, 0.29f, 1.9f, 0.57f, 2.52f) + close() + moveTo(11.6f, 8.73f) + curveToRelative(-0.28f, 0.62f, -0.5f, 1.49f, -0.57f, 2.52f) + horizontalLineToRelative(1.94f) + arcToRelative(7.56f, 7.56f, 0.0f, false, false, -0.57f, -2.52f) + arcToRelative(2.34f, 2.34f, 0.0f, false, false, -0.4f, -0.65f) + curveToRelative(-0.1f, 0.1f, -0.23f, 0.28f, -0.4f, 0.65f) + close() + moveTo(13.93f, 15.51f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 2.0f, -2.76f) + horizontalLineToRelative(-1.45f) + arcToRelative(9.63f, 9.63f, 0.0f, false, true, -0.55f, 2.76f) + close() + moveTo(14.48f, 11.25f) + horizontalLineToRelative(1.45f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -2.0f, -2.76f) + curveToRelative(0.29f, 0.77f, 0.48f, 1.72f, 0.55f, 2.76f) + close() + moveTo(8.07f, 11.25f) + horizontalLineToRelative(1.45f) + curveToRelative(0.07f, -1.04f, 0.26f, -1.99f, 0.55f, -2.76f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -2.0f, 2.76f) + close() + moveTo(12.0f, 6.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + } + } + return _shieldGlobe!! + } + +private var _shieldGlobe: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldKeyhole.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldKeyhole.kt new file mode 100644 index 00000000..d4fe250a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldKeyhole.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShieldKeyhole: ImageVector + get() { + if (_shieldKeyhole != null) { + return _shieldKeyhole!! + } + _shieldKeyhole = fluentIcon(name = "Regular.ShieldKeyhole") { + fluentPath { + moveTo(14.0f, 11.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.25f, 1.85f) + verticalLineToRelative(2.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.4f) + arcTo(2.0f, 2.0f, 0.0f, true, true, 14.0f, 11.0f) + close() + moveTo(3.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(3.0f, 11.0f) + curveToRelative(0.0f, 5.0f, 2.96f, 8.68f, 8.73f, 10.95f) + curveToRelative(0.17f, 0.07f, 0.37f, 0.07f, 0.54f, 0.0f) + curveTo(18.04f, 19.68f, 21.0f, 16.0f, 21.0f, 11.0f) + lineTo(21.0f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + curveToRelative(-2.66f, 0.0f, -5.26f, -0.94f, -7.8f, -2.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 0.0f) + curveTo(9.01f, 4.05f, 6.41f, 5.0f, 3.75f, 5.0f) + close() + moveTo(4.5f, 11.0f) + lineTo(4.5f, 6.48f) + arcToRelative(14.36f, 14.36f, 0.0f, false, false, 7.5f, -2.8f) + arcToRelative(14.36f, 14.36f, 0.0f, false, false, 7.5f, 2.8f) + lineTo(19.5f, 11.0f) + curveToRelative(0.0f, 4.26f, -2.45f, 7.38f, -7.5f, 9.44f) + curveToRelative(-5.05f, -2.06f, -7.5f, -5.18f, -7.5f, -9.44f) + close() + } + } + return _shieldKeyhole!! + } + +private var _shieldKeyhole: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldLock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldLock.kt new file mode 100644 index 00000000..feef825f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldLock.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShieldLock: ImageVector + get() { + if (_shieldLock != null) { + return _shieldLock!! + } + _shieldLock = fluentIcon(name = "Regular.ShieldLock") { + fluentPath { + moveTo(3.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + curveToRelative(2.66f, 0.0f, 5.26f, -0.94f, 7.8f, -2.85f) + curveToRelative(0.27f, -0.2f, 0.63f, -0.2f, 0.9f, 0.0f) + curveTo(14.99f, 4.05f, 17.59f, 5.0f, 20.25f, 5.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(21.0f, 11.0f) + lineToRelative(-0.01f, 0.54f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -1.49f, -0.9f) + lineTo(19.5f, 6.48f) + arcToRelative(14.36f, 14.36f, 0.0f, false, true, -7.5f, -2.8f) + arcToRelative(14.36f, 14.36f, 0.0f, false, true, -7.5f, 2.8f) + lineTo(4.5f, 11.0f) + curveToRelative(0.0f, 4.26f, 2.45f, 7.38f, 7.5f, 9.44f) + arcToRelative(21.0f, 21.0f, 0.0f, false, false, 1.0f, -0.44f) + verticalLineToRelative(1.65f) + lineToRelative(-0.73f, 0.3f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.0f) + curveTo(5.96f, 19.68f, 3.0f, 16.0f, 3.0f, 11.0f) + lineTo(3.0f, 5.75f) + close() + moveTo(16.0f, 15.0f) + verticalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(0.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-6.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + horizontalLineToRelative(0.5f) + close() + moveTo(17.5f, 14.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + close() + moveTo(19.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + } + } + return _shieldLock!! + } + +private var _shieldLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldProhibited.kt new file mode 100644 index 00000000..be7e95d3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldProhibited.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShieldProhibited: ImageVector + get() { + if (_shieldProhibited != null) { + return _shieldProhibited!! + } + _shieldProhibited = fluentIcon(name = "Regular.ShieldProhibited") { + fluentPath { + moveTo(3.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(3.0f, 11.0f) + curveToRelative(0.0f, 5.0f, 2.96f, 8.68f, 8.73f, 10.95f) + curveToRelative(0.17f, 0.07f, 0.37f, 0.07f, 0.54f, 0.0f) + lineToRelative(0.43f, -0.17f) + arcToRelative(6.54f, 6.54f, 0.0f, false, true, -1.67f, -1.76f) + curveTo(6.64f, 17.96f, 4.5f, 14.97f, 4.5f, 11.0f) + lineTo(4.5f, 6.48f) + arcToRelative(14.36f, 14.36f, 0.0f, false, false, 7.5f, -2.8f) + arcToRelative(14.36f, 14.36f, 0.0f, false, false, 7.5f, 2.8f) + verticalLineToRelative(4.25f) + curveToRelative(0.54f, 0.28f, 1.04f, 0.64f, 1.48f, 1.06f) + lineTo(21.0f, 11.0f) + lineTo(21.0f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + curveToRelative(-2.66f, 0.0f, -5.26f, -0.94f, -7.8f, -2.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 0.0f) + curveTo(9.01f, 4.05f, 6.41f, 5.0f, 3.75f, 5.0f) + close() + moveTo(16.5f, 22.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) + close() + moveTo(13.2f, 18.75f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 5.56f, -5.56f) + lineToRelative(-5.57f, 5.56f) + close() + moveTo(14.25f, 19.81f) + lineTo(19.81f, 14.25f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -5.56f, 5.56f) + close() + } + } + return _shieldProhibited!! + } + +private var _shieldProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldQuestion.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldQuestion.kt new file mode 100644 index 00000000..67826d2d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldQuestion.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShieldQuestion: ImageVector + get() { + if (_shieldQuestion != null) { + return _shieldQuestion!! + } + _shieldQuestion = fluentIcon(name = "Regular.ShieldQuestion") { + fluentPath { + moveTo(3.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + curveToRelative(2.66f, 0.0f, 5.26f, -0.94f, 7.8f, -2.85f) + curveToRelative(0.27f, -0.2f, 0.63f, -0.2f, 0.9f, 0.0f) + curveTo(14.99f, 4.05f, 17.59f, 5.0f, 20.25f, 5.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(21.0f, 11.0f) + curveToRelative(0.0f, 5.0f, -2.96f, 8.68f, -8.73f, 10.95f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.54f, 0.0f) + curveTo(5.96f, 19.68f, 3.0f, 16.0f, 3.0f, 11.0f) + lineTo(3.0f, 5.75f) + close() + moveTo(4.5f, 6.48f) + lineTo(4.5f, 11.0f) + curveToRelative(0.0f, 4.26f, 2.45f, 7.38f, 7.5f, 9.44f) + curveToRelative(5.05f, -2.06f, 7.5f, -5.18f, 7.5f, -9.44f) + lineTo(19.5f, 6.48f) + arcToRelative(14.36f, 14.36f, 0.0f, false, true, -7.5f, -2.8f) + arcToRelative(14.36f, 14.36f, 0.0f, false, true, -7.5f, 2.8f) + close() + moveTo(13.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(10.75f, 9.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + curveToRelative(0.0f, 0.45f, -0.25f, 0.74f, -0.78f, 1.27f) + lineToRelative(-0.05f, 0.05f) + curveToRelative(-0.47f, 0.46f, -1.17f, 1.16f, -1.17f, 2.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + curveToRelative(0.0f, -0.45f, 0.25f, -0.74f, 0.78f, -1.27f) + lineToRelative(0.05f, -0.05f) + curveToRelative(0.47f, -0.47f, 1.17f, -1.16f, 1.17f, -2.28f) + arcToRelative(2.75f, 2.75f, 0.0f, true, false, -5.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + close() + } + } + return _shieldQuestion!! + } + +private var _shieldQuestion: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldTask.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldTask.kt new file mode 100644 index 00000000..72337f32 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShieldTask.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShieldTask: ImageVector + get() { + if (_shieldTask != null) { + return _shieldTask!! + } + _shieldTask = fluentIcon(name = "Regular.ShieldTask") { + fluentPath { + moveTo(16.76f, 9.3f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.02f, -1.1f) + lineToRelative(-5.47f, 5.01f) + lineToRelative(-1.99f, -1.99f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(2.5f, 2.5f) + curveToRelative(0.28f, 0.28f, 0.74f, 0.3f, 1.04f, 0.02f) + lineToRelative(6.0f, -5.5f) + close() + moveTo(20.25f, 5.0f) + curveToRelative(-2.66f, 0.0f, -5.26f, -0.94f, -7.8f, -2.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 0.0f) + curveTo(9.01f, 4.05f, 6.41f, 5.0f, 3.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineTo(11.0f) + curveToRelative(0.0f, 5.0f, 2.96f, 8.68f, 8.73f, 10.95f) + curveToRelative(0.17f, 0.07f, 0.37f, 0.07f, 0.54f, 0.0f) + curveTo(18.04f, 19.68f, 21.0f, 16.0f, 21.0f, 11.0f) + verticalLineTo(5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(4.5f, 6.48f) + arcToRelative(14.36f, 14.36f, 0.0f, false, false, 7.5f, -2.8f) + arcToRelative(14.36f, 14.36f, 0.0f, false, false, 7.5f, 2.8f) + verticalLineTo(11.0f) + curveToRelative(0.0f, 4.26f, -2.45f, 7.38f, -7.5f, 9.44f) + curveToRelative(-5.05f, -2.06f, -7.5f, -5.18f, -7.5f, -9.44f) + verticalLineTo(6.48f) + close() + } + } + return _shieldTask!! + } + +private var _shieldTask: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Shifts.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Shifts.kt new file mode 100644 index 00000000..66a624b5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Shifts.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Shifts: ImageVector + get() { + if (_shifts != null) { + return _shifts!! + } + _shifts = fluentIcon(name = "Regular.Shifts") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(11.75f, 6.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + lineTo(12.5f, 12.0f) + horizontalLineToRelative(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-6.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _shifts!! + } + +private var _shifts: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Shifts30Minutes.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Shifts30Minutes.kt new file mode 100644 index 00000000..efabcb4c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Shifts30Minutes.kt @@ -0,0 +1,94 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Shifts30Minutes: ImageVector + get() { + if (_shifts30Minutes != null) { + return _shifts30Minutes!! + } + _shifts30Minutes = fluentIcon(name = "Regular.Shifts30Minutes") { + fluentPath { + moveTo(15.5f, 5.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, -7.0f, 0.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 7.0f, 0.0f) + close() + moveTo(10.0f, 5.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -4.0f, 0.0f) + close() + moveTo(8.75f, 10.0f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-6.5f) + close() + moveTo(6.5f, 17.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(5.5f, 21.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(10.11f, 16.53f) + curveToRelative(-0.27f, 0.06f, -0.52f, 0.2f, -0.67f, 0.33f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.92f, -1.19f) + curveToRelative(0.27f, -0.2f, 0.71f, -0.48f, 1.25f, -0.6f) + arcToRelative(2.33f, 2.33f, 0.0f, false, true, 1.88f, 0.32f) + arcToRelative(2.27f, 2.27f, 0.0f, false, true, 0.62f, 3.03f) + arcToRelative(2.1f, 2.1f, 0.0f, false, true, -0.08f, 2.86f) + curveToRelative(-0.6f, 0.6f, -1.4f, 0.77f, -2.08f, 0.73f) + arcToRelative(3.12f, 3.12f, 0.0f, false, true, -1.85f, -0.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.99f, -1.12f) + curveToRelative(0.17f, 0.15f, 0.52f, 0.3f, 0.94f, 0.32f) + curveToRelative(0.4f, 0.02f, 0.73f, -0.09f, 0.94f, -0.3f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, 0.12f, -0.62f) + curveToRelative(-0.07f, -0.2f, -0.23f, -0.34f, -0.5f, -0.34f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(0.5f) + curveToRelative(0.12f, 0.0f, 0.17f, -0.04f, 0.21f, -0.08f) + curveToRelative(0.05f, -0.04f, 0.1f, -0.14f, 0.13f, -0.28f) + curveToRelative(0.05f, -0.3f, -0.07f, -0.61f, -0.28f, -0.75f) + arcToRelative(0.83f, 0.83f, 0.0f, false, false, -0.7f, -0.11f) + close() + moveTo(16.5f, 15.0f) + arcToRelative(2.2f, 2.2f, 0.0f, false, false, -1.99f, 1.08f) + curveToRelative(-0.38f, 0.65f, -0.51f, 1.5f, -0.51f, 2.42f) + curveToRelative(0.0f, 0.92f, 0.13f, 1.77f, 0.51f, 2.42f) + arcTo(2.2f, 2.2f, 0.0f, false, false, 16.5f, 22.0f) + arcToRelative(2.2f, 2.2f, 0.0f, false, false, 1.99f, -1.08f) + curveToRelative(0.38f, -0.64f, 0.51f, -1.5f, 0.51f, -2.42f) + curveToRelative(0.0f, -0.93f, -0.13f, -1.78f, -0.51f, -2.42f) + arcTo(2.2f, 2.2f, 0.0f, false, false, 16.5f, 15.0f) + close() + moveTo(15.5f, 18.5f) + curveToRelative(0.0f, -0.83f, 0.12f, -1.35f, 0.3f, -1.64f) + curveToRelative(0.13f, -0.23f, 0.32f, -0.36f, 0.7f, -0.36f) + curveToRelative(0.39f, 0.0f, 0.57f, 0.13f, 0.7f, 0.35f) + curveToRelative(0.18f, 0.3f, 0.3f, 0.81f, 0.3f, 1.65f) + curveToRelative(0.0f, 0.84f, -0.12f, 1.36f, -0.3f, 1.65f) + curveToRelative(-0.13f, 0.22f, -0.31f, 0.35f, -0.7f, 0.35f) + curveToRelative(-0.38f, 0.0f, -0.57f, -0.13f, -0.7f, -0.35f) + curveToRelative(-0.18f, -0.3f, -0.3f, -0.82f, -0.3f, -1.65f) + close() + } + } + return _shifts30Minutes!! + } + +private var _shifts30Minutes: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShiftsActivity.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShiftsActivity.kt new file mode 100644 index 00000000..aa994e59 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShiftsActivity.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShiftsActivity: ImageVector + get() { + if (_shiftsActivity != null) { + return _shiftsActivity!! + } + _shiftsActivity = fluentIcon(name = "Regular.ShiftsActivity") { + fluentPath { + moveTo(11.31f, 3.53f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.12f, -1.5f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 10.78f, 10.78f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, -0.12f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, -9.16f, -9.16f) + close() + moveTo(17.7f, 4.67f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -0.04f) + curveToRelative(0.21f, 0.2f, 0.42f, 0.4f, 0.61f, 0.61f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.1f, 1.02f) + arcToRelative(8.55f, 8.55f, 0.0f, false, false, -0.53f, -0.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.04f, -1.06f) + close() + moveTo(11.25f, 6.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + lineTo(12.0f, 12.0f) + horizontalLineToRelative(3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-4.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-6.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(13.78f, 2.89f) + curveToRelative(0.11f, -0.4f, 0.53f, -0.63f, 0.93f, -0.52f) + curveToRelative(0.36f, 0.1f, 0.72f, 0.23f, 1.07f, 0.37f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.57f, 1.39f) + curveToRelative(-0.3f, -0.12f, -0.6f, -0.23f, -0.9f, -0.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.53f, -0.92f) + close() + moveTo(21.26f, 8.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.39f, 0.56f) + arcToRelative(8.4f, 8.4f, 0.0f, false, true, 0.31f, 0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.45f, -0.4f) + arcToRelative(9.43f, 9.43f, 0.0f, false, false, -0.37f, -1.08f) + close() + } + } + return _shiftsActivity!! + } + +private var _shiftsActivity: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShiftsAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShiftsAdd.kt new file mode 100644 index 00000000..e5b95a37 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShiftsAdd.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShiftsAdd: ImageVector + get() { + if (_shiftsAdd != null) { + return _shiftsAdd!! + } + _shiftsAdd = fluentIcon(name = "Regular.ShiftsAdd") { + fluentPath { + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-5.06f) + arcToRelative(6.47f, 6.47f, 0.0f, false, true, -0.71f, 1.5f) + horizontalLineToRelative(5.77f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(5.77f) + curveToRelative(0.46f, -0.3f, 0.97f, -0.53f, 1.5f, -0.7f) + lineTo(4.5f, 6.24f) + close() + moveTo(6.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(7.0f, 20.5f) + lineTo(7.0f, 18.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, -1.0f) + lineTo(7.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -1.0f, 0.0f) + lineTo(6.0f, 17.0f) + lineTo(3.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + lineTo(6.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) + close() + moveTo(12.5f, 6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(12.5f, 12.0f) + lineTo(12.5f, 6.75f) + close() + } + } + return _shiftsAdd!! + } + +private var _shiftsAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShiftsAvailability.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShiftsAvailability.kt new file mode 100644 index 00000000..64b29491 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShiftsAvailability.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShiftsAvailability: ImageVector + get() { + if (_shiftsAvailability != null) { + return _shiftsAvailability!! + } + _shiftsAvailability = fluentIcon(name = "Regular.ShiftsAvailability") { + fluentPath { + moveTo(8.5f, 3.5f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, -0.23f, 10.0f) + curveToRelative(-0.13f, 0.47f, -0.22f, 0.97f, -0.25f, 1.48f) + arcToRelative(6.5f, 6.5f, 0.0f, true, true, 6.96f, -6.96f) + curveToRelative(-0.5f, 0.03f, -1.0f, 0.12f, -1.49f, 0.25f) + arcTo(5.0f, 5.0f, 0.0f, false, false, 8.5f, 3.5f) + close() + moveTo(14.28f, 13.23f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.07f) + lineToRelative(1.22f, 1.2f) + lineToRelative(-1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(1.22f, -1.22f) + lineToRelative(1.21f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.07f, -1.06f) + lineToRelative(-1.22f, -1.22f) + lineToRelative(1.21f, -1.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.05f, -1.07f) + lineToRelative(-1.22f, 1.21f) + lineToRelative(-1.22f, -1.2f) + close() + moveTo(15.5f, 9.0f) + arcToRelative(6.5f, 6.5f, 0.0f, true, false, 0.0f, 13.0f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, 0.0f, -13.0f) + close() + moveTo(10.5f, 15.5f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, 10.0f, 0.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, -10.0f, 0.0f) + close() + moveTo(11.28f, 6.72f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-3.0f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 0.0f) + lineToRelative(-1.5f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineToRelative(0.97f, 0.97f) + lineToRelative(2.47f, -2.47f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + } + } + return _shiftsAvailability!! + } + +private var _shiftsAvailability: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShiftsCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShiftsCheckmark.kt new file mode 100644 index 00000000..5705e62b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShiftsCheckmark.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShiftsCheckmark: ImageVector + get() { + if (_shiftsCheckmark != null) { + return _shiftsCheckmark!! + } + _shiftsCheckmark = fluentIcon(name = "Regular.ShiftsCheckmark") { + fluentPath { + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-5.06f) + arcToRelative(6.47f, 6.47f, 0.0f, false, true, -0.71f, 1.5f) + horizontalLineToRelative(5.77f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(5.77f) + curveToRelative(0.46f, -0.3f, 0.97f, -0.53f, 1.5f, -0.7f) + lineTo(4.5f, 6.24f) + close() + moveTo(12.5f, 6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(12.5f, 12.0f) + lineTo(12.5f, 6.75f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(8.85f, 15.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + lineTo(5.5f, 18.29f) + lineToRelative(-0.9f, -0.9f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.71f) + lineToRelative(1.25f, 1.25f) + curveToRelative(0.2f, 0.2f, 0.5f, 0.2f, 0.7f, 0.0f) + lineToRelative(3.0f, -3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + close() + } + } + return _shiftsCheckmark!! + } + +private var _shiftsCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShiftsDay.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShiftsDay.kt new file mode 100644 index 00000000..ea23b43b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShiftsDay.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShiftsDay: ImageVector + get() { + if (_shiftsDay != null) { + return _shiftsDay!! + } + _shiftsDay = fluentIcon(name = "Regular.ShiftsDay") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(13.25f, 8.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.75f) + horizontalLineToRelative(1.5f) + lineTo(15.5f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(6.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(15.5f, 13.0f) + horizontalLineToRelative(-2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(7.5f, 8.74f) + arcTo(2.3f, 2.3f, 0.0f, false, true, 9.25f, 8.0f) + curveToRelative(1.15f, 0.0f, 1.9f, 0.8f, 2.15f, 1.66f) + curveToRelative(0.26f, 0.85f, 0.1f, 1.9f, -0.62f, 2.62f) + curveToRelative(-0.24f, 0.25f, -0.53f, 0.47f, -0.79f, 0.67f) + lineToRelative(-0.04f, 0.03f) + arcToRelative(7.8f, 7.8f, 0.0f, false, false, -0.75f, 0.63f) + arcToRelative(2.3f, 2.3f, 0.0f, false, false, -0.58f, 0.89f) + horizontalLineToRelative(2.13f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + curveToRelative(0.0f, -1.25f, 0.52f, -2.08f, 1.14f, -2.7f) + curveToRelative(0.3f, -0.3f, 0.62f, -0.55f, 0.9f, -0.76f) + curveToRelative(0.28f, -0.22f, 0.5f, -0.4f, 0.68f, -0.57f) + curveToRelative(0.27f, -0.27f, 0.37f, -0.72f, 0.25f, -1.13f) + curveToRelative(-0.12f, -0.38f, -0.37f, -0.59f, -0.72f, -0.59f) + reflectiveCurveToRelative(-0.53f, 0.14f, -0.64f, 0.25f) + arcToRelative(0.84f, 0.84f, 0.0f, false, false, -0.15f, 0.23f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.43f, -0.46f) + lineToRelative(0.04f, -0.1f) + lineToRelative(0.08f, -0.17f) + curveToRelative(0.07f, -0.14f, 0.18f, -0.32f, 0.35f, -0.5f) + close() + } + } + return _shiftsDay!! + } + +private var _shiftsDay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShiftsOpen.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShiftsOpen.kt new file mode 100644 index 00000000..4ff0fee4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShiftsOpen.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShiftsOpen: ImageVector + get() { + if (_shiftsOpen != null) { + return _shiftsOpen!! + } + _shiftsOpen = fluentIcon(name = "Regular.ShiftsOpen") { + fluentPath { + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineTo(6.25f) + close() + moveTo(14.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineTo(6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + horizontalLineToRelative(-3.0f) + close() + moveTo(12.5f, 6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(12.5f) + verticalLineTo(6.75f) + close() + } + } + return _shiftsOpen!! + } + +private var _shiftsOpen: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShiftsProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShiftsProhibited.kt new file mode 100644 index 00000000..0bfa50c3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShiftsProhibited.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShiftsProhibited: ImageVector + get() { + if (_shiftsProhibited != null) { + return _shiftsProhibited!! + } + _shiftsProhibited = fluentIcon(name = "Regular.ShiftsProhibited") { + fluentPath { + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-5.06f) + arcToRelative(6.47f, 6.47f, 0.0f, false, true, -0.71f, 1.5f) + horizontalLineToRelative(5.77f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(5.77f) + curveToRelative(0.46f, -0.3f, 0.97f, -0.53f, 1.5f, -0.7f) + lineTo(4.5f, 6.24f) + close() + moveTo(12.5f, 6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(12.5f, 12.0f) + lineTo(12.5f, 6.75f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(2.5f, 17.5f) + curveToRelative(0.0f, 0.83f, 0.25f, 1.6f, 0.7f, 2.25f) + lineToRelative(5.55f, -5.56f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) + close() + moveTo(6.5f, 21.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) + lineToRelative(-5.55f, 5.56f) + curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) + close() + } + } + return _shiftsProhibited!! + } + +private var _shiftsProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShiftsQuestionMark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShiftsQuestionMark.kt new file mode 100644 index 00000000..5812093d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShiftsQuestionMark.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShiftsQuestionMark: ImageVector + get() { + if (_shiftsQuestionMark != null) { + return _shiftsQuestionMark!! + } + _shiftsQuestionMark = fluentIcon(name = "Regular.ShiftsQuestionMark") { + fluentPath { + moveTo(6.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(6.5f, 19.88f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, 1.25f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, -1.25f) + close() + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-5.77f) + curveToRelative(0.3f, -0.46f, 0.53f, -0.97f, 0.7f, -1.5f) + horizontalLineToRelative(5.07f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(5.06f) + curveToRelative(-0.53f, 0.18f, -1.04f, 0.42f, -1.5f, 0.71f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(6.5f, 14.0f) + curveToRelative(-1.05f, 0.0f, -1.86f, 0.82f, -1.85f, 1.96f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, -0.01f) + curveToRelative(0.0f, -0.58f, 0.36f, -0.95f, 0.85f, -0.95f) + curveToRelative(0.47f, 0.0f, 0.85f, 0.4f, 0.85f, 0.95f) + curveToRelative(0.0f, 0.23f, -0.07f, 0.4f, -0.31f, 0.68f) + lineToRelative(-0.1f, 0.11f) + lineToRelative(-0.27f, 0.3f) + curveToRelative(-0.48f, 0.53f, -0.67f, 0.89f, -0.67f, 1.46f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + curveToRelative(0.0f, -0.23f, 0.08f, -0.4f, 0.32f, -0.7f) + lineToRelative(0.1f, -0.1f) + lineToRelative(0.27f, -0.3f) + curveToRelative(0.48f, -0.53f, 0.66f, -0.88f, 0.66f, -1.45f) + curveToRelative(0.0f, -1.1f, -0.82f, -1.95f, -1.85f, -1.95f) + close() + moveTo(11.75f, 6.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + lineTo(12.5f, 12.0f) + horizontalLineToRelative(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-6.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _shiftsQuestionMark!! + } + +private var _shiftsQuestionMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShiftsTeam.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShiftsTeam.kt new file mode 100644 index 00000000..1c6cc03c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShiftsTeam.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShiftsTeam: ImageVector + get() { + if (_shiftsTeam != null) { + return _shiftsTeam!! + } + _shiftsTeam = fluentIcon(name = "Regular.ShiftsTeam") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-5.0f) + arcToRelative(2.98f, 2.98f, 0.0f, false, false, 0.23f, -1.5f) + horizontalLineToRelative(4.77f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(5.26f) + curveToRelative(-0.55f, 0.04f, -1.06f, 0.22f, -1.5f, 0.5f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(11.75f, 6.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + lineTo(12.5f, 12.0f) + horizontalLineToRelative(3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-6.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(4.75f, 17.0f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 0.0f, -4.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.5f) + close() + moveTo(4.75f, 23.0f) + curveToRelative(2.68f, 0.0f, 3.75f, -1.57f, 3.75f, -3.13f) + curveToRelative(0.0f, -1.03f, -0.72f, -1.87f, -1.6f, -1.87f) + lineTo(2.6f, 18.0f) + curveToRelative(-0.88f, 0.0f, -1.6f, 0.84f, -1.6f, 1.88f) + curveTo(1.0f, 21.43f, 2.07f, 23.0f, 4.75f, 23.0f) + close() + moveTo(11.5f, 15.75f) + arcToRelative(1.75f, 1.75f, 0.0f, true, true, -3.5f, 0.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 3.5f, 0.0f) + close() + moveTo(8.92f, 22.0f) + curveToRelative(0.4f, -0.66f, 0.58f, -1.4f, 0.58f, -2.13f) + curveToRelative(0.0f, -0.47f, -0.11f, -0.95f, -0.32f, -1.37f) + horizontalLineToRelative(1.54f) + curveToRelative(0.7f, 0.0f, 1.28f, 0.59f, 1.28f, 1.31f) + curveToRelative(0.0f, 1.1f, -0.85f, 2.19f, -3.0f, 2.19f) + horizontalLineToRelative(-0.08f) + close() + } + } + return _shiftsTeam!! + } + +private var _shiftsTeam: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShoppingBag.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShoppingBag.kt new file mode 100644 index 00000000..225da0e1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShoppingBag.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShoppingBag: ImageVector + get() { + if (_shoppingBag != null) { + return _shoppingBag!! + } + _shoppingBag = fluentIcon(name = "Regular.ShoppingBag") { + fluentPath { + moveTo(7.0f, 7.0f) + lineTo(7.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 5.0f, -2.24f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 17.0f, 5.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(1.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(10.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, -3.5f, 3.5f) + lineTo(8.0f, 22.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f) + lineTo(4.0f, 8.5f) + curveTo(4.0f, 7.67f, 4.67f, 7.0f, 5.5f, 7.0f) + lineTo(7.0f, 7.0f) + close() + moveTo(13.63f, 20.5f) + arcToRelative(3.48f, 3.48f, 0.0f, false, true, -0.62f, -2.0f) + verticalLineToRelative(-10.0f) + lineTo(5.5f, 8.5f) + lineTo(5.5f, 18.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 8.0f, 20.5f) + horizontalLineToRelative(5.63f) + close() + moveTo(11.5f, 7.0f) + lineTo(11.5f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(3.0f) + close() + moveTo(13.0f, 7.0f) + horizontalLineToRelative(2.5f) + lineTo(15.5f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.66f, -0.96f) + curveToRelative(0.1f, 0.3f, 0.16f, 0.63f, 0.16f, 0.96f) + verticalLineToRelative(2.0f) + close() + moveTo(14.51f, 18.5f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 3.99f, 0.0f) + verticalLineToRelative(-10.0f) + horizontalLineToRelative(-3.99f) + verticalLineToRelative(10.0f) + close() + } + } + return _shoppingBag!! + } + +private var _shoppingBag: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShoppingBagArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShoppingBagArrowLeft.kt new file mode 100644 index 00000000..7d960e05 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShoppingBagArrowLeft.kt @@ -0,0 +1,91 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShoppingBagArrowLeft: ImageVector + get() { + if (_shoppingBagArrowLeft != null) { + return _shoppingBagArrowLeft!! + } + _shoppingBagArrowLeft = fluentIcon(name = "Regular.ShoppingBagArrowLeft") { + fluentPath { + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(16.65f, 14.65f) + lineTo(16.72f, 14.59f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.64f, 0.06f) + lineToRelative(0.05f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.05f, 0.63f) + lineTo(15.7f, 17.0f) + horizontalLineToRelative(4.88f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.41f, 0.5f) + verticalLineToRelative(0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.41f) + horizontalLineToRelative(-4.79f) + lineToRelative(1.65f, 1.65f) + lineToRelative(0.05f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.76f, 0.63f) + lineToRelative(-2.52f, -2.51f) + lineToRelative(-0.05f, -0.07f) + lineToRelative(-0.03f, -0.06f) + lineToRelative(-0.03f, -0.08f) + lineToRelative(-0.01f, -0.09f) + verticalLineToRelative(-0.1f) + lineToRelative(0.02f, -0.1f) + lineToRelative(0.02f, -0.05f) + lineToRelative(0.04f, -0.08f) + lineToRelative(0.04f, -0.05f) + lineToRelative(2.52f, -2.51f) + close() + moveTo(7.0f, 7.0f) + lineTo(7.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 5.0f, -2.24f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 17.0f, 5.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(1.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(3.0f) + curveToRelative(-0.47f, -0.2f, -0.98f, -0.34f, -1.5f, -0.42f) + lineTo(18.5f, 8.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(3.23f) + curveToRelative(-0.55f, 0.29f, -1.06f, 0.65f, -1.5f, 1.08f) + lineTo(13.0f, 8.5f) + lineTo(5.5f, 8.5f) + lineTo(5.5f, 18.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 8.0f, 20.5f) + horizontalLineToRelative(3.73f) + curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) + lineTo(8.0f, 22.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f) + lineTo(4.0f, 8.5f) + curveTo(4.0f, 7.67f, 4.67f, 7.0f, 5.5f, 7.0f) + lineTo(7.0f, 7.0f) + close() + moveTo(10.0f, 3.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(3.0f) + lineTo(11.5f, 5.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + close() + moveTo(15.5f, 7.0f) + lineTo(15.5f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.66f, -0.96f) + curveToRelative(0.1f, 0.3f, 0.16f, 0.63f, 0.16f, 0.96f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(2.5f) + close() + } + } + return _shoppingBagArrowLeft!! + } + +private var _shoppingBagArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShoppingBagDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShoppingBagDismiss.kt new file mode 100644 index 00000000..eb614856 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShoppingBagDismiss.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShoppingBagDismiss: ImageVector + get() { + if (_shoppingBagDismiss != null) { + return _shoppingBagDismiss!! + } + _shoppingBagDismiss = fluentIcon(name = "Regular.ShoppingBagDismiss") { + fluentPath { + moveTo(7.0f, 7.0f) + lineTo(7.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 5.0f, -2.24f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 17.0f, 5.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(1.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(3.0f) + curveToRelative(-0.47f, -0.2f, -0.98f, -0.34f, -1.5f, -0.42f) + lineTo(18.5f, 8.5f) + horizontalLineToRelative(-3.99f) + verticalLineToRelative(3.23f) + curveToRelative(-0.55f, 0.28f, -1.06f, 0.65f, -1.5f, 1.07f) + lineTo(13.01f, 8.5f) + lineTo(5.5f, 8.5f) + lineTo(5.5f, 18.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 8.0f, 20.5f) + horizontalLineToRelative(3.73f) + curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) + lineTo(8.0f, 22.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f) + lineTo(4.0f, 8.5f) + curveTo(4.0f, 7.67f, 4.67f, 7.0f, 5.5f, 7.0f) + lineTo(7.0f, 7.0f) + close() + moveTo(11.5f, 7.0f) + lineTo(11.5f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(3.0f) + close() + moveTo(13.0f, 7.0f) + horizontalLineToRelative(2.5f) + lineTo(15.5f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.66f, -0.96f) + curveToRelative(0.1f, 0.3f, 0.16f, 0.63f, 0.16f, 0.96f) + verticalLineToRelative(2.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-1.64f, -1.65f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.65f, 1.64f) + lineToRelative(-1.65f, -1.64f) + close() + } + } + return _shoppingBagDismiss!! + } + +private var _shoppingBagDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShoppingBagPause.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShoppingBagPause.kt new file mode 100644 index 00000000..4e4343e6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShoppingBagPause.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShoppingBagPause: ImageVector + get() { + if (_shoppingBagPause != null) { + return _shoppingBagPause!! + } + _shoppingBagPause = fluentIcon(name = "Regular.ShoppingBagPause") { + fluentPath { + moveTo(7.0f, 7.0f) + lineTo(7.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 5.0f, -2.24f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 17.0f, 5.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(1.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(3.0f) + curveToRelative(-0.47f, -0.2f, -0.98f, -0.34f, -1.5f, -0.42f) + lineTo(18.5f, 8.5f) + horizontalLineToRelative(-3.99f) + verticalLineToRelative(3.23f) + curveToRelative(-0.55f, 0.28f, -1.06f, 0.65f, -1.5f, 1.07f) + lineTo(13.01f, 8.5f) + lineTo(5.5f, 8.5f) + lineTo(5.5f, 18.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 8.0f, 20.5f) + horizontalLineToRelative(3.73f) + curveToRelative(0.29f, 0.55f, 0.65f, 1.06f, 1.08f, 1.5f) + lineTo(8.0f, 22.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f) + lineTo(4.0f, 8.5f) + curveTo(4.0f, 7.67f, 4.67f, 7.0f, 5.5f, 7.0f) + lineTo(7.0f, 7.0f) + close() + moveTo(11.5f, 7.0f) + lineTo(11.5f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(3.0f) + close() + moveTo(13.0f, 7.0f) + horizontalLineToRelative(2.5f) + lineTo(15.5f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.66f, -0.96f) + curveToRelative(0.1f, 0.3f, 0.16f, 0.63f, 0.16f, 0.96f) + verticalLineToRelative(2.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.5f, 14.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(19.5f, 14.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + } + } + return _shoppingBagPause!! + } + +private var _shoppingBagPause: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShoppingBagPercent.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShoppingBagPercent.kt new file mode 100644 index 00000000..f79bde76 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShoppingBagPercent.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShoppingBagPercent: ImageVector + get() { + if (_shoppingBagPercent != null) { + return _shoppingBagPercent!! + } + _shoppingBagPercent = fluentIcon(name = "Regular.ShoppingBagPercent") { + fluentPath { + moveTo(7.0f, 5.0f) + verticalLineToRelative(2.0f) + lineTo(5.5f, 7.0f) + curveTo(4.67f, 7.0f, 4.0f, 7.67f, 4.0f, 8.5f) + lineTo(4.0f, 18.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, 4.0f) + horizontalLineToRelative(4.17f) + arcToRelative(1.76f, 1.76f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(8.0f, 20.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 5.5f, 18.0f) + lineTo(5.5f, 8.5f) + horizontalLineToRelative(7.51f) + verticalLineToRelative(2.83f) + curveToRelative(0.45f, -0.21f, 0.96f, -0.33f, 1.49f, -0.33f) + horizontalLineToRelative(0.01f) + lineTo(14.51f, 8.5f) + horizontalLineToRelative(3.99f) + verticalLineToRelative(5.53f) + lineToRelative(1.5f, -1.5f) + lineTo(20.0f, 8.5f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(17.0f, 7.0f) + lineTo(17.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -5.0f, -2.24f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 7.0f, 5.0f) + close() + moveTo(11.5f, 5.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-3.0f) + lineTo(8.5f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + close() + moveTo(15.5f, 7.0f) + lineTo(13.0f, 7.0f) + lineTo(13.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -0.16f, -0.96f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 15.5f, 5.0f) + verticalLineToRelative(2.0f) + close() + moveTo(14.5f, 17.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) + close() + moveTo(14.5f, 13.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(20.5f, 23.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) + close() + moveTo(20.5f, 19.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(21.78f, 14.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-7.5f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(7.5f, -7.5f) + close() + } + } + return _shoppingBagPercent!! + } + +private var _shoppingBagPercent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShoppingBagPlay.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShoppingBagPlay.kt new file mode 100644 index 00000000..c95b98ea --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShoppingBagPlay.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShoppingBagPlay: ImageVector + get() { + if (_shoppingBagPlay != null) { + return _shoppingBagPlay!! + } + _shoppingBagPlay = fluentIcon(name = "Regular.ShoppingBagPlay") { + fluentPath { + moveTo(7.0f, 5.0f) + verticalLineToRelative(2.0f) + lineTo(5.5f, 7.0f) + curveTo(4.67f, 7.0f, 4.0f, 7.67f, 4.0f, 8.5f) + lineTo(4.0f, 18.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, 4.0f) + horizontalLineToRelative(4.81f) + arcToRelative(6.52f, 6.52f, 0.0f, false, true, -1.08f, -1.5f) + lineTo(8.0f, 20.5f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 5.5f, 18.0f) + lineTo(5.5f, 8.5f) + lineTo(13.0f, 8.5f) + verticalLineToRelative(4.31f) + curveToRelative(0.44f, -0.43f, 0.95f, -0.8f, 1.5f, -1.08f) + lineTo(14.5f, 8.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(2.58f) + curveToRelative(0.52f, 0.08f, 1.03f, 0.22f, 1.5f, 0.42f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(17.0f, 7.0f) + lineTo(17.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -5.0f, -2.24f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 7.0f, 5.0f) + close() + moveTo(10.0f, 3.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-3.0f) + lineTo(8.5f, 5.0f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + close() + moveTo(15.5f, 7.0f) + lineTo(13.0f, 7.0f) + lineTo(13.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -0.16f, -0.96f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 15.5f, 5.0f) + verticalLineToRelative(2.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(16.91f, 15.1f) + arcToRelative(0.55f, 0.55f, 0.0f, false, false, -0.54f, -0.05f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.2f, 0.13f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, -0.18f, 0.44f) + verticalLineToRelative(3.76f) + arcToRelative(0.61f, 0.61f, 0.0f, false, false, 0.19f, 0.44f) + curveToRelative(0.05f, 0.05f, 0.12f, 0.1f, 0.19f, 0.13f) + arcToRelative(0.55f, 0.55f, 0.0f, false, false, 0.44f, 0.0f) + arcToRelative(0.66f, 0.66f, 0.0f, false, false, 0.11f, -0.05f) + lineToRelative(2.8f, -1.92f) + arcToRelative(0.56f, 0.56f, 0.0f, false, false, 0.2f, -0.22f) + arcToRelative(0.65f, 0.65f, 0.0f, false, false, 0.0f, -0.6f) + arcToRelative(0.6f, 0.6f, 0.0f, false, false, -0.2f, -0.22f) + lineToRelative(-2.8f, -1.84f) + close() + } + } + return _shoppingBagPlay!! + } + +private var _shoppingBagPlay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShoppingBagTag.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShoppingBagTag.kt new file mode 100644 index 00000000..590e488d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ShoppingBagTag.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ShoppingBagTag: ImageVector + get() { + if (_shoppingBagTag != null) { + return _shoppingBagTag!! + } + _shoppingBagTag = fluentIcon(name = "Regular.ShoppingBagTag") { + fluentPath { + moveTo(7.0f, 7.0f) + lineTo(7.0f, 5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 5.0f, -2.24f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 17.0f, 5.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(1.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(4.32f) + lineToRelative(-0.97f, -0.96f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -0.53f, -0.41f) + lineTo(18.5f, 8.5f) + horizontalLineToRelative(-3.99f) + lineTo(14.51f, 11.0f) + horizontalLineToRelative(-0.5f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -1.0f, 0.17f) + lineTo(13.01f, 8.5f) + lineTo(5.5f, 8.5f) + lineTo(5.5f, 18.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 8.0f, 20.5f) + horizontalLineToRelative(5.3f) + lineToRelative(1.47f, 1.5f) + lineTo(8.0f, 22.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f) + lineTo(4.0f, 8.5f) + curveTo(4.0f, 7.67f, 4.67f, 7.0f, 5.5f, 7.0f) + lineTo(7.0f, 7.0f) + close() + moveTo(11.5f, 7.0f) + lineTo(11.5f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(3.0f) + close() + moveTo(13.0f, 7.0f) + horizontalLineToRelative(2.5f) + lineTo(15.5f, 5.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.66f, -0.96f) + curveToRelative(0.1f, 0.3f, 0.16f, 0.63f, 0.16f, 0.96f) + verticalLineToRelative(2.0f) + close() + moveTo(12.57f, 18.33f) + lineTo(16.57f, 22.4f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.86f, 0.02f) + lineToRelative(2.99f, -3.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -0.01f, -2.83f) + lineToRelative(-4.08f, -4.01f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.41f, -0.58f) + lineTo(14.0f, 12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(2.93f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.57f, 1.4f) + close() + moveTo(16.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + } + } + return _shoppingBagTag!! + } + +private var _shoppingBagTag: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Shortpick.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Shortpick.kt new file mode 100644 index 00000000..8fdb5a9f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Shortpick.kt @@ -0,0 +1,127 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Shortpick: ImageVector + get() { + if (_shortpick != null) { + return _shortpick!! + } + _shortpick = fluentIcon(name = "Regular.Shortpick") { + fluentPath { + moveTo(8.96f, 3.5f) + lineTo(8.5f, 3.5f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(0.46f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.71f) + curveTo(7.56f, 7.0f, 7.0f, 6.44f, 7.0f, 5.75f) + verticalLineToRelative(-2.5f) + curveTo(7.0f, 2.56f, 7.56f, 2.0f, 8.25f, 2.0f) + horizontalLineToRelative(0.71f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(11.5f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.0f) + close() + moveTo(15.04f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.46f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-0.46f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.71f) + curveTo(16.44f, 7.0f, 17.0f, 6.44f, 17.0f, 5.75f) + verticalLineToRelative(-2.5f) + curveTo(17.0f, 2.56f, 16.44f, 2.0f, 15.75f, 2.0f) + horizontalLineToRelative(-0.71f) + close() + moveTo(11.5f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.0f) + close() + moveTo(5.5f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(10.0f) + curveTo(4.0f, 20.55f, 5.46f, 22.0f, 7.25f, 22.0f) + horizontalLineToRelative(9.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(10.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-9.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-10.0f) + close() + moveTo(8.25f, 14.0f) + curveTo(7.56f, 14.0f, 7.0f, 14.56f, 7.0f, 15.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(7.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-7.5f) + close() + moveTo(8.5f, 17.5f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(7.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-7.0f) + close() + moveTo(8.5f, 9.5f) + horizontalLineToRelative(0.46f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.71f) + curveTo(7.56f, 8.0f, 7.0f, 8.56f, 7.0f, 9.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(0.71f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(8.5f, 11.5f) + verticalLineToRelative(-2.0f) + close() + moveTo(10.75f, 8.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(14.29f, 8.75f) + curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(0.71f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineToRelative(-0.71f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.46f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(-0.46f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(10.75f, 12.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _shortpick!! + } + +private var _shortpick: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Showerhead.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Showerhead.kt new file mode 100644 index 00000000..e5142618 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Showerhead.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Showerhead: ImageVector + get() { + if (_showerhead != null) { + return _showerhead!! + } + _showerhead = fluentIcon(name = "Regular.Showerhead") { + fluentPath { + moveToRelative(15.6f, 4.86f) + lineToRelative(2.13f, -2.13f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 3.53f, 3.53f) + lineToRelative(-2.12f, 2.12f) + arcToRelative(8.0f, 8.0f, 0.0f, false, true, -1.2f, 8.98f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -4.18f, 2.4f) + lineToRelative(-9.5f, -9.48f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.36f, -4.2f) + arcToRelative(8.0f, 8.0f, 0.0f, false, true, 8.98f, -1.22f) + close() + moveTo(18.31f, 7.09f) + lineTo(20.2f, 5.2f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.41f, -1.4f) + lineTo(16.9f, 5.67f) + arcToRelative(8.08f, 8.08f, 0.0f, false, true, 1.41f, 1.4f) + close() + moveTo(5.33f, 7.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.4f) + lineToRelative(9.49f, 9.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.4f, -1.41f) + lineTo(6.75f, 7.8f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.41f, 0.0f) + close() + moveTo(7.78f, 17.27f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(2.0f, -2.0f) + close() + moveTo(10.28f, 18.71f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(2.0f, -2.0f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(5.28f, 14.77f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(2.0f, -2.0f) + close() + moveTo(17.1f, 16.03f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 7.96f, 6.9f) + lineToRelative(9.14f, 9.14f) + close() + } + } + return _showerhead!! + } + +private var _showerhead: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SignOut.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SignOut.kt new file mode 100644 index 00000000..cb763cb6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SignOut.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SignOut: ImageVector + get() { + if (_signOut != null) { + return _signOut!! + } + _signOut = fluentIcon(name = "Regular.SignOut") { + fluentPath { + moveTo(8.5f, 11.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(12.0f, 4.35f) + lineTo(12.0f, 11.0f) + horizontalLineToRelative(7.44f) + lineToRelative(-1.72f, -1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + lineToRelative(3.0f, 3.0f) + curveToRelative(0.26f, 0.26f, 0.29f, 0.68f, 0.07f, 0.97f) + lineToRelative(-0.07f, 0.09f) + lineToRelative(-3.0f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.97f) + lineToRelative(0.07f, -0.09f) + lineToRelative(1.71f, -1.72f) + lineTo(12.0f, 12.5f) + verticalLineToRelative(6.75f) + curveToRelative(0.0f, 0.47f, -0.42f, 0.82f, -0.88f, 0.74f) + lineToRelative(-8.5f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.62f, -0.74f) + verticalLineToRelative(-12.0f) + curveToRelative(0.0f, -0.37f, 0.27f, -0.68f, 0.63f, -0.74f) + lineToRelative(8.5f, -1.4f) + curveToRelative(0.46f, -0.07f, 0.87f, 0.28f, 0.87f, 0.74f) + close() + moveTo(10.5f, 5.24f) + lineTo(3.5f, 6.39f) + verticalLineToRelative(10.73f) + lineToRelative(7.0f, 1.24f) + lineTo(10.5f, 5.24f) + close() + moveTo(13.0f, 18.5f) + horizontalLineToRelative(0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + lineToRelative(-0.01f, -4.25f) + lineTo(13.0f, 13.5f) + verticalLineToRelative(5.0f) + close() + moveTo(13.0f, 10.0f) + lineTo(13.0f, 5.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.37f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) + verticalLineToRelative(0.1f) + lineTo(14.5f, 10.0f) + lineTo(13.0f, 10.0f) + close() + } + } + return _signOut!! + } + +private var _signOut: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Signature.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Signature.kt new file mode 100644 index 00000000..fd37b4bf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Signature.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Signature: ImageVector + get() { + if (_signature != null) { + return _signature!! + } + _signature = fluentIcon(name = "Regular.Signature") { + fluentPath { + moveTo(14.75f, 16.5f) + curveToRelative(1.3f, 0.0f, 1.82f, 0.58f, 2.2f, 1.87f) + lineToRelative(0.07f, 0.24f) + curveToRelative(0.19f, 0.66f, 0.3f, 0.86f, 0.52f, 0.95f) + curveToRelative(0.26f, 0.1f, 0.43f, 0.09f, 0.7f, -0.05f) + lineToRelative(0.15f, -0.08f) + lineToRelative(0.17f, -0.11f) + lineToRelative(0.67f, -0.46f) + curveToRelative(0.61f, -0.4f, 1.17f, -0.67f, 1.84f, -0.84f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.36f, 1.46f) + curveToRelative(-0.4f, 0.1f, -0.76f, 0.25f, -1.14f, 0.49f) + lineToRelative(-0.3f, 0.19f) + lineToRelative(-0.48f, 0.33f) + curveToRelative(-0.23f, 0.15f, -0.4f, 0.26f, -0.58f, 0.35f) + arcToRelative(2.2f, 2.2f, 0.0f, false, true, -1.96f, 0.1f) + curveToRelative(-0.75f, -0.3f, -1.05f, -0.78f, -1.33f, -1.72f) + lineToRelative(-0.16f, -0.54f) + curveToRelative(-0.18f, -0.59f, -0.3f, -0.68f, -0.73f, -0.68f) + curveToRelative(-0.3f, 0.0f, -0.63f, 0.16f, -1.07f, 0.52f) + lineToRelative(-0.18f, 0.16f) + lineToRelative(-0.92f, 0.88f) + curveToRelative(-1.41f, 1.32f, -2.61f, 1.97f, -4.33f, 1.97f) + curveToRelative(-1.69f, 0.0f, -3.15f, -0.26f, -4.37f, -0.77f) + lineToRelative(2.95f, -0.8f) + curveToRelative(0.45f, 0.04f, 0.92f, 0.07f, 1.42f, 0.07f) + curveToRelative(1.18f, 0.0f, 2.03f, -0.42f, 3.09f, -1.37f) + lineToRelative(0.25f, -0.24f) + lineToRelative(0.54f, -0.5f) + arcToRelative(12.0f, 12.0f, 0.0f, false, true, 0.59f, -0.55f) + curveToRelative(0.68f, -0.57f, 1.3f, -0.87f, 2.03f, -0.87f) + close() + moveTo(19.03f, 2.97f) + arcToRelative(3.58f, 3.58f, 0.0f, false, true, 0.0f, 5.06f) + lineToRelative(-0.29f, 0.29f) + curveToRelative(1.15f, 1.4f, 1.11f, 2.89f, 0.04f, 3.96f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(2.0f, -2.0f) + curveToRelative(0.48f, -0.49f, 0.54f, -1.09f, -0.04f, -1.84f) + lineTo(9.06f, 18.0f) + curveToRelative(-0.27f, 0.28f, -0.62f, 0.48f, -1.0f, 0.58f) + lineToRelative(-5.11f, 1.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.92f, -0.93f) + lineToRelative(1.4f, -5.11f) + curveToRelative(0.1f, -0.38f, 0.3f, -0.72f, 0.57f, -1.0f) + lineToRelative(9.97f, -9.97f) + arcToRelative(3.58f, 3.58f, 0.0f, false, true, 5.06f, 0.0f) + close() + moveTo(15.03f, 4.03f) + lineTo(5.06f, 14.0f) + curveToRelative(-0.09f, 0.1f, -0.16f, 0.2f, -0.19f, 0.33f) + lineToRelative(-1.05f, 3.85f) + lineToRelative(3.85f, -1.05f) + curveToRelative(0.13f, -0.03f, 0.24f, -0.1f, 0.33f, -0.2f) + lineToRelative(9.97f, -9.96f) + arcToRelative(2.08f, 2.08f, 0.0f, true, false, -2.94f, -2.94f) + close() + } + } + return _signature!! + } + +private var _signature: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Sim.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Sim.kt new file mode 100644 index 00000000..ee497dfc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Sim.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Sim: ImageVector + get() { + if (_sim != null) { + return _sim!! + } + _sim = fluentIcon(name = "Regular.Sim") { + fluentPath { + moveTo(9.75f, 10.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 7.0f, 12.75f) + verticalLineToRelative(3.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 9.75f, 19.0f) + horizontalLineToRelative(4.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 17.0f, 16.25f) + verticalLineToRelative(-3.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 14.25f, 10.0f) + horizontalLineToRelative(-4.5f) + close() + moveTo(8.5f, 12.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + lineTo(12.0f, 11.5f) + lineTo(12.0f, 14.0f) + lineTo(8.5f, 14.0f) + verticalLineToRelative(-1.25f) + close() + moveTo(8.5f, 15.5f) + lineTo(12.0f, 15.5f) + verticalLineToRelative(2.0f) + lineTo(9.75f, 17.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + verticalLineToRelative(-0.75f) + close() + moveTo(13.5f, 17.5f) + verticalLineToRelative(-6.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineToRelative(-0.75f) + close() + moveTo(7.25f, 2.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 4.0f, 5.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.55f, 5.46f, 22.0f, 7.25f, 22.0f) + horizontalLineToRelative(9.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(20.0f, 9.29f) + curveToRelative(0.0f, -0.87f, -0.34f, -1.7f, -0.95f, -2.3f) + lineTo(15.0f, 2.95f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -2.3f, -0.95f) + lineTo(7.25f, 2.0f) + close() + moveTo(5.5f, 5.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(5.46f) + curveToRelative(0.47f, 0.0f, 0.91f, 0.18f, 1.24f, 0.51f) + lineTo(18.0f, 8.05f) + curveToRelative(0.33f, 0.33f, 0.51f, 0.77f, 0.51f, 1.24f) + verticalLineToRelative(9.46f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-9.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(5.51f, 5.25f) + close() + } + } + return _sim!! + } + +private var _sim: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SkipBack10.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SkipBack10.kt new file mode 100644 index 00000000..05d3de70 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SkipBack10.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SkipBack10: ImageVector + get() { + if (_skipBack10 != null) { + return _skipBack10!! + } + _skipBack10 = fluentIcon(name = "Regular.SkipBack10") { + fluentPath { + moveTo(2.75f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(5.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.9f) + arcToRelative(8.33f, 8.33f, 0.0f, false, true, 4.12f, -3.06f) + arcTo(9.68f, 9.68f, 0.0f, false, true, 19.6f, 9.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.32f, -0.72f) + arcTo(11.19f, 11.19f, 0.0f, false, false, 8.03f, 3.51f) + arcTo(9.61f, 9.61f, 0.0f, false, false, 3.5f, 6.65f) + verticalLineToRelative(-3.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(8.95f, 11.03f) + curveToRelative(0.33f, 0.09f, 0.55f, 0.38f, 0.55f, 0.72f) + verticalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-6.42f) + curveToRelative(-0.38f, 0.37f, -0.84f, 0.75f, -1.36f, 1.06f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.78f, -1.28f) + arcToRelative(6.88f, 6.88f, 0.0f, false, false, 2.24f, -2.24f) + lineToRelative(0.01f, -0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.84f, -0.33f) + close() + moveTo(13.2f, 12.63f) + curveToRelative(0.55f, -1.0f, 1.48f, -1.63f, 2.8f, -1.63f) + curveToRelative(1.32f, 0.0f, 2.25f, 0.64f, 2.8f, 1.63f) + curveToRelative(0.53f, 0.93f, 0.7f, 2.15f, 0.7f, 3.37f) + curveToRelative(0.0f, 1.22f, -0.17f, 2.44f, -0.7f, 3.37f) + arcTo(3.05f, 3.05f, 0.0f, false, true, 16.0f, 21.0f) + arcToRelative(3.05f, 3.05f, 0.0f, false, true, -2.8f, -1.63f) + arcToRelative(7.03f, 7.03f, 0.0f, false, true, -0.7f, -3.37f) + curveToRelative(0.0f, -1.22f, 0.18f, -2.44f, 0.7f, -3.37f) + close() + moveTo(14.5f, 13.36f) + arcTo(5.6f, 5.6f, 0.0f, false, false, 14.0f, 16.0f) + curveToRelative(0.0f, 1.12f, 0.17f, 2.03f, 0.5f, 2.64f) + curveToRelative(0.31f, 0.55f, 0.76f, 0.86f, 1.5f, 0.86f) + reflectiveCurveToRelative(1.19f, -0.31f, 1.5f, -0.86f) + curveToRelative(0.33f, -0.6f, 0.5f, -1.52f, 0.5f, -2.64f) + arcToRelative(5.6f, 5.6f, 0.0f, false, false, -0.5f, -2.64f) + curveToRelative(-0.31f, -0.55f, -0.76f, -0.86f, -1.5f, -0.86f) + reflectiveCurveToRelative(-1.19f, 0.31f, -1.5f, 0.86f) + close() + } + } + return _skipBack10!! + } + +private var _skipBack10: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SkipForward10.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SkipForward10.kt new file mode 100644 index 00000000..94597a0c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SkipForward10.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SkipForward10: ImageVector + get() { + if (_skipForward10 != null) { + return _skipForward10!! + } + _skipForward10 = fluentIcon(name = "Regular.SkipForward10") { + fluentPath { + moveTo(21.25f, 2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(5.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.9f) + arcToRelative(8.33f, 8.33f, 0.0f, false, false, -4.12f, -3.06f) + arcTo(9.69f, 9.69f, 0.0f, false, false, 4.4f, 9.1f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.32f, -0.72f) + arcToRelative(11.18f, 11.18f, 0.0f, false, true, 12.88f, -4.88f) + arcToRelative(9.61f, 9.61f, 0.0f, false, true, 4.53f, 3.14f) + verticalLineToRelative(-3.4f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(16.0f, 11.0f) + curveToRelative(-1.32f, 0.0f, -2.25f, 0.64f, -2.8f, 1.63f) + curveToRelative(-0.52f, 0.93f, -0.7f, 2.15f, -0.7f, 3.37f) + curveToRelative(0.0f, 1.22f, 0.18f, 2.44f, 0.7f, 3.37f) + curveToRelative(0.55f, 1.0f, 1.48f, 1.63f, 2.8f, 1.63f) + curveToRelative(1.32f, 0.0f, 2.25f, -0.64f, 2.8f, -1.63f) + curveToRelative(0.53f, -0.93f, 0.7f, -2.15f, 0.7f, -3.37f) + curveToRelative(0.0f, -1.22f, -0.17f, -2.44f, -0.7f, -3.37f) + arcTo(3.05f, 3.05f, 0.0f, false, false, 16.0f, 11.0f) + close() + moveTo(14.0f, 16.0f) + curveToRelative(0.0f, -1.12f, 0.17f, -2.03f, 0.5f, -2.64f) + curveToRelative(0.31f, -0.55f, 0.76f, -0.86f, 1.5f, -0.86f) + reflectiveCurveToRelative(1.19f, 0.31f, 1.5f, 0.86f) + curveToRelative(0.33f, 0.6f, 0.5f, 1.52f, 0.5f, 2.64f) + arcToRelative(5.6f, 5.6f, 0.0f, false, true, -0.5f, 2.64f) + curveToRelative(-0.31f, 0.55f, -0.76f, 0.86f, -1.5f, 0.86f) + reflectiveCurveToRelative(-1.19f, -0.31f, -1.5f, -0.86f) + arcTo(5.6f, 5.6f, 0.0f, false, true, 14.0f, 16.0f) + close() + moveTo(9.5f, 11.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.39f, -0.4f) + verticalLineToRelative(0.01f) + arcToRelative(3.44f, 3.44f, 0.0f, false, true, -0.15f, 0.22f) + arcToRelative(6.88f, 6.88f, 0.0f, false, true, -2.1f, 2.03f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.78f, 1.28f) + curveToRelative(0.52f, -0.31f, 0.98f, -0.69f, 1.36f, -1.06f) + verticalLineToRelative(6.42f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-8.5f) + close() + } + } + return _skipForward10!! + } + +private var _skipForward10: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SkipForward30.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SkipForward30.kt new file mode 100644 index 00000000..ef699a0d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SkipForward30.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SkipForward30: ImageVector + get() { + if (_skipForward30 != null) { + return _skipForward30!! + } + _skipForward30 = fluentIcon(name = "Regular.SkipForward30") { + fluentPath { + moveTo(21.25f, 2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(5.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(3.9f) + arcToRelative(8.33f, 8.33f, 0.0f, false, false, -4.12f, -3.06f) + arcTo(9.69f, 9.69f, 0.0f, false, false, 4.4f, 9.1f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.32f, -0.72f) + arcTo(11.19f, 11.19f, 0.0f, false, true, 15.97f, 3.5f) + arcToRelative(9.61f, 9.61f, 0.0f, false, true, 4.53f, 3.14f) + verticalLineToRelative(-3.4f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(8.75f, 15.25f) + curveToRelative(0.76f, 0.0f, 1.25f, -0.22f, 1.54f, -0.47f) + curveToRelative(0.28f, -0.26f, 0.4f, -0.58f, 0.4f, -0.88f) + curveToRelative(-0.03f, -0.55f, -0.55f, -1.4f, -2.19f, -1.4f) + arcToRelative(3.35f, 3.35f, 0.0f, false, false, -2.2f, 0.83f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.1f, -1.03f) + lineToRelative(0.01f, -0.01f) + lineToRelative(0.02f, -0.02f) + arcToRelative(2.35f, 2.35f, 0.0f, false, true, 0.23f, -0.2f) + arcTo(4.85f, 4.85f, 0.0f, false, true, 8.5f, 11.0f) + curveToRelative(2.2f, 0.0f, 3.63f, 1.27f, 3.68f, 2.85f) + arcTo(2.61f, 2.61f, 0.0f, false, true, 11.16f, 16.0f) + lineToRelative(0.13f, 0.1f) + curveToRelative(0.6f, 0.55f, 0.92f, 1.3f, 0.9f, 2.05f) + curveTo(12.12f, 19.73f, 10.7f, 21.0f, 8.5f, 21.0f) + arcToRelative(4.85f, 4.85f, 0.0f, false, true, -3.27f, -1.27f) + lineToRelative(-0.02f, -0.02f) + reflectiveCurveToRelative(-0.47f, -0.6f, 0.03f, -1.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.05f, 0.03f) + lineToRelative(0.02f, 0.02f) + lineToRelative(0.1f, 0.08f) + arcToRelative(3.35f, 3.35f, 0.0f, false, false, 2.09f, 0.73f) + curveToRelative(1.64f, 0.0f, 2.16f, -0.85f, 2.18f, -1.4f) + curveToRelative(0.01f, -0.3f, -0.1f, -0.62f, -0.4f, -0.88f) + curveToRelative(-0.28f, -0.25f, -0.77f, -0.47f, -1.53f, -0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + close() + moveTo(14.2f, 12.63f) + curveToRelative(0.55f, -1.0f, 1.48f, -1.63f, 2.8f, -1.63f) + curveToRelative(1.32f, 0.0f, 2.25f, 0.64f, 2.8f, 1.63f) + curveToRelative(0.53f, 0.93f, 0.7f, 2.15f, 0.7f, 3.37f) + curveToRelative(0.0f, 1.22f, -0.17f, 2.44f, -0.7f, 3.37f) + arcTo(3.05f, 3.05f, 0.0f, false, true, 17.0f, 21.0f) + arcToRelative(3.05f, 3.05f, 0.0f, false, true, -2.8f, -1.63f) + arcToRelative(7.03f, 7.03f, 0.0f, false, true, -0.7f, -3.37f) + curveToRelative(0.0f, -1.22f, 0.18f, -2.44f, 0.7f, -3.37f) + close() + moveTo(15.5f, 13.36f) + arcTo(5.6f, 5.6f, 0.0f, false, false, 15.0f, 16.0f) + curveToRelative(0.0f, 1.12f, 0.17f, 2.03f, 0.5f, 2.64f) + curveToRelative(0.31f, 0.55f, 0.76f, 0.86f, 1.5f, 0.86f) + reflectiveCurveToRelative(1.19f, -0.31f, 1.5f, -0.86f) + curveToRelative(0.33f, -0.6f, 0.5f, -1.52f, 0.5f, -2.64f) + arcToRelative(5.6f, 5.6f, 0.0f, false, false, -0.5f, -2.64f) + curveToRelative(-0.31f, -0.55f, -0.76f, -0.86f, -1.5f, -0.86f) + reflectiveCurveToRelative(-1.19f, 0.31f, -1.5f, 0.86f) + close() + } + } + return _skipForward30!! + } + +private var _skipForward30: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SkipForwardTab.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SkipForwardTab.kt new file mode 100644 index 00000000..1cc1ef50 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SkipForwardTab.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SkipForwardTab: ImageVector + get() { + if (_skipForwardTab != null) { + return _skipForwardTab!! + } + _skipForwardTab = fluentIcon(name = "Regular.SkipForwardTab") { + fluentPath { + moveTo(21.5f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.4f) + arcTo(9.61f, 9.61f, 0.0f, false, false, 15.47f, 4.0f) + arcTo(11.18f, 11.18f, 0.0f, false, false, 2.6f, 8.89f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.32f, 0.72f) + arcToRelative(9.69f, 9.69f, 0.0f, false, true, 11.12f, -4.17f) + arcToRelative(8.33f, 8.33f, 0.0f, false, true, 4.13f, 3.06f) + horizontalLineToRelative(-3.91f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-5.5f) + close() + moveTo(8.0f, 14.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(8.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + lineTo(8.0f, 14.0f) + close() + moveTo(6.0f, 14.5f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(8.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + verticalLineToRelative(4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + lineTo(8.0f, 20.5f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + verticalLineToRelative(-4.0f) + close() + } + } + return _skipForwardTab!! + } + +private var _skipForwardTab: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlashForward.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlashForward.kt new file mode 100644 index 00000000..4c135088 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlashForward.kt @@ -0,0 +1,29 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SlashForward: ImageVector + get() { + if (_slashForward != null) { + return _slashForward!! + } + _slashForward = fluentIcon(name = "Regular.SlashForward") { + fluentPath { + moveTo(15.5f, 2.04f) + curveToRelative(0.39f, 0.14f, 0.6f, 0.57f, 0.46f, 0.96f) + lineToRelative(-6.5f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.42f, -0.5f) + lineToRelative(6.5f, -18.5f) + curveToRelative(0.14f, -0.39f, 0.57f, -0.6f, 0.96f, -0.46f) + close() + } + } + return _slashForward!! + } + +private var _slashForward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Sleep.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Sleep.kt new file mode 100644 index 00000000..abf0ec6d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Sleep.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Sleep: ImageVector + get() { + if (_sleep != null) { + return _sleep!! + } + _sleep = fluentIcon(name = "Regular.Sleep") { + fluentPath { + moveTo(13.38f, 3.03f) + arcToRelative(9.0f, 9.0f, 0.0f, true, true, -7.9f, 14.1f) + arcToRelative(0.68f, 0.68f, 0.0f, false, true, 0.32f, -1.02f) + curveToRelative(3.4f, -1.21f, 5.21f, -2.62f, 6.27f, -4.63f) + curveToRelative(1.1f, -2.12f, 1.4f, -4.44f, 0.62f, -7.62f) + arcToRelative(0.68f, 0.68f, 0.0f, false, true, 0.69f, -0.83f) + close() + moveTo(14.38f, 4.66f) + lineTo(14.45f, 5.06f) + curveToRelative(0.42f, 2.7f, 0.07f, 4.97f, -1.06f, 7.12f) + curveToRelative(-1.14f, 2.18f, -3.0f, 3.7f, -6.01f, 4.94f) + arcToRelative(7.5f, 7.5f, 0.0f, true, false, 7.68f, -12.29f) + lineToRelative(-0.34f, -0.09f) + lineToRelative(-0.33f, -0.08f) + close() + moveTo(10.99f, 3.66f) + lineTo(11.0f, 3.76f) + lineTo(11.0f, 9.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -1.5f, -1.94f) + verticalLineToRelative(-2.3f) + lineTo(6.0f, 5.83f) + lineTo(6.0f, 10.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -1.5f, -1.94f) + lineTo(4.5f, 5.27f) + curveToRelative(0.0f, -0.3f, 0.17f, -0.55f, 0.43f, -0.68f) + lineToRelative(0.1f, -0.03f) + lineToRelative(5.0f, -1.53f) + curveToRelative(0.42f, -0.12f, 0.84f, 0.13f, 0.95f, 0.53f) + lineToRelative(0.01f, 0.1f) + close() + } + } + return _sleep!! + } + +private var _sleep: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideAdd.kt new file mode 100644 index 00000000..53e6cb60 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideAdd.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SlideAdd: ImageVector + get() { + if (_slideAdd != null) { + return _slideAdd!! + } + _slideAdd = fluentIcon(name = "Regular.SlideAdd") { + fluentPath { + moveTo(2.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) + verticalLineToRelative(6.06f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) + lineTo(20.5f, 6.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(4.75f, 5.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(6.33f) + curveToRelative(0.08f, 0.52f, 0.22f, 1.03f, 0.42f, 1.5f) + lineTo(4.75f, 20.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) + lineTo(2.0f, 6.75f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _slideAdd!! + } + +private var _slideAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideArrowRight.kt new file mode 100644 index 00000000..e2b04eb9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideArrowRight.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SlideArrowRight: ImageVector + get() { + if (_slideArrowRight != null) { + return _slideArrowRight!! + } + _slideArrowRight = fluentIcon(name = "Regular.SlideArrowRight") { + fluentPath { + moveTo(6.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + close() + moveTo(6.0f, 11.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(8.5f) + curveToRelative(0.21f, 0.0f, 0.4f, 0.09f, 0.54f, 0.23f) + curveToRelative(-0.91f, 0.25f, -1.74f, 0.68f, -2.44f, 1.27f) + horizontalLineToRelative(-6.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(20.5f, 6.75f) + verticalLineToRelative(4.98f) + curveToRelative(0.55f, 0.29f, 1.06f, 0.65f, 1.5f, 1.08f) + lineTo(22.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 4.0f) + lineTo(4.75f, 4.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 6.75f) + verticalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 20.0f) + horizontalLineToRelative(6.75f) + curveToRelative(-0.2f, -0.47f, -0.34f, -0.98f, -0.42f, -1.5f) + lineTo(4.75f, 18.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + lineTo(3.5f, 6.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(14.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + close() + moveTo(11.31f, 15.5f) + curveToRelative(0.18f, -0.53f, 0.42f, -1.04f, 0.71f, -1.5f) + lineTo(6.75f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.56f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(19.29f, 17.0f) + lineTo(14.5f, 17.0f) + close() + } + } + return _slideArrowRight!! + } + +private var _slideArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideEraser.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideEraser.kt new file mode 100644 index 00000000..a20031e8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideEraser.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SlideEraser: ImageVector + get() { + if (_slideEraser != null) { + return _slideEraser!! + } + _slideEraser = fluentIcon(name = "Regular.SlideEraser") { + fluentPath { + moveTo(2.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) + verticalLineToRelative(5.79f) + lineToRelative(-0.8f, -0.8f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -0.7f, -0.5f) + verticalLineTo(6.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineTo(4.75f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(7.26f) + curveToRelative(0.02f, 0.53f, 0.2f, 1.06f, 0.57f, 1.5f) + horizontalLineTo(4.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) + verticalLineTo(6.75f) + close() + } + fluentPath { + moveTo(20.5f, 12.44f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.13f, 0.0f) + lineToRelative(-3.11f, 3.11f) + lineToRelative(4.2f, 4.2f) + lineToRelative(3.12f, -3.1f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -2.12f) + lineToRelative(-2.09f, -2.09f) + close() + } + fluentPath { + moveToRelative(13.45f, 17.36f) + lineToRelative(1.1f, -1.1f) + lineToRelative(4.21f, 4.2f) + lineToRelative(-1.1f, 1.1f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.12f, 0.0f) + lineToRelative(-2.09f, -2.08f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -2.12f) + close() + } + } + return _slideEraser!! + } + +private var _slideEraser: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideGrid.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideGrid.kt new file mode 100644 index 00000000..4c5e9adb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideGrid.kt @@ -0,0 +1,106 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SlideGrid: ImageVector + get() { + if (_slideGrid != null) { + return _slideGrid!! + } + _slideGrid = fluentIcon(name = "Regular.SlideGrid") { + fluentPath { + moveTo(5.0f, 13.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(4.0f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineToRelative(-4.0f) + curveTo(5.56f, 17.0f, 5.0f, 16.44f, 5.0f, 15.75f) + verticalLineToRelative(-2.0f) + close() + moveTo(6.5f, 14.0f) + verticalLineToRelative(1.5f) + lineTo(10.0f, 15.5f) + lineTo(10.0f, 14.0f) + lineTo(6.5f, 14.0f) + close() + moveTo(13.75f, 12.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(4.0f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-4.0f) + close() + moveTo(14.0f, 15.5f) + lineTo(14.0f, 14.0f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(1.5f) + lineTo(14.0f, 15.5f) + close() + moveTo(5.0f, 8.25f) + curveTo(5.0f, 7.56f, 5.56f, 7.0f, 6.25f, 7.0f) + horizontalLineToRelative(4.0f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineToRelative(-4.0f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + verticalLineToRelative(-2.0f) + close() + moveTo(6.5f, 8.5f) + lineTo(6.5f, 10.0f) + lineTo(10.0f, 10.0f) + lineTo(10.0f, 8.5f) + lineTo(6.5f, 8.5f) + close() + moveTo(13.75f, 7.0f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(4.0f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-2.0f) + curveTo(19.0f, 7.56f, 18.44f, 7.0f, 17.75f, 7.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(14.0f, 10.0f) + lineTo(14.0f, 8.5f) + horizontalLineToRelative(3.5f) + lineTo(17.5f, 10.0f) + lineTo(14.0f, 10.0f) + close() + moveTo(2.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) + verticalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) + lineTo(4.75f, 20.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) + lineTo(2.0f, 6.75f) + close() + moveTo(4.75f, 5.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(14.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + lineTo(20.5f, 6.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(4.75f, 5.5f) + close() + } + } + return _slideGrid!! + } + +private var _slideGrid: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideHide.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideHide.kt new file mode 100644 index 00000000..dfe20430 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideHide.kt @@ -0,0 +1,124 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SlideHide: ImageVector + get() { + if (_slideHide != null) { + return _slideHide!! + } + _slideHide = fluentIcon(name = "Regular.SlideHide") { + fluentPath { + moveTo(6.75f, 3.0f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 2.0f, 7.75f) + verticalLineToRelative(7.0f) + curveTo(2.0f, 15.99f, 3.0f, 17.0f, 4.25f, 17.0f) + horizontalLineToRelative(0.25f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-7.0f) + curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) + horizontalLineToRelative(10.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.25f) + lineTo(19.0f, 5.5f) + verticalLineToRelative(-0.25f) + curveTo(19.0f, 4.01f, 18.0f, 3.0f, 16.75f, 3.0f) + horizontalLineToRelative(-10.0f) + close() + moveTo(19.25f, 6.5f) + horizontalLineToRelative(0.5f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-1.1f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(6.25f, 11.5f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-2.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(6.99f, 17.14f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.49f, 0.1f) + verticalLineToRelative(1.16f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 2.25f, 2.1f) + horizontalLineToRelative(0.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-0.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) + verticalLineToRelative(-1.1f) + close() + moveTo(22.0f, 17.24f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) + verticalLineToRelative(1.01f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.0f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-1.0f) + close() + moveTo(14.75f, 19.0f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(12.25f, 19.0f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(21.99f, 12.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.49f, 0.1f) + verticalLineToRelative(2.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + verticalLineToRelative(-2.6f) + close() + moveTo(9.5f, 7.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-1.0f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.0f) + curveToRelative(0.42f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + close() + moveTo(15.25f, 6.5f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(12.75f, 6.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + } + } + return _slideHide!! + } + +private var _slideHide: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideLayout.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideLayout.kt new file mode 100644 index 00000000..84e7007a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideLayout.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SlideLayout: ImageVector + get() { + if (_slideLayout != null) { + return _slideLayout!! + } + _slideLayout = fluentIcon(name = "Regular.SlideLayout") { + fluentPath { + moveTo(6.75f, 7.0f) + curveTo(5.78f, 7.0f, 5.0f, 7.78f, 5.0f, 8.75f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(10.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-6.5f) + curveTo(19.0f, 7.78f, 18.22f, 7.0f, 17.25f, 7.0f) + lineTo(6.75f, 7.0f) + close() + moveTo(6.5f, 8.75f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(10.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(1.75f) + horizontalLineToRelative(-11.0f) + lineTo(6.5f, 8.75f) + close() + moveTo(10.5f, 12.0f) + horizontalLineToRelative(7.0f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + lineTo(10.5f, 15.5f) + lineTo(10.5f, 12.0f) + close() + moveTo(9.0f, 12.0f) + verticalLineToRelative(3.5f) + lineTo(6.75f, 15.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + lineTo(6.5f, 12.0f) + lineTo(9.0f, 12.0f) + close() + moveTo(4.75f, 4.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 6.75f) + verticalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 20.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 17.25f) + lineTo(22.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 4.0f) + lineTo(4.75f, 4.0f) + close() + moveTo(3.5f, 6.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(14.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + lineTo(4.75f, 18.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + lineTo(3.5f, 6.75f) + close() + } + } + return _slideLayout!! + } + +private var _slideLayout: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideLink.kt new file mode 100644 index 00000000..f6d9e64d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideLink.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SlideLink: ImageVector + get() { + if (_slideLink != null) { + return _slideLink!! + } + _slideLink = fluentIcon(name = "Regular.SlideLink") { + fluentPath { + moveTo(2.0f, 6.25f) + curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) + horizontalLineToRelative(15.5f) + curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) + verticalLineToRelative(7.13f) + arcToRelative(4.73f, 4.73f, 0.0f, false, false, -1.5f, -0.71f) + lineTo(20.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(4.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(6.92f) + curveToRelative(0.14f, 0.55f, 0.39f, 1.05f, 0.7f, 1.5f) + lineTo(4.26f, 20.0f) + curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) + lineTo(2.0f, 6.25f) + close() + moveTo(23.0f, 17.25f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.75f, -3.75f) + horizontalLineToRelative(-0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -0.15f, 4.5f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + lineTo(19.25f, 21.0f) + horizontalLineToRelative(0.2f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 23.0f, 17.24f) + close() + moveTo(16.5f, 14.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-0.2f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, 0.2f, 7.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + horizontalLineToRelative(-0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.15f, -4.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(20.0f, 17.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + } + } + return _slideLink!! + } + +private var _slideLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideMicrophone.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideMicrophone.kt new file mode 100644 index 00000000..05459d6d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideMicrophone.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SlideMicrophone: ImageVector + get() { + if (_slideMicrophone != null) { + return _slideMicrophone!! + } + _slideMicrophone = fluentIcon(name = "Regular.SlideMicrophone") { + fluentPath { + moveTo(4.75f, 4.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 6.75f) + verticalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 20.0f) + horizontalLineToRelative(9.0f) + curveToRelative(-0.3f, -0.46f, -0.51f, -0.96f, -0.64f, -1.5f) + lineTo(4.75f, 18.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + lineTo(3.5f, 6.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(14.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(4.87f) + curveToRelative(0.95f, 0.67f, 1.5f, 1.78f, 1.5f, 2.88f) + lineTo(22.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 4.0f) + lineTo(4.75f, 4.0f) + close() + moveTo(16.52f, 20.0f) + arcToRelative(2.98f, 2.98f, 0.0f, false, true, -1.34f, -1.5f) + curveToRelative(-0.12f, -0.3f, -0.18f, -0.64f, -0.18f, -1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + curveToRelative(0.0f, 0.34f, 0.05f, 0.68f, 0.15f, 1.0f) + curveToRelative(0.17f, 0.55f, 0.47f, 1.06f, 0.87f, 1.5f) + arcTo(4.77f, 4.77f, 0.0f, false, false, 18.0f, 21.47f) + verticalLineToRelative(1.03f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-1.03f) + curveToRelative(2.25f, -0.25f, 4.0f, -1.97f, 4.0f, -3.97f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + curveToRelative(0.0f, 1.75f, -1.57f, 3.0f, -3.5f, 3.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -1.98f, -0.5f) + close() + moveTo(18.5f, 19.5f) + curveToRelative(-0.86f, 0.0f, -1.56f, -0.41f, -2.0f, -1.0f) + curveToRelative(-0.32f, -0.44f, -0.5f, -0.97f, -0.5f, -1.5f) + verticalLineToRelative(-2.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + lineTo(21.0f, 17.0f) + curveToRelative(0.0f, 1.25f, -1.0f, 2.5f, -2.5f, 2.5f) + close() + moveTo(6.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + close() + moveTo(6.0f, 11.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(6.0f, 14.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _slideMicrophone!! + } + +private var _slideMicrophone: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideMultiple.kt new file mode 100644 index 00000000..3c4470de --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideMultiple.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SlideMultiple: ImageVector + get() { + if (_slideMultiple != null) { + return _slideMultiple!! + } + _slideMultiple = fluentIcon(name = "Regular.SlideMultiple") { + fluentPath { + moveTo(6.75f, 3.0f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 2.0f, 7.75f) + verticalLineToRelative(7.0f) + curveTo(2.0f, 15.99f, 3.0f, 17.0f, 4.25f, 17.0f) + horizontalLineToRelative(0.25f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-7.0f) + curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) + horizontalLineToRelative(10.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.25f) + lineTo(19.0f, 5.5f) + verticalLineToRelative(-0.25f) + curveTo(19.0f, 4.01f, 18.0f, 3.0f, 16.75f, 3.0f) + horizontalLineToRelative(-10.0f) + close() + moveTo(7.75f, 6.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(12.0f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-12.0f) + close() + moveTo(7.0f, 8.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(12.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-9.5f) + close() + } + } + return _slideMultiple!! + } + +private var _slideMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideMultipleArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideMultipleArrowRight.kt new file mode 100644 index 00000000..6d9928db --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideMultipleArrowRight.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SlideMultipleArrowRight: ImageVector + get() { + if (_slideMultipleArrowRight != null) { + return _slideMultipleArrowRight!! + } + _slideMultipleArrowRight = fluentIcon(name = "Regular.SlideMultipleArrowRight") { + fluentPath { + moveTo(6.75f, 3.0f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 2.0f, 7.75f) + verticalLineToRelative(7.0f) + curveTo(2.0f, 15.99f, 3.0f, 17.0f, 4.25f, 17.0f) + horizontalLineToRelative(0.25f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-7.0f) + curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) + horizontalLineToRelative(10.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.25f) + lineTo(19.0f, 5.5f) + verticalLineToRelative(-0.25f) + curveTo(19.0f, 4.01f, 18.0f, 3.0f, 16.75f, 3.0f) + horizontalLineToRelative(-10.0f) + close() + moveTo(7.75f, 6.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(3.98f) + arcToRelative(6.46f, 6.46f, 0.0f, false, true, -0.56f, -1.5f) + lineTo(7.75f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(12.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.98f) + curveToRelative(0.55f, 0.29f, 1.06f, 0.65f, 1.5f, 1.08f) + lineTo(22.0f, 8.75f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-12.0f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(14.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(19.29f, 17.0f) + lineTo(14.5f, 17.0f) + close() + } + } + return _slideMultipleArrowRight!! + } + +private var _slideMultipleArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideMultipleSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideMultipleSearch.kt new file mode 100644 index 00000000..c3f4250e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideMultipleSearch.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SlideMultipleSearch: ImageVector + get() { + if (_slideMultipleSearch != null) { + return _slideMultipleSearch!! + } + _slideMultipleSearch = fluentIcon(name = "Regular.SlideMultipleSearch") { + fluentPath { + moveTo(6.75f, 3.0f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 2.0f, 7.75f) + verticalLineToRelative(4.5f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 1.5f, -0.88f) + lineTo(3.5f, 7.75f) + curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) + horizontalLineToRelative(10.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.25f) + lineTo(19.0f, 5.5f) + verticalLineToRelative(-0.25f) + curveTo(19.0f, 4.01f, 18.0f, 3.0f, 16.75f, 3.0f) + horizontalLineToRelative(-10.0f) + close() + moveTo(19.75f, 20.5f) + horizontalLineToRelative(-7.78f) + lineToRelative(-1.5f, -1.5f) + horizontalLineToRelative(9.28f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(2.46f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 5.5f, 11.0f) + lineTo(5.5f, 8.75f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(12.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + close() + moveTo(5.5f, 21.0f) + curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) + lineToRelative(2.62f, 2.61f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.61f, -2.61f) + arcTo(4.5f, 4.5f, 0.0f, true, false, 5.5f, 21.0f) + close() + moveTo(5.5f, 19.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) + close() + } + } + return _slideMultipleSearch!! + } + +private var _slideMultipleSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideSearch.kt new file mode 100644 index 00000000..d03c1e1c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideSearch.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SlideSearch: ImageVector + get() { + if (_slideSearch != null) { + return _slideSearch!! + } + _slideSearch = fluentIcon(name = "Regular.SlideSearch") { + fluentPath { + moveTo(4.75f, 4.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 6.75f) + verticalLineToRelative(4.5f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 1.5f, -0.88f) + lineTo(3.5f, 6.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(14.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineToRelative(-8.28f) + lineToRelative(1.5f, 1.5f) + horizontalLineToRelative(6.78f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 17.25f) + lineTo(22.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 4.0f) + lineTo(4.75f, 4.0f) + close() + moveTo(8.66f, 11.0f) + curveToRelative(0.58f, 0.4f, 1.07f, 0.91f, 1.45f, 1.5f) + horizontalLineToRelative(7.14f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(8.66f, 11.0f) + close() + moveTo(15.25f, 15.5f) + lineTo(11.0f, 15.5f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -0.2f, -1.5f) + horizontalLineToRelative(4.45f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(6.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.5f) + close() + moveTo(5.5f, 20.0f) + curveToRelative(0.97f, 0.0f, 1.87f, -0.3f, 2.6f, -0.83f) + lineToRelative(2.62f, 2.61f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.61f, -2.61f) + arcTo(4.5f, 4.5f, 0.0f, true, false, 5.5f, 20.0f) + close() + moveTo(5.5f, 18.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, -6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, 6.0f) + close() + } + } + return _slideSearch!! + } + +private var _slideSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideSettings.kt new file mode 100644 index 00000000..8f96af0b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideSettings.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SlideSettings: ImageVector + get() { + if (_slideSettings != null) { + return _slideSettings!! + } + _slideSettings = fluentIcon(name = "Regular.SlideSettings") { + fluentPath { + moveTo(2.0f, 7.25f) + curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) + horizontalLineToRelative(13.5f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(5.56f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) + lineTo(20.5f, 7.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(5.25f, 5.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(5.83f) + curveToRelative(0.08f, 0.52f, 0.22f, 1.03f, 0.42f, 1.5f) + lineTo(5.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + close() + moveTo(14.28f, 13.98f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.59f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) + lineToRelative(0.55f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) + lineToRelative(-0.19f, 0.64f) + curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) + lineToRelative(0.49f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) + lineToRelative(-0.2f, -0.69f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) + lineToRelative(0.59f, -0.14f) + arcToRelative(5.72f, 5.72f, 0.0f, false, false, 0.0f, -1.8f) + lineToRelative(-0.55f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.19f, -0.63f) + curveToRelative(-0.44f, -0.39f, -0.94f, -0.7f, -1.49f, -0.93f) + lineToRelative(-0.49f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) + lineToRelative(0.2f, 0.7f) + close() + moveTo(17.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) + close() + } + } + return _slideSettings!! + } + +private var _slideSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideSize.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideSize.kt new file mode 100644 index 00000000..3e7a6d96 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideSize.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SlideSize: ImageVector + get() { + if (_slideSize != null) { + return _slideSize!! + } + _slideSize = fluentIcon(name = "Regular.SlideSize") { + fluentPath { + moveTo(16.78f, 7.22f) + curveToRelative(0.14f, 0.14f, 0.22f, 0.33f, 0.22f, 0.53f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.69f) + lineToRelative(-1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(1.72f, -1.72f) + horizontalLineToRelative(-0.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.51f) + curveToRelative(0.2f, 0.0f, 0.39f, 0.08f, 0.53f, 0.22f) + close() + moveTo(7.0f, 16.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, 0.75f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.69f) + lineToRelative(1.72f, -1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineTo(8.5f, 14.44f) + verticalLineToRelative(-0.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.5f) + close() + moveTo(2.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) + verticalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 20.0f) + lineTo(4.75f, 20.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) + lineTo(2.0f, 6.75f) + close() + moveTo(4.75f, 5.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(14.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + lineTo(20.5f, 6.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(4.75f, 5.5f) + close() + } + } + return _slideSize!! + } + +private var _slideSize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideText.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideText.kt new file mode 100644 index 00000000..ac5d7601 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideText.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SlideText: ImageVector + get() { + if (_slideText != null) { + return _slideText!! + } + _slideText = fluentIcon(name = "Regular.SlideText") { + fluentPath { + moveTo(6.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + close() + moveTo(6.0f, 11.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(6.75f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.5f) + close() + moveTo(4.75f, 4.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 6.75f) + verticalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 20.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 17.25f) + lineTo(22.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 4.0f) + lineTo(4.75f, 4.0f) + close() + moveTo(3.5f, 6.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(14.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + lineTo(4.75f, 18.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + lineTo(3.5f, 6.75f) + close() + } + } + return _slideText!! + } + +private var _slideText: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideTextMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideTextMultiple.kt new file mode 100644 index 00000000..55db573b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideTextMultiple.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SlideTextMultiple: ImageVector + get() { + if (_slideTextMultiple != null) { + return _slideTextMultiple!! + } + _slideTextMultiple = fluentIcon(name = "Regular.SlideTextMultiple") { + fluentPath { + moveTo(6.75f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + close() + moveTo(6.0f, 11.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(6.75f, 13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + close() + moveTo(5.25f, 4.0f) + horizontalLineToRelative(11.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.24f, 3.07f) + lineToRelative(0.01f, 0.18f) + verticalLineToRelative(8.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.07f, 3.24f) + lineToRelative(-0.18f, 0.01f) + lineTo(5.25f, 19.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(2.0f, 15.75f) + verticalLineToRelative(-8.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(5.25f, 4.0f) + close() + moveTo(3.5f, 7.2f) + verticalLineToRelative(8.55f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(11.5f) + curveToRelative(0.92f, 0.0f, 1.67f, -0.7f, 1.74f, -1.6f) + lineToRelative(0.01f, -0.15f) + lineTo(18.5f, 7.2f) + curveToRelative(-0.03f, -0.94f, -0.8f, -1.7f, -1.75f, -1.7f) + lineTo(5.25f, 5.5f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + verticalLineToRelative(0.1f) + lineTo(3.5f, 7.2f) + close() + moveTo(21.0f, 7.51f) + curveToRelative(0.9f, 0.58f, 1.5f, 1.59f, 1.5f, 2.74f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 2.9f, -2.35f, 5.25f, -5.25f, 5.25f) + horizontalLineToRelative(-9.0f) + curveToRelative(-1.15f, 0.0f, -2.16f, -0.6f, -2.74f, -1.5f) + horizontalLineToRelative(11.74f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 21.0f, 16.25f) + lineTo(21.0f, 7.51f) + close() + } + } + return _slideTextMultiple!! + } + +private var _slideTextMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideTextPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideTextPerson.kt new file mode 100644 index 00000000..444c969f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideTextPerson.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SlideTextPerson: ImageVector + get() { + if (_slideTextPerson != null) { + return _slideTextPerson!! + } + _slideTextPerson = fluentIcon(name = "Regular.SlideTextPerson") { + fluentPath { + moveTo(6.0f, 8.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 6.0f, 8.75f) + close() + moveTo(6.75f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-8.5f) + close() + moveTo(6.0f, 14.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(2.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 4.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 6.75f) + lineTo(22.0f, 14.0f) + horizontalLineToRelative(-0.04f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -1.46f, -2.37f) + lineTo(20.5f, 6.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(4.75f, 5.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(8.56f) + curveToRelative(-0.2f, 0.38f, -0.31f, 0.81f, -0.31f, 1.27f) + verticalLineToRelative(0.1f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, 0.13f) + lineTo(4.75f, 20.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 17.25f) + lineTo(2.0f, 6.75f) + close() + moveTo(21.0f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + close() + moveTo(23.0f, 19.88f) + curveToRelative(0.0f, 1.55f, -1.29f, 3.12f, -4.5f, 3.12f) + reflectiveCurveTo(14.0f, 21.44f, 14.0f, 19.87f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.98f, 0.8f, -1.77f, 1.77f, -1.77f) + horizontalLineToRelative(5.46f) + curveToRelative(0.98f, 0.0f, 1.77f, 0.8f, 1.77f, 1.77f) + verticalLineToRelative(0.1f) + close() + } + } + return _slideTextPerson!! + } + +private var _slideTextPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideTransition.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideTransition.kt new file mode 100644 index 00000000..6841bf6e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SlideTransition.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SlideTransition: ImageVector + get() { + if (_slideTransition != null) { + return _slideTransition!! + } + _slideTransition = fluentIcon(name = "Regular.SlideTransition") { + fluentPath { + moveTo(4.75f, 4.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 6.75f) + verticalLineToRelative(10.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 20.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 17.25f) + lineTo(22.0f, 6.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 4.0f) + lineTo(4.75f, 4.0f) + close() + moveTo(3.5f, 6.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + lineTo(5.0f, 5.5f) + verticalLineToRelative(13.0f) + horizontalLineToRelative(-0.25f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + lineTo(3.5f, 6.75f) + close() + moveTo(6.5f, 18.5f) + verticalLineToRelative(-13.0f) + lineTo(9.0f, 5.5f) + verticalLineToRelative(13.0f) + lineTo(6.5f, 18.5f) + close() + moveTo(14.0f, 18.5f) + horizontalLineToRelative(-3.5f) + verticalLineToRelative(-13.0f) + lineTo(14.0f, 5.5f) + verticalLineToRelative(13.0f) + close() + moveTo(15.5f, 18.5f) + verticalLineToRelative(-13.0f) + horizontalLineToRelative(3.75f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + lineTo(15.5f, 18.5f) + close() + } + } + return _slideTransition!! + } + +private var _slideTransition: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Smartwatch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Smartwatch.kt new file mode 100644 index 00000000..507fbe71 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Smartwatch.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Smartwatch: ImageVector + get() { + if (_smartwatch != null) { + return _smartwatch!! + } + _smartwatch = fluentIcon(name = "Regular.Smartwatch") { + fluentPath { + moveTo(7.5f, 6.4f) + lineTo(7.5f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + verticalLineToRelative(2.4f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 18.0f, 9.0f) + verticalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -1.5f, 2.6f) + lineTo(16.5f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + verticalLineToRelative(-2.4f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 6.0f, 15.0f) + lineTo(6.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 1.5f, -2.6f) + close() + moveTo(9.5f, 3.5f) + arcTo(0.5f, 0.5f, 0.0f, false, false, 9.0f, 4.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(6.0f) + lineTo(15.0f, 4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + horizontalLineToRelative(-5.0f) + close() + moveTo(16.5f, 15.0f) + lineTo(16.5f, 9.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(9.0f, 7.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(6.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + close() + moveTo(9.0f, 20.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-2.0f) + lineTo(9.0f, 18.0f) + verticalLineToRelative(2.0f) + close() + } + } + return _smartwatch!! + } + +private var _smartwatch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SmartwatchDot.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SmartwatchDot.kt new file mode 100644 index 00000000..26a47d20 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SmartwatchDot.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SmartwatchDot: ImageVector + get() { + if (_smartwatchDot != null) { + return _smartwatchDot!! + } + _smartwatchDot = fluentIcon(name = "Regular.SmartwatchDot") { + fluentPath { + moveTo(14.5f, 2.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.79f, 1.1f) + arcToRelative(3.49f, 3.49f, 0.0f, false, false, 0.21f, 3.2f) + verticalLineToRelative(0.1f) + lineToRelative(0.1f, 0.06f) + curveToRelative(0.25f, 0.37f, 0.57f, 0.69f, 0.94f, 0.94f) + curveToRelative(0.29f, 0.46f, 0.46f, 1.01f, 0.46f, 1.6f) + verticalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -1.5f, 2.6f) + lineTo(16.5f, 20.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-5.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + verticalLineToRelative(-2.4f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 6.0f, 15.0f) + lineTo(6.0f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 1.5f, -2.6f) + lineTo(7.5f, 4.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + horizontalLineToRelative(5.0f) + close() + moveTo(9.5f, 3.5f) + arcTo(0.5f, 0.5f, 0.0f, false, false, 9.0f, 4.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(6.0f) + lineTo(15.0f, 4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + horizontalLineToRelative(-5.0f) + close() + moveTo(16.5f, 15.0f) + lineTo(16.5f, 9.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(9.0f, 7.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(6.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + close() + moveTo(9.0f, 20.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + verticalLineToRelative(-2.0f) + lineTo(9.0f, 18.0f) + verticalLineToRelative(2.0f) + close() + moveTo(22.0f, 4.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, -5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 5.0f, 0.0f) + close() + } + } + return _smartwatchDot!! + } + +private var _smartwatchDot: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Snooze.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Snooze.kt new file mode 100644 index 00000000..f125b28f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Snooze.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Snooze: ImageVector + get() { + if (_snooze != null) { + return _snooze!! + } + _snooze = fluentIcon(name = "Regular.Snooze") { + fluentPath { + moveTo(8.24f, 13.0f) + curveToRelative(0.58f, 0.0f, 0.93f, 0.62f, 0.67f, 1.1f) + lineToRelative(-0.06f, 0.1f) + lineToRelative(-4.62f, 6.3f) + horizontalLineToRelative(4.01f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.75f, 0.65f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.64f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.66f, -1.1f) + lineToRelative(0.05f, -0.1f) + lineToRelative(4.62f, -6.3f) + horizontalLineTo(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) + lineToRelative(-0.01f, -0.1f) + curveToRelative(0.0f, -0.39f, 0.28f, -0.7f, 0.65f, -0.75f) + horizontalLineToRelative(5.6f) + close() + moveTo(21.25f, 2.0f) + curveToRelative(0.6f, 0.0f, 0.94f, 0.66f, 0.64f, 1.15f) + lineToRelative(-0.06f, 0.08f) + lineToRelative(-8.5f, 10.27f) + horizontalLineToRelative(7.92f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + horizontalLineToRelative(-9.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.64f, -1.14f) + lineToRelative(0.06f, -0.08f) + lineTo(19.66f, 3.5f) + horizontalLineToRelative(-7.91f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.65f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + horizontalLineToRelative(9.6f) + close() + } + } + return _snooze!! + } + +private var _snooze: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SoundSource.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SoundSource.kt new file mode 100644 index 00000000..d7bda365 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SoundSource.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SoundSource: ImageVector + get() { + if (_soundSource != null) { + return _soundSource!! + } + _soundSource = fluentIcon(name = "Regular.SoundSource") { + fluentPath { + moveTo(3.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 14.76f, 5.75f) + lineToRelative(1.0f, 1.13f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -14.5f, 0.0f) + lineToRelative(0.98f, -1.13f) + arcTo(8.47f, 8.47f, 0.0f, false, true, 3.5f, 12.0f) + close() + moveTo(19.25f, 12.13f) + arcToRelative(7.1f, 7.1f, 0.0f, false, true, -1.78f, 4.71f) + lineToRelative(-1.0f, -1.14f) + arcToRelative(5.63f, 5.63f, 0.0f, true, false, -8.8f, -0.15f) + lineTo(6.65f, 16.7f) + arcToRelative(7.12f, 7.12f, 0.0f, true, true, 12.6f, -4.57f) + close() + moveTo(16.25f, 12.0f) + curveToRelative(0.0f, 0.94f, -0.3f, 1.8f, -0.82f, 2.51f) + lineToRelative(-1.03f, -1.17f) + arcToRelative(2.75f, 2.75f, 0.0f, true, false, -4.8f, 0.0f) + lineTo(8.57f, 14.5f) + arcTo(4.25f, 4.25f, 0.0f, true, true, 16.25f, 12.0f) + close() + moveTo(12.56f, 12.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.12f, 0.0f) + lineToRelative(-7.0f, 8.0f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 5.0f, 22.0f) + horizontalLineToRelative(14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.56f, -1.24f) + lineToRelative(-7.0f, -8.0f) + close() + moveTo(17.35f, 20.5f) + lineTo(6.65f, 20.5f) + lineTo(12.0f, 14.39f) + lineToRelative(5.35f, 6.11f) + close() + } + } + return _soundSource!! + } + +private var _soundSource: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SoundWaveCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SoundWaveCircle.kt new file mode 100644 index 00000000..5fe46337 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SoundWaveCircle.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SoundWaveCircle: ImageVector + get() { + if (_soundWaveCircle != null) { + return _soundWaveCircle!! + } + _soundWaveCircle = fluentIcon(name = "Regular.SoundWaveCircle") { + fluentPath { + moveTo(11.0f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-6.5f) + close() + moveTo(17.0f, 8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-6.5f) + close() + moveTo(14.0f, 10.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-3.5f) + close() + moveTo(8.0f, 10.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.5f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) + close() + moveTo(3.5f, 12.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 17.0f, 0.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, -17.0f, 0.0f) + close() + } + } + return _soundWaveCircle!! + } + +private var _soundWaveCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Space3D.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Space3D.kt new file mode 100644 index 00000000..2e66a67a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Space3D.kt @@ -0,0 +1,88 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Space3D: ImageVector + get() { + if (_space3D != null) { + return _space3D!! + } + _space3D = fluentIcon(name = "Regular.Space3D") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 11.0f) + horizontalLineToRelative(15.0f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(6.25f, 4.5f) + close() + moveTo(4.5f, 14.08f) + lineToRelative(1.19f, -1.58f) + lineTo(4.5f, 12.5f) + verticalLineToRelative(1.58f) + close() + moveTo(5.69f, 15.0f) + horizontalLineToRelative(3.29f) + lineToRelative(0.62f, -2.5f) + lineTo(7.56f, 12.5f) + lineTo(5.7f, 15.0f) + close() + moveTo(4.5f, 16.5f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(1.6f) + lineToRelative(0.75f, -3.0f) + lineTo(4.5f, 16.5f) + close() + moveTo(10.15f, 16.5f) + lineTo(9.4f, 19.5f) + horizontalLineToRelative(5.66f) + lineToRelative(-0.94f, -3.0f) + horizontalLineToRelative(-3.97f) + close() + moveTo(15.69f, 16.5f) + lineTo(16.63f, 19.5f) + horizontalLineToRelative(1.12f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 16.5f) + horizontalLineToRelative(-3.8f) + close() + moveTo(18.31f, 15.0f) + lineTo(16.44f, 12.5f) + horizontalLineToRelative(-2.0f) + lineToRelative(0.78f, 2.5f) + horizontalLineToRelative(3.1f) + close() + moveTo(13.65f, 15.0f) + lineTo(12.87f, 12.5f) + horizontalLineToRelative(-1.72f) + lineToRelative(-0.63f, 2.5f) + horizontalLineToRelative(3.13f) + close() + moveTo(19.5f, 14.08f) + lineTo(19.5f, 12.5f) + horizontalLineToRelative(-1.19f) + lineToRelative(1.19f, 1.58f) + close() + } + } + return _space3D!! + } + +private var _space3D: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Spacebar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Spacebar.kt new file mode 100644 index 00000000..f628078c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Spacebar.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Spacebar: ImageVector + get() { + if (_spacebar != null) { + return _spacebar!! + } + _spacebar = fluentIcon(name = "Regular.Spacebar") { + fluentPath { + moveTo(20.5f, 11.0f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineTo(3.75f) + arcTo(0.25f, 0.25f, 0.0f, false, true, 3.5f, 13.0f) + verticalLineToRelative(-2.0f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 2.0f, 11.0f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(16.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + close() + } + } + return _spacebar!! + } + +private var _spacebar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Sparkle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Sparkle.kt new file mode 100644 index 00000000..57dab5d3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Sparkle.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Sparkle: ImageVector + get() { + if (_sparkle != null) { + return _sparkle!! + } + _sparkle = fluentIcon(name = "Regular.Sparkle") { + fluentPath { + moveTo(8.67f, 15.73f) + arcToRelative(1.44f, 1.44f, 0.0f, false, false, 2.16f, -0.61f) + lineToRelative(0.61f, -1.86f) + arcToRelative(2.87f, 2.87f, 0.0f, false, true, 1.82f, -1.81f) + lineToRelative(1.78f, -0.58f) + arcToRelative(1.44f, 1.44f, 0.0f, false, false, -0.06f, -2.74f) + lineToRelative(-1.75f, -0.57f) + arcToRelative(2.88f, 2.88f, 0.0f, false, true, -1.82f, -1.82f) + lineToRelative(-0.58f, -1.78f) + arcToRelative(1.45f, 1.45f, 0.0f, false, false, -2.73f, 0.02f) + lineToRelative(-0.59f, 1.8f) + arcToRelative(2.88f, 2.88f, 0.0f, false, true, -1.77f, 1.78f) + lineToRelative(-1.77f, 0.57f) + arcToRelative(1.44f, 1.44f, 0.0f, false, false, 0.01f, 2.73f) + lineToRelative(1.76f, 0.57f) + arcToRelative(2.89f, 2.89f, 0.0f, false, true, 1.82f, 1.83f) + lineToRelative(0.58f, 1.77f) + curveToRelative(0.1f, 0.29f, 0.28f, 0.53f, 0.53f, 0.7f) + close() + moveTo(8.29f, 11.48f) + arcTo(4.4f, 4.4f, 0.0f, false, false, 6.21f, 10.0f) + lineToRelative(-1.6f, -0.5f) + lineToRelative(1.61f, -0.52f) + arcTo(4.4f, 4.4f, 0.0f, false, false, 8.95f, 6.2f) + lineToRelative(0.52f, -1.58f) + lineToRelative(0.51f, 1.59f) + arcToRelative(4.37f, 4.37f, 0.0f, false, false, 2.79f, 2.77f) + lineToRelative(1.61f, 0.52f) + lineToRelative(-1.58f, 0.52f) + arcToRelative(4.38f, 4.38f, 0.0f, false, false, -2.78f, 2.77f) + lineToRelative(-0.51f, 1.59f) + lineToRelative(-0.52f, -1.59f) + curveToRelative(-0.16f, -0.47f, -0.4f, -0.91f, -0.7f, -1.3f) + close() + moveTo(16.33f, 20.78f) + curveToRelative(-0.19f, -0.13f, -0.33f, -0.33f, -0.4f, -0.55f) + lineToRelative(-0.34f, -1.0f) + arcToRelative(1.31f, 1.31f, 0.0f, false, false, -0.82f, -0.83f) + lineToRelative(-0.99f, -0.32f) + arcTo(1.15f, 1.15f, 0.0f, false, true, 13.0f, 17.0f) + arcToRelative(1.14f, 1.14f, 0.0f, false, true, 0.77f, -1.08f) + lineToRelative(1.0f, -0.33f) + arcToRelative(1.3f, 1.3f, 0.0f, false, false, 0.8f, -0.82f) + lineToRelative(0.33f, -0.99f) + arcToRelative(1.14f, 1.14f, 0.0f, false, true, 2.16f, -0.02f) + lineToRelative(0.33f, 1.01f) + arcToRelative(1.3f, 1.3f, 0.0f, false, false, 0.82f, 0.82f) + lineToRelative(0.99f, 0.32f) + arcToRelative(1.14f, 1.14f, 0.0f, false, true, 0.04f, 2.17f) + lineToRelative(-1.01f, 0.33f) + arcToRelative(1.32f, 1.32f, 0.0f, false, false, -0.82f, 0.82f) + lineToRelative(-0.32f, 0.99f) + arcToRelative(1.14f, 1.14f, 0.0f, false, true, -1.76f, 0.56f) + close() + moveTo(15.3f, 17.0f) + arcToRelative(2.8f, 2.8f, 0.0f, false, true, 1.7f, 1.7f) + arcToRelative(2.8f, 2.8f, 0.0f, false, true, 1.7f, -1.7f) + arcToRelative(2.81f, 2.81f, 0.0f, false, true, -1.72f, -1.7f) + arcTo(2.8f, 2.8f, 0.0f, false, true, 15.3f, 17.0f) + close() + } + } + return _sparkle!! + } + +private var _sparkle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SparkleCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SparkleCircle.kt new file mode 100644 index 00000000..d665a2c6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SparkleCircle.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SparkleCircle: ImageVector + get() { + if (_sparkleCircle != null) { + return _sparkleCircle!! + } + _sparkleCircle = fluentIcon(name = "Regular.SparkleCircle") { + fluentPath { + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) + close() + moveTo(2.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) + close() + moveTo(8.56f, 6.17f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.88f, 0.0f) + lineToRelative(0.46f, 1.3f) + curveToRelative(0.1f, 0.29f, 0.34f, 0.52f, 0.64f, 0.63f) + lineToRelative(1.3f, 0.46f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.88f) + lineToRelative(-1.3f, 0.46f) + curveToRelative(-0.3f, 0.1f, -0.53f, 0.34f, -0.64f, 0.64f) + lineToRelative(-0.46f, 1.3f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.88f, 0.0f) + lineToRelative(-0.46f, -1.3f) + curveToRelative(-0.1f, -0.3f, -0.34f, -0.53f, -0.64f, -0.64f) + lineToRelative(-1.3f, -0.46f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.88f) + lineToRelative(1.3f, -0.46f) + curveToRelative(0.3f, -0.1f, 0.54f, -0.34f, 0.64f, -0.64f) + lineToRelative(0.46f, -1.3f) + close() + moveTo(15.95f, 12.71f) + arcToRelative(0.99f, 0.99f, 0.0f, false, false, -1.9f, 0.0f) + lineToRelative(-0.18f, 0.6f) + arcToRelative(0.85f, 0.85f, 0.0f, false, true, -0.57f, 0.56f) + lineToRelative(-0.6f, 0.18f) + arcToRelative(0.99f, 0.99f, 0.0f, false, false, 0.0f, 1.9f) + lineToRelative(0.6f, 0.18f) + curveToRelative(0.28f, 0.08f, 0.49f, 0.3f, 0.57f, 0.57f) + lineToRelative(0.18f, 0.6f) + arcToRelative(0.99f, 0.99f, 0.0f, false, false, 1.9f, 0.0f) + lineToRelative(0.18f, -0.6f) + curveToRelative(0.08f, -0.27f, 0.3f, -0.49f, 0.57f, -0.57f) + lineToRelative(0.6f, -0.18f) + arcToRelative(0.99f, 0.99f, 0.0f, false, false, 0.0f, -1.9f) + lineToRelative(-0.6f, -0.18f) + arcToRelative(0.85f, 0.85f, 0.0f, false, true, -0.57f, -0.57f) + lineToRelative(-0.18f, -0.6f) + close() + } + } + return _sparkleCircle!! + } + +private var _sparkleCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Speaker0.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Speaker0.kt new file mode 100644 index 00000000..eb8d0461 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Speaker0.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Speaker0: ImageVector + get() { + if (_speaker0 != null) { + return _speaker0!! + } + _speaker0 = fluentIcon(name = "Regular.Speaker0") { + fluentPath { + moveTo(14.7f, 3.44f) + curveToRelative(0.2f, 0.23f, 0.3f, 0.51f, 0.3f, 0.8f) + verticalLineToRelative(15.51f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.06f, 0.95f) + lineToRelative(-4.96f, -4.2f) + horizontalLineTo(4.25f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-4.5f) + curveTo(2.0f, 8.5f, 3.0f, 7.5f, 4.25f, 7.5f) + horizontalLineToRelative(3.73f) + lineToRelative(4.96f, -4.2f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 1.76f, 0.14f) + close() + moveTo(13.5f, 4.8f) + lineToRelative(-4.98f, 4.2f) + horizontalLineTo(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.76f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.27f) + lineToRelative(4.98f, 4.21f) + verticalLineTo(4.79f) + close() + } + } + return _speaker0!! + } + +private var _speaker0: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Speaker1.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Speaker1.kt new file mode 100644 index 00000000..b806d1d0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Speaker1.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Speaker1: ImageVector + get() { + if (_speaker1 != null) { + return _speaker1!! + } + _speaker1 = fluentIcon(name = "Regular.Speaker1") { + fluentPath { + moveTo(14.7f, 3.44f) + curveToRelative(0.2f, 0.23f, 0.3f, 0.51f, 0.3f, 0.81f) + verticalLineToRelative(15.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.06f, 0.96f) + lineTo(7.98f, 16.5f) + lineTo(4.25f, 16.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-4.5f) + curveTo(2.0f, 8.51f, 3.0f, 7.5f, 4.25f, 7.5f) + horizontalLineToRelative(3.73f) + lineToRelative(4.96f, -4.2f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 1.76f, 0.14f) + close() + moveTo(13.5f, 4.8f) + lineTo(8.52f, 9.0f) + lineTo(4.25f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.27f) + lineToRelative(4.98f, 4.21f) + lineTo(13.5f, 4.8f) + close() + moveTo(17.1f, 8.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, 0.25f) + curveToRelative(0.58f, 0.94f, 0.87f, 2.0f, 0.87f, 3.14f) + curveToRelative(0.0f, 1.15f, -0.3f, 2.2f, -0.87f, 3.14f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.28f, -0.78f) + curveToRelative(0.43f, -0.7f, 0.65f, -1.48f, 0.65f, -2.36f) + curveToRelative(0.0f, -0.88f, -0.22f, -1.66f, -0.65f, -2.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.25f, -1.03f) + close() + } + } + return _speaker1!! + } + +private var _speaker1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Speaker2.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Speaker2.kt new file mode 100644 index 00000000..1ffc3d94 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Speaker2.kt @@ -0,0 +1,95 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Speaker2: ImageVector + get() { + if (_speaker2 != null) { + return _speaker2!! + } + _speaker2 = fluentIcon(name = "Regular.Speaker2") { + fluentPath { + moveTo(25.08f, 6.42f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 28.0f, 7.72f) + verticalLineToRelative(32.56f) + curveToRelative(0.0f, 1.51f, -1.8f, 2.31f, -2.92f, 1.3f) + lineToRelative(-8.2f, -7.36f) + curveToRelative(-0.88f, -0.79f, -2.0f, -1.22f, -3.18f, -1.22f) + lineTo(9.0f, 33.0f) + arcToRelative(5.25f, 5.25f, 0.0f, false, true, -5.25f, -5.25f) + verticalLineToRelative(-7.5f) + curveTo(3.75f, 17.35f, 6.1f, 15.0f, 9.0f, 15.0f) + horizontalLineToRelative(4.7f) + curveToRelative(1.17f, 0.0f, 2.3f, -0.43f, 3.18f, -1.21f) + lineToRelative(8.2f, -7.37f) + close() + moveTo(25.5f, 9.4f) + lineTo(18.55f, 15.65f) + arcToRelative(7.25f, 7.25f, 0.0f, false, true, -4.85f, 1.85f) + lineTo(9.0f, 17.5f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.75f, 2.75f) + verticalLineToRelative(7.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 9.0f, 30.5f) + horizontalLineToRelative(4.7f) + curveToRelative(1.79f, 0.0f, 3.51f, 0.66f, 4.85f, 1.86f) + lineToRelative(6.95f, 6.24f) + lineTo(25.5f, 9.4f) + close() + moveTo(36.34f, 8.4f) + curveToRelative(0.47f, -0.5f, 1.26f, -0.53f, 1.76f, -0.06f) + curveToRelative(0.0f, 0.0f, -0.33f, -0.34f, 0.02f, 0.0f) + lineToRelative(0.01f, 0.03f) + arcToRelative(6.1f, 6.1f, 0.0f, false, true, 0.27f, 0.26f) + arcToRelative(20.4f, 20.4f, 0.0f, false, true, 2.7f, 3.79f) + arcTo(23.76f, 23.76f, 0.0f, false, true, 44.0f, 24.0f) + curveToRelative(0.0f, 5.05f, -1.45f, 8.94f, -2.9f, 11.58f) + arcToRelative(20.41f, 20.41f, 0.0f, false, true, -2.9f, 4.0f) + lineToRelative(-0.07f, 0.06f) + lineToRelative(-0.01f, 0.01f) + horizontalLineToRelative(-0.01f) + verticalLineToRelative(0.01f) + lineToRelative(0.22f, -0.22f) + lineToRelative(-0.23f, 0.22f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.7f, -1.82f) + arcToRelative(5.03f, 5.03f, 0.0f, false, false, 0.18f, -0.19f) + arcToRelative(17.91f, 17.91f, 0.0f, false, false, 2.33f, -3.28f) + curveTo(40.2f, 32.03f, 41.5f, 28.55f, 41.5f, 24.0f) + curveToRelative(0.0f, -4.55f, -1.3f, -8.03f, -2.6f, -10.37f) + arcToRelative(17.91f, 17.91f, 0.0f, false, false, -2.5f, -3.46f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.06f, -1.77f) + close() + moveTo(32.34f, 14.4f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 1.76f, -0.06f) + lineToRelative(0.02f, 0.02f) + arcToRelative(3.13f, 3.13f, 0.0f, false, true, 0.18f, 0.17f) + curveToRelative(0.12f, 0.12f, 0.27f, 0.3f, 0.45f, 0.51f) + arcToRelative(13.98f, 13.98f, 0.0f, false, true, -0.59f, 18.56f) + lineToRelative(-0.01f, 0.02f) + lineToRelative(-0.03f, 0.03f) + horizontalLineToRelative(-0.01f) + verticalLineToRelative(0.01f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -1.71f, -1.82f) + lineToRelative(0.01f, -0.02f) + arcToRelative(4.2f, 4.2f, 0.0f, false, false, 0.43f, -0.47f) + arcToRelative(11.48f, 11.48f, 0.0f, false, false, -0.43f, -15.17f) + lineToRelative(-0.01f, -0.02f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.07f, -1.76f) + close() + moveTo(38.12f, 8.35f) + lineTo(38.11f, 8.34f) + close() + moveTo(34.1f, 14.33f) + lineTo(34.16f, 14.4f) + arcToRelative(0.45f, 0.45f, 0.0f, false, true, -0.06f, -0.07f) + close() + } + } + return _speaker2!! + } + +private var _speaker2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SpeakerBluetooth.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SpeakerBluetooth.kt new file mode 100644 index 00000000..f34d3711 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SpeakerBluetooth.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SpeakerBluetooth: ImageVector + get() { + if (_speakerBluetooth != null) { + return _speakerBluetooth!! + } + _speakerBluetooth = fluentIcon(name = "Regular.SpeakerBluetooth") { + fluentPath { + moveTo(14.7f, 3.44f) + curveToRelative(0.2f, 0.23f, 0.3f, 0.51f, 0.3f, 0.81f) + verticalLineToRelative(15.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.06f, 0.96f) + lineTo(7.98f, 16.5f) + lineTo(4.25f, 16.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-4.5f) + curveTo(2.0f, 8.51f, 3.0f, 7.5f, 4.25f, 7.5f) + horizontalLineToRelative(3.73f) + lineToRelative(4.96f, -4.2f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 1.76f, 0.14f) + close() + moveTo(13.5f, 4.8f) + lineTo(8.52f, 9.0f) + lineTo(4.25f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.27f) + lineToRelative(4.98f, 4.21f) + lineTo(13.5f, 4.8f) + close() + moveTo(17.5f, 9.9f) + lineTo(17.5f, 6.76f) + curveToRelative(0.0f, -0.65f, 0.75f, -0.98f, 1.23f, -0.58f) + lineToRelative(0.07f, 0.07f) + lineToRelative(3.0f, 3.25f) + curveToRelative(0.27f, 0.29f, 0.26f, 0.73f, 0.0f, 1.01f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-1.7f, 1.42f) + lineToRelative(1.7f, 1.42f) + curveToRelative(0.3f, 0.26f, 0.35f, 0.7f, 0.14f, 1.0f) + lineToRelative(-0.07f, 0.09f) + lineToRelative(-3.0f, 3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.3f, -0.4f) + lineTo(17.5f, 14.1f) + lineToRelative(-0.27f, 0.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.04f, -1.07f) + lineToRelative(0.08f, -0.08f) + lineToRelative(1.23f, -1.02f) + verticalLineToRelative(-0.3f) + lineToRelative(-1.23f, -1.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.87f, -1.22f) + lineToRelative(0.1f, 0.06f) + lineToRelative(0.26f, 0.23f) + lineTo(17.5f, 6.75f) + lineTo(17.5f, 9.9f) + close() + moveTo(19.0f, 13.1f) + verticalLineToRelative(2.23f) + lineToRelative(1.16f, -1.26f) + lineTo(19.0f, 13.1f) + close() + moveTo(19.0f, 8.67f) + verticalLineToRelative(2.23f) + lineToRelative(1.16f, -0.97f) + lineTo(19.0f, 8.67f) + close() + } + } + return _speakerBluetooth!! + } + +private var _speakerBluetooth: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SpeakerEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SpeakerEdit.kt new file mode 100644 index 00000000..527e7c72 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SpeakerEdit.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SpeakerEdit: ImageVector + get() { + if (_speakerEdit != null) { + return _speakerEdit!! + } + _speakerEdit = fluentIcon(name = "Regular.SpeakerEdit") { + fluentPath { + moveTo(15.0f, 4.25f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.08f, -0.93f) + lineToRelative(-4.5f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.5f, 0.18f) + lineTo(4.26f, 7.5f) + curveTo(3.01f, 7.5f, 2.0f, 8.5f, 2.0f, 9.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(3.68f) + curveToRelative(0.18f, 0.0f, 0.36f, 0.06f, 0.5f, 0.19f) + lineToRelative(3.12f, 2.77f) + curveToRelative(0.14f, -0.5f, 0.39f, -0.96f, 0.72f, -1.36f) + lineToRelative(-2.85f, -2.54f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -1.5f, -0.56f) + lineTo(4.26f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.68f) + curveToRelative(0.55f, 0.0f, 1.08f, -0.2f, 1.5f, -0.57f) + lineToRelative(4.07f, -3.62f) + verticalLineToRelative(12.04f) + lineToRelative(1.5f, -1.5f) + lineTo(15.01f, 4.25f) + close() + moveTo(20.04f, 6.05f) + arcToRelative(9.95f, 9.95f, 0.0f, false, true, 1.93f, 5.2f) + arcToRelative(3.3f, 3.3f, 0.0f, false, false, -1.53f, -0.24f) + arcToRelative(8.45f, 8.45f, 0.0f, false, false, -1.6f, -4.06f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.2f, -0.9f) + close() + moveTo(18.16f, 8.67f) + curveToRelative(0.46f, 0.85f, 0.75f, 1.81f, 0.82f, 2.82f) + curveToRelative(-0.2f, 0.13f, -0.4f, 0.3f, -0.59f, 0.47f) + lineToRelative(-0.97f, 0.97f) + arcToRelative(5.54f, 5.54f, 0.0f, false, false, -0.58f, -3.54f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.32f, -0.72f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.71f, 1.25f) + lineToRelative(-0.46f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.28f, 2.28f, 0.0f, true, false, -3.23f, -3.24f) + close() + } + } + return _speakerEdit!! + } + +private var _speakerEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SpeakerMute.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SpeakerMute.kt new file mode 100644 index 00000000..20e74ef9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SpeakerMute.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SpeakerMute: ImageVector + get() { + if (_speakerMute != null) { + return _speakerMute!! + } + _speakerMute = fluentIcon(name = "Regular.SpeakerMute") { + fluentPath { + moveTo(12.92f, 3.32f) + curveToRelative(0.8f, -0.72f, 2.08f, -0.15f, 2.08f, 0.93f) + verticalLineToRelative(15.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.08f, 0.93f) + lineToRelative(-4.5f, -4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.49f, -0.18f) + lineTo(4.25f, 16.5f) + curveTo(3.01f, 16.5f, 2.0f, 15.49f, 2.0f, 14.25f) + verticalLineToRelative(-4.5f) + curveTo(2.0f, 8.5f, 3.0f, 7.5f, 4.25f, 7.5f) + horizontalLineToRelative(3.68f) + curveToRelative(0.18f, 0.0f, 0.36f, -0.07f, 0.5f, -0.2f) + lineToRelative(4.49f, -3.98f) + close() + moveTo(13.5f, 4.81f) + lineTo(9.42f, 8.43f) + curveToRelative(-0.4f, 0.37f, -0.94f, 0.57f, -1.49f, 0.57f) + lineTo(4.25f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.68f) + curveToRelative(0.55f, 0.0f, 1.08f, 0.2f, 1.5f, 0.56f) + lineToRelative(4.07f, 3.63f) + lineTo(13.5f, 4.8f) + close() + moveTo(16.22f, 9.21f) + curveToRelative(0.3f, -0.28f, 0.77f, -0.28f, 1.06f, 0.0f) + lineTo(19.0f, 10.95f) + lineToRelative(1.72f, -1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineTo(20.06f, 12.0f) + lineToRelative(1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineTo(19.0f, 13.06f) + lineToRelative(-1.72f, 1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineTo(17.94f, 12.0f) + lineToRelative(-1.72f, -1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + } + } + return _speakerMute!! + } + +private var _speakerMute: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SpeakerOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SpeakerOff.kt new file mode 100644 index 00000000..2c6de52e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SpeakerOff.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SpeakerOff: ImageVector + get() { + if (_speakerOff != null) { + return _speakerOff!! + } + _speakerOff = fluentIcon(name = "Regular.SpeakerOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(6.44f, 7.5f) + lineTo(4.25f, 7.5f) + curveTo(3.01f, 7.5f, 2.0f, 8.5f, 2.0f, 9.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(3.68f) + curveToRelative(0.18f, 0.0f, 0.36f, 0.06f, 0.5f, 0.19f) + lineToRelative(4.49f, 3.99f) + curveToRelative(0.8f, 0.72f, 2.08f, 0.14f, 2.08f, -0.93f) + verticalLineToRelative(-3.69f) + lineToRelative(5.72f, 5.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(13.5f, 14.56f) + verticalLineToRelative(4.63f) + lineToRelative(-4.08f, -3.63f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 7.93f, 15.0f) + lineTo(4.25f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.68f) + lineToRelative(5.57f, 5.56f) + close() + moveTo(13.5f, 4.81f) + verticalLineToRelative(5.5f) + lineToRelative(1.5f, 1.5f) + lineTo(15.0f, 4.26f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.08f, -0.93f) + lineToRelative(-3.4f, 3.02f) + lineToRelative(1.06f, 1.06f) + lineToRelative(2.92f, -2.6f) + close() + moveTo(17.14f, 13.96f) + lineTo(18.28f, 15.1f) + arcToRelative(6.97f, 6.97f, 0.0f, false, false, -0.12f, -6.43f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.32f, 0.72f) + arcToRelative(5.47f, 5.47f, 0.0f, false, true, 0.3f, 4.57f) + close() + moveTo(19.39f, 16.21f) + lineTo(20.49f, 17.3f) + arcToRelative(9.96f, 9.96f, 0.0f, false, false, -0.45f, -11.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.2f, 0.9f) + arcToRelative(8.46f, 8.46f, 0.0f, false, true, 0.55f, 9.26f) + close() + } + } + return _speakerOff!! + } + +private var _speakerOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SpeakerSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SpeakerSettings.kt new file mode 100644 index 00000000..d77dfc6f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SpeakerSettings.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SpeakerSettings: ImageVector + get() { + if (_speakerSettings != null) { + return _speakerSettings!! + } + _speakerSettings = fluentIcon(name = "Regular.SpeakerSettings") { + fluentPath { + moveTo(14.7f, 3.44f) + curveToRelative(0.2f, 0.23f, 0.3f, 0.51f, 0.3f, 0.81f) + verticalLineToRelative(7.25f) + arcToRelative(6.5f, 6.5f, 0.0f, false, false, -1.5f, 0.88f) + verticalLineToRelative(-7.6f) + lineTo(8.52f, 9.0f) + lineTo(4.25f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.27f) + lineToRelative(2.5f, 2.1f) + arcToRelative(6.58f, 6.58f, 0.0f, false, false, 0.22f, 2.17f) + lineTo(7.98f, 16.5f) + lineTo(4.25f, 16.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-4.5f) + curveTo(2.0f, 8.51f, 3.0f, 7.5f, 4.25f, 7.5f) + horizontalLineToRelative(3.73f) + lineToRelative(4.96f, -4.2f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 1.76f, 0.14f) + close() + moveTo(14.28f, 13.98f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.59f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) + lineToRelative(0.55f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.52f) + lineToRelative(-0.19f, 0.63f) + curveToRelative(0.44f, 0.38f, 0.94f, 0.7f, 1.49f, 0.92f) + lineToRelative(0.49f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.9f) + lineToRelative(-0.2f, -0.7f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) + lineToRelative(0.59f, -0.13f) + arcToRelative(5.72f, 5.72f, 0.0f, false, false, 0.0f, -1.81f) + lineToRelative(-0.55f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.19f, -0.63f) + curveToRelative(-0.44f, -0.39f, -0.94f, -0.7f, -1.49f, -0.93f) + lineToRelative(-0.49f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.91f) + lineToRelative(0.2f, 0.69f) + close() + moveTo(17.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) + close() + } + } + return _speakerSettings!! + } + +private var _speakerSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SpeakerUsb.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SpeakerUsb.kt new file mode 100644 index 00000000..f2f6172c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SpeakerUsb.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SpeakerUsb: ImageVector + get() { + if (_speakerUsb != null) { + return _speakerUsb!! + } + _speakerUsb = fluentIcon(name = "Regular.SpeakerUsb") { + fluentPath { + moveTo(15.0f, 4.25f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -2.06f, -0.96f) + lineTo(7.98f, 7.5f) + lineTo(4.25f, 7.5f) + curveTo(3.01f, 7.5f, 2.0f, 8.52f, 2.0f, 9.76f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(3.73f) + lineToRelative(4.96f, 4.2f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.06f, -0.95f) + lineTo(15.0f, 4.25f) + close() + moveTo(8.52f, 9.0f) + lineToRelative(4.98f, -4.21f) + lineTo(13.5f, 19.2f) + lineTo(8.52f, 15.0f) + lineTo(4.25f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.42f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.27f) + close() + moveTo(16.16f, 13.95f) + lineTo(17.5f, 16.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, 1.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.0f, -1.0f) + verticalLineToRelative(-2.0f) + lineToRelative(1.33f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.17f, -0.56f) + lineTo(23.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + lineTo(22.0f, 7.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -1.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(3.4f) + curveToRelative(0.0f, 0.2f, 0.06f, 0.4f, 0.16f, 0.55f) + close() + moveTo(18.5f, 7.5f) + horizontalLineToRelative(2.0f) + lineTo(20.5f, 9.0f) + horizontalLineToRelative(-2.0f) + lineTo(18.5f, 7.5f) + close() + } + } + return _speakerUsb!! + } + +private var _speakerUsb: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SplitHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SplitHorizontal.kt new file mode 100644 index 00000000..772d41db --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SplitHorizontal.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SplitHorizontal: ImageVector + get() { + if (_splitHorizontal != null) { + return _splitHorizontal!! + } + _splitHorizontal = fluentIcon(name = "Regular.SplitHorizontal") { + fluentPath { + moveTo(21.25f, 12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(2.75f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(18.5f) + close() + moveTo(20.0f, 4.25f) + curveTo(20.0f, 3.01f, 19.0f, 2.0f, 17.75f, 2.0f) + lineTo(6.25f, 2.0f) + curveTo(5.01f, 2.0f, 4.0f, 3.0f, 4.0f, 4.25f) + lineTo(4.0f, 10.0f) + horizontalLineToRelative(1.5f) + lineTo(5.5f, 4.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(18.5f, 10.0f) + lineTo(20.0f, 10.0f) + lineTo(20.0f, 4.25f) + close() + moveTo(5.5f, 19.25f) + lineTo(5.5f, 13.5f) + lineTo(4.0f, 13.5f) + verticalLineToRelative(5.75f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(11.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.0f, 13.5f) + horizontalLineToRelative(-1.5f) + verticalLineToRelative(5.75f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(6.25f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _splitHorizontal!! + } + +private var _splitHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SplitVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SplitVertical.kt new file mode 100644 index 00000000..f3f45d07 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SplitVertical.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SplitVertical: ImageVector + get() { + if (_splitVertical != null) { + return _splitVertical!! + } + _splitVertical = fluentIcon(name = "Regular.SplitVertical") { + fluentPath { + moveTo(12.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(12.5f, 2.75f) + close() + moveTo(4.25f, 4.0f) + curveTo(3.01f, 4.0f, 2.0f, 5.0f, 2.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(2.0f, 18.99f, 3.0f, 20.0f, 4.25f, 20.0f) + lineTo(10.0f, 20.0f) + verticalLineToRelative(-1.5f) + lineTo(4.25f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(3.5f, 6.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + lineTo(10.0f, 5.5f) + lineTo(10.0f, 4.0f) + lineTo(4.25f, 4.0f) + close() + moveTo(19.25f, 18.5f) + lineTo(13.5f, 18.5f) + lineTo(13.5f, 20.0f) + horizontalLineToRelative(5.75f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(21.5f, 6.25f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + lineTo(13.5f, 4.0f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(5.75f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + close() + } + } + return _splitVertical!! + } + +private var _splitVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Sport.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Sport.kt new file mode 100644 index 00000000..4a9e5566 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Sport.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Sport: ImageVector + get() { + if (_sport != null) { + return _sport!! + } + _sport = fluentIcon(name = "Regular.Sport") { + fluentPath { + moveTo(6.09f, 7.19f) + arcToRelative(8.2f, 8.2f, 0.0f, false, false, -0.18f, 0.5f) + curveToRelative(0.46f, 0.06f, 0.96f, 0.16f, 1.48f, 0.3f) + arcToRelative(6.7f, 6.7f, 0.0f, false, true, 1.09f, -1.95f) + lineToRelative(4.21f, 4.21f) + lineToRelative(-0.25f, 0.25f) + arcToRelative(10.2f, 10.2f, 0.0f, false, true, 1.06f, 1.06f) + lineToRelative(0.25f, -0.25f) + lineToRelative(4.21f, 4.21f) + arcToRelative(6.7f, 6.7f, 0.0f, false, true, -1.94f, 1.09f) + curveToRelative(0.13f, 0.52f, 0.23f, 1.02f, 0.3f, 1.48f) + arcToRelative(8.2f, 8.2f, 0.0f, false, false, 5.0f, -4.58f) + arcTo(8.26f, 8.26f, 0.0f, true, false, 6.1f, 7.2f) + close() + moveTo(20.05f, 7.81f) + curveToRelative(-0.88f, 0.7f, -2.09f, 0.78f, -3.04f, 0.25f) + lineToRelative(2.01f, -2.02f) + arcToRelative(6.7f, 6.7f, 0.0f, false, true, 1.03f, 1.77f) + close() + moveTo(15.92f, 9.14f) + curveToRelative(1.34f, 0.94f, 3.11f, 1.01f, 4.52f, 0.21f) + arcToRelative(6.74f, 6.74f, 0.0f, false, true, -1.42f, 5.11f) + lineToRelative(-4.2f, -4.21f) + lineToRelative(1.1f, -1.1f) + close() + moveTo(14.86f, 8.08f) + lineTo(13.76f, 9.18f) + lineTo(9.54f, 4.98f) + arcToRelative(6.74f, 6.74f, 0.0f, false, true, 5.1f, -1.42f) + curveToRelative(-0.8f, 1.4f, -0.72f, 3.18f, 0.22f, 4.52f) + close() + moveTo(15.95f, 7.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 0.24f, -3.04f) + arcToRelative(6.7f, 6.7f, 0.0f, false, true, 1.77f, 1.03f) + lineToRelative(-2.01f, 2.01f) + close() + moveTo(6.97f, 13.48f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + moveTo(2.03f, 11.03f) + arcToRelative(2.3f, 2.3f, 0.0f, false, true, 2.49f, -2.5f) + curveToRelative(1.98f, 0.16f, 5.34f, 0.78f, 7.76f, 3.2f) + reflectiveCurveToRelative(3.04f, 5.78f, 3.2f, 7.76f) + arcToRelative(2.3f, 2.3f, 0.0f, false, true, -2.5f, 2.5f) + curveToRelative(-1.98f, -0.16f, -5.34f, -0.78f, -7.76f, -3.2f) + reflectiveCurveTo(2.18f, 13.0f, 2.02f, 11.02f) + close() + moveTo(4.41f, 10.03f) + arcToRelative(0.8f, 0.8f, 0.0f, false, false, -0.89f, 0.89f) + curveToRelative(0.15f, 1.86f, 0.72f, 4.77f, 2.76f, 6.81f) + reflectiveCurveToRelative(4.95f, 2.62f, 6.82f, 2.76f) + arcToRelative(0.8f, 0.8f, 0.0f, false, false, 0.88f, -0.89f) + curveToRelative(-0.14f, -1.86f, -0.72f, -4.77f, -2.76f, -6.81f) + reflectiveCurveToRelative(-4.95f, -2.61f, -6.81f, -2.76f) + close() + } + } + return _sport!! + } + +private var _sport: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SportAmericanFootball.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SportAmericanFootball.kt new file mode 100644 index 00000000..81aa41e4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SportAmericanFootball.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SportAmericanFootball: ImageVector + get() { + if (_sportAmericanFootball != null) { + return _sportAmericanFootball!! + } + _sportAmericanFootball = fluentIcon(name = "Regular.SportAmericanFootball") { + fluentPath { + moveTo(13.72f, 9.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-4.5f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(4.5f, -4.5f) + close() + moveTo(17.75f, 2.0f) + curveTo(20.1f, 2.0f, 22.0f, 3.9f, 22.0f, 6.25f) + verticalLineToRelative(1.0f) + curveTo(22.0f, 15.4f, 15.4f, 22.0f, 7.25f, 22.0f) + horizontalLineToRelative(-1.0f) + arcTo(4.25f, 4.25f, 0.0f, false, true, 2.0f, 17.75f) + verticalLineToRelative(-1.0f) + curveTo(2.0f, 8.6f, 8.6f, 2.0f, 16.75f, 2.0f) + horizontalLineToRelative(1.0f) + close() + moveTo(20.5f, 6.25f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -2.75f, -2.75f) + horizontalLineToRelative(-1.0f) + curveToRelative(-0.4f, 0.0f, -0.8f, 0.02f, -1.2f, 0.05f) + lineToRelative(4.9f, 4.9f) + curveToRelative(0.03f, -0.4f, 0.05f, -0.8f, 0.05f, -1.2f) + verticalLineToRelative(-1.0f) + close() + moveTo(20.15f, 10.27f) + lineTo(13.73f, 3.85f) + arcToRelative(13.27f, 13.27f, 0.0f, false, false, -9.9f, 9.97f) + lineToRelative(6.35f, 6.36f) + arcToRelative(13.27f, 13.27f, 0.0f, false, false, 9.97f, -9.9f) + close() + moveTo(3.55f, 15.67f) + curveToRelative(-0.04f, 0.35f, -0.05f, 0.71f, -0.05f, 1.08f) + verticalLineToRelative(1.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.75f, 2.75f) + horizontalLineToRelative(1.0f) + curveToRelative(0.37f, 0.0f, 0.73f, -0.01f, 1.09f, -0.04f) + lineToRelative(-4.8f, -4.8f) + close() + } + } + return _sportAmericanFootball!! + } + +private var _sportAmericanFootball: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SportBaseball.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SportBaseball.kt new file mode 100644 index 00000000..6ae40cc8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SportBaseball.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SportBaseball: ImageVector + get() { + if (_sportBaseball != null) { + return _sportBaseball!! + } + _sportBaseball = fluentIcon(name = "Regular.SportBaseball") { + fluentPath { + moveTo(9.93f, 16.7f) + reflectiveCurveToRelative(-0.75f, 0.1f, -0.9f, -0.55f) + curveToRelative(-0.1f, -0.4f, 0.14f, -0.8f, 0.54f, -0.9f) + horizontalLineToRelative(0.01f) + lineToRelative(0.02f, -0.01f) + arcToRelative(3.92f, 3.92f, 0.0f, false, true, 0.37f, -0.08f) + arcToRelative(12.54f, 12.54f, 0.0f, false, true, 4.42f, 0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.29f, 1.48f) + arcToRelative(11.04f, 11.04f, 0.0f, false, false, -4.17f, -0.01f) + close() + moveTo(9.03f, 7.9f) + curveToRelative(0.15f, -0.65f, 0.9f, -0.55f, 0.9f, -0.55f) + arcToRelative(6.35f, 6.35f, 0.0f, false, false, 1.19f, 0.17f) + curveToRelative(0.76f, 0.05f, 1.82f, 0.05f, 2.98f, -0.18f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.3f, 1.47f) + arcToRelative(12.54f, 12.54f, 0.0f, false, true, -4.8f, 0.0f) + horizontalLineToRelative(-0.03f) + arcToRelative(0.76f, 0.76f, 0.0f, false, true, -0.55f, -0.92f) + close() + moveTo(12.0f, 22.0f) + arcToRelative(9.97f, 9.97f, 0.0f, false, false, 10.0f, -10.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -10.0f, 10.0f) + close() + moveTo(5.07f, 7.07f) + curveToRelative(0.54f, 0.37f, 1.19f, 0.72f, 1.94f, 0.97f) + arcTo(0.75f, 0.75f, 0.0f, true, false, 7.5f, 6.6f) + arcToRelative(6.36f, 6.36f, 0.0f, false, true, -1.43f, -0.69f) + arcToRelative(8.47f, 8.47f, 0.0f, false, true, 11.88f, 0.0f) + curveToRelative(-0.4f, 0.27f, -0.89f, 0.51f, -1.43f, 0.7f) + arcTo(0.75f, 0.75f, 0.0f, true, false, 17.0f, 8.03f) + curveToRelative(0.75f, -0.25f, 1.4f, -0.6f, 1.94f, -0.97f) + arcToRelative(8.46f, 8.46f, 0.0f, false, true, -0.03f, 9.9f) + arcTo(7.9f, 7.9f, 0.0f, false, false, 17.0f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.48f, 1.42f) + curveToRelative(0.53f, 0.18f, 1.0f, 0.42f, 1.4f, 0.68f) + arcToRelative(8.47f, 8.47f, 0.0f, false, true, -11.82f, 0.0f) + curveToRelative(0.4f, -0.26f, 0.87f, -0.5f, 1.4f, -0.68f) + arcTo(0.75f, 0.75f, 0.0f, true, false, 7.0f, 16.01f) + curveToRelative(-0.74f, 0.25f, -1.38f, 0.6f, -1.91f, 0.95f) + arcToRelative(8.46f, 8.46f, 0.0f, false, true, -0.03f, -9.89f) + close() + } + } + return _sportBaseball!! + } + +private var _sportBaseball: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SportBasketball.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SportBasketball.kt new file mode 100644 index 00000000..155d9828 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SportBasketball.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SportBasketball: ImageVector + get() { + if (_sportBasketball != null) { + return _sportBasketball!! + } + _sportBasketball = fluentIcon(name = "Regular.SportBasketball") { + fluentPath { + moveTo(12.94f, 21.96f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -1.88f, -19.91f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 1.88f, 19.9f) + close() + moveTo(3.58f, 10.86f) + curveToRelative(0.2f, -1.55f, 0.84f, -3.05f, 1.9f, -4.32f) + lineTo(10.94f, 12.0f) + lineToRelative(-1.09f, 1.09f) + arcToRelative(8.81f, 8.81f, 0.0f, false, false, -3.34f, -1.61f) + curveToRelative(-0.65f, -0.17f, -1.3f, -0.3f, -1.89f, -0.41f) + horizontalLineToRelative(-0.01f) + curveToRelative(-0.37f, -0.08f, -0.71f, -0.14f, -1.03f, -0.22f) + close() + moveTo(3.51f, 12.37f) + lineTo(4.31f, 12.53f) + horizontalLineToRelative(0.01f) + curveToRelative(0.6f, 0.12f, 1.2f, 0.24f, 1.8f, 0.4f) + curveToRelative(0.95f, 0.26f, 1.86f, 0.61f, 2.66f, 1.23f) + lineToRelative(-3.3f, 3.3f) + arcToRelative(8.47f, 8.47f, 0.0f, false, true, -1.97f, -5.09f) + close() + moveTo(9.85f, 15.21f) + curveToRelative(0.67f, 0.87f, 1.04f, 1.81f, 1.3f, 2.78f) + arcToRelative(26.2f, 26.2f, 0.0f, false, true, 0.4f, 1.78f) + lineToRelative(0.16f, 0.73f) + arcToRelative(8.47f, 8.47f, 0.0f, false, true, -5.17f, -1.98f) + lineToRelative(3.3f, -3.3f) + close() + moveTo(13.24f, 20.41f) + lineTo(13.01f, 19.46f) + lineTo(12.94f, 19.09f) + curveToRelative(-0.1f, -0.47f, -0.21f, -0.98f, -0.35f, -1.49f) + arcToRelative(8.86f, 8.86f, 0.0f, false, false, -1.68f, -3.45f) + lineTo(12.0f, 13.06f) + lineToRelative(5.46f, 5.46f) + arcToRelative(8.46f, 8.46f, 0.0f, false, true, -4.22f, 1.89f) + close() + moveTo(13.06f, 12.0f) + lineToRelative(1.21f, -1.21f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 3.37f, 1.83f) + curveToRelative(0.44f, 0.15f, 0.9f, 0.28f, 1.3f, 0.4f) + lineToRelative(0.47f, 0.13f) + curveToRelative(0.35f, 0.1f, 0.67f, 0.21f, 0.96f, 0.32f) + arcToRelative(8.45f, 8.45f, 0.0f, false, true, -1.85f, 3.99f) + lineTo(13.06f, 12.0f) + close() + moveTo(19.84f, 11.72f) + lineTo(19.34f, 11.57f) + lineTo(18.12f, 11.19f) + arcToRelative(8.6f, 8.6f, 0.0f, false, true, -2.78f, -1.47f) + lineToRelative(3.18f, -3.18f) + arcToRelative(8.47f, 8.47f, 0.0f, false, true, 1.98f, 5.38f) + lineToRelative(-0.66f, -0.2f) + close() + moveTo(17.46f, 5.48f) + lineTo(14.28f, 8.66f) + arcToRelative(8.6f, 8.6f, 0.0f, false, true, -1.47f, -2.78f) + curveToRelative(-0.15f, -0.41f, -0.26f, -0.81f, -0.38f, -1.22f) + lineToRelative(-0.15f, -0.5f) + lineToRelative(-0.2f, -0.66f) + curveToRelative(1.91f, 0.02f, 3.82f, 0.68f, 5.38f, 1.98f) + close() + moveTo(11.38f, 6.36f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 1.83f, 3.37f) + lineTo(12.0f, 10.93f) + lineTo(6.54f, 5.49f) + arcToRelative(8.45f, 8.45f, 0.0f, false, true, 3.99f, -1.85f) + arcToRelative(13.21f, 13.21f, 0.0f, false, true, 0.45f, 1.42f) + curveToRelative(0.12f, 0.42f, 0.25f, 0.86f, 0.4f, 1.31f) + close() + } + } + return _sportBasketball!! + } + +private var _sportBasketball: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SportHockey.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SportHockey.kt new file mode 100644 index 00000000..2d79ea46 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SportHockey.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SportHockey: ImageVector + get() { + if (_sportHockey != null) { + return _sportHockey!! + } + _sportHockey = fluentIcon(name = "Regular.SportHockey") { + fluentPath { + moveTo(17.49f, 6.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.62f, -0.86f) + arcToRelative(0.77f, 0.77f, 0.0f, false, false, -0.86f, 0.64f) + arcToRelative(3.77f, 3.77f, 0.0f, false, true, -0.11f, 0.46f) + curveToRelative(-0.1f, 0.32f, -0.24f, 0.79f, -0.48f, 1.35f) + arcToRelative(12.84f, 12.84f, 0.0f, false, true, -2.73f, 4.01f) + arcToRelative(14.11f, 14.11f, 0.0f, false, true, -6.08f, 3.54f) + lineTo(6.6f, 16.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.57f, 0.9f) + curveToRelative(0.14f, 0.66f, 0.89f, 0.57f, 0.89f, 0.57f) + horizontalLineToRelative(0.05f) + arcToRelative(5.95f, 5.95f, 0.0f, false, false, 0.6f, -0.18f) + arcToRelative(15.61f, 15.61f, 0.0f, false, false, 6.18f, -3.77f) + arcToRelative(14.34f, 14.34f, 0.0f, false, false, 3.6f, -6.03f) + arcToRelative(8.33f, 8.33f, 0.0f, false, false, 0.14f, -0.57f) + verticalLineToRelative(-0.05f) + close() + moveTo(2.35f, 12.57f) + curveToRelative(-0.68f, 1.9f, -0.77f, 3.88f, 0.44f, 5.1f) + lineToRelative(0.23f, 0.24f) + arcToRelative(627.9f, 627.9f, 0.0f, false, false, 3.03f, 3.04f) + curveToRelative(1.28f, 1.28f, 3.3f, 1.3f, 5.29f, 0.66f) + arcToRelative(16.3f, 16.3f, 0.0f, false, false, 6.22f, -4.04f) + arcToRelative(16.3f, 16.3f, 0.0f, false, false, 4.04f, -6.22f) + curveToRelative(0.64f, -1.99f, 0.62f, -4.01f, -0.66f, -5.3f) + arcToRelative(756.94f, 756.94f, 0.0f, false, true, -2.9f, -2.9f) + lineToRelative(-0.36f, -0.37f) + curveToRelative(-1.22f, -1.21f, -3.2f, -1.12f, -5.1f, -0.44f) + curveToRelative(-1.96f, 0.71f, -4.15f, 2.14f, -6.12f, 4.11f) + arcToRelative(17.45f, 17.45f, 0.0f, false, false, -4.1f, 6.12f) + close() + moveTo(3.76f, 13.08f) + arcToRelative(15.98f, 15.98f, 0.0f, false, true, 3.77f, -5.56f) + arcToRelative(15.98f, 15.98f, 0.0f, false, true, 5.56f, -3.77f) + curveToRelative(1.78f, -0.64f, 2.97f, -0.47f, 3.54f, 0.1f) + lineToRelative(0.35f, 0.35f) + lineToRelative(0.88f, 0.89f) + lineToRelative(2.02f, 2.03f) + curveToRelative(0.67f, 0.67f, 0.87f, 1.97f, 0.3f, 3.77f) + arcToRelative(14.81f, 14.81f, 0.0f, false, true, -3.68f, 5.62f) + arcToRelative(14.81f, 14.81f, 0.0f, false, true, -5.63f, 3.67f) + curveToRelative(-1.8f, 0.58f, -3.09f, 0.38f, -3.76f, -0.3f) + arcToRelative(835.56f, 835.56f, 0.0f, false, true, -3.02f, -3.02f) + lineToRelative(-0.23f, -0.24f) + curveToRelative(-0.57f, -0.57f, -0.74f, -1.76f, -0.1f, -3.54f) + close() + } + } + return _sportHockey!! + } + +private var _sportHockey: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SportSoccer.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SportSoccer.kt new file mode 100644 index 00000000..02b369cb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SportSoccer.kt @@ -0,0 +1,98 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SportSoccer: ImageVector + get() { + if (_sportSoccer != null) { + return _sportSoccer!! + } + _sportSoccer = fluentIcon(name = "Regular.SportSoccer") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 0.0f, -20.0f) + close() + moveTo(10.07f, 3.72f) + arcToRelative(8.53f, 8.53f, 0.0f, false, true, 3.86f, 0.0f) + lineTo(12.0f, 4.87f) + lineToRelative(-1.93f, -1.15f) + close() + moveTo(8.24f, 4.37f) + lineTo(11.25f, 6.17f) + verticalLineToRelative(2.2f) + lineToRelative(-2.79f, 2.02f) + lineToRelative(-2.04f, -0.7f) + lineToRelative(-0.59f, -3.54f) + arcToRelative(8.53f, 8.53f, 0.0f, false, true, 2.41f, -1.78f) + close() + moveTo(4.6f, 7.83f) + lineTo(4.95f, 10.0f) + lineToRelative(-1.43f, 1.43f) + curveToRelative(0.09f, -1.3f, 0.46f, -2.51f, 1.07f, -3.59f) + close() + moveTo(3.63f, 13.43f) + lineTo(5.96f, 11.11f) + lineTo(8.0f, 11.81f) + lineTo(9.08f, 15.15f) + lineTo(8.11f, 16.73f) + lineTo(4.81f, 16.53f) + curveToRelative(-0.58f, -0.92f, -0.99f, -1.97f, -1.18f, -3.1f) + close() + moveTo(6.1f, 18.11f) + lineTo(8.0f, 18.22f) + lineTo(8.68f, 19.82f) + curveToRelative(-0.96f, -0.4f, -1.84f, -1.0f, -2.58f, -1.71f) + close() + moveTo(10.54f, 20.37f) + lineTo(9.36f, 17.57f) + lineTo(10.32f, 16.0f) + horizontalLineToRelative(3.37f) + lineToRelative(0.91f, 1.58f) + lineToRelative(-1.04f, 2.78f) + arcToRelative(8.55f, 8.55f, 0.0f, false, true, -3.02f, 0.01f) + close() + moveTo(15.37f, 19.81f) + lineTo(15.94f, 18.29f) + lineTo(17.61f, 18.39f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, -2.24f, 1.42f) + close() + moveTo(18.9f, 16.98f) + lineTo(15.88f, 16.78f) + lineTo(14.94f, 15.16f) + lineTo(16.03f, 11.82f) + lineTo(18.04f, 11.12f) + lineTo(20.35f, 13.64f) + arcToRelative(8.46f, 8.46f, 0.0f, false, true, -1.45f, 3.34f) + close() + moveTo(20.5f, 11.58f) + lineTo(19.06f, 10.01f) + lineTo(19.42f, 7.84f) + arcToRelative(8.45f, 8.45f, 0.0f, false, true, 1.08f, 3.74f) + close() + moveTo(18.18f, 6.16f) + lineTo(17.59f, 9.69f) + lineTo(15.55f, 10.39f) + lineTo(12.76f, 8.37f) + verticalLineToRelative(-2.2f) + lineToRelative(3.0f, -1.8f) + arcToRelative(8.53f, 8.53f, 0.0f, false, true, 2.42f, 1.79f) + close() + moveTo(9.48f, 11.52f) + lineTo(12.0f, 9.68f) + lineToRelative(2.54f, 1.84f) + lineToRelative(-0.97f, 2.98f) + horizontalLineToRelative(-3.13f) + lineToRelative(-0.97f, -2.98f) + close() + } + } + return _sportSoccer!! + } + +private var _sportSoccer: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Square.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Square.kt new file mode 100644 index 00000000..4d8465b4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Square.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Square: ImageVector + get() { + if (_square != null) { + return _square!! + } + _square = fluentIcon(name = "Regular.Square") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineTo(6.25f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + verticalLineTo(6.25f) + close() + moveTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineTo(6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineTo(6.25f) + close() + } + } + return _square!! + } + +private var _square: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SquareArrowForward.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SquareArrowForward.kt new file mode 100644 index 00000000..47da5eb8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SquareArrowForward.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SquareArrowForward: ImageVector + get() { + if (_squareArrowForward != null) { + return _squareArrowForward!! + } + _squareArrowForward = fluentIcon(name = "Regular.SquareArrowForward") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(5.77f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 6.24f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(6.25f, 4.49f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(5.06f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(6.25f, 20.99f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -11.0f, 0.0f) + close() + moveTo(18.65f, 15.35f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, -0.7f) + lineToRelative(1.5f, 1.5f) + curveToRelative(0.2f, 0.2f, 0.2f, 0.5f, 0.0f, 0.7f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, -0.7f) + lineToRelative(0.64f, -0.65f) + horizontalLineToRelative(-2.04f) + curveTo(16.01f, 17.0f, 15.0f, 18.0f, 15.0f, 19.25f) + verticalLineToRelative(0.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-0.25f) + curveToRelative(0.0f, -1.8f, 1.46f, -3.25f, 3.25f, -3.25f) + horizontalLineToRelative(2.04f) + lineToRelative(-0.64f, -0.65f) + close() + } + } + return _squareArrowForward!! + } + +private var _squareArrowForward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SquareHint.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SquareHint.kt new file mode 100644 index 00000000..a95fd5da --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SquareHint.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SquareHint: ImageVector + get() { + if (_squareHint != null) { + return _squareHint!! + } + _squareHint = fluentIcon(name = "Regular.SquareHint") { + fluentPath { + moveTo(10.0f, 3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(17.75f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(6.25f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + close() + moveTo(3.75f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(10.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.5f) + close() + moveTo(17.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + close() + moveTo(20.25f, 10.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(3.0f, 13.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.5f) + close() + } + } + return _squareHint!! + } + +private var _squareHint: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SquareHintApps.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SquareHintApps.kt new file mode 100644 index 00000000..c753c113 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SquareHintApps.kt @@ -0,0 +1,96 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SquareHintApps: ImageVector + get() { + if (_squareHintApps != null) { + return _squareHintApps!! + } + _squareHintApps = fluentIcon(name = "Regular.SquareHintApps") { + fluentPath { + moveTo(7.0f, 3.75f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + close() + moveTo(9.0f, 3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 9.0f, 3.75f) + close() + moveTo(17.75f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(3.75f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(3.75f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + close() + moveTo(12.25f, 15.5f) + horizontalLineToRelative(3.25f) + verticalLineToRelative(-3.25f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(3.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-7.5f) + curveTo(11.01f, 23.0f, 10.0f, 22.0f, 10.0f, 20.75f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + close() + moveTo(17.0f, 12.25f) + verticalLineToRelative(3.25f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(-3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(15.5f, 21.5f) + lineTo(15.5f, 17.0f) + horizontalLineToRelative(-3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.25f) + close() + moveTo(17.0f, 17.0f) + verticalLineToRelative(4.5f) + horizontalLineToRelative(2.75f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(21.5f, 17.0f) + lineTo(17.0f, 17.0f) + close() + } + } + return _squareHintApps!! + } + +private var _squareHintApps: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SquareHintSparkles.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SquareHintSparkles.kt new file mode 100644 index 00000000..7aafab23 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SquareHintSparkles.kt @@ -0,0 +1,114 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SquareHintSparkles: ImageVector + get() { + if (_squareHintSparkles != null) { + return _squareHintSparkles!! + } + _squareHintSparkles = fluentIcon(name = "Regular.SquareHintSparkles") { + fluentPath { + moveTo(16.09f, 6.41f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.35f, -0.95f) + lineTo(13.36f, 5.0f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, -1.03f) + lineToRelative(1.38f, -0.44f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.76f, -1.77f) + lineToRelative(0.01f, -0.03f) + lineToRelative(0.45f, -1.38f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, 1.03f, 0.0f) + lineToRelative(0.44f, 1.38f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, 1.8f, 1.8f) + lineToRelative(1.38f, 0.44f) + lineToRelative(0.03f, 0.01f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, 0.0f, 1.03f) + lineToRelative(-1.38f, 0.44f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, -1.8f, 1.8f) + lineToRelative(-0.45f, 1.38f) + arcToRelative(0.54f, 0.54f, 0.0f, false, true, -1.03f, 0.0f) + lineToRelative(-0.44f, -1.38f) + curveToRelative(-0.1f, -0.3f, -0.25f, -0.6f, -0.45f, -0.85f) + close() + moveTo(23.79f, 10.21f) + lineTo(23.02f, 9.96f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, -1.0f, -1.0f) + lineToRelative(-0.25f, -0.76f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, -0.57f, 0.0f) + lineToRelative(-0.25f, 0.77f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, -0.98f, 1.0f) + lineToRelative(-0.77f, 0.24f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, 0.57f) + lineToRelative(0.77f, 0.25f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, 1.0f) + lineToRelative(0.24f, 0.77f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.58f, 0.0f) + lineToRelative(0.24f, -0.77f) + arcToRelative(1.58f, 1.58f, 0.0f, false, true, 1.0f, -1.0f) + lineToRelative(0.77f, -0.24f) + arcToRelative(0.3f, 0.3f, 0.0f, false, false, 0.0f, -0.57f) + horizontalLineToRelative(-0.02f) + close() + moveTo(12.27f, 3.57f) + curveToRelative(0.2f, -0.26f, 0.46f, -0.46f, 0.77f, -0.57f) + horizontalLineToRelative(-2.3f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(12.0f, 4.5f) + arcToRelative(1.6f, 1.6f, 0.0f, false, true, 0.28f, -0.93f) + close() + moveTo(3.75f, 10.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(14.0f, 20.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(6.25f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(0.5f) + close() + moveTo(6.25f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + verticalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) + horizontalLineToRelative(0.5f) + close() + moveTo(17.0f, 20.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(0.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) + verticalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(0.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + } + } + return _squareHintSparkles!! + } + +private var _squareHintSparkles: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SquareMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SquareMultiple.kt new file mode 100644 index 00000000..62f848c0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SquareMultiple.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SquareMultiple: ImageVector + get() { + if (_squareMultiple != null) { + return _squareMultiple!! + } + _squareMultiple = fluentIcon(name = "Regular.SquareMultiple") { + fluentPath { + moveTo(7.52f, 5.0f) + horizontalLineTo(6.0f) + curveToRelative(0.13f, -1.68f, 1.53f, -3.0f, 3.24f, -3.0f) + horizontalLineToRelative(8.0f) + arcTo(4.75f, 4.75f, 0.0f, false, true, 22.0f, 6.75f) + verticalLineToRelative(8.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.0f, 3.24f) + verticalLineToRelative(-1.5f) + curveToRelative(0.85f, -0.13f, 1.5f, -0.86f, 1.5f, -1.74f) + verticalLineToRelative(-8.0f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-8.0f) + curveToRelative(-0.88f, 0.0f, -1.61f, 0.65f, -1.73f, 1.5f) + close() + moveTo(5.25f, 6.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 9.25f) + verticalLineToRelative(9.5f) + curveTo(2.0f, 20.55f, 3.46f, 22.0f, 5.25f, 22.0f) + horizontalLineToRelative(9.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-9.5f) + curveTo(18.0f, 7.45f, 16.55f, 6.0f, 14.75f, 6.0f) + horizontalLineToRelative(-9.5f) + close() + moveTo(3.5f, 9.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(9.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-9.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-9.5f) + close() + } + } + return _squareMultiple!! + } + +private var _squareMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Stack.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Stack.kt new file mode 100644 index 00000000..abd8e495 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Stack.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Stack: ImageVector + get() { + if (_stack != null) { + return _stack!! + } + _stack = fluentIcon(name = "Regular.Stack") { + fluentPath { + moveTo(4.0f, 4.0f) + horizontalLineToRelative(11.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + verticalLineToRelative(7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + lineTo(4.0f, 15.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(2.0f, 6.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + close() + moveTo(15.0f, 5.5f) + lineTo(4.0f, 5.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(7.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(11.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(15.5f, 6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(4.56f, 16.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.94f, 1.5f) + horizontalLineToRelative(9.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, -4.0f) + verticalLineToRelative(-5.0f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 18.0f, 6.56f) + verticalLineToRelative(6.94f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.5f, 2.5f) + lineTo(4.56f, 16.0f) + close() + moveTo(7.06f, 18.5f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 9.0f, 20.0f) + horizontalLineToRelative(7.25f) + arcTo(5.75f, 5.75f, 0.0f, false, false, 22.0f, 14.25f) + lineTo(22.0f, 11.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.5f, -1.94f) + verticalLineToRelative(5.19f) + curveToRelative(0.0f, 2.35f, -1.9f, 4.25f, -4.25f, 4.25f) + lineTo(7.06f, 18.5f) + close() + } + } + return _stack!! + } + +private var _stack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StackArrowForward.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StackArrowForward.kt new file mode 100644 index 00000000..44a73a0a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StackArrowForward.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.StackArrowForward: ImageVector + get() { + if (_stackArrowForward != null) { + return _stackArrowForward!! + } + _stackArrowForward = fluentIcon(name = "Regular.StackArrowForward") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, 11.0f) + close() + moveTo(19.35f, 3.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(0.64f, 0.65f) + horizontalLineToRelative(-2.04f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 14.0f, 8.25f) + verticalLineToRelative(0.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-0.25f) + curveTo(15.0f, 7.01f, 16.0f, 6.0f, 17.25f, 6.0f) + horizontalLineToRelative(2.04f) + lineToRelative(-0.64f, 0.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.5f, -1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-1.5f, -1.5f) + close() + moveTo(17.0f, 13.0f) + verticalLineToRelative(-0.02f) + arcToRelative(6.48f, 6.48f, 0.0f, false, true, -1.5f, -0.3f) + lineTo(15.5f, 13.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, 0.5f) + lineTo(4.0f, 13.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f) + lineTo(3.5f, 6.0f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + horizontalLineToRelative(7.08f) + curveToRelative(0.08f, -0.52f, 0.22f, -1.03f, 0.42f, -1.5f) + lineTo(4.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f) + verticalLineToRelative(7.0f) + curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f) + horizontalLineToRelative(11.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 2.0f, -2.0f) + close() + moveTo(18.0f, 12.98f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, 1.5f, -0.3f) + verticalLineToRelative(0.82f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, 4.0f) + horizontalLineToRelative(-9.0f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 4.56f, 16.0f) + lineTo(15.5f, 16.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f) + verticalLineToRelative(-0.52f) + close() + moveTo(22.0f, 11.19f) + curveToRelative(-0.44f, 0.43f, -0.95f, 0.8f, -1.5f, 1.08f) + verticalLineToRelative(1.98f) + curveToRelative(0.0f, 2.35f, -1.9f, 4.25f, -4.25f, 4.25f) + lineTo(7.06f, 18.5f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 9.0f, 20.0f) + horizontalLineToRelative(7.25f) + arcTo(5.75f, 5.75f, 0.0f, false, false, 22.0f, 14.25f) + verticalLineToRelative(-3.06f) + close() + } + } + return _stackArrowForward!! + } + +private var _stackArrowForward: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StackStar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StackStar.kt new file mode 100644 index 00000000..c2029d64 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StackStar.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.StackStar: ImageVector + get() { + if (_stackStar != null) { + return _stackStar!! + } + _stackStar = fluentIcon(name = "Regular.StackStar") { + fluentPath { + moveTo(9.5f, 5.85f) + curveToRelative(0.28f, 0.0f, 0.54f, 0.16f, 0.67f, 0.41f) + lineTo(11.0f, 7.91f) + lineToRelative(1.6f, 0.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.39f, 1.32f) + lineToRelative(-1.15f, 0.95f) + lineToRelative(0.4f, 1.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, 0.8f) + lineToRelative(-1.6f, -1.0f) + lineToRelative(-1.6f, 1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.8f) + lineToRelative(0.4f, -1.8f) + lineToRelative(-1.15f, -0.95f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.39f, -1.32f) + lineTo(8.0f, 7.9f) + lineToRelative(0.82f, -1.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.67f, -0.41f) + close() + moveTo(4.0f, 4.0f) + horizontalLineToRelative(11.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.0f, 2.0f) + verticalLineToRelative(7.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + lineTo(4.0f, 15.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, -2.0f) + lineTo(2.0f, 6.0f) + curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f) + close() + moveTo(15.0f, 5.5f) + lineTo(4.0f, 5.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(7.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(11.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(15.5f, 6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(4.56f, 16.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.94f, 1.5f) + horizontalLineToRelative(9.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, -4.0f) + verticalLineToRelative(-5.0f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 18.0f, 6.56f) + verticalLineToRelative(6.94f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -2.5f, 2.5f) + lineTo(4.56f, 16.0f) + close() + moveTo(7.06f, 18.5f) + arcTo(2.0f, 2.0f, 0.0f, false, false, 9.0f, 20.0f) + horizontalLineToRelative(7.25f) + arcTo(5.75f, 5.75f, 0.0f, false, false, 22.0f, 14.25f) + lineTo(22.0f, 11.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, -1.5f, -1.94f) + verticalLineToRelative(5.19f) + curveToRelative(0.0f, 2.35f, -1.9f, 4.25f, -4.25f, 4.25f) + lineTo(7.06f, 18.5f) + close() + } + } + return _stackStar!! + } + +private var _stackStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarAdd.kt new file mode 100644 index 00000000..50fb078e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarAdd.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.StarAdd: ImageVector + get() { + if (_starAdd != null) { + return _starAdd!! + } + _starAdd = fluentIcon(name = "Regular.StarAdd") { + fluentPath { + moveTo(10.79f, 3.1f) + curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) + lineToRelative(2.36f, 4.78f) + lineToRelative(5.27f, 0.77f) + curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) + lineToRelative(-0.9f, 0.88f) + arcToRelative(6.46f, 6.46f, 0.0f, false, false, -1.52f, -0.62f) + lineToRelative(1.15f, -1.12f) + lineToRelative(-5.05f, -0.74f) + arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.01f, -0.74f) + lineTo(12.0f, 4.04f) + lineTo(9.74f, 8.6f) + curveToRelative(-0.2f, 0.4f, -0.58f, 0.68f, -1.02f, 0.74f) + lineToRelative(-5.05f, 0.74f) + lineToRelative(3.66f, 3.56f) + curveToRelative(0.32f, 0.3f, 0.46f, 0.76f, 0.39f, 1.2f) + lineToRelative(-0.87f, 5.02f) + lineTo(11.0f, 17.7f) + curveToRelative(0.02f, 0.54f, 0.1f, 1.07f, 0.24f, 1.57f) + lineToRelative(-3.96f, 2.08f) + arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) + lineToRelative(0.9f, -5.25f) + lineToRelative(-3.81f, -3.72f) + curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) + lineToRelative(5.27f, -0.77f) + lineToRelative(2.36f, -4.78f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _starAdd!! + } + +private var _starAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarArrowBack.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarArrowBack.kt new file mode 100644 index 00000000..b661e836 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarArrowBack.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.StarArrowBack: ImageVector + get() { + if (_starArrowBack != null) { + return _starArrowBack!! + } + _starArrowBack = fluentIcon(name = "Regular.StarArrowBack") { + fluentPath { + moveTo(10.79f, 3.1f) + curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) + lineToRelative(2.36f, 4.78f) + lineToRelative(5.27f, 0.77f) + curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) + lineToRelative(-0.9f, 0.88f) + arcToRelative(6.46f, 6.46f, 0.0f, false, false, -1.52f, -0.61f) + lineToRelative(1.15f, -1.13f) + lineToRelative(-5.05f, -0.74f) + arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.01f, -0.74f) + lineTo(12.0f, 4.04f) + lineTo(9.74f, 8.6f) + curveToRelative(-0.2f, 0.4f, -0.58f, 0.68f, -1.02f, 0.74f) + lineToRelative(-5.05f, 0.74f) + lineToRelative(3.66f, 3.56f) + curveToRelative(0.32f, 0.3f, 0.46f, 0.76f, 0.39f, 1.2f) + lineToRelative(-0.87f, 5.02f) + lineTo(11.0f, 17.7f) + curveToRelative(0.02f, 0.54f, 0.1f, 1.07f, 0.24f, 1.57f) + lineToRelative(-3.96f, 2.08f) + arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) + lineToRelative(0.9f, -5.25f) + lineToRelative(-3.81f, -3.72f) + curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) + lineToRelative(5.27f, -0.77f) + lineToRelative(2.36f, -4.78f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(16.35f, 15.35f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(1.5f, 1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-0.64f, -0.65f) + horizontalLineToRelative(2.04f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(0.25f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-0.25f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-2.04f) + lineToRelative(0.64f, -0.65f) + close() + } + } + return _starArrowBack!! + } + +private var _starArrowBack: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarArrowRightEnd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarArrowRightEnd.kt new file mode 100644 index 00000000..b75f734d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarArrowRightEnd.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.StarArrowRightEnd: ImageVector + get() { + if (_starArrowRightEnd != null) { + return _starArrowRightEnd!! + } + _starArrowRightEnd = fluentIcon(name = "Regular.StarArrowRightEnd") { + fluentPath { + moveTo(10.79f, 3.1f) + curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) + lineToRelative(2.36f, 4.78f) + lineToRelative(5.27f, 0.77f) + curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) + lineToRelative(-0.9f, 0.88f) + arcToRelative(6.46f, 6.46f, 0.0f, false, false, -1.52f, -0.62f) + lineToRelative(1.15f, -1.12f) + lineToRelative(-5.05f, -0.74f) + arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.01f, -0.74f) + lineTo(12.0f, 4.04f) + lineTo(9.74f, 8.6f) + curveToRelative(-0.2f, 0.4f, -0.58f, 0.68f, -1.02f, 0.74f) + lineToRelative(-5.05f, 0.74f) + lineToRelative(3.66f, 3.56f) + curveToRelative(0.32f, 0.3f, 0.46f, 0.76f, 0.39f, 1.2f) + lineToRelative(-0.87f, 5.02f) + lineTo(11.0f, 17.7f) + curveToRelative(0.02f, 0.54f, 0.1f, 1.07f, 0.24f, 1.57f) + lineToRelative(-3.96f, 2.08f) + arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) + lineToRelative(0.9f, -5.25f) + lineToRelative(-3.81f, -3.72f) + curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) + lineToRelative(5.27f, -0.77f) + lineToRelative(2.36f, -4.78f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(14.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineTo(19.29f, 17.0f) + lineTo(14.5f, 17.0f) + close() + } + } + return _starArrowRightEnd!! + } + +private var _starArrowRightEnd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarArrowRightStart.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarArrowRightStart.kt new file mode 100644 index 00000000..b318e493 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarArrowRightStart.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.StarArrowRightStart: ImageVector + get() { + if (_starArrowRightStart != null) { + return _starArrowRightStart!! + } + _starArrowRightStart = fluentIcon(name = "Regular.StarArrowRightStart") { + fluentPath { + moveTo(10.79f, 3.1f) + curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) + lineToRelative(2.36f, 4.78f) + lineToRelative(5.27f, 0.77f) + curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) + lineToRelative(-3.82f, 3.72f) + lineToRelative(0.9f, 5.25f) + arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, 1.42f) + lineToRelative(-3.95f, -2.08f) + curveToRelative(0.14f, -0.5f, 0.22f, -1.02f, 0.24f, -1.57f) + lineToRelative(4.14f, 2.18f) + lineToRelative(-0.86f, -5.03f) + curveToRelative(-0.07f, -0.43f, 0.07f, -0.88f, 0.39f, -1.2f) + lineToRelative(3.65f, -3.55f) + lineToRelative(-5.05f, -0.74f) + arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.01f, -0.74f) + lineTo(12.0f, 4.04f) + lineTo(9.74f, 8.6f) + curveToRelative(-0.2f, 0.4f, -0.58f, 0.68f, -1.02f, 0.74f) + lineToRelative(-5.05f, 0.74f) + lineToRelative(1.16f, 1.13f) + curveToRelative(-0.53f, 0.14f, -1.04f, 0.35f, -1.51f, 0.61f) + lineToRelative(-0.91f, -0.88f) + curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) + lineToRelative(5.27f, -0.77f) + lineToRelative(2.36f, -4.78f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(3.5f, 17.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.8f) + lineToRelative(-1.65f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, 0.7f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.7f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.7f, 0.7f) + lineTo(8.29f, 17.0f) + horizontalLineTo(3.5f) + close() + } + } + return _starArrowRightStart!! + } + +private var _starArrowRightStart: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarDismiss.kt new file mode 100644 index 00000000..697cc854 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarDismiss.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.StarDismiss: ImageVector + get() { + if (_starDismiss != null) { + return _starDismiss!! + } + _starDismiss = fluentIcon(name = "Regular.StarDismiss") { + fluentPath { + moveTo(10.79f, 3.1f) + curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) + lineToRelative(2.36f, 4.78f) + lineToRelative(5.27f, 0.77f) + curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) + lineToRelative(-0.9f, 0.88f) + arcToRelative(6.46f, 6.46f, 0.0f, false, false, -1.52f, -0.61f) + lineToRelative(1.15f, -1.13f) + lineToRelative(-5.05f, -0.74f) + arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.01f, -0.73f) + lineTo(12.0f, 4.04f) + lineTo(9.74f, 8.62f) + curveToRelative(-0.2f, 0.4f, -0.58f, 0.67f, -1.02f, 0.73f) + lineToRelative(-5.05f, 0.74f) + lineToRelative(3.66f, 3.56f) + curveToRelative(0.32f, 0.31f, 0.46f, 0.76f, 0.39f, 1.2f) + lineToRelative(-0.87f, 5.02f) + lineTo(11.0f, 17.7f) + curveToRelative(0.02f, 0.54f, 0.1f, 1.07f, 0.24f, 1.57f) + lineToRelative(-3.96f, 2.08f) + arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) + lineToRelative(0.9f, -5.25f) + lineToRelative(-3.81f, -3.72f) + curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) + lineToRelative(5.27f, -0.77f) + lineToRelative(2.36f, -4.78f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(15.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-1.64f, -1.65f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.65f, 1.64f) + lineToRelative(-1.65f, -1.64f) + close() + } + } + return _starDismiss!! + } + +private var _starDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarEdit.kt new file mode 100644 index 00000000..1c68d98f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarEdit.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.StarEdit: ImageVector + get() { + if (_starEdit != null) { + return _starEdit!! + } + _starEdit = fluentIcon(name = "Regular.StarEdit") { + fluentPath { + moveTo(13.2f, 3.1f) + curveToRelative(-0.49f, -1.0f, -1.92f, -1.0f, -2.41f, 0.0f) + lineTo(8.43f, 7.88f) + lineToRelative(-5.27f, 0.77f) + arcToRelative(1.35f, 1.35f, 0.0f, false, false, -0.75f, 2.3f) + lineToRelative(3.81f, 3.72f) + lineToRelative(-0.9f, 5.25f) + arcToRelative(1.35f, 1.35f, 0.0f, false, false, 1.96f, 1.42f) + lineToRelative(2.95f, -1.55f) + lineToRelative(0.3f, -1.21f) + curveToRelative(0.07f, -0.28f, 0.17f, -0.55f, 0.3f, -0.8f) + lineToRelative(-3.98f, 2.1f) + lineToRelative(0.87f, -5.04f) + curveToRelative(0.07f, -0.43f, -0.07f, -0.88f, -0.4f, -1.2f) + lineTo(3.68f, 10.1f) + lineToRelative(5.05f, -0.74f) + curveToRelative(0.44f, -0.06f, 0.82f, -0.34f, 1.02f, -0.74f) + lineTo(12.0f, 4.04f) + lineToRelative(2.26f, 4.57f) + curveToRelative(0.2f, 0.4f, 0.57f, 0.68f, 1.01f, 0.74f) + lineToRelative(4.45f, 0.65f) + curveToRelative(0.73f, 0.0f, 1.46f, 0.24f, 2.05f, 0.72f) + curveToRelative(0.53f, -0.79f, 0.08f, -1.93f, -0.93f, -2.07f) + lineToRelative(-5.27f, -0.77f) + lineTo(13.2f, 3.1f) + close() + moveTo(18.1f, 11.67f) + lineTo(12.2f, 17.57f) + curveToRelative(-0.34f, 0.35f, -0.58f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.46f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.24f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _starEdit!! + } + +private var _starEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarEmphasis.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarEmphasis.kt new file mode 100644 index 00000000..9a03f8ca --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarEmphasis.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.StarEmphasis: ImageVector + get() { + if (_starEmphasis != null) { + return _starEmphasis!! + } + _starEmphasis = fluentIcon(name = "Regular.StarEmphasis") { + fluentPath { + moveTo(13.2f, 3.1f) + curveToRelative(-0.49f, -1.0f, -1.92f, -1.0f, -2.41f, 0.0f) + lineTo(8.43f, 7.88f) + lineToRelative(-5.27f, 0.77f) + arcToRelative(1.35f, 1.35f, 0.0f, false, false, -0.75f, 2.3f) + lineToRelative(3.81f, 3.72f) + lineToRelative(-0.9f, 5.25f) + arcToRelative(1.35f, 1.35f, 0.0f, false, false, 1.96f, 1.42f) + lineTo(12.0f, 18.86f) + lineToRelative(4.71f, 2.48f) + curveToRelative(1.0f, 0.52f, 2.15f, -0.32f, 1.96f, -1.42f) + lineToRelative(-0.9f, -5.25f) + lineToRelative(3.82f, -3.72f) + curveToRelative(0.8f, -0.78f, 0.36f, -2.14f, -0.75f, -2.3f) + lineToRelative(-5.27f, -0.77f) + lineTo(13.2f, 3.1f) + close() + moveTo(9.75f, 8.61f) + lineTo(12.0f, 4.04f) + lineToRelative(2.26f, 4.57f) + curveToRelative(0.2f, 0.4f, 0.57f, 0.68f, 1.01f, 0.74f) + lineToRelative(5.05f, 0.74f) + lineToRelative(-3.65f, 3.56f) + curveToRelative(-0.32f, 0.3f, -0.46f, 0.76f, -0.39f, 1.2f) + lineToRelative(0.86f, 5.02f) + lineToRelative(-4.51f, -2.37f) + curveToRelative(-0.4f, -0.2f, -0.87f, -0.2f, -1.26f, 0.0f) + lineToRelative(-4.52f, 2.37f) + lineToRelative(0.87f, -5.03f) + curveToRelative(0.07f, -0.43f, -0.07f, -0.88f, -0.4f, -1.2f) + lineTo(3.68f, 10.1f) + lineToRelative(5.05f, -0.74f) + curveToRelative(0.44f, -0.06f, 0.82f, -0.34f, 1.02f, -0.74f) + close() + moveTo(1.16f, 3.78f) + curveToRelative(-0.25f, 0.32f, -0.2f, 0.8f, 0.12f, 1.06f) + lineToRelative(2.5f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.94f, -1.18f) + lineToRelative(-2.5f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.12f) + close() + moveTo(22.84f, 18.22f) + curveToRelative(0.25f, -0.33f, 0.2f, -0.8f, -0.12f, -1.06f) + lineToRelative(-2.5f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.94f, 1.18f) + lineToRelative(2.5f, 2.0f) + curveToRelative(0.32f, 0.25f, 0.8f, 0.2f, 1.06f, -0.12f) + close() + moveTo(1.28f, 17.16f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.94f, 1.18f) + lineToRelative(2.5f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.94f, -1.18f) + lineToRelative(-2.5f, 2.0f) + close() + moveTo(22.84f, 3.78f) + curveToRelative(0.25f, 0.32f, 0.2f, 0.8f, -0.12f, 1.06f) + lineToRelative(-2.5f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.94f, -1.18f) + lineToRelative(2.5f, -2.0f) + curveToRelative(0.32f, -0.25f, 0.8f, -0.2f, 1.06f, 0.12f) + close() + } + } + return _starEmphasis!! + } + +private var _starEmphasis: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarHalf.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarHalf.kt new file mode 100644 index 00000000..ae71b008 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarHalf.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.StarHalf: ImageVector + get() { + if (_starHalf != null) { + return _starHalf!! + } + _starHalf = fluentIcon(name = "Regular.StarHalf") { + fluentPath { + moveTo(12.0f, 2.35f) + curveToRelative(-0.48f, 0.0f, -0.96f, 0.25f, -1.21f, 0.75f) + lineTo(8.43f, 7.88f) + lineToRelative(-5.27f, 0.77f) + arcToRelative(1.35f, 1.35f, 0.0f, false, false, -0.75f, 2.3f) + lineToRelative(3.81f, 3.72f) + lineToRelative(-0.9f, 5.25f) + arcToRelative(1.35f, 1.35f, 0.0f, false, false, 1.96f, 1.42f) + lineTo(12.0f, 18.86f) + lineToRelative(4.71f, 2.48f) + curveToRelative(1.0f, 0.52f, 2.15f, -0.32f, 1.96f, -1.42f) + lineToRelative(-0.9f, -5.25f) + lineToRelative(3.82f, -3.72f) + curveToRelative(0.8f, -0.78f, 0.36f, -2.14f, -0.75f, -2.3f) + lineToRelative(-5.27f, -0.77f) + lineTo(13.2f, 3.1f) + curveToRelative(-0.25f, -0.5f, -0.73f, -0.75f, -1.21f, -0.75f) + close() + moveTo(12.0f, 17.35f) + lineTo(12.0f, 4.04f) + lineToRelative(2.26f, 4.56f) + curveToRelative(0.2f, 0.4f, 0.57f, 0.68f, 1.01f, 0.74f) + lineToRelative(5.05f, 0.74f) + lineToRelative(-3.65f, 3.56f) + curveToRelative(-0.32f, 0.3f, -0.46f, 0.76f, -0.39f, 1.2f) + lineToRelative(0.86f, 5.02f) + lineToRelative(-4.51f, -2.37f) + curveToRelative(-0.2f, -0.1f, -0.41f, -0.16f, -0.63f, -0.16f) + close() + } + } + return _starHalf!! + } + +private var _starHalf: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarLineHorizontal3.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarLineHorizontal3.kt new file mode 100644 index 00000000..929ec0d4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarLineHorizontal3.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.StarLineHorizontal3: ImageVector + get() { + if (_starLineHorizontal3 != null) { + return _starLineHorizontal3!! + } + _starLineHorizontal3 = fluentIcon(name = "Regular.StarLineHorizontal3") { + fluentPath { + moveTo(13.2f, 3.1f) + curveToRelative(-0.49f, -1.0f, -1.92f, -1.0f, -2.41f, 0.0f) + lineTo(8.43f, 7.88f) + lineToRelative(-5.27f, 0.77f) + arcToRelative(1.35f, 1.35f, 0.0f, false, false, -0.75f, 2.3f) + lineToRelative(3.81f, 3.72f) + lineToRelative(-0.9f, 5.25f) + arcToRelative(1.35f, 1.35f, 0.0f, false, false, 1.96f, 1.42f) + lineToRelative(5.07f, -2.66f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.7f, -1.33f) + lineToRelative(-4.8f, 2.52f) + lineToRelative(0.87f, -5.03f) + curveToRelative(0.07f, -0.43f, -0.07f, -0.88f, -0.4f, -1.2f) + lineTo(3.68f, 10.1f) + lineToRelative(5.05f, -0.74f) + curveToRelative(0.44f, -0.06f, 0.82f, -0.34f, 1.02f, -0.74f) + lineTo(12.0f, 4.04f) + lineToRelative(2.49f, 5.04f) + curveToRelative(0.12f, 0.26f, 0.38f, 0.42f, 0.67f, 0.42f) + horizontalLineToRelative(6.09f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.62f) + lineTo(13.2f, 3.1f) + close() + moveTo(14.5f, 12.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(14.5f, 16.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _starLineHorizontal3!! + } + +private var _starLineHorizontal3: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarOff.kt new file mode 100644 index 00000000..0560dc17 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarOff.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.StarOff: ImageVector + get() { + if (_starOff != null) { + return _starOff!! + } + _starOff = fluentIcon(name = "Regular.StarOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(4.8f, 4.8f) + lineToRelative(-3.86f, 0.57f) + arcToRelative(1.35f, 1.35f, 0.0f, false, false, -0.75f, 2.3f) + lineToRelative(3.81f, 3.72f) + lineToRelative(-0.9f, 5.25f) + arcToRelative(1.35f, 1.35f, 0.0f, false, false, 1.96f, 1.42f) + lineTo(12.0f, 18.86f) + lineToRelative(4.71f, 2.48f) + curveToRelative(1.0f, 0.52f, 2.15f, -0.32f, 1.96f, -1.42f) + lineToRelative(-0.04f, -0.22f) + lineToRelative(2.09f, 2.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(16.8f, 17.86f) + lineToRelative(0.34f, 2.01f) + lineToRelative(-4.51f, -2.37f) + curveToRelative(-0.4f, -0.2f, -0.87f, -0.2f, -1.26f, 0.0f) + lineToRelative(-4.52f, 2.37f) + lineToRelative(0.87f, -5.03f) + curveToRelative(0.07f, -0.43f, -0.07f, -0.88f, -0.4f, -1.2f) + lineTo(3.68f, 10.1f) + lineToRelative(4.68f, -0.68f) + lineToRelative(8.45f, 8.45f) + close() + moveTo(20.32f, 10.09f) + lineTo(16.75f, 13.57f) + lineTo(17.81f, 14.63f) + lineTo(21.59f, 10.95f) + curveToRelative(0.8f, -0.78f, 0.36f, -2.14f, -0.75f, -2.3f) + lineToRelative(-5.27f, -0.77f) + lineTo(13.2f, 3.1f) + curveToRelative(-0.5f, -1.0f, -1.93f, -1.0f, -2.42f, 0.0f) + lineTo(9.3f, 6.12f) + lineToRelative(1.12f, 1.12f) + lineTo(12.0f, 4.04f) + lineToRelative(2.26f, 4.57f) + curveToRelative(0.2f, 0.4f, 0.57f, 0.68f, 1.01f, 0.74f) + lineToRelative(5.05f, 0.74f) + close() + } + } + return _starOff!! + } + +private var _starOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarOneQuarter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarOneQuarter.kt new file mode 100644 index 00000000..0ebf5b02 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarOneQuarter.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.StarOneQuarter: ImageVector + get() { + if (_starOneQuarter != null) { + return _starOneQuarter!! + } + _starOneQuarter = fluentIcon(name = "Regular.StarOneQuarter") { + fluentPath { + moveTo(13.2f, 3.1f) + curveToRelative(-0.49f, -1.0f, -1.92f, -1.0f, -2.41f, 0.0f) + lineTo(8.43f, 7.88f) + lineToRelative(-5.27f, 0.77f) + arcToRelative(1.35f, 1.35f, 0.0f, false, false, -0.75f, 2.3f) + lineToRelative(3.81f, 3.72f) + lineToRelative(-0.9f, 5.25f) + arcToRelative(1.35f, 1.35f, 0.0f, false, false, 1.96f, 1.42f) + lineToRelative(1.72f, -0.9f) + lineToRelative(3.0f, -1.58f) + lineToRelative(4.71f, 2.48f) + curveToRelative(1.0f, 0.52f, 2.15f, -0.32f, 1.96f, -1.42f) + lineToRelative(-0.9f, -5.25f) + lineToRelative(3.82f, -3.72f) + curveToRelative(0.8f, -0.78f, 0.36f, -2.14f, -0.75f, -2.3f) + lineToRelative(-5.27f, -0.77f) + lineTo(13.2f, 3.1f) + close() + moveTo(9.0f, 18.74f) + verticalLineTo(9.28f) + curveToRelative(0.32f, -0.12f, 0.59f, -0.35f, 0.74f, -0.67f) + lineTo(12.0f, 4.04f) + lineToRelative(2.26f, 4.57f) + curveToRelative(0.2f, 0.4f, 0.57f, 0.68f, 1.01f, 0.74f) + lineToRelative(5.05f, 0.74f) + lineToRelative(-3.65f, 3.56f) + curveToRelative(-0.32f, 0.3f, -0.46f, 0.76f, -0.39f, 1.2f) + lineToRelative(0.86f, 5.02f) + lineToRelative(-4.51f, -2.37f) + curveToRelative(-0.4f, -0.2f, -0.87f, -0.2f, -1.26f, 0.0f) + lineTo(9.0f, 18.74f) + close() + } + } + return _starOneQuarter!! + } + +private var _starOneQuarter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarProhibited.kt new file mode 100644 index 00000000..c23359a8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarProhibited.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.StarProhibited: ImageVector + get() { + if (_starProhibited != null) { + return _starProhibited!! + } + _starProhibited = fluentIcon(name = "Regular.StarProhibited") { + fluentPath { + moveTo(10.79f, 3.1f) + curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) + lineToRelative(2.36f, 4.78f) + lineToRelative(5.27f, 0.77f) + curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) + lineToRelative(-0.9f, 0.88f) + arcToRelative(6.46f, 6.46f, 0.0f, false, false, -1.52f, -0.62f) + lineToRelative(1.15f, -1.12f) + lineToRelative(-5.05f, -0.74f) + arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.01f, -0.74f) + lineTo(12.0f, 4.04f) + lineTo(9.74f, 8.6f) + curveToRelative(-0.2f, 0.4f, -0.58f, 0.68f, -1.02f, 0.74f) + lineToRelative(-5.05f, 0.74f) + lineToRelative(3.66f, 3.56f) + curveToRelative(0.32f, 0.3f, 0.46f, 0.76f, 0.39f, 1.2f) + lineToRelative(-0.87f, 5.02f) + lineTo(11.0f, 17.7f) + curveToRelative(0.02f, 0.54f, 0.1f, 1.07f, 0.24f, 1.57f) + lineToRelative(-3.96f, 2.08f) + arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) + lineToRelative(0.9f, -5.25f) + lineToRelative(-3.81f, -3.72f) + curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) + lineToRelative(5.27f, -0.77f) + lineToRelative(2.36f, -4.78f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(13.5f, 17.5f) + curveToRelative(0.0f, 0.83f, 0.26f, 1.6f, 0.7f, 2.25f) + lineToRelative(5.55f, -5.56f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) + close() + moveTo(17.5f, 21.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) + lineToRelative(-5.55f, 5.56f) + curveToRelative(0.64f, 0.43f, 1.42f, 0.69f, 2.25f, 0.69f) + close() + } + } + return _starProhibited!! + } + +private var _starProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarSettings.kt new file mode 100644 index 00000000..dd8c9810 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarSettings.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.StarSettings: ImageVector + get() { + if (_starSettings != null) { + return _starSettings!! + } + _starSettings = fluentIcon(name = "Regular.StarSettings") { + fluentPath { + moveTo(10.79f, 3.1f) + curveToRelative(0.5f, -1.0f, 1.92f, -1.0f, 2.42f, 0.0f) + lineToRelative(2.36f, 4.78f) + lineToRelative(5.27f, 0.77f) + curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) + lineToRelative(-0.9f, 0.88f) + arcToRelative(6.46f, 6.46f, 0.0f, false, false, -1.52f, -0.62f) + lineToRelative(1.15f, -1.12f) + lineToRelative(-5.05f, -0.74f) + arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.01f, -0.74f) + lineTo(12.0f, 4.04f) + lineTo(9.74f, 8.6f) + curveToRelative(-0.2f, 0.4f, -0.58f, 0.68f, -1.02f, 0.74f) + lineToRelative(-5.05f, 0.74f) + lineToRelative(3.66f, 3.56f) + curveToRelative(0.32f, 0.3f, 0.46f, 0.76f, 0.39f, 1.2f) + lineToRelative(-0.87f, 5.02f) + lineTo(11.0f, 17.7f) + curveToRelative(0.02f, 0.54f, 0.1f, 1.07f, 0.24f, 1.57f) + lineToRelative(-3.96f, 2.08f) + arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, -1.42f) + lineToRelative(0.9f, -5.25f) + lineToRelative(-3.81f, -3.72f) + curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) + lineToRelative(5.27f, -0.77f) + lineToRelative(2.36f, -4.78f) + close() + moveTo(14.28f, 13.97f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.59f, 0.15f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) + lineToRelative(0.55f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) + lineToRelative(-0.19f, 0.63f) + curveToRelative(0.44f, 0.39f, 0.94f, 0.7f, 1.49f, 0.93f) + lineToRelative(0.49f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) + lineToRelative(-0.2f, -0.69f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) + lineToRelative(0.59f, -0.14f) + arcToRelative(5.72f, 5.72f, 0.0f, false, false, 0.0f, -1.8f) + lineToRelative(-0.55f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.19f, -0.64f) + curveToRelative(-0.44f, -0.38f, -0.94f, -0.7f, -1.49f, -0.92f) + lineToRelative(-0.49f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) + lineToRelative(0.2f, 0.7f) + close() + moveTo(17.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) + close() + } + } + return _starSettings!! + } + +private var _starSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarThreeQuarter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarThreeQuarter.kt new file mode 100644 index 00000000..efd94d79 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StarThreeQuarter.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.StarThreeQuarter: ImageVector + get() { + if (_starThreeQuarter != null) { + return _starThreeQuarter!! + } + _starThreeQuarter = fluentIcon(name = "Regular.StarThreeQuarter") { + fluentPath { + moveTo(13.21f, 3.1f) + lineTo(15.0f, 6.73f) + lineToRelative(0.57f, 1.15f) + lineToRelative(5.27f, 0.77f) + curveToRelative(1.1f, 0.16f, 1.55f, 1.52f, 0.75f, 2.3f) + lineToRelative(-3.82f, 3.72f) + lineToRelative(0.9f, 5.25f) + arcToRelative(1.35f, 1.35f, 0.0f, false, true, -1.96f, 1.42f) + lineTo(12.0f, 18.86f) + lineToRelative(-4.72f, 2.48f) + arcToRelative(1.34f, 1.34f, 0.0f, false, true, -1.96f, -1.42f) + lineToRelative(0.9f, -5.25f) + lineToRelative(-3.81f, -3.72f) + curveToRelative(-0.8f, -0.78f, -0.36f, -2.14f, 0.75f, -2.3f) + lineToRelative(5.27f, -0.77f) + lineToRelative(2.36f, -4.78f) + curveToRelative(0.25f, -0.5f, 0.73f, -0.75f, 1.2f, -0.75f) + curveToRelative(0.5f, 0.0f, 0.97f, 0.25f, 1.22f, 0.75f) + close() + moveTo(15.0f, 9.28f) + verticalLineToRelative(9.47f) + lineToRelative(2.14f, 1.12f) + lineToRelative(-0.86f, -5.03f) + curveToRelative(-0.07f, -0.43f, 0.07f, -0.88f, 0.39f, -1.2f) + lineToRelative(3.65f, -3.55f) + lineToRelative(-5.05f, -0.74f) + curveToRelative(-0.1f, -0.01f, -0.18f, -0.03f, -0.27f, -0.07f) + close() + } + } + return _starThreeQuarter!! + } + +private var _starThreeQuarter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Status.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Status.kt new file mode 100644 index 00000000..f0510226 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Status.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Status: ImageVector + get() { + if (_status != null) { + return _status!! + } + _status = fluentIcon(name = "Regular.Status") { + fluentPath { + moveTo(12.0f, 3.0f) + curveToRelative(1.11f, 0.0f, 2.18f, 0.2f, 3.16f, 0.57f) + lineToRelative(-1.18f, 1.2f) + arcToRelative(7.5f, 7.5f, 0.0f, true, false, 5.28f, 5.33f) + lineToRelative(1.2f, -1.2f) + arcTo(9.0f, 9.0f, 0.0f, true, true, 12.0f, 3.0f) + close() + moveTo(21.06f, 2.67f) + lineTo(21.21f, 2.81f) + arcToRelative(2.76f, 2.76f, 0.0f, false, true, 0.0f, 3.9f) + lineToRelative(-6.3f, 6.35f) + curveToRelative(-0.18f, 0.18f, -0.4f, 0.32f, -0.65f, 0.39f) + lineToRelative(-4.21f, 1.2f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.62f, -0.61f) + lineToRelative(1.2f, -4.22f) + curveToRelative(0.08f, -0.24f, 0.2f, -0.47f, 0.38f, -0.65f) + lineToRelative(6.31f, -6.35f) + arcToRelative(2.74f, 2.74f, 0.0f, false, true, 3.74f, -0.15f) + close() + moveTo(18.39f, 3.87f) + lineTo(12.08f, 10.23f) + lineTo(11.37f, 12.72f) + lineTo(13.84f, 12.01f) + lineTo(20.14f, 5.65f) + curveToRelative(0.47f, -0.46f, 0.5f, -1.18f, 0.1f, -1.68f) + lineToRelative(-0.1f, -0.1f) + arcToRelative(1.24f, 1.24f, 0.0f, false, false, -1.75f, 0.0f) + close() + } + } + return _status!! + } + +private var _status: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Steps.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Steps.kt new file mode 100644 index 00000000..bbd7ff48 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Steps.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Steps: ImageVector + get() { + if (_steps != null) { + return _steps!! + } + _steps = fluentIcon(name = "Regular.Steps") { + fluentPath { + moveTo(12.0f, 3.38f) + curveToRelative(0.0f, -0.76f, 0.62f, -1.38f, 1.38f, -1.38f) + horizontalLineToRelative(3.74f) + curveToRelative(0.76f, 0.0f, 1.38f, 0.62f, 1.38f, 1.38f) + lineTo(18.5f, 9.0f) + lineTo(17.0f, 9.0f) + lineTo(17.0f, 3.5f) + horizontalLineToRelative(-3.5f) + verticalLineToRelative(3.63f) + curveToRelative(0.0f, 0.75f, -0.62f, 1.37f, -1.38f, 1.37f) + lineTo(8.5f, 8.5f) + verticalLineToRelative(3.63f) + curveToRelative(0.0f, 0.75f, -0.62f, 1.37f, -1.38f, 1.37f) + lineTo(3.5f, 13.5f) + lineTo(3.5f, 17.0f) + lineTo(9.0f, 17.0f) + verticalLineToRelative(1.5f) + lineTo(3.37f, 18.5f) + curveToRelative(-0.75f, 0.0f, -1.37f, -0.62f, -1.37f, -1.38f) + verticalLineToRelative(-3.75f) + curveToRelative(0.0f, -0.75f, 0.62f, -1.37f, 1.38f, -1.37f) + lineTo(7.0f, 12.0f) + lineTo(7.0f, 8.37f) + curveTo(7.0f, 7.63f, 7.62f, 7.0f, 8.38f, 7.0f) + lineTo(12.0f, 7.0f) + lineTo(12.0f, 3.37f) + close() + moveTo(16.38f, 10.0f) + curveToRelative(-0.76f, 0.0f, -1.38f, 0.62f, -1.38f, 1.38f) + lineTo(15.0f, 15.0f) + horizontalLineToRelative(-3.63f) + curveToRelative(-0.75f, 0.0f, -1.37f, 0.62f, -1.37f, 1.38f) + verticalLineToRelative(3.75f) + curveToRelative(0.0f, 0.75f, 0.62f, 1.37f, 1.38f, 1.37f) + horizontalLineToRelative(6.87f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-6.88f) + curveToRelative(0.0f, -0.75f, -0.62f, -1.37f, -1.38f, -1.37f) + horizontalLineToRelative(-3.75f) + close() + moveTo(16.5f, 15.13f) + lineTo(16.5f, 11.5f) + lineTo(20.0f, 11.5f) + verticalLineToRelative(6.75f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(11.5f, 20.0f) + verticalLineToRelative(-3.5f) + horizontalLineToRelative(3.63f) + curveToRelative(0.75f, 0.0f, 1.37f, -0.62f, 1.37f, -1.38f) + close() + } + } + return _steps!! + } + +private var _steps: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Stethoscope.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Stethoscope.kt new file mode 100644 index 00000000..91597129 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Stethoscope.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Stethoscope: ImageVector + get() { + if (_stethoscope != null) { + return _stethoscope!! + } + _stethoscope = fluentIcon(name = "Regular.Stethoscope") { + fluentPath { + moveTo(2.75f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(2.0f, 9.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, 5.25f, 5.95f) + verticalLineToRelative(0.8f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, 12.0f, 0.0f) + verticalLineToRelative(-0.84f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, -1.5f, 0.0f) + verticalLineToRelative(0.84f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -9.0f, 0.0f) + verticalLineToRelative(-0.8f) + arcTo(6.0f, 6.0f, 0.0f, false, false, 14.0f, 9.0f) + lineTo(14.0f, 3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.75f) + verticalLineToRelative(5.0f) + arcToRelative(4.5f, 4.5f, 0.0f, true, true, -9.0f, 0.0f) + lineTo(3.5f, 4.0f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.5f) + close() + moveTo(18.5f, 10.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + } + } + return _stethoscope!! + } + +private var _stethoscope: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Sticker.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Sticker.kt new file mode 100644 index 00000000..03ae8e8f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Sticker.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Sticker: ImageVector + get() { + if (_sticker != null) { + return _sticker!! + } + _sticker = fluentIcon(name = "Regular.Sticker") { + fluentPath { + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(6.88f) + curveToRelative(0.0f, 0.6f, -0.24f, 1.17f, -0.66f, 1.59f) + lineToRelative(-5.62f, 5.62f) + curveToRelative(-0.42f, 0.42f, -1.0f, 0.66f, -1.6f, 0.66f) + lineTo(6.26f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(17.75f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(13.0f, 19.5f) + verticalLineToRelative(-3.06f) + curveToRelative(-0.22f, 0.03f, -0.45f, 0.05f, -0.67f, 0.06f) + lineToRelative(-0.33f, 0.01f) + arcToRelative(6.33f, 6.33f, 0.0f, false, true, -3.68f, -1.14f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.86f, -1.23f) + arcToRelative(5.05f, 5.05f, 0.0f, false, false, 4.15f, 0.7f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.7f, -1.83f) + lineToRelative(0.22f, -0.01f) + horizontalLineToRelative(3.25f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(18.44f, 14.5f) + horizontalLineToRelative(-2.19f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + verticalLineToRelative(0.15f) + lineToRelative(-0.01f, 2.19f) + lineToRelative(3.94f, -3.94f) + close() + moveTo(9.0f, 7.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(15.0f, 7.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + } + } + return _sticker!! + } + +private var _sticker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StickerAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StickerAdd.kt new file mode 100644 index 00000000..720cdbaa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StickerAdd.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.StickerAdd: ImageVector + get() { + if (_stickerAdd != null) { + return _stickerAdd!! + } + _stickerAdd = fluentIcon(name = "Regular.StickerAdd") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(17.5f, 14.0f) + horizontalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.4f) + lineToRelative(-0.01f, 0.1f) + lineTo(17.0f, 17.0f) + horizontalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(0.18f) + curveToRelative(0.04f, 0.2f, 0.2f, 0.36f, 0.4f, 0.4f) + lineToRelative(0.1f, 0.01f) + lineTo(17.0f, 18.0f) + verticalLineToRelative(2.6f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + horizontalLineToRelative(0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.4f) + lineToRelative(0.01f, -0.1f) + lineTo(18.0f, 18.0f) + horizontalLineToRelative(2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + verticalLineToRelative(-0.18f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.4f, -0.4f) + lineToRelative(-0.1f, -0.01f) + lineTo(18.0f, 17.0f) + verticalLineToRelative(-2.6f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.41f, -0.4f) + horizontalLineToRelative(-0.09f) + close() + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(5.77f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 6.24f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(6.25f, 4.49f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(5.06f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(6.25f, 20.99f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(9.18f, 14.14f) + curveToRelative(0.7f, 0.49f, 1.48f, 0.77f, 2.32f, 0.85f) + curveToRelative(-0.19f, 0.46f, -0.33f, 0.95f, -0.42f, 1.46f) + curveToRelative(-0.99f, -0.14f, -1.91f, -0.5f, -2.76f, -1.08f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.86f, -1.23f) + close() + moveTo(9.0f, 7.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(15.0f, 7.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + } + } + return _stickerAdd!! + } + +private var _stickerAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Stop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Stop.kt new file mode 100644 index 00000000..5e881eed --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Stop.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Stop: ImageVector + get() { + if (_stop != null) { + return _stop!! + } + _stop = fluentIcon(name = "Regular.Stop") { + fluentPath { + moveTo(19.25f, 4.5f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(14.5f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineTo(4.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineTo(4.75f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(14.5f) + close() + moveTo(4.75f, 3.0f) + curveTo(3.78f, 3.0f, 3.0f, 3.78f, 3.0f, 4.75f) + verticalLineToRelative(14.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(14.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineTo(4.75f) + curveTo(21.0f, 3.78f, 20.22f, 3.0f, 19.25f, 3.0f) + horizontalLineTo(4.75f) + close() + } + } + return _stop!! + } + +private var _stop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Storage.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Storage.kt new file mode 100644 index 00000000..0e1e3317 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Storage.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Storage: ImageVector + get() { + if (_storage != null) { + return _storage!! + } + _storage = fluentIcon(name = "Regular.Storage") { + fluentPath { + moveTo(5.0f, 7.0f) + horizontalLineToRelative(14.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 2.82f) + lineTo(22.0f, 14.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.82f, 3.0f) + lineTo(5.0f, 17.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -2.82f) + lineTo(2.0f, 10.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 2.82f, -3.0f) + lineTo(19.0f, 7.0f) + lineTo(5.0f, 7.0f) + close() + moveTo(19.0f, 8.5f) + lineTo(5.0f, 8.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(14.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + close() + moveTo(18.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(14.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + } + } + return _storage!! + } + +private var _storage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StoreMicrosoft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StoreMicrosoft.kt new file mode 100644 index 00000000..6887c7e2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StoreMicrosoft.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.StoreMicrosoft: ImageVector + get() { + if (_storeMicrosoft != null) { + return _storeMicrosoft!! + } + _storeMicrosoft = fluentIcon(name = "Regular.StoreMicrosoft") { + fluentPath { + moveTo(11.5f, 9.5f) + lineTo(11.5f, 13.0f) + lineTo(8.0f, 13.0f) + lineTo(8.0f, 9.5f) + horizontalLineToRelative(3.5f) + close() + moveTo(11.5f, 17.5f) + lineTo(11.5f, 14.0f) + lineTo(8.0f, 14.0f) + verticalLineToRelative(3.5f) + horizontalLineToRelative(3.5f) + close() + moveTo(16.0f, 9.5f) + lineTo(16.0f, 13.0f) + horizontalLineToRelative(-3.5f) + lineTo(12.5f, 9.5f) + lineTo(16.0f, 9.5f) + close() + moveTo(16.0f, 17.5f) + lineTo(16.0f, 14.0f) + horizontalLineToRelative(-3.5f) + verticalLineToRelative(3.5f) + lineTo(16.0f, 17.5f) + close() + moveTo(8.0f, 6.0f) + lineTo(8.0f, 3.75f) + curveTo(8.0f, 2.78f, 8.78f, 2.0f, 9.75f, 2.0f) + horizontalLineToRelative(4.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(16.0f, 6.0f) + horizontalLineToRelative(5.25f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(11.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 21.0f) + lineTo(4.75f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 18.25f) + lineTo(2.0f, 6.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + lineTo(8.0f, 6.0f) + close() + moveTo(9.5f, 3.75f) + lineTo(9.5f, 6.0f) + horizontalLineToRelative(5.0f) + lineTo(14.5f, 3.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + close() + moveTo(3.5f, 18.25f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(14.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + lineTo(20.5f, 7.5f) + horizontalLineToRelative(-17.0f) + verticalLineToRelative(10.75f) + close() + } + } + return _storeMicrosoft!! + } + +private var _storeMicrosoft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Stream.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Stream.kt new file mode 100644 index 00000000..c5a4741f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Stream.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Stream: ImageVector + get() { + if (_stream != null) { + return _stream!! + } + _stream = fluentIcon(name = "Regular.Stream") { + fluentPath { + moveTo(9.0f, 11.0f) + arcToRelative(7.5f, 7.5f, 0.0f, false, true, 7.5f, -7.5f) + horizontalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.1f) + arcToRelative(9.0f, 9.0f, 0.0f, false, false, -9.0f, 9.0f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 9.0f, 12.25f) + lineTo(9.0f, 11.0f) + close() + moveTo(16.75f, 7.0f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, -4.25f, 4.25f) + verticalLineToRelative(1.5f) + arcToRelative(5.75f, 5.75f, 0.0f, false, true, -5.75f, 5.75f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(4.0f) + curveTo(9.1f, 17.0f, 11.0f, 15.1f, 11.0f, 12.75f) + verticalLineToRelative(-1.5f) + arcToRelative(5.75f, 5.75f, 0.0f, false, true, 5.75f, -5.75f) + horizontalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.5f) + close() + moveTo(17.25f, 10.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + lineTo(16.0f, 13.0f) + arcToRelative(9.0f, 9.0f, 0.0f, false, true, -9.0f, 9.0f) + horizontalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(7.0f, 20.5f) + arcToRelative(7.5f, 7.5f, 0.0f, false, false, 7.5f, -7.5f) + verticalLineToRelative(-1.25f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 17.25f, 9.0f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.0f) + close() + } + } + return _stream!! + } + +private var _stream: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StyleGuide.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StyleGuide.kt new file mode 100644 index 00000000..e63957ad --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/StyleGuide.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.StyleGuide: ImageVector + get() { + if (_styleGuide != null) { + return _styleGuide!! + } + _styleGuide = fluentIcon(name = "Regular.StyleGuide") { + fluentPath { + moveTo(14.03f, 2.78f) + curveToRelative(1.47f, -0.4f, 2.98f, 0.48f, 3.37f, 1.94f) + lineToRelative(2.72f, 10.14f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -1.94f, 3.37f) + lineToRelative(-6.28f, 1.69f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -3.37f, -1.95f) + lineTo(5.8f, 7.83f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 1.95f, -3.37f) + lineToRelative(6.27f, -1.68f) + close() + moveTo(5.8f, 11.66f) + lineToRelative(1.76f, 6.57f) + curveToRelative(0.18f, 0.67f, 0.54f, 1.26f, 1.0f, 1.71f) + lineToRelative(-0.44f, -0.02f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.6f, -2.9f) + lineToRelative(0.28f, -5.36f) + close() + moveTo(14.42f, 4.23f) + lineTo(8.14f, 5.9f) + curveToRelative(-0.66f, 0.18f, -1.06f, 0.86f, -0.88f, 1.53f) + lineToRelative(2.72f, 10.14f) + curveToRelative(0.18f, 0.67f, 0.86f, 1.06f, 1.53f, 0.89f) + lineToRelative(6.28f, -1.69f) + curveToRelative(0.66f, -0.17f, 1.06f, -0.86f, 0.88f, -1.53f) + lineTo(15.95f, 5.11f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.53f, -0.88f) + close() + moveTo(4.88f, 10.18f) + lineTo(4.52f, 16.98f) + curveToRelative(-0.04f, 0.7f, 0.12f, 1.36f, 0.43f, 1.94f) + lineToRelative(-0.42f, -0.16f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -1.58f, -3.56f) + lineToRelative(1.93f, -5.02f) + close() + moveTo(9.74f, 7.03f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.52f, 1.94f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.52f, -1.94f) + close() + } + } + return _styleGuide!! + } + +private var _styleGuide: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SubGrid.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SubGrid.kt new file mode 100644 index 00000000..7f40cf70 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SubGrid.kt @@ -0,0 +1,100 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SubGrid: ImageVector + get() { + if (_subGrid != null) { + return _subGrid!! + } + _subGrid = fluentIcon(name = "Regular.SubGrid") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(5.0f) + lineTo(11.25f, 7.0f) + horizontalLineToRelative(-1.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 7.0f, 9.75f) + verticalLineToRelative(1.5f) + lineTo(4.5f, 11.25f) + verticalLineToRelative(-5.0f) + close() + moveTo(7.0f, 12.75f) + verticalLineToRelative(1.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 9.75f, 17.0f) + horizontalLineToRelative(1.5f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(-5.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-5.0f) + lineTo(7.0f, 12.75f) + close() + moveTo(11.25f, 15.5f) + horizontalLineToRelative(-1.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(2.75f) + verticalLineToRelative(2.75f) + close() + moveTo(12.75f, 17.0f) + horizontalLineToRelative(1.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 17.0f, 14.25f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-5.0f) + lineTo(12.75f, 17.0f) + close() + moveTo(15.5f, 12.75f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineToRelative(-1.5f) + verticalLineToRelative(-2.75f) + horizontalLineToRelative(2.75f) + close() + moveTo(17.0f, 11.25f) + verticalLineToRelative(-1.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 14.25f, 7.0f) + horizontalLineToRelative(-1.5f) + lineTo(12.75f, 4.5f) + horizontalLineToRelative(5.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(5.0f) + lineTo(17.0f, 11.25f) + close() + moveTo(12.75f, 8.5f) + horizontalLineToRelative(1.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(-2.75f) + lineTo(12.75f, 8.5f) + close() + moveTo(11.25f, 8.5f) + verticalLineToRelative(2.75f) + lineTo(8.5f, 11.25f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(1.5f) + close() + } + } + return _subGrid!! + } + +private var _subGrid: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Subtitles.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Subtitles.kt new file mode 100644 index 00000000..eb855b53 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Subtitles.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Subtitles: ImageVector + get() { + if (_subtitles != null) { + return _subtitles!! + } + _subtitles = fluentIcon(name = "Regular.Subtitles") { + fluentPath { + moveTo(2.0f, 7.25f) + curveTo(2.0f, 5.45f, 3.46f, 4.0f, 5.25f, 4.0f) + horizontalLineToRelative(13.5f) + curveTo(20.55f, 4.0f, 22.0f, 5.46f, 22.0f, 7.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(5.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + close() + moveTo(5.25f, 5.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(5.25f, 5.5f) + close() + moveTo(5.0f, 13.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(15.75f, 12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.5f) + close() + moveTo(5.0f, 16.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(11.75f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.5f) + close() + } + } + return _subtitles!! + } + +private var _subtitles: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SubtractCircle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SubtractCircle.kt new file mode 100644 index 00000000..e674ca7a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SubtractCircle.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SubtractCircle: ImageVector + get() { + if (_subtractCircle != null) { + return _subtractCircle!! + } + _subtractCircle = fluentIcon(name = "Regular.SubtractCircle") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, 20.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.0f, -20.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) + close() + moveTo(16.25f, 11.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(8.5f) + close() + } + } + return _subtractCircle!! + } + +private var _subtractCircle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SubtractSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SubtractSquare.kt new file mode 100644 index 00000000..0cf0e387 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SubtractSquare.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SubtractSquare: ImageVector + get() { + if (_subtractSquare != null) { + return _subtractSquare!! + } + _subtractSquare = fluentIcon(name = "Regular.SubtractSquare") { + fluentPath { + moveTo(16.25f, 11.25f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineTo(6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + horizontalLineTo(6.25f) + close() + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineTo(6.25f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineTo(6.25f) + close() + } + } + return _subtractSquare!! + } + +private var _subtractSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SurfaceEarbuds.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SurfaceEarbuds.kt new file mode 100644 index 00000000..44e34708 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SurfaceEarbuds.kt @@ -0,0 +1,110 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SurfaceEarbuds: ImageVector + get() { + if (_surfaceEarbuds != null) { + return _surfaceEarbuds!! + } + _surfaceEarbuds = fluentIcon(name = "Regular.SurfaceEarbuds") { + fluentPath { + moveTo(17.0f, 10.0f) + arcToRelative(6.0f, 6.0f, 0.0f, true, true, -1.68f, 11.76f) + lineToRelative(-0.44f, 0.18f) + lineToRelative(-0.2f, 0.07f) + lineToRelative(-2.62f, 0.86f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -3.1f, -1.0f) + lineToRelative(-0.1f, -0.14f) + lineToRelative(-0.42f, -0.68f) + curveToRelative(-0.63f, -1.0f, -0.55f, -2.28f, 0.18f, -3.19f) + lineToRelative(0.12f, -0.15f) + lineToRelative(1.97f, -2.13f) + lineToRelative(0.33f, -0.32f) + arcTo(6.0f, 6.0f, 0.0f, false, true, 17.0f, 10.0f) + close() + moveTo(11.15f, 17.32f) + lineTo(9.85f, 18.73f) + curveToRelative(-0.36f, 0.38f, -0.44f, 0.94f, -0.21f, 1.4f) + lineToRelative(0.06f, 0.12f) + lineToRelative(0.44f, 0.68f) + curveToRelative(0.28f, 0.45f, 0.81f, 0.67f, 1.32f, 0.55f) + lineToRelative(0.13f, -0.03f) + lineToRelative(1.85f, -0.62f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, -2.3f, -3.5f) + close() + moveTo(17.0f, 11.5f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, -4.13f, 2.7f) + lineToRelative(-0.06f, 0.16f) + lineToRelative(-0.09f, 0.23f) + lineToRelative(-0.07f, 0.24f) + curveToRelative(-0.05f, 0.18f, -0.08f, 0.37f, -0.1f, 0.56f) + lineToRelative(-0.04f, 0.29f) + lineToRelative(-0.01f, 0.32f) + verticalLineToRelative(0.21f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 2.64f, 3.89f) + lineToRelative(0.49f, 0.19f) + lineToRelative(0.1f, 0.02f) + lineToRelative(0.14f, 0.05f) + lineToRelative(0.36f, 0.07f) + lineToRelative(0.19f, 0.03f) + arcToRelative(4.51f, 4.51f, 0.0f, false, false, 0.5f, 0.04f) + lineTo(17.0f, 20.5f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, 0.0f, -9.0f) + close() + moveTo(7.0f, 1.0f) + curveToRelative(0.75f, 0.0f, 1.47f, 0.14f, 2.14f, 0.4f) + lineToRelative(0.8f, -0.26f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.88f, 0.78f) + lineToRelative(0.13f, 0.15f) + lineToRelative(0.13f, 0.19f) + lineToRelative(0.52f, 0.8f) + curveToRelative(0.62f, 0.94f, 0.6f, 2.15f, -0.05f, 3.09f) + lineToRelative(-0.13f, 0.16f) + lineToRelative(-0.13f, 0.15f) + lineToRelative(-0.3f, 0.3f) + lineTo(13.0f, 7.0f) + arcToRelative(6.0f, 6.0f, 0.0f, true, true, -6.0f, -6.0f) + close() + moveTo(5.73f, 2.68f) + lineToRelative(-0.15f, 0.05f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, 5.6f, 5.94f) + arcToRelative(4.16f, 4.16f, 0.0f, false, true, -6.53f, -0.53f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 1.08f, -5.46f) + close() + moveTo(10.53f, 2.53f) + lineTo(10.39f, 2.57f) + lineTo(7.44f, 3.51f) + curveToRelative(-0.25f, 0.07f, -0.5f, 0.17f, -0.72f, 0.32f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -0.82f, 3.5f) + arcToRelative(2.66f, 2.66f, 0.0f, false, false, 4.06f, 0.44f) + lineToRelative(0.13f, -0.13f) + lineToRelative(2.1f, -2.2f) + lineToRelative(0.09f, -0.1f) + curveToRelative(0.3f, -0.38f, 0.36f, -0.91f, 0.13f, -1.34f) + lineToRelative(-0.06f, -0.12f) + lineToRelative(-0.5f, -0.78f) + lineToRelative(-0.1f, -0.12f) + lineToRelative(-0.07f, -0.09f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.0f, -0.38f) + lineToRelative(-0.15f, 0.02f) + close() + moveTo(10.93f, 3.68f) + lineTo(11.0f, 3.78f) + lineTo(11.25f, 4.14f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.18f, 0.93f) + lineToRelative(-0.07f, -0.1f) + lineToRelative(-0.25f, -0.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.18f, -0.93f) + close() + } + } + return _surfaceEarbuds!! + } + +private var _surfaceEarbuds: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SurfaceHub.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SurfaceHub.kt new file mode 100644 index 00000000..a977ebc0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SurfaceHub.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SurfaceHub: ImageVector + get() { + if (_surfaceHub != null) { + return _surfaceHub!! + } + _surfaceHub = fluentIcon(name = "Regular.SurfaceHub") { + fluentPath { + moveTo(19.25f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.74f, 0.33f, 0.75f, 0.73f) + verticalLineToRelative(0.1f) + lineToRelative(-1.0f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, 0.66f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-0.73f) + lineTo(19.0f, 21.12f) + verticalLineToRelative(0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.45f, 0.26f) + lineToRelative(-0.03f, -0.1f) + lineTo(16.9f, 18.0f) + horizontalLineToRelative(-2.8f) + lineToRelative(-0.6f, 3.38f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, -0.16f) + lineToRelative(0.02f, -0.1f) + lineToRelative(0.56f, -3.12f) + lineTo(8.1f, 18.0f) + lineToRelative(-0.6f, 3.38f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, -0.16f) + lineToRelative(0.02f, -0.1f) + lineTo(7.48f, 13.0f) + lineTo(4.75f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.73f) + verticalLineToRelative(-0.1f) + lineToRelative(1.0f, -9.5f) + curveToRelative(0.04f, -0.35f, 0.31f, -0.62f, 0.65f, -0.66f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(13.5f) + close() + moveTo(13.48f, 13.0f) + lineTo(9.0f, 13.0f) + lineToRelative(-0.63f, 3.5f) + horizontalLineToRelative(4.48f) + lineToRelative(0.63f, -3.5f) + close() + moveTo(16.0f, 13.0f) + horizontalLineToRelative(-1.0f) + lineToRelative(-0.63f, 3.5f) + horizontalLineToRelative(2.26f) + lineTo(16.0f, 13.0f) + close() + moveTo(18.42f, 3.5f) + horizontalLineToRelative(-12.0f) + lineToRelative(-0.84f, 8.0f) + horizontalLineToRelative(12.0f) + lineToRelative(0.84f, -8.0f) + close() + } + } + return _surfaceHub!! + } + +private var _surfaceHub: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SwimmingPool.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SwimmingPool.kt new file mode 100644 index 00000000..7687b983 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SwimmingPool.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SwimmingPool: ImageVector + get() { + if (_swimmingPool != null) { + return _swimmingPool!! + } + _swimmingPool = fluentIcon(name = "Regular.SwimmingPool") { + fluentPath { + moveTo(5.5f, 5.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + verticalLineToRelative(6.29f) + curveToRelative(0.48f, 0.04f, 0.98f, 0.13f, 1.5f, 0.27f) + lineTo(9.5f, 11.0f) + lineTo(16.0f, 11.0f) + verticalLineToRelative(3.5f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, 1.5f, -0.2f) + lineTo(17.5f, 5.75f) + arcToRelative(2.75f, 2.75f, 0.0f, true, false, -5.5f, 0.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + lineTo(16.0f, 9.5f) + lineTo(9.5f, 9.5f) + lineTo(9.5f, 5.75f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -5.5f, 0.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + close() + moveTo(4.28f, 15.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(0.02f, -0.02f) + arcToRelative(2.15f, 2.15f, 0.0f, false, true, 0.16f, -0.14f) + curveToRelative(0.1f, -0.1f, 0.25f, -0.2f, 0.44f, -0.33f) + curveToRelative(0.4f, -0.26f, 0.96f, -0.56f, 1.7f, -0.76f) + curveToRelative(1.5f, -0.4f, 3.6f, -0.37f, 6.2f, 1.11f) + arcToRelative(7.94f, 7.94f, 0.0f, false, false, 5.77f, 1.0f) + arcToRelative(7.5f, 7.5f, 0.0f, false, false, 2.3f, -0.94f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.88f, 1.21f) + lineToRelative(-0.02f, 0.02f) + arcToRelative(3.06f, 3.06f, 0.0f, false, true, -0.2f, 0.13f) + curveToRelative(-0.14f, 0.08f, -0.33f, 0.2f, -0.57f, 0.32f) + arcToRelative(9.43f, 9.43f, 0.0f, false, true, -8.9f, -0.43f) + curveToRelative(-2.28f, -1.3f, -3.98f, -1.27f, -5.07f, -0.97f) + arcToRelative(4.43f, 4.43f, 0.0f, false, false, -1.64f, 0.85f) + close() + moveTo(3.22f, 19.53f) + curveToRelative(0.3f, 0.29f, 0.77f, 0.29f, 1.06f, 0.0f) + lineToRelative(0.01f, -0.01f) + lineToRelative(0.07f, -0.06f) + arcToRelative(4.43f, 4.43f, 0.0f, false, true, 1.57f, -0.79f) + curveToRelative(1.1f, -0.3f, 2.8f, -0.33f, 5.06f, 0.96f) + arcToRelative(9.43f, 9.43f, 0.0f, false, false, 6.85f, 1.16f) + arcToRelative(8.99f, 8.99f, 0.0f, false, false, 2.83f, -1.17f) + lineToRelative(0.01f, -0.01f) + horizontalLineToRelative(0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.88f, -1.22f) + lineToRelative(-0.02f, 0.02f) + arcToRelative(3.56f, 3.56f, 0.0f, false, true, -0.56f, 0.31f) + arcToRelative(7.94f, 7.94f, 0.0f, false, true, -7.5f, -0.4f) + curveToRelative(-2.59f, -1.47f, -4.7f, -1.5f, -6.2f, -1.1f) + arcToRelative(5.92f, 5.92f, 0.0f, false, false, -2.3f, 1.23f) + verticalLineToRelative(0.01f) + horizontalLineToRelative(-0.01f) + verticalLineToRelative(0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.06f) + close() + } + } + return _swimmingPool!! + } + +private var _swimmingPool: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SwipeDown.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SwipeDown.kt new file mode 100644 index 00000000..98ec1997 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SwipeDown.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SwipeDown: ImageVector + get() { + if (_swipeDown != null) { + return _swipeDown!! + } + _swipeDown = fluentIcon(name = "Regular.SwipeDown") { + fluentPath { + moveTo(12.0f, 6.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.64f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(12.7f) + lineToRelative(2.22f, -2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.69f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-3.5f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-3.5f, -3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) + lineToRelative(0.08f, 0.07f) + lineToRelative(2.22f, 2.22f) + lineTo(11.25f, 6.74f) + curveToRelative(0.0f, -0.4f, 0.34f, -0.74f, 0.75f, -0.74f) + close() + moveTo(12.0f, 2.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 1.75f, 9.68f) + verticalLineToRelative(-1.66f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, -3.5f, 0.0f) + verticalLineToRelative(1.66f) + arcTo(5.0f, 5.0f, 0.0f, false, true, 12.0f, 2.0f) + close() + } + } + return _swipeDown!! + } + +private var _swipeDown: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SwipeRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SwipeRight.kt new file mode 100644 index 00000000..0573c2ac --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SwipeRight.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SwipeRight: ImageVector + get() { + if (_swipeRight != null) { + return _swipeRight!! + } + _swipeRight = fluentIcon(name = "Regular.SwipeRight") { + fluentPath { + moveTo(6.0f, 12.0f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.64f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(12.7f) + lineToRelative(-2.22f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.98f) + lineToRelative(0.07f, 0.08f) + curveToRelative(0.27f, 0.27f, 0.69f, 0.3f, 0.98f, 0.07f) + lineToRelative(0.08f, -0.07f) + lineToRelative(3.5f, -3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.07f, -0.98f) + lineToRelative(-0.07f, -0.08f) + lineToRelative(-3.5f, -3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.13f, 0.98f) + lineToRelative(0.07f, 0.08f) + lineToRelative(2.22f, 2.22f) + lineTo(6.74f, 11.25f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 6.0f, 12.0f) + close() + moveTo(2.0f, 12.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 9.68f, 1.75f) + horizontalLineToRelative(-1.66f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 0.0f, -3.5f) + horizontalLineToRelative(1.66f) + arcTo(5.0f, 5.0f, 0.0f, false, false, 2.0f, 12.0f) + close() + } + } + return _swipeRight!! + } + +private var _swipeRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SwipeUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SwipeUp.kt new file mode 100644 index 00000000..ee5d5e60 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/SwipeUp.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.SwipeUp: ImageVector + get() { + if (_swipeUp != null) { + return _swipeUp!! + } + _swipeUp = fluentIcon(name = "Regular.SwipeUp") { + fluentPath { + moveTo(12.0f, 18.0f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.64f) + lineToRelative(0.01f, -0.1f) + lineTo(12.75f, 4.55f) + lineToRelative(2.22f, 2.22f) + curveToRelative(0.27f, 0.26f, 0.68f, 0.29f, 0.98f, 0.07f) + lineToRelative(0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.07f, -0.98f) + lineToRelative(-0.07f, -0.08f) + lineToRelative(-3.5f, -3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, -0.07f) + lineToRelative(-0.08f, 0.07f) + lineToRelative(-3.5f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) + lineToRelative(0.08f, -0.07f) + lineToRelative(2.22f, -2.22f) + verticalLineToRelative(12.7f) + curveToRelative(0.0f, 0.4f, 0.34f, 0.74f, 0.75f, 0.74f) + close() + moveTo(12.0f, 22.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 1.75f, -9.68f) + verticalLineToRelative(1.66f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, -3.5f, 0.0f) + verticalLineToRelative(-1.66f) + arcTo(5.0f, 5.0f, 0.0f, false, false, 12.0f, 22.0f) + close() + } + } + return _swipeUp!! + } + +private var _swipeUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Symbols.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Symbols.kt new file mode 100644 index 00000000..dee474f0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Symbols.kt @@ -0,0 +1,115 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Symbols: ImageVector + get() { + if (_symbols != null) { + return _symbols!! + } + _symbols = fluentIcon(name = "Regular.Symbols") { + fluentPath { + moveTo(16.92f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(15.88f, 19.5f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 4.7f, -0.3f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.24f, 0.87f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -6.65f, 0.83f) + verticalLineToRelative(0.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-2.6f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(2.5f) + close() + moveTo(6.4f, 13.0f) + horizontalLineToRelative(0.1f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(3.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineTo(2.0f, 17.5f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(-0.1f) + close() + moveTo(17.5f, 13.0f) + curveToRelative(1.11f, 0.0f, 2.15f, 0.4f, 2.95f, 1.1f) + verticalLineToRelative(-0.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(2.6f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(19.74f, 15.5f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -4.7f, 0.29f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.24f, -0.86f) + arcTo(4.5f, 4.5f, 0.0f, false, true, 17.5f, 13.0f) + close() + moveTo(6.5f, 2.0f) + arcToRelative(4.5f, 4.5f, 0.0f, true, true, 0.0f, 9.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 0.0f, -9.0f) + close() + moveTo(19.21f, 2.0f) + curveTo(20.77f, 2.0f, 22.0f, 3.39f, 22.0f, 5.08f) + arcToRelative(3.2f, 3.2f, 0.0f, false, true, -0.85f, 2.21f) + lineToRelative(-2.5f, 3.14f) + arcToRelative(1.49f, 1.49f, 0.0f, false, true, -2.35f, 0.0f) + lineToRelative(-2.67f, -3.4f) + arcTo(3.27f, 3.27f, 0.0f, false, true, 13.0f, 5.08f) + curveTo(13.0f, 3.39f, 14.23f, 2.0f, 15.79f, 2.0f) + curveToRelative(0.56f, 0.0f, 1.1f, 0.19f, 1.55f, 0.52f) + lineToRelative(0.16f, 0.13f) + lineToRelative(0.16f, -0.13f) + arcTo(2.6f, 2.6f, 0.0f, false, true, 19.21f, 2.0f) + close() + moveTo(3.91f, 4.98f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 4.1f, 4.1f) + lineToRelative(-4.1f, -4.1f) + close() + moveTo(19.21f, 3.51f) + curveToRelative(-0.35f, 0.0f, -0.68f, 0.18f, -0.92f, 0.5f) + lineToRelative(-0.79f, 1.0f) + lineToRelative(-0.78f, -1.0f) + arcToRelative(1.19f, 1.19f, 0.0f, false, false, -0.93f, -0.5f) + curveToRelative(-0.69f, 0.0f, -1.29f, 0.68f, -1.29f, 1.57f) + curveToRelative(0.0f, 0.4f, 0.12f, 0.76f, 0.32f, 1.02f) + lineToRelative(2.66f, 3.38f) + lineToRelative(2.56f, -3.21f) + curveToRelative(0.29f, -0.3f, 0.46f, -0.72f, 0.46f, -1.2f) + curveToRelative(0.0f, -0.88f, -0.6f, -1.56f, -1.29f, -1.56f) + close() + moveTo(6.5f, 3.5f) + curveToRelative(-0.56f, 0.0f, -1.08f, 0.15f, -1.52f, 0.41f) + lineToRelative(4.1f, 4.11f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 6.5f, 3.5f) + close() + } + } + return _symbols!! + } + +private var _symbols: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Syringe.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Syringe.kt new file mode 100644 index 00000000..e268dbc3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Syringe.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Syringe: ImageVector + get() { + if (_syringe != null) { + return _syringe!! + } + _syringe = fluentIcon(name = "Regular.Syringe") { + fluentPath { + moveTo(16.72f, 2.22f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.07f, 0.0f) + lineToRelative(4.0f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.07f, 1.06f) + lineToRelative(-0.47f, -0.47f) + lineToRelative(-1.69f, 1.69f) + lineToRelative(2.47f, 2.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-1.47f, -1.47f) + lineToRelative(-6.84f, 6.84f) + curveToRelative(-0.7f, 0.7f, -1.66f, 1.1f, -2.65f, 1.1f) + lineTo(6.56f, 18.5f) + lineToRelative(-3.28f, 3.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(3.28f, -3.28f) + verticalLineToRelative(-2.45f) + curveToRelative(0.0f, -1.0f, 0.4f, -1.95f, 1.1f, -2.65f) + lineToRelative(0.87f, -0.87f) + lineToRelative(2.0f, -2.0f) + lineToRelative(2.0f, -2.0f) + lineToRelative(1.97f, -1.97f) + lineToRelative(-1.47f, -1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineToRelative(2.47f, 2.47f) + lineToRelative(1.7f, -1.7f) + lineToRelative(-0.48f, -0.46f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + moveTo(12.0f, 9.06f) + lineToRelative(-0.94f, 0.94f) + lineToRelative(0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-0.72f, -0.72f) + lineToRelative(-0.94f, 0.94f) + lineToRelative(0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(8.0f, 13.06f) + lineToRelative(-0.34f, 0.34f) + curveToRelative(-0.42f, 0.42f, -0.66f, 1.0f, -0.66f, 1.6f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(2.0f) + curveToRelative(0.6f, 0.0f, 1.18f, -0.24f, 1.6f, -0.66f) + lineToRelative(6.84f, -6.84f) + lineToRelative(-2.94f, -2.94f) + lineTo(13.06f, 8.0f) + lineToRelative(0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineTo(12.0f, 9.06f) + close() + moveTo(19.2f, 5.75f) + lineTo(18.25f, 4.81f) + lineTo(16.56f, 6.5f) + lineTo(17.5f, 7.44f) + lineTo(19.2f, 5.74f) + close() + } + } + return _syringe!! + } + +private var _syringe: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/System.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/System.kt new file mode 100644 index 00000000..9addce48 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/System.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.System: ImageVector + get() { + if (_system != null) { + return _system!! + } + _system = fluentIcon(name = "Regular.System") { + fluentPath { + moveTo(4.75f, 5.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 7.75f) + verticalLineToRelative(8.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 19.25f, 19.0f) + lineTo(4.75f, 19.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 16.25f) + verticalLineToRelative(-8.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.75f, 5.0f) + close() + moveTo(4.75f, 6.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(14.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(4.75f, 6.5f) + close() + } + } + return _system!! + } + +private var _system: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Tab.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Tab.kt new file mode 100644 index 00000000..e35a3606 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Tab.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Tab: ImageVector + get() { + if (_tab != null) { + return _tab!! + } + _tab = fluentIcon(name = "Regular.Tab") { + fluentPath { + moveTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) + horizontalLineTo(5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + verticalLineTo(5.75f) + close() + moveTo(5.75f, 4.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(12.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineTo(5.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineTo(5.75f) + close() + } + } + return _tab!! + } + +private var _tab: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabAdd.kt new file mode 100644 index 00000000..05c58b88 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabAdd.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TabAdd: ImageVector + get() { + if (_tabAdd != null) { + return _tabAdd!! + } + _tabAdd = fluentIcon(name = "Regular.TabAdd") { + fluentPath { + moveTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(6.27f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 5.74f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(5.75f, 4.49f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(5.56f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(5.75f, 20.99f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _tabAdd!! + } + +private var _tabAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabArrowLeft.kt new file mode 100644 index 00000000..0cc08df9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabArrowLeft.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TabArrowLeft: ImageVector + get() { + if (_tabArrowLeft != null) { + return _tabArrowLeft!! + } + _tabArrowLeft = fluentIcon(name = "Regular.TabArrowLeft") { + fluentPath { + moveTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(6.27f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 5.74f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(5.75f, 4.49f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(5.56f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(5.75f, 20.99f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + close() + moveTo(17.5f, 23.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, 11.0f) + close() + moveTo(20.5f, 18.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + horizontalLineToRelative(-4.8f) + lineToRelative(1.65f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.7f) + lineToRelative(2.5f, 2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineTo(15.71f, 18.0f) + horizontalLineToRelative(4.79f) + close() + } + } + return _tabArrowLeft!! + } + +private var _tabArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabDesktop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabDesktop.kt new file mode 100644 index 00000000..7fd5182f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabDesktop.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TabDesktop: ImageVector + get() { + if (_tabDesktop != null) { + return _tabDesktop!! + } + _tabDesktop = fluentIcon(name = "Regular.TabDesktop") { + fluentPath { + moveTo(5.75f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) + lineTo(21.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) + lineTo(5.75f, 3.0f) + close() + moveTo(11.0f, 4.5f) + verticalLineToRelative(1.25f) + curveTo(11.0f, 6.99f, 12.0f, 8.0f, 13.25f, 8.0f) + horizontalLineToRelative(6.25f) + verticalLineToRelative(10.25f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + lineTo(5.75f, 19.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + lineTo(4.5f, 5.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + lineTo(11.0f, 4.5f) + close() + moveTo(19.5f, 6.5f) + horizontalLineToRelative(-6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(12.5f, 4.5f) + horizontalLineToRelative(5.75f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(0.75f) + close() + } + } + return _tabDesktop!! + } + +private var _tabDesktop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabDesktopArrowClockwise.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabDesktopArrowClockwise.kt new file mode 100644 index 00000000..c08595b5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabDesktopArrowClockwise.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TabDesktopArrowClockwise: ImageVector + get() { + if (_tabDesktopArrowClockwise != null) { + return _tabDesktopArrowClockwise!! + } + _tabDesktopArrowClockwise = fluentIcon(name = "Regular.TabDesktopArrowClockwise") { + fluentPath { + moveTo(5.75f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(5.35f) + curveToRelative(0.44f, -0.45f, 0.95f, -0.84f, 1.5f, -1.16f) + lineTo(4.5f, 5.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + lineTo(11.0f, 4.5f) + verticalLineToRelative(1.25f) + curveTo(11.0f, 6.99f, 12.0f, 8.0f, 13.25f, 8.0f) + horizontalLineToRelative(6.25f) + verticalLineToRelative(10.25f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineToRelative(-4.19f) + arcTo(7.03f, 7.03f, 0.0f, false, true, 12.9f, 21.0f) + horizontalLineToRelative(5.35f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) + lineTo(21.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) + lineTo(5.75f, 3.0f) + close() + moveTo(19.5f, 6.5f) + horizontalLineToRelative(-6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(12.5f, 4.5f) + horizontalLineToRelative(5.75f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(0.75f) + close() + moveTo(12.25f, 9.75f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.75f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(9.5f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.33f) + lineToRelative(-0.02f, -0.01f) + arcTo(4.5f, 4.5f, 0.0f, true, false, 12.5f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + arcToRelative(6.0f, 6.0f, 0.0f, true, true, -2.5f, -4.87f) + verticalLineToRelative(-0.63f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _tabDesktopArrowClockwise!! + } + +private var _tabDesktopArrowClockwise: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabDesktopBottom.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabDesktopBottom.kt new file mode 100644 index 00000000..2cf795e6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabDesktopBottom.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TabDesktopBottom: ImageVector + get() { + if (_tabDesktopBottom != null) { + return _tabDesktopBottom!! + } + _tabDesktopBottom = fluentIcon(name = "Regular.TabDesktopBottom") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineTo(6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + horizontalLineTo(6.25f) + close() + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineTo(14.5f) + verticalLineToRelative(-1.75f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineTo(4.5f) + verticalLineTo(6.25f) + close() + moveTo(4.5f, 17.0f) + horizontalLineToRelative(7.75f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.75f) + horizontalLineTo(6.25f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineTo(17.0f) + close() + } + } + return _tabDesktopBottom!! + } + +private var _tabDesktopBottom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabDesktopImage.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabDesktopImage.kt new file mode 100644 index 00000000..5f5e9c85 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabDesktopImage.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TabDesktopImage: ImageVector + get() { + if (_tabDesktopImage != null) { + return _tabDesktopImage!! + } + _tabDesktopImage = fluentIcon(name = "Regular.TabDesktopImage") { + fluentPath { + moveTo(5.75f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(4.79f) + curveToRelative(0.45f, -0.27f, 0.96f, -0.44f, 1.5f, -0.5f) + lineTo(4.5f, 5.74f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + lineTo(11.0f, 4.49f) + verticalLineToRelative(1.25f) + curveTo(11.0f, 6.99f, 12.0f, 8.0f, 13.25f, 8.0f) + horizontalLineToRelative(6.25f) + verticalLineToRelative(10.25f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineToRelative(-4.28f) + arcToRelative(3.98f, 3.98f, 0.0f, false, true, -0.5f, 1.5f) + horizontalLineToRelative(4.78f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) + lineTo(21.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) + lineTo(5.75f, 3.0f) + close() + moveTo(19.5f, 6.5f) + horizontalLineToRelative(-6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(12.5f, 4.5f) + horizontalLineToRelative(5.75f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(0.75f) + close() + moveTo(5.0f, 11.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, 3.0f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.56f, 0.15f, 1.08f, 0.42f, 1.52f) + lineToRelative(3.49f, -3.49f) + curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.0f) + lineToRelative(3.5f, 3.5f) + curveToRelative(0.26f, -0.45f, 0.41f, -0.97f, 0.41f, -1.53f) + verticalLineToRelative(-5.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -3.0f, -3.0f) + lineTo(5.0f, 11.0f) + close() + moveTo(5.0f, 22.0f) + curveToRelative(-0.56f, 0.0f, -1.08f, -0.15f, -1.52f, -0.42f) + lineToRelative(3.49f, -3.49f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(3.5f, 3.5f) + curveToRelative(-0.45f, 0.26f, -0.97f, 0.41f, -1.53f, 0.41f) + lineTo(5.0f, 22.0f) + close() + moveTo(10.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + close() + } + } + return _tabDesktopImage!! + } + +private var _tabDesktopImage: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabDesktopMultipleBottom.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabDesktopMultipleBottom.kt new file mode 100644 index 00000000..2f0c394e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabDesktopMultipleBottom.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TabDesktopMultipleBottom: ImageVector + get() { + if (_tabDesktopMultipleBottom != null) { + return _tabDesktopMultipleBottom!! + } + _tabDesktopMultipleBottom = fluentIcon(name = "Regular.TabDesktopMultipleBottom") { + fluentPath { + moveTo(6.0f, 5.0f) + horizontalLineToRelative(1.52f) + curveToRelative(0.12f, -0.85f, 0.85f, -1.5f, 1.73f, -1.5f) + horizontalLineToRelative(8.0f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(8.0f) + curveToRelative(0.0f, 0.88f, -0.65f, 1.61f, -1.5f, 1.73f) + lineTo(19.0f, 18.0f) + curveToRelative(1.68f, -0.13f, 3.0f, -1.53f, 3.0f, -3.24f) + verticalLineToRelative(-8.0f) + arcTo(4.75f, 4.75f, 0.0f, false, false, 17.25f, 2.0f) + horizontalLineToRelative(-8.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.24f, 3.0f) + close() + moveTo(2.0f, 9.25f) + curveTo(2.0f, 7.45f, 3.46f, 6.0f, 5.25f, 6.0f) + horizontalLineToRelative(9.5f) + curveTo(16.55f, 6.0f, 18.0f, 7.46f, 18.0f, 9.25f) + verticalLineToRelative(9.5f) + curveToRelative(0.0f, 1.8f, -1.45f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-9.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 18.75f) + verticalLineToRelative(-9.5f) + close() + moveTo(5.25f, 7.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(7.25f) + horizontalLineToRelative(5.75f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(1.75f) + horizontalLineToRelative(3.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-9.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-9.5f) + close() + moveTo(10.0f, 20.5f) + verticalLineToRelative(-1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(3.5f, 18.0f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(10.0f, 20.5f) + close() + } + } + return _tabDesktopMultipleBottom!! + } + +private var _tabDesktopMultipleBottom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabInPrivate.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabInPrivate.kt new file mode 100644 index 00000000..a7e9b5d6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabInPrivate.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TabInPrivate: ImageVector + get() { + if (_tabInPrivate != null) { + return _tabInPrivate!! + } + _tabInPrivate = fluentIcon(name = "Regular.TabInPrivate") { + fluentPath { + moveTo(5.75f, 3.0f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) + lineTo(5.75f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + close() + moveTo(4.5f, 5.75f) + verticalLineToRelative(1.04f) + lineTo(6.8f, 4.5f) + lineTo(5.74f, 4.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + close() + moveTo(4.5f, 8.21f) + verticalLineToRelative(2.58f) + lineToRelative(6.3f, -6.29f) + lineTo(8.2f, 4.5f) + lineTo(4.5f, 8.2f) + close() + moveTo(12.2f, 4.5f) + lineTo(4.5f, 12.2f) + verticalLineToRelative(2.6f) + lineTo(14.8f, 4.5f) + horizontalLineToRelative(-2.6f) + close() + moveTo(16.2f, 4.5f) + lineTo(4.5f, 16.2f) + verticalLineToRelative(2.05f) + curveToRelative(0.0f, 0.16f, 0.03f, 0.32f, 0.09f, 0.46f) + lineTo(18.7f, 4.59f) + curveToRelative(-0.14f, -0.06f, -0.3f, -0.09f, -0.46f, -0.09f) + horizontalLineToRelative(-2.04f) + close() + moveTo(19.41f, 5.3f) + lineTo(5.3f, 19.4f) + curveToRelative(0.14f, 0.06f, 0.3f, 0.09f, 0.46f, 0.09f) + horizontalLineToRelative(2.04f) + lineTo(19.5f, 7.8f) + lineTo(19.5f, 5.74f) + curveToRelative(0.0f, -0.16f, -0.03f, -0.32f, -0.09f, -0.46f) + close() + moveTo(19.5f, 9.2f) + lineTo(9.2f, 19.5f) + horizontalLineToRelative(2.6f) + lineToRelative(7.7f, -7.7f) + lineTo(19.5f, 9.2f) + close() + moveTo(19.5f, 13.2f) + lineTo(13.2f, 19.5f) + horizontalLineToRelative(2.6f) + lineToRelative(3.7f, -3.7f) + verticalLineToRelative(-2.6f) + close() + moveTo(19.5f, 17.2f) + lineTo(17.2f, 19.5f) + horizontalLineToRelative(1.05f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-1.04f) + close() + } + } + return _tabInPrivate!! + } + +private var _tabInPrivate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabInprivateAccount.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabInprivateAccount.kt new file mode 100644 index 00000000..1bbaeea6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabInprivateAccount.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TabInprivateAccount: ImageVector + get() { + if (_tabInprivateAccount != null) { + return _tabInprivateAccount!! + } + _tabInprivateAccount = fluentIcon(name = "Regular.TabInprivateAccount") { + fluentPath { + moveTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(4.6f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -1.5f, -1.06f) + lineTo(19.5f, 5.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(5.75f, 4.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + lineTo(12.0f, 19.5f) + curveToRelative(0.03f, 0.54f, 0.15f, 1.04f, 0.37f, 1.5f) + lineTo(5.75f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + close() + moveTo(18.0f, 14.5f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + verticalLineToRelative(0.5f) + horizontalLineToRelative(2.83f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -0.6f, -1.0f) + lineTo(18.0f, 11.0f) + verticalLineToRelative(-1.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 2.24f, 5.0f) + lineTo(18.0f, 15.0f) + verticalLineToRelative(-0.5f) + close() + moveTo(14.94f, 17.0f) + curveToRelative(-0.58f, 0.0f, -1.07f, 0.28f, -1.4f, 0.63f) + curveToRelative(-0.32f, 0.35f, -0.54f, 0.83f, -0.54f, 1.31f) + verticalLineToRelative(0.39f) + curveToRelative(0.0f, 1.96f, 2.04f, 3.67f, 5.0f, 3.67f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(3.47f) + curveToRelative(0.41f, -0.29f, 0.75f, -0.63f, 1.0f, -1.0f) + lineTo(18.0f, 21.0f) + verticalLineToRelative(0.5f) + curveToRelative(-2.53f, 0.0f, -3.5f, -1.39f, -3.5f, -2.17f) + verticalLineToRelative(-0.39f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.14f, -0.29f) + curveToRelative(0.11f, -0.11f, 0.22f, -0.15f, 0.3f, -0.15f) + lineTo(18.0f, 18.5f) + lineTo(18.0f, 18.0f) + horizontalLineToRelative(4.73f) + arcToRelative(2.13f, 2.13f, 0.0f, false, false, -0.27f, -0.37f) + arcToRelative(1.91f, 1.91f, 0.0f, false, false, -1.4f, -0.63f) + horizontalLineToRelative(-6.12f) + close() + moveTo(18.0f, 14.0f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(3.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -0.17f, 1.0f) + lineTo(18.0f, 14.0f) + close() + moveTo(22.92f, 20.0f) + lineTo(18.0f, 20.0f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(0.33f) + curveToRelative(0.0f, 0.23f, -0.03f, 0.45f, -0.08f, 0.67f) + close() + } + } + return _tabInprivateAccount!! + } + +private var _tabInprivateAccount: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabProhibited.kt new file mode 100644 index 00000000..962a1dcc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabProhibited.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TabProhibited: ImageVector + get() { + if (_tabProhibited != null) { + return _tabProhibited!! + } + _tabProhibited = fluentIcon(name = "Regular.TabProhibited") { + fluentPath { + moveTo(5.75f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) + horizontalLineToRelative(6.27f) + curveToRelative(-0.3f, -0.46f, -0.53f, -0.97f, -0.7f, -1.5f) + lineTo(5.74f, 19.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + lineTo(4.49f, 5.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(12.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(5.56f) + curveToRelative(0.53f, 0.18f, 1.04f, 0.42f, 1.5f, 0.71f) + lineTo(20.99f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) + lineTo(5.75f, 3.0f) + close() + moveTo(17.5f, 23.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) + close() + moveTo(14.2f, 19.75f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 5.56f, -5.56f) + lineToRelative(-5.57f, 5.56f) + close() + moveTo(15.25f, 20.81f) + lineTo(20.81f, 15.25f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -5.56f, 5.56f) + close() + } + } + return _tabProhibited!! + } + +private var _tabProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabShieldDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabShieldDismiss.kt new file mode 100644 index 00000000..e071f687 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabShieldDismiss.kt @@ -0,0 +1,87 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TabShieldDismiss: ImageVector + get() { + if (_tabShieldDismiss != null) { + return _tabShieldDismiss!! + } + _tabShieldDismiss = fluentIcon(name = "Regular.TabShieldDismiss") { + fluentPath { + moveTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(4.99f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, -1.5f, -0.9f) + lineTo(19.5f, 5.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(5.75f, 4.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(7.24f) + arcToRelative(6.67f, 6.67f, 0.0f, false, false, 1.2f, 1.5f) + lineTo(5.74f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + close() + moveTo(18.35f, 10.15f) + arcTo(5.71f, 5.71f, 0.0f, false, false, 22.5f, 12.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.5f, 0.41f) + verticalLineToRelative(3.09f) + curveToRelative(0.0f, 3.22f, -1.64f, 5.4f, -4.84f, 6.47f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.32f, 0.0f) + curveToRelative(-3.1f, -1.03f, -4.74f, -3.12f, -4.84f, -6.18f) + lineTo(13.0f, 12.5f) + curveToRelative(0.0f, -0.28f, 0.22f, -0.5f, 0.5f, -0.5f) + curveToRelative(1.53f, 0.0f, 2.9f, -0.61f, 4.15f, -1.85f) + curveToRelative(0.2f, -0.2f, 0.51f, -0.2f, 0.7f, 0.0f) + close() + moveTo(15.97f, 13.84f) + lineTo(15.9f, 13.9f) + lineTo(15.84f, 13.97f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) + lineToRelative(0.06f, 0.07f) + lineToRelative(1.4f, 1.4f) + lineToRelative(-1.4f, 1.4f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) + lineToRelative(0.06f, 0.07f) + lineToRelative(0.07f, 0.06f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) + lineToRelative(0.07f, -0.06f) + lineToRelative(1.4f, -1.4f) + lineToRelative(1.4f, 1.4f) + lineToRelative(0.07f, 0.06f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) + lineToRelative(0.07f, -0.06f) + lineToRelative(0.06f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.56f) + lineToRelative(-0.06f, -0.07f) + lineToRelative(-1.4f, -1.4f) + lineToRelative(1.4f, -1.4f) + lineToRelative(0.06f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.56f) + lineToRelative(-0.06f, -0.07f) + lineToRelative(-0.07f, -0.06f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.56f, 0.0f) + lineToRelative(-0.07f, 0.06f) + lineToRelative(-1.4f, 1.4f) + lineToRelative(-1.4f, -1.4f) + lineToRelative(-0.07f, -0.06f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.49f, -0.04f) + lineToRelative(-0.07f, 0.04f) + close() + } + } + return _tabShieldDismiss!! + } + +private var _tabShieldDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Table.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Table.kt new file mode 100644 index 00000000..26cba20e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Table.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Table: ImageVector + get() { + if (_table != null) { + return _table!! + } + _table = fluentIcon(name = "Regular.Table") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 8.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + lineTo(6.25f, 4.5f) + close() + moveTo(4.5f, 10.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(10.0f, 10.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(15.5f, 10.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(14.0f, 15.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(15.5f, 19.5f) + horizontalLineToRelative(2.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 15.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + close() + moveTo(15.5f, 8.5f) + horizontalLineToRelative(4.0f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(15.5f, 4.5f) + verticalLineToRelative(4.0f) + close() + moveTo(14.0f, 4.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(4.5f, 15.5f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(8.5f, 19.5f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + close() + } + } + return _table!! + } + +private var _table: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableAdd.kt new file mode 100644 index 00000000..3b94f10c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableAdd.kt @@ -0,0 +1,96 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableAdd: ImageVector + get() { + if (_tableAdd != null) { + return _tableAdd!! + } + _tableAdd = fluentIcon(name = "Regular.TableAdd") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(5.77f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 10.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(1.31f) + curveToRelative(-0.53f, 0.18f, -1.04f, 0.42f, -1.5f, 0.71f) + lineTo(14.0f, 10.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(2.02f) + curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) + lineTo(10.0f, 15.5f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(1.31f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 8.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + lineTo(6.25f, 4.5f) + close() + moveTo(4.5f, 10.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(15.5f, 8.5f) + horizontalLineToRelative(4.0f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(15.5f, 4.5f) + verticalLineToRelative(4.0f) + close() + moveTo(14.0f, 4.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(4.5f, 15.5f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(8.5f, 19.5f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _tableAdd!! + } + +private var _tableAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableBottomRow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableBottomRow.kt new file mode 100644 index 00000000..16846372 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableBottomRow.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableBottomRow: ImageVector + get() { + if (_tableBottomRow != null) { + return _tableBottomRow!! + } + _tableBottomRow = fluentIcon(name = "Regular.TableBottomRow") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(19.5f, 14.0f) + horizontalLineToRelative(-15.0f) + lineTo(4.5f, 6.25f) + close() + moveTo(10.0f, 15.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(17.75f, 19.5f) + lineTo(15.5f, 19.5f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + close() + moveTo(4.5f, 17.75f) + lineTo(4.5f, 15.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(4.0f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + close() + } + } + return _tableBottomRow!! + } + +private var _tableBottomRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableCellEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableCellEdit.kt new file mode 100644 index 00000000..6faedb43 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableCellEdit.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableCellEdit: ImageVector + get() { + if (_tableCellEdit != null) { + return _tableCellEdit!! + } + _tableCellEdit = fluentIcon(name = "Regular.TableCellEdit") { + fluentPath { + moveTo(3.0f, 8.75f) + curveTo(3.0f, 7.51f, 4.0f, 6.5f, 5.25f, 6.5f) + horizontalLineToRelative(13.5f) + curveToRelative(0.98f, 0.0f, 1.82f, 0.63f, 2.12f, 1.5f) + horizontalLineToRelative(-0.15f) + curveToRelative(-0.47f, 0.0f, -0.94f, 0.1f, -1.37f, 0.3f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.6f, -0.3f) + horizontalLineTo(15.5f) + verticalLineToRelative(3.85f) + lineToRelative(-1.5f, 1.5f) + verticalLineTo(8.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(6.0f) + horizontalLineToRelative(3.35f) + lineToRelative(-0.86f, 0.86f) + curveToRelative(-0.2f, 0.2f, -0.37f, 0.41f, -0.51f, 0.64f) + horizontalLineTo(5.25f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-4.5f) + close() + moveTo(5.25f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineTo(8.5f) + verticalLineTo(8.0f) + horizontalLineTo(5.25f) + close() + } + fluentPath { + moveTo(20.72f, 9.0f) + curveToRelative(-0.6f, 0.0f, -1.18f, 0.22f, -1.62f, 0.67f) + lineToRelative(-5.9f, 5.9f) + curveToRelative(-0.35f, 0.35f, -0.6f, 0.78f, -0.71f, 1.25f) + lineToRelative(-0.46f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcTo(2.29f, 2.29f, 0.0f, false, false, 20.72f, 9.0f) + close() + } + } + return _tableCellEdit!! + } + +private var _tableCellEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableCellsMerge.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableCellsMerge.kt new file mode 100644 index 00000000..34a53106 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableCellsMerge.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableCellsMerge: ImageVector + get() { + if (_tableCellsMerge != null) { + return _tableCellsMerge!! + } + _tableCellsMerge = fluentIcon(name = "Regular.TableCellsMerge") { + fluentPath { + moveTo(15.58f, 11.25f) + lineTo(8.42f, 11.25f) + lineToRelative(0.9f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.13f, -1.0f) + lineToRelative(-2.0f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.0f) + lineToRelative(2.0f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.12f, -1.0f) + lineToRelative(-0.89f, -1.0f) + horizontalLineToRelative(7.16f) + lineToRelative(-0.89f, 1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.12f, 1.0f) + lineToRelative(2.0f, -2.25f) + lineToRelative(0.01f, -0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.01f, -1.0f) + lineToRelative(-2.0f, -2.24f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.12f, 1.0f) + lineToRelative(0.89f, 1.0f) + close() + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(0.25f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(-0.25f) + close() + moveTo(4.5f, 8.0f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(8.0f) + horizontalLineToRelative(-15.0f) + lineTo(4.5f, 8.0f) + close() + moveTo(19.5f, 17.5f) + verticalLineToRelative(0.25f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-0.25f) + horizontalLineToRelative(15.0f) + close() + } + } + return _tableCellsMerge!! + } + +private var _tableCellsMerge: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableCellsSplit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableCellsSplit.kt new file mode 100644 index 00000000..66bcb343 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableCellsSplit.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableCellsSplit: ImageVector + get() { + if (_tableCellsSplit != null) { + return _tableCellsSplit!! + } + _tableCellsSplit = fluentIcon(name = "Regular.TableCellsSplit") { + fluentPath { + moveTo(12.5f, 10.0f) + lineTo(11.0f, 10.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(1.5f) + verticalLineToRelative(-4.0f) + close() + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 7.5f) + lineTo(11.0f, 7.5f) + verticalLineToRelative(-3.0f) + lineTo(6.25f, 4.5f) + close() + moveTo(19.5f, 16.5f) + horizontalLineToRelative(-7.0f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(5.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 16.5f) + close() + moveTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(12.5f, 4.5f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(7.0f) + lineTo(19.5f, 6.25f) + close() + moveTo(4.5f, 16.5f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(11.0f, 19.5f) + verticalLineToRelative(-3.0f) + lineTo(4.5f, 16.5f) + close() + moveTo(4.5f, 15.0f) + horizontalLineToRelative(15.0f) + lineTo(19.5f, 9.0f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(6.0f) + close() + } + } + return _tableCellsSplit!! + } + +private var _tableCellsSplit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableDeleteColumn.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableDeleteColumn.kt new file mode 100644 index 00000000..f6caa62b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableDeleteColumn.kt @@ -0,0 +1,100 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableDeleteColumn: ImageVector + get() { + if (_tableDeleteColumn != null) { + return _tableDeleteColumn!! + } + _tableDeleteColumn = fluentIcon(name = "Regular.TableDeleteColumn") { + fluentPath { + moveTo(22.0f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-1.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 17.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(18.5f, 15.5f) + horizontalLineToRelative(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(18.5f, 14.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(18.5f, 8.5f) + lineTo(18.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(1.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + close() + moveTo(2.0f, 3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.0f) + curveTo(5.55f, 3.0f, 7.0f, 4.46f, 7.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(7.0f, 19.55f, 5.54f, 21.0f, 3.75f, 21.0f) + horizontalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.0f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(5.5f, 15.5f) + lineTo(2.75f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(5.5f, 14.0f) + verticalLineToRelative(-4.0f) + lineTo(2.75f, 10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(5.5f, 8.5f) + lineTo(5.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-1.0f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 2.0f, 3.75f) + close() + moveTo(10.94f, 12.0f) + lineToRelative(-1.47f, 1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineTo(12.0f, 13.06f) + lineToRelative(1.47f, 1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineTo(13.06f, 12.0f) + lineToRelative(1.47f, -1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineTo(12.0f, 10.94f) + lineToRelative(-1.47f, -1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(10.94f, 12.0f) + close() + moveTo(11.25f, 8.73f) + lineTo(11.33f, 8.8f) + lineTo(12.0f, 9.47f) + lineTo(12.67f, 8.8f) + lineTo(12.75f, 8.73f) + lineTo(12.75f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(5.98f) + close() + moveTo(11.25f, 15.53f) + verticalLineToRelative(5.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-5.73f) + arcToRelative(1.83f, 1.83f, 0.0f, false, true, -0.08f, -0.07f) + lineToRelative(-0.67f, -0.67f) + lineToRelative(-0.67f, 0.67f) + lineToRelative(-0.08f, 0.07f) + close() + } + } + return _tableDeleteColumn!! + } + +private var _tableDeleteColumn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableDeleteRow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableDeleteRow.kt new file mode 100644 index 00000000..11215fda --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableDeleteRow.kt @@ -0,0 +1,100 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableDeleteRow: ImageVector + get() { + if (_tableDeleteRow != null) { + return _tableDeleteRow!! + } + _tableDeleteRow = fluentIcon(name = "Regular.TableDeleteRow") { + fluentPath { + moveTo(3.75f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(1.0f) + curveTo(3.0f, 5.55f, 4.46f, 7.0f, 6.25f, 7.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 7.0f, 21.0f, 5.54f, 21.0f, 3.75f) + verticalLineToRelative(-1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(15.5f, 5.5f) + lineTo(15.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + lineTo(14.0f, 5.5f) + horizontalLineToRelative(-4.0f) + lineTo(10.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + lineTo(8.5f, 5.5f) + lineTo(6.25f, 5.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-1.0f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 3.75f, 2.0f) + close() + moveTo(3.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-1.0f) + curveTo(3.0f, 18.45f, 4.46f, 17.0f, 6.25f, 17.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(15.5f, 18.5f) + verticalLineToRelative(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(14.0f, 18.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(8.5f, 18.5f) + lineTo(6.25f, 18.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + close() + moveTo(12.0f, 13.06f) + lineToRelative(1.47f, 1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineTo(13.06f, 12.0f) + lineToRelative(1.47f, -1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineTo(12.0f, 10.94f) + lineToRelative(-1.47f, -1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(10.94f, 12.0f) + lineToRelative(-1.47f, 1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineTo(12.0f, 13.06f) + close() + moveTo(8.73f, 12.75f) + lineTo(8.8f, 12.67f) + lineTo(9.47f, 12.0f) + lineTo(8.8f, 11.33f) + arcToRelative(1.85f, 1.85f, 0.0f, false, true, -0.07f, -0.08f) + lineTo(2.75f, 11.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.98f) + close() + moveTo(15.53f, 12.75f) + horizontalLineToRelative(5.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.73f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-0.67f, 0.67f) + lineToRelative(0.67f, 0.67f) + lineToRelative(0.07f, 0.08f) + close() + } + } + return _tableDeleteRow!! + } + +private var _tableDeleteRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableDismiss.kt new file mode 100644 index 00000000..ee851936 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableDismiss.kt @@ -0,0 +1,96 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableDismiss: ImageVector + get() { + if (_tableDismiss != null) { + return _tableDismiss!! + } + _tableDismiss = fluentIcon(name = "Regular.TableDismiss") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(5.77f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 10.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(1.31f) + curveToRelative(-0.53f, 0.18f, -1.04f, 0.42f, -1.5f, 0.71f) + lineTo(14.0f, 10.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(2.02f) + curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) + lineTo(10.0f, 15.5f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(1.31f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 8.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + lineTo(6.25f, 4.5f) + close() + moveTo(4.5f, 10.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(15.5f, 8.5f) + horizontalLineToRelative(4.0f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(15.5f, 4.5f) + verticalLineToRelative(4.0f) + close() + moveTo(14.0f, 4.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(4.5f, 15.5f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(8.5f, 19.5f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(17.5f, 16.8f) + lineTo(15.85f, 15.15f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(1.64f, 1.65f) + lineToRelative(-1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(1.65f, -1.64f) + lineToRelative(1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-1.64f, -1.65f) + lineToRelative(1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.65f, 1.64f) + close() + } + } + return _tableDismiss!! + } + +private var _tableDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableEdit.kt new file mode 100644 index 00000000..4aabf846 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableEdit.kt @@ -0,0 +1,93 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableEdit: ImageVector + get() { + if (_tableEdit != null) { + return _tableEdit!! + } + _tableEdit = fluentIcon(name = "Regular.TableEdit") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.45f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.45f, 21.0f, 6.25f) + verticalLineToRelative(4.76f) + arcToRelative(3.3f, 3.3f, 0.0f, false, false, -1.5f, 0.22f) + lineTo(19.5f, 10.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(0.85f) + lineTo(14.0f, 16.35f) + verticalLineToRelative(-0.85f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(1.54f) + lineToRelative(-0.02f, 0.08f) + lineToRelative(-0.36f, 1.42f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 8.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + lineTo(6.25f, 4.5f) + close() + moveTo(4.5f, 10.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(10.0f, 10.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(15.5f, 8.5f) + horizontalLineToRelative(4.0f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(15.5f, 4.5f) + verticalLineToRelative(4.0f) + close() + moveTo(14.0f, 4.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(4.5f, 15.5f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(8.5f, 19.5f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(19.76f, 12.2f) + arcToRelative(2.27f, 2.27f, 0.0f, false, false, -0.66f, 0.47f) + lineToRelative(-5.9f, 5.9f) + arcToRelative(2.68f, 2.68f, 0.0f, false, false, -0.71f, 1.25f) + lineToRelative(-0.46f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -2.57f, -3.7f) + close() + } + } + return _tableEdit!! + } + +private var _tableEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableFreezeColumn.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableFreezeColumn.kt new file mode 100644 index 00000000..5f206798 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableFreezeColumn.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableFreezeColumn: ImageVector + get() { + if (_tableFreezeColumn != null) { + return _tableFreezeColumn!! + } + _tableFreezeColumn = fluentIcon(name = "Regular.TableFreezeColumn") { + fluentPath { + moveTo(21.0f, 17.75f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + close() + moveTo(17.75f, 19.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(15.5f, 4.5f) + verticalLineToRelative(15.0f) + horizontalLineToRelative(2.25f) + close() + moveTo(10.0f, 4.5f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(8.5f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 8.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(8.5f, 10.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(10.0f, 14.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + close() + moveTo(10.0f, 15.5f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(8.5f, 15.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(8.5f, 19.5f) + verticalLineToRelative(-4.0f) + close() + } + } + return _tableFreezeColumn!! + } + +private var _tableFreezeColumn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableFreezeColumnAndRow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableFreezeColumnAndRow.kt new file mode 100644 index 00000000..d8a9e9d5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableFreezeColumnAndRow.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableFreezeColumnAndRow: ImageVector + get() { + if (_tableFreezeColumnAndRow != null) { + return _tableFreezeColumnAndRow!! + } + _tableFreezeColumnAndRow = fluentIcon(name = "Regular.TableFreezeColumnAndRow") { + fluentPath { + moveTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + close() + moveTo(15.5f, 19.5f) + lineTo(15.5f, 9.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(4.5f, 8.5f) + lineTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(15.5f, 19.5f) + close() + moveTo(14.0f, 14.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(4.0f) + close() + moveTo(10.0f, 15.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(8.5f, 14.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(4.0f) + close() + moveTo(4.5f, 15.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(4.0f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 15.5f) + close() + } + } + return _tableFreezeColumnAndRow!! + } + +private var _tableFreezeColumnAndRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableFreezeRow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableFreezeRow.kt new file mode 100644 index 00000000..f791a65e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableFreezeRow.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableFreezeRow: ImageVector + get() { + if (_tableFreezeRow != null) { + return _tableFreezeRow!! + } + _tableFreezeRow = fluentIcon(name = "Regular.TableFreezeRow") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(19.5f, 8.5f) + horizontalLineToRelative(-15.0f) + lineTo(4.5f, 6.25f) + close() + moveTo(10.0f, 10.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(8.5f, 10.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(4.0f) + close() + moveTo(8.5f, 15.5f) + verticalLineToRelative(4.0f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 15.5f) + horizontalLineToRelative(4.0f) + close() + moveTo(10.0f, 19.5f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(15.5f, 14.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(15.5f, 15.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(15.5f, 19.5f) + verticalLineToRelative(-4.0f) + close() + } + } + return _tableFreezeRow!! + } + +private var _tableFreezeRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableInsertColumn.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableInsertColumn.kt new file mode 100644 index 00000000..2c6208d6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableInsertColumn.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableInsertColumn: ImageVector + get() { + if (_tableInsertColumn != null) { + return _tableInsertColumn!! + } + _tableInsertColumn = fluentIcon(name = "Regular.TableInsertColumn") { + fluentPath { + moveTo(4.5f, 3.75f) + verticalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(3.0f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(14.25f, 3.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-4.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + lineTo(7.5f, 5.25f) + curveTo(7.5f, 4.01f, 8.5f, 3.0f, 9.75f, 3.0f) + horizontalLineToRelative(4.5f) + close() + moveTo(15.0f, 5.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(9.0f, 8.5f) + horizontalLineToRelative(6.0f) + lineTo(15.0f, 5.25f) + close() + moveTo(9.0f, 14.0f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(-4.0f) + lineTo(9.0f, 10.0f) + verticalLineToRelative(4.0f) + close() + moveTo(9.0f, 15.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(15.0f, 15.5f) + lineTo(9.0f, 15.5f) + close() + moveTo(21.0f, 20.25f) + lineTo(21.0f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + close() + } + } + return _tableInsertColumn!! + } + +private var _tableInsertColumn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableInsertRow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableInsertRow.kt new file mode 100644 index 00000000..36ba5b06 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableInsertRow.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableInsertRow: ImageVector + get() { + if (_tableInsertRow != null) { + return _tableInsertRow!! + } + _tableInsertRow = fluentIcon(name = "Regular.TableInsertRow") { + fluentPath { + moveTo(20.25f, 3.0f) + lineTo(3.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(3.0f, 9.75f) + curveTo(3.0f, 8.51f, 4.0f, 7.5f, 5.25f, 7.5f) + horizontalLineToRelative(13.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(5.25f, 16.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-4.5f) + close() + moveTo(5.25f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(8.5f, 15.0f) + lineTo(8.5f, 9.0f) + lineTo(5.25f, 9.0f) + close() + moveTo(14.0f, 15.0f) + lineTo(14.0f, 9.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(6.0f) + horizontalLineToRelative(4.0f) + close() + moveTo(15.5f, 15.0f) + horizontalLineToRelative(3.25f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(15.5f, 9.0f) + verticalLineToRelative(6.0f) + close() + moveTo(3.75f, 19.5f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(3.75f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + } + } + return _tableInsertRow!! + } + +private var _tableInsertRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableLightning.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableLightning.kt new file mode 100644 index 00000000..8ec8fab2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableLightning.kt @@ -0,0 +1,95 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableLightning: ImageVector + get() { + if (_tableLightning != null) { + return _tableLightning!! + } + _tableLightning = fluentIcon(name = "Regular.TableLightning") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + lineTo(21.0f, 11.0f) + horizontalLineToRelative(-1.5f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(1.24f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -0.54f, 0.62f) + lineTo(14.0f, 13.91f) + lineTo(14.0f, 10.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(3.96f) + lineToRelative(-0.71f, 1.5f) + lineTo(10.0f, 15.5f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(2.38f) + curveToRelative(0.27f, 0.3f, 0.66f, 0.5f, 1.12f, 0.5f) + horizontalLineToRelative(1.72f) + lineToRelative(-0.25f, 1.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 8.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + lineTo(6.25f, 4.5f) + close() + moveTo(4.5f, 10.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(15.5f, 8.5f) + horizontalLineToRelative(4.0f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(15.5f, 4.5f) + verticalLineToRelative(4.0f) + close() + moveTo(14.0f, 4.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(4.5f, 15.5f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(8.5f, 19.5f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(16.32f, 12.0f) + horizontalLineToRelative(4.82f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.44f, 0.75f) + lineTo(19.75f, 16.0f) + horizontalLineToRelative(1.5f) + curveToRelative(0.64f, 0.0f, 0.98f, 0.76f, 0.56f, 1.24f) + lineToRelative(-4.82f, 5.51f) + curveToRelative(-0.5f, 0.58f, -1.45f, 0.09f, -1.26f, -0.66f) + lineTo(16.5f, 19.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.46f, -0.71f) + lineToRelative(2.82f, -6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.46f, -0.29f) + close() + } + } + return _tableLightning!! + } + +private var _tableLightning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableLink.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableLink.kt new file mode 100644 index 00000000..e046d066 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableLink.kt @@ -0,0 +1,106 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableLink: ImageVector + get() { + if (_tableLink != null) { + return _tableLink!! + } + _tableLink = fluentIcon(name = "Regular.TableLink") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(8.08f) + curveToRelative(-0.47f, -0.18f, -0.97f, -0.3f, -1.5f, -0.32f) + lineTo(19.5f, 10.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + arcToRelative(4.74f, 4.74f, 0.0f, false, false, -3.21f, 1.5f) + lineTo(10.0f, 15.5f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(1.06f) + curveToRelative(0.08f, 0.54f, 0.26f, 1.04f, 0.5f, 1.5f) + lineTo(6.26f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(14.0f, 10.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 8.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + lineTo(6.25f, 4.5f) + close() + moveTo(4.5f, 10.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(15.5f, 8.5f) + horizontalLineToRelative(4.0f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(15.5f, 4.5f) + verticalLineToRelative(4.0f) + close() + moveTo(14.0f, 4.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(4.5f, 15.5f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(8.5f, 19.5f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(19.25f, 15.0f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 0.2f, 7.5f) + horizontalLineToRelative(-0.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + horizontalLineToRelative(0.1f) + lineTo(19.25f, 21.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.15f, -4.5f) + horizontalLineToRelative(-0.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(15.75f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-0.1f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -0.15f, 4.5f) + horizontalLineToRelative(0.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-0.1f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.2f, -7.5f) + horizontalLineToRelative(0.2f) + close() + moveTo(19.25f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(3.6f) + close() + } + } + return _tableLink!! + } + +private var _tableLink: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableLock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableLock.kt new file mode 100644 index 00000000..4f3e2e73 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableLock.kt @@ -0,0 +1,105 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableLock: ImageVector + get() { + if (_tableLock != null) { + return _tableLock!! + } + _tableLock = fluentIcon(name = "Regular.TableLock") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(5.3f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -1.5f, -0.9f) + lineTo(19.5f, 10.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(2.2f) + curveToRelative(-0.32f, 0.52f, -0.5f, 1.14f, -0.5f, 1.8f) + verticalLineToRelative(0.05f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -1.8f, 1.45f) + lineTo(10.0f, 15.5f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(3.0f) + lineTo(13.0f, 21.0f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 8.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + lineTo(6.25f, 4.5f) + close() + moveTo(4.5f, 10.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(10.0f, 10.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(15.5f, 8.5f) + horizontalLineToRelative(4.0f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(15.5f, 4.5f) + verticalLineToRelative(4.0f) + close() + moveTo(14.0f, 4.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(4.5f, 15.5f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(8.5f, 19.5f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(16.0f, 15.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(6.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(21.0f, 15.0f) + verticalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) + verticalLineToRelative(1.0f) + close() + moveTo(17.5f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(19.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + } + } + return _tableLock!! + } + +private var _tableLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableMoveAbove.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableMoveAbove.kt new file mode 100644 index 00000000..4043701d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableMoveAbove.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableMoveAbove: ImageVector + get() { + if (_tableMoveAbove != null) { + return _tableMoveAbove!! + } + _tableMoveAbove = fluentIcon(name = "Regular.TableMoveAbove") { + fluentPath { + moveTo(20.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(16.5f) + close() + moveTo(20.25f, 8.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.27f) + arcTo(1.75f, 1.75f, 0.0f, false, false, 10.0f, 10.48f) + lineTo(10.0f, 14.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-3.52f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 1.98f, -1.98f) + horizontalLineToRelative(4.27f) + close() + moveTo(8.5f, 10.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(8.5f, 15.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(8.5f, 19.5f) + verticalLineToRelative(-4.0f) + close() + moveTo(14.0f, 19.5f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + close() + moveTo(15.5f, 19.5f) + horizontalLineToRelative(2.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 15.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + close() + moveTo(15.5f, 10.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(14.81f, 9.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 0.06f) + lineToRelative(-1.0f, -0.89f) + verticalLineToRelative(2.83f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(11.25f, 8.42f) + lineToRelative(-1.0f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.0f, -1.13f) + lineToRelative(2.25f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.0f, 0.0f) + lineToRelative(2.25f, 2.0f) + curveToRelative(0.3f, 0.27f, 0.34f, 0.75f, 0.06f, 1.06f) + close() + } + } + return _tableMoveAbove!! + } + +private var _tableMoveAbove: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableMoveBelow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableMoveBelow.kt new file mode 100644 index 00000000..fd628a0f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableMoveBelow.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableMoveBelow: ImageVector + get() { + if (_tableMoveBelow != null) { + return _tableMoveBelow!! + } + _tableMoveBelow = fluentIcon(name = "Regular.TableMoveBelow") { + fluentPath { + moveTo(3.75f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-8.5f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-4.27f) + arcTo(1.75f, 1.75f, 0.0f, false, false, 14.0f, 13.52f) + lineTo(14.0f, 10.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(3.52f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -1.98f, 1.98f) + lineTo(3.75f, 15.5f) + close() + moveTo(10.0f, 8.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + close() + moveTo(19.5f, 14.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + close() + moveTo(15.5f, 8.5f) + horizontalLineToRelative(4.0f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(15.5f, 4.5f) + verticalLineToRelative(4.0f) + close() + moveTo(8.5f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 8.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(4.5f, 14.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + close() + moveTo(3.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 19.5f) + close() + moveTo(9.19f, 14.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -0.06f) + lineToRelative(1.0f, 0.89f) + verticalLineToRelative(-2.83f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(2.83f) + lineToRelative(1.0f, -0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.0f, 1.13f) + lineToRelative(-2.25f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.0f, 0.0f) + lineToRelative(-2.25f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.06f, -1.06f) + close() + } + } + return _tableMoveBelow!! + } + +private var _tableMoveBelow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableMoveLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableMoveLeft.kt new file mode 100644 index 00000000..eace40f7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableMoveLeft.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableMoveLeft: ImageVector + get() { + if (_tableMoveLeft != null) { + return _tableMoveLeft!! + } + _tableMoveLeft = fluentIcon(name = "Regular.TableMoveLeft") { + fluentPath { + moveTo(4.5f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(4.5f, 3.75f) + close() + moveTo(8.5f, 3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(8.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-4.27f) + arcTo(1.75f, 1.75f, 0.0f, false, false, 10.48f, 14.0f) + lineTo(14.0f, 14.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-3.52f) + arcTo(1.75f, 1.75f, 0.0f, false, false, 8.5f, 8.02f) + lineTo(8.5f, 3.75f) + close() + moveTo(10.0f, 19.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + close() + moveTo(15.5f, 15.5f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(2.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 15.5f) + horizontalLineToRelative(-4.0f) + close() + moveTo(19.5f, 10.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(19.5f, 8.5f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(15.5f, 4.5f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + close() + moveTo(10.0f, 4.5f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(9.25f, 9.19f) + curveToRelative(0.3f, 0.27f, 0.34f, 0.75f, 0.06f, 1.06f) + lineToRelative(-0.89f, 1.0f) + horizontalLineToRelative(2.83f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(8.42f, 12.75f) + lineToRelative(0.9f, 1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, 1.0f) + lineToRelative(-2.0f, -2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.0f) + lineToRelative(2.0f, -2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -0.06f) + close() + } + } + return _tableMoveLeft!! + } + +private var _tableMoveLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableMoveRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableMoveRight.kt new file mode 100644 index 00000000..86e2f246 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableMoveRight.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableMoveRight: ImageVector + get() { + if (_tableMoveRight != null) { + return _tableMoveRight!! + } + _tableMoveRight = fluentIcon(name = "Regular.TableMoveRight") { + fluentPath { + moveTo(15.5f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-8.5f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(8.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-4.27f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 13.52f, 14.0f) + lineTo(10.0f, 14.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(3.52f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 1.98f, -1.98f) + lineTo(15.5f, 3.75f) + close() + moveTo(4.5f, 14.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(14.0f, 8.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(4.0f) + close() + moveTo(8.5f, 8.5f) + horizontalLineToRelative(-4.0f) + lineTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + lineTo(8.5f, 4.5f) + verticalLineToRelative(4.0f) + close() + moveTo(8.5f, 19.5f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 15.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(4.0f) + close() + moveTo(10.0f, 15.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(19.5f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(19.5f, 3.75f) + close() + moveTo(14.75f, 9.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.06f, 1.06f) + lineToRelative(0.89f, 1.0f) + horizontalLineToRelative(-2.83f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.83f) + lineToRelative(-0.89f, 1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.12f, 1.0f) + lineToRelative(2.0f, -2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.0f) + lineToRelative(-2.0f, -2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -0.06f) + close() + } + } + return _tableMoveRight!! + } + +private var _tableMoveRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableResizeColumn.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableResizeColumn.kt new file mode 100644 index 00000000..e351fa6f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableResizeColumn.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableResizeColumn: ImageVector + get() { + if (_tableResizeColumn != null) { + return _tableResizeColumn!! + } + _tableResizeColumn = fluentIcon(name = "Regular.TableResizeColumn") { + fluentPath { + moveTo(15.58f, 11.25f) + lineTo(8.42f, 11.25f) + lineToRelative(0.9f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.13f, -1.0f) + lineToRelative(-2.0f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.0f) + lineToRelative(2.0f, 2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.12f, -1.0f) + lineToRelative(-0.89f, -1.0f) + horizontalLineToRelative(7.16f) + lineToRelative(-0.89f, 1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.12f, 1.0f) + lineToRelative(2.0f, -2.25f) + lineToRelative(0.01f, -0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.01f, -1.0f) + lineToRelative(-2.0f, -2.24f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.12f, 1.0f) + lineToRelative(0.89f, 1.0f) + close() + moveTo(17.75f, 3.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-0.25f) + verticalLineToRelative(5.15f) + lineToRelative(-0.94f, -1.06f) + arcToRelative(1.74f, 1.74f, 0.0f, false, false, -0.56f, -0.42f) + lineTo(16.0f, 4.5f) + lineTo(8.0f, 4.5f) + verticalLineToRelative(3.67f) + curveToRelative(-0.2f, 0.1f, -0.4f, 0.24f, -0.56f, 0.42f) + lineTo(6.5f, 9.65f) + lineTo(6.5f, 4.5f) + horizontalLineToRelative(-0.25f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(0.25f) + verticalLineToRelative(-5.15f) + lineToRelative(0.94f, 1.06f) + curveToRelative(0.16f, 0.18f, 0.35f, 0.32f, 0.56f, 0.42f) + verticalLineToRelative(3.67f) + horizontalLineToRelative(8.0f) + verticalLineToRelative(-3.67f) + curveToRelative(0.2f, -0.1f, 0.4f, -0.24f, 0.56f, -0.42f) + lineToRelative(0.94f, -1.06f) + verticalLineToRelative(5.15f) + horizontalLineToRelative(0.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 6.25f) + close() + } + } + return _tableResizeColumn!! + } + +private var _tableResizeColumn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableResizeRow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableResizeRow.kt new file mode 100644 index 00000000..63c270ae --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableResizeRow.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableResizeRow: ImageVector + get() { + if (_tableResizeRow != null) { + return _tableResizeRow!! + } + _tableResizeRow = fluentIcon(name = "Regular.TableResizeRow") { + fluentPath { + moveTo(12.75f, 15.58f) + lineTo(12.75f, 8.42f) + lineToRelative(1.0f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.0f, -1.13f) + lineToRelative(-2.25f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, 0.0f) + lineToRelative(-2.25f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.0f, 1.12f) + lineToRelative(1.0f, -0.89f) + verticalLineToRelative(7.16f) + lineToRelative(-1.0f, -0.89f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.0f, 1.12f) + lineToRelative(2.25f, 2.0f) + lineToRelative(0.01f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.0f, -0.01f) + lineToRelative(2.24f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.0f, -1.12f) + lineToRelative(-1.0f, 0.89f) + close() + moveTo(17.75f, 21.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(19.5f, 17.75f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-0.25f) + horizontalLineToRelative(5.15f) + lineToRelative(-1.06f, -0.94f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.42f, -0.56f) + lineTo(4.5f, 16.0f) + lineTo(4.5f, 8.0f) + horizontalLineToRelative(3.67f) + curveToRelative(0.1f, -0.2f, 0.24f, -0.4f, 0.42f, -0.56f) + lineToRelative(1.06f, -0.94f) + lineTo(4.5f, 6.5f) + verticalLineToRelative(-0.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(0.25f) + horizontalLineToRelative(-5.15f) + lineToRelative(1.06f, 0.94f) + curveToRelative(0.18f, 0.16f, 0.32f, 0.35f, 0.42f, 0.56f) + horizontalLineToRelative(3.67f) + verticalLineToRelative(8.0f) + horizontalLineToRelative(-3.67f) + curveToRelative(-0.1f, 0.2f, -0.24f, 0.4f, -0.42f, 0.56f) + lineToRelative(-1.06f, 0.94f) + horizontalLineToRelative(5.15f) + verticalLineToRelative(0.25f) + close() + } + } + return _tableResizeRow!! + } + +private var _tableResizeRow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableSettings.kt new file mode 100644 index 00000000..c81ca598 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableSettings.kt @@ -0,0 +1,110 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableSettings: ImageVector + get() { + if (_tableSettings != null) { + return _tableSettings!! + } + _tableSettings = fluentIcon(name = "Regular.TableSettings") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(5.77f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 10.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(1.31f) + curveToRelative(-0.53f, 0.18f, -1.04f, 0.42f, -1.5f, 0.71f) + lineTo(14.0f, 10.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(2.02f) + curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) + lineTo(10.0f, 15.5f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(1.31f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 8.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + lineTo(6.25f, 4.5f) + close() + moveTo(4.5f, 10.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(15.5f, 8.5f) + horizontalLineToRelative(4.0f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(15.5f, 4.5f) + verticalLineToRelative(4.0f) + close() + moveTo(14.0f, 4.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(4.5f, 15.5f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(8.5f, 19.5f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(14.28f, 13.98f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.59f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) + lineToRelative(0.55f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) + lineToRelative(-0.19f, 0.63f) + curveToRelative(0.44f, 0.39f, 0.94f, 0.7f, 1.49f, 0.93f) + lineToRelative(0.49f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) + lineToRelative(-0.2f, -0.69f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) + lineToRelative(0.59f, -0.14f) + arcToRelative(5.72f, 5.72f, 0.0f, false, false, 0.0f, -1.8f) + lineToRelative(-0.55f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.19f, -0.63f) + curveToRelative(-0.44f, -0.4f, -0.94f, -0.7f, -1.49f, -0.93f) + lineToRelative(-0.49f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) + lineToRelative(0.2f, 0.7f) + close() + moveTo(17.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) + close() + } + } + return _tableSettings!! + } + +private var _tableSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableSimple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableSimple.kt new file mode 100644 index 00000000..8f2a6612 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableSimple.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableSimple: ImageVector + get() { + if (_tableSimple != null) { + return _tableSimple!! + } + _tableSimple = fluentIcon(name = "Regular.TableSimple") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(6.75f) + lineTo(11.25f, 4.5f) + horizontalLineToRelative(-5.0f) + close() + moveTo(11.25f, 12.75f) + lineTo(4.5f, 12.75f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(-6.75f) + close() + moveTo(12.75f, 12.75f) + verticalLineToRelative(6.75f) + horizontalLineToRelative(5.0f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(-6.75f) + close() + moveTo(19.5f, 11.25f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-5.0f) + verticalLineToRelative(6.75f) + horizontalLineToRelative(6.75f) + close() + } + } + return _tableSimple!! + } + +private var _tableSimple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableSimpleCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableSimpleCheckmark.kt new file mode 100644 index 00000000..ad125dae --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableSimpleCheckmark.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableSimpleCheckmark: ImageVector + get() { + if (_tableSimpleCheckmark != null) { + return _tableSimpleCheckmark!! + } + _tableSimpleCheckmark = fluentIcon(name = "Regular.TableSimpleCheckmark") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(6.75f) + lineTo(4.5f, 11.25f) + verticalLineToRelative(-5.0f) + close() + moveTo(12.75f, 11.25f) + lineTo(12.75f, 4.5f) + horizontalLineToRelative(5.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(-6.75f) + close() + moveTo(4.5f, 12.75f) + horizontalLineToRelative(6.75f) + verticalLineToRelative(6.75f) + horizontalLineToRelative(-5.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-5.0f) + close() + moveTo(18.28f, 14.72f) + curveToRelative(0.3f, 0.29f, 0.3f, 0.76f, 0.0f, 1.06f) + lineToRelative(-2.0f, 2.0f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-1.0f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(0.47f, 0.47f) + lineToRelative(1.47f, -1.47f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + } + } + return _tableSimpleCheckmark!! + } + +private var _tableSimpleCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableSimpleMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableSimpleMultiple.kt new file mode 100644 index 00000000..e5873edd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableSimpleMultiple.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableSimpleMultiple: ImageVector + get() { + if (_tableSimpleMultiple != null) { + return _tableSimpleMultiple!! + } + _tableSimpleMultiple = fluentIcon(name = "Regular.TableSimpleMultiple") { + fluentPath { + moveTo(5.25f, 2.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 5.25f) + verticalLineToRelative(10.5f) + curveTo(2.0f, 17.55f, 3.46f, 19.0f, 5.25f, 19.0f) + horizontalLineToRelative(10.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(19.0f, 5.25f) + curveTo(19.0f, 3.45f, 17.54f, 2.0f, 15.75f, 2.0f) + lineTo(5.25f, 2.0f) + close() + moveTo(3.5f, 5.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + lineTo(10.0f, 3.5f) + lineTo(10.0f, 10.0f) + lineTo(3.5f, 10.0f) + lineTo(3.5f, 5.25f) + close() + moveTo(11.5f, 10.0f) + lineTo(11.5f, 3.5f) + horizontalLineToRelative(4.25f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(17.5f, 10.0f) + horizontalLineToRelative(-6.0f) + close() + moveTo(3.5f, 11.5f) + lineTo(10.0f, 11.5f) + verticalLineToRelative(6.0f) + lineTo(5.25f, 17.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(3.5f, 11.5f) + close() + moveTo(11.5f, 11.5f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(4.25f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(11.5f, 17.5f) + verticalLineToRelative(-6.0f) + close() + moveTo(8.25f, 22.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.0f, -2.0f) + horizontalLineToRelative(1.78f) + curveToRelative(0.31f, 0.3f, 0.74f, 0.5f, 1.22f, 0.5f) + horizontalLineToRelative(8.25f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 4.0f, -4.0f) + lineTo(20.5f, 8.25f) + curveToRelative(0.0f, -0.48f, -0.19f, -0.9f, -0.5f, -1.22f) + lineTo(20.0f, 5.25f) + curveToRelative(1.18f, 0.49f, 2.0f, 1.65f, 2.0f, 3.0f) + verticalLineToRelative(8.25f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, -5.5f, 5.5f) + lineTo(8.25f, 22.0f) + close() + } + } + return _tableSimpleMultiple!! + } + +private var _tableSimpleMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableStackAbove.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableStackAbove.kt new file mode 100644 index 00000000..43fe7ffa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableStackAbove.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableStackAbove: ImageVector + get() { + if (_tableStackAbove != null) { + return _tableStackAbove!! + } + _tableStackAbove = fluentIcon(name = "Regular.TableStackAbove") { + fluentPath { + moveTo(20.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(16.5f) + close() + moveTo(20.25f, 8.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(16.5f) + close() + moveTo(14.0f, 10.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(8.5f, 10.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(8.5f, 15.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + lineTo(8.5f, 19.5f) + verticalLineToRelative(-4.0f) + close() + moveTo(14.0f, 15.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(15.5f, 19.5f) + horizontalLineToRelative(2.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 15.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + close() + moveTo(19.5f, 10.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + close() + } + } + return _tableStackAbove!! + } + +private var _tableStackAbove: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableStackBelow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableStackBelow.kt new file mode 100644 index 00000000..bcedde18 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableStackBelow.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableStackBelow: ImageVector + get() { + if (_tableStackBelow != null) { + return _tableStackBelow!! + } + _tableStackBelow = fluentIcon(name = "Regular.TableStackBelow") { + fluentPath { + moveTo(3.75f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-8.5f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(3.75f, 15.5f) + close() + moveTo(10.0f, 14.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + close() + moveTo(10.0f, 8.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + close() + moveTo(15.5f, 14.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + close() + moveTo(15.5f, 8.5f) + horizontalLineToRelative(4.0f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(15.5f, 4.5f) + verticalLineToRelative(4.0f) + close() + moveTo(8.5f, 4.5f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 8.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(4.5f, 14.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(4.0f) + close() + moveTo(3.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 19.5f) + close() + } + } + return _tableStackBelow!! + } + +private var _tableStackBelow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableStackLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableStackLeft.kt new file mode 100644 index 00000000..218be1ab --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableStackLeft.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableStackLeft: ImageVector + get() { + if (_tableStackLeft != null) { + return _tableStackLeft!! + } + _tableStackLeft = fluentIcon(name = "Regular.TableStackLeft") { + fluentPath { + moveTo(4.5f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(4.5f, 3.75f) + close() + moveTo(8.5f, 3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(8.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(8.5f, 3.75f) + close() + moveTo(10.0f, 10.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(10.0f, 15.5f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(15.5f, 15.5f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(2.25f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(19.5f, 15.5f) + horizontalLineToRelative(-4.0f) + close() + moveTo(15.5f, 10.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(19.5f, 8.5f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(15.5f, 4.5f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + close() + moveTo(10.0f, 4.5f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(-4.0f) + close() + } + } + return _tableStackLeft!! + } + +private var _tableStackLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableStackRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableStackRight.kt new file mode 100644 index 00000000..c44776c2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableStackRight.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableStackRight: ImageVector + get() { + if (_tableStackRight != null) { + return _tableStackRight!! + } + _tableStackRight = fluentIcon(name = "Regular.TableStackRight") { + fluentPath { + moveTo(15.5f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-8.5f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(8.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(15.5f, 3.75f) + close() + moveTo(14.0f, 10.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(4.0f) + close() + moveTo(4.5f, 14.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(14.0f, 8.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(4.0f) + close() + moveTo(8.5f, 8.5f) + horizontalLineToRelative(-4.0f) + lineTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + lineTo(8.5f, 4.5f) + verticalLineToRelative(4.0f) + close() + moveTo(8.5f, 19.5f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 15.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(4.0f) + close() + moveTo(10.0f, 15.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(19.5f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(19.5f, 3.75f) + close() + } + } + return _tableStackRight!! + } + +private var _tableStackRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableSwitch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableSwitch.kt new file mode 100644 index 00000000..1e460a37 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TableSwitch.kt @@ -0,0 +1,110 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TableSwitch: ImageVector + get() { + if (_tableSwitch != null) { + return _tableSwitch!! + } + _tableSwitch = fluentIcon(name = "Regular.TableSwitch") { + fluentPath { + moveTo(8.78f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(0.72f, 0.72f) + lineTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(2.19f) + lineToRelative(-0.72f, -0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 0.0f) + lineToRelative(2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-0.72f, 0.72f) + lineTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(2.19f) + lineToRelative(-0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.78f, 1.24f) + curveToRelative(0.1f, -0.04f, 0.2f, -0.1f, 0.28f, -0.18f) + lineToRelative(2.0f, -2.0f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-2.0f, -2.0f) + close() + moveTo(11.83f, 3.0f) + curveToRelative(0.23f, 0.47f, 0.23f, 1.03f, 0.0f, 1.5f) + lineTo(14.0f, 4.5f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(-4.0f) + lineTo(10.0f, 6.47f) + lineTo(9.49f, 7.0f) + curveToRelative(-0.28f, 0.28f, -0.63f, 0.44f, -0.99f, 0.5f) + lineTo(8.5f, 8.5f) + lineTo(7.48f, 8.5f) + curveToRelative(-0.05f, 0.36f, -0.21f, 0.7f, -0.5f, 0.99f) + lineToRelative(-0.5f, 0.51f) + lineTo(8.5f, 10.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-2.17f) + curveToRelative(-0.47f, 0.23f, -1.03f, 0.23f, -1.5f, 0.0f) + verticalLineToRelative(5.92f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + horizontalLineToRelative(-5.92f) + close() + moveTo(10.0f, 14.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(15.5f, 14.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(14.0f, 15.5f) + verticalLineToRelative(4.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(4.0f) + close() + moveTo(15.5f, 19.5f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(2.25f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(15.5f, 19.5f) + close() + moveTo(15.5f, 8.5f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(2.25f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(19.5f, 8.5f) + horizontalLineToRelative(-4.0f) + close() + moveTo(4.5f, 15.5f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(4.0f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 15.5f) + close() + } + } + return _tableSwitch!! + } + +private var _tableSwitch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Tablet.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Tablet.kt new file mode 100644 index 00000000..ec2fbbfe --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Tablet.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Tablet: ImageVector + get() { + if (_tablet != null) { + return _tablet!! + } + _tablet = fluentIcon(name = "Regular.Tablet") { + fluentPath { + moveTo(19.75f, 4.0f) + curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(22.0f, 19.0f, 21.0f, 20.0f, 19.75f, 20.0f) + lineTo(4.25f, 20.0f) + curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) + lineTo(2.0f, 6.25f) + curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) + horizontalLineToRelative(15.5f) + close() + moveTo(19.75f, 5.5f) + lineTo(4.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(15.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) + lineTo(20.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(10.25f, 15.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(3.6f) + horizontalLineToRelative(-3.5f) + close() + } + } + return _tablet!! + } + +private var _tablet: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabletSpeaker.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabletSpeaker.kt new file mode 100644 index 00000000..71b018ae --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TabletSpeaker.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TabletSpeaker: ImageVector + get() { + if (_tabletSpeaker != null) { + return _tabletSpeaker!! + } + _tabletSpeaker = fluentIcon(name = "Regular.TabletSpeaker") { + fluentPath { + moveTo(22.14f, 3.3f) + arcToRelative(4.53f, 4.53f, 0.0f, false, false, -0.91f, -1.13f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.96f, 1.16f) + curveToRelative(0.13f, 0.1f, 0.35f, 0.35f, 0.59f, 0.74f) + curveToRelative(0.4f, 0.67f, 0.64f, 1.48f, 0.64f, 2.43f) + curveToRelative(0.0f, 0.95f, -0.24f, 1.76f, -0.64f, 2.43f) + curveToRelative(-0.24f, 0.39f, -0.46f, 0.64f, -0.59f, 0.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.96f, 1.16f) + curveToRelative(0.25f, -0.21f, 0.59f, -0.58f, 0.91f, -1.13f) + curveToRelative(0.54f, -0.9f, 0.86f, -1.96f, 0.86f, -3.2f) + curveToRelative(0.0f, -1.24f, -0.32f, -2.3f, -0.86f, -3.2f) + close() + } + fluentPath { + moveTo(19.87f, 4.4f) + curveToRelative(-0.23f, -0.36f, -0.48f, -0.6f, -0.67f, -0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.9f, 1.2f) + arcTo(2.24f, 2.24f, 0.0f, false, true, 19.0f, 6.5f) + arcToRelative(2.24f, 2.24f, 0.0f, false, true, -0.7f, 1.65f) + lineToRelative(-0.08f, 0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) + arcToRelative(3.73f, 3.73f, 0.0f, false, false, 1.3f, -2.85f) + curveToRelative(0.0f, -0.81f, -0.23f, -1.52f, -0.63f, -2.1f) + close() + } + fluentPath { + moveTo(17.0f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.31f, -0.5f) + lineTo(14.16f, 5.0f) + horizontalLineToRelative(-1.41f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(1.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(1.41f) + lineToRelative(1.53f, 1.74f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 17.0f, 9.25f) + verticalLineToRelative(-5.5f) + close() + } + fluentPath { + moveTo(4.25f, 4.0f) + horizontalLineTo(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, 1.0f) + verticalLineToRelative(0.5f) + horizontalLineTo(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(15.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) + verticalLineToRelative(-5.77f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 1.5f, -0.5f) + verticalLineToRelative(6.27f) + curveTo(22.0f, 19.0f, 21.0f, 20.0f, 19.75f, 20.0f) + horizontalLineTo(4.25f) + curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) + verticalLineTo(6.25f) + curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) + close() + } + fluentPath { + moveTo(13.75f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(3.6f) + close() + } + } + return _tabletSpeaker!! + } + +private var _tabletSpeaker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Tabs.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Tabs.kt new file mode 100644 index 00000000..4b7a5a20 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Tabs.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Tabs: ImageVector + get() { + if (_tabs != null) { + return _tabs!! + } + _tabs = fluentIcon(name = "Regular.Tabs") { + fluentPath { + moveTo(2.0f, 9.25f) + curveTo(2.0f, 5.25f, 5.25f, 2.0f, 9.25f, 2.0f) + horizontalLineToRelative(3.5f) + curveToRelative(1.35f, 0.0f, 2.51f, 0.83f, 3.0f, 2.0f) + horizontalLineToRelative(-1.78f) + curveToRelative(-0.31f, -0.3f, -0.74f, -0.5f, -1.22f, -0.5f) + horizontalLineToRelative(-3.5f) + arcTo(5.75f, 5.75f, 0.0f, false, false, 3.5f, 9.25f) + verticalLineToRelative(3.5f) + curveToRelative(0.0f, 0.48f, 0.2f, 0.9f, 0.5f, 1.22f) + verticalLineToRelative(1.78f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -2.0f, -3.0f) + verticalLineToRelative(-3.5f) + close() + moveTo(5.0f, 10.25f) + curveTo(5.0f, 7.35f, 7.35f, 5.0f, 10.25f, 5.0f) + horizontalLineToRelative(5.5f) + curveToRelative(1.35f, 0.0f, 2.51f, 0.83f, 3.0f, 2.0f) + horizontalLineToRelative(-1.78f) + curveToRelative(-0.31f, -0.3f, -0.74f, -0.5f, -1.22f, -0.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(3.75f, 3.75f, 0.0f, false, false, -3.75f, 3.75f) + verticalLineToRelative(5.5f) + curveToRelative(0.0f, 0.48f, 0.2f, 0.9f, 0.5f, 1.22f) + verticalLineToRelative(1.78f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -2.0f, -3.0f) + verticalLineToRelative(-5.5f) + close() + moveTo(11.25f, 8.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 8.0f, 11.25f) + verticalLineToRelative(7.5f) + curveTo(8.0f, 20.55f, 9.46f, 22.0f, 11.25f, 22.0f) + horizontalLineToRelative(7.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-7.5f) + curveTo(22.0f, 9.45f, 20.54f, 8.0f, 18.75f, 8.0f) + horizontalLineToRelative(-7.5f) + close() + moveTo(9.5f, 11.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(7.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-7.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-7.5f) + close() + } + } + return _tabs!! + } + +private var _tabs: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TagDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TagDismiss.kt new file mode 100644 index 00000000..96d595e6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TagDismiss.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TagDismiss: ImageVector + get() { + if (_tagDismiss != null) { + return _tagDismiss!! + } + _tagDismiss = fluentIcon(name = "Regular.TagDismiss") { + fluentPath { + moveTo(19.75f, 2.0f) + curveTo(20.99f, 2.0f, 22.0f, 3.0f, 22.0f, 4.25f) + verticalLineToRelative(5.46f) + curveToRelative(0.0f, 0.86f, -0.34f, 1.69f, -0.95f, 2.3f) + lineToRelative(-0.03f, 0.03f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, -1.43f, -0.7f) + lineToRelative(0.4f, -0.4f) + curveToRelative(0.33f, -0.32f, 0.51f, -0.76f, 0.51f, -1.23f) + lineTo(20.5f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-5.47f) + curveToRelative(-0.46f, 0.0f, -0.9f, 0.18f, -1.23f, 0.51f) + lineToRelative(-8.52f, 8.53f) + curveToRelative(-0.67f, 0.68f, -0.66f, 1.78f, 0.02f, 2.46f) + lineTo(9.0f, 19.45f) + curveToRelative(0.64f, 0.64f, 1.64f, 0.68f, 2.33f, 0.13f) + curveToRelative(0.17f, 0.49f, 0.39f, 0.95f, 0.65f, 1.38f) + curveToRelative(-1.25f, 0.8f, -2.94f, 0.65f, -4.04f, -0.45f) + lineTo(3.5f, 16.06f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.6f) + lineToRelative(8.5f, -8.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.3f, -0.96f) + horizontalLineToRelative(5.46f) + close() + moveTo(17.0f, 5.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(17.5f, 23.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, -11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, 11.0f) + close() + moveTo(15.15f, 15.15f) + curveToRelative(0.2f, -0.2f, 0.5f, -0.2f, 0.7f, 0.0f) + lineToRelative(1.65f, 1.64f) + lineToRelative(1.65f, -1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.7f, 0.7f) + lineToRelative(-1.64f, 1.65f) + lineToRelative(1.64f, 1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, 0.7f) + lineToRelative(-1.65f, -1.64f) + lineToRelative(-1.65f, 1.64f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.7f, -0.7f) + lineToRelative(1.64f, -1.65f) + lineToRelative(-1.64f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -0.7f) + close() + } + } + return _tagDismiss!! + } + +private var _tagDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TagError.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TagError.kt new file mode 100644 index 00000000..963e678b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TagError.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TagError: ImageVector + get() { + if (_tagError != null) { + return _tagError!! + } + _tagError = fluentIcon(name = "Regular.TagError") { + fluentPath { + moveTo(19.75f, 2.0f) + curveTo(20.99f, 2.0f, 22.0f, 3.0f, 22.0f, 4.25f) + verticalLineToRelative(5.46f) + curveToRelative(0.0f, 0.86f, -0.34f, 1.69f, -0.95f, 2.3f) + lineToRelative(-0.03f, 0.03f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, -1.43f, -0.7f) + lineToRelative(0.4f, -0.4f) + curveToRelative(0.33f, -0.32f, 0.51f, -0.76f, 0.51f, -1.23f) + lineTo(20.5f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-5.47f) + curveToRelative(-0.46f, 0.0f, -0.9f, 0.18f, -1.23f, 0.51f) + lineToRelative(-8.52f, 8.53f) + curveToRelative(-0.67f, 0.68f, -0.66f, 1.78f, 0.02f, 2.46f) + lineTo(9.0f, 19.45f) + curveToRelative(0.64f, 0.64f, 1.64f, 0.68f, 2.33f, 0.13f) + curveToRelative(0.17f, 0.49f, 0.39f, 0.95f, 0.65f, 1.38f) + curveToRelative(-1.25f, 0.8f, -2.94f, 0.65f, -4.04f, -0.45f) + lineTo(3.5f, 16.06f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.6f) + lineToRelative(8.5f, -8.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.3f, -0.96f) + horizontalLineToRelative(5.46f) + close() + moveTo(17.0f, 5.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(17.5f, 14.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(17.5f, 21.13f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.25f) + close() + } + } + return _tagError!! + } + +private var _tagError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TagLock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TagLock.kt new file mode 100644 index 00000000..0b407eff --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TagLock.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TagLock: ImageVector + get() { + if (_tagLock != null) { + return _tagLock!! + } + _tagLock = fluentIcon(name = "Regular.TagLock") { + fluentPath { + moveTo(19.75f, 2.0f) + curveTo(20.99f, 2.0f, 22.0f, 3.0f, 22.0f, 4.25f) + verticalLineToRelative(5.46f) + curveToRelative(0.0f, 0.86f, -0.34f, 1.69f, -0.95f, 2.3f) + lineToRelative(-0.42f, 0.42f) + arcToRelative(3.51f, 3.51f, 0.0f, false, false, -0.95f, -1.17f) + lineToRelative(0.3f, -0.31f) + curveToRelative(0.34f, -0.33f, 0.52f, -0.77f, 0.52f, -1.24f) + lineTo(20.5f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-5.47f) + curveToRelative(-0.46f, 0.0f, -0.9f, 0.18f, -1.23f, 0.51f) + lineToRelative(-8.52f, 8.53f) + curveToRelative(-0.67f, 0.68f, -0.66f, 1.78f, 0.02f, 2.46f) + lineTo(9.0f, 19.45f) + curveToRelative(0.68f, 0.68f, 1.8f, 0.68f, 2.48f, 0.0f) + lineToRelative(0.51f, -0.51f) + verticalLineToRelative(2.01f) + curveToRelative(-1.26f, 0.8f, -2.95f, 0.66f, -4.05f, -0.44f) + lineTo(3.5f, 16.06f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.6f) + lineToRelative(8.5f, -8.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.3f, -0.96f) + horizontalLineToRelative(5.46f) + close() + moveTo(17.0f, 5.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(15.0f, 15.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(6.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(20.0f, 15.0f) + verticalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) + verticalLineToRelative(1.0f) + close() + moveTo(16.5f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-1.0f) + close() + moveTo(18.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + } + } + return _tagLock!! + } + +private var _tagLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TagMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TagMultiple.kt new file mode 100644 index 00000000..4ccc6ca5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TagMultiple.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TagMultiple: ImageVector + get() { + if (_tagMultiple != null) { + return _tagMultiple!! + } + _tagMultiple = fluentIcon(name = "Regular.TagMultiple") { + fluentPath { + moveTo(17.5f, 6.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(10.5f, 2.9f) + curveToRelative(0.61f, -0.58f, 1.42f, -0.9f, 2.25f, -0.9f) + horizontalLineToRelative(5.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 4.75f) + lineTo(21.0f, 9.7f) + curveToRelative(0.0f, 0.87f, -0.35f, 1.7f, -0.97f, 2.32f) + lineToRelative(-6.95f, 6.83f) + curveToRelative(-0.88f, 0.87f, -2.29f, 0.86f, -3.16f, 0.0f) + lineToRelative(-6.26f, -6.23f) + curveToRelative(-0.9f, -0.9f, -0.88f, -2.35f, 0.04f, -3.23f) + lineToRelative(6.8f, -6.5f) + close() + moveTo(12.75f, 3.5f) + curveToRelative(-0.45f, 0.0f, -0.88f, 0.17f, -1.2f, 0.48f) + lineToRelative(-6.82f, 6.5f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.78f, -0.01f, 1.07f) + lineToRelative(6.26f, 6.23f) + curveToRelative(0.29f, 0.3f, 0.76f, 0.3f, 1.05f, 0.0f) + lineToRelative(6.95f, -6.83f) + curveToRelative(0.33f, -0.33f, 0.52f, -0.78f, 0.52f, -1.25f) + lineTo(19.5f, 4.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-5.5f) + close() + moveTo(20.73f, 12.73f) + lineTo(19.26f, 14.18f) + lineTo(19.12f, 14.34f) + lineTo(13.79f, 19.57f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -4.58f, -0.02f) + lineToRelative(-1.93f, -1.92f) + lineToRelative(-2.4f, -2.38f) + arcToRelative(1.26f, 1.26f, 0.0f, false, true, -0.12f, -0.13f) + lineTo(3.13f, 13.5f) + curveToRelative(-0.3f, 0.96f, -0.08f, 2.05f, 0.69f, 2.81f) + lineToRelative(4.35f, 4.31f) + arcToRelative(4.75f, 4.75f, 0.0f, false, false, 6.67f, 0.02f) + lineToRelative(5.33f, -5.23f) + curveToRelative(0.77f, -0.76f, 1.0f, -1.86f, 0.7f, -2.81f) + lineToRelative(-0.14f, 0.13f) + close() + } + } + return _tagMultiple!! + } + +private var _tagMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TagOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TagOff.kt new file mode 100644 index 00000000..618ecf6e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TagOff.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TagOff: ImageVector + get() { + if (_tagOff != null) { + return _tagOff!! + } + _tagOff = fluentIcon(name = "Regular.TagOff") { + fluentPath { + moveTo(6.94f, 8.0f) + lineTo(2.22f, 3.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineToRelative(18.5f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(16.0f, 17.06f) + lineToRelative(-3.45f, 3.45f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -4.6f, 0.0f) + lineTo(3.5f, 16.06f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.6f) + lineTo(6.94f, 8.0f) + close() + moveTo(14.94f, 16.0f) + lineTo(8.0f, 9.06f) + lineToRelative(-3.46f, 3.48f) + curveToRelative(-0.68f, 0.68f, -0.67f, 1.78f, 0.01f, 2.46f) + lineToRelative(4.46f, 4.45f) + curveToRelative(0.69f, 0.68f, 1.8f, 0.68f, 2.48f, 0.0f) + lineTo(14.94f, 16.0f) + close() + moveTo(19.99f, 10.95f) + lineTo(17.0f, 13.94f) + lineTo(18.06f, 15.0f) + lineTo(21.05f, 12.0f) + curveToRelative(0.6f, -0.61f, 0.95f, -1.44f, 0.95f, -2.3f) + lineTo(22.0f, 4.25f) + curveTo(22.0f, 3.01f, 21.0f, 2.0f, 19.75f, 2.0f) + lineTo(14.3f, 2.0f) + curveToRelative(-0.87f, 0.0f, -1.7f, 0.34f, -2.3f, 0.95f) + lineTo(9.0f, 5.95f) + lineTo(10.06f, 7.0f) + lineToRelative(2.99f, -2.99f) + curveToRelative(0.33f, -0.33f, 0.77f, -0.51f, 1.24f, -0.51f) + horizontalLineToRelative(5.46f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(5.46f) + curveToRelative(0.0f, 0.47f, -0.18f, 0.91f, -0.51f, 1.24f) + close() + moveTo(17.0f, 5.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + } + } + return _tagOff!! + } + +private var _tagOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TagQuestionMark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TagQuestionMark.kt new file mode 100644 index 00000000..96b40937 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TagQuestionMark.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TagQuestionMark: ImageVector + get() { + if (_tagQuestionMark != null) { + return _tagQuestionMark!! + } + _tagQuestionMark = fluentIcon(name = "Regular.TagQuestionMark") { + fluentPath { + moveTo(19.75f, 2.0f) + curveTo(20.99f, 2.0f, 22.0f, 3.0f, 22.0f, 4.25f) + verticalLineToRelative(5.46f) + curveToRelative(0.0f, 0.86f, -0.34f, 1.69f, -0.95f, 2.3f) + lineToRelative(-0.03f, 0.03f) + arcToRelative(6.47f, 6.47f, 0.0f, false, false, -1.43f, -0.7f) + lineToRelative(0.4f, -0.4f) + curveToRelative(0.33f, -0.32f, 0.51f, -0.76f, 0.51f, -1.23f) + lineTo(20.5f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-5.47f) + curveToRelative(-0.46f, 0.0f, -0.9f, 0.18f, -1.23f, 0.51f) + lineToRelative(-8.52f, 8.53f) + curveToRelative(-0.67f, 0.68f, -0.66f, 1.78f, 0.02f, 2.46f) + lineTo(9.0f, 19.45f) + curveToRelative(0.64f, 0.64f, 1.64f, 0.68f, 2.33f, 0.13f) + curveToRelative(0.16f, 0.49f, 0.39f, 0.95f, 0.65f, 1.38f) + curveToRelative(-1.25f, 0.8f, -2.94f, 0.65f, -4.04f, -0.45f) + lineTo(3.5f, 16.06f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 0.0f, -4.6f) + lineToRelative(8.5f, -8.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.3f, -0.96f) + horizontalLineToRelative(5.46f) + close() + moveTo(17.0f, 5.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, -3.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(16.88f, 20.5f) + arcToRelative(0.62f, 0.62f, 0.0f, true, true, 1.24f, 0.0f) + arcToRelative(0.62f, 0.62f, 0.0f, false, true, -1.24f, 0.0f) + close() + moveTo(15.65f, 15.96f) + curveToRelative(-0.01f, -1.14f, 0.8f, -1.96f, 1.85f, -1.96f) + curveToRelative(1.03f, 0.0f, 1.85f, 0.85f, 1.85f, 1.95f) + curveToRelative(0.0f, 0.57f, -0.18f, 0.92f, -0.66f, 1.45f) + lineToRelative(-0.27f, 0.3f) + lineToRelative(-0.1f, 0.1f) + curveToRelative(-0.24f, 0.3f, -0.32f, 0.47f, -0.32f, 0.7f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + curveToRelative(0.0f, -0.57f, 0.19f, -0.93f, 0.67f, -1.47f) + lineToRelative(0.27f, -0.29f) + lineToRelative(0.1f, -0.11f) + curveToRelative(0.24f, -0.29f, 0.31f, -0.45f, 0.31f, -0.68f) + curveToRelative(0.0f, -0.55f, -0.38f, -0.95f, -0.85f, -0.95f) + curveToRelative(-0.5f, 0.0f, -0.86f, 0.37f, -0.85f, 0.95f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + close() + } + } + return _tagQuestionMark!! + } + +private var _tagQuestionMark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TagReset.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TagReset.kt new file mode 100644 index 00000000..5bad68ea --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TagReset.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TagReset: ImageVector + get() { + if (_tagReset != null) { + return _tagReset!! + } + _tagReset = fluentIcon(name = "Regular.TagReset") { + fluentPath { + moveTo(22.0f, 4.25f) + curveTo(22.0f, 3.01f, 21.0f, 2.0f, 19.75f, 2.0f) + horizontalLineToRelative(-5.47f) + curveToRelative(-0.86f, 0.0f, -1.69f, 0.34f, -2.3f, 0.95f) + lineToRelative(-8.5f, 8.51f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 0.0f, 4.6f) + lineToRelative(4.47f, 4.45f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 4.6f, 0.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, -0.49f, -1.64f) + lineToRelative(-0.57f, 0.58f) + curveToRelative(-0.69f, 0.68f, -1.8f, 0.68f, -2.48f, 0.0f) + lineTo(4.55f, 15.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.02f, -2.46f) + lineTo(13.05f, 4.0f) + curveToRelative(0.32f, -0.33f, 0.77f, -0.51f, 1.23f, -0.51f) + horizontalLineToRelative(5.47f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(5.46f) + curveToRelative(0.0f, 0.47f, -0.18f, 0.91f, -0.51f, 1.24f) + lineToRelative(-1.12f, 1.11f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, 1.64f, 0.49f) + lineToRelative(0.54f, -0.54f) + curveToRelative(0.6f, -0.61f, 0.95f, -1.44f, 0.95f, -2.3f) + lineTo(22.0f, 4.25f) + close() + moveTo(18.5f, 7.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) + close() + moveTo(14.78f, 12.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-2.0f, 2.0f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-0.72f, -0.72f) + lineTo(18.0f, 14.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, -3.5f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, false, 5.0f, -5.0f) + horizontalLineToRelative(-3.94f) + lineToRelative(0.72f, -0.72f) + close() + } + } + return _tagReset!! + } + +private var _tagReset: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TagSearch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TagSearch.kt new file mode 100644 index 00000000..156485d1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TagSearch.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TagSearch: ImageVector + get() { + if (_tagSearch != null) { + return _tagSearch!! + } + _tagSearch = fluentIcon(name = "Regular.TagSearch") { + fluentPath { + moveTo(22.0f, 4.25f) + curveTo(22.0f, 3.01f, 21.0f, 2.0f, 19.75f, 2.0f) + horizontalLineToRelative(-5.47f) + curveToRelative(-0.86f, 0.0f, -1.69f, 0.34f, -2.3f, 0.95f) + lineToRelative(-8.5f, 8.51f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 0.0f, 4.6f) + lineToRelative(4.47f, 4.45f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 4.6f, 0.0f) + lineToRelative(0.1f, -0.1f) + arcToRelative(5.52f, 5.52f, 0.0f, false, true, -0.93f, -1.19f) + lineToRelative(-0.23f, 0.23f) + curveToRelative(-0.69f, 0.68f, -1.8f, 0.68f, -2.48f, 0.0f) + lineTo(4.55f, 15.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.02f, -2.46f) + lineTo(13.05f, 4.0f) + curveToRelative(0.32f, -0.33f, 0.77f, -0.51f, 1.23f, -0.51f) + horizontalLineToRelative(5.47f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(5.46f) + curveToRelative(0.0f, 0.47f, -0.18f, 0.91f, -0.51f, 1.24f) + lineToRelative(-0.77f, 0.77f) + curveToRelative(0.44f, 0.25f, 0.84f, 0.56f, 1.2f, 0.92f) + lineToRelative(0.63f, -0.63f) + curveToRelative(0.6f, -0.61f, 0.95f, -1.44f, 0.95f, -2.3f) + lineTo(22.0f, 4.25f) + close() + moveTo(18.5f, 7.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) + close() + moveTo(20.17f, 19.1f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(2.61f, 2.62f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.61f, -2.61f) + close() + moveTo(19.5f, 16.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, -6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 6.0f, 0.0f) + close() + } + } + return _tagSearch!! + } + +private var _tagSearch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TapDouble.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TapDouble.kt new file mode 100644 index 00000000..cd32b654 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TapDouble.kt @@ -0,0 +1,98 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TapDouble: ImageVector + get() { + if (_tapDouble != null) { + return _tapDouble!! + } + _tapDouble = fluentIcon(name = "Regular.TapDouble") { + fluentPath { + moveTo(11.75f, 7.0f) + curveToRelative(1.35f, 0.0f, 2.18f, 0.97f, 2.25f, 2.33f) + verticalLineToRelative(2.29f) + lineToRelative(2.22f, 0.4f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.6f, 3.86f) + lineToRelative(-0.04f, 0.18f) + lineTo(17.73f, 20.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -1.69f, 1.61f) + lineToRelative(-0.16f, 0.03f) + lineToRelative(-2.42f, 0.35f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.28f, -1.12f) + lineToRelative(-0.08f, -0.16f) + lineToRelative(-0.03f, -0.06f) + curveToRelative(-0.24f, -0.5f, -0.59f, -0.95f, -1.03f, -1.28f) + lineToRelative(-0.2f, -0.14f) + lineToRelative(-1.87f, -1.26f) + lineToRelative(-0.1f, -0.06f) + lineToRelative(-0.1f, -0.05f) + lineToRelative(-2.36f, -1.17f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.41f, -0.66f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 1.41f, -2.44f) + curveToRelative(0.7f, -0.35f, 1.64f, -0.33f, 2.83f, 0.02f) + lineToRelative(0.26f, 0.08f) + lineTo(9.5f, 9.5f) + curveToRelative(0.0f, -1.45f, 0.84f, -2.51f, 2.25f, -2.51f) + close() + moveTo(11.75f, 8.5f) + curveToRelative(-0.46f, 0.0f, -0.71f, 0.27f, -0.75f, 0.87f) + verticalLineToRelative(5.38f) + curveToRelative(0.0f, 0.54f, -0.54f, 0.9f, -1.04f, 0.7f) + curveToRelative(-1.46f, -0.6f, -2.44f, -0.75f, -2.87f, -0.53f) + arcToRelative(0.97f, 0.97f, 0.0f, false, false, -0.51f, 0.52f) + lineToRelative(-0.04f, 0.12f) + lineToRelative(1.9f, 0.95f) + lineToRelative(0.18f, 0.1f) + lineToRelative(0.18f, 0.1f) + lineToRelative(1.88f, 1.26f) + arcToRelative(4.97f, 4.97f, 0.0f, false, true, 1.63f, 1.8f) + lineToRelative(0.12f, 0.24f) + lineToRelative(0.03f, 0.06f) + curveToRelative(0.12f, 0.27f, 0.39f, 0.43f, 0.68f, 0.43f) + horizontalLineToRelative(0.1f) + lineToRelative(2.42f, -0.35f) + curveToRelative(0.26f, -0.04f, 0.48f, -0.2f, 0.58f, -0.45f) + lineToRelative(0.04f, -0.1f) + lineToRelative(1.05f, -3.92f) + curveToRelative(0.25f, -0.94f, -0.3f, -1.9f, -1.24f, -2.15f) + lineToRelative(-0.07f, -0.01f) + lineToRelative(-2.9f, -0.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.61f, -0.63f) + lineToRelative(-0.01f, -0.11f) + lineTo(12.5f, 9.51f) + curveToRelative(0.0f, -0.7f, -0.25f, -1.01f, -0.75f, -1.01f) + close() + moveTo(11.75f, 2.0f) + arcToRelative(7.25f, 7.25f, 0.0f, false, true, 6.7f, 10.03f) + arcToRelative(4.2f, 4.2f, 0.0f, false, false, -1.3f, -0.78f) + arcToRelative(5.75f, 5.75f, 0.0f, true, false, -10.22f, 1.13f) + arcToRelative(3.32f, 3.32f, 0.0f, false, false, -1.42f, 0.57f) + arcTo(7.25f, 7.25f, 0.0f, false, true, 11.75f, 2.0f) + close() + moveTo(11.75f, 4.5f) + arcToRelative(4.75f, 4.75f, 0.0f, false, true, 4.41f, 6.5f) + lineTo(15.0f, 10.8f) + lineTo(15.0f, 9.25f) + curveToRelative(0.0f, -0.68f, -0.21f, -1.31f, -0.57f, -1.83f) + lineToRelative(-0.09f, -0.14f) + arcTo(3.07f, 3.07f, 0.0f, false, false, 11.75f, 6.0f) + curveToRelative(-1.18f, 0.0f, -2.08f, 0.53f, -2.64f, 1.35f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, -0.61f, 1.9f) + lineTo(8.5f, 12.4f) + lineToRelative(-0.26f, -0.04f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.62f, -0.32f) + curveTo(7.21f, 11.58f, 7.0f, 10.65f, 7.0f, 9.25f) + arcToRelative(4.75f, 4.75f, 0.0f, false, true, 4.75f, -4.75f) + close() + } + } + return _tapDouble!! + } + +private var _tapDouble: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TapSingle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TapSingle.kt new file mode 100644 index 00000000..f651d124 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TapSingle.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TapSingle: ImageVector + get() { + if (_tapSingle != null) { + return _tapSingle!! + } + _tapSingle = fluentIcon(name = "Regular.TapSingle") { + fluentPath { + moveTo(11.75f, 6.0f) + curveToRelative(1.35f, 0.0f, 2.18f, 0.97f, 2.25f, 2.33f) + verticalLineToRelative(2.29f) + lineToRelative(2.22f, 0.4f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.6f, 3.86f) + lineToRelative(-0.04f, 0.18f) + lineTo(17.73f, 19.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -1.69f, 1.61f) + lineToRelative(-0.16f, 0.03f) + lineToRelative(-2.42f, 0.35f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -2.28f, -1.12f) + lineToRelative(-0.08f, -0.16f) + lineToRelative(-0.03f, -0.06f) + curveToRelative(-0.24f, -0.5f, -0.59f, -0.95f, -1.03f, -1.28f) + lineToRelative(-0.19f, -0.14f) + lineToRelative(-1.88f, -1.26f) + lineToRelative(-0.1f, -0.06f) + lineToRelative(-0.1f, -0.05f) + lineToRelative(-2.36f, -1.17f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.41f, -0.66f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 1.41f, -2.44f) + curveToRelative(0.7f, -0.35f, 1.64f, -0.33f, 2.83f, 0.02f) + lineToRelative(0.26f, 0.08f) + lineTo(9.5f, 8.5f) + curveToRelative(0.0f, -1.46f, 0.84f, -2.51f, 2.25f, -2.51f) + close() + moveTo(11.75f, 7.5f) + curveToRelative(-0.46f, 0.0f, -0.71f, 0.27f, -0.75f, 0.87f) + verticalLineToRelative(5.38f) + curveToRelative(0.0f, 0.54f, -0.54f, 0.9f, -1.04f, 0.7f) + curveToRelative(-1.46f, -0.6f, -2.44f, -0.75f, -2.87f, -0.53f) + arcToRelative(0.97f, 0.97f, 0.0f, false, false, -0.51f, 0.52f) + lineToRelative(-0.04f, 0.12f) + lineToRelative(1.9f, 0.95f) + lineToRelative(0.18f, 0.1f) + lineToRelative(0.18f, 0.1f) + lineToRelative(1.88f, 1.26f) + arcToRelative(4.97f, 4.97f, 0.0f, false, true, 1.63f, 1.8f) + lineToRelative(0.12f, 0.24f) + lineToRelative(0.03f, 0.06f) + curveToRelative(0.12f, 0.27f, 0.39f, 0.43f, 0.68f, 0.43f) + horizontalLineToRelative(0.1f) + lineToRelative(2.42f, -0.35f) + curveToRelative(0.26f, -0.04f, 0.48f, -0.2f, 0.58f, -0.45f) + lineToRelative(0.04f, -0.1f) + lineToRelative(1.05f, -3.92f) + curveToRelative(0.25f, -0.94f, -0.3f, -1.9f, -1.24f, -2.15f) + lineToRelative(-0.07f, -0.01f) + lineToRelative(-2.9f, -0.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.61f, -0.63f) + lineToRelative(-0.01f, -0.11f) + lineTo(12.5f, 8.51f) + curveToRelative(0.0f, -0.7f, -0.25f, -1.01f, -0.75f, -1.01f) + close() + moveTo(11.75f, 2.5f) + arcToRelative(5.75f, 5.75f, 0.0f, false, true, 5.4f, 7.75f) + lineTo(17.0f, 10.2f) + arcToRelative(5.6f, 5.6f, 0.0f, false, false, -1.34f, -0.3f) + arcTo(4.24f, 4.24f, 0.0f, false, false, 11.75f, 4.0f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, -3.25f, 7.0f) + curveToRelative(-0.32f, 0.02f, -0.6f, 0.06f, -0.82f, 0.11f) + curveToRelative(-0.36f, 0.09f, -0.6f, 0.17f, -0.76f, 0.27f) + arcToRelative(5.75f, 5.75f, 0.0f, false, true, 4.83f, -8.88f) + close() + } + } + return _tapSingle!! + } + +private var _tapSingle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Target.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Target.kt new file mode 100644 index 00000000..588b2ac0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Target.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Target: ImageVector + get() { + if (_target != null) { + return _target!! + } + _target = fluentIcon(name = "Regular.Target") { + fluentPath { + moveTo(12.0f, 14.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) + close() + moveTo(6.0f, 12.0f) + arcToRelative(6.0f, 6.0f, 0.0f, true, true, 12.0f, 0.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, true, -12.0f, 0.0f) + close() + moveTo(12.0f, 7.5f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, 0.0f, 9.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 0.0f, -9.0f) + close() + moveTo(2.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, true, 20.0f, 0.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -20.0f, 0.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, 0.0f, 17.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, 0.0f, -17.0f) + close() + } + } + return _target!! + } + +private var _target: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TargetArrow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TargetArrow.kt new file mode 100644 index 00000000..7f108f1b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TargetArrow.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TargetArrow: ImageVector + get() { + if (_targetArrow != null) { + return _targetArrow!! + } + _targetArrow = fluentIcon(name = "Regular.TargetArrow") { + fluentPath { + moveTo(12.0f, 2.0f) + curveToRelative(1.2f, 0.0f, 2.36f, 0.21f, 3.42f, 0.6f) + lineToRelative(-1.19f, 1.2f) + arcToRelative(8.51f, 8.51f, 0.0f, true, false, 5.97f, 5.97f) + lineToRelative(1.2f, -1.2f) + arcTo(10.0f, 10.0f, 0.0f, true, true, 12.0f, 2.0f) + close() + moveTo(12.0f, 6.0f) + curveToRelative(0.52f, 0.0f, 1.02f, 0.07f, 1.5f, 0.19f) + verticalLineToRelative(1.57f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, 2.74f, 2.74f) + horizontalLineToRelative(1.57f) + arcTo(6.01f, 6.01f, 0.0f, true, true, 12.0f, 6.0f) + close() + moveTo(14.0f, 12.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -1.22f, -1.84f) + lineToRelative(1.72f, -1.72f) + lineTo(14.5f, 5.25f) + curveToRelative(0.0f, -0.2f, 0.08f, -0.39f, 0.22f, -0.53f) + lineToRelative(2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.28f, 0.53f) + lineTo(18.5f, 5.5f) + horizontalLineToRelative(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.53f, 1.28f) + lineToRelative(-2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.53f, 0.22f) + horizontalLineToRelative(-3.19f) + lineToRelative(-1.72f, 1.72f) + curveToRelative(0.1f, 0.24f, 0.16f, 0.5f, 0.16f, 0.78f) + close() + moveTo(18.44f, 8.0f) + lineTo(19.44f, 7.0f) + horizontalLineToRelative(-1.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(17.0f, 4.56f) + lineToRelative(-1.0f, 1.0f) + verticalLineToRelative(2.38f) + arcToRelative(0.7f, 0.7f, 0.0f, false, true, 0.06f, 0.06f) + horizontalLineToRelative(2.38f) + close() + } + } + return _targetArrow!! + } + +private var _targetArrow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TargetEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TargetEdit.kt new file mode 100644 index 00000000..c88896e0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TargetEdit.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TargetEdit: ImageVector + get() { + if (_targetEdit != null) { + return _targetEdit!! + } + _targetEdit = fluentIcon(name = "Regular.TargetEdit") { + fluentPath { + moveTo(12.0f, 14.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) + close() + moveTo(6.0f, 12.0f) + arcToRelative(6.0f, 6.0f, 0.0f, true, true, 11.99f, 0.37f) + lineToRelative(-2.66f, 2.66f) + arcTo(4.48f, 4.48f, 0.0f, false, false, 12.0f, 7.5f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, 3.03f, 7.83f) + lineToRelative(-2.54f, 2.53f) + lineToRelative(-0.12f, 0.13f) + lineTo(12.0f, 17.99f) + arcTo(6.0f, 6.0f, 0.0f, false, true, 6.0f, 12.0f) + close() + moveTo(12.0f, 3.5f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, 8.44f, 7.51f) + arcToRelative(3.3f, 3.3f, 0.0f, false, true, 1.53f, 0.24f) + arcTo(10.0f, 10.0f, 0.0f, true, false, 11.0f, 21.95f) + curveToRelative(0.0f, -0.18f, 0.02f, -0.36f, 0.06f, -0.54f) + lineToRelative(0.24f, -0.94f) + arcTo(8.5f, 8.5f, 0.0f, false, true, 12.0f, 3.5f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.34f, -0.59f, 0.78f, -0.7f, 1.25f) + lineToRelative(-0.47f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.53f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _targetEdit!! + } + +private var _targetEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TaskListAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TaskListAdd.kt new file mode 100644 index 00000000..2d9354c0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TaskListAdd.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TaskListAdd: ImageVector + get() { + if (_taskListAdd != null) { + return _taskListAdd!! + } + _taskListAdd = fluentIcon(name = "Regular.TaskListAdd") { + fluentPath { + moveTo(6.78f, 3.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineTo(3.75f, 4.69f) + lineToRelative(-0.47f, -0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(1.0f, 1.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.5f, -2.5f) + close() + moveTo(11.0f, 17.5f) + curveToRelative(0.0f, 0.34f, 0.03f, 0.68f, 0.08f, 1.0f) + lineTo(9.75f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.49f) + horizontalLineToRelative(1.37f) + arcToRelative(6.6f, 6.6f, 0.0f, false, false, -0.02f, 0.49f) + close() + moveTo(17.5f, 11.0f) + curveToRelative(1.27f, 0.0f, 2.46f, 0.37f, 3.47f, 1.0f) + horizontalLineToRelative(0.38f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + lineTo(9.65f, 10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(4.28f) + curveToRelative(1.0f, -0.63f, 2.2f, -1.0f, 3.47f, -1.0f) + close() + moveTo(21.25f, 4.0f) + lineTo(9.65f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(11.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(6.78f, 16.78f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-1.97f, 1.97f) + lineToRelative(-0.47f, -0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(1.0f, 1.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.5f, -2.5f) + close() + moveTo(6.78f, 9.22f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-2.5f, 2.5f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-1.0f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(0.47f, 0.47f) + lineToRelative(1.97f, -1.97f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _taskListAdd!! + } + +private var _taskListAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TaskListLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TaskListLtr.kt new file mode 100644 index 00000000..7f824a55 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TaskListLtr.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TaskListLtr: ImageVector + get() { + if (_taskListLtr != null) { + return _taskListLtr!! + } + _taskListLtr = fluentIcon(name = "Regular.TaskListLtr") { + fluentPath { + moveTo(6.78f, 4.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineTo(3.75f, 5.69f) + lineToRelative(-0.47f, -0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(1.0f, 1.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.5f, -2.5f) + close() + moveTo(21.25f, 18.01f) + lineTo(9.65f, 18.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(11.5f) + lineToRelative(0.1f, -0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(21.25f, 11.5f) + lineTo(9.65f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(11.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(21.25f, 5.0f) + lineTo(9.65f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(11.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(6.78f, 17.78f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-1.97f, 1.97f) + lineToRelative(-0.47f, -0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(1.0f, 1.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.5f, -2.5f) + close() + moveTo(6.78f, 10.22f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-2.5f, 2.5f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-1.0f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(0.47f, 0.47f) + lineToRelative(1.97f, -1.97f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + } + } + return _taskListLtr!! + } + +private var _taskListLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TaskListRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TaskListRtl.kt new file mode 100644 index 00000000..febef6ba --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TaskListRtl.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TaskListRtl: ImageVector + get() { + if (_taskListRtl != null) { + return _taskListRtl!! + } + _taskListRtl = fluentIcon(name = "Regular.TaskListRtl") { + fluentPath { + moveTo(21.78f, 4.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineToRelative(-1.97f, 1.97f) + lineToRelative(-0.47f, -0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.0f, 1.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.5f, -2.5f) + close() + moveTo(14.25f, 18.01f) + lineTo(2.65f, 18.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(11.5f) + lineToRelative(0.1f, -0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(14.25f, 11.5f) + lineTo(2.65f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(11.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(14.25f, 5.0f) + lineTo(2.65f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(11.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(21.78f, 17.78f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-1.97f, 1.97f) + lineToRelative(-0.47f, -0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.0f, 1.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.5f, -2.5f) + close() + moveTo(21.78f, 10.22f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-2.5f, 2.5f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-1.0f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(0.47f, 0.47f) + lineToRelative(1.97f, -1.97f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + } + } + return _taskListRtl!! + } + +private var _taskListRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TaskListSquareAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TaskListSquareAdd.kt new file mode 100644 index 00000000..807f7358 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TaskListSquareAdd.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TaskListSquareAdd: ImageVector + get() { + if (_taskListSquareAdd != null) { + return _taskListSquareAdd!! + } + _taskListSquareAdd = fluentIcon(name = "Regular.TaskListSquareAdd") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(5.77f) + curveToRelative(-0.3f, -0.46f, -0.53f, -0.97f, -0.7f, -1.5f) + lineTo(6.24f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.49f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(5.06f) + curveToRelative(0.53f, 0.18f, 1.04f, 0.42f, 1.5f, 0.71f) + lineTo(20.99f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(12.5f, 9.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(10.78f, 8.78f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineTo(8.25f, 9.19f) + lineToRelative(-0.47f, -0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(1.0f, 1.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.0f, -2.0f) + close() + moveTo(10.78f, 13.22f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-2.0f, 2.0f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-1.0f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(0.47f, 0.47f) + lineToRelative(1.47f, -1.47f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _taskListSquareAdd!! + } + +private var _taskListSquareAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TaskListSquareLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TaskListSquareLtr.kt new file mode 100644 index 00000000..682fed43 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TaskListSquareLtr.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TaskListSquareLtr: ImageVector + get() { + if (_taskListSquareLtr != null) { + return _taskListSquareLtr!! + } + _taskListSquareLtr = fluentIcon(name = "Regular.TaskListSquareLtr") { + fluentPath { + moveTo(12.5f, 9.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(13.25f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + close() + moveTo(10.78f, 8.78f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineTo(8.25f, 9.19f) + lineToRelative(-0.47f, -0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(1.0f, 1.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.0f, -2.0f) + close() + moveTo(10.78f, 13.22f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-2.0f, 2.0f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-1.0f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(0.47f, 0.47f) + lineToRelative(1.47f, -1.47f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 6.25f) + close() + } + } + return _taskListSquareLtr!! + } + +private var _taskListSquareLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TaskListSquareRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TaskListSquareRtl.kt new file mode 100644 index 00000000..4d64792f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TaskListSquareRtl.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TaskListSquareRtl: ImageVector + get() { + if (_taskListSquareRtl != null) { + return _taskListSquareRtl!! + } + _taskListSquareRtl = fluentIcon(name = "Regular.TaskListSquareRtl") { + fluentPath { + moveTo(7.25f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + close() + moveTo(6.5f, 9.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(17.78f, 8.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineToRelative(-1.47f, 1.47f) + lineToRelative(-0.47f, -0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.0f, 1.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.0f, -2.0f) + close() + moveTo(17.78f, 13.22f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-2.0f, 2.0f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-1.0f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(0.47f, 0.47f) + lineToRelative(1.47f, -1.47f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 6.25f) + close() + } + } + return _taskListSquareRtl!! + } + +private var _taskListSquareRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TasksApp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TasksApp.kt new file mode 100644 index 00000000..b6435016 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TasksApp.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TasksApp: ImageVector + get() { + if (_tasksApp != null) { + return _tasksApp!! + } + _tasksApp = fluentIcon(name = "Regular.TasksApp") { + fluentPath { + moveTo(20.0f, 4.1f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 17.74f, 2.0f) + lineTo(6.1f, 2.0f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 4.0f, 4.26f) + lineTo(4.0f, 19.9f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 6.26f, 22.0f) + horizontalLineToRelative(7.57f) + lineToRelative(-1.5f, -1.5f) + lineTo(6.15f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -0.75f) + lineTo(5.5f, 4.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.75f, -0.65f) + horizontalLineToRelative(11.6f) + curveToRelative(0.37f, 0.06f, 0.65f, 0.37f, 0.65f, 0.75f) + verticalLineToRelative(11.57f) + lineToRelative(1.16f, -1.16f) + curveToRelative(0.1f, -0.1f, 0.22f, -0.2f, 0.34f, -0.28f) + lineTo(20.0f, 4.1f) + close() + moveTo(16.28f, 22.0f) + arcToRelative(0.7f, 0.7f, 0.0f, false, true, -0.08f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.5f, -0.22f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.07f, -1.06f) + lineToRelative(1.97f, 1.97f) + lineToRelative(4.47f, -4.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-5.0f, 5.0f) + curveToRelative(-0.13f, 0.13f, -0.3f, 0.21f, -0.5f, 0.22f) + close() + moveTo(13.83f, 16.5f) + lineTo(11.25f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.4f) + close() + moveTo(9.0f, 7.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(10.5f, 7.75f) + curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(11.25f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.0f) + close() + moveTo(8.0f, 12.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(9.0f, 15.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + } + } + return _tasksApp!! + } + +private var _tasksApp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Teddy.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Teddy.kt new file mode 100644 index 00000000..0867396a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Teddy.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Teddy: ImageVector + get() { + if (_teddy != null) { + return _teddy!! + } + _teddy = fluentIcon(name = "Regular.Teddy") { + fluentPath { + moveTo(17.5f, 3.88f) + arcToRelative(4.12f, 4.12f, 0.0f, false, true, 2.7f, 7.24f) + curveToRelative(0.27f, 0.75f, 0.43f, 1.55f, 0.43f, 2.38f) + arcToRelative(7.31f, 7.31f, 0.0f, false, true, -3.19f, 5.91f) + curveToRelative(-0.28f, 0.2f, -0.57f, 0.4f, -0.88f, 0.57f) + lineToRelative(-0.04f, 0.02f) + arcTo(9.44f, 9.44f, 0.0f, false, true, 12.0f, 21.13f) + arcToRelative(9.44f, 9.44f, 0.0f, false, true, -5.4f, -1.68f) + lineToRelative(-0.04f, -0.04f) + arcToRelative(7.31f, 7.31f, 0.0f, false, true, -3.18f, -5.91f) + curveToRelative(0.0f, -0.83f, 0.15f, -1.63f, 0.42f, -2.38f) + arcToRelative(4.12f, 4.12f, 0.0f, true, true, 6.34f, -5.07f) + arcToRelative(9.75f, 9.75f, 0.0f, false, true, 3.72f, 0.0f) + arcToRelative(4.12f, 4.12f, 0.0f, false, true, 3.64f, -2.17f) + close() + moveTo(13.52f, 16.4f) + curveToRelative(-0.1f, 0.2f, -0.3f, 0.37f, -0.53f, 0.5f) + curveToRelative(-0.28f, 0.14f, -0.62f, 0.23f, -0.99f, 0.23f) + reflectiveCurveToRelative(-0.71f, -0.09f, -0.99f, -0.24f) + curveToRelative(-0.23f, -0.12f, -0.42f, -0.29f, -0.53f, -0.5f) + arcToRelative(4.39f, 4.39f, 0.0f, false, false, -2.53f, 2.44f) + arcTo(8.17f, 8.17f, 0.0f, false, false, 12.0f, 19.88f) + curveToRelative(1.5f, 0.0f, 2.89f, -0.4f, 4.05f, -1.05f) + arcToRelative(4.38f, 4.38f, 0.0f, false, false, -2.53f, -2.43f) + close() + moveTo(12.0f, 7.13f) + curveToRelative(-4.12f, 0.0f, -7.38f, 2.9f, -7.38f, 6.37f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, 2.29f, 4.6f) + arcToRelative(5.63f, 5.63f, 0.0f, false, true, 10.18f, 0.0f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, 2.29f, -4.6f) + curveToRelative(0.0f, -3.48f, -3.26f, -6.38f, -7.38f, -6.38f) + close() + moveTo(6.5f, 5.13f) + arcToRelative(2.87f, 2.87f, 0.0f, false, false, -2.13f, 4.8f) + arcTo(8.4f, 8.4f, 0.0f, false, true, 8.88f, 6.4f) + arcTo(2.88f, 2.88f, 0.0f, false, false, 6.5f, 5.13f) + close() + moveTo(17.5f, 5.13f) + curveToRelative(-0.97f, 0.0f, -1.86f, 0.48f, -2.38f, 1.26f) + arcToRelative(8.4f, 8.4f, 0.0f, false, true, 4.5f, 3.55f) + arcToRelative(2.87f, 2.87f, 0.0f, false, false, -2.12f, -4.81f) + close() + } + } + return _teddy!! + } + +private var _teddy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Temperature.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Temperature.kt new file mode 100644 index 00000000..b759dff0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Temperature.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Temperature: ImageVector + get() { + if (_temperature != null) { + return _temperature!! + } + _temperature = fluentIcon(name = "Regular.Temperature") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.24f, 3.07f) + lineToRelative(0.01f, 0.18f) + verticalLineToRelative(7.95f) + lineToRelative(0.08f, 0.07f) + arcToRelative(4.99f, 4.99f, 0.0f, false, true, 1.64f, 3.22f) + lineToRelative(0.02f, 0.26f) + lineToRelative(0.01f, 0.25f) + arcToRelative(5.0f, 5.0f, 0.0f, true, true, -8.51f, -3.56f) + lineToRelative(0.18f, -0.17f) + lineToRelative(0.08f, -0.07f) + lineTo(8.75f, 5.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.88f, -3.23f) + lineToRelative(0.19f, -0.01f) + lineTo(12.0f, 2.0f) + close() + moveTo(12.0f, 3.5f) + curveToRelative(-0.92f, 0.0f, -1.67f, 0.7f, -1.74f, 1.6f) + lineToRelative(-0.01f, 0.15f) + verticalLineToRelative(8.7f) + lineToRelative(-0.3f, 0.22f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 4.27f, 0.13f) + lineToRelative(-0.16f, -0.13f) + lineToRelative(-0.3f, -0.22f) + lineToRelative(-0.01f, -8.7f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(12.0f, 8.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(5.86f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, -1.5f, 0.0f) + lineTo(11.25f, 8.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _temperature!! + } + +private var _temperature: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Tent.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Tent.kt new file mode 100644 index 00000000..bad42530 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Tent.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Tent: ImageVector + get() { + if (_tent != null) { + return _tent!! + } + _tent = fluentIcon(name = "Regular.Tent") { + fluentPath { + moveTo(11.22f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.04f, -0.02f) + lineToRelative(1.76f, 1.64f) + curveToRelative(1.28f, 1.2f, 2.7f, 2.22f, 4.23f, 3.06f) + curveToRelative(0.43f, 0.23f, 0.73f, 0.66f, 0.8f, 1.15f) + lineToRelative(1.35f, 9.45f) + horizontalLineToRelative(0.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(2.75f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.85f) + lineTo(4.96f, 8.0f) + curveToRelative(0.06f, -0.45f, 0.33f, -0.85f, 0.72f, -1.08f) + curveToRelative(1.4f, -0.84f, 2.69f, -1.85f, 3.84f, -3.0f) + lineToRelative(1.7f, -1.7f) + close() + moveTo(5.12f, 17.5f) + horizontalLineToRelative(2.13f) + arcToRelative(23.31f, 23.31f, 0.0f, false, false, 3.5f, -7.16f) + lineToRelative(0.53f, -1.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.44f, 0.0f) + lineToRelative(0.52f, 1.8f) + curveToRelative(0.75f, 2.57f, 1.94f, 5.0f, 3.51f, 7.16f) + horizontalLineToRelative(2.14f) + lineToRelative(-1.33f, -9.24f) + arcTo(22.31f, 22.31f, 0.0f, false, true, 13.0f, 4.94f) + lineToRelative(-1.22f, -1.15f) + lineToRelative(-1.19f, 1.19f) + arcToRelative(21.43f, 21.43f, 0.0f, false, true, -4.14f, 3.24f) + lineTo(5.11f, 17.5f) + close() + moveTo(14.92f, 17.5f) + arcTo(24.81f, 24.81f, 0.0f, false, true, 12.0f, 11.4f) + arcToRelative(24.81f, 24.81f, 0.0f, false, true, -2.93f, 6.1f) + horizontalLineToRelative(5.86f) + close() + } + } + return _tent!! + } + +private var _tent: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TetrisApp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TetrisApp.kt new file mode 100644 index 00000000..d592d9aa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TetrisApp.kt @@ -0,0 +1,117 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TetrisApp: ImageVector + get() { + if (_tetrisApp != null) { + return _tetrisApp!! + } + _tetrisApp = fluentIcon(name = "Regular.TetrisApp") { + fluentPath { + moveTo(8.75f, 2.0f) + curveTo(7.78f, 2.0f, 7.0f, 2.78f, 7.0f, 3.75f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-3.0f) + curveTo(2.78f, 7.0f, 2.0f, 7.78f, 2.0f, 8.75f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(8.0f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(2.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-3.0f) + curveTo(18.0f, 2.78f, 17.22f, 2.0f, 16.25f, 2.0f) + horizontalLineToRelative(-7.5f) + close() + moveTo(16.25f, 7.0f) + lineTo(13.5f, 7.0f) + lineTo(13.5f, 3.5f) + horizontalLineToRelative(2.75f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + close() + moveTo(12.0f, 7.0f) + lineTo(8.48f, 7.0f) + lineToRelative(0.02f, -0.25f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + lineTo(12.0f, 3.5f) + lineTo(12.0f, 7.0f) + close() + moveTo(7.0f, 8.5f) + lineTo(7.0f, 12.0f) + lineTo(3.75f, 12.0f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + lineTo(7.0f, 8.5f) + close() + moveTo(8.5f, 8.5f) + horizontalLineToRelative(3.52f) + lineToRelative(-0.02f, 0.25f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + lineTo(8.5f, 12.0f) + lineTo(8.5f, 8.5f) + close() + moveTo(17.25f, 10.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-8.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-8.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-3.0f) + close() + moveTo(17.0f, 12.25f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + horizontalLineToRelative(3.0f) + curveToRelative(0.14f, 0.0f, 0.25f, 0.11f, 0.25f, 0.25f) + verticalLineToRelative(3.25f) + horizontalLineToRelative(-3.52f) + lineToRelative(0.02f, -0.25f) + verticalLineToRelative(-3.0f) + close() + moveTo(17.0f, 17.0f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(3.25f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + lineTo(17.0f, 20.5f) + lineTo(17.0f, 17.0f) + close() + moveTo(15.5f, 16.98f) + verticalLineToRelative(3.52f) + horizontalLineToRelative(-4.0f) + lineTo(11.5f, 17.0f) + horizontalLineToRelative(3.75f) + curveToRelative(0.08f, 0.0f, 0.17f, 0.0f, 0.25f, -0.02f) + close() + moveTo(10.0f, 17.0f) + verticalLineToRelative(3.5f) + lineTo(6.75f, 20.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -0.14f, 0.11f, -0.25f, 0.25f, -0.25f) + lineTo(10.0f, 17.0f) + close() + } + } + return _tetrisApp!! + } + +private var _tetrisApp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAddSpaceAfter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAddSpaceAfter.kt new file mode 100644 index 00000000..2dabe5b5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAddSpaceAfter.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextAddSpaceAfter: ImageVector + get() { + if (_textAddSpaceAfter != null) { + return _textAddSpaceAfter!! + } + _textAddSpaceAfter = fluentIcon(name = "Regular.TextAddSpaceAfter") { + fluentPath { + moveTo(3.0f, 6.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(3.75f, 7.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 6.75f) + close() + moveTo(3.0f, 12.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(3.75f, 13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(9.47f, 18.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineTo(12.0f, 17.81f) + lineToRelative(1.47f, 1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-2.0f, 2.0f) + close() + } + } + return _textAddSpaceAfter!! + } + +private var _textAddSpaceAfter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAddSpaceBefore.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAddSpaceBefore.kt new file mode 100644 index 00000000..a49b460f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAddSpaceBefore.kt @@ -0,0 +1,45 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextAddSpaceBefore: ImageVector + get() { + if (_textAddSpaceBefore != null) { + return _textAddSpaceBefore!! + } + _textAddSpaceBefore = fluentIcon(name = "Regular.TextAddSpaceBefore") { + fluentPath { + moveTo(9.47f, 6.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + lineTo(12.0f, 6.69f) + lineToRelative(1.47f, -1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-2.0f, 2.0f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-2.0f, -2.0f) + close() + moveTo(3.0f, 11.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(3.75f, 12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(3.0f, 17.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(3.75f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _textAddSpaceBefore!! + } + +private var _textAddSpaceBefore: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAddT.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAddT.kt new file mode 100644 index 00000000..81637b48 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAddT.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextAddT: ImageVector + get() { + if (_textAddT != null) { + return _textAddT!! + } + _textAddT = fluentIcon(name = "Regular.TextAddT") { + fluentPath { + moveTo(4.0f, 4.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(12.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(16.5f, 5.5f) + horizontalLineToRelative(-4.75f) + verticalLineToRelative(8.97f) + arcTo(6.47f, 6.47f, 0.0f, false, false, 11.5f, 20.0f) + lineTo(8.75f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.5f) + verticalLineToRelative(-13.0f) + lineTo(5.5f, 5.5f) + verticalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(18.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(17.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(17.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(18.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(18.0f, 18.0f) + close() + } + } + return _textAddT!! + } + +private var _textAddT: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignCenter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignCenter.kt new file mode 100644 index 00000000..7fb78133 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignCenter.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextAlignCenter: ImageVector + get() { + if (_textAlignCenter != null) { + return _textAlignCenter!! + } + _textAlignCenter = fluentIcon(name = "Regular.TextAlignCenter") { + fluentPath { + moveTo(4.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(4.75f, 6.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 4.0f, 5.75f) + close() + moveTo(6.0f, 18.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(6.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(2.75f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(2.75f, 11.5f) + close() + } + } + return _textAlignCenter!! + } + +private var _textAlignCenter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignCenterRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignCenterRotate270.kt new file mode 100644 index 00000000..0b8d0d36 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignCenterRotate270.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextAlignCenterRotate270: ImageVector + get() { + if (_textAlignCenterRotate270 != null) { + return _textAlignCenterRotate270!! + } + _textAlignCenterRotate270 = fluentIcon(name = "Regular.TextAlignCenterRotate270") { + fluentPath { + moveTo(5.75f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(5.0f, 4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(14.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + close() + moveTo(18.75f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(18.0f, 6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + close() + moveTo(11.5f, 21.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(13.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(18.5f) + close() + } + } + return _textAlignCenterRotate270!! + } + +private var _textAlignCenterRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignCenterRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignCenterRotate90.kt new file mode 100644 index 00000000..fcf07fb2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignCenterRotate90.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextAlignCenterRotate90: ImageVector + get() { + if (_textAlignCenterRotate90 != null) { + return _textAlignCenterRotate90!! + } + _textAlignCenterRotate90 = fluentIcon(name = "Regular.TextAlignCenterRotate90") { + fluentPath { + moveTo(18.25f, 4.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(17.5f, 4.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(5.25f, 6.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(4.5f, 6.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(12.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(12.5f, 2.75f) + close() + } + } + return _textAlignCenterRotate90!! + } + +private var _textAlignCenterRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignDistributed.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignDistributed.kt new file mode 100644 index 00000000..eb6fa9b9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignDistributed.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextAlignDistributed: ImageVector + get() { + if (_textAlignDistributed != null) { + return _textAlignDistributed!! + } + _textAlignDistributed = fluentIcon(name = "Regular.TextAlignDistributed") { + fluentPath { + moveToRelative(5.28f, 7.22f) + lineToRelative(-0.72f, -0.72f) + horizontalLineToRelative(16.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(4.56f, 5.0f) + lineToRelative(0.72f, -0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineToRelative(-2.0f, 2.0f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + close() + moveTo(2.75f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(2.75f, 11.5f) + close() + moveTo(2.75f, 19.5f) + horizontalLineToRelative(16.69f) + lineToRelative(-0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(2.0f, -2.0f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(0.72f, 0.72f) + lineTo(2.75f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + } + } + return _textAlignDistributed!! + } + +private var _textAlignDistributed: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignDistributedEvenly.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignDistributedEvenly.kt new file mode 100644 index 00000000..34e08cbb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignDistributedEvenly.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextAlignDistributedEvenly: ImageVector + get() { + if (_textAlignDistributedEvenly != null) { + return _textAlignDistributedEvenly!! + } + _textAlignDistributedEvenly = fluentIcon(name = "Regular.TextAlignDistributedEvenly") { + fluentPath { + moveTo(2.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(2.75f, 6.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 2.0f, 5.75f) + close() + moveTo(5.28f, 20.22f) + lineTo(4.56f, 19.5f) + horizontalLineToRelative(14.88f) + lineToRelative(-0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(2.0f, -2.0f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(0.72f, 0.72f) + lineTo(4.56f, 18.0f) + lineToRelative(0.72f, -0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-2.0f, 2.0f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + close() + moveTo(2.75f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(2.75f, 11.5f) + close() + } + } + return _textAlignDistributedEvenly!! + } + +private var _textAlignDistributedEvenly: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignDistributedVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignDistributedVertical.kt new file mode 100644 index 00000000..f9ccef48 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignDistributedVertical.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextAlignDistributedVertical: ImageVector + get() { + if (_textAlignDistributedVertical != null) { + return _textAlignDistributedVertical!! + } + _textAlignDistributedVertical = fluentIcon(name = "Regular.TextAlignDistributedVertical") { + fluentPath { + moveToRelative(16.78f, 5.28f) + lineToRelative(0.72f, -0.72f) + verticalLineToRelative(16.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(19.0f, 4.56f) + lineToRelative(0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + close() + moveTo(6.0f, 19.44f) + lineToRelative(0.72f, -0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) + lineToRelative(-2.0f, 2.0f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(0.72f, 0.72f) + lineTo(4.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(16.69f) + close() + moveTo(12.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(12.5f, 2.75f) + close() + } + } + return _textAlignDistributedVertical!! + } + +private var _textAlignDistributedVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignJustify.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignJustify.kt new file mode 100644 index 00000000..e57f1998 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignJustify.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextAlignJustify: ImageVector + get() { + if (_textAlignJustify != null) { + return _textAlignJustify!! + } + _textAlignJustify = fluentIcon(name = "Regular.TextAlignJustify") { + fluentPath { + moveTo(2.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(2.75f, 6.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 2.0f, 5.75f) + close() + moveTo(2.0f, 18.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(2.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(2.75f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(2.75f, 11.5f) + close() + } + } + return _textAlignJustify!! + } + +private var _textAlignJustify: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignJustifyLow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignJustifyLow.kt new file mode 100644 index 00000000..9a44c1e3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignJustifyLow.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextAlignJustifyLow: ImageVector + get() { + if (_textAlignJustifyLow != null) { + return _textAlignJustifyLow!! + } + _textAlignJustifyLow = fluentIcon(name = "Regular.TextAlignJustifyLow") { + fluentPath { + moveTo(13.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(2.0f, 18.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(2.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(13.75f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-7.5f) + close() + } + } + return _textAlignJustifyLow!! + } + +private var _textAlignJustifyLow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignJustifyLow90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignJustifyLow90.kt new file mode 100644 index 00000000..88b242f7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignJustifyLow90.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextAlignJustifyLow90: ImageVector + get() { + if (_textAlignJustifyLow90 != null) { + return _textAlignJustifyLow90!! + } + _textAlignJustifyLow90 = fluentIcon(name = "Regular.TextAlignJustifyLow90") { + fluentPath { + moveTo(18.25f, 13.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-7.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(5.25f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(4.5f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(12.5f, 13.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-7.5f) + close() + } + } + return _textAlignJustifyLow90!! + } + +private var _textAlignJustifyLow90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignJustifyLowRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignJustifyLowRotate270.kt new file mode 100644 index 00000000..85648658 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignJustifyLowRotate270.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextAlignJustifyLowRotate270: ImageVector + get() { + if (_textAlignJustifyLowRotate270 != null) { + return _textAlignJustifyLowRotate270!! + } + _textAlignJustifyLowRotate270 = fluentIcon(name = "Regular.TextAlignJustifyLowRotate270") { + fluentPath { + moveTo(5.75f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + close() + moveTo(18.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(18.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(18.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + close() + moveTo(11.5f, 10.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(7.5f) + close() + } + } + return _textAlignJustifyLowRotate270!! + } + +private var _textAlignJustifyLowRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignJustifyLowRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignJustifyLowRotate90.kt new file mode 100644 index 00000000..7381d494 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignJustifyLowRotate90.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextAlignJustifyLowRotate90: ImageVector + get() { + if (_textAlignJustifyLowRotate90 != null) { + return _textAlignJustifyLowRotate90!! + } + _textAlignJustifyLowRotate90 = fluentIcon(name = "Regular.TextAlignJustifyLowRotate90") { + fluentPath { + moveTo(18.25f, 13.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-7.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(5.25f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(4.5f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(12.5f, 13.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-7.5f) + close() + } + } + return _textAlignJustifyLowRotate90!! + } + +private var _textAlignJustifyLowRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignJustifyRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignJustifyRotate270.kt new file mode 100644 index 00000000..2096d146 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignJustifyRotate270.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextAlignJustifyRotate270: ImageVector + get() { + if (_textAlignJustifyRotate270 != null) { + return _textAlignJustifyRotate270!! + } + _textAlignJustifyRotate270 = fluentIcon(name = "Regular.TextAlignJustifyRotate270") { + fluentPath { + moveTo(5.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(5.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(18.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + close() + moveTo(18.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(18.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(18.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + close() + moveTo(11.5f, 21.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(13.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(18.5f) + close() + } + } + return _textAlignJustifyRotate270!! + } + +private var _textAlignJustifyRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignJustifyRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignJustifyRotate90.kt new file mode 100644 index 00000000..897f4932 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignJustifyRotate90.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextAlignJustifyRotate90: ImageVector + get() { + if (_textAlignJustifyRotate90 != null) { + return _textAlignJustifyRotate90!! + } + _textAlignJustifyRotate90 = fluentIcon(name = "Regular.TextAlignJustifyRotate90") { + fluentPath { + moveTo(18.25f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(17.5f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(5.25f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(4.5f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(12.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(12.5f, 2.75f) + close() + } + } + return _textAlignJustifyRotate90!! + } + +private var _textAlignJustifyRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignLeft.kt new file mode 100644 index 00000000..0c40082b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignLeft.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextAlignLeft: ImageVector + get() { + if (_textAlignLeft != null) { + return _textAlignLeft!! + } + _textAlignLeft = fluentIcon(name = "Regular.TextAlignLeft") { + fluentPath { + moveTo(2.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(2.75f, 6.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 2.0f, 5.75f) + close() + moveTo(2.0f, 18.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(2.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(2.75f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(2.75f, 11.5f) + close() + } + } + return _textAlignLeft!! + } + +private var _textAlignLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignLeftRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignLeftRotate270.kt new file mode 100644 index 00000000..c4e5f845 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignLeftRotate270.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextAlignLeftRotate270: ImageVector + get() { + if (_textAlignLeftRotate270 != null) { + return _textAlignLeftRotate270!! + } + _textAlignLeftRotate270 = fluentIcon(name = "Regular.TextAlignLeftRotate270") { + fluentPath { + moveTo(5.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(5.0f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + close() + moveTo(18.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + close() + moveTo(11.5f, 21.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(13.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(18.5f) + close() + } + } + return _textAlignLeftRotate270!! + } + +private var _textAlignLeftRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignLeftRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignLeftRotate90.kt new file mode 100644 index 00000000..35673782 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignLeftRotate90.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextAlignLeftRotate90: ImageVector + get() { + if (_textAlignLeftRotate90 != null) { + return _textAlignLeftRotate90!! + } + _textAlignLeftRotate90 = fluentIcon(name = "Regular.TextAlignLeftRotate90") { + fluentPath { + moveTo(18.25f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(17.5f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(5.25f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(4.5f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(12.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(12.5f, 2.75f) + close() + } + } + return _textAlignLeftRotate90!! + } + +private var _textAlignLeftRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignRight.kt new file mode 100644 index 00000000..312e666d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignRight.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextAlignRight: ImageVector + get() { + if (_textAlignRight != null) { + return _textAlignRight!! + } + _textAlignRight = fluentIcon(name = "Regular.TextAlignRight") { + fluentPath { + moveTo(5.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(5.75f, 6.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 5.0f, 5.75f) + close() + moveTo(10.0f, 18.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(2.75f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(2.75f, 11.5f) + close() + } + } + return _textAlignRight!! + } + +private var _textAlignRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignRightRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignRightRotate270.kt new file mode 100644 index 00000000..3fb95522 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignRightRotate270.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextAlignRightRotate270: ImageVector + get() { + if (_textAlignRightRotate270 != null) { + return _textAlignRightRotate270!! + } + _textAlignRightRotate270 = fluentIcon(name = "Regular.TextAlignRightRotate270") { + fluentPath { + moveTo(5.75f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(5.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + close() + moveTo(18.75f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(18.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + close() + moveTo(11.5f, 21.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(13.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(18.5f) + close() + } + } + return _textAlignRightRotate270!! + } + +private var _textAlignRightRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignRightRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignRightRotate90.kt new file mode 100644 index 00000000..dd9c9dfe --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextAlignRightRotate90.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextAlignRightRotate90: ImageVector + get() { + if (_textAlignRightRotate90 != null) { + return _textAlignRightRotate90!! + } + _textAlignRightRotate90 = fluentIcon(name = "Regular.TextAlignRightRotate90") { + fluentPath { + moveTo(18.25f, 5.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(17.5f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(5.25f, 10.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-10.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(12.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(12.5f, 2.75f) + close() + } + } + return _textAlignRightRotate90!! + } + +private var _textAlignRightRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBold.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBold.kt new file mode 100644 index 00000000..bdaee107 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBold.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextBold: ImageVector + get() { + if (_textBold != null) { + return _textBold!! + } + _textBold = fluentIcon(name = "Regular.TextBold") { + fluentPath { + moveTo(6.94f, 4.44f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 8.0f, 4.0f) + horizontalLineToRelative(4.38f) + arcToRelative(4.64f, 4.64f, 0.0f, false, true, 3.75f, 7.3f) + arcTo(4.7f, 4.7f, 0.0f, false, true, 18.0f, 15.13f) + curveToRelative(0.0f, 3.11f, -2.7f, 4.88f, -4.88f, 4.88f) + lineTo(8.0f, 20.01f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.5f, -1.5f) + verticalLineToRelative(-13.0f) + curveToRelative(0.0f, -0.4f, 0.15f, -0.78f, 0.44f, -1.06f) + close() + moveTo(9.5f, 10.25f) + horizontalLineToRelative(2.88f) + curveToRelative(0.9f, 0.0f, 1.62f, -0.76f, 1.62f, -1.62f) + curveTo(14.0f, 7.76f, 13.28f, 7.0f, 12.38f, 7.0f) + lineTo(9.5f, 7.0f) + verticalLineToRelative(3.25f) + close() + moveTo(9.5f, 13.25f) + lineTo(9.5f, 17.0f) + horizontalLineToRelative(3.62f) + curveToRelative(0.87f, 0.0f, 1.88f, -0.75f, 1.88f, -1.88f) + arcToRelative(1.9f, 1.9f, 0.0f, false, false, -1.88f, -1.87f) + lineTo(9.5f, 13.25f) + close() + } + } + return _textBold!! + } + +private var _textBold: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBoxSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBoxSettings.kt new file mode 100644 index 00000000..874dc081 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBoxSettings.kt @@ -0,0 +1,92 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextBoxSettings: ImageVector + get() { + if (_textBoxSettings != null) { + return _textBoxSettings!! + } + _textBoxSettings = fluentIcon(name = "Regular.TextBoxSettings") { + fluentPath { + moveTo(18.25f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(6.27f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 5.74f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(5.75f, 4.49f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(5.56f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(5.75f, 20.99f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(12.5f) + close() + moveTo(14.25f, 11.5f) + curveToRelative(0.16f, 0.0f, 0.31f, 0.05f, 0.44f, 0.14f) + curveToRelative(-0.71f, 0.34f, -1.34f, 0.8f, -1.88f, 1.36f) + lineTo(6.75f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(7.6f) + close() + moveTo(6.75f, 15.5f) + horizontalLineToRelative(4.56f) + curveToRelative(-0.15f, 0.48f, -0.25f, 0.98f, -0.3f, 1.5f) + lineTo(6.76f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(17.25f, 7.5f) + lineTo(6.65f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(10.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(12.5f, 15.63f) + lineTo(12.95f, 16.06f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, 2.88f) + lineToRelative(-0.45f, 0.43f) + curveToRelative(0.2f, 0.57f, 0.5f, 1.1f, 0.85f, 1.57f) + lineToRelative(0.6f, -0.18f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.52f, 1.45f) + lineToRelative(0.17f, 0.72f) + arcToRelative(5.18f, 5.18f, 0.0f, false, false, 1.72f, 0.0f) + lineToRelative(0.17f, -0.72f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.52f, -1.45f) + lineToRelative(0.6f, 0.18f) + curveToRelative(0.36f, -0.47f, 0.65f, -1.0f, 0.85f, -1.57f) + lineToRelative(-0.45f, -0.43f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -2.88f) + lineToRelative(0.45f, -0.43f) + curveToRelative(-0.2f, -0.58f, -0.5f, -1.1f, -0.85f, -1.57f) + lineToRelative(-0.6f, 0.18f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.52f, -1.45f) + lineToRelative(-0.17f, -0.72f) + arcToRelative(5.17f, 5.17f, 0.0f, false, false, -1.72f, 0.0f) + lineToRelative(-0.17f, 0.72f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.52f, 1.45f) + lineToRelative(-0.6f, -0.18f) + curveToRelative(-0.36f, 0.47f, -0.65f, 1.0f, -0.85f, 1.57f) + close() + moveTo(17.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) + close() + } + } + return _textBoxSettings!! + } + +private var _textBoxSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBulletListAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBulletListAdd.kt new file mode 100644 index 00000000..ec0f9972 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBulletListAdd.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextBulletListAdd: ImageVector + get() { + if (_textBulletListAdd != null) { + return _textBulletListAdd!! + } + _textBulletListAdd = fluentIcon(name = "Regular.TextBulletListAdd") { + fluentPath { + moveTo(4.5f, 18.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) + close() + moveTo(12.02f, 18.0f) + lineTo(6.65f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(5.56f) + arcToRelative(6.46f, 6.46f, 0.0f, false, true, -0.3f, -1.5f) + close() + moveTo(13.81f, 13.0f) + lineTo(6.75f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(9.34f) + curveToRelative(-0.83f, 0.35f, -1.57f, 0.86f, -2.18f, 1.5f) + close() + moveTo(4.5f, 12.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) + close() + moveTo(4.5f, 5.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 2.5f, 0.0f) + close() + moveTo(21.25f, 5.0f) + lineTo(6.65f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(14.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(24.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(19.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(18.0f, 18.0f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(18.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(19.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(19.0f, 18.0f) + close() + } + } + return _textBulletListAdd!! + } + +private var _textBulletListAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBulletListLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBulletListLtr.kt new file mode 100644 index 00000000..c2c321c1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBulletListLtr.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextBulletListLtr: ImageVector + get() { + if (_textBulletListLtr != null) { + return _textBulletListLtr!! + } + _textBulletListLtr = fluentIcon(name = "Regular.TextBulletListLtr") { + fluentPath { + moveTo(3.25f, 17.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(6.75f, 18.0f) + horizontalLineToRelative(14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(14.6f) + horizontalLineToRelative(-14.5f) + close() + moveTo(3.25f, 11.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(6.75f, 11.5f) + horizontalLineToRelative(14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(14.6f) + horizontalLineToRelative(-14.5f) + close() + moveTo(3.25f, 4.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(6.75f, 5.0f) + horizontalLineToRelative(14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(14.6f) + horizontalLineToRelative(-14.5f) + close() + } + } + return _textBulletListLtr!! + } + +private var _textBulletListLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBulletListLtr90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBulletListLtr90.kt new file mode 100644 index 00000000..706af41d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBulletListLtr90.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextBulletListLtr90: ImageVector + get() { + if (_textBulletListLtr90 != null) { + return _textBulletListLtr90!! + } + _textBulletListLtr90 = fluentIcon(name = "Regular.TextBulletListLtr90") { + fluentPath { + moveTo(6.5f, 3.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(6.0f, 6.75f) + verticalLineToRelative(14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(4.5f, 6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.1f) + close() + moveTo(13.0f, 3.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(12.5f, 6.75f) + verticalLineToRelative(14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(11.0f, 6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.1f) + close() + moveTo(19.5f, 3.25f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, -2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 2.5f, 0.0f) + close() + moveTo(19.0f, 6.75f) + verticalLineToRelative(14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(17.5f, 6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.1f) + close() + } + } + return _textBulletListLtr90!! + } + +private var _textBulletListLtr90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBulletListLtrRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBulletListLtrRotate270.kt new file mode 100644 index 00000000..ac9b0013 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBulletListLtrRotate270.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextBulletListLtrRotate270: ImageVector + get() { + if (_textBulletListLtrRotate270 != null) { + return _textBulletListLtrRotate270!! + } + _textBulletListLtrRotate270 = fluentIcon(name = "Regular.TextBulletListLtrRotate270") { + fluentPath { + moveTo(17.5f, 20.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) + close() + moveTo(18.0f, 17.25f) + lineTo(18.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(14.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-0.1f) + close() + moveTo(11.0f, 20.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) + close() + moveTo(11.5f, 17.25f) + lineTo(11.5f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(14.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-0.1f) + close() + moveTo(4.5f, 20.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) + close() + moveTo(5.0f, 17.25f) + lineTo(5.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(14.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-0.1f) + close() + } + } + return _textBulletListLtrRotate270!! + } + +private var _textBulletListLtrRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBulletListRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBulletListRtl.kt new file mode 100644 index 00000000..51de3202 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBulletListRtl.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextBulletListRtl: ImageVector + get() { + if (_textBulletListRtl != null) { + return _textBulletListRtl!! + } + _textBulletListRtl = fluentIcon(name = "Regular.TextBulletListRtl") { + fluentPath { + moveTo(20.75f, 17.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(17.25f, 18.0f) + lineTo(2.75f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + horizontalLineToRelative(14.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(20.75f, 11.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(17.25f, 11.5f) + lineTo(2.75f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + horizontalLineToRelative(14.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(20.75f, 4.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 0.0f, -2.5f) + close() + moveTo(17.25f, 5.0f) + lineTo(2.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + horizontalLineToRelative(14.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + } + } + return _textBulletListRtl!! + } + +private var _textBulletListRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBulletListSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBulletListSquare.kt new file mode 100644 index 00000000..e98f399f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBulletListSquare.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextBulletListSquare: ImageVector + get() { + if (_textBulletListSquare != null) { + return _textBulletListSquare!! + } + _textBulletListSquare = fluentIcon(name = "Regular.TextBulletListSquare") { + fluentPath { + moveTo(8.75f, 8.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(10.5f, 8.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(10.5f, 12.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(11.25f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.5f) + close() + moveTo(7.75f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(8.75f, 15.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(5.25f, 3.0f) + curveTo(4.01f, 3.0f, 3.0f, 4.0f, 3.0f, 5.25f) + verticalLineToRelative(13.5f) + curveTo(3.0f, 19.99f, 4.0f, 21.0f, 5.25f, 21.0f) + horizontalLineToRelative(13.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(21.0f, 5.25f) + curveTo(21.0f, 4.01f, 20.0f, 3.0f, 18.75f, 3.0f) + lineTo(5.25f, 3.0f) + close() + moveTo(4.5f, 5.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(5.25f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(4.5f, 5.25f) + close() + } + } + return _textBulletListSquare!! + } + +private var _textBulletListSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBulletListSquareEdit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBulletListSquareEdit.kt new file mode 100644 index 00000000..61d4e788 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBulletListSquareEdit.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextBulletListSquareEdit: ImageVector + get() { + if (_textBulletListSquareEdit != null) { + return _textBulletListSquareEdit!! + } + _textBulletListSquareEdit = fluentIcon(name = "Regular.TextBulletListSquareEdit") { + fluentPath { + moveTo(5.25f, 3.0f) + curveTo(4.01f, 3.0f, 3.0f, 4.0f, 3.0f, 5.25f) + verticalLineToRelative(13.5f) + curveTo(3.0f, 19.99f, 4.0f, 21.0f, 5.25f, 21.0f) + horizontalLineToRelative(5.91f) + lineToRelative(0.36f, -1.42f) + lineToRelative(0.02f, -0.08f) + lineTo(5.25f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(4.5f, 5.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(5.98f) + curveToRelative(0.48f, -0.19f, 1.0f, -0.26f, 1.5f, -0.22f) + lineTo(21.0f, 5.25f) + curveTo(21.0f, 4.01f, 20.0f, 3.0f, 18.75f, 3.0f) + lineTo(5.25f, 3.0f) + close() + moveTo(15.35f, 15.0f) + horizontalLineToRelative(-4.1f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(2.6f) + lineToRelative(1.5f, -1.5f) + close() + moveTo(8.75f, 8.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(11.25f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.5f) + close() + moveTo(11.25f, 11.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.5f) + close() + moveTo(7.75f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(8.75f, 15.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(19.1f, 12.67f) + lineTo(13.2f, 18.57f) + curveToRelative(-0.35f, 0.34f, -0.6f, 0.78f, -0.71f, 1.25f) + lineToRelative(-0.46f, 1.83f) + curveToRelative(-0.2f, 0.8f, 0.52f, 1.52f, 1.32f, 1.32f) + lineToRelative(1.83f, -0.46f) + curveToRelative(0.47f, -0.12f, 0.9f, -0.36f, 1.25f, -0.7f) + lineToRelative(5.9f, -5.9f) + arcToRelative(2.29f, 2.29f, 0.0f, false, false, -3.23f, -3.24f) + close() + } + } + return _textBulletListSquareEdit!! + } + +private var _textBulletListSquareEdit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBulletListSquareWarning.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBulletListSquareWarning.kt new file mode 100644 index 00000000..629ea387 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBulletListSquareWarning.kt @@ -0,0 +1,93 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextBulletListSquareWarning: ImageVector + get() { + if (_textBulletListSquareWarning != null) { + return _textBulletListSquareWarning!! + } + _textBulletListSquareWarning = fluentIcon(name = "Regular.TextBulletListSquareWarning") { + fluentPath { + moveTo(5.25f, 3.0f) + curveTo(4.01f, 3.0f, 3.0f, 4.0f, 3.0f, 5.25f) + verticalLineToRelative(13.5f) + curveTo(3.0f, 19.99f, 4.0f, 21.0f, 5.25f, 21.0f) + horizontalLineToRelative(5.8f) + curveToRelative(0.05f, -0.26f, 0.15f, -0.51f, 0.28f, -0.74f) + lineToRelative(0.43f, -0.76f) + lineTo(5.25f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(4.5f, 5.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(19.5f, 13.0f) + lineToRelative(0.17f, 0.26f) + lineTo(21.0f, 15.59f) + lineTo(21.0f, 5.25f) + curveTo(21.0f, 4.01f, 20.0f, 3.0f, 18.75f, 3.0f) + lineTo(5.25f, 3.0f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(4.47f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 17.5f, 12.0f) + close() + moveTo(14.34f, 15.0f) + horizontalLineToRelative(-3.09f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(2.23f) + lineToRelative(0.86f, -1.5f) + close() + moveTo(7.75f, 9.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(11.25f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.5f) + close() + moveTo(7.75f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(7.75f, 16.75f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(17.11f, 13.05f) + arcToRelative(1.49f, 1.49f, 0.0f, false, true, 1.69f, 0.7f) + lineToRelative(4.0f, 7.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 21.5f, 23.0f) + horizontalLineToRelative(-8.0f) + arcToRelative(1.49f, 1.49f, 0.0f, false, true, -1.5f, -1.5f) + curveToRelative(0.0f, -0.26f, 0.07f, -0.52f, 0.2f, -0.75f) + lineToRelative(4.0f, -7.0f) + curveToRelative(0.2f, -0.36f, 0.54f, -0.6f, 0.9f, -0.7f) + close() + moveTo(18.0f, 15.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-3.0f) + close() + moveTo(17.5f, 21.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + } + } + return _textBulletListSquareWarning!! + } + +private var _textBulletListSquareWarning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBulletListTree.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBulletListTree.kt new file mode 100644 index 00000000..eca55491 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextBulletListTree.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextBulletListTree: ImageVector + get() { + if (_textBulletListTree != null) { + return _textBulletListTree!! + } + _textBulletListTree = fluentIcon(name = "Regular.TextBulletListTree") { + fluentPath { + moveTo(7.25f, 17.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(10.75f, 18.0f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-10.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(10.6f) + horizontalLineToRelative(-10.5f) + close() + moveTo(3.25f, 11.0f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(6.75f, 11.5f) + horizontalLineToRelative(14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(14.6f) + horizontalLineToRelative(-14.5f) + close() + moveTo(3.25f, 4.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, 0.0f, -2.5f) + close() + moveTo(6.75f, 5.0f) + horizontalLineToRelative(14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(14.6f) + horizontalLineToRelative(-14.5f) + close() + } + } + return _textBulletListTree!! + } + +private var _textBulletListTree: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextCaseLowercase.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextCaseLowercase.kt new file mode 100644 index 00000000..8689077d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextCaseLowercase.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextCaseLowercase: ImageVector + get() { + if (_textCaseLowercase != null) { + return _textCaseLowercase!! + } + _textCaseLowercase = fluentIcon(name = "Regular.TextCaseLowercase") { + fluentPath { + moveTo(13.75f, 3.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(8.24f) + arcTo(3.72f, 3.72f, 0.0f, false, true, 17.0f, 11.0f) + curveToRelative(2.2f, 0.0f, 4.0f, 2.01f, 4.0f, 4.5f) + reflectiveCurveTo(19.2f, 20.0f, 17.0f, 20.0f) + curveToRelative(-0.95f, 0.0f, -1.82f, -0.37f, -2.5f, -0.99f) + verticalLineToRelative(0.24f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(13.0f, 3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(14.5f, 15.5f) + curveToRelative(0.0f, 1.83f, 1.28f, 3.0f, 2.5f, 3.0f) + reflectiveCurveToRelative(2.5f, -1.17f, 2.5f, -3.0f) + reflectiveCurveToRelative(-1.28f, -3.0f, -2.5f, -3.0f) + reflectiveCurveToRelative(-2.5f, 1.17f, -2.5f, 3.0f) + close() + moveTo(7.5f, 10.5f) + lineTo(7.79f, 10.51f) + curveToRelative(1.96f, 0.1f, 3.12f, 1.23f, 3.2f, 3.05f) + lineToRelative(0.01f, 0.2f) + verticalLineToRelative(5.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-0.1f) + arcToRelative(5.6f, 5.6f, 0.0f, false, true, -2.75f, 0.85f) + arcToRelative(3.13f, 3.13f, 0.0f, false, true, -3.25f, -3.25f) + curveToRelative(0.0f, -1.72f, 1.19f, -3.0f, 3.16f, -3.24f) + arcToRelative(7.53f, 7.53f, 0.0f, false, true, 2.84f, 0.2f) + curveToRelative(-0.01f, -1.1f, -0.56f, -1.65f, -1.79f, -1.71f) + curveToRelative(-0.96f, -0.05f, -1.64f, 0.09f, -2.03f, 0.36f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.86f, -1.22f) + arcToRelative(4.46f, 4.46f, 0.0f, false, true, 2.68f, -0.65f) + close() + moveTo(9.5f, 15.32f) + lineTo(9.2f, 15.23f) + curveToRelative(-0.81f, -0.22f, -1.6f, -0.28f, -2.36f, -0.19f) + curveToRelative(-1.23f, 0.15f, -1.84f, 0.8f, -1.84f, 1.76f) + curveToRelative(0.0f, 1.1f, 0.71f, 1.75f, 1.75f, 1.75f) + curveToRelative(0.68f, 0.0f, 1.52f, -0.32f, 2.5f, -0.97f) + lineToRelative(0.25f, -0.17f) + verticalLineToRelative(-2.09f) + close() + } + } + return _textCaseLowercase!! + } + +private var _textCaseLowercase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextCaseTitle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextCaseTitle.kt new file mode 100644 index 00000000..62379564 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextCaseTitle.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextCaseTitle: ImageVector + get() { + if (_textCaseTitle != null) { + return _textCaseTitle!! + } + _textCaseTitle = fluentIcon(name = "Regular.TextCaseTitle") { + fluentPath { + moveTo(15.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.24f) + curveToRelative(0.68f, 0.62f, 1.55f, 0.99f, 2.5f, 0.99f) + curveToRelative(2.2f, 0.0f, 4.0f, -2.01f, 4.0f, -4.5f) + reflectiveCurveTo(21.2f, 11.0f, 19.0f, 11.0f) + curveToRelative(-0.95f, 0.0f, -1.82f, 0.37f, -2.5f, 0.99f) + lineTo(16.5f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(16.5f, 15.5f) + curveToRelative(0.0f, -1.83f, 1.28f, -3.0f, 2.5f, -3.0f) + reflectiveCurveToRelative(2.5f, 1.17f, 2.5f, 3.0f) + reflectiveCurveToRelative(-1.28f, 3.0f, -2.5f, 3.0f) + reflectiveCurveToRelative(-2.5f, -1.17f, -2.5f, -3.0f) + close() + moveTo(7.76f, 3.0f) + curveToRelative(0.31f, 0.0f, 0.6f, 0.2f, 0.7f, 0.5f) + lineToRelative(5.5f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.42f, 0.5f) + lineToRelative(-1.42f, -4.0f) + lineTo(4.01f, 15.5f) + lineToRelative(-1.56f, 4.02f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.4f, -0.54f) + lineToRelative(6.0f, -15.5f) + curveToRelative(0.11f, -0.3f, 0.4f, -0.48f, 0.71f, -0.48f) + close() + moveTo(7.72f, 5.9f) + lineTo(4.59f, 14.0f) + horizontalLineToRelative(6.0f) + lineTo(7.72f, 5.9f) + close() + } + } + return _textCaseTitle!! + } + +private var _textCaseTitle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextCaseUppercase.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextCaseUppercase.kt new file mode 100644 index 00000000..6087acd2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextCaseUppercase.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextCaseUppercase: ImageVector + get() { + if (_textCaseUppercase != null) { + return _textCaseUppercase!! + } + _textCaseUppercase = fluentIcon(name = "Regular.TextCaseUppercase") { + fluentPath { + moveTo(7.7f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.4f, -0.02f) + lineToRelative(-6.0f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.4f, 0.54f) + lineToRelative(1.56f, -4.02f) + horizontalLineToRelative(7.11f) + lineToRelative(1.42f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.42f, -0.5f) + lineTo(7.7f, 3.5f) + close() + moveTo(3.85f, 14.0f) + lineToRelative(3.13f, -8.1f) + lineTo(9.84f, 14.0f) + horizontalLineToRelative(-6.0f) + close() + moveTo(14.75f, 3.25f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 14.0f, 4.0f) + verticalLineToRelative(15.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(4.13f) + arcToRelative(4.63f, 4.63f, 0.0f, false, false, 2.0f, -8.8f) + arcTo(4.5f, 4.5f, 0.0f, false, false, 18.0f, 3.26f) + horizontalLineToRelative(-3.25f) + close() + moveTo(21.0f, 7.75f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f) + horizontalLineToRelative(-2.5f) + verticalLineToRelative(-6.0f) + horizontalLineTo(18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f) + close() + moveTo(18.87f, 18.5f) + horizontalLineTo(15.5f) + verticalLineToRelative(-6.25f) + horizontalLineToRelative(3.38f) + arcToRelative(3.12f, 3.12f, 0.0f, true, true, 0.0f, 6.25f) + close() + } + } + return _textCaseUppercase!! + } + +private var _textCaseUppercase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextChangeCase.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextChangeCase.kt new file mode 100644 index 00000000..5457ff8d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextChangeCase.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextChangeCase: ImageVector + get() { + if (_textChangeCase != null) { + return _textChangeCase!! + } + _textChangeCase = fluentIcon(name = "Regular.TextChangeCase") { + fluentPath { + moveTo(16.51f, 3.0f) + curveToRelative(0.31f, 0.0f, 0.6f, 0.2f, 0.7f, 0.5f) + lineTo(22.7f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.42f, 0.5f) + lineToRelative(-1.42f, -4.0f) + horizontalLineToRelative(-7.11f) + lineToRelative(-1.56f, 4.02f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.4f, -0.54f) + lineToRelative(6.0f, -15.5f) + curveToRelative(0.11f, -0.3f, 0.4f, -0.48f, 0.71f, -0.48f) + close() + moveTo(16.47f, 5.9f) + lineTo(13.34f, 14.0f) + horizontalLineToRelative(6.0f) + lineToRelative(-2.87f, -8.1f) + close() + moveTo(5.5f, 10.5f) + lineToRelative(0.29f, 0.01f) + curveToRelative(1.96f, 0.1f, 3.12f, 1.23f, 3.2f, 3.05f) + lineToRelative(0.01f, 0.2f) + verticalLineToRelative(5.5f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + verticalLineToRelative(-0.1f) + arcToRelative(5.6f, 5.6f, 0.0f, false, true, -2.75f, 0.85f) + arcToRelative(3.13f, 3.13f, 0.0f, false, true, -3.25f, -3.25f) + curveToRelative(0.0f, -1.72f, 1.19f, -3.0f, 3.16f, -3.24f) + arcToRelative(7.53f, 7.53f, 0.0f, false, true, 2.84f, 0.2f) + curveToRelative(-0.01f, -1.1f, -0.56f, -1.65f, -1.79f, -1.71f) + curveToRelative(-0.96f, -0.05f, -1.64f, 0.09f, -2.03f, 0.36f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.86f, -1.22f) + arcToRelative(4.46f, 4.46f, 0.0f, false, true, 2.68f, -0.65f) + close() + moveTo(7.5f, 15.32f) + lineTo(7.2f, 15.23f) + curveToRelative(-0.81f, -0.22f, -1.6f, -0.28f, -2.36f, -0.19f) + curveToRelative(-1.23f, 0.15f, -1.84f, 0.8f, -1.84f, 1.76f) + curveToRelative(0.0f, 1.1f, 0.71f, 1.75f, 1.75f, 1.75f) + curveToRelative(0.68f, 0.0f, 1.52f, -0.32f, 2.5f, -0.97f) + lineToRelative(0.25f, -0.17f) + verticalLineToRelative(-2.09f) + close() + } + } + return _textChangeCase!! + } + +private var _textChangeCase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextClearFormatting.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextClearFormatting.kt new file mode 100644 index 00000000..072c3fe4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextClearFormatting.kt @@ -0,0 +1,95 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextClearFormatting: ImageVector + get() { + if (_textClearFormatting != null) { + return _textClearFormatting!! + } + _textClearFormatting = fluentIcon(name = "Regular.TextClearFormatting") { + fluentPath { + moveTo(2.21f, 13.82f) + curveToRelative(0.15f, 0.12f, 0.33f, 0.18f, 0.55f, 0.18f) + curveToRelative(0.36f, 0.0f, 0.61f, -0.19f, 0.75f, -0.56f) + lineToRelative(1.07f, -2.92f) + horizontalLineToRelative(4.83f) + lineToRelative(1.08f, 2.92f) + curveToRelative(0.14f, 0.37f, 0.39f, 0.56f, 0.75f, 0.56f) + arcToRelative(0.8f, 0.8f, 0.0f, false, false, 0.54f, -0.18f) + arcToRelative(0.59f, 0.59f, 0.0f, false, false, 0.22f, -0.46f) + curveToRelative(0.0f, -0.11f, -0.03f, -0.25f, -0.1f, -0.41f) + lineTo(7.98f, 2.7f) + curveToRelative(-0.18f, -0.47f, -0.5f, -0.7f, -0.95f, -0.7f) + curveToRelative(-0.49f, 0.0f, -0.82f, 0.24f, -1.0f, 0.71f) + lineTo(2.09f, 12.95f) + curveToRelative(-0.06f, 0.16f, -0.09f, 0.3f, -0.09f, 0.4f) + curveToRelative(0.0f, 0.19f, 0.07f, 0.35f, 0.21f, 0.47f) + close() + moveTo(8.98f, 9.27f) + lineTo(5.02f, 9.27f) + lineTo(6.97f, 3.9f) + horizontalLineToRelative(0.06f) + lineToRelative(1.95f, 5.37f) + close() + moveTo(13.0f, 13.1f) + lineToRelative(1.75f, -1.75f) + arcToRelative(3.97f, 3.97f, 0.0f, false, true, -0.35f, -1.73f) + curveToRelative(0.0f, -0.93f, 0.23f, -1.68f, 0.69f, -2.25f) + arcToRelative(2.16f, 2.16f, 0.0f, false, true, 1.76f, -0.87f) + curveToRelative(0.75f, 0.0f, 1.34f, 0.28f, 1.77f, 0.84f) + curveToRelative(0.36f, 0.47f, 0.57f, 1.07f, 0.63f, 1.8f) + curveToRelative(0.43f, 0.14f, 0.83f, 0.38f, 1.16f, 0.71f) + lineToRelative(0.29f, 0.29f) + lineToRelative(0.02f, -0.52f) + curveToRelative(0.0f, -1.31f, -0.33f, -2.37f, -0.99f, -3.17f) + arcToRelative(3.18f, 3.18f, 0.0f, false, false, -2.58f, -1.19f) + arcToRelative(2.97f, 2.97f, 0.0f, false, false, -2.71f, 1.56f) + horizontalLineToRelative(-0.03f) + lineTo(14.41f, 2.75f) + curveToRelative(0.0f, -0.22f, -0.07f, -0.4f, -0.2f, -0.54f) + arcToRelative(0.65f, 0.65f, 0.0f, false, false, -0.5f, -0.21f) + curveToRelative(-0.21f, 0.0f, -0.38f, 0.07f, -0.52f, 0.21f) + arcToRelative(0.77f, 0.77f, 0.0f, false, false, -0.19f, 0.54f) + verticalLineToRelative(10.36f) + close() + moveTo(16.98f, 21.49f) + lineTo(20.0f, 21.49f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(1.94f, 1.94f, 0.0f, false, true, -1.2f, -0.57f) + lineToRelative(-2.73f, -2.72f) + curveToRelative(-0.76f, -0.77f, -0.76f, -2.0f, 0.0f, -2.76f) + lineToRelative(6.38f, -6.38f) + curveToRelative(0.76f, -0.76f, 2.0f, -0.76f, 2.76f, 0.0f) + lineToRelative(2.72f, 2.72f) + curveToRelative(0.76f, 0.77f, 0.76f, 2.0f, 0.0f, 2.76f) + lineToRelative(-5.45f, 5.45f) + close() + moveTo(18.01f, 11.62f) + lineTo(13.85f, 15.78f) + lineTo(17.21f, 19.14f) + lineTo(21.37f, 14.98f) + arcToRelative(0.45f, 0.45f, 0.0f, false, false, 0.0f, -0.63f) + lineToRelative(-2.72f, -2.73f) + arcToRelative(0.45f, 0.45f, 0.0f, false, false, -0.64f, 0.0f) + close() + moveTo(12.79f, 16.84f) + lineTo(11.63f, 18.0f) + arcToRelative(0.45f, 0.45f, 0.0f, false, false, 0.0f, 0.63f) + lineToRelative(2.73f, 2.73f) + curveToRelative(0.17f, 0.17f, 0.46f, 0.17f, 0.63f, 0.0f) + lineToRelative(1.16f, -1.16f) + lineToRelative(-3.36f, -3.36f) + close() + } + } + return _textClearFormatting!! + } + +private var _textClearFormatting: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextCollapse.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextCollapse.kt new file mode 100644 index 00000000..3138d274 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextCollapse.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextCollapse: ImageVector + get() { + if (_textCollapse != null) { + return _textCollapse!! + } + _textCollapse = fluentIcon(name = "Regular.TextCollapse") { + fluentPath { + moveTo(6.75f, 4.5f) + horizontalLineToRelative(14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + lineTo(6.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(6.75f, 19.5f) + horizontalLineToRelative(14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + lineTo(6.75f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(13.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-7.5f) + close() + moveTo(13.0f, 13.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(11.0f, 11.5f) + arcToRelative(4.5f, 4.5f, 0.0f, true, true, -9.0f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 9.0f, 0.0f) + close() + moveTo(9.0f, 11.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + horizontalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + close() + } + } + return _textCollapse!! + } + +private var _textCollapse: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColor.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColor.kt new file mode 100644 index 00000000..8c9433a2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColor.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextColor: ImageVector + get() { + if (_textColor != null) { + return _textColor!! + } + _textColor = fluentIcon(name = "Regular.TextColor") { + fluentPath { + moveTo(17.75f, 14.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + lineTo(5.25f, 22.0f) + curveTo(4.01f, 22.0f, 3.0f, 21.0f, 3.0f, 19.75f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(12.5f) + close() + moveTo(17.75f, 16.0f) + lineTo(5.25f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(12.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(7.05f, 11.97f) + lineTo(10.81f, 2.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.1f) + lineToRelative(0.05f, 0.1f) + lineToRelative(3.75f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.65f) + lineToRelative(-0.05f, -0.1f) + lineToRelative(-1.0f, -2.52f) + horizontalLineToRelative(-4.1f) + lineToRelative(-1.0f, 2.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.88f, 0.45f) + lineToRelative(-0.1f, -0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.45f, -0.87f) + lineToRelative(0.03f, -0.1f) + lineToRelative(3.76f, -9.5f) + lineToRelative(-3.76f, 9.5f) + close() + moveTo(11.5f, 4.79f) + lineTo(10.04f, 8.5f) + horizontalLineToRelative(2.92f) + lineTo(11.5f, 4.8f) + close() + } + } + return _textColor!! + } + +private var _textColor: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColumnOne.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColumnOne.kt new file mode 100644 index 00000000..8998771e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColumnOne.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextColumnOne: ImageVector + get() { + if (_textColumnOne != null) { + return _textColumnOne!! + } + _textColumnOne = fluentIcon(name = "Regular.TextColumnOne") { + fluentPath { + moveTo(5.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(5.75f, 6.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 5.0f, 5.75f) + close() + moveTo(5.0f, 9.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(5.75f, 10.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 5.0f, 9.75f) + close() + moveTo(5.0f, 13.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(5.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(5.0f, 17.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(5.75f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _textColumnOne!! + } + +private var _textColumnOne: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColumnOneNarrow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColumnOneNarrow.kt new file mode 100644 index 00000000..ecb81250 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColumnOneNarrow.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextColumnOneNarrow: ImageVector + get() { + if (_textColumnOneNarrow != null) { + return _textColumnOneNarrow!! + } + _textColumnOneNarrow = fluentIcon(name = "Regular.TextColumnOneNarrow") { + fluentPath { + moveTo(8.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.5f) + close() + moveTo(8.75f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.5f) + close() + moveTo(8.0f, 13.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(8.75f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.5f) + close() + } + } + return _textColumnOneNarrow!! + } + +private var _textColumnOneNarrow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColumnOneSemiNarrow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColumnOneSemiNarrow.kt new file mode 100644 index 00000000..c66b1028 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColumnOneSemiNarrow.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextColumnOneSemiNarrow: ImageVector + get() { + if (_textColumnOneSemiNarrow != null) { + return _textColumnOneSemiNarrow!! + } + _textColumnOneSemiNarrow = fluentIcon(name = "Regular.TextColumnOneSemiNarrow") { + fluentPath { + moveTo(7.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-8.5f) + close() + moveTo(7.75f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-8.5f) + close() + moveTo(7.0f, 13.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(7.75f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-8.5f) + close() + } + } + return _textColumnOneSemiNarrow!! + } + +private var _textColumnOneSemiNarrow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColumnOneWide.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColumnOneWide.kt new file mode 100644 index 00000000..4b50a810 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColumnOneWide.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextColumnOneWide: ImageVector + get() { + if (_textColumnOneWide != null) { + return _textColumnOneWide!! + } + _textColumnOneWide = fluentIcon(name = "Regular.TextColumnOneWide") { + fluentPath { + moveTo(3.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 5.0f) + close() + moveTo(3.75f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 9.0f) + close() + moveTo(3.0f, 13.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(3.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(3.75f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 17.0f) + close() + } + } + return _textColumnOneWide!! + } + +private var _textColumnOneWide: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColumnOneWideLightning.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColumnOneWideLightning.kt new file mode 100644 index 00000000..b04dec3b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColumnOneWideLightning.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextColumnOneWideLightning: ImageVector + get() { + if (_textColumnOneWideLightning != null) { + return _textColumnOneWideLightning!! + } + _textColumnOneWideLightning = fluentIcon(name = "Regular.TextColumnOneWideLightning") { + fluentPath { + moveTo(3.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 5.0f) + close() + moveTo(3.75f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 9.0f) + close() + moveTo(3.0f, 13.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(9.06f) + curveToRelative(-0.43f, 0.44f, -0.8f, 0.95f, -1.08f, 1.5f) + lineTo(3.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(11.0f, 17.5f) + curveToRelative(0.0f, -0.17f, 0.0f, -0.34f, 0.02f, -0.5f) + lineTo(3.75f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.33f) + arcToRelative(6.55f, 6.55f, 0.0f, false, true, -0.08f, -1.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(18.53f, 14.0f) + lineTo(17.1f, 14.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.47f, 0.32f) + lineToRelative(-1.13f, 3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.47f, 0.68f) + horizontalLineToRelative(0.78f) + lineToRelative(-0.77f, 2.32f) + arcToRelative(0.52f, 0.52f, 0.0f, false, false, 0.92f, 0.44f) + lineToRelative(2.63f, -4.03f) + arcToRelative(0.47f, 0.47f, 0.0f, false, false, -0.4f, -0.73f) + horizontalLineToRelative(-0.63f) + lineToRelative(0.5f, -1.32f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.47f, -0.68f) + close() + } + } + return _textColumnOneWideLightning!! + } + +private var _textColumnOneWideLightning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColumnThree.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColumnThree.kt new file mode 100644 index 00000000..b74e1483 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColumnThree.kt @@ -0,0 +1,106 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextColumnThree: ImageVector + get() { + if (_textColumnThree != null) { + return _textColumnThree!! + } + _textColumnThree = fluentIcon(name = "Regular.TextColumnThree") { + fluentPath { + moveTo(3.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 5.75f) + close() + moveTo(9.5f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(16.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(3.0f, 9.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 9.75f) + close() + moveTo(9.5f, 9.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(16.0f, 9.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(3.0f, 13.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(9.5f, 13.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(16.0f, 13.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(3.0f, 17.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(9.5f, 17.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(16.0f, 17.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _textColumnThree!! + } + +private var _textColumnThree: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColumnTwo.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColumnTwo.kt new file mode 100644 index 00000000..32964725 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColumnTwo.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextColumnTwo: ImageVector + get() { + if (_textColumnTwo != null) { + return _textColumnTwo!! + } + _textColumnTwo = fluentIcon(name = "Regular.TextColumnTwo") { + fluentPath { + moveTo(3.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 5.75f) + close() + moveTo(3.0f, 9.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 9.75f) + close() + moveTo(3.0f, 13.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(3.0f, 17.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(13.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(13.0f, 9.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(13.0f, 13.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(13.0f, 17.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _textColumnTwo!! + } + +private var _textColumnTwo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColumnTwoLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColumnTwoLeft.kt new file mode 100644 index 00000000..5cd30771 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColumnTwoLeft.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextColumnTwoLeft: ImageVector + get() { + if (_textColumnTwoLeft != null) { + return _textColumnTwoLeft!! + } + _textColumnTwoLeft = fluentIcon(name = "Regular.TextColumnTwoLeft") { + fluentPath { + moveTo(21.0f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(9.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + close() + moveTo(8.0f, 5.75f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 7.25f, 5.0f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + close() + moveTo(21.0f, 9.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(9.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + close() + moveTo(8.0f, 9.75f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 7.25f, 9.0f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + close() + moveTo(21.0f, 13.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(9.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + close() + moveTo(8.0f, 13.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + close() + moveTo(21.0f, 17.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(9.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + close() + moveTo(8.0f, 17.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + close() + } + } + return _textColumnTwoLeft!! + } + +private var _textColumnTwoLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColumnTwoRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColumnTwoRight.kt new file mode 100644 index 00000000..c6bb2e03 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextColumnTwoRight.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextColumnTwoRight: ImageVector + get() { + if (_textColumnTwoRight != null) { + return _textColumnTwoRight!! + } + _textColumnTwoRight = fluentIcon(name = "Regular.TextColumnTwoRight") { + fluentPath { + moveTo(3.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-9.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 5.75f) + close() + moveTo(16.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(3.0f, 9.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-9.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 9.75f) + close() + moveTo(16.0f, 9.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(3.0f, 13.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(16.0f, 13.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(3.0f, 17.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(16.0f, 17.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _textColumnTwoRight!! + } + +private var _textColumnTwoRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextContinuous.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextContinuous.kt new file mode 100644 index 00000000..4c3d9777 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextContinuous.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextContinuous: ImageVector + get() { + if (_textContinuous != null) { + return _textContinuous!! + } + _textContinuous = fluentIcon(name = "Regular.TextContinuous") { + fluentPath { + moveTo(3.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 5.0f) + close() + moveTo(8.75f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(8.75f, 9.0f) + close() + moveTo(8.0f, 13.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(8.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(3.75f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 17.0f) + close() + moveTo(3.22f, 11.03f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(1.5f, 1.5f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(0.97f, -0.97f) + lineToRelative(-0.97f, -0.97f) + close() + } + } + return _textContinuous!! + } + +private var _textContinuous: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDensity.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDensity.kt new file mode 100644 index 00000000..96d09d88 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDensity.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextDensity: ImageVector + get() { + if (_textDensity != null) { + return _textDensity!! + } + _textDensity = fluentIcon(name = "Regular.TextDensity") { + fluentPath { + moveTo(12.25f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(11.5f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(10.0f, 5.0f) + lineTo(2.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(10.0f, 6.5f) + lineTo(10.0f, 5.0f) + close() + moveTo(10.0f, 9.0f) + lineTo(2.75f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(10.0f, 10.5f) + lineTo(10.0f, 9.0f) + close() + moveTo(10.0f, 13.0f) + lineTo(2.75f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(10.0f, 14.5f) + lineTo(10.0f, 13.0f) + close() + moveTo(10.0f, 17.0f) + lineTo(2.75f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(10.0f, 18.5f) + lineTo(10.0f, 17.0f) + close() + moveTo(19.75f, 18.0f) + lineTo(14.5f, 18.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(5.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(14.5f, 15.0f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(5.25f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, 4.5f) + close() + moveTo(19.75f, 10.5f) + lineTo(14.5f, 10.5f) + lineTo(14.5f, 9.0f) + horizontalLineToRelative(5.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(14.5f, 7.5f) + lineTo(14.5f, 6.0f) + horizontalLineToRelative(5.25f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, 4.5f) + close() + } + } + return _textDensity!! + } + +private var _textDensity: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDescription.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDescription.kt new file mode 100644 index 00000000..736c6fec --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDescription.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextDescription: ImageVector + get() { + if (_textDescription != null) { + return _textDescription!! + } + _textDescription = fluentIcon(name = "Regular.TextDescription") { + fluentPath { + moveTo(2.75f, 17.0f) + horizontalLineToRelative(12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(2.75f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(12.6f) + horizontalLineToRelative(-12.5f) + close() + moveTo(2.75f, 13.0f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(2.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(18.6f) + horizontalLineToRelative(-18.5f) + close() + moveTo(2.75f, 9.0f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(2.75f, 10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(18.6f) + horizontalLineToRelative(-18.5f) + close() + moveTo(2.75f, 5.0f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(2.75f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(18.6f) + horizontalLineToRelative(-18.5f) + close() + } + } + return _textDescription!! + } + +private var _textDescription: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDescriptionLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDescriptionLtr.kt new file mode 100644 index 00000000..c216c6fe --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDescriptionLtr.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextDescriptionLtr: ImageVector + get() { + if (_textDescriptionLtr != null) { + return _textDescriptionLtr!! + } + _textDescriptionLtr = fluentIcon(name = "Regular.TextDescriptionLtr") { + fluentPath { + moveTo(2.75f, 17.0f) + horizontalLineToRelative(12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(2.75f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(12.6f) + horizontalLineToRelative(-12.5f) + close() + moveTo(2.75f, 13.0f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(2.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(18.6f) + horizontalLineToRelative(-18.5f) + close() + moveTo(2.75f, 9.0f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(2.75f, 10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(18.6f) + horizontalLineToRelative(-18.5f) + close() + moveTo(2.75f, 5.0f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(2.75f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(18.6f) + horizontalLineToRelative(-18.5f) + close() + } + } + return _textDescriptionLtr!! + } + +private var _textDescriptionLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDescriptionRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDescriptionRtl.kt new file mode 100644 index 00000000..1d1aa5e5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDescriptionRtl.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextDescriptionRtl: ImageVector + get() { + if (_textDescriptionRtl != null) { + return _textDescriptionRtl!! + } + _textDescriptionRtl = fluentIcon(name = "Regular.TextDescriptionRtl") { + fluentPath { + moveTo(21.25f, 17.0f) + lineTo(8.75f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + horizontalLineToRelative(12.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + lineTo(8.75f, 17.0f) + horizontalLineToRelative(12.5f) + close() + moveTo(21.25f, 13.0f) + lineTo(2.75f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + horizontalLineToRelative(18.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + lineTo(2.75f, 13.0f) + horizontalLineToRelative(18.5f) + close() + moveTo(21.25f, 9.0f) + lineTo(2.75f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + horizontalLineToRelative(18.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + lineTo(2.75f, 9.0f) + horizontalLineToRelative(18.5f) + close() + moveTo(21.25f, 5.0f) + lineTo(2.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + horizontalLineToRelative(18.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + lineTo(2.75f, 5.0f) + horizontalLineToRelative(18.5f) + close() + } + } + return _textDescriptionRtl!! + } + +private var _textDescriptionRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionHorizontalLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionHorizontalLeft.kt new file mode 100644 index 00000000..c86d86cf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionHorizontalLeft.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextDirectionHorizontalLeft: ImageVector + get() { + if (_textDirectionHorizontalLeft != null) { + return _textDirectionHorizontalLeft!! + } + _textDirectionHorizontalLeft = fluentIcon(name = "Regular.TextDirectionHorizontalLeft") { + fluentPath { + moveToRelative(20.95f, 12.97f) + lineToRelative(-3.76f, -9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.34f, -0.1f) + lineToRelative(-0.05f, 0.1f) + lineToRelative(-3.75f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.35f, 0.65f) + lineToRelative(0.05f, -0.1f) + lineToRelative(1.0f, -2.52f) + horizontalLineToRelative(4.1f) + lineToRelative(1.0f, 2.52f) + curveToRelative(0.14f, 0.35f, 0.52f, 0.54f, 0.88f, 0.45f) + lineToRelative(0.1f, -0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.45f, -0.87f) + lineToRelative(-0.03f, -0.1f) + close() + moveTo(16.5f, 5.79f) + lineToRelative(1.46f, 3.71f) + horizontalLineToRelative(-2.92f) + lineToRelative(1.46f, -3.7f) + close() + moveTo(12.0f, 7.75f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(5.56f, 8.5f) + lineToRelative(0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) + lineTo(5.56f, 7.0f) + horizontalLineToRelative(5.69f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(21.0f, 17.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(5.56f, 18.0f) + lineToRelative(0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) + lineToRelative(-0.72f, 0.72f) + horizontalLineToRelative(14.69f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + } + } + return _textDirectionHorizontalLeft!! + } + +private var _textDirectionHorizontalLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionHorizontalLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionHorizontalLtr.kt new file mode 100644 index 00000000..65011ca2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionHorizontalLtr.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextDirectionHorizontalLtr: ImageVector + get() { + if (_textDirectionHorizontalLtr != null) { + return _textDirectionHorizontalLtr!! + } + _textDirectionHorizontalLtr = fluentIcon(name = "Regular.TextDirectionHorizontalLtr") { + fluentPath { + moveToRelative(3.05f, 12.97f) + lineToRelative(3.76f, -9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.1f) + lineToRelative(0.05f, 0.1f) + lineToRelative(3.75f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.65f) + lineToRelative(-0.05f, -0.1f) + lineToRelative(-1.0f, -2.52f) + horizontalLineToRelative(-4.1f) + lineToRelative(-1.0f, 2.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.88f, 0.45f) + lineToRelative(-0.1f, -0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.45f, -0.87f) + lineToRelative(0.03f, -0.1f) + close() + moveTo(7.5f, 5.79f) + lineTo(6.04f, 9.5f) + horizontalLineToRelative(2.92f) + lineTo(7.5f, 5.8f) + close() + moveTo(12.0f, 7.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(5.69f) + lineToRelative(-0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(2.0f, -2.0f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(0.72f, 0.72f) + horizontalLineToRelative(-5.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(3.0f, 17.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(14.69f) + lineToRelative(-0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(2.0f, -2.0f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(0.72f, 0.72f) + lineTo(3.75f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + } + } + return _textDirectionHorizontalLtr!! + } + +private var _textDirectionHorizontalLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionHorizontalRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionHorizontalRight.kt new file mode 100644 index 00000000..98318727 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionHorizontalRight.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextDirectionHorizontalRight: ImageVector + get() { + if (_textDirectionHorizontalRight != null) { + return _textDirectionHorizontalRight!! + } + _textDirectionHorizontalRight = fluentIcon(name = "Regular.TextDirectionHorizontalRight") { + fluentPath { + moveToRelative(3.05f, 12.97f) + lineToRelative(3.76f, -9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.1f) + lineToRelative(0.05f, 0.1f) + lineToRelative(3.75f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.65f) + lineToRelative(-0.05f, -0.1f) + lineToRelative(-1.0f, -2.52f) + horizontalLineToRelative(-4.1f) + lineToRelative(-1.0f, 2.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.88f, 0.45f) + lineToRelative(-0.1f, -0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.45f, -0.87f) + lineToRelative(0.03f, -0.1f) + close() + moveTo(7.5f, 5.79f) + lineTo(6.04f, 9.5f) + horizontalLineToRelative(2.92f) + lineTo(7.5f, 5.8f) + close() + moveTo(12.0f, 7.75f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(5.69f) + lineToRelative(-0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(2.0f, -2.0f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(0.72f, 0.72f) + horizontalLineToRelative(-5.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(3.0f, 17.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(14.69f) + lineToRelative(-0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(2.0f, -2.0f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(0.72f, 0.72f) + lineTo(3.75f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + } + } + return _textDirectionHorizontalRight!! + } + +private var _textDirectionHorizontalRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionHorizontalRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionHorizontalRtl.kt new file mode 100644 index 00000000..51e03588 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionHorizontalRtl.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextDirectionHorizontalRtl: ImageVector + get() { + if (_textDirectionHorizontalRtl != null) { + return _textDirectionHorizontalRtl!! + } + _textDirectionHorizontalRtl = fluentIcon(name = "Regular.TextDirectionHorizontalRtl") { + fluentPath { + moveToRelative(20.95f, 12.97f) + lineToRelative(-3.76f, -9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.34f, -0.1f) + lineToRelative(-0.05f, 0.1f) + lineToRelative(-3.75f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.35f, 0.65f) + lineToRelative(0.05f, -0.1f) + lineToRelative(1.0f, -2.52f) + horizontalLineToRelative(4.1f) + lineToRelative(1.0f, 2.52f) + curveToRelative(0.14f, 0.35f, 0.52f, 0.54f, 0.88f, 0.45f) + lineToRelative(0.1f, -0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.45f, -0.87f) + lineToRelative(-0.03f, -0.1f) + close() + moveTo(16.5f, 5.79f) + lineToRelative(1.46f, 3.71f) + horizontalLineToRelative(-2.92f) + lineToRelative(1.46f, -3.7f) + close() + moveTo(12.0f, 7.75f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(5.56f, 8.5f) + lineToRelative(0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) + lineTo(5.56f, 7.0f) + horizontalLineToRelative(5.69f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + moveTo(21.0f, 17.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(5.56f, 18.0f) + lineToRelative(0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) + lineToRelative(-0.72f, 0.72f) + horizontalLineToRelative(14.69f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + close() + } + } + return _textDirectionHorizontalRtl!! + } + +private var _textDirectionHorizontalRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionRotate270Right.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionRotate270Right.kt new file mode 100644 index 00000000..19424f00 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionRotate270Right.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextDirectionRotate270Right: ImageVector + get() { + if (_textDirectionRotate270Right != null) { + return _textDirectionRotate270Right!! + } + _textDirectionRotate270Right = fluentIcon(name = "Regular.TextDirectionRotate270Right") { + fluentPath { + moveTo(5.22f, 5.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineTo(7.0f, 5.56f) + verticalLineToRelative(3.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(8.5f, 5.56f) + lineToRelative(0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-2.0f, 2.0f) + close() + moveTo(12.97f, 20.95f) + lineTo(3.47f, 17.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.34f) + lineToRelative(0.1f, -0.05f) + lineToRelative(9.5f, -3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.65f, 1.35f) + lineToRelative(-0.1f, 0.05f) + lineToRelative(-2.52f, 1.0f) + verticalLineToRelative(4.1f) + lineToRelative(2.52f, 1.0f) + curveToRelative(0.35f, 0.14f, 0.54f, 0.52f, 0.45f, 0.88f) + lineToRelative(-0.03f, 0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.87f, 0.45f) + lineToRelative(-0.1f, -0.03f) + close() + moveTo(5.79f, 16.5f) + lineToRelative(3.71f, 1.46f) + verticalLineToRelative(-2.92f) + lineTo(5.8f, 16.5f) + close() + moveTo(14.72f, 6.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(2.0f, -2.0f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineTo(18.0f, 5.56f) + verticalLineToRelative(14.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(16.5f, 5.56f) + lineToRelative(-0.72f, 0.72f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + close() + } + } + return _textDirectionRotate270Right!! + } + +private var _textDirectionRotate270Right: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionRotate90Left.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionRotate90Left.kt new file mode 100644 index 00000000..18674cf9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionRotate90Left.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextDirectionRotate90Left: ImageVector + get() { + if (_textDirectionRotate90Left != null) { + return _textDirectionRotate90Left!! + } + _textDirectionRotate90Left = fluentIcon(name = "Regular.TextDirectionRotate90Left") { + fluentPath { + moveTo(6.75f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(6.0f, 5.56f) + lineToRelative(-0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(2.0f, -2.0f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineToRelative(-0.72f, -0.72f) + verticalLineToRelative(14.69f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + close() + moveTo(11.03f, 20.95f) + lineTo(20.53f, 17.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.34f) + lineToRelative(-0.1f, -0.05f) + lineToRelative(-9.5f, -3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 1.35f) + lineToRelative(0.1f, 0.05f) + lineToRelative(2.52f, 1.0f) + verticalLineToRelative(4.1f) + lineToRelative(-2.52f, 1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.45f, 0.88f) + lineToRelative(0.03f, 0.1f) + curveToRelative(0.14f, 0.35f, 0.51f, 0.54f, 0.87f, 0.45f) + lineToRelative(0.1f, -0.03f) + close() + moveTo(18.21f, 16.5f) + lineTo(14.5f, 17.96f) + verticalLineToRelative(-2.92f) + lineToRelative(3.7f, 1.46f) + close() + moveTo(15.5f, 11.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(17.0f, 5.56f) + lineToRelative(0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineToRelative(0.72f, -0.72f) + verticalLineToRelative(5.69f) + close() + } + } + return _textDirectionRotate90Left!! + } + +private var _textDirectionRotate90Left: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionRotate90Ltr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionRotate90Ltr.kt new file mode 100644 index 00000000..eed3255d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionRotate90Ltr.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextDirectionRotate90Ltr: ImageVector + get() { + if (_textDirectionRotate90Ltr != null) { + return _textDirectionRotate90Ltr!! + } + _textDirectionRotate90Ltr = fluentIcon(name = "Regular.TextDirectionRotate90Ltr") { + fluentPath { + moveTo(6.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(14.69f) + lineToRelative(-0.72f, -0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-0.72f, 0.72f) + lineTo(7.5f, 3.75f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 6.75f, 3.0f) + close() + moveTo(11.03f, 3.05f) + lineTo(20.53f, 6.81f) + curveToRelative(0.6f, 0.23f, 0.63f, 1.04f, 0.1f, 1.34f) + lineToRelative(-0.1f, 0.05f) + lineToRelative(-9.5f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -1.35f) + lineToRelative(0.1f, -0.05f) + lineToRelative(2.52f, -1.0f) + verticalLineToRelative(-4.1f) + lineToRelative(-2.52f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.45f, -0.88f) + lineToRelative(0.03f, -0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.87f, -0.45f) + lineToRelative(0.1f, 0.03f) + close() + moveTo(18.21f, 7.5f) + lineTo(14.5f, 6.04f) + verticalLineToRelative(2.92f) + lineToRelative(3.7f, -1.46f) + close() + moveTo(15.5f, 12.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(5.69f) + lineToRelative(0.72f, -0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-2.0f, 2.0f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(0.72f, 0.72f) + verticalLineToRelative(-5.69f) + close() + } + } + return _textDirectionRotate90Ltr!! + } + +private var _textDirectionRotate90Ltr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionRotate90Right.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionRotate90Right.kt new file mode 100644 index 00000000..c550e65c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionRotate90Right.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextDirectionRotate90Right: ImageVector + get() { + if (_textDirectionRotate90Right != null) { + return _textDirectionRotate90Right!! + } + _textDirectionRotate90Right = fluentIcon(name = "Regular.TextDirectionRotate90Right") { + fluentPath { + moveTo(6.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(14.69f) + lineToRelative(-0.72f, -0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-0.72f, 0.72f) + lineTo(7.5f, 3.75f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 6.75f, 3.0f) + close() + moveTo(11.03f, 3.05f) + lineTo(20.53f, 6.81f) + curveToRelative(0.6f, 0.23f, 0.63f, 1.04f, 0.1f, 1.34f) + lineToRelative(-0.1f, 0.05f) + lineToRelative(-9.5f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.65f, -1.35f) + lineToRelative(0.1f, -0.05f) + lineToRelative(2.52f, -1.0f) + verticalLineToRelative(-4.1f) + lineToRelative(-2.52f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.45f, -0.88f) + lineToRelative(0.03f, -0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.87f, -0.45f) + lineToRelative(0.1f, 0.03f) + close() + moveTo(18.21f, 7.5f) + lineTo(14.5f, 6.04f) + verticalLineToRelative(2.92f) + lineToRelative(3.7f, -1.46f) + close() + moveTo(15.5f, 12.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(5.69f) + lineToRelative(0.72f, -0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-2.0f, 2.0f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(0.72f, 0.72f) + verticalLineToRelative(-5.69f) + close() + } + } + return _textDirectionRotate90Right!! + } + +private var _textDirectionRotate90Right: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionRotate90Rtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionRotate90Rtl.kt new file mode 100644 index 00000000..2a3f72e0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionRotate90Rtl.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextDirectionRotate90Rtl: ImageVector + get() { + if (_textDirectionRotate90Rtl != null) { + return _textDirectionRotate90Rtl!! + } + _textDirectionRotate90Rtl = fluentIcon(name = "Regular.TextDirectionRotate90Rtl") { + fluentPath { + moveTo(6.75f, 21.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(6.0f, 5.56f) + lineToRelative(-0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(2.0f, -2.0f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineToRelative(-0.72f, -0.72f) + verticalLineToRelative(14.69f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + close() + moveTo(11.03f, 20.95f) + lineTo(20.53f, 17.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.34f) + lineToRelative(-0.1f, -0.05f) + lineToRelative(-9.5f, -3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.65f, 1.35f) + lineToRelative(0.1f, 0.05f) + lineToRelative(2.52f, 1.0f) + verticalLineToRelative(4.1f) + lineToRelative(-2.52f, 1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.45f, 0.88f) + lineToRelative(0.03f, 0.1f) + curveToRelative(0.14f, 0.35f, 0.51f, 0.54f, 0.87f, 0.45f) + lineToRelative(0.1f, -0.03f) + close() + moveTo(18.21f, 16.5f) + lineTo(14.5f, 17.96f) + verticalLineToRelative(-2.92f) + lineToRelative(3.7f, 1.46f) + close() + moveTo(15.5f, 11.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(17.0f, 5.56f) + lineToRelative(0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineToRelative(0.72f, -0.72f) + verticalLineToRelative(5.69f) + close() + } + } + return _textDirectionRotate90Rtl!! + } + +private var _textDirectionRotate90Rtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionVertical.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionVertical.kt new file mode 100644 index 00000000..9ba9d4ea --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextDirectionVertical.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextDirectionVertical: ImageVector + get() { + if (_textDirectionVertical != null) { + return _textDirectionVertical!! + } + _textDirectionVertical = fluentIcon(name = "Regular.TextDirectionVertical") { + fluentPath { + moveTo(6.0f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(14.69f) + lineToRelative(0.72f, -0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.06f) + lineToRelative(-2.0f, 2.0f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(0.72f, 0.72f) + lineTo(6.0f, 3.75f) + close() + moveTo(11.55f, 12.97f) + lineTo(15.31f, 3.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.1f) + lineToRelative(0.05f, 0.1f) + lineToRelative(3.75f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.65f) + lineToRelative(-0.05f, -0.1f) + lineToRelative(-1.0f, -2.52f) + horizontalLineToRelative(-4.1f) + lineToRelative(-1.0f, 2.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.88f, 0.45f) + lineToRelative(-0.1f, -0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.45f, -0.87f) + lineToRelative(0.03f, -0.1f) + close() + moveTo(16.0f, 5.79f) + lineTo(14.54f, 9.5f) + horizontalLineToRelative(2.92f) + lineTo(16.0f, 5.8f) + close() + moveTo(16.25f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.69f) + lineToRelative(-0.72f, -0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-0.72f, 0.72f) + verticalLineToRelative(-3.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + } + } + return _textDirectionVertical!! + } + +private var _textDirectionVertical: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextEditStyle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextEditStyle.kt new file mode 100644 index 00000000..f3b2a49d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextEditStyle.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextEditStyle: ImageVector + get() { + if (_textEditStyle != null) { + return _textEditStyle!! + } + _textEditStyle = fluentIcon(name = "Regular.TextEditStyle") { + fluentPath { + moveTo(20.06f, 8.45f) + arcToRelative(3.22f, 3.22f, 0.0f, false, true, 0.0f, 4.55f) + lineToRelative(-7.12f, 7.1f) + curveToRelative(-0.26f, 0.27f, -0.59f, 0.46f, -0.94f, 0.57f) + lineToRelative(-4.3f, 1.29f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.24f, -1.27f) + lineToRelative(1.36f, -4.22f) + curveToRelative(0.11f, -0.34f, 0.3f, -0.65f, 0.56f, -0.9f) + lineToRelative(7.13f, -7.13f) + arcToRelative(3.22f, 3.22f, 0.0f, false, true, 4.55f, 0.0f) + close() + moveTo(16.56f, 9.5f) + lineTo(9.44f, 16.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.19f, 0.3f) + lineToRelative(-1.07f, 3.32f) + lineToRelative(3.38f, -1.02f) + curveToRelative(0.12f, -0.03f, 0.23f, -0.1f, 0.32f, -0.18f) + lineTo(19.0f, 11.94f) + arcToRelative(1.72f, 1.72f, 0.0f, true, false, -2.43f, -2.44f) + close() + moveTo(8.16f, 2.37f) + lineTo(8.2f, 2.47f) + lineTo(11.45f, 10.72f) + lineTo(10.3f, 11.88f) + lineTo(9.56f, 10.0f) + lineTo(5.44f, 10.0f) + lineToRelative(-1.0f, 2.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.87f, 0.45f) + lineToRelative(-0.1f, -0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.45f, -0.87f) + lineToRelative(0.03f, -0.1f) + lineToRelative(3.76f, -9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.1f) + close() + moveTo(7.5f, 4.79f) + lineTo(6.04f, 8.5f) + horizontalLineToRelative(2.92f) + lineTo(7.5f, 4.8f) + close() + } + } + return _textEditStyle!! + } + +private var _textEditStyle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextEffects.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextEffects.kt new file mode 100644 index 00000000..cf274f43 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextEffects.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextEffects: ImageVector + get() { + if (_textEffects != null) { + return _textEffects!! + } + _textEffects = fluentIcon(name = "Regular.TextEffects") { + fluentPath { + moveTo(14.3f, 4.02f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -4.6f, 0.0f) + lineToRelative(-4.26f, 9.94f) + lineToRelative(-0.05f, 0.1f) + lineToRelative(-1.69f, 3.96f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 4.6f, 1.96f) + lineToRelative(1.06f, -2.48f) + horizontalLineToRelative(5.28f) + lineToRelative(1.06f, 2.48f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 4.6f, -1.96f) + lineToRelative(-1.7f, -3.95f) + arcToRelative(2.51f, 2.51f, 0.0f, false, false, -0.04f, -0.1f) + lineTo(14.3f, 4.01f) + close() + moveTo(12.5f, 12.5f) + lineTo(12.0f, 11.35f) + lineTo(11.5f, 12.5f) + horizontalLineToRelative(1.0f) + close() + moveTo(12.92f, 4.6f) + lineTo(17.2f, 14.59f) + lineTo(17.21f, 14.63f) + lineTo(18.92f, 18.61f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.84f, 0.78f) + lineTo(15.63f, 16.0f) + lineTo(8.37f, 16.0f) + lineToRelative(-1.45f, 3.4f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.84f, -0.8f) + lineToRelative(1.7f, -3.97f) + lineToRelative(0.02f, -0.04f) + lineToRelative(4.28f, -9.98f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.84f, 0.0f) + close() + moveTo(14.77f, 14.0f) + lineTo(9.23f, 14.0f) + lineTo(12.0f, 7.54f) + lineTo(14.77f, 14.0f) + close() + } + } + return _textEffects!! + } + +private var _textEffects: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextExpand.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextExpand.kt new file mode 100644 index 00000000..815d68e4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextExpand.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextExpand: ImageVector + get() { + if (_textExpand != null) { + return _textExpand!! + } + _textExpand = fluentIcon(name = "Regular.TextExpand") { + fluentPath { + moveTo(6.75f, 19.5f) + horizontalLineToRelative(14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + lineTo(6.75f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(6.75f, 4.5f) + horizontalLineToRelative(14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + lineTo(6.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(13.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-7.5f) + close() + moveTo(13.0f, 13.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(11.0f, 11.5f) + arcToRelative(4.5f, 4.5f, 0.0f, true, true, -9.0f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 9.0f, 0.0f) + close() + moveTo(7.0f, 9.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + lineTo(6.0f, 11.0f) + lineTo(4.5f, 11.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 1.0f) + lineTo(6.0f, 12.0f) + verticalLineToRelative(1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + lineTo(7.0f, 12.0f) + horizontalLineToRelative(1.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + lineTo(7.0f, 11.0f) + lineTo(7.0f, 9.5f) + close() + } + } + return _textExpand!! + } + +private var _textExpand: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextField.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextField.kt new file mode 100644 index 00000000..30a6a603 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextField.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextField: ImageVector + get() { + if (_textField != null) { + return _textField!! + } + _textField = fluentIcon(name = "Regular.TextField") { + fluentPath { + moveTo(15.5f, 7.5f) + horizontalLineToRelative(-2.75f) + verticalLineToRelative(9.0f) + horizontalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(0.5f) + verticalLineToRelative(-9.0f) + horizontalLineTo(8.5f) + verticalLineToRelative(0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(8.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineTo(7.5f) + close() + moveTo(5.75f, 3.0f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 2.0f, 6.75f) + verticalLineToRelative(10.5f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 5.75f, 21.0f) + horizontalLineToRelative(12.5f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 22.0f, 17.25f) + verticalLineTo(6.75f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 18.25f, 3.0f) + horizontalLineTo(5.75f) + close() + moveTo(3.5f, 6.75f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(12.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineTo(5.75f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineTo(6.75f) + close() + } + } + return _textField!! + } + +private var _textField: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextFirstLine.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextFirstLine.kt new file mode 100644 index 00000000..6af57a0c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextFirstLine.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextFirstLine: ImageVector + get() { + if (_textFirstLine != null) { + return _textFirstLine!! + } + _textFirstLine = fluentIcon(name = "Regular.TextFirstLine") { + fluentPath { + moveTo(3.78f, 3.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(1.47f, 1.47f) + lineToRelative(-1.47f, 1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineToRelative(2.0f, -2.0f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-2.0f, -2.0f) + close() + moveTo(9.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(9.75f, 5.0f) + close() + moveTo(2.75f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(2.75f, 18.0f) + close() + moveTo(2.0f, 12.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(2.75f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _textFirstLine!! + } + +private var _textFirstLine: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextFont.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextFont.kt new file mode 100644 index 00000000..4126cc78 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextFont.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextFont: ImageVector + get() { + if (_textFont != null) { + return _textFont!! + } + _textFont = fluentIcon(name = "Regular.TextFont") { + fluentPath { + moveTo(7.0f, 2.0f) + curveToRelative(0.31f, 0.0f, 0.6f, 0.2f, 0.7f, 0.49f) + lineToRelative(2.96f, 7.98f) + verticalLineToRelative(0.04f) + lineToRelative(0.23f, 0.6f) + lineToRelative(-0.83f, 2.09f) + lineToRelative(-0.62f, -1.7f) + lineTo(4.56f, 11.5f) + lineToRelative(-1.1f, 3.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.42f, -0.52f) + lineToRelative(1.3f, -3.48f) + verticalLineToRelative(-0.04f) + lineTo(6.3f, 2.5f) + curveToRelative(0.1f, -0.3f, 0.39f, -0.49f, 0.7f, -0.49f) + close() + moveTo(5.12f, 10.0f) + horizontalLineToRelative(3.76f) + lineTo(7.0f, 4.91f) + lineToRelative(-1.88f, 5.1f) + close() + moveTo(13.81f, 6.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.4f, 0.0f) + lineToRelative(5.55f, 14.03f) + horizontalLineToRelative(0.49f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(0.4f) + lineToRelative(-1.2f, -3.0f) + horizontalLineToRelative(-6.9f) + lineToRelative(-1.2f, 3.0f) + horizontalLineToRelative(0.4f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(0.49f) + lineTo(13.8f, 6.47f) + close() + moveTo(17.36f, 16.0f) + lineTo(14.5f, 8.79f) + lineTo(11.64f, 16.0f) + horizontalLineToRelative(5.72f) + close() + } + } + return _textFont!! + } + +private var _textFont: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextFontInfo.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextFontInfo.kt new file mode 100644 index 00000000..b4dbb782 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextFontInfo.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextFontInfo: ImageVector + get() { + if (_textFontInfo != null) { + return _textFontInfo!! + } + _textFontInfo = fluentIcon(name = "Regular.TextFontInfo") { + fluentPath { + moveTo(9.51f, 2.0f) + curveToRelative(0.31f, 0.0f, 0.6f, 0.2f, 0.7f, 0.5f) + lineToRelative(3.18f, 8.97f) + curveToRelative(-0.44f, 0.35f, -0.83f, 0.76f, -1.16f, 1.22f) + lineTo(9.47f, 4.91f) + lineTo(6.34f, 13.0f) + horizontalLineToRelative(5.68f) + curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) + lineTo(5.75f, 14.5f) + lineTo(4.2f, 18.52f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.4f, -0.54f) + lineToRelative(6.0f, -15.5f) + curveToRelative(0.11f, -0.3f, 0.4f, -0.48f, 0.71f, -0.48f) + close() + moveTo(17.0f, 16.0f) + verticalLineToRelative(3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + verticalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + close() + moveTo(18.25f, 13.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(23.0f, 16.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(22.0f, 16.5f) + arcToRelative(4.5f, 4.5f, 0.0f, true, false, -9.0f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, 9.0f, 0.0f) + close() + } + } + return _textFontInfo!! + } + +private var _textFontInfo: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextFontSize.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextFontSize.kt new file mode 100644 index 00000000..50e4832f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextFontSize.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextFontSize: ImageVector + get() { + if (_textFontSize != null) { + return _textFontSize!! + } + _textFontSize = fluentIcon(name = "Regular.TextFontSize") { + fluentPath { + moveTo(10.21f, 17.11f) + lineTo(15.04f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.37f, -0.11f) + lineToRelative(0.05f, 0.1f) + lineTo(21.96f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.38f, 0.6f) + lineToRelative(-0.04f, -0.1f) + lineToRelative(-1.6f, -4.5f) + horizontalLineToRelative(-6.39f) + lineToRelative(-1.58f, 4.45f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.35f, 0.45f) + lineToRelative(-0.1f, 0.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.92f, -0.33f) + lineToRelative(-0.05f, -0.1f) + lineToRelative(-1.0f, -2.52f) + horizontalLineToRelative(-4.1f) + lineToRelative(-1.0f, 2.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.88f, 0.45f) + lineToRelative(-0.1f, -0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.45f, -0.87f) + lineToRelative(0.03f, -0.1f) + lineToRelative(3.76f, -9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.1f) + lineToRelative(0.05f, 0.1f) + lineToRelative(3.01f, 7.64f) + lineTo(15.04f, 3.5f) + lineTo(10.21f, 17.1f) + close() + moveTo(6.51f, 11.79f) + lineTo(5.03f, 15.5f) + horizontalLineToRelative(2.92f) + lineTo(6.5f, 11.8f) + close() + moveTo(15.74f, 6.0f) + lineToRelative(-2.67f, 7.51f) + horizontalLineToRelative(5.33f) + lineTo(15.75f, 6.0f) + close() + } + } + return _textFontSize!! + } + +private var _textFontSize: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextFootnote.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextFootnote.kt new file mode 100644 index 00000000..5c9cbe43 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextFootnote.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextFootnote: ImageVector + get() { + if (_textFootnote != null) { + return _textFootnote!! + } + _textFootnote = fluentIcon(name = "Regular.TextFootnote") { + fluentPath { + moveTo(20.5f, 7.26f) + curveToRelative(-0.2f, 0.18f, -0.4f, 0.34f, -0.6f, 0.48f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.84f, -1.25f) + arcToRelative(3.55f, 3.55f, 0.0f, false, false, 1.46f, -1.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.48f, 0.16f) + verticalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(20.5f, 7.26f) + close() + moveTo(12.22f, 17.76f) + arcToRelative(0.87f, 0.87f, 0.0f, false, true, -0.22f, -0.61f) + lineTo(12.0f, 7.9f) + curveToRelative(0.0f, -0.25f, 0.07f, -0.47f, 0.24f, -0.64f) + arcToRelative(0.84f, 0.84f, 0.0f, false, true, 0.63f, -0.27f) + curveToRelative(0.24f, 0.0f, 0.46f, 0.09f, 0.62f, 0.26f) + curveToRelative(0.17f, 0.18f, 0.25f, 0.4f, 0.25f, 0.65f) + verticalLineToRelative(2.84f) + curveToRelative(0.18f, -0.2f, 0.39f, -0.36f, 0.62f, -0.5f) + curveToRelative(0.46f, -0.26f, 0.97f, -0.39f, 1.52f, -0.39f) + curveToRelative(1.0f, 0.0f, 1.83f, 0.38f, 2.46f, 1.14f) + curveToRelative(0.61f, 0.75f, 0.91f, 1.73f, 0.91f, 2.93f) + curveToRelative(0.0f, 1.2f, -0.3f, 2.19f, -0.91f, 2.94f) + arcTo(3.06f, 3.06f, 0.0f, false, true, 15.86f, 18.0f) + arcToRelative(2.86f, 2.86f, 0.0f, false, true, -2.19f, -0.9f) + verticalLineToRelative(0.05f) + arcToRelative(0.84f, 0.84f, 0.0f, false, true, -0.84f, 0.85f) + arcToRelative(0.8f, 0.8f, 0.0f, false, true, -0.6f, -0.24f) + close() + moveTo(16.97f, 15.78f) + curveToRelative(0.34f, -0.44f, 0.52f, -1.04f, 0.52f, -1.85f) + curveToRelative(0.0f, -0.8f, -0.18f, -1.4f, -0.52f, -1.84f) + arcToRelative(1.6f, 1.6f, 0.0f, false, false, -1.35f, -0.64f) + curveToRelative(-0.55f, 0.0f, -1.0f, 0.21f, -1.35f, 0.66f) + arcToRelative(2.84f, 2.84f, 0.0f, false, false, -0.54f, 1.82f) + curveToRelative(0.0f, 0.78f, 0.19f, 1.38f, 0.54f, 1.83f) + curveToRelative(0.36f, 0.44f, 0.8f, 0.65f, 1.35f, 0.65f) + arcToRelative(1.6f, 1.6f, 0.0f, false, false, 1.35f, -0.63f) + close() + moveTo(2.0f, 17.18f) + curveToRelative(0.0f, 0.24f, 0.1f, 0.44f, 0.27f, 0.6f) + curveToRelative(0.19f, 0.15f, 0.4f, 0.22f, 0.65f, 0.22f) + curveToRelative(0.2f, 0.0f, 0.39f, -0.05f, 0.55f, -0.17f) + curveToRelative(0.15f, -0.12f, 0.26f, -0.3f, 0.33f, -0.49f) + lineToRelative(0.88f, -2.39f) + horizontalLineToRelative(3.88f) + lineToRelative(0.89f, 2.4f) + curveToRelative(0.07f, 0.19f, 0.18f, 0.36f, 0.33f, 0.48f) + arcToRelative(0.9f, 0.9f, 0.0f, false, false, 0.55f, 0.17f) + curveToRelative(0.24f, 0.0f, 0.46f, -0.07f, 0.64f, -0.22f) + arcToRelative(0.76f, 0.76f, 0.0f, false, false, 0.28f, -0.6f) + curveToRelative(0.0f, -0.13f, -0.04f, -0.28f, -0.1f, -0.44f) + lineTo(7.71f, 7.77f) + curveToRelative(-0.1f, -0.23f, -0.23f, -0.43f, -0.41f, -0.57f) + curveToRelative(-0.2f, -0.14f, -0.42f, -0.2f, -0.66f, -0.2f) + curveToRelative(-0.25f, 0.0f, -0.49f, 0.06f, -0.68f, 0.2f) + curveToRelative(-0.2f, 0.14f, -0.33f, 0.34f, -0.43f, 0.58f) + lineTo(2.1f, 16.74f) + curveToRelative(-0.06f, 0.16f, -0.1f, 0.3f, -0.1f, 0.45f) + close() + moveTo(6.63f, 9.58f) + lineTo(8.0f, 13.36f) + lineTo(5.25f, 13.36f) + lineToRelative(1.38f, -3.78f) + close() + } + } + return _textFootnote!! + } + +private var _textFootnote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextGrammarArrowLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextGrammarArrowLeft.kt new file mode 100644 index 00000000..5b379783 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextGrammarArrowLeft.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextGrammarArrowLeft: ImageVector + get() { + if (_textGrammarArrowLeft != null) { + return _textGrammarArrowLeft!! + } + _textGrammarArrowLeft = fluentIcon(name = "Regular.TextGrammarArrowLeft") { + fluentPath { + moveTo(6.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 0.0f, -11.0f) + close() + moveTo(7.28f, 14.59f) + lineTo(7.35f, 14.65f) + lineTo(9.87f, 17.16f) + lineTo(9.91f, 17.21f) + lineTo(9.95f, 17.29f) + lineTo(9.97f, 17.35f) + lineTo(9.99f, 17.43f) + verticalLineToRelative(0.11f) + lineToRelative(-0.01f, 0.09f) + lineToRelative(-0.03f, 0.08f) + lineToRelative(-0.03f, 0.06f) + lineToRelative(-0.05f, 0.07f) + lineToRelative(-2.52f, 2.51f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.76f, -0.63f) + lineToRelative(0.05f, -0.07f) + lineTo(8.3f, 18.0f) + lineTo(3.5f, 18.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.41f) + verticalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.41f, -0.5f) + horizontalLineToRelative(4.88f) + lineToRelative(-1.65f, -1.65f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.05f, -0.63f) + lineToRelative(0.05f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.64f, -0.06f) + close() + moveTo(12.98f, 17.0f) + horizontalLineToRelative(8.37f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, 1.5f) + horizontalLineToRelative(-8.33f) + arcToRelative(6.55f, 6.55f, 0.0f, false, false, 0.06f, -1.5f) + close() + moveTo(12.27f, 14.5f) + horizontalLineToRelative(8.98f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + lineTo(11.2f, 13.0f) + curveToRelative(0.43f, 0.44f, 0.8f, 0.95f, 1.08f, 1.5f) + close() + moveTo(2.75f, 9.0f) + horizontalLineToRelative(18.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, 1.5f) + lineTo(2.65f, 10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, -1.5f) + close() + moveTo(2.75f, 5.0f) + horizontalLineToRelative(18.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, 1.5f) + lineTo(2.65f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, -1.5f) + close() + } + } + return _textGrammarArrowLeft!! + } + +private var _textGrammarArrowLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextGrammarArrowRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextGrammarArrowRight.kt new file mode 100644 index 00000000..293afc4d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextGrammarArrowRight.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextGrammarArrowRight: ImageVector + get() { + if (_textGrammarArrowRight != null) { + return _textGrammarArrowRight!! + } + _textGrammarArrowRight = fluentIcon(name = "Regular.TextGrammarArrowRight") { + fluentPath { + moveTo(21.25f, 5.0f) + lineTo(2.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 1.5f) + horizontalLineToRelative(18.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(2.75f, 9.0f) + horizontalLineToRelative(18.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, 1.5f) + lineTo(2.65f, 10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, -1.5f) + close() + moveTo(21.25f, 14.5f) + horizontalLineToRelative(-8.98f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.08f, -1.5f) + horizontalLineToRelative(10.16f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, 1.5f) + close() + moveTo(21.25f, 17.0f) + horizontalLineToRelative(-8.27f) + arcToRelative(6.62f, 6.62f, 0.0f, false, true, -0.06f, 1.5f) + horizontalLineToRelative(8.33f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, -1.5f) + horizontalLineToRelative(-0.1f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(5.65f, 20.35f) + lineTo(5.72f, 20.41f) + curveToRelative(0.2f, 0.14f, 0.46f, 0.12f, 0.64f, -0.06f) + lineToRelative(0.05f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.05f, -0.63f) + lineTo(4.7f, 18.0f) + lineTo(9.6f, 18.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.41f, -0.5f) + verticalLineToRelative(-0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.41f) + lineTo(4.71f, 17.0f) + lineToRelative(1.65f, -1.65f) + lineToRelative(0.05f, -0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.76f, -0.63f) + lineToRelative(-2.52f, 2.51f) + lineToRelative(-0.05f, 0.07f) + lineToRelative(-0.03f, 0.06f) + lineToRelative(-0.03f, 0.08f) + lineToRelative(-0.01f, 0.09f) + verticalLineToRelative(0.1f) + lineToRelative(0.02f, 0.1f) + lineToRelative(0.02f, 0.05f) + lineToRelative(0.04f, 0.08f) + lineToRelative(0.04f, 0.05f) + lineToRelative(2.52f, 2.51f) + close() + } + } + return _textGrammarArrowRight!! + } + +private var _textGrammarArrowRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextGrammarCheckmark.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextGrammarCheckmark.kt new file mode 100644 index 00000000..bfd119a7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextGrammarCheckmark.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextGrammarCheckmark: ImageVector + get() { + if (_textGrammarCheckmark != null) { + return _textGrammarCheckmark!! + } + _textGrammarCheckmark = fluentIcon(name = "Regular.TextGrammarCheckmark") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(20.15f, 15.15f) + lineTo(16.05f, 19.24f) + lineTo(14.9f, 17.7f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.8f, 0.6f) + lineToRelative(1.5f, 2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.75f, 0.05f) + lineToRelative(4.5f, -4.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + close() + moveTo(11.02f, 17.0f) + lineTo(2.65f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(8.33f) + arcToRelative(6.55f, 6.55f, 0.0f, false, true, -0.06f, -1.5f) + close() + moveTo(11.73f, 14.5f) + lineTo(2.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(12.8f, 13.0f) + curveToRelative(-0.43f, 0.44f, -0.8f, 0.95f, -1.08f, 1.5f) + close() + moveTo(21.25f, 9.0f) + lineTo(2.65f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(18.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(21.25f, 5.0f) + lineTo(2.65f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(18.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + } + } + return _textGrammarCheckmark!! + } + +private var _textGrammarCheckmark: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextGrammarDismiss.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextGrammarDismiss.kt new file mode 100644 index 00000000..9d613f97 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextGrammarDismiss.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextGrammarDismiss: ImageVector + get() { + if (_textGrammarDismiss != null) { + return _textGrammarDismiss!! + } + _textGrammarDismiss = fluentIcon(name = "Regular.TextGrammarDismiss") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(15.02f, 15.02f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.71f) + lineToRelative(1.77f, 1.77f) + lineToRelative(-1.76f, 1.77f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, 0.7f) + lineToRelative(1.77f, -1.76f) + lineToRelative(1.77f, 1.77f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.7f, -0.71f) + lineToRelative(-1.76f, -1.77f) + lineToRelative(1.77f, -1.77f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-1.78f, 1.76f) + lineToRelative(-1.77f, -1.77f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.7f, 0.0f) + close() + moveTo(11.02f, 17.0f) + lineTo(2.65f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(8.33f) + arcToRelative(6.55f, 6.55f, 0.0f, false, true, -0.06f, -1.5f) + close() + moveTo(11.73f, 14.5f) + lineTo(2.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(12.8f, 13.0f) + curveToRelative(-0.43f, 0.44f, -0.8f, 0.95f, -1.08f, 1.5f) + close() + moveTo(21.25f, 9.0f) + lineTo(2.65f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(18.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(21.25f, 5.0f) + lineTo(2.65f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(18.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + } + } + return _textGrammarDismiss!! + } + +private var _textGrammarDismiss: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextGrammarSettings.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextGrammarSettings.kt new file mode 100644 index 00000000..660d85ab --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextGrammarSettings.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextGrammarSettings: ImageVector + get() { + if (_textGrammarSettings != null) { + return _textGrammarSettings!! + } + _textGrammarSettings = fluentIcon(name = "Regular.TextGrammarSettings") { + fluentPath { + moveTo(11.02f, 17.0f) + lineTo(2.65f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(8.33f) + arcToRelative(6.55f, 6.55f, 0.0f, false, true, -0.06f, -1.5f) + close() + moveTo(2.75f, 13.0f) + horizontalLineToRelative(10.06f) + curveToRelative(-0.43f, 0.44f, -0.8f, 0.95f, -1.08f, 1.5f) + lineTo(2.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(21.25f, 9.0f) + lineTo(2.65f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(18.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(21.25f, 5.0f) + lineTo(2.65f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(18.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(14.28f, 13.98f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.44f, 2.5f) + lineToRelative(-0.59f, 0.14f) + arcToRelative(5.73f, 5.73f, 0.0f, false, false, 0.0f, 1.8f) + lineToRelative(0.55f, 0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.45f, 2.51f) + lineToRelative(-0.19f, 0.63f) + curveToRelative(0.44f, 0.39f, 0.94f, 0.7f, 1.49f, 0.93f) + lineToRelative(0.49f, -0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 2.9f, 0.0f) + lineToRelative(0.5f, 0.52f) + arcToRelative(5.28f, 5.28f, 0.0f, false, false, 1.48f, -0.91f) + lineToRelative(-0.2f, -0.69f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 1.44f, -2.5f) + lineToRelative(0.59f, -0.14f) + arcToRelative(5.72f, 5.72f, 0.0f, false, false, 0.0f, -1.8f) + lineToRelative(-0.55f, -0.13f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -1.45f, -2.51f) + lineToRelative(0.19f, -0.63f) + curveToRelative(-0.44f, -0.4f, -0.94f, -0.7f, -1.49f, -0.93f) + lineToRelative(-0.49f, 0.52f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.9f, 0.0f) + lineToRelative(-0.5f, -0.52f) + curveToRelative(-0.54f, 0.22f, -1.04f, 0.53f, -1.48f, 0.9f) + lineToRelative(0.2f, 0.7f) + close() + moveTo(17.5f, 19.0f) + curveToRelative(-0.8f, 0.0f, -1.45f, -0.67f, -1.45f, -1.5f) + reflectiveCurveTo(16.7f, 16.0f, 17.5f, 16.0f) + curveToRelative(0.8f, 0.0f, 1.45f, 0.67f, 1.45f, 1.5f) + reflectiveCurveTo(18.3f, 19.0f, 17.5f, 19.0f) + close() + } + } + return _textGrammarSettings!! + } + +private var _textGrammarSettings: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextGrammarWand.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextGrammarWand.kt new file mode 100644 index 00000000..79824d71 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextGrammarWand.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextGrammarWand: ImageVector + get() { + if (_textGrammarWand != null) { + return _textGrammarWand!! + } + _textGrammarWand = fluentIcon(name = "Regular.TextGrammarWand") { + fluentPath { + moveTo(2.75f, 17.0f) + horizontalLineToRelative(7.78f) + lineToRelative(-1.5f, 1.5f) + lineTo(2.75f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(2.75f, 14.5f) + horizontalLineToRelative(7.56f) + arcToRelative(1.74f, 1.74f, 0.0f, false, true, -0.24f, -1.5f) + lineTo(2.65f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + close() + moveTo(12.72f, 16.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-4.5f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(4.5f, -4.5f) + close() + moveTo(2.75f, 9.0f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(2.75f, 10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(2.75f, 5.0f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(2.75f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(16.5f, 8.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.66f) + lineToRelative(0.14f, 1.13f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 2.83f, 2.83f) + lineToRelative(1.13f, 0.14f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.48f) + lineToRelative(-1.13f, 0.14f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -2.83f, 2.83f) + lineToRelative(-0.14f, 1.13f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.48f, 0.0f) + lineToRelative(-0.14f, -1.13f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -2.83f, -2.83f) + lineToRelative(-1.13f, -0.14f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.48f) + lineToRelative(1.13f, -0.14f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 2.83f, -2.83f) + lineToRelative(0.14f, -1.13f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 16.5f, 8.0f) + close() + moveTo(16.5f, 11.77f) + arcToRelative(4.76f, 4.76f, 0.0f, false, true, -1.73f, 1.73f) + arcToRelative(4.76f, 4.76f, 0.0f, false, true, 1.73f, 1.73f) + arcToRelative(4.76f, 4.76f, 0.0f, false, true, 1.73f, -1.73f) + arcToRelative(4.76f, 4.76f, 0.0f, false, true, -1.73f, -1.73f) + close() + } + } + return _textGrammarWand!! + } + +private var _textGrammarWand: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextHanging.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextHanging.kt new file mode 100644 index 00000000..6e49d14b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextHanging.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextHanging: ImageVector + get() { + if (_textHanging != null) { + return _textHanging!! + } + _textHanging = fluentIcon(name = "Regular.TextHanging") { + fluentPath { + moveTo(21.25f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(2.75f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(18.5f) + close() + moveTo(14.25f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(2.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(11.5f) + close() + moveTo(15.0f, 12.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(2.75f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(11.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + close() + moveTo(20.22f, 12.97f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-1.47f, 1.47f) + lineToRelative(1.47f, 1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(2.0f, -2.0f) + close() + } + } + return _textHanging!! + } + +private var _textHanging: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextHeader1.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextHeader1.kt new file mode 100644 index 00000000..41f17fea --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextHeader1.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextHeader1: ImageVector + get() { + if (_textHeader1 != null) { + return _textHeader1!! + } + _textHeader1 = fluentIcon(name = "Regular.TextHeader1") { + fluentPath { + moveTo(19.59f, 5.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.8f, 0.08f) + curveToRelative(-0.13f, 0.1f, -0.21f, 0.23f, -0.26f, 0.37f) + arcToRelative(7.63f, 7.63f, 0.0f, false, true, -3.17f, 4.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.78f, 1.28f) + arcToRelative(8.66f, 8.66f, 0.0f, false, false, 2.36f, -2.14f) + verticalLineToRelative(9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineTo(5.77f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.41f, -0.69f) + close() + moveTo(3.5f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineTo(12.5f) + horizontalLineTo(10.0f) + verticalLineToRelative(5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineTo(5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineTo(11.0f) + horizontalLineTo(3.5f) + verticalLineTo(5.75f) + close() + } + } + return _textHeader1!! + } + +private var _textHeader1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextHeader2.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextHeader2.kt new file mode 100644 index 00000000..1383dfa3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextHeader2.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextHeader2: ImageVector + get() { + if (_textHeader2 != null) { + return _textHeader2!! + } + _textHeader2 = fluentIcon(name = "Regular.TextHeader2") { + fluentPath { + moveTo(4.5f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(4.5f, 12.5f) + lineTo(11.0f, 12.5f) + verticalLineToRelative(5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(12.5f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + lineTo(11.0f, 11.0f) + lineTo(4.5f, 11.0f) + lineTo(4.5f, 5.75f) + close() + moveTo(15.42f, 7.84f) + curveToRelative(0.23f, -0.46f, 0.91f, -1.34f, 2.58f, -1.34f) + curveToRelative(0.84f, 0.0f, 1.46f, 0.26f, 1.86f, 0.64f) + curveToRelative(0.4f, 0.37f, 0.64f, 0.92f, 0.64f, 1.61f) + curveToRelative(0.0f, 1.96f, -1.3f, 3.07f, -2.96f, 4.34f) + lineToRelative(-0.2f, 0.17f) + curveTo(15.81f, 14.4f, 14.0f, 15.8f, 14.0f, 18.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, 0.75f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-5.66f) + curveToRelative(0.32f, -1.25f, 1.43f, -2.11f, 2.87f, -3.22f) + curveTo(20.05f, 13.06f, 22.0f, 11.54f, 22.0f, 8.75f) + curveToRelative(0.0f, -1.06f, -0.38f, -2.01f, -1.11f, -2.7f) + arcTo(4.12f, 4.12f, 0.0f, false, false, 18.0f, 5.0f) + curveToRelative(-2.33f, 0.0f, -3.48f, 1.3f, -3.92f, 2.16f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.34f, 0.68f) + close() + } + } + return _textHeader2!! + } + +private var _textHeader2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextHeader3.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextHeader3.kt new file mode 100644 index 00000000..f74519a2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextHeader3.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextHeader3: ImageVector + get() { + if (_textHeader3 != null) { + return _textHeader3!! + } + _textHeader3 = fluentIcon(name = "Regular.TextHeader3") { + fluentPath { + moveTo(3.5f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(3.5f, 12.5f) + lineTo(10.0f, 12.5f) + verticalLineToRelative(5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(11.5f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + lineTo(10.0f, 11.0f) + lineTo(3.5f, 11.0f) + lineTo(3.5f, 5.75f) + close() + moveTo(15.42f, 7.84f) + curveToRelative(0.23f, -0.46f, 0.91f, -1.34f, 2.58f, -1.34f) + curveToRelative(0.84f, 0.0f, 1.46f, 0.26f, 1.86f, 0.64f) + curveToRelative(0.4f, 0.37f, 0.64f, 0.92f, 0.64f, 1.61f) + curveToRelative(0.0f, 0.6f, -0.16f, 1.03f, -0.38f, 1.33f) + curveToRelative(-0.23f, 0.32f, -0.56f, 0.56f, -0.96f, 0.74f) + curveToRelative(-0.81f, 0.37f, -1.8f, 0.43f, -2.38f, 0.43f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + curveToRelative(0.58f, 0.0f, 1.57f, 0.06f, 2.38f, 0.43f) + curveToRelative(0.4f, 0.18f, 0.73f, 0.42f, 0.96f, 0.74f) + curveToRelative(0.22f, 0.3f, 0.38f, 0.72f, 0.38f, 1.33f) + curveToRelative(0.0f, 1.09f, -0.91f, 2.25f, -2.5f, 2.25f) + curveToRelative(-1.73f, 0.0f, -2.35f, -0.76f, -2.55f, -1.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.4f, 0.56f) + curveTo(14.51f, 17.93f, 15.73f, 19.0f, 18.0f, 19.0f) + curveToRelative(2.41f, 0.0f, 4.0f, -1.84f, 4.0f, -3.75f) + curveToRelative(0.0f, -0.9f, -0.25f, -1.63f, -0.67f, -2.21f) + arcTo(3.68f, 3.68f, 0.0f, false, false, 20.14f, 12.0f) + curveToRelative(0.44f, -0.25f, 0.86f, -0.58f, 1.19f, -1.04f) + curveToRelative(0.42f, -0.58f, 0.67f, -1.32f, 0.67f, -2.21f) + curveToRelative(0.0f, -1.06f, -0.38f, -2.01f, -1.11f, -2.7f) + arcTo(4.12f, 4.12f, 0.0f, false, false, 18.0f, 5.0f) + curveToRelative(-2.33f, 0.0f, -3.48f, 1.3f, -3.92f, 2.16f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.34f, 0.68f) + close() + } + } + return _textHeader3!! + } + +private var _textHeader3: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentDecreaseLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentDecreaseLtr.kt new file mode 100644 index 00000000..c1eb16ce --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentDecreaseLtr.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextIndentDecreaseLtr: ImageVector + get() { + if (_textIndentDecreaseLtr != null) { + return _textIndentDecreaseLtr!! + } + _textIndentDecreaseLtr = fluentIcon(name = "Regular.TextIndentDecreaseLtr") { + fluentPath { + moveTo(17.75f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(9.0f) + close() + moveTo(2.72f, 11.22f) + lineToRelative(2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-1.47f, 1.47f) + lineToRelative(1.47f, 1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(2.0f, -2.0f) + lineToRelative(-2.0f, 2.0f) + close() + moveTo(20.75f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(12.0f) + close() + moveTo(17.75f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(9.0f) + close() + } + } + return _textIndentDecreaseLtr!! + } + +private var _textIndentDecreaseLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentDecreaseLtr90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentDecreaseLtr90.kt new file mode 100644 index 00000000..8e35c50a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentDecreaseLtr90.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextIndentDecreaseLtr90: ImageVector + get() { + if (_textIndentDecreaseLtr90 != null) { + return _textIndentDecreaseLtr90!! + } + _textIndentDecreaseLtr90 = fluentIcon(name = "Regular.TextIndentDecreaseLtr90") { + fluentPath { + moveTo(8.0f, 17.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(9.0f) + close() + moveTo(12.78f, 2.72f) + lineTo(14.78f, 4.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-1.47f, -1.47f) + lineToRelative(-1.47f, 1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + close() + moveTo(13.0f, 20.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(12.0f) + close() + moveTo(18.0f, 17.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(9.0f) + close() + } + } + return _textIndentDecreaseLtr90!! + } + +private var _textIndentDecreaseLtr90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentDecreaseLtrRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentDecreaseLtrRotate270.kt new file mode 100644 index 00000000..022f37cf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentDecreaseLtrRotate270.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextIndentDecreaseLtrRotate270: ImageVector + get() { + if (_textIndentDecreaseLtrRotate270 != null) { + return _textIndentDecreaseLtrRotate270!! + } + _textIndentDecreaseLtrRotate270 = fluentIcon(name = + "Regular.TextIndentDecreaseLtrRotate270") { + fluentPath { + moveTo(16.0f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-9.0f) + close() + moveTo(11.22f, 21.28f) + lineTo(9.22f, 19.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) + lineToRelative(0.08f, 0.07f) + lineToRelative(1.47f, 1.47f) + lineToRelative(1.47f, -1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + close() + moveTo(11.0f, 3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-12.0f) + close() + moveTo(6.0f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-9.0f) + close() + } + } + return _textIndentDecreaseLtrRotate270!! + } + +private var _textIndentDecreaseLtrRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentDecreaseRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentDecreaseRotate270.kt new file mode 100644 index 00000000..8416bc2d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentDecreaseRotate270.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextIndentDecreaseRotate270: ImageVector + get() { + if (_textIndentDecreaseRotate270 != null) { + return _textIndentDecreaseRotate270!! + } + _textIndentDecreaseRotate270 = fluentIcon(name = "Regular.TextIndentDecreaseRotate270") { + fluentPath { + moveTo(16.0f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-9.0f) + close() + moveTo(11.22f, 21.28f) + lineTo(9.22f, 19.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) + lineToRelative(0.08f, 0.07f) + lineToRelative(1.47f, 1.47f) + lineToRelative(1.47f, -1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.13f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + close() + moveTo(11.0f, 3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-12.0f) + close() + moveTo(6.0f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-9.0f) + close() + } + } + return _textIndentDecreaseRotate270!! + } + +private var _textIndentDecreaseRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentDecreaseRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentDecreaseRotate90.kt new file mode 100644 index 00000000..5553d5ac --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentDecreaseRotate90.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextIndentDecreaseRotate90: ImageVector + get() { + if (_textIndentDecreaseRotate90 != null) { + return _textIndentDecreaseRotate90!! + } + _textIndentDecreaseRotate90 = fluentIcon(name = "Regular.TextIndentDecreaseRotate90") { + fluentPath { + moveTo(8.0f, 17.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(9.0f) + close() + moveTo(12.78f, 2.72f) + lineTo(14.78f, 4.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-1.47f, -1.47f) + lineToRelative(-1.47f, 1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + close() + moveTo(13.0f, 20.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(12.0f) + close() + moveTo(18.0f, 17.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(9.0f) + close() + } + } + return _textIndentDecreaseRotate90!! + } + +private var _textIndentDecreaseRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentDecreaseRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentDecreaseRtl.kt new file mode 100644 index 00000000..354794af --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentDecreaseRtl.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextIndentDecreaseRtl: ImageVector + get() { + if (_textIndentDecreaseRtl != null) { + return _textIndentDecreaseRtl!! + } + _textIndentDecreaseRtl = fluentIcon(name = "Regular.TextIndentDecreaseRtl") { + fluentPath { + moveTo(5.5f, 16.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(2.5f, 11.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(5.5f, 6.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(19.2f, 9.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 1.13f) + lineToRelative(1.47f, 1.47f) + lineToRelative(-1.47f, 1.47f) + lineToRelative(-0.07f, 0.08f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, 0.98f) + lineToRelative(2.0f, -2.0f) + lineToRelative(0.07f, -0.08f) + curveToRelative(0.22f, -0.3f, 0.2f, -0.71f, -0.07f, -0.98f) + lineToRelative(-2.0f, -2.0f) + lineToRelative(-0.08f, -0.07f) + close() + } + } + return _textIndentDecreaseRtl!! + } + +private var _textIndentDecreaseRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentDecreaseRtl90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentDecreaseRtl90.kt new file mode 100644 index 00000000..f935bbcb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentDecreaseRtl90.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextIndentDecreaseRtl90: ImageVector + get() { + if (_textIndentDecreaseRtl90 != null) { + return _textIndentDecreaseRtl90!! + } + _textIndentDecreaseRtl90 = fluentIcon(name = "Regular.TextIndentDecreaseRtl90") { + fluentPath { + moveTo(7.25f, 5.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-9.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(12.25f, 2.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-12.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(17.25f, 5.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-9.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(14.85f, 19.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.13f, -0.98f) + lineToRelative(-1.47f, 1.47f) + lineToRelative(-1.47f, -1.47f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 1.13f) + lineToRelative(2.0f, 2.0f) + lineToRelative(0.08f, 0.07f) + curveToRelative(0.3f, 0.22f, 0.71f, 0.2f, 0.98f, -0.07f) + lineToRelative(2.0f, -2.0f) + lineToRelative(0.07f, -0.08f) + close() + } + } + return _textIndentDecreaseRtl90!! + } + +private var _textIndentDecreaseRtl90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentDecreaseRtlRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentDecreaseRtlRotate270.kt new file mode 100644 index 00000000..84dcdcd6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentDecreaseRtlRotate270.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextIndentDecreaseRtlRotate270: ImageVector + get() { + if (_textIndentDecreaseRtlRotate270 != null) { + return _textIndentDecreaseRtlRotate270!! + } + _textIndentDecreaseRtlRotate270 = fluentIcon(name = + "Regular.TextIndentDecreaseRtlRotate270") { + fluentPath { + moveTo(16.75f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + close() + moveTo(11.75f, 21.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(12.0f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + close() + moveTo(6.75f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + close() + moveTo(9.15f, 4.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, 0.98f) + lineToRelative(1.47f, -1.47f) + lineToRelative(1.47f, 1.47f) + lineToRelative(0.08f, 0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, -1.13f) + lineToRelative(-2.0f, -2.0f) + lineToRelative(-0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, 0.07f) + lineToRelative(-2.0f, 2.0f) + lineToRelative(-0.07f, 0.08f) + close() + } + } + return _textIndentDecreaseRtlRotate270!! + } + +private var _textIndentDecreaseRtlRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentIncreaseLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentIncreaseLtr.kt new file mode 100644 index 00000000..1be24d75 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentIncreaseLtr.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextIndentIncreaseLtr: ImageVector + get() { + if (_textIndentIncreaseLtr != null) { + return _textIndentIncreaseLtr!! + } + _textIndentIncreaseLtr = fluentIcon(name = "Regular.TextIndentIncreaseLtr") { + fluentPath { + moveTo(17.75f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(9.0f) + close() + moveTo(2.72f, 9.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.13f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(1.47f, -1.47f) + lineToRelative(-1.47f, -1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + moveTo(20.75f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(12.0f) + close() + moveTo(17.75f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(9.0f) + close() + } + } + return _textIndentIncreaseLtr!! + } + +private var _textIndentIncreaseLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentIncreaseLtr90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentIncreaseLtr90.kt new file mode 100644 index 00000000..6050cb90 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentIncreaseLtr90.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextIndentIncreaseLtr90: ImageVector + get() { + if (_textIndentIncreaseLtr90 != null) { + return _textIndentIncreaseLtr90!! + } + _textIndentIncreaseLtr90 = fluentIcon(name = "Regular.TextIndentIncreaseLtr90") { + fluentPath { + moveTo(8.0f, 17.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(9.0f) + close() + moveTo(14.78f, 2.72f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) + lineToRelative(0.08f, 0.07f) + lineToRelative(1.47f, 1.47f) + lineToRelative(1.47f, -1.47f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(13.0f, 20.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(12.0f) + close() + moveTo(18.0f, 17.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(9.0f) + close() + } + } + return _textIndentIncreaseLtr90!! + } + +private var _textIndentIncreaseLtr90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentIncreaseLtrRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentIncreaseLtrRotate270.kt new file mode 100644 index 00000000..809ace82 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentIncreaseLtrRotate270.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextIndentIncreaseLtrRotate270: ImageVector + get() { + if (_textIndentIncreaseLtrRotate270 != null) { + return _textIndentIncreaseLtrRotate270!! + } + _textIndentIncreaseLtrRotate270 = fluentIcon(name = + "Regular.TextIndentIncreaseLtrRotate270") { + fluentPath { + moveTo(16.0f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-9.0f) + close() + moveTo(9.22f, 21.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + lineToRelative(2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-1.47f, -1.47f) + lineToRelative(-1.47f, 1.47f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + close() + moveTo(11.0f, 3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-12.0f) + close() + moveTo(6.0f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-9.0f) + close() + } + } + return _textIndentIncreaseLtrRotate270!! + } + +private var _textIndentIncreaseLtrRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentIncreaseRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentIncreaseRotate270.kt new file mode 100644 index 00000000..62e57d6e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentIncreaseRotate270.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextIndentIncreaseRotate270: ImageVector + get() { + if (_textIndentIncreaseRotate270 != null) { + return _textIndentIncreaseRotate270!! + } + _textIndentIncreaseRotate270 = fluentIcon(name = "Regular.TextIndentIncreaseRotate270") { + fluentPath { + moveTo(16.0f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-9.0f) + close() + moveTo(9.22f, 21.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.07f, -0.98f) + lineToRelative(0.07f, -0.08f) + lineToRelative(2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -0.07f) + lineToRelative(0.08f, 0.07f) + lineToRelative(2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-1.47f, -1.47f) + lineToRelative(-1.47f, 1.47f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + close() + moveTo(11.0f, 3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-12.0f) + close() + moveTo(6.0f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-9.0f) + close() + } + } + return _textIndentIncreaseRotate270!! + } + +private var _textIndentIncreaseRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentIncreaseRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentIncreaseRotate90.kt new file mode 100644 index 00000000..d3b31d8f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentIncreaseRotate90.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextIndentIncreaseRotate90: ImageVector + get() { + if (_textIndentIncreaseRotate90 != null) { + return _textIndentIncreaseRotate90!! + } + _textIndentIncreaseRotate90 = fluentIcon(name = "Regular.TextIndentIncreaseRotate90") { + fluentPath { + moveTo(8.0f, 17.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(9.0f) + close() + moveTo(14.78f, 2.72f) + curveToRelative(0.27f, 0.27f, 0.3f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 0.07f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) + lineToRelative(0.08f, 0.07f) + lineToRelative(1.47f, 1.47f) + lineToRelative(1.47f, -1.47f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(13.0f, 20.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(12.0f) + close() + moveTo(18.0f, 17.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(9.0f) + close() + } + } + return _textIndentIncreaseRotate90!! + } + +private var _textIndentIncreaseRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentIncreaseRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentIncreaseRtl.kt new file mode 100644 index 00000000..74206d13 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentIncreaseRtl.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextIndentIncreaseRtl: ImageVector + get() { + if (_textIndentIncreaseRtl != null) { + return _textIndentIncreaseRtl!! + } + _textIndentIncreaseRtl = fluentIcon(name = "Regular.TextIndentIncreaseRtl") { + fluentPath { + moveTo(6.25f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-9.0f) + close() + moveTo(21.28f, 9.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, -0.07f) + lineToRelative(-0.08f, 0.07f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.98f) + lineToRelative(0.07f, 0.08f) + lineToRelative(2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, -0.98f) + lineToRelative(-0.07f, -0.08f) + lineToRelative(-1.47f, -1.47f) + lineToRelative(1.47f, -1.47f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + close() + moveTo(3.25f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-12.0f) + close() + moveTo(6.25f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-9.0f) + close() + } + } + return _textIndentIncreaseRtl!! + } + +private var _textIndentIncreaseRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentIncreaseRtl90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentIncreaseRtl90.kt new file mode 100644 index 00000000..14644600 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentIncreaseRtl90.kt @@ -0,0 +1,53 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextIndentIncreaseRtl90: ImageVector + get() { + if (_textIndentIncreaseRtl90 != null) { + return _textIndentIncreaseRtl90!! + } + _textIndentIncreaseRtl90 = fluentIcon(name = "Regular.TextIndentIncreaseRtl90") { + fluentPath { + moveTo(8.0f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-9.0f) + close() + moveTo(14.78f, 21.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.07f, -0.98f) + lineToRelative(-0.07f, -0.08f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, -0.07f) + lineToRelative(-0.08f, 0.07f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, 1.13f) + lineToRelative(0.08f, -0.07f) + lineToRelative(1.47f, -1.47f) + lineToRelative(1.47f, 1.47f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + close() + moveTo(13.0f, 3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-12.0f) + close() + moveTo(18.0f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-9.0f) + close() + } + } + return _textIndentIncreaseRtl90!! + } + +private var _textIndentIncreaseRtl90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentIncreaseRtlRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentIncreaseRtlRotate270.kt new file mode 100644 index 00000000..549f34af --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextIndentIncreaseRtlRotate270.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextIndentIncreaseRtlRotate270: ImageVector + get() { + if (_textIndentIncreaseRtlRotate270 != null) { + return _textIndentIncreaseRtlRotate270!! + } + _textIndentIncreaseRtlRotate270 = fluentIcon(name = + "Regular.TextIndentIncreaseRtlRotate270") { + fluentPath { + moveTo(16.0f, 17.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(9.0f) + close() + moveTo(9.22f, 2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.98f) + lineToRelative(0.07f, 0.08f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.27f, 0.27f, 0.68f, 0.3f, 0.98f, 0.07f) + lineToRelative(0.08f, -0.07f) + lineToRelative(2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, -1.13f) + lineToRelative(-0.08f, 0.07f) + lineToRelative(-1.47f, 1.47f) + lineToRelative(-1.47f, -1.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + close() + moveTo(11.0f, 20.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(12.0f) + close() + moveTo(6.0f, 17.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(9.0f) + close() + } + } + return _textIndentIncreaseRtlRotate270!! + } + +private var _textIndentIncreaseRtlRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextItalic.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextItalic.kt new file mode 100644 index 00000000..891598cf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextItalic.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextItalic: ImageVector + get() { + if (_textItalic != null) { + return _textItalic!! + } + _textItalic = fluentIcon(name = "Regular.TextItalic") { + fluentPath { + moveTo(9.75f, 4.0f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineTo(15.06f) + lineToRelative(-5.01f, 13.0f) + horizontalLineToRelative(4.21f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 0.38f, -0.27f, 0.7f, -0.64f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(3.68f) + lineToRelative(0.03f, -0.07f) + lineTo(13.45f, 5.5f) + horizontalLineToRelative(-3.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + verticalLineToRelative(-0.1f) + curveToRelative(0.0f, -0.38f, 0.27f, -0.7f, 0.64f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(8.5f) + horizontalLineToRelative(-8.5f) + close() + } + } + return _textItalic!! + } + +private var _textItalic: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextLineSpacing.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextLineSpacing.kt new file mode 100644 index 00000000..e6d2348a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextLineSpacing.kt @@ -0,0 +1,66 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextLineSpacing: ImageVector + get() { + if (_textLineSpacing != null) { + return _textLineSpacing!! + } + _textLineSpacing = fluentIcon(name = "Regular.TextLineSpacing") { + fluentPath { + moveToRelative(19.53f, 3.22f) + lineToRelative(2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineToRelative(-0.72f, -0.72f) + verticalLineToRelative(4.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(18.25f, 5.56f) + lineToRelative(-0.72f, 0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 0.0f) + close() + moveTo(2.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-8.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 2.0f, 5.75f) + close() + moveTo(2.0f, 12.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(2.75f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(2.75f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-8.5f) + close() + moveTo(18.25f, 18.44f) + verticalLineToRelative(-4.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(4.69f) + lineToRelative(0.72f, -0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 0.0f) + lineToRelative(-2.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(0.72f, 0.72f) + close() + } + } + return _textLineSpacing!! + } + +private var _textLineSpacing: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextMore.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextMore.kt new file mode 100644 index 00000000..ff7a36f1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextMore.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextMore: ImageVector + get() { + if (_textMore != null) { + return _textMore!! + } + _textMore = fluentIcon(name = "Regular.TextMore") { + fluentPath { + moveTo(9.75f, 2.0f) + curveToRelative(0.3f, 0.0f, 0.57f, 0.18f, 0.7f, 0.46f) + lineToRelative(6.96f, 16.43f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.0f, -0.89f) + lineToRelative(-1.49f, -3.5f) + lineTo(5.58f, 14.5f) + lineToRelative(-2.14f, 5.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.38f, -0.58f) + lineToRelative(7.0f, -16.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 9.75f, 2.0f) + close() + moveTo(13.28f, 13.0f) + lineTo(9.75f, 4.67f) + lineTo(6.22f, 13.0f) + horizontalLineToRelative(7.06f) + close() + moveTo(12.0f, 20.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + moveTo(15.5f, 22.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + close() + moveTo(20.5f, 22.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + close() + } + } + return _textMore!! + } + +private var _textMore: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextNumberFormat.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextNumberFormat.kt new file mode 100644 index 00000000..a4418522 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextNumberFormat.kt @@ -0,0 +1,160 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextNumberFormat: ImageVector + get() { + if (_textNumberFormat != null) { + return _textNumberFormat!! + } + _textNumberFormat = fluentIcon(name = "Regular.TextNumberFormat") { + fluentPath { + moveTo(9.76f, 3.0f) + horizontalLineToRelative(-0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(2.63f) + curveToRelative(0.28f, 0.0f, 0.9f, -0.04f, 1.46f, -0.34f) + arcTo(2.15f, 2.15f, 0.0f, false, false, 15.0f, 8.63f) + curveToRelative(0.0f, -0.52f, -0.11f, -0.97f, -0.34f, -1.33f) + curveToRelative(-0.13f, -0.22f, -0.3f, -0.4f, -0.47f, -0.54f) + curveToRelative(0.24f, -0.35f, 0.39f, -0.81f, 0.39f, -1.38f) + curveToRelative(0.0f, -0.5f, -0.1f, -0.94f, -0.3f, -1.3f) + curveToRelative(-0.2f, -0.37f, -0.47f, -0.62f, -0.76f, -0.78f) + curveToRelative(-0.54f, -0.3f, -1.12f, -0.3f, -1.34f, -0.3f) + lineTo(9.76f, 3.0f) + close() + moveTo(12.38f, 9.5f) + lineTo(10.5f, 9.5f) + lineTo(10.5f, 7.75f) + lineTo(12.37f, 7.75f) + curveToRelative(0.25f, 0.0f, 0.55f, 0.01f, 0.79f, 0.13f) + curveToRelative(0.1f, 0.04f, 0.17f, 0.1f, 0.22f, 0.2f) + curveToRelative(0.06f, 0.09f, 0.12f, 0.25f, 0.12f, 0.55f) + curveToRelative(0.0f, 0.24f, -0.06f, 0.39f, -0.11f, 0.48f) + arcToRelative(0.65f, 0.65f, 0.0f, false, true, -0.26f, 0.22f) + curveToRelative(-0.25f, 0.14f, -0.57f, 0.17f, -0.75f, 0.17f) + close() + moveTo(10.5f, 6.25f) + lineTo(10.5f, 4.5f) + horizontalLineToRelative(1.66f) + curveToRelative(0.22f, 0.0f, 0.45f, 0.01f, 0.62f, 0.1f) + curveToRelative(0.07f, 0.05f, 0.13f, 0.1f, 0.18f, 0.2f) + curveToRelative(0.06f, 0.09f, 0.12f, 0.26f, 0.12f, 0.58f) + curveToRelative(0.0f, 0.26f, -0.06f, 0.42f, -0.11f, 0.51f) + arcToRelative(0.56f, 0.56f, 0.0f, false, true, -0.2f, 0.21f) + curveToRelative(-0.2f, 0.12f, -0.45f, 0.15f, -0.6f, 0.15f) + lineTo(10.5f, 6.25f) + close() + moveTo(5.28f, 3.0f) + curveToRelative(0.31f, 0.0f, 0.59f, 0.2f, 0.7f, 0.5f) + lineToRelative(2.3f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.41f, 0.5f) + lineToRelative(-0.34f, -0.95f) + horizontalLineToRelative(-2.7f) + lineToRelative(-0.38f, 0.97f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.4f, -0.54f) + lineToRelative(2.52f, -6.5f) + curveToRelative(0.11f, -0.3f, 0.4f, -0.48f, 0.7f, -0.48f) + close() + moveTo(5.24f, 5.9f) + lineTo(4.4f, 8.06f) + lineTo(6.0f, 8.06f) + lineTo(5.24f, 5.9f) + close() + moveTo(20.53f, 3.27f) + curveToRelative(0.61f, 0.3f, 1.1f, 0.87f, 1.43f, 1.79f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.42f, 0.5f) + curveToRelative(-0.23f, -0.64f, -0.5f, -0.85f, -0.67f, -0.94f) + curveToRelative(-0.22f, -0.1f, -0.47f, -0.12f, -0.87f, -0.12f) + curveToRelative(-0.38f, 0.0f, -0.62f, 0.12f, -0.8f, 0.28f) + curveToRelative(-0.2f, 0.17f, -0.35f, 0.43f, -0.47f, 0.73f) + arcToRelative(3.88f, 3.88f, 0.0f, false, false, -0.23f, 1.23f) + verticalLineToRelative(0.01f) + curveToRelative(0.0f, 0.53f, 0.0f, 1.2f, 0.23f, 1.76f) + curveToRelative(0.1f, 0.27f, 0.25f, 0.49f, 0.45f, 0.65f) + curveToRelative(0.19f, 0.16f, 0.47f, 0.3f, 0.9f, 0.34f) + curveToRelative(0.35f, 0.04f, 1.13f, -0.02f, 1.49f, -0.8f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.36f, 0.62f) + curveToRelative(-0.77f, 1.7f, -2.46f, 1.74f, -3.01f, 1.68f) + arcToRelative(3.15f, 3.15f, 0.0f, false, true, -1.7f, -0.68f) + arcToRelative(3.04f, 3.04f, 0.0f, false, true, -0.89f, -1.26f) + arcTo(6.28f, 6.28f, 0.0f, false, true, 16.0f, 6.78f) + lineTo(16.0f, 6.7f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 0.04f, -0.51f) + curveToRelative(0.04f, -0.32f, 0.12f, -0.76f, 0.29f, -1.2f) + curveToRelative(0.17f, -0.45f, 0.43f, -0.94f, 0.87f, -1.33f) + curveToRelative(0.45f, -0.4f, 1.05f, -0.66f, 1.8f, -0.66f) + horizontalLineToRelative(0.04f) + curveToRelative(0.36f, 0.0f, 0.93f, 0.0f, 1.49f, 0.27f) + close() + moveTo(16.97f, 15.14f) + curveToRelative(0.03f, -0.11f, 0.11f, -0.27f, 0.25f, -0.4f) + curveToRelative(0.13f, -0.11f, 0.36f, -0.24f, 0.78f, -0.24f) + curveToRelative(0.76f, 0.0f, 1.0f, 0.5f, 1.0f, 0.73f) + curveToRelative(0.0f, 0.24f, -0.05f, 0.49f, -0.19f, 0.66f) + curveToRelative(-0.11f, 0.14f, -0.38f, 0.36f, -1.1f, 0.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + curveToRelative(0.27f, 0.0f, 0.65f, 0.04f, 0.93f, 0.17f) + curveToRelative(0.13f, 0.06f, 0.22f, 0.13f, 0.27f, 0.2f) + curveToRelative(0.04f, 0.06f, 0.09f, 0.17f, 0.09f, 0.36f) + curveToRelative(0.0f, 0.48f, -0.15f, 0.7f, -0.28f, 0.8f) + curveToRelative(-0.15f, 0.14f, -0.4f, 0.22f, -0.72f, 0.22f) + curveToRelative(-0.36f, 0.0f, -0.57f, -0.06f, -0.7f, -0.14f) + curveToRelative(-0.1f, -0.07f, -0.23f, -0.2f, -0.34f, -0.53f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.42f, 0.47f) + curveToRelative(0.18f, 0.57f, 0.5f, 1.03f, 0.97f, 1.33f) + curveToRelative(0.45f, 0.28f, 0.98f, 0.37f, 1.49f, 0.37f) + arcToRelative(2.6f, 2.6f, 0.0f, false, false, 1.69f, -0.56f) + curveToRelative(0.52f, -0.45f, 0.81f, -1.12f, 0.81f, -1.96f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.63f, -1.52f) + lineToRelative(0.11f, -0.14f) + curveToRelative(0.44f, -0.55f, 0.52f, -1.19f, 0.52f, -1.6f) + curveToRelative(0.0f, -1.07f, -0.93f, -2.22f, -2.5f, -2.22f) + arcToRelative(2.6f, 2.6f, 0.0f, false, false, -1.77f, 0.62f) + curveToRelative(-0.4f, 0.35f, -0.6f, 0.78f, -0.7f, 1.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.44f, 0.42f) + close() + moveTo(10.5f, 15.52f) + curveToRelative(0.0f, -0.53f, 0.44f, -1.02f, 0.99f, -1.02f) + curveToRelative(0.4f, 0.0f, 0.73f, 0.2f, 0.89f, 0.43f) + curveToRelative(0.14f, 0.21f, 0.22f, 0.57f, -0.1f, 1.1f) + arcToRelative(2.7f, 2.7f, 0.0f, false, true, -0.68f, 0.72f) + lineToRelative(-0.49f, 0.37f) + lineToRelative(-0.07f, 0.05f) + lineToRelative(-0.48f, 0.34f) + curveTo(9.82f, 18.07f, 9.0f, 18.85f, 9.0f, 20.25f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.45f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(10.7f, 19.5f) + curveToRelative(0.16f, -0.28f, 0.42f, -0.52f, 0.78f, -0.8f) + lineToRelative(0.43f, -0.3f) + lineToRelative(0.08f, -0.06f) + curveToRelative(0.18f, -0.13f, 0.37f, -0.26f, 0.55f, -0.41f) + curveToRelative(0.38f, -0.3f, 0.76f, -0.66f, 1.05f, -1.14f) + curveToRelative(0.56f, -0.95f, 0.55f, -1.92f, 0.06f, -2.67f) + arcTo(2.53f, 2.53f, 0.0f, false, false, 9.0f, 15.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + close() + moveTo(4.92f, 16.74f) + curveToRelative(0.2f, -0.14f, 0.41f, -0.3f, 0.6f, -0.48f) + verticalLineToRelative(3.99f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.48f, -0.16f) + curveToRelative(-0.13f, 0.58f, -0.7f, 1.39f, -1.46f, 1.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.84f, 1.25f) + close() + } + } + return _textNumberFormat!! + } + +private var _textNumberFormat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextNumberListLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextNumberListLtr.kt new file mode 100644 index 00000000..728f5404 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextNumberListLtr.kt @@ -0,0 +1,107 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextNumberListLtr: ImageVector + get() { + if (_textNumberListLtr != null) { + return _textNumberListLtr!! + } + _textNumberListLtr = fluentIcon(name = "Regular.TextNumberListLtr") { + fluentPath { + moveTo(6.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.43f, -0.3f) + arcToRelative(1.42f, 1.42f, 0.0f, false, true, -0.07f, 0.13f) + curveToRelative(-0.05f, 0.1f, -0.13f, 0.23f, -0.24f, 0.38f) + curveToRelative(-0.22f, 0.32f, -0.52f, 0.66f, -0.9f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.79f, 1.28f) + lineToRelative(0.35f, -0.25f) + verticalLineToRelative(2.36f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) + verticalLineToRelative(-4.5f) + close() + moveTo(20.5f, 18.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(9.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + close() + moveTo(20.5f, 12.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.76f) + horizontalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(9.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) + close() + moveTo(20.5f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(9.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + close() + moveTo(5.15f, 10.52f) + curveToRelative(-0.3f, -0.05f, -0.68f, 0.07f, -0.87f, 0.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + arcToRelative(2.57f, 2.57f, 0.0f, false, true, 2.2f, -0.68f) + curveToRelative(0.39f, 0.07f, 0.8f, 0.26f, 1.1f, 0.6f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 7.0f, 11.0f) + curveToRelative(0.0f, 0.62f, -0.27f, 1.08f, -0.6f, 1.42f) + curveToRelative(-0.28f, 0.28f, -0.64f, 0.51f, -0.91f, 0.69f) + lineToRelative(-0.08f, 0.05f) + curveToRelative(-0.2f, 0.13f, -0.36f, 0.24f, -0.48f, 0.34f) + horizontalLineToRelative(1.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + curveToRelative(0.0f, -1.31f, 0.98f, -1.95f, 1.58f, -2.34f) + lineToRelative(0.06f, -0.04f) + curveToRelative(0.31f, -0.2f, 0.53f, -0.34f, 0.68f, -0.5f) + curveToRelative(0.14f, -0.14f, 0.18f, -0.24f, 0.18f, -0.37f) + curveToRelative(0.0f, -0.22f, -0.06f, -0.32f, -0.1f, -0.36f) + arcToRelative(0.42f, 0.42f, 0.0f, false, false, -0.25f, -0.12f) + close() + moveTo(2.97f, 21.28f) + reflectiveCurveToRelative(0.1f, 0.08f, 0.0f, 0.0f) + lineToRelative(0.01f, 0.01f) + lineToRelative(0.01f, 0.01f) + arcToRelative(1.4f, 1.4f, 0.0f, false, false, 0.15f, 0.13f) + arcTo(3.24f, 3.24f, 0.0f, false, false, 5.0f, 22.0f) + curveToRelative(0.64f, 0.0f, 1.2f, -0.18f, 1.6f, -0.54f) + curveToRelative(0.4f, -0.36f, 0.61f, -0.86f, 0.6f, -1.36f) + curveToRelative(-0.02f, -0.42f, -0.17f, -0.8f, -0.43f, -1.1f) + arcToRelative(1.73f, 1.73f, 0.0f, false, false, -0.17f, -2.46f) + curveTo(6.2f, 16.18f, 5.64f, 16.0f, 5.0f, 16.0f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, -1.86f, 0.57f) + arcToRelative(1.95f, 1.95f, 0.0f, false, false, -0.15f, 0.13f) + lineToRelative(-0.01f, 0.01f) + lineToRelative(-0.01f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.07f, 1.05f) + lineToRelative(0.17f, -0.1f) + curveToRelative(0.16f, -0.08f, 0.42f, -0.17f, 0.79f, -0.17f) + curveToRelative(0.36f, 0.0f, 0.54f, 0.1f, 0.6f, 0.16f) + curveToRelative(0.08f, 0.07f, 0.1f, 0.13f, 0.1f, 0.2f) + curveToRelative(0.0f, 0.06f, -0.04f, 0.14f, -0.13f, 0.22f) + curveToRelative(-0.09f, 0.08f, -0.26f, 0.17f, -0.57f, 0.17f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + curveToRelative(0.31f, 0.0f, 0.48f, 0.1f, 0.57f, 0.17f) + curveToRelative(0.1f, 0.08f, 0.12f, 0.16f, 0.13f, 0.23f) + curveToRelative(0.0f, 0.06f, -0.02f, 0.13f, -0.1f, 0.19f) + curveToRelative(-0.06f, 0.06f, -0.24f, 0.16f, -0.6f, 0.16f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.96f, -0.27f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.07f, 1.05f) + close() + moveTo(2.97f, 16.72f) + close() + } + } + return _textNumberListLtr!! + } + +private var _textNumberListLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextNumberListLtr90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextNumberListLtr90.kt new file mode 100644 index 00000000..0dc2ee39 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextNumberListLtr90.kt @@ -0,0 +1,108 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextNumberListLtr90: ImageVector + get() { + if (_textNumberListLtr90 != null) { + return _textNumberListLtr90!! + } + _textNumberListLtr90 = fluentIcon(name = "Regular.TextNumberListLtr90") { + fluentPath { + moveTo(21.25f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.3f, -1.43f) + arcToRelative(1.47f, 1.47f, 0.0f, false, true, -0.13f, -0.07f) + curveToRelative(-0.1f, -0.05f, -0.23f, -0.13f, -0.38f, -0.24f) + arcToRelative(3.26f, 3.26f, 0.0f, false, true, -0.9f, -0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.28f, 0.79f) + lineToRelative(0.25f, 0.35f) + horizontalLineToRelative(-2.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.5f) + close() + moveTo(5.25f, 20.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + close() + moveTo(11.75f, 20.5f) + curveToRelative(0.42f, 0.0f, 0.76f, -0.34f, 0.76f, -0.75f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 0.41f, 0.33f, 0.75f, 0.75f, 0.75f) + close() + moveTo(18.25f, 20.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + close() + moveTo(13.48f, 5.15f) + curveToRelative(0.05f, -0.3f, -0.07f, -0.68f, -0.26f, -0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + curveToRelative(0.56f, 0.56f, 0.81f, 1.43f, 0.68f, 2.2f) + curveToRelative(-0.07f, 0.39f, -0.26f, 0.8f, -0.6f, 1.1f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 13.0f, 7.0f) + curveToRelative(-0.62f, 0.0f, -1.08f, -0.27f, -1.42f, -0.6f) + curveToRelative(-0.28f, -0.28f, -0.51f, -0.64f, -0.69f, -0.91f) + lineToRelative(-0.05f, -0.08f) + curveToRelative(-0.13f, -0.2f, -0.24f, -0.36f, -0.34f, -0.48f) + verticalLineToRelative(1.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + curveToRelative(1.31f, 0.0f, 1.95f, 0.98f, 2.34f, 1.58f) + lineToRelative(0.04f, 0.06f) + curveToRelative(0.2f, 0.31f, 0.34f, 0.53f, 0.5f, 0.68f) + curveToRelative(0.14f, 0.14f, 0.24f, 0.18f, 0.37f, 0.18f) + curveToRelative(0.22f, 0.0f, 0.32f, -0.06f, 0.36f, -0.1f) + curveToRelative(0.05f, -0.04f, 0.1f, -0.12f, 0.12f, -0.25f) + close() + moveTo(2.72f, 2.97f) + reflectiveCurveToRelative(-0.08f, 0.1f, 0.0f, 0.0f) + lineToRelative(-0.01f, 0.01f) + lineToRelative(-0.01f, 0.01f) + arcToRelative(1.46f, 1.46f, 0.0f, false, false, -0.13f, 0.15f) + arcTo(3.24f, 3.24f, 0.0f, false, false, 2.0f, 5.0f) + curveToRelative(0.0f, 0.64f, 0.18f, 1.2f, 0.54f, 1.6f) + curveToRelative(0.36f, 0.4f, 0.86f, 0.61f, 1.36f, 0.6f) + curveToRelative(0.42f, -0.02f, 0.8f, -0.17f, 1.1f, -0.43f) + arcToRelative(1.73f, 1.73f, 0.0f, false, false, 2.46f, -0.17f) + curveTo(7.82f, 6.2f, 8.0f, 5.64f, 8.0f, 5.0f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, -0.57f, -1.86f) + arcTo(1.96f, 1.96f, 0.0f, false, false, 7.3f, 3.0f) + lineToRelative(-0.01f, -0.01f) + lineToRelative(-0.01f, -0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.05f, 1.07f) + lineToRelative(0.1f, 0.17f) + curveToRelative(0.08f, 0.16f, 0.17f, 0.42f, 0.17f, 0.79f) + curveToRelative(0.0f, 0.36f, -0.1f, 0.54f, -0.16f, 0.6f) + arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.2f, 0.1f) + arcToRelative(0.32f, 0.32f, 0.0f, false, true, -0.22f, -0.13f) + curveToRelative(-0.08f, -0.09f, -0.17f, -0.26f, -0.17f, -0.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + curveToRelative(0.0f, 0.31f, -0.1f, 0.48f, -0.17f, 0.57f) + arcToRelative(0.32f, 0.32f, 0.0f, false, true, -0.23f, 0.13f) + arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.19f, -0.1f) + curveToRelative(-0.06f, -0.06f, -0.16f, -0.24f, -0.16f, -0.6f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.27f, -0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.05f, -1.07f) + close() + moveTo(7.28f, 2.97f) + reflectiveCurveToRelative(0.17f, 0.2f, 0.0f, 0.0f) + close() + } + } + return _textNumberListLtr90!! + } + +private var _textNumberListLtr90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextNumberListLtrRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextNumberListLtrRotate270.kt new file mode 100644 index 00000000..f35c01d1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextNumberListLtrRotate270.kt @@ -0,0 +1,107 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextNumberListLtrRotate270: ImageVector + get() { + if (_textNumberListLtrRotate270 != null) { + return _textNumberListLtrRotate270!! + } + _textNumberListLtrRotate270 = fluentIcon(name = "Regular.TextNumberListLtrRotate270") { + fluentPath { + moveTo(2.75f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.3f, 1.43f) + arcToRelative(1.2f, 1.2f, 0.0f, false, true, 0.13f, 0.07f) + curveToRelative(0.1f, 0.05f, 0.23f, 0.13f, 0.38f, 0.24f) + curveToRelative(0.32f, 0.22f, 0.66f, 0.52f, 0.9f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.28f, -0.79f) + arcToRelative(3.97f, 3.97f, 0.0f, false, false, -0.25f, -0.35f) + horizontalLineToRelative(2.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + close() + moveTo(18.75f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(12.25f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.76f, 0.75f) + verticalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(5.75f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(10.52f, 18.85f) + curveToRelative(-0.05f, 0.3f, 0.07f, 0.68f, 0.26f, 0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + arcToRelative(2.57f, 2.57f, 0.0f, false, true, -0.68f, -2.2f) + curveToRelative(0.07f, -0.39f, 0.26f, -0.8f, 0.6f, -1.1f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 11.0f, 17.0f) + curveToRelative(0.62f, 0.0f, 1.08f, 0.27f, 1.42f, 0.6f) + curveToRelative(0.28f, 0.28f, 0.51f, 0.64f, 0.69f, 0.91f) + lineToRelative(0.05f, 0.08f) + curveToRelative(0.13f, 0.2f, 0.24f, 0.36f, 0.34f, 0.48f) + verticalLineToRelative(-1.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + curveToRelative(-1.31f, 0.0f, -1.95f, -0.98f, -2.34f, -1.58f) + lineToRelative(-0.04f, -0.06f) + arcToRelative(4.2f, 4.2f, 0.0f, false, false, -0.5f, -0.69f) + curveToRelative(-0.14f, -0.13f, -0.24f, -0.17f, -0.37f, -0.17f) + curveToRelative(-0.22f, 0.0f, -0.32f, 0.06f, -0.36f, 0.1f) + arcToRelative(0.42f, 0.42f, 0.0f, false, false, -0.12f, 0.25f) + close() + moveTo(21.28f, 21.03f) + reflectiveCurveToRelative(0.08f, -0.1f, 0.0f, 0.0f) + lineToRelative(0.01f, -0.01f) + lineToRelative(0.01f, -0.01f) + arcToRelative(1.58f, 1.58f, 0.0f, false, false, 0.13f, -0.15f) + arcTo(3.24f, 3.24f, 0.0f, false, false, 22.0f, 19.0f) + curveToRelative(0.0f, -0.64f, -0.18f, -1.2f, -0.54f, -1.6f) + curveToRelative(-0.36f, -0.41f, -0.86f, -0.61f, -1.36f, -0.6f) + curveToRelative(-0.42f, 0.02f, -0.8f, 0.17f, -1.1f, 0.43f) + arcToRelative(1.73f, 1.73f, 0.0f, false, false, -2.46f, 0.17f) + curveToRelative(-0.36f, 0.4f, -0.54f, 0.96f, -0.54f, 1.6f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, 0.57f, 1.86f) + arcToRelative(1.99f, 1.99f, 0.0f, false, false, 0.13f, 0.15f) + lineToRelative(0.01f, 0.01f) + lineToRelative(0.01f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.05f, -1.07f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.27f, -0.96f) + curveToRelative(0.0f, -0.36f, 0.1f, -0.54f, 0.16f, -0.6f) + arcToRelative(0.23f, 0.23f, 0.0f, false, true, 0.2f, -0.1f) + curveToRelative(0.06f, 0.0f, 0.14f, 0.04f, 0.22f, 0.13f) + curveToRelative(0.08f, 0.09f, 0.17f, 0.26f, 0.17f, 0.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + curveToRelative(0.0f, -0.31f, 0.1f, -0.48f, 0.17f, -0.57f) + curveToRelative(0.08f, -0.1f, 0.16f, -0.12f, 0.23f, -0.13f) + curveToRelative(0.06f, 0.0f, 0.13f, 0.02f, 0.19f, 0.1f) + curveToRelative(0.06f, 0.06f, 0.16f, 0.24f, 0.16f, 0.6f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.27f, 0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.05f, 1.07f) + close() + moveTo(16.72f, 21.03f) + reflectiveCurveToRelative(-0.17f, -0.2f, 0.0f, 0.0f) + close() + } + } + return _textNumberListLtrRotate270!! + } + +private var _textNumberListLtrRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextNumberListRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextNumberListRotate270.kt new file mode 100644 index 00000000..d1b270bf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextNumberListRotate270.kt @@ -0,0 +1,107 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextNumberListRotate270: ImageVector + get() { + if (_textNumberListRotate270 != null) { + return _textNumberListRotate270!! + } + _textNumberListRotate270 = fluentIcon(name = "Regular.TextNumberListRotate270") { + fluentPath { + moveTo(2.75f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.3f, 1.43f) + arcToRelative(2.3f, 2.3f, 0.0f, false, true, 0.13f, 0.07f) + curveToRelative(0.1f, 0.05f, 0.23f, 0.13f, 0.38f, 0.24f) + curveToRelative(0.32f, 0.22f, 0.66f, 0.52f, 0.9f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.28f, -0.79f) + arcToRelative(3.97f, 3.97f, 0.0f, false, false, -0.25f, -0.35f) + horizontalLineToRelative(2.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + close() + moveTo(18.75f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(12.25f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.76f, 0.75f) + verticalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(5.75f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(10.52f, 18.85f) + curveToRelative(-0.05f, 0.3f, 0.07f, 0.68f, 0.26f, 0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + arcToRelative(2.57f, 2.57f, 0.0f, false, true, -0.68f, -2.2f) + curveToRelative(0.07f, -0.39f, 0.26f, -0.8f, 0.6f, -1.1f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 11.0f, 17.0f) + curveToRelative(0.62f, 0.0f, 1.08f, 0.27f, 1.42f, 0.6f) + curveToRelative(0.28f, 0.28f, 0.51f, 0.64f, 0.69f, 0.91f) + lineToRelative(0.05f, 0.08f) + curveToRelative(0.13f, 0.2f, 0.24f, 0.36f, 0.34f, 0.48f) + verticalLineToRelative(-1.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + curveToRelative(-1.31f, 0.0f, -1.95f, -0.98f, -2.34f, -1.58f) + lineToRelative(-0.04f, -0.06f) + arcToRelative(4.2f, 4.2f, 0.0f, false, false, -0.5f, -0.68f) + curveToRelative(-0.14f, -0.14f, -0.24f, -0.18f, -0.37f, -0.18f) + curveToRelative(-0.22f, 0.0f, -0.32f, 0.06f, -0.36f, 0.1f) + arcToRelative(0.42f, 0.42f, 0.0f, false, false, -0.12f, 0.25f) + close() + moveTo(21.28f, 21.03f) + reflectiveCurveToRelative(0.08f, -0.1f, 0.0f, 0.0f) + lineToRelative(0.01f, -0.01f) + lineToRelative(0.01f, -0.01f) + arcToRelative(1.42f, 1.42f, 0.0f, false, false, 0.13f, -0.15f) + arcTo(3.24f, 3.24f, 0.0f, false, false, 22.0f, 19.0f) + curveToRelative(0.0f, -0.64f, -0.18f, -1.2f, -0.54f, -1.6f) + curveToRelative(-0.36f, -0.4f, -0.86f, -0.61f, -1.36f, -0.6f) + curveToRelative(-0.42f, 0.02f, -0.8f, 0.17f, -1.1f, 0.43f) + arcToRelative(1.73f, 1.73f, 0.0f, false, false, -2.46f, 0.17f) + curveToRelative(-0.36f, 0.4f, -0.54f, 0.96f, -0.54f, 1.6f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, 0.57f, 1.86f) + arcToRelative(1.95f, 1.95f, 0.0f, false, false, 0.13f, 0.15f) + lineToRelative(0.01f, 0.01f) + lineToRelative(0.01f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.05f, -1.07f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.27f, -0.96f) + curveToRelative(0.0f, -0.36f, 0.1f, -0.54f, 0.16f, -0.6f) + arcToRelative(0.23f, 0.23f, 0.0f, false, true, 0.2f, -0.1f) + curveToRelative(0.06f, 0.0f, 0.14f, 0.04f, 0.22f, 0.13f) + curveToRelative(0.08f, 0.09f, 0.17f, 0.26f, 0.17f, 0.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + curveToRelative(0.0f, -0.31f, 0.1f, -0.48f, 0.17f, -0.57f) + curveToRelative(0.08f, -0.1f, 0.16f, -0.12f, 0.23f, -0.13f) + curveToRelative(0.06f, 0.0f, 0.13f, 0.02f, 0.19f, 0.1f) + curveToRelative(0.06f, 0.06f, 0.16f, 0.24f, 0.16f, 0.6f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.27f, 0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.05f, 1.07f) + close() + moveTo(16.72f, 21.03f) + reflectiveCurveToRelative(-0.17f, -0.2f, 0.0f, 0.0f) + close() + } + } + return _textNumberListRotate270!! + } + +private var _textNumberListRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextNumberListRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextNumberListRotate90.kt new file mode 100644 index 00000000..a4623a0e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextNumberListRotate90.kt @@ -0,0 +1,108 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextNumberListRotate90: ImageVector + get() { + if (_textNumberListRotate90 != null) { + return _textNumberListRotate90!! + } + _textNumberListRotate90 = fluentIcon(name = "Regular.TextNumberListRotate90") { + fluentPath { + moveTo(21.25f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.3f, -1.43f) + arcToRelative(1.47f, 1.47f, 0.0f, false, true, -0.13f, -0.07f) + curveToRelative(-0.1f, -0.05f, -0.23f, -0.13f, -0.38f, -0.24f) + arcToRelative(3.26f, 3.26f, 0.0f, false, true, -0.9f, -0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.28f, 0.79f) + lineToRelative(0.25f, 0.35f) + horizontalLineToRelative(-2.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.5f) + close() + moveTo(5.25f, 20.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + close() + moveTo(11.75f, 20.5f) + curveToRelative(0.42f, 0.0f, 0.76f, -0.34f, 0.76f, -0.75f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 0.41f, 0.33f, 0.75f, 0.75f, 0.75f) + close() + moveTo(18.25f, 20.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + close() + moveTo(13.48f, 5.15f) + curveToRelative(0.05f, -0.3f, -0.07f, -0.68f, -0.26f, -0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + curveToRelative(0.56f, 0.56f, 0.81f, 1.43f, 0.68f, 2.2f) + curveToRelative(-0.07f, 0.39f, -0.26f, 0.8f, -0.6f, 1.1f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 13.0f, 7.0f) + curveToRelative(-0.62f, 0.0f, -1.08f, -0.27f, -1.42f, -0.6f) + curveToRelative(-0.28f, -0.28f, -0.51f, -0.64f, -0.69f, -0.91f) + lineToRelative(-0.05f, -0.08f) + curveToRelative(-0.13f, -0.2f, -0.24f, -0.36f, -0.34f, -0.48f) + verticalLineToRelative(1.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + curveToRelative(1.31f, 0.0f, 1.95f, 0.98f, 2.34f, 1.58f) + lineToRelative(0.04f, 0.06f) + curveToRelative(0.2f, 0.31f, 0.34f, 0.53f, 0.5f, 0.68f) + curveToRelative(0.14f, 0.14f, 0.24f, 0.18f, 0.37f, 0.18f) + curveToRelative(0.22f, 0.0f, 0.32f, -0.06f, 0.36f, -0.1f) + curveToRelative(0.05f, -0.04f, 0.1f, -0.12f, 0.12f, -0.25f) + close() + moveTo(2.72f, 2.97f) + reflectiveCurveToRelative(-0.08f, 0.1f, 0.0f, 0.0f) + lineToRelative(-0.01f, 0.01f) + lineToRelative(-0.01f, 0.01f) + arcToRelative(1.46f, 1.46f, 0.0f, false, false, -0.13f, 0.15f) + arcTo(3.24f, 3.24f, 0.0f, false, false, 2.0f, 5.0f) + curveToRelative(0.0f, 0.64f, 0.18f, 1.2f, 0.54f, 1.6f) + curveToRelative(0.36f, 0.4f, 0.86f, 0.61f, 1.36f, 0.6f) + curveToRelative(0.42f, -0.02f, 0.8f, -0.17f, 1.1f, -0.43f) + arcToRelative(1.73f, 1.73f, 0.0f, false, false, 2.46f, -0.17f) + curveTo(7.82f, 6.2f, 8.0f, 5.64f, 8.0f, 5.0f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, -0.57f, -1.86f) + arcTo(1.96f, 1.96f, 0.0f, false, false, 7.3f, 3.0f) + lineToRelative(-0.01f, -0.01f) + lineToRelative(-0.01f, -0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.05f, 1.07f) + lineToRelative(0.1f, 0.17f) + curveToRelative(0.08f, 0.16f, 0.17f, 0.42f, 0.17f, 0.79f) + curveToRelative(0.0f, 0.36f, -0.1f, 0.54f, -0.16f, 0.6f) + arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.2f, 0.1f) + arcToRelative(0.32f, 0.32f, 0.0f, false, true, -0.22f, -0.13f) + curveToRelative(-0.08f, -0.09f, -0.17f, -0.26f, -0.17f, -0.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + curveToRelative(0.0f, 0.31f, -0.1f, 0.48f, -0.17f, 0.57f) + arcToRelative(0.32f, 0.32f, 0.0f, false, true, -0.23f, 0.13f) + arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.19f, -0.1f) + curveToRelative(-0.06f, -0.06f, -0.16f, -0.24f, -0.16f, -0.6f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.27f, -0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.05f, -1.07f) + close() + moveTo(7.28f, 2.97f) + reflectiveCurveToRelative(0.17f, 0.2f, 0.0f, 0.0f) + close() + } + } + return _textNumberListRotate90!! + } + +private var _textNumberListRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextNumberListRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextNumberListRtl.kt new file mode 100644 index 00000000..5d5e2420 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextNumberListRtl.kt @@ -0,0 +1,108 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextNumberListRtl: ImageVector + get() { + if (_textNumberListRtl != null) { + return _textNumberListRtl!! + } + _textNumberListRtl = fluentIcon(name = "Regular.TextNumberListRtl") { + fluentPath { + moveTo(20.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.43f, -0.3f) + arcToRelative(2.3f, 2.3f, 0.0f, false, true, -0.07f, 0.13f) + curveToRelative(-0.05f, 0.1f, -0.13f, 0.23f, -0.24f, 0.38f) + curveToRelative(-0.22f, 0.32f, -0.52f, 0.66f, -0.9f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.79f, 1.28f) + lineToRelative(0.35f, -0.25f) + verticalLineToRelative(2.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-4.5f) + close() + moveTo(14.0f, 18.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(9.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + close() + moveTo(14.0f, 12.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.76f) + horizontalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(9.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) + close() + moveTo(14.0f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(9.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + close() + moveTo(19.15f, 10.52f) + curveToRelative(-0.3f, -0.05f, -0.68f, 0.07f, -0.87f, 0.26f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + arcToRelative(2.57f, 2.57f, 0.0f, false, true, 2.2f, -0.68f) + curveToRelative(0.39f, 0.07f, 0.8f, 0.26f, 1.1f, 0.6f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 21.0f, 11.0f) + curveToRelative(0.0f, 0.62f, -0.27f, 1.08f, -0.6f, 1.42f) + curveToRelative(-0.28f, 0.28f, -0.64f, 0.51f, -0.91f, 0.69f) + lineToRelative(-0.08f, 0.05f) + curveToRelative(-0.2f, 0.13f, -0.36f, 0.24f, -0.48f, 0.34f) + horizontalLineToRelative(1.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + curveToRelative(0.0f, -1.31f, 0.98f, -1.95f, 1.58f, -2.34f) + lineToRelative(0.06f, -0.04f) + curveToRelative(0.31f, -0.2f, 0.53f, -0.34f, 0.68f, -0.5f) + curveToRelative(0.14f, -0.14f, 0.18f, -0.24f, 0.18f, -0.37f) + curveToRelative(0.0f, -0.22f, -0.06f, -0.32f, -0.1f, -0.36f) + arcToRelative(0.42f, 0.42f, 0.0f, false, false, -0.25f, -0.12f) + close() + moveTo(16.97f, 21.28f) + reflectiveCurveToRelative(0.1f, 0.08f, 0.0f, 0.0f) + lineToRelative(0.01f, 0.01f) + lineToRelative(0.01f, 0.01f) + arcToRelative(1.42f, 1.42f, 0.0f, false, false, 0.15f, 0.13f) + arcTo(3.24f, 3.24f, 0.0f, false, false, 19.0f, 22.0f) + curveToRelative(0.64f, 0.0f, 1.2f, -0.18f, 1.6f, -0.54f) + curveToRelative(0.4f, -0.36f, 0.61f, -0.86f, 0.6f, -1.36f) + curveToRelative(-0.02f, -0.42f, -0.17f, -0.8f, -0.43f, -1.1f) + arcToRelative(1.73f, 1.73f, 0.0f, false, false, -0.17f, -2.46f) + curveToRelative(-0.4f, -0.36f, -0.96f, -0.54f, -1.6f, -0.54f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, -1.86f, 0.57f) + arcToRelative(1.92f, 1.92f, 0.0f, false, false, -0.15f, 0.13f) + lineToRelative(-0.01f, 0.01f) + lineToRelative(-0.01f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.07f, 1.05f) + lineToRelative(0.17f, -0.1f) + curveToRelative(0.16f, -0.08f, 0.42f, -0.17f, 0.79f, -0.17f) + curveToRelative(0.36f, 0.0f, 0.54f, 0.1f, 0.6f, 0.16f) + curveToRelative(0.08f, 0.07f, 0.1f, 0.13f, 0.1f, 0.2f) + curveToRelative(0.0f, 0.06f, -0.04f, 0.14f, -0.13f, 0.22f) + curveToRelative(-0.09f, 0.08f, -0.26f, 0.17f, -0.57f, 0.17f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + curveToRelative(0.31f, 0.0f, 0.48f, 0.1f, 0.57f, 0.17f) + curveToRelative(0.1f, 0.08f, 0.12f, 0.16f, 0.13f, 0.23f) + curveToRelative(0.0f, 0.06f, -0.02f, 0.13f, -0.1f, 0.19f) + curveToRelative(-0.06f, 0.06f, -0.24f, 0.16f, -0.6f, 0.16f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.96f, -0.27f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.07f, 1.05f) + close() + moveTo(16.97f, 16.72f) + reflectiveCurveToRelative(0.2f, -0.17f, 0.0f, 0.0f) + close() + } + } + return _textNumberListRtl!! + } + +private var _textNumberListRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextNumberListRtl90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextNumberListRtl90.kt new file mode 100644 index 00000000..a54d834b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextNumberListRtl90.kt @@ -0,0 +1,108 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextNumberListRtl90: ImageVector + get() { + if (_textNumberListRtl90 != null) { + return _textNumberListRtl90!! + } + _textNumberListRtl90 = fluentIcon(name = "Regular.TextNumberListRtl90") { + fluentPath { + moveTo(21.25f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.3f, -1.43f) + arcToRelative(2.14f, 2.14f, 0.0f, false, true, -0.13f, -0.07f) + curveToRelative(-0.1f, -0.05f, -0.23f, -0.13f, -0.38f, -0.24f) + arcToRelative(3.26f, 3.26f, 0.0f, false, true, -0.9f, -0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.28f, 0.79f) + lineToRelative(0.25f, 0.35f) + horizontalLineToRelative(-2.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.5f) + close() + moveTo(5.25f, 14.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.5f, 0.0f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + close() + moveTo(11.75f, 14.0f) + curveToRelative(0.42f, 0.0f, 0.76f, -0.34f, 0.76f, -0.75f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 0.41f, 0.33f, 0.75f, 0.75f, 0.75f) + close() + moveTo(18.25f, 14.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + close() + moveTo(13.48f, 19.15f) + curveToRelative(0.05f, -0.3f, -0.07f, -0.68f, -0.26f, -0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -1.06f) + curveToRelative(0.56f, 0.56f, 0.81f, 1.43f, 0.68f, 2.2f) + curveToRelative(-0.07f, 0.39f, -0.26f, 0.8f, -0.6f, 1.1f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 13.0f, 21.0f) + curveToRelative(-0.62f, 0.0f, -1.08f, -0.27f, -1.42f, -0.6f) + arcToRelative(5.29f, 5.29f, 0.0f, false, true, -0.69f, -0.91f) + lineToRelative(-0.05f, -0.08f) + curveToRelative(-0.13f, -0.2f, -0.24f, -0.36f, -0.34f, -0.48f) + verticalLineToRelative(1.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + curveToRelative(1.31f, 0.0f, 1.95f, 0.98f, 2.34f, 1.58f) + lineToRelative(0.04f, 0.06f) + curveToRelative(0.2f, 0.31f, 0.34f, 0.53f, 0.5f, 0.68f) + curveToRelative(0.14f, 0.14f, 0.24f, 0.18f, 0.37f, 0.18f) + curveToRelative(0.22f, 0.0f, 0.32f, -0.06f, 0.36f, -0.1f) + curveToRelative(0.05f, -0.04f, 0.1f, -0.12f, 0.12f, -0.25f) + close() + moveTo(2.72f, 16.97f) + reflectiveCurveToRelative(-0.08f, 0.1f, 0.0f, 0.0f) + lineToRelative(-0.01f, 0.01f) + lineToRelative(-0.01f, 0.01f) + arcToRelative(1.47f, 1.47f, 0.0f, false, false, -0.13f, 0.15f) + arcTo(3.24f, 3.24f, 0.0f, false, false, 2.0f, 19.0f) + curveToRelative(0.0f, 0.64f, 0.18f, 1.2f, 0.54f, 1.6f) + curveToRelative(0.36f, 0.4f, 0.86f, 0.61f, 1.36f, 0.6f) + curveToRelative(0.42f, -0.02f, 0.8f, -0.17f, 1.1f, -0.43f) + arcToRelative(1.73f, 1.73f, 0.0f, false, false, 2.46f, -0.17f) + curveToRelative(0.36f, -0.4f, 0.54f, -0.96f, 0.54f, -1.6f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, -0.57f, -1.86f) + arcTo(1.95f, 1.95f, 0.0f, false, false, 7.3f, 17.0f) + lineToRelative(-0.01f, -0.01f) + lineToRelative(-0.01f, -0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.05f, 1.07f) + lineToRelative(0.1f, 0.17f) + curveToRelative(0.08f, 0.16f, 0.17f, 0.42f, 0.17f, 0.79f) + curveToRelative(0.0f, 0.36f, -0.1f, 0.54f, -0.16f, 0.6f) + arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.2f, 0.1f) + arcToRelative(0.32f, 0.32f, 0.0f, false, true, -0.22f, -0.13f) + curveToRelative(-0.08f, -0.09f, -0.17f, -0.26f, -0.17f, -0.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + curveToRelative(0.0f, 0.31f, -0.1f, 0.48f, -0.17f, 0.57f) + arcToRelative(0.32f, 0.32f, 0.0f, false, true, -0.23f, 0.13f) + arcToRelative(0.23f, 0.23f, 0.0f, false, true, -0.19f, -0.1f) + curveToRelative(-0.06f, -0.06f, -0.16f, -0.24f, -0.16f, -0.6f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.27f, -0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.05f, -1.07f) + close() + moveTo(7.28f, 16.97f) + reflectiveCurveToRelative(0.17f, 0.2f, 0.0f, 0.0f) + close() + } + } + return _textNumberListRtl90!! + } + +private var _textNumberListRtl90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextNumberListRtlRotate270.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextNumberListRtlRotate270.kt new file mode 100644 index 00000000..2d83a4b9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextNumberListRtlRotate270.kt @@ -0,0 +1,106 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextNumberListRtlRotate270: ImageVector + get() { + if (_textNumberListRtlRotate270 != null) { + return _textNumberListRtlRotate270!! + } + _textNumberListRtlRotate270 = fluentIcon(name = "Regular.TextNumberListRtlRotate270") { + fluentPath { + moveTo(2.75f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.3f, 1.43f) + arcToRelative(1.42f, 1.42f, 0.0f, false, true, 0.13f, 0.07f) + curveToRelative(0.1f, 0.05f, 0.23f, 0.13f, 0.38f, 0.24f) + curveToRelative(0.32f, 0.22f, 0.66f, 0.52f, 0.9f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.28f, -0.79f) + arcToRelative(3.96f, 3.96f, 0.0f, false, false, -0.25f, -0.35f) + horizontalLineToRelative(2.36f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.5f) + close() + moveTo(18.75f, 10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(12.25f, 10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.76f, 0.75f) + verticalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(5.75f, 10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(10.52f, 4.85f) + curveToRelative(-0.05f, 0.3f, 0.07f, 0.68f, 0.26f, 0.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + arcToRelative(2.57f, 2.57f, 0.0f, false, true, -0.68f, -2.2f) + curveToRelative(0.07f, -0.39f, 0.26f, -0.8f, 0.6f, -1.1f) + arcTo(2.0f, 2.0f, 0.0f, false, true, 11.0f, 3.0f) + curveToRelative(0.62f, 0.0f, 1.08f, 0.27f, 1.42f, 0.6f) + curveToRelative(0.28f, 0.28f, 0.51f, 0.64f, 0.69f, 0.91f) + lineToRelative(0.05f, 0.08f) + curveToRelative(0.13f, 0.2f, 0.24f, 0.36f, 0.34f, 0.48f) + lineTo(13.5f, 3.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + curveToRelative(-1.31f, 0.0f, -1.95f, -0.98f, -2.34f, -1.58f) + lineToRelative(-0.04f, -0.06f) + arcToRelative(4.2f, 4.2f, 0.0f, false, false, -0.5f, -0.68f) + curveToRelative(-0.14f, -0.14f, -0.24f, -0.18f, -0.37f, -0.18f) + curveToRelative(-0.22f, 0.0f, -0.32f, 0.06f, -0.36f, 0.1f) + arcToRelative(0.42f, 0.42f, 0.0f, false, false, -0.12f, 0.25f) + close() + moveTo(21.28f, 7.03f) + reflectiveCurveToRelative(0.08f, -0.1f, 0.0f, 0.0f) + lineToRelative(0.01f, -0.01f) + lineToRelative(0.01f, -0.01f) + arcToRelative(1.4f, 1.4f, 0.0f, false, false, 0.13f, -0.15f) + arcTo(3.24f, 3.24f, 0.0f, false, false, 22.0f, 5.0f) + curveToRelative(0.0f, -0.64f, -0.18f, -1.2f, -0.54f, -1.6f) + curveToRelative(-0.36f, -0.4f, -0.86f, -0.61f, -1.36f, -0.6f) + curveToRelative(-0.42f, 0.02f, -0.8f, 0.17f, -1.1f, 0.43f) + arcToRelative(1.73f, 1.73f, 0.0f, false, false, -2.46f, 0.17f) + curveToRelative(-0.36f, 0.4f, -0.54f, 0.96f, -0.54f, 1.6f) + arcToRelative(3.24f, 3.24f, 0.0f, false, false, 0.57f, 1.86f) + arcToRelative(1.95f, 1.95f, 0.0f, false, false, 0.13f, 0.15f) + lineToRelative(0.01f, 0.01f) + lineToRelative(0.01f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.05f, -1.07f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 17.5f, 5.0f) + curveToRelative(0.0f, -0.36f, 0.1f, -0.54f, 0.16f, -0.6f) + arcToRelative(0.23f, 0.23f, 0.0f, false, true, 0.2f, -0.1f) + curveToRelative(0.06f, 0.0f, 0.14f, 0.04f, 0.22f, 0.13f) + curveToRelative(0.08f, 0.09f, 0.17f, 0.26f, 0.17f, 0.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + curveToRelative(0.0f, -0.31f, 0.1f, -0.48f, 0.17f, -0.57f) + curveToRelative(0.08f, -0.1f, 0.16f, -0.12f, 0.23f, -0.13f) + curveToRelative(0.06f, 0.0f, 0.13f, 0.02f, 0.19f, 0.1f) + curveToRelative(0.06f, 0.06f, 0.16f, 0.24f, 0.16f, 0.6f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -0.27f, 0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.05f, 1.07f) + close() + moveTo(16.72f, 7.03f) + close() + } + } + return _textNumberListRtlRotate270!! + } + +private var _textNumberListRtlRotate270: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextParagraph.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextParagraph.kt new file mode 100644 index 00000000..cf7a4bd3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextParagraph.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextParagraph: ImageVector + get() { + if (_textParagraph != null) { + return _textParagraph!! + } + _textParagraph = fluentIcon(name = "Regular.TextParagraph") { + fluentPath { + moveTo(21.25f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(4.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) + horizontalLineToRelative(-5.69f) + lineToRelative(2.72f, 2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-4.0f, -4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + lineToRelative(4.0f, -4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineTo(13.56f, 8.0f) + horizontalLineToRelative(5.69f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(7.72f, 11.22f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineTo(10.44f, 15.0f) + horizontalLineTo(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.69f) + lineToRelative(-2.72f, 2.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(4.0f, -4.0f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineToRelative(-4.0f, -4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + close() + } + } + return _textParagraph!! + } + +private var _textParagraph: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextParagraphDirection.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextParagraphDirection.kt new file mode 100644 index 00000000..ee9e5e60 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextParagraphDirection.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextParagraphDirection: ImageVector + get() { + if (_textParagraphDirection != null) { + return _textParagraphDirection!! + } + _textParagraphDirection = fluentIcon(name = "Regular.TextParagraphDirection") { + fluentPath { + moveTo(13.5f, 3.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, 0.0f, 11.0f) + lineTo(15.0f, 14.0f) + verticalLineToRelative(7.2f) + curveToRelative(0.0f, 0.45f, 0.34f, 0.8f, 0.75f, 0.8f) + reflectiveCurveToRelative(0.75f, -0.35f, 0.75f, -0.8f) + lineTo(16.5f, 4.5f) + lineTo(18.0f, 4.5f) + verticalLineToRelative(16.7f) + curveToRelative(0.0f, 0.45f, 0.34f, 0.8f, 0.75f, 0.8f) + reflectiveCurveToRelative(0.75f, -0.35f, 0.75f, -0.8f) + lineTo(19.5f, 4.5f) + horizontalLineToRelative(0.67f) + curveToRelative(0.47f, -0.06f, 0.83f, -0.37f, 0.83f, -0.75f) + curveToRelative(0.0f, -0.41f, -0.43f, -0.75f, -0.95f, -0.75f) + lineTo(13.5f, 3.0f) + close() + moveTo(13.5f, 4.5f) + lineTo(15.0f, 4.5f) + verticalLineToRelative(8.0f) + horizontalLineToRelative(-1.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 0.0f, -8.0f) + close() + moveTo(4.08f, 11.86f) + arcToRelative(0.67f, 0.67f, 0.0f, false, true, -0.9f, -0.99f) + lineTo(4.9f, 9.0f) + lineTo(3.18f, 7.13f) + lineToRelative(-0.06f, -0.08f) + arcToRelative(0.67f, 0.67f, 0.0f, false, true, 1.03f, -0.84f) + lineTo(6.3f, 8.54f) + lineToRelative(0.06f, 0.08f) + curveToRelative(0.18f, 0.26f, 0.16f, 0.6f, -0.06f, 0.84f) + lineToRelative(-2.15f, 2.33f) + lineToRelative(-0.07f, 0.07f) + close() + moveTo(5.4f, 19.86f) + arcToRelative(0.67f, 0.67f, 0.0f, false, false, 0.9f, -0.99f) + lineTo(4.59f, 17.0f) + lineToRelative(1.7f, -1.87f) + lineToRelative(0.07f, -0.08f) + arcToRelative(0.67f, 0.67f, 0.0f, false, false, -1.03f, -0.84f) + lineToRelative(-2.15f, 2.33f) + lineToRelative(-0.06f, 0.08f) + curveToRelative(-0.18f, 0.26f, -0.16f, 0.6f, 0.06f, 0.84f) + lineToRelative(2.15f, 2.33f) + lineToRelative(0.07f, 0.07f) + close() + } + } + return _textParagraphDirection!! + } + +private var _textParagraphDirection: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextPositionBehind.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextPositionBehind.kt new file mode 100644 index 00000000..07960a8a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextPositionBehind.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextPositionBehind: ImageVector + get() { + if (_textPositionBehind != null) { + return _textPositionBehind!! + } + _textPositionBehind = fluentIcon(name = "Regular.TextPositionBehind") { + fluentPath { + moveTo(3.0f, 4.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(3.75f, 5.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 4.75f) + close() + moveTo(9.5f, 11.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + verticalLineToRelative(4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(16.0f, 11.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -8.0f, 0.0f) + verticalLineToRelative(4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(9.5f, 11.0f) + close() + moveTo(20.25f, 12.5f) + lineTo(17.0f, 12.5f) + lineTo(17.0f, 11.0f) + horizontalLineToRelative(3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(3.75f, 12.5f) + lineTo(7.0f, 12.5f) + lineTo(7.0f, 11.0f) + lineTo(3.75f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(3.75f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 18.0f) + close() + moveTo(10.5f, 11.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(-3.0f) + lineTo(10.5f, 11.0f) + close() + } + } + return _textPositionBehind!! + } + +private var _textPositionBehind: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextPositionFront.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextPositionFront.kt new file mode 100644 index 00000000..9ffac87a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextPositionFront.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextPositionFront: ImageVector + get() { + if (_textPositionFront != null) { + return _textPositionFront!! + } + _textPositionFront = fluentIcon(name = "Regular.TextPositionFront") { + fluentPath { + moveTo(3.75f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 4.0f) + close() + moveTo(12.0f, 8.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 9.7f, 10.0f) + lineTo(8.14f, 10.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 7.74f, 0.0f) + lineTo(14.3f, 10.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 12.0f, 8.5f) + close() + moveTo(8.0f, 13.5f) + horizontalLineToRelative(1.5f) + verticalLineToRelative(2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(8.0f, 13.5f) + close() + moveTo(16.0f, 13.5f) + horizontalLineToRelative(-1.5f) + verticalLineToRelative(2.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(16.0f, 13.5f) + close() + moveTo(20.25f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(3.75f, 12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(16.5f) + close() + moveTo(3.0f, 18.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(3.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _textPositionFront!! + } + +private var _textPositionFront: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextPositionLine.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextPositionLine.kt new file mode 100644 index 00000000..97918ace --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextPositionLine.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextPositionLine: ImageVector + get() { + if (_textPositionLine != null) { + return _textPositionLine!! + } + _textPositionLine = fluentIcon(name = "Regular.TextPositionLine") { + fluentPath { + moveTo(3.75f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 4.0f) + close() + moveTo(7.0f, 8.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 4.5f, 11.0f) + verticalLineToRelative(4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(3.0f, 11.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, 8.0f, 0.0f) + verticalLineToRelative(4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(9.5f, 11.0f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 7.0f, 8.5f) + close() + moveTo(13.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-6.5f) + close() + moveTo(3.75f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 18.0f) + close() + } + } + return _textPositionLine!! + } + +private var _textPositionLine: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextPositionSquare.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextPositionSquare.kt new file mode 100644 index 00000000..aa0d51c1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextPositionSquare.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextPositionSquare: ImageVector + get() { + if (_textPositionSquare != null) { + return _textPositionSquare!! + } + _textPositionSquare = fluentIcon(name = "Regular.TextPositionSquare") { + fluentPath { + moveTo(3.75f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 4.0f) + close() + moveTo(3.0f, 8.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.0f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 8.25f) + close() + moveTo(17.5f, 8.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(3.75f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.0f) + close() + moveTo(17.5f, 11.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(3.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.0f) + close() + moveTo(17.5f, 15.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(3.0f, 18.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(3.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(9.5f, 11.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + verticalLineToRelative(4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(16.0f, 11.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -8.0f, 0.0f) + verticalLineToRelative(4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(9.5f, 11.0f) + close() + } + } + return _textPositionSquare!! + } + +private var _textPositionSquare: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextPositionSquareLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextPositionSquareLeft.kt new file mode 100644 index 00000000..b760d893 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextPositionSquareLeft.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextPositionSquareLeft: ImageVector + get() { + if (_textPositionSquareLeft != null) { + return _textPositionSquareLeft!! + } + _textPositionSquareLeft = fluentIcon(name = "Regular.TextPositionSquareLeft") { + fluentPath { + moveTo(3.75f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 4.0f) + close() + moveTo(13.25f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-7.0f) + close() + moveTo(12.5f, 15.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(13.25f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-7.0f) + close() + moveTo(3.0f, 18.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(3.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(4.5f, 11.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + verticalLineToRelative(4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(11.0f, 11.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, -8.0f, 0.0f) + verticalLineToRelative(4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(4.5f, 11.0f) + close() + } + } + return _textPositionSquareLeft!! + } + +private var _textPositionSquareLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextPositionSquareRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextPositionSquareRight.kt new file mode 100644 index 00000000..0d774fa4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextPositionSquareRight.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextPositionSquareRight: ImageVector + get() { + if (_textPositionSquareRight != null) { + return _textPositionSquareRight!! + } + _textPositionSquareRight = fluentIcon(name = "Regular.TextPositionSquareRight") { + fluentPath { + moveTo(20.25f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(3.75f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(16.5f) + close() + moveTo(10.75f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(7.0f) + close() + moveTo(11.5f, 15.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(7.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + close() + moveTo(10.75f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(7.0f) + close() + moveTo(21.0f, 18.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(3.75f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(16.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + close() + moveTo(19.5f, 11.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -5.0f, 0.0f) + verticalLineToRelative(4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(13.0f, 11.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 8.0f, 0.0f) + verticalLineToRelative(4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(19.5f, 11.0f) + close() + } + } + return _textPositionSquareRight!! + } + +private var _textPositionSquareRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextPositionThrough.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextPositionThrough.kt new file mode 100644 index 00000000..af0f44ef --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextPositionThrough.kt @@ -0,0 +1,100 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextPositionThrough: ImageVector + get() { + if (_textPositionThrough != null) { + return _textPositionThrough!! + } + _textPositionThrough = fluentIcon(name = "Regular.TextPositionThrough") { + fluentPath { + moveTo(3.75f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 4.0f) + close() + moveTo(3.0f, 8.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.68f) + arcTo(5.0f, 5.0f, 0.0f, false, false, 7.42f, 9.0f) + lineTo(3.75f, 9.0f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 8.25f) + close() + moveTo(15.46f, 9.0f) + arcToRelative(4.02f, 4.02f, 0.0f, false, false, -5.4f, -1.5f) + arcTo(4.02f, 4.02f, 0.0f, false, false, 8.0f, 11.0f) + verticalLineToRelative(4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) + lineTo(9.5f, 11.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) + verticalLineToRelative(4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, 0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, -0.75f) + lineTo(16.0f, 11.0f) + curveToRelative(0.0f, -0.73f, -0.2f, -1.41f, -0.54f, -2.0f) + close() + moveTo(3.75f, 11.0f) + lineTo(7.0f, 11.0f) + verticalLineToRelative(1.5f) + lineTo(3.75f, 12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(3.75f, 14.5f) + lineTo(7.0f, 14.5f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.08f, 0.0f, 0.17f, 0.02f, 0.25f) + lineTo(3.75f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(13.5f, 15.75f) + curveToRelative(0.0f, 0.08f, 0.0f, 0.17f, 0.02f, 0.25f) + horizontalLineToRelative(-3.04f) + lineToRelative(0.02f, -0.25f) + lineTo(10.5f, 14.5f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(1.25f) + close() + moveTo(20.25f, 12.5f) + lineTo(17.0f, 12.5f) + lineTo(17.0f, 11.0f) + horizontalLineToRelative(3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(17.0f, 15.75f) + curveToRelative(0.0f, 0.08f, 0.0f, 0.17f, -0.02f, 0.25f) + horizontalLineToRelative(3.27f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(17.0f, 14.5f) + verticalLineToRelative(1.25f) + close() + moveTo(13.5f, 12.5f) + horizontalLineToRelative(-3.0f) + lineTo(10.5f, 11.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(1.5f) + close() + moveTo(15.57f, 7.5f) + arcTo(5.0f, 5.0f, 0.0f, false, true, 16.58f, 9.0f) + horizontalLineToRelative(3.67f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-4.68f) + close() + moveTo(3.75f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 18.0f) + close() + } + } + return _textPositionThrough!! + } + +private var _textPositionThrough: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextPositionTight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextPositionTight.kt new file mode 100644 index 00000000..2b19c669 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextPositionTight.kt @@ -0,0 +1,86 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextPositionTight: ImageVector + get() { + if (_textPositionTight != null) { + return _textPositionTight!! + } + _textPositionTight = fluentIcon(name = "Regular.TextPositionTight") { + fluentPath { + moveTo(3.75f, 4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 4.0f) + close() + moveTo(3.0f, 8.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.68f) + arcTo(5.0f, 5.0f, 0.0f, false, false, 7.42f, 9.0f) + lineTo(3.75f, 9.0f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 8.25f) + close() + moveTo(15.46f, 9.0f) + arcToRelative(4.02f, 4.02f, 0.0f, false, false, -5.4f, -1.5f) + arcTo(4.02f, 4.02f, 0.0f, false, false, 8.0f, 11.0f) + verticalLineToRelative(4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.5f, 0.0f) + lineTo(9.5f, 11.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) + verticalLineToRelative(4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, 0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, -0.75f) + lineTo(16.0f, 11.0f) + curveToRelative(0.0f, -0.73f, -0.2f, -1.41f, -0.54f, -2.0f) + close() + moveTo(3.75f, 11.0f) + lineTo(7.0f, 11.0f) + verticalLineToRelative(1.5f) + lineTo(3.75f, 12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(3.75f, 14.5f) + lineTo(7.0f, 14.5f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.08f, 0.0f, 0.17f, 0.02f, 0.25f) + lineTo(3.75f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(20.25f, 16.0f) + horizontalLineToRelative(-3.27f) + lineToRelative(0.02f, -0.25f) + lineTo(17.0f, 14.5f) + horizontalLineToRelative(3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(20.25f, 12.5f) + lineTo(17.0f, 12.5f) + lineTo(17.0f, 11.0f) + horizontalLineToRelative(3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(20.25f, 9.0f) + horizontalLineToRelative(-3.67f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, -1.0f, -1.5f) + horizontalLineToRelative(4.67f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + close() + moveTo(3.75f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.75f, 18.0f) + close() + } + } + return _textPositionTight!! + } + +private var _textPositionTight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextPositionTopBottom.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextPositionTopBottom.kt new file mode 100644 index 00000000..7b26ba09 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextPositionTopBottom.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextPositionTopBottom: ImageVector + get() { + if (_textPositionTopBottom != null) { + return _textPositionTopBottom!! + } + _textPositionTopBottom = fluentIcon(name = "Regular.TextPositionTopBottom") { + fluentPath { + moveTo(3.0f, 4.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(3.75f, 5.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 3.0f, 4.75f) + close() + moveTo(3.0f, 18.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(3.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(9.5f, 11.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + verticalLineToRelative(4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(16.0f, 11.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -8.0f, 0.0f) + verticalLineToRelative(4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(9.5f, 11.0f) + close() + } + } + return _textPositionTopBottom!! + } + +private var _textPositionTopBottom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextProofingTools.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextProofingTools.kt new file mode 100644 index 00000000..99567ed4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextProofingTools.kt @@ -0,0 +1,110 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextProofingTools: ImageVector + get() { + if (_textProofingTools != null) { + return _textProofingTools!! + } + _textProofingTools = fluentIcon(name = "Regular.TextProofingTools") { + fluentPath { + moveTo(20.53f, 3.27f) + curveToRelative(0.61f, 0.3f, 1.1f, 0.87f, 1.43f, 1.79f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.42f, 0.5f) + curveToRelative(-0.23f, -0.64f, -0.5f, -0.85f, -0.67f, -0.94f) + curveToRelative(-0.22f, -0.1f, -0.47f, -0.12f, -0.87f, -0.12f) + curveToRelative(-0.38f, 0.0f, -0.62f, 0.12f, -0.8f, 0.28f) + curveToRelative(-0.2f, 0.17f, -0.35f, 0.43f, -0.47f, 0.73f) + arcToRelative(3.87f, 3.87f, 0.0f, false, false, -0.23f, 1.23f) + verticalLineToRelative(0.01f) + curveToRelative(0.0f, 0.53f, 0.0f, 1.2f, 0.23f, 1.76f) + curveToRelative(0.1f, 0.27f, 0.25f, 0.49f, 0.45f, 0.65f) + curveToRelative(0.19f, 0.16f, 0.47f, 0.3f, 0.9f, 0.34f) + curveToRelative(0.35f, 0.04f, 1.13f, -0.02f, 1.49f, -0.8f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.36f, 0.62f) + curveToRelative(-0.77f, 1.7f, -2.46f, 1.74f, -3.01f, 1.68f) + arcToRelative(3.15f, 3.15f, 0.0f, false, true, -1.7f, -0.68f) + arcToRelative(3.04f, 3.04f, 0.0f, false, true, -0.89f, -1.26f) + arcTo(6.28f, 6.28f, 0.0f, false, true, 16.0f, 6.78f) + lineTo(16.0f, 6.7f) + arcToRelative(4.09f, 4.09f, 0.0f, false, true, 0.04f, -0.51f) + curveToRelative(0.04f, -0.32f, 0.12f, -0.76f, 0.29f, -1.2f) + curveToRelative(0.17f, -0.45f, 0.43f, -0.94f, 0.87f, -1.33f) + curveToRelative(0.45f, -0.4f, 1.05f, -0.66f, 1.8f, -0.66f) + horizontalLineToRelative(0.04f) + curveToRelative(0.36f, 0.0f, 0.93f, 0.0f, 1.49f, 0.27f) + close() + moveTo(5.28f, 3.0f) + curveToRelative(0.31f, 0.0f, 0.59f, 0.2f, 0.7f, 0.5f) + lineToRelative(2.3f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.41f, 0.5f) + lineToRelative(-0.34f, -0.95f) + horizontalLineToRelative(-2.7f) + lineToRelative(-0.38f, 0.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.4f, -0.54f) + lineToRelative(2.52f, -6.5f) + curveToRelative(0.11f, -0.3f, 0.4f, -0.48f, 0.7f, -0.48f) + close() + moveTo(5.24f, 5.9f) + lineTo(4.4f, 8.06f) + lineTo(6.0f, 8.06f) + lineTo(5.24f, 5.9f) + close() + moveTo(9.28f, 16.22f) + lineTo(11.2f, 18.14f) + lineTo(15.67f, 12.77f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.16f, 0.96f) + lineToRelative(-5.0f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.11f, 0.05f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + close() + moveTo(14.58f, 5.38f) + curveToRelative(0.0f, 0.57f, -0.15f, 1.03f, -0.39f, 1.38f) + curveToRelative(0.18f, 0.14f, 0.34f, 0.32f, 0.47f, 0.54f) + curveToRelative(0.23f, 0.36f, 0.34f, 0.8f, 0.34f, 1.33f) + arcToRelative(2.15f, 2.15f, 0.0f, false, true, -1.16f, 2.03f) + arcToRelative(3.2f, 3.2f, 0.0f, false, true, -1.46f, 0.34f) + lineTo(9.75f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-6.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.43f) + curveToRelative(0.22f, 0.0f, 0.8f, 0.0f, 1.34f, 0.3f) + curveToRelative(0.29f, 0.16f, 0.57f, 0.41f, 0.76f, 0.78f) + curveToRelative(0.2f, 0.36f, 0.3f, 0.8f, 0.3f, 1.3f) + close() + moveTo(12.16f, 4.5f) + lineTo(10.5f, 4.5f) + verticalLineToRelative(1.75f) + horizontalLineToRelative(1.66f) + curveToRelative(0.15f, 0.0f, 0.4f, -0.03f, 0.6f, -0.15f) + arcToRelative(0.56f, 0.56f, 0.0f, false, false, 0.2f, -0.2f) + curveToRelative(0.06f, -0.1f, 0.12f, -0.26f, 0.12f, -0.52f) + curveToRelative(0.0f, -0.32f, -0.06f, -0.5f, -0.12f, -0.59f) + arcToRelative(0.44f, 0.44f, 0.0f, false, false, -0.18f, -0.18f) + curveToRelative(-0.17f, -0.1f, -0.4f, -0.11f, -0.62f, -0.11f) + close() + moveTo(12.38f, 9.5f) + curveToRelative(0.18f, 0.0f, 0.5f, -0.03f, 0.75f, -0.17f) + curveToRelative(0.12f, -0.06f, 0.2f, -0.13f, 0.26f, -0.22f) + arcToRelative(0.88f, 0.88f, 0.0f, false, false, 0.11f, -0.48f) + curveToRelative(0.0f, -0.3f, -0.06f, -0.46f, -0.12f, -0.55f) + arcToRelative(0.52f, 0.52f, 0.0f, false, false, -0.22f, -0.2f) + arcToRelative(1.81f, 1.81f, 0.0f, false, false, -0.78f, -0.13f) + lineTo(10.5f, 7.75f) + lineTo(10.5f, 9.5f) + horizontalLineToRelative(1.88f) + close() + } + } + return _textProofingTools!! + } + +private var _textProofingTools: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextQuote.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextQuote.kt new file mode 100644 index 00000000..511acfaa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextQuote.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextQuote: ImageVector + get() { + if (_textQuote != null) { + return _textQuote!! + } + _textQuote = fluentIcon(name = "Regular.TextQuote") { + fluentPath { + moveTo(7.5f, 6.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 10.0f, 8.34f) + verticalLineToRelative(0.2f) + arcToRelative(13.01f, 13.01f, 0.0f, false, true, -3.7f, 9.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.1f, -1.02f) + arcToRelative(11.55f, 11.55f, 0.0f, false, false, 3.08f, -5.86f) + arcTo(2.5f, 2.5f, 0.0f, true, true, 7.5f, 6.0f) + close() + moveTo(16.5f, 6.0f) + arcTo(2.5f, 2.5f, 0.0f, false, true, 19.0f, 8.34f) + verticalLineToRelative(0.2f) + arcToRelative(12.99f, 12.99f, 0.0f, false, true, -3.7f, 9.23f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.1f, -1.04f) + arcToRelative(11.51f, 11.51f, 0.0f, false, false, 3.08f, -5.85f) + arcTo(2.5f, 2.5f, 0.0f, true, true, 16.5f, 6.0f) + close() + moveTo(7.5f, 7.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.0f, 1.12f) + verticalLineToRelative(-0.13f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -0.99f) + close() + moveTo(16.5f, 7.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.0f, 1.12f) + verticalLineToRelative(-0.13f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.0f, -0.99f) + close() + } + } + return _textQuote!! + } + +private var _textQuote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextSortAscending.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextSortAscending.kt new file mode 100644 index 00000000..41eb0687 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextSortAscending.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextSortAscending: ImageVector + get() { + if (_textSortAscending != null) { + return _textSortAscending!! + } + _textSortAscending = fluentIcon(name = "Regular.TextSortAscending") { + fluentPath { + moveTo(17.25f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(16.69f) + lineToRelative(2.22f, -2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-3.5f, 3.5f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-3.5f, -3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(2.22f, 2.22f) + lineTo(16.5f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(7.77f, 2.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.4f, -0.01f) + lineToRelative(-3.32f, 8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.4f, 0.54f) + lineToRelative(0.79f, -2.02f) + horizontalLineToRelative(3.55f) + lineToRelative(0.76f, 2.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.4f, -0.52f) + lineToRelative(-3.18f, -8.5f) + close() + moveTo(5.82f, 8.0f) + lineToRelative(1.23f, -3.15f) + lineTo(8.23f, 8.0f) + horizontalLineToRelative(-2.4f) + close() + moveTo(4.0f, 13.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + lineTo(9.5f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.63f, 1.15f) + lineTo(6.11f, 20.5f) + lineTo(9.5f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + lineTo(4.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.63f, -1.15f) + lineToRelative(4.02f, -6.35f) + lineTo(4.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _textSortAscending!! + } + +private var _textSortAscending: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextSortDescending.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextSortDescending.kt new file mode 100644 index 00000000..05cfad51 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextSortDescending.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextSortDescending: ImageVector + get() { + if (_textSortDescending != null) { + return _textSortDescending!! + } + _textSortDescending = fluentIcon(name = "Regular.TextSortDescending") { + fluentPath { + moveTo(4.0f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + lineTo(9.5f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.63f, 1.15f) + lineTo(6.11f, 9.5f) + lineTo(9.5f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + lineTo(4.75f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.63f, -1.15f) + lineTo(8.14f, 3.5f) + lineTo(4.75f, 3.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 4.0f, 2.75f) + close() + moveTo(6.37f, 12.48f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.4f, 0.0f) + lineToRelative(3.18f, 8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.4f, 0.53f) + lineToRelative(-0.76f, -2.01f) + lineTo(5.24f, 19.5f) + lineToRelative(-0.8f, 2.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.39f, -0.54f) + lineToRelative(3.32f, -8.5f) + close() + moveTo(8.23f, 18.0f) + lineToRelative(-1.18f, -3.15f) + lineTo(5.82f, 18.0f) + horizontalLineToRelative(2.41f) + close() + moveTo(17.25f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(16.69f) + lineToRelative(2.22f, -2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-3.5f, 3.5f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-3.5f, -3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(2.22f, 2.22f) + lineTo(16.5f, 2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _textSortDescending!! + } + +private var _textSortDescending: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextStrikethrough.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextStrikethrough.kt new file mode 100644 index 00000000..fe527c07 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextStrikethrough.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextStrikethrough: ImageVector + get() { + if (_textStrikethrough != null) { + return _textStrikethrough!! + } + _textStrikethrough = fluentIcon(name = "Regular.TextStrikethrough") { + fluentPath { + moveTo(4.75f, 12.0f) + horizontalLineToRelative(14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(16.28f, 13.5f) + curveToRelative(0.88f, 0.81f, 1.33f, 1.8f, 1.33f, 2.93f) + curveToRelative(0.0f, 2.83f, -3.23f, 4.64f, -6.75f, 4.24f) + curveToRelative(-2.24f, -0.26f, -3.81f, -1.16f, -4.64f, -2.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.33f, -0.71f) + curveToRelative(0.57f, 1.06f, 1.7f, 1.7f, 3.48f, 1.92f) + curveToRelative(2.74f, 0.31f, 5.08f, -1.0f, 5.08f, -2.75f) + curveToRelative(0.0f, -1.17f, -0.8f, -2.12f, -2.56f, -2.88f) + lineToRelative(-0.12f, -0.05f) + lineTo(4.75f, 13.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(14.5f) + horizontalLineToRelative(-14.5f) + close() + moveTo(6.26f, 8.12f) + curveToRelative(0.15f, -2.83f, 2.82f, -4.47f, 6.32f, -4.06f) + curveToRelative(2.2f, 0.26f, 3.87f, 1.05f, 4.99f, 2.41f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.16f, 0.96f) + curveToRelative(-0.85f, -1.04f, -2.17f, -1.67f, -4.0f, -1.88f) + curveToRelative(-2.72f, -0.31f, -4.65f, 0.8f, -4.65f, 2.57f) + curveToRelative(0.0f, 0.78f, 0.23f, 1.35f, 0.83f, 1.98f) + lineToRelative(0.13f, 0.14f) + lineToRelative(0.25f, 0.24f) + lineToRelative(0.03f, 0.02f) + lineTo(7.08f, 10.5f) + lineToRelative(-0.02f, -0.04f) + curveToRelative(-0.15f, -0.2f, -0.86f, -1.2f, -0.8f, -2.34f) + close() + } + } + return _textStrikethrough!! + } + +private var _textStrikethrough: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextSubscript.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextSubscript.kt new file mode 100644 index 00000000..a820277d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextSubscript.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextSubscript: ImageVector + get() { + if (_textSubscript != null) { + return _textSubscript!! + } + _textSubscript = fluentIcon(name = "Regular.TextSubscript") { + fluentPath { + moveTo(16.49f, 4.43f) + curveToRelative(0.31f, 0.27f, 0.35f, 0.74f, 0.08f, 1.06f) + lineTo(10.99f, 12.0f) + lineToRelative(5.03f, 5.87f) + curveToRelative(-0.3f, 0.41f, -0.55f, 0.9f, -0.68f, 1.51f) + lineTo(10.0f, 13.15f) + lineTo(4.57f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.14f, -0.98f) + lineTo(9.01f, 12.0f) + lineTo(3.43f, 5.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.14f, -0.98f) + lineTo(10.0f, 10.85f) + lineToRelative(5.43f, -6.34f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, -0.08f) + close() + moveTo(17.75f, 15.53f) + curveToRelative(0.0f, -0.54f, 0.44f, -1.03f, 0.99f, -1.03f) + curveToRelative(0.4f, 0.0f, 0.73f, 0.2f, 0.89f, 0.43f) + curveToRelative(0.14f, 0.21f, 0.22f, 0.57f, -0.1f, 1.1f) + arcToRelative(2.7f, 2.7f, 0.0f, false, true, -0.68f, 0.72f) + lineToRelative(-0.49f, 0.37f) + lineToRelative(-0.07f, 0.05f) + lineToRelative(-0.48f, 0.34f) + curveToRelative(-0.74f, 0.56f, -1.56f, 1.34f, -1.56f, 2.74f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.45f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.51f) + curveToRelative(0.16f, -0.28f, 0.42f, -0.52f, 0.78f, -0.8f) + lineToRelative(0.43f, -0.3f) + lineToRelative(0.08f, -0.06f) + curveToRelative(0.18f, -0.13f, 0.37f, -0.26f, 0.55f, -0.41f) + curveToRelative(0.38f, -0.3f, 0.76f, -0.66f, 1.05f, -1.14f) + curveToRelative(0.56f, -0.95f, 0.55f, -1.92f, 0.06f, -2.67f) + arcToRelative(2.53f, 2.53f, 0.0f, false, false, -4.64f, 1.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + close() + } + } + return _textSubscript!! + } + +private var _textSubscript: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextSuperscript.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextSuperscript.kt new file mode 100644 index 00000000..26970e83 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextSuperscript.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextSuperscript: ImageVector + get() { + if (_textSuperscript != null) { + return _textSuperscript!! + } + _textSuperscript = fluentIcon(name = "Regular.TextSuperscript") { + fluentPath { + moveTo(18.74f, 3.5f) + curveToRelative(-0.55f, 0.0f, -0.99f, 0.5f, -0.99f, 1.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + arcToRelative(2.53f, 2.53f, 0.0f, false, true, 4.64f, -1.4f) + curveToRelative(0.49f, 0.75f, 0.5f, 1.72f, -0.06f, 2.67f) + curveToRelative(-0.29f, 0.48f, -0.67f, 0.85f, -1.05f, 1.14f) + curveToRelative(-0.18f, 0.15f, -0.37f, 0.28f, -0.55f, 0.41f) + lineToRelative(-0.08f, 0.06f) + lineToRelative(-0.43f, 0.3f) + curveToRelative(-0.36f, 0.28f, -0.62f, 0.52f, -0.78f, 0.8f) + horizontalLineToRelative(2.51f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(17.0f, 10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + curveToRelative(0.0f, -1.4f, 0.82f, -2.18f, 1.56f, -2.74f) + lineToRelative(0.48f, -0.34f) + lineToRelative(0.07f, -0.05f) + lineToRelative(0.5f, -0.37f) + curveToRelative(0.3f, -0.24f, 0.53f, -0.47f, 0.68f, -0.72f) + curveToRelative(0.3f, -0.53f, 0.23f, -0.89f, 0.09f, -1.1f) + arcToRelative(1.06f, 1.06f, 0.0f, false, false, -0.9f, -0.43f) + close() + moveTo(15.26f, 4.71f) + curveToRelative(0.06f, 0.56f, 0.38f, 1.04f, 0.85f, 1.32f) + lineTo(10.99f, 12.0f) + lineToRelative(5.58f, 6.51f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.14f, 0.98f) + lineTo(10.0f, 13.15f) + lineTo(4.57f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.14f, -0.98f) + lineTo(9.01f, 12.0f) + lineTo(3.43f, 5.49f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.14f, -0.98f) + lineTo(10.0f, 10.85f) + lineToRelative(5.26f, -6.14f) + close() + } + } + return _textSuperscript!! + } + +private var _textSuperscript: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextT.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextT.kt new file mode 100644 index 00000000..160dfce9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextT.kt @@ -0,0 +1,42 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextT: ImageVector + get() { + if (_textT != null) { + return _textT!! + } + _textT = fluentIcon(name = "Regular.TextT") { + fluentPath { + moveTo(5.0f, 4.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(12.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineTo(5.5f) + horizontalLineToRelative(-4.75f) + verticalLineToRelative(13.0f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.5f) + verticalLineToRelative(-13.0f) + horizontalLineTo(6.5f) + verticalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-2.0f) + close() + } + } + return _textT!! + } + +private var _textT: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextUnderline.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextUnderline.kt new file mode 100644 index 00000000..53129c13 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextUnderline.kt @@ -0,0 +1,44 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextUnderline: ImageVector + get() { + if (_textUnderline != null) { + return _textUnderline!! + } + _textUnderline = fluentIcon(name = "Regular.TextUnderline") { + fluentPath { + moveTo(6.75f, 19.0f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(10.6f) + horizontalLineToRelative(-10.5f) + close() + moveTo(17.25f, 4.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 4.4f, -2.06f, 6.75f, -6.0f, 6.75f) + curveToRelative(-3.86f, 0.0f, -5.91f, -2.26f, -6.0f, -6.47f) + lineTo(6.0f, 4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(6.1f) + curveTo(7.5f, 14.35f, 8.93f, 16.0f, 12.0f, 16.0f) + curveToRelative(2.98f, 0.0f, 4.43f, -1.56f, 4.5f, -4.98f) + lineTo(16.5f, 4.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _textUnderline!! + } + +private var _textUnderline: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextUnderlineCharacterU.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextUnderlineCharacterU.kt new file mode 100644 index 00000000..c5d258f2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextUnderlineCharacterU.kt @@ -0,0 +1,38 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextUnderlineCharacterU: ImageVector + get() { + if (_textUnderlineCharacterU != null) { + return _textUnderlineCharacterU!! + } + _textUnderlineCharacterU = fluentIcon(name = "Regular.TextUnderlineCharacterU") { + fluentPath { + moveTo(8.5f, 4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineTo(12.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 10.0f, 0.0f) + verticalLineTo(4.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineTo(12.0f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, -7.0f, 0.0f) + verticalLineTo(4.75f) + close() + moveTo(6.75f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(6.75f) + close() + } + } + return _textUnderlineCharacterU!! + } + +private var _textUnderlineCharacterU: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextUnderlineDouble.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextUnderlineDouble.kt new file mode 100644 index 00000000..53bb1b15 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextUnderlineDouble.kt @@ -0,0 +1,114 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextUnderlineDouble: ImageVector + get() { + if (_textUnderlineDouble != null) { + return _textUnderlineDouble!! + } + _textUnderlineDouble = fluentIcon(name = "Regular.TextUnderlineDouble") { + fluentPath { + moveTo(20.53f, 3.27f) + curveToRelative(0.61f, 0.3f, 1.1f, 0.87f, 1.43f, 1.79f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.42f, 0.5f) + curveToRelative(-0.23f, -0.64f, -0.5f, -0.85f, -0.67f, -0.94f) + curveToRelative(-0.22f, -0.1f, -0.47f, -0.12f, -0.87f, -0.12f) + curveToRelative(-0.38f, 0.0f, -0.62f, 0.12f, -0.8f, 0.28f) + curveToRelative(-0.2f, 0.17f, -0.35f, 0.43f, -0.47f, 0.73f) + arcToRelative(3.87f, 3.87f, 0.0f, false, false, -0.23f, 1.23f) + verticalLineToRelative(0.01f) + curveToRelative(0.0f, 0.53f, 0.0f, 1.2f, 0.23f, 1.76f) + curveToRelative(0.1f, 0.27f, 0.25f, 0.49f, 0.45f, 0.65f) + curveToRelative(0.19f, 0.16f, 0.47f, 0.3f, 0.9f, 0.34f) + curveToRelative(0.35f, 0.04f, 1.13f, -0.02f, 1.49f, -0.8f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.36f, 0.62f) + curveToRelative(-0.77f, 1.7f, -2.46f, 1.74f, -3.01f, 1.68f) + arcToRelative(3.15f, 3.15f, 0.0f, false, true, -1.7f, -0.68f) + arcToRelative(3.04f, 3.04f, 0.0f, false, true, -0.89f, -1.26f) + arcTo(6.28f, 6.28f, 0.0f, false, true, 16.0f, 6.78f) + lineTo(16.0f, 6.7f) + arcToRelative(4.09f, 4.09f, 0.0f, false, true, 0.04f, -0.51f) + curveToRelative(0.04f, -0.32f, 0.12f, -0.76f, 0.29f, -1.2f) + curveToRelative(0.17f, -0.45f, 0.43f, -0.94f, 0.87f, -1.33f) + curveToRelative(0.45f, -0.4f, 1.05f, -0.66f, 1.8f, -0.66f) + horizontalLineToRelative(0.04f) + curveToRelative(0.36f, 0.0f, 0.93f, 0.0f, 1.49f, 0.27f) + close() + moveTo(5.28f, 3.0f) + curveToRelative(0.31f, 0.0f, 0.59f, 0.2f, 0.7f, 0.5f) + lineToRelative(2.3f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.41f, 0.5f) + lineToRelative(-0.34f, -0.95f) + horizontalLineToRelative(-2.7f) + lineToRelative(-0.38f, 0.97f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.4f, -0.54f) + lineToRelative(2.52f, -6.5f) + curveToRelative(0.11f, -0.3f, 0.4f, -0.48f, 0.7f, -0.48f) + close() + moveTo(5.24f, 5.9f) + lineTo(4.4f, 8.06f) + lineTo(6.0f, 8.06f) + lineTo(5.24f, 5.9f) + close() + moveTo(14.58f, 5.38f) + curveToRelative(0.0f, 0.57f, -0.15f, 1.03f, -0.39f, 1.38f) + curveToRelative(0.18f, 0.14f, 0.34f, 0.32f, 0.47f, 0.54f) + curveToRelative(0.23f, 0.36f, 0.34f, 0.8f, 0.34f, 1.33f) + arcToRelative(2.15f, 2.15f, 0.0f, false, true, -1.16f, 2.03f) + arcToRelative(3.2f, 3.2f, 0.0f, false, true, -1.46f, 0.34f) + lineTo(9.75f, 11.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-6.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.43f) + curveToRelative(0.22f, 0.0f, 0.8f, 0.0f, 1.34f, 0.3f) + curveToRelative(0.29f, 0.16f, 0.57f, 0.41f, 0.76f, 0.78f) + curveToRelative(0.2f, 0.36f, 0.3f, 0.8f, 0.3f, 1.3f) + close() + moveTo(12.16f, 4.5f) + lineTo(10.5f, 4.5f) + verticalLineToRelative(1.75f) + horizontalLineToRelative(1.66f) + curveToRelative(0.15f, 0.0f, 0.4f, -0.03f, 0.6f, -0.15f) + arcToRelative(0.56f, 0.56f, 0.0f, false, false, 0.2f, -0.2f) + curveToRelative(0.06f, -0.1f, 0.12f, -0.26f, 0.12f, -0.52f) + curveToRelative(0.0f, -0.32f, -0.06f, -0.5f, -0.12f, -0.59f) + arcToRelative(0.44f, 0.44f, 0.0f, false, false, -0.18f, -0.18f) + curveToRelative(-0.17f, -0.1f, -0.4f, -0.11f, -0.62f, -0.11f) + close() + moveTo(12.38f, 9.5f) + curveToRelative(0.18f, 0.0f, 0.5f, -0.03f, 0.75f, -0.17f) + curveToRelative(0.12f, -0.06f, 0.2f, -0.13f, 0.26f, -0.22f) + arcToRelative(0.88f, 0.88f, 0.0f, false, false, 0.11f, -0.48f) + curveToRelative(0.0f, -0.3f, -0.06f, -0.46f, -0.12f, -0.55f) + arcToRelative(0.52f, 0.52f, 0.0f, false, false, -0.22f, -0.2f) + arcToRelative(1.81f, 1.81f, 0.0f, false, false, -0.78f, -0.13f) + lineTo(10.5f, 7.75f) + lineTo(10.5f, 9.5f) + horizontalLineToRelative(1.88f) + close() + moveTo(2.0f, 15.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(2.75f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(2.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(2.75f, 19.5f) + close() + } + } + return _textUnderlineDouble!! + } + +private var _textUnderlineDouble: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextWordCount.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextWordCount.kt new file mode 100644 index 00000000..f748c1b3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextWordCount.kt @@ -0,0 +1,101 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextWordCount: ImageVector + get() { + if (_textWordCount != null) { + return _textWordCount!! + } + _textWordCount = fluentIcon(name = "Regular.TextWordCount") { + fluentPath { + moveTo(2.0f, 5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(2.75f, 6.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 2.0f, 5.75f) + close() + moveTo(2.0f, 12.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(2.75f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(19.0f, 18.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(2.42f, 18.74f) + curveToRelative(0.2f, -0.14f, 0.41f, -0.3f, 0.6f, -0.48f) + verticalLineToRelative(3.99f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.48f, -0.16f) + curveToRelative(-0.13f, 0.58f, -0.7f, 1.39f, -1.46f, 1.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.84f, 1.25f) + close() + moveTo(8.0f, 17.52f) + curveToRelative(0.0f, -0.52f, 0.44f, -1.02f, 0.99f, -1.02f) + curveToRelative(0.4f, 0.0f, 0.73f, 0.2f, 0.89f, 0.43f) + curveToRelative(0.13f, 0.21f, 0.22f, 0.57f, -0.1f, 1.1f) + arcToRelative(2.7f, 2.7f, 0.0f, false, true, -0.68f, 0.72f) + lineToRelative(-0.49f, 0.37f) + lineToRelative(-0.07f, 0.05f) + lineToRelative(-0.48f, 0.34f) + curveToRelative(-0.74f, 0.56f, -1.56f, 1.34f, -1.56f, 2.74f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.45f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(8.2f, 21.5f) + curveToRelative(0.16f, -0.28f, 0.42f, -0.52f, 0.78f, -0.8f) + lineToRelative(0.43f, -0.3f) + lineToRelative(0.08f, -0.06f) + curveToRelative(0.18f, -0.13f, 0.37f, -0.26f, 0.55f, -0.41f) + curveToRelative(0.38f, -0.3f, 0.76f, -0.66f, 1.05f, -1.14f) + curveToRelative(0.56f, -0.95f, 0.55f, -1.92f, 0.06f, -2.67f) + arcToRelative(2.53f, 2.53f, 0.0f, false, false, -4.64f, 1.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + close() + moveTo(14.47f, 17.14f) + curveToRelative(0.03f, -0.11f, 0.1f, -0.27f, 0.25f, -0.4f) + curveToRelative(0.13f, -0.11f, 0.36f, -0.24f, 0.78f, -0.24f) + curveToRelative(0.76f, 0.0f, 1.0f, 0.5f, 1.0f, 0.73f) + curveToRelative(0.0f, 0.24f, -0.05f, 0.49f, -0.19f, 0.66f) + curveToRelative(-0.11f, 0.14f, -0.38f, 0.36f, -1.1f, 0.36f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + curveToRelative(0.27f, 0.0f, 0.65f, 0.04f, 0.93f, 0.17f) + curveToRelative(0.13f, 0.06f, 0.22f, 0.13f, 0.27f, 0.2f) + curveToRelative(0.04f, 0.06f, 0.09f, 0.17f, 0.09f, 0.36f) + curveToRelative(0.0f, 0.48f, -0.15f, 0.7f, -0.28f, 0.8f) + curveToRelative(-0.15f, 0.14f, -0.4f, 0.22f, -0.72f, 0.22f) + curveToRelative(-0.36f, 0.0f, -0.57f, -0.06f, -0.7f, -0.14f) + curveToRelative(-0.1f, -0.07f, -0.23f, -0.2f, -0.34f, -0.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.42f, 0.47f) + curveToRelative(0.18f, 0.57f, 0.5f, 1.03f, 0.97f, 1.33f) + curveToRelative(0.45f, 0.28f, 0.98f, 0.37f, 1.49f, 0.37f) + arcToRelative(2.6f, 2.6f, 0.0f, false, false, 1.69f, -0.56f) + curveToRelative(0.52f, -0.45f, 0.81f, -1.12f, 0.81f, -1.96f) + arcToRelative(2.07f, 2.07f, 0.0f, false, false, -0.63f, -1.52f) + lineToRelative(0.11f, -0.14f) + curveToRelative(0.44f, -0.55f, 0.52f, -1.19f, 0.52f, -1.6f) + curveToRelative(0.0f, -1.07f, -0.93f, -2.22f, -2.5f, -2.22f) + arcToRelative(2.6f, 2.6f, 0.0f, false, false, -1.77f, 0.62f) + curveToRelative(-0.4f, 0.35f, -0.61f, 0.78f, -0.7f, 1.1f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.44f, 0.42f) + close() + } + } + return _textWordCount!! + } + +private var _textWordCount: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextWrap.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextWrap.kt new file mode 100644 index 00000000..be72af00 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextWrap.kt @@ -0,0 +1,51 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextWrap: ImageVector + get() { + if (_textWrap != null) { + return _textWrap!! + } + _textWrap = fluentIcon(name = "Regular.TextWrap") { + fluentPath { + moveTo(2.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(2.75f, 5.0f) + close() + moveTo(2.75f, 11.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(19.0f, 13.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, 5.0f) + horizontalLineToRelative(-4.44f) + lineToRelative(0.72f, -0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f) + lineToRelative(-2.0f, 2.0f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-0.72f, -0.72f) + lineTo(19.0f, 19.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) + lineTo(2.75f, 11.5f) + close() + moveTo(2.0f, 18.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _textWrap!! + } + +private var _textWrap: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextWrapOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextWrapOff.kt new file mode 100644 index 00000000..a1dfce29 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextWrapOff.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextWrapOff: ImageVector + get() { + if (_textWrapOff != null) { + return _textWrapOff!! + } + _textWrapOff = fluentIcon(name = "Regular.TextWrapOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(3.94f, 5.0f) + horizontalLineTo(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.69f) + lineToRelative(5.0f, 5.0f) + horizontalLineTo(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(9.19f) + lineToRelative(3.03f, 3.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.19f) + lineToRelative(-2.0f, 2.0f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-0.72f, -0.72f) + horizontalLineToRelative(3.88f) + lineToRelative(2.28f, 2.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(16.94f, 18.0f) + horizontalLineToRelative(-2.38f) + lineToRelative(0.72f, -0.72f) + curveToRelative(0.2f, -0.2f, 0.27f, -0.5f, 0.19f, -0.75f) + lineTo(16.94f, 18.0f) + close() + moveTo(19.0f, 11.5f) + horizontalLineToRelative(-4.32f) + lineToRelative(1.5f, 1.5f) + horizontalLineTo(19.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 1.6f, 4.42f) + lineToRelative(1.06f, 1.06f) + arcTo(3.99f, 3.99f, 0.0f, false, false, 19.0f, 11.5f) + close() + moveTo(8.18f, 5.0f) + lineToRelative(1.5f, 1.5f) + horizontalLineToRelative(11.57f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(8.18f) + close() + moveTo(2.0f, 18.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _textWrapOff!! + } + +private var _textWrapOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Textbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Textbox.kt new file mode 100644 index 00000000..624a2e29 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Textbox.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Textbox: ImageVector + get() { + if (_textbox != null) { + return _textbox!! + } + _textbox = fluentIcon(name = "Regular.Textbox") { + fluentPath { + moveTo(18.25f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) + lineTo(5.75f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(12.5f) + close() + moveTo(18.25f, 4.5f) + lineTo(5.75f, 4.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(12.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + lineTo(19.5f, 5.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + close() + moveTo(14.25f, 11.5f) + horizontalLineToRelative(-7.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(7.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(6.75f, 15.5f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(17.25f, 7.5f) + lineTo(6.65f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(10.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + } + } + return _textbox!! + } + +private var _textbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextboxAlignBottom.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextboxAlignBottom.kt new file mode 100644 index 00000000..4dd7b13a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextboxAlignBottom.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextboxAlignBottom: ImageVector + get() { + if (_textboxAlignBottom != null) { + return _textboxAlignBottom!! + } + _textboxAlignBottom = fluentIcon(name = "Regular.TextboxAlignBottom") { + fluentPath { + moveTo(6.75f, 13.5f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(17.25f, 16.5f) + lineTo(6.65f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(10.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(21.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) + lineTo(5.75f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) + lineTo(21.0f, 5.75f) + close() + moveTo(5.75f, 4.5f) + horizontalLineToRelative(12.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + lineTo(5.75f, 19.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + lineTo(4.5f, 5.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + close() + } + } + return _textboxAlignBottom!! + } + +private var _textboxAlignBottom: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextboxAlignBottomRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextboxAlignBottomRotate90.kt new file mode 100644 index 00000000..41b75aaa --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextboxAlignBottomRotate90.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextboxAlignBottomRotate90: ImageVector + get() { + if (_textboxAlignBottomRotate90 != null) { + return _textboxAlignBottomRotate90!! + } + _textboxAlignBottomRotate90 = fluentIcon(name = "Regular.TextboxAlignBottomRotate90") { + fluentPath { + moveTo(10.5f, 6.75f) + verticalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(9.0f, 6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.1f) + close() + moveTo(7.5f, 17.25f) + lineTo(7.5f, 6.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + verticalLineToRelative(10.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + close() + moveTo(18.25f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) + lineTo(21.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) + lineTo(5.75f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) + horizontalLineToRelative(12.5f) + close() + moveTo(19.5f, 5.75f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + lineTo(5.75f, 19.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + lineTo(4.5f, 5.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(12.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + close() + } + } + return _textboxAlignBottomRotate90!! + } + +private var _textboxAlignBottomRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextboxAlignCenter.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextboxAlignCenter.kt new file mode 100644 index 00000000..81c3809a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextboxAlignCenter.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextboxAlignCenter: ImageVector + get() { + if (_textboxAlignCenter != null) { + return _textboxAlignCenter!! + } + _textboxAlignCenter = fluentIcon(name = "Regular.TextboxAlignCenter") { + fluentPath { + moveTo(7.0f, 10.0f) + horizontalLineToRelative(10.0f) + curveToRelative(0.55f, 0.0f, 1.0f, 0.34f, 1.0f, 0.75f) + curveToRelative(0.0f, 0.38f, -0.38f, 0.7f, -0.86f, 0.74f) + lineToRelative(-0.14f, 0.01f) + lineTo(7.0f, 11.5f) + curveToRelative(-0.55f, 0.0f, -1.0f, -0.34f, -1.0f, -0.75f) + curveToRelative(0.0f, -0.38f, 0.38f, -0.7f, 0.86f, -0.74f) + lineTo(7.0f, 10.0f) + close() + moveTo(15.33f, 13.0f) + lineTo(8.57f, 13.0f) + curveToRelative(-0.32f, 0.06f, -0.57f, 0.37f, -0.57f, 0.75f) + curveToRelative(0.0f, 0.41f, 0.3f, 0.75f, 0.67f, 0.75f) + horizontalLineToRelative(6.76f) + curveToRelative(0.32f, -0.06f, 0.57f, -0.37f, 0.57f, -0.75f) + curveToRelative(0.0f, -0.41f, -0.3f, -0.75f, -0.67f, -0.75f) + close() + moveTo(21.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) + lineTo(5.75f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) + lineTo(21.0f, 5.75f) + close() + moveTo(5.75f, 4.5f) + horizontalLineToRelative(12.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + lineTo(5.75f, 19.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + lineTo(4.5f, 5.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + close() + } + } + return _textboxAlignCenter!! + } + +private var _textboxAlignCenter: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextboxAlignMiddle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextboxAlignMiddle.kt new file mode 100644 index 00000000..85cb0315 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextboxAlignMiddle.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextboxAlignMiddle: ImageVector + get() { + if (_textboxAlignMiddle != null) { + return _textboxAlignMiddle!! + } + _textboxAlignMiddle = fluentIcon(name = "Regular.TextboxAlignMiddle") { + fluentPath { + moveTo(7.0f, 10.0f) + horizontalLineToRelative(10.0f) + curveToRelative(0.55f, 0.0f, 1.0f, 0.34f, 1.0f, 0.75f) + curveToRelative(0.0f, 0.38f, -0.38f, 0.7f, -0.86f, 0.74f) + lineToRelative(-0.14f, 0.01f) + lineTo(7.0f, 11.5f) + curveToRelative(-0.55f, 0.0f, -1.0f, -0.34f, -1.0f, -0.75f) + curveToRelative(0.0f, -0.38f, 0.38f, -0.7f, 0.86f, -0.74f) + lineTo(7.0f, 10.0f) + close() + moveTo(17.0f, 13.0f) + lineTo(6.86f, 13.0f) + curveToRelative(-0.48f, 0.06f, -0.86f, 0.37f, -0.86f, 0.75f) + curveToRelative(0.0f, 0.41f, 0.45f, 0.75f, 1.0f, 0.75f) + horizontalLineToRelative(10.14f) + curveToRelative(0.48f, -0.06f, 0.86f, -0.37f, 0.86f, -0.75f) + curveToRelative(0.0f, -0.41f, -0.45f, -0.75f, -1.0f, -0.75f) + close() + moveTo(21.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) + lineTo(5.75f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) + lineTo(21.0f, 5.75f) + close() + moveTo(5.75f, 4.5f) + horizontalLineToRelative(12.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + lineTo(5.75f, 19.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + lineTo(4.5f, 5.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + close() + } + } + return _textboxAlignMiddle!! + } + +private var _textboxAlignMiddle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextboxAlignMiddleRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextboxAlignMiddleRotate90.kt new file mode 100644 index 00000000..1594ccbe --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextboxAlignMiddleRotate90.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextboxAlignMiddleRotate90: ImageVector + get() { + if (_textboxAlignMiddleRotate90 != null) { + return _textboxAlignMiddleRotate90!! + } + _textboxAlignMiddleRotate90 = fluentIcon(name = "Regular.TextboxAlignMiddleRotate90") { + fluentPath { + moveTo(14.0f, 7.0f) + verticalLineToRelative(10.0f) + curveToRelative(0.0f, 0.55f, -0.34f, 1.0f, -0.75f, 1.0f) + curveToRelative(-0.38f, 0.0f, -0.7f, -0.38f, -0.74f, -0.86f) + lineTo(12.5f, 17.0f) + lineTo(12.5f, 7.0f) + curveToRelative(0.0f, -0.55f, 0.34f, -1.0f, 0.75f, -1.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.38f, 0.74f, 0.86f) + lineTo(14.0f, 7.0f) + close() + moveTo(11.0f, 17.0f) + lineTo(11.0f, 6.86f) + curveToRelative(-0.06f, -0.48f, -0.37f, -0.86f, -0.75f, -0.86f) + curveToRelative(-0.41f, 0.0f, -0.75f, 0.45f, -0.75f, 1.0f) + verticalLineToRelative(10.14f) + curveToRelative(0.06f, 0.48f, 0.37f, 0.86f, 0.75f, 0.86f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.45f, 0.75f, -1.0f) + close() + moveTo(18.25f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) + lineTo(21.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) + lineTo(5.75f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) + horizontalLineToRelative(12.5f) + close() + moveTo(19.5f, 5.75f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + lineTo(5.75f, 19.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + lineTo(4.5f, 5.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(12.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + close() + } + } + return _textboxAlignMiddleRotate90!! + } + +private var _textboxAlignMiddleRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextboxAlignTop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextboxAlignTop.kt new file mode 100644 index 00000000..5779ace1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextboxAlignTop.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextboxAlignTop: ImageVector + get() { + if (_textboxAlignTop != null) { + return _textboxAlignTop!! + } + _textboxAlignTop = fluentIcon(name = "Regular.TextboxAlignTop") { + fluentPath { + moveTo(21.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) + lineTo(5.75f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) + lineTo(21.0f, 5.75f) + close() + moveTo(5.75f, 4.5f) + horizontalLineToRelative(12.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + lineTo(5.75f, 19.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + lineTo(4.5f, 5.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + close() + moveTo(6.75f, 7.5f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(17.25f, 10.5f) + lineTo(6.65f, 10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(10.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + } + } + return _textboxAlignTop!! + } + +private var _textboxAlignTop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextboxAlignTopRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextboxAlignTopRotate90.kt new file mode 100644 index 00000000..2e6759fd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextboxAlignTopRotate90.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextboxAlignTopRotate90: ImageVector + get() { + if (_textboxAlignTopRotate90 != null) { + return _textboxAlignTopRotate90!! + } + _textboxAlignTopRotate90 = fluentIcon(name = "Regular.TextboxAlignTopRotate90") { + fluentPath { + moveTo(18.25f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 21.0f, 18.25f) + lineTo(21.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) + lineTo(5.75f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) + horizontalLineToRelative(12.5f) + close() + moveTo(19.5f, 5.75f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + lineTo(5.75f, 19.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + lineTo(4.5f, 5.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(12.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + close() + moveTo(16.5f, 6.75f) + verticalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(15.0f, 6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.1f) + close() + moveTo(13.5f, 17.25f) + lineTo(13.5f, 6.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + verticalLineToRelative(10.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + close() + } + } + return _textboxAlignTopRotate90!! + } + +private var _textboxAlignTopRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextboxMore.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextboxMore.kt new file mode 100644 index 00000000..c9b0373d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextboxMore.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextboxMore: ImageVector + get() { + if (_textboxMore != null) { + return _textboxMore!! + } + _textboxMore = fluentIcon(name = "Regular.TextboxMore") { + fluentPath { + moveTo(21.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 18.25f, 3.0f) + lineTo(5.75f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 3.0f, 5.75f) + verticalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 5.75f, 21.0f) + horizontalLineToRelative(2.3f) + arcToRelative(2.51f, 2.51f, 0.0f, false, true, 0.16f, -1.5f) + lineTo(5.75f, 19.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + lineTo(4.5f, 5.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(12.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(12.46f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 1.5f, -0.16f) + lineTo(21.0f, 5.75f) + close() + moveTo(6.75f, 11.5f) + horizontalLineToRelative(7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-7.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(17.25f, 15.5f) + lineTo(6.65f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(10.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -1.5f) + close() + moveTo(6.75f, 7.5f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(12.0f, 20.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + moveTo(15.5f, 22.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + close() + moveTo(20.5f, 22.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + close() + } + } + return _textboxMore!! + } + +private var _textboxMore: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextboxRotate90.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextboxRotate90.kt new file mode 100644 index 00000000..b91d645d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TextboxRotate90.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TextboxRotate90: ImageVector + get() { + if (_textboxRotate90 != null) { + return _textboxRotate90!! + } + _textboxRotate90 = fluentIcon(name = "Regular.TextboxRotate90") { + fluentPath { + moveTo(21.0f, 18.25f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 18.25f, 21.0f) + lineTo(5.75f, 21.0f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 3.0f, 18.25f) + lineTo(3.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 5.75f, 3.0f) + horizontalLineToRelative(12.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 21.0f, 5.75f) + verticalLineToRelative(12.5f) + close() + moveTo(19.5f, 18.25f) + lineTo(19.5f, 5.75f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + lineTo(5.75f, 4.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(12.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(12.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + close() + moveTo(12.5f, 14.25f) + verticalLineToRelative(-7.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + verticalLineToRelative(7.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + close() + moveTo(8.5f, 6.75f) + verticalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(7.0f, 6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, -0.1f) + verticalLineToRelative(0.1f) + close() + moveTo(16.5f, 17.25f) + lineTo(16.5f, 6.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + verticalLineToRelative(10.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + close() + } + } + return _textboxRotate90!! + } + +private var _textboxRotate90: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Thinking.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Thinking.kt new file mode 100644 index 00000000..546f8769 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Thinking.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Thinking: ImageVector + get() { + if (_thinking != null) { + return _thinking!! + } + _thinking = fluentIcon(name = "Regular.Thinking") { + fluentPath { + moveTo(4.0f, 18.0f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, 0.0f, 4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 0.0f, -4.0f) + close() + moveTo(4.0f, 19.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 0.0f, 1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + close() + moveTo(9.5f, 15.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, 5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, -5.0f) + close() + moveTo(9.5f, 16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f) + close() + moveTo(11.82f, 2.0f) + arcToRelative(5.41f, 5.41f, 0.0f, false, true, 5.33f, 4.47f) + horizontalLineToRelative(0.09f) + arcToRelative(3.76f, 3.76f, 0.0f, true, true, 0.0f, 7.53f) + lineTo(6.4f, 14.0f) + arcToRelative(3.76f, 3.76f, 0.0f, true, true, 0.0f, -7.53f) + horizontalLineToRelative(0.08f) + arcTo(5.41f, 5.41f, 0.0f, false, true, 11.82f, 2.0f) + close() + moveTo(11.82f, 3.5f) + arcToRelative(3.93f, 3.93f, 0.0f, false, false, -3.91f, 3.73f) + arcToRelative(0.7f, 0.7f, 0.0f, false, true, -0.7f, 0.65f) + horizontalLineToRelative(-0.7f) + arcToRelative(2.31f, 2.31f, 0.0f, true, false, 0.0f, 4.62f) + horizontalLineToRelative(10.63f) + arcToRelative(2.31f, 2.31f, 0.0f, true, false, 0.0f, -4.62f) + horizontalLineToRelative(-0.7f) + arcToRelative(0.7f, 0.7f, 0.0f, false, true, -0.69f, -0.65f) + arcToRelative(3.93f, 3.93f, 0.0f, false, false, -3.92f, -3.73f) + close() + } + } + return _thinking!! + } + +private var _thinking: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ThumbDislike.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ThumbDislike.kt new file mode 100644 index 00000000..197c52c6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ThumbDislike.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ThumbDislike: ImageVector + get() { + if (_thumbDislike != null) { + return _thumbDislike!! + } + _thumbDislike = fluentIcon(name = "Regular.ThumbDislike") { + fluentPath { + moveTo(16.5f, 17.99f) + curveToRelative(0.0f, 2.44f, -1.14f, 4.2f, -3.0f, 4.2f) + curveToRelative(-0.98f, 0.0f, -1.35f, -0.55f, -1.7f, -1.8f) + lineToRelative(-0.2f, -0.77f) + arcToRelative(267.17f, 267.17f, 0.0f, false, false, -0.56f, -1.9f) + lineToRelative(-2.87f, -4.49f) + arcToRelative(5.88f, 5.88f, 0.0f, false, false, -2.85f, -2.32f) + lineToRelative(-0.47f, -0.18f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -1.72f, -3.1f) + lineToRelative(0.4f, -2.08f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 5.95f, 3.0f) + lineToRelative(7.63f, -1.87f) + arcToRelative(4.75f, 4.75f, 0.0f, false, true, 5.73f, 3.44f) + lineToRelative(1.42f, 5.55f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.15f, 4.05f) + horizontalLineToRelative(-1.83f) + curveToRelative(0.5f, 1.64f, 0.75f, 2.9f, 0.75f, 3.8f) + close() + moveTo(4.6f, 7.92f) + curveToRelative(-0.11f, 0.6f, 0.21f, 1.19f, 0.78f, 1.4f) + lineToRelative(0.47f, 0.19f) + arcToRelative(7.38f, 7.38f, 0.0f, false, true, 3.59f, 2.92f) + lineToRelative(2.86f, 4.48f) + curveToRelative(0.1f, 0.14f, 0.16f, 0.3f, 0.2f, 0.46f) + lineToRelative(0.56f, 1.92f) + lineToRelative(0.21f, 0.79f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.22f, 0.6f) + curveToRelative(0.87f, 0.0f, 1.51f, -0.98f, 1.51f, -2.7f) + curveToRelative(0.0f, -0.88f, -0.33f, -2.33f, -0.98f, -4.31f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.7f, -0.99f) + horizontalLineToRelative(2.86f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 1.7f, -2.18f) + lineToRelative(-1.42f, -5.55f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.93f, -2.35f) + lineTo(6.31f, 4.47f) + curveToRelative(-0.67f, 0.16f, -1.17f, 0.7f, -1.3f, 1.36f) + lineToRelative(-0.4f, 2.1f) + close() + } + } + return _thumbDislike!! + } + +private var _thumbDislike: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ThumbLike.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ThumbLike.kt new file mode 100644 index 00000000..f4ae5c7e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ThumbLike.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ThumbLike: ImageVector + get() { + if (_thumbLike != null) { + return _thumbLike!! + } + _thumbLike = fluentIcon(name = "Regular.ThumbLike") { + fluentPath { + moveTo(16.5f, 5.2f) + curveToRelative(0.0f, -2.44f, -1.14f, -4.2f, -3.0f, -4.2f) + curveToRelative(-1.03f, 0.0f, -1.39f, 0.6f, -1.75f, 2.0f) + lineToRelative(-0.15f, 0.57f) + arcToRelative(268.49f, 268.49f, 0.0f, false, true, -0.56f, 1.9f) + lineTo(8.17f, 9.95f) + arcToRelative(5.88f, 5.88f, 0.0f, false, true, -2.85f, 2.33f) + lineToRelative(-0.47f, 0.18f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -1.72f, 3.1f) + lineToRelative(0.4f, 2.08f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 2.42f, 2.54f) + lineToRelative(7.63f, 1.87f) + arcToRelative(4.75f, 4.75f, 0.0f, false, false, 5.73f, -3.44f) + lineToRelative(1.42f, -5.55f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 17.58f, 9.0f) + horizontalLineToRelative(-1.83f) + curveToRelative(0.5f, -1.63f, 0.75f, -2.89f, 0.75f, -3.8f) + close() + moveTo(4.6f, 15.27f) + curveToRelative(-0.11f, -0.6f, 0.21f, -1.2f, 0.78f, -1.4f) + lineToRelative(0.47f, -0.19f) + arcToRelative(7.38f, 7.38f, 0.0f, false, false, 3.59f, -2.92f) + lineToRelative(2.86f, -4.48f) + curveToRelative(0.1f, -0.15f, 0.16f, -0.3f, 0.2f, -0.46f) + arcToRelative(261.43f, 261.43f, 0.0f, false, false, 0.7f, -2.43f) + curveToRelative(0.19f, -0.73f, 0.28f, -0.89f, 0.3f, -0.89f) + curveToRelative(0.86f, 0.0f, 1.5f, 0.99f, 1.5f, 2.7f) + curveToRelative(0.0f, 0.89f, -0.33f, 2.34f, -0.98f, 4.32f) + curveToRelative(-0.17f, 0.48f, 0.2f, 0.98f, 0.7f, 0.98f) + horizontalLineToRelative(2.86f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 1.7f, 2.19f) + lineToRelative(-1.42f, 5.55f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.93f, 2.35f) + lineToRelative(-7.62f, -1.87f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 5.0f, 17.35f) + lineToRelative(-0.4f, -2.08f) + close() + } + } + return _thumbLike!! + } + +private var _thumbLike: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TicketDiagonal.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TicketDiagonal.kt new file mode 100644 index 00000000..b93dfd1d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TicketDiagonal.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TicketDiagonal: ImageVector + get() { + if (_ticketDiagonal != null) { + return _ticketDiagonal!! + } + _ticketDiagonal = fluentIcon(name = "Regular.TicketDiagonal") { + fluentPath { + moveTo(14.53f, 3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-9.88f, 9.87f) + curveToRelative(-0.3f, 0.3f, -0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(1.07f, 1.07f) + arcTo(2.74f, 2.74f, 0.0f, false, true, 8.75f, 18.0f) + curveToRelative(0.0f, 0.49f, -0.13f, 0.94f, -0.35f, 1.34f) + lineToRelative(1.07f, 1.07f) + curveToRelative(0.3f, 0.3f, 0.77f, 0.3f, 1.06f, 0.0f) + lineToRelative(9.88f, -9.88f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + lineTo(19.34f, 8.4f) + arcTo(2.74f, 2.74f, 0.0f, false, true, 15.25f, 6.0f) + curveToRelative(0.0f, -0.49f, 0.13f, -0.94f, 0.35f, -1.34f) + lineToRelative(-1.07f, -1.07f) + close() + moveTo(12.41f, 2.53f) + curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.0f) + lineToRelative(1.17f, 1.17f) + curveToRelative(0.51f, 0.51f, 0.42f, 1.23f, 0.16f, 1.66f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, 1.71f, 1.71f) + curveToRelative(0.44f, -0.25f, 1.16f, -0.34f, 1.67f, 0.17f) + lineToRelative(1.17f, 1.17f) + curveToRelative(0.88f, 0.88f, 0.88f, 2.3f, 0.0f, 3.18f) + lineToRelative(-9.88f, 9.88f) + curveToRelative(-0.88f, 0.88f, -2.3f, 0.88f, -3.18f, 0.0f) + lineTo(7.24f, 20.3f) + curveToRelative(-0.51f, -0.51f, -0.42f, -1.23f, -0.16f, -1.66f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.71f, -1.71f) + curveToRelative(-0.44f, 0.25f, -1.16f, 0.34f, -1.67f, -0.17f) + lineTo(2.53f, 15.6f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 0.0f, -3.18f) + lineToRelative(9.88f, -9.88f) + close() + } + } + return _ticketDiagonal!! + } + +private var _ticketDiagonal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TicketHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TicketHorizontal.kt new file mode 100644 index 00000000..416a7c9c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TicketHorizontal.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TicketHorizontal: ImageVector + get() { + if (_ticketHorizontal != null) { + return _ticketHorizontal!! + } + _ticketHorizontal = fluentIcon(name = "Regular.TicketHorizontal") { + fluentPath { + moveTo(20.25f, 5.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(2.26f) + curveToRelative(0.0f, 0.4f, -0.3f, 0.72f, -0.69f, 0.75f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, 4.48f) + curveToRelative(0.4f, 0.03f, 0.69f, 0.36f, 0.69f, 0.75f) + verticalLineToRelative(2.26f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(3.75f, 19.0f) + curveTo(2.78f, 19.0f, 2.0f, 18.22f, 2.0f, 17.25f) + verticalLineToRelative(-2.26f) + curveToRelative(0.0f, -0.4f, 0.3f, -0.72f, 0.69f, -0.75f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.0f, -4.48f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 2.0f, 9.0f) + lineTo(2.0f, 6.75f) + curveTo(2.0f, 5.78f, 2.78f, 5.0f, 3.75f, 5.0f) + horizontalLineToRelative(16.5f) + close() + moveTo(20.5f, 8.38f) + lineTo(20.5f, 6.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + lineTo(3.75f, 6.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(1.63f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 0.0f, 7.24f) + verticalLineToRelative(1.63f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(16.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-1.63f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -0.19f, -7.18f) + lineToRelative(0.19f, -0.06f) + close() + } + } + return _ticketHorizontal!! + } + +private var _ticketHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TimeAndWeather.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TimeAndWeather.kt new file mode 100644 index 00000000..10e44411 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TimeAndWeather.kt @@ -0,0 +1,101 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TimeAndWeather: ImageVector + get() { + if (_timeAndWeather != null) { + return _timeAndWeather!! + } + _timeAndWeather = fluentIcon(name = "Regular.TimeAndWeather") { + fluentPath { + moveTo(12.0f, 19.01f) + curveToRelative(0.38f, 0.0f, 0.69f, 0.28f, 0.74f, 0.65f) + verticalLineToRelative(1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.49f, 0.1f) + verticalLineToRelative(-1.6f) + curveToRelative(0.0f, -0.41f, 0.33f, -0.75f, 0.75f, -0.75f) + close() + moveTo(18.02f, 16.94f) + lineTo(19.08f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineTo(16.96f, 18.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + close() + moveTo(7.03f, 16.94f) + curveToRelative(0.3f, 0.29f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-1.06f, 1.06f) + arcTo(0.75f, 0.75f, 0.0f, true, true, 4.91f, 18.0f) + lineToRelative(1.06f, -1.06f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(12.0f, 6.47f) + arcToRelative(5.53f, 5.53f, 0.0f, true, true, 0.0f, 11.05f) + arcToRelative(5.53f, 5.53f, 0.0f, false, true, 0.0f, -11.05f) + close() + moveTo(12.0f, 7.97f) + arcToRelative(4.03f, 4.03f, 0.0f, true, false, 0.0f, 8.05f) + arcToRelative(4.03f, 4.03f, 0.0f, false, false, 0.0f, -8.05f) + close() + moveTo(11.25f, 9.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + lineTo(12.0f, 12.0f) + horizontalLineToRelative(1.25f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.29f, 0.74f, 0.65f) + verticalLineToRelative(0.1f) + curveToRelative(0.0f, 0.38f, -0.27f, 0.7f, -0.64f, 0.75f) + horizontalLineToRelative(-2.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.64f) + lineToRelative(-0.01f, -0.1f) + lineTo(10.5f, 9.74f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(21.25f, 11.27f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(1.6f) + close() + moveTo(4.25f, 11.24f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(1.6f) + close() + moveTo(5.89f, 4.87f) + lineTo(5.97f, 4.94f) + lineTo(7.03f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.97f, 1.13f) + lineToRelative(-0.09f, -0.07f) + lineTo(4.91f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.98f, -1.13f) + close() + moveTo(19.08f, 4.94f) + curveToRelative(0.26f, 0.27f, 0.29f, 0.68f, 0.07f, 0.98f) + lineToRelative(-0.07f, 0.08f) + lineToRelative(-1.06f, 1.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.14f, -0.97f) + lineToRelative(0.08f, -0.09f) + lineToRelative(1.06f, -1.06f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(12.0f, 2.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-1.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _timeAndWeather!! + } + +private var _timeAndWeather: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TimePicker.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TimePicker.kt new file mode 100644 index 00000000..b2e7fa17 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TimePicker.kt @@ -0,0 +1,100 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TimePicker: ImageVector + get() { + if (_timePicker != null) { + return _timePicker!! + } + _timePicker = fluentIcon(name = "Regular.TimePicker") { + fluentPath { + moveTo(12.47f, 2.17f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.94f, 0.0f) + lineToRelative(-4.0f, 3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.94f, 1.16f) + lineTo(12.0f, 3.72f) + lineToRelative(3.53f, 2.86f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.94f, -1.16f) + lineToRelative(-4.0f, -3.25f) + close() + moveTo(2.75f, 9.0f) + curveTo(1.51f, 9.0f, 0.5f, 10.0f, 0.5f, 11.25f) + verticalLineToRelative(1.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) + verticalLineToRelative(-1.5f) + curveTo(5.0f, 10.01f, 4.0f, 9.0f, 2.75f, 9.0f) + close() + moveTo(2.0f, 11.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.5f) + close() + moveTo(8.25f, 9.0f) + curveTo(7.01f, 9.0f, 6.0f, 10.0f, 6.0f, 11.25f) + verticalLineToRelative(1.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + close() + moveTo(7.5f, 11.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.5f) + close() + moveTo(14.0f, 11.25f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, 4.5f, 0.0f) + verticalLineToRelative(1.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) + verticalLineToRelative(-1.5f) + close() + moveTo(16.25f, 10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(21.75f, 9.0f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(1.5f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 4.5f, 0.0f) + verticalLineToRelative(-1.5f) + curveTo(24.0f, 10.01f, 23.0f, 9.0f, 21.75f, 9.0f) + close() + moveTo(21.0f, 11.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.5f) + close() + moveTo(13.0f, 10.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(12.25f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + close() + moveTo(12.47f, 21.83f) + lineTo(16.47f, 18.58f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.94f, -1.16f) + lineTo(12.0f, 20.28f) + lineToRelative(-3.53f, -2.86f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.94f, 1.16f) + lineToRelative(4.0f, 3.25f) + curveToRelative(0.27f, 0.23f, 0.67f, 0.23f, 0.94f, 0.0f) + close() + } + } + return _timePicker!! + } + +private var _timePicker: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Timeline.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Timeline.kt new file mode 100644 index 00000000..e6f76356 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Timeline.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Timeline: ImageVector + get() { + if (_timeline != null) { + return _timeline!! + } + _timeline = fluentIcon(name = "Regular.Timeline") { + fluentPath { + moveTo(15.25f, 13.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(3.75f, 21.0f) + curveTo(2.78f, 21.0f, 2.0f, 20.22f, 2.0f, 19.25f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + close() + moveTo(21.0f, 14.9f) + verticalLineToRelative(5.35f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(19.5f, 14.91f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 1.5f, -0.01f) + close() + moveTo(15.25f, 14.5f) + lineTo(3.75f, 14.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(11.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-4.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(20.25f, 10.1f) + arcToRelative(1.9f, 1.9f, 0.0f, true, true, 0.0f, 3.8f) + arcToRelative(1.9f, 1.9f, 0.0f, false, true, 0.0f, -3.8f) + close() + moveTo(15.25f, 3.0f) + curveTo(16.2f, 3.0f, 17.0f, 3.78f, 17.0f, 4.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.97f, -0.79f, 1.75f, -1.75f, 1.75f) + lineTo(3.75f, 11.0f) + curveTo(2.78f, 11.0f, 2.0f, 10.22f, 2.0f, 9.25f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) + lineTo(3.75f, 3.0f) + horizontalLineToRelative(11.5f) + close() + moveTo(15.25f, 4.5f) + lineTo(3.69f, 4.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.2f, 0.25f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.14f, 0.12f, 0.25f, 0.26f, 0.25f) + horizontalLineToRelative(11.5f) + curveToRelative(0.13f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-4.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + close() + moveTo(20.25f, 3.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + lineTo(21.0f, 9.1f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -1.5f, -0.01f) + lineTo(19.5f, 3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _timeline!! + } + +private var _timeline: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Timer.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Timer.kt new file mode 100644 index 00000000..c1143dc1 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Timer.kt @@ -0,0 +1,52 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Timer: ImageVector + get() { + if (_timer != null) { + return _timer!! + } + _timer = fluentIcon(name = "Regular.Timer") { + fluentPath { + moveTo(12.0f, 5.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, true, 0.0f, 17.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, 0.0f, -17.0f) + close() + moveTo(12.0f, 6.5f) + arcToRelative(7.0f, 7.0f, 0.0f, true, false, 0.0f, 14.0f) + arcToRelative(7.0f, 7.0f, 0.0f, false, false, 0.0f, -14.0f) + close() + moveTo(12.0f, 8.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + verticalLineToRelative(4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + verticalLineToRelative(-4.6f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(19.15f, 5.11f) + lineTo(19.23f, 5.17f) + lineTo(20.39f, 6.14f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.88f, 1.21f) + lineToRelative(-0.08f, -0.06f) + lineToRelative(-1.16f, -0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.88f, -1.22f) + close() + moveTo(14.25f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(4.6f) + close() + } + } + return _timer!! + } + +private var _timer: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Timer10.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Timer10.kt new file mode 100644 index 00000000..7c7c031f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Timer10.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Timer10: ImageVector + get() { + if (_timer10 != null) { + return _timer10!! + } + _timer10 = fluentIcon(name = "Regular.Timer10") { + fluentPath { + moveTo(12.0f, 5.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, 8.38f, 7.05f) + arcToRelative(4.28f, 4.28f, 0.0f, false, false, -1.52f, 0.04f) + arcToRelative(7.0f, 7.0f, 0.0f, true, false, -6.36f, 8.4f) + verticalLineToRelative(1.5f) + lineTo(12.0f, 22.0f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, 0.0f, -17.0f) + close() + moveTo(12.75f, 12.4f) + lineTo(12.75f, 8.66f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + verticalLineToRelative(4.59f) + curveToRelative(0.21f, -0.34f, 0.54f, -0.61f, 0.95f, -0.75f) + lineToRelative(0.55f, -0.18f) + close() + moveTo(19.15f, 5.11f) + lineTo(19.23f, 5.17f) + lineTo(20.39f, 6.14f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.88f, 1.21f) + lineToRelative(-0.08f, -0.06f) + lineToRelative(-1.16f, -0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.88f, -1.22f) + close() + moveTo(14.25f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(4.6f) + close() + moveTo(14.69f, 13.14f) + curveToRelative(0.2f, 0.14f, 0.31f, 0.37f, 0.31f, 0.61f) + verticalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-7.46f) + lineToRelative(-0.51f, 0.17f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.48f, -1.42f) + lineToRelative(1.5f, -0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.68f, 0.1f) + close() + moveTo(16.5f, 16.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 6.5f, 0.0f) + verticalLineToRelative(3.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.5f, 0.0f) + verticalLineToRelative(-3.5f) + close() + moveTo(19.75f, 14.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(3.5f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, 3.5f, 0.0f) + verticalLineToRelative(-3.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + } + } + return _timer10!! + } + +private var _timer10: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Timer2.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Timer2.kt new file mode 100644 index 00000000..2c5ac2e3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Timer2.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Timer2: ImageVector + get() { + if (_timer2 != null) { + return _timer2!! + } + _timer2 = fluentIcon(name = "Regular.Timer2") { + fluentPath { + moveTo(20.4f, 12.16f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, -5.4f, 9.3f) + verticalLineToRelative(-0.21f) + curveToRelative(0.0f, -0.56f, 0.1f, -1.09f, 0.3f, -1.58f) + arcToRelative(7.0f, 7.0f, 0.0f, true, true, 3.54f, -7.65f) + arcToRelative(4.3f, 4.3f, 0.0f, false, true, 1.55f, 0.14f) + close() + moveTo(12.74f, 8.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.49f, 0.1f) + verticalLineToRelative(4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + verticalLineToRelative(-4.6f) + close() + moveTo(19.23f, 5.17f) + lineTo(19.15f, 5.11f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.88f, 1.22f) + lineToRelative(1.16f, 0.96f) + lineToRelative(0.08f, 0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.88f, -1.21f) + lineToRelative(-1.16f, -0.97f) + close() + moveTo(15.0f, 3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(19.25f, 13.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 16.0f, 16.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + arcTo(1.75f, 1.75f, 0.0f, true, true, 19.25f, 18.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 16.0f, 21.25f) + verticalLineToRelative(1.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(17.5f, 21.5f) + verticalLineToRelative(-0.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 0.0f, -6.5f) + close() + } + } + return _timer2!! + } + +private var _timer2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Timer3.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Timer3.kt new file mode 100644 index 00000000..a643cc1b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Timer3.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Timer3: ImageVector + get() { + if (_timer3 != null) { + return _timer3!! + } + _timer3 = fluentIcon(name = "Regular.Timer3") { + fluentPath { + moveTo(20.4f, 12.15f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, -5.39f, 9.3f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.65f, -1.98f) + arcToRelative(7.0f, 7.0f, 0.0f, true, true, 3.18f, -7.45f) + arcToRelative(4.68f, 4.68f, 0.0f, false, true, 1.55f, 0.13f) + close() + moveTo(12.74f, 8.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.49f, 0.1f) + verticalLineToRelative(4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + verticalLineToRelative(-4.6f) + close() + moveTo(19.23f, 5.17f) + lineTo(19.15f, 5.11f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.88f, 1.22f) + lineToRelative(1.16f, 0.96f) + lineToRelative(0.08f, 0.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.88f, -1.21f) + lineToRelative(-1.16f, -0.97f) + close() + moveTo(15.0f, 3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.1f, 1.5f) + horizontalLineToRelative(4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.65f, -0.75f) + close() + moveTo(18.25f, 18.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + curveToRelative(0.53f, 0.0f, 1.06f, -0.18f, 1.44f, -0.47f) + curveToRelative(0.4f, -0.3f, 0.56f, -0.63f, 0.56f, -0.9f) + curveToRelative(0.0f, -0.65f, -0.66f, -1.38f, -1.75f, -1.38f) + curveToRelative(-0.52f, 0.0f, -1.01f, 0.19f, -1.4f, 0.4f) + arcToRelative(4.1f, 4.1f, 0.0f, false, false, -0.6f, 0.4f) + verticalLineToRelative(0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.0f, -1.12f) + lineToRelative(0.02f, -0.02f) + arcToRelative(3.08f, 3.08f, 0.0f, false, true, 0.23f, -0.18f) + curveToRelative(0.15f, -0.1f, 0.36f, -0.25f, 0.62f, -0.4f) + curveToRelative(0.51f, -0.28f, 1.27f, -0.59f, 2.13f, -0.59f) + curveToRelative(1.68f, 0.0f, 3.25f, 1.18f, 3.25f, 2.88f) + curveToRelative(0.0f, 0.89f, -0.52f, 1.62f, -1.16f, 2.1f) + lineToRelative(-0.03f, 0.02f) + lineToRelative(0.03f, 0.02f) + curveToRelative(0.64f, 0.48f, 1.16f, 1.21f, 1.16f, 2.1f) + curveToRelative(0.0f, 1.7f, -1.57f, 2.88f, -3.25f, 2.88f) + curveToRelative(-0.86f, 0.0f, -1.62f, -0.31f, -2.13f, -0.6f) + arcToRelative(5.58f, 5.58f, 0.0f, false, true, -0.85f, -0.57f) + lineToRelative(-0.01f, -0.01f) + lineToRelative(-0.01f, -0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.0f, -1.12f) + lineToRelative(0.02f, 0.02f) + arcToRelative(2.96f, 2.96f, 0.0f, false, false, 0.57f, 0.38f) + curveToRelative(0.4f, 0.22f, 0.9f, 0.41f, 1.41f, 0.41f) + curveToRelative(1.09f, 0.0f, 1.75f, -0.73f, 1.75f, -1.38f) + curveToRelative(0.0f, -0.27f, -0.17f, -0.6f, -0.56f, -0.9f) + arcToRelative(2.48f, 2.48f, 0.0f, false, false, -1.44f, -0.47f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + } + } + return _timer3!! + } + +private var _timer3: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TimerOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TimerOff.kt new file mode 100644 index 00000000..90073dde --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TimerOff.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TimerOff: ImageVector + get() { + if (_timerOff != null) { + return _timerOff!! + } + _timerOff = fluentIcon(name = "Regular.TimerOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(4.0f, 4.0f) + arcToRelative(8.5f, 8.5f, 0.0f, true, false, 12.01f, 12.01f) + lineToRelative(2.49f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.07f) + lineTo(3.28f, 2.22f) + close() + moveTo(17.16f, 18.22f) + arcToRelative(7.0f, 7.0f, 0.0f, true, true, -9.89f, -9.89f) + lineToRelative(3.98f, 3.98f) + verticalLineToRelative(1.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.37f, 0.33f) + lineToRelative(4.54f, 4.55f) + close() + moveTo(11.44f, 8.25f) + lineTo(12.75f, 9.57f) + lineTo(12.75f, 8.65f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.31f, -0.4f) + close() + moveTo(19.0f, 13.5f) + arcToRelative(7.0f, 7.0f, 0.0f, false, true, -0.3f, 2.02f) + lineToRelative(1.18f, 1.18f) + arcTo(8.5f, 8.5f, 0.0f, false, false, 8.8f, 5.62f) + lineTo(9.97f, 6.8f) + arcTo(7.0f, 7.0f, 0.0f, false, true, 19.0f, 13.5f) + close() + moveTo(19.15f, 5.11f) + lineTo(19.23f, 5.17f) + lineTo(20.39f, 6.14f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.88f, 1.21f) + lineToRelative(-0.08f, -0.06f) + lineToRelative(-1.16f, -0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.88f, -1.22f) + close() + moveTo(14.25f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-4.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(4.6f) + close() + } + } + return _timerOff!! + } + +private var _timerOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ToggleLeft.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ToggleLeft.kt new file mode 100644 index 00000000..8d0a97f2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ToggleLeft.kt @@ -0,0 +1,39 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ToggleLeft: ImageVector + get() { + if (_toggleLeft != null) { + return _toggleLeft!! + } + _toggleLeft = fluentIcon(name = "Regular.ToggleLeft") { + fluentPath { + moveTo(7.25f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.0f, -5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 0.0f, 5.0f) + close() + moveTo(22.0f, 12.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, -5.0f, -5.0f) + lineTo(7.0f, 7.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 0.0f, 10.0f) + horizontalLineToRelative(10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 5.0f, -5.0f) + close() + moveTo(17.0f, 8.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 0.0f, 7.0f) + lineTo(7.0f, 15.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 0.0f, -7.0f) + horizontalLineToRelative(10.0f) + close() + } + } + return _toggleLeft!! + } + +private var _toggleLeft: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ToggleMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ToggleMultiple.kt new file mode 100644 index 00000000..3cfb0d8d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ToggleMultiple.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ToggleMultiple: ImageVector + get() { + if (_toggleMultiple != null) { + return _toggleMultiple!! + } + _toggleMultiple = fluentIcon(name = "Regular.ToggleMultiple") { + fluentPath { + moveTo(6.5f, 8.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) + close() + moveTo(6.5f, 2.0f) + horizontalLineToRelative(11.0f) + arcToRelative(4.5f, 4.5f, 0.0f, true, true, 0.0f, 9.0f) + horizontalLineToRelative(-11.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, 0.0f, -9.0f) + close() + moveTo(17.5f, 3.5f) + horizontalLineToRelative(-11.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 0.0f, 6.0f) + horizontalLineToRelative(11.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) + close() + moveTo(17.5f, 19.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) + close() + moveTo(2.0f, 17.5f) + arcTo(4.5f, 4.5f, 0.0f, false, true, 6.5f, 13.0f) + horizontalLineToRelative(11.0f) + arcToRelative(4.5f, 4.5f, 0.0f, true, true, 0.0f, 9.0f) + horizontalLineToRelative(-11.0f) + arcTo(4.5f, 4.5f, 0.0f, false, true, 2.0f, 17.5f) + close() + moveTo(6.5f, 14.5f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, 6.0f) + horizontalLineToRelative(11.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 0.0f, -6.0f) + horizontalLineToRelative(-11.0f) + close() + } + } + return _toggleMultiple!! + } + +private var _toggleMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ToggleRight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ToggleRight.kt new file mode 100644 index 00000000..ace26edf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ToggleRight.kt @@ -0,0 +1,39 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ToggleRight: ImageVector + get() { + if (_toggleRight != null) { + return _toggleRight!! + } + _toggleRight = fluentIcon(name = "Regular.ToggleRight") { + fluentPath { + moveTo(16.75f, 14.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 0.0f, -5.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 0.0f, 5.0f) + close() + moveTo(2.0f, 12.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 5.0f, -5.0f) + horizontalLineToRelative(10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, 0.0f, 10.0f) + lineTo(7.0f, 17.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, true, -5.0f, -5.0f) + close() + moveTo(7.0f, 8.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, 7.0f) + horizontalLineToRelative(10.0f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 0.0f, -7.0f) + lineTo(7.0f, 8.5f) + close() + } + } + return _toggleRight!! + } + +private var _toggleRight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Toolbox.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Toolbox.kt new file mode 100644 index 00000000..df824a6b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Toolbox.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Toolbox: ImageVector + get() { + if (_toolbox != null) { + return _toolbox!! + } + _toolbox = fluentIcon(name = "Regular.Toolbox") { + fluentPath { + moveTo(7.0f, 6.25f) + lineTo(7.0f, 7.0f) + lineTo(4.25f, 7.0f) + curveTo(3.01f, 7.0f, 2.0f, 8.0f, 2.0f, 9.25f) + verticalLineToRelative(8.5f) + curveTo(2.0f, 18.99f, 3.0f, 20.0f, 4.25f, 20.0f) + horizontalLineToRelative(15.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.01f, 2.25f, -2.25f) + verticalLineToRelative(-8.5f) + curveTo(22.0f, 8.01f, 21.0f, 7.0f, 19.75f, 7.0f) + lineTo(17.0f, 7.0f) + verticalLineToRelative(-0.75f) + curveTo(17.0f, 5.01f, 16.0f, 4.0f, 14.75f, 4.0f) + horizontalLineToRelative(-5.5f) + curveTo(8.01f, 4.0f, 7.0f, 5.01f, 7.0f, 6.25f) + close() + moveTo(9.25f, 5.5f) + horizontalLineToRelative(5.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(15.5f, 7.0f) + horizontalLineToRelative(-7.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(7.0f, 8.5f) + horizontalLineToRelative(12.75f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.25f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(0.75f) + lineTo(8.0f, 11.5f) + verticalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(-3.0f) + lineTo(3.5f, 9.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + lineTo(7.0f, 8.5f) + close() + moveTo(16.0f, 13.0f) + verticalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(17.5f, 13.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(4.75f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(4.25f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(3.5f, 13.0f) + horizontalLineToRelative(3.0f) + verticalLineToRelative(1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(8.0f, 13.0f) + horizontalLineToRelative(8.0f) + close() + } + } + return _toolbox!! + } + +private var _toolbox: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TooltipQuote.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TooltipQuote.kt new file mode 100644 index 00000000..42dd3a91 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TooltipQuote.kt @@ -0,0 +1,89 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TooltipQuote: ImageVector + get() { + if (_tooltipQuote != null) { + return _tooltipQuote!! + } + _tooltipQuote = fluentIcon(name = "Regular.TooltipQuote") { + fluentPath { + moveTo(6.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, 0.64f) + curveToRelative(-0.3f, 0.67f, -0.71f, 1.13f, -0.91f, 1.33f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + arcTo(5.85f, 5.85f, 0.0f, false, false, 8.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-1.5f) + close() + moveTo(10.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.13f, 0.64f) + curveToRelative(-0.3f, 0.67f, -0.71f, 1.13f, -0.91f, 1.33f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + arcToRelative(5.85f, 5.85f, 0.0f, false, false, 1.72f, -4.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-1.5f) + close() + moveTo(2.0f, 4.25f) + curveTo(2.0f, 3.01f, 3.0f, 2.0f, 4.25f, 2.0f) + horizontalLineToRelative(9.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-1.94f) + lineToRelative(-1.9f, 3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.32f, 0.0f) + lineTo(6.19f, 14.0f) + lineTo(4.25f, 14.0f) + curveTo(3.01f, 14.0f, 2.0f, 13.0f, 2.0f, 11.75f) + verticalLineToRelative(-7.5f) + close() + moveTo(4.25f, 3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(2.4f) + curveToRelative(0.27f, 0.0f, 0.53f, 0.15f, 0.66f, 0.4f) + lineToRelative(1.44f, 2.74f) + lineToRelative(1.44f, -2.74f) + curveToRelative(0.13f, -0.25f, 0.39f, -0.4f, 0.67f, -0.4f) + horizontalLineToRelative(2.39f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-9.0f) + close() + moveTo(6.38f, 16.5f) + lineTo(2.75f, 16.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(4.42f) + lineToRelative(-0.8f, -1.5f) + close() + moveTo(10.33f, 18.0f) + horizontalLineToRelative(10.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(11.12f, 16.5f) + lineToRelative(-0.79f, 1.5f) + close() + moveTo(2.75f, 20.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-12.0f) + close() + } + } + return _tooltipQuote!! + } + +private var _tooltipQuote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TopSpeed.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TopSpeed.kt new file mode 100644 index 00000000..3843dd9c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TopSpeed.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TopSpeed: ImageVector + get() { + if (_topSpeed != null) { + return _topSpeed!! + } + _topSpeed = fluentIcon(name = "Regular.TopSpeed") { + fluentPath { + moveTo(6.54f, 5.48f) + arcToRelative(8.46f, 8.46f, 0.0f, false, true, 4.71f, -1.95f) + verticalLineToRelative(1.72f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(12.75f, 3.53f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, 7.74f, 7.97f) + horizontalLineToRelative(-1.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.7f) + arcToRelative(8.45f, 8.45f, 0.0f, false, true, -3.17f, 5.67f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.94f, 1.16f) + arcTo(9.93f, 9.93f, 0.0f, false, false, 22.0f, 12.0f) + arcToRelative(10.0f, 10.0f, 0.0f, true, false, -16.23f, 7.83f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.96f, -1.16f) + arcTo(8.66f, 8.66f, 0.0f, false, true, 3.56f, 13.0f) + horizontalLineToRelative(1.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(3.51f, 11.5f) + curveToRelative(0.11f, -1.88f, 0.84f, -3.6f, 1.97f, -4.96f) + lineToRelative(1.24f, 1.24f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(6.54f, 5.48f) + close() + moveTo(16.76f, 6.63f) + arcToRelative(0.65f, 0.65f, 0.0f, false, false, -0.8f, 0.02f) + lineToRelative(-0.23f, 0.18f) + arcToRelative(396.1f, 396.1f, 0.0f, false, false, -4.21f, 3.6f) + arcToRelative(37.86f, 37.86f, 0.0f, false, false, -1.1f, 1.05f) + curveToRelative(-0.66f, 0.8f, -0.52f, 1.98f, 0.3f, 2.62f) + curveToRelative(0.83f, 0.64f, 2.03f, 0.5f, 2.68f, -0.3f) + arcToRelative(37.18f, 37.18f, 0.0f, false, false, 0.78f, -1.3f) + arcToRelative(152.48f, 152.48f, 0.0f, false, false, 2.62f, -4.85f) + lineToRelative(0.13f, -0.24f) + arcToRelative(0.61f, 0.61f, 0.0f, false, false, -0.17f, -0.78f) + close() + } + } + return _topSpeed!! + } + +private var _topSpeed: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Translate.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Translate.kt new file mode 100644 index 00000000..21a97307 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Translate.kt @@ -0,0 +1,91 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Translate: ImageVector + get() { + if (_translate != null) { + return _translate!! + } + _translate = fluentIcon(name = "Regular.Translate") { + fluentPath { + moveTo(16.96f, 5.99f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.42f, -0.48f) + curveToRelative(-0.15f, 0.45f, -0.3f, 1.04f, -0.42f, 1.52f) + curveToRelative(-0.74f, 0.02f, -1.45f, 0.01f, -2.07f, -0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.1f, 1.5f) + curveToRelative(0.56f, 0.04f, 1.19f, 0.05f, 1.84f, 0.04f) + curveToRelative(-0.14f, 0.76f, -0.24f, 1.44f, -0.3f, 2.06f) + arcToRelative(5.94f, 5.94f, 0.0f, false, false, -2.54f, 2.41f) + curveToRelative(-0.6f, 1.17f, -0.66f, 2.56f, 0.21f, 3.44f) + curveToRelative(0.57f, 0.59f, 1.4f, 0.64f, 2.13f, 0.49f) + curveToRelative(0.4f, -0.09f, 0.82f, -0.25f, 1.24f, -0.47f) + lineToRelative(0.02f, 0.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.4f, -0.52f) + lineToRelative(-0.17f, -0.43f) + arcToRelative(7.63f, 7.63f, 0.0f, false, false, 2.29f, -4.04f) + curveToRelative(0.63f, 0.3f, 1.07f, 0.83f, 1.27f, 1.4f) + curveToRelative(0.23f, 0.61f, 0.22f, 1.3f, -0.1f, 1.95f) + curveToRelative(-0.3f, 0.63f, -0.92f, 1.26f, -2.0f, 1.68f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.53f, 1.4f) + arcToRelative(5.01f, 5.01f, 0.0f, false, false, 2.83f, -2.43f) + arcToRelative(4.04f, 4.04f, 0.0f, false, false, -2.35f, -5.55f) + verticalLineToRelative(-0.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, -0.03f) + curveToRelative(-0.52f, 0.0f, -1.08f, 0.07f, -1.67f, 0.24f) + curveToRelative(0.06f, -0.45f, 0.15f, -0.95f, 0.26f, -1.5f) + curveToRelative(1.18f, -0.09f, 2.36f, -0.25f, 3.33f, -0.48f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.34f, -1.46f) + curveToRelative(-0.77f, 0.18f, -1.7f, 0.32f, -2.64f, 0.4f) + curveToRelative(0.09f, -0.32f, 0.18f, -0.66f, 0.27f, -0.93f) + close() + moveTo(13.28f, 13.71f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 1.15f, -1.3f) + arcToRelative(7.83f, 7.83f, 0.0f, false, false, 0.52f, 2.69f) + curveToRelative(-0.3f, 0.17f, -0.63f, 0.3f, -0.98f, 0.37f) + curveToRelative(-0.48f, 0.1f, -0.68f, 0.0f, -0.74f, -0.06f) + curveToRelative(-0.24f, -0.25f, -0.4f, -0.86f, 0.05f, -1.7f) + close() + moveTo(17.6f, 11.22f) + curveToRelative(-0.21f, 0.97f, -0.7f, 2.02f, -1.42f, 2.85f) + arcToRelative(8.62f, 8.62f, 0.0f, false, true, -0.25f, -2.48f) + lineToRelative(0.34f, -0.12f) + curveToRelative(0.48f, -0.16f, 0.92f, -0.23f, 1.33f, -0.25f) + close() + moveTo(7.96f, 6.53f) + curveToRelative(-2.24f, -0.65f, -4.0f, 0.15f, -4.57f, 0.47f) + arcTo(0.75f, 0.75f, 0.0f, true, false, 4.1f, 8.3f) + curveToRelative(0.4f, -0.22f, 1.74f, -0.83f, 3.43f, -0.34f) + curveToRelative(0.77f, 0.23f, 1.1f, 0.64f, 1.27f, 1.06f) + curveToRelative(0.13f, 0.33f, 0.17f, 0.69f, 0.18f, 1.04f) + arcToRelative(9.83f, 9.83f, 0.0f, false, false, -0.92f, -0.21f) + arcToRelative(6.83f, 6.83f, 0.0f, false, false, -4.12f, 0.42f) + arcToRelative(3.39f, 3.39f, 0.0f, false, false, -1.9f, 3.7f) + arcToRelative(3.52f, 3.52f, 0.0f, false, false, 2.8f, 2.95f) + arcTo(5.95f, 5.95f, 0.0f, false, false, 9.0f, 15.95f) + verticalLineToRelative(0.3f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-5.79f) + curveToRelative(0.0f, -0.45f, 0.0f, -1.24f, -0.3f, -1.99f) + curveToRelative(-0.33f, -0.83f, -1.0f, -1.58f, -2.24f, -1.94f) + close() + moveTo(7.81f, 11.33f) + curveToRelative(0.48f, 0.09f, 0.9f, 0.21f, 1.19f, 0.3f) + verticalLineToRelative(2.51f) + arcToRelative(7.38f, 7.38f, 0.0f, false, true, -1.1f, 0.7f) + curveToRelative(-0.84f, 0.45f, -1.85f, 0.79f, -2.79f, 0.62f) + arcToRelative(2.02f, 2.02f, 0.0f, false, true, -1.58f, -1.72f) + arcToRelative(1.89f, 1.89f, 0.0f, false, true, 1.07f, -2.1f) + arcToRelative(5.34f, 5.34f, 0.0f, false, true, 3.2f, -0.3f) + close() + } + } + return _translate!! + } + +private var _translate: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TranslateOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TranslateOff.kt new file mode 100644 index 00000000..5aa25479 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TranslateOff.kt @@ -0,0 +1,94 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TranslateOff: ImageVector + get() { + if (_translateOff != null) { + return _translateOff!! + } + _translateOff = fluentIcon(name = "Regular.TranslateOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineTo(5.3f, 6.36f) + curveToRelative(-0.92f, 0.14f, -1.6f, 0.46f, -1.91f, 0.64f) + arcTo(0.75f, 0.75f, 0.0f, true, false, 4.1f, 8.3f) + arcToRelative(4.54f, 4.54f, 0.0f, false, true, 2.64f, -0.5f) + lineToRelative(2.24f, 2.24f) + verticalLineToRelative(0.02f) + arcToRelative(9.84f, 9.84f, 0.0f, false, false, -0.92f, -0.21f) + arcToRelative(6.83f, 6.83f, 0.0f, false, false, -4.12f, 0.42f) + arcToRelative(3.39f, 3.39f, 0.0f, false, false, -1.9f, 3.7f) + arcToRelative(3.52f, 3.52f, 0.0f, false, false, 2.8f, 2.95f) + arcTo(5.95f, 5.95f, 0.0f, false, false, 9.0f, 15.95f) + verticalLineToRelative(0.3f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-4.7f) + lineToRelative(1.45f, 1.46f) + curveToRelative(-0.6f, 1.17f, -0.66f, 2.56f, 0.21f, 3.44f) + curveToRelative(0.57f, 0.59f, 1.4f, 0.64f, 2.13f, 0.49f) + arcToRelative(4.6f, 4.6f, 0.0f, false, false, 1.16f, -0.43f) + lineToRelative(0.25f, 0.25f) + lineToRelative(0.04f, 0.04f) + lineToRelative(4.98f, 4.98f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(14.32f, 15.38f) + lineTo(13.97f, 15.48f) + curveToRelative(-0.48f, 0.1f, -0.68f, -0.02f, -0.74f, -0.07f) + curveToRelative(-0.2f, -0.2f, -0.33f, -0.64f, -0.14f, -1.26f) + lineToRelative(1.23f, 1.23f) + close() + moveTo(7.8f, 11.33f) + curveToRelative(0.48f, 0.09f, 0.9f, 0.21f, 1.19f, 0.3f) + verticalLineToRelative(2.51f) + arcToRelative(7.38f, 7.38f, 0.0f, false, true, -1.1f, 0.7f) + curveToRelative(-0.84f, 0.45f, -1.85f, 0.79f, -2.79f, 0.62f) + arcToRelative(2.02f, 2.02f, 0.0f, false, true, -1.58f, -1.72f) + arcToRelative(1.89f, 1.89f, 0.0f, false, true, 1.07f, -2.1f) + arcToRelative(5.34f, 5.34f, 0.0f, false, true, 3.2f, -0.3f) + close() + moveTo(20.24f, 14.87f) + curveToRelative(-0.2f, 0.4f, -0.53f, 0.82f, -1.03f, 1.17f) + lineToRelative(1.07f, 1.07f) + curveToRelative(0.59f, -0.45f, 1.02f, -1.0f, 1.3f, -1.59f) + curveToRelative(0.5f, -1.02f, 0.53f, -2.14f, 0.16f, -3.12f) + arcToRelative(4.04f, 4.04f, 0.0f, false, false, -2.5f, -2.43f) + verticalLineToRelative(-0.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, -0.03f) + curveToRelative(-0.52f, 0.0f, -1.08f, 0.07f, -1.67f, 0.24f) + curveToRelative(0.06f, -0.45f, 0.15f, -0.95f, 0.26f, -1.5f) + curveToRelative(1.18f, -0.09f, 2.36f, -0.25f, 3.33f, -0.48f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.34f, -1.46f) + curveToRelative(-0.77f, 0.18f, -1.7f, 0.32f, -2.64f, 0.4f) + curveToRelative(0.09f, -0.32f, 0.18f, -0.66f, 0.27f, -0.93f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.42f, -0.48f) + curveToRelative(-0.15f, 0.45f, -0.3f, 1.04f, -0.42f, 1.52f) + curveToRelative(-0.74f, 0.02f, -1.45f, 0.01f, -2.07f, -0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.1f, 1.5f) + curveToRelative(0.56f, 0.04f, 1.19f, 0.05f, 1.84f, 0.04f) + curveToRelative(-0.14f, 0.76f, -0.24f, 1.44f, -0.3f, 2.06f) + lineToRelative(-0.45f, 0.26f) + lineToRelative(1.91f, 1.9f) + arcToRelative(9.92f, 9.92f, 0.0f, false, true, -0.02f, -1.17f) + lineToRelative(0.34f, -0.12f) + curveToRelative(0.48f, -0.16f, 0.92f, -0.23f, 1.33f, -0.25f) + arcToRelative(6.71f, 6.71f, 0.0f, false, true, -0.96f, 2.24f) + lineToRelative(1.07f, 1.07f) + arcToRelative(7.74f, 7.74f, 0.0f, false, false, 1.36f, -3.01f) + curveToRelative(0.63f, 0.3f, 1.07f, 0.83f, 1.27f, 1.4f) + curveToRelative(0.23f, 0.61f, 0.22f, 1.3f, -0.1f, 1.95f) + close() + } + } + return _translateOff!! + } + +private var _translateOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Transmission.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Transmission.kt new file mode 100644 index 00000000..7ec4cde8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Transmission.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Transmission: ImageVector + get() { + if (_transmission != null) { + return _transmission!! + } + _transmission = fluentIcon(name = "Regular.Transmission") { + fluentPath { + moveTo(12.0f, 2.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, -0.75f, 5.4f) + verticalLineToRelative(3.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + lineTo(12.75f, 7.4f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 12.0f, 2.0f) + close() + moveTo(10.75f, 4.75f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 2.5f, 0.0f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.5f, 0.0f) + close() + moveTo(3.0f, 6.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + lineTo(8.0f, 10.0f) + horizontalLineToRelative(2.25f) + verticalLineToRelative(1.5f) + lineTo(6.5f, 11.5f) + verticalLineToRelative(-5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -2.0f, 0.0f) + verticalLineToRelative(12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-5.0f) + lineTo(11.0f, 13.5f) + verticalLineToRelative(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 2.0f, 0.0f) + verticalLineToRelative(-5.0f) + horizontalLineToRelative(6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.5f, -0.5f) + lineTo(19.5f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(-3.75f) + lineTo(13.75f, 10.0f) + lineTo(16.0f, 10.0f) + lineTo(16.0f, 6.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + lineTo(21.0f, 13.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, -2.0f, 2.0f) + horizontalLineToRelative(-4.5f) + verticalLineToRelative(3.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) + lineTo(9.5f, 15.0f) + lineTo(8.0f, 15.0f) + verticalLineToRelative(3.5f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) + verticalLineToRelative(-12.0f) + close() + } + } + return _transmission!! + } + +private var _transmission: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TrayItemAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TrayItemAdd.kt new file mode 100644 index 00000000..37d9aeee --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TrayItemAdd.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TrayItemAdd: ImageVector + get() { + if (_trayItemAdd != null) { + return _trayItemAdd!! + } + _trayItemAdd = fluentIcon(name = "Regular.TrayItemAdd") { + fluentPath { + moveTo(14.0f, 3.5f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(-2.0f) + lineTo(14.0f, 3.5f) + close() + moveTo(12.5f, 3.25f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(4.0f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(2.5f) + curveTo(19.0f, 6.44f, 18.44f, 7.0f, 17.75f, 7.0f) + horizontalLineToRelative(-4.0f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + verticalLineToRelative(-2.5f) + close() + moveTo(15.75f, 8.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(6.69f) + lineToRelative(1.22f, -1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-2.5f, 2.5f) + curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f) + lineToRelative(-2.5f, -2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineTo(15.0f, 15.94f) + lineTo(15.0f, 9.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(6.5f, 15.0f) + verticalLineToRelative(2.0f) + lineTo(10.0f, 17.0f) + verticalLineToRelative(-2.0f) + lineTo(6.5f, 15.0f) + close() + moveTo(5.0f, 14.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(4.0f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineToRelative(-4.0f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + verticalLineToRelative(-2.5f) + close() + moveTo(2.75f, 16.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(14.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(2.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) + lineTo(4.75f, 21.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 18.75f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _trayItemAdd!! + } + +private var _trayItemAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TrayItemRemove.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TrayItemRemove.kt new file mode 100644 index 00000000..234b8cc5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TrayItemRemove.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TrayItemRemove: ImageVector + get() { + if (_trayItemRemove != null) { + return _trayItemRemove!! + } + _trayItemRemove = fluentIcon(name = "Regular.TrayItemRemove") { + fluentPath { + moveTo(14.0f, 3.5f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(-2.0f) + lineTo(14.0f, 3.5f) + close() + moveTo(12.5f, 3.25f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(4.0f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(2.5f) + curveTo(19.0f, 6.44f, 18.44f, 7.0f, 17.75f, 7.0f) + horizontalLineToRelative(-4.0f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + verticalLineToRelative(-2.5f) + close() + moveTo(15.22f, 8.72f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(2.5f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-1.22f, -1.22f) + verticalLineToRelative(6.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-6.69f) + lineToRelative(-1.22f, 1.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(2.5f, -2.5f) + close() + moveTo(6.5f, 15.0f) + verticalLineToRelative(2.0f) + lineTo(10.0f, 17.0f) + verticalLineToRelative(-2.0f) + lineTo(6.5f, 15.0f) + close() + moveTo(5.0f, 14.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(4.0f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(2.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineToRelative(-4.0f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + verticalLineToRelative(-2.5f) + close() + moveTo(2.75f, 16.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(2.0f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(14.5f) + curveToRelative(0.69f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(2.0f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.75f, 2.75f) + lineTo(4.75f, 21.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 2.0f, 18.75f) + verticalLineToRelative(-2.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _trayItemRemove!! + } + +private var _trayItemRemove: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Trophy.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Trophy.kt new file mode 100644 index 00000000..87cf6e5e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Trophy.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Trophy: ImageVector + get() { + if (_trophy != null) { + return _trophy!! + } + _trophy = fluentIcon(name = "Regular.Trophy") { + fluentPath { + moveTo(15.25f, 2.0f) + curveToRelative(1.16f, 0.0f, 2.12f, 0.88f, 2.24f, 2.0f) + horizontalLineToRelative(1.27f) + curveToRelative(0.92f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) + verticalLineToRelative(3.15f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.06f, 3.24f) + lineToRelative(-0.2f, 0.01f) + arcToRelative(5.76f, 5.76f, 0.0f, false, true, -4.74f, 3.95f) + verticalLineToRelative(1.55f) + horizontalLineToRelative(1.75f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.25f, 3.07f) + lineTo(17.5f, 21.25f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.64f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.65f) + verticalLineToRelative(-0.6f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.06f, -3.24f) + lineToRelative(0.18f, -0.01f) + lineTo(11.0f, 17.5f) + verticalLineToRelative(-1.55f) + arcTo(5.76f, 5.76f, 0.0f, false, true, 6.27f, 12.0f) + horizontalLineToRelative(-0.02f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 8.75f) + verticalLineToRelative(-3.0f) + curveTo(3.0f, 4.78f, 3.78f, 4.0f, 4.75f, 4.0f) + lineTo(6.0f, 4.0f) + curveToRelative(0.13f, -1.12f, 1.08f, -2.0f, 2.24f, -2.0f) + horizontalLineToRelative(7.0f) + close() + moveTo(14.25f, 19.0f) + horizontalLineToRelative(-5.0f) + curveToRelative(-0.83f, 0.0f, -1.52f, 0.58f, -1.7f, 1.35f) + lineToRelative(-0.03f, 0.15f) + horizontalLineToRelative(8.47f) + arcTo(1.75f, 1.75f, 0.0f, false, false, 14.4f, 19.0f) + horizontalLineToRelative(-0.16f) + close() + moveTo(15.25f, 3.5f) + horizontalLineToRelative(-7.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.0f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, 8.5f, 0.0f) + verticalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(18.75f, 5.5f) + lineTo(17.5f, 5.5f) + verticalLineToRelative(4.98f) + curveToRelative(0.8f, -0.11f, 1.43f, -0.76f, 1.5f, -1.58f) + lineTo(19.0f, 5.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.18f, -0.24f) + lineToRelative(-0.06f, -0.01f) + close() + moveTo(6.0f, 5.5f) + lineTo(4.75f, 5.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.88f, 0.65f, 1.61f, 1.5f, 1.73f) + lineTo(6.0f, 5.5f) + close() + } + } + return _trophy!! + } + +private var _trophy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TrophyLock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TrophyLock.kt new file mode 100644 index 00000000..038d1042 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TrophyLock.kt @@ -0,0 +1,100 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TrophyLock: ImageVector + get() { + if (_trophyLock != null) { + return _trophyLock!! + } + _trophyLock = fluentIcon(name = "Regular.TrophyLock") { + fluentPath { + moveTo(17.49f, 4.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) + horizontalLineToRelative(-7.0f) + curveToRelative(-1.16f, 0.0f, -2.11f, 0.88f, -2.24f, 2.0f) + lineTo(4.75f, 4.0f) + curveTo(3.78f, 4.0f, 3.0f, 4.78f, 3.0f, 5.75f) + verticalLineToRelative(3.0f) + curveTo(3.0f, 10.55f, 4.45f, 12.0f, 6.25f, 12.0f) + horizontalLineToRelative(0.02f) + arcTo(5.76f, 5.76f, 0.0f, false, false, 11.0f, 15.95f) + verticalLineToRelative(1.55f) + lineTo(9.07f, 17.5f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 6.0f, 20.76f) + verticalLineToRelative(0.6f) + curveToRelative(0.06f, 0.37f, 0.37f, 0.65f, 0.75f, 0.65f) + horizontalLineToRelative(6.75f) + curveToRelative(-0.31f, -0.42f, -0.5f, -0.94f, -0.5f, -1.5f) + lineTo(7.52f, 20.51f) + lineToRelative(0.03f, -0.15f) + curveToRelative(0.18f, -0.77f, 0.87f, -1.35f, 1.7f, -1.35f) + lineTo(13.0f, 19.01f) + verticalLineToRelative(-1.5f) + horizontalLineToRelative(-0.5f) + verticalLineToRelative(-1.55f) + curveToRelative(0.17f, -0.02f, 0.34f, -0.05f, 0.5f, -0.09f) + verticalLineToRelative(-0.36f) + curveToRelative(0.0f, -0.49f, 0.14f, -0.94f, 0.38f, -1.32f) + arcToRelative(4.24f, 4.24f, 0.0f, false, true, -5.88f, -3.93f) + verticalLineToRelative(-6.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.0f) + curveToRelative(0.42f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(6.3f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 1.5f, -0.9f) + lineTo(17.5f, 5.5f) + horizontalLineToRelative(1.31f) + curveToRelative(0.12f, 0.03f, 0.2f, 0.13f, 0.2f, 0.25f) + lineTo(19.01f, 8.9f) + curveToRelative(-0.03f, 0.22f, -0.09f, 0.43f, -0.18f, 0.62f) + curveToRelative(0.52f, 0.04f, 1.0f, 0.2f, 1.44f, 0.46f) + curveToRelative(0.15f, -0.38f, 0.24f, -0.8f, 0.24f, -1.23f) + lineTo(20.51f, 5.61f) + curveTo(20.42f, 4.7f, 19.67f, 4.0f, 18.75f, 4.0f) + horizontalLineToRelative(-1.27f) + close() + moveTo(4.75f, 5.5f) + lineTo(6.0f, 5.5f) + verticalLineToRelative(4.98f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, -1.5f, -1.73f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -0.14f, 0.1f, -0.25f, 0.25f, -0.25f) + close() + moveTo(18.5f, 10.5f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 16.0f, 13.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-0.5f) + curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f) + horizontalLineToRelative(6.0f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f) + lineTo(21.0f, 14.0f) + verticalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.5f, -2.5f) + close() + moveTo(18.5f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + close() + moveTo(18.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f) + close() + } + } + return _trophyLock!! + } + +private var _trophyLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TrophyOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TrophyOff.kt new file mode 100644 index 00000000..5d0907c3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TrophyOff.kt @@ -0,0 +1,94 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TrophyOff: ImageVector + get() { + if (_trophyOff != null) { + return _trophyOff!! + } + _trophyOff = fluentIcon(name = "Regular.TrophyOff") { + fluentPath { + moveTo(3.48f, 4.54f) + lineTo(2.22f, 3.28f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(18.5f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineToRelative(-6.39f, -6.39f) + curveToRelative(-0.56f, 0.28f, -1.18f, 0.48f, -1.83f, 0.56f) + verticalLineToRelative(1.55f) + horizontalLineToRelative(1.75f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.25f, 3.07f) + lineTo(17.5f, 21.25f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.64f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.65f) + verticalLineToRelative(-0.6f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.06f, -3.24f) + lineToRelative(0.18f, -0.01f) + lineTo(11.0f, 17.5f) + verticalLineToRelative(-1.55f) + arcTo(5.76f, 5.76f, 0.0f, false, true, 6.27f, 12.0f) + horizontalLineToRelative(-0.02f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 8.75f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -0.47f, 0.18f, -0.9f, 0.48f, -1.2f) + close() + moveTo(13.19f, 14.25f) + lineTo(7.5f, 8.56f) + verticalLineToRelative(1.69f) + arcToRelative(4.25f, 4.25f, 0.0f, false, false, 5.69f, 4.0f) + close() + moveTo(6.0f, 7.06f) + lineTo(4.54f, 5.6f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.04f, 0.15f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.88f, 0.65f, 1.61f, 1.5f, 1.73f) + lineTo(6.0f, 7.06f) + close() + moveTo(16.0f, 10.25f) + curveToRelative(0.0f, 0.74f, -0.19f, 1.44f, -0.52f, 2.05f) + lineToRelative(1.1f, 1.09f) + curveToRelative(0.27f, -0.43f, 0.5f, -0.9f, 0.65f, -1.39f) + horizontalLineToRelative(0.21f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 3.07f, -3.25f) + lineTo(20.51f, 5.61f) + curveTo(20.42f, 4.7f, 19.67f, 4.0f, 18.75f, 4.0f) + horizontalLineToRelative(-1.27f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.24f, -2.0f) + horizontalLineToRelative(-7.0f) + curveToRelative(-0.83f, 0.0f, -1.56f, 0.45f, -1.95f, 1.12f) + lineToRelative(1.2f, 1.2f) + verticalLineToRelative(-0.07f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(7.0f) + curveToRelative(0.42f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(6.0f) + close() + moveTo(9.25f, 19.0f) + curveToRelative(-0.83f, 0.0f, -1.52f, 0.58f, -1.7f, 1.35f) + lineToRelative(-0.03f, 0.15f) + horizontalLineToRelative(8.47f) + arcTo(1.75f, 1.75f, 0.0f, false, false, 14.4f, 19.0f) + lineTo(9.25f, 19.0f) + close() + moveTo(18.75f, 5.5f) + horizontalLineToRelative(0.07f) + curveToRelative(0.1f, 0.03f, 0.19f, 0.13f, 0.19f, 0.25f) + lineTo(19.01f, 8.9f) + curveToRelative(-0.08f, 0.82f, -0.7f, 1.47f, -1.5f, 1.58f) + lineTo(17.51f, 5.5f) + horizontalLineToRelative(1.25f) + close() + } + } + return _trophyOff!! + } + +private var _trophyOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Tv.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Tv.kt new file mode 100644 index 00000000..92a7d278 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Tv.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Tv: ImageVector + get() { + if (_tv != null) { + return _tv!! + } + _tv = fluentIcon(name = "Regular.Tv") { + fluentPath { + moveTo(4.75f, 4.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 6.75f) + verticalLineToRelative(8.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 18.0f) + horizontalLineToRelative(14.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 22.0f, 15.25f) + verticalLineToRelative(-8.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 4.0f) + horizontalLineTo(4.75f) + close() + moveTo(3.5f, 6.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(14.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineTo(4.75f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + verticalLineToRelative(-8.5f) + close() + moveTo(5.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(5.75f) + close() + } + } + return _tv!! + } + +private var _tv: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TvUsb.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TvUsb.kt new file mode 100644 index 00000000..6183d2d4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/TvUsb.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.TvUsb: ImageVector + get() { + if (_tvUsb != null) { + return _tvUsb!! + } + _tvUsb = fluentIcon(name = "Regular.TvUsb") { + fluentPath { + moveTo(4.75f, 3.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 5.75f) + verticalLineToRelative(8.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 4.75f, 17.0f) + horizontalLineToRelative(9.75f) + verticalLineToRelative(-1.5f) + lineTo(4.75f, 15.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(14.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + lineTo(20.5f, 8.5f) + horizontalLineToRelative(0.5f) + curveToRelative(0.36f, 0.0f, 0.7f, 0.07f, 1.0f, 0.2f) + lineTo(22.0f, 5.76f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 19.25f, 3.0f) + lineTo(4.75f, 3.0f) + close() + moveTo(5.75f, 18.5f) + horizontalLineToRelative(9.0f) + lineToRelative(0.16f, 0.28f) + lineToRelative(0.8f, 1.22f) + lineTo(5.75f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(17.5f, 20.0f) + lineToRelative(-1.34f, -2.04f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.16f, -0.55f) + lineTo(16.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + verticalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(3.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(3.44f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.17f, 0.55f) + lineTo(21.5f, 20.0f) + verticalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + verticalLineToRelative(-2.0f) + close() + moveTo(20.5f, 11.5f) + horizontalLineToRelative(-2.0f) + lineTo(18.5f, 13.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(-1.5f) + close() + } + } + return _tvUsb!! + } + +private var _tvUsb: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Umbrella.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Umbrella.kt new file mode 100644 index 00000000..25f2c4cf --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Umbrella.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Umbrella: ImageVector + get() { + if (_umbrella != null) { + return _umbrella!! + } + _umbrella = fluentIcon(name = "Regular.Umbrella") { + fluentPath { + moveTo(10.25f, 10.91f) + curveToRelative(0.47f, -0.4f, 1.07f, -0.73f, 1.75f, -0.73f) + curveToRelative(0.68f, 0.0f, 1.28f, 0.33f, 1.75f, 0.73f) + arcToRelative(4.6f, 4.6f, 0.0f, false, true, 0.68f, 0.71f) + lineToRelative(0.03f, 0.05f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.24f, 0.0f) + arcToRelative(5.6f, 5.6f, 0.0f, false, true, 0.71f, -0.76f) + curveToRelative(0.48f, -0.4f, 1.08f, -0.73f, 1.76f, -0.73f) + curveToRelative(0.67f, 0.0f, 1.28f, 0.33f, 1.75f, 0.73f) + curveToRelative(0.23f, 0.2f, 0.41f, 0.4f, 0.54f, 0.54f) + lineToRelative(0.17f, 0.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.37f, -0.42f) + curveTo(22.0f, 6.57f, 17.95f, 2.0f, 12.0f, 2.0f) + reflectiveCurveTo(2.0f, 6.57f, 2.0f, 11.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.37f, 0.42f) + lineToRelative(0.17f, -0.22f) + curveToRelative(0.13f, -0.15f, 0.31f, -0.34f, 0.54f, -0.54f) + curveToRelative(0.47f, -0.4f, 1.08f, -0.73f, 1.75f, -0.73f) + curveToRelative(0.68f, 0.0f, 1.28f, 0.33f, 1.76f, 0.73f) + arcToRelative(4.6f, 4.6f, 0.0f, false, true, 0.7f, 0.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.25f, 0.0f) + lineToRelative(0.03f, -0.05f) + arcToRelative(3.8f, 3.8f, 0.0f, false, true, 0.68f, -0.7f) + close() + moveTo(3.79f, 9.28f) + curveTo(4.71f, 6.18f, 7.74f, 3.5f, 12.0f, 3.5f) + curveToRelative(4.26f, 0.0f, 7.29f, 2.68f, 8.2f, 5.78f) + arcToRelative(3.94f, 3.94f, 0.0f, false, false, -2.03f, -0.6f) + curveToRelative(-1.18f, 0.0f, -2.12f, 0.57f, -2.72f, 1.09f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, -0.37f, 0.33f) + lineToRelative(-0.36f, -0.33f) + arcTo(4.27f, 4.27f, 0.0f, false, false, 12.0f, 8.67f) + curveToRelative(-1.17f, 0.0f, -2.11f, 0.58f, -2.72f, 1.1f) + curveToRelative(-0.13f, 0.11f, -0.26f, 0.22f, -0.36f, 0.33f) + arcToRelative(6.0f, 6.0f, 0.0f, false, false, -0.37f, -0.33f) + arcToRelative(4.27f, 4.27f, 0.0f, false, false, -2.72f, -1.1f) + curveToRelative(-0.8f, 0.0f, -1.49f, 0.28f, -2.04f, 0.6f) + close() + moveTo(12.0f, 11.18f) + curveToRelative(-0.24f, 0.0f, -0.49f, 0.08f, -0.75f, 0.24f) + lineTo(11.25f, 19.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + verticalLineToRelative(-0.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + lineTo(6.75f, 19.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 6.0f, 0.0f) + verticalLineToRelative(-7.58f) + arcToRelative(1.47f, 1.47f, 0.0f, false, false, -0.75f, -0.24f) + close() + } + } + return _umbrella!! + } + +private var _umbrella: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/UninstallApp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/UninstallApp.kt new file mode 100644 index 00000000..9e896656 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/UninstallApp.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.UninstallApp: ImageVector + get() { + if (_uninstallApp != null) { + return _uninstallApp!! + } + _uninstallApp = fluentIcon(name = "Regular.UninstallApp") { + fluentPath { + moveToRelative(21.7f, 8.85f) + lineToRelative(0.08f, -0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.07f, -0.98f) + lineToRelative(-0.07f, -0.08f) + lineToRelative(-2.22f, -2.22f) + lineToRelative(2.22f, -2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.07f, -0.97f) + lineToRelative(-0.07f, -0.09f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, -0.07f) + lineToRelative(-0.08f, 0.07f) + lineToRelative(-2.22f, 2.22f) + lineToRelative(-2.22f, -2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.98f, -0.07f) + lineToRelative(-0.08f, 0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.98f) + lineToRelative(0.07f, 0.08f) + lineToRelative(2.22f, 2.22f) + lineToRelative(-2.22f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.07f, 0.98f) + lineToRelative(0.07f, 0.08f) + curveToRelative(0.27f, 0.27f, 0.68f, 0.3f, 0.98f, 0.07f) + lineToRelative(0.08f, -0.07f) + lineToRelative(2.22f, -2.22f) + lineToRelative(2.22f, 2.22f) + curveToRelative(0.26f, 0.27f, 0.68f, 0.3f, 0.97f, 0.07f) + close() + moveTo(18.74f, 21.0f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(20.99f, 13.5f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-6.0f) + verticalLineToRelative(-6.0f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + lineTo(5.25f, 3.0f) + curveTo(4.01f, 3.0f, 3.0f, 4.0f, 3.0f, 5.25f) + verticalLineToRelative(13.5f) + curveTo(3.0f, 19.99f, 4.0f, 21.0f, 5.25f, 21.0f) + horizontalLineToRelative(13.5f) + close() + moveTo(11.24f, 11.25f) + lineTo(4.5f, 11.25f) + verticalLineToRelative(-6.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(5.25f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(6.0f) + close() + moveTo(18.74f, 19.5f) + horizontalLineToRelative(-6.0f) + verticalLineToRelative(-6.75f) + horizontalLineToRelative(6.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(5.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + close() + moveTo(11.24f, 19.5f) + horizontalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + verticalLineToRelative(-6.0f) + horizontalLineToRelative(6.75f) + verticalLineToRelative(6.75f) + close() + } + } + return _uninstallApp!! + } + +private var _uninstallApp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/UsbPlug.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/UsbPlug.kt new file mode 100644 index 00000000..326562a0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/UsbPlug.kt @@ -0,0 +1,63 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.UsbPlug: ImageVector + get() { + if (_usbPlug != null) { + return _usbPlug!! + } + _usbPlug = fluentIcon(name = "Regular.UsbPlug") { + fluentPath { + moveTo(11.0f, 21.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(9.5f, 17.0f) + horizontalLineToRelative(-0.75f) + curveToRelative(-1.19f, 0.0f, -2.16f, -0.93f, -2.24f, -2.1f) + lineTo(6.51f, 9.25f) + curveToRelative(0.0f, -0.98f, 0.63f, -1.82f, 1.5f, -2.13f) + lineTo(8.01f, 2.75f) + curveToRelative(0.0f, -0.38f, 0.29f, -0.7f, 0.65f, -0.75f) + horizontalLineToRelative(6.6f) + curveToRelative(0.39f, 0.0f, 0.7f, 0.28f, 0.75f, 0.65f) + lineTo(16.01f, 7.13f) + curveToRelative(0.82f, 0.3f, 1.42f, 1.05f, 1.49f, 1.95f) + verticalLineToRelative(5.67f) + curveToRelative(0.0f, 1.2f, -0.92f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + horizontalLineToRelative(-0.75f) + verticalLineToRelative(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.1f) + lineTo(13.0f, 17.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(4.25f) + close() + moveTo(15.25f, 8.5f) + horizontalLineToRelative(-6.5f) + curveToRelative(-0.38f, 0.0f, -0.69f, 0.28f, -0.74f, 0.65f) + verticalLineToRelative(5.6f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.64f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(6.5f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.65f) + verticalLineToRelative(-5.6f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.64f, -0.74f) + lineToRelative(-0.1f, -0.01f) + close() + moveTo(14.52f, 3.5f) + horizontalLineToRelative(-5.0f) + lineTo(9.52f, 7.0f) + horizontalLineToRelative(5.0f) + lineTo(14.52f, 3.5f) + close() + } + } + return _usbPlug!! + } + +private var _usbPlug: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/UsbStick.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/UsbStick.kt new file mode 100644 index 00000000..9c2d1b89 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/UsbStick.kt @@ -0,0 +1,55 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.UsbStick: ImageVector + get() { + if (_usbStick != null) { + return _usbStick!! + } + _usbStick = fluentIcon(name = "Regular.UsbStick") { + fluentPath { + moveTo(15.27f, 2.0f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineTo(16.01f, 7.13f) + curveToRelative(0.82f, 0.3f, 1.42f, 1.05f, 1.49f, 1.95f) + verticalLineToRelative(10.67f) + curveToRelative(0.0f, 1.2f, -0.92f, 2.17f, -2.1f, 2.24f) + lineToRelative(-0.15f, 0.01f) + horizontalLineToRelative(-6.5f) + curveToRelative(-1.19f, 0.0f, -2.16f, -0.93f, -2.24f, -2.1f) + lineTo(6.51f, 9.25f) + curveToRelative(0.0f, -0.98f, 0.63f, -1.82f, 1.5f, -2.13f) + lineTo(8.01f, 2.75f) + curveToRelative(0.0f, -0.38f, 0.29f, -0.7f, 0.65f, -0.75f) + horizontalLineToRelative(6.6f) + close() + moveTo(15.25f, 8.5f) + horizontalLineToRelative(-6.5f) + curveToRelative(-0.38f, 0.0f, -0.69f, 0.28f, -0.74f, 0.65f) + verticalLineToRelative(10.6f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.64f, 0.74f) + lineToRelative(0.1f, 0.01f) + horizontalLineToRelative(6.5f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.75f, -0.65f) + lineTo(16.0f, 9.25f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.64f, -0.74f) + lineToRelative(-0.1f, -0.01f) + close() + moveTo(14.52f, 3.5f) + horizontalLineToRelative(-5.0f) + lineTo(9.52f, 7.0f) + horizontalLineToRelative(5.0f) + lineTo(14.52f, 3.5f) + close() + } + } + return _usbStick!! + } + +private var _usbStick: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Vault.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Vault.kt new file mode 100644 index 00000000..258c0e89 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Vault.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Vault: ImageVector + get() { + if (_vault != null) { + return _vault!! + } + _vault = fluentIcon(name = "Regular.Vault") { + fluentPath { + moveTo(16.58f, 13.52f) + arcToRelative(2.99f, 2.99f, 0.0f, false, false, 0.0f, -3.04f) + lineToRelative(1.2f, -1.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, -1.06f) + lineToRelative(-1.2f, 1.2f) + arcToRelative(2.99f, 2.99f, 0.0f, false, false, -3.04f, 0.0f) + lineToRelative(-1.2f, -1.2f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.2f, 1.2f) + arcToRelative(2.99f, 2.99f, 0.0f, false, false, 0.0f, 3.04f) + lineToRelative(-1.2f, 1.2f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(1.2f, -1.2f) + arcToRelative(2.99f, 2.99f, 0.0f, false, false, 3.04f, 0.0f) + lineToRelative(1.2f, 1.2f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-1.2f, -1.2f) + close() + moveTo(14.0f, 13.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) + close() + moveTo(6.5f, 7.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-8.5f) + close() + moveTo(2.0f, 7.75f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 5.75f, 4.0f) + horizontalLineToRelative(12.5f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 22.0f, 7.75f) + verticalLineToRelative(8.5f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 18.25f, 20.0f) + lineTo(5.75f, 20.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 2.0f, 16.25f) + verticalLineToRelative(-8.5f) + close() + moveTo(5.75f, 5.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(12.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + lineTo(5.75f, 5.5f) + close() + } + } + return _vault!! + } + +private var _vault: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleBicycle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleBicycle.kt new file mode 100644 index 00000000..045e0b96 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleBicycle.kt @@ -0,0 +1,65 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VehicleBicycle: ImageVector + get() { + if (_vehicleBicycle != null) { + return _vehicleBicycle!! + } + _vehicleBicycle = fluentIcon(name = "Regular.VehicleBicycle") { + fluentPath { + moveTo(12.75f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.43f) + lineToRelative(0.95f, 3.5f) + lineTo(8.5f, 8.0f) + lineTo(8.5f, 5.75f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 7.75f, 5.0f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(7.0f, 6.5f) + verticalLineToRelative(2.19f) + lineToRelative(-0.3f, 1.81f) + arcToRelative(4.25f, 4.25f, 0.0f, true, false, 4.3f, 4.06f) + lineToRelative(4.65f, -4.65f) + lineToRelative(0.28f, 1.0f) + arcToRelative(4.25f, 4.25f, 0.0f, true, false, 1.44f, -0.4f) + lineToRelative(-1.9f, -6.96f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.72f, -0.55f) + horizontalLineToRelative(-2.0f) + close() + moveTo(16.33f, 12.4f) + lineTo(17.03f, 14.95f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.44f, -0.4f) + lineToRelative(-0.7f, -2.55f) + arcToRelative(2.75f, 2.75f, 0.0f, true, true, -1.44f, 0.4f) + close() + moveTo(10.56f, 12.87f) + arcToRelative(4.26f, 4.26f, 0.0f, false, false, -2.38f, -2.12f) + lineToRelative(0.2f, -1.25f) + horizontalLineToRelative(5.56f) + lineToRelative(-3.38f, 3.37f) + close() + moveTo(7.92f, 12.27f) + curveToRelative(0.72f, 0.33f, 1.26f, 0.96f, 1.48f, 1.73f) + lineTo(7.64f, 14.0f) + lineToRelative(0.28f, -1.74f) + close() + moveTo(6.45f, 12.02f) + lineTo(6.0f, 14.62f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.74f, 0.88f) + lineTo(9.4f, 15.5f) + arcToRelative(2.75f, 2.75f, 0.0f, true, true, -2.95f, -3.48f) + close() + } + } + return _vehicleBicycle!! + } + +private var _vehicleBicycle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleBus.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleBus.kt new file mode 100644 index 00000000..bb53b26a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleBus.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VehicleBus: ImageVector + get() { + if (_vehicleBus != null) { + return _vehicleBus!! + } + _vehicleBus = fluentIcon(name = "Regular.VehicleBus") { + fluentPath { + moveTo(8.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(17.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(10.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.5f) + close() + moveTo(7.75f, 2.0f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 4.0f, 5.75f) + lineTo(4.0f, 9.5f) + lineTo(2.75f, 9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + lineTo(4.0f, 11.0f) + verticalLineToRelative(8.75f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(1.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(9.0f, 18.5f) + horizontalLineToRelative(6.0f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(1.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(20.0f, 11.0f) + horizontalLineToRelative(1.23f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + lineTo(20.0f, 9.5f) + lineTo(20.0f, 5.75f) + arcTo(3.75f, 3.75f, 0.0f, false, false, 16.25f, 2.0f) + horizontalLineToRelative(-8.5f) + close() + moveTo(18.5f, 18.5f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + lineTo(16.5f, 18.5f) + horizontalLineToRelative(2.0f) + close() + moveTo(18.5f, 17.0f) + horizontalLineToRelative(-13.0f) + verticalLineToRelative(-4.0f) + horizontalLineToRelative(13.0f) + verticalLineToRelative(4.0f) + close() + moveTo(5.5f, 19.75f) + lineTo(5.5f, 18.5f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + close() + moveTo(5.5f, 5.75f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(8.5f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(5.75f) + horizontalLineToRelative(-13.0f) + lineTo(5.5f, 5.75f) + close() + } + } + return _vehicleBus!! + } + +private var _vehicleBus: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleCab.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleCab.kt new file mode 100644 index 00000000..c833f54f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleCab.kt @@ -0,0 +1,111 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VehicleCab: ImageVector + get() { + if (_vehicleCab != null) { + return _vehicleCab!! + } + _vehicleCab = fluentIcon(name = "Regular.VehicleCab") { + fluentPath { + moveTo(8.0f, 13.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(17.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(9.48f, 14.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-3.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(9.27f, 1.99f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(8.52f, 4.5f) + horizontalLineToRelative(-0.67f) + curveToRelative(-1.43f, 0.0f, -2.69f, 0.93f, -3.1f, 2.3f) + lineToRelative(-0.07f, 0.2f) + horizontalLineToRelative(-0.93f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.53f) + lineToRelative(-0.2f, 0.83f) + curveToRelative(-0.65f, 0.4f, -1.08f, 1.1f, -1.08f, 1.92f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(1.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(8.0f, 18.5f) + horizontalLineToRelative(8.0f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(1.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.82f, -0.43f, -1.53f, -1.08f, -1.92f) + lineToRelative(-0.2f, -0.83f) + horizontalLineToRelative(0.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.94f) + lineToRelative(-0.06f, -0.18f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -3.11f, -2.32f) + horizontalLineToRelative(-0.64f) + lineTo(15.5f, 2.74f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(9.27f, 1.99f) + close() + moveTo(14.0f, 4.5f) + horizontalLineToRelative(-3.98f) + verticalLineToRelative(-1.0f) + lineTo(14.0f, 3.5f) + verticalLineToRelative(1.0f) + close() + moveTo(7.85f, 6.0f) + horizontalLineToRelative(8.29f) + curveToRelative(0.77f, 0.0f, 1.45f, 0.5f, 1.68f, 1.25f) + lineToRelative(0.2f, 0.7f) + lineTo(18.3f, 9.0f) + lineTo(5.7f, 9.0f) + lineToRelative(0.25f, -1.05f) + lineToRelative(0.22f, -0.71f) + curveTo(6.4f, 6.5f, 7.08f, 6.0f, 7.85f, 6.0f) + close() + moveTo(4.5f, 17.0f) + verticalLineToRelative(-5.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(19.5f, 17.0f) + horizontalLineToRelative(-15.0f) + close() + moveTo(4.5f, 19.75f) + lineTo(4.5f, 18.5f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + close() + moveTo(19.5f, 18.5f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.14f, -0.11f, 0.25f, -0.25f, 0.25f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, -0.25f, -0.25f) + lineTo(17.5f, 18.5f) + horizontalLineToRelative(2.0f) + close() + } + } + return _vehicleCab!! + } + +private var _vehicleCab: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleCar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleCar.kt new file mode 100644 index 00000000..d76236d4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleCar.kt @@ -0,0 +1,104 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VehicleCar: ImageVector + get() { + if (_vehicleCar != null) { + return _vehicleCar!! + } + _vehicleCar = fluentIcon(name = "Regular.VehicleCar") { + fluentPath { + moveTo(15.8f, 3.0f) + curveToRelative(1.49f, 0.0f, 2.79f, 1.01f, 3.15f, 2.46f) + lineTo(19.34f, 7.0f) + horizontalLineToRelative(0.91f) + curveToRelative(0.38f, 0.0f, 0.7f, 0.28f, 0.74f, 0.65f) + lineToRelative(0.01f, 0.1f) + curveToRelative(0.0f, 0.38f, -0.28f, 0.7f, -0.65f, 0.74f) + lineToRelative(-0.1f, 0.01f) + horizontalLineToRelative(-0.54f) + lineToRelative(0.21f, 0.83f) + curveToRelative(0.65f, 0.4f, 1.08f, 1.1f, 1.08f, 1.92f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.96f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-1.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.79f, -1.75f, -1.75f) + lineTo(16.0f, 18.5f) + lineTo(8.0f, 18.5f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.96f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-1.5f) + curveTo(3.78f, 21.5f, 3.0f, 20.7f, 3.0f, 19.75f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.81f, 0.43f, -1.53f, 1.08f, -1.92f) + lineToRelative(0.2f, -0.83f) + horizontalLineToRelative(-0.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineTo(3.0f, 7.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(0.91f) + lineToRelative(0.39f, -1.54f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 8.2f, 3.0f) + horizontalLineToRelative(7.6f) + close() + moveTo(6.5f, 18.5f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.13f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(1.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.12f, 0.25f, -0.25f) + lineTo(6.5f, 18.5f) + close() + moveTo(19.5f, 18.5f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.13f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(1.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.12f, 0.25f, -0.25f) + lineTo(19.5f, 18.5f) + close() + moveTo(18.75f, 10.5f) + lineTo(5.25f, 10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(4.5f, 17.0f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(-5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(10.25f, 14.0f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(3.6f) + horizontalLineToRelative(-3.5f) + close() + moveTo(17.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(7.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(15.8f, 4.5f) + lineTo(8.2f, 4.5f) + curveToRelative(-0.8f, 0.0f, -1.5f, 0.55f, -1.7f, 1.33f) + lineTo(5.71f, 9.0f) + lineTo(18.3f, 9.0f) + lineToRelative(-0.8f, -3.18f) + curveToRelative(-0.19f, -0.77f, -0.89f, -1.32f, -1.7f, -1.32f) + close() + } + } + return _vehicleCar!! + } + +private var _vehicleCar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleCarCollision.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleCarCollision.kt new file mode 100644 index 00000000..17235a15 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleCarCollision.kt @@ -0,0 +1,97 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VehicleCarCollision: ImageVector + get() { + if (_vehicleCarCollision != null) { + return _vehicleCarCollision!! + } + _vehicleCarCollision = fluentIcon(name = "Regular.VehicleCarCollision") { + fluentPath { + moveTo(11.5f, 2.04f) + curveToRelative(0.31f, -0.1f, 0.65f, 0.0f, 0.84f, 0.25f) + lineTo(14.42f, 5.0f) + lineToRelative(2.92f, -1.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.12f, 0.87f) + lineTo(17.3f, 7.5f) + horizontalLineToRelative(3.96f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.53f, 1.28f) + lineToRelative(-2.05f, 2.05f) + lineToRelative(2.13f, 2.98f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.61f, 1.19f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(1.54f) + lineToRelative(-1.65f, -2.31f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.08f, -0.97f) + lineTo(19.44f, 9.0f) + horizontalLineToRelative(-3.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.71f, -0.99f) + lineToRelative(0.83f, -2.48f) + lineToRelative(-1.71f, 1.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.0f, -0.17f) + lineToRelative(-1.16f, -1.5f) + verticalLineToRelative(2.29f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-4.5f) + curveToRelative(0.0f, -0.32f, 0.2f, -0.6f, 0.5f, -0.71f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(7.0f, 16.5f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(15.14f, 13.75f) + horizontalLineToRelative(0.11f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.6f) + lineToRelative(-0.39f, -1.55f) + curveToRelative(-0.25f, -1.0f, -1.15f, -1.7f, -2.18f, -1.7f) + lineTo(5.99f, 9.0f) + curveToRelative(-1.08f, 0.0f, -2.0f, 0.77f, -2.2f, 1.84f) + lineToRelative(-0.27f, 1.41f) + horizontalLineToRelative(-0.77f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.11f) + curveToRelative(-0.53f, 0.5f, -0.86f, 1.21f, -0.86f, 2.0f) + verticalLineToRelative(4.75f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 3.0f, 0.0f) + lineTo(5.0f, 20.0f) + horizontalLineToRelative(8.0f) + verticalLineToRelative(0.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 3.0f, 0.0f) + verticalLineToRelative(-4.75f) + curveToRelative(0.0f, -0.79f, -0.33f, -1.5f, -0.86f, -2.0f) + close() + moveTo(5.99f, 10.5f) + horizontalLineToRelative(6.09f) + curveToRelative(0.34f, 0.0f, 0.64f, 0.23f, 0.73f, 0.57f) + lineToRelative(0.45f, 1.81f) + lineToRelative(-0.01f, 0.12f) + lineTo(4.9f, 13.0f) + lineToRelative(0.36f, -1.89f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.73f, -0.61f) + close() + moveTo(14.5f, 18.5f) + horizontalLineToRelative(-11.0f) + verticalLineToRelative(-2.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(8.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(2.75f) + close() + } + } + return _vehicleCarCollision!! + } + +private var _vehicleCarCollision: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleCarParking.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleCarParking.kt new file mode 100644 index 00000000..86177c15 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleCarParking.kt @@ -0,0 +1,99 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VehicleCarParking: ImageVector + get() { + if (_vehicleCarParking != null) { + return _vehicleCarParking!! + } + _vehicleCarParking = fluentIcon(name = "Regular.VehicleCarParking") { + fluentPath { + moveTo(17.25f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + lineTo(22.0f, 1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(14.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(19.5f, 8.0f) + horizontalLineToRelative(-1.25f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f) + lineTo(17.25f, 2.0f) + close() + moveTo(15.8f, 3.0f) + lineToRelative(0.45f, 0.03f) + verticalLineToRelative(1.53f) + curveToRelative(-0.14f, -0.04f, -0.3f, -0.06f, -0.45f, -0.06f) + lineTo(8.2f, 4.5f) + curveToRelative(-0.8f, 0.0f, -1.5f, 0.55f, -1.7f, 1.33f) + lineTo(5.71f, 9.0f) + lineTo(18.5f, 9.0f) + verticalLineToRelative(1.5f) + lineTo(5.25f, 10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(4.5f, 17.0f) + horizontalLineToRelative(14.0f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(-1.0f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.13f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(0.75f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(-0.75f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.79f, -1.75f, -1.75f) + lineTo(16.0f, 18.5f) + lineTo(8.0f, 18.5f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.96f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-1.5f) + curveTo(3.78f, 21.5f, 3.0f, 20.7f, 3.0f, 19.75f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.81f, 0.43f, -1.53f, 1.08f, -1.92f) + lineToRelative(0.2f, -0.83f) + horizontalLineToRelative(-0.53f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineTo(3.0f, 7.75f) + curveToRelative(0.0f, -0.38f, 0.28f, -0.7f, 0.65f, -0.74f) + lineToRelative(0.1f, -0.01f) + horizontalLineToRelative(0.91f) + lineToRelative(0.39f, -1.54f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 8.2f, 3.0f) + horizontalLineToRelative(7.6f) + close() + moveTo(6.5f, 18.5f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(1.25f) + curveToRelative(0.0f, 0.13f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(1.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.12f, 0.25f, -0.25f) + lineTo(6.5f, 18.5f) + close() + moveTo(10.25f, 14.0f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-3.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(17.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(7.0f, 12.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + } + } + return _vehicleCarParking!! + } + +private var _vehicleCarParking: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleCarProfileLtr.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleCarProfileLtr.kt new file mode 100644 index 00000000..e83113dd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleCarProfileLtr.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VehicleCarProfileLtr: ImageVector + get() { + if (_vehicleCarProfileLtr != null) { + return _vehicleCarProfileLtr!! + } + _vehicleCarProfileLtr = fluentIcon(name = "Regular.VehicleCarProfileLtr") { + fluentPath { + moveTo(5.37f, 6.03f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 8.03f, 4.0f) + horizontalLineToRelative(4.83f) + curveToRelative(0.97f, 0.0f, 1.87f, 0.51f, 2.37f, 1.35f) + lineToRelative(2.5f, 4.25f) + lineToRelative(2.19f, 0.54f) + curveToRelative(1.22f, 0.31f, 2.08f, 1.41f, 2.08f, 2.67f) + verticalLineToRelative(1.69f) + curveToRelative(0.0f, 1.1f, -0.65f, 2.05f, -1.59f, 2.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.25f, 0.25f) + lineTo(9.34f, 17.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.32f, -0.61f) + arcTo(2.74f, 2.74f, 0.0f, false, true, 2.0f, 14.5f) + verticalLineToRelative(-2.25f) + curveToRelative(0.0f, -1.4f, 1.06f, -2.57f, 2.42f, -2.73f) + lineToRelative(0.95f, -3.5f) + close() + moveTo(14.04f, 15.75f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 6.27f, -0.6f) + curveToRelative(0.12f, -0.18f, 0.19f, -0.4f, 0.19f, -0.65f) + verticalLineToRelative(-1.69f) + curveToRelative(0.0f, -0.57f, -0.39f, -1.07f, -0.95f, -1.21f) + lineToRelative(-2.4f, -0.6f) + lineTo(4.76f, 11.0f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(2.27f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 5.96f, 1.23f) + horizontalLineToRelative(4.58f) + close() + moveTo(11.0f, 9.5f) + horizontalLineToRelative(4.93f) + lineToRelative(-2.0f, -3.39f) + arcToRelative(1.25f, 1.25f, 0.0f, false, false, -1.07f, -0.61f) + lineTo(11.0f, 5.5f) + verticalLineToRelative(4.0f) + close() + moveTo(9.5f, 5.5f) + lineTo(8.03f, 5.5f) + curveToRelative(-0.57f, 0.0f, -1.06f, 0.38f, -1.2f, 0.92f) + lineTo(5.97f, 9.5f) + lineTo(9.5f, 9.5f) + verticalLineToRelative(-4.0f) + close() + moveTo(6.25f, 14.5f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, 3.5f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, -3.5f) + close() + moveTo(15.5f, 16.25f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, 3.5f, 0.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -3.5f, 0.0f) + close() + } + } + return _vehicleCarProfileLtr!! + } + +private var _vehicleCarProfileLtr: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleCarProfileLtrClock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleCarProfileLtrClock.kt new file mode 100644 index 00000000..ca204409 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleCarProfileLtrClock.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VehicleCarProfileLtrClock: ImageVector + get() { + if (_vehicleCarProfileLtrClock != null) { + return _vehicleCarProfileLtrClock!! + } + _vehicleCarProfileLtrClock = fluentIcon(name = "Regular.VehicleCarProfileLtrClock") { + fluentPath { + moveTo(6.5f, 1.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(8.5f, 6.5f) + horizontalLineToRelative(-2.0f) + lineTo(6.5f, 4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + close() + moveTo(6.5f, 13.0f) + arcTo(6.5f, 6.5f, 0.0f, false, false, 12.0f, 9.97f) + lineTo(12.0f, 12.0f) + horizontalLineToRelative(4.93f) + lineToRelative(-2.0f, -3.39f) + arcTo(1.25f, 1.25f, 0.0f, false, false, 13.86f, 8.0f) + horizontalLineToRelative(-1.03f) + curveToRelative(0.11f, -0.48f, 0.17f, -0.98f, 0.17f, -1.5f) + horizontalLineToRelative(0.86f) + curveToRelative(0.97f, 0.0f, 1.87f, 0.51f, 2.37f, 1.35f) + lineToRelative(2.5f, 4.25f) + lineToRelative(2.19f, 0.54f) + curveToRelative(1.22f, 0.31f, 2.08f, 1.41f, 2.08f, 2.67f) + lineTo(23.0f, 17.0f) + curveToRelative(0.0f, 1.1f, -0.65f, 2.05f, -1.59f, 2.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.25f, 0.25f) + horizontalLineToRelative(-4.82f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -6.32f, -0.61f) + arcTo(2.74f, 2.74f, 0.0f, false, true, 3.0f, 17.0f) + verticalLineToRelative(-2.25f) + curveToRelative(0.0f, -0.9f, 0.43f, -1.7f, 1.1f, -2.2f) + curveToRelative(0.75f, 0.29f, 1.55f, 0.45f, 2.4f, 0.45f) + close() + moveTo(15.04f, 18.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 6.27f, -0.6f) + curveToRelative(0.12f, -0.18f, 0.19f, -0.4f, 0.19f, -0.65f) + verticalLineToRelative(-1.69f) + curveToRelative(0.0f, -0.57f, -0.39f, -1.07f, -0.95f, -1.21f) + lineToRelative(-2.4f, -0.6f) + lineTo(5.76f, 13.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(2.27f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 5.96f, 1.23f) + horizontalLineToRelative(4.58f) + close() + moveTo(7.25f, 17.0f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, 0.0f, 3.5f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, 0.0f, -3.5f) + close() + moveTo(16.5f, 18.75f) + arcToRelative(1.75f, 1.75f, 0.0f, true, false, 3.5f, 0.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -3.5f, 0.0f) + close() + } + } + return _vehicleCarProfileLtrClock!! + } + +private var _vehicleCarProfileLtrClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleCarProfileRtl.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleCarProfileRtl.kt new file mode 100644 index 00000000..2744d7ab --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleCarProfileRtl.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VehicleCarProfileRtl: ImageVector + get() { + if (_vehicleCarProfileRtl != null) { + return _vehicleCarProfileRtl!! + } + _vehicleCarProfileRtl = fluentIcon(name = "Regular.VehicleCarProfileRtl") { + fluentPath { + moveTo(18.63f, 6.03f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 15.97f, 4.0f) + horizontalLineToRelative(-4.83f) + curveToRelative(-0.97f, 0.0f, -1.87f, 0.51f, -2.37f, 1.35f) + lineTo(6.27f, 9.6f) + lineToRelative(-2.19f, 0.54f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 2.0f, 12.81f) + verticalLineToRelative(1.69f) + curveToRelative(0.0f, 1.1f, 0.65f, 2.05f, 1.59f, 2.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 6.25f, 0.25f) + horizontalLineToRelative(4.82f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 6.32f, -0.61f) + arcTo(2.74f, 2.74f, 0.0f, false, false, 22.0f, 14.5f) + verticalLineToRelative(-2.25f) + curveToRelative(0.0f, -1.4f, -1.06f, -2.57f, -2.42f, -2.73f) + lineToRelative(-0.95f, -3.5f) + close() + moveTo(9.96f, 15.75f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -6.27f, -0.6f) + curveToRelative(-0.12f, -0.18f, -0.19f, -0.4f, -0.19f, -0.65f) + verticalLineToRelative(-1.69f) + curveToRelative(0.0f, -0.57f, 0.39f, -1.07f, 0.95f, -1.21f) + lineToRelative(2.4f, -0.6f) + horizontalLineToRelative(12.4f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(2.27f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -5.96f, 1.23f) + lineTo(9.96f, 15.75f) + close() + moveTo(13.0f, 9.5f) + lineTo(8.07f, 9.5f) + lineToRelative(2.0f, -3.39f) + curveToRelative(0.22f, -0.38f, 0.63f, -0.61f, 1.07f, -0.61f) + lineTo(13.0f, 5.5f) + verticalLineToRelative(4.0f) + close() + moveTo(14.5f, 5.5f) + horizontalLineToRelative(1.47f) + curveToRelative(0.57f, 0.0f, 1.06f, 0.38f, 1.2f, 0.92f) + lineToRelative(0.85f, 3.08f) + lineTo(14.5f, 9.5f) + verticalLineToRelative(-4.0f) + close() + moveTo(17.75f, 14.5f) + arcToRelative(1.75f, 1.75f, 0.0f, true, true, 0.0f, 3.5f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 0.0f, -3.5f) + close() + moveTo(8.5f, 16.25f) + arcToRelative(1.75f, 1.75f, 0.0f, true, true, -3.5f, 0.0f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 3.5f, 0.0f) + close() + } + } + return _vehicleCarProfileRtl!! + } + +private var _vehicleCarProfileRtl: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleShip.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleShip.kt new file mode 100644 index 00000000..92cfec60 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleShip.kt @@ -0,0 +1,98 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VehicleShip: ImageVector + get() { + if (_vehicleShip != null) { + return _vehicleShip!! + } + _vehicleShip = fluentIcon(name = "Regular.VehicleShip") { + fluentPath { + moveTo(8.75f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(8.0f, 5.0f) + lineTo(5.75f, 5.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.76f) + lineToRelative(-1.46f, 0.54f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.42f, 1.02f) + lineToRelative(2.33f, 5.02f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 1.93f, 0.58f) + lineToRelative(-2.56f, -5.5f) + lineToRelative(6.59f, -2.4f) + curveToRelative(0.38f, -0.15f, 0.8f, -0.15f, 1.19f, -0.01f) + lineToRelative(6.77f, 2.42f) + lineToRelative(-2.62f, 5.34f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 1.87f, -0.4f) + lineToRelative(2.47f, -5.04f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.42f, -1.03f) + lineToRelative(-1.67f, -0.6f) + verticalLineToRelative(-4.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(16.0f, 5.0f) + lineTo(16.0f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-6.5f) + close() + moveTo(14.5f, 5.0f) + horizontalLineToRelative(-5.0f) + lineTo(9.5f, 3.5f) + horizontalLineToRelative(5.0f) + lineTo(14.5f, 5.0f) + close() + moveTo(17.5f, 6.5f) + verticalLineToRelative(3.42f) + lineToRelative(-4.4f, -1.57f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, -2.2f, 0.0f) + lineTo(6.5f, 9.98f) + lineTo(6.5f, 6.5f) + horizontalLineToRelative(11.0f) + close() + moveTo(18.73f, 18.56f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.45f, -0.03f) + verticalLineToRelative(0.01f) + arcToRelative(2.16f, 2.16f, 0.0f, false, true, -0.12f, 0.3f) + curveToRelative(-0.09f, 0.2f, -0.22f, 0.45f, -0.42f, 0.71f) + curveToRelative(-0.38f, 0.52f, -0.94f, 0.95f, -1.74f, 0.95f) + reflectiveCurveToRelative(-1.36f, -0.44f, -1.74f, -0.95f) + arcToRelative(3.85f, 3.85f, 0.0f, false, true, -0.54f, -1.0f) + verticalLineToRelative(-0.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.44f, 0.0f) + verticalLineToRelative(0.01f) + lineToRelative(-0.02f, 0.06f) + arcToRelative(3.36f, 3.36f, 0.0f, false, true, -0.52f, 0.95f) + curveToRelative(-0.38f, 0.51f, -0.93f, 0.95f, -1.74f, 0.95f) + curveToRelative(-0.8f, 0.0f, -1.36f, -0.44f, -1.74f, -0.95f) + arcToRelative(3.83f, 3.83f, 0.0f, false, true, -0.54f, -1.0f) + verticalLineToRelative(-0.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.44f, 0.02f) + verticalLineToRelative(0.01f) + arcToRelative(1.62f, 1.62f, 0.0f, false, true, -0.11f, 0.28f) + curveToRelative(-0.09f, 0.2f, -0.22f, 0.45f, -0.42f, 0.7f) + curveToRelative(-0.38f, 0.49f, -1.0f, 0.96f, -2.0f, 0.96f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + arcTo(3.92f, 3.92f, 0.0f, false, false, 6.0f, 20.37f) + lineToRelative(0.06f, 0.08f) + curveTo(6.6f, 21.19f, 7.56f, 22.0f, 9.0f, 22.0f) + arcToRelative(3.63f, 3.63f, 0.0f, false, false, 3.0f, -1.63f) + lineToRelative(0.06f, 0.08f) + curveTo(12.6f, 21.2f, 13.56f, 22.0f, 15.0f, 22.0f) + arcToRelative(3.63f, 3.63f, 0.0f, false, false, 3.0f, -1.62f) + lineToRelative(0.06f, 0.08f) + curveToRelative(0.6f, 0.76f, 1.61f, 1.54f, 3.19f, 1.54f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + arcToRelative(2.42f, 2.42f, 0.0f, false, true, -2.0f, -0.96f) + arcToRelative(3.27f, 3.27f, 0.0f, false, true, -0.52f, -0.98f) + close() + } + } + return _vehicleShip!! + } + +private var _vehicleShip: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleSubway.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleSubway.kt new file mode 100644 index 00000000..48b91e6c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleSubway.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VehicleSubway: ImageVector + get() { + if (_vehicleSubway != null) { + return _vehicleSubway!! + } + _vehicleSubway = fluentIcon(name = "Regular.VehicleSubway") { + fluentPath { + moveTo(16.25f, 3.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 20.0f, 6.75f) + verticalLineToRelative(9.0f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -2.89f, 3.65f) + lineToRelative(2.46f, 1.17f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.55f, 1.4f) + lineToRelative(-0.1f, -0.04f) + lineToRelative(-5.09f, -2.43f) + horizontalLineToRelative(-3.66f) + lineToRelative(-5.1f, 2.43f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.64f, -1.36f) + lineToRelative(2.46f, -1.17f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 4.0f, 15.75f) + verticalLineToRelative(-9.0f) + arcTo(3.75f, 3.75f, 0.0f, false, true, 7.75f, 3.0f) + horizontalLineToRelative(8.5f) + close() + moveTo(18.5f, 14.0f) + horizontalLineToRelative(-13.0f) + verticalLineToRelative(1.75f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(8.5f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + lineTo(18.5f, 14.0f) + close() + moveTo(8.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(16.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(16.25f, 4.5f) + horizontalLineToRelative(-8.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, 1.0f, -2.25f, 2.25f) + verticalLineToRelative(5.75f) + horizontalLineToRelative(13.0f) + lineTo(18.5f, 6.75f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + close() + moveTo(13.25f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.5f) + close() + } + } + return _vehicleSubway!! + } + +private var _vehicleSubway: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleTruck.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleTruck.kt new file mode 100644 index 00000000..141c1d92 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleTruck.kt @@ -0,0 +1,106 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VehicleTruck: ImageVector + get() { + if (_vehicleTruck != null) { + return _vehicleTruck!! + } + _vehicleTruck = fluentIcon(name = "Regular.VehicleTruck") { + fluentPath { + moveTo(9.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(16.0f, 14.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(10.75f, 15.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.5f) + close() + moveTo(3.0f, 5.25f) + curveTo(3.0f, 4.01f, 4.0f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(13.5f) + curveTo(19.99f, 3.0f, 21.0f, 4.0f, 21.0f, 5.25f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + lineTo(18.5f, 19.5f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-1.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(-3.0f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-1.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-0.75f) + lineTo(3.75f, 19.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(3.0f, 5.25f) + close() + moveTo(9.0f, 20.25f) + verticalLineToRelative(-0.75f) + lineTo(7.0f, 19.5f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(1.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + close() + moveTo(7.0f, 18.0f) + horizontalLineToRelative(10.0f) + verticalLineToRelative(-6.0f) + lineTo(7.0f, 12.0f) + verticalLineToRelative(6.0f) + close() + moveTo(15.0f, 19.5f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(1.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-0.75f) + horizontalLineToRelative(-2.0f) + close() + moveTo(19.5f, 18.0f) + lineTo(19.5f, 5.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(5.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + lineTo(4.5f, 18.0f) + horizontalLineToRelative(1.0f) + verticalLineToRelative(-6.75f) + curveToRelative(0.0f, -0.05f, 0.0f, -0.1f, 0.02f, -0.16f) + lineToRelative(0.74f, -3.33f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 8.46f, 6.0f) + horizontalLineToRelative(7.09f) + curveToRelative(1.05f, 0.0f, 1.96f, 0.73f, 2.2f, 1.76f) + lineToRelative(0.73f, 3.33f) + lineToRelative(0.02f, 0.16f) + lineTo(18.5f, 18.0f) + horizontalLineToRelative(1.0f) + close() + moveTo(8.45f, 7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.73f, 0.59f) + lineToRelative(-0.54f, 2.41f) + horizontalLineToRelative(9.64f) + lineToRelative(-0.54f, -2.41f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.73f, -0.59f) + horizontalLineToRelative(-7.1f) + close() + } + } + return _vehicleTruck!! + } + +private var _vehicleTruck: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleTruckBag.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleTruckBag.kt new file mode 100644 index 00000000..6c2bf3e3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleTruckBag.kt @@ -0,0 +1,110 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VehicleTruckBag: ImageVector + get() { + if (_vehicleTruckBag != null) { + return _vehicleTruckBag!! + } + _vehicleTruckBag = fluentIcon(name = "Regular.VehicleTruckBag") { + fluentPath { + moveTo(1.75f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(6.0f) + curveToRelative(0.0f, 1.24f, 1.0f, 2.25f, 2.25f, 2.25f) + horizontalLineToRelative(5.0f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(9.5f, 4.5f) + verticalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -3.75f, -2.17f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 2.0f, 3.5f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-0.25f) + close() + moveTo(7.0f, 4.5f) + verticalLineToRelative(-1.0f) + curveToRelative(0.0f, -0.35f, -0.07f, -0.68f, -0.2f, -0.98f) + arcTo(1.0f, 1.0f, 0.0f, false, true, 8.0f, 3.5f) + verticalLineToRelative(1.0f) + lineTo(7.0f, 4.5f) + close() + moveTo(5.5f, 3.5f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(2.0f, 17.25f) + verticalLineToRelative(-3.0f) + curveToRelative(0.38f, 0.16f, 0.8f, 0.25f, 1.25f, 0.25f) + horizontalLineToRelative(0.25f) + verticalLineToRelative(2.75f) + curveToRelative(0.0f, 0.39f, 0.3f, 0.7f, 0.67f, 0.75f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 5.66f, 0.0f) + horizontalLineToRelative(2.34f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 15.0f, 16.0f) + lineTo(15.0f, 5.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.92f) + arcToRelative(1.76f, 1.76f, 0.0f, false, false, -0.83f, -0.83f) + lineTo(10.5f, 3.5f) + curveToRelative(0.0f, -0.17f, -0.01f, -0.34f, -0.04f, -0.5f) + horizontalLineToRelative(3.79f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + lineTo(16.5f, 6.0f) + horizontalLineToRelative(1.55f) + curveToRelative(0.87f, 0.0f, 1.66f, 0.5f, 2.03f, 1.29f) + lineToRelative(1.7f, 3.58f) + curveToRelative(0.15f, 0.3f, 0.22f, 0.63f, 0.22f, 0.97f) + verticalLineToRelative(5.41f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-1.8f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -5.9f, 0.0f) + horizontalLineToRelative(-2.1f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -5.91f, -0.01f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 2.0f, 17.25f) + close() + moveTo(17.83f, 18.0f) + horizontalLineToRelative(1.92f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(20.5f, 17.0f) + horizontalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(1.25f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(3.9f) + curveToRelative(0.61f, 0.36f, 1.09f, 0.92f, 1.33f, 1.6f) + close() + moveTo(16.5f, 7.5f) + lineTo(16.5f, 11.0f) + horizontalLineToRelative(3.68f) + lineToRelative(-1.45f, -3.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.68f, -0.43f) + lineTo(16.5f, 7.5f) + close() + moveTo(7.0f, 20.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + close() + moveTo(16.5f, 19.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f) + close() + moveTo(3.5f, 3.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.08f, -0.4f) + close() + } + } + return _vehicleTruckBag!! + } + +private var _vehicleTruckBag: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleTruckCube.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleTruckCube.kt new file mode 100644 index 00000000..6c530a8c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleTruckCube.kt @@ -0,0 +1,103 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VehicleTruckCube: ImageVector + get() { + if (_vehicleTruckCube != null) { + return _vehicleTruckCube!! + } + _vehicleTruckCube = fluentIcon(name = "Regular.VehicleTruckCube") { + fluentPath { + moveTo(1.0f, 8.57f) + lineTo(1.0f, 4.43f) + curveToRelative(0.0f, -0.57f, 0.32f, -1.09f, 0.83f, -1.34f) + lineToRelative(3.5f, -1.75f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 1.34f, 0.0f) + lineToRelative(3.5f, 1.75f) + curveToRelative(0.5f, 0.25f, 0.83f, 0.77f, 0.83f, 1.34f) + verticalLineToRelative(4.14f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -0.83f, 1.35f) + lineToRelative(-3.5f, 1.75f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -1.34f, 0.0f) + lineToRelative(-3.5f, -1.75f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 1.0f, 8.57f) + close() + moveTo(2.55f, 4.53f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.23f, 0.67f) + lineTo(5.5f, 6.56f) + lineTo(5.5f, 9.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) + lineTo(6.5f, 6.56f) + lineTo(9.22f, 5.2f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -0.44f, -0.9f) + lineTo(6.0f, 5.7f) + lineTo(3.22f, 4.3f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.67f, 0.23f) + close() + moveTo(3.5f, 11.87f) + verticalLineToRelative(5.38f) + curveToRelative(0.0f, 0.39f, 0.3f, 0.7f, 0.67f, 0.75f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 5.66f, 0.0f) + horizontalLineToRelative(2.34f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 15.0f, 16.0f) + lineTo(15.0f, 5.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(12.0f, 4.5f) + verticalLineToRelative(-0.07f) + arcTo(2.5f, 2.5f, 0.0f, false, false, 11.55f, 3.0f) + horizontalLineToRelative(2.7f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + lineTo(16.5f, 6.0f) + horizontalLineToRelative(1.55f) + curveToRelative(0.87f, 0.0f, 1.66f, 0.5f, 2.03f, 1.29f) + lineToRelative(1.7f, 3.58f) + curveToRelative(0.15f, 0.3f, 0.22f, 0.63f, 0.22f, 0.97f) + verticalLineToRelative(5.41f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-1.8f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -5.9f, 0.0f) + horizontalLineToRelative(-2.1f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -5.91f, 0.0f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 2.0f, 17.24f) + verticalLineToRelative(-6.13f) + lineToRelative(1.5f, 0.75f) + close() + moveTo(16.5f, 16.4f) + curveToRelative(0.61f, 0.36f, 1.09f, 0.92f, 1.33f, 1.6f) + horizontalLineToRelative(1.92f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(20.5f, 17.0f) + horizontalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + horizontalLineToRelative(1.25f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(3.9f) + close() + moveTo(18.05f, 7.5f) + lineTo(16.5f, 7.5f) + lineTo(16.5f, 11.0f) + horizontalLineToRelative(3.68f) + lineToRelative(-1.45f, -3.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.68f, -0.43f) + close() + moveTo(5.5f, 19.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -3.0f, 0.0f) + close() + moveTo(15.0f, 20.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + close() + } + } + return _vehicleTruckCube!! + } + +private var _vehicleTruckCube: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleTruckProfile.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleTruckProfile.kt new file mode 100644 index 00000000..b0844e81 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VehicleTruckProfile.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VehicleTruckProfile: ImageVector + get() { + if (_vehicleTruckProfile != null) { + return _vehicleTruckProfile!! + } + _vehicleTruckProfile = fluentIcon(name = "Regular.VehicleTruckProfile") { + fluentPath { + moveTo(4.25f, 3.0f) + curveTo(3.01f, 3.0f, 2.0f, 4.0f, 2.0f, 5.25f) + verticalLineToRelative(12.0f) + curveToRelative(0.0f, 1.17f, 0.9f, 2.13f, 2.04f, 2.24f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 5.92f, 0.01f) + horizontalLineToRelative(2.08f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 5.92f, 0.0f) + horizontalLineToRelative(1.79f) + curveToRelative(1.24f, 0.0f, 2.25f, -1.0f, 2.25f, -2.25f) + verticalLineToRelative(-5.41f) + curveToRelative(0.0f, -0.34f, -0.07f, -0.66f, -0.22f, -0.97f) + lineToRelative(-1.7f, -3.58f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 18.05f, 6.0f) + lineTo(16.5f, 6.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f) + horizontalLineToRelative(-10.0f) + close() + moveTo(17.83f, 18.0f) + arcToRelative(3.01f, 3.01f, 0.0f, false, false, -1.33f, -1.6f) + verticalLineToRelative(-3.9f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(-1.25f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(1.25f) + verticalLineToRelative(0.25f) + curveToRelative(0.0f, 0.41f, -0.34f, 0.75f, -0.75f, 0.75f) + horizontalLineToRelative(-1.92f) + close() + moveTo(15.0f, 16.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -2.83f, 2.0f) + lineTo(9.83f, 18.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -5.66f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.67f, -0.75f) + verticalLineToRelative(-12.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(10.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(15.0f, 16.0f) + close() + moveTo(16.5f, 7.5f) + horizontalLineToRelative(1.55f) + curveToRelative(0.3f, 0.0f, 0.55f, 0.17f, 0.68f, 0.43f) + lineTo(20.18f, 11.0f) + lineTo(16.5f, 11.0f) + lineTo(16.5f, 7.5f) + close() + moveTo(7.0f, 20.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 0.0f, 3.0f) + close() + moveTo(16.5f, 19.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + } + } + return _vehicleTruckProfile!! + } + +private var _vehicleTruckProfile: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Video.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Video.kt new file mode 100644 index 00000000..489ad412 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Video.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Video: ImageVector + get() { + if (_video != null) { + return _video!! + } + _video = fluentIcon(name = "Regular.Video") { + fluentPath { + moveTo(13.75f, 4.5f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(0.17f) + lineToRelative(3.86f, -2.31f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.14f, 0.64f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.58f, -0.64f, 0.94f, -1.14f, 0.64f) + lineTo(17.0f, 16.07f) + verticalLineToRelative(0.18f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-8.5f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.25f) + verticalLineToRelative(-8.5f) + curveTo(2.0f, 5.95f, 3.46f, 4.5f, 5.25f, 4.5f) + horizontalLineToRelative(8.5f) + close() + moveTo(13.75f, 6.0f) + horizontalLineToRelative(-8.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(8.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(20.5f, 7.57f) + lineTo(17.0f, 9.67f) + verticalLineToRelative(4.66f) + lineToRelative(3.5f, 2.1f) + lineTo(20.5f, 7.57f) + close() + } + } + return _video!! + } + +private var _video: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Video360.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Video360.kt new file mode 100644 index 00000000..c9e3ba3d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Video360.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Video360: ImageVector + get() { + if (_video360 != null) { + return _video360!! + } + _video360 = fluentIcon(name = "Regular.Video360") { + fluentPath { + moveTo(13.5f, 11.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 3.0f, 0.0f) + close() + moveTo(7.0f, 14.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + close() + moveTo(17.0f, 14.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, -3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, 3.0f) + close() + moveTo(2.0f, 6.32f) + curveToRelative(0.0f, -1.45f, 1.32f, -2.5f, 2.7f, -2.3f) + curveToRelative(1.57f, 0.22f, 4.1f, 0.48f, 7.3f, 0.48f) + reflectiveCurveToRelative(5.73f, -0.26f, 7.3f, -0.48f) + curveToRelative(1.38f, -0.2f, 2.7f, 0.85f, 2.7f, 2.3f) + verticalLineToRelative(11.36f) + curveToRelative(0.0f, 1.45f, -1.32f, 2.5f, -2.7f, 2.3f) + arcToRelative(53.3f, 53.3f, 0.0f, false, false, -7.3f, -0.48f) + curveToRelative(-3.19f, 0.0f, -5.73f, 0.26f, -7.3f, 0.48f) + curveToRelative(-1.38f, 0.2f, -2.7f, -0.86f, -2.7f, -2.3f) + lineTo(2.0f, 6.32f) + close() + moveTo(4.48f, 5.5f) + curveToRelative(-0.52f, -0.07f, -0.98f, 0.34f, -0.98f, 0.82f) + verticalLineToRelative(11.36f) + curveToRelative(0.0f, 0.48f, 0.46f, 0.9f, 0.98f, 0.82f) + lineToRelative(0.52f, -0.07f) + lineTo(5.0f, 16.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(2.5f) + verticalLineToRelative(3.1f) + lineToRelative(1.5f, -0.07f) + lineTo(10.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f) + horizontalLineToRelative(2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(3.03f) + lineToRelative(1.5f, 0.07f) + lineTo(15.5f, 15.0f) + lineTo(18.0f, 15.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f) + verticalLineToRelative(2.43f) + lineToRelative(0.52f, 0.07f) + curveToRelative(0.52f, 0.07f, 0.98f, -0.34f, 0.98f, -0.82f) + lineTo(20.5f, 6.32f) + curveToRelative(0.0f, -0.48f, -0.46f, -0.9f, -0.98f, -0.82f) + curveToRelative(-1.64f, 0.23f, -4.25f, 0.5f, -7.52f, 0.5f) + curveToRelative(-3.27f, 0.0f, -5.88f, -0.27f, -7.52f, -0.5f) + close() + } + } + return _video360!! + } + +private var _video360: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoAdd.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoAdd.kt new file mode 100644 index 00000000..b8640995 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoAdd.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VideoAdd: ImageVector + get() { + if (_videoAdd != null) { + return _videoAdd!! + } + _videoAdd = fluentIcon(name = "Regular.VideoAdd") { + fluentPath { + moveTo(13.75f, 4.5f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(0.17f) + lineToRelative(3.86f, -2.31f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.14f, 0.64f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.58f, -0.64f, 0.94f, -1.14f, 0.64f) + lineTo(17.0f, 16.07f) + verticalLineToRelative(0.18f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-1.06f) + curveToRelative(0.15f, -0.48f, 0.25f, -0.98f, 0.3f, -1.5f) + horizontalLineToRelative(0.76f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-8.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(3.98f) + curveToRelative(-0.55f, 0.29f, -1.06f, 0.65f, -1.5f, 1.08f) + lineTo(2.0f, 7.75f) + curveTo(2.0f, 5.95f, 3.46f, 4.5f, 5.25f, 4.5f) + horizontalLineToRelative(8.5f) + close() + moveTo(20.5f, 7.57f) + lineTo(17.0f, 9.67f) + verticalLineToRelative(4.66f) + lineToRelative(3.5f, 2.1f) + lineTo(20.5f, 7.57f) + close() + moveTo(12.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 11.0f, 0.0f) + close() + moveTo(7.0f, 18.0f) + verticalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, -1.0f, 0.0f) + lineTo(6.0f, 18.0f) + lineTo(3.5f, 18.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, -1.0f) + lineTo(6.0f, 17.0f) + verticalLineToRelative(-2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 1.0f, 0.0f) + lineTo(7.0f, 17.0f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + lineTo(7.0f, 18.0f) + close() + } + } + return _videoAdd!! + } + +private var _videoAdd: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoBackgroundEffect.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoBackgroundEffect.kt new file mode 100644 index 00000000..9b7b9732 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoBackgroundEffect.kt @@ -0,0 +1,107 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VideoBackgroundEffect: ImageVector + get() { + if (_videoBackgroundEffect != null) { + return _videoBackgroundEffect!! + } + _videoBackgroundEffect = fluentIcon(name = "Regular.VideoBackgroundEffect") { + fluentPath { + moveTo(6.0f, 16.94f) + verticalLineToRelative(2.12f) + lineToRelative(-0.94f, 0.94f) + lineTo(2.94f, 20.0f) + lineTo(6.0f, 16.94f) + close() + moveTo(22.0f, 14.44f) + verticalLineToRelative(2.12f) + lineTo(18.56f, 20.0f) + horizontalLineToRelative(-0.57f) + verticalLineToRelative(-1.56f) + lineToRelative(4.01f, -4.0f) + close() + moveTo(8.75f, 14.0f) + horizontalLineToRelative(6.5f) + curveToRelative(0.91f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) + lineTo(16.99f, 20.0f) + horizontalLineToRelative(-1.5f) + verticalLineToRelative(-4.25f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.19f, -0.24f) + lineToRelative(-0.06f, -0.01f) + lineTo(8.75f, 15.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.24f, 0.2f) + lineToRelative(-0.01f, 0.05f) + lineTo(8.5f, 20.0f) + lineTo(7.0f, 20.0f) + verticalLineToRelative(-4.25f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) + lineToRelative(0.15f, -0.01f) + close() + moveTo(8.02f, 10.42f) + curveToRelative(0.06f, 0.57f, 0.24f, 1.12f, 0.52f, 1.6f) + lineTo(2.0f, 18.56f) + verticalLineToRelative(-2.12f) + lineToRelative(6.02f, -6.02f) + close() + moveTo(22.0f, 9.93f) + verticalLineToRelative(2.13f) + lineToRelative(-4.0f, 4.0f) + verticalLineToRelative(-0.31f) + lineToRelative(-0.01f, -0.17f) + arcToRelative(2.73f, 2.73f, 0.0f, false, false, -0.39f, -1.25f) + lineToRelative(4.4f, -4.4f) + close() + moveTo(12.06f, 4.0f) + lineTo(2.0f, 14.06f) + verticalLineToRelative(-2.12f) + lineTo(9.94f, 4.0f) + horizontalLineToRelative(2.12f) + close() + moveTo(22.0f, 5.43f) + verticalLineToRelative(2.13f) + lineToRelative(-5.67f, 5.66f) + arcToRelative(2.73f, 2.73f, 0.0f, false, false, -0.86f, -0.21f) + lineToRelative(-0.23f, -0.01f) + horizontalLineToRelative(-0.6f) + curveToRelative(0.35f, -0.3f, 0.64f, -0.66f, 0.86f, -1.06f) + lineToRelative(6.5f, -6.5f) + close() + moveTo(12.0f, 7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) + close() + moveTo(12.0f, 8.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(7.56f, 4.0f) + lineTo(2.0f, 9.56f) + lineTo(2.0f, 7.44f) + lineTo(5.44f, 4.0f) + horizontalLineToRelative(2.12f) + close() + moveTo(21.06f, 4.0f) + lineTo(15.9f, 9.15f) + arcToRelative(3.98f, 3.98f, 0.0f, false, false, -0.65f, -1.47f) + lineTo(18.93f, 4.0f) + horizontalLineToRelative(2.13f) + close() + moveTo(16.56f, 4.0f) + lineTo(14.0f, 6.54f) + arcToRelative(3.97f, 3.97f, 0.0f, false, false, -1.6f, -0.52f) + lineTo(14.45f, 4.0f) + horizontalLineToRelative(2.12f) + close() + } + } + return _videoBackgroundEffect!! + } + +private var _videoBackgroundEffect: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoBackgroundEffectHorizontal.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoBackgroundEffectHorizontal.kt new file mode 100644 index 00000000..5990d8db --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoBackgroundEffectHorizontal.kt @@ -0,0 +1,101 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VideoBackgroundEffectHorizontal: ImageVector + get() { + if (_videoBackgroundEffectHorizontal != null) { + return _videoBackgroundEffectHorizontal!! + } + _videoBackgroundEffectHorizontal = fluentIcon(name = + "Regular.VideoBackgroundEffectHorizontal") { + fluentPath { + moveTo(2.13f, 5.5f) + curveTo(2.43f, 4.63f, 3.27f, 4.0f, 4.25f, 4.0f) + horizontalLineToRelative(15.5f) + curveToRelative(0.98f, 0.0f, 1.81f, 0.63f, 2.12f, 1.5f) + lineTo(2.13f, 5.5f) + close() + moveTo(22.0f, 11.25f) + horizontalLineToRelative(-6.2f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -0.9f, 1.5f) + lineTo(22.0f, 12.75f) + verticalLineToRelative(-1.5f) + close() + moveTo(22.0f, 9.0f) + horizontalLineToRelative(-6.13f) + arcToRelative(3.99f, 3.99f, 0.0f, false, false, -0.75f, -1.5f) + lineTo(22.0f, 7.5f) + lineTo(22.0f, 9.0f) + close() + moveTo(14.83f, 9.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -5.66f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, 5.66f, 0.0f) + close() + moveTo(10.5f, 10.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + moveTo(2.0f, 7.5f) + horizontalLineToRelative(6.88f) + curveToRelative(-0.35f, 0.43f, -0.61f, 0.94f, -0.75f, 1.5f) + lineTo(2.0f, 9.0f) + lineTo(2.0f, 7.5f) + close() + moveTo(2.0f, 11.25f) + horizontalLineToRelative(6.2f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.9f, 1.5f) + lineTo(2.0f, 12.75f) + verticalLineToRelative(-1.5f) + close() + moveTo(2.0f, 15.0f) + horizontalLineToRelative(4.1f) + curveToRelative(-0.06f, 0.24f, -0.1f, 0.49f, -0.1f, 0.75f) + verticalLineToRelative(0.75f) + lineTo(2.0f, 16.5f) + lineTo(2.0f, 15.0f) + close() + moveTo(2.13f, 18.5f) + lineTo(6.0f, 18.5f) + lineTo(6.0f, 20.0f) + lineTo(4.25f, 20.0f) + curveToRelative(-0.98f, 0.0f, -1.81f, -0.63f, -2.12f, -1.5f) + close() + moveTo(7.0f, 15.75f) + arcTo(1.74f, 1.74f, 0.0f, false, true, 8.75f, 14.0f) + horizontalLineToRelative(6.5f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 17.0f, 15.75f) + lineTo(17.0f, 20.0f) + horizontalLineToRelative(-1.5f) + verticalLineToRelative(-4.25f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + lineTo(8.5f, 20.0f) + lineTo(7.0f, 20.0f) + verticalLineToRelative(-4.25f) + close() + moveTo(18.0f, 18.5f) + lineTo(18.0f, 20.0f) + horizontalLineToRelative(1.75f) + curveToRelative(0.98f, 0.0f, 1.81f, -0.63f, 2.12f, -1.5f) + lineTo(18.0f, 18.5f) + close() + moveTo(22.0f, 16.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.26f, -0.04f, -0.51f, -0.1f, -0.75f) + lineTo(22.0f, 15.0f) + verticalLineToRelative(1.5f) + close() + } + } + return _videoBackgroundEffectHorizontal!! + } + +private var _videoBackgroundEffectHorizontal: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoChat.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoChat.kt new file mode 100644 index 00000000..8525a556 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoChat.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VideoChat: ImageVector + get() { + if (_videoChat != null) { + return _videoChat!! + } + _videoChat = fluentIcon(name = "Regular.VideoChat") { + fluentPath { + moveTo(13.75f, 4.5f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(0.17f) + lineToRelative(3.86f, -2.31f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.14f, 0.64f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.58f, -0.64f, 0.94f, -1.14f, 0.64f) + lineTo(17.0f, 16.07f) + verticalLineToRelative(0.18f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-1.48f) + curveToRelative(0.25f, -0.47f, 0.43f, -0.97f, 0.56f, -1.5f) + horizontalLineToRelative(0.92f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-8.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(2.98f) + curveToRelative(-0.55f, 0.29f, -1.06f, 0.65f, -1.5f, 1.08f) + lineTo(2.0f, 7.75f) + curveTo(2.0f, 5.95f, 3.46f, 4.5f, 5.25f, 4.5f) + horizontalLineToRelative(8.5f) + close() + moveTo(20.5f, 7.57f) + lineTo(17.0f, 9.67f) + verticalLineToRelative(4.66f) + lineToRelative(3.5f, 2.1f) + lineTo(20.5f, 7.57f) + close() + moveTo(10.0f, 12.26f) + arcTo(5.48f, 5.48f, 0.0f, false, false, 6.5f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -4.81f, 8.17f) + lineToRelative(-0.67f, 2.19f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.63f, 0.62f) + lineToRelative(2.18f, -0.67f) + arcTo(5.5f, 5.5f, 0.0f, false, false, 10.0f, 12.25f) + close() + moveTo(4.5f, 16.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + horizontalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + horizontalLineToRelative(-4.0f) + close() + moveTo(6.5f, 18.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + horizontalLineToRelative(2.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f) + close() + } + } + return _videoChat!! + } + +private var _videoChat: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoClip.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoClip.kt new file mode 100644 index 00000000..638071ab --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoClip.kt @@ -0,0 +1,50 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VideoClip: ImageVector + get() { + if (_videoClip != null) { + return _videoClip!! + } + _videoClip = fluentIcon(name = "Regular.VideoClip") { + fluentPath { + moveTo(2.0f, 6.25f) + curveTo(2.0f, 4.45f, 3.46f, 3.0f, 5.25f, 3.0f) + horizontalLineToRelative(13.5f) + curveTo(20.55f, 3.0f, 22.0f, 4.46f, 22.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineTo(5.25f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 17.75f) + verticalLineTo(6.25f) + close() + moveTo(5.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(13.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineTo(6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineTo(5.25f) + close() + moveTo(9.0f, 9.25f) + verticalLineToRelative(5.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.48f, 0.88f) + lineToRelative(5.0f, -2.75f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.76f) + lineToRelative(-5.0f, -2.75f) + arcTo(1.0f, 1.0f, 0.0f, false, false, 9.0f, 9.25f) + close() + } + } + return _videoClip!! + } + +private var _videoClip: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoClipMultiple.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoClipMultiple.kt new file mode 100644 index 00000000..d3ef95d8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoClipMultiple.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VideoClipMultiple: ImageVector + get() { + if (_videoClipMultiple != null) { + return _videoClipMultiple!! + } + _videoClipMultiple = fluentIcon(name = "Regular.VideoClipMultiple") { + fluentPath { + moveTo(8.0f, 7.75f) + verticalLineToRelative(5.5f) + curveToRelative(0.0f, 0.6f, 0.66f, 0.95f, 1.15f, 0.63f) + lineToRelative(4.62f, -2.96f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -0.84f) + lineTo(9.15f, 7.12f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 8.0f, 7.75f) + close() + moveTo(5.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 6.25f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(10.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-9.0f) + curveTo(19.0f, 4.45f, 17.54f, 3.0f, 15.75f, 3.0f) + horizontalLineTo(5.25f) + close() + moveTo(3.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(10.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(9.0f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineTo(5.25f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-9.0f) + close() + moveTo(5.01f, 19.5f) + curveToRelative(0.58f, 0.9f, 1.59f, 1.5f, 2.74f, 1.5f) + horizontalLineToRelative(8.5f) + curveToRelative(2.9f, 0.0f, 5.25f, -2.35f, 5.25f, -5.25f) + verticalLineToRelative(-7.0f) + curveToRelative(0.0f, -1.15f, -0.6f, -2.16f, -1.5f, -2.74f) + verticalLineToRelative(9.74f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -3.75f, 3.75f) + horizontalLineTo(5.01f) + close() + } + } + return _videoClipMultiple!! + } + +private var _videoClipMultiple: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoClipOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoClipOff.kt new file mode 100644 index 00000000..6d873150 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoClipOff.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VideoClipOff: ImageVector + get() { + if (_videoClipOff != null) { + return _videoClipOff!! + } + _videoClipOff = fluentIcon(name = "Regular.VideoClipOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(0.7f, 0.7f) + arcTo(3.24f, 3.24f, 0.0f, false, false, 2.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(2.0f, 19.55f, 3.46f, 21.0f, 5.25f, 21.0f) + horizontalLineToRelative(13.5f) + curveToRelative(0.36f, 0.0f, 0.7f, -0.06f, 1.02f, -0.16f) + lineToRelative(0.95f, 0.94f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(18.44f, 19.5f) + lineTo(5.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(3.5f, 6.25f) + curveToRelative(0.0f, -0.47f, 0.18f, -0.9f, 0.48f, -1.2f) + lineTo(9.0f, 10.05f) + verticalLineToRelative(4.69f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.48f, 0.88f) + lineToRelative(2.64f, -1.45f) + lineToRelative(5.32f, 5.32f) + close() + moveTo(12.87f, 9.69f) + lineTo(15.79f, 12.61f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.3f, -1.49f) + lineTo(12.86f, 9.7f) + close() + moveTo(20.5f, 6.25f) + verticalLineToRelative(11.07f) + lineToRelative(1.36f, 1.36f) + curveToRelative(0.1f, -0.3f, 0.14f, -0.6f, 0.14f, -0.93f) + lineTo(22.0f, 6.25f) + curveTo(22.0f, 4.45f, 20.54f, 3.0f, 18.75f, 3.0f) + lineTo(6.18f, 3.0f) + lineToRelative(1.5f, 1.5f) + horizontalLineToRelative(11.07f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + close() + } + } + return _videoClipOff!! + } + +private var _videoClipOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoOff.kt new file mode 100644 index 00000000..c81cb7bc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoOff.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VideoOff: ImageVector + get() { + if (_videoOff != null) { + return _videoOff!! + } + _videoOff = fluentIcon(name = "Regular.VideoOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.57f, 1.57f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 7.75f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 1.8f, 1.46f, 3.25f, 3.25f, 3.25f) + horizontalLineToRelative(8.5f) + curveToRelative(1.27f, 0.0f, 2.37f, -0.73f, 2.9f, -1.79f) + lineToRelative(4.07f, 4.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(15.48f, 16.54f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 13.75f, 18.0f) + horizontalLineToRelative(-8.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.87f, 0.63f, -1.59f, 1.46f, -1.73f) + lineToRelative(10.52f, 10.52f) + close() + moveTo(15.5f, 12.32f) + lineTo(15.5f, 7.75f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(9.18f, 6.0f) + lineToRelative(-1.5f, -1.5f) + horizontalLineToRelative(6.07f) + curveToRelative(1.8f, 0.0f, 3.25f, 1.46f, 3.25f, 3.25f) + verticalLineToRelative(0.17f) + lineToRelative(3.86f, -2.31f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.14f, 0.64f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.3f, -0.17f, 0.54f, -0.4f, 0.67f) + lineToRelative(-1.1f, -1.1f) + lineTo(20.5f, 7.57f) + lineTo(17.0f, 9.67f) + verticalLineToRelative(4.15f) + lineToRelative(-1.5f, -1.5f) + close() + } + } + return _videoOff!! + } + +private var _videoOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoPerson.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoPerson.kt new file mode 100644 index 00000000..266c97d4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoPerson.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VideoPerson: ImageVector + get() { + if (_videoPerson != null) { + return _videoPerson!! + } + _videoPerson = fluentIcon(name = "Regular.VideoPerson") { + fluentPath { + moveTo(19.75f, 4.0f) + curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(22.0f, 19.0f, 20.99f, 20.0f, 19.75f, 20.0f) + lineTo(4.25f, 20.0f) + curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) + lineTo(2.0f, 6.25f) + curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) + horizontalLineToRelative(15.5f) + close() + moveTo(19.75f, 5.5f) + lineTo(4.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(7.0f, 18.5f) + verticalLineToRelative(-2.75f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) + lineToRelative(0.15f, -0.01f) + horizontalLineToRelative(6.5f) + curveToRelative(0.91f, 0.0f, 1.67f, 0.7f, 1.74f, 1.6f) + verticalLineToRelative(2.9f) + horizontalLineToRelative(2.76f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) + lineTo(20.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(15.25f, 15.5f) + horizontalLineToRelative(-6.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.24f, 0.2f) + lineToRelative(-0.01f, 0.05f) + verticalLineToRelative(2.75f) + horizontalLineToRelative(7.0f) + verticalLineToRelative(-2.75f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.2f, -0.24f) + lineToRelative(-0.06f, -0.01f) + close() + moveTo(12.0f, 7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) + close() + moveTo(12.0f, 8.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + } + } + return _videoPerson!! + } + +private var _videoPerson: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoPersonCall.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoPersonCall.kt new file mode 100644 index 00000000..884cf3d3 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoPersonCall.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VideoPersonCall: ImageVector + get() { + if (_videoPersonCall != null) { + return _videoPersonCall!! + } + _videoPersonCall = fluentIcon(name = "Regular.VideoPersonCall") { + fluentPath { + moveTo(22.0f, 6.25f) + curveTo(22.0f, 5.01f, 20.99f, 4.0f, 19.75f, 4.0f) + lineTo(4.25f, 4.0f) + curveTo(3.01f, 4.0f, 2.0f, 5.0f, 2.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(2.0f, 19.0f, 3.0f, 20.0f, 4.25f, 20.0f) + horizontalLineToRelative(9.76f) + curveToRelative(0.03f, -0.42f, 0.2f, -0.84f, 0.48f, -1.2f) + lineToRelative(0.23f, -0.3f) + lineTo(8.5f, 18.5f) + lineTo(8.5f, 15.7f) + curveToRelative(0.03f, -0.1f, 0.13f, -0.19f, 0.25f, -0.19f) + horizontalLineToRelative(6.55f) + curveToRelative(0.11f, 0.03f, 0.2f, 0.13f, 0.2f, 0.25f) + verticalLineToRelative(1.81f) + curveToRelative(0.4f, -0.39f, 0.94f, -0.6f, 1.5f, -0.6f) + verticalLineToRelative(-1.21f) + lineToRelative(-0.01f, -0.14f) + curveToRelative(-0.07f, -0.9f, -0.83f, -1.61f, -1.75f, -1.61f) + lineTo(8.61f, 14.01f) + curveToRelative(-0.9f, 0.08f, -1.61f, 0.83f, -1.61f, 1.75f) + verticalLineToRelative(2.75f) + lineTo(4.25f, 18.51f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(3.5f, 6.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(15.5f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(3.77f) + curveToRelative(0.33f, -0.05f, 0.68f, -0.02f, 1.02f, 0.1f) + lineToRelative(0.44f, 0.13f) + lineToRelative(0.04f, 0.01f) + lineTo(22.0f, 6.25f) + close() + moveTo(15.0f, 10.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, false, -6.0f, 0.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 6.0f, 0.0f) + close() + moveTo(10.5f, 10.0f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 3.0f, 0.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -3.0f, 0.0f) + close() + moveTo(19.2f, 13.0f) + lineTo(19.67f, 11.79f) + curveToRelative(0.24f, -0.61f, 0.92f, -0.93f, 1.55f, -0.73f) + lineToRelative(0.43f, 0.14f) + curveToRelative(0.72f, 0.24f, 1.32f, 0.8f, 1.35f, 1.57f) + curveToRelative(0.1f, 3.11f, -2.48f, 7.58f, -5.22f, 9.06f) + curveToRelative(-0.67f, 0.36f, -1.46f, 0.12f, -2.03f, -0.4f) + lineToRelative(-0.34f, -0.3f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -0.14f, -1.7f) + lineToRelative(0.8f, -1.02f) + arcToRelative(1.2f, 1.2f, 0.0f, false, true, 1.22f, -0.42f) + lineToRelative(1.3f, 0.32f) + arcToRelative(3.78f, 3.78f, 0.0f, false, false, 1.77f, -3.08f) + lineToRelative(-0.92f, -0.96f) + arcToRelative(1.2f, 1.2f, 0.0f, false, true, -0.25f, -1.28f) + close() + } + } + return _videoPersonCall!! + } + +private var _videoPersonCall: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoPersonClock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoPersonClock.kt new file mode 100644 index 00000000..e762e035 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoPersonClock.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VideoPersonClock: ImageVector + get() { + if (_videoPersonClock != null) { + return _videoPersonClock!! + } + _videoPersonClock = fluentIcon(name = "Regular.VideoPersonClock") { + fluentPath { + moveTo(19.75f, 3.0f) + curveTo(20.99f, 3.0f, 22.0f, 4.0f, 22.0f, 5.25f) + verticalLineToRelative(7.56f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) + lineTo(20.5f, 5.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(4.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(7.0f, 17.5f) + verticalLineToRelative(-2.75f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) + lineToRelative(0.15f, -0.01f) + horizontalLineToRelative(4.06f) + curveToRelative(-0.43f, 0.44f, -0.8f, 0.95f, -1.08f, 1.5f) + lineTo(8.75f, 14.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.24f, 0.2f) + lineToRelative(-0.01f, 0.05f) + verticalLineToRelative(2.75f) + lineTo(11.0f, 17.5f) + curveToRelative(0.0f, 0.52f, 0.06f, 1.02f, 0.18f, 1.5f) + lineTo(4.25f, 19.0f) + curveTo(3.01f, 19.0f, 2.0f, 18.0f, 2.0f, 16.75f) + lineTo(2.0f, 5.25f) + curveTo(2.0f, 4.01f, 3.0f, 3.0f, 4.25f, 3.0f) + horizontalLineToRelative(15.5f) + close() + moveTo(12.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) + close() + moveTo(12.0f, 7.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(19.5f, 17.5f) + horizontalLineToRelative(-2.0f) + lineTo(17.5f, 15.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -1.0f, 0.0f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.28f, 0.22f, 0.5f, 0.5f, 0.5f) + horizontalLineToRelative(2.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, -1.0f) + close() + } + } + return _videoPersonClock!! + } + +private var _videoPersonClock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoPersonOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoPersonOff.kt new file mode 100644 index 00000000..48c3b0cc --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoPersonOff.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VideoPersonOff: ImageVector + get() { + if (_videoPersonOff != null) { + return _videoPersonOff!! + } + _videoPersonOff = fluentIcon(name = "Regular.VideoPersonOff") { + fluentPath { + moveTo(2.22f, 2.22f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(18.5f, 18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineTo(18.94f, 20.0f) + lineTo(4.25f, 20.0f) + curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) + lineTo(2.0f, 6.25f) + curveToRelative(0.0f, -0.86f, 0.49f, -1.61f, 1.2f, -1.99f) + lineToRelative(-0.98f, -0.98f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + moveTo(15.49f, 16.56f) + lineTo(14.44f, 15.5f) + lineTo(8.75f, 15.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.24f, 0.2f) + lineToRelative(-0.01f, 0.05f) + verticalLineToRelative(2.75f) + horizontalLineToRelative(7.0f) + verticalLineToRelative(-1.94f) + close() + moveTo(11.94f, 13.0f) + arcTo(3.0f, 3.0f, 0.0f, false, true, 9.0f, 10.06f) + lineTo(4.44f, 5.5f) + horizontalLineToRelative(-0.19f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(7.0f, 18.5f) + verticalLineToRelative(-2.75f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) + lineToRelative(0.15f, -0.01f) + horizontalLineToRelative(4.19f) + lineToRelative(-1.0f, -1.0f) + close() + moveTo(11.71f, 8.53f) + lineTo(10.55f, 7.37f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 4.08f, 4.08f) + lineToRelative(-1.16f, -1.16f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -1.76f, -1.76f) + close() + moveTo(20.5f, 17.31f) + lineTo(20.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(8.68f, 5.5f) + lineTo(7.18f, 4.0f) + horizontalLineToRelative(12.57f) + curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.32f, -0.07f, 0.61f, -0.18f, 0.89f) + lineTo(20.5f, 17.3f) + close() + } + } + return _videoPersonOff!! + } + +private var _videoPersonOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoPersonSparkle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoPersonSparkle.kt new file mode 100644 index 00000000..d3e079ad --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoPersonSparkle.kt @@ -0,0 +1,113 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VideoPersonSparkle: ImageVector + get() { + if (_videoPersonSparkle != null) { + return _videoPersonSparkle!! + } + _videoPersonSparkle = fluentIcon(name = "Regular.VideoPersonSparkle") { + fluentPath { + moveTo(4.3f, 4.0f) + horizontalLineToRelative(15.45f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 22.0f, 6.25f) + verticalLineToRelative(11.5f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 19.75f, 20.0f) + lineTo(4.25f, 20.0f) + arcTo(2.25f, 2.25f, 0.0f, false, true, 2.0f, 17.75f) + verticalLineToRelative(-7.2f) + curveToRelative(0.06f, 0.07f, 0.13f, 0.14f, 0.21f, 0.2f) + arcToRelative(1.38f, 1.38f, 0.0f, false, false, 1.29f, 0.14f) + verticalLineToRelative(6.86f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, 0.75f) + lineTo(7.0f, 18.5f) + verticalLineToRelative(-2.76f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 8.6f, 14.0f) + horizontalLineToRelative(6.65f) + arcToRelative(1.75f, 1.75f, 0.0f, false, true, 1.74f, 1.6f) + verticalLineToRelative(2.89f) + horizontalLineToRelative(2.76f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.75f, -0.75f) + lineTo(20.5f, 6.24f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.74f) + lineTo(5.42f, 5.5f) + lineToRelative(-0.28f, -0.1f) + arcToRelative(0.9f, 0.9f, 0.0f, false, true, -0.57f, -0.55f) + lineTo(4.3f, 4.0f) + close() + moveTo(8.5f, 18.5f) + horizontalLineToRelative(7.0f) + lineToRelative(-0.01f, -2.76f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.2f, -0.24f) + lineTo(8.75f, 15.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.24f, 0.19f) + verticalLineToRelative(2.8f) + close() + moveTo(14.12f, 7.88f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, -4.24f, 4.24f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 4.24f, -4.24f) + close() + moveTo(10.94f, 8.94f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 2.12f, 2.12f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.12f, -2.12f) + close() + moveTo(2.36f, 8.84f) + lineTo(2.66f, 9.76f) + arcToRelative(0.36f, 0.36f, 0.0f, false, false, 0.68f, 0.02f) + verticalLineToRelative(-0.02f) + lineToRelative(0.3f, -0.92f) + arcToRelative(1.88f, 1.88f, 0.0f, false, true, 1.2f, -1.2f) + lineToRelative(0.92f, -0.3f) + arcToRelative(0.36f, 0.36f, 0.0f, false, false, 0.0f, -0.68f) + horizontalLineToRelative(-0.02f) + lineToRelative(-0.92f, -0.3f) + arcToRelative(1.9f, 1.9f, 0.0f, false, true, -1.2f, -1.2f) + lineToRelative(-0.3f, -0.92f) + arcToRelative(0.36f, 0.36f, 0.0f, false, false, -0.55f, -0.17f) + curveToRelative(-0.06f, 0.04f, -0.1f, 0.1f, -0.13f, 0.17f) + lineToRelative(-0.3f, 0.92f) + verticalLineToRelative(0.02f) + arcToRelative(1.9f, 1.9f, 0.0f, false, true, -1.18f, 1.18f) + lineToRelative(-0.92f, 0.3f) + arcToRelative(0.36f, 0.36f, 0.0f, false, false, -0.17f, 0.55f) + curveToRelative(0.04f, 0.06f, 0.1f, 0.1f, 0.17f, 0.13f) + lineToRelative(0.92f, 0.3f) + arcToRelative(1.9f, 1.9f, 0.0f, false, true, 1.2f, 1.2f) + close() + moveTo(4.89f, 10.54f) + lineTo(5.43f, 10.37f) + arcToRelative(1.12f, 1.12f, 0.0f, false, false, 0.68f, -0.7f) + lineToRelative(0.18f, -0.53f) + arcTo(0.22f, 0.22f, 0.0f, false, true, 6.4f, 9.0f) + arcToRelative(0.2f, 0.2f, 0.0f, false, true, 0.2f, 0.03f) + lineToRelative(0.03f, 0.03f) + lineToRelative(0.05f, 0.07f) + lineToRelative(0.17f, 0.54f) + arcToRelative(1.1f, 1.1f, 0.0f, false, false, 0.7f, 0.7f) + lineToRelative(0.54f, 0.17f) + lineToRelative(0.04f, 0.02f) + arcToRelative(0.21f, 0.21f, 0.0f, false, true, 0.1f, 0.18f) + arcToRelative(0.21f, 0.21f, 0.0f, false, true, -0.14f, 0.2f) + lineToRelative(-0.53f, 0.17f) + arcToRelative(1.1f, 1.1f, 0.0f, false, false, -0.7f, 0.7f) + lineToRelative(-0.17f, 0.54f) + arcToRelative(0.22f, 0.22f, 0.0f, false, true, -0.08f, 0.1f) + arcToRelative(0.21f, 0.21f, 0.0f, false, true, -0.32f, -0.1f) + lineToRelative(-0.17f, -0.54f) + arcToRelative(1.1f, 1.1f, 0.0f, false, false, -0.7f, -0.7f) + lineToRelative(-0.54f, -0.17f) + arcToRelative(0.21f, 0.21f, 0.0f, false, true, -0.1f, -0.32f) + arcToRelative(0.2f, 0.2f, 0.0f, false, true, 0.1f, -0.08f) + close() + } + } + return _videoPersonSparkle!! + } + +private var _videoPersonSparkle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoPersonStar.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoPersonStar.kt new file mode 100644 index 00000000..f77c1238 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoPersonStar.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VideoPersonStar: ImageVector + get() { + if (_videoPersonStar != null) { + return _videoPersonStar!! + } + _videoPersonStar = fluentIcon(name = "Regular.VideoPersonStar") { + fluentPath { + moveTo(19.75f, 4.0f) + curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) + verticalLineToRelative(6.56f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) + lineTo(20.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(4.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + lineTo(7.0f, 18.5f) + verticalLineToRelative(-2.75f) + curveToRelative(0.0f, -0.92f, 0.7f, -1.67f, 1.6f, -1.74f) + lineToRelative(0.15f, -0.01f) + horizontalLineToRelative(3.27f) + curveToRelative(-0.3f, 0.46f, -0.53f, 0.97f, -0.7f, 1.5f) + lineTo(8.74f, 15.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.24f, 0.2f) + lineToRelative(-0.01f, 0.05f) + verticalLineToRelative(2.75f) + horizontalLineToRelative(2.58f) + curveToRelative(0.08f, 0.53f, 0.22f, 1.03f, 0.42f, 1.5f) + lineTo(4.25f, 20.0f) + curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) + lineTo(2.0f, 6.25f) + curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) + horizontalLineToRelative(15.5f) + close() + moveTo(12.0f, 7.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, 0.0f, 6.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, 0.0f, -6.0f) + close() + moveTo(12.0f, 8.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(18.06f, 14.42f) + arcToRelative(0.58f, 0.58f, 0.0f, false, false, -1.12f, 0.0f) + lineToRelative(-0.55f, 1.79f) + horizontalLineToRelative(-1.8f) + curveToRelative(-0.57f, 0.0f, -0.8f, 0.75f, -0.35f, 1.1f) + lineToRelative(1.46f, 1.1f) + lineToRelative(-0.56f, 1.79f) + curveToRelative(-0.17f, 0.56f, 0.44f, 1.03f, 0.9f, 0.68f) + lineToRelative(1.46f, -1.1f) + lineToRelative(1.46f, 1.1f) + curveToRelative(0.46f, 0.35f, 1.07f, -0.12f, 0.9f, -0.68f) + lineToRelative(-0.56f, -1.79f) + lineToRelative(1.46f, -1.1f) + curveToRelative(0.46f, -0.35f, 0.22f, -1.1f, -0.35f, -1.1f) + horizontalLineToRelative(-1.8f) + lineToRelative(-0.55f, -1.79f) + close() + } + } + return _videoPersonStar!! + } + +private var _videoPersonStar: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoPersonStarOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoPersonStarOff.kt new file mode 100644 index 00000000..ab9ae45a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoPersonStarOff.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VideoPersonStarOff: ImageVector + get() { + if (_videoPersonStarOff != null) { + return _videoPersonStarOff!! + } + _videoPersonStarOff = fluentIcon(name = "Regular.VideoPersonStarOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(0.98f, 0.98f) + arcTo(2.25f, 2.25f, 0.0f, false, false, 2.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(2.0f, 19.0f, 3.0f, 20.0f, 4.25f, 20.0f) + horizontalLineToRelative(7.25f) + curveToRelative(-0.2f, -0.47f, -0.34f, -0.97f, -0.42f, -1.5f) + lineTo(8.5f, 18.5f) + lineTo(8.5f, 15.7f) + curveToRelative(0.03f, -0.1f, 0.13f, -0.19f, 0.25f, -0.19f) + horizontalLineToRelative(2.56f) + curveToRelative(0.18f, -0.53f, 0.42f, -1.04f, 0.71f, -1.5f) + lineTo(8.61f, 14.01f) + curveToRelative(-0.9f, 0.08f, -1.61f, 0.83f, -1.61f, 1.75f) + verticalLineToRelative(2.75f) + lineTo(4.25f, 18.51f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + lineTo(3.5f, 6.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(0.19f) + lineTo(9.0f, 10.06f) + arcTo(3.0f, 3.0f, 0.0f, false, false, 11.94f, 13.0f) + lineToRelative(1.18f, 1.18f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, 7.72f, 7.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.94f, -1.16f) + lineTo(3.28f, 2.22f) + close() + moveTo(19.74f, 20.8f) + arcToRelative(0.56f, 0.56f, 0.0f, false, true, -0.78f, 0.08f) + lineToRelative(-1.46f, -1.1f) + lineToRelative(-1.46f, 1.1f) + curveToRelative(-0.46f, 0.35f, -1.07f, -0.12f, -0.9f, -0.68f) + lineToRelative(0.56f, -1.79f) + lineToRelative(-1.46f, -1.1f) + curveToRelative(-0.46f, -0.35f, -0.22f, -1.1f, 0.35f, -1.1f) + horizontalLineToRelative(0.56f) + lineToRelative(4.59f, 4.59f) + close() + moveTo(10.55f, 7.37f) + lineToRelative(1.16f, 1.16f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 13.5f, 10.0f) + curveToRelative(0.0f, 0.1f, -0.01f, 0.2f, -0.03f, 0.29f) + lineToRelative(1.16f, 1.16f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, -4.08f, -4.08f) + close() + moveTo(15.55f, 12.36f) + lineTo(17.25f, 14.06f) + curveToRelative(0.29f, -0.15f, 0.68f, -0.03f, 0.8f, 0.36f) + lineToRelative(0.21f, 0.66f) + lineToRelative(1.13f, 1.13f) + horizontalLineToRelative(1.02f) + curveToRelative(0.57f, 0.0f, 0.8f, 0.75f, 0.35f, 1.1f) + lineToRelative(-0.15f, 0.11f) + lineToRelative(2.03f, 2.04f) + arcTo(5.49f, 5.49f, 0.0f, false, false, 17.5f, 12.0f) + curveToRelative(-0.69f, 0.0f, -1.35f, 0.13f, -1.96f, 0.36f) + close() + moveTo(7.17f, 4.0f) + lineToRelative(1.5f, 1.5f) + horizontalLineToRelative(11.07f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(5.48f) + curveToRelative(0.55f, 0.29f, 1.05f, 0.65f, 1.5f, 1.08f) + lineTo(21.99f, 6.25f) + curveTo(22.0f, 5.01f, 20.99f, 4.0f, 19.75f, 4.0f) + lineTo(7.18f, 4.0f) + close() + } + } + return _videoPersonStarOff!! + } + +private var _videoPersonStarOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoPlayPause.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoPlayPause.kt new file mode 100644 index 00000000..87f63678 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoPlayPause.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VideoPlayPause: ImageVector + get() { + if (_videoPlayPause != null) { + return _videoPlayPause!! + } + _videoPlayPause = fluentIcon(name = "Regular.VideoPlayPause") { + fluentPath { + moveTo(12.0f, 7.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(1.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-1.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-4.13f) + curveToRelative(-0.02f, 0.55f, -0.3f, 1.1f, -0.84f, 1.42f) + lineToRelative(-6.5f, 3.95f) + arcTo(1.75f, 1.75f, 0.0f, false, true, 2.0f, 15.99f) + lineTo(2.0f, 8.0f) + curveToRelative(0.0f, -1.37f, 1.5f, -2.2f, 2.67f, -1.48f) + lineToRelative(6.5f, 4.03f) + curveToRelative(0.53f, 0.33f, 0.8f, 0.87f, 0.83f, 1.41f) + lineTo(12.0f, 7.75f) + close() + moveTo(13.75f, 7.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(1.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-8.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-1.5f) + close() + moveTo(18.0f, 7.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(1.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-1.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-8.5f) + close() + moveTo(19.75f, 7.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, 0.25f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.14f, 0.11f, 0.25f, 0.25f, 0.25f) + horizontalLineToRelative(1.5f) + curveToRelative(0.14f, 0.0f, 0.25f, -0.11f, 0.25f, -0.25f) + verticalLineToRelative(-8.5f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, -0.25f, -0.25f) + horizontalLineToRelative(-1.5f) + close() + moveTo(3.5f, 8.0f) + verticalLineToRelative(8.0f) + curveToRelative(0.0f, 0.19f, 0.21f, 0.3f, 0.38f, 0.2f) + lineToRelative(6.5f, -3.94f) + arcToRelative(0.25f, 0.25f, 0.0f, false, false, 0.0f, -0.43f) + lineToRelative(-6.5f, -4.04f) + arcTo(0.25f, 0.25f, 0.0f, false, false, 3.5f, 8.0f) + close() + } + } + return _videoPlayPause!! + } + +private var _videoPlayPause: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoProhibited.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoProhibited.kt new file mode 100644 index 00000000..d327b3e5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoProhibited.kt @@ -0,0 +1,61 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VideoProhibited: ImageVector + get() { + if (_videoProhibited != null) { + return _videoProhibited!! + } + _videoProhibited = fluentIcon(name = "Regular.VideoProhibited") { + fluentPath { + moveTo(13.75f, 5.0f) + curveTo(15.55f, 5.0f, 17.0f, 6.46f, 17.0f, 8.25f) + verticalLineToRelative(0.17f) + lineToRelative(3.86f, -2.31f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.14f, 0.64f) + verticalLineToRelative(6.06f) + arcToRelative(6.52f, 6.52f, 0.0f, false, false, -1.5f, -1.08f) + lineTo(20.5f, 8.07f) + lineToRelative(-3.5f, 2.1f) + verticalLineToRelative(0.85f) + curveToRelative(-0.52f, 0.04f, -1.02f, 0.14f, -1.5f, 0.3f) + lineTo(15.5f, 8.24f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-8.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(5.83f) + curveToRelative(0.08f, 0.52f, 0.22f, 1.03f, 0.42f, 1.5f) + lineTo(5.25f, 19.99f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + verticalLineToRelative(-8.5f) + curveTo(2.0f, 6.45f, 3.46f, 5.0f, 5.25f, 5.0f) + horizontalLineToRelative(8.5f) + close() + moveTo(23.0f, 17.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(13.5f, 17.5f) + curveToRelative(0.0f, 0.83f, 0.26f, 1.6f, 0.7f, 2.25f) + lineToRelative(5.55f, -5.56f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, -6.25f, 3.3f) + close() + moveTo(17.5f, 21.5f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 3.3f, -6.25f) + lineToRelative(-5.55f, 5.56f) + curveToRelative(0.64f, 0.44f, 1.42f, 0.69f, 2.25f, 0.69f) + close() + } + } + return _videoProhibited!! + } + +private var _videoProhibited: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoSecurity.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoSecurity.kt new file mode 100644 index 00000000..25052ed0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoSecurity.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VideoSecurity: ImageVector + get() { + if (_videoSecurity != null) { + return _videoSecurity!! + } + _videoSecurity = fluentIcon(name = "Regular.VideoSecurity") { + fluentPath { + moveTo(5.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 2.0f, 6.25f) + verticalLineToRelative(6.5f) + curveTo(2.0f, 14.55f, 3.46f, 16.0f, 5.25f, 16.0f) + horizontalLineToRelative(2.24f) + curveToRelative(-0.08f, 0.84f, -0.78f, 1.5f, -1.65f, 1.5f) + horizontalLineTo(3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.0f) + arcTo(5.75f, 5.75f, 0.0f, false, false, 12.0f, 16.25f) + verticalLineTo(16.0f) + horizontalLineToRelative(1.75f) + arcToRelative(3.25f, 3.25f, 0.0f, false, false, 3.23f, -2.93f) + lineToRelative(3.88f, 2.32f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.14f, -0.64f) + verticalLineTo(4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.14f, -0.64f) + lineToRelative(-3.88f, 2.32f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 13.75f, 3.0f) + horizontalLineToRelative(-8.5f) + close() + moveTo(17.0f, 7.67f) + lineToRelative(3.5f, -2.1f) + verticalLineToRelative(7.86f) + lineToRelative(-3.5f, -2.1f) + verticalLineTo(7.67f) + close() + moveTo(6.25f, 20.5f) + horizontalLineTo(4.0f) + verticalLineTo(19.0f) + horizontalLineToRelative(1.84f) + curveToRelative(1.7f, 0.0f, 3.07f, -1.33f, 3.16f, -3.0f) + horizontalLineToRelative(1.5f) + verticalLineToRelative(0.25f) + curveToRelative(0.0f, 2.35f, -1.9f, 4.25f, -4.25f, 4.25f) + close() + moveTo(3.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(8.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-8.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineToRelative(-6.5f) + close() + } + } + return _videoSecurity!! + } + +private var _videoSecurity: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoSwitch.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoSwitch.kt new file mode 100644 index 00000000..ef8e81d0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/VideoSwitch.kt @@ -0,0 +1,93 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.VideoSwitch: ImageVector + get() { + if (_videoSwitch != null) { + return _videoSwitch!! + } + _videoSwitch = fluentIcon(name = "Regular.VideoSwitch") { + fluentPath { + moveTo(4.0f, 5.75f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 6.75f, 3.0f) + horizontalLineToRelative(6.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 16.0f, 5.75f) + verticalLineToRelative(0.54f) + lineToRelative(2.0f, -1.52f) + curveToRelative(0.81f, -0.63f, 2.0f, -0.04f, 2.0f, 1.0f) + verticalLineToRelative(6.47f) + arcToRelative(1.25f, 1.25f, 0.0f, false, true, -2.0f, 1.0f) + lineToRelative(-2.0f, -1.53f) + verticalLineToRelative(0.54f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 13.25f, 15.0f) + horizontalLineToRelative(-6.5f) + arcTo(2.75f, 2.75f, 0.0f, false, true, 4.0f, 12.25f) + verticalLineToRelative(-6.5f) + close() + moveTo(6.75f, 4.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, 0.56f, -1.25f, 1.25f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 0.69f, 0.56f, 1.25f, 1.25f, 1.25f) + horizontalLineToRelative(6.5f) + curveToRelative(0.7f, 0.0f, 1.25f, -0.56f, 1.25f, -1.25f) + verticalLineToRelative(-6.5f) + curveToRelative(0.0f, -0.69f, -0.56f, -1.25f, -1.25f, -1.25f) + horizontalLineToRelative(-6.5f) + close() + moveTo(16.0f, 9.82f) + lineToRelative(2.5f, 1.91f) + lineTo(18.5f, 6.27f) + lineTo(16.0f, 8.17f) + verticalLineToRelative(1.65f) + close() + moveTo(18.36f, 16.14f) + curveToRelative(-0.95f, -0.23f, -2.13f, -0.42f, -3.45f, -0.52f) + curveToRelative(0.61f, -0.3f, 1.13f, -0.78f, 1.5f, -1.35f) + curveToRelative(0.85f, 0.1f, 1.63f, 0.24f, 2.3f, 0.41f) + curveToRelative(0.88f, 0.21f, 1.63f, 0.47f, 2.19f, 0.8f) + curveToRelative(0.5f, 0.28f, 1.1f, 0.77f, 1.1f, 1.52f) + curveToRelative(0.0f, 0.47f, -0.25f, 0.84f, -0.52f, 1.1f) + curveToRelative(-0.27f, 0.26f, -0.63f, 0.47f, -1.01f, 0.65f) + curveToRelative(-0.79f, 0.35f, -1.86f, 0.63f, -3.1f, 0.84f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.24f, -1.48f) + curveToRelative(1.17f, -0.2f, 2.1f, -0.45f, 2.72f, -0.73f) + curveToRelative(0.3f, -0.14f, 0.5f, -0.27f, 0.6f, -0.37f) + lineToRelative(0.01f, -0.01f) + arcToRelative(1.43f, 1.43f, 0.0f, false, false, -0.31f, -0.23f) + arcToRelative(7.15f, 7.15f, 0.0f, false, false, -1.79f, -0.63f) + close() + moveTo(20.51f, 16.94f) + close() + moveTo(3.1f, 15.47f) + curveToRelative(0.3f, -0.17f, 0.67f, -0.33f, 1.08f, -0.48f) + curveToRelative(0.58f, 0.55f, 1.34f, 0.9f, 2.17f, 0.99f) + curveToRelative(-0.25f, 0.05f, -0.5f, 0.1f, -0.72f, 0.16f) + curveToRelative(-0.81f, 0.2f, -1.4f, 0.42f, -1.79f, 0.63f) + curveToRelative(-0.17f, 0.1f, -0.27f, 0.18f, -0.31f, 0.23f) + curveToRelative(0.04f, 0.05f, 0.14f, 0.12f, 0.31f, 0.23f) + curveToRelative(0.38f, 0.21f, 0.98f, 0.44f, 1.79f, 0.63f) + curveToRelative(1.58f, 0.39f, 3.81f, 0.64f, 6.3f, 0.64f) + lineToRelative(-0.72f, -0.72f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f) + lineToRelative(2.0f, 2.0f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-2.0f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(0.72f, -0.72f) + curveToRelative(-2.57f, 0.0f, -4.92f, -0.26f, -6.66f, -0.68f) + arcToRelative(8.56f, 8.56f, 0.0f, false, true, -2.18f, -0.8f) + curveTo(2.6f, 18.25f, 2.0f, 17.76f, 2.0f, 17.0f) + reflectiveCurveToRelative(0.6f, -1.24f, 1.1f, -1.53f) + close() + } + } + return _videoSwitch!! + } + +private var _videoSwitch: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ViewDesktop.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ViewDesktop.kt new file mode 100644 index 00000000..9ed224eb --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ViewDesktop.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ViewDesktop: ImageVector + get() { + if (_viewDesktop != null) { + return _viewDesktop!! + } + _viewDesktop = fluentIcon(name = "Regular.ViewDesktop") { + fluentPath { + moveTo(19.75f, 3.0f) + curveToRelative(1.2f, 0.0f, 2.17f, 0.93f, 2.24f, 2.1f) + lineToRelative(0.01f, 0.15f) + verticalLineToRelative(10.5f) + curveToRelative(0.0f, 1.2f, -0.93f, 2.17f, -2.1f, 2.25f) + horizontalLineToRelative(-4.4f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(1.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(8.5f, 20.5f) + lineTo(8.5f, 18.0f) + lineTo(4.25f, 18.0f) + curveToRelative(-1.19f, 0.0f, -2.16f, -0.92f, -2.24f, -2.1f) + lineTo(2.01f, 5.26f) + curveToRelative(0.0f, -1.2f, 0.92f, -2.17f, 2.09f, -2.24f) + lineTo(4.25f, 3.0f) + horizontalLineToRelative(15.5f) + close() + moveTo(14.0f, 18.0f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(2.5f) + horizontalLineToRelative(4.0f) + lineTo(14.0f, 18.0f) + close() + moveTo(19.75f, 4.5f) + lineTo(4.25f, 4.5f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + verticalLineToRelative(10.6f) + curveToRelative(0.0f, 0.38f, 0.27f, 0.7f, 0.64f, 0.75f) + horizontalLineToRelative(15.6f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + lineTo(20.5f, 5.25f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + close() + moveTo(18.5f, 6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.5f, 0.41f) + verticalLineToRelative(8.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.4f, 0.5f) + lineTo(9.5f, 15.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.4f) + lineTo(9.0f, 6.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.41f, -0.5f) + horizontalLineToRelative(9.09f) + close() + moveTo(7.5f, 6.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.5f, 0.41f) + verticalLineToRelative(8.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.41f, 0.5f) + horizontalLineToRelative(-2.1f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.48f, -0.4f) + lineTo(5.0f, 14.5f) + verticalLineToRelative(-8.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.4f, -0.5f) + horizontalLineToRelative(2.1f) + close() + } + } + return _viewDesktop!! + } + +private var _viewDesktop: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ViewDesktopMobile.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ViewDesktopMobile.kt new file mode 100644 index 00000000..28ba5855 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ViewDesktopMobile.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ViewDesktopMobile: ImageVector + get() { + if (_viewDesktopMobile != null) { + return _viewDesktopMobile!! + } + _viewDesktopMobile = fluentIcon(name = "Regular.ViewDesktopMobile") { + fluentPath { + moveTo(15.75f, 2.0f) + curveTo(16.99f, 2.0f, 18.0f, 3.0f, 18.0f, 4.25f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-7.5f) + curveTo(7.01f, 22.0f, 6.0f, 21.0f, 6.0f, 19.75f) + lineTo(6.0f, 4.25f) + curveTo(6.0f, 3.01f, 7.0f, 2.0f, 8.25f, 2.0f) + horizontalLineToRelative(7.5f) + close() + moveTo(15.75f, 3.5f) + horizontalLineToRelative(-7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(15.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(7.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + lineTo(16.5f, 4.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(13.25f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(2.5f) + close() + moveTo(14.5f, 9.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.5f, 0.4f) + verticalLineToRelative(6.1f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.41f, 0.5f) + lineTo(9.5f, 16.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.4f) + lineTo(9.0f, 9.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.41f, -0.5f) + horizontalLineToRelative(5.09f) + close() + moveTo(14.5f, 5.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.5f, 0.41f) + lineTo(15.0f, 7.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.41f, 0.5f) + lineTo(9.5f, 8.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.4f) + lineTo(9.0f, 5.5f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.41f, -0.5f) + horizontalLineToRelative(5.09f) + close() + } + } + return _viewDesktopMobile!! + } + +private var _viewDesktopMobile: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Voicemail.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Voicemail.kt new file mode 100644 index 00000000..4d7cef9a --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Voicemail.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Voicemail: ImageVector + get() { + if (_voicemail != null) { + return _voicemail!! + } + _voicemail = fluentIcon(name = "Regular.Voicemail") { + fluentPath { + moveTo(19.75f, 4.0f) + curveTo(20.99f, 4.0f, 22.0f, 5.0f, 22.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(22.0f, 19.0f, 21.0f, 20.0f, 19.75f, 20.0f) + lineTo(4.25f, 20.0f) + curveTo(3.01f, 20.0f, 2.0f, 19.0f, 2.0f, 17.75f) + lineTo(2.0f, 6.25f) + curveTo(2.0f, 5.01f, 3.0f, 4.0f, 4.25f, 4.0f) + horizontalLineToRelative(15.5f) + close() + moveTo(19.75f, 5.5f) + lineTo(4.25f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.42f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(15.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.33f, 0.75f, -0.75f) + lineTo(20.5f, 6.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + close() + moveTo(8.0f, 9.0f) + horizontalLineToRelative(8.0f) + arcToRelative(3.0f, 3.0f, 0.0f, true, true, -2.6f, 1.5f) + horizontalLineToRelative(-2.8f) + arcTo(3.0f, 3.0f, 0.0f, true, true, 7.82f, 9.0f) + lineTo(8.0f, 9.0f) + close() + moveTo(8.0f, 10.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + moveTo(16.0f, 10.5f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 0.0f, 3.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 0.0f, -3.0f) + close() + } + } + return _voicemail!! + } + +private var _voicemail: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Vote.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Vote.kt new file mode 100644 index 00000000..f028bf06 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Vote.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Vote: ImageVector + get() { + if (_vote != null) { + return _vote!! + } + _vote = fluentIcon(name = "Regular.Vote") { + fluentPath { + moveTo(20.5f, 15.5f) + horizontalLineToRelative(-17.0f) + verticalLineToRelative(5.0f) + horizontalLineToRelative(17.0f) + verticalLineToRelative(-5.0f) + close() + moveTo(21.94f, 14.47f) + lineTo(21.97f, 14.53f) + lineTo(21.99f, 14.63f) + lineTo(21.99f, 21.25f) + curveToRelative(0.0f, 0.38f, -0.27f, 0.7f, -0.64f, 0.74f) + lineToRelative(-0.1f, 0.01f) + lineTo(2.75f, 22.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.74f, -0.65f) + lineToRelative(-0.01f, -0.1f) + lineTo(2.0f, 14.7f) + lineToRelative(0.01f, -0.09f) + lineToRelative(0.05f, -0.15f) + lineToRelative(2.76f, -6.02f) + curveToRelative(0.1f, -0.23f, 0.32f, -0.4f, 0.57f, -0.43f) + horizontalLineToRelative(2.65f) + lineToRelative(-0.79f, 1.36f) + lineToRelative(-0.07f, 0.13f) + horizontalLineToRelative(-1.2f) + lineTo(3.92f, 14.0f) + horizontalLineToRelative(16.15f) + lineToRelative(-2.03f, -4.35f) + lineToRelative(0.87f, -1.5f) + curveToRelative(0.06f, 0.06f, 0.12f, 0.12f, 0.17f, 0.2f) + lineToRelative(0.05f, 0.09f) + lineToRelative(2.81f, 6.03f) + close() + moveTo(13.37f, 2.06f) + lineToRelative(0.09f, 0.04f) + lineToRelative(5.18f, 3.0f) + curveToRelative(0.33f, 0.2f, 0.46f, 0.6f, 0.32f, 0.94f) + lineToRelative(-0.04f, 0.09f) + lineToRelative(-2.8f, 4.87f) + horizontalLineToRelative(1.13f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(6.75f, 12.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + lineTo(8.57f, 11.0f) + lineToRelative(-0.18f, -0.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.32f, -0.94f) + lineToRelative(0.05f, -0.09f) + lineToRelative(4.31f, -7.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.94f, -0.31f) + close() + moveTo(13.36f, 3.78f) + lineTo(9.79f, 9.98f) + lineTo(11.57f, 11.0f) + horizontalLineToRelative(2.81f) + lineToRelative(2.87f, -4.97f) + lineToRelative(-3.9f, -2.25f) + close() + } + } + return _vote!! + } + +private var _vote: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WalkieTalkie.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WalkieTalkie.kt new file mode 100644 index 00000000..5a40a62b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WalkieTalkie.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WalkieTalkie: ImageVector + get() { + if (_walkieTalkie != null) { + return _walkieTalkie!! + } + _walkieTalkie = fluentIcon(name = "Regular.WalkieTalkie") { + fluentPath { + moveTo(10.25f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + close() + moveTo(8.75f, 6.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(6.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-6.5f) + close() + moveTo(9.5f, 10.5f) + verticalLineToRelative(-3.0f) + horizontalLineToRelative(5.0f) + verticalLineToRelative(3.0f) + horizontalLineToRelative(-5.0f) + close() + moveTo(8.75f, 1.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + lineTo(9.5f, 3.0f) + horizontalLineToRelative(7.25f) + curveTo(17.99f, 3.0f, 19.0f, 4.0f, 19.0f, 5.25f) + lineTo(19.0f, 14.0f) + curveToRelative(0.0f, 0.19f, -0.07f, 0.37f, -0.2f, 0.5f) + lineToRelative(-1.3f, 1.42f) + verticalLineToRelative(3.83f) + curveToRelative(0.0f, 1.24f, -1.0f, 2.25f, -2.25f, 2.25f) + horizontalLineToRelative(-6.5f) + curveToRelative(-1.24f, 0.0f, -2.25f, -1.0f, -2.25f, -2.25f) + verticalLineToRelative(-3.83f) + lineTo(5.2f, 14.5f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 5.0f, 14.0f) + lineTo(5.0f, 5.25f) + curveTo(5.0f, 4.01f, 6.0f, 3.0f, 7.25f, 3.0f) + lineTo(8.0f, 3.0f) + lineTo(8.0f, 1.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(6.5f, 5.25f) + verticalLineToRelative(8.46f) + lineToRelative(1.3f, 1.4f) + curveToRelative(0.13f, 0.14f, 0.2f, 0.33f, 0.2f, 0.52f) + verticalLineToRelative(4.12f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(6.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineToRelative(-4.13f) + curveToRelative(0.0f, -0.18f, 0.07f, -0.37f, 0.2f, -0.5f) + lineToRelative(1.3f, -1.41f) + lineTo(17.5f, 5.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-9.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + } + } + return _walkieTalkie!! + } + +private var _walkieTalkie: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Wallet.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Wallet.kt new file mode 100644 index 00000000..94471684 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Wallet.kt @@ -0,0 +1,58 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Wallet: ImageVector + get() { + if (_wallet != null) { + return _wallet!! + } + _wallet = fluentIcon(name = "Regular.Wallet") { + fluentPath { + moveTo(15.5f, 13.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(3.0f, 5.0f) + horizontalLineToRelative(0.01f) + curveToRelative(0.13f, -1.12f, 1.08f, -2.0f, 2.24f, -2.0f) + horizontalLineToRelative(11.5f) + curveTo(17.99f, 3.0f, 19.0f, 4.0f, 19.0f, 5.25f) + verticalLineToRelative(0.84f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 2.5f, 3.16f) + verticalLineToRelative(8.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-12.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 5.0f) + close() + moveTo(18.25f, 7.5f) + lineTo(4.5f, 7.5f) + verticalLineToRelative(10.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(12.0f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-8.5f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + close() + moveTo(17.5f, 6.0f) + verticalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + lineTo(5.25f, 4.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(17.5f, 6.0f) + close() + } + } + return _wallet!! + } + +private var _wallet: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WalletCreditCard.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WalletCreditCard.kt new file mode 100644 index 00000000..f648e2de --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WalletCreditCard.kt @@ -0,0 +1,70 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WalletCreditCard: ImageVector + get() { + if (_walletCreditCard != null) { + return _walletCreditCard!! + } + _walletCreditCard = fluentIcon(name = "Regular.WalletCreditCard") { + fluentPath { + moveTo(14.36f, 2.6f) + arcToRelative(0.25f, 0.25f, 0.0f, false, true, 0.36f, -0.04f) + lineToRelative(0.92f, 0.81f) + lineTo(12.74f, 7.0f) + horizontalLineToRelative(1.92f) + lineToRelative(2.1f, -2.63f) + lineToRelative(1.66f, 1.45f) + curveToRelative(0.1f, 0.1f, 0.11f, 0.25f, 0.02f, 0.35f) + lineToRelative(-0.69f, 0.83f) + horizontalLineToRelative(1.95f) + curveToRelative(0.5f, -0.72f, 0.38f, -1.71f, -0.3f, -2.3f) + lineToRelative(-3.69f, -3.26f) + arcToRelative(1.75f, 1.75f, 0.0f, false, false, -2.53f, 0.23f) + lineTo(8.98f, 7.0f) + horizontalLineToRelative(1.9f) + lineToRelative(3.48f, -4.4f) + close() + moveTo(16.25f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.0f) + close() + moveTo(4.5f, 7.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(3.13f) + lineTo(9.57f, 5.0f) + lineTo(5.25f, 5.0f) + curveTo(4.01f, 5.0f, 3.0f, 6.0f, 3.0f, 7.25f) + verticalLineToRelative(10.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(12.0f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineToRelative(-6.5f) + curveToRelative(0.0f, -1.8f, -1.46f, -3.25f, -3.25f, -3.25f) + horizontalLineToRelative(-13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(4.5f, 17.75f) + lineTo(4.5f, 9.37f) + curveToRelative(0.23f, 0.08f, 0.49f, 0.13f, 0.75f, 0.13f) + horizontalLineToRelative(13.0f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(6.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-12.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + close() + } + } + return _walletCreditCard!! + } + +private var _walletCreditCard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Wallpaper.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Wallpaper.kt new file mode 100644 index 00000000..2331e1f8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Wallpaper.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Wallpaper: ImageVector + get() { + if (_wallpaper != null) { + return _wallpaper!! + } + _wallpaper = fluentIcon(name = "Regular.Wallpaper") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.0f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-4.0f) + close() + moveTo(13.0f, 3.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.0f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(3.75f, 13.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 0.2f, 0.04f, 0.4f, 0.1f, 0.59f) + lineToRelative(5.63f, -5.63f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 3.54f, 0.0f) + lineToRelative(5.63f, 5.63f) + curveToRelative(0.06f, -0.19f, 0.1f, -0.38f, 0.1f, -0.59f) + verticalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + verticalLineToRelative(4.0f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(4.0f) + curveToRelative(0.2f, 0.0f, 0.4f, -0.04f, 0.59f, -0.1f) + lineToRelative(-5.63f, -5.63f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.42f, 0.0f) + lineTo(5.66f, 19.4f) + curveToRelative(0.19f, 0.06f, 0.38f, 0.1f, 0.59f, 0.1f) + horizontalLineToRelative(4.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-4.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + verticalLineToRelative(-4.0f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(15.25f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + close() + moveTo(13.0f, 8.75f) + arcToRelative(2.25f, 2.25f, 0.0f, true, true, 4.5f, 0.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -4.5f, 0.0f) + close() + } + } + return _wallpaper!! + } + +private var _wallpaper: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Wand.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Wand.kt new file mode 100644 index 00000000..9713c2f5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Wand.kt @@ -0,0 +1,129 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Wand: ImageVector + get() { + if (_wand != null) { + return _wand!! + } + _wand = fluentIcon(name = "Regular.Wand") { + fluentPath { + moveToRelative(13.31f, 7.57f) + lineToRelative(-0.13f, 0.12f) + lineTo(2.7f, 18.18f) + arcToRelative(2.27f, 2.27f, 0.0f, false, false, 3.2f, 3.2f) + lineTo(16.4f, 10.9f) + curveToRelative(0.88f, -0.88f, 0.88f, -2.3f, 0.0f, -3.18f) + lineToRelative(-0.16f, -0.15f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -2.92f, 0.0f) + close() + moveTo(12.47f, 10.53f) + lineTo(13.55f, 11.61f) + lineTo(4.85f, 20.33f) + arcToRelative(0.77f, 0.77f, 0.0f, true, true, -1.1f, -1.1f) + lineToRelative(8.72f, -8.7f) + close() + moveTo(16.85f, 15.0f) + lineToRelative(-0.1f, -0.01f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(-0.75f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + lineTo(16.0f, 17.99f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + lineTo(17.5f, 18.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-0.75f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(0.1f) + close() + moveTo(15.3f, 8.75f) + lineToRelative(0.03f, 0.03f) + curveToRelative(0.29f, 0.3f, 0.29f, 0.77f, 0.0f, 1.06f) + lineToRelative(-0.71f, 0.71f) + lineToRelative(-1.1f, -1.09f) + lineToRelative(0.74f, -0.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.04f, 0.02f) + close() + moveTo(6.85f, 5.01f) + lineTo(6.75f, 5.0f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(-0.75f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + lineTo(6.0f, 8.0f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + lineTo(7.5f, 8.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + lineTo(7.5f, 6.5f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineTo(6.75f, 5.0f) + horizontalLineToRelative(0.1f) + close() + moveTo(18.85f, 3.01f) + lineTo(18.75f, 3.0f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + verticalLineToRelative(0.75f) + horizontalLineToRelative(-0.75f) + curveToRelative(-0.38f, 0.0f, -0.7f, 0.28f, -0.74f, 0.65f) + lineToRelative(-0.01f, 0.1f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + lineTo(18.0f, 6.0f) + verticalLineToRelative(0.75f) + curveToRelative(0.0f, 0.38f, 0.28f, 0.7f, 0.65f, 0.74f) + lineToRelative(0.1f, 0.01f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + lineTo(19.5f, 6.0f) + horizontalLineToRelative(0.75f) + curveToRelative(0.38f, 0.0f, 0.7f, -0.28f, 0.74f, -0.65f) + lineToRelative(0.01f, -0.1f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(-0.75f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.38f, -0.28f, -0.7f, -0.65f, -0.74f) + lineToRelative(-0.1f, -0.01f) + horizontalLineToRelative(0.1f) + close() + } + } + return _wand!! + } + +private var _wand: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Washer.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Washer.kt new file mode 100644 index 00000000..c95264f7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Washer.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Washer: ImageVector + get() { + if (_washer != null) { + return _washer!! + } + _washer = fluentIcon(name = "Regular.Washer") { + fluentPath { + moveTo(12.0f, 8.0f) + arcToRelative(5.25f, 5.25f, 0.0f, true, false, 0.0f, 10.5f) + arcTo(5.25f, 5.25f, 0.0f, false, false, 12.0f, 8.0f) + close() + moveTo(8.25f, 13.25f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, 7.5f, -0.19f) + curveToRelative(-0.18f, 0.17f, -0.39f, 0.34f, -0.7f, 0.47f) + curveToRelative(-0.53f, 0.23f, -1.4f, 0.37f, -2.93f, -0.02f) + curveToRelative(-1.7f, -0.42f, -2.84f, -0.17f, -3.64f, 0.33f) + lineToRelative(-0.17f, 0.1f) + arcToRelative(3.77f, 3.77f, 0.0f, false, true, -0.06f, -0.69f) + close() + moveTo(9.0f, 6.25f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(12.75f, 5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + close() + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 6.25f) + close() + } + } + return _washer!! + } + +private var _washer: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Water.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Water.kt new file mode 100644 index 00000000..d6216ca9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Water.kt @@ -0,0 +1,81 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Water: ImageVector + get() { + if (_water != null) { + return _water!! + } + _water = fluentIcon(name = "Regular.Water") { + fluentPath { + moveTo(18.38f, 4.0f) + curveToRelative(0.31f, 0.0f, 0.59f, 0.2f, 0.7f, 0.48f) + curveToRelative(0.56f, 1.46f, 1.6f, 2.02f, 2.17f, 2.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + curveToRelative(-1.0f, 0.0f, -2.09f, -0.61f, -2.87f, -1.69f) + arcTo(3.97f, 3.97f, 0.0f, false, true, 15.19f, 8.0f) + curveToRelative(-1.22f, 0.0f, -2.38f, -0.6f, -3.19f, -1.7f) + arcTo(3.97f, 3.97f, 0.0f, false, true, 8.81f, 8.0f) + curveTo(7.59f, 8.0f, 6.44f, 7.4f, 5.62f, 6.3f) + curveTo(4.84f, 7.4f, 3.75f, 8.0f, 2.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f) + curveToRelative(0.56f, 0.0f, 1.6f, -0.55f, 2.17f, -2.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.4f, 0.0f) + curveTo(6.86f, 5.9f, 7.9f, 6.5f, 8.81f, 6.5f) + curveToRelative(0.92f, 0.0f, 1.95f, -0.6f, 2.49f, -2.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.4f, 0.0f) + curveToRelative(0.54f, 1.42f, 1.57f, 2.02f, 2.49f, 2.02f) + curveToRelative(0.92f, 0.0f, 1.95f, -0.6f, 2.49f, -2.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.7f, -0.48f) + close() + moveTo(18.38f, 10.0f) + curveToRelative(0.31f, 0.0f, 0.59f, 0.2f, 0.7f, 0.48f) + curveToRelative(0.56f, 1.46f, 1.6f, 2.02f, 2.17f, 2.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + curveToRelative(-1.0f, 0.0f, -2.09f, -0.61f, -2.87f, -1.69f) + arcTo(3.97f, 3.97f, 0.0f, false, true, 15.19f, 14.0f) + curveToRelative(-1.22f, 0.0f, -2.38f, -0.6f, -3.19f, -1.7f) + arcTo(3.97f, 3.97f, 0.0f, false, true, 8.81f, 14.0f) + curveToRelative(-1.22f, 0.0f, -2.37f, -0.6f, -3.19f, -1.69f) + curveTo(4.84f, 13.4f, 3.75f, 14.0f, 2.75f, 14.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + curveToRelative(0.56f, 0.0f, 1.6f, -0.55f, 2.17f, -2.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.4f, 0.0f) + curveToRelative(0.54f, 1.42f, 1.57f, 2.02f, 2.49f, 2.02f) + curveToRelative(0.92f, 0.0f, 1.95f, -0.6f, 2.49f, -2.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.4f, 0.0f) + curveToRelative(0.54f, 1.42f, 1.57f, 2.02f, 2.49f, 2.02f) + curveToRelative(0.92f, 0.0f, 1.95f, -0.6f, 2.49f, -2.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.7f, -0.48f) + close() + moveTo(19.08f, 16.48f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.4f, 0.0f) + curveToRelative(-0.54f, 1.42f, -1.57f, 2.02f, -2.49f, 2.02f) + curveToRelative(-0.92f, 0.0f, -1.95f, -0.6f, -2.49f, -2.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.4f, 0.0f) + curveToRelative(-0.54f, 1.42f, -1.57f, 2.02f, -2.49f, 2.02f) + curveToRelative(-0.92f, 0.0f, -1.95f, -0.6f, -2.49f, -2.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.4f, 0.0f) + curveToRelative(-0.56f, 1.47f, -1.6f, 2.02f, -2.17f, 2.02f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + curveToRelative(1.0f, 0.0f, 2.09f, -0.61f, 2.87f, -1.69f) + arcTo(3.97f, 3.97f, 0.0f, false, false, 8.81f, 20.0f) + curveToRelative(1.22f, 0.0f, 2.38f, -0.6f, 3.19f, -1.7f) + arcToRelative(3.97f, 3.97f, 0.0f, false, false, 3.19f, 1.7f) + curveToRelative(1.22f, 0.0f, 2.37f, -0.6f, 3.19f, -1.69f) + curveToRelative(0.78f, 1.08f, 1.87f, 1.69f, 2.87f, 1.69f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + curveToRelative(-0.56f, 0.0f, -1.61f, -0.56f, -2.17f, -2.02f) + close() + } + } + return _water!! + } + +private var _water: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherBlowingSnow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherBlowingSnow.kt new file mode 100644 index 00000000..b6f81213 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherBlowingSnow.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WeatherBlowingSnow: ImageVector + get() { + if (_weatherBlowingSnow != null) { + return _weatherBlowingSnow!! + } + _weatherBlowingSnow = fluentIcon(name = "Regular.WeatherBlowingSnow") { + fluentPath { + moveTo(11.97f, 4.0f) + arcToRelative(4.07f, 4.07f, 0.0f, false, false, -3.9f, 2.88f) + lineToRelative(-0.04f, 0.15f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.44f, 0.44f) + lineToRelative(0.04f, -0.15f) + arcToRelative(2.57f, 2.57f, 0.0f, false, true, 2.46f, -1.82f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.03f, 5.0f) + lineTo(2.75f, 10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(12.0f, 12.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, -0.03f, -8.0f) + close() + moveTo(19.07f, 10.0f) + curveToRelative(-1.26f, 0.0f, -2.38f, 0.82f, -2.78f, 2.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.42f, 0.48f) + arcToRelative(1.43f, 1.43f, 0.0f, false, true, 2.79f, 0.44f) + lineTo(20.5f, 13.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + lineTo(2.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(12.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + horizontalLineToRelative(-0.13f) + curveToRelative(-0.4f, 0.0f, -0.77f, -0.23f, -0.95f, -0.58f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.34f, 0.67f) + arcTo(2.56f, 2.56f, 0.0f, false, false, 15.12f, 20.0f) + horizontalLineToRelative(0.13f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.45f, -4.0f) + lineTo(19.0f, 16.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) + verticalLineToRelative(-0.07f) + arcTo(2.93f, 2.93f, 0.0f, false, false, 19.07f, 10.0f) + close() + moveTo(5.0f, 5.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + moveTo(9.0f, 21.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(20.0f, 6.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 2.0f, 0.0f) + close() + } + } + return _weatherBlowingSnow!! + } + +private var _weatherBlowingSnow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherCloudy.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherCloudy.kt new file mode 100644 index 00000000..042bbaf8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherCloudy.kt @@ -0,0 +1,57 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WeatherCloudy: ImageVector + get() { + if (_weatherCloudy != null) { + return _weatherCloudy!! + } + _weatherCloudy = fluentIcon(name = "Regular.WeatherCloudy") { + fluentPath { + moveTo(13.0f, 7.0f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.64f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) + lineTo(7.69f, 19.0f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) + horizontalLineToRelative(0.08f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 7.0f) + close() + moveTo(13.0f, 8.5f) + arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.88f, 3.9f) + curveToRelative(0.0f, 0.35f, -0.31f, 0.63f, -0.68f, 0.63f) + horizontalLineToRelative(-0.69f) + curveToRelative(-1.26f, 0.0f, -2.28f, 1.0f, -2.28f, 2.24f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.24f) + horizontalLineToRelative(10.5f) + curveToRelative(1.26f, 0.0f, 2.29f, -1.0f, 2.29f, -2.24f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.29f, -2.24f) + horizontalLineToRelative(-0.69f) + curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.63f) + curveToRelative(0.0f, -2.29f, -1.8f, -3.9f, -3.88f, -3.9f) + close() + moveTo(10.0f, 4.0f) + curveToRelative(1.62f, 0.0f, 3.05f, 0.82f, 3.9f, 2.06f) + arcToRelative(7.5f, 7.5f, 0.0f, false, false, -2.04f, 0.03f) + arcToRelative(3.21f, 3.21f, 0.0f, false, false, -5.03f, 2.07f) + lineToRelative(-0.07f, 0.41f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.99f, 0.83f) + horizontalLineToRelative(-0.49f) + arcToRelative(1.78f, 1.78f, 0.0f, false, false, -1.26f, 3.04f) + curveToRelative(-0.32f, 0.4f, -0.57f, 0.85f, -0.74f, 1.34f) + arcTo(3.28f, 3.28f, 0.0f, false, true, 5.1f, 7.9f) + horizontalLineToRelative(0.25f) + arcTo(4.72f, 4.72f, 0.0f, false, true, 10.0f, 4.0f) + close() + } + } + return _weatherCloudy!! + } + +private var _weatherCloudy: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherDrizzle.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherDrizzle.kt new file mode 100644 index 00000000..f33248dd --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherDrizzle.kt @@ -0,0 +1,71 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WeatherDrizzle: ImageVector + get() { + if (_weatherDrizzle != null) { + return _weatherDrizzle!! + } + _weatherDrizzle = fluentIcon(name = "Regular.WeatherDrizzle") { + fluentPath { + moveTo(12.0f, 3.0f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.37f) + horizontalLineToRelative(-0.85f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.09f, 0.17f) + lineToRelative(-1.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.24f, -0.84f) + lineToRelative(0.56f, -0.83f) + horizontalLineToRelative(-2.23f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.09f, 0.17f) + lineToRelative(-1.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.24f, -0.84f) + lineToRelative(0.56f, -0.83f) + lineTo(8.46f, 15.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.09f, 0.17f) + lineToRelative(-1.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.24f, -0.84f) + lineToRelative(0.56f, -0.83f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.37f) + horizontalLineToRelative(0.08f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 12.0f, 3.0f) + close() + moveTo(12.0f, 4.5f) + arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.88f, 3.89f) + curveToRelative(0.0f, 0.36f, -0.32f, 0.64f, -0.68f, 0.64f) + horizontalLineToRelative(-0.7f) + curveToRelative(-1.25f, 0.0f, -2.27f, 1.0f, -2.27f, 2.23f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.24f) + horizontalLineToRelative(10.5f) + curveToRelative(1.26f, 0.0f, 2.28f, -1.0f, 2.28f, -2.24f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.28f, -2.23f) + horizontalLineToRelative(-0.69f) + curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.64f) + curveToRelative(0.0f, -2.29f, -1.8f, -3.9f, -3.88f, -3.9f) + close() + moveTo(7.13f, 18.83f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.24f, 0.84f) + lineToRelative(1.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.24f, -0.84f) + lineToRelative(-1.0f, 1.5f) + close() + moveTo(11.33f, 19.87f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.2f, -1.04f) + lineToRelative(1.0f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.24f, 0.84f) + lineToRelative(-1.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.04f, 0.2f) + close() + } + } + return _weatherDrizzle!! + } + +private var _weatherDrizzle: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherDuststorm.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherDuststorm.kt new file mode 100644 index 00000000..e413292c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherDuststorm.kt @@ -0,0 +1,79 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WeatherDuststorm: ImageVector + get() { + if (_weatherDuststorm != null) { + return _weatherDuststorm!! + } + _weatherDuststorm = fluentIcon(name = "Regular.WeatherDuststorm") { + fluentPath { + moveTo(5.0f, 5.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -1.0f, 0.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + close() + moveTo(6.5f, 5.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + moveTo(11.97f, 4.0f) + arcToRelative(4.07f, 4.07f, 0.0f, false, false, -3.9f, 2.88f) + lineToRelative(-0.04f, 0.15f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.44f, 0.44f) + lineToRelative(0.04f, -0.15f) + arcToRelative(2.57f, 2.57f, 0.0f, false, true, 2.46f, -1.82f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 0.03f, 5.0f) + lineTo(2.75f, 10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + lineTo(12.0f, 12.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, -0.03f, -8.0f) + close() + moveTo(19.07f, 10.0f) + curveToRelative(-1.26f, 0.0f, -2.38f, 0.82f, -2.78f, 2.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.42f, 0.48f) + arcToRelative(1.43f, 1.43f, 0.0f, false, true, 2.79f, 0.44f) + lineTo(20.5f, 13.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + lineTo(2.75f, 14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(12.5f) + arcToRelative(1.25f, 1.25f, 0.0f, true, true, 0.0f, 2.5f) + horizontalLineToRelative(-0.13f) + curveToRelative(-0.4f, 0.0f, -0.77f, -0.23f, -0.95f, -0.58f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.34f, 0.67f) + arcTo(2.56f, 2.56f, 0.0f, false, false, 15.12f, 20.0f) + horizontalLineToRelative(0.13f) + arcToRelative(2.75f, 2.75f, 0.0f, false, false, 2.45f, -4.0f) + lineTo(19.0f, 16.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, false, 3.0f, -3.0f) + verticalLineToRelative(-0.07f) + arcTo(2.93f, 2.93f, 0.0f, false, false, 19.07f, 10.0f) + close() + moveTo(9.5f, 20.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + close() + moveTo(9.5f, 21.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, false, 0.0f, -4.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, false, 0.0f, 4.0f) + close() + moveTo(20.0f, 6.5f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, -1.0f, 0.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 1.0f, 0.0f) + close() + moveTo(21.5f, 6.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + arcToRelative(2.0f, 2.0f, 0.0f, false, true, 4.0f, 0.0f) + close() + } + } + return _weatherDuststorm!! + } + +private var _weatherDuststorm: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherFog.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherFog.kt new file mode 100644 index 00000000..2394b2a7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherFog.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WeatherFog: ImageVector + get() { + if (_weatherFog != null) { + return _weatherFog!! + } + _weatherFog = fluentIcon(name = "Regular.WeatherFog") { + fluentPath { + moveTo(7.74f, 19.5f) + horizontalLineToRelative(8.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + horizontalLineToRelative(-8.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(8.6f) + horizontalLineToRelative(-8.5f) + close() + moveTo(4.75f, 16.52f) + horizontalLineToRelative(14.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f) + lineTo(4.75f, 18.02f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f) + horizontalLineToRelative(0.1f) + close() + moveTo(12.0f, 3.0f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.64f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) + lineTo(6.69f, 15.0f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) + horizontalLineToRelative(0.08f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 12.0f, 3.0f) + close() + moveTo(12.0f, 4.5f) + arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.88f, 3.9f) + curveToRelative(0.0f, 0.35f, -0.32f, 0.63f, -0.68f, 0.63f) + horizontalLineToRelative(-0.7f) + curveToRelative(-1.25f, 0.0f, -2.27f, 1.0f, -2.27f, 2.24f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.23f) + horizontalLineToRelative(10.5f) + curveToRelative(1.26f, 0.0f, 2.28f, -1.0f, 2.28f, -2.23f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.28f, -2.24f) + horizontalLineToRelative(-0.69f) + curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.64f) + curveToRelative(0.0f, -2.28f, -1.8f, -3.89f, -3.88f, -3.89f) + close() + } + } + return _weatherFog!! + } + +private var _weatherFog: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherHailDay.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherHailDay.kt new file mode 100644 index 00000000..2680cc5c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherHailDay.kt @@ -0,0 +1,97 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WeatherHailDay: ImageVector + get() { + if (_weatherHailDay != null) { + return _weatherHailDay!! + } + _weatherHailDay = fluentIcon(name = "Regular.WeatherHailDay") { + fluentPath { + moveTo(13.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(9.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(16.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(13.0f, 6.0f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.64f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) + lineTo(7.69f, 18.0f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) + horizontalLineToRelative(0.08f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 6.0f) + close() + moveTo(13.0f, 7.5f) + arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.87f, 3.9f) + curveToRelative(0.0f, 0.35f, -0.32f, 0.63f, -0.69f, 0.63f) + horizontalLineToRelative(-0.69f) + curveToRelative(-1.26f, 0.0f, -2.28f, 1.0f, -2.28f, 2.24f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.24f) + horizontalLineToRelative(10.5f) + curveToRelative(1.26f, 0.0f, 2.29f, -1.0f, 2.29f, -2.24f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.29f, -2.24f) + horizontalLineToRelative(-0.69f) + curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.63f) + curveToRelative(0.0f, -2.29f, -1.8f, -3.9f, -3.88f, -3.9f) + close() + moveTo(4.37f, 10.16f) + curveToRelative(0.14f, 0.36f, 0.0f, 0.75f, -0.32f, 0.94f) + lineToRelative(-0.09f, 0.04f) + lineToRelative(-0.92f, 0.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.67f, -1.34f) + lineToRelative(0.1f, -0.05f) + lineToRelative(0.92f, -0.38f) + curveToRelative(0.38f, -0.16f, 0.82f, 0.02f, 0.98f, 0.4f) + close() + moveTo(10.85f, 5.33f) + lineTo(10.68f, 5.39f) + curveToRelative(-0.53f, 0.19f, -1.02f, 0.44f, -1.46f, 0.76f) + arcToRelative(2.44f, 2.44f, 0.0f, false, false, -2.8f, 3.67f) + curveToRelative(-0.48f, 0.13f, -0.94f, 0.35f, -1.36f, 0.63f) + arcToRelative(3.94f, 3.94f, 0.0f, false, true, 5.8f, -5.12f) + close() + moveTo(2.95f, 5.36f) + lineTo(3.05f, 5.4f) + lineTo(3.97f, 5.78f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 3.5f, 7.2f) + lineToRelative(-0.1f, -0.03f) + lineToRelative(-0.93f, -0.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.47f, -1.42f) + close() + moveTo(6.75f, 2.38f) + lineTo(6.8f, 2.47f) + lineTo(7.18f, 3.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, 0.67f) + lineToRelative(-0.04f, -0.1f) + lineToRelative(-0.38f, -0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.66f) + close() + moveTo(11.11f, 2.06f) + curveToRelative(0.35f, 0.14f, 0.53f, 0.52f, 0.44f, 0.87f) + lineToRelative(-0.03f, 0.1f) + lineToRelative(-0.39f, 0.93f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.42f, -0.47f) + lineToRelative(0.04f, -0.1f) + lineToRelative(0.38f, -0.93f) + curveToRelative(0.16f, -0.38f, 0.6f, -0.56f, 0.98f, -0.4f) + close() + } + } + return _weatherHailDay!! + } + +private var _weatherHailDay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherHailNight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherHailNight.kt new file mode 100644 index 00000000..3e9a721b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherHailNight.kt @@ -0,0 +1,72 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WeatherHailNight: ImageVector + get() { + if (_weatherHailNight != null) { + return _weatherHailNight!! + } + _weatherHailNight = fluentIcon(name = "Regular.WeatherHailNight") { + fluentPath { + moveTo(13.0f, 20.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(9.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(16.5f, 19.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f) + close() + moveTo(13.0f, 6.0f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.64f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) + lineTo(7.69f, 18.0f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) + horizontalLineToRelative(0.08f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 6.0f) + close() + moveTo(13.0f, 7.5f) + arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.88f, 3.9f) + curveToRelative(0.0f, 0.35f, -0.31f, 0.63f, -0.68f, 0.63f) + horizontalLineToRelative(-0.69f) + curveToRelative(-1.26f, 0.0f, -2.28f, 1.0f, -2.28f, 2.24f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.24f) + horizontalLineToRelative(10.5f) + curveToRelative(1.26f, 0.0f, 2.29f, -1.0f, 2.29f, -2.24f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.29f, -2.24f) + horizontalLineToRelative(-0.69f) + curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.63f) + curveToRelative(0.0f, -2.29f, -1.8f, -3.9f, -3.88f, -3.9f) + close() + moveTo(6.6f, 2.0f) + arcToRelative(5.06f, 5.06f, 0.0f, false, true, 4.47f, 3.27f) + curveToRelative(-0.5f, 0.14f, -0.96f, 0.34f, -1.39f, 0.58f) + arcTo(3.55f, 3.55f, 0.0f, false, false, 7.48f, 3.7f) + arcToRelative(5.97f, 5.97f, 0.0f, false, true, -0.62f, 3.61f) + lineToRelative(-0.12f, 0.22f) + arcToRelative(5.75f, 5.75f, 0.0f, false, true, -2.71f, 2.3f) + arcToRelative(3.6f, 3.6f, 0.0f, false, false, 1.06f, 0.61f) + curveToRelative(-0.45f, 0.3f, -0.84f, 0.69f, -1.16f, 1.12f) + lineToRelative(-0.16f, -0.08f) + arcToRelative(5.06f, 5.06f, 0.0f, false, true, -1.64f, -1.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.37f, -1.13f) + curveToRelative(1.64f, -0.59f, 2.53f, -1.25f, 3.03f, -2.21f) + curveToRelative(0.55f, -1.06f, 0.66f, -2.18f, 0.29f, -3.68f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 6.59f, 2.0f) + close() + } + } + return _weatherHailNight!! + } + +private var _weatherHailNight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherHaze.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherHaze.kt new file mode 100644 index 00000000..e5e40067 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherHaze.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WeatherHaze: ImageVector + get() { + if (_weatherHaze != null) { + return _weatherHaze!! + } + _weatherHaze = fluentIcon(name = "Regular.WeatherHaze") { + fluentPath { + moveTo(6.84f, 13.98f) + arcToRelative(5.65f, 5.65f, 0.0f, false, true, 1.72f, 0.03f) + curveToRelative(1.29f, 0.2f, 2.52f, 0.83f, 3.82f, 1.6f) + curveToRelative(2.36f, 1.37f, 4.94f, 1.1f, 6.43f, 0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.88f, 1.22f) + curveToRelative(-2.01f, 1.44f, -5.24f, 1.69f, -8.07f, 0.04f) + arcToRelative(10.05f, 10.05f, 0.0f, false, false, -3.3f, -1.41f) + arcToRelative(4.8f, 4.8f, 0.0f, false, false, -3.21f, 0.67f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -0.72f, -1.32f) + arcToRelative(7.2f, 7.2f, 0.0f, false, true, 2.45f, -0.86f) + close() + moveTo(8.11f, 10.95f) + arcToRelative(5.64f, 5.64f, 0.0f, false, false, -1.55f, 0.08f) + curveToRelative(-0.7f, 0.13f, -1.41f, 0.4f, -2.17f, 0.81f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.72f, 1.32f) + arcToRelative(4.8f, 4.8f, 0.0f, false, true, 3.2f, -0.67f) + curveToRelative(1.0f, 0.16f, 2.02f, 0.65f, 3.31f, 1.4f) + curveToRelative(2.83f, 1.65f, 6.06f, 1.4f, 8.07f, -0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.88f, -1.22f) + curveToRelative(-0.4f, 0.3f, -0.9f, 0.52f, -1.44f, 0.68f) + arcToRelative(5.9f, 5.9f, 0.0f, false, true, -1.65f, 0.22f) + arcToRelative(6.72f, 6.72f, 0.0f, false, true, -3.34f, -0.94f) + arcTo(11.44f, 11.44f, 0.0f, false, false, 8.55f, 11.0f) + lineToRelative(-0.44f, -0.05f) + close() + moveTo(17.52f, 12.0f) + verticalLineToRelative(0.2f) + curveToRelative(-0.45f, 0.19f, -0.97f, 0.3f, -1.53f, 0.33f) + arcTo(4.03f, 4.03f, 0.0f, false, false, 8.51f, 10.0f) + arcToRelative(6.64f, 6.64f, 0.0f, false, false, -1.65f, -0.02f) + arcTo(5.53f, 5.53f, 0.0f, false, true, 17.52f, 12.0f) + close() + moveTo(12.12f, 22.0f) + arcToRelative(0.76f, 0.76f, 0.0f, false, true, -0.25f, 0.0f) + horizontalLineToRelative(0.25f) + close() + moveTo(5.97f, 4.94f) + lineToRelative(-0.08f, -0.07f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 4.91f, 6.0f) + lineToRelative(1.06f, 1.06f) + lineToRelative(0.09f, 0.07f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 7.03f, 6.0f) + lineTo(5.97f, 4.94f) + close() + moveTo(19.15f, 5.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.13f, -0.98f) + lineTo(16.96f, 6.0f) + lineToRelative(-0.08f, 0.09f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.14f, 0.97f) + lineTo(19.08f, 6.0f) + lineToRelative(0.07f, -0.08f) + close() + moveTo(12.75f, 2.64f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.1f) + verticalLineToRelative(1.6f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, -0.1f) + verticalLineToRelative(-1.6f) + close() + moveTo(5.1f, 19.16f) + arcToRelative(4.8f, 4.8f, 0.0f, false, true, 3.2f, -0.67f) + curveToRelative(1.0f, 0.16f, 2.02f, 0.66f, 3.31f, 1.4f) + curveToRelative(2.83f, 1.66f, 6.06f, 1.4f, 8.07f, -0.03f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -0.88f, -1.22f) + curveToRelative(-1.49f, 1.06f, -4.07f, 1.34f, -6.43f, -0.04f) + arcTo(11.44f, 11.44f, 0.0f, false, false, 8.56f, 17.0f) + arcToRelative(6.29f, 6.29f, 0.0f, false, false, -4.17f, 0.84f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.72f, 1.32f) + close() + } + } + return _weatherHaze!! + } + +private var _weatherHaze: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherMoon.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherMoon.kt new file mode 100644 index 00000000..b926e975 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherMoon.kt @@ -0,0 +1,36 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WeatherMoon: ImageVector + get() { + if (_weatherMoon != null) { + return _weatherMoon!! + } + _weatherMoon = fluentIcon(name = "Regular.WeatherMoon") { + fluentPath { + moveTo(20.03f, 17.0f) + arcToRelative(10.0f, 10.0f, 0.0f, false, true, -16.9f, 0.68f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.36f, -1.13f) + curveToRelative(3.77f, -1.35f, 5.79f, -2.91f, 6.96f, -5.15f) + curveToRelative(1.23f, -2.35f, 1.55f, -4.93f, 0.69f, -8.46f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 11.9f, 2.0f) + arcTo(10.0f, 10.0f, 0.0f, false, true, 20.03f, 17.0f) + close() + moveTo(11.78f, 12.1f) + curveToRelative(-1.25f, 2.39f, -3.31f, 4.1f, -6.82f, 5.5f) + arcToRelative(8.49f, 8.49f, 0.0f, false, false, 13.77f, -1.35f) + arcToRelative(8.5f, 8.5f, 0.0f, false, false, -5.9f, -12.63f) + curveToRelative(0.64f, 3.39f, 0.22f, 6.05f, -1.05f, 8.48f) + close() + } + } + return _weatherMoon!! + } + +private var _weatherMoon: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherMoonOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherMoonOff.kt new file mode 100644 index 00000000..ad4bf5d9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherMoonOff.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WeatherMoonOff: ImageVector + get() { + if (_weatherMoonOff != null) { + return _weatherMoonOff!! + } + _weatherMoonOff = fluentIcon(name = "Regular.WeatherMoonOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(8.2f, 8.2f) + curveToRelative(-1.18f, 2.19f, -3.2f, 3.73f, -6.93f, 5.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.36f, 1.13f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, 15.1f, 1.6f) + lineToRelative(2.49f, 2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(17.16f, 18.22f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, -12.2f, -0.62f) + curveToRelative(3.27f, -1.3f, 5.28f, -2.88f, 6.55f, -5.03f) + lineToRelative(5.65f, 5.65f) + close() + moveTo(15.62f, 4.64f) + arcToRelative(8.5f, 8.5f, 0.0f, false, true, 3.35f, 11.15f) + lineToRelative(1.11f, 1.11f) + arcToRelative(10.0f, 10.0f, 0.0f, false, false, -8.17f, -14.89f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.77f, 0.93f) + curveToRelative(0.5f, 2.07f, 0.6f, 3.81f, 0.35f, 5.37f) + lineToRelative(1.27f, 1.27f) + curveToRelative(0.45f, -1.76f, 0.5f, -3.7f, 0.06f, -5.96f) + curveToRelative(0.98f, 0.17f, 1.92f, 0.51f, 2.8f, 1.02f) + close() + } + } + return _weatherMoonOff!! + } + +private var _weatherMoonOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherPartlyCloudyDay.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherPartlyCloudyDay.kt new file mode 100644 index 00000000..a717973d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherPartlyCloudyDay.kt @@ -0,0 +1,85 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WeatherPartlyCloudyDay: ImageVector + get() { + if (_weatherPartlyCloudyDay != null) { + return _weatherPartlyCloudyDay!! + } + _weatherPartlyCloudyDay = fluentIcon(name = "Regular.WeatherPartlyCloudyDay") { + fluentPath { + moveTo(13.0f, 8.0f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.64f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) + lineTo(7.69f, 20.0f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) + horizontalLineToRelative(0.08f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 8.0f) + close() + moveTo(13.0f, 9.5f) + arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.87f, 3.9f) + curveToRelative(0.0f, 0.35f, -0.32f, 0.63f, -0.69f, 0.63f) + horizontalLineToRelative(-0.69f) + curveToRelative(-1.26f, 0.0f, -2.28f, 1.0f, -2.28f, 2.24f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.23f) + horizontalLineToRelative(10.5f) + curveToRelative(1.26f, 0.0f, 2.29f, -1.0f, 2.29f, -2.23f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.29f, -2.24f) + horizontalLineToRelative(-0.69f) + curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.64f) + curveToRelative(0.0f, -2.28f, -1.8f, -3.89f, -3.88f, -3.89f) + close() + moveTo(4.37f, 12.16f) + curveToRelative(0.14f, 0.35f, 0.0f, 0.75f, -0.32f, 0.94f) + lineToRelative(-0.09f, 0.04f) + lineToRelative(-0.92f, 0.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.67f, -1.34f) + lineToRelative(0.1f, -0.05f) + lineToRelative(0.92f, -0.38f) + curveToRelative(0.38f, -0.16f, 0.82f, 0.02f, 0.98f, 0.4f) + close() + moveTo(10.85f, 7.33f) + lineTo(10.68f, 7.39f) + curveToRelative(-0.53f, 0.19f, -1.02f, 0.44f, -1.46f, 0.75f) + arcToRelative(2.44f, 2.44f, 0.0f, false, false, -2.8f, 3.67f) + curveToRelative(-0.48f, 0.14f, -0.94f, 0.36f, -1.36f, 0.64f) + arcToRelative(3.94f, 3.94f, 0.0f, false, true, 5.8f, -5.12f) + close() + moveTo(2.95f, 7.36f) + lineTo(3.05f, 7.4f) + lineTo(3.97f, 7.78f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 3.5f, 9.2f) + lineToRelative(-0.1f, -0.04f) + lineToRelative(-0.93f, -0.38f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.47f, -1.42f) + close() + moveTo(6.75f, 4.37f) + lineTo(6.8f, 4.47f) + lineTo(7.19f, 5.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.67f) + lineToRelative(-0.04f, -0.1f) + lineToRelative(-0.38f, -0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.67f) + close() + moveTo(11.11f, 4.06f) + curveToRelative(0.35f, 0.14f, 0.53f, 0.52f, 0.44f, 0.87f) + lineToRelative(-0.03f, 0.1f) + lineToRelative(-0.39f, 0.93f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.42f, -0.47f) + lineToRelative(0.04f, -0.1f) + lineToRelative(0.38f, -0.93f) + curveToRelative(0.16f, -0.38f, 0.6f, -0.56f, 0.98f, -0.4f) + close() + } + } + return _weatherPartlyCloudyDay!! + } + +private var _weatherPartlyCloudyDay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherPartlyCloudyNight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherPartlyCloudyNight.kt new file mode 100644 index 00000000..09e73947 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherPartlyCloudyNight.kt @@ -0,0 +1,60 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WeatherPartlyCloudyNight: ImageVector + get() { + if (_weatherPartlyCloudyNight != null) { + return _weatherPartlyCloudyNight!! + } + _weatherPartlyCloudyNight = fluentIcon(name = "Regular.WeatherPartlyCloudyNight") { + fluentPath { + moveTo(13.0f, 8.0f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.64f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) + lineTo(7.69f, 20.0f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) + horizontalLineToRelative(0.08f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 8.0f) + close() + moveTo(13.0f, 9.5f) + arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.88f, 3.9f) + curveToRelative(0.0f, 0.35f, -0.31f, 0.63f, -0.68f, 0.63f) + horizontalLineToRelative(-0.69f) + curveToRelative(-1.26f, 0.0f, -2.28f, 1.0f, -2.28f, 2.24f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.24f) + horizontalLineToRelative(10.5f) + curveToRelative(1.26f, 0.0f, 2.29f, -1.0f, 2.29f, -2.24f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.29f, -2.24f) + horizontalLineToRelative(-0.69f) + curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.63f) + curveToRelative(0.0f, -2.29f, -1.8f, -3.9f, -3.88f, -3.9f) + close() + moveTo(6.6f, 4.0f) + arcToRelative(5.06f, 5.06f, 0.0f, false, true, 4.47f, 3.27f) + curveToRelative(-0.5f, 0.14f, -0.96f, 0.34f, -1.39f, 0.58f) + arcTo(3.55f, 3.55f, 0.0f, false, false, 7.48f, 5.7f) + arcToRelative(5.97f, 5.97f, 0.0f, false, true, -0.62f, 3.61f) + lineToRelative(-0.12f, 0.22f) + arcToRelative(5.75f, 5.75f, 0.0f, false, true, -2.71f, 2.3f) + arcToRelative(3.6f, 3.6f, 0.0f, false, false, 1.06f, 0.61f) + curveToRelative(-0.45f, 0.3f, -0.84f, 0.69f, -1.16f, 1.12f) + lineToRelative(-0.16f, -0.08f) + arcToRelative(5.06f, 5.06f, 0.0f, false, true, -1.64f, -1.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.37f, -1.13f) + curveToRelative(1.64f, -0.59f, 2.53f, -1.25f, 3.03f, -2.21f) + curveToRelative(0.55f, -1.06f, 0.66f, -2.18f, 0.29f, -3.68f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 6.59f, 4.0f) + close() + } + } + return _weatherPartlyCloudyNight!! + } + +private var _weatherPartlyCloudyNight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherRain.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherRain.kt new file mode 100644 index 00000000..0ec5e90b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherRain.kt @@ -0,0 +1,59 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WeatherRain: ImageVector + get() { + if (_weatherRain != null) { + return _weatherRain!! + } + _weatherRain = fluentIcon(name = "Regular.WeatherRain") { + fluentPath { + moveTo(12.0f, 4.0f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.37f) + horizontalLineToRelative(-0.59f) + lineToRelative(-1.58f, 2.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, -0.66f) + lineToRelative(0.04f, -0.09f) + lineTo(15.0f, 16.0f) + horizontalLineToRelative(-2.13f) + lineToRelative(-1.59f, 2.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, -0.66f) + lineToRelative(0.05f, -0.09f) + lineTo(11.12f, 16.0f) + lineTo(9.0f, 16.0f) + lineTo(7.4f, 18.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, -0.66f) + lineToRelative(0.05f, -0.09f) + lineTo(7.26f, 16.0f) + horizontalLineToRelative(-0.57f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.37f) + horizontalLineToRelative(0.08f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 12.0f, 4.0f) + close() + moveTo(12.0f, 5.5f) + arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.88f, 3.89f) + curveToRelative(0.0f, 0.36f, -0.32f, 0.64f, -0.68f, 0.64f) + horizontalLineToRelative(-0.7f) + curveToRelative(-1.25f, 0.0f, -2.27f, 1.0f, -2.27f, 2.23f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.24f) + horizontalLineToRelative(10.5f) + curveToRelative(1.26f, 0.0f, 2.28f, -1.0f, 2.28f, -2.24f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.28f, -2.23f) + horizontalLineToRelative(-0.69f) + curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.64f) + curveToRelative(0.0f, -2.29f, -1.8f, -3.9f, -3.88f, -3.9f) + close() + } + } + return _weatherRain!! + } + +private var _weatherRain: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherRainShowersDay.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherRainShowersDay.kt new file mode 100644 index 00000000..cbe7f126 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherRainShowersDay.kt @@ -0,0 +1,100 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WeatherRainShowersDay: ImageVector + get() { + if (_weatherRainShowersDay != null) { + return _weatherRainShowersDay!! + } + _weatherRainShowersDay = fluentIcon(name = "Regular.WeatherRainShowersDay") { + fluentPath { + moveTo(13.0f, 6.01f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.37f) + horizontalLineToRelative(-0.62f) + lineToRelative(-1.55f, 2.62f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, -0.66f) + lineToRelative(0.04f, -0.1f) + lineTo(15.96f, 18.0f) + horizontalLineToRelative(-2.14f) + lineToRelative(-1.55f, 2.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, -0.66f) + lineToRelative(0.04f, -0.1f) + lineTo(12.1f, 18.0f) + lineTo(9.96f, 18.0f) + lineTo(8.4f, 20.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, -0.66f) + lineToRelative(0.04f, -0.1f) + lineTo(8.22f, 18.0f) + lineTo(7.7f, 18.0f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) + horizontalLineToRelative(0.08f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 6.01f) + close() + moveTo(13.0f, 7.51f) + arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.87f, 3.89f) + curveToRelative(0.0f, 0.35f, -0.32f, 0.63f, -0.69f, 0.63f) + horizontalLineToRelative(-0.69f) + curveToRelative(-1.26f, 0.0f, -2.28f, 1.0f, -2.28f, 2.24f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.24f) + horizontalLineToRelative(10.5f) + curveToRelative(1.26f, 0.0f, 2.29f, -1.0f, 2.29f, -2.24f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.29f, -2.24f) + horizontalLineToRelative(-0.69f) + curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.63f) + curveToRelative(0.0f, -2.29f, -1.8f, -3.9f, -3.88f, -3.9f) + close() + moveTo(4.37f, 10.17f) + curveToRelative(0.14f, 0.35f, 0.0f, 0.74f, -0.32f, 0.93f) + lineToRelative(-0.09f, 0.05f) + lineToRelative(-0.92f, 0.38f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.67f, -1.34f) + lineToRelative(0.1f, -0.05f) + lineToRelative(0.92f, -0.38f) + curveToRelative(0.38f, -0.16f, 0.82f, 0.02f, 0.98f, 0.4f) + close() + moveTo(10.85f, 5.33f) + lineTo(10.68f, 5.39f) + curveToRelative(-0.53f, 0.19f, -1.02f, 0.44f, -1.46f, 0.76f) + arcToRelative(2.44f, 2.44f, 0.0f, false, false, -2.8f, 3.67f) + curveToRelative(-0.48f, 0.13f, -0.94f, 0.35f, -1.36f, 0.63f) + arcToRelative(3.94f, 3.94f, 0.0f, false, true, 5.8f, -5.12f) + close() + moveTo(2.95f, 5.36f) + lineTo(3.05f, 5.4f) + lineTo(3.97f, 5.78f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 3.5f, 7.2f) + lineToRelative(-0.1f, -0.03f) + lineToRelative(-0.93f, -0.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.47f, -1.42f) + close() + moveTo(6.75f, 2.38f) + lineTo(6.8f, 2.47f) + lineTo(7.19f, 3.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.67f) + lineToRelative(-0.04f, -0.1f) + lineToRelative(-0.38f, -0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.66f) + close() + moveTo(11.11f, 2.06f) + curveToRelative(0.35f, 0.14f, 0.53f, 0.52f, 0.44f, 0.87f) + lineToRelative(-0.03f, 0.1f) + lineToRelative(-0.39f, 0.93f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.42f, -0.46f) + lineToRelative(0.04f, -0.11f) + lineToRelative(0.38f, -0.93f) + curveToRelative(0.16f, -0.38f, 0.6f, -0.56f, 0.98f, -0.4f) + close() + } + } + return _weatherRainShowersDay!! + } + +private var _weatherRainShowersDay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherRainShowersNight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherRainShowersNight.kt new file mode 100644 index 00000000..a2ba09c0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherRainShowersNight.kt @@ -0,0 +1,75 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WeatherRainShowersNight: ImageVector + get() { + if (_weatherRainShowersNight != null) { + return _weatherRainShowersNight!! + } + _weatherRainShowersNight = fluentIcon(name = "Regular.WeatherRainShowersNight") { + fluentPath { + moveTo(13.0f, 6.02f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) + horizontalLineToRelative(-0.64f) + lineToRelative(-1.53f, 2.62f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, -0.66f) + lineToRelative(0.05f, -0.1f) + lineToRelative(1.1f, -1.86f) + lineTo(13.8f, 18.01f) + lineToRelative(-1.53f, 2.62f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, -0.66f) + lineToRelative(0.05f, -0.1f) + lineToRelative(1.1f, -1.86f) + lineTo(9.93f, 18.01f) + lineTo(8.4f, 20.63f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.34f, -0.66f) + lineToRelative(0.04f, -0.1f) + lineToRelative(1.1f, -1.86f) + horizontalLineToRelative(-0.5f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) + horizontalLineToRelative(0.07f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 6.02f) + close() + moveTo(13.0f, 7.52f) + arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.88f, 3.88f) + curveToRelative(0.0f, 0.36f, -0.31f, 0.64f, -0.68f, 0.64f) + horizontalLineToRelative(-0.69f) + curveToRelative(-1.26f, 0.0f, -2.28f, 1.0f, -2.28f, 2.24f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.24f) + horizontalLineToRelative(10.5f) + curveToRelative(1.26f, 0.0f, 2.29f, -1.0f, 2.29f, -2.24f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.29f, -2.24f) + horizontalLineToRelative(-0.69f) + curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.64f) + curveToRelative(0.0f, -2.28f, -1.8f, -3.88f, -3.88f, -3.88f) + close() + moveTo(6.6f, 2.0f) + arcToRelative(5.06f, 5.06f, 0.0f, false, true, 4.47f, 3.27f) + curveToRelative(-0.5f, 0.14f, -0.96f, 0.34f, -1.39f, 0.58f) + arcTo(3.55f, 3.55f, 0.0f, false, false, 7.48f, 3.7f) + arcToRelative(5.97f, 5.97f, 0.0f, false, true, -0.62f, 3.61f) + lineToRelative(-0.12f, 0.21f) + arcToRelative(5.75f, 5.75f, 0.0f, false, true, -2.72f, 2.3f) + arcToRelative(3.61f, 3.61f, 0.0f, false, false, 1.07f, 0.62f) + curveToRelative(-0.45f, 0.3f, -0.84f, 0.68f, -1.16f, 1.12f) + lineToRelative(-0.16f, -0.08f) + arcToRelative(5.06f, 5.06f, 0.0f, false, true, -1.64f, -1.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.37f, -1.13f) + curveToRelative(1.64f, -0.59f, 2.52f, -1.25f, 3.03f, -2.22f) + curveToRelative(0.55f, -1.05f, 0.66f, -2.17f, 0.29f, -3.67f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 6.59f, 2.0f) + close() + } + } + return _weatherRainShowersNight!! + } + +private var _weatherRainShowersNight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherRainSnow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherRainSnow.kt new file mode 100644 index 00000000..a72d199f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherRainSnow.kt @@ -0,0 +1,68 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WeatherRainSnow: ImageVector + get() { + if (_weatherRainSnow != null) { + return _weatherRainSnow!! + } + _weatherRainSnow = fluentIcon(name = "Regular.WeatherRainSnow") { + fluentPath { + moveTo(14.5f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(12.0f, 4.0f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.37f) + lineTo(16.0f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.43f, 0.0f) + lineTo(8.99f, 16.0f) + lineTo(7.4f, 18.62f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, -0.66f) + lineToRelative(0.05f, -0.09f) + lineTo(7.26f, 16.0f) + horizontalLineToRelative(-0.57f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.37f) + horizontalLineToRelative(0.08f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 12.0f, 4.0f) + close() + moveTo(11.58f, 16.7f) + curveToRelative(0.33f, 0.2f, 0.46f, 0.6f, 0.32f, 0.94f) + lineToRelative(-0.05f, 0.09f) + lineToRelative(-0.56f, 0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, -0.66f) + lineToRelative(0.05f, -0.1f) + lineToRelative(0.56f, -0.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, -0.27f) + close() + moveTo(17.25f, 17.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(12.0f, 5.5f) + arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.88f, 3.89f) + curveToRelative(0.0f, 0.36f, -0.32f, 0.64f, -0.68f, 0.64f) + horizontalLineToRelative(-0.7f) + curveToRelative(-1.25f, 0.0f, -2.27f, 1.0f, -2.27f, 2.23f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.24f) + horizontalLineToRelative(10.5f) + curveToRelative(1.26f, 0.0f, 2.28f, -1.0f, 2.28f, -2.24f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.28f, -2.23f) + horizontalLineToRelative(-0.69f) + curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.64f) + curveToRelative(0.0f, -2.29f, -1.8f, -3.9f, -3.88f, -3.9f) + close() + } + } + return _weatherRainSnow!! + } + +private var _weatherRainSnow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherSnow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherSnow.kt new file mode 100644 index 00000000..7825d209 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherSnow.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WeatherSnow: ImageVector + get() { + if (_weatherSnow != null) { + return _weatherSnow!! + } + _weatherSnow = fluentIcon(name = "Regular.WeatherSnow") { + fluentPath { + moveTo(9.75f, 18.15f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(14.25f, 18.15f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(7.5f, 17.15f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(12.0f, 17.15f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(16.5f, 17.15f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(12.0f, 4.0f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.37f) + lineTo(6.69f, 16.0f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.37f) + horizontalLineToRelative(0.08f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 12.0f, 4.0f) + close() + moveTo(12.0f, 5.5f) + arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.88f, 3.89f) + curveToRelative(0.0f, 0.36f, -0.32f, 0.64f, -0.68f, 0.64f) + horizontalLineToRelative(-0.7f) + curveToRelative(-1.25f, 0.0f, -2.27f, 1.0f, -2.27f, 2.23f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.24f) + horizontalLineToRelative(10.5f) + curveToRelative(1.26f, 0.0f, 2.28f, -1.0f, 2.28f, -2.24f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.28f, -2.23f) + horizontalLineToRelative(-0.69f) + curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.64f) + curveToRelative(0.0f, -2.29f, -1.8f, -3.9f, -3.88f, -3.9f) + close() + } + } + return _weatherSnow!! + } + +private var _weatherSnow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherSnowShowerDay.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherSnowShowerDay.kt new file mode 100644 index 00000000..65710f3e --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherSnowShowerDay.kt @@ -0,0 +1,105 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WeatherSnowShowerDay: ImageVector + get() { + if (_weatherSnowShowerDay != null) { + return _weatherSnowShowerDay!! + } + _weatherSnowShowerDay = fluentIcon(name = "Regular.WeatherSnowShowerDay") { + fluentPath { + moveTo(10.75f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(15.25f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(8.5f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(13.0f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(17.5f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(13.0f, 6.01f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.37f) + lineTo(7.69f, 18.01f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.37f) + horizontalLineToRelative(0.08f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 6.01f) + close() + moveTo(13.0f, 7.51f) + arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.87f, 3.89f) + curveToRelative(0.0f, 0.35f, -0.32f, 0.63f, -0.69f, 0.63f) + horizontalLineToRelative(-0.69f) + curveToRelative(-1.26f, 0.0f, -2.28f, 1.0f, -2.28f, 2.24f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.24f) + horizontalLineToRelative(10.5f) + curveToRelative(1.26f, 0.0f, 2.29f, -1.0f, 2.29f, -2.24f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.29f, -2.24f) + horizontalLineToRelative(-0.69f) + curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.63f) + curveToRelative(0.0f, -2.29f, -1.8f, -3.9f, -3.88f, -3.9f) + close() + moveTo(4.37f, 10.17f) + curveToRelative(0.14f, 0.35f, 0.0f, 0.74f, -0.32f, 0.93f) + lineToRelative(-0.09f, 0.05f) + lineToRelative(-0.92f, 0.38f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.67f, -1.34f) + lineToRelative(0.1f, -0.05f) + lineToRelative(0.92f, -0.38f) + curveToRelative(0.38f, -0.16f, 0.82f, 0.02f, 0.98f, 0.4f) + close() + moveTo(10.85f, 5.33f) + lineTo(10.68f, 5.39f) + curveToRelative(-0.53f, 0.19f, -1.02f, 0.44f, -1.46f, 0.76f) + arcToRelative(2.44f, 2.44f, 0.0f, false, false, -2.8f, 3.67f) + curveToRelative(-0.48f, 0.13f, -0.94f, 0.35f, -1.36f, 0.63f) + arcToRelative(3.94f, 3.94f, 0.0f, false, true, 5.8f, -5.12f) + close() + moveTo(2.95f, 5.36f) + lineTo(3.05f, 5.4f) + lineTo(3.97f, 5.78f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 3.5f, 7.2f) + lineToRelative(-0.1f, -0.03f) + lineToRelative(-0.93f, -0.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.47f, -1.42f) + close() + moveTo(6.75f, 2.38f) + lineTo(6.8f, 2.47f) + lineTo(7.19f, 3.39f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.35f, 0.67f) + lineToRelative(-0.04f, -0.1f) + lineToRelative(-0.38f, -0.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.66f) + close() + moveTo(11.11f, 2.06f) + curveToRelative(0.35f, 0.14f, 0.53f, 0.52f, 0.44f, 0.87f) + lineToRelative(-0.03f, 0.1f) + lineToRelative(-0.39f, 0.93f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.42f, -0.46f) + lineToRelative(0.04f, -0.11f) + lineToRelative(0.38f, -0.93f) + curveToRelative(0.16f, -0.38f, 0.6f, -0.56f, 0.98f, -0.4f) + close() + } + } + return _weatherSnowShowerDay!! + } + +private var _weatherSnowShowerDay: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherSnowShowerNight.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherSnowShowerNight.kt new file mode 100644 index 00000000..484ac883 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherSnowShowerNight.kt @@ -0,0 +1,80 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WeatherSnowShowerNight: ImageVector + get() { + if (_weatherSnowShowerNight != null) { + return _weatherSnowShowerNight!! + } + _weatherSnowShowerNight = fluentIcon(name = "Regular.WeatherSnowShowerNight") { + fluentPath { + moveTo(10.75f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(15.25f, 20.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(8.5f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(13.0f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(17.5f, 19.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(13.0f, 6.02f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) + lineTo(7.69f, 18.01f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.36f) + horizontalLineToRelative(0.08f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 6.02f) + close() + moveTo(13.0f, 7.52f) + arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.88f, 3.88f) + curveToRelative(0.0f, 0.36f, -0.31f, 0.64f, -0.68f, 0.64f) + horizontalLineToRelative(-0.69f) + curveToRelative(-1.26f, 0.0f, -2.28f, 1.0f, -2.28f, 2.24f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.24f) + horizontalLineToRelative(10.5f) + curveToRelative(1.26f, 0.0f, 2.29f, -1.0f, 2.29f, -2.24f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.29f, -2.24f) + horizontalLineToRelative(-0.69f) + curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.64f) + curveToRelative(0.0f, -2.28f, -1.8f, -3.88f, -3.88f, -3.88f) + close() + moveTo(6.6f, 2.0f) + arcToRelative(5.06f, 5.06f, 0.0f, false, true, 4.47f, 3.27f) + curveToRelative(-0.5f, 0.14f, -0.96f, 0.34f, -1.39f, 0.58f) + arcTo(3.55f, 3.55f, 0.0f, false, false, 7.48f, 3.7f) + arcToRelative(5.97f, 5.97f, 0.0f, false, true, -0.62f, 3.61f) + lineToRelative(-0.12f, 0.21f) + arcToRelative(5.75f, 5.75f, 0.0f, false, true, -2.72f, 2.3f) + arcToRelative(3.61f, 3.61f, 0.0f, false, false, 1.07f, 0.62f) + curveToRelative(-0.45f, 0.3f, -0.84f, 0.68f, -1.16f, 1.12f) + lineToRelative(-0.16f, -0.08f) + arcToRelative(5.06f, 5.06f, 0.0f, false, true, -1.64f, -1.52f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.37f, -1.13f) + curveToRelative(1.64f, -0.59f, 2.52f, -1.25f, 3.03f, -2.22f) + curveToRelative(0.55f, -1.05f, 0.66f, -2.17f, 0.29f, -3.67f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 6.59f, 2.0f) + close() + } + } + return _weatherSnowShowerNight!! + } + +private var _weatherSnowShowerNight: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherSnowflake.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherSnowflake.kt new file mode 100644 index 00000000..e9ef12a8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherSnowflake.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WeatherSnowflake: ImageVector + get() { + if (_weatherSnowflake != null) { + return _weatherSnowflake!! + } + _weatherSnowflake = fluentIcon(name = "Regular.WeatherSnowflake") { + fluentPath { + moveTo(11.75f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineTo(5.9f) + lineToRelative(2.13f, -2.13f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-3.19f, 3.2f) + verticalLineTo(11.0f) + horizontalLineToRelative(2.97f) + lineToRelative(3.2f, -3.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 1.07f) + lineTo(17.6f, 11.0f) + horizontalLineToRelative(3.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineTo(17.6f) + lineToRelative(2.13f, 2.13f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-3.2f, -3.19f) + horizontalLineTo(12.5f) + verticalLineToRelative(2.97f) + lineToRelative(3.2f, 3.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.07f, 1.06f) + lineTo(12.5f, 17.6f) + verticalLineToRelative(3.15f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineTo(17.6f) + lineToRelative(-2.13f, 2.13f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(3.19f, -3.2f) + verticalLineTo(12.5f) + horizontalLineTo(8.03f) + lineToRelative(-3.2f, 3.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.07f) + lineTo(5.9f, 12.5f) + horizontalLineTo(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineTo(5.9f) + lineTo(3.77f, 8.87f) + arcTo(0.75f, 0.75f, 0.0f, false, true, 4.83f, 7.8f) + lineTo(8.03f, 11.0f) + horizontalLineTo(11.0f) + verticalLineTo(8.03f) + lineToRelative(-3.2f, -3.2f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.07f, -1.06f) + lineTo(11.0f, 5.9f) + verticalLineTo(2.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + } + } + return _weatherSnowflake!! + } + +private var _weatherSnowflake: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherSqualls.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherSqualls.kt new file mode 100644 index 00000000..6af145e5 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherSqualls.kt @@ -0,0 +1,54 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WeatherSqualls: ImageVector + get() { + if (_weatherSqualls != null) { + return _weatherSqualls!! + } + _weatherSqualls = fluentIcon(name = "Regular.WeatherSqualls") { + fluentPath { + moveTo(8.08f, 6.88f) + arcTo(4.07f, 4.07f, 0.0f, false, true, 11.98f, 4.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, true, 0.03f, 8.0f) + lineTo(2.74f, 12.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(12.0f, 10.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, -0.03f, -5.0f) + curveToRelative(-1.13f, 0.0f, -2.13f, 0.74f, -2.46f, 1.82f) + lineToRelative(-0.04f, 0.15f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.44f, -0.44f) + lineToRelative(0.05f, -0.15f) + close() + moveTo(16.28f, 12.01f) + arcToRelative(2.93f, 2.93f, 0.0f, false, true, 5.71f, 0.92f) + lineTo(21.99f, 13.0f) + arcToRelative(3.0f, 3.0f, 0.0f, false, true, -2.99f, 3.0f) + horizontalLineToRelative(-1.3f) + arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.45f, 4.0f) + horizontalLineToRelative(-0.13f) + curveToRelative(-0.97f, 0.0f, -1.86f, -0.55f, -2.29f, -1.41f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.34f, -0.67f) + curveToRelative(0.18f, 0.35f, 0.55f, 0.58f, 0.95f, 0.58f) + horizontalLineToRelative(0.13f) + arcToRelative(1.25f, 1.25f, 0.0f, true, false, 0.0f, -2.5f) + lineTo(2.75f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + lineTo(19.0f, 14.5f) + curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f) + verticalLineToRelative(-0.07f) + arcToRelative(1.43f, 1.43f, 0.0f, false, false, -2.79f, -0.44f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.42f, -0.48f) + close() + } + } + return _weatherSqualls!! + } + +private var _weatherSqualls: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherSunny.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherSunny.kt new file mode 100644 index 00000000..8fe9dc15 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherSunny.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WeatherSunny: ImageVector + get() { + if (_weatherSunny != null) { + return _weatherSunny!! + } + _weatherSunny = fluentIcon(name = "Regular.WeatherSunny") { + fluentPath { + moveTo(12.0f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(12.0f, 17.0f) + arcToRelative(5.0f, 5.0f, 0.0f, true, false, 0.0f, -10.0f) + arcToRelative(5.0f, 5.0f, 0.0f, false, false, 0.0f, 10.0f) + close() + moveTo(12.0f, 15.5f) + arcToRelative(3.5f, 3.5f, 0.0f, true, true, 0.0f, -7.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, true, 0.0f, 7.0f) + close() + moveTo(21.25f, 12.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.5f) + close() + moveTo(12.0f, 19.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-1.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(4.25f, 12.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(1.5f) + close() + moveTo(4.22f, 4.22f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(1.5f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, 1.06f) + lineToRelative(-1.5f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + moveTo(5.28f, 19.78f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(1.5f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-1.5f, 1.5f) + close() + moveTo(19.78f, 4.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-1.5f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, 1.06f) + lineToRelative(1.5f, -1.5f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + close() + moveTo(18.72f, 19.78f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, -1.06f) + lineToRelative(-1.5f, -1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(1.5f, 1.5f) + close() + } + } + return _weatherSunny!! + } + +private var _weatherSunny: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherSunnyHigh.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherSunnyHigh.kt new file mode 100644 index 00000000..2502380c --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherSunnyHigh.kt @@ -0,0 +1,98 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WeatherSunnyHigh: ImageVector + get() { + if (_weatherSunnyHigh != null) { + return _weatherSunnyHigh!! + } + _weatherSunnyHigh = fluentIcon(name = "Regular.WeatherSunnyHigh") { + fluentPath { + moveTo(12.0f, 2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + verticalLineToRelative(-0.5f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + close() + moveTo(12.0f, 5.0f) + arcToRelative(4.0f, 4.0f, 0.0f, true, false, 0.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, false, 0.0f, -8.0f) + close() + moveTo(9.5f, 9.0f) + arcToRelative(2.5f, 2.5f, 0.0f, true, true, 5.0f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, -5.0f, 0.0f) + close() + moveTo(12.75f, 14.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-0.5f) + close() + moveTo(5.75f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-0.5f) + close() + moveTo(17.0f, 8.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(6.72f, 5.78f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineToRelative(-0.5f, -0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 1.06f) + lineToRelative(0.5f, 0.5f) + close() + moveTo(7.78f, 12.22f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.06f, 0.0f) + lineToRelative(-0.5f, 0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.06f, 1.06f) + lineToRelative(0.5f, -0.5f) + curveToRelative(0.3f, -0.3f, 0.3f, -0.77f, 0.0f, -1.06f) + close() + moveTo(17.28f, 5.78f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineToRelative(0.5f, -0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, 1.06f) + lineToRelative(-0.5f, 0.5f) + close() + moveTo(16.22f, 12.22f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(0.5f, 0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineToRelative(-0.5f, -0.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + moveTo(3.22f, 21.84f) + curveToRelative(-0.33f, 0.25f, -0.8f, 0.2f, -1.06f, -0.12f) + curveToRelative(-0.4f, -0.51f, 0.12f, -1.06f, 0.12f, -1.06f) + horizontalLineToRelative(0.02f) + arcToRelative(3.49f, 3.49f, 0.0f, false, true, 0.18f, -0.15f) + lineToRelative(0.54f, -0.36f) + arcTo(16.78f, 16.78f, 0.0f, false, true, 12.0f, 17.5f) + arcToRelative(16.78f, 16.78f, 0.0f, false, true, 9.7f, 3.15f) + lineToRelative(0.01f, 0.01f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.93f, 1.18f) + lineToRelative(-0.03f, -0.03f) + arcToRelative(5.63f, 5.63f, 0.0f, false, false, -0.58f, -0.4f) + arcTo(15.28f, 15.28f, 0.0f, false, false, 12.0f, 19.0f) + arcToRelative(15.28f, 15.28f, 0.0f, false, false, -8.75f, 2.81f) + lineToRelative(-0.03f, 0.02f) + close() + } + } + return _weatherSunnyHigh!! + } + +private var _weatherSunnyHigh: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherSunnyLow.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherSunnyLow.kt new file mode 100644 index 00000000..884f7846 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherSunnyLow.kt @@ -0,0 +1,69 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WeatherSunnyLow: ImageVector + get() { + if (_weatherSunnyLow != null) { + return _weatherSunnyLow!! + } + _weatherSunnyLow = fluentIcon(name = "Regular.WeatherSunnyLow") { + fluentPath { + moveTo(12.75f, 2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-1.5f) + close() + moveTo(19.03f, 4.97f) + curveToRelative(0.3f, 0.3f, 0.3f, 0.77f, 0.0f, 1.06f) + lineToRelative(-1.06f, 1.06f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.06f, -1.06f) + lineToRelative(1.06f, -1.06f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + close() + moveTo(17.41f, 13.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, false, -10.82f, 0.0f) + lineTo(2.75f, 13.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(18.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.84f) + close() + moveTo(12.0f, 8.0f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, 3.87f, 5.0f) + lineTo(8.13f, 13.0f) + arcTo(4.0f, 4.0f, 0.0f, false, true, 12.0f, 8.0f) + close() + moveTo(6.0f, 16.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + lineTo(6.75f, 17.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(10.0f, 19.75f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-2.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(4.97f, 4.97f) + curveToRelative(0.3f, -0.3f, 0.77f, -0.3f, 1.06f, 0.0f) + lineToRelative(1.06f, 1.06f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, 1.06f) + lineTo(4.97f, 6.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.06f) + close() + } + } + return _weatherSunnyLow!! + } + +private var _weatherSunnyLow: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherThunderstorm.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherThunderstorm.kt new file mode 100644 index 00000000..3c151cd0 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WeatherThunderstorm.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WeatherThunderstorm: ImageVector + get() { + if (_weatherThunderstorm != null) { + return _weatherThunderstorm!! + } + _weatherThunderstorm = fluentIcon(name = "Regular.WeatherThunderstorm") { + fluentPath { + moveToRelative(10.46f, 15.75f) + lineToRelative(2.24f, -2.49f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.18f, 0.92f) + lineToRelative(-0.06f, 0.08f) + lineToRelative(-1.12f, 1.24f) + horizontalLineToRelative(2.28f) + curveToRelative(0.6f, 0.0f, 0.94f, 0.65f, 0.65f, 1.13f) + lineToRelative(-0.06f, 0.09f) + lineToRelative(-3.21f, 4.03f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.24f, -0.84f) + lineToRelative(0.06f, -0.1f) + lineTo(13.42f, 17.0f) + horizontalLineToRelative(-2.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.62f, -1.17f) + lineToRelative(0.06f, -0.08f) + lineToRelative(2.24f, -2.49f) + lineToRelative(-2.24f, 2.49f) + close() + moveTo(13.0f, 5.0f) + curveToRelative(3.17f, 0.0f, 4.97f, 2.1f, 5.23f, 4.63f) + horizontalLineToRelative(0.08f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, 7.36f) + horizontalLineToRelative(-1.79f) + arcToRelative(1.33f, 1.33f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(1.73f) + curveToRelative(1.26f, 0.0f, 2.29f, -1.0f, 2.29f, -2.23f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, -2.29f, -2.24f) + horizontalLineToRelative(-0.69f) + curveToRelative(-0.36f, 0.0f, -0.68f, -0.28f, -0.68f, -0.63f) + curveToRelative(0.0f, -2.29f, -1.8f, -3.9f, -3.88f, -3.9f) + arcToRelative(3.86f, 3.86f, 0.0f, false, false, -3.88f, 3.9f) + curveToRelative(0.0f, 0.35f, -0.31f, 0.63f, -0.68f, 0.63f) + horizontalLineToRelative(-0.69f) + curveToRelative(-1.26f, 0.0f, -2.28f, 1.0f, -2.28f, 2.24f) + arcToRelative(2.26f, 2.26f, 0.0f, false, false, 2.28f, 2.24f) + horizontalLineToRelative(1.76f) + arcToRelative(1.33f, 1.33f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineTo(7.69f) + arcToRelative(3.69f, 3.69f, 0.0f, true, true, 0.0f, -7.37f) + horizontalLineToRelative(0.08f) + arcTo(4.95f, 4.95f, 0.0f, false, true, 13.0f, 5.0f) + close() + moveTo(10.0f, 2.0f) + curveToRelative(1.62f, 0.0f, 3.05f, 0.82f, 3.9f, 2.06f) + arcToRelative(7.5f, 7.5f, 0.0f, false, false, -2.04f, 0.03f) + arcToRelative(3.21f, 3.21f, 0.0f, false, false, -5.03f, 2.07f) + lineToRelative(-0.07f, 0.41f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.99f, 0.83f) + horizontalLineToRelative(-0.49f) + arcToRelative(1.78f, 1.78f, 0.0f, false, false, -1.26f, 3.04f) + curveToRelative(-0.32f, 0.4f, -0.57f, 0.85f, -0.74f, 1.34f) + arcTo(3.28f, 3.28f, 0.0f, false, true, 5.1f, 5.9f) + horizontalLineToRelative(0.25f) + arcTo(4.72f, 4.72f, 0.0f, false, true, 10.0f, 2.0f) + close() + } + } + return _weatherThunderstorm!! + } + +private var _weatherThunderstorm: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WebAsset.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WebAsset.kt new file mode 100644 index 00000000..8f050779 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WebAsset.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WebAsset: ImageVector + get() { + if (_webAsset != null) { + return _webAsset!! + } + _webAsset = fluentIcon(name = "Regular.WebAsset") { + fluentPath { + moveTo(6.75f, 6.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(10.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineTo(6.75f) + close() + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + verticalLineTo(6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + horizontalLineTo(6.25f) + close() + moveTo(4.5f, 6.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(11.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineTo(6.25f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + verticalLineTo(6.25f) + close() + } + } + return _webAsset!! + } + +private var _webAsset: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Whiteboard.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Whiteboard.kt new file mode 100644 index 00000000..e8961350 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Whiteboard.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Whiteboard: ImageVector + get() { + if (_whiteboard != null) { + return _whiteboard!! + } + _whiteboard = fluentIcon(name = "Regular.Whiteboard") { + fluentPath { + moveToRelative(15.99f, 4.0f) + lineToRelative(-1.5f, 1.5f) + lineTo(5.1f, 5.5f) + curveToRelative(-0.9f, 0.08f, -1.61f, 0.83f, -1.61f, 1.75f) + verticalLineToRelative(2.24f) + lineToRelative(2.61f, -1.64f) + curveToRelative(1.0f, -0.63f, 2.32f, -0.37f, 3.0f, 0.57f) + lineToRelative(0.1f, 0.14f) + curveToRelative(0.4f, 0.63f, 0.46f, 1.4f, 0.17f, 2.08f) + lineToRelative(-0.08f, 0.17f) + lineToRelative(-1.21f, 2.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.93f, 1.05f) + lineToRelative(0.1f, -0.04f) + lineToRelative(1.76f, -1.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.83f, 1.25f) + lineToRelative(-0.09f, 0.06f) + lineToRelative(-1.76f, 1.0f) + arcToRelative(2.25f, 2.25f, 0.0f, false, true, -3.17f, -2.87f) + lineToRelative(0.07f, -0.15f) + lineToRelative(1.21f, -2.28f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.96f, -1.04f) + lineToRelative(-0.1f, 0.05f) + lineToRelative(-3.41f, 2.14f) + verticalLineToRelative(5.5f) + curveToRelative(0.0f, 0.96f, 0.78f, 1.74f, 1.75f, 1.74f) + horizontalLineToRelative(13.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + verticalLineToRelative(-7.3f) + lineToRelative(1.5f, -1.5f) + verticalLineToRelative(8.8f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + lineTo(5.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + verticalLineToRelative(-9.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(5.25f, 4.0f) + horizontalLineToRelative(10.74f) + close() + moveTo(21.18f, 3.54f) + lineTo(21.31f, 3.67f) + lineTo(21.43f, 3.8f) + curveToRelative(0.76f, 0.89f, 0.72f, 2.23f, -0.13f, 3.07f) + lineToRelative(-4.28f, 4.28f) + curveToRelative(-0.26f, 0.26f, -0.58f, 0.45f, -0.94f, 0.56f) + lineToRelative(-2.33f, 0.7f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.24f, -1.27f) + lineToRelative(0.74f, -2.29f) + curveToRelative(0.11f, -0.34f, 0.3f, -0.65f, 0.56f, -0.9f) + lineToRelative(4.29f, -4.29f) + arcToRelative(2.27f, 2.27f, 0.0f, false, true, 3.08f, -0.12f) + close() + moveTo(19.16f, 4.73f) + lineTo(14.86f, 9.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.18f, 0.3f) + lineToRelative(-0.45f, 1.39f) + lineToRelative(1.42f, -0.43f) + curveToRelative(0.12f, -0.03f, 0.23f, -0.1f, 0.31f, -0.18f) + lineToRelative(4.28f, -4.28f) + lineToRelative(0.08f, -0.08f) + arcToRelative(0.77f, 0.77f, 0.0f, false, false, -1.16f, -1.0f) + close() + } + } + return _whiteboard!! + } + +private var _whiteboard: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Wifi1.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Wifi1.kt new file mode 100644 index 00000000..3d2b177f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Wifi1.kt @@ -0,0 +1,47 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Wifi1: ImageVector + get() { + if (_wifi1 != null) { + return _wifi1!! + } + _wifi1 = fluentIcon(name = "Regular.Wifi1") { + fluentPath { + moveTo(17.74f, 10.75f) + curveToRelative(0.6f, 0.6f, 1.1f, 1.3f, 1.5f, 2.07f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.34f, 0.68f) + arcToRelative(6.56f, 6.56f, 0.0f, false, false, -11.71f, -0.02f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.34f, -0.67f) + arcToRelative(8.06f, 8.06f, 0.0f, false, true, 12.9f, -2.06f) + close() + moveTo(15.64f, 13.82f) + curveToRelative(0.45f, 0.45f, 0.82f, 1.0f, 1.08f, 1.58f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.38f, 0.6f) + arcTo(3.6f, 3.6f, 0.0f, false, false, 8.75f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.37f, -0.6f) + arcToRelative(5.1f, 5.1f, 0.0f, false, true, 8.26f, -1.57f) + close() + moveTo(20.44f, 8.28f) + curveToRelative(0.52f, 0.5f, 1.0f, 1.09f, 1.42f, 1.7f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.24f, 0.85f) + arcToRelative(10.45f, 10.45f, 0.0f, false, false, -17.23f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.23f, -0.86f) + arcToRelative(11.95f, 11.95f, 0.0f, false, true, 18.29f, -1.69f) + close() + moveTo(13.06f, 16.44f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -2.12f, 2.12f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.12f, -2.12f) + close() + } + } + return _wifi1!! + } + +private var _wifi1: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Wifi2.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Wifi2.kt new file mode 100644 index 00000000..faf32c89 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Wifi2.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Wifi2: ImageVector + get() { + if (_wifi2 != null) { + return _wifi2!! + } + _wifi2 = fluentIcon(name = "Regular.Wifi2") { + fluentPath { + moveTo(17.74f, 10.75f) + curveToRelative(0.6f, 0.6f, 1.1f, 1.3f, 1.5f, 2.07f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.34f, 0.68f) + arcToRelative(6.56f, 6.56f, 0.0f, false, false, -11.71f, -0.02f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.34f, -0.67f) + arcToRelative(8.06f, 8.06f, 0.0f, false, true, 12.9f, -2.06f) + close() + moveTo(15.64f, 13.82f) + curveToRelative(0.45f, 0.45f, 0.82f, 1.0f, 1.08f, 1.58f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.38f, 0.6f) + arcTo(3.6f, 3.6f, 0.0f, false, false, 8.75f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.37f, -0.6f) + arcToRelative(5.1f, 5.1f, 0.0f, false, true, 8.26f, -1.57f) + close() + moveTo(13.06f, 16.44f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -2.12f, 2.12f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.12f, -2.12f) + close() + } + } + return _wifi2!! + } + +private var _wifi2: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Wifi3.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Wifi3.kt new file mode 100644 index 00000000..d92bf978 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Wifi3.kt @@ -0,0 +1,33 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Wifi3: ImageVector + get() { + if (_wifi3 != null) { + return _wifi3!! + } + _wifi3 = fluentIcon(name = "Regular.Wifi3") { + fluentPath { + moveTo(10.94f, 16.44f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, 2.12f, 2.12f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, -2.12f, -2.12f) + close() + moveTo(8.44f, 13.82f) + arcToRelative(5.1f, 5.1f, 0.0f, false, true, 8.28f, 1.58f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.38f, 0.6f) + arcTo(3.6f, 3.6f, 0.0f, false, false, 8.75f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.37f, -0.6f) + curveToRelative(0.26f, -0.59f, 0.62f, -1.12f, 1.06f, -1.57f) + close() + } + } + return _wifi3!! + } + +private var _wifi3: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Wifi4.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Wifi4.kt new file mode 100644 index 00000000..0165f247 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Wifi4.kt @@ -0,0 +1,26 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Wifi4: ImageVector + get() { + if (_wifi4 != null) { + return _wifi4!! + } + _wifi4 = fluentIcon(name = "Regular.Wifi4") { + fluentPath { + moveTo(10.94f, 18.56f) + arcToRelative(1.5f, 1.5f, 0.0f, true, false, 2.12f, -2.12f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.12f, 2.12f) + close() + } + } + return _wifi4!! + } + +private var _wifi4: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WifiLock.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WifiLock.kt new file mode 100644 index 00000000..60d9939f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WifiLock.kt @@ -0,0 +1,73 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WifiLock: ImageVector + get() { + if (_wifiLock != null) { + return _wifiLock!! + } + _wifiLock = fluentIcon(name = "Regular.WifiLock") { + fluentPath { + moveTo(17.74f, 10.75f) + curveToRelative(0.6f, 0.6f, 1.1f, 1.3f, 1.5f, 2.07f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.34f, 0.68f) + arcToRelative(6.56f, 6.56f, 0.0f, false, false, -8.85f, -2.9f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -1.4f, -0.9f) + arcToRelative(8.07f, 8.07f, 0.0f, false, true, 10.1f, 1.05f) + close() + moveTo(15.64f, 13.82f) + curveToRelative(0.45f, 0.45f, 0.82f, 1.0f, 1.07f, 1.58f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.37f, 0.6f) + arcToRelative(3.59f, 3.59f, 0.0f, false, false, -3.93f, -2.12f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, -1.41f, -0.83f) + verticalLineToRelative(-0.29f) + arcToRelative(5.1f, 5.1f, 0.0f, false, true, 5.64f, 1.06f) + close() + moveTo(20.44f, 8.28f) + curveToRelative(0.52f, 0.5f, 1.0f, 1.09f, 1.42f, 1.7f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.24f, 0.85f) + arcToRelative(10.45f, 10.45f, 0.0f, false, false, -17.23f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.23f, -0.86f) + arcToRelative(11.95f, 11.95f, 0.0f, false, true, 18.29f, -1.69f) + close() + moveTo(13.06f, 16.44f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 12.0f, 19.0f) + verticalLineToRelative(-3.0f) + curveToRelative(0.38f, 0.0f, 0.77f, 0.15f, 1.06f, 0.44f) + close() + moveTo(4.0f, 14.0f) + verticalLineToRelative(-1.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(0.5f) + curveToRelative(0.83f, 0.0f, 1.5f, 0.67f, 1.5f, 1.5f) + verticalLineToRelative(5.0f) + curveToRelative(0.0f, 0.83f, -0.67f, 1.5f, -1.5f, 1.5f) + horizontalLineToRelative(-6.0f) + arcTo(1.5f, 1.5f, 0.0f, false, true, 2.0f, 20.5f) + verticalLineToRelative(-5.0f) + curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f) + lineTo(4.0f, 14.0f) + close() + moveTo(5.5f, 13.0f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(-1.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + close() + moveTo(7.5f, 18.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, -2.0f, 0.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 2.0f, 0.0f) + close() + } + } + return _wifiLock!! + } + +private var _wifiLock: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WifiOff.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WifiOff.kt new file mode 100644 index 00000000..3c8d8205 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WifiOff.kt @@ -0,0 +1,56 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WifiOff: ImageVector + get() { + if (_wifiOff != null) { + return _wifiOff!! + } + _wifiOff = fluentIcon(name = "Regular.WifiOff") { + fluentPath { + moveTo(3.28f, 2.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, 1.06f) + lineToRelative(3.36f, 3.36f) + arcToRelative(12.0f, 12.0f, 0.0f, false, false, -3.42f, 3.33f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.23f, 0.85f) + arcToRelative(10.47f, 10.47f, 0.0f, false, true, 3.28f, -3.09f) + lineToRelative(1.6f, 1.6f) + arcToRelative(8.06f, 8.06f, 0.0f, false, false, -3.42f, 3.48f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.34f, 0.67f) + arcToRelative(6.51f, 6.51f, 0.0f, false, true, 3.2f, -3.03f) + lineToRelative(1.93f, 1.93f) + arcToRelative(5.07f, 5.07f, 0.0f, false, false, -3.94f, 3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.37f, 0.61f) + arcToRelative(3.59f, 3.59f, 0.0f, false, true, 4.1f, -2.07f) + lineToRelative(7.87f, 7.86f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.06f, -1.06f) + lineTo(3.28f, 2.22f) + close() + moveTo(11.58f, 8.4f) + lineTo(13.17f, 10.0f) + arcToRelative(6.53f, 6.53f, 0.0f, false, true, 4.73f, 3.51f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.34f, -0.68f) + arcToRelative(8.04f, 8.04f, 0.0f, false, false, -7.65f, -4.42f) + close() + moveTo(8.48f, 5.3f) + lineTo(9.71f, 6.53f) + arcToRelative(10.44f, 10.44f, 0.0f, false, true, 10.91f, 4.3f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.24f, -0.85f) + arcTo(11.95f, 11.95f, 0.0f, false, false, 8.49f, 5.3f) + close() + moveTo(13.06f, 16.44f) + arcToRelative(1.5f, 1.5f, 0.0f, true, true, -2.12f, 2.12f) + arcToRelative(1.5f, 1.5f, 0.0f, false, true, 2.12f, -2.12f) + close() + } + } + return _wifiOff!! + } + +private var _wifiOff: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WifiWarning.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WifiWarning.kt new file mode 100644 index 00000000..778b4904 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WifiWarning.kt @@ -0,0 +1,64 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WifiWarning: ImageVector + get() { + if (_wifiWarning != null) { + return _wifiWarning!! + } + _wifiWarning = fluentIcon(name = "Regular.WifiWarning") { + fluentPath { + moveToRelative(17.74f, 10.75f) + lineToRelative(0.3f, 0.3f) + arcToRelative(2.54f, 2.54f, 0.0f, false, false, -1.85f, 0.31f) + arcToRelative(6.56f, 6.56f, 0.0f, false, false, -10.0f, 2.12f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.34f, -0.67f) + arcToRelative(8.06f, 8.06f, 0.0f, false, true, 12.9f, -2.06f) + close() + moveTo(11.96f, 19.0f) + lineToRelative(1.21f, -2.43f) + arcTo(1.5f, 1.5f, 0.0f, true, false, 11.95f, 19.0f) + close() + moveTo(14.19f, 14.54f) + lineTo(14.86f, 13.18f) + arcToRelative(5.1f, 5.1f, 0.0f, false, false, -7.48f, 2.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.37f, 0.61f) + arcToRelative(3.6f, 3.6f, 0.0f, false, true, 5.43f, -1.45f) + close() + moveTo(20.45f, 8.28f) + curveToRelative(0.5f, 0.5f, 0.99f, 1.09f, 1.4f, 1.7f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.23f, 0.85f) + arcToRelative(10.45f, 10.45f, 0.0f, false, false, -17.23f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.23f, -0.86f) + arcToRelative(11.95f, 11.95f, 0.0f, false, true, 18.29f, -1.69f) + close() + moveTo(16.15f, 12.83f) + lineTo(12.16f, 20.83f) + arcTo(1.5f, 1.5f, 0.0f, false, false, 13.5f, 23.0f) + horizontalLineToRelative(8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.34f, -2.17f) + lineToRelative(-4.0f, -8.0f) + arcToRelative(1.5f, 1.5f, 0.0f, false, false, -2.68f, 0.0f) + close() + moveTo(18.0f, 15.5f) + verticalLineToRelative(3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -1.0f, 0.0f) + verticalLineToRelative(-3.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 1.0f, 0.0f) + close() + moveTo(17.5f, 21.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, -1.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f) + close() + } + } + return _wifiWarning!! + } + +private var _wifiWarning: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Window.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Window.kt new file mode 100644 index 00000000..21e60ee8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Window.kt @@ -0,0 +1,48 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Window: ImageVector + get() { + if (_window != null) { + return _window!! + } + _window = fluentIcon(name = "Regular.Window") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(11.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(19.5f, 7.0f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(19.5f, 7.0f) + close() + moveTo(4.5f, 8.5f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(9.25f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 8.5f) + close() + } + } + return _window!! + } + +private var _window: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WindowApps.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WindowApps.kt new file mode 100644 index 00000000..89034fc6 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WindowApps.kt @@ -0,0 +1,83 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WindowApps: ImageVector + get() { + if (_windowApps != null) { + return _windowApps!! + } + _windowApps = fluentIcon(name = "Regular.WindowApps") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(2.76f) + lineTo(9.0f, 20.75f) + lineTo(9.0f, 19.5f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 8.5f) + horizontalLineToRelative(15.0f) + lineTo(19.5f, 9.0f) + lineTo(21.0f, 9.0f) + lineTo(21.0f, 6.26f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(19.5f, 7.0f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(19.5f, 7.0f) + close() + moveTo(12.25f, 15.5f) + horizontalLineToRelative(3.25f) + verticalLineToRelative(-3.25f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + horizontalLineToRelative(3.0f) + curveToRelative(1.24f, 0.0f, 2.25f, 1.0f, 2.25f, 2.25f) + verticalLineToRelative(7.5f) + curveToRelative(0.0f, 1.8f, -1.46f, 3.25f, -3.25f, 3.25f) + horizontalLineToRelative(-7.5f) + curveTo(11.01f, 23.0f, 10.0f, 22.0f, 10.0f, 20.75f) + verticalLineToRelative(-3.0f) + curveToRelative(0.0f, -1.24f, 1.0f, -2.25f, 2.25f, -2.25f) + close() + moveTo(17.0f, 12.25f) + verticalLineToRelative(3.25f) + horizontalLineToRelative(4.5f) + verticalLineToRelative(-3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-3.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + close() + moveTo(15.5f, 21.5f) + lineTo(15.5f, 17.0f) + horizontalLineToRelative(-3.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(3.0f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(3.25f) + close() + moveTo(17.0f, 17.0f) + verticalLineToRelative(4.5f) + horizontalLineToRelative(2.75f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.78f, 1.75f, -1.75f) + lineTo(21.5f, 17.0f) + lineTo(17.0f, 17.0f) + close() + } + } + return _windowApps!! + } + +private var _windowApps: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WindowArrowUp.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WindowArrowUp.kt new file mode 100644 index 00000000..454b5bf4 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WindowArrowUp.kt @@ -0,0 +1,78 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WindowArrowUp: ImageVector + get() { + if (_windowArrowUp != null) { + return _windowArrowUp!! + } + _windowArrowUp = fluentIcon(name = "Regular.WindowArrowUp") { + fluentPath { + moveTo(17.5f, 12.0f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, 0.0f, 11.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 0.0f, -11.0f) + close() + moveTo(17.51f, 14.0f) + horizontalLineToRelative(-0.08f) + lineToRelative(-0.06f, 0.02f) + lineToRelative(-0.08f, 0.03f) + lineToRelative(-0.07f, 0.04f) + lineToRelative(-0.06f, 0.04f) + lineToRelative(-2.51f, 2.52f) + lineToRelative(-0.06f, 0.07f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.0f, 0.56f) + lineToRelative(0.06f, 0.07f) + lineToRelative(0.07f, 0.06f) + curveToRelative(0.17f, 0.12f, 0.4f, 0.12f, 0.56f, 0.0f) + lineToRelative(0.07f, -0.06f) + lineTo(17.0f, 15.71f) + verticalLineToRelative(5.38f) + curveToRelative(0.05f, 0.2f, 0.2f, 0.36f, 0.41f, 0.4f) + lineToRelative(0.09f, 0.01f) + horizontalLineToRelative(0.09f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.4f, -0.41f) + lineTo(18.0f, 21.0f) + verticalLineToRelative(-5.3f) + lineToRelative(1.65f, 1.65f) + lineToRelative(0.07f, 0.06f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, 0.7f, -0.7f) + lineToRelative(-0.07f, -0.06f) + lineToRelative(-2.54f, -2.55f) + lineToRelative(-0.05f, -0.03f) + lineToRelative(-0.07f, -0.03f) + lineToRelative(-0.06f, -0.02f) + lineToRelative(-0.06f, -0.01f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.06f, -0.01f) + close() + moveTo(6.25f, 3.0f) + horizontalLineToRelative(11.5f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.24f, 3.07f) + lineToRelative(0.01f, 0.18f) + verticalLineToRelative(5.77f) + curveToRelative(-0.46f, -0.3f, -0.97f, -0.53f, -1.5f, -0.7f) + lineTo(19.5f, 8.0f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(9.75f) + curveToRelative(0.0f, 0.92f, 0.7f, 1.67f, 1.6f, 1.74f) + lineToRelative(0.15f, 0.01f) + horizontalLineToRelative(5.06f) + curveToRelative(0.18f, 0.53f, 0.42f, 1.04f, 0.71f, 1.5f) + lineTo(6.25f, 21.0f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, -3.24f, -3.07f) + lineTo(3.0f, 17.75f) + lineTo(3.0f, 6.25f) + arcToRelative(3.25f, 3.25f, 0.0f, false, true, 3.07f, -3.24f) + lineTo(6.25f, 3.0f) + close() + } + } + return _windowArrowUp!! + } + +private var _windowArrowUp: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WindowDatabase.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WindowDatabase.kt new file mode 100644 index 00000000..2db29083 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WindowDatabase.kt @@ -0,0 +1,74 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WindowDatabase: ImageVector + get() { + if (_windowDatabase != null) { + return _windowDatabase!! + } + _windowDatabase = fluentIcon(name = "Regular.WindowDatabase") { + fluentPath { + moveTo(6.25f, 3.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.25f) + verticalLineToRelative(11.5f) + curveTo(3.0f, 19.55f, 4.46f, 21.0f, 6.25f, 21.0f) + horizontalLineToRelative(5.25f) + verticalLineToRelative(-1.5f) + lineTo(6.25f, 19.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(4.5f, 8.5f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(2.08f) + curveToRelative(0.52f, 0.05f, 1.03f, 0.13f, 1.5f, 0.25f) + lineTo(21.0f, 6.25f) + curveTo(21.0f, 4.45f, 19.54f, 3.0f, 17.75f, 3.0f) + lineTo(6.25f, 3.0f) + close() + moveTo(19.5f, 7.0f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(-0.75f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + lineTo(19.5f, 7.0f) + close() + moveTo(14.66f, 12.48f) + curveToRelative(0.9f, -0.3f, 2.07f, -0.48f, 3.34f, -0.48f) + reflectiveCurveToRelative(2.45f, 0.18f, 3.34f, 0.48f) + curveToRelative(0.44f, 0.15f, 0.84f, 0.35f, 1.13f, 0.59f) + curveToRelative(0.3f, 0.24f, 0.53f, 0.55f, 0.53f, 0.93f) + reflectiveCurveToRelative(-0.23f, 0.7f, -0.53f, 0.93f) + curveToRelative(-0.3f, 0.24f, -0.7f, 0.44f, -1.13f, 0.59f) + curveToRelative(-0.9f, 0.3f, -2.07f, 0.48f, -3.34f, 0.48f) + reflectiveCurveToRelative(-2.45f, -0.18f, -3.34f, -0.48f) + arcToRelative(3.79f, 3.79f, 0.0f, false, true, -1.13f, -0.59f) + curveToRelative(-0.3f, -0.24f, -0.53f, -0.55f, -0.53f, -0.93f) + reflectiveCurveToRelative(0.23f, -0.7f, 0.53f, -0.93f) + curveToRelative(0.3f, -0.24f, 0.7f, -0.44f, 1.13f, -0.59f) + close() + moveTo(13.0f, 21.0f) + verticalLineToRelative(-4.6f) + curveToRelative(0.38f, 0.23f, 0.8f, 0.4f, 1.18f, 0.54f) + curveToRelative(1.08f, 0.37f, 2.43f, 0.56f, 3.82f, 0.56f) + curveToRelative(1.39f, 0.0f, 2.74f, -0.2f, 3.82f, -0.56f) + curveToRelative(0.39f, -0.13f, 0.8f, -0.3f, 1.18f, -0.55f) + lineTo(23.0f, 21.0f) + curveToRelative(0.0f, 0.43f, -0.26f, 0.75f, -0.55f, 0.98f) + curveToRelative(-0.29f, 0.22f, -0.68f, 0.4f, -1.11f, 0.55f) + curveToRelative(-0.88f, 0.3f, -2.06f, 0.47f, -3.34f, 0.47f) + curveToRelative(-1.28f, 0.0f, -2.46f, -0.17f, -3.34f, -0.47f) + arcToRelative(3.75f, 3.75f, 0.0f, false, true, -1.11f, -0.55f) + curveToRelative(-0.29f, -0.23f, -0.55f, -0.55f, -0.55f, -0.98f) + close() + } + } + return _windowDatabase!! + } + +private var _windowDatabase: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WindowDevTools.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WindowDevTools.kt new file mode 100644 index 00000000..0333359d --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WindowDevTools.kt @@ -0,0 +1,77 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WindowDevTools: ImageVector + get() { + if (_windowDevTools != null) { + return _windowDevTools!! + } + _windowDevTools = fluentIcon(name = "Regular.WindowDevTools") { + fluentPath { + moveTo(2.0f, 5.25f) + curveTo(2.0f, 3.45f, 3.46f, 2.0f, 5.25f, 2.0f) + horizontalLineToRelative(11.5f) + curveTo(18.55f, 2.0f, 20.0f, 3.46f, 20.0f, 5.25f) + verticalLineToRelative(2.76f) + arcToRelative(4.5f, 4.5f, 0.0f, false, false, -1.5f, 0.1f) + lineTo(18.5f, 7.0f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(9.75f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(7.98f) + lineToRelative(-0.44f, 0.76f) + curveToRelative(-0.13f, 0.24f, -0.22f, 0.49f, -0.28f, 0.74f) + lineTo(5.25f, 20.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 2.0f, 16.75f) + lineTo(2.0f, 5.25f) + close() + moveTo(5.25f, 3.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(0.25f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(-0.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(5.25f, 3.5f) + close() + moveTo(19.85f, 9.0f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, -3.17f, 5.52f) + lineToRelative(-3.02f, 5.24f) + arcToRelative(1.46f, 1.46f, 0.0f, true, false, 2.53f, 1.46f) + lineToRelative(3.03f, -5.25f) + arcToRelative(3.5f, 3.5f, 0.0f, false, false, 2.97f, -5.76f) + lineToRelative(-1.65f, 2.86f) + arcToRelative(1.17f, 1.17f, 0.0f, true, true, -2.02f, -1.17f) + lineToRelative(1.65f, -2.86f) + lineToRelative(-0.31f, -0.04f) + close() + moveTo(10.3f, 9.24f) + curveToRelative(0.28f, 0.3f, 0.26f, 0.78f, -0.04f, 1.06f) + lineToRelative(-2.4f, 2.2f) + lineToRelative(2.4f, 2.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.02f, 1.1f) + lineToRelative(-3.0f, -2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.1f) + lineToRelative(3.0f, -2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.06f, 0.04f) + close() + moveTo(13.26f, 15.8f) + lineTo(15.28f, 13.95f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -0.01f, -2.9f) + lineTo(13.26f, 9.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.02f, 1.1f) + lineToRelative(2.4f, 2.2f) + lineToRelative(-2.4f, 2.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.02f, 1.1f) + close() + } + } + return _windowDevTools!! + } + +private var _windowDevTools: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WindowNew.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WindowNew.kt new file mode 100644 index 00000000..f2383a32 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WindowNew.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WindowNew: ImageVector + get() { + if (_windowNew != null) { + return _windowNew!! + } + _windowNew = fluentIcon(name = "Regular.WindowNew") { + fluentPath { + moveTo(11.27f, 7.25f) + curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f) + horizontalLineToRelative(4.73f) + curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f) + verticalLineToRelative(4.73f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + lineTo(16.0f, 9.06f) + lineToRelative(-5.22f, 5.22f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.06f, -1.06f) + lineTo(14.94f, 8.0f) + horizontalLineToRelative(-2.92f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.75f, -0.75f) + close() + moveTo(6.16f, 5.25f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 9.25f, 3.0f) + horizontalLineToRelative(8.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(8.59f) + curveToRelative(0.0f, 1.35f, -0.83f, 2.5f, -2.0f, 3.0f) + verticalLineToRelative(0.14f) + arcToRelative(2.7f, 2.7f, 0.0f, false, true, -1.3f, 2.34f) + curveToRelative(-0.76f, 0.48f, -1.73f, 0.68f, -2.7f, 0.68f) + lineTo(7.0f, 21.0f) + arcToRelative(4.13f, 4.13f, 0.0f, false, true, -2.89f, -1.05f) + arcTo(3.63f, 3.63f, 0.0f, false, true, 3.0f, 17.25f) + lineTo(3.0f, 8.5f) + curveToRelative(0.0f, -0.87f, 0.22f, -1.68f, 0.73f, -2.3f) + arcToRelative(2.8f, 2.8f, 0.0f, false, true, 2.23f, -0.95f) + horizontalLineToRelative(0.2f) + close() + moveTo(6.0f, 6.75f) + horizontalLineToRelative(-0.04f) + curveToRelative(-0.55f, 0.0f, -0.87f, 0.18f, -1.08f, 0.42f) + curveToRelative(-0.22f, 0.26f, -0.38f, 0.7f, -0.38f, 1.33f) + verticalLineToRelative(8.75f) + curveToRelative(0.0f, 0.69f, 0.24f, 1.23f, 0.64f, 1.6f) + curveToRelative(0.4f, 0.38f, 1.02f, 0.65f, 1.86f, 0.65f) + horizontalLineToRelative(8.0f) + curveToRelative(0.8f, 0.0f, 1.45f, -0.17f, 1.88f, -0.44f) + curveToRelative(0.37f, -0.24f, 0.58f, -0.55f, 0.62f, -0.97f) + lineTo(9.25f, 18.09f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 6.0f, 14.84f) + lineTo(6.0f, 6.75f) + close() + moveTo(9.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + verticalLineToRelative(8.59f) + curveToRelative(0.0f, 0.96f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(8.5f) + curveToRelative(0.97f, 0.0f, 1.75f, -0.79f, 1.75f, -1.75f) + lineTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + horizontalLineToRelative(-8.5f) + close() + } + } + return _windowNew!! + } + +private var _windowNew: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WindowShield.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WindowShield.kt new file mode 100644 index 00000000..4ffe0eb9 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WindowShield.kt @@ -0,0 +1,62 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WindowShield: ImageVector + get() { + if (_windowShield != null) { + return _windowShield!! + } + _windowShield = fluentIcon(name = "Regular.WindowShield") { + fluentPath { + moveTo(17.94f, 3.0f) + horizontalLineTo(6.07f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 3.0f, 6.26f) + verticalLineToRelative(11.68f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 6.26f, 21.0f) + horizontalLineToRelative(8.29f) + arcToRelative(5.81f, 5.81f, 0.0f, false, true, -0.97f, -1.5f) + horizontalLineTo(6.11f) + curveToRelative(-0.9f, -0.08f, -1.61f, -0.83f, -1.61f, -1.75f) + verticalLineTo(8.0f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(3.89f) + curveToRelative(0.49f, 0.4f, 0.99f, 0.62f, 1.5f, 0.72f) + verticalLineTo(6.07f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 17.94f, 3.0f) + close() + moveTo(6.25f, 4.5f) + horizontalLineToRelative(11.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(0.25f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(-0.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + close() + moveTo(21.0f, 13.62f) + arcToRelative(4.13f, 4.13f, 0.0f, false, true, -1.5f, -0.52f) + arcToRelative(5.55f, 5.55f, 0.0f, false, true, -1.22f, -0.98f) + arcToRelative(0.39f, 0.39f, 0.0f, false, false, -0.56f, 0.0f) + arcToRelative(4.5f, 4.5f, 0.0f, false, true, -3.32f, 1.55f) + arcToRelative(0.4f, 0.4f, 0.0f, false, false, -0.4f, 0.41f) + verticalLineToRelative(2.77f) + curveToRelative(0.04f, 1.01f, 0.27f, 1.9f, 0.69f, 2.65f) + curveToRelative(0.32f, 0.58f, 0.76f, 1.08f, 1.31f, 1.5f) + curveToRelative(0.52f, 0.4f, 1.15f, 0.73f, 1.87f, 0.98f) + curveToRelative(0.09f, 0.03f, 0.18f, 0.03f, 0.26f, 0.0f) + curveToRelative(2.56f, -0.89f, 3.87f, -2.71f, 3.87f, -5.4f) + verticalLineTo(14.0f) + arcToRelative(0.4f, 0.4f, 0.0f, false, false, -0.4f, -0.33f) + curveToRelative(-0.2f, 0.0f, -0.4f, -0.02f, -0.6f, -0.05f) + close() + } + } + return _windowShield!! + } + +private var _windowShield: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WindowWrench.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WindowWrench.kt new file mode 100644 index 00000000..78854e2b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WindowWrench.kt @@ -0,0 +1,67 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WindowWrench: ImageVector + get() { + if (_windowWrench != null) { + return _windowWrench!! + } + _windowWrench = fluentIcon(name = "Regular.WindowWrench") { + fluentPath { + moveTo(3.0f, 6.25f) + curveTo(3.0f, 4.45f, 4.46f, 3.0f, 6.25f, 3.0f) + horizontalLineToRelative(11.5f) + curveTo(19.55f, 3.0f, 21.0f, 4.46f, 21.0f, 6.25f) + verticalLineToRelative(5.66f) + arcToRelative(1.4f, 1.4f, 0.0f, false, false, -0.99f, -0.8f) + arcToRelative(5.08f, 5.08f, 0.0f, false, false, -0.51f, -0.08f) + lineTo(19.5f, 8.5f) + horizontalLineToRelative(-15.0f) + verticalLineToRelative(9.25f) + curveToRelative(0.0f, 0.97f, 0.78f, 1.75f, 1.75f, 1.75f) + horizontalLineToRelative(5.68f) + lineToRelative(-0.19f, 0.19f) + curveToRelative(-0.37f, 0.37f, -0.6f, 0.83f, -0.7f, 1.31f) + lineTo(6.25f, 21.0f) + arcTo(3.25f, 3.25f, 0.0f, false, true, 3.0f, 17.75f) + lineTo(3.0f, 6.25f) + close() + moveTo(19.5f, 6.25f) + curveToRelative(0.0f, -0.97f, -0.78f, -1.75f, -1.75f, -1.75f) + lineTo(6.25f, 4.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, 0.78f, -1.75f, 1.75f) + lineTo(4.5f, 7.0f) + horizontalLineToRelative(15.0f) + verticalLineToRelative(-0.75f) + close() + moveTo(12.07f, 21.0f) + curveToRelative(0.08f, -0.22f, 0.2f, -0.43f, 0.38f, -0.6f) + lineToRelative(2.73f, -2.74f) + arcToRelative(4.07f, 4.07f, 0.0f, false, true, 4.62f, -5.57f) + curveToRelative(0.21f, 0.05f, 0.33f, 0.23f, 0.33f, 0.42f) + arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.15f, 0.35f) + lineToRelative(-1.9f, 1.9f) + arcToRelative(1.53f, 1.53f, 0.0f, false, false, 2.16f, 2.16f) + lineToRelative(1.9f, -1.9f) + curveToRelative(0.26f, -0.26f, 0.69f, -0.17f, 0.77f, 0.18f) + arcToRelative(4.07f, 4.07f, 0.0f, false, true, -5.57f, 4.62f) + lineToRelative(-2.73f, 2.73f) + arcTo(1.53f, 1.53f, 0.0f, false, true, 12.07f, 21.0f) + close() + moveTo(17.57f, 21.0f) + horizontalLineToRelative(0.15f) + lineToRelative(-0.12f, -0.03f) + lineToRelative(-0.03f, 0.03f) + close() + } + } + return _windowWrench!! + } + +private var _windowWrench: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WrenchScrewdriver.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WrenchScrewdriver.kt new file mode 100644 index 00000000..7e6efe1f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/WrenchScrewdriver.kt @@ -0,0 +1,90 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.WrenchScrewdriver: ImageVector + get() { + if (_wrenchScrewdriver != null) { + return _wrenchScrewdriver!! + } + _wrenchScrewdriver = fluentIcon(name = "Regular.WrenchScrewdriver") { + fluentPath { + moveTo(16.25f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.67f, 0.41f) + lineToRelative(-1.0f, 2.0f) + curveToRelative(-0.11f, 0.23f, -0.1f, 0.5f, 0.02f, 0.71f) + lineToRelative(0.9f, 1.58f) + lineTo(15.5f, 12.0f) + horizontalLineToRelative(-0.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(5.75f) + arcToRelative(3.5f, 3.5f, 0.0f, true, false, 7.0f, 0.0f) + verticalLineToRelative(-5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-0.75f) + lineTo(19.5f, 6.7f) + lineToRelative(0.9f, -1.58f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.02f, -0.7f) + lineToRelative(-1.0f, -2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.67f, -0.42f) + horizontalLineToRelative(-2.5f) + close() + moveTo(18.0f, 12.0f) + horizontalLineToRelative(-1.0f) + lineTo(17.0f, 6.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, -0.37f) + lineToRelative(-0.8f, -1.4f) + lineToRelative(0.61f, -1.23f) + horizontalLineToRelative(1.58f) + lineToRelative(0.61f, 1.23f) + lineToRelative(-0.8f, 1.4f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.1f, 0.37f) + lineTo(18.0f, 12.0f) + close() + moveTo(15.5f, 18.5f) + lineTo(15.5f, 16.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(2.5f) + arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f) + close() + moveTo(19.5f, 14.5f) + horizontalLineToRelative(-4.0f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(4.0f) + verticalLineToRelative(1.0f) + close() + moveTo(9.53f, 2.14f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.03f, 0.7f) + lineTo(8.5f, 6.5f) + arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f) + lineTo(6.5f, 2.83f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.03f, -0.7f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -0.5f, 10.0f) + verticalLineToRelative(7.33f) + arcToRelative(2.54f, 2.54f, 0.0f, false, false, 5.07f, 0.0f) + verticalLineToRelative(-7.33f) + arcToRelative(5.5f, 5.5f, 0.0f, false, false, -0.51f, -10.0f) + close() + moveTo(10.0f, 6.5f) + lineTo(10.0f, 4.13f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -1.0f, 6.83f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.46f, 0.7f) + verticalLineToRelative(7.8f) + arcToRelative(1.04f, 1.04f, 0.0f, false, true, -2.08f, 0.0f) + verticalLineToRelative(-7.8f) + curveToRelative(0.0f, -0.31f, -0.18f, -0.59f, -0.46f, -0.7f) + arcToRelative(4.0f, 4.0f, 0.0f, false, true, -1.0f, -6.83f) + lineTo(5.0f, 6.5f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, 5.0f, 0.0f) + close() + } + } + return _wrenchScrewdriver!! + } + +private var _wrenchScrewdriver: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/XboxConsole.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/XboxConsole.kt new file mode 100644 index 00000000..3277aded --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/XboxConsole.kt @@ -0,0 +1,46 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.XboxConsole: ImageVector + get() { + if (_xboxConsole != null) { + return _xboxConsole!! + } + _xboxConsole = fluentIcon(name = "Regular.XboxConsole") { + fluentPath { + moveTo(9.5f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, -1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.5f, 0.0f) + close() + moveTo(5.75f, 2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, 0.75f) + verticalLineToRelative(18.5f) + curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f) + horizontalLineToRelative(12.5f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + verticalLineTo(2.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineTo(5.75f) + close() + moveTo(9.5f, 20.5f) + verticalLineToRelative(-8.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(8.75f) + horizontalLineTo(6.5f) + verticalLineToRelative(-17.0f) + horizontalLineToRelative(11.0f) + verticalLineToRelative(17.0f) + horizontalLineToRelative(-8.0f) + close() + } + } + return _xboxConsole!! + } + +private var _xboxConsole: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/XboxController.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/XboxController.kt new file mode 100644 index 00000000..ad64d9f7 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/XboxController.kt @@ -0,0 +1,76 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.XboxController: ImageVector + get() { + if (_xboxController != null) { + return _xboxController!! + } + _xboxController = fluentIcon(name = "Regular.XboxController") { + fluentPath { + moveTo(9.8f, 5.5f) + arcToRelative(2.58f, 2.58f, 0.0f, false, false, -1.63f, -0.2f) + lineToRelative(-1.18f, 0.23f) + curveToRelative(-0.86f, 0.16f, -1.6f, 0.72f, -2.0f, 1.5f) + curveToRelative(-1.37f, 2.67f, -2.4f, 4.86f, -2.8f, 6.73f) + curveToRelative(-0.42f, 1.92f, -0.17f, 3.57f, 1.07f, 5.07f) + curveToRelative(0.82f, 1.0f, 2.23f, 0.8f, 2.97f, -0.03f) + curveToRelative(0.56f, -0.64f, 1.2f, -1.37f, 1.81f, -2.09f) + curveToRelative(0.41f, -0.47f, 1.0f, -0.75f, 1.63f, -0.75f) + horizontalLineToRelative(4.66f) + curveToRelative(0.62f, 0.0f, 1.22f, 0.28f, 1.63f, 0.75f) + lineToRelative(1.82f, 2.09f) + curveToRelative(0.73f, 0.83f, 2.14f, 1.03f, 2.96f, 0.03f) + curveToRelative(1.24f, -1.5f, 1.49f, -3.15f, 1.08f, -5.07f) + curveToRelative(-0.4f, -1.87f, -1.43f, -4.06f, -2.8f, -6.73f) + arcToRelative(2.85f, 2.85f, 0.0f, false, false, -2.0f, -1.5f) + lineToRelative(-1.19f, -0.23f) + curveToRelative(-0.53f, -0.1f, -1.1f, -0.06f, -1.64f, 0.2f) + arcToRelative(15.0f, 15.0f, 0.0f, false, false, -0.43f, 0.24f) + curveToRelative(-0.36f, 0.19f, -0.74f, 0.3f, -1.12f, 0.3f) + horizontalLineToRelative(-1.28f) + curveToRelative(-0.38f, 0.0f, -0.76f, -0.11f, -1.11f, -0.3f) + lineTo(9.8f, 5.5f) + close() + moveTo(8.45f, 6.7f) + curveToRelative(0.27f, -0.05f, 0.53f, -0.02f, 0.73f, 0.09f) + lineToRelative(0.4f, 0.2f) + curveToRelative(0.54f, 0.3f, 1.15f, 0.47f, 1.8f, 0.47f) + horizontalLineToRelative(1.27f) + curveToRelative(0.64f, 0.0f, 1.26f, -0.17f, 1.8f, -0.47f) + lineToRelative(0.4f, -0.2f) + curveToRelative(0.2f, -0.1f, 0.45f, -0.14f, 0.73f, -0.08f) + lineToRelative(1.18f, 0.22f) + curveToRelative(0.43f, 0.08f, 0.8f, 0.36f, 1.0f, 0.75f) + curveToRelative(1.38f, 2.7f, 2.32f, 4.72f, 2.67f, 6.38f) + curveToRelative(0.34f, 1.59f, 0.12f, 2.77f, -0.78f, 3.86f) + arcToRelative(0.4f, 0.4f, 0.0f, false, true, -0.35f, 0.15f) + arcToRelative(0.64f, 0.64f, 0.0f, false, true, -0.44f, -0.22f) + curveToRelative(-0.56f, -0.63f, -1.19f, -1.35f, -1.8f, -2.07f) + arcToRelative(3.58f, 3.58f, 0.0f, false, false, -2.72f, -1.25f) + horizontalLineTo(9.67f) + curveToRelative(-1.04f, 0.0f, -2.03f, 0.46f, -2.7f, 1.25f) + lineToRelative(-1.81f, 2.07f) + arcToRelative(0.64f, 0.64f, 0.0f, false, true, -0.45f, 0.22f) + arcToRelative(0.4f, 0.4f, 0.0f, false, true, -0.35f, -0.15f) + curveToRelative(-0.9f, -1.1f, -1.12f, -2.27f, -0.78f, -3.87f) + curveToRelative(0.35f, -1.65f, 1.3f, -3.67f, 2.68f, -6.37f) + curveToRelative(0.2f, -0.39f, 0.56f, -0.67f, 1.0f, -0.75f) + lineToRelative(1.18f, -0.22f) + close() + moveTo(12.0f, 11.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + } + } + return _xboxController!! + } + +private var _xboxController: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/XboxControllerError.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/XboxControllerError.kt new file mode 100644 index 00000000..2145c04b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/XboxControllerError.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.XboxControllerError: ImageVector + get() { + if (_xboxControllerError != null) { + return _xboxControllerError!! + } + _xboxControllerError = fluentIcon(name = "Regular.XboxControllerError") { + fluentPath { + moveTo(9.8f, 4.5f) + arcToRelative(2.58f, 2.58f, 0.0f, false, false, -1.63f, -0.2f) + lineToRelative(-1.18f, 0.23f) + curveToRelative(-0.87f, 0.16f, -1.6f, 0.72f, -2.0f, 1.5f) + curveToRelative(-1.38f, 2.67f, -2.4f, 4.86f, -2.8f, 6.73f) + curveToRelative(-0.42f, 1.92f, -0.17f, 3.57f, 1.07f, 5.07f) + curveToRelative(0.82f, 1.0f, 2.23f, 0.8f, 2.97f, -0.03f) + lineToRelative(1.81f, -2.09f) + curveToRelative(0.41f, -0.47f, 1.0f, -0.75f, 1.63f, -0.75f) + horizontalLineToRelative(1.51f) + curveToRelative(0.12f, -0.5f, 0.3f, -0.98f, 0.53f, -1.43f) + lineTo(9.67f, 13.53f) + curveToRelative(-1.04f, 0.0f, -2.03f, 0.46f, -2.7f, 1.25f) + lineToRelative(-1.82f, 2.07f) + arcToRelative(0.64f, 0.64f, 0.0f, false, true, -0.44f, 0.22f) + arcToRelative(0.4f, 0.4f, 0.0f, false, true, -0.35f, -0.15f) + curveToRelative(-0.9f, -1.1f, -1.12f, -2.27f, -0.78f, -3.87f) + curveToRelative(0.35f, -1.65f, 1.3f, -3.67f, 2.67f, -6.37f) + curveToRelative(0.2f, -0.39f, 0.57f, -0.67f, 1.0f, -0.75f) + lineToRelative(1.19f, -0.22f) + curveToRelative(0.27f, -0.06f, 0.53f, -0.03f, 0.73f, 0.08f) + lineToRelative(0.4f, 0.2f) + curveToRelative(0.54f, 0.3f, 1.15f, 0.47f, 1.79f, 0.47f) + horizontalLineToRelative(1.28f) + curveToRelative(0.64f, 0.0f, 1.26f, -0.17f, 1.8f, -0.47f) + lineToRelative(0.4f, -0.2f) + curveToRelative(0.2f, -0.1f, 0.45f, -0.14f, 0.72f, -0.08f) + lineToRelative(1.19f, 0.22f) + curveToRelative(0.43f, 0.08f, 0.8f, 0.36f, 1.0f, 0.75f) + curveToRelative(0.7f, 1.37f, 1.29f, 2.57f, 1.74f, 3.63f) + curveToRelative(0.7f, 0.23f, 1.35f, 0.56f, 1.92f, 1.0f) + arcTo(42.28f, 42.28f, 0.0f, false, false, 19.0f, 6.03f) + arcToRelative(2.85f, 2.85f, 0.0f, false, false, -2.0f, -1.5f) + lineToRelative(-1.18f, -0.23f) + arcToRelative(2.58f, 2.58f, 0.0f, false, false, -1.64f, 0.2f) + lineToRelative(-0.44f, 0.24f) + curveToRelative(-0.35f, 0.19f, -0.73f, 0.3f, -1.1f, 0.3f) + horizontalLineToRelative(-1.3f) + curveToRelative(-0.37f, 0.0f, -0.75f, -0.11f, -1.1f, -0.3f) + lineTo(9.8f, 4.5f) + close() + moveTo(12.0f, 10.0f) + arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f) + arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f) + close() + moveTo(23.0f, 16.5f) + arcToRelative(5.5f, 5.5f, 0.0f, true, true, -11.0f, 0.0f) + arcToRelative(5.5f, 5.5f, 0.0f, false, true, 11.0f, 0.0f) + close() + moveTo(17.5f, 13.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, 0.5f) + verticalLineToRelative(4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, true, false, 1.0f, 0.0f) + verticalLineToRelative(-4.0f) + arcToRelative(0.5f, 0.5f, 0.0f, false, false, -0.5f, -0.5f) + close() + moveTo(17.5f, 20.13f) + arcToRelative(0.62f, 0.62f, 0.0f, true, false, 0.0f, -1.25f) + arcToRelative(0.62f, 0.62f, 0.0f, false, false, 0.0f, 1.25f) + close() + } + } + return _xboxControllerError!! + } + +private var _xboxControllerError: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Xray.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Xray.kt new file mode 100644 index 00000000..52ee065b --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/Xray.kt @@ -0,0 +1,84 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.Xray: ImageVector + get() { + if (_xray != null) { + return _xray!! + } + _xray = fluentIcon(name = "Regular.Xray") { + fluentPath { + moveTo(12.75f, 5.75f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(0.75f) + lineTo(9.0f, 6.5f) + arcTo(0.75f, 0.75f, 0.0f, false, false, 9.0f, 8.0f) + horizontalLineToRelative(2.25f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(1.0f) + horizontalLineToRelative(-3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, 1.5f) + horizontalLineToRelative(3.5f) + verticalLineToRelative(1.5f) + horizontalLineToRelative(-2.0f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 2.12f, 1.5f) + horizontalLineToRelative(1.26f) + arcToRelative(2.25f, 2.25f, 0.0f, true, false, 2.12f, -1.5f) + horizontalLineToRelative(-2.0f) + lineTo(12.75f, 13.0f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + verticalLineToRelative(-1.0f) + horizontalLineToRelative(3.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-3.5f) + lineTo(12.75f, 8.0f) + lineTo(15.0f, 8.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.0f, -1.5f) + horizontalLineToRelative(-2.25f) + verticalLineToRelative(-0.75f) + close() + moveTo(14.75f, 16.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + close() + moveTo(8.5f, 16.75f) + arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.5f, 0.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.5f, 0.0f) + close() + moveTo(7.25f, 2.0f) + arcTo(3.25f, 3.25f, 0.0f, false, false, 4.0f, 5.25f) + verticalLineToRelative(13.5f) + curveTo(4.0f, 20.55f, 5.46f, 22.0f, 7.25f, 22.0f) + horizontalLineToRelative(9.5f) + curveToRelative(1.8f, 0.0f, 3.25f, -1.46f, 3.25f, -3.25f) + lineTo(20.0f, 5.25f) + curveTo(20.0f, 3.45f, 18.54f, 2.0f, 16.75f, 2.0f) + horizontalLineToRelative(-9.5f) + close() + moveTo(5.5f, 5.25f) + curveToRelative(0.0f, -0.97f, 0.78f, -1.75f, 1.75f, -1.75f) + horizontalLineToRelative(9.5f) + curveToRelative(0.97f, 0.0f, 1.75f, 0.78f, 1.75f, 1.75f) + verticalLineToRelative(13.5f) + curveToRelative(0.0f, 0.97f, -0.78f, 1.75f, -1.75f, 1.75f) + horizontalLineToRelative(-9.5f) + curveToRelative(-0.97f, 0.0f, -1.75f, -0.78f, -1.75f, -1.75f) + lineTo(5.5f, 5.25f) + close() + } + } + return _xray!! + } + +private var _xray: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ZoomFit.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ZoomFit.kt new file mode 100644 index 00000000..c3dd8ad8 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ZoomFit.kt @@ -0,0 +1,82 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ZoomFit: ImageVector + get() { + if (_zoomFit != null) { + return _zoomFit!! + } + _zoomFit = fluentIcon(name = "Regular.ZoomFit") { + fluentPath { + moveTo(11.49f, 2.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 1.03f, 0.0f) + lineToRelative(2.2f, 2.1f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.04f, -1.09f) + lineToRelative(-2.2f, -2.09f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, -3.1f, 0.0f) + lineTo(8.24f, 3.7f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.03f, 1.1f) + lineToRelative(2.22f, -2.1f) + close() + moveTo(4.8f, 9.27f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.09f, -1.02f) + lineToRelative(-2.1f, 2.22f) + arcToRelative(2.25f, 2.25f, 0.0f, false, false, 0.01f, 3.09f) + lineToRelative(2.1f, 2.2f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 1.08f, -1.03f) + lineToRelative(-2.09f, -2.2f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.03f) + lineToRelative(2.1f, -2.23f) + close() + moveTo(20.3f, 8.24f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.09f, 1.04f) + lineToRelative(2.1f, 2.2f) + curveToRelative(0.27f, 0.3f, 0.27f, 0.75f, 0.0f, 1.04f) + lineToRelative(-2.1f, 2.21f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.09f, 1.04f) + lineToRelative(2.1f, -2.22f) + curveToRelative(0.82f, -0.87f, 0.82f, -2.23f, 0.0f, -3.1f) + lineToRelative(-2.1f, -2.2f) + close() + moveTo(15.77f, 20.3f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.04f, -1.09f) + lineToRelative(-2.2f, 2.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.04f, 0.0f) + lineToRelative(-2.22f, -2.1f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.03f, 1.09f) + lineToRelative(2.22f, 2.1f) + curveToRelative(0.87f, 0.82f, 2.23f, 0.82f, 3.1f, 0.0f) + lineToRelative(2.2f, -2.1f) + close() + moveTo(9.75f, 7.0f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 7.0f, 9.75f) + verticalLineToRelative(4.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 9.75f, 17.0f) + horizontalLineToRelative(4.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 17.0f, 14.25f) + verticalLineToRelative(-4.5f) + arcTo(2.75f, 2.75f, 0.0f, false, false, 14.25f, 7.0f) + horizontalLineToRelative(-4.5f) + close() + moveTo(8.5f, 9.75f) + curveToRelative(0.0f, -0.69f, 0.56f, -1.25f, 1.25f, -1.25f) + horizontalLineToRelative(4.5f) + curveToRelative(0.69f, 0.0f, 1.25f, 0.56f, 1.25f, 1.25f) + verticalLineToRelative(4.5f) + curveToRelative(0.0f, 0.69f, -0.56f, 1.25f, -1.25f, 1.25f) + horizontalLineToRelative(-4.5f) + curveToRelative(-0.69f, 0.0f, -1.25f, -0.56f, -1.25f, -1.25f) + verticalLineToRelative(-4.5f) + close() + } + } + return _zoomFit!! + } + +private var _zoomFit: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ZoomIn.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ZoomIn.kt new file mode 100644 index 00000000..e00c7b0f --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ZoomIn.kt @@ -0,0 +1,49 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ZoomIn: ImageVector + get() { + if (_zoomIn != null) { + return _zoomIn!! + } + _zoomIn = fluentIcon(name = "Regular.ZoomIn") { + fluentPath { + moveTo(13.5f, 10.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -0.75f, -0.75f) + horizontalLineToRelative(-2.0f) + verticalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, -1.5f, 0.0f) + verticalLineToRelative(2.0f) + horizontalLineToRelative(-2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, true, false, 0.0f, 1.5f) + horizontalLineToRelative(2.0f) + verticalLineToRelative(2.0f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 1.5f, 0.0f) + verticalLineToRelative(-2.0f) + horizontalLineToRelative(2.0f) + curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f) + close() + moveTo(10.0f, 2.75f) + arcToRelative(7.25f, 7.25f, 0.0f, false, true, 5.63f, 11.82f) + lineToRelative(4.9f, 4.9f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.98f, 1.13f) + lineToRelative(-0.08f, -0.07f) + lineToRelative(-4.9f, -4.9f) + arcTo(7.25f, 7.25f, 0.0f, true, true, 10.0f, 2.75f) + close() + moveTo(10.0f, 4.25f) + arcToRelative(5.75f, 5.75f, 0.0f, true, false, 0.0f, 11.5f) + arcToRelative(5.75f, 5.75f, 0.0f, false, false, 0.0f, -11.5f) + close() + } + } + return _zoomIn!! + } + +private var _zoomIn: ImageVector? = null diff --git a/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ZoomOut.kt b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ZoomOut.kt new file mode 100644 index 00000000..82f77ea2 --- /dev/null +++ b/fluent-icons-extended/src/commonMain/kotlin/io/github/composefluent/icons/regular/ZoomOut.kt @@ -0,0 +1,40 @@ + + +package io.github.composefluent.icons.regular + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +public val Icons.Regular.ZoomOut: ImageVector + get() { + if (_zoomOut != null) { + return _zoomOut!! + } + _zoomOut = fluentIcon(name = "Regular.ZoomOut") { + fluentPath { + moveTo(12.75f, 9.25f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, 1.5f) + horizontalLineToRelative(-5.5f) + arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.0f, -1.5f) + horizontalLineToRelative(5.5f) + close() + moveTo(17.25f, 10.0f) + arcToRelative(7.25f, 7.25f, 0.0f, true, false, -2.68f, 5.63f) + lineToRelative(4.9f, 4.9f) + lineToRelative(0.08f, 0.07f) + arcToRelative(0.75f, 0.75f, 0.0f, false, false, 0.98f, -1.13f) + lineToRelative(-4.9f, -4.9f) + arcTo(7.22f, 7.22f, 0.0f, false, false, 17.25f, 10.0f) + close() + moveTo(4.25f, 10.0f) + arcToRelative(5.75f, 5.75f, 0.0f, true, true, 11.5f, 0.0f) + arcToRelative(5.75f, 5.75f, 0.0f, false, true, -11.5f, 0.0f) + close() + } + } + return _zoomOut!! + } + +private var _zoomOut: ImageVector? = null diff --git a/fluent-icons-generator/build.gradle.kts b/fluent-icons-generator/build.gradle.kts index 84e541d2..2dbed1f1 100644 --- a/fluent-icons-generator/build.gradle.kts +++ b/fluent-icons-generator/build.gradle.kts @@ -3,20 +3,15 @@ plugins { } kotlin { - jvm { - withJava() - } + jvm() sourceSets { - val jvmMain by getting { - dependencies { - implementation(libs.ktor.client.java) - implementation(libs.jsoup) - implementation(libs.google.guava) - implementation(libs.android.tools.common) - implementation(libs.android.tools.sdk.common) - implementation(libs.squareup.kotlinpoet) - } + jvmMain.dependencies { + implementation(libs.ktor.client.java) + implementation(libs.jsoup) + implementation(libs.google.guava) + implementation(libs.android.tools.common) + implementation(libs.android.tools.sdk.common) + implementation(libs.squareup.kotlinpoet) } - val jvmTest by getting } } \ No newline at end of file diff --git a/fluent-icons-generator/src/jvmMain/kotlin/androidx/compose/material/icons/generator/Names.kt b/fluent-icons-generator/src/jvmMain/kotlin/androidx/compose/material/icons/generator/Names.kt index 900ab09a..5fd3e83a 100644 --- a/fluent-icons-generator/src/jvmMain/kotlin/androidx/compose/material/icons/generator/Names.kt +++ b/fluent-icons-generator/src/jvmMain/kotlin/androidx/compose/material/icons/generator/Names.kt @@ -23,7 +23,7 @@ import com.squareup.kotlinpoet.MemberName * Package names used for icon generation. */ enum class PackageNames(val packageName: String) { - FluentIconsPackage("com.konyaco.fluent.icons"), + FluentIconsPackage("io.github.composefluent.icons"), GraphicsPackage("androidx.compose.ui.graphics"), VectorPackage(GraphicsPackage.packageName + ".vector") } diff --git a/fluent/build.gradle.kts b/fluent/build.gradle.kts index 998576bf..9c0feaf4 100644 --- a/fluent/build.gradle.kts +++ b/fluent/build.gradle.kts @@ -1,14 +1,13 @@ -import com.konyaco.fluent.plugin.build.BuildConfig -import com.konyaco.fluent.plugin.build.applyTargets +import io.github.composefluent.plugin.build.BuildConfig +import io.github.composefluent.plugin.build.applyTargets plugins { alias(libs.plugins.kotlin.multiplatform) alias(libs.plugins.kotlin.compose) alias(libs.plugins.compose) - alias(libs.plugins.android.library) + alias(libs.plugins.android.kotlin.multiplatform.library) alias(libs.plugins.ksp) - id("maven-publish") - signing + alias(libs.plugins.maven.publish) } group = BuildConfig.group @@ -17,41 +16,16 @@ version = BuildConfig.libraryVersion kotlin { applyTargets() sourceSets { - val commonMain by getting { - dependencies { - api(compose.foundation) - api(project(":fluent-icons-core")) - implementation(compose.uiUtil) - implementation(libs.kotlinx.datetime) - implementation(libs.haze) - } + commonMain.dependencies { + api(compose.foundation) + api(project(":fluent-icons-core")) + implementation(compose.uiUtil) + implementation(libs.kotlinx.datetime) + implementation(libs.haze) } - val commonTest by getting { - dependencies { - implementation(kotlin("test")) - } + commonTest.dependencies { + implementation(kotlin("test")) } - val androidMain by getting - val androidUnitTest by getting - val androidInstrumentedTest by getting - val desktopMain by getting { - dependencies { - api(compose.preview) - } - } - val desktopTest by getting - } -} - -android { - compileSdk = BuildConfig.Android.compileSdkVersion - namespace = BuildConfig.packageName - defaultConfig { - minSdk = BuildConfig.Android.minSdkVersion - } - compileOptions { - sourceCompatibility = BuildConfig.Jvm.javaVersion - targetCompatibility = BuildConfig.Jvm.javaVersion } } diff --git a/fluent/src/androidMain/kotlin/com/konyaco/fluent/component/CalendarView.android.kt b/fluent/src/androidMain/kotlin/com/konyaco/fluent/component/CalendarView.android.kt deleted file mode 100644 index 500efb77..00000000 --- a/fluent/src/androidMain/kotlin/com/konyaco/fluent/component/CalendarView.android.kt +++ /dev/null @@ -1,25 +0,0 @@ -package com.konyaco.fluent.component - -import java.util.Calendar -import java.util.Locale - -internal actual fun getLocalDayOfWeekNames(): List { - val locale = Locale.getDefault() - val calendar = Calendar.getInstance(locale) - val names = calendar.getDisplayNames(Calendar.DAY_OF_WEEK, Calendar.NARROW_STANDALONE, locale) - ?: calendar.getDisplayNames(Calendar.DAY_OF_WEEK, Calendar.SHORT_STANDALONE, locale) - return names.entries.sortedBy { it.value }.map { it.key } -} - -internal actual fun getLocalMonthNames(): List { - val locale = Locale.getDefault() - val calendar = Calendar.getInstance(locale) - val names = calendar.getDisplayNames(Calendar.MONTH, Calendar.SHORT_STANDALONE, locale) - return names.entries.sortedBy { it.value }.map { it.key } -} - -internal actual fun getLocalFirstDayOfWeek(): Int { - val locale = Locale.getDefault() - val calendar = Calendar.getInstance(locale) - return calendar.firstDayOfWeek -} \ No newline at end of file diff --git a/fluent/src/androidMain/kotlin/com/konyaco/fluent/component/FontIcon.android.kt b/fluent/src/androidMain/kotlin/com/konyaco/fluent/component/FontIcon.android.kt deleted file mode 100644 index 62808826..00000000 --- a/fluent/src/androidMain/kotlin/com/konyaco/fluent/component/FontIcon.android.kt +++ /dev/null @@ -1,8 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.runtime.Composable - -@Composable -internal actual fun ProvideFontIcon(content: @Composable () -> Unit) { - content() -} \ No newline at end of file diff --git a/fluent/src/androidMain/kotlin/com/konyaco/fluent/PlatformCompositionLocalProvider.android.kt b/fluent/src/androidMain/kotlin/io/github/composefluent/PlatformCompositionLocalProvider.android.kt similarity index 82% rename from fluent/src/androidMain/kotlin/com/konyaco/fluent/PlatformCompositionLocalProvider.android.kt rename to fluent/src/androidMain/kotlin/io/github/composefluent/PlatformCompositionLocalProvider.android.kt index 1a0e2804..5c38e121 100644 --- a/fluent/src/androidMain/kotlin/com/konyaco/fluent/PlatformCompositionLocalProvider.android.kt +++ b/fluent/src/androidMain/kotlin/io/github/composefluent/PlatformCompositionLocalProvider.android.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent +package io.github.composefluent import androidx.compose.runtime.Composable diff --git a/fluent/src/androidMain/kotlin/io/github/composefluent/background/Elevation.android.kt b/fluent/src/androidMain/kotlin/io/github/composefluent/background/Elevation.android.kt new file mode 100644 index 00000000..b79c6a36 --- /dev/null +++ b/fluent/src/androidMain/kotlin/io/github/composefluent/background/Elevation.android.kt @@ -0,0 +1,13 @@ +package io.github.composefluent.background + +import android.graphics.BlurMaskFilter +import android.os.Build +import androidx.compose.ui.graphics.Paint + +internal actual fun Paint.applyShadowMaskFilter(radius: Float) { + asFrameworkPaint().maskFilter = BlurMaskFilter(radius, BlurMaskFilter.Blur.NORMAL) +} + +internal actual fun supportFluentElevation(): Boolean { + return Build.VERSION.SDK_INT >= Build.VERSION_CODES.P +} \ No newline at end of file diff --git a/fluent/src/androidMain/kotlin/io/github/composefluent/background/Material.android.kt b/fluent/src/androidMain/kotlin/io/github/composefluent/background/Material.android.kt new file mode 100644 index 00000000..972a01a2 --- /dev/null +++ b/fluent/src/androidMain/kotlin/io/github/composefluent/background/Material.android.kt @@ -0,0 +1,7 @@ +package io.github.composefluent.background + +import android.os.Build + +internal actual fun supportMaterial(): Boolean { + return Build.VERSION.SDK_INT >= Build.VERSION_CODES.S +} \ No newline at end of file diff --git a/fluent/src/androidMain/kotlin/io/github/composefluent/component/CalendarView.android.kt b/fluent/src/androidMain/kotlin/io/github/composefluent/component/CalendarView.android.kt new file mode 100644 index 00000000..34590217 --- /dev/null +++ b/fluent/src/androidMain/kotlin/io/github/composefluent/component/CalendarView.android.kt @@ -0,0 +1,41 @@ +package io.github.composefluent.component + +import android.os.Build +import java.util.Calendar +import java.util.Locale + +internal actual fun getLocalDayOfWeekNames(): List { + val locale = Locale.getDefault() + val calendar = Calendar.getInstance(locale) + val style = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { + Calendar.NARROW_STANDALONE + } else { + Calendar.SHORT + } + val shortStyle = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { + Calendar.SHORT_STANDALONE + } else { + Calendar.SHORT + } + val names = calendar.getDisplayNames(Calendar.DAY_OF_WEEK, style, locale) + ?: calendar.getDisplayNames(Calendar.DAY_OF_WEEK, shortStyle, locale) + return names.entries.sortedBy { it.value }.map { it.key } +} + +internal actual fun getLocalMonthNames(): List { + val locale = Locale.getDefault() + val calendar = Calendar.getInstance(locale) + val style = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { + Calendar.SHORT_STANDALONE + } else { + Calendar.SHORT + } + val names = calendar.getDisplayNames(Calendar.MONTH, style, locale) + return names.entries.sortedBy { it.value }.map { it.key } +} + +internal actual fun getLocalFirstDayOfWeek(): Int { + val locale = Locale.getDefault() + val calendar = Calendar.getInstance(locale) + return calendar.firstDayOfWeek +} \ No newline at end of file diff --git a/fluent/src/androidMain/kotlin/com/konyaco/fluent/component/Dialog.android.kt b/fluent/src/androidMain/kotlin/io/github/composefluent/component/Dialog.android.kt similarity index 93% rename from fluent/src/androidMain/kotlin/com/konyaco/fluent/component/Dialog.android.kt rename to fluent/src/androidMain/kotlin/io/github/composefluent/component/Dialog.android.kt index 0f495dd0..a10b17c0 100644 --- a/fluent/src/androidMain/kotlin/com/konyaco/fluent/component/Dialog.android.kt +++ b/fluent/src/androidMain/kotlin/io/github/composefluent/component/Dialog.android.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.component +package io.github.composefluent.component import androidx.compose.ui.unit.IntOffset import androidx.compose.ui.unit.IntRect diff --git a/fluent/src/androidMain/kotlin/io/github/composefluent/component/Flyout.android.kt b/fluent/src/androidMain/kotlin/io/github/composefluent/component/Flyout.android.kt new file mode 100644 index 00000000..e17ac2ed --- /dev/null +++ b/fluent/src/androidMain/kotlin/io/github/composefluent/component/Flyout.android.kt @@ -0,0 +1,43 @@ +package io.github.composefluent.component + +import androidx.compose.runtime.Composable +import androidx.compose.runtime.remember +import androidx.compose.ui.geometry.Rect +import androidx.compose.ui.graphics.toComposeRect +import androidx.compose.ui.layout.LayoutCoordinates +import androidx.compose.ui.layout.positionInWindow +import androidx.compose.ui.platform.LocalConfiguration +import androidx.compose.ui.platform.LocalDensity +import androidx.compose.ui.platform.LocalView +import androidx.compose.ui.unit.Dp +import androidx.compose.ui.unit.toSize +import kotlin.math.max +import kotlin.math.roundToInt + +@Composable +actual fun rememberFlyoutCalculateMaxHeight(padding: Dp): (LayoutCoordinates) -> Int { + val config = LocalConfiguration.current + val view = LocalView.current + val verticalMargin = with(LocalDensity.current) { padding.roundToPx() } + return remember(config, view) { + { + val windowBounds = android.graphics.Rect().let { rect -> + view.getWindowVisibleDisplayFrame(rect) + rect.toComposeRect() + } + val anchorBounds = Rect(it.positionInWindow(), it.size.toSize()) + val marginedWindowTop = windowBounds.top + verticalMargin + val marginedWindowBottom = windowBounds.bottom - verticalMargin + val availableHeight = + if (anchorBounds.top > windowBounds.bottom || anchorBounds.bottom < windowBounds.top) { + (marginedWindowBottom - marginedWindowTop).roundToInt() + } else { + val heightAbove = anchorBounds.top - marginedWindowTop + val heightBelow = marginedWindowBottom - anchorBounds.bottom + max(heightAbove, heightBelow).roundToInt() + } + + max(availableHeight, 0) + } + } +} \ No newline at end of file diff --git a/fluent/src/androidMain/kotlin/io/github/composefluent/component/FontIcon.android.kt b/fluent/src/androidMain/kotlin/io/github/composefluent/component/FontIcon.android.kt new file mode 100644 index 00000000..70b28ce7 --- /dev/null +++ b/fluent/src/androidMain/kotlin/io/github/composefluent/component/FontIcon.android.kt @@ -0,0 +1,12 @@ +package io.github.composefluent.component + +import androidx.compose.runtime.Composable +import androidx.compose.runtime.CompositionLocalProvider + +@Composable +internal actual fun ProvideFontIcon(content: @Composable () -> Unit) { + CompositionLocalProvider( + LocalFontIconFontFamily provides null, + content = content + ) +} \ No newline at end of file diff --git a/fluent/src/androidMain/kotlin/com/konyaco/fluent/component/PlatformScrollBar.android.kt b/fluent/src/androidMain/kotlin/io/github/composefluent/component/PlatformScrollBar.android.kt similarity index 97% rename from fluent/src/androidMain/kotlin/com/konyaco/fluent/component/PlatformScrollBar.android.kt rename to fluent/src/androidMain/kotlin/io/github/composefluent/component/PlatformScrollBar.android.kt index b6648e28..777c2d3f 100644 --- a/fluent/src/androidMain/kotlin/com/konyaco/fluent/component/PlatformScrollBar.android.kt +++ b/fluent/src/androidMain/kotlin/io/github/composefluent/component/PlatformScrollBar.android.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.component +package io.github.composefluent.component import androidx.compose.foundation.ScrollState import androidx.compose.foundation.lazy.LazyListState diff --git a/fluent/src/androidMain/kotlin/com/konyaco/fluent/component/Popup.android.kt b/fluent/src/androidMain/kotlin/io/github/composefluent/component/Popup.android.kt similarity index 97% rename from fluent/src/androidMain/kotlin/com/konyaco/fluent/component/Popup.android.kt rename to fluent/src/androidMain/kotlin/io/github/composefluent/component/Popup.android.kt index 8079b839..dd1a6565 100644 --- a/fluent/src/androidMain/kotlin/com/konyaco/fluent/component/Popup.android.kt +++ b/fluent/src/androidMain/kotlin/io/github/composefluent/component/Popup.android.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.component +package io.github.composefluent.component import androidx.compose.runtime.* import androidx.compose.ui.input.key.KeyEvent diff --git a/fluent/src/androidMain/kotlin/com/konyaco/fluent/defaultFontFamily.android.kt b/fluent/src/androidMain/kotlin/io/github/composefluent/defaultFontFamily.android.kt similarity index 84% rename from fluent/src/androidMain/kotlin/com/konyaco/fluent/defaultFontFamily.android.kt rename to fluent/src/androidMain/kotlin/io/github/composefluent/defaultFontFamily.android.kt index d8df06b4..a2f4f6dd 100644 --- a/fluent/src/androidMain/kotlin/com/konyaco/fluent/defaultFontFamily.android.kt +++ b/fluent/src/androidMain/kotlin/io/github/composefluent/defaultFontFamily.android.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent +package io.github.composefluent import androidx.compose.runtime.Composable import androidx.compose.ui.text.font.FontFamily diff --git a/fluent/src/appleMain/kotlin/io/github/composefluent/DefaultFontFamily.apple.kt b/fluent/src/appleMain/kotlin/io/github/composefluent/DefaultFontFamily.apple.kt new file mode 100644 index 00000000..a2f4f6dd --- /dev/null +++ b/fluent/src/appleMain/kotlin/io/github/composefluent/DefaultFontFamily.apple.kt @@ -0,0 +1,9 @@ +package io.github.composefluent + +import androidx.compose.runtime.Composable +import androidx.compose.ui.text.font.FontFamily + +@Composable +actual fun defaultFontFamily(): FontFamily? { + return null +} \ No newline at end of file diff --git a/fluent/src/appleMain/kotlin/io/github/composefluent/PlatformCompositionLocalProvider.apple.kt b/fluent/src/appleMain/kotlin/io/github/composefluent/PlatformCompositionLocalProvider.apple.kt new file mode 100644 index 00000000..aad9a1e4 --- /dev/null +++ b/fluent/src/appleMain/kotlin/io/github/composefluent/PlatformCompositionLocalProvider.apple.kt @@ -0,0 +1,9 @@ +package io.github.composefluent + +import androidx.compose.runtime.Composable + +@Composable +actual fun PlatformCompositionLocalProvider(content: @Composable () -> Unit) { + content() +} + diff --git a/fluent/src/appleMain/kotlin/io/github/composefluent/component/CalendarView.apple.kt b/fluent/src/appleMain/kotlin/io/github/composefluent/component/CalendarView.apple.kt new file mode 100644 index 00000000..71db3241 --- /dev/null +++ b/fluent/src/appleMain/kotlin/io/github/composefluent/component/CalendarView.apple.kt @@ -0,0 +1,16 @@ +package io.github.composefluent.component + +import platform.Foundation.NSCalendar +import platform.Foundation.NSCalendarIdentifierGregorian +import platform.Foundation.NSDateFormatter + +internal actual fun getLocalDayOfWeekNames(): List { + return NSCalendar(NSCalendarIdentifierGregorian).weekdaySymbols.map { it.toString() } +} + +internal actual fun getLocalMonthNames(): List { + return NSDateFormatter().monthSymbols.map { it.toString().take(3) } //TODO +} + +//https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getWeekInfo +internal actual fun getLocalFirstDayOfWeek() = 2 //the same as jvm \ No newline at end of file diff --git a/fluent/src/appleMain/kotlin/io/github/composefluent/component/Dialog.apple.kt b/fluent/src/appleMain/kotlin/io/github/composefluent/component/Dialog.apple.kt new file mode 100644 index 00000000..a10b17c0 --- /dev/null +++ b/fluent/src/appleMain/kotlin/io/github/composefluent/component/Dialog.apple.kt @@ -0,0 +1,20 @@ +package io.github.composefluent.component + +import androidx.compose.ui.unit.IntOffset +import androidx.compose.ui.unit.IntRect +import androidx.compose.ui.unit.IntSize +import androidx.compose.ui.unit.LayoutDirection +import androidx.compose.ui.window.PopupPositionProvider + +internal actual val DialogPopupPositionProvider: PopupPositionProvider = DialogPopupPositionProviderImpl + +internal object DialogPopupPositionProviderImpl : PopupPositionProvider { + override fun calculatePosition( + anchorBounds: IntRect, + windowSize: IntSize, + layoutDirection: LayoutDirection, + popupContentSize: IntSize + ): IntOffset { + return IntOffset.Zero + } +} \ No newline at end of file diff --git a/fluent/src/appleMain/kotlin/io/github/composefluent/component/FontIcon.apple.kt b/fluent/src/appleMain/kotlin/io/github/composefluent/component/FontIcon.apple.kt new file mode 100644 index 00000000..49af43e5 --- /dev/null +++ b/fluent/src/appleMain/kotlin/io/github/composefluent/component/FontIcon.apple.kt @@ -0,0 +1,8 @@ +package io.github.composefluent.component + +import androidx.compose.runtime.Composable + +@Composable +internal actual fun ProvideFontIcon(content: @Composable () -> Unit) { + content() +} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/Colors.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/Colors.kt deleted file mode 100644 index 75d6b2d7..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/Colors.kt +++ /dev/null @@ -1,722 +0,0 @@ -package com.konyaco.fluent - -import androidx.compose.runtime.Composable -import androidx.compose.runtime.ReadOnlyComposable -import androidx.compose.runtime.Stable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.setValue -import androidx.compose.ui.graphics.Brush -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.graphics.takeOrElse - -@Stable -class Colors( - shades: Shades, - darkMode: Boolean -) { - var darkMode by mutableStateOf(darkMode) - internal set - var shades by mutableStateOf(shades) - internal set - var text by mutableStateOf(generateTextColors(shades, darkMode)) - internal set - var control by mutableStateOf(generateControlColors(shades, darkMode)) - internal set - var controlAlt by mutableStateOf(generateControlAltColors(shades, darkMode)) - internal set - var controlSolid by mutableStateOf(generateControlSolidColors(shades, darkMode)) - internal set - var controlStrong by mutableStateOf(generateControlStrongColors(shades, darkMode)) - internal set - var subtleFill by mutableStateOf(generateSubtleFillColors(shades, darkMode)) - internal set - var fillAccent by mutableStateOf(generateFillAccentColors(shades, darkMode)) - internal set - var background by mutableStateOf(generateBackground(shades, darkMode)) - internal set - var stroke by mutableStateOf(generateStroke(shades, darkMode)) - internal set - var borders by mutableStateOf(generateBorders(fillAccent, stroke, darkMode)) - internal set -} - -data class Borders( - val control: Brush, - val accentControl: Brush, - val circle: Brush, - val textControl: Brush, - val textControlFocused: Brush -) - -data class Shades( - val base: Color, - val light1: Color, - val light2: Color, - val light3: Color, - val dark1: Color, - val dark2: Color, - val dark3: Color, -) - -data class TextColor( - val text: ColorCompound, - val accent: ColorCompound, - val onAccent: ColorCompound -) - -data class ColorCompound( - val primary: Color, - val secondary: Color, - val tertiary: Color, - val disabled: Color -) - -data class ControlColors( - val default: Color, - val secondary: Color, - val tertiary: Color, - val quaternary: Color, - val disabled: Color, - val transparent: Color, - val inputActive: Color, -) - -data class ControlAltColors( - val transparent: Color, - val secondary: Color, - val tertiary: Color, - val quaternary: Color, - val disabled: Color -) - -data class ControlSolidColors( - val default: Color -) - -data class ControlStrongColors( - val default: Color, - val disabled: Color -) - -data class FillAccentColors( - val default: Color, - val secondary: Color, - val tertiary: Color, - val disabled: Color, - val selectedTextBackground: Color -) - -data class Stroke( - val control: Control, - val controlStrong: ControlStrong, - val surface: Surface, - val card: Card, - val divider: Divider -) { - data class Control( - val default: Color, - val secondary: Color, - val onAccentDefault: Color, - val onAccentSecondary: Color, - val onAccentTertiary: Color, - val disabled: Color, - val forStrongFillWhenOnImage: Color - ) - - data class ControlStrong( - val default: Color, - val disabled: Color - ) - - data class Surface( - val default: Color, - val flyout: Color - ) - - data class Card( - val default: Color, - val defaultSolid: Color - ) - - data class Divider( - val default: Color - ) -} - -data class SubtleFillColors( - val transparent: Color, - val secondary: Color, - val tertiary: Color, - val disabled: Color -) - -data class Background( - val card: Card, - val smoke: Smoke, - val mica: Mica, - val layer: Layer, - val layerOnAcrylic: LayerOnAcrylic, - val layerOnMicaBaseAlt: LayerOnMicaBaseAlt, - val solid: Solid, - val acrylic: Acrylic, - val accentAcrylic: AccentAcrylic -) { - /** - * Used to create ‘cards’ - content blocks that live on page and layer backgrounds. - */ - data class Card( - /** - * Default card color - */ - val default: Color, - /** - * Alternate card color: slightly darker - */ - val secondary: Color, - /** - * Default card hover and pressed color - */ - val tertiary: Color - ) - - /** - * Used over windows and desktop to block them out as inaccessible. - */ - data class Smoke( - /** - * Dims backgrounds behinds dialogs - */ - val default: Color - ) - - /** - * Used on background colors of any material to create layering. - */ - data class Layer( - /** - * Content layer color - */ - val default: Color, - /** - * Alternate content layer color - */ - val alt: Color - ) - - /** - * Used on background colors of any material to create layering. - */ - data class LayerOnAcrylic( - /** - * Content layer color on acrylic surfaces - */ - val default: Color - ) - - /** - * Used for fills on Tab control. - */ - data class LayerOnMicaBaseAlt( - /** - * Active Tab Rest - * Content layer - */ - val default: Color, - /** - * Active Tab Drag - */ - val tertiary: Color, - /** - * Inactive Tab Rest - */ - val transparent: Color, - /** - * Inactive Tab Hover - */ - val secondary: Color - ) - - /** - * Solid background colors to place layers, cards, or controls on. - */ - data class Solid( - /** - * Used for the bottom most layer of an experience. - */ - val base: Color, - /** - * Used for the bottom most layer of an experience. - */ - val baseAlt: Color, - /** - * Alternate base color for those who need a darker background color. - */ - val secondary: Color, - /** - * Content layer color - */ - val tertiary: Color, - /** - * Alt content layer color - */ - val quaternary: Color, - /** - * Used for solid default card colors - */ - val quinary: Color, - /** - * Used for solid default card color - */ - val senary: Color - ) - - /** - * Mica background colors to place layers, cards, or controls on. - */ - data class Mica( - /** - * Used for the bottom most layer of an experience. - * - * Light: #F3F3F3 (FF, 100%), 50% Tint Opacity, 100% Luminosity Opacity - * - * Dark: #202020, 80% Tint Opacity, 100% Luminosity opacity - */ - val base: Color, - /** - * Used for the bottom most layer of an experience. - * - * Fallback Light: Solid Background / Base (#F3F3F3, 100%) - * - * Fallback Dark: Solid Background / Base (#202020, 100%) - */ - val baseFallback: Color, - /** - * Default tab band background color。 - * - * Light: #DADADA(80, 50%), 100% Luminosity Opacity - * - * Dark: #0A0A0A (00, 0%), 100% Luminosity Opacity - */ - val baseAlt: Color, - /** - * Default tab band background color. - * - * Fallback Light: Solid Background / Base Alt (#DADADA, 100%) - * - * Fallback Dark: Solid Background / Base Alt (#0A0A0A, 100%) - */ - val baseAltFallback: Color - ) - - /** - * Acrylic background colors to place layers, cards, or controls on. - */ - data class Acrylic( - /** - * Used for the bottom most layer of an acrylic surface only when the surface will use layers. - * - * Light: #F3F3F3 (FF, 100%), 0% Tint Opacity, 90% Luminosity Opacity - * - * Dark: #202020, 50% TInt Opacity, 96% Luminosity Opacity - */ - val base: Color, - /** - * Used for the bottom most layer of an acrylic surface only when the surface will use layers. - * - * Light Fallback: #EEEEEE (FF, 100%) - * - * Dark Fallback: #1C1C1C - */ - val baseFallback: Color, - /** - * Default acrylic recipe used for control flyouts and surfaces that live with in the context of an app. - * - * Light: #FCFCFC (FF, 100%), 0% Tint Opacity, 85% Luminosity Opacity - * - * Dark: #2C2C2C, 15% Tint Opacity, 96% Luminosity Opacity - */ - val default: Color, - /** - * Default acrylic recipe used for control flyouts and surfaces that live with in the context of an app. - * - * Light Fallback: #F9F9F9 (FF, 100%) - * - * Dark Fallback: #2C2C2C - */ - val defaultFallback: Color - ) - - /** - * Acrylic background colors to place layers, cards, or controls on. - */ - data class AccentAcrylic( - /** - * Used for the bottom most layer of an acrylic surface only when the surface will use layers. - * - * Light: Light 3, 80% Tint Opacity, 80% Luminosity Opacity - * - * Dark: Dark 2, 80% Tint Opacity, 80% Luminosity Opacity - */ - val base: Color, - val baseFallback: Color, - /** - * Default acrylic recipe used for control flyouts and surfaces that live with in the context of an app. - * - * Light: Light 3, 80% Tint Opacity, 90% Luminosity Opacity - * - * Dark: Dark 1, 80% Tint Opacity, 80% Luminosity Opacity - */ - val default: Color, - val defaultFallback: Color - ) -} - -fun generateShades(accent: Color): Shades { - return getAccentShades()[accent] ?: getDefaultShades() -} - -internal fun getDefaultShades(): Shades = getAccentShades().entries.first().value - -internal fun getAccentShades() = mapOf( - Color(0xFF0078D4) to Shades( - base = Color(0xFF0078D4), - light1 = Color(0xFF0093F9), - light2 = Color(0xFF60CCFE), - light3 = Color(0xFF98ECFE), - dark1 = Color(0xFF005EB7), - dark2 = Color(0xFF003D92), - dark3 = Color(0xFF001968) - ), -) - - -@Composable -@ReadOnlyComposable -fun contentColorFor(backgroundColor: Color) = - FluentTheme.colors.contentColorFor(backgroundColor).takeOrElse { LocalContentColor.current } - -fun Colors.contentColorFor(backgroundColor: Color): Color { - // TODO: Remove this - return when (backgroundColor) { - shades.base, shades.dark1, shades.dark2, shades.dark3, - shades.light1, shades.light2, shades.light3 -> text.onAccent.primary - - else -> text.text.primary - } -} - -internal fun generateTextColors(shades: Shades, darkMode: Boolean): TextColor = - if (darkMode) TextColor( - text = ColorCompound( - primary = Color(0xFFFFFFFF), - secondary = Color(0xC5FFFFFF), - tertiary = Color(0x87FFFFFF), - disabled = Color(0x5DFFFFFF) - ), - accent = ColorCompound( - primary = shades.light3, - secondary = shades.light3, - tertiary = shades.light2, - disabled = Color(0x5DFFFFFF) - ), - onAccent = ColorCompound( - primary = Color(0xFF000000), - secondary = Color(0x80000000), - tertiary = Color(0x87FFFFFF), - disabled = Color(0xFFFFFFFF) - ) - ) - else TextColor( - text = ColorCompound( - primary = Color(0xE4000000), - secondary = Color(0x9B000000), - tertiary = Color(0x72000000), - disabled = Color(0x5C000000) - ), - accent = ColorCompound( - shades.dark2, - shades.dark3, - shades.dark1, - Color(0x5C000000) - ), - onAccent = ColorCompound( - primary = Color(0xFFFFFFFF), - secondary = Color(0x83FFFFFF), - tertiary = Color(0xFFFFFFFF), - disabled = Color(0xFFFFFFFF) - ) - ) - -internal fun generateControlColors(shades: Shades, darkMode: Boolean): ControlColors = - if (darkMode) ControlColors( - default = Color(0x0FFFFFFF), - secondary = Color(0x15FFFFFF), - tertiary = Color(0x0BFFFFFF), - quaternary = Color(0x0FFFFFFF), - disabled = Color(0x0BFFFFFF), - transparent = Color(0x00FFFFFF), - inputActive = Color(0xB31E1E1E) - ) - else ControlColors( - default = Color(0x83FFFFFF), - secondary = Color(0x80F9F9F9), - tertiary = Color(0x4DF9F9F9), - quaternary = Color(0xC2F3F3F3), - disabled = Color(0x4DF9F9F9), - transparent = Color(0x00FFFFFF), - inputActive = Color(0xFFFFFFFF) - ) - -internal fun generateControlAltColors(shades: Shades, darkMode: Boolean): ControlAltColors = - if (darkMode) ControlAltColors( - transparent = Color(0x00FFFFFF), - secondary = Color(0x19000000), - tertiary = Color(0x0BFFFFFF), - quaternary = Color(0x12FFFFFF), - disabled = Color(0x00FFFFFF) - ) else ControlAltColors( - transparent = Color(0x00FFFFFF), - secondary = Color(0x06000000), - tertiary = Color(0x0F000000), - quaternary = Color(0x18000000), - disabled = Color(0x00FFFFFF) - ) - -internal fun generateControlSolidColors(shades: Shades, darkMode: Boolean): ControlSolidColors = - if (darkMode) ControlSolidColors(default = Color(0xFF454545)) - else ControlSolidColors(default = Color(0xFFFFFFFF)) - -internal fun generateControlStrongColors(shades: Shades, darkMode: Boolean): ControlStrongColors = - if (darkMode) ControlStrongColors( - default = Color(0x8BFFFFFF), - disabled = Color(0x3FFFFFFF) - ) - else ControlStrongColors( - default = Color(0x72000000), - disabled = Color(0x51000000) - ) - -internal fun generateSubtleFillColors(shades: Shades, darkMode: Boolean): SubtleFillColors = - if (darkMode) SubtleFillColors( - transparent = Color(0x00FFFFFF), - secondary = Color(0x0FFFFFFF), - tertiary = Color(0x0AFFFFFF), - disabled = Color(0x00FFFFFF) - ) else SubtleFillColors( - transparent = Color(0x00000000), - secondary = Color(0x09000000), - tertiary = Color(0x06000000), - disabled = Color(0x00000000) - ) - -internal fun generateFillAccentColors(shades: Shades, darkMode: Boolean): FillAccentColors = - if (darkMode) FillAccentColors( - default = shades.light2, - secondary = shades.light2.copy(0.9f), - tertiary = shades.light2.copy(0.8f), - disabled = Color(0x28FFFFFF), - selectedTextBackground = shades.base - ) - else FillAccentColors( - default = shades.dark1, - secondary = shades.dark1.copy(0.9f), - tertiary = shades.dark1.copy(0.8f), - disabled = Color(0x37000000), - selectedTextBackground = shades.base - ) - -internal fun generateBackground(shades: Shades, darkMode: Boolean): Background = - if (darkMode) Background( - card = Background.Card( - default = Color(0x0DFFFFFF), - secondary = Color(0x08FFFFFF), - tertiary = Color(0x12FFFFFF) - ), - smoke = Background.Smoke( - default = Color(0x4D000000) - ), - layer = Background.Layer(default = Color(0x4C3A3A3A), alt = Color(0x0DFFFFFF)), - layerOnAcrylic = Background.LayerOnAcrylic( - default = Color(0x09FFFFFF) - ), - layerOnMicaBaseAlt = Background.LayerOnMicaBaseAlt( - default = Color(0x733A3A3A), - tertiary = Color(0xFFF9F9F9), - transparent = Color.Transparent, - secondary = Color(0x0FFFFFFF) - ), - solid = Background.Solid( - base = Color(0xFF202020), - baseAlt = Color(0xFF0A0A0A), - secondary = Color(0xFF1C1C1C), - tertiary = Color(0xFF282828), - quaternary = Color(0xFF2C2C2C), - quinary = Color(0xFF333333), - senary = Color(0xFF373737) - ), - mica = Background.Mica( - base = Color(0xFF202020), - baseFallback = Color(0xFF202020), - baseAlt = Color(0x000A0A0A), - baseAltFallback = Color(0xFF0A0A0A), - ), - acrylic = Background.Acrylic( - base = Color(0xFF202020), - baseFallback = Color(0xFF1C1C1C), - default = Color(0xFF2C2C2C), - defaultFallback = Color(0xFF2C2C2C) - ), - accentAcrylic = Background.AccentAcrylic( - base = shades.dark2, - baseFallback = shades.dark2, - default = shades.dark1, - defaultFallback = shades.dark1 - ) - ) - else Background( - card = Background.Card( - default = Color(0xB3FFFFFF), - secondary = Color(0x80F6F6F6), - tertiary = Color(0xFFFFFFFF) - ), - smoke = Background.Smoke( - default = Color(0x4D000000) - ), - layer = Background.Layer(default = Color(0x80FFFFFF), alt = Color(0xFFFFFFFF)), - layerOnAcrylic = Background.LayerOnAcrylic( - default = Color(0x40FFFFFF) - ), - layerOnMicaBaseAlt = Background.LayerOnMicaBaseAlt( - default = Color(0xB3FFFFFF), - tertiary = Color(0xFFF9F9F9), - transparent = Color.Transparent, - secondary = Color(0x0A000000) - ), - solid = Background.Solid( - base = Color(0xFFF3F3F3), - baseAlt = Color(0xFFDADADA), - secondary = Color(0xFFEEEEEE), - tertiary = Color(0xFFF9F9F9), - quaternary = Color(0xFFFFFFFF), - quinary = Color(0xFFFDFDFD), - senary = Color(0xFFFFFFFF) - ), - mica = Background.Mica( - base = Color(0xFFF3F3F3), - baseFallback = Color(0xFFF3F3F3), - baseAlt = Color(0xFFDADADA), - baseAltFallback = Color(0xFFDADADA) - ), - acrylic = Background.Acrylic( - base = Color(0xFFF3F3F3), - baseFallback = Color(0xFFEEEEEE), - default = Color(0xFFFCFCFC), - defaultFallback = Color(0xFFF9F9F9) - ), - accentAcrylic = Background.AccentAcrylic( - base = shades.light3, - baseFallback = shades.light3, - default = shades.light3, - defaultFallback = shades.light3 - ) - ) - -internal fun generateStroke(shades: Shades, darkMode: Boolean): Stroke = - if (darkMode) Stroke( - control = Stroke.Control( - default = Color(0x12FFFFFF), - secondary = Color(0x18FFFFFF), - onAccentDefault = Color(0x14FFFFFF), - onAccentSecondary = Color(0x23000000), - onAccentTertiary = Color(0x37000000), - disabled = Color(0x33000000), - forStrongFillWhenOnImage = Color(0x6B000000) - ), - controlStrong = Stroke.ControlStrong( - default = Color(0x9AFFFFFF), - disabled = Color(0x28FFFFFF) - ), - surface = Stroke.Surface( - default = Color(0x66757575), - flyout = Color(0x33000000), - ), - card = Stroke.Card( - default = Color(0x19000000), - defaultSolid = Color(0xFF1C1C1C) - ), - divider = Stroke.Divider( - default = Color(0x15FFFFFF) - ) - ) - else Stroke( - control = Stroke.Control( - default = Color(0x0F000000), - secondary = Color(0x29000000), - onAccentDefault = Color(0x14FFFFFF), - onAccentSecondary = Color(0x66000000), - onAccentTertiary = Color(0x37000000), - disabled = Color(0x0F000000), - forStrongFillWhenOnImage = Color(0x59FFFFFF) - ), - controlStrong = Stroke.ControlStrong( - default = Color(0x9C000000), - disabled = Color(0x37000000) - ), - surface = Stroke.Surface( - default = Color(0x66757575), - flyout = Color(0x0F000000) - ), - card = Stroke.Card( - default = Color(0x0F000000), - defaultSolid = Color(0xFFEBEBEB) - ), - divider = Stroke.Divider( - default = Color(0x14000000) - ) - ) - -private fun generateBorders(fillAccent: FillAccentColors, stroke: Stroke, darkMode: Boolean): Borders = - if (darkMode) Borders( - control = Brush.verticalGradient( - 0.0957f to stroke.control.secondary, - 1f to stroke.control.default - ), - accentControl = Brush.verticalGradient( - 0.9067f to stroke.control.onAccentDefault, - 1f to stroke.control.onAccentSecondary, - ), - circle = Brush.verticalGradient( - 0.5002f to stroke.control.default, - 0.9545f to stroke.control.secondary - ), - textControl = Brush.verticalGradient( - 1f to stroke.control.default, - 1f to stroke.controlStrong.default - ), - textControlFocused = Brush.verticalGradient( - 0.9395f to stroke.control.default, - 0.9414f to fillAccent.default - ) - ) else Borders( - control = Brush.verticalGradient( - 0.9058f to stroke.control.default, - 1f to stroke.control.secondary - ), - accentControl = Brush.verticalGradient( - 0.9067f to stroke.control.onAccentDefault, - 1f to stroke.control.onAccentSecondary, - ), - circle = Brush.verticalGradient( - 0f to stroke.control.default, - 0.5f to stroke.control.secondary - ), - textControl = Brush.verticalGradient( - 1f to stroke.control.default, - 1f to stroke.controlStrong.default - ), - textControlFocused = Brush.verticalGradient( - 0.9395f to stroke.control.default, - 0.9414f to fillAccent.default - ) - ) diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/ExperimentalFluentApi.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/ExperimentalFluentApi.kt deleted file mode 100644 index d063dd02..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/ExperimentalFluentApi.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.konyaco.fluent - -@RequiresOptIn(message = "This is an experimental fluent API.") -@Target( - AnnotationTarget.CLASS, - AnnotationTarget.FUNCTION, - AnnotationTarget.PROPERTY, - AnnotationTarget.FIELD, - AnnotationTarget.PROPERTY_GETTER, -) -@Retention(AnnotationRetention.BINARY) -annotation class ExperimentalFluentApi \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/FluentTheme.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/FluentTheme.kt deleted file mode 100644 index 93045cbc..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/FluentTheme.kt +++ /dev/null @@ -1,141 +0,0 @@ -package com.konyaco.fluent - -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.text.selection.LocalTextSelectionColors -import androidx.compose.foundation.text.selection.TextSelectionColors -import androidx.compose.runtime.Composable -import androidx.compose.runtime.CompositionLocalProvider -import androidx.compose.runtime.ReadOnlyComposable -import androidx.compose.runtime.remember -import androidx.compose.runtime.staticCompositionLocalOf -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.graphics.Shape -import com.konyaco.fluent.background.AcrylicContainer -import com.konyaco.fluent.background.AcrylicContainerScope -import com.konyaco.fluent.component.ContentDialogHost -import com.konyaco.fluent.component.ContentDialogHostState -import com.konyaco.fluent.component.LocalContentDialog -import com.konyaco.fluent.component.ProvideFontIcon - -@ExperimentalFluentApi -@Composable -fun FluentTheme( - colors: Colors = FluentTheme.colors, - typography: Typography = FluentTheme.typography, - useAcrylicPopup: Boolean = LocalAcrylicPopupEnabled.current, - compactMode: Boolean = true, - content: @Composable () -> Unit -) { - val contentDialogHostState = remember { ContentDialogHostState() } - AcrylicContainer { - CompositionLocalProvider( - LocalAcrylicPopupEnabled provides useAcrylicPopup, - LocalColors provides colors, - LocalTypography provides typography, - LocalWindowAcrylicContainer provides this, - LocalTextSelectionColors provides TextSelectionColors( - colors.text.onAccent.primary, - colors.fillAccent.selectedTextBackground.copy(0.4f) - ), - LocalContentDialog provides contentDialogHostState, - LocalCompactMode provides compactMode - ) { - ContentDialogHost(contentDialogHostState) - Box(modifier = Modifier.behindAcrylic()) { - ProvideFontIcon { - PlatformCompositionLocalProvider(content) - } - } - } - } -} - -/** - * Uses for override theme configuration - */ -@ExperimentalFluentApi -@Composable -fun FluentThemeConfiguration( - colors: Colors = FluentTheme.colors, - typography: Typography = FluentTheme.typography, - useAcrylicPopup: Boolean = LocalAcrylicPopupEnabled.current, - compactMode: Boolean = LocalCompactMode.current, - contentDialogHostState: ContentDialogHostState = LocalContentDialog.current, - content: @Composable () -> Unit -) { - CompositionLocalProvider( - LocalAcrylicPopupEnabled provides useAcrylicPopup, - LocalColors provides colors, - LocalTypography provides typography, - LocalTextSelectionColors provides TextSelectionColors( - colors.text.onAccent.primary, - colors.fillAccent.selectedTextBackground.copy(0.4f) - ), - LocalCompactMode provides compactMode, - LocalContentDialog provides contentDialogHostState, - content = content - ) -} - -@OptIn(ExperimentalFluentApi::class) -@Composable -fun FluentTheme( - colors: Colors = FluentTheme.colors, - typography: Typography = FluentTheme.typography, - content: @Composable () -> Unit -) { - FluentTheme(colors, typography, useAcrylicPopup = false, compactMode = true, content) -} - -@Composable -fun CompactMode(enabled: Boolean = true, content: @Composable () -> Unit) { - CompositionLocalProvider( - LocalCompactMode provides enabled, - content = content - ) -} - -object FluentTheme { - val colors: Colors - @Composable - @ReadOnlyComposable - get() = LocalColors.current - val typography: Typography - @Composable - @ReadOnlyComposable - get() = LocalTypography.current -} - -internal val LocalColors = staticCompositionLocalOf { lightColors() } - -@ExperimentalFluentApi -internal val LocalWindowAcrylicContainer = - staticCompositionLocalOf { EmptyAcrylicContainerScope() } - -internal val LocalCompactMode = staticCompositionLocalOf { true } - -@OptIn(ExperimentalFluentApi::class) -private class EmptyAcrylicContainerScope : AcrylicContainerScope { - override fun Modifier.behindAcrylic(): Modifier { - return this - } - - override fun Modifier.acrylicOverlay(tint: Color, shape: Shape, enabled: () -> Boolean): Modifier { - return this - } - - override fun Modifier.align(alignment: Alignment): Modifier { - return this - } - - override fun Modifier.matchParentSize(): Modifier { - return this - } -} - -internal val LocalAcrylicPopupEnabled = staticCompositionLocalOf { true } - -fun lightColors(accent: Color = Color(0xFF0078D4)): Colors = Colors(generateShades(accent), false) -fun darkColors(accent: Color = Color(0xFF0078D4)): Colors = Colors(generateShades(accent), true) \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/LocalContentAlpha.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/LocalContentAlpha.kt deleted file mode 100644 index e0b9d5a1..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/LocalContentAlpha.kt +++ /dev/null @@ -1,5 +0,0 @@ -package com.konyaco.fluent - -import androidx.compose.runtime.compositionLocalOf - -val LocalContentAlpha = compositionLocalOf { 1f } \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/LocalContentColor.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/LocalContentColor.kt deleted file mode 100644 index e2765924..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/LocalContentColor.kt +++ /dev/null @@ -1,6 +0,0 @@ -package com.konyaco.fluent - -import androidx.compose.runtime.compositionLocalOf -import androidx.compose.ui.graphics.Color - -val LocalContentColor = compositionLocalOf { Color.Unspecified } \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/Typography.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/Typography.kt deleted file mode 100644 index 216dd116..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/Typography.kt +++ /dev/null @@ -1,67 +0,0 @@ -package com.konyaco.fluent - -import androidx.compose.runtime.* -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.text.TextStyle -import androidx.compose.ui.text.font.FontWeight -import androidx.compose.ui.unit.sp - -internal val LocalTypography = staticCompositionLocalOf { - Typography( - caption = TextStyle( - fontWeight = FontWeight.Normal, - fontSize = 12.sp, lineHeight = 16.sp - ), - body = TextStyle( - fontWeight = FontWeight.Normal, - fontSize = 14.sp, lineHeight = 20.sp - ), - bodyStrong = TextStyle( - fontWeight = FontWeight.SemiBold, - fontSize = 14.sp, lineHeight = 20.sp - ), - bodyLarge = TextStyle( - fontWeight = FontWeight.Normal, - fontSize = 18.sp, lineHeight = 24.sp - ), - subtitle = TextStyle( - fontWeight = FontWeight.SemiBold, - fontSize = 20.sp, lineHeight = 28.sp - ), - title = TextStyle( - fontWeight = FontWeight.SemiBold, - fontSize = 28.sp, lineHeight = 36.sp - ), - titleLarge = TextStyle( - fontWeight = FontWeight.SemiBold, - fontSize = 40.sp, lineHeight = 52.sp - ), - display = TextStyle( - fontWeight = FontWeight.SemiBold, - fontSize = 68.sp, lineHeight = 92.sp - ) - ) -} - -/** - * https://docs.microsoft.com/en-us/windows/apps/design/signature-experiences/typography - */ -@Immutable -class Typography( - val caption: TextStyle, - val body: TextStyle, - val bodyStrong: TextStyle, - val bodyLarge: TextStyle, - val subtitle: TextStyle, - val title: TextStyle, - val titleLarge: TextStyle, - val display: TextStyle -) - -val LocalTextStyle = compositionLocalOf(structuralEqualityPolicy()) { TextStyle.Default } - -@Composable -fun ProvideTextStyle(value: TextStyle, content: @Composable () -> Unit) { - val mergedStyle = LocalTextStyle.current.merge(value) - CompositionLocalProvider(LocalTextStyle provides mergedStyle, content = content) -} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/background/Acrylic.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/background/Acrylic.kt deleted file mode 100644 index c5a2062c..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/background/Acrylic.kt +++ /dev/null @@ -1,96 +0,0 @@ -package com.konyaco.fluent.background - -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.BorderStroke -import androidx.compose.foundation.layout.BoxScope -import androidx.compose.runtime.Composable -import androidx.compose.runtime.remember -import androidx.compose.ui.Modifier -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.graphics.RectangleShape -import androidx.compose.ui.graphics.Shape -import androidx.compose.ui.unit.dp -import com.konyaco.fluent.ExperimentalFluentApi -import com.konyaco.fluent.FluentTheme -import dev.chrisbanes.haze.HazeState -import dev.chrisbanes.haze.HazeStyle -import dev.chrisbanes.haze.haze -import dev.chrisbanes.haze.hazeChild - -@ExperimentalFluentApi -@Composable -fun AcrylicContainerScope.Acrylic( - modifier: Modifier = Modifier, - enabled: () -> Boolean = { true }, - tint: Color = AcrylicDefaults.tintColor, - shape: Shape = AcrylicDefaults.shape, - border: BorderStroke? = null, - content: @Composable () -> Unit -) { - Layer( - modifier = modifier.acrylicOverlay(tint = tint, shape = shape, enabled = enabled), - shape = shape, - color = if (enabled()) Color.Transparent else FluentTheme.colors.background.layer.default, - border = border, - backgroundSizing = BackgroundSizing.InnerBorderEdge - ) { - content() - } -} - -@ExperimentalFluentApi -@Composable -fun AcrylicContainer( - content: @Composable AcrylicContainerScope.() -> Unit -) { - Box { - val scope = remember(this) { AcrylicContainerScopeImpl(this) } - scope.content() - } -} - -@OptIn(ExperimentalFluentApi::class) -private class AcrylicContainerScopeImpl(boxScope: BoxScope): AcrylicContainerScope, BoxScope by boxScope { - private val hazeState = HazeState() - - override fun Modifier.behindAcrylic(): Modifier { - return then(Modifier.haze(state = hazeState)) - } - - override fun Modifier.acrylicOverlay(tint: Color, shape: Shape, enabled: () -> Boolean): Modifier { - return then(if (enabled()) { - Modifier.hazeChild( - state = hazeState, - shape = shape, - style = HazeStyle( - tint = tint, - noiseFactor = AcrylicDefaults.noise, - blurRadius = AcrylicDefaults.blurRadius - ) - ) - } else { - Modifier - }) - } -} - -@ExperimentalFluentApi -interface AcrylicContainerScope: BoxScope { - fun Modifier.behindAcrylic(): Modifier - - fun Modifier.acrylicOverlay(tint: Color, shape: Shape, enabled: () -> Boolean = { true }): Modifier - -} - -internal object AcrylicDefaults { - - const val noise = 0.02f - - val blurRadius = 70.dp - - val tintColor: Color - @Composable - get() = FluentTheme.colors.background.acrylic.default.copy(0.8f) - - val shape = RectangleShape -} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/background/Layer.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/background/Layer.kt deleted file mode 100644 index 338c8896..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/background/Layer.kt +++ /dev/null @@ -1,234 +0,0 @@ -package com.konyaco.fluent.background - -import androidx.compose.foundation.BorderStroke -import androidx.compose.foundation.background -import androidx.compose.foundation.border -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.foundation.shape.CornerBasedShape -import androidx.compose.foundation.shape.CutCornerShape -import androidx.compose.foundation.shape.RoundedCornerShape -import androidx.compose.runtime.Composable -import androidx.compose.runtime.CompositionLocalProvider -import androidx.compose.runtime.Immutable -import androidx.compose.runtime.Stable -import androidx.compose.ui.Modifier -import androidx.compose.ui.draw.clip -import androidx.compose.ui.draw.shadow -import androidx.compose.ui.geometry.Offset -import androidx.compose.ui.geometry.Size -import androidx.compose.ui.geometry.translate -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.graphics.Outline -import androidx.compose.ui.graphics.Shape -import androidx.compose.ui.unit.Density -import androidx.compose.ui.unit.Dp -import androidx.compose.ui.unit.LayoutDirection -import androidx.compose.ui.unit.dp -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.LocalContentAlpha -import com.konyaco.fluent.LocalContentColor -import com.konyaco.fluent.ProvideTextStyle -import kotlin.jvm.JvmInline -import kotlin.math.sqrt - -/** - * Defines constants that specify how far an element's background extends in relation to the element's border. - */ -enum class BackgroundSizing { - /** - * The element's background extends to the inner edge of the border, but does not extend under the border. - */ - InnerBorderEdge, - - /** - * The element's background extends under the border to its outer edge, and is visible if the border is transparent. - */ - OuterBorderEdge -} - -@Deprecated( - message = "Use backgroundSizing", - replaceWith = ReplaceWith( - expression = "Layer(modifier=modifier,shape=shape,color=color,contentColor=contentColor,border=border,backgroundSizing=if (outsideBorder) BackgroundSizing.InnerBorderEdge else BackgroundSizing.OuterBorderEdge,elevation=elevation,content=content)", - imports = arrayOf("com.konyaco.fluent.background.BackgroundSizing") - ) -) -@Composable -fun Layer( - modifier: Modifier = Modifier, - shape: Shape = RoundedCornerShape(size = 4.dp), - color: Color = FluentTheme.colors.background.layer.default, - contentColor: Color = FluentTheme.colors.text.text.primary, - border: BorderStroke? = BorderStroke(1.dp, FluentTheme.colors.stroke.card.default), - outsideBorder: Boolean = false, - elevation: Dp = 0.dp, - content: @Composable () -> Unit -) { - Layer( - modifier = modifier, - shape = shape, - color = color, - contentColor = contentColor, - border = border, - elevation = elevation, - backgroundSizing = if (outsideBorder) { - BackgroundSizing.InnerBorderEdge - } else { - BackgroundSizing.OuterBorderEdge - }, - content = content - ) -} - -@Composable -fun Layer( - modifier: Modifier = Modifier, - shape: Shape = RoundedCornerShape(size = 4.dp), - color: Color = FluentTheme.colors.background.layer.default, - contentColor: Color = FluentTheme.colors.text.text.primary, - border: BorderStroke? = BorderStroke(1.dp, FluentTheme.colors.stroke.card.default), - backgroundSizing: BackgroundSizing, - elevation: Dp = 0.dp, - content: @Composable () -> Unit -) { - ProvideTextStyle(FluentTheme.typography.body.copy(color = contentColor)) { - CompositionLocalProvider( - LocalContentColor provides contentColor, - LocalContentAlpha provides contentColor.alpha - ) { - Box( - modifier = modifier.layer( - elevation, - shape, - border, - backgroundSizing, - color - ), - propagateMinConstraints = true - ) { - content() - } - } - } -} - -private fun Modifier.layer( - elevation: Dp, - shape: Shape, - border: BorderStroke?, - backgroundSizing: BackgroundSizing, - color: Color -) = then( - Modifier - .shadow(elevation = elevation, shape = shape, clip = false) - .then( - if (border != null) { - val backgroundShape = - if (backgroundSizing == BackgroundSizing.InnerBorderEdge && shape is CornerBasedShape) { - BackgroundPaddingShape(shape) - } else { - shape - } - Modifier.border(border, shape) - .background(color, backgroundShape) - } else { - Modifier.background(color, shape) - } - ) - .clip(shape) -) - -/** - * keep padding for background - */ -@Immutable -@JvmInline -private value class BackgroundPaddingShape(private val borderShape: CornerBasedShape) : Shape { - - override fun createOutline(size: Size, layoutDirection: LayoutDirection, density: Density): Outline { - return with(density) { - val circular = borderShape == CircleShape - val paddingPx = when { - circular -> calcCircularPadding(density) - else -> calcPadding(density) - }.toPx() - createInnerOutline(size, density, layoutDirection, paddingPx) - } - } - - /** - * Fork from [CornerBasedShape.createOutline], add padding to corner size and outline rect size. - */ - private fun createInnerOutline(size: Size, density: Density, layoutDirection: LayoutDirection, paddingPx: Float) = - borderShape.run { - val cornerPaddingPx = if (this is CutCornerShape) { - /** padding for cut corner shape */ - (paddingPx / sqrt(2f)).toInt().toFloat() - } else { - paddingPx - } - val innerSize = Size(size.width - 2 * paddingPx, size.height - 2 * paddingPx) - /** add padding to corner size */ - var topStart = (borderShape.topStart.toPx(size, density) - cornerPaddingPx).coerceAtLeast(0f) - var topEnd = (borderShape.topEnd.toPx(size, density) - cornerPaddingPx).coerceAtLeast(0f) - var bottomEnd = (borderShape.bottomEnd.toPx(size, density) - cornerPaddingPx).coerceAtLeast(0f) - var bottomStart = (borderShape.bottomStart.toPx(size, density) - cornerPaddingPx).coerceAtLeast(0f) - val minDimension = innerSize.minDimension - if (topStart + bottomStart > minDimension) { - val scale = minDimension / (topStart + bottomStart) - topStart *= scale - bottomStart *= scale - } - if (topEnd + bottomEnd > minDimension) { - val scale = minDimension / (topEnd + bottomEnd) - topEnd *= scale - bottomEnd *= scale - } - require(topStart >= 0.0f && topEnd >= 0.0f && bottomEnd >= 0.0f && bottomStart >= 0.0f) { - "Corner size in Px can't be negative(topStart = $topStart, topEnd = $topEnd, " + - "bottomEnd = $bottomEnd, bottomStart = $bottomStart)!" - } - /** add padding to outline rect size */ - val oldOutline = createOutline( - size = innerSize, - topStart = topStart, - topEnd = topEnd, - bottomEnd = bottomEnd, - bottomStart = bottomStart, - layoutDirection = layoutDirection - ) - /** translate outline to the actual rect bounds */ - when (oldOutline) { - is Outline.Rectangle -> Outline.Rectangle(oldOutline.rect.translate(Offset(paddingPx, paddingPx))) - is Outline.Rounded -> Outline.Rounded(oldOutline.roundRect.translate(Offset(paddingPx, paddingPx))) - is Outline.Generic -> Outline.Generic(oldOutline.path.apply { translate(Offset(paddingPx, paddingPx)) }) - } - } -} - -/** - * This is a workaround solution to eliminate 1 pixel gap - * when density is not integer or `(density % 1) < 0.5` - */ -@Stable -private fun calcPadding(density: Density): Dp { - val remainder = density.density % 1f - - return with(density) { - when { - remainder == 0f -> 1.dp - else -> (1.dp.toPx() - remainder + 1).toDp() - } - } -} - -@Stable -private fun calcCircularPadding(density: Density): Dp { - val remainder = density.density % 1f - - return with(density) { - if (remainder == 0f) 1.dp - else (1.dp.toPx() - remainder + 1).toDp() - } -} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/background/Mica.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/background/Mica.kt deleted file mode 100644 index ce6fa5de..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/background/Mica.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.konyaco.fluent.background - -import androidx.compose.foundation.background -import androidx.compose.foundation.layout.Box -import androidx.compose.runtime.Composable -import androidx.compose.runtime.CompositionLocalProvider -import androidx.compose.ui.Modifier -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.LocalContentColor - -@Composable -fun Mica(modifier: Modifier, content: @Composable () -> Unit) { - // TODO: Tint opacity and Luminosity opacity - Box(modifier.background(FluentTheme.colors.background.mica.base)) { - CompositionLocalProvider(LocalContentColor provides FluentTheme.colors.text.text.primary) { - content() - } - } -} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Button.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Button.kt deleted file mode 100644 index b670eea7..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Button.kt +++ /dev/null @@ -1,636 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.animation.animateColorAsState -import androidx.compose.animation.core.animateDpAsState -import androidx.compose.animation.core.tween -import androidx.compose.foundation.BorderStroke -import androidx.compose.foundation.ExperimentalFoundationApi -import androidx.compose.foundation.border -import androidx.compose.foundation.clickable -import androidx.compose.foundation.combinedClickable -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.foundation.interaction.collectIsPressedAsState -import androidx.compose.foundation.layout.Arrangement -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.IntrinsicSize -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.RowScope -import androidx.compose.foundation.layout.defaultMinSize -import androidx.compose.foundation.layout.fillMaxHeight -import androidx.compose.foundation.layout.height -import androidx.compose.foundation.layout.heightIn -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.layout.size -import androidx.compose.foundation.selection.selectable -import androidx.compose.foundation.shape.RoundedCornerShape -import androidx.compose.runtime.Composable -import androidx.compose.runtime.Immutable -import androidx.compose.runtime.Stable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.rememberCoroutineScope -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.draw.drawWithCache -import androidx.compose.ui.graphics.Brush -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.graphics.Path -import androidx.compose.ui.graphics.RectangleShape -import androidx.compose.ui.graphics.Shape -import androidx.compose.ui.graphics.SolidColor -import androidx.compose.ui.graphics.drawscope.Stroke -import androidx.compose.ui.graphics.graphicsLayer -import androidx.compose.ui.input.pointer.PointerIcon -import androidx.compose.ui.input.pointer.pointerHoverIcon -import androidx.compose.ui.layout.onGloballyPositioned -import androidx.compose.ui.layout.positionInParent -import androidx.compose.ui.platform.LocalUriHandler -import androidx.compose.ui.semantics.Role -import androidx.compose.ui.unit.dp -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.animation.FluentDuration -import com.konyaco.fluent.animation.FluentEasing -import com.konyaco.fluent.background.BackgroundSizing -import com.konyaco.fluent.background.Layer -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.regular.ChevronDown -import com.konyaco.fluent.scheme.PentaVisualScheme -import com.konyaco.fluent.scheme.VisualState -import com.konyaco.fluent.scheme.VisualStateScheme -import com.konyaco.fluent.scheme.collectVisualState -import kotlinx.coroutines.delay -import kotlinx.coroutines.launch - -@Deprecated( - message = "use ButtonColorScheme instead.", - replaceWith = ReplaceWith("ButtonColorScheme", imports = arrayOf("com.konyaco.fluent.component.ButtonColorScheme")) -) -typealias ButtonColors = ButtonColorScheme - -typealias ButtonColorScheme = PentaVisualScheme - -@Immutable -data class ButtonColor( - val fillColor: Color, - val contentColor: Color, - val borderBrush: Brush -) - -@Composable -fun Button( - onClick: () -> Unit, - modifier: Modifier = Modifier, - disabled: Boolean = false, - buttonColors: VisualStateScheme = ButtonDefaults.buttonColors(), - interaction: MutableInteractionSource = remember { MutableInteractionSource() }, - iconOnly: Boolean = false, - contentArrangement: Arrangement.Horizontal = Arrangement.spacedBy(8.dp, Alignment.CenterHorizontally), - content: @Composable RowScope.() -> Unit -) { - Button( - modifier, - interaction, - disabled, - buttonColors, - false, - onClick, - iconOnly, - contentArrangement, - content - ) -} - -@Composable -fun AccentButton( - onClick: () -> Unit, - modifier: Modifier = Modifier, - disabled: Boolean = false, - buttonColors: VisualStateScheme = ButtonDefaults.accentButtonColors(), - interaction: MutableInteractionSource = remember { MutableInteractionSource() }, - iconOnly: Boolean = false, - contentArrangement: Arrangement.Horizontal = Arrangement.spacedBy(8.dp, Alignment.CenterHorizontally), - content: @Composable RowScope.() -> Unit -) { - Button( - modifier, - interaction, - disabled, - buttonColors, - true, - onClick, - iconOnly, - contentArrangement, - content - ) -} - -@Composable -fun SubtleButton( - onClick: () -> Unit, - modifier: Modifier = Modifier, - disabled: Boolean = false, - buttonColors: VisualStateScheme = ButtonDefaults.subtleButtonColors(), - interaction: MutableInteractionSource = remember { MutableInteractionSource() }, - iconOnly: Boolean = false, - contentArrangement: Arrangement.Horizontal = Arrangement.spacedBy(8.dp, Alignment.CenterHorizontally), - content: @Composable RowScope.() -> Unit -) { - Button( - modifier, - interaction, - disabled, - buttonColors, - true, - onClick, - iconOnly, - contentArrangement, - content - ) -} - -@Composable -fun HyperlinkButton( - navigateUri: String, - modifier: Modifier = Modifier, - disabled: Boolean = false, - buttonColors: VisualStateScheme = ButtonDefaults.hyperlinkButtonColors(), - interaction: MutableInteractionSource = remember { MutableInteractionSource() }, - iconOnly: Boolean = false, - content: @Composable RowScope.() -> Unit -) { - val uriHandler = LocalUriHandler.current - HyperlinkButton( - modifier = modifier, - disabled = disabled, - buttonColors = buttonColors, - interaction = interaction, - iconOnly = iconOnly, - content = content, - onClick = { uriHandler.openUri(navigateUri) } - ) -} - -@Composable -fun HyperlinkButton( - onClick: () -> Unit, - modifier: Modifier = Modifier, - disabled: Boolean = false, - buttonColors: VisualStateScheme = ButtonDefaults.hyperlinkButtonColors(), - interaction: MutableInteractionSource = remember { MutableInteractionSource() }, - iconOnly: Boolean = false, - contentArrangement: Arrangement.Horizontal = Arrangement.spacedBy(8.dp, Alignment.CenterHorizontally), - content: @Composable RowScope.() -> Unit -) { - Button( - modifier = modifier.pointerHoverIcon(if (!disabled) PointerIcon.Hand else PointerIcon.Default), - interaction = interaction, - disabled = disabled, - buttonColors = buttonColors, - true, - onClick = onClick, - iconOnly = iconOnly, - contentArrangement = contentArrangement, - content = content - ) -} - -@OptIn(ExperimentalFoundationApi::class) -@Composable -fun RepeatButton( - onClick: () -> Unit, - modifier: Modifier = Modifier, - delay: Long = 200, - interval: Long = 50, - disabled: Boolean = false, - buttonColors: VisualStateScheme = ButtonDefaults.buttonColors(), - interaction: MutableInteractionSource = remember { MutableInteractionSource() }, - iconOnly: Boolean = false, - content: @Composable RowScope.() -> Unit -) { - val pressed = interaction.collectIsPressedAsState() - val scope = rememberCoroutineScope() - - Button( - modifier = modifier.combinedClickable( - interactionSource = interaction, - indication = null, - enabled = !disabled, - onClick = onClick, - onLongClick = { - onClick() - scope.launch { - delay(delay) - do { - onClick() - delay(interval) - } while (pressed.value) - } - }, - onDoubleClick = { - onClick() - onClick() - } - ), - interaction = interaction, - disabled = disabled, - buttonColors = buttonColors, - accentButton = false, - onClick = null, - iconOnly = iconOnly, - content = content, - contentArrangement = Arrangement.spacedBy(8.dp, Alignment.CenterHorizontally) - ) -} - -@Composable -fun DropDownButton( - onClick: () -> Unit, - modifier: Modifier = Modifier, - disabled: Boolean = false, - buttonColors: VisualStateScheme = ButtonDefaults.buttonColors(), - interaction: MutableInteractionSource = remember { MutableInteractionSource() }, - iconOnly: Boolean = false, - contentArrangement: Arrangement.Horizontal = Arrangement.spacedBy(8.dp, Alignment.CenterHorizontally), - content: @Composable RowScope.() -> Unit -) { - Button( - onClick = onClick, - disabled = disabled, - buttonColors = buttonColors, - interaction = interaction, - iconOnly = iconOnly, - modifier = modifier, - contentArrangement = contentArrangement - ) { - content() - AnimatedDropDownIcon(interaction) - } -} - -@Composable -fun ToggleButton( - checked: Boolean, - onCheckedChanged: (Boolean) -> Unit, - modifier: Modifier = Modifier, - disabled: Boolean = false, - colors: VisualStateScheme = if(checked) { - ButtonDefaults.accentButtonColors() - } else { - ButtonDefaults.buttonColors() - }, - interaction: MutableInteractionSource = remember { MutableInteractionSource() }, - iconOnly: Boolean = false, - outsideBorder: Boolean = !checked, - content: @Composable RowScope.() -> Unit -) { - Button( - modifier = modifier.selectable( - selected = checked, - interactionSource = interaction, - indication = null, - onClick = { onCheckedChanged(!checked) }, - role = Role.Checkbox, - enabled = !disabled - ), - interaction = interaction, - disabled = disabled, - buttonColors = colors, - accentButton = !outsideBorder, - onClick = null, - iconOnly = iconOnly, - content = content, - contentArrangement = Arrangement.spacedBy(8.dp, Alignment.CenterHorizontally) - ) -} - -@Composable -fun SplitButton( - flyoutClick: () -> Unit, - onClick: () -> Unit, - modifier: Modifier = Modifier, - buttonColors: VisualStateScheme = ButtonDefaults.buttonColors(), - accentButton: Boolean = false, - disabled: Boolean = false, - content: @Composable RowScope.() -> Unit -) { - val currentColor = if (!disabled) { - buttonColors.schemeFor(VisualState.Default) - } else { - buttonColors.schemeFor(VisualState.Disabled) - } - val borderBrush = currentColor.borderBrush - val endContentOffset = remember { mutableStateOf(0f) } - Layer( - modifier = modifier.border(BorderStroke(buttonBorderStrokeWidth, currentColor.borderBrush), buttonShape) - .drawWithCache { - /* draw split broder */ - val path = Path() - val strokeWidth = buttonBorderStrokeWidth.toPx() - path.moveTo(endContentOffset.value, strokeWidth) - path.lineTo(endContentOffset.value, size.height - 2 * strokeWidth) - path.close() - onDrawWithContent { - drawContent() - drawPath(path, borderBrush, style = Stroke(strokeWidth)) - } - }, - shape = buttonShape, - color = Color.Transparent, - contentColor = currentColor.contentColor, - /* workaround for outside border padding */ - border = null, - backgroundSizing = if (!accentButton - ) BackgroundSizing.InnerBorderEdge else BackgroundSizing.OuterBorderEdge - ) { - Row(modifier = Modifier.height(IntrinsicSize.Min)) { - val contentInteraction = remember { MutableInteractionSource() } - ButtonLayer( - shape = RectangleShape, - buttonColors = buttonColors, - interaction = contentInteraction, - disabled = disabled, - accentButton = false, - displayBorder = false, - modifier = Modifier.clickable( - interactionSource = contentInteraction, - indication = null, - onClick = onClick, - enabled = !disabled - ).heightIn(buttonMinHeight) - ) { - Row( - horizontalArrangement = Arrangement.spacedBy(8.dp), - verticalAlignment = Alignment.CenterVertically - ) { - content() - } - } - val dropDownInteraction = remember { MutableInteractionSource() } - ButtonLayer( - shape = RectangleShape, - buttonColors = buttonColors, - interaction = dropDownInteraction, - disabled = disabled, - accentButton = false, - displayBorder = false, - modifier = Modifier.clickable( - interactionSource = dropDownInteraction, - indication = null, - onClick = flyoutClick, - enabled = !disabled - ).fillMaxHeight().onGloballyPositioned { - endContentOffset.value = it.positionInParent().x.toInt().toFloat() - }, - ) { - Box( - modifier = Modifier.fillMaxHeight().padding(start = 1.dp).size(32.dp), - contentAlignment = Alignment.Center - ) { - AnimatedDropDownIcon(dropDownInteraction) - } - } - } - } -} - -@Composable -fun ToggleSplitButton( - flyoutClick: () -> Unit, - onClick: () -> Unit, - checked: Boolean, - modifier: Modifier = Modifier, - colors: VisualStateScheme = if(checked) { - ButtonDefaults.accentButtonColors() - } else { - ButtonDefaults.buttonColors() - }, - accentButton: Boolean = checked, - disabled: Boolean = false, - content: @Composable RowScope.() -> Unit -) { - SplitButton( - flyoutClick = flyoutClick, - onClick = onClick, - modifier = modifier, - buttonColors = colors, - accentButton = accentButton, - disabled = disabled, - content = content - ) -} - -@Composable -private fun Button( - modifier: Modifier, - interaction: MutableInteractionSource, - disabled: Boolean, - buttonColors: VisualStateScheme, - accentButton: Boolean, - onClick: (() -> Unit)?, - iconOnly: Boolean, - contentArrangement: Arrangement.Horizontal, - content: @Composable (RowScope.() -> Unit) -) { - ButtonLayer( - shape = buttonShape, - displayBorder = true, - buttonColors = buttonColors, - interaction = interaction, - disabled = disabled, - accentButton = accentButton, - modifier = modifier.let { - if (iconOnly) { - it.defaultMinSize(32.dp, buttonMinHeight) - } else { - it.defaultMinSize( - minHeight = buttonMinHeight - ) - } - } - ) { - Row( - Modifier - .then( - if (onClick != null) { - Modifier.clickable( - onClick = onClick, - interactionSource = interaction, - indication = null, - enabled = !disabled - ) - } else { - Modifier - } - ) - .then(if (iconOnly) Modifier else Modifier.padding(horizontal = 12.dp)), - horizontalArrangement = contentArrangement, - verticalAlignment = Alignment.CenterVertically, - content = content - ) - } -} - -/* -common interaction layer for button and split button. -*/ -@Composable -private fun ButtonLayer( - shape: Shape, - buttonColors: VisualStateScheme, - interaction: MutableInteractionSource, - disabled: Boolean, - accentButton: Boolean, - displayBorder: Boolean, - modifier: Modifier = Modifier, - content: @Composable () -> Unit -) { - val buttonColor = buttonColors.schemeFor(interaction.collectVisualState(disabled)) - - val fillColor by animateColorAsState( - buttonColor.fillColor, - animationSpec = tween(FluentDuration.QuickDuration, easing = FluentEasing.FastInvokeEasing) - ) - - val contentColor by animateColorAsState( - buttonColor.contentColor, - animationSpec = tween(FluentDuration.QuickDuration, easing = FluentEasing.FastInvokeEasing) - ) - Layer( - modifier = modifier, - shape = shape, - color = fillColor, - contentColor = contentColor, - border = if (displayBorder) BorderStroke(buttonBorderStrokeWidth, buttonColor.borderBrush) else null, - backgroundSizing = if (!accentButton) BackgroundSizing.InnerBorderEdge else BackgroundSizing.OuterBorderEdge, - content = content - ) -} - -object ButtonDefaults { - - @Stable - @Composable - fun buttonColors( - default: ButtonColor = ButtonColor( - fillColor = FluentTheme.colors.control.default, - contentColor = FluentTheme.colors.text.text.primary, - borderBrush = FluentTheme.colors.borders.control - ), - hovered: ButtonColor = default.copy( - fillColor = FluentTheme.colors.control.secondary - ), - pressed: ButtonColor = ButtonColor( - fillColor = FluentTheme.colors.control.tertiary, - contentColor = FluentTheme.colors.text.text.secondary, - borderBrush = SolidColor(FluentTheme.colors.stroke.control.default) - ), - disabled: ButtonColor = pressed.copy( - fillColor = FluentTheme.colors.control.disabled, - contentColor = FluentTheme.colors.text.text.disabled, - ) - ) = ButtonColorScheme( - default = default, - hovered = hovered, - pressed = pressed, - disabled = disabled - ) - - @Stable - @Composable - fun accentButtonColors( - default: ButtonColor = ButtonColor( - fillColor = FluentTheme.colors.fillAccent.default, - contentColor = FluentTheme.colors.text.onAccent.primary, - borderBrush = FluentTheme.colors.borders.accentControl - ), - hovered: ButtonColor = default.copy( - fillColor = FluentTheme.colors.fillAccent.secondary - ), - pressed: ButtonColor = ButtonColor( - fillColor = FluentTheme.colors.fillAccent.tertiary, - contentColor = FluentTheme.colors.text.onAccent.secondary, - borderBrush = SolidColor(FluentTheme.colors.stroke.control.onAccentDefault) - ), - disabled: ButtonColor = ButtonColor( - fillColor = FluentTheme.colors.fillAccent.disabled, - contentColor = FluentTheme.colors.text.onAccent.disabled, - borderBrush = SolidColor(Color.Transparent) // Disabled accent button does not have border - ) - ) = ButtonColorScheme( - default = default, - hovered = hovered, - pressed = pressed, - disabled = disabled - ) - - @Stable - @Composable - fun subtleButtonColors( - default: ButtonColor = ButtonColor( - fillColor = FluentTheme.colors.subtleFill.transparent, - contentColor = FluentTheme.colors.text.text.primary, - borderBrush = SolidColor(Color.Transparent) - ), - hovered: ButtonColor = default.copy( - fillColor = FluentTheme.colors.subtleFill.secondary, - ), - pressed: ButtonColor = default.copy( - fillColor = FluentTheme.colors.subtleFill.tertiary, - contentColor = FluentTheme.colors.text.text.secondary - ), - disabled: ButtonColor = default.copy( - fillColor = FluentTheme.colors.subtleFill.disabled, - contentColor = FluentTheme.colors.text.text.disabled - ) - ) = ButtonColorScheme( - default = default, - hovered = hovered, - pressed = pressed, - disabled = disabled, - ) - - @Stable - @Composable - fun hyperlinkButtonColors( - default: ButtonColor = ButtonColor( - fillColor = FluentTheme.colors.subtleFill.transparent, - contentColor = FluentTheme.colors.text.accent.primary, - borderBrush = SolidColor(Color.Transparent) - ), - hovered: ButtonColor = default.copy( - fillColor = FluentTheme.colors.subtleFill.secondary - ), - pressed: ButtonColor = default.copy( - fillColor = FluentTheme.colors.subtleFill.tertiary, - contentColor = FluentTheme.colors.text.accent.secondary, - ), - disabled: ButtonColor = default.copy( - fillColor = FluentTheme.colors.subtleFill.disabled, - contentColor = FluentTheme.colors.text.accent.disabled, - ) - ) = ButtonColorScheme( - default = default, - hovered = hovered, - pressed = pressed, - disabled = disabled - ) -} - -@Composable -private fun AnimatedDropDownIcon(interaction: MutableInteractionSource) { - val isPressed by interaction.collectIsPressedAsState() - val animatedOffset = animateDpAsState( - targetValue = if (isPressed) 2.dp else 0.dp, - animationSpec = tween(FluentDuration.ShortDuration, easing = FluentEasing.FastInvokeEasing) - ) - Icon( - imageVector = Icons.Default.ChevronDown, - contentDescription = null, - modifier = Modifier.graphicsLayer { translationY = animatedOffset.value.toPx() }.size(12.dp) - ) -} - -private val buttonMinHeight = 32.dp -private val buttonShape = RoundedCornerShape(size = 4.dp) -private val buttonBorderStrokeWidth = 1.dp \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/CalendarDatePicker.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/CalendarDatePicker.kt deleted file mode 100644 index e9200070..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/CalendarDatePicker.kt +++ /dev/null @@ -1,45 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.runtime.Composable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import com.konyaco.fluent.ExperimentalFluentApi -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.regular.CalendarLtr - -/** - * A calendar view lets a user view and interact with a calendar that they can navigate by month, year, or decade. A user can select a single date or a range of dates. It doesn't have a picker surface and the calendar is always visible. - * - * The calendar date picker is a drop down control that's optimized for picking a single date from a calendar view where contextual information like the day of the week or fullness of the calendar is important. The calendar date picker has an internal CalendarView for picking a date. - */ -@Composable -@ExperimentalFluentApi -fun CalendarDatePicker( - onChoose: (CalendarDatePickerState.Day) -> Unit, - state: CalendarDatePickerState = remember { CalendarDatePickerState() } -) { - var day by remember { mutableStateOf(null) } - FlyoutContainer(flyout = { - CalendarView( - onChoose = { - day = it - onChoose(it) - isFlyoutVisible = false - }, - state = state - ) - }, content = { - Button(onClick = { - isFlyoutVisible = true - }) { - Text( - day?.let { day -> - "${day.year}/${day.monthValue + 1}/${day.day}" - } ?: "Pick a date" - ) - Icon(Icons.Default.CalendarLtr, null) - } - }) -} diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/CheckBox.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/CheckBox.kt deleted file mode 100644 index b57a5f4d..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/CheckBox.kt +++ /dev/null @@ -1,178 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.animation.animateColorAsState -import androidx.compose.animation.core.tween -import androidx.compose.animation.expandHorizontally -import androidx.compose.animation.fadeOut -import androidx.compose.foundation.BorderStroke -import androidx.compose.foundation.clickable -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.Spacer -import androidx.compose.foundation.layout.defaultMinSize -import androidx.compose.foundation.layout.fillMaxSize -import androidx.compose.foundation.layout.offset -import androidx.compose.foundation.layout.size -import androidx.compose.foundation.layout.width -import androidx.compose.foundation.shape.RoundedCornerShape -import androidx.compose.runtime.Composable -import androidx.compose.runtime.Immutable -import androidx.compose.runtime.Stable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.remember -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.semantics.Role -import androidx.compose.ui.unit.dp -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.animation.FluentDuration -import com.konyaco.fluent.animation.FluentEasing -import com.konyaco.fluent.background.BackgroundSizing -import com.konyaco.fluent.background.Layer -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.regular.Checkmark -import com.konyaco.fluent.scheme.PentaVisualScheme -import com.konyaco.fluent.scheme.VisualStateScheme -import com.konyaco.fluent.scheme.collectVisualState - -@Composable -fun CheckBox( - checked: Boolean, - label: String? = null, - modifier: Modifier = Modifier, - enabled: Boolean = true, - colors: VisualStateScheme = if(checked) { - CheckBoxDefaults.selectedCheckBoxColors() - } else { - CheckBoxDefaults.defaultCheckBoxColors() - }, - onCheckStateChange: (checked: Boolean) -> Unit -) { - // TODO: Animation, TripleStateCheckbox - val interactionSource = remember { MutableInteractionSource() } - val color = colors.schemeFor(interactionSource.collectVisualState(!enabled)) - Row( - modifier = modifier.then( - if (label != null) Modifier.defaultMinSize(minWidth = 120.dp) - else Modifier - ).clickable( - role = Role.Checkbox, - indication = null, - interactionSource = interactionSource - ) { onCheckStateChange(!checked) }, - verticalAlignment = Alignment.CenterVertically - ) { - val fillColor by animateColorAsState(color.fillColor, - tween(FluentDuration.QuickDuration, easing = FluentEasing.FadeInFadeOutEasing) - ) - Layer( - modifier = Modifier.size(20.dp), - shape = RoundedCornerShape(4.dp), - color = fillColor, - contentColor = color.contentColor, - border = BorderStroke(1.dp, color.borderColor), - backgroundSizing = if (!checked) BackgroundSizing.InnerBorderEdge else BackgroundSizing.OuterBorderEdge - ) { - Box(contentAlignment = Alignment.CenterStart) { - androidx.compose.animation.AnimatedVisibility( - visible = checked, - enter = expandHorizontally( - expandFrom = Alignment.Start - ), exit = fadeOut( - tween(durationMillis = FluentDuration.QuickDuration, easing = FluentEasing.FadeInFadeOutEasing) - ) - ) { - Box(Modifier.fillMaxSize(), Alignment.Center) { - Icon( - modifier = Modifier.size(16.dp), - imageVector = Icons.Default.Checkmark, - contentDescription = null - ) - } - } - } - } - - label?.let { - Spacer(Modifier.width(8.dp)) - Text( - modifier = Modifier.offset(y = (-1).dp), - text = it, - style = FluentTheme.typography.body.copy(color = color.labelTextColor) - ) - } - } -} - -typealias CheckBoxColorScheme = PentaVisualScheme - -@Immutable -data class CheckBoxColor( - val fillColor: Color, - val contentColor: Color, - val borderColor: Color, - val labelTextColor: Color -) - -object CheckBoxDefaults { - - @Stable - @Composable - fun defaultCheckBoxColors( - default: CheckBoxColor = CheckBoxColor( - fillColor = FluentTheme.colors.controlAlt.secondary, - contentColor = FluentTheme.colors.text.onAccent.primary, - borderColor = FluentTheme.colors.controlStrong.default, - labelTextColor = FluentTheme.colors.text.text.primary - ), - hovered: CheckBoxColor = default.copy( - fillColor = FluentTheme.colors.controlAlt.tertiary, - ), - pressed: CheckBoxColor = default.copy( - fillColor = FluentTheme.colors.controlAlt.quaternary, - contentColor = FluentTheme.colors.text.onAccent.secondary - ), - disabled: CheckBoxColor = CheckBoxColor( - fillColor = FluentTheme.colors.controlAlt.disabled, - contentColor = FluentTheme.colors.text.onAccent.disabled, - borderColor = FluentTheme.colors.controlStrong.disabled, - labelTextColor = FluentTheme.colors.text.text.primary - ) - ) = CheckBoxColorScheme( - default = default, - hovered = hovered, - pressed = pressed, - disabled = disabled - ) - - @Stable - @Composable - fun selectedCheckBoxColors( - default: CheckBoxColor = CheckBoxColor( - fillColor = FluentTheme.colors.fillAccent.default, - contentColor = FluentTheme.colors.text.onAccent.primary, - borderColor = Color.Transparent, - labelTextColor = FluentTheme.colors.text.text.primary - ), - hovered: CheckBoxColor = default.copy( - fillColor = FluentTheme.colors.fillAccent.secondary, - ), - pressed: CheckBoxColor = default.copy( - fillColor = FluentTheme.colors.fillAccent.tertiary, - contentColor = FluentTheme.colors.text.onAccent.secondary - ), - disabled: CheckBoxColor = CheckBoxColor( - fillColor = FluentTheme.colors.fillAccent.disabled, - contentColor = FluentTheme.colors.text.onAccent.disabled, - borderColor = FluentTheme.colors.fillAccent.disabled, - labelTextColor = FluentTheme.colors.text.text.primary - ) - ) = CheckBoxColorScheme( - default = default, - hovered = hovered, - pressed = pressed, - disabled = disabled - ) -} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Dialog.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Dialog.kt deleted file mode 100644 index 416fd461..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Dialog.kt +++ /dev/null @@ -1,251 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.animation.AnimatedVisibility -import androidx.compose.animation.animateColorAsState -import androidx.compose.animation.core.MutableTransitionState -import androidx.compose.animation.core.tween -import androidx.compose.animation.fadeIn -import androidx.compose.animation.fadeOut -import androidx.compose.animation.scaleIn -import androidx.compose.animation.scaleOut -import androidx.compose.foundation.BorderStroke -import androidx.compose.foundation.background -import androidx.compose.foundation.layout.Arrangement -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.Column -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.Spacer -import androidx.compose.foundation.layout.fillMaxSize -import androidx.compose.foundation.layout.height -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.layout.widthIn -import androidx.compose.foundation.layout.wrapContentSize -import androidx.compose.foundation.shape.RoundedCornerShape -import androidx.compose.runtime.Composable -import androidx.compose.runtime.CompositionLocalProvider -import androidx.compose.runtime.LaunchedEffect -import androidx.compose.runtime.Stable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.runtime.staticCompositionLocalOf -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.draw.clip -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.input.pointer.pointerInput -import androidx.compose.ui.unit.Dp -import androidx.compose.ui.unit.dp -import androidx.compose.ui.window.Popup -import androidx.compose.ui.window.PopupPositionProvider -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.LocalContentColor -import com.konyaco.fluent.LocalTextStyle -import com.konyaco.fluent.animation.FluentDuration -import com.konyaco.fluent.animation.FluentEasing -import com.konyaco.fluent.background.BackgroundSizing -import com.konyaco.fluent.background.Layer -import com.konyaco.fluent.background.Mica -import kotlinx.coroutines.CancellableContinuation -import kotlinx.coroutines.suspendCancellableCoroutine -import kotlinx.coroutines.sync.Mutex -import kotlinx.coroutines.sync.withLock -import kotlin.coroutines.resume - -internal expect val DialogPopupPositionProvider: PopupPositionProvider - -@Stable -class DialogSize( - val min: Dp, - val max: Dp -) { - companion object { - val Max = DialogSize(540.dp, 540.dp) - val Standard = DialogSize(448.dp, 448.dp) - val Min = DialogSize(320.dp, 320.dp) - } -} - -@Composable -fun FluentDialog( - visible: Boolean, - size: DialogSize = DialogSize.Standard, - content: @Composable () -> Unit -) { - val visibleState = remember { MutableTransitionState(false) } - - LaunchedEffect(visible) { - visibleState.targetState = visible - } - - if (visibleState.currentState || visibleState.targetState) Popup( - popupPositionProvider = DialogPopupPositionProvider - ) { - val scrim by animateColorAsState( - if (visible) Color.Black.copy(0.3f) else Color.Transparent, animationSpec = tween( - easing = FluentEasing.FastInvokeEasing, - durationMillis = FluentDuration.ShortDuration - ) - ) - val tween = tween( - easing = FluentEasing.FastInvokeEasing, - durationMillis = FluentDuration.ShortDuration - ) - Box( - Modifier.fillMaxSize() - .background(scrim) - .pointerInput(Unit) {}, - Alignment.Center - ) { - AnimatedVisibility( - visibleState = visibleState, - enter = fadeIn(tween) + scaleIn(tween, initialScale = 1.05f), - exit = fadeOut(tween) + scaleOut(tween, targetScale = 1.05f) - ) { - Mica(Modifier.wrapContentSize().clip(RoundedCornerShape(8.dp))) { - Layer( - Modifier.wrapContentSize().widthIn(size.min, size.max), - shape = RoundedCornerShape(size = 8.dp), - border = BorderStroke(1.dp, FluentTheme.colors.stroke.surface.default), - backgroundSizing = BackgroundSizing.InnerBorderEdge, - color = FluentTheme.colors.background.solid.base, - contentColor = FluentTheme.colors.text.text.primary, - content = content - ) - } - } - } - } -} - -enum class ContentDialogButton { - Primary, Secondary, Close -} - -@Composable -fun ContentDialog( - title: String, - visible: Boolean, - content: @Composable () -> Unit, - primaryButtonText: String, - secondaryButtonText: String? = null, - closeButtonText: String? = null, - onButtonClick: (ContentDialogButton) -> Unit, - size: DialogSize = DialogSize.Standard -) { - FluentDialog(visible, size) { - Column { - Column(Modifier.background(FluentTheme.colors.background.layer.alt).padding(24.dp)) { - Text( - style = FluentTheme.typography.subtitle, - text = title, - ) - Spacer(Modifier.height(12.dp)) - CompositionLocalProvider( - LocalTextStyle provides FluentTheme.typography.body, - LocalContentColor provides FluentTheme.colors.text.text.primary - ) { - content() - } - } - // Divider - Box(Modifier.height(1.dp).background(FluentTheme.colors.stroke.surface.default)) - // Button Grid - Box(Modifier.height(80.dp).padding(horizontal = 25.dp), Alignment.CenterEnd) { - Row(horizontalArrangement = Arrangement.spacedBy(8.dp)) { - AccentButton( - modifier = Modifier.weight(1f), - onClick = { onButtonClick(ContentDialogButton.Primary) } - ) { - Text(primaryButtonText) - } - if (secondaryButtonText != null) Button( - modifier = Modifier.weight(1f), - onClick = { onButtonClick(ContentDialogButton.Secondary) } - ) { - Text(secondaryButtonText) - } - if (closeButtonText != null) Button( - modifier = Modifier.weight(1f), - onClick = { onButtonClick(ContentDialogButton.Close) } - ) { - Text(closeButtonText) - } - } - } - } - } -} - -@Composable -fun ContentDialogHost(state: ContentDialogHostState) { - val data = state.currentData - - if (data != null) { - var visible by remember(data) { mutableStateOf(true) } - - ContentDialog( - title = data.title, - visible = visible, - size = data.size, - content = { Text(data.contentText) }, - primaryButtonText = data.primaryButtonText, - secondaryButtonText = data.secondaryButtonText, - closeButtonText = data.closeButtonText, - onButtonClick = { - visible = false - if (data.continuation.isActive) { - data.continuation.resume(it) - } - } - ) - } -} - -val LocalContentDialog = staticCompositionLocalOf { error("Not provided") } - -class ContentDialogHostState { - private val mutex = Mutex() - - internal var currentData by mutableStateOf(null) - private set - - suspend fun show( - title: String, - contentText: String, - primaryButtonText: String, - secondaryButtonText: String? = null, - closeButtonText: String? = null, - size: DialogSize = DialogSize.Standard, - ): ContentDialogButton { - mutex.withLock { - try { - return suspendCancellableCoroutine { cont -> - currentData = DialogData( - title, - contentText, - primaryButtonText, - secondaryButtonText, - closeButtonText, - size, - cont - ) - } - } finally { - // FIXME: If set null instantly, exit animation will be terminated -// currentData = null - } - } - } - - internal class DialogData( - val title: String, - val contentText: String, - val primaryButtonText: String, - val secondaryButtonText: String? = null, - val closeButtonText: String? = null, - val size: DialogSize = DialogSize.Standard, - val continuation: CancellableContinuation - ) -} diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Dropdown.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Dropdown.kt deleted file mode 100644 index 9014fe52..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Dropdown.kt +++ /dev/null @@ -1,154 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.animation.AnimatedVisibility -import androidx.compose.animation.core.MutableTransitionState -import androidx.compose.animation.core.tween -import androidx.compose.animation.expandVertically -import androidx.compose.animation.fadeOut -import androidx.compose.foundation.BorderStroke -import androidx.compose.foundation.layout.Arrangement -import androidx.compose.foundation.layout.Column -import androidx.compose.foundation.layout.ColumnScope -import androidx.compose.foundation.layout.IntrinsicSize -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.RowScope -import androidx.compose.foundation.layout.defaultMinSize -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.layout.width -import androidx.compose.foundation.rememberScrollState -import androidx.compose.foundation.shape.RoundedCornerShape -import androidx.compose.foundation.verticalScroll -import androidx.compose.runtime.Composable -import androidx.compose.runtime.MutableState -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.ui.Modifier -import androidx.compose.ui.draw.clip -import androidx.compose.ui.draw.shadow -import androidx.compose.ui.graphics.TransformOrigin -import androidx.compose.ui.input.key.KeyEvent -import androidx.compose.ui.platform.LocalDensity -import androidx.compose.ui.unit.Density -import androidx.compose.ui.unit.DpOffset -import androidx.compose.ui.unit.IntOffset -import androidx.compose.ui.unit.IntRect -import androidx.compose.ui.unit.IntSize -import androidx.compose.ui.unit.LayoutDirection -import androidx.compose.ui.unit.dp -import androidx.compose.ui.window.PopupPositionProvider -import androidx.compose.ui.window.PopupProperties -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.animation.FluentDuration -import com.konyaco.fluent.animation.FluentEasing -import com.konyaco.fluent.background.BackgroundSizing -import com.konyaco.fluent.background.Layer -import com.konyaco.fluent.background.Mica - -@Composable -fun DropdownMenu( - expanded: Boolean, - onDismissRequest: () -> Unit, - modifier: Modifier = Modifier, - focusable: Boolean = false, - onPreviewKeyEvent: ((KeyEvent) -> Boolean) = { false }, - onKeyEvent: ((KeyEvent) -> Boolean) = { false }, - offset: DpOffset = DpOffset(0.dp, 0.dp), // TODO: Offset - content: @Composable ColumnScope.() -> Unit -) { - val expandedStates = remember { MutableTransitionState(false) } - expandedStates.targetState = expanded - - if (expandedStates.currentState || expandedStates.targetState) { - val transformOriginState = remember { mutableStateOf(TransformOrigin.Center) } // TODO: Transform Origin - val density = LocalDensity.current - - val popupPositionProvider = DropdownMenuPositionProvider(density, offset) - - Popup( - properties = PopupProperties(focusable = focusable), - onDismissRequest = onDismissRequest, - onKeyEvent = onKeyEvent, - onPreviewKeyEvent = onPreviewKeyEvent, - popupPositionProvider = popupPositionProvider, - ) { - DropdownMenuContent( - expandedStates = expandedStates, - transformOriginState = transformOriginState, - modifier = modifier, - content = content - ) - } - } -} - -internal class DropdownMenuPositionProvider(val density: Density, val offset: DpOffset) : PopupPositionProvider { - override fun calculatePosition( - anchorBounds: IntRect, - windowSize: IntSize, - layoutDirection: LayoutDirection, - popupContentSize: IntSize - ): IntOffset { - val xCenter = (anchorBounds.right + anchorBounds.left) / 2 - val x = xCenter - (popupContentSize.width / 2) - val gap = with(density) { 4.dp.roundToPx() } - - val topSpace = anchorBounds.top - val bottomSpace = windowSize.height - anchorBounds.bottom - val needSpace = popupContentSize.height + gap - - val popupToTop = bottomSpace < needSpace && topSpace > needSpace - - val y = if(popupToTop) { - anchorBounds.top - needSpace - } else { - anchorBounds.bottom + gap - } - with(density) { - offset.x.roundToPx() - offset.y.roundToPx() - return IntOffset(x + offset.x.roundToPx(), y + offset.y.roundToPx()) - } - } -} - -@Composable -internal fun DropdownMenuContent( - expandedStates: MutableTransitionState, - transformOriginState: MutableState, - modifier: Modifier = Modifier, - content: @Composable ColumnScope.() -> Unit -) { - AnimatedVisibility( - visibleState = expandedStates, - enter = expandVertically( - tween(FluentDuration.ShortDuration, easing = FluentEasing.FastInvokeEasing) - ), // TODO: If popup direction is upward, the expanding animation should be bottom-to-top. - exit = fadeOut(tween(FluentDuration.ShortDuration, easing = FluentEasing.FastDismissEasing)) - ) { - Mica(Modifier.shadow(8.dp, RoundedCornerShape(8.dp)).clip(RoundedCornerShape(8.dp))) { - // TODO: Dropdown should use Acrylic material. - Layer( - shape = RoundedCornerShape(8.dp), - border = BorderStroke(1.dp, FluentTheme.colors.stroke.surface.flyout), - backgroundSizing = BackgroundSizing.InnerBorderEdge - ) { - Column( - modifier = modifier - .padding(vertical = 4.dp, horizontal = 4.dp) - .width(IntrinsicSize.Max) - .verticalScroll(rememberScrollState()), - verticalArrangement = Arrangement.spacedBy(4.dp), - content = content - ) - } - } - } -} - -@Composable -fun DropdownMenuItem(onClick: () -> Unit, content: @Composable RowScope.() -> Unit) { - SubtleButton(modifier = Modifier.defaultMinSize(minWidth = 100.dp), onClick = onClick, iconOnly = true, content = { - Row(modifier = Modifier.fillMaxWidth().padding(horizontal = 8.dp), content = content) - }) -} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Flyout.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Flyout.kt deleted file mode 100644 index 8fb7ef3f..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Flyout.kt +++ /dev/null @@ -1,303 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.animation.* -import androidx.compose.animation.core.MutableTransitionState -import androidx.compose.animation.core.tween -import androidx.compose.foundation.BorderStroke -import androidx.compose.foundation.border -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.PaddingValues -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.shape.RoundedCornerShape -import androidx.compose.runtime.Composable -import androidx.compose.runtime.MutableState -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Modifier -import androidx.compose.ui.draw.alpha -import androidx.compose.ui.draw.clip -import androidx.compose.ui.graphics.Shape -import androidx.compose.ui.graphics.graphicsLayer -import androidx.compose.ui.input.key.KeyEvent -import androidx.compose.ui.unit.Dp -import androidx.compose.ui.unit.dp -import androidx.compose.ui.window.PopupProperties -import com.konyaco.fluent.* -import com.konyaco.fluent.LocalAcrylicPopupEnabled -import com.konyaco.fluent.LocalWindowAcrylicContainer -import com.konyaco.fluent.animation.FluentDuration -import com.konyaco.fluent.animation.FluentEasing -import com.konyaco.fluent.background.AcrylicDefaults -import com.konyaco.fluent.background.BackgroundSizing -import com.konyaco.fluent.background.Layer -import com.konyaco.fluent.background.Mica - -@Composable -fun FlyoutContainer( - flyout: @Composable FlyoutContainerScope.() -> Unit, - modifier: Modifier = Modifier, - initialVisible: Boolean = false, - placement: FlyoutPlacement = FlyoutPlacement.Auto, - adaptivePlacement: Boolean = false, - onKeyEvent: ((keyEvent: KeyEvent) -> Boolean)? = null, - onPreviewKeyEvent: ((keyEvent: KeyEvent) -> Boolean)? = null, - content: @Composable FlyoutContainerScope.() -> Unit -) { - BasicFlyoutContainer( - flyout = { - Flyout( - visible = isFlyoutVisible, - onDismissRequest = { isFlyoutVisible = false }, - placement = placement, - adaptivePlacement = adaptivePlacement, - onKeyEvent = onKeyEvent, - onPreviewKeyEvent = onPreviewKeyEvent, - content = { flyout() } - ) - }, - content = content, - modifier = modifier, - initialVisible = initialVisible - ) -} - -@Composable -internal fun BasicFlyoutContainer( - flyout: @Composable FlyoutContainerScope.() -> Unit, - modifier: Modifier = Modifier, - initialVisible: Boolean = false, - content: @Composable FlyoutContainerScope.() -> Unit -) { - val flyoutState = remember(initialVisible) { - mutableStateOf(initialVisible) - } - val flyoutScope = remember(flyoutState) { - FlyoutContainerScopeImpl(flyoutState) - } - Box(modifier = modifier) { - flyoutScope.content() - flyoutScope.flyout() - } -} - -enum class FlyoutPlacement { - Auto, - Full, - Start, - StartAlignedTop, - StartAlignedBottom, - Top, - TopAlignedStart, - TopAlignedEnd, - End, - EndAlignedTop, - EndAlignedBottom, - Bottom, - BottomAlignedStart, - BottomAlignedEnd -} - -@Composable -fun Flyout( - visible: Boolean, - onDismissRequest: () -> Unit, - modifier: Modifier = Modifier, - placement: FlyoutPlacement = FlyoutPlacement.Auto, - adaptivePlacement: Boolean = false, - shape: Shape = RoundedCornerShape(8.dp), - onKeyEvent: ((keyEvent: KeyEvent) -> Boolean)? = null, - onPreviewKeyEvent: ((keyEvent: KeyEvent) -> Boolean)? = null, - content: @Composable () -> Unit -) { - BasicFlyout( - visible = visible, - onDismissRequest = onDismissRequest, - modifier = modifier, - positionProvider = rememberFlyoutPositionProvider( - initialPlacement = placement, - adaptivePlacement = adaptivePlacement - ), - shape = shape, - onKeyEvent = onKeyEvent, - onPreviewKeyEvent = onPreviewKeyEvent, - content = content - ) -} - -@Composable -internal fun BasicFlyout( - visible: Boolean, - onDismissRequest: () -> Unit, - modifier: Modifier = Modifier, - enterPlacementAnimation: (placement: FlyoutPlacement) -> EnterTransition = ::defaultFlyoutEnterPlacementAnimation, - shape: Shape = RoundedCornerShape(8.dp), - contentPadding: PaddingValues = PaddingValues(12.dp), - positionProvider: FlyoutPositionProvider = rememberFlyoutPositionProvider(), - onKeyEvent: ((keyEvent: KeyEvent) -> Boolean)? = null, - onPreviewKeyEvent: ((keyEvent: KeyEvent) -> Boolean)? = null, - content: @Composable () -> Unit -) { - val visibleState = remember { - MutableTransitionState(false) - } - visibleState.targetState = visible - if (visibleState.currentState || visibleState.targetState) { - Popup( - onDismissRequest = onDismissRequest, - properties = PopupProperties( - clippingEnabled = false, - focusable = onKeyEvent != null || onPreviewKeyEvent != null - ), - popupPositionProvider = positionProvider, - onKeyEvent = onKeyEvent, - onPreviewKeyEvent = onPreviewKeyEvent - ) { - if (positionProvider.applyAnimation) { - FlyoutContent( - modifier = modifier, - visibleState = visibleState, - placement = positionProvider.targetPlacement, - shape = shape, - content = content, - contentPadding = contentPadding, - enterPlacementAnimation = enterPlacementAnimation - ) - } else { - /* this is the workaround for placement animation */ - Box( - Modifier.alpha(0f) - .padding(contentPadding) - .padding(flyoutPopPaddingFixShadowRender) - ) { - content() - } - } - } - } -} - -@Composable -internal fun FlyoutContent( - visibleState: MutableTransitionState, - modifier: Modifier = Modifier, - placement: FlyoutPlacement = FlyoutPlacement.Auto, - enterPlacementAnimation: (placement: FlyoutPlacement) -> EnterTransition = ::defaultFlyoutEnterPlacementAnimation, - shape: Shape = RoundedCornerShape(8.dp), - contentPadding: PaddingValues = PaddingValues(12.dp), - content: @Composable () -> Unit -) { - AcrylicPopupContent( - visibleState = visibleState, - enterTransition = enterPlacementAnimation(placement), - exitTransition = fadeOut(flyoutExitSpec()), - content = content, - contentPadding = contentPadding, - elevation = 8.dp, - shape = shape, - modifier = modifier - ) -} - -@OptIn(ExperimentalFluentApi::class) -@Composable -internal fun AcrylicPopupContent( - visibleState: MutableTransitionState, - enterTransition: EnterTransition, - exitTransition: ExitTransition, - modifier: Modifier = Modifier, - elevation: Dp, - shape: Shape, - contentPadding: PaddingValues, - content: @Composable () -> Unit -) { - with(LocalWindowAcrylicContainer.current) { - val userAcrylic = LocalAcrylicPopupEnabled.current - AnimatedVisibility( - visibleState = visibleState, - enter = enterTransition, - exit = exitTransition, - modifier = Modifier.then( - if (userAcrylic) { - Modifier.padding(flyoutPopPaddingFixShadowRender) - } else { - Modifier - } - ) - ) { - if (!userAcrylic) { - Mica(modifier = Modifier.padding(flyoutPopPaddingFixShadowRender).graphicsLayer { - this.shape = shape - shadowElevation = elevation.toPx() - clip = true - }) { - Layer( - shape = shape, - backgroundSizing = BackgroundSizing.OuterBorderEdge - ) { - Box(modifier = modifier.padding(contentPadding)) { - content() - } - } - } - } else { - Box( - modifier = modifier - .border(BorderStroke(1.dp, FluentTheme.colors.stroke.card.default), shape = shape) - .acrylicOverlay( - tint = AcrylicDefaults.tintColor, - enabled = { visibleState.targetState || (visibleState.currentState && visibleState.isIdle) }, - shape = shape - ) - .padding(contentPadding) - .clip(shape) - ) { - content() - } - } - } - } -} - -private class FlyoutContainerScopeImpl(visibleState: MutableState) : FlyoutContainerScope { - - override var isFlyoutVisible: Boolean by visibleState -} - -interface FlyoutContainerScope { - - var isFlyoutVisible: Boolean - -} - -//TODO Remove when shadow can show with animated visibility -internal val flyoutPopPaddingFixShadowRender = 16.dp -internal val flyoutDefaultPadding = 8.dp - -internal fun flyoutEnterSpec() = - tween(FluentDuration.ShortDuration, easing = FluentEasing.FastInvokeEasing) - -internal fun flyoutExitSpec() = - tween(FluentDuration.ShortDuration, easing = FluentEasing.FastDismissEasing) - -internal fun defaultFlyoutEnterPlacementAnimation(placement: FlyoutPlacement): EnterTransition { - return fadeIn(flyoutEnterSpec()) + when (placement) { - FlyoutPlacement.Auto, FlyoutPlacement.Full -> scaleIn(flyoutEnterSpec()) - FlyoutPlacement.Top, FlyoutPlacement.TopAlignedEnd, FlyoutPlacement.TopAlignedStart -> slideInVertically( - flyoutEnterSpec() - ) { (it / 2f).toInt() } - - FlyoutPlacement.Bottom, FlyoutPlacement.BottomAlignedEnd, FlyoutPlacement.BottomAlignedStart -> slideInVertically( - flyoutEnterSpec() - ) - - FlyoutPlacement.Start, FlyoutPlacement.StartAlignedTop, FlyoutPlacement.StartAlignedBottom -> slideInHorizontally( - flyoutEnterSpec() - ) { (it / 2f).toInt() } - - FlyoutPlacement.End, FlyoutPlacement.EndAlignedTop, FlyoutPlacement.EndAlignedBottom -> slideInHorizontally( - flyoutEnterSpec() - ) - } -} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/FontIcon.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/FontIcon.kt deleted file mode 100644 index 1a1b3565..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/FontIcon.kt +++ /dev/null @@ -1,70 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.foundation.layout.height -import androidx.compose.foundation.layout.size -import androidx.compose.runtime.Composable -import androidx.compose.runtime.staticCompositionLocalOf -import androidx.compose.ui.Modifier -import androidx.compose.ui.graphics.vector.ImageVector -import androidx.compose.ui.platform.LocalDensity -import androidx.compose.ui.text.font.FontFamily -import androidx.compose.ui.unit.Dp -import androidx.compose.ui.unit.TextUnit -import androidx.compose.ui.unit.sp - -//TODO Public -@Composable -internal fun FontIcon( - glyph: Char, - modifier: Modifier = Modifier, - iconSize: TextUnit = FontIconDefaults.fontSizeStandard, - fallback: (@Composable () -> Unit)? = null, -) { - if (LocalFontIconFontFamily.current != null || fallback == null) { - Text( - text = glyph.toString(), - fontFamily = LocalFontIconFontFamily.current, - fontSize = iconSize, - modifier = Modifier.then(modifier) - .height(with(LocalDensity.current) { iconSize.toDp() }), - onTextLayout = { - } - ) - } else { - fallback() - } -} - -@Composable -internal fun FontIcon( - glyph: Char, - vector: ImageVector?, - contentDescription: String?, - modifier: Modifier = Modifier, - iconSize: TextUnit = FontIconDefaults.fontSizeStandard, - vectorSize: Dp = with(LocalDensity.current) { iconSize.toDp() } -) { - FontIcon( - glyph = glyph, - modifier = modifier, - iconSize = iconSize, - fallback = if (vector == null) { - null - } else { - { Icon(vector, contentDescription, modifier = Modifier.size(vectorSize)) } - } - ) -} - -internal object FontIconDefaults { - val fontSizeStandard = 16.sp - val fontSizeSmall = 12.sp -} - -@Composable -internal expect fun ProvideFontIcon( - content: @Composable () -> Unit -) - -internal val LocalFontIconFontFamily = - staticCompositionLocalOf { error("No Font provide for load font icon") } diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Icon.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Icon.kt deleted file mode 100644 index f01e5a06..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Icon.kt +++ /dev/null @@ -1,77 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.size -import androidx.compose.runtime.Composable -import androidx.compose.ui.Modifier -import androidx.compose.ui.draw.paint -import androidx.compose.ui.geometry.Size -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.graphics.ColorFilter -import androidx.compose.ui.graphics.painter.Painter -import androidx.compose.ui.graphics.toolingGraphicsLayer -import androidx.compose.ui.graphics.vector.ImageVector -import androidx.compose.ui.graphics.vector.rememberVectorPainter -import androidx.compose.ui.layout.ContentScale -import androidx.compose.ui.semantics.Role -import androidx.compose.ui.semantics.contentDescription -import androidx.compose.ui.semantics.role -import androidx.compose.ui.semantics.semantics -import androidx.compose.ui.unit.dp -import com.konyaco.fluent.LocalContentAlpha -import com.konyaco.fluent.LocalContentColor - - -@Composable -fun Icon( - imageVector: ImageVector, - contentDescription: String?, - modifier: Modifier = Modifier, - tint: Color = LocalContentColor.current.copy(LocalContentAlpha.current) -) { - val painter = rememberVectorPainter(imageVector) - Icon(painter, tint, contentDescription, modifier) -} - -@Composable -fun Icon( - painter: Painter, - tint: Color = LocalContentColor.current.copy(LocalContentAlpha.current), - contentDescription: String?, - modifier: Modifier = Modifier -) { - // TODO: b/149735981 semantics for content description - val colorFilter = if (tint == Color.Unspecified) null else ColorFilter.tint(tint) - val semantics = if (contentDescription != null) { - Modifier.semantics { - this.contentDescription = contentDescription - this.role = Role.Image - } - } else { - Modifier - } - Box( - modifier.toolingGraphicsLayer() - .defaultSizeFor(painter) - .paint( - painter, - colorFilter = colorFilter, - contentScale = ContentScale.Fit - ) - .then(semantics) - ) -} - -private fun Modifier.defaultSizeFor(painter: Painter) = - this.then( - if (painter.intrinsicSize == Size.Unspecified || painter.intrinsicSize.isInfinite()) { - DefaultIconSizeModifier - } else { - Modifier - } - ) - -private fun Size.isInfinite() = width.isInfinite() && height.isInfinite() - -// Default icon size, for icons with no intrinsic size information -private val DefaultIconSizeModifier = Modifier.size(16.dp) diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/ListItem.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/ListItem.kt deleted file mode 100644 index 3ab032d6..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/ListItem.kt +++ /dev/null @@ -1,355 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.animation.animateColorAsState -import androidx.compose.animation.core.animateDp -import androidx.compose.animation.core.tween -import androidx.compose.animation.core.updateTransition -import androidx.compose.foundation.BorderStroke -import androidx.compose.foundation.background -import androidx.compose.foundation.clickable -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.foundation.layout.Arrangement -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.defaultMinSize -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.height -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.layout.size -import androidx.compose.foundation.layout.wrapContentSize -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.foundation.shape.RoundedCornerShape -import androidx.compose.runtime.Composable -import androidx.compose.runtime.CompositionLocalProvider -import androidx.compose.runtime.Immutable -import androidx.compose.runtime.Stable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.remember -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.graphics.Brush -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.graphics.SolidColor -import androidx.compose.ui.text.font.FontWeight -import androidx.compose.ui.unit.dp -import androidx.compose.ui.unit.sp -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.LocalCompactMode -import com.konyaco.fluent.LocalContentAlpha -import com.konyaco.fluent.LocalContentColor -import com.konyaco.fluent.LocalTextStyle -import com.konyaco.fluent.animation.FluentDuration -import com.konyaco.fluent.animation.FluentEasing -import com.konyaco.fluent.background.BackgroundSizing -import com.konyaco.fluent.background.Layer -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.regular.Checkmark -import com.konyaco.fluent.icons.regular.ChevronRight -import com.konyaco.fluent.scheme.PentaVisualScheme -import com.konyaco.fluent.scheme.VisualStateScheme -import com.konyaco.fluent.scheme.collectVisualState - -/** - * Design guide: [WinUI 3 Figma design file](https://www.figma.com/community/file/1159947337437047524)/Primitives/ListItem - */ -@Composable -fun ListItem( - selected: Boolean, - onSelectedChanged: (Boolean) -> Unit, - text: @Composable () -> Unit, - modifier: Modifier = Modifier, - selectionType: ListItemSelectionType = ListItemSelectionType.Standard, - icon: (@Composable () -> Unit)? = null, - training: (@Composable () -> Unit)? = null, - interaction: MutableInteractionSource? = null, - enabled: Boolean = true, - colors: VisualStateScheme = if (selected) { - ListItemDefaults.selectedListItemColors() - } else { - ListItemDefaults.defaultListItemColors() - }, -) { - ListItem( - indicator = if (selectionType == ListItemSelectionType.Standard) { - { ListItemDefaults.Indicator(selected, enabled) } - } else { - null - }, - selectionIcon = when (selectionType) { - ListItemSelectionType.Standard -> null - ListItemSelectionType.Check -> { { - if (selected) { ListItemDefaults.CheckIcon() } - } } - ListItemSelectionType.Radio -> { { - if (selected) { ListItemDefaults.RadioIcon() } - } } - }, - text = text, - icon = icon, - training = training, - interaction = interaction, - enabled = enabled, - onClick = { onSelectedChanged(!selected) }, - colors = colors, - modifier = modifier - ) -} - -/** - * Design guide: [WinUI 3 Figma design file](https://www.figma.com/community/file/1159947337437047524)/Primitives/ListItem - */ -@Composable -fun ListItem( - onClick: () -> Unit, - text: @Composable () -> Unit, - modifier: Modifier = Modifier, - selectionIcon: (@Composable () -> Unit)? = null, - indicator: (@Composable () -> Unit)? = null, - icon: (@Composable () -> Unit)? = null, - training: (@Composable () -> Unit)? = null, - interaction: MutableInteractionSource? = null, - enabled: Boolean = true, - colors: VisualStateScheme = ListItemDefaults.defaultListItemColors(), -) { - val actualInteraction = interaction ?: remember { MutableInteractionSource() } - val color = colors.schemeFor(actualInteraction.collectVisualState(!enabled)) - - val fillColor by animateColorAsState( - color.fillColor, - animationSpec = tween(FluentDuration.QuickDuration, easing = FluentEasing.FastInvokeEasing) - ) - - val contentColor by animateColorAsState( - color.contentColor, - animationSpec = tween(FluentDuration.QuickDuration, easing = FluentEasing.FastInvokeEasing) - ) - Layer( - modifier = modifier - .defaultMinSize(minWidth = 108.dp, if (LocalCompactMode.current) ListItemCompactHeight else ListItemHeight) - .padding(horizontal = 5.dp, vertical = 2.dp) - .fillMaxWidth(), - shape = RoundedCornerShape(size = 4.dp), - color = fillColor, - contentColor = contentColor, - border = BorderStroke(1.dp, color.borderBrush), - backgroundSizing = BackgroundSizing.OuterBorderEdge - ) { - Box( - contentAlignment = Alignment.CenterStart, - modifier = Modifier - ) { - indicator?.invoke() - Row( - modifier = Modifier - .clickable( - onClick = onClick, - interactionSource = actualInteraction, - indication = null, - enabled = enabled - ) - .padding(horizontal = 12.dp), - horizontalArrangement = Arrangement.spacedBy(12.dp, Alignment.Start), - verticalAlignment = Alignment.CenterVertically - ) { - if (selectionIcon != null && indicator == null) { - Box( - contentAlignment = Alignment.CenterStart, - modifier = Modifier.padding(horizontal = 2.dp).size(12.dp) - ) { - selectionIcon() - } - } - if (icon != null) { - Box( - modifier = Modifier.size(ListItemDefaults.iconSize), - contentAlignment = Alignment.Center - ) { - icon() - } - } - Box(modifier = Modifier.weight(1f), contentAlignment = Alignment.CenterStart) { - text() - } - CompositionLocalProvider( - LocalContentColor provides color.trainingColor, - LocalContentAlpha provides color.trainingColor.alpha, - LocalTextStyle provides FluentTheme.typography.caption.copy(fontWeight = FontWeight.Normal) - ) { - training?.invoke() - } - } - } - } -} - -@Composable -fun ListHeader( - content: @Composable () -> Unit, - modifier: Modifier = Modifier, - color: Color = FluentTheme.colors.text.text.secondary -) { - Box( - contentAlignment = Alignment.CenterStart, - modifier = modifier - .padding(horizontal = 16.dp) - .height( - height = if (LocalCompactMode.current) { - ListItemCompactHeight - } else { - ListItemHeight - } - ) - ) { - CompositionLocalProvider( - LocalTextStyle provides FluentTheme.typography.caption.copy(fontWeight = FontWeight.Normal), - LocalContentAlpha provides color.alpha, - LocalContentColor provides color, - content = content - ) - } -} - -@Composable -fun ListItemSeparator(modifier: Modifier) { - Box( - Modifier - .then(modifier) - .padding(top = 1.dp, bottom = 2.dp) - .fillMaxWidth().height(1.dp) - .background(FluentTheme.colors.stroke.divider.default) - ) -} - -object ListItemDefaults { - - val iconSize = 16.dp - - @Composable - fun CheckIcon() { - FontIcon( - glyph = '\uE8FB', - vector = Icons.Default.Checkmark, - contentDescription = "Check", - iconSize = 12.sp, - vectorSize = 12.dp - ) - } - - @Composable - fun RadioIcon() { - Box(modifier = Modifier - .size(12.dp) - .wrapContentSize(Alignment.Center) - .size(4.dp) - .background(LocalContentColor.current.copy(LocalContentAlpha.current), CircleShape) - ) - } - - @Composable - fun CascadingIcon() { - FontIcon( - glyph = '\uE974', - vector = Icons.Default.ChevronRight, - contentDescription = "cascading", - vectorSize = 12.dp, - iconSize = 12.sp - ) - } - - @Composable - fun Indicator( - visible: Boolean = true, - enabled: Boolean = true, - color: Color = FluentTheme.colors.fillAccent.default, - disabledColor: Color = FluentTheme.colors.fillAccent.disabled - ) { - val height by updateTransition(visible).animateDp(transitionSpec = { - if (targetState) tween(FluentDuration.ShortDuration, easing = FluentEasing.FastInvokeEasing) - else tween(FluentDuration.QuickDuration, easing = FluentEasing.SoftDismissEasing) - }, targetValueByState = { if (it) 16.dp else 0.dp }) - Box( - modifier = Modifier - .size(width = 3.dp, height = height) - .background( - color = if (enabled) { - color - } else { - disabledColor - }, - shape = CircleShape - ) - ) - - } - - @Composable - @Stable - fun defaultListItemColors( - default: ListItemColor = ListItemColor( - fillColor = FluentTheme.colors.subtleFill.transparent, - contentColor = FluentTheme.colors.text.text.primary, - trainingColor = FluentTheme.colors.text.text.secondary, - borderBrush = SolidColor(Color.Transparent) - ), - hovered: ListItemColor = default.copy( - fillColor = FluentTheme.colors.subtleFill.secondary - ), - pressed: ListItemColor = default.copy( - fillColor = FluentTheme.colors.subtleFill.tertiary, - contentColor = FluentTheme.colors.text.text.secondary - ), - disabled: ListItemColor = default.copy( - fillColor = FluentTheme.colors.subtleFill.disabled, - contentColor = FluentTheme.colors.text.text.disabled, - trainingColor = FluentTheme.colors.text.text.disabled, - ) - ) = ListItemColorScheme( - default = default, - hovered = hovered, - pressed = pressed, - disabled = disabled - ) - - @Composable - @Stable - fun selectedListItemColors( - default: ListItemColor = ListItemColor( - fillColor = FluentTheme.colors.subtleFill.secondary, - contentColor = FluentTheme.colors.text.text.primary, - trainingColor = FluentTheme.colors.text.text.secondary, - borderBrush = SolidColor(Color.Transparent) - ), - hovered: ListItemColor = default.copy( - fillColor = FluentTheme.colors.subtleFill.tertiary - ), - pressed: ListItemColor = default.copy( - contentColor = FluentTheme.colors.text.text.secondary - ), - disabled: ListItemColor = default.copy( - contentColor = FluentTheme.colors.text.text.disabled, - trainingColor = FluentTheme.colors.text.text.disabled, - ) - ) = ListItemColorScheme( - default = default, - hovered = hovered, - pressed = pressed, - disabled = disabled - ) -} - -enum class ListItemSelectionType { - Standard, Radio, Check -} - -@Immutable -data class ListItemColor( - val fillColor: Color, - val contentColor: Color, - val trainingColor: Color, - val borderBrush: Brush -) - -typealias ListItemColorScheme = PentaVisualScheme - -private val ListItemHeight = 40.dp -private val ListItemCompactHeight = 32.dp \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/MenuFlyout.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/MenuFlyout.kt deleted file mode 100644 index 5c3b7ca6..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/MenuFlyout.kt +++ /dev/null @@ -1,374 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.animation.EnterTransition -import androidx.compose.animation.core.tween -import androidx.compose.animation.expandVertically -import androidx.compose.animation.fadeIn -import androidx.compose.animation.scaleIn -import androidx.compose.animation.slideInVertically -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.foundation.interaction.collectIsHoveredAsState -import androidx.compose.foundation.layout.Column -import androidx.compose.foundation.layout.IntrinsicSize -import androidx.compose.foundation.layout.PaddingValues -import androidx.compose.foundation.layout.width -import androidx.compose.foundation.shape.RoundedCornerShape -import androidx.compose.runtime.Composable -import androidx.compose.runtime.LaunchedEffect -import androidx.compose.runtime.Stable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.geometry.Size -import androidx.compose.ui.graphics.Shape -import androidx.compose.ui.input.key.KeyEvent -import androidx.compose.ui.platform.LocalDensity -import androidx.compose.ui.unit.Density -import androidx.compose.ui.unit.IntRect -import androidx.compose.ui.unit.IntSize -import androidx.compose.ui.unit.LayoutDirection -import androidx.compose.ui.unit.dp -import com.konyaco.fluent.animation.FluentDuration -import com.konyaco.fluent.animation.FluentEasing -import com.konyaco.fluent.scheme.VisualStateScheme -import kotlinx.coroutines.delay -import kotlin.uuid.ExperimentalUuidApi -import kotlin.uuid.Uuid - -@Composable -fun MenuFlyoutContainer( - flyout: @Composable MenuFlyoutContainerScope.() -> Unit, - modifier: Modifier = Modifier, - initialVisible: Boolean = false, - placement: FlyoutPlacement = FlyoutPlacement.Auto, - adaptivePlacement: Boolean = false, - onKeyEvent: ((keyEvent: KeyEvent) -> Boolean)? = null, - onPreviewKeyEvent: ((keyEvent: KeyEvent) -> Boolean)? = null, - content: @Composable FlyoutContainerScope.() -> Unit -) { - BasicFlyoutContainer( - flyout = { - MenuFlyout( - visible = isFlyoutVisible, - onDismissRequest = { isFlyoutVisible = false }, - placement = placement, - adaptivePlacement = adaptivePlacement, - content = { - val containerScope = remember(this@BasicFlyoutContainer, this) { - MenuFlyoutContainerScopeImpl(this@BasicFlyoutContainer, this) - } - containerScope.flyout() - }, - onKeyEvent = onKeyEvent, - onPreviewKeyEvent = onPreviewKeyEvent - ) - }, - content = content, - modifier = modifier, - initialVisible = initialVisible - ) -} - -@Composable -fun MenuFlyout( - visible: Boolean, - onDismissRequest: () -> Unit, - modifier: Modifier = Modifier, - placement: FlyoutPlacement = FlyoutPlacement.Auto, - adaptivePlacement: Boolean = false, - shape: Shape = RoundedCornerShape(8.dp), - onKeyEvent: ((keyEvent: KeyEvent) -> Boolean)? = null, - onPreviewKeyEvent: ((keyEvent: KeyEvent) -> Boolean)? = null, - content: @Composable MenuFlyoutScope.() -> Unit -) { - MenuFlyout( - visible = visible, - onDismissRequest = onDismissRequest, - modifier = modifier, - shape = shape, - positionProvider = rememberFlyoutPositionProvider( - placement, - adaptivePlacement = adaptivePlacement - ), - content = content, - onKeyEvent = onKeyEvent, - onPreviewKeyEvent = onPreviewKeyEvent - ) -} - -@Composable -internal fun MenuFlyout( - visible: Boolean, - onDismissRequest: () -> Unit, - modifier: Modifier = Modifier, - shape: Shape = RoundedCornerShape(8.dp), - positionProvider: FlyoutPositionProvider = rememberFlyoutPositionProvider(), - enterPlacementAnimation: (FlyoutPlacement) -> EnterTransition = ::defaultFlyoutEnterPlacementAnimation, - onKeyEvent: ((keyEvent: KeyEvent) -> Boolean)? = null, - onPreviewKeyEvent: ((keyEvent: KeyEvent) -> Boolean)? = null, - content: @Composable MenuFlyoutScope.() -> Unit -) { - BasicFlyout( - visible = visible, - onDismissRequest = onDismissRequest, - modifier = modifier, - enterPlacementAnimation = enterPlacementAnimation, - shape = shape, - positionProvider = positionProvider, - contentPadding = PaddingValues(vertical = 3.dp), - onKeyEvent = onKeyEvent, - onPreviewKeyEvent = onPreviewKeyEvent - ) { - Column( - modifier = Modifier.width(IntrinsicSize.Max) - ) { - val scope = remember { MenuFlyoutScopeImpl() } - scope.content() - } - } -} - -@Composable -fun MenuFlyoutSeparator(modifier: Modifier = Modifier) { - ListItemSeparator(modifier) -} - -@Composable -fun MenuFlyoutScope.MenuFlyoutItem( - selected: Boolean, - onSelectedChanged: (Boolean) -> Unit, - text: @Composable () -> Unit, - modifier: Modifier = Modifier, - icon: (@Composable () -> Unit)? = null, - training: (@Composable () -> Unit)? = null, - interaction: MutableInteractionSource? = null, - enabled: Boolean = true, - selectionType: ListItemSelectionType = ListItemSelectionType.Standard, - colors: VisualStateScheme = if (selected) { - ListItemDefaults.selectedListItemColors() - } else { - ListItemDefaults.defaultListItemColors() - } -) { - val actualInteraction = interaction ?: remember { MutableInteractionSource() } - registerHoveredMenuItem(actualInteraction) {} - ListItem( - selected = selected, - selectionType = selectionType, - onSelectedChanged = onSelectedChanged, - icon = icon, - text = text, - modifier = modifier, - training = training, - interaction = interaction, - enabled = enabled, - colors = colors - ) -} - -@Composable -fun MenuFlyoutScope.MenuFlyoutItem( - onClick: () -> Unit, - text: @Composable () -> Unit, - modifier: Modifier = Modifier, - icon: (@Composable () -> Unit)? = null, - training: (@Composable () -> Unit)? = null, - interaction: MutableInteractionSource? = null, - enabled: Boolean = true, - colors: VisualStateScheme = ListItemDefaults.defaultListItemColors() -) { - val actualInteraction = interaction ?: remember { MutableInteractionSource() } - registerHoveredMenuItem(actualInteraction) {} - ListItem( - onClick = onClick, - icon = icon, - text = text, - modifier = modifier, - training = training, - interaction = interaction, - enabled = enabled, - colors = colors - ) -} - -@Composable -fun MenuFlyoutScope.MenuFlyoutItem( - items: @Composable MenuFlyoutScope.() -> Unit, - text: @Composable () -> Unit, - modifier: Modifier = Modifier, - icon: (@Composable () -> Unit)? = null, - interaction: MutableInteractionSource? = null, - enabled: Boolean = true, - colors: VisualStateScheme = ListItemDefaults.defaultListItemColors(), -) { - val paddingTop = with(LocalDensity.current) { flyoutPopPaddingFixShadowRender.roundToPx() } - BasicFlyoutContainer( - flyout = { - MenuFlyout( - visible = isFlyoutVisible, - onDismissRequest = { isFlyoutVisible = false }, - positionProvider = rememberSubMenuFlyoutPositionProvider(), - enterPlacementAnimation = { - defaultMenuFlyoutEnterPlacementAnimation( - it, - paddingTop - ) - }, - content = items - ) - }, - initialVisible = false - ) { - val interactionSource = interaction ?: remember { MutableInteractionSource() } - MenuFlyoutItem( - onClick = { isFlyoutVisible = !isFlyoutVisible }, - icon = icon, - text = text, - training = { ListItemDefaults.CascadingIcon() }, - modifier = modifier, - interaction = interactionSource, - enabled = enabled, - colors = colors - ) - - registerHoveredMenuItem(interactionSource) { - isFlyoutVisible = it - } - } -} - -private class MenuFlyoutScopeImpl : MenuFlyoutScope { - var latestHoveredItem: String? by mutableStateOf(null) - - @OptIn(ExperimentalUuidApi::class) - @Composable - override fun registerHoveredMenuItem( - interaction: MutableInteractionSource, - onDelayedHoveredChanged: (hovered: Boolean) -> Unit - ) { - val isHovered = interaction.collectIsHoveredAsState() - val uuid = remember { Uuid.random().toString() } - val delayHovered = remember { mutableStateOf(false) } - LaunchedEffect(isHovered.value) { - if (isHovered.value) { - latestHoveredItem = uuid - delay(250) - delayHovered.value = true - } - } - - LaunchedEffect(latestHoveredItem, delayHovered.value) { - if (latestHoveredItem != uuid) { - delayHovered.value = false - } - onDelayedHoveredChanged(latestHoveredItem == uuid && delayHovered.value) - } - } -} - -@Deprecated( - message = "use ListItemColorScheme instead", - replaceWith = ReplaceWith( - expression = "ListItemColorScheme", - imports = arrayOf("com.konyaco.fluent.component.ListItemColorScheme") - ) -) -typealias MenuColors = ListItemColorScheme - -@Deprecated( - message = "use ListItemColor instead", - replaceWith = ReplaceWith( - "ListItemColor", - imports = arrayOf("com.konyaco.fluent.component.ListItemColor") - ) -) -typealias MenuColor = ListItemColor - -interface MenuFlyoutScope { - - @Composable - fun registerHoveredMenuItem( - interaction: MutableInteractionSource, - onDelayedHoveredChanged: (hovered: Boolean) -> Unit - ) -} - -interface MenuFlyoutContainerScope : MenuFlyoutScope, FlyoutContainerScope - -private class MenuFlyoutContainerScopeImpl( - flyoutScope: FlyoutContainerScope, - menuFlyoutScope: MenuFlyoutScope -) : MenuFlyoutContainerScope, FlyoutContainerScope by flyoutScope, - MenuFlyoutScope by menuFlyoutScope - -private fun defaultMenuFlyoutEnterPlacementAnimation( - placement: FlyoutPlacement, - paddingTop: Int -): EnterTransition { - return fadeIn(menuFlyoutEnterSpec()) + when (placement) { - FlyoutPlacement.Auto, FlyoutPlacement.Full -> scaleIn(menuFlyoutEnterSpec()) - - // slide from top - FlyoutPlacement.Start, - FlyoutPlacement.End, - FlyoutPlacement.Bottom, - FlyoutPlacement.BottomAlignedStart, - FlyoutPlacement.BottomAlignedEnd, - FlyoutPlacement.StartAlignedTop, - FlyoutPlacement.EndAlignedTop -> slideInVertically(menuFlyoutEnterSpec()) { -paddingTop } + - expandVertically( - animationSpec = menuFlyoutEnterSpec(), - expandFrom = Alignment.Top, - initialHeight = { it } - ) - - //slide from bottom - FlyoutPlacement.Top, - FlyoutPlacement.TopAlignedStart, - FlyoutPlacement.TopAlignedEnd, - FlyoutPlacement.StartAlignedBottom, - FlyoutPlacement.EndAlignedBottom -> slideInVertically(menuFlyoutEnterSpec()) { paddingTop } + - expandVertically( - animationSpec = menuFlyoutEnterSpec(), - initialHeight = { it } - ) - } -} - -@Composable -private fun rememberSubMenuFlyoutPositionProvider( - initialPlacement: FlyoutPlacement = FlyoutPlacement.Auto, - paddingToAnchor: PaddingValues = PaddingValues(vertical = flyoutDefaultPadding) -): SubMenuFlyoutPositionProvider { - val density = LocalDensity.current - return remember(initialPlacement, density, paddingToAnchor) { - SubMenuFlyoutPositionProvider(density, initialPlacement, paddingToAnchor) - } -} - -@Stable -private class SubMenuFlyoutPositionProvider( - density: Density, - initialPlacement: FlyoutPlacement, - paddingToAnchor: PaddingValues, -) : FlyoutPositionProvider(density, initialPlacement, paddingToAnchor) { - override fun Density.calculateTargetPlacement( - anchorBounds: IntRect, - windowSize: IntSize, - layoutDirection: LayoutDirection, - popupContentSize: Size - ): Pair { - return calculatePlacementByHorizontal( - anchorBounds, - windowSize, - layoutDirection, - popupContentSize - ) - } -} - -private fun menuFlyoutEnterSpec() = - tween(FluentDuration.ShortDuration, easing = FluentEasing.FastInvokeEasing) \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/ProgressRing.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/ProgressRing.kt deleted file mode 100644 index 4ed35e7e..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/ProgressRing.kt +++ /dev/null @@ -1,114 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.animation.core.* -import androidx.compose.foundation.Canvas -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.fillMaxSize -import androidx.compose.foundation.layout.size -import androidx.compose.runtime.Composable -import androidx.compose.runtime.derivedStateOf -import androidx.compose.runtime.getValue -import androidx.compose.runtime.remember -import androidx.compose.ui.Modifier -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.graphics.StrokeCap -import androidx.compose.ui.graphics.drawscope.Stroke -import androidx.compose.ui.platform.LocalDensity -import androidx.compose.ui.unit.Dp -import androidx.compose.ui.unit.dp -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.animation.FluentDuration - -object ProgressRingSize { - val Large = 64.dp - val Medium = 32.dp - val Small = 16.dp -} - -@Composable -fun ProgressRing( - progress: Float, - modifier: Modifier = Modifier, - size: Dp = ProgressRingSize.Medium, - width: Dp = size * 3 / 32, - color: Color = FluentTheme.colors.fillAccent.default -) { - ProgressRing( - modifier = modifier, - start = 0f, - length = progress * 360f, - width = width, - color = color, - size = size - ) -} - -@Composable -fun ProgressRing( - modifier: Modifier = Modifier, - size: Dp = ProgressRingSize.Medium, - width: Dp = size * 3 / 32, - color: Color = FluentTheme.colors.fillAccent.default -) { - val length by rememberInfiniteTransition().animateFloat( - initialValue = 0f, - targetValue = 180f, - infiniteRepeatable( - animation = tween( - easing = LinearEasing, - durationMillis = (FluentDuration.VeryLongDuration * 1.5f).toInt() - ), repeatMode = RepeatMode.Reverse - ) - ) - - val progress by rememberInfiniteTransition().animateFloat( - initialValue = 0f, - targetValue = 360f, - infiniteRepeatable( - animation = tween( - easing = LinearEasing, - durationMillis = FluentDuration.VeryLongDuration - ) - ) - ) - - val state by remember { - derivedStateOf { - (progress - length) to length - } - } - - ProgressRing( - modifier = modifier, - start = state.first, - length = state.second, - width = width, - size = size, - color = color - ) -} - -@Composable -private fun ProgressRing( - modifier: Modifier, - start: Float, - length: Float, - width: Dp, - size: Dp, - color: Color -) { - Box(modifier.size(size)) { - val density = LocalDensity.current - val widthPx by remember(density) { derivedStateOf { with(density) { width.toPx() } } } - Canvas(Modifier.fillMaxSize()) { - drawArc( - color = color, - startAngle = start - 90f, - sweepAngle = length, - useCenter = false, - size = this.size, - style = Stroke(widthPx, cap = StrokeCap.Round) - ) - } - } -} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/RadioButton.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/RadioButton.kt deleted file mode 100644 index 2355501a..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/RadioButton.kt +++ /dev/null @@ -1,190 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.animation.animateColorAsState -import androidx.compose.animation.core.animateDpAsState -import androidx.compose.animation.core.tween -import androidx.compose.foundation.BorderStroke -import androidx.compose.foundation.clickable -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.Spacer -import androidx.compose.foundation.layout.defaultMinSize -import androidx.compose.foundation.layout.offset -import androidx.compose.foundation.layout.size -import androidx.compose.foundation.layout.width -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.runtime.Immutable -import androidx.compose.runtime.Stable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.remember -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.graphics.Brush -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.unit.Dp -import androidx.compose.ui.unit.IntOffset -import androidx.compose.ui.unit.dp -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.animation.FluentDuration -import com.konyaco.fluent.animation.FluentEasing -import com.konyaco.fluent.background.BackgroundSizing -import com.konyaco.fluent.background.Layer -import com.konyaco.fluent.scheme.PentaVisualScheme -import com.konyaco.fluent.scheme.VisualStateScheme -import com.konyaco.fluent.scheme.collectVisualState -import kotlin.math.roundToInt - -@Composable -fun RadioButton( - selected: Boolean, - onClick: (() -> Unit)?, - modifier: Modifier = Modifier, - label: String? = null, - enabled: Boolean = true, - styles: VisualStateScheme = if(selected) { - RadioButtonDefaults.selectedRadioButtonStyle() - } else { - RadioButtonDefaults.defaultRadioButtonStyle() - }, - interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }, -) { - // TODO: Extract same logic - val style = styles.schemeFor(interactionSource.collectVisualState( !enabled)) - Row(modifier.then( - if (label != null) Modifier.defaultMinSize(minWidth = 120.dp) - else Modifier - ).clickable(interactionSource, null) { - onClick?.invoke() - }) { - val fillColor by animateColorAsState( - style.fillColor, - tween(FluentDuration.QuickDuration, easing = FluentEasing.FastInvokeEasing) - ) - Layer( - modifier = Modifier.size(20.dp), - shape = CircleShape, - color = fillColor, - border = BorderStroke( - 1.dp, - style.borderColor - ), - backgroundSizing = BackgroundSizing.InnerBorderEdge - ) { - Box(contentAlignment = FixedCenterAlignment) { - // Bullet, Only displays when selected, or is pressed - - val size by animateDpAsState( - style.dotSize, - tween(FluentDuration.QuickDuration, easing = FluentEasing.FastInvokeEasing) - ) - // Inner - Layer( - modifier = Modifier.size(if (size == 0.dp || !selected) size else size + 2.dp), // TODO: Remove this 2dp if outside border is provided - shape = CircleShape, - color = style.dotColor, - border = if (selected) BorderStroke( - 1.dp, - style.dotBorderBrush - ) else null, - backgroundSizing = BackgroundSizing.InnerBorderEdge, - content = {} - ) - } - } - label?.let { - Spacer(Modifier.width(8.dp)) - Text( - modifier = Modifier.offset(y = (-1).dp), - text = it, - style = FluentTheme.typography.body.copy( - color = style.labelColor - ) - ) - } - } -} - -typealias RadioButtonStyleScheme = PentaVisualScheme - -@Immutable -data class RadioButtonStyle( - val fillColor: Color, - val borderColor: Color, - val labelColor: Color, - val dotSize: Dp, - val dotColor: Color, - val dotBorderBrush: Brush -) - -object RadioButtonDefaults { - - @Stable - @Composable - fun defaultRadioButtonStyle( - default: RadioButtonStyle = RadioButtonStyle( - fillColor = FluentTheme.colors.controlAlt.secondary, - borderColor = FluentTheme.colors.stroke.controlStrong.default, - labelColor = FluentTheme.colors.text.text.primary, - dotSize = 0.dp, - dotColor = FluentTheme.colors.text.onAccent.primary, - dotBorderBrush = FluentTheme.colors.borders.circle - ), - hovered: RadioButtonStyle = default.copy( - fillColor = FluentTheme.colors.controlAlt.tertiary, - ), - pressed: RadioButtonStyle = default.copy( - fillColor = FluentTheme.colors.controlAlt.quaternary, - borderColor = FluentTheme.colors.stroke.controlStrong.disabled, - dotSize = 10.dp - ), - disabled: RadioButtonStyle = default.copy( - fillColor = FluentTheme.colors.controlAlt.disabled, - borderColor = FluentTheme.colors.stroke.controlStrong.disabled, - labelColor = FluentTheme.colors.text.text.disabled - ) - ) = RadioButtonStyleScheme( - default = default, - hovered = hovered, - pressed = pressed, - disabled = disabled - ) - - @Stable - @Composable - fun selectedRadioButtonStyle( - default: RadioButtonStyle = RadioButtonStyle( - fillColor = FluentTheme.colors.fillAccent.default, - borderColor = FluentTheme.colors.fillAccent.default, - labelColor = FluentTheme.colors.text.text.primary, - dotSize = 8.dp, - dotColor = FluentTheme.colors.text.onAccent.primary, - dotBorderBrush = FluentTheme.colors.borders.circle - ), - hovered: RadioButtonStyle = default.copy( - fillColor = FluentTheme.colors.fillAccent.secondary, - dotSize = 10.dp, - ), - pressed: RadioButtonStyle = default.copy( - fillColor = FluentTheme.colors.fillAccent.tertiary, - dotSize = 6.dp - ), - disabled: RadioButtonStyle = default.copy( - fillColor = FluentTheme.colors.fillAccent.disabled, - borderColor = FluentTheme.colors.fillAccent.disabled, - labelColor = FluentTheme.colors.text.text.disabled - ) - ) = RadioButtonStyleScheme( - default = default, - hovered = hovered, - pressed = pressed, - disabled = disabled - ) -} - -private val FixedCenterAlignment = Alignment { size, space, _ -> - val centerX = (space.width - size.width).toFloat() / 2f - val centerY = (space.height - size.height).toFloat() / 2f - IntOffset(x = centerX.toInt(), y = centerY.roundToInt()) -} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Scrollbar.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Scrollbar.kt deleted file mode 100644 index 373d7ef0..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Scrollbar.kt +++ /dev/null @@ -1,264 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.animation.core.animateFloatAsState -import androidx.compose.animation.core.tween -import androidx.compose.foundation.ScrollState -import androidx.compose.foundation.clickable -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.foundation.interaction.collectIsHoveredAsState -import androidx.compose.foundation.interaction.collectIsPressedAsState -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.size -import androidx.compose.foundation.lazy.LazyListState -import androidx.compose.foundation.lazy.grid.LazyGridState -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.* -import androidx.compose.ui.Modifier -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.graphics.graphicsLayer -import androidx.compose.ui.layout.Layout -import androidx.compose.ui.layout.layoutId -import androidx.compose.ui.platform.LocalDensity -import androidx.compose.ui.unit.Constraints -import androidx.compose.ui.unit.dp -import androidx.compose.ui.util.fastFirstOrNull -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.animation.FluentDuration -import com.konyaco.fluent.animation.FluentEasing -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.filled.CaretRight -import kotlinx.coroutines.launch - -/* -* fork from Scrollbar.desktop - */ -expect interface ScrollbarAdapter { - - // We use `Double` values here in order to allow scrolling both very large (think LazyList with - // millions of items) and very small (think something whose natural coordinates are less than 1) - // content. - - /** - * Scroll offset of the content inside the scrollable component. - * - * For example, a value of `100` could mean the content is scrolled by 100 pixels from the - * start. - */ - val scrollOffset: Double - - /** - * The size of the scrollable content, on the scrollable axis. - */ - val contentSize: Double - - /** - * The size of the viewport, on the scrollable axis. - */ - val viewportSize: Double - - /** - * Instantly jump to [scrollOffset]. - * - * @param scrollOffset target offset to jump to, value will be coerced to the valid - * scroll range. - */ - suspend fun scrollTo(scrollOffset: Double) - -} - -@Composable -fun Scrollbar( - isVertical: Boolean, - adapter: ScrollbarAdapter, - modifier: Modifier = Modifier, - reverseLayout: Boolean = false, - colors: ScrollbarColors = ScrollbarDefaults.colors() -) { - PlatformScrollBar( - isVertical, - adapter, - modifier, - reverseLayout, - colors - ) -} - -@Composable -internal expect fun PlatformScrollBar( - isVertical: Boolean, - adapter: ScrollbarAdapter, - modifier: Modifier, - reverseLayout: Boolean, - colors: ScrollbarColors -) - -@Composable -expect fun rememberScrollbarAdapter( - state: ScrollState -): ScrollbarAdapter - -@Composable -expect fun rememberScrollbarAdapter( - state: LazyListState -): ScrollbarAdapter - -@Composable -expect fun rememberScrollbarAdapter( - state: LazyGridState -): ScrollbarAdapter - -@Immutable -data class ScrollbarColors( - val contentColor: Color, - val contentColorDisabled: Color, - val contentColorHovered: Color, - val contentColorPressed: Color, - val backgroundColor: Color -) - -object ScrollbarDefaults { - val thicknessHighlight = 6.dp - val thickness = 2.dp - const val hoverDurationMillis = 500 - val shape = CircleShape - const val indicatorPressedScale = 0.875f - val indicatorScrollOffset = 24.dp - - @Composable - fun colors( - contentColor: Color = FluentTheme.colors.controlStrong.default, - contentColorDisabled: Color = FluentTheme.colors.controlStrong.disabled, - contentColorHovered: Color = FluentTheme.colors.controlStrong.default, - contentColorPressed: Color = FluentTheme.colors.controlStrong.default, - backgroundColor: Color = FluentTheme.colors.background.acrylic.default - ) = ScrollbarColors( - contentColor = contentColor, - contentColorDisabled = contentColorDisabled, - contentColorHovered = contentColorHovered, - contentColorPressed = contentColorPressed, - backgroundColor = backgroundColor - ) -} - -@Composable -fun ScrollbarIndicator( - adapter: ScrollbarAdapter, - isVertical: Boolean, - modifier: Modifier = Modifier, - visible: Boolean = false, - forward: Boolean = false, - enabled: Boolean = true, - colors: ScrollbarColors = ScrollbarDefaults.colors(), -) { - val interaction = remember { - MutableInteractionSource() - } - val hovered by interaction.collectIsHoveredAsState() - val pressed by interaction.collectIsPressedAsState() - val scrollScope = rememberCoroutineScope() - val offset = with(LocalDensity.current) { ScrollbarDefaults.indicatorScrollOffset.toPx() } - val animationFraction by animateFloatAsState( - targetValue = if (visible) { - 1f - } else { - 0f - }, - animationSpec = tween(FluentDuration.ShortDuration, easing = FluentEasing.FastInvokeEasing) - ) - val targetScale by animateFloatAsState( - if (pressed) { - ScrollbarDefaults.indicatorPressedScale - } else { - 1f - } - ) - val targetAlpha = animationFraction - Icon( - imageVector = Icons.Filled.CaretRight, - contentDescription = null, - tint = when { - pressed -> colors.contentColorPressed - hovered -> colors.contentColorHovered - !enabled -> colors.contentColorDisabled - else -> colors.contentColor - }, - modifier = Modifier.size(14.dp).then(modifier).clickable( - interactionSource = interaction, - indication = null, - enabled = enabled && visible - ) { - scrollScope.launch { - if (forward) { - adapter.scrollTo(-offset + adapter.scrollOffset) - } else { - adapter.scrollTo(offset + adapter.scrollOffset) - } - } - }.graphicsLayer { - scaleX = targetScale - scaleY = targetScale - rotationZ = when { - isVertical && forward -> 270f - isVertical -> 90f - forward -> 180f - else -> 0f - } - alpha = targetAlpha - } - ) -} - -@Composable -fun ScrollbarContainer( - adapter: ScrollbarAdapter, - modifier: Modifier = Modifier, - isVertical: Boolean = true, - scrollbar: @Composable () -> Unit = { Scrollbar(isVertical, adapter) }, - content: @Composable () -> Unit -) { - ScrollbarContainer( - modifier = modifier, - isVertical = isVertical, - scrollbar = scrollbar, - content = content - ) -} - -@Composable -fun ScrollbarContainer( - modifier: Modifier = Modifier, - isVertical: Boolean = true, - scrollbar: @Composable () -> Unit, - content: @Composable () -> Unit -) { - Layout( - modifier = modifier, - content = { - Box(Modifier.layoutId("scrollbar")) { scrollbar() } - Box(Modifier.layoutId("content")) { content() } - } - ) { measurables, constraints -> - val contentMeasurable = - measurables.fastFirstOrNull { it.layoutId == "content" } ?: return@Layout layout(0, 0) {} - val contentPlaceable = contentMeasurable.measure(constraints.copy(minWidth = 0, minHeight = 0)) - val scrollbarMeasurable = measurables.fastFirstOrNull { it.layoutId == "scrollbar" } ?: return@Layout layout( - contentPlaceable.width, - contentPlaceable.height - ) { contentPlaceable.place(0, 0) } - val scrollbarPlaceable = scrollbarMeasurable.measure( - if (isVertical) { - Constraints.fixedHeight(contentPlaceable.height) - } else { - Constraints.fixedWidth(contentPlaceable.width) - } - ) - layout(contentPlaceable.width, contentPlaceable.height) { - contentPlaceable.place(0, 0) - if (isVertical) { - scrollbarPlaceable.place(contentPlaceable.width - scrollbarPlaceable.width, 0) - } else { - scrollbarPlaceable.place(0, contentPlaceable.height - scrollbarPlaceable.height) - } - } - } -} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/SideNav.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/SideNav.kt deleted file mode 100644 index db1ee3fe..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/SideNav.kt +++ /dev/null @@ -1,543 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.animation.AnimatedVisibility -import androidx.compose.animation.animateColorAsState -import androidx.compose.animation.core.MutableTransitionState -import androidx.compose.animation.core.animateDp -import androidx.compose.animation.core.animateDpAsState -import androidx.compose.animation.core.animateFloat -import androidx.compose.animation.core.animateFloatAsState -import androidx.compose.animation.core.tween -import androidx.compose.animation.core.updateTransition -import androidx.compose.animation.expandVertically -import androidx.compose.animation.fadeIn -import androidx.compose.animation.fadeOut -import androidx.compose.animation.shrinkVertically -import androidx.compose.foundation.background -import androidx.compose.foundation.clickable -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.foundation.layout.Arrangement -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.Column -import androidx.compose.foundation.layout.ColumnScope -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.RowScope -import androidx.compose.foundation.layout.Spacer -import androidx.compose.foundation.layout.fillMaxHeight -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.height -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.layout.size -import androidx.compose.foundation.layout.width -import androidx.compose.foundation.layout.wrapContentWidth -import androidx.compose.foundation.rememberScrollState -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.foundation.shape.RoundedCornerShape -import androidx.compose.foundation.verticalScroll -import androidx.compose.runtime.Composable -import androidx.compose.runtime.CompositionLocalProvider -import androidx.compose.runtime.Immutable -import androidx.compose.runtime.LaunchedEffect -import androidx.compose.runtime.Stable -import androidx.compose.runtime.compositionLocalOf -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.rememberCoroutineScope -import androidx.compose.runtime.rememberUpdatedState -import androidx.compose.runtime.setValue -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.focus.FocusRequester -import androidx.compose.ui.focus.focusRequester -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.graphics.Shape -import androidx.compose.ui.graphics.graphicsLayer -import androidx.compose.ui.layout.layout -import androidx.compose.ui.layout.onGloballyPositioned -import androidx.compose.ui.layout.positionInRoot -import androidx.compose.ui.unit.Constraints -import androidx.compose.ui.unit.Dp -import androidx.compose.ui.unit.dp -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.LocalTextStyle -import com.konyaco.fluent.animation.FluentDuration -import com.konyaco.fluent.animation.FluentEasing -import com.konyaco.fluent.background.BackgroundSizing -import com.konyaco.fluent.background.Layer -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.regular.ChevronDown -import com.konyaco.fluent.icons.regular.Navigation -import com.konyaco.fluent.icons.regular.Search -import com.konyaco.fluent.scheme.PentaVisualScheme -import com.konyaco.fluent.scheme.collectVisualState -import kotlinx.coroutines.delay -import kotlinx.coroutines.launch -import kotlin.math.roundToInt - -private val LocalExpand = compositionLocalOf { false } -private val LocalNavigationLevel = compositionLocalOf { 0 } -private val LocalSelectedItemPosition = compositionLocalOf?> { null } - -@Composable -fun SideNav( - modifier: Modifier, - expanded: Boolean, - onExpandStateChange: (Boolean) -> Unit, - title: @Composable (() -> Unit) = {}, - autoSuggestionBox: (@Composable AutoSuggestionBoxScope.() -> Unit)? = null, - footer: @Composable (() -> Unit)? = null, - content: @Composable () -> Unit -) { - val width by animateDpAsState( - if (expanded) 320.dp else 48.dp, - tween(FluentDuration.ShortDuration, easing = FluentEasing.FastInvokeEasing) - ) - - Column(modifier.width(width)) { - Spacer(Modifier.height(8.dp)) - Row( - horizontalArrangement = Arrangement.spacedBy(8.dp), - verticalAlignment = Alignment.CenterVertically, - modifier = Modifier.padding(horizontal = 4.dp).height(42.dp) - ) { - SubtleButton( - modifier = Modifier.padding(vertical = 4.dp).size(38.dp, 34.dp), - onClick = { onExpandStateChange(!expanded) }, - iconOnly = true - ) { - Icon(Icons.Default.Navigation, "Expand") - } - if (expanded) { - CompositionLocalProvider( - LocalTextStyle provides FluentTheme.typography.bodyStrong - ) { - title() - } - } - } - val positionState = remember { - MutableTransitionState(0f) - } - CompositionLocalProvider( - LocalExpand provides expanded, - LocalNavigationLevel provides 0, - LocalSelectedItemPosition provides positionState, - ) { - autoSuggestionBox?.let { - val focusRequester = remember { - FocusRequester() - } - val autoSuggestionBoxScope = remember(focusRequester) { - AutoSuggestionBoxScopeImpl(focusRequester) - } - Box( - contentAlignment = Alignment.TopStart, - modifier = Modifier.height(48.dp) - ) { - val expandedScope = rememberCoroutineScope() - if (expanded) { - Box(modifier = Modifier.padding(horizontal = 16.dp).padding(top = 2.dp)) { - autoSuggestionBoxScope.it() - } - } else { - SideNavItem( - selected = false, - onClick = { - onExpandStateChange(true) - expandedScope.launch { - delay(FluentDuration.ShortDuration.toLong()) - focusRequester.requestFocus() - } - - }, - icon = { - Icon(Icons.Default.Search, null) - }, - content = {} - ) - } - } - } - val scrollState = rememberScrollState() - ScrollbarContainer( - adapter = rememberScrollbarAdapter(scrollState), - modifier = Modifier.weight(1f) - ) { - Column( - modifier = Modifier.fillMaxHeight().verticalScroll(scrollState).padding( - bottom = 8.dp - ) - ) { - content() - } - } - footer?.let { - // Divider - NavigationItemSeparator(modifier = Modifier.padding(bottom = 4.dp)) - it() - Spacer(Modifier.height(4.dp)) - } - } - } -} - -@Composable -fun SideNavItem( - selected: Boolean, - expand: Boolean = LocalExpand.current, - onClick: (Boolean) -> Unit, - modifier: Modifier = Modifier, - expandItems: Boolean = false, - colors: NavigationItemColorScheme = if (selected) { - NavigationDefaults.selectedSideNavigationItemColors() - } else { - NavigationDefaults.defaultSideNavigationItemColors() - }, - icon: @Composable (() -> Unit)? = null, - items: @Composable (ColumnScope.() -> Unit)? = null, - indicator: @Composable IndicatorScope.() -> Unit = { - NavigationDefaults.VerticalIndicator(modifier = Modifier.indicatorOffset { selected }) - }, - content: @Composable RowScope.() -> Unit -) { - val interaction = remember { MutableInteractionSource() } - //TODO Enabled - val color = colors.schemeFor(interaction.collectVisualState(false)) - var currentPosition by remember { - mutableStateOf(0f) - } - val selectedState = LocalSelectedItemPosition.current - LaunchedEffect(selected, currentPosition) { - if (selected) { - selectedState?.targetState = currentPosition - } - } - Column( - modifier = modifier.onGloballyPositioned { - currentPosition = it.positionInRoot().y - } - ) { - Box(Modifier.height(40.dp).fillMaxWidth().padding(4.dp, 2.dp)) { - val navigationLevelPadding = 28.dp * LocalNavigationLevel.current - Layer( - modifier = Modifier.fillMaxWidth().height(36.dp), - shape = RoundedCornerShape(size = 4.dp), - color = animateColorAsState( - color.fillColor, tween(FluentDuration.QuickDuration, easing = FluentEasing.FastInvokeEasing) - ).value, - contentColor = color.contentColor, - border = null, - backgroundSizing = BackgroundSizing.OuterBorderEdge - ) { - Box( - Modifier.clickable( - onClick = { onClick(!selected) }, - interactionSource = interaction, - indication = null - ).padding(start = navigationLevelPadding), - Alignment.CenterStart - ) { - if (icon != null) Box(Modifier.padding(start = 12.dp).size(18.dp), Alignment.Center) { - icon() - } - val fraction by animateFloatAsState( - targetValue = if (expand) 1f else 0f, - tween(FluentDuration.ShortDuration, easing = FluentEasing.FastInvokeEasing) - ) - if (expand) { - Row( - modifier = Modifier.padding( - start = if (icon != null) 44.dp else 16.dp, - end = if (items != null) 44.dp else 0.dp - ), - horizontalArrangement = Arrangement.spacedBy(8.dp, Alignment.CenterHorizontally), - verticalAlignment = Alignment.CenterVertically, - ) { - content() - } - if (items != null) { - val rotation by animateFloatAsState( - if (expandItems) { - 180f - } else { - 00f - } - ) - Icon( - Icons.Default.ChevronDown, - null, - modifier = Modifier.width(36.dp) - .align(Alignment.CenterEnd) - .wrapContentWidth(Alignment.CenterHorizontally).size(12.dp) - .graphicsLayer { - rotationZ = rotation - alpha = if (fraction == 1f) { - 1f - } else { - 0f - } - } - ) - } - } - } - } - Box(modifier = Modifier.align(Alignment.CenterStart).padding(start = navigationLevelPadding)) { - SideNavigationIndicatorScope.indicator() - } - } - - if (items != null) { - AnimatedVisibility( - visible = expandItems && expand, - enter = fadeIn( - animationSpec = tween(FluentDuration.ShortDuration, easing = FluentEasing.FastInvokeEasing) - ) + expandVertically( - animationSpec = tween(FluentDuration.ShortDuration, easing = FluentEasing.FastInvokeEasing) - ), - exit = fadeOut( - animationSpec = tween(FluentDuration.ShortDuration, easing = FluentEasing.FastInvokeEasing) - ) + shrinkVertically( - animationSpec = tween(FluentDuration.ShortDuration, easing = FluentEasing.FastInvokeEasing) - ), - modifier = Modifier.fillMaxWidth() - ) { - CompositionLocalProvider( - LocalNavigationLevel provides LocalNavigationLevel.current + 1 - ) { - Column { - items() - } - } - } - } - } -} - -typealias NavigationItemColorScheme = PentaVisualScheme - -@Immutable -data class NavigationItemColor( - val fillColor: Color, - val contentColor: Color -) - -//TODO Common Defaults for SideNavigation and TopNavigation -object NavigationDefaults { - - @Composable - @Stable - fun defaultSideNavigationItemColors( - default: NavigationItemColor = NavigationItemColor( - fillColor = FluentTheme.colors.subtleFill.transparent, - contentColor = FluentTheme.colors.text.text.primary - ), - hovered: NavigationItemColor = default.copy( - fillColor = FluentTheme.colors.subtleFill.secondary - ), - pressed: NavigationItemColor = default.copy( - fillColor = FluentTheme.colors.subtleFill.tertiary - ), - //TODO Disabled style - disabled: NavigationItemColor = default - ) = NavigationItemColorScheme( - default = default, - hovered = hovered, - pressed = pressed, - disabled = disabled - ) - - @Composable - @Stable - fun selectedSideNavigationItemColors( - default: NavigationItemColor = NavigationItemColor( - fillColor = FluentTheme.colors.subtleFill.secondary, - contentColor = FluentTheme.colors.text.text.primary - ), - hovered: NavigationItemColor = default.copy( - fillColor = FluentTheme.colors.subtleFill.tertiary - ), - pressed: NavigationItemColor = default.copy( - fillColor = FluentTheme.colors.subtleFill.tertiary - ), - //TODO Disabled style - disabled: NavigationItemColor = default - ) = NavigationItemColorScheme( - default = default, - hovered = hovered, - pressed = pressed, - disabled = disabled - ) - - @Composable - fun VerticalIndicator( - modifier: Modifier = Modifier, - color: Color = FluentTheme.colors.fillAccent.default, - shape: Shape = CircleShape, - thickness: Dp = 3.dp - ) { - Box(modifier.width(thickness).background(color, shape)) - } - - //TODO TopNavigation - @Composable - fun HorizontalIndicator( - modifier: Modifier = Modifier, - color: Color = FluentTheme.colors.fillAccent.default, - shape: Shape = CircleShape, - thickness: Dp = 3.dp - ) { - Box(modifier.height(thickness).background(color, shape)) - } - -} - -interface IndicatorScope { - - @Composable - fun Modifier.indicatorOffset(visible: () -> Boolean): Modifier -} - -interface AutoSuggestionBoxScope { - fun Modifier.focusHandle(): Modifier -} - -private object SideNavigationIndicatorScope: IndicatorScope { - - @Composable - override fun Modifier.indicatorOffset(visible: () -> Boolean): Modifier { - val display by rememberUpdatedState(visible) - val selectionState = LocalSelectedItemPosition.current - val indicatorState = remember { - MutableTransitionState(display()) - } - indicatorState.targetState = display() - val animationModifier = if (selectionState != null) { - Modifier.indicatorOffsetAnimation(16.dp, indicatorState, selectionState) - } else { - val height by updateTransition(display()).animateDp(transitionSpec = { - if (targetState) tween(FluentDuration.ShortDuration, easing = FluentEasing.FastInvokeEasing) - else tween(FluentDuration.QuickDuration, easing = FluentEasing.SoftDismissEasing) - }, targetValueByState = { if (it) 16.dp else 0.dp }) - Modifier.height(height) - } - return then(animationModifier) - } -} -//TODO TopNavigationIndicatorScope - -internal class AutoSuggestionBoxScopeImpl( - private val focusRequest: FocusRequester -) : AutoSuggestionBoxScope { - override fun Modifier.focusHandle() = focusRequester(focusRequest) -} - -@Composable -fun NavigationItemSeparator( - isVertical: Boolean = false, - modifier: Modifier = Modifier, - color: Color = FluentTheme.colors.stroke.surface.default.copy(0.2f) -) { - val sizeModifier = if (!isVertical) { - Modifier.fillMaxWidth().height(1.dp) - } else { - Modifier.fillMaxHeight().width(1.dp) - } - Box( - Modifier - .then(modifier) - .then(sizeModifier) - .background(color) - ) -} - -@Composable -private fun Modifier.indicatorOffsetAnimation( - size: Dp, - indicatorState: MutableTransitionState, - selectedPosition: MutableTransitionState, - isVertical: Boolean = true -): Modifier { - val fraction by updateTransition(indicatorState).animateFloat( - transitionSpec = { - tween(FluentDuration.VeryLongDuration , easing = FluentEasing.PointToPointEasing) - }, - targetValueByState = { if (it) 1f else 0f } - ) - //Delay set selected position - if (indicatorState.isIdle && indicatorState.targetState) { - updateTransition(selectedPosition).animateFloat(transitionSpec = { - tween( - FluentDuration.QuickDuration, - easing = FluentEasing.FastInvokeEasing - ) - }) { it } - } - return layout { measurable, constraints -> - val stickSize = size.toPx() - val containerSize = if (isVertical) { - constraints.maxHeight - } else { - constraints.maxWidth - } - val goBackward = selectedPosition.currentState > selectedPosition.targetState - val contentPadding = ((containerSize - stickSize) / 2).coerceAtLeast(0f) - val extendSize = containerSize - contentPadding - val currentFraction = if (indicatorState.targetState) { - fraction - } else { - 1 - fraction - } - val segmentFraction = when { - currentFraction > 0.75 -> (currentFraction - 0.75f) * 4 - currentFraction > 0.5 -> (currentFraction - 0.5f) * 4 - currentFraction > 0.25 -> (currentFraction - 0.25f) * 4 - else -> currentFraction * 4 - } - val currentSize = if (!indicatorState.targetState) { - when { - currentFraction <= 0.25 -> androidx.compose.ui.util.lerp(stickSize, extendSize, segmentFraction) - currentFraction <= 0.5f -> androidx.compose.ui.util.lerp(extendSize, 0f, segmentFraction) - else -> 0f - } - } else { - when { - currentFraction > 0.75f -> androidx.compose.ui.util.lerp( - extendSize, - stickSize, - segmentFraction - ) - currentFraction > 0.5f -> androidx.compose.ui.util.lerp(0f, extendSize, segmentFraction) - else -> 0f - } - } - val placeable = if (isVertical) { - measurable.measure(Constraints.fixedHeight(currentSize.roundToInt().coerceAtLeast(0))) - } else { - measurable.measure(Constraints.fixedWidth(currentSize.roundToInt().coerceAtLeast(0))) - } - - layout( - width = if (isVertical) placeable.width else constraints.maxWidth, - height = if (isVertical) constraints.maxHeight else placeable.height - ) { - val offset = when { - goBackward && !indicatorState.targetState && currentFraction <= 0.25f -> extendSize - currentSize - goBackward && !indicatorState.targetState -> 0f - !goBackward && !indicatorState.targetState && currentFraction <= 0.25f -> contentPadding - !goBackward && !indicatorState.targetState -> containerSize - currentSize - goBackward && currentFraction > 0.75f -> contentPadding - goBackward && currentFraction > 0.5f -> containerSize - currentSize - !goBackward && currentFraction > 0.75f -> extendSize - currentSize - !goBackward && currentFraction > 0.5f -> 0f - else -> 0f - } - if (isVertical) { - placeable.place(0, offset.roundToInt()) - } else { - placeable.place(offset.roundToInt(), 0) - } - } - } -} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Slider.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Slider.kt deleted file mode 100644 index d2655f3c..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Slider.kt +++ /dev/null @@ -1,251 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.animation.core.animateDpAsState -import androidx.compose.animation.core.tween -import androidx.compose.foundation.BorderStroke -import androidx.compose.foundation.background -import androidx.compose.foundation.clickable -import androidx.compose.foundation.gestures.Orientation -import androidx.compose.foundation.gestures.awaitEachGesture -import androidx.compose.foundation.gestures.awaitFirstDown -import androidx.compose.foundation.gestures.draggable -import androidx.compose.foundation.gestures.rememberDraggableState -import androidx.compose.foundation.gestures.waitForUpOrCancellation -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.foundation.interaction.collectIsHoveredAsState -import androidx.compose.foundation.interaction.collectIsPressedAsState -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.BoxWithConstraints -import androidx.compose.foundation.layout.defaultMinSize -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.offset -import androidx.compose.foundation.layout.requiredHeight -import androidx.compose.foundation.layout.size -import androidx.compose.foundation.layout.width -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.runtime.Stable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.rememberUpdatedState -import androidx.compose.runtime.setValue -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.geometry.Offset -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.graphics.Shape -import androidx.compose.ui.input.pointer.pointerInput -import androidx.compose.ui.platform.LocalDensity -import androidx.compose.ui.unit.Dp -import androidx.compose.ui.unit.IntOffset -import androidx.compose.ui.unit.dp -import androidx.compose.ui.unit.times -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.animation.FluentDuration -import com.konyaco.fluent.animation.FluentEasing -import com.konyaco.fluent.background.BackgroundSizing -import com.konyaco.fluent.background.Layer - -@Composable -fun Slider( - value: Float, - onValueChange: (Float) -> Unit, - modifier: Modifier = Modifier, - enabled: Boolean = true, // TODO - valueRange: ClosedFloatingPointRange = 0f..1f, - steps: Int = 0, // TODO - onValueChangeFinished: (() -> Unit)? = null, - interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }, - rail: @Composable () -> Unit = { SliderDefaults.Rail() }, - track: @Composable (progress: Float, width: Dp) -> Unit = { fraction, width -> SliderDefaults.Track(fraction, width) }, - thumb: @Composable (progress: Float, width: Dp, dragging: Boolean) -> Unit = { fraction, width, dragging -> SliderDefaults.Thumb(fraction, width, dragging) }, -) { - val progress = valueToFraction(value, valueRange.start, valueRange.endInclusive) - Slider( - modifier = modifier, - progress = progress, - onProgressChange = { - onValueChange(fractionToValue(it, valueRange.start, valueRange.endInclusive)) - }, - enabled = enabled, - onValueChangeFinished = onValueChangeFinished, - interactionSource = interactionSource, - rail = rail, - track = track, - thumb = thumb - ) -} - -@Composable -private fun Slider( - progress: Float, - onProgressChange: (Float) -> Unit, - modifier: Modifier = Modifier, - enabled: Boolean = true, // TODO - onValueChangeFinished: (() -> Unit)? = null, - interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }, - rail: @Composable () -> Unit = { SliderDefaults.Rail() }, - track: @Composable (progress: Float, width: Dp) -> Unit = { fraction, width -> SliderDefaults.Track(fraction, width) }, - thumb: @Composable (progress: Float, width: Dp, dragging: Boolean) -> Unit = { fraction, width, dragging -> SliderDefaults.Thumb(fraction, width, dragging) }, -) { - // TODO: Refactor this component - val currentOnProgressChange by rememberUpdatedState(onProgressChange) - BoxWithConstraints( - modifier = modifier.defaultMinSize(minWidth = 120.dp, minHeight = 32.dp), - contentAlignment = Alignment.CenterStart, - propagateMinConstraints = true - ) { - val width by rememberUpdatedState(minWidth) - var dragging by remember { mutableStateOf(false) } - - val density by rememberUpdatedState(LocalDensity.current) - fun calcProgress(offset: Offset): Float { - val radius = with(density) { (ThumbSizeWithBorder / 2).toPx() } - return valueToFraction(offset.x, radius, constraints.minWidth - radius).coerceIn(0f, 1f) - } - - var offset by remember { mutableStateOf(Offset.Zero) } - Box( - modifier = Modifier - .draggable( - state = rememberDraggableState { - offset = Offset(x = offset.x + it, y = offset.y) - currentOnProgressChange(calcProgress(offset)) - }, - interactionSource = interactionSource, - onDragStarted = { - dragging = true - offset = it - }, - onDragStopped = { - dragging = false - onValueChangeFinished?.invoke() - }, - orientation = Orientation.Horizontal - ) - .pointerInput(Unit) { - awaitEachGesture { - val down = awaitFirstDown() - dragging = true - currentOnProgressChange(calcProgress(down.position)) - waitForUpOrCancellation() - dragging = false - } - }, contentAlignment = Alignment.CenterStart - ) { - rail() - track(progress, width) - thumb(progress, width, dragging) - } - } -} - -@Stable -private fun fractionToValue(fraction: Float, start: Float, end: Float): Float = - (end - start) * fraction + start - -@Stable -private fun valueToFraction( - value: Float, start: Float, end: Float -): Float = (value - start) / (end - start) - -@Stable -private fun calcThumbOffset( - maxWidth: Dp, thumbSize: Dp, padding: Dp, fraction: Float -): Dp { - return (maxWidth - thumbSize) * fraction - padding -} - -object SliderDefaults { - - @Composable - fun Track( - fraction: Float, - maxWidth: Dp, - modifier: Modifier = Modifier, - color: Color = FluentTheme.colors.fillAccent.default, - shape: Shape = CircleShape - ) { - // Track - val width = ThumbRadiusWithBorder + (fraction * (maxWidth - ThumbSizeWithBorder)) - Box( - modifier.width(width) - .requiredHeight(4.dp) - .background(color, shape) - ) - } - - @Composable - fun Rail( - modifier: Modifier = Modifier, - color: Color = FluentTheme.colors.controlStrong.default, - border: BorderStroke? = BorderStroke( - 1.dp, if (FluentTheme.colors.darkMode) FluentTheme.colors.stroke.controlStrong.default - else FluentTheme.colors.controlStrong.default - ), - shape: Shape = CircleShape - ) { - // Rail - Layer( - modifier = modifier.fillMaxWidth().requiredHeight(4.dp), - shape = shape, - color = color, - border = border, - backgroundSizing = BackgroundSizing.InnerBorderEdge, - content = {} - ) - } - - @Composable - fun Thumb( - fraction: Float, - maxWidth: Dp, - dragging: Boolean = false, - modifier: Modifier = Modifier, - interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }, - shape: Shape = CircleShape, - border: BorderStroke? = BorderStroke(1.dp, FluentTheme.colors.borders.circle), - ringColor: Color = FluentTheme.colors.controlSolid.default, - color: Color = FluentTheme.colors.fillAccent.default - ) { - // Thumb - val thumbOffset by rememberUpdatedState(calcThumbOffset(maxWidth, ThumbSize, 1.dp, fraction)) - - val hovered by interactionSource.collectIsHoveredAsState() - val pressed by interactionSource.collectIsPressedAsState() - - Layer( - modifier = modifier.offset { IntOffset(x = thumbOffset.roundToPx(), y = 0) } - .size(ThumbSizeWithBorder) - .clickable(interactionSource, null, onClick = {}), - shape = shape, - color = ringColor, - border = border, - backgroundSizing = BackgroundSizing.InnerBorderEdge - ) { - Box(contentAlignment = Alignment.Center) { - // Inner Thumb - Box( - Modifier.size( - animateDpAsState( - when { - pressed || dragging -> InnerThumbPressedSize - hovered -> InnerThumbHoverSize - else -> InnerThumbSize - }, - tween(FluentDuration.QuickDuration, easing = FluentEasing.FastInvokeEasing) - ).value - ).background(color, shape) - ) - } - } - } -} - -private val ThumbSize = 20.dp -private val ThumbSizeWithBorder = ThumbSize + 2.dp -private val ThumbRadiusWithBorder = ThumbSizeWithBorder / 2 -private val InnerThumbSize = 12.dp -private val InnerThumbHoverSize = 14.dp -private val InnerThumbPressedSize = 10.dp diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Switcher.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Switcher.kt deleted file mode 100644 index eddb1e47..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Switcher.kt +++ /dev/null @@ -1,228 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.animation.animateColorAsState -import androidx.compose.animation.core.animateDp -import androidx.compose.animation.core.animateDpAsState -import androidx.compose.animation.core.tween -import androidx.compose.animation.core.updateTransition -import androidx.compose.foundation.background -import androidx.compose.foundation.border -import androidx.compose.foundation.clickable -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.Spacer -import androidx.compose.foundation.layout.offset -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.layout.size -import androidx.compose.foundation.layout.width -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.runtime.Stable -import androidx.compose.runtime.derivedStateOf -import androidx.compose.runtime.getValue -import androidx.compose.runtime.remember -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.draw.clip -import androidx.compose.ui.graphics.Brush -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.graphics.SolidColor -import androidx.compose.ui.graphics.TransformOrigin -import androidx.compose.ui.graphics.graphicsLayer -import androidx.compose.ui.platform.LocalDensity -import androidx.compose.ui.semantics.Role -import androidx.compose.ui.unit.DpSize -import androidx.compose.ui.unit.dp -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.animation.FluentDuration -import com.konyaco.fluent.animation.FluentEasing -import com.konyaco.fluent.scheme.PentaVisualScheme -import com.konyaco.fluent.scheme.collectVisualState - -@Composable -fun Switcher( - checked: Boolean, - onCheckStateChange: (checked: Boolean) -> Unit, - text: String? = null, - textBefore: Boolean = false, - enabled: Boolean = true, - styles: SwitcherStyleScheme = if (checked) { - SwitcherDefaults.selectedSwitcherStyle() - } else { - SwitcherDefaults.defaultSwitcherStyle() - }, - interactionSource: MutableInteractionSource = remember { MutableInteractionSource() } -) { - // TODO: Draggable - // TODO: Extract same logic - val transition = updateTransition(checked) - val style = styles.schemeFor(interactionSource.collectVisualState(!enabled)) - Row( - modifier = Modifier.clickable( - indication = null, - interactionSource = interactionSource, - role = Role.Button, - enabled = enabled - ) { - onCheckStateChange(!checked) - }, - verticalAlignment = Alignment.CenterVertically - ) { - if (textBefore) { - text?.let { - Text( - modifier = Modifier.offset(y = (-1).dp), - text = it, - color = style.labelColor - ) - Spacer(Modifier.width(12.dp)) - } - } - - val fillColor by animateColorAsState( - style.fillColor, - tween(FluentDuration.QuickDuration, easing = FluentEasing.FastInvokeEasing) - ) - - Box( - modifier = Modifier.size(40.dp, 20.dp) - .border(1.dp, style.borderBrush, CircleShape) - .clip(CircleShape) - .background(fillColor) - .padding(horizontal = 4.dp), - contentAlignment = Alignment.CenterStart - ) { - val height by animateDpAsState( - style.controlSize.height, - tween(FluentDuration.QuickDuration, easing = FluentEasing.FastInvokeEasing) - ) - - val width by animateDpAsState( - style.controlSize.width, - tween(FluentDuration.QuickDuration, easing = FluentEasing.FastInvokeEasing) - ) - - val density = LocalDensity.current - val offset by transition.animateDp( - transitionSpec = { - tween(FluentDuration.QuickDuration, easing = FluentEasing.PointToPointEasing) - }, - targetValueByState = { - if (checked) 26.dp - (width / 2) else 0.dp - } - ) - - val offsetX by remember(density) { - derivedStateOf { with(density) { offset.toPx() } } - } - - // Control - Box( - Modifier.size(width, height) - .graphicsLayer { - translationX = offsetX - transformOrigin = TransformOrigin.Center - } - .clip(CircleShape) - .background( - if (checked) when { - !enabled -> FluentTheme.colors.text.onAccent.disabled - else -> FluentTheme.colors.text.onAccent.primary - } - else when { - !enabled -> FluentTheme.colors.text.text.disabled - else -> FluentTheme.colors.text.text.secondary - } - ) - ) - } - - if (!textBefore) { - text?.let { - Spacer(Modifier.width(12.dp)) - Text( - modifier = Modifier.offset(y = (-1).dp), - text = it, - style = FluentTheme.typography.body, - color = style.labelColor - ) - } - } - } -} - -object SwitcherDefaults { - - @Stable - @Composable - fun defaultSwitcherStyle( - default: SwitcherStyle = SwitcherStyle( - fillColor = FluentTheme.colors.controlAlt.secondary, - labelColor = FluentTheme.colors.text.text.primary, - controlColor = FluentTheme.colors.text.text.secondary, - controlSize = DpSize(width = 12.dp, height = 12.dp), - borderBrush = SolidColor(FluentTheme.colors.controlStrong.default) - ), - hovered: SwitcherStyle = default.copy( - fillColor = FluentTheme.colors.controlAlt.tertiary, - controlSize = DpSize(width = 14.dp, height = 14.dp) - ), - pressed: SwitcherStyle = default.copy( - fillColor = FluentTheme.colors.controlAlt.quaternary, - controlSize = DpSize(width = 17.dp, height = 14.dp) - ), - disabled: SwitcherStyle = default.copy( - fillColor = FluentTheme.colors.controlAlt.disabled, - borderBrush = SolidColor(FluentTheme.colors.controlStrong.disabled), - controlColor = FluentTheme.colors.text.text.disabled, - labelColor = FluentTheme.colors.text.text.disabled - ) - ) = SwitcherStyleScheme( - default = default, - hovered = hovered, - pressed = pressed, - disabled = disabled - ) - - @Stable - @Composable - fun selectedSwitcherStyle( - default: SwitcherStyle = SwitcherStyle( - fillColor = FluentTheme.colors.fillAccent.default, - labelColor = FluentTheme.colors.text.text.primary, - controlColor = FluentTheme.colors.text.onAccent.primary, - controlSize = DpSize(width = 12.dp, height = 12.dp), - borderBrush = SolidColor(Color.Transparent) - ), - hovered: SwitcherStyle = default.copy( - fillColor = FluentTheme.colors.fillAccent.secondary, - controlSize = DpSize(width = 14.dp, height = 14.dp) - ), - pressed: SwitcherStyle = default.copy( - fillColor = FluentTheme.colors.fillAccent.tertiary, - controlSize = DpSize(width = 17.dp, height = 14.dp) - ), - disabled: SwitcherStyle = default.copy( - fillColor = FluentTheme.colors.fillAccent.disabled, - borderBrush = SolidColor(FluentTheme.colors.fillAccent.disabled), - controlColor = FluentTheme.colors.text.onAccent.disabled, - labelColor = FluentTheme.colors.text.text.disabled - ) - ) = SwitcherStyleScheme( - default = default, - hovered = hovered, - pressed = pressed, - disabled = disabled - ) -} - -typealias SwitcherStyleScheme = PentaVisualScheme - -data class SwitcherStyle( - val fillColor: Color, - val labelColor: Color, - val controlColor: Color, - val controlSize: DpSize, - val borderBrush: Brush -) \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Text.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Text.kt deleted file mode 100644 index b0d3aa9f..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Text.kt +++ /dev/null @@ -1,115 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.foundation.text.BasicText -import androidx.compose.foundation.text.InlineTextContent -import androidx.compose.runtime.Composable -import androidx.compose.ui.Modifier -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.graphics.takeOrElse -import androidx.compose.ui.text.AnnotatedString -import androidx.compose.ui.text.TextLayoutResult -import androidx.compose.ui.text.TextStyle -import androidx.compose.ui.text.font.FontFamily -import androidx.compose.ui.text.font.FontStyle -import androidx.compose.ui.text.font.FontWeight -import androidx.compose.ui.text.style.TextAlign -import androidx.compose.ui.text.style.TextDecoration -import androidx.compose.ui.text.style.TextOverflow -import androidx.compose.ui.unit.TextUnit -import com.konyaco.fluent.LocalContentAlpha -import com.konyaco.fluent.LocalContentColor -import com.konyaco.fluent.LocalTextStyle - -@Composable -fun Text( - text: String, - modifier: Modifier = Modifier, - color: Color = Color.Unspecified, - fontSize: TextUnit = TextUnit.Unspecified, - fontStyle: FontStyle? = null, - fontWeight: FontWeight? = null, - fontFamily: FontFamily? = null, - letterSpacing: TextUnit = TextUnit.Unspecified, - textDecoration: TextDecoration? = null, - textAlign: TextAlign = TextAlign.Unspecified, - lineHeight: TextUnit = TextUnit.Unspecified, - overflow: TextOverflow = TextOverflow.Clip, - softWrap: Boolean = true, - maxLines: Int = Int.MAX_VALUE, - minLines: Int = 1, - onTextLayout: (TextLayoutResult) -> Unit = {}, - style: TextStyle = LocalTextStyle.current -) { - Text( - AnnotatedString(text), - modifier, - color, - fontSize, - fontStyle, - fontWeight, - fontFamily, - letterSpacing, - textDecoration, - textAlign, - lineHeight, - overflow, - softWrap, - maxLines, - minLines, - emptyMap(), - onTextLayout, - style - ) -} -@Composable -fun Text( - text: AnnotatedString, - modifier: Modifier = Modifier, - color: Color = Color.Unspecified, - fontSize: TextUnit = TextUnit.Unspecified, - fontStyle: FontStyle? = null, - fontWeight: FontWeight? = null, - fontFamily: FontFamily? = null, - letterSpacing: TextUnit = TextUnit.Unspecified, - textDecoration: TextDecoration? = null, - textAlign: TextAlign = TextAlign.Unspecified, - lineHeight: TextUnit = TextUnit.Unspecified, - overflow: TextOverflow = TextOverflow.Clip, - softWrap: Boolean = true, - maxLines: Int = Int.MAX_VALUE, - minLines: Int = 1, - inlineContent: Map = mapOf(), - onTextLayout: (TextLayoutResult) -> Unit = {}, - style: TextStyle = LocalTextStyle.current -) { - val textColor = color.takeOrElse { - style.color.takeOrElse { - LocalContentColor.current.copy(alpha = LocalContentAlpha.current) - } - } - val mergedStyle = style.merge( - TextStyle( - color = textColor, - fontSize = fontSize, - fontWeight = fontWeight, - textAlign = textAlign, - lineHeight = lineHeight, - fontFamily = fontFamily, - textDecoration = textDecoration, - fontStyle = fontStyle, - letterSpacing = letterSpacing - ) - ) - BasicText( - text, - modifier, - mergedStyle, - onTextLayout, - overflow, - softWrap, - maxLines, - minLines, - inlineContent - ) -} - diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/TextField.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/TextField.kt deleted file mode 100644 index 2ddc1ff1..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/TextField.kt +++ /dev/null @@ -1,200 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.foundation.BorderStroke -import androidx.compose.foundation.hoverable -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.foundation.interaction.collectIsFocusedAsState -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.Column -import androidx.compose.foundation.layout.Spacer -import androidx.compose.foundation.layout.defaultMinSize -import androidx.compose.foundation.layout.height -import androidx.compose.foundation.layout.offset -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.shape.RoundedCornerShape -import androidx.compose.foundation.text.BasicTextField -import androidx.compose.foundation.text.KeyboardActions -import androidx.compose.foundation.text.KeyboardOptions -import androidx.compose.runtime.Composable -import androidx.compose.runtime.CompositionLocalProvider -import androidx.compose.runtime.Immutable -import androidx.compose.runtime.Stable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.remember -import androidx.compose.runtime.rememberUpdatedState -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.draw.clip -import androidx.compose.ui.draw.drawWithContent -import androidx.compose.ui.geometry.Offset -import androidx.compose.ui.geometry.Size -import androidx.compose.ui.graphics.Brush -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.graphics.SolidColor -import androidx.compose.ui.platform.LocalDensity -import androidx.compose.ui.text.input.TextFieldValue -import androidx.compose.ui.text.input.VisualTransformation -import androidx.compose.ui.unit.dp -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.LocalContentColor -import com.konyaco.fluent.LocalTextStyle -import com.konyaco.fluent.background.BackgroundSizing -import com.konyaco.fluent.background.Layer -import com.konyaco.fluent.scheme.PentaVisualScheme -import com.konyaco.fluent.scheme.collectVisualState - -@Composable -fun TextField( - value: TextFieldValue, - onValueChange: (TextFieldValue) -> Unit, - modifier: Modifier = Modifier, - enabled: Boolean = true, - readOnly: Boolean = false, - singleLine: Boolean = false, - visualTransformation: VisualTransformation = VisualTransformation.None, - keyboardOptions: KeyboardOptions = KeyboardOptions.Default, - keyboardActions: KeyboardActions = KeyboardActions(), - maxLines: Int = Int.MAX_VALUE, - header: (@Composable () -> Unit)? = null, - placeholder: (@Composable () -> Unit)? = null, - interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }, - colors: TextFieldColorScheme = TextFieldDefaults.defaultTextFieldColors() -) { - val color = colors.schemeFor(interactionSource.collectVisualState(!enabled, focusFirst = true)) - Column(modifier) { - if (header != null) { - header() - Spacer(Modifier.height(8.dp)) - } - BasicTextField( - modifier = modifier.defaultMinSize(64.dp, 32.dp) - .clip(RoundedCornerShape(4.dp)), - value = value, - onValueChange = onValueChange, - textStyle = LocalTextStyle.current.copy(color = color.contentColor), - enabled = enabled, - readOnly = readOnly, - singleLine = singleLine, - visualTransformation = visualTransformation, - maxLines = maxLines, - keyboardActions = keyboardActions, - cursorBrush = color.cursorBrush, - keyboardOptions = keyboardOptions, - interactionSource = interactionSource, - decorationBox = { innerTextField -> - TextFieldDefaults.DecorationBox( - color = color, - interactionSource = interactionSource, - innerTextField = innerTextField, - value = value.text, - enabled = enabled, - placeholder = placeholder - ) - } - ) - } -} - -object TextFieldDefaults { - - @Stable - @Composable - fun defaultTextFieldColors( - default: TextFieldColor = TextFieldColor( - fillColor = FluentTheme.colors.control.default, - contentColor = FluentTheme.colors.text.text.primary, - placeholderColor = FluentTheme.colors.text.text.secondary, - bottomLineFillColor = FluentTheme.colors.stroke.controlStrong.default, - borderBrush = FluentTheme.colors.borders.textControl, - cursorBrush = SolidColor(FluentTheme.colors.text.text.primary) - ), - focused: TextFieldColor = default.copy( - fillColor = FluentTheme.colors.control.inputActive, - bottomLineFillColor = FluentTheme.colors.fillAccent.default, - borderBrush = SolidColor(FluentTheme.colors.stroke.control.default) - ), - hovered: TextFieldColor = default.copy( - fillColor = FluentTheme.colors.control.secondary - ), - pressed: TextFieldColor = default.copy( - fillColor = FluentTheme.colors.control.inputActive, - borderBrush = SolidColor(FluentTheme.colors.stroke.control.default) - ), - disabled: TextFieldColor = default.copy( - contentColor = FluentTheme.colors.text.text.disabled, - placeholderColor = FluentTheme.colors.text.text.disabled, - bottomLineFillColor = Color.Transparent, - ) - ) = TextFieldColorScheme( - default = default, - focused = focused, - hovered = hovered, - pressed = pressed, - disabled = disabled - ) - - @Composable - fun DecorationBox( - value: String, - interactionSource: MutableInteractionSource, - enabled: Boolean, - color: TextFieldColor, - modifier: Modifier = Modifier.drawBottomLine(enabled, color, interactionSource), - placeholder: (@Composable () -> Unit)?, - innerTextField: @Composable () -> Unit, - ) { - Layer( - modifier = modifier.hoverable(interactionSource), - shape = RoundedCornerShape(4.dp), - color = color.fillColor, - border = BorderStroke(1.dp, color.borderBrush), - backgroundSizing = BackgroundSizing.OuterBorderEdge - ) { - Box( - Modifier.offset(y = (-1).dp).padding(start = 12.dp, end = 12.dp, top = 4.dp, bottom = 3.dp), - Alignment.CenterStart - ) { - innerTextField() - if (value.isEmpty() && placeholder != null) { - CompositionLocalProvider( - LocalContentColor provides color.placeholderColor, - LocalTextStyle provides LocalTextStyle.current.copy(color = color.placeholderColor) - ) { - placeholder() - } - } - } - } - } -} - -typealias TextFieldColorScheme = PentaVisualScheme - -@Immutable -data class TextFieldColor( - val fillColor: Color, - val contentColor: Color, - val placeholderColor: Color, - val bottomLineFillColor: Color, - val borderBrush: Brush, - val cursorBrush: Brush -) - -@Composable -private fun Modifier.drawBottomLine(enabled: Boolean, color: TextFieldColor, interactionSource: MutableInteractionSource): Modifier { - val isFocused by interactionSource.collectIsFocusedAsState() - return if (enabled) { - val height by rememberUpdatedState(with(LocalDensity.current) { - (if (isFocused) 2.dp else 1.dp).toPx() - }) - val fillColor by rememberUpdatedState(color.bottomLineFillColor) - drawWithContent { - drawContent() - drawRect( - color = fillColor, - topLeft = Offset(0f, size.height - height), - size = Size(size.width, height) - ) - } - } else this -} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/scheme/VisualStateScheme.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/scheme/VisualStateScheme.kt deleted file mode 100644 index 98b759be..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/scheme/VisualStateScheme.kt +++ /dev/null @@ -1,75 +0,0 @@ -package com.konyaco.fluent.scheme - -import androidx.compose.foundation.interaction.InteractionSource -import androidx.compose.foundation.interaction.collectIsFocusedAsState -import androidx.compose.foundation.interaction.collectIsHoveredAsState -import androidx.compose.foundation.interaction.collectIsPressedAsState -import androidx.compose.runtime.Composable -import androidx.compose.runtime.Immutable -import androidx.compose.runtime.getValue - -@Composable -fun InteractionSource.collectVisualState(disabled: Boolean, focusFirst: Boolean = false): VisualState { - val pressed by collectIsPressedAsState() - val hovered by collectIsHoveredAsState() - val focused by collectIsFocusedAsState() - return if (focusFirst) VisualState.fromInteractionFocusFirst(pressed, hovered, disabled, focused) - else VisualState.fromInteraction(pressed, hovered, disabled, focused) -} - -enum class VisualState { - Default, Hovered, Pressed, Disabled, Focused; - - companion object { - fun fromInteraction( - pressed: Boolean, - hovered: Boolean, - disabled: Boolean, - focused: Boolean - ): VisualState { - return when { - disabled -> Disabled - pressed -> Pressed - hovered -> Hovered - focused -> Focused - else -> Default - } - } - - fun fromInteractionFocusFirst( - pressed: Boolean, - hovered: Boolean, - disabled: Boolean, - focused: Boolean - ): VisualState { - return when { - disabled -> Disabled - focused -> Focused - pressed -> Pressed - hovered -> Hovered - else -> Default - } - } - } -} - -fun interface VisualStateScheme { - fun schemeFor(state: VisualState): T -} - -@Immutable -data class PentaVisualScheme( - val default: T, - val hovered: T, - val pressed: T, - val disabled: T, - val focused: T = default -) : VisualStateScheme { - override fun schemeFor(state: VisualState): T = when (state) { - VisualState.Default -> default - VisualState.Hovered -> hovered - VisualState.Pressed -> pressed - VisualState.Disabled -> disabled - VisualState.Focused -> focused - } -} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/surface/Card.kt b/fluent/src/commonMain/kotlin/com/konyaco/fluent/surface/Card.kt deleted file mode 100644 index 91810c2d..00000000 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/surface/Card.kt +++ /dev/null @@ -1,111 +0,0 @@ -package com.konyaco.fluent.surface - -import androidx.compose.animation.animateColorAsState -import androidx.compose.animation.core.tween -import androidx.compose.foundation.BorderStroke -import androidx.compose.foundation.clickable -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.foundation.shape.RoundedCornerShape -import androidx.compose.runtime.Composable -import androidx.compose.runtime.Stable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.remember -import androidx.compose.ui.Modifier -import androidx.compose.ui.graphics.Brush -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.graphics.Shape -import androidx.compose.ui.graphics.SolidColor -import androidx.compose.ui.unit.dp -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.animation.FluentDuration -import com.konyaco.fluent.animation.FluentEasing -import com.konyaco.fluent.background.BackgroundSizing -import com.konyaco.fluent.background.Layer -import com.konyaco.fluent.scheme.PentaVisualScheme -import com.konyaco.fluent.scheme.VisualStateScheme -import com.konyaco.fluent.scheme.collectVisualState - -@Composable -fun Card( - modifier: Modifier, - shape: Shape = RoundedCornerShape(size = 8.dp), - content: @Composable () -> Unit -) { - Layer( - modifier = modifier, - shape = shape, - backgroundSizing = BackgroundSizing.InnerBorderEdge, - content = content - ) -} - -@Composable -fun Card( - onClick: () -> Unit, - modifier: Modifier = Modifier, - shape: Shape = RoundedCornerShape(size = 4.dp), - disabled: Boolean = false, - cardColors: VisualStateScheme = CardDefaults.cardColors(), - interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }, - content: @Composable () -> Unit -) { - val visualState = interactionSource.collectVisualState(disabled) - val colors = cardColors.schemeFor(visualState) - - val fillColor by animateColorAsState( - colors.fillColor, - animationSpec = tween(FluentDuration.QuickDuration, easing = FluentEasing.FastInvokeEasing) - ) - - val contentColor by animateColorAsState( - colors.contentColor, - animationSpec = tween(FluentDuration.QuickDuration, easing = FluentEasing.FastInvokeEasing) - ) - - Layer( - modifier = modifier.clickable( - enabled = !disabled, - onClick = onClick, - indication = null, - interactionSource = interactionSource - ), - shape = shape, - backgroundSizing = BackgroundSizing.InnerBorderEdge, - color = fillColor, - border = BorderStroke(1.dp, colors.borderBrush), - contentColor = contentColor, - content = content - ) -} - -data class CardColor( - val fillColor: Color, - val contentColor: Color, - val borderBrush: Brush -) - -object CardDefaults { - @Stable - @Composable - fun cardColors( - default: CardColor = CardColor( - fillColor = FluentTheme.colors.background.layer.default, - contentColor = FluentTheme.colors.text.text.primary, - borderBrush = SolidColor(FluentTheme.colors.stroke.card.default) - ), - hovered: CardColor = default.copy( - fillColor = FluentTheme.colors.control.secondary, - borderBrush = FluentTheme.colors.borders.control - ), - pressed: CardColor = CardColor( - fillColor = FluentTheme.colors.control.tertiary, - contentColor = FluentTheme.colors.text.text.secondary, - borderBrush = SolidColor(FluentTheme.colors.stroke.control.default) - ), - disabled: CardColor = pressed.copy( - fillColor = FluentTheme.colors.background.layer.default, - contentColor = FluentTheme.colors.text.text.primary, - borderBrush = SolidColor(FluentTheme.colors.stroke.card.default) - ) - ) = PentaVisualScheme(default, hovered, pressed, disabled) -} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/Colors.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/Colors.kt new file mode 100644 index 00000000..a1b2623e --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/Colors.kt @@ -0,0 +1,1104 @@ +package io.github.composefluent + +import androidx.compose.runtime.Composable +import androidx.compose.runtime.ReadOnlyComposable +import androidx.compose.runtime.Stable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.setValue +import androidx.compose.ui.graphics.Brush +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.takeOrElse + +/** + * Represents the color palette for the Fluent UI design system. + * + * This class provides a comprehensive set of colors used throughout the Fluent design system, + * including text colors, control colors, background colors, and more. It supports both light + * and dark modes, with colors dynamically generated based on the current theme. + * + * @property darkMode Whether the color set should be in dark mode. + * @property shades The base color shades to be used. + * @property text Colors used for text elements, including primary, secondary, and disabled text colors. + * @property control Colors used for controls, including default, secondary, and disabled states. + * @property controlAlt Alternate colors used for controls. + * @property controlSolid Solid colors used for controls. + * @property controlStrong Strong colors used for controls. + * @property subtleFill Colors for subtle fill effects. + * @property controlOnImage Colors for controls displayed on top of images. + * @property fillAccent Colors for accent fills. + * @property background Colors for backgrounds, including cards, layers, and solid backgrounds. + * @property stroke Colors for strokes and borders around elements. + * @property borders Colors for borders around elements. + * @property system System colors, such as attention, success, caution, and critical. + * + * All color properties are mutable states, which means they will automatically recompose + * when their values change. + * + * @param shades The [Shades] object defining the base, light, and dark shades of the accent color. + * @param darkMode A boolean indicating whether to use the dark mode color scheme. + */ +@Stable +class Colors( + shades: Shades, + darkMode: Boolean +) { + var darkMode by mutableStateOf(darkMode) + internal set + var shades by mutableStateOf(shades) + internal set + var text by mutableStateOf(generateTextColors(shades, darkMode)) + internal set + var control by mutableStateOf(generateControlColors(shades, darkMode)) + internal set + var controlAlt by mutableStateOf(generateControlAltColors(shades, darkMode)) + internal set + var controlSolid by mutableStateOf(generateControlSolidColors(shades, darkMode)) + internal set + var controlStrong by mutableStateOf(generateControlStrongColors(shades, darkMode)) + internal set + var subtleFill by mutableStateOf(generateSubtleFillColors(shades, darkMode)) + internal set + var controlOnImage by mutableStateOf(generateControlOnImageColors(darkMode)) + internal set + var fillAccent by mutableStateOf(generateFillAccentColors(shades, darkMode)) + internal set + var background by mutableStateOf(generateBackground(shades, darkMode)) + internal set + var stroke by mutableStateOf(generateStroke(shades, darkMode)) + internal set + var borders by mutableStateOf(generateBorders(fillAccent, stroke, darkMode)) + internal set + var system by mutableStateOf(generateSystemColors(darkMode)) + internal set +} + +/** + * Represents the border brushes used for various UI elements. + * + * @property control The brush used for general control borders. + * @property accentControl The brush used for borders of accented controls. + * @property circle The brush used for circular borders. + * @property textControl The brush used for borders around text controls. + * @property textControlFocused The brush used for borders around focused text controls. + */ +data class Borders( + val control: Brush, + val accentControl: Brush, + val circle: Brush, + val textControl: Brush, + val textControlFocused: Brush +) + +/** + * Represents a set of color shades based on a base color. + * + * Each shade is a variation of the [base] color, providing a range of light and dark tones. + * This set of colors is designed to provide a harmonious palette for UI elements. + * + * @property base The core, or primary, color of the shade set. + * @property light1 A lighter variation of the base color. + * @property light2 A second, even lighter variation of the base color. + * @property light3 The lightest variation of the base color. + * @property dark1 A darker variation of the base color. + * @property dark2 A second, even darker variation of the base color. + * @property dark3 The darkest variation of the base color. + */ +data class Shades( + val base: Color, + val light1: Color, + val light2: Color, + val light3: Color, + val dark1: Color, + val dark2: Color, + val dark3: Color, +) + +/** + * Represents the text colors used in the Fluent Design System. + * + * This data class groups together different categories of text colors, + * including the standard text colors, accent text colors, and text colors + * specifically designed to be displayed on accent backgrounds. + * + * @property text A [ColorCompound] object containing the primary, secondary, + * tertiary, and disabled colors for standard text. + * @property accent A [ColorCompound] object containing the primary, secondary, + * tertiary, and disabled colors for text displayed with an accent treatment. + * @property onAccent A [TextOnAccentColorCompound] object containing the primary, + * secondary, disabled, and selected text colors for text displayed + * on accent backgrounds. + */ +data class TextColor( + val text: ColorCompound, + val accent: ColorCompound, + val onAccent: TextOnAccentColorCompound +) + +/** + * Represents a compound color with different levels of emphasis. + * + * This data class groups together four colors: primary, secondary, tertiary, and disabled. + * This is useful for defining color palettes for elements that have multiple states + * or levels of visual hierarchy, such as text or controls. + * + * @property primary The primary color, typically used for the most important elements. + * @property secondary The secondary color, used for less important elements or supporting text. + * @property tertiary The tertiary color, used for subtle details or low-emphasis text. + * @property disabled The color used for disabled or inactive elements. + */ +data class ColorCompound( + val primary: Color, + val secondary: Color, + val tertiary: Color, + val disabled: Color +) + +/** + * Represents the compound color set for text on an accent background. + * + * This data class defines the different color states for text elements when placed + * on a background with an accent color. It includes colors for primary, secondary, + * disabled, and selected text states. + * + * @property primary The primary color for text on an accent background. + * @property secondary The secondary color for text on an accent background. + * @property disabled The color for disabled text on an accent background. + * @property selectedText The color for selected text on an accent background. + */ +data class TextOnAccentColorCompound( + val primary: Color, + val secondary: Color, + val disabled: Color, + val selectedText: Color, +) + +/** + * Represents the colors used for various controls in the UI. + * + * @property default The default color for controls. + * @property secondary The secondary color for controls, often used for hover or secondary states. + * @property tertiary The tertiary color for controls, often used for pressed or disabled states. + * @property quaternary The quaternary color for controls, used for specific visual distinctions. + * @property disabled The color for disabled controls. + * @property transparent A transparent color for controls. + * @property inputActive The color for controls that are active input fields. + */ +data class ControlColors( + val default: Color, + val secondary: Color, + val tertiary: Color, + val quaternary: Color, + val disabled: Color, + val transparent: Color, + val inputActive: Color, +) + +/** + * Represents a set of alternate control colors. + * + * These colors are used for controls in specific contexts where a different visual + * style is required compared to the default [ControlColors]. + * + * @property transparent A transparent color for controls. + * @property secondary A secondary color for alternate controls. + * @property tertiary A tertiary color for alternate controls. + * @property quaternary A quaternary color for alternate controls. + * @property disabled A disabled state color for alternate controls. + */ +data class ControlAltColors( + val transparent: Color, + val secondary: Color, + val tertiary: Color, + val quaternary: Color, + val disabled: Color +) + +/** + * Represents a set of solid control colors. + * + * These colors are used for controls that have a solid background fill. + * + * @property default The default solid background color for controls. + */ +data class ControlSolidColors( + val default: Color +) + +/** + * Represents the strong colors used for controls. + * + * Strong colors are typically used for elements that require higher emphasis, + * such as borders of focused controls or specific states. + * + * @property default The default strong color for controls. + * @property disabled The strong color for controls in a disabled state. + */ +data class ControlStrongColors( + val default: Color, + val disabled: Color +) + +/** + * Represents the colors used for accent fills in the Fluent Design System. + * + * These colors are typically used to highlight interactive elements or provide visual emphasis. + * They are derived from the main accent color and adjusted for different states. + * + * @property default The default color for accent fills. + * @property secondary A secondary color for accent fills, slightly less prominent than the default. + * @property tertiary A tertiary color for accent fills, even less prominent than the secondary. + * @property disabled The color used for accent fills when the element is disabled. + * @property selectedTextBackground The background color for selected text when using accent colors. + */ +data class FillAccentColors( + val default: Color, + val secondary: Color, + val tertiary: Color, + val disabled: Color, + val selectedTextBackground: Color +) + +/** + * Represents the colors used for controls displayed on top of images. + * + * These colors are specifically designed to provide good contrast and visibility when + * rendered over varying image content. + * + * @property default The default color for controls on images. + * @property secondary A secondary color for controls on images, typically a lighter shade. + * @property tertiary A tertiary color for controls on images, typically an even lighter shade. + * @property disabled The color for disabled controls on images. + */ +data class ControlOnImageColors( + val default: Color, + val secondary: Color, + val tertiary: Color, + val disabled: Color +) + +/** + * Represents the stroke colors used for borders and outlines of various UI elements. + * + * This includes strokes for controls, surfaces, cards, dividers, and focus indicators. + * + * @property control Colors for strokes around controls. + * @property controlStrong Colors for strong strokes around controls. + * @property surface Colors for strokes around surfaces. + * @property card Colors for strokes around cards. + * @property divider Color for divider lines. + * @property focus Colors for focus indicators. + */ +data class Stroke( + val control: Control, + val controlStrong: ControlStrong, + val surface: Surface, + val card: Card, + val divider: Divider, + val focus: Focus +) { + /** + * Represents the control stroke colors used for various UI elements. + * + * @property default The default stroke color for controls. + * @property secondary The secondary stroke color for controls. + * @property onAccentDefault The default stroke color for controls placed on an accent background. + * @property onAccentSecondary The secondary stroke color for controls placed on an accent background. + * @property onAccentTertiary The tertiary stroke color for controls placed on an accent background. + * @property onAccentDisabled The disabled stroke color for controls placed on an accent background. + * @property forStrongFillWhenOnImage The stroke color for strong fill controls placed on images. + */ + data class Control( + val default: Color, + val secondary: Color, + val onAccentDefault: Color, + val onAccentSecondary: Color, + val onAccentTertiary: Color, + val onAccentDisabled: Color, + val forStrongFillWhenOnImage: Color + ) + + /** + * Represents a set of strong control colors. + * + * These colors are typically used for controls that require a more pronounced visual presence. + * + * @property default The default color for strong controls. + * @property disabled The color for strong controls in a disabled state. + */ + data class ControlStrong( + val default: Color, + val disabled: Color + ) + + /** + * Surface stroke colors. + * + * @property default The default surface stroke color. + * @property flyout The surface stroke color for flyout elements. + */ + data class Surface( + val default: Color, + val flyout: Color + ) + + /** + * Colors used for strokes and borders around cards. + * + * @property default The default stroke color for cards. + * @property defaultSolid The default solid stroke color for cards. + */ + data class Card( + val default: Color, + val defaultSolid: Color + ) + + /** + * Represents the color of dividers. + * + * @property default The default color for dividers. + */ + data class Divider( + val default: Color + ) + + /** + * Represents the focus colors for UI elements. + * + * This data class defines the colors used to indicate when an element has keyboard focus. + * It typically consists of an outer and inner color for a focus ring or indicator. + * + * @property outer The color of the outer focus indicator. + * @property inner The color of the inner focus indicator. + */ + data class Focus( + val outer: Color, + val inner: Color + ) +} + +/** + * Represents colors used for subtle fill effects, often for subtle buttons or other elements. + * + * Subtle fills are semi-transparent colors used to provide a subtle visual distinction + * for elements like cards or containers without being overly prominent. + * + * @property transparent A fully transparent color. + * @property secondary A secondary subtle fill color. + * @property tertiary A tertiary subtle fill color. + * @property disabled A subtle fill color for disabled states. + */ +data class SubtleFillColors( + val transparent: Color, + val secondary: Color, + val tertiary: Color, + val disabled: Color +) + +/** + * Represents the various background colors used in the Fluent Design System. + * + * This includes colors for cards, smoke effects, layered surfaces, solid backgrounds, + * Mica and Acrylic materials, and accent-colored Acrylic materials. + */ +data class Background( + val card: Card, + val smoke: Smoke, + val mica: Mica, + val layer: Layer, + val layerOnAcrylic: LayerOnAcrylic, + val layerOnMicaBaseAlt: LayerOnMicaBaseAlt, + val solid: Solid, + val acrylic: Acrylic, + val accentAcrylic: AccentAcrylic +) { + /** + * Used to create ‘cards’ - content blocks that live on page and layer backgrounds. + */ + data class Card( + /** + * Default card color + */ + val default: Color, + /** + * Alternate card color: slightly darker + */ + val secondary: Color, + /** + * Default card hover and pressed color + */ + val tertiary: Color + ) + + /** + * Used over windows and desktop to block them out as inaccessible. + */ + data class Smoke( + /** + * Dims backgrounds behinds dialogs + */ + val default: Color + ) + + /** + * Used on background colors of any material to create layering. + */ + data class Layer( + /** + * Content layer color + */ + val default: Color, + /** + * Alternate content layer color + */ + val alt: Color + ) + + /** + * Used on background colors of any material to create layering. + */ + data class LayerOnAcrylic( + /** + * Content layer color on acrylic surfaces + */ + val default: Color + ) + + /** + * Used for fills on Tab control. + */ + data class LayerOnMicaBaseAlt( + /** + * Active Tab Rest + * Content layer + */ + val default: Color, + /** + * Active Tab Drag + */ + val tertiary: Color, + /** + * Inactive Tab Rest + */ + val transparent: Color, + /** + * Inactive Tab Hover + */ + val secondary: Color + ) + + /** + * Solid background colors to place layers, cards, or controls on. + */ + data class Solid( + /** + * Used for the bottom most layer of an experience. + */ + val base: Color, + /** + * Used for the bottom most layer of an experience. + */ + val baseAlt: Color, + /** + * Alternate base color for those who need a darker background color. + */ + val secondary: Color, + /** + * Content layer color + */ + val tertiary: Color, + /** + * Alt content layer color + */ + val quaternary: Color, + /** + * Used for solid default card colors + */ + val quinary: Color, + /** + * Used for solid default card color + */ + val senary: Color + ) + + /** + * Mica background colors to place layers, cards, or controls on. + */ + data class Mica( + /** + * Used for the bottom most layer of an experience. + * + * Light: #F3F3F3 (FF, 100%), 50% Tint Opacity, 100% Luminosity Opacity + * + * Dark: #202020, 80% Tint Opacity, 100% Luminosity opacity + */ + val base: Color, + /** + * Used for the bottom most layer of an experience. + * + * Fallback Light: Solid Background / Base (#F3F3F3, 100%) + * + * Fallback Dark: Solid Background / Base (#202020, 100%) + */ + val baseFallback: Color, + /** + * Default tab band background color。 + * + * Light: #DADADA(80, 50%), 100% Luminosity Opacity + * + * Dark: #0A0A0A (00, 0%), 100% Luminosity Opacity + */ + val baseAlt: Color, + /** + * Default tab band background color. + * + * Fallback Light: Solid Background / Base Alt (#DADADA, 100%) + * + * Fallback Dark: Solid Background / Base Alt (#0A0A0A, 100%) + */ + val baseAltFallback: Color + ) + + /** + * Acrylic background colors to place layers, cards, or controls on. + */ + data class Acrylic( + /** + * Used for the bottom most layer of an acrylic surface only when the surface will use layers. + * + * Light: #F3F3F3 (FF, 100%), 0% Tint Opacity, 90% Luminosity Opacity + * + * Dark: #202020, 50% TInt Opacity, 96% Luminosity Opacity + */ + val base: Color, + /** + * Used for the bottom most layer of an acrylic surface only when the surface will use layers. + * + * Light Fallback: #EEEEEE (FF, 100%) + * + * Dark Fallback: #1C1C1C + */ + val baseFallback: Color, + /** + * Default acrylic recipe used for control flyouts and surfaces that live with in the context of an app. + * + * Light: #FCFCFC (FF, 100%), 0% Tint Opacity, 85% Luminosity Opacity + * + * Dark: #2C2C2C, 15% Tint Opacity, 96% Luminosity Opacity + */ + val default: Color, + /** + * Default acrylic recipe used for control flyouts and surfaces that live with in the context of an app. + * + * Light Fallback: #F9F9F9 (FF, 100%) + * + * Dark Fallback: #2C2C2C + */ + val defaultFallback: Color + ) + + /** + * Acrylic background colors to place layers, cards, or controls on. + */ + data class AccentAcrylic( + /** + * Used for the bottom most layer of an acrylic surface only when the surface will use layers. + * + * Light: Light 3, 80% Tint Opacity, 80% Luminosity Opacity + * + * Dark: Dark 2, 80% Tint Opacity, 80% Luminosity Opacity + */ + val base: Color, + val baseFallback: Color, + /** + * Default acrylic recipe used for control flyouts and surfaces that live with in the context of an app. + * + * Light: Light 3, 80% Tint Opacity, 90% Luminosity Opacity + * + * Dark: Dark 1, 80% Tint Opacity, 80% Luminosity Opacity + */ + val default: Color, + val defaultFallback: Color + ) +} + +/** + * Represents system-specific colors used for various states and feedback. + * + * These colors are typically used to indicate status or provide feedback to the user, + * such as attention, success, caution, and critical states. + * + * @property attention The color used to draw attention to an element or state. + * @property attentionBackground The background color associated with the attention state. + * @property solidAttentionBackground The solid background color associated with the attention state. + * @property success The color used to indicate a successful action or state. + * @property successBackground The background color associated with the success state. + * @property caution The color used to indicate a cautionary state or potential issue. + * @property cautionBackground The background color associated with the caution state. + * @property critical The color used to indicate a critical error or severe issue. + * @property criticalBackground The background color associated with the critical state. + * @property neutral The color used for neutral states or elements. + * @property neutralBackground The background color associated with the neutral state. + * @property solidNeutral The solid color used for neutral states or elements. + * @property solidNeutralBackground The solid background color associated with the neutral state. + */ +data class SystemColors( + val attention: Color, + val attentionBackground: Color, + val solidAttentionBackground: Color, + val success: Color, + val successBackground: Color, + val caution: Color, + val cautionBackground: Color, + val critical: Color, + val criticalBackground: Color, + val neutral: Color, + val neutralBackground: Color, + val solidNeutral: Color, + val solidNeutralBackground: Color, +) + +/** + * Generates a set of [Shades] based on the provided accent color. + * + * If the provided accent color has a pre-defined set of shades in [getAccentShades], + * that set is returned. Otherwise, the default shades are returned. + * + * @param accent The base accent color to generate shades from. + * @return A [Shades] object containing the base color and its light and dark variations. + */ +fun generateShades(accent: Color): Shades { + return getAccentShades()[accent] ?: getDefaultShades() +} + +internal fun getDefaultShades(): Shades = getAccentShades().entries.first().value + +internal fun getAccentShades() = mapOf( + Color(0xFF0078D4) to Shades( + base = Color(0xFF0078D4), + light1 = Color(0xFF0093F9), + light2 = Color(0xFF60CCFE), + light3 = Color(0xFF98ECFE), + dark1 = Color(0xFF005EB7), + dark2 = Color(0xFF003D92), + dark3 = Color(0xFF001968) + ), +) + + +/** + * Returns the content color for a given background color. + * + * This function determines an appropriate color for text or other content to be + * displayed on top of the provided `backgroundColor` to ensure sufficient contrast + * and readability according to the Fluent design system. + * + * If no specific content color is defined for the given background color within the + * current [FluentTheme.colors], it falls back to the [LocalContentColor.current]. + * + * @param backgroundColor The background color for which to determine the content color. + * @return The content color that provides sufficient contrast with the background. + */ +@Composable +@ReadOnlyComposable +fun contentColorFor(backgroundColor: Color) = + FluentTheme.colors.contentColorFor(backgroundColor).takeOrElse { LocalContentColor.current } + +/** + * Returns the default content color for the given background color. + * + * This function provides a suggested content color (like text color) that ensures sufficient + * contrast and legibility when placed on the provided [backgroundColor]. The determination + * is based on the Fluent UI color palette and aims to follow accessibility guidelines. + * + * @param backgroundColor The background color for which to determine the content color. + * @return The suggested content color for the given [backgroundColor]. + */ +fun Colors.contentColorFor(backgroundColor: Color): Color { + // TODO: Remove this + return when (backgroundColor) { + shades.base, shades.dark1, shades.dark2, shades.dark3, + shades.light1, shades.light2, shades.light3, + system.caution, system.attention, system.success, + system.critical, system.solidNeutral -> text.onAccent.primary + + else -> text.text.primary + } +} + +internal fun generateTextColors(shades: Shades, darkMode: Boolean): TextColor = + if (darkMode) TextColor( + text = ColorCompound( + primary = Color(0xFFFFFFFF), + secondary = Color(0xC8FFFFFF), + tertiary = Color(0x8BFFFFFF), + disabled = Color(0x5DFFFFFF) + ), + accent = ColorCompound( + primary = shades.light3, + secondary = shades.light3, + tertiary = shades.light2, + disabled = Color(0x5DFFFFFF) + ), + onAccent = TextOnAccentColorCompound( + primary = Color(0xFF000000), + secondary = Color(0x80000000), + disabled = Color(0x87FFFFFF), + selectedText = Color(0xFFFFFFFF) + ) + ) + else TextColor( + text = ColorCompound( + primary = Color(0xE4000000), + secondary = Color(0x9B000000), + tertiary = Color(0x72000000), + disabled = Color(0x5C000000) + ), + accent = ColorCompound( + shades.dark2, + shades.dark3, + shades.dark1, + Color(0x5C000000) + ), + onAccent = TextOnAccentColorCompound( + primary = Color(0xFFFFFFFF), + secondary = Color(0xB3FFFFFF), + disabled = Color(0xFFFFFFFF), + selectedText = Color(0xFFFFFFFF) + ) + ) + +internal fun generateControlColors(shades: Shades, darkMode: Boolean): ControlColors = + if (darkMode) ControlColors( + default = Color(0x0FFFFFFF), + secondary = Color(0x15FFFFFF), + tertiary = Color(0x08FFFFFF), + quaternary = Color(0x0FFFFFFF), + disabled = Color(0x0BFFFFFF), + transparent = Color(0x00FFFFFF), + inputActive = Color(0xB31E1E1E) + ) + else ControlColors( + default = Color(0xB3FFFFFF), + secondary = Color(0x80F9F9F9), + tertiary = Color(0x4DF9F9F9), + quaternary = Color(0xC2F3F3F3), + disabled = Color(0x4DF9F9F9), + transparent = Color(0x00FFFFFF), + inputActive = Color(0xFFFFFFFF) + ) + +internal fun generateControlAltColors(shades: Shades, darkMode: Boolean): ControlAltColors = + if (darkMode) ControlAltColors( + transparent = Color(0x00FFFFFF), + secondary = Color(0x19000000), + tertiary = Color(0x0BFFFFFF), + quaternary = Color(0x12FFFFFF), + disabled = Color(0x00FFFFFF) + ) else ControlAltColors( + transparent = Color(0x00FFFFFF), + secondary = Color(0x06000000), + tertiary = Color(0x0F000000), + quaternary = Color(0x18000000), + disabled = Color(0x00FFFFFF) + ) + +internal fun generateControlSolidColors(shades: Shades, darkMode: Boolean): ControlSolidColors = + if (darkMode) ControlSolidColors(default = Color(0xFF454545)) + else ControlSolidColors(default = Color(0xFFFFFFFF)) + +internal fun generateControlStrongColors(shades: Shades, darkMode: Boolean): ControlStrongColors = + if (darkMode) ControlStrongColors( + default = Color(0x8BFFFFFF), + disabled = Color(0x3FFFFFFF) + ) + else ControlStrongColors( + default = Color(0x72000000), + disabled = Color(0x51000000) + ) + +internal fun generateSubtleFillColors(shades: Shades, darkMode: Boolean): SubtleFillColors = + if (darkMode) SubtleFillColors( + transparent = Color(0x00FFFFFF), + secondary = Color(0x0FFFFFFF), + tertiary = Color(0x0BFFFFFF), + disabled = Color(0x00FFFFFF) + ) else SubtleFillColors( + transparent = Color(0x00000000), + secondary = Color(0x09000000), + tertiary = Color(0x06000000), + disabled = Color(0x00000000) + ) + +internal fun generateControlOnImageColors(darkMode: Boolean): ControlOnImageColors { + return if (darkMode) { + ControlOnImageColors( + default = Color(0xB31C1C1C), + secondary = Color(0xFF1A1A1A), + tertiary = Color(0xFF131313), + disabled = Color(0xFF1E1E1E) + ) + } else { + ControlOnImageColors( + default = Color(0xC9FFFFFF), + secondary = Color(0xFFF3F3F3), + tertiary = Color(0xFFEBEBEB), + disabled = Color(0x00FFFFFF) + ) + } +} + +internal fun generateFillAccentColors(shades: Shades, darkMode: Boolean): FillAccentColors = + if (darkMode) FillAccentColors( + default = shades.light2, + secondary = shades.light2.copy(0.9f), + tertiary = shades.light2.copy(0.8f), + disabled = Color(0x28FFFFFF), + selectedTextBackground = shades.base + ) + else FillAccentColors( + default = shades.dark1, + secondary = shades.dark1.copy(0.9f), + tertiary = shades.dark1.copy(0.8f), + disabled = Color(0x37000000), + selectedTextBackground = shades.base + ) + +internal fun generateBackground(shades: Shades, darkMode: Boolean): Background = + if (darkMode) Background( + card = Background.Card( + default = Color(0x0DFFFFFF), + secondary = Color(0x08FFFFFF), + tertiary = Color(0x12FFFFFF) + ), + smoke = Background.Smoke( + default = Color(0x4D000000) + ), + layer = Background.Layer(default = Color(0x4C3A3A3A), alt = Color(0x0EFFFFFF)), + layerOnAcrylic = Background.LayerOnAcrylic( + default = Color(0x09FFFFFF) + ), + layerOnMicaBaseAlt = Background.LayerOnMicaBaseAlt( + default = Color(0x733A3A3A), + tertiary = Color(0xFF2C2C2C), + transparent = Color.Transparent, + secondary = Color(0x0FFFFFFF) + ), + solid = Background.Solid( + base = Color(0xFF202020), + baseAlt = Color(0xFF0A0A0A), + secondary = Color(0xFF1C1C1C), + tertiary = Color(0xFF282828), + quaternary = Color(0xFF2C2C2C), + quinary = Color(0xFF333333), + senary = Color(0xFF373737) + ), + mica = Background.Mica( + base = Color(0xFF202020), + baseFallback = Color(0xFF202020), + baseAlt = Color(0x000A0A0A), + baseAltFallback = Color(0xFF0A0A0A), + ), + acrylic = Background.Acrylic( + base = Color(0xFF202020), + baseFallback = Color(0xFF1C1C1C), + default = Color(0xFF2C2C2C), + defaultFallback = Color(0xFF2C2C2C) + ), + accentAcrylic = Background.AccentAcrylic( + base = shades.dark2, + baseFallback = shades.dark2, + default = shades.dark1, + defaultFallback = shades.dark1 + ) + ) + else Background( + card = Background.Card( + default = Color(0xB3FFFFFF), + secondary = Color(0x80F6F6F6), + tertiary = Color(0xFFFFFFFF) + ), + smoke = Background.Smoke( + default = Color(0x4D000000) + ), + layer = Background.Layer(default = Color(0x80FFFFFF), alt = Color(0xFFFFFFFF)), + layerOnAcrylic = Background.LayerOnAcrylic( + default = Color(0x40FFFFFF) + ), + layerOnMicaBaseAlt = Background.LayerOnMicaBaseAlt( + default = Color(0xB3FFFFFF), + tertiary = Color(0xFFF9F9F9), + transparent = Color.Transparent, + secondary = Color(0x0A000000) + ), + solid = Background.Solid( + base = Color(0xFFF3F3F3), + baseAlt = Color(0xFFDADADA), + secondary = Color(0xFFEEEEEE), + tertiary = Color(0xFFF9F9F9), + quaternary = Color(0xFFFFFFFF), + quinary = Color(0xFFFDFDFD), + senary = Color(0xFFFFFFFF) + ), + mica = Background.Mica( + base = Color(0xFFF3F3F3), + baseFallback = Color(0xFFF3F3F3), + baseAlt = Color(0xFFDADADA), + baseAltFallback = Color(0xFFDADADA) + ), + acrylic = Background.Acrylic( + base = Color(0xFFF3F3F3), + baseFallback = Color(0xFFEEEEEE), + default = Color(0xFFFCFCFC), + defaultFallback = Color(0xFFF9F9F9) + ), + accentAcrylic = Background.AccentAcrylic( + base = shades.light3, + baseFallback = shades.light3, + default = shades.light3, + defaultFallback = shades.light3 + ) + ) + +internal fun generateStroke(shades: Shades, darkMode: Boolean): Stroke = + if (darkMode) Stroke( + control = Stroke.Control( + default = Color(0x12FFFFFF), + secondary = Color(0x18FFFFFF), + onAccentDefault = Color(0x14FFFFFF), + onAccentSecondary = Color(0x23000000), + onAccentTertiary = Color(0x37000000), + onAccentDisabled = Color(0x33000000), + forStrongFillWhenOnImage = Color(0x6B000000) + ), + controlStrong = Stroke.ControlStrong( + default = Color(0x9AFFFFFF), + disabled = Color(0x28FFFFFF) + ), + surface = Stroke.Surface( + default = Color(0x66757575), + flyout = Color(0x33000000), + ), + card = Stroke.Card( + default = Color(0x19000000), + defaultSolid = Color(0xFF1C1C1C) + ), + divider = Stroke.Divider( + default = Color(0x15FFFFFF) + ), + focus = Stroke.Focus( + outer = Color(0xFFFFFFFF), + inner = Color(0xB3000000) + ) + ) + else Stroke( + control = Stroke.Control( + default = Color(0x0F000000), + secondary = Color(0x29000000), + onAccentDefault = Color(0x14FFFFFF), + onAccentSecondary = Color(0x66000000), + onAccentTertiary = Color(0x37000000), + onAccentDisabled = Color(0x0F000000), + forStrongFillWhenOnImage = Color(0x59FFFFFF) + ), + controlStrong = Stroke.ControlStrong( + default = Color(0x9C000000), + disabled = Color(0x37000000) + ), + surface = Stroke.Surface( + default = Color(0x66757575), + flyout = Color(0x0F000000) + ), + card = Stroke.Card( + default = Color(0x0F000000), + defaultSolid = Color(0xFFEBEBEB) + ), + divider = Stroke.Divider( + default = Color(0x14000000) + ), + focus = Stroke.Focus( + outer = Color(0xE4000000), + inner = Color(0xB3FFFFFF) + ) + ) + +private fun generateBorders(fillAccent: FillAccentColors, stroke: Stroke, darkMode: Boolean): Borders = + if (darkMode) Borders( + control = Brush.verticalGradient( + 0.0f to stroke.control.secondary, + 0.0957f to stroke.control.default + ), + accentControl = Brush.verticalGradient( + 0.9067f to stroke.control.onAccentDefault, + 1f to stroke.control.onAccentSecondary, + ), + circle = Brush.verticalGradient( + 0.0f to stroke.control.secondary, + 0.5002f to stroke.control.default + ), + textControl = Brush.verticalGradient( + 1f to stroke.control.default, + 1f to stroke.controlStrong.default + ), + textControlFocused = Brush.verticalGradient( + 0.97f to stroke.control.default, + 0.97f to fillAccent.default + ) + ) else Borders( + control = Brush.verticalGradient( + 0.9058f to stroke.control.default, + 1f to stroke.control.secondary + ), + accentControl = Brush.verticalGradient( + 0.9067f to stroke.control.onAccentDefault, + 1f to stroke.control.onAccentSecondary, + ), + circle = Brush.verticalGradient( + 0.5f to stroke.control.default, + 0.95f to stroke.control.secondary + ), + textControl = Brush.verticalGradient( + 1f to stroke.control.default, + 1f to stroke.controlStrong.default + ), + textControlFocused = Brush.verticalGradient( + 0.97f to stroke.control.default, + 0.97f to fillAccent.default + ) + ) + +private fun generateSystemColors(darkMode: Boolean): SystemColors { + return if (darkMode) { + SystemColors( + attention = Color(0xFF60CDFF), + attentionBackground = Color(0x08FFFFFF), + solidAttentionBackground = Color(0xFF2E2E2E), + success = Color(0xFF6CCB5F), + successBackground = Color(0xFF393D1B), + caution = Color(0xFFFCE100), + cautionBackground = Color(0xFF433519), + critical = Color(0xFFFF99A4), + criticalBackground = Color(0xFF442726), + neutral = Color(0x8BFFFFFF), + neutralBackground = Color(0x08FFFFFF), + solidNeutral = Color(0xFF9D9D9D), + solidNeutralBackground = Color(0xFF2E2E2E), + ) + } else { + SystemColors( + attention = Color(0xFF0070CB), + attentionBackground = Color(0x80F6F6F6), + solidAttentionBackground = Color(0xFFF7F7F7), + success = Color(0xFF0F7B0F), + successBackground = Color(0xFFDFF6DD), + caution = Color(0xFF9D5D00), + cautionBackground = Color(0xFFFFF4CE), + critical = Color(0xFFC42B1C), + criticalBackground = Color(0xFFFDE7E9), + neutral = Color(0xFF72000000), + neutralBackground = Color(0x06000000), + solidNeutral = Color(0xFF8A8A8A), + solidNeutralBackground = Color(0xFFF3F3F3), + ) + } +} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/DefaultFontFamily.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/DefaultFontFamily.kt similarity index 87% rename from fluent/src/commonMain/kotlin/com/konyaco/fluent/DefaultFontFamily.kt rename to fluent/src/commonMain/kotlin/io/github/composefluent/DefaultFontFamily.kt index 30838f8d..0344eca3 100644 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/DefaultFontFamily.kt +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/DefaultFontFamily.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent +package io.github.composefluent import androidx.compose.runtime.Composable import androidx.compose.ui.text.font.FontFamily diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/ExperimentalFluentApi.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/ExperimentalFluentApi.kt new file mode 100644 index 00000000..94acf89a --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/ExperimentalFluentApi.kt @@ -0,0 +1,28 @@ +package io.github.composefluent + +/** + * Marks declarations that are part of an experimental fluent API. + * + * Experimental fluent APIs are subject to change or removal in future releases. + * The design and structure of these APIs are not considered stable, and breaking + * changes may occur without a major version increment. + * + * Using elements marked with this annotation requires explicit opt-in, either by + * applying the `@OptIn(ExperimentalFluentApi::class)` annotation to the calling site + * or by enabling the `-opt-in=io.github.composefluent.ExperimentalFluentApi` compiler + * argument. + * + * **Warning:** Use of experimental fluent APIs should be carefully considered, as + * they might introduce unforeseen compatibility issues or unexpected behavior changes + * when updating to newer versions of the library. + */ +@RequiresOptIn(message = "This is an experimental fluent API.") +@Target( + AnnotationTarget.CLASS, + AnnotationTarget.FUNCTION, + AnnotationTarget.PROPERTY, + AnnotationTarget.FIELD, + AnnotationTarget.PROPERTY_GETTER, +) +@Retention(AnnotationRetention.BINARY) +annotation class ExperimentalFluentApi \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/FluentTheme.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/FluentTheme.kt new file mode 100644 index 00000000..4c921d87 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/FluentTheme.kt @@ -0,0 +1,231 @@ +package io.github.composefluent + +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.text.selection.LocalTextSelectionColors +import androidx.compose.foundation.text.selection.TextSelectionColors +import androidx.compose.runtime.Composable +import androidx.compose.runtime.CompositionLocalProvider +import androidx.compose.runtime.ReadOnlyComposable +import androidx.compose.runtime.remember +import androidx.compose.runtime.staticCompositionLocalOf +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Color +import io.github.composefluent.background.MaterialContainer +import io.github.composefluent.background.MaterialContainerScope +import io.github.composefluent.background.Material +import io.github.composefluent.component.ContentDialogHost +import io.github.composefluent.component.ContentDialogHostState +import io.github.composefluent.component.LocalContentDialog +import io.github.composefluent.component.ProvideFontIcon + +/** + * FluentTheme is the root component of the Fluent Design System for Compose. + * It provides the default theming values and a [MaterialContainer] for acrylic effects. + * **Note:** This function is designed to be placed inside a Window or View. For global + * theme configuration, consider using [FluentThemeConfiguration]. + * + * @param colors The colors to use for the theme. Defaults to [FluentTheme.colors]. + * @param typography The typography to use for the theme. Defaults to [FluentTheme.typography]. + * @param cornerRadius The corner radius to use for the theme. Defaults to [FluentTheme.cornerRadius]. + * @param useAcrylicPopup Whether to use acrylic for popups. Defaults to [LocalAcrylicPopupEnabled.current]. + * @param compactMode Whether to use compact mode. Defaults to true. + * @param content The content to display within the theme. + */ +@ExperimentalFluentApi +@Composable +fun FluentTheme( + colors: Colors = FluentTheme.colors, + typography: Typography = FluentTheme.typography, + cornerRadius: CornerRadius = FluentTheme.cornerRadius, + useAcrylicPopup: Boolean = LocalAcrylicPopupEnabled.current, + compactMode: Boolean = true, + content: @Composable () -> Unit +) { + val contentDialogHostState = remember { ContentDialogHostState() } + MaterialContainer { + CompositionLocalProvider( + LocalAcrylicPopupEnabled provides useAcrylicPopup, + LocalColors provides colors, + LocalTypography provides typography, + LocalWindowAcrylicContainer provides this, + LocalTextSelectionColors provides TextSelectionColors( + colors.text.onAccent.primary, + colors.fillAccent.selectedTextBackground.copy(0.4f) + ), + LocalContentDialog provides contentDialogHostState, + LocalCompactMode provides compactMode, + LocalCornerRadius provides cornerRadius, + LocalShapes provides cornerRadius.toShapes() + ) { + ContentDialogHost(contentDialogHostState) + Box(modifier = Modifier.behindMaterial()) { + ProvideFontIcon { + PlatformCompositionLocalProvider(content) + } + } + } + } +} + +/** + * Overrides individual theme configuration options for a subset of the UI tree. + * + * This allows you to locally modify aspects of the theme, such as colors, typography, + * corner radius, compact mode, and whether acrylic popups are used, + * for the components within the provided `content`. + * + * @param colors The colors to use for this configuration scope. Defaults to the current [FluentTheme.colors]. + * @param typography The typography to use for this configuration scope. Defaults to the current [FluentTheme.typography]. + * @param cornerRadius The corner radius values to use for this configuration scope. Defaults to the current [FluentTheme.cornerRadius]. + * @param useAcrylicPopup Whether to use acrylic for popups within this configuration scope. Defaults to the current value of [LocalAcrylicPopupEnabled]. + * @param compactMode Whether compact mode is enabled within this configuration scope. Defaults to the current value of [LocalCompactMode]. + * @param contentDialogHostState The state of the content dialog host to use for this configuration scope. Defaults to the current value of [LocalContentDialog]. + * @param content The composable content that will inherit the specified theme configuration. + */ +@ExperimentalFluentApi +@Composable +fun FluentThemeConfiguration( + colors: Colors = FluentTheme.colors, + typography: Typography = FluentTheme.typography, + cornerRadius: CornerRadius = FluentTheme.cornerRadius, + useAcrylicPopup: Boolean = LocalAcrylicPopupEnabled.current, + compactMode: Boolean = LocalCompactMode.current, + contentDialogHostState: ContentDialogHostState = LocalContentDialog.current, + content: @Composable () -> Unit +) { + CompositionLocalProvider( + LocalAcrylicPopupEnabled provides useAcrylicPopup, + LocalColors provides colors, + LocalTypography provides typography, + LocalTextSelectionColors provides TextSelectionColors( + colors.text.onAccent.primary, + colors.fillAccent.selectedTextBackground.copy(0.4f) + ), + LocalCompactMode provides compactMode, + LocalContentDialog provides contentDialogHostState, + LocalCornerRadius provides cornerRadius, + LocalShapes provides cornerRadius.toShapes(), + content = content + ) +} + +/** + * FluentTheme provides a default theme for your application using the Fluent Design System. + * It applies default colors and typography, and enables compact mode. + * + * @param colors The colors to use for the theme. Defaults to the current FluentTheme colors. + * @param typography The typography to use for the theme. Defaults to the current FluentTheme typography. + * @param content The composable content to be themed. + */ +@OptIn(ExperimentalFluentApi::class) +@Composable +fun FluentTheme( + colors: Colors = FluentTheme.colors, + typography: Typography = FluentTheme.typography, + content: @Composable () -> Unit +) { + FluentTheme(colors, typography, LocalCornerRadius.current, useAcrylicPopup = false, compactMode = true, content) +} + +/** + * A composable that provides a compact mode configuration for its content. + * + * This function wraps the provided content within a [CompositionLocalProvider] that sets the + * [LocalCompactMode] to the specified [enabled] value. This allows components within the + * [content] to react to the compact mode setting and adjust their appearance or behavior accordingly. + * + * @param enabled Whether compact mode should be enabled for the wrapped content. Defaults to `true`. + * @param content The composable content that should be provided with the compact mode setting. + */ +@Composable +fun CompactMode(enabled: Boolean = true, content: @Composable () -> Unit) { + CompositionLocalProvider( + LocalCompactMode provides enabled, + content = content + ) +} + +/** + * Helper object to access the current Fluent Theme properties in a type-safe way. + */ +object FluentTheme { + + /** + * The current [Colors] provided by the [FluentTheme]. + */ + val colors: Colors + @Composable + @ReadOnlyComposable + get() = LocalColors.current + + /** + * The typography used by the theme. + */ + val typography: Typography + @Composable + @ReadOnlyComposable + get() = LocalTypography.current + + /** + * CompositionLocal for the current [Shapes] + */ + val shapes: Shapes + @Composable + @ReadOnlyComposable + get() = LocalShapes.current + + /** + * Represents the corner radius values for various components in the theme. + */ + val cornerRadius: CornerRadius + @Composable + @ReadOnlyComposable + get() = LocalCornerRadius.current +} + +internal val LocalColors = staticCompositionLocalOf { lightColors() } + +@ExperimentalFluentApi +internal val LocalWindowAcrylicContainer = + staticCompositionLocalOf { EmptyMaterialContainerScope() } + +internal val LocalCompactMode = staticCompositionLocalOf { true } + +@OptIn(ExperimentalFluentApi::class) +private class EmptyMaterialContainerScope : MaterialContainerScope { + override fun Modifier.behindMaterial(): Modifier { + return this + } + + override fun Modifier.materialOverlay(material: Material, enabled: () -> Boolean): Modifier { + return this + } + + override fun Modifier.align(alignment: Alignment): Modifier { + return this + } + + override fun Modifier.matchParentSize(): Modifier { + return this + } +} + +internal val LocalAcrylicPopupEnabled = staticCompositionLocalOf { true } + +/** + * Creates a Fluent light theme color scheme. + * + * @param accent The accent color to be used for generating the color scheme. Defaults to a specific blue color (0xFF0078D4). + * @return A [Colors] object representing the light theme color scheme. + */ +fun lightColors(accent: Color = Color(0xFF0078D4)): Colors = Colors(generateShades(accent), false) + + +/** + * Creates a Fluent dark theme color scheme. + * + * @param accent The accent color to be used for generating the color scheme. Defaults to a specific blue color (0xFF0078D4). + * @return A [Colors] object representing the dark theme color scheme. + */ +fun darkColors(accent: Color = Color(0xFF0078D4)): Colors = Colors(generateShades(accent), true) \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/Geometry.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/Geometry.kt new file mode 100644 index 00000000..e6d7003c --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/Geometry.kt @@ -0,0 +1,111 @@ +package io.github.composefluent + +import androidx.compose.foundation.shape.RoundedCornerShape +import androidx.compose.runtime.Immutable +import androidx.compose.runtime.staticCompositionLocalOf +import androidx.compose.ui.graphics.RectangleShape +import androidx.compose.ui.graphics.Shape +import androidx.compose.ui.unit.Dp +import androidx.compose.ui.unit.dp + +/** + * Aligns style properties related to geometry, such as [Shape] and [CornerRadius]. + * + * This interface serves as a common structure for defining geometric properties + * across different types of visual elements within a UI. It provides a consistent + * way to access geometry settings for different design use cases: + * - [overlay]: Geometry for elements that appear above other content, such as dialogs or flyouts. + * - [control]: Geometry for interactive controls, such as buttons, text fields, or checkboxes. + * - [intersectionEdge]: Geometry for elements at the intersection of other elements, + * typically used for visual separation or emphasis at boundaries. + * + * The type parameter [Type] allows this interface to be used with different data types + * representing geometric properties, such as [Shape] or [Dp] for corner radius. + * + * Based on the Microsoft Fluent Design System principles for geometry: + * See [https://learn.microsoft.com/en-us/windows/apps/design/signature-experiences/geometry] + */ +interface Geometry { + val overlay: Type + val control: Type + val intersectionEdge: Type +} + +/** + * Defines the shapes used for different elements in the Fluent design system. + * + * This class aligns with the principles described in the Microsoft documentation on Geometry. + * See [https://learn.microsoft.com/en-us/windows/apps/design/signature-experiences/geometry] + * for more details. + * + * @property overlay The shape used for elements like overlays. + * @property control The shape used for control elements like buttons and text fields. + * @property intersectionEdge The shape used for elements at the intersection edge. + */ +@Immutable +class Shapes( + override val overlay: Shape, + override val control: Shape, + override val intersectionEdge: Shape, +): Geometry + +internal val LocalShapes = staticCompositionLocalOf { + Shapes( + overlay = createShape(overlayCornerRadius), + control = createShape(controlCornerRadius), + intersectionEdge = createShape(intersectionEdgeCornerRadius) + ) +} + +internal fun createShape(cornerRadius: Dp): Shape { + return if (cornerRadius == 0.dp) { + RectangleShape + } else { + RoundedCornerShape(cornerRadius) + } +} + +/** + * Converts a [CornerRadius] object to a [Shapes] object. + * + * This function maps the overlay, control, and intersection edge [Dp] values from the [CornerRadius] + * to corresponding [Shape] objects using the [createShape] function. + * + * @return A [Shapes] object representing the corner radius as shapes. + */ +fun CornerRadius.toShapes(): Shapes { + return Shapes( + overlay = createShape(overlay), + control = createShape(control), + intersectionEdge = createShape(intersectionEdge) + ) +} + +/** + * Corner radius values for different geometric elements in the UI. + * + * These values are based on the Microsoft Fluent design system's guidance on geometry. + * https://learn.microsoft.com/en-us/windows/apps/design/signature-experiences/geometry + * + * @property overlay The corner radius for overlay elements. + * @property control The corner radius for control elements. + * @property intersectionEdge The corner radius for elements at intersection edges. + */ +@Immutable +class CornerRadius( + override val overlay: Dp, + override val control: Dp, + override val intersectionEdge: Dp +): Geometry + +internal val LocalCornerRadius = staticCompositionLocalOf { + CornerRadius( + overlay = overlayCornerRadius, + control = controlCornerRadius, + intersectionEdge = intersectionEdgeCornerRadius + ) +} + +private val overlayCornerRadius = 8.dp +private val controlCornerRadius = 4.dp +private val intersectionEdgeCornerRadius = 0.dp \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/LocalContentAlpha.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/LocalContentAlpha.kt new file mode 100644 index 00000000..be8846a9 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/LocalContentAlpha.kt @@ -0,0 +1,11 @@ +package io.github.composefluent + +import androidx.compose.runtime.compositionLocalOf + +/** + * CompositionLocal used to pass the default content alpha down the tree. + * + * This is used to provide a default alpha for text, icons and other content that can + * be changed by a parent component. + */ +val LocalContentAlpha = compositionLocalOf { 1f } \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/LocalContentColor.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/LocalContentColor.kt new file mode 100644 index 00000000..9972c4fc --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/LocalContentColor.kt @@ -0,0 +1,13 @@ +package io.github.composefluent + +import androidx.compose.runtime.compositionLocalOf +import androidx.compose.ui.graphics.Color + +/** + * CompositionLocal to pass the content color down the tree. For example, a `Button` may provide + * a default content color for the text and iconography inside it. + * + * This is typically used with the alpha applied to the color to provide a useful default for + * text and iconography. + */ +val LocalContentColor = compositionLocalOf { Color.Unspecified } \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/PlatformCompositionLocalProvider.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/PlatformCompositionLocalProvider.kt similarity index 80% rename from fluent/src/commonMain/kotlin/com/konyaco/fluent/PlatformCompositionLocalProvider.kt rename to fluent/src/commonMain/kotlin/io/github/composefluent/PlatformCompositionLocalProvider.kt index 1669aa64..1346e01f 100644 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/PlatformCompositionLocalProvider.kt +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/PlatformCompositionLocalProvider.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent +package io.github.composefluent import androidx.compose.runtime.Composable diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/Typography.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/Typography.kt new file mode 100644 index 00000000..7adc05e6 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/Typography.kt @@ -0,0 +1,90 @@ +package io.github.composefluent + +import androidx.compose.runtime.* +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.text.TextStyle +import androidx.compose.ui.text.font.FontWeight +import androidx.compose.ui.unit.sp + +internal val LocalTypography = staticCompositionLocalOf { + Typography( + caption = TextStyle( + fontWeight = FontWeight.Normal, + fontSize = 12.sp, lineHeight = 16.sp + ), + body = TextStyle( + fontWeight = FontWeight.Normal, + fontSize = 14.sp, lineHeight = 20.sp + ), + bodyStrong = TextStyle( + fontWeight = FontWeight.SemiBold, + fontSize = 14.sp, lineHeight = 20.sp + ), + bodyLarge = TextStyle( + fontWeight = FontWeight.Normal, + fontSize = 18.sp, lineHeight = 24.sp + ), + subtitle = TextStyle( + fontWeight = FontWeight.SemiBold, + fontSize = 20.sp, lineHeight = 28.sp + ), + title = TextStyle( + fontWeight = FontWeight.SemiBold, + fontSize = 28.sp, lineHeight = 36.sp + ), + titleLarge = TextStyle( + fontWeight = FontWeight.SemiBold, + fontSize = 40.sp, lineHeight = 52.sp + ), + display = TextStyle( + fontWeight = FontWeight.SemiBold, + fontSize = 68.sp, lineHeight = 92.sp + ) + ) +} + +/** + * The Fluent Design typography system, providing a set of predefined text styles. + * + * Based on the guidelines from Microsoft's Fluent Design documentation: + * https://docs.microsoft.com/en-us/windows/apps/design/signature-experiences/typography + * + * @property caption Style for smaller text, often used for labels or annotations. + * @property body Standard body text style. + * @property bodyStrong Bold version of the standard body text style. + * @property bodyLarge Larger version of the standard body text style. + * @property subtitle Style for subtitles or secondary headings. + * @property title Style for main titles. + * @property titleLarge Style for large titles, suitable for prominent headings. + * @property display Style for very large text, often used for headlines or displays. + */ +@Immutable +class Typography( + val caption: TextStyle, + val body: TextStyle, + val bodyStrong: TextStyle, + val bodyLarge: TextStyle, + val subtitle: TextStyle, + val title: TextStyle, + val titleLarge: TextStyle, + val display: TextStyle +) + +/** + * CompositionLocal containing the current [TextStyle] for text components. + */ +val LocalTextStyle = compositionLocalOf(structuralEqualityPolicy()) { TextStyle.Default } + +/** + * This composable provides a [TextStyle] to the composition local tree. + * Any text composables within the `content` lambda will use this provided text style. + * The provided [value] is merged with the current [LocalTextStyle]. + * + * @param value The [TextStyle] to provide. This will be merged with the current [LocalTextStyle]. + * @param content The composable content that will inherit the provided [TextStyle]. + */ +@Composable +fun ProvideTextStyle(value: TextStyle, content: @Composable () -> Unit) { + val mergedStyle = LocalTextStyle.current.merge(value) + CompositionLocalProvider(LocalTextStyle provides mergedStyle, content = content) +} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/animation/FluentDuration.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/animation/FluentDuration.kt similarity index 80% rename from fluent/src/commonMain/kotlin/com/konyaco/fluent/animation/FluentDuration.kt rename to fluent/src/commonMain/kotlin/io/github/composefluent/animation/FluentDuration.kt index 3efd183c..5aacc055 100644 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/animation/FluentDuration.kt +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/animation/FluentDuration.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.animation +package io.github.composefluent.animation object FluentDuration { val QuickDuration = 83 diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/animation/FluentEasing.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/animation/FluentEasing.kt similarity index 97% rename from fluent/src/commonMain/kotlin/com/konyaco/fluent/animation/FluentEasing.kt rename to fluent/src/commonMain/kotlin/io/github/composefluent/animation/FluentEasing.kt index 44fe4d90..bf407aa9 100644 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/animation/FluentEasing.kt +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/animation/FluentEasing.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.animation +package io.github.composefluent.animation import androidx.compose.animation.core.CubicBezierEasing import androidx.compose.animation.core.LinearEasing diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/background/Elevation.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/background/Elevation.kt new file mode 100644 index 00000000..7b112c49 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/background/Elevation.kt @@ -0,0 +1,183 @@ +package io.github.composefluent.background + +import androidx.compose.foundation.border +import androidx.compose.foundation.shape.CircleShape +import androidx.compose.runtime.Composable +import androidx.compose.ui.Modifier +import androidx.compose.ui.draw.drawWithCache +import androidx.compose.ui.draw.shadow +import androidx.compose.ui.geometry.Size +import androidx.compose.ui.graphics.Brush +import androidx.compose.ui.graphics.ClipOp +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.Paint +import androidx.compose.ui.graphics.Path +import androidx.compose.ui.graphics.Shape +import androidx.compose.ui.graphics.SolidColor +import androidx.compose.ui.graphics.addOutline +import androidx.compose.ui.graphics.drawscope.withTransform +import androidx.compose.ui.unit.Dp +import androidx.compose.ui.unit.dp +import io.github.composefluent.FluentTheme + +/** + * Applies an elevation effect to the composable. + * + * This function provides a way to add depth and visual hierarchy to UI elements. + * It uses different approaches based on the elevation value. + * + * When the elevation is less than 1dp, no elevation is applied. + * When the elevation is between 1dp and 3dp, a border with a color from the theme is applied. + * - If the elevation is between 1dp and 2dp, a `SolidColor` is used for the border. + * - If the elevation is between 2dp and 3dp, a provided [strokeShadow] brush is used for the border. + * For elevation of 3dp or more, a more complex shadow effect using [platformElevation] is applied. + * + * @param elevation The desired elevation (depth) of the composable. + * @param shape The shape of the composable, which affects how the shadow is drawn. + * @param strokeShadow The brush to use for the border when elevation is between 2dp and 3dp. + * It defaults to `FluentTheme.colors.borders.circle` if shape is [CircleShape] otherwise `FluentTheme.colors.borders.control`. + * @param isDarkTheme A boolean indicating if dark mode is active, which influences the shadow color. + * Defaults to `FluentTheme.colors.darkMode`. + * @return A [Modifier] that applies the elevation effect. + */ +@Composable +fun Modifier.elevation( + elevation: Dp, + shape: Shape, + strokeShadow: Brush = if (shape == CircleShape) { + FluentTheme.colors.borders.circle + } else { + FluentTheme.colors.borders.control + }, + isDarkTheme: Boolean = FluentTheme.colors.darkMode, +) = when { + elevation.value < 1f -> this + elevation.value < 3f -> border( + width = 1.dp, + brush = if (elevation.value < 2f) { + SolidColor(FluentTheme.colors.stroke.card.default) + } else { + strokeShadow + }, + shape = shape + ) + + else -> platformElevation(shape = shape, elevation = elevation, isDarkTheme = isDarkTheme) +} + +internal fun Modifier.platformElevation( + elevation: Dp, + shape: Shape, + isDarkTheme: Boolean, + borderWidth: Dp = 1.dp, +): Modifier { + if (elevation.value <= 2f) return this + val spotColorOpacity: Float + val ambientColorOpacity: Float + when { + isDarkTheme && elevation.value <= 32 -> { + spotColorOpacity = 0.26f + ambientColorOpacity = 0f + } + + isDarkTheme -> { + spotColorOpacity = 0.37f + ambientColorOpacity = 0.37f + } + + elevation.value <= 32 -> { + spotColorOpacity = minOf(14f, elevation.value + 6) / 100 + ambientColorOpacity = 0f + } + + else -> { + spotColorOpacity = 0.19f + ambientColorOpacity = 0.15f + } + } + val spotColor = Color.Black.copy(alpha = spotColorOpacity.coerceIn(0f, 1f)) + val ambientColor = Color.Black.copy(alpha = ambientColorOpacity.coerceIn(0f, 1f)) + return if (!supportFluentElevation()) { + shadow( + elevation = elevation / 2, + shape = shape, + spotColor = spotColor, + ambientColor = ambientColor + ) + } else { + drawWithCache { + val spotPaint = Paint() + val ambientPaint = Paint() + val spotBlurRadius = 0.5f * elevation.toPx() + val ambientBlurRadius = 0.167f * elevation.toPx() + + spotPaint.color = spotColor + ambientPaint.color = ambientColor + spotPaint.isAntiAlias = false + spotPaint.applyShadowMaskFilter(spotBlurRadius) + ambientPaint.isAntiAlias = false + ambientPaint.applyShadowMaskFilter(ambientBlurRadius) + val borderWidthPx = borderWidth.toPx() + val path = Path().apply { + addOutline( + shape.createOutline( + size = Size(width = size.width - 2 * borderWidthPx, height = size.height - 2 * borderWidthPx), + layoutDirection = layoutDirection, + density = this@drawWithCache + ) + ) + } + onDrawWithContent { + val offsetY = elevation.toPx() * 0.25f + withTransform({ + translate(left = borderWidthPx, top = borderWidthPx) + clipPath(path = path, clipOp = ClipOp.Difference) + translate(left = 0f, top = offsetY) + }) { + drawContext.canvas.drawPath(path, spotPaint) + } + + if (elevation.value > 32f) { + // ambient shadow + withTransform({ + translate(left = 0.5f * borderWidthPx, top = 0.5f * borderWidthPx) + clipPath(path = path, clipOp = ClipOp.Difference) + }) { + drawContext.canvas.drawPath(path, ambientPaint) + } + } + drawContent() + } + } + } +} + +/** + * Default elevation values for different UI components. + * + * These values represent the recommended elevation levels for various elements + * in a Fluent Design system. Elevation is used to create a sense of depth and + * hierarchy in the UI. + * + * The higher the elevation, the more prominent the element appears to be, + * as if it's closer to the user's eye. + * + * - `layer`: Elevation for a basic background layer. Represents no elevation. + * - `control`: Elevation for interactive controls like buttons and toggles. + * - `cardRest`: Elevation for resting cards. + * - `tooltip`: Elevation for tooltips. + * - `flyout`: Elevation for flyout menus. + * - `dialog`: Elevation for modal dialogs, representing the highest level of prominence. + */ +object ElevationDefaults { + val layer: Dp = 0.dp + val control: Dp = 2.dp + val cardRest: Dp = 8.dp + val tooltip: Dp = 16.dp + val flyout: Dp = 32.dp + val dialog: Dp = 128.dp +} + +internal expect fun Paint.applyShadowMaskFilter(radius: Float) + +internal expect fun supportFluentElevation(): Boolean \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/background/Layer.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/background/Layer.kt new file mode 100644 index 00000000..63b71702 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/background/Layer.kt @@ -0,0 +1,300 @@ +package io.github.composefluent.background + +import androidx.compose.foundation.BorderStroke +import androidx.compose.foundation.background +import androidx.compose.foundation.border +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.shape.CircleShape +import androidx.compose.foundation.shape.CornerBasedShape +import androidx.compose.foundation.shape.CutCornerShape +import androidx.compose.runtime.Composable +import androidx.compose.runtime.CompositionLocalProvider +import androidx.compose.runtime.Immutable +import androidx.compose.runtime.Stable +import androidx.compose.ui.Modifier +import androidx.compose.ui.draw.clip +import androidx.compose.ui.geometry.Offset +import androidx.compose.ui.geometry.Size +import androidx.compose.ui.geometry.translate +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.Outline +import androidx.compose.ui.graphics.Shape +import androidx.compose.ui.unit.Density +import androidx.compose.ui.unit.Dp +import androidx.compose.ui.unit.LayoutDirection +import androidx.compose.ui.unit.dp +import io.github.composefluent.FluentTheme +import io.github.composefluent.LocalContentAlpha +import io.github.composefluent.LocalContentColor +import io.github.composefluent.ProvideTextStyle +import kotlin.jvm.JvmInline +import kotlin.math.sqrt + +/** + * Defines constants that specify how far an element's background extends in relation to the element's border. + */ +enum class BackgroundSizing { + /** + * The element's background extends to the inner edge of the border, but does not extend under the border. + */ + InnerBorderEdge, + + /** + * The element's background extends under the border to its outer edge, and is visible if the border is transparent. + */ + OuterBorderEdge +} + +@Deprecated( + message = "Use backgroundSizing", + replaceWith = ReplaceWith( + expression = "Layer(modifier=modifier,shape=shape,color=color,contentColor=contentColor,border=border,backgroundSizing=if (outsideBorder) BackgroundSizing.InnerBorderEdge else BackgroundSizing.OuterBorderEdge,elevation=elevation,content=content)", + imports = arrayOf("io.github.composefluent.background.BackgroundSizing") + ) +) +@Composable +fun Layer( + modifier: Modifier = Modifier, + shape: Shape = FluentTheme.shapes.control, + color: Color = FluentTheme.colors.background.layer.default, + contentColor: Color = FluentTheme.colors.text.text.primary, + border: BorderStroke? = BorderStroke(1.dp, FluentTheme.colors.stroke.card.default), + outsideBorder: Boolean, + elevation: Dp = 0.dp, + content: @Composable () -> Unit +) { + Layer( + modifier = modifier, + shape = shape, + color = color, + contentColor = contentColor, + border = border, + elevation = elevation, + backgroundSizing = if (outsideBorder) { + BackgroundSizing.InnerBorderEdge + } else { + BackgroundSizing.OuterBorderEdge + }, + content = content + ) +} + +/** + * A composable that provides a layered background with customizable shape, color, border, and elevation. + * + * @param modifier The [Modifier] to be applied to the layer. + * @param shape The [Shape] of the layer's background. Defaults to [FluentTheme.shapes.control]. + * @param color The background [Color] of the layer. Defaults to [FluentTheme.colors.background.layer.default]. + * @param contentColor The preferred [Color] for content inside this layer. Defaults to [FluentTheme.colors.text.text.primary]. + * @param border The [BorderStroke] to draw around the layer. If null, no border will be drawn. Defaults to a 1.dp border with [FluentTheme.colors.stroke.card.default]. + * @param backgroundSizing Specifies how the background extends in relation to the border. See [BackgroundSizing] for options. Defaults to [BackgroundSizing.OuterBorderEdge]. + * @param elevation The elevation of the layer, which affects the shadow. Defaults to 0.dp. + * @param content The composable content to be placed inside the layer. + */ +@Composable +fun Layer( + modifier: Modifier = Modifier, + shape: Shape = FluentTheme.shapes.control, + color: Color = FluentTheme.colors.background.layer.default, + contentColor: Color = FluentTheme.colors.text.text.primary, + border: BorderStroke? = BorderStroke(1.dp, FluentTheme.colors.stroke.card.default), + backgroundSizing: BackgroundSizing = BackgroundSizing.OuterBorderEdge, + elevation: Dp = 0.dp, + content: @Composable () -> Unit +) { + Layer( + modifier = modifier, + shape = shape, + color = color, + contentColor = contentColor, + border = border, + backgroundSizing = backgroundSizing, + elevation = elevation, + clipContent = false, + content = content + ) +} + +/** + * A composable that provides a background layer with customizable shape, color, border, and elevation. + * + * @param modifier The [Modifier] to be applied to the layer. + * @param shape The [Shape] of the layer's background. Defaults to `FluentTheme.shapes.control`. + * @param color The background [Color] of the layer. Defaults to `FluentTheme.colors.background.layer.default`. + * @param contentColor The default color for the content inside the layer. Defaults to `FluentTheme.colors.text.text.primary`. + * @param border An optional [BorderStroke] to be drawn around the layer's background. Defaults to a 1.dp solid border using `FluentTheme.colors.stroke.card.default`. + * @param backgroundSizing Determines how the background extends in relation to the border. Defaults to [BackgroundSizing.OuterBorderEdge]. + * @param clipContent If `true`, the content will be clipped to the layer's shape. Defaults to `false`. + * @param elevation The elevation of the layer, used for shadow effects. Defaults to `0.dp`. + * @param content The content to be displayed within the layer. + */ +@Composable +fun Layer( + modifier: Modifier = Modifier, + shape: Shape = FluentTheme.shapes.control, + color: Color = FluentTheme.colors.background.layer.default, + contentColor: Color = FluentTheme.colors.text.text.primary, + border: BorderStroke? = BorderStroke(1.dp, FluentTheme.colors.stroke.card.default), + backgroundSizing: BackgroundSizing = BackgroundSizing.OuterBorderEdge, + clipContent: Boolean = false, + elevation: Dp = 0.dp, + content: @Composable () -> Unit +) { + ProvideTextStyle(FluentTheme.typography.body.copy(color = contentColor)) { + CompositionLocalProvider( + LocalContentColor provides contentColor, + LocalContentAlpha provides contentColor.alpha + ) { + Box( + modifier = modifier.layer( + elevation, + shape, + border, + backgroundSizing, + color, + clipContent + ), + propagateMinConstraints = true + ) { + content() + } + } + } +} + +@Composable +private fun Modifier.layer( + elevation: Dp, + shape: Shape, + border: BorderStroke?, + backgroundSizing: BackgroundSizing, + color: Color, + clipContent: Boolean +) = then( + Modifier + .elevation(elevation = elevation, shape = shape) + .then( + if (border != null) { + val backgroundShape = + if (backgroundSizing == BackgroundSizing.InnerBorderEdge && shape is CornerBasedShape) { + BackgroundPaddingShape(shape) + } else { + shape + } + Modifier.border(border, shape) + .background(color, backgroundShape) + .then(if (clipContent) Modifier.clip(backgroundShape) else Modifier) + } else { + Modifier.background(color, shape) + } + ) + .clip(shape) +) + +/** + * keep padding for background + */ +@Immutable +@JvmInline +internal value class BackgroundPaddingShape(private val borderShape: CornerBasedShape) : Shape { + override fun createOutline(size: Size, layoutDirection: LayoutDirection, density: Density): Outline { + return with(density) { + LayerShapeHelper.createInnerOutline(borderShape, size, density, layoutDirection, borderShape.calculateBorderPadding(density)) + } + } +} + +internal object LayerShapeHelper { + + /** + * Fork from [CornerBasedShape.createOutline], add padding to corner size and outline rect size. + */ + fun createInnerOutline( + outsideShape: CornerBasedShape, + size: Size, + density: Density, + layoutDirection: LayoutDirection, + paddingPx: Float, + ): Outline { + return outsideShape.run { + val cornerPaddingPx = if (this is CutCornerShape) { + /** padding for cut corner shape */ + (paddingPx / sqrt(2f)).toInt().toFloat() + } else { + paddingPx + } + val innerSize = Size(size.width - 2 * paddingPx, size.height - 2 * paddingPx) + /** add padding to corner size */ + var topStart = (outsideShape.topStart.toPx(size, density) - cornerPaddingPx).coerceAtLeast(0f) + var topEnd = (outsideShape.topEnd.toPx(size, density) - cornerPaddingPx).coerceAtLeast(0f) + var bottomEnd = (outsideShape.bottomEnd.toPx(size, density) - cornerPaddingPx).coerceAtLeast(0f) + var bottomStart = (outsideShape.bottomStart.toPx(size, density) - cornerPaddingPx).coerceAtLeast(0f) + val minDimension = innerSize.minDimension + if (topStart + bottomStart > minDimension) { + val scale = minDimension / (topStart + bottomStart) + topStart *= scale + bottomStart *= scale + } + if (topEnd + bottomEnd > minDimension) { + val scale = minDimension / (topEnd + bottomEnd) + topEnd *= scale + bottomEnd *= scale + } + require(topStart >= 0.0f && topEnd >= 0.0f && bottomEnd >= 0.0f && bottomStart >= 0.0f) { + "Corner size in Px can't be negative(topStart = $topStart, topEnd = $topEnd, " + + "bottomEnd = $bottomEnd, bottomStart = $bottomStart)!" + } + /** add padding to outline rect size */ + val oldOutline = createOutline( + size = innerSize, + topStart = topStart, + topEnd = topEnd, + bottomEnd = bottomEnd, + bottomStart = bottomStart, + layoutDirection = layoutDirection + ) + /** translate outline to the actual rect bounds */ + when (oldOutline) { + is Outline.Rectangle -> Outline.Rectangle(oldOutline.rect.translate(Offset(paddingPx, paddingPx))) + is Outline.Rounded -> Outline.Rounded(oldOutline.roundRect.translate(Offset(paddingPx, paddingPx))) + is Outline.Generic -> Outline.Generic(oldOutline.path.apply { translate(Offset(paddingPx, paddingPx)) }) + } + } + } +} + +/** + * This is a workaround solution to eliminate 1 pixel gap + * when density is not integer or `(density % 1) < 0.5` + */ +@Stable +private fun calcPadding(density: Density, borderSize: Dp): Dp { + val remainder = density.density % 1f + + return with(density) { + when { + remainder == 0f -> borderSize + else -> (borderSize.toPx() - remainder + 1).toDp() + } + } +} + +@Stable +private fun calcCircularPadding(density: Density, borderSize: Dp): Dp { + val remainder = density.density % 1f + + return with(density) { + if (remainder == 0f) borderSize + else (borderSize.toPx() - remainder + 1).toDp() + } +} + +internal fun Shape.calculateBorderPadding(density: Density, borderSize: Dp = 1.dp): Float { + val circular = this == CircleShape + return with(density) { + when { + circular -> calcCircularPadding(density, borderSize) + else -> calcPadding(density, borderSize) + }.toPx() + } +} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/background/Material.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/background/Material.kt new file mode 100644 index 00000000..dde8a499 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/background/Material.kt @@ -0,0 +1,504 @@ +package io.github.composefluent.background + +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.BorderStroke +import androidx.compose.foundation.layout.BoxScope +import androidx.compose.runtime.Composable +import androidx.compose.runtime.Immutable +import androidx.compose.runtime.ReadOnlyComposable +import androidx.compose.runtime.remember +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.BlendMode +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.Shape +import androidx.compose.ui.graphics.luminance +import androidx.compose.ui.unit.Dp +import androidx.compose.ui.unit.dp +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.FluentTheme +import dev.chrisbanes.haze.HazeState +import dev.chrisbanes.haze.HazeStyle +import dev.chrisbanes.haze.HazeTint +import dev.chrisbanes.haze.hazeEffect +import dev.chrisbanes.haze.hazeSource +import kotlin.jvm.JvmInline + +/** + * Applies a [Material] effect to the content. + * + * This composable allows you to apply a material overlay to its content. + * The material effect is defined by the [material] parameter and can be + * enabled or disabled using the [enabled] lambda. When enabled, the + * composable applies a haze effect based on the material's style. + * When disabled, it fills the background with the first tint color defined in + * the material's style. + * + * @param material The [Material] to apply to the content. + * @param modifier The modifier to be applied to the container. + * @param enabled A lambda that returns true if the material effect should be + * enabled, false otherwise. Defaults to `supportMaterial()`. + * @param border An optional [BorderStroke] to draw around the material. + * @param content The content to be displayed with the material effect. + */ +@ExperimentalFluentApi +@Composable +fun MaterialContainerScope.Material( + material: Material, + modifier: Modifier = Modifier, + enabled: () -> Boolean = { supportMaterial() }, + border: BorderStroke? = null, + content: @Composable () -> Unit +) { + Layer( + modifier = modifier.materialOverlay(material = material, enabled = enabled), + color = if (enabled()) Color.Transparent else material.style.tints.first().color, + border = border, + backgroundSizing = BackgroundSizing.InnerBorderEdge + ) { + content() + } +} + +/** + * A composable function that provides a container for applying material effects. + * + * This function creates a [Box] that acts as a container for material-related components. + * It utilizes the [MaterialContainerScope] to provide access to material-specific modifiers and properties + * within the content lambda. + * + * @param modifier The modifier to be applied to the container. + * @param content The composable content to be placed inside the material container. + * This content lambda has access to the [MaterialContainerScope]. + */ +@ExperimentalFluentApi +@Composable +fun MaterialContainer( + modifier: Modifier = Modifier, + content: @Composable MaterialContainerScope.() -> Unit +) { + Box(modifier) { + val scope = remember(this) { MaterialContainerScopeImpl(this) } + scope.content() + } +} + +@OptIn(ExperimentalFluentApi::class) +private class MaterialContainerScopeImpl(boxScope: BoxScope) : MaterialContainerScope, + BoxScope by boxScope { + private val hazeState = HazeState() + + override fun Modifier.behindMaterial(): Modifier { + return then(Modifier.hazeSource(state = hazeState)) + } + + override fun Modifier.materialOverlay(material: Material, enabled: () -> Boolean): Modifier { + return when { + !enabled() -> this + else -> hazeEffect( + state = hazeState, + style = material.style + ) + } + } +} + +/** + * A scope interface for applying material-related modifiers within a [MaterialContainer]. + * + * This interface provides a set of functions that can be used to apply material design + * effects, such as behind-material blurring and material overlays, to composable + * elements within a [MaterialContainer]. + * + * The [MaterialContainerScope] is designed to be used as the receiver scope within the + * content lambda of [MaterialContainer]. This allows you to directly use the provided + * extension functions (e.g., [behindMaterial], [materialOverlay]) on [Modifier] instances + * within the content lambda, making it easier to apply material effects to individual + * components. + * + * Example: + * ``` + * MaterialContainer { + * // Background layer + * Column( + * Modifier + * .fillMaxSize() + * .behindMaterial() // Applies a behind-material effect + * ) { + * // Content goes here + * } + * + * // Popup layer + * Layer( + * Modifier.materialOverlay(MaterialDefaults.acrylicDefault()) // Applies a material overlay + * ) { + * // Content goes here + * } + * ``` + */ +@ExperimentalFluentApi +interface MaterialContainerScope : BoxScope { + + /** + * Places the content behind the material source. + * + * By using this modifier, the content it's applied to will be + * treated as a source for the [HazeState]. It allows for the + * content behind to contribute to the material effect. + * + * @return A [Modifier] that positions the content as a source behind the material. + */ + fun Modifier.behindMaterial(): Modifier + + @Deprecated("Use materialOverlay instead") + fun Modifier.acrylicOverlay( + tint: Color, + shape: Shape, + enabled: () -> Boolean = { true } + ): Modifier { + return materialOverlay( + material = MaterialDefaults.customAcrylic(tint), + enabled = enabled + ) + } + + /** + * Applies a material overlay effect to this [Modifier]. + * + * This function adds a visual effect that simulates a material overlay, + * such as acrylic or mica, to the composable element. The appearance of the + * overlay is determined by the provided [material]. + * + * @param material The [Material] to be applied as an overlay. This determines + * the style and appearance of the overlay. + * @param enabled A lambda that returns `true` if the material overlay should + * be applied, `false` otherwise. This allows for conditional + * application of the effect. By default, it's enabled. + * @return A new [Modifier] that includes the material overlay effect. + */ + fun Modifier.materialOverlay( + material: Material, + enabled: () -> Boolean = { true } + ): Modifier + +} + +@JvmInline +@Immutable +value class Material(val style: HazeStyle) + +/** + * Provides default [Material] configurations for common scenarios. + * + * This object includes predefined styles for various acrylic and mica materials, + * as well as utility functions to create custom acrylic materials. These defaults + * are designed to match the Fluent Design System's material styles. + */ +object MaterialDefaults { + + private const val acrylicNoiseFactor = 0.02f + + private val acrylicBlurRadius = 60.dp + + private val micaBlurRadius = 240.dp + + /** + * A [Material] representing a thin, translucent acrylic material. + * + * This material is designed to provide a subtle, semi-transparent overlay effect, + * suitable for layering over other content without fully obscuring it. + * It adapts to dark and light modes, changing its base color and luminosity + * to ensure readability and aesthetic consistency. + * + * @param isDark `true` if the material should be rendered in dark mode, + * `false` for light mode. Defaults to the current `darkMode` state of the [FluentTheme]. + * @return A [Material] object representing the thin acrylic material. + */ + @Composable + @ReadOnlyComposable + fun thinAcrylic( + isDark: Boolean = FluentTheme.colors.darkMode, + ): Material = acrylicMaterial( + containerColor = if (isDark) { + Color(0xFF545454) + } else { + Color(0xFFD3D3D3) + }, + fallbackColor = if (isDark) { + Color(0x545454, 0.64f) + } else { + Color(0xD3D3D3, 0.6f) + }, + isDark = isDark, + lightTintOpacity = 0f, + lightLuminosityOpacity = 0.44f, + darkTintOpacity = 0f, + darkLuminosityOpacity = 0.64f, + ) + + /** + * A [Material] representing an acrylic material with accent color, designed for the most translucent layer. + * + * This function creates a material that simulates the appearance of translucent acrylic, incorporating + * an accent color. It's intended for use in UI layers where a high degree of translucency and + * visual depth are desired. This material adapts to light and dark color schemes, adjusting its + * tint and luminosity to maintain a consistent appearance. + * + * @param tint The primary accent color for the material. Defaults to the `accentAcrylic.base` color + * from the current [FluentTheme]. + * @param fallback The fallback color used when the acrylic effect is not supported. Defaults to + * the `accentAcrylic.baseFallback` color from the current [FluentTheme]. + * @param isDark Determines whether to apply dark mode settings to the material. Defaults to the + * current `darkMode` setting from [FluentTheme]. + * @return A [Material] object configured with the specified accent acrylic style. + */ + @Composable + @ReadOnlyComposable + fun accentAcrylicBase( + tint: Color = FluentTheme.colors.background.accentAcrylic.base, + fallback: Color = FluentTheme.colors.background.accentAcrylic.baseFallback, + isDark: Boolean = FluentTheme.colors.darkMode + ): Material = acrylicMaterial( + containerColor = tint, + fallbackColor = fallback, + isDark = isDark, + lightTintOpacity = 0.8f, + lightLuminosityOpacity = 0.8f, + darkTintOpacity = 0.8f, + darkLuminosityOpacity = 0.8f, + ) + + /** + * A [HazeStyle] which implements a translucent material with accent color, intended for use as a popup container background. + * + * This material applies an acrylic effect with the specified accent color, providing a subtle + * visual distinction for popup elements. It adapts to both light and dark themes and provides + * fallback colors for environments where the acrylic effect may not be supported. + * + * @param tint The accent color to use for the acrylic effect. Defaults to the `accentAcrylic.default` color in [FluentTheme]. + * @param fallback The fallback color to use if the acrylic effect is not supported. Defaults to the `accentAcrylic.defaultFallback` color in [FluentTheme]. + * @param isDark `true` if the dark theme is active, `false` otherwise. Determines the opacity levels of the acrylic effect. Defaults to [FluentTheme]'s `darkMode` setting. + */ + @Composable + @ReadOnlyComposable + fun accentAcrylicDefault( + tint: Color = FluentTheme.colors.background.accentAcrylic.default, + fallback: Color = FluentTheme.colors.background.accentAcrylic.defaultFallback, + isDark: Boolean = FluentTheme.colors.darkMode + ): Material = acrylicMaterial( + containerColor = tint, + fallbackColor = fallback, + isDark = isDark, + lightTintOpacity = 0.8f, + lightLuminosityOpacity = 0.9f, + darkTintOpacity = 0.8f, + darkLuminosityOpacity = 0.8f, + ) + + /** + * A [HazeStyle] representing a translucent acrylic material intended for use as the most translucent background layer. + * + * This function provides a material style suitable for backgrounds where a high degree of translucency is desired. + * It adapts to dark and light modes by adjusting tint and luminosity opacities, creating a subtle visual effect. + * + * @param isDark Determines whether the material should be rendered in dark mode. + * Defaults to `FluentTheme.colors.darkMode`. When `true`, the material uses darker tint and luminosity settings. + * @return A [Material] object configured for a highly translucent acrylic effect. + */ + @Composable + @ReadOnlyComposable + fun acrylicBase( + isDark: Boolean = FluentTheme.colors.darkMode, + ): Material = acrylicMaterial( + containerColor = FluentTheme.colors.background.acrylic.base, + fallbackColor = FluentTheme.colors.background.acrylic.baseFallback, + isDark = isDark, + lightTintOpacity = 0f, + lightLuminosityOpacity = 0.9f, + darkTintOpacity = 0.5f, + darkLuminosityOpacity = 0.96f, + ) + + /** + * A [HazeStyle] which implements a translucent material, suitable for popup container backgrounds. + * + * This material provides a semi-transparent effect, ideal for use behind popups or dialogs. + * It adapts to light and dark themes, adjusting its opacity and luminosity to ensure + * consistency and readability. In light mode, it has a subtle luminosity effect without any tint, while + * in dark mode, it uses a slight tint and luminosity. + * + * @param isDark `true` if the dark theme is active, `false` otherwise. This determines the + * opacity and luminosity levels. Defaults to [FluentTheme]'s `darkMode` setting. + */ + @Composable + @ReadOnlyComposable + fun acrylicDefault( + isDark: Boolean = FluentTheme.colors.darkMode, + ): Material = acrylicMaterial( + containerColor = FluentTheme.colors.background.acrylic.default, + fallbackColor = FluentTheme.colors.background.acrylic.defaultFallback, + isDark = isDark, + lightTintOpacity = 0f, + lightLuminosityOpacity = 0.85f, + darkTintOpacity = 0.15f, + darkLuminosityOpacity = 0.96f, + ) + + /** + * A [HazeStyle] which implements a translucent application background material. + * + * This material provides a subtle translucent effect, suitable for application backgrounds. + * It adapts its appearance based on whether the app is in dark mode or light mode. + * + * @param isDark `true` if dark mode is enabled, `false` otherwise. Determines the colors + * and opacities used for the effect. Defaults to the current dark mode + * setting from [FluentTheme.colors.darkMode]. + */ + @Composable + @ReadOnlyComposable + fun mica( + isDark: Boolean = FluentTheme.colors.darkMode, + ): Material = micaMaterial( + containerColor = FluentTheme.colors.background.mica.base, + fallbackColor = FluentTheme.colors.background.mica.baseFallback, + isDark = isDark, + lightTintOpacity = 0.5f, + lightLuminosityOpacity = 1f, + darkTintOpacity = 0.8f, + darkLuminosityOpacity = 1f, + ) + + /** + * A [HazeStyle] which implements a translucent application background material specifically designed for + * tab experiences. It provides an alternative to [mica] with adjusted opacity for improved tab + * separation and visibility. The dark mode uses no tint, while light mode retains a tint, ensuring + * appropriate contrast and visual appeal across both themes. + */ + @Composable + @ReadOnlyComposable + fun micaAlt( + isDark: Boolean = FluentTheme.colors.darkMode, + ): Material = micaMaterial( + containerColor = FluentTheme.colors.background.mica.baseAlt, + fallbackColor = FluentTheme.colors.background.mica.baseAltFallback, + isDark = isDark, + lightTintOpacity = 0.5f, + lightLuminosityOpacity = 1f, + darkTintOpacity = 0.0f, + darkLuminosityOpacity = 1f, + ) + + /** + * Creates a custom acrylic material with the specified properties. + * + * @param tint The base color for the acrylic effect. + * @param fallback The fallback color to use if the acrylic effect is not supported. Defaults to `tint`. + * @param backgroundColor The background color behind the material, Defaults to `fallback`. + * @param isDark Determines if the material should be rendered in dark mode. Defaults to `true` if the luminance of `tint` is less than 0.5, otherwise `false`. + * @param lightTintOpacity The opacity of the tint color when in light mode. Defaults to `0.8f`. + * @param lightLuminosityOpacity The opacity of the luminosity effect when in light mode. Defaults to `0.8f`. + * @param darkTintOpacity The opacity of the tint color when in dark mode. Defaults to `lightTintOpacity`. + * @param darkLuminosityOpacity The opacity of the luminosity effect when in dark mode. Defaults to `darkTintOpacity`. + * @return A [Material] object representing the custom acrylic material. + */ + fun customAcrylic( + tint: Color, + fallback: Color = tint, + backgroundColor: Color = fallback, + isDark: Boolean = tint.luminance() < 0.5f, + lightTintOpacity: Float = 0.8f, + lightLuminosityOpacity: Float = 0.8f, + darkTintOpacity: Float = lightTintOpacity, + darkLuminosityOpacity: Float = darkTintOpacity, + ): Material { + return acrylicMaterial( + containerColor = tint, + fallbackColor = fallback, + backgroundColor = backgroundColor, + isDark = isDark, + lightTintOpacity = lightTintOpacity, + lightLuminosityOpacity = lightLuminosityOpacity, + darkTintOpacity = darkTintOpacity, + darkLuminosityOpacity = darkLuminosityOpacity, + ) + } + + private fun acrylicMaterial( + containerColor: Color, + fallbackColor: Color = containerColor, + backgroundColor: Color = fallbackColor, + isDark: Boolean, + lightTintOpacity: Float, + lightLuminosityOpacity: Float, + darkTintOpacity: Float, + darkLuminosityOpacity: Float, + ): Material = material( + containerColor = containerColor, + fallbackColor = fallbackColor, + backgroundColor = backgroundColor, + isDark = isDark, + lightTintOpacity = lightTintOpacity, + lightLuminosityOpacity = lightLuminosityOpacity, + darkTintOpacity = darkTintOpacity, + darkLuminosityOpacity = darkLuminosityOpacity, + blurRadius = acrylicBlurRadius, + noiseFactor = acrylicNoiseFactor, + ) + + @ReadOnlyComposable + @Composable + private fun micaMaterial( + containerColor: Color = FluentTheme.colors.background.mica.base, + fallbackColor: Color = FluentTheme.colors.background.solid.base, + isDark: Boolean = FluentTheme.colors.darkMode, + lightTintOpacity: Float, + lightLuminosityOpacity: Float, + darkTintOpacity: Float, + darkLuminosityOpacity: Float, + ): Material = material( + containerColor = containerColor, + fallbackColor = fallbackColor, + isDark = isDark, + lightTintOpacity = lightTintOpacity, + lightLuminosityOpacity = lightLuminosityOpacity, + darkTintOpacity = darkTintOpacity, + darkLuminosityOpacity = darkLuminosityOpacity, + blurRadius = micaBlurRadius, + noiseFactor = 0f, + ) + + private fun material( + containerColor: Color, + isDark: Boolean, + fallbackColor: Color = containerColor, + backgroundColor: Color = fallbackColor, + blurRadius: Dp, + noiseFactor: Float, + lightTintOpacity: Float, + lightLuminosityOpacity: Float, + darkTintOpacity: Float, + darkLuminosityOpacity: Float, + ): Material = Material( + HazeStyle( + blurRadius = blurRadius, + noiseFactor = noiseFactor, + backgroundColor = backgroundColor, + tints = listOf( + HazeTint( + color = containerColor.copy(if (isDark) darkTintOpacity else lightTintOpacity), + blendMode = BlendMode.Hardlight, + ), + HazeTint( + color = containerColor.copy(if (isDark) darkLuminosityOpacity else lightLuminosityOpacity), + blendMode = BlendMode.Luminosity, + ) + ), + fallbackTint = HazeTint(fallbackColor), + ) + ) + + private fun Color(color: Int, alpha: Float): Color { + return Color(color).copy(alpha = alpha) + } +} + +internal expect fun supportMaterial(): Boolean \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/background/Mica.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/background/Mica.kt new file mode 100644 index 00000000..327eae42 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/background/Mica.kt @@ -0,0 +1,68 @@ +package io.github.composefluent.background + +import androidx.compose.foundation.background +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.runtime.Composable +import androidx.compose.runtime.CompositionLocalProvider +import androidx.compose.runtime.remember +import androidx.compose.ui.Modifier +import io.github.composefluent.FluentTheme +import io.github.composefluent.LocalContentColor +import dev.chrisbanes.haze.HazeState +import dev.chrisbanes.haze.hazeEffect +import dev.chrisbanes.haze.hazeSource + +/** + * A composable that applies the Mica background effect. + * + * This function provides a basic Mica background using the `mica.base` color from the Fluent theme. + * It also sets the content color to the primary text color from the Fluent theme. + * + * @param modifier The modifier to be applied to the Mica background. + * @param content The composable content to be displayed on top of the Mica background. + */ +@Composable +fun Mica(modifier: Modifier, content: @Composable () -> Unit) { + Box(modifier.background(FluentTheme.colors.background.mica.base)) { + CompositionLocalProvider(LocalContentColor provides FluentTheme.colors.text.text.primary) { + content() + } + } +} + +/** + * A composable that creates a Mica effect, providing a translucent, layered appearance. + * + * This function renders the content on top of a blurred background, creating the Mica effect. + * + * @param background The composable to be used as the background. This will be blurred to create the Mica effect. + * @param modifier The modifier to be applied to the root container. + * @param content The content to be displayed on top of the Mica effect. + */ +@Composable +fun Mica( + background: @Composable () -> Unit, + modifier: Modifier = Modifier, + content: @Composable () -> Unit +) { + Box( + modifier = modifier, + propagateMinConstraints = true + ) { + val hazeState = remember { HazeState() } + Box( + propagateMinConstraints = true, + modifier = Modifier.matchParentSize().hazeSource(state = hazeState) + ) { + background() + } + Box(modifier = Modifier.fillMaxSize().hazeEffect(state = hazeState, style = MaterialDefaults.mica().style)) { + CompositionLocalProvider( + LocalContentColor provides FluentTheme.colors.text.text.primary + ) { + content() + } + } + } +} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/AutoSuggestBox.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/AutoSuggestBox.kt new file mode 100644 index 00000000..ec474565 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/AutoSuggestBox.kt @@ -0,0 +1,215 @@ +package io.github.composefluent.component + +import androidx.compose.animation.expandVertically +import androidx.compose.foundation.gestures.awaitEachGesture +import androidx.compose.foundation.gestures.awaitFirstDown +import androidx.compose.foundation.gestures.waitForUpOrCancellation +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.PaddingValues +import androidx.compose.foundation.lazy.LazyColumn +import androidx.compose.foundation.lazy.LazyListScope +import androidx.compose.foundation.lazy.LazyListState +import androidx.compose.foundation.lazy.rememberLazyListState +import androidx.compose.foundation.shape.RoundedCornerShape +import androidx.compose.runtime.Composable +import androidx.compose.runtime.SideEffect +import androidx.compose.runtime.Stable +import androidx.compose.runtime.remember +import androidx.compose.runtime.rememberUpdatedState +import androidx.compose.ui.Modifier +import androidx.compose.ui.focus.FocusRequester +import androidx.compose.ui.focus.focusRequester +import androidx.compose.ui.graphics.Shape +import androidx.compose.ui.input.pointer.PointerEventPass +import androidx.compose.ui.input.pointer.pointerInput +import androidx.compose.ui.unit.dp +import io.github.composefluent.CompactMode +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.FluentTheme + +/** + * A composable that provides an auto-suggestion box functionality. + * + * This composable acts as a container for an input field (e.g., a TextField) and a flyout that displays + * suggestions or other relevant content. The flyout's visibility is controlled by the `expanded` parameter, + * and changes to the expanded state are communicated through the `onExpandedChange` callback. + * + * @param expanded Indicates whether the suggestion flyout should be visible. + * @param onExpandedChange Callback that is invoked when the expanded state of the flyout changes. + * The lambda parameter is `true` if the flyout should be expanded and `false` if it should be collapsed. + * @param modifier Modifier to be applied to the root container of the auto-suggestion box. + * @param content The composable content of the auto-suggestion box. + * It must use [FlyoutAnchorScope.flyoutAnchor] to set the anchor for the flyout. + * [FlyoutAnchorScope.flyoutSize] can also be used to determine the flyout's size. + */ +@OptIn(ExperimentalFluentApi::class) +@Composable +fun AutoSuggestionBox( + expanded: Boolean, + onExpandedChange: (Boolean) -> Unit, + modifier: Modifier = Modifier, + content: @Composable FlyoutAnchorScope.() -> Unit +) { + val flyoutAnchorScope = rememberFlyoutAnchorScope() + val expandedState = rememberUpdatedState(expanded) + val autoSuggestBoxScopeImpl = remember(expandedState, onExpandedChange) { + AutoSuggestBoxScopeImpl( + onExpandedChange = onExpandedChange, + expanded = { expandedState.value }, + scope = flyoutAnchorScope + ) + } + Box(modifier = modifier) { + autoSuggestBoxScopeImpl.content() + } + SideEffect { + if (expanded) autoSuggestBoxScopeImpl.focusRequester.requestFocus() + } +} + +/** + * Contains the default values used for [AutoSuggestionBox]. + */ +object AutoSuggestBoxDefaults { + + /** + * Provides the shape for the text field in the AutoSuggestBox. + * + * When the suggestion flyout is expanded, the text field will have rounded corners + * on the top edges. When the flyout is not expanded, the text field will use the + * default control shape defined in [FluentTheme.shapes.control]. + * + * @param expanded Whether the suggestion flyout is currently expanded. + * @return The [Shape] to be used for the text field. + */ + @Composable + @Stable + fun textFieldShape(expanded: Boolean): Shape { + return if (expanded) RoundedCornerShape( + topStart = FluentTheme.cornerRadius.control, + topEnd = FluentTheme.cornerRadius.control, + ) else FluentTheme.shapes.control + } + + /** + * A composable function that displays a flyout for suggestions. + * + * @param expanded Whether the flyout should be visible. + * @param onDismissRequest Callback invoked when the user requests to dismiss the flyout. + * @param modifier Modifier for the flyout. + * @param contentPadding The padding to be applied to the content of the flyout. + * @param content The composable content to be displayed within the flyout. + */ + @Composable + fun suggestFlyout( + expanded: Boolean, + onDismissRequest: () -> Unit, + modifier: Modifier = Modifier, + contentPadding: PaddingValues = PaddingValues(vertical = 3.dp), + content: @Composable () -> Unit + ) { + //TODO Flyout animation + BasicFlyout( + visible = expanded, + onDismissRequest = onDismissRequest, + modifier = modifier, + enterPlacementAnimation = { expandVertically(flyoutEnterSpec()) { it } }, + shape = RoundedCornerShape( + topStart = 0.dp, + topEnd = 0.dp, + bottomStart = 8.dp, + bottomEnd = 8.dp + ), + positionProvider = rememberFlyoutPositionProvider( + initialPlacement = FlyoutPlacement.Bottom, + paddingToAnchor = PaddingValues() + ), + contentPadding = contentPadding, + content = content + ) + } + + /** + * Displays a flyout that can contain a list of suggested items. + * + * @param expanded Whether the flyout is currently expanded. + * @param onDismissRequest Callback invoked when the flyout should be dismissed. + * @param modifier Modifier for the flyout. + * @param state The `LazyListState` to be used for the underlying `LazyColumn`. + * @param contentPadding The padding to be applied to the content inside the `LazyColumn`. + * @param compactMode Whether to display the flyout in compact mode. + * @param itemsContent The content of the list items within the flyout. This is a `LazyListScope` + * that allows for defining the list items using `item` and `items` composables. + */ + @Composable + fun suggestFlyout( + expanded: Boolean, + onDismissRequest: () -> Unit, + modifier: Modifier = Modifier, + state: LazyListState = rememberLazyListState(), + contentPadding: PaddingValues = PaddingValues(vertical = 3.dp), + compactMode: Boolean = false, + itemsContent: LazyListScope.() -> Unit + ) { + BasicFlyout( + visible = expanded, + onDismissRequest = onDismissRequest, + modifier = modifier, + enterPlacementAnimation = { expandVertically(flyoutEnterSpec()) { it } }, + shape = RoundedCornerShape( + topStart = 0.dp, + topEnd = 0.dp, + bottomStart = FluentTheme.cornerRadius.overlay, + bottomEnd = FluentTheme.cornerRadius.overlay + ), + positionProvider = rememberFlyoutPositionProvider( + initialPlacement = FlyoutPlacement.Bottom, + paddingToAnchor = PaddingValues() + ), + contentPadding = PaddingValues(), + focusable = false, + content = { + CompactMode(enabled = compactMode) { + val adapter = rememberScrollbarAdapter(state) + ScrollbarContainer( + adapter = adapter + ) { + LazyColumn( + contentPadding = contentPadding, + content = itemsContent, + state = state, + ) + } + + } + } + ) + } + +} + +@ExperimentalFluentApi +private class AutoSuggestBoxScopeImpl( + private val onExpandedChange: (Boolean) -> Unit, + private val expanded: () -> Boolean, + private val scope: FlyoutAnchorScope +): FlyoutAnchorScope { + + val focusRequester = FocusRequester() + + override fun Modifier.flyoutAnchor(): Modifier = with(scope) { + flyoutAnchor().pointerInput(onExpandedChange) { + awaitEachGesture { + awaitFirstDown(pass = PointerEventPass.Initial) + val upEvent = waitForUpOrCancellation(pass = PointerEventPass.Initial) + if (upEvent != null) { + onExpandedChange(!expanded()) + } + } + }.focusRequester(focusRequester) + } + + override fun Modifier.flyoutSize(matchAnchorWidth: Boolean): Modifier { + return with(scope) { flyoutSize(matchAnchorWidth) } + } +} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/Badge.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/Badge.kt new file mode 100644 index 00000000..e1a1d40d --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/Badge.kt @@ -0,0 +1,224 @@ +package io.github.composefluent.component + +import androidx.compose.foundation.background +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.defaultMinSize +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.shape.CircleShape +import androidx.compose.runtime.Composable +import androidx.compose.runtime.CompositionLocalProvider +import androidx.compose.runtime.Stable +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.draw.clip +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.vector.ImageVector +import androidx.compose.ui.layout.FirstBaseline +import androidx.compose.ui.layout.layout +import androidx.compose.ui.unit.dp +import io.github.composefluent.FluentTheme +import io.github.composefluent.LocalContentAlpha +import io.github.composefluent.LocalContentColor +import io.github.composefluent.LocalTextStyle +import io.github.composefluent.contentColorFor +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.filled.Checkmark +import io.github.composefluent.icons.filled.Dismiss + +/** + * A badge is a small, circular component that displays a status or numerical value. + * + * @param status The status of the badge, which determines its default background color. + * @param backgroundColor The background color of the badge. Defaults to a color based on the [status]. + * @param contentColor The color of the content within the badge. Defaults to a color that provides + * sufficient contrast against the [backgroundColor]. + * @param modifier Modifier to be applied to the badge. + * @param content Optional composable content to display within the badge. If null, a small dot will be shown. + * The provided lambda receives the current [status] as parameter. + */ +@Composable +fun Badge( + status: BadgeStatus, + backgroundColor: Color = BadgeDefaults.color(status), + contentColor: Color = contentColorFor(backgroundColor), + modifier: Modifier = Modifier, + content: (@Composable (status: BadgeStatus) -> Unit)? = null +) { + Badge( + content = content?.let { { it(status) } }, + backgroundColor = backgroundColor, + contentColor = contentColor, + modifier = modifier + ) +} + +/** + * A badge is a small, visual indicator that represents the status or state of an item or object. + * + * @param backgroundColor The background color of the badge. + * @param modifier Modifier to be applied to the badge. + * @param contentColor The preferred color for content inside the badge. + * @param content The content to be displayed inside the badge. + * If the content is null, the badge will be displayed as a small circle. + * If the content is not null, the badge will be displayed as a circle with the content inside. + */ +@Composable +fun Badge( + backgroundColor: Color, + modifier: Modifier = Modifier, + contentColor: Color = contentColorFor(backgroundColor), + content: (@Composable () -> Unit)? = null +) { + val defaultSize = if (content != null) { + 16.dp + } else { + 4.dp + } + Box( + contentAlignment = Alignment.Center, + modifier = modifier.defaultMinSize(defaultSize, defaultSize) + .clip(CircleShape) + .background(color = backgroundColor) + ) { + if (content != null) { + CompositionLocalProvider( + LocalContentColor provides contentColor, + LocalContentAlpha provides contentColor.alpha, + LocalTextStyle provides FluentTheme.typography.caption + ) { + Box( + content = { content() }, + propagateMinConstraints = true, + modifier = Modifier.layout { measurable, constraints -> + val placeable = measurable.measure(constraints) + val hasText = placeable[FirstBaseline] > 0 + val padding = when { + hasText -> 3.dp.roundToPx() + else -> 0 + } + layout((placeable.width + 2 * padding), placeable.height) { + val offset = if (hasText) { + -(1.dp.roundToPx()) + } else { + 0 + } + placeable.placeRelative(padding, offset) + } + } + ) + } + } + } +} + +/** + * Contains the default values used by [Badge]. + */ +object BadgeDefaults { + + /** + * The default icon for informational badges. + */ + inline val informationIcon: ImageVector + get() = Icons.Filled.BadgeInformation + + /** + * The default icon for a badge indicating a caution status. + */ + inline val cautionIcon: ImageVector + get() = Icons.Filled.BadgeImportant + + /** + * The default icon used for the attention badge. + */ + inline val attentionIcon: ImageVector + get() = Icons.Filled.BadgeAttention + + /** + * The default icon used for the success badge. + */ + inline val successIcon: ImageVector + get() = Icons.Filled.Checkmark + + /** + * The default icon used for the critical badge status. + */ + inline val criticalIcon: ImageVector + get() = Icons.Filled.Dismiss + + /** + * Retrieves the appropriate background color for a [Badge] based on its [BadgeStatus]. + * + * @param status The [BadgeStatus] to determine the color for. + * @return The [Color] associated with the given [BadgeStatus]. + */ + @Stable + @Composable + fun color(status: BadgeStatus): Color { + return when (status) { + BadgeStatus.Informational -> FluentTheme.colors.system.neutralBackground + BadgeStatus.InformationalSafe -> FluentTheme.colors.system.solidNeutral + BadgeStatus.Attention -> FluentTheme.colors.system.attention + BadgeStatus.Caution -> FluentTheme.colors.system.caution + BadgeStatus.Critical -> FluentTheme.colors.system.critical + BadgeStatus.Success -> FluentTheme.colors.system.success + } + } + + /** + * Creates an [Icon] based on the provided [status]. + * + * @param status The [BadgeStatus] of the icon, which determines the icon's appearance. + * @param contentDescription The content description for the icon. Defaults to the name of the [status]. + * @param modifier Modifier for styling and layout. + */ + @Composable + fun Icon( + status: BadgeStatus, + contentDescription: String? = status.name, + modifier: Modifier = Modifier + ) { + this.Icon( + imageVector = when (status) { + BadgeStatus.Attention -> attentionIcon + BadgeStatus.Caution -> cautionIcon + BadgeStatus.Critical -> criticalIcon + BadgeStatus.Success -> successIcon + else -> informationIcon + }, + contentDescription = contentDescription, + modifier = modifier + ) + } + + @Composable + internal fun Icon(imageVector: ImageVector, contentDescription: String?, modifier: Modifier = Modifier) { + io.github.composefluent.component.Icon( + imageVector = imageVector, + contentDescription = contentDescription, + modifier = modifier.size(12.dp) + ) + } + +} + +/** + * Enumeration representing the different status levels for a [Badge]. + * + * Badges can be used to inform users of the status or state of something. + * + * - [Informational]: Indicates general information. + * - [InformationalSafe]: Indicates that a item is safe. + * - [Caution]: Indicates something that the user should take notice of or proceed with caution. + * - [Attention]: Indicates something that requires the user's attention. + * - [Success]: Indicates a successful operation or state. + * - [Critical]: Indicates a critical issue or error. + */ +enum class BadgeStatus { + Informational, + InformationalSafe, + Caution, + Attention, + Success, + Critical, +} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/BadgeIcons.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/BadgeIcons.kt new file mode 100644 index 00000000..4cd6c429 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/BadgeIcons.kt @@ -0,0 +1,130 @@ +package io.github.composefluent.component + +import androidx.compose.ui.graphics.vector.ImageVector +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.fluentIcon +import io.github.composefluent.icons.fluentPath + +val Icons.Filled.BadgeImportant: ImageVector + get() { + if (_badgeImportant == null) { + _badgeImportant = fluentIcon(name = "Filled.BadgeImportant") { + fluentPath { + //Draw line + moveTo(10f, 4f) + arcToRelative(2f, 2f, 0f, false, true, 4f, 0f) + verticalLineToRelative(8f) + arcToRelative(2f, 2f, 0f, false, true, -4f, 0f) + verticalLineToRelative(-8f) + close() + + //Draw dot + moveTo(14.5f, 20f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, -5f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 5f, 0.0f) + close() + } + } + } + return _badgeImportant!! + } + +private var _badgeImportant: ImageVector? = null + +val Icons.Filled.BadgeInformation: ImageVector + get() { + if (_badgeInformation == null) { + _badgeInformation = fluentIcon(name = "Filled.BadgeInformation") { + fluentPath { + //Draw dot + moveTo(14.5f, 4f) + arcToRelative(2.5f, 2.5f, 0.0f, true, false, -5f, 0.0f) + arcToRelative(2.5f, 2.5f, 0.0f, false, false, 5f, 0.0f) + close() + + //Draw line + moveTo(10f, 12f) + arcToRelative(2f, 2f, 0f, false, true, 4f, 0f) + verticalLineToRelative(8f) + arcToRelative(2f, 2f, 0f, false, true, -4f, 0f) + verticalLineToRelative(-8f) + close() + } + } + } + return _badgeInformation!! + } + +private var _badgeInformation: ImageVector? = null + +val Icons.Filled.BadgeAttention: ImageVector + get() { + if (_badgeAttention == null) { + _badgeAttention = fluentIcon(name = "Filled.BadgeAttention") { + fluentPath { + moveTo(20.214f, 15.938f) + curveTo(20.214f, 16.11f, 20.18f, 16.274f, 20.11f, 16.43f) + curveTo(20.046f, 16.578f, 19.958f, 16.71f, 19.84f, 16.828f) + curveTo(19.73f, 16.938f, 19.598f, 17.028f, 19.442f, 17.098f) + curveTo(19.292f, 17.16f, 19.132f, 17.192f, 18.96f, 17.192f) + curveTo(18.75f, 17.192f, 18.546f, 17.136f, 18.352f, 17.028f) + lineTo(13.254f, 14.144f) + verticalLineTo(20.004f) + curveTo(13.254f, 20.176f, 13.218f, 20.34f, 13.148f, 20.496f) + curveTo(13.086f, 20.644f, 12.996f, 20.774f, 12.878f, 20.882f) + curveTo(12.77f, 20.992f, 12.636f, 21.082f, 12.48f, 21.152f) + curveTo(12.332f, 21.214f, 12.172f, 21.246f, 12f, 21.246f) + curveTo(11.828f, 21.246f, 11.664f, 21.214f, 11.508f, 21.152f) + curveTo(11.36f, 21.082f, 11.226f, 20.992f, 11.11f, 20.882f) + curveTo(11f, 20.774f, 10.91f, 20.644f, 10.84f, 20.496f) + curveTo(10.778f, 20.34f, 10.746f, 20.176f, 10.746f, 20.004f) + verticalLineTo(14.144f) + lineTo(5.648f, 17.028f) + curveTo(5.454f, 17.136f, 5.25f, 17.192f, 5.04f, 17.192f) + curveTo(4.868f, 17.192f, 4.704f, 17.16f, 4.546f, 17.098f) + curveTo(4.398f, 17.028f, 4.266f, 16.938f, 4.148f, 16.828f) + curveTo(4.04f, 16.71f, 3.95f, 16.578f, 3.878f, 16.43f) + curveTo(3.816f, 16.274f, 3.786f, 16.11f, 3.786f, 15.938f) + curveTo(3.786f, 15.718f, 3.844f, 15.512f, 3.96f, 15.316f) + curveTo(4.078f, 15.114f, 4.23f, 14.958f, 4.418f, 14.848f) + lineTo(9.458f, 12f) + lineTo(4.418f, 9.152f) + curveTo(4.23f, 9.042f, 4.078f, 8.886f, 3.96f, 8.684f) + curveTo(3.844f, 8.488f, 3.786f, 8.282f, 3.786f, 8.062f) + curveTo(3.786f, 7.89f, 3.816f, 7.73f, 3.878f, 7.582f) + curveTo(3.95f, 7.426f, 4.04f, 7.292f, 4.148f, 7.184f) + curveTo(4.266f, 7.066f, 4.398f, 6.972f, 4.546f, 6.914f) + curveTo(4.704f, 6.844f, 4.868f, 6.808f, 5.04f, 6.808f) + curveTo(5.266f, 6.808f, 5.468f, 6.864f, 5.648f, 6.972f) + lineTo(10.746f, 9.856f) + verticalLineTo(3.996f) + curveTo(10.746f, 3.824f, 10.778f, 3.664f, 10.84f, 3.516f) + curveTo(10.91f, 3.36f, 11f, 3.226f, 11.11f, 3.118f) + curveTo(11.226f, 3.008f, 11.36f, 2.922f, 11.508f, 2.86f) + curveTo(11.664f, 2.79f, 11.828f, 2.754f, 12f, 2.754f) + curveTo(12.172f, 2.754f, 12.332f, 2.79f, 12.48f, 2.86f) + curveTo(12.636f, 2.922f, 12.77f, 3.008f, 12.878f, 3.118f) + curveTo(12.996f, 3.226f, 13.086f, 3.36f, 13.148f, 3.516f) + curveTo(13.218f, 3.664f, 13.254f, 3.824f, 13.254f, 3.996f) + verticalLineTo(9.856f) + lineTo(18.352f, 6.972f) + curveTo(18.546f, 6.864f, 18.75f, 6.808f, 18.96f, 6.808f) + curveTo(19.132f, 6.808f, 19.292f, 6.844f, 19.442f, 6.914f) + curveTo(19.598f, 6.976f, 19.73f, 7.066f, 19.84f, 7.184f) + curveTo(19.958f, 7.292f, 20.046f, 7.426f, 20.11f, 7.582f) + curveTo(20.18f, 7.73f, 20.214f, 7.89f, 20.214f, 8.062f) + curveTo(20.214f, 8.282f, 20.156f, 8.492f, 20.038f, 8.696f) + curveTo(19.922f, 8.89f, 19.77f, 9.042f, 19.582f, 9.152f) + lineTo(14.542f, 12f) + lineTo(19.582f, 14.848f) + curveTo(19.77f, 14.958f, 19.922f, 15.114f, 20.038f, 15.316f) + curveTo(20.156f, 15.512f, 20.214f, 15.718f, 20.214f, 15.938f) + close() + + } + } + } + return _badgeAttention!! + } + +private var _badgeAttention: ImageVector? = null \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/BreadcrumbBar.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/BreadcrumbBar.kt new file mode 100644 index 00000000..72c27013 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/BreadcrumbBar.kt @@ -0,0 +1,438 @@ +package io.github.composefluent.component + +import androidx.compose.foundation.clickable +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.padding +import androidx.compose.runtime.Composable +import androidx.compose.runtime.CompositionLocalProvider +import androidx.compose.runtime.remember +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.text.TextStyle +import androidx.compose.ui.unit.dp +import io.github.composefluent.FluentTheme +import io.github.composefluent.LocalContentAlpha +import io.github.composefluent.LocalContentColor +import io.github.composefluent.LocalTextStyle +import io.github.composefluent.layout.overflow.OverflowActionScope +import io.github.composefluent.layout.overflow.OverflowFlyoutContainer +import io.github.composefluent.layout.overflow.OverflowPosition +import io.github.composefluent.layout.overflow.OverflowRow +import io.github.composefluent.layout.overflow.OverflowRowScope +import io.github.composefluent.scheme.PentaVisualScheme +import io.github.composefluent.scheme.VisualState +import io.github.composefluent.scheme.VisualStateScheme +import io.github.composefluent.scheme.collectVisualState + +/** + * A composable function that displays a breadcrumb bar, which is a navigation aid that + * shows the user's current location within a hierarchy. + * + * @param modifier The modifier to be applied to the breadcrumb bar. + * @param overflow The position where the overflow items should be displayed, defaults to [OverflowPosition.Start]. + * @param horizontalArrangement The horizontal arrangement of the breadcrumb items, defaults to [Arrangement.Start]. + * @param verticalAlignment The vertical alignment of the breadcrumb items, defaults to [Alignment.CenterVertically]. + * @param overflowAction A composable function that defines the action to be taken when there is an overflow. + * Defaults to showing an overflow tag that, when clicked, displays a flyout with the hidden items. + * The scope of this function is [OverflowActionScope], which provides access to `isFlyoutVisible`. + * @param items A composable function that defines the breadcrumb items. The scope of this function is + * [OverflowRowScope], which provides functions for creating breadcrumb items and managing their overflow. + */ +@Composable +fun BreadcrumbBar( + modifier: Modifier = Modifier, + overflow: OverflowPosition = OverflowPosition.Start, + horizontalArrangement: Arrangement.Horizontal = Arrangement.Start, + verticalAlignment: Alignment.Vertical = Alignment.CenterVertically, + overflowAction: @Composable OverflowActionScope.() -> Unit = { + OverflowFlyoutContainer { + BreadcrumbBarDefaults.OverflowTag(onClick = { + isFlyoutVisible = true + }) + } + }, + items: OverflowRowScope.() -> Unit +) { + OverflowRow( + overflow = overflow, + horizontalArrangement = horizontalArrangement, + verticalAlignment = verticalAlignment, + overflowAction = overflowAction, + content = items, + modifier = modifier + ) +} + +/** + * Contains the default values used by [BreadcrumbBar]. + * + * This includes: + * - Default colors for regular breadcrumb items ([breadcrumbItemColors] and [breadcrumbItemInactiveColors]) + * - Default colors for large breadcrumb items ([largeBreadcrumbItemColors] and [largeBreadcrumbItemInactiveColors]) + * - Default colors for the overflow tag ([overflowTagColors]) + * - Default composable for the overflow tag ([OverflowTag] and [LargeOverflowTag]) + */ +object BreadcrumbBarDefaults { + + /** + * Creates a [PentaVisualScheme] for the colors of a breadcrumb item. + * + * @param default The default color of the breadcrumb item. + * @param hovered The color of the breadcrumb item when it is hovered. + * @param pressed The color of the breadcrumb item when it is pressed. + * @param disabled The color of the breadcrumb item when it is disabled. + * @return A [PentaVisualScheme] containing the specified colors for the breadcrumb item. + */ + @Composable + fun breadcrumbItemColors( + default: Color = FluentTheme.colors.text.text.primary, + hovered: Color = FluentTheme.colors.text.text.secondary, + pressed: Color = FluentTheme.colors.text.text.tertiary, + disabled: Color = FluentTheme.colors.text.text.disabled, + ) = PentaVisualScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) + + /** + * Creates a [PentaVisualScheme] for inactive breadcrumb bar items. + * + * This function defines the colors for the different visual states of an inactive breadcrumb item, + * including its default, hovered, pressed, and disabled states. + * + * @param default The default color of the text. + * @param hovered The color of the text when hovered over. + * @param pressed The color of the text when pressed. + * @param disabled The color of the text when disabled. + * @return A [PentaVisualScheme] containing the specified colors for each state. + */ + @Composable + fun breadcrumbItemInactiveColors( + default: Color = FluentTheme.colors.text.text.primary, + hovered: Color = FluentTheme.colors.text.text.secondary, + pressed: Color = FluentTheme.colors.text.text.tertiary, + disabled: Color = FluentTheme.colors.text.text.disabled, + ) = PentaVisualScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) + + /** + * Creates a [PentaVisualScheme] for large breadcrumb items with the specified colors. + * + * @param default The default color of the text. + * @param hovered The color of the text when hovered. + * @param pressed The color of the text when pressed. + * @param disabled The color of the text when disabled. + * @return A [PentaVisualScheme] that defines the color for each visual state of the breadcrumb item. + */ + @Composable + fun largeBreadcrumbItemColors( + default: Color = FluentTheme.colors.text.text.primary, + hovered: Color = FluentTheme.colors.text.text.secondary, + pressed: Color = FluentTheme.colors.text.text.tertiary, + disabled: Color = FluentTheme.colors.text.text.disabled, + ) = PentaVisualScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) + + /** + * Creates a [PentaVisualScheme] for inactive large breadcrumb items. + * + * This function defines the colors for a large breadcrumb item when it is inactive, + * meaning it is not the currently active breadcrumb in the navigation path. + * It provides colors for the default, hovered, pressed, and disabled states. + * + * @param default The color of the item in its default state. Defaults to `FluentTheme.colors.text.text.secondary`. + * @param hovered The color of the item when the pointer is over it. Defaults to `FluentTheme.colors.text.text.primary`. + * @param pressed The color of the item when it is pressed. Defaults to `FluentTheme.colors.text.text.tertiary`. + * @param disabled The color of the item when it is disabled. Defaults to `FluentTheme.colors.text.text.disabled`. + * @return A [PentaVisualScheme] that defines the colors for each state of the inactive large breadcrumb item. + */ + @Composable + fun largeBreadcrumbItemInactiveColors( + default: Color = FluentTheme.colors.text.text.secondary, + hovered: Color = FluentTheme.colors.text.text.primary, + pressed: Color = FluentTheme.colors.text.text.tertiary, + disabled: Color = FluentTheme.colors.text.text.disabled, + ) = PentaVisualScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) + + /** + * Defines the color scheme for the overflow tag in the breadcrumb bar. + * + * @param default The default color of the overflow tag. Defaults to `FluentTheme.colors.text.text.secondary`. + * @param hovered The color of the overflow tag when it is hovered over. Defaults to `FluentTheme.colors.text.text.primary`. + * @param pressed The color of the overflow tag when it is pressed. Defaults to `FluentTheme.colors.text.text.tertiary`. + * @param disabled The color of the overflow tag when it is disabled. Defaults to `FluentTheme.colors.text.text.disabled`. + * @return A [PentaVisualScheme] representing the color scheme for the overflow tag. + */ + @Composable + fun overflowTagColors( + default: Color = FluentTheme.colors.text.text.secondary, + hovered: Color = FluentTheme.colors.text.text.primary, + pressed: Color = FluentTheme.colors.text.text.tertiary, + disabled: Color = FluentTheme.colors.text.text.disabled, + ) = PentaVisualScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) + + /** + * A composable function that displays an overflow tag in a breadcrumb bar. + * + * This tag is typically used when there are more breadcrumb items than can fit + * in the available space. Clicking this tag will usually reveal the hidden items + * in a flyout or dropdown menu. + * + * @param modifier The modifier to be applied to the overflow tag. + * @param colorScheme The color scheme to be used for the overflow tag. Defaults to [overflowTagColors]. + * @param chevronVisible Whether the chevron icon should be visible. Defaults to `true`. + * @param enabled Whether the overflow tag is enabled. Defaults to `true`. + * @param onClick The callback to be invoked when the overflow tag is clicked. + */ + @Composable + fun OverflowTag( + modifier: Modifier = Modifier, + colorScheme: VisualStateScheme = overflowTagColors(), + chevronVisible: Boolean = true, + enabled: Boolean = true, + onClick: () -> Unit + ) { + BreadcrumbBarItem( + onClick = onClick, + colorScheme = colorScheme, + chevronVisible = chevronVisible, + modifier = modifier, + enabled = enabled + ) { + FontIcon( + type = FontIconPrimitive.More, + contentDescription = null, + size = FontIconSize.Small + ) + } + } + + /** + * A large overflow tag that can be used in a [BreadcrumbBar] to indicate that there are + * more items than can be displayed. When clicked, it typically shows a flyout menu containing + * the hidden items. + * + * @param modifier The modifier to be applied to the overflow tag. + * @param colorScheme The color scheme for the overflow tag. Defaults to [overflowTagColors]. + * @param chevronVisible Whether the chevron icon should be visible. Defaults to `true`. + * @param enabled Whether the overflow tag is enabled. Defaults to `true`. + * @param onClick The callback to be invoked when the overflow tag is clicked. + */ + @Composable + fun LargeOverflowTag( + modifier: Modifier = Modifier, + colorScheme: VisualStateScheme = overflowTagColors(), + chevronVisible: Boolean = true, + enabled: Boolean = true, + onClick: () -> Unit + ) { + LargeBreadcrumbBarItem( + onClick = onClick, + colorScheme = colorScheme, + chevronVisible = chevronVisible, + modifier = modifier, + enabled = enabled + ) { + FontIcon( + type = FontIconPrimitive.More, + contentDescription = null, + size = FontIconSize.Standard + ) + } + } +} + +/** + * A composable function that represents a single item within a [BreadcrumbBar]. + * + * @param onClick The callback to be invoked when the breadcrumb item is clicked. + * @param modifier The modifier to be applied to the breadcrumb item. + * @param chevronVisible Whether the chevron (right-arrow) should be visible. Defaults to `true`. + * @param enabled Whether the breadcrumb item is enabled for interaction. Defaults to `true`. + * @param inactive Whether the breadcrumb item should be displayed as inactive (different color scheme). Defaults to `false`. + * @param colorScheme The color scheme to be used for the breadcrumb item's text and content. Defaults to [BreadcrumbBarDefaults.breadcrumbItemInactiveColors] if [inactive] is true, otherwise [BreadcrumbBarDefaults.breadcrumbItemColors]. + * @param chevronColors The color scheme to be used for the chevron. Defaults to [BreadcrumbBarDefaults.overflowTagColors]. + * @param content The composable content to be displayed within the breadcrumb item (e.g., text, icon). + */ +@Composable +fun BreadcrumbBarItem( + onClick: () -> Unit, + modifier: Modifier = Modifier, + chevronVisible: Boolean = true, + enabled: Boolean = true, + inactive: Boolean = false, + colorScheme: VisualStateScheme = if (inactive) { + BreadcrumbBarDefaults.breadcrumbItemInactiveColors() + } else { + BreadcrumbBarDefaults.breadcrumbItemColors() + }, + chevronColors: VisualStateScheme = BreadcrumbBarDefaults.overflowTagColors(), + content: @Composable () -> Unit +) { + BasicBreadcrumbBarItem( + onClick = onClick, + colorScheme = colorScheme, + chevronColors = chevronColors, + textStyle = FluentTheme.typography.body, + chevronSize = FontIconSize.Small, + modifier = modifier, + chevronVisible = chevronVisible, + enabled = enabled, + content = content + ) +} + +/** + * A composable function that displays a large breadcrumb bar item, which is a + * navigation aid that shows the user's current location within a hierarchy. + * This item is designed to be used with a larger font size and icon size. + * + * @param onClick The callback to be invoked when this breadcrumb item is clicked. + * @param modifier The modifier to be applied to the breadcrumb item. + * @param chevronVisible Determines whether the chevron (arrow) is visible. Defaults to `true`. + * @param enabled Determines whether this breadcrumb item is enabled for interaction. Defaults to `true`. + * @param inactive Determines whether this breadcrumb item is in an inactive state, such as being a non-clickable part of the path. Defaults to `false`. + * @param colorScheme The color scheme to use for the text of the breadcrumb item. + * If [inactive] is `true`, [BreadcrumbBarDefaults.largeBreadcrumbItemInactiveColors] will be used, + * otherwise [BreadcrumbBarDefaults.largeBreadcrumbItemColors] will be used. + * @param chevronColors The color scheme to use for the chevron of the breadcrumb item. + * Defaults to [BreadcrumbBarDefaults.overflowTagColors]. + * @param content The content to be displayed inside the breadcrumb item (e.g., Text, Icon). + */ +@Composable +fun LargeBreadcrumbBarItem( + onClick: () -> Unit, + modifier: Modifier = Modifier, + chevronVisible: Boolean = true, + enabled: Boolean = true, + inactive: Boolean = false, + colorScheme: VisualStateScheme = if (inactive) { + BreadcrumbBarDefaults.largeBreadcrumbItemInactiveColors() + } else { + BreadcrumbBarDefaults.largeBreadcrumbItemColors() + }, + chevronColors: VisualStateScheme = BreadcrumbBarDefaults.overflowTagColors(), + content: @Composable () -> Unit +) { + BasicBreadcrumbBarItem( + onClick = onClick, + colorScheme = colorScheme, + chevronColors = chevronColors, + textStyle = FluentTheme.typography.title, + chevronSize = FontIconSize.Standard, + modifier = modifier, + chevronVisible = chevronVisible, + enabled = enabled, + content = content + ) +} + +/** + * A breadcrumb bar item designed to be used within an overflow context. + * This item is displayed in the overflow menu/flyout. + * + * @param onClick The callback to be invoked when this item is clicked. + * @param modifier The modifier to be applied to this item. + * @param enabled Controls the enabled state of this item. When `false`, this item will not be clickable. + * @param interaction The [MutableInteractionSource] representing the stream of [Interaction]s for this item. + * @param colors The colors used to represent the different states of this item. + * @param content The content of this breadcrumb item. + */ +@Composable +fun OverflowBreadcrumbBarItem( + onClick: () -> Unit, + modifier: Modifier = Modifier, + enabled: Boolean = true, + interaction: MutableInteractionSource? = null, + colors: VisualStateScheme = ListItemDefaults.defaultListItemColors(), + content: @Composable () -> Unit +) { + ListItem( + onClick = onClick, + modifier = modifier, + enabled = enabled, + interaction = interaction, + text = content, + colors = colors + ) +} + +@Composable +private fun BasicBreadcrumbBarItem( + onClick: () -> Unit, + colorScheme: VisualStateScheme, + chevronColors: VisualStateScheme, + textStyle: TextStyle, + chevronSize: FontIconSize, + modifier: Modifier = Modifier, + chevronVisible: Boolean = true, + enabled: Boolean = true, + interaction: MutableInteractionSource? = null, + content: @Composable () -> Unit +) { + val targetInteraction = interaction ?: remember { MutableInteractionSource() } + val visualState = targetInteraction.collectVisualState(!enabled) + val currentColor = colorScheme.schemeFor(visualState) + Row( + verticalAlignment = Alignment.CenterVertically, + modifier = modifier + ) { + Box( + modifier = Modifier.clickable( + onClick = onClick, + indication = null, + interactionSource = targetInteraction + ) + ) { + CompositionLocalProvider( + LocalContentColor provides currentColor, + LocalContentAlpha provides currentColor.alpha, + LocalTextStyle provides LocalTextStyle.current.merge(textStyle.copy(color = currentColor)), + content = content + ) + } + if (chevronVisible) { + val chevronColor = if (enabled) { + chevronColors.schemeFor(VisualState.Default) + } else { + chevronColors.schemeFor(VisualState.Disabled) + } + CompositionLocalProvider( + LocalContentColor provides chevronColor, + LocalContentAlpha provides chevronColor.alpha, + LocalTextStyle provides LocalTextStyle.current.copy(chevronColor) + ) { + FontIcon( + type = FontIconPrimitive.ChevronRight, + contentDescription = null, + modifier = Modifier.padding(horizontal = 4.dp), + size = chevronSize + ) + } + } + } +} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/Button.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/Button.kt new file mode 100644 index 00000000..285b31d8 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/Button.kt @@ -0,0 +1,1039 @@ +package io.github.composefluent.component + +import androidx.compose.animation.animateColorAsState +import androidx.compose.animation.core.animateDpAsState +import androidx.compose.animation.core.tween +import androidx.compose.foundation.BorderStroke +import androidx.compose.foundation.ExperimentalFoundationApi +import androidx.compose.foundation.border +import androidx.compose.foundation.clickable +import androidx.compose.foundation.combinedClickable +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.interaction.collectIsPressedAsState +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.IntrinsicSize +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.RowScope +import androidx.compose.foundation.layout.defaultMinSize +import androidx.compose.foundation.layout.fillMaxHeight +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.heightIn +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.selection.selectable +import androidx.compose.foundation.shape.CircleShape +import androidx.compose.runtime.Composable +import androidx.compose.runtime.Immutable +import androidx.compose.runtime.Stable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.rememberCoroutineScope +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.draw.drawWithCache +import androidx.compose.ui.graphics.Brush +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.Path +import androidx.compose.ui.graphics.RectangleShape +import androidx.compose.ui.graphics.Shape +import androidx.compose.ui.graphics.SolidColor +import androidx.compose.ui.graphics.drawscope.Stroke +import androidx.compose.ui.graphics.graphicsLayer +import androidx.compose.ui.input.pointer.PointerIcon +import androidx.compose.ui.input.pointer.pointerHoverIcon +import androidx.compose.ui.layout.onGloballyPositioned +import androidx.compose.ui.layout.positionInParent +import androidx.compose.ui.platform.LocalUriHandler +import androidx.compose.ui.semantics.Role +import androidx.compose.ui.unit.dp +import io.github.composefluent.FluentTheme +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.background.BackgroundSizing +import io.github.composefluent.background.Layer +import io.github.composefluent.scheme.PentaVisualScheme +import io.github.composefluent.scheme.VisualState +import io.github.composefluent.scheme.VisualStateScheme +import io.github.composefluent.scheme.collectVisualState +import kotlinx.coroutines.delay +import kotlinx.coroutines.launch + +@Deprecated( + message = "use ButtonColorScheme instead.", + replaceWith = ReplaceWith("ButtonColorScheme", imports = arrayOf("io.github.composefluent.component.ButtonColorScheme")) +) +typealias ButtonColors = ButtonColorScheme + +typealias ButtonColorScheme = PentaVisualScheme + +/** + * Represents the color scheme for a button in different states. + * + * @property fillColor The background color of the button. + * @property contentColor The color of the content (text, icons) within the button. + * @property borderBrush The brush used to draw the border around the button. + */ +@Immutable +data class ButtonColor( + val fillColor: Color, + val contentColor: Color, + val borderBrush: Brush +) + +/** + * A basic button composable. + * + * @param onClick The callback to be invoked when the button is clicked. + * @param modifier The [Modifier] to be applied to this button. + * @param disabled Whether the button is enabled or disabled. Defaults to `false`. + * @param buttonColors The color scheme for the button in different states. + * Defaults to [ButtonDefaults.buttonColors]. + * @param interaction The [MutableInteractionSource] representing the stream of + * [androidx.compose.foundation.interaction.Interaction]s for this button. You can create and + * pass in your own `remember`ed instance to observe [Interaction]s and customize the + * appearance / behavior of the button in different states. + * @param iconOnly Whether the button is used to display only an icon. Defaults to `false`. + * If true, the button's minimum width and height will be constrained to 32.dp. + * @param contentArrangement The horizontal arrangement of the content within the button. + * Defaults to [Arrangement.spacedBy] with a spacing of 8.dp and alignment to the center horizontally. + * @param content The composable content inside the button. This should typically be a text label + * or an icon, or a combination of both. + */ +@Composable +fun Button( + onClick: () -> Unit, + modifier: Modifier = Modifier, + disabled: Boolean = false, + buttonColors: VisualStateScheme = ButtonDefaults.buttonColors(), + interaction: MutableInteractionSource = remember { MutableInteractionSource() }, + iconOnly: Boolean = false, + contentArrangement: Arrangement.Horizontal = Arrangement.spacedBy(8.dp, Alignment.CenterHorizontally), + content: @Composable RowScope.() -> Unit +) { + Button( + modifier = modifier, + interaction = interaction, + disabled = disabled, + buttonColors = buttonColors, + accentButton = false, + onClick = onClick, + iconOnly = iconOnly, + contentArrangement = contentArrangement, + content = content + ) +} + +/** + * A button with an accent style, typically used for primary actions. + * + * This button is visually distinct from the standard [Button], using a more prominent color scheme + * to draw attention to the primary action. + * + * @param onClick The callback to be invoked when the button is clicked. + * @param modifier Optional [Modifier] to be applied to the button. + * @param disabled Controls the enabled state of the button. When true, the button is not clickable + * and its appearance changes to indicate that it is disabled. + * @param buttonColors The color scheme for the button in its different states (default, hovered, + * pressed, disabled). Defaults to the accent button colors defined in [ButtonDefaults]. + * @param interaction The [MutableInteractionSource] representing the stream of [Interaction]s + * for this button. You can create and pass in your own `remember`ed instance to observe + * [Interaction]s and customize the button's appearance in response to different [Interaction]s. + * @param iconOnly Determines if the button will only contain an icon. If true, the button's size + * is adjusted to fit only an icon. + * @param contentArrangement The horizontal arrangement of the button's content, such as the space + * between an icon and the text. Defaults to a horizontal space of 8.dp. + * @param content The composable content inside the button. This should typically be a text label + * or an icon, or a combination of both. + */ +@Composable +fun AccentButton( + onClick: () -> Unit, + modifier: Modifier = Modifier, + disabled: Boolean = false, + buttonColors: VisualStateScheme = ButtonDefaults.accentButtonColors(), + interaction: MutableInteractionSource = remember { MutableInteractionSource() }, + iconOnly: Boolean = false, + contentArrangement: Arrangement.Horizontal = Arrangement.spacedBy(8.dp, Alignment.CenterHorizontally), + content: @Composable RowScope.() -> Unit +) { + Button( + modifier = modifier, + interaction = interaction, + disabled = disabled, + buttonColors = buttonColors, + accentButton = true, + onClick = onClick, + iconOnly = iconOnly, + contentArrangement = contentArrangement, + content = content + ) +} + +/** + * A subtle button variant, designed for less prominent actions or secondary operations. + * + * This button is visually subdued, making it suitable for actions that don't need to stand out as much as + * those performed by an [AccentButton]. It provides a cleaner, more minimalist look. + * + * @param onClick The callback to be invoked when the button is clicked. + * @param modifier Optional [Modifier] to be applied to the button for layout and styling. + * @param disabled When true, the button is disabled and does not respond to user interactions. + * @param buttonColors The color scheme to use for the button in its different states. Defaults to the + * subtle button colors defined in [ButtonDefaults]. + * @param interaction The [MutableInteractionSource] to observe interactions with the button. + * @param iconOnly If true, the button is designed to contain only an icon. + * @param contentArrangement The arrangement of content within the button. Defaults to spaced by 8.dp. + * @param content The composable content inside the button. This should typically be a text label + * or an icon, or a combination of both. + */ +@Composable +fun SubtleButton( + onClick: () -> Unit, + modifier: Modifier = Modifier, + disabled: Boolean = false, + buttonColors: VisualStateScheme = ButtonDefaults.subtleButtonColors(), + interaction: MutableInteractionSource = remember { MutableInteractionSource() }, + iconOnly: Boolean = false, + contentArrangement: Arrangement.Horizontal = Arrangement.spacedBy(8.dp, Alignment.CenterHorizontally), + content: @Composable RowScope.() -> Unit +) { + Button( + modifier = modifier, + interaction = interaction, + disabled = disabled, + buttonColors = buttonColors, + accentButton = true, + onClick = onClick, + iconOnly = iconOnly, + contentArrangement = contentArrangement, + content = content + ) +} + +/** + * A button that behaves like a hyperlink, opening a specified URI when clicked. + * + * This composable provides a button that, when clicked, opens the given [navigateUri] in the system's + * default URI handler (e.g., a web browser for HTTP URLs). It is typically used to create links + * within your application that lead to external content. + * + * @param navigateUri The URI to navigate to when the button is clicked. + * @param modifier The [Modifier] to be applied to this button. + * @param disabled Whether the button is enabled or disabled. Defaults to `false`. + * @param buttonColors The color scheme for the button in different states. + * Defaults to [ButtonDefaults.hyperlinkButtonColors]. + * @param interaction The [MutableInteractionSource] representing the stream of + * [androidx.compose.foundation.interaction.Interaction]s for this button. You can create and + * pass in your own `remember`ed instance to observe [Interaction]s and customize the + * appearance / behavior of the button in different states. + * @param iconOnly Whether the button is used to display only an icon. Defaults to `false`. + * If true, the button's minimum width and height will be constrained to 32.dp. + * @param content The composable content inside the button. This should typically be a text label + * or an icon, or a combination of both. + */ +@Composable +fun HyperlinkButton( + navigateUri: String, + modifier: Modifier = Modifier, + disabled: Boolean = false, + buttonColors: VisualStateScheme = ButtonDefaults.hyperlinkButtonColors(), + interaction: MutableInteractionSource = remember { MutableInteractionSource() }, + iconOnly: Boolean = false, + content: @Composable RowScope.() -> Unit +) { + val uriHandler = LocalUriHandler.current + HyperlinkButton( + modifier = modifier, + disabled = disabled, + buttonColors = buttonColors, + interaction = interaction, + iconOnly = iconOnly, + content = content, + onClick = { uriHandler.openUri(navigateUri) } + ) +} + +/** + * A button that behaves like a hyperlink, commonly used for navigation. + * + * This button is designed to look like a hyperlink, with an underline or a distinct text color, + * indicating to the user that it will navigate to another location or perform a navigation-related action. + * + * @param onClick The callback to be invoked when the button is clicked. + * @param modifier Optional [Modifier] to be applied to the button. + * @param disabled Controls the enabled state of the button. When true, the button is not clickable + * and its appearance changes to indicate that it is disabled. + * @param buttonColors The color scheme for the button in its different states (default, hovered, + * pressed, disabled). Defaults to the hyperlink button colors defined in [ButtonDefaults]. + * @param interaction The [MutableInteractionSource] representing the stream of [Interaction]s + * for this button. You can create and pass in your own `remember`ed instance to observe + * [Interaction]s and customize the button's appearance in response to different [Interaction]s. + * @param iconOnly Determines if the button will only contain an icon. If true, the button's size + * is adjusted to fit only an icon. + * @param contentArrangement The horizontal arrangement of the button's content, such as the space + * between an icon and the text. Defaults to a horizontal space of 8.dp. + * @param content The composable content inside the button. This should typically be a text label + * or an icon, or a combination of both. + */ +@Composable +fun HyperlinkButton( + onClick: () -> Unit, + modifier: Modifier = Modifier, + disabled: Boolean = false, + buttonColors: VisualStateScheme = ButtonDefaults.hyperlinkButtonColors(), + interaction: MutableInteractionSource = remember { MutableInteractionSource() }, + iconOnly: Boolean = false, + contentArrangement: Arrangement.Horizontal = Arrangement.spacedBy(8.dp, Alignment.CenterHorizontally), + content: @Composable RowScope.() -> Unit +) { + Button( + modifier = modifier.pointerHoverIcon(if (!disabled) PointerIcon.Hand else PointerIcon.Default), + interaction = interaction, + disabled = disabled, + buttonColors = buttonColors, + true, + onClick = onClick, + iconOnly = iconOnly, + contentArrangement = contentArrangement, + content = content + ) +} + +/** + * A button that repeats its action when long-pressed. + * + * This composable provides a button that, in addition to a normal click action, + * repeats the `onClick` action continuously while it is being long-pressed. + * + * @param onClick The callback to be invoked when the button is clicked or repeated. + * @param modifier Optional [Modifier] to be applied to the button. + * @param delay The initial delay (in milliseconds) before the action starts repeating + * after the button is long-pressed. Defaults to 200ms. + * @param interval The time interval (in milliseconds) between each repeated `onClick` action + * while the button is being long-pressed. Defaults to 50ms. + * @param disabled Controls the enabled state of the button. When true, the button is not + * clickable and does not respond to user interactions. Defaults to `false`. + * @param buttonColors The color scheme for the button in its different states (default, hovered, + * pressed, disabled). Defaults to the standard button colors defined in [ButtonDefaults]. + * @param interaction The [MutableInteractionSource] representing the stream of [Interaction]s + * for this button. You can create and pass in your own `remember`ed instance to observe + * [Interaction]s and customize the button's appearance in response to different [Interaction]s. + * @param iconOnly Determines if the button will only contain an icon. If true, the button's size + * is adjusted to fit only an icon. Defaults to `false`. + * @param content The composable content inside the button. This should typically be a text label + * or an icon, or a combination of both. + */ +@OptIn(ExperimentalFoundationApi::class) +@Composable +fun RepeatButton( + onClick: () -> Unit, + modifier: Modifier = Modifier, + delay: Long = 200, + interval: Long = 50, + disabled: Boolean = false, + buttonColors: VisualStateScheme = ButtonDefaults.buttonColors(), + interaction: MutableInteractionSource = remember { MutableInteractionSource() }, + iconOnly: Boolean = false, + content: @Composable RowScope.() -> Unit +) { + val pressed = interaction.collectIsPressedAsState() + val scope = rememberCoroutineScope() + + Button( + modifier = modifier.combinedClickable( + interactionSource = interaction, + indication = null, + enabled = !disabled, + onClick = onClick, + onLongClick = { + onClick() + scope.launch { + delay(delay) + do { + onClick() + delay(interval) + } while (pressed.value) + } + }, + onDoubleClick = { + onClick() + onClick() + } + ), + interaction = interaction, + disabled = disabled, + buttonColors = buttonColors, + accentButton = false, + onClick = null, + iconOnly = iconOnly, + content = content, + contentArrangement = Arrangement.spacedBy(8.dp, Alignment.CenterHorizontally) + ) +} + +/** + * A button with a built-in dropdown icon, indicating that clicking it will reveal a dropdown menu. + * + * This button is visually similar to a standard [Button] but includes an animated chevron icon that + * indicates the presence of a dropdown. It's suitable for actions that also have additional options + * available in a flyout or dropdown menu. + * + * @param onClick The callback to be invoked when the button is clicked. + * @param modifier The [Modifier] to be applied to this button. + * @param disabled Whether the button is enabled or disabled. Defaults to `false`. + * @param buttonColors The color scheme for the button in different states. + * Defaults to [ButtonDefaults.buttonColors]. + * @param interaction The [MutableInteractionSource] representing the stream of + * [androidx.compose.foundation.interaction.Interaction]s for this button. You can create and + * pass in your own `remember`ed instance to observe [Interaction]s and customize the + * appearance / behavior of the button in different states. + * @param iconOnly Whether the button is used to display only an icon. Defaults to `false`. + * If true, the button's minimum width and height will be constrained to 32.dp. + * @param contentArrangement The horizontal arrangement of the content within the button. + * Defaults to [Arrangement.spacedBy] with a spacing of 8.dp and alignment to the center horizontally. + * @param content The composable content inside the button. This should typically be a text label + * or an icon, or a combination of both. + */ +@Composable +fun DropDownButton( + onClick: () -> Unit, + modifier: Modifier = Modifier, + disabled: Boolean = false, + buttonColors: VisualStateScheme = ButtonDefaults.buttonColors(), + interaction: MutableInteractionSource = remember { MutableInteractionSource() }, + iconOnly: Boolean = false, + contentArrangement: Arrangement.Horizontal = Arrangement.spacedBy(8.dp, Alignment.CenterHorizontally), + content: @Composable RowScope.() -> Unit +) { + Button( + onClick = onClick, + disabled = disabled, + buttonColors = buttonColors, + interaction = interaction, + iconOnly = iconOnly, + modifier = modifier, + contentArrangement = contentArrangement + ) { + content() + AnimatedDropDownIcon(interaction) + } +} + +/** + * A toggle button that can be in a checked or unchecked state. + * + * This button is visually similar to a checkbox, allowing the user to toggle between two states. + * + * @param checked The current checked state of the button. + * @param onCheckedChanged Callback invoked when the checked state is toggled. + * @param modifier Optional [Modifier] to be applied to the button. + * @param disabled Controls the enabled state of the button. When true, the button is not clickable + * and its appearance changes to indicate that it is disabled. + * @param colors The color scheme for the button in its different states. If `checked` is true, it defaults + * to [ButtonDefaults.accentButtonColors]; otherwise, it defaults to [ButtonDefaults.buttonColors]. + * @param interaction The [MutableInteractionSource] representing the stream of [Interaction]s + * for this button. You can create and pass in your own `remember`ed instance to observe + * [Interaction]s and customize the button's appearance in response to different [Interaction]s. + * @param iconOnly Determines if the button will only contain an icon. If true, the button's size + * is adjusted to fit only an icon. + * @param outsideBorder If `true` when `checked` is `false`, the button has an outside border. Otherwise has no border. + * @param content The composable content inside the button. This should typically be a text label + * or an icon, or a combination of both. + */ +@Composable +fun ToggleButton( + checked: Boolean, + onCheckedChanged: (Boolean) -> Unit, + modifier: Modifier = Modifier, + disabled: Boolean = false, + colors: VisualStateScheme = if(checked) { + ButtonDefaults.accentButtonColors() + } else { + ButtonDefaults.buttonColors() + }, + interaction: MutableInteractionSource = remember { MutableInteractionSource() }, + iconOnly: Boolean = false, + outsideBorder: Boolean = !checked, + content: @Composable RowScope.() -> Unit +) { + Button( + modifier = modifier.selectable( + selected = checked, + interactionSource = interaction, + indication = null, + onClick = { onCheckedChanged(!checked) }, + role = Role.Checkbox, + enabled = !disabled + ), + interaction = interaction, + disabled = disabled, + buttonColors = colors, + accentButton = !outsideBorder, + onClick = null, + iconOnly = iconOnly, + content = content, + contentArrangement = Arrangement.spacedBy(8.dp, Alignment.CenterHorizontally) + ) +} + +/** + * A button divided into two parts: a primary action area and a flyout toggle. + * + * This composable presents a button with a distinct split, where one part triggers a primary + * action (defined by [onClick]), and the other part (usually visually differentiated by a + * dropdown icon) reveals additional options or a flyout menu (defined by [flyoutClick]). + * + * @param flyoutClick The callback to be invoked when the flyout part of the button is clicked. + * @param onClick The callback to be invoked when the main part of the button is clicked. + * @param modifier The [Modifier] to be applied to this button. + * @param buttonColors The color scheme for the button in different states. + * Defaults to [ButtonDefaults.buttonColors]. + * @param accentButton Determines if the button is styled as an accent button. Defaults to `false`. + * @param disabled Whether the button is enabled or disabled. Defaults to `false`. + * @param content The composable content inside the main part of the button. + * This should typically be a text label or an icon, or a combination of both. + */ +@Composable +fun SplitButton( + flyoutClick: () -> Unit, + onClick: () -> Unit, + modifier: Modifier = Modifier, + buttonColors: VisualStateScheme = ButtonDefaults.buttonColors(), + accentButton: Boolean = false, + disabled: Boolean = false, + content: @Composable RowScope.() -> Unit +) { + val currentColor = if (!disabled) { + buttonColors.schemeFor(VisualState.Default) + } else { + buttonColors.schemeFor(VisualState.Disabled) + } + val borderBrush = currentColor.borderBrush + val endContentOffset = remember { mutableStateOf(0f) } + Layer( + modifier = modifier.border(BorderStroke(buttonBorderStrokeWidth, currentColor.borderBrush), FluentTheme.shapes.control) + .drawWithCache { + /* draw split broder */ + val path = Path() + val strokeWidth = buttonBorderStrokeWidth.toPx() + path.moveTo(endContentOffset.value, strokeWidth) + path.lineTo(endContentOffset.value, size.height - 2 * strokeWidth) + path.close() + onDrawWithContent { + drawContent() + drawPath(path, borderBrush, style = Stroke(strokeWidth)) + } + }, + shape = FluentTheme.shapes.control, + color = Color.Transparent, + contentColor = currentColor.contentColor, + /* workaround for outside border padding */ + border = null, + backgroundSizing = if (!accentButton + ) BackgroundSizing.InnerBorderEdge else BackgroundSizing.OuterBorderEdge + ) { + Row(modifier = Modifier.height(IntrinsicSize.Min)) { + val contentInteraction = remember { MutableInteractionSource() } + ButtonLayer( + shape = RectangleShape, + buttonColors = buttonColors, + interaction = contentInteraction, + disabled = disabled, + accentButton = false, + displayBorder = false, + modifier = Modifier.clickable( + interactionSource = contentInteraction, + indication = null, + onClick = onClick, + enabled = !disabled + ).heightIn(buttonMinHeight) + ) { + Row( + horizontalArrangement = Arrangement.spacedBy(8.dp), + verticalAlignment = Alignment.CenterVertically + ) { + content() + } + } + val dropDownInteraction = remember { MutableInteractionSource() } + ButtonLayer( + shape = RectangleShape, + buttonColors = buttonColors, + interaction = dropDownInteraction, + disabled = disabled, + accentButton = false, + displayBorder = false, + modifier = Modifier.clickable( + interactionSource = dropDownInteraction, + indication = null, + onClick = flyoutClick, + enabled = !disabled + ).fillMaxHeight().onGloballyPositioned { + endContentOffset.value = it.positionInParent().x.toInt().toFloat() + }, + ) { + Box( + modifier = Modifier.fillMaxHeight().padding(start = 1.dp).size(32.dp), + contentAlignment = Alignment.Center + ) { + AnimatedDropDownIcon(dropDownInteraction) + } + } + } + } +} + +/** + * A split button that toggles its state (checked/unchecked) and also provides a separate flyout action. + * + * This button combines the functionality of a [SplitButton] and a toggleable element. It can be in a + * checked or unchecked state, with the main button area handling the toggling and the flyout area + * providing additional actions or options. + * + * @param flyoutClick The callback to be invoked when the flyout portion of the button is clicked. + * @param onClick The callback to be invoked when the main button portion is clicked. This typically + * toggles the `checked` state. + * @param checked Indicates whether the button is in a checked or unchecked state. + * @param modifier The [Modifier] to be applied to this button. + * @param colors The color scheme for the button in its different states. If `checked` is true, + * it defaults to [ButtonDefaults.accentButtonColors]; otherwise, it defaults to + * [ButtonDefaults.buttonColors]. + * @param accentButton Determines if the button should have an accent style. Defaults to the value + * of `checked`, meaning it will have an accent style when checked. + * @param disabled Controls the enabled state of the button. When true, the button is not + * clickable and its appearance changes to indicate that it is disabled. + * @param content The composable content inside the main button portion. This should typically be + * a text label or an icon, or a combination of both. + */ +@Composable +fun ToggleSplitButton( + flyoutClick: () -> Unit, + onClick: () -> Unit, + checked: Boolean, + modifier: Modifier = Modifier, + colors: VisualStateScheme = if(checked) { + ButtonDefaults.accentButtonColors() + } else { + ButtonDefaults.buttonColors() + }, + accentButton: Boolean = checked, + disabled: Boolean = false, + content: @Composable RowScope.() -> Unit +) { + SplitButton( + flyoutClick = flyoutClick, + onClick = onClick, + modifier = modifier, + buttonColors = colors, + accentButton = accentButton, + disabled = disabled, + content = content + ) +} + +/** + * A pill-shaped button that can be toggled on or off. + * + * This button is designed to resemble a pill, featuring rounded ends, and is used to represent a + * binary choice, such as selecting or deselecting an option. + * + * @param selected Indicates whether the button is currently selected. + * @param onSelectedChanged The callback invoked when the button's selection state changes. It + * provides a `Boolean` parameter representing the new selection state. + * @param modifier Optional [Modifier] to be applied to the button. + * @param interaction The [MutableInteractionSource] representing the stream of [Interaction]s + * for this button. If not provided, a new one is created. + * @param disabled When true, the button is disabled and does not respond to user interactions. + * @param colors The color scheme for the button in different states. Defaults to + * [ButtonDefaults.pillButtonSelectedColors] when selected, and + * [ButtonDefaults.pillButtonDefaultColors] when not selected. + * @param outsideBorder Determines if a border should be drawn around the outside of the button + * when it is not selected. Defaults to true when not selected. + * @param content The composable content inside the button. This should typically be a text label + * or an icon, or a combination of both. + */ +@Composable +fun PillButton( + selected: Boolean, + onSelectedChanged: (Boolean) -> Unit, + modifier: Modifier = Modifier, + interaction: MutableInteractionSource? = null, + disabled: Boolean = false, + colors: VisualStateScheme = if (selected) { + ButtonDefaults.pillButtonSelectedColors() + } else { + ButtonDefaults.pillButtonDefaultColors() + }, + outsideBorder: Boolean = !selected, + content: @Composable RowScope.() -> Unit +) { + val targetInteraction = interaction ?: remember { MutableInteractionSource() } + Button( + modifier = modifier.selectable( + selected = selected, + interactionSource = targetInteraction, + indication = null, + onClick = { onSelectedChanged(!selected) }, + role = Role.Checkbox, + enabled = !disabled + ), + interaction = targetInteraction, + disabled = disabled, + buttonColors = colors, + accentButton = !outsideBorder, + onClick = null, + iconOnly = false, + content = content, + contentArrangement = Arrangement.spacedBy(ButtonDefaults.iconSpacing, Alignment.CenterHorizontally), + shape = CircleShape + ) +} + +@Composable +private fun Button( + modifier: Modifier, + interaction: MutableInteractionSource, + disabled: Boolean, + buttonColors: VisualStateScheme, + accentButton: Boolean, + onClick: (() -> Unit)?, + iconOnly: Boolean, + contentArrangement: Arrangement.Horizontal, + shape: Shape = FluentTheme.shapes.control, + content: @Composable (RowScope.() -> Unit), +) { + ButtonLayer( + shape = shape, + displayBorder = true, + buttonColors = buttonColors, + interaction = interaction, + disabled = disabled, + accentButton = accentButton, + modifier = modifier.let { + if (iconOnly) { + it.defaultMinSize(32.dp, buttonMinHeight) + } else { + it.defaultMinSize( + minHeight = buttonMinHeight + ) + } + } + ) { + Row( + Modifier + .then( + if (onClick != null) { + Modifier.clickable( + onClick = onClick, + interactionSource = interaction, + indication = null, + enabled = !disabled + ) + } else { + Modifier + } + ) + .then(if (iconOnly) Modifier else Modifier.padding(horizontal = 12.dp)), + horizontalArrangement = contentArrangement, + verticalAlignment = Alignment.CenterVertically, + content = content + ) + } +} + +/* +common interaction layer for button and split button. +*/ +@Composable +internal fun ButtonLayer( + shape: Shape, + buttonColors: VisualStateScheme, + interaction: MutableInteractionSource, + disabled: Boolean, + accentButton: Boolean, + displayBorder: Boolean, + modifier: Modifier = Modifier, + content: @Composable () -> Unit +) { + val buttonColor = buttonColors.schemeFor(interaction.collectVisualState(disabled)) + + val fillColor by animateColorAsState( + buttonColor.fillColor, + animationSpec = tween(FluentDuration.QuickDuration, easing = FluentEasing.FastInvokeEasing) + ) + + val contentColor by animateColorAsState( + buttonColor.contentColor, + animationSpec = tween(FluentDuration.QuickDuration, easing = FluentEasing.FastInvokeEasing) + ) + Layer( + modifier = modifier, + shape = shape, + color = fillColor, + contentColor = contentColor, + border = if (displayBorder) BorderStroke(buttonBorderStrokeWidth, buttonColor.borderBrush) else null, + backgroundSizing = if (!accentButton) BackgroundSizing.InnerBorderEdge else BackgroundSizing.OuterBorderEdge, + content = content + ) +} + +/** + * Contains the default values used by [Button] and its related components. + */ +object ButtonDefaults { + + /** + * The default spacing between the icon and the text content within a button. + */ + val iconSpacing = 8.dp + + /** + * Creates a [ButtonColorScheme] with the default colors for a standard button. + * + * @param default The default color scheme for the button. + * @param hovered The color scheme when the button is hovered. + * @param pressed The color scheme when the button is pressed. + * @param disabled The color scheme when the button is disabled. + * @return A [ButtonColorScheme] with the specified color scheme for each state. + */ + @Stable + @Composable + fun buttonColors( + default: ButtonColor = ButtonColor( + fillColor = FluentTheme.colors.control.default, + contentColor = FluentTheme.colors.text.text.primary, + borderBrush = FluentTheme.colors.borders.control + ), + hovered: ButtonColor = default.copy( + fillColor = FluentTheme.colors.control.secondary + ), + pressed: ButtonColor = ButtonColor( + fillColor = FluentTheme.colors.control.tertiary, + contentColor = FluentTheme.colors.text.text.secondary, + borderBrush = SolidColor(FluentTheme.colors.stroke.control.default) + ), + disabled: ButtonColor = pressed.copy( + fillColor = FluentTheme.colors.control.disabled, + contentColor = FluentTheme.colors.text.text.disabled, + ) + ) = ButtonColorScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) + + /** + * Creates a color scheme for accent buttons. + * + * Accent buttons are typically used for primary actions and have a distinct + * color scheme to draw the user's attention. + * + * @param default The default color scheme for the button. + * @param hovered The color scheme when the button is hovered. + * @param pressed The color scheme when the button is pressed. + * @param disabled The color scheme when the button is disabled. + * @return A [ButtonColorScheme] that defines the colors for the button in its + * various states. + */ + @Stable + @Composable + fun accentButtonColors( + default: ButtonColor = ButtonColor( + fillColor = FluentTheme.colors.fillAccent.default, + contentColor = FluentTheme.colors.text.onAccent.primary, + borderBrush = FluentTheme.colors.borders.accentControl + ), + hovered: ButtonColor = default.copy( + fillColor = FluentTheme.colors.fillAccent.secondary + ), + pressed: ButtonColor = ButtonColor( + fillColor = FluentTheme.colors.fillAccent.tertiary, + contentColor = FluentTheme.colors.text.onAccent.secondary, + borderBrush = SolidColor(FluentTheme.colors.stroke.control.onAccentDefault) + ), + disabled: ButtonColor = ButtonColor( + fillColor = FluentTheme.colors.fillAccent.disabled, + contentColor = FluentTheme.colors.text.onAccent.disabled, + borderBrush = SolidColor(Color.Transparent) // Disabled accent button does not have border + ) + ) = ButtonColorScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) + + /** + * Creates a color scheme for a subtle button. + * + * Subtle buttons are used for less prominent actions or secondary operations. + * + * @param default The color scheme for the default state of the button. + * Defaults to a transparent background, primary text color, and no border. + * @param hovered The color scheme for the hovered state of the button. + * Defaults to a secondary subtle fill background and maintains the default text and border colors. + * @param pressed The color scheme for the pressed state of the button. + * Defaults to a tertiary subtle fill background, secondary text color, and no border. + * @param disabled The color scheme for the disabled state of the button. + * Defaults to a disabled subtle fill background, disabled text color, and no border. + * @return A [ButtonColorScheme] representing the color scheme for the subtle button. + */ + @Stable + @Composable + fun subtleButtonColors( + default: ButtonColor = ButtonColor( + fillColor = FluentTheme.colors.subtleFill.transparent, + contentColor = FluentTheme.colors.text.text.primary, + borderBrush = SolidColor(Color.Transparent) + ), + hovered: ButtonColor = default.copy( + fillColor = FluentTheme.colors.subtleFill.secondary, + ), + pressed: ButtonColor = default.copy( + fillColor = FluentTheme.colors.subtleFill.tertiary, + contentColor = FluentTheme.colors.text.text.secondary + ), + disabled: ButtonColor = default.copy( + fillColor = FluentTheme.colors.subtleFill.disabled, + contentColor = FluentTheme.colors.text.text.disabled + ) + ) = ButtonColorScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled, + ) + + /** + * Creates a color scheme for a hyperlink button. + * + * A hyperlink button is typically used for navigating to a different part of the + * application or to an external website. These buttons are designed to look like + * hyperlinks, often with text styling that indicates they are clickable links. + * + * @param default The default color scheme of the hyperlink button. + * @param hovered The color scheme when the button is hovered over. + * @param pressed The color scheme when the button is pressed. + * @param disabled The color scheme when the button is disabled. + * @return A [ButtonColorScheme] representing the color scheme for a hyperlink button. + */ + @Stable + @Composable + fun hyperlinkButtonColors( + default: ButtonColor = ButtonColor( + fillColor = FluentTheme.colors.subtleFill.transparent, + contentColor = FluentTheme.colors.text.accent.primary, + borderBrush = SolidColor(Color.Transparent) + ), + hovered: ButtonColor = default.copy( + fillColor = FluentTheme.colors.subtleFill.secondary + ), + pressed: ButtonColor = default.copy( + fillColor = FluentTheme.colors.subtleFill.tertiary, + contentColor = FluentTheme.colors.text.accent.secondary, + ), + disabled: ButtonColor = default.copy( + fillColor = FluentTheme.colors.subtleFill.disabled, + contentColor = FluentTheme.colors.text.accent.disabled, + ) + ) = ButtonColorScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) + + /** + * Defines the default color scheme for a pill-shaped button. + * + * This function provides a set of colors that can be used for a pill button in its various states: + * default, hovered, pressed, and disabled. The colors are derived from the current [FluentTheme]. + * + * @param default The default color scheme for the button. + * @param hovered The color scheme when the button is hovered. + * @param pressed The color scheme when the button is pressed. + * @param disabled The color scheme when the button is disabled. + * @return A [ButtonColorScheme] that represents the color scheme for the pill button. + */ + @Stable + @Composable + fun pillButtonDefaultColors( + default: ButtonColor = ButtonColor( + fillColor = FluentTheme.colors.control.quaternary, + contentColor = FluentTheme.colors.text.text.primary, + borderBrush = SolidColor(FluentTheme.colors.stroke.control.default) + ), + hovered: ButtonColor = default.copy( + fillColor = FluentTheme.colors.control.secondary, + ), + pressed: ButtonColor = hovered.copy( + contentColor = FluentTheme.colors.text.text.secondary + ), + disabled: ButtonColor = default.copy( + fillColor = FluentTheme.colors.control.disabled, + contentColor = FluentTheme.colors.text.text.disabled + ) + ) = ButtonColorScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) + + /** + * Creates a color scheme for a pill button when it is selected. + * + * @param default The default color scheme when the button is selected. + * @param hovered The color scheme when the mouse is hovering over the selected button. + * @param pressed The color scheme when the selected button is being pressed. + * @param disabled The color scheme when the selected button is disabled. + * @return A [ButtonColorScheme] representing the color scheme for a selected pill button. + */ + @Stable + @Composable + fun pillButtonSelectedColors( + default: ButtonColor = ButtonColor( + fillColor = FluentTheme.colors.fillAccent.default, + contentColor = FluentTheme.colors.text.onAccent.primary, + borderBrush = SolidColor(Color.Transparent) + ), + hovered: ButtonColor = default.copy( + fillColor = FluentTheme.colors.fillAccent.secondary, + contentColor = FluentTheme.colors.text.onAccent.primary + ), + pressed: ButtonColor = default.copy( + fillColor = FluentTheme.colors.fillAccent.tertiary, + contentColor = FluentTheme.colors.text.onAccent.secondary + ), + disabled: ButtonColor = default.copy( + fillColor = FluentTheme.colors.fillAccent.disabled, + contentColor = FluentTheme.colors.text.onAccent.disabled + ) + ) = ButtonColorScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) +} + +@Composable +private fun AnimatedDropDownIcon(interaction: MutableInteractionSource) { + val isPressed by interaction.collectIsPressedAsState() + val animatedOffset = animateDpAsState( + targetValue = if (isPressed) 2.dp else 0.dp, + animationSpec = tween(FluentDuration.ShortDuration, easing = FluentEasing.FastInvokeEasing) + ) + FontIcon( + type = FontIconPrimitive.ChevronDown, + size = FontIconSize.Small, + contentDescription = null, + modifier = Modifier.graphicsLayer { translationY = animatedOffset.value.toPx() } + ) +} + +internal val buttonMinHeight = 32.dp +internal val buttonBorderStrokeWidth = 1.dp \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/CalendarDatePicker.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/CalendarDatePicker.kt new file mode 100644 index 00000000..ffb362ce --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/CalendarDatePicker.kt @@ -0,0 +1,66 @@ +package io.github.composefluent.component + +import androidx.compose.foundation.layout.PaddingValues +import androidx.compose.runtime.Composable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import io.github.composefluent.ExperimentalFluentApi +import kotlin.time.ExperimentalTime + +/** + * A calendar date picker that allows the user to select a single date from a calendar view within a flyout. + * + * This composable provides a button that, when clicked, opens a flyout containing a [CalendarViewLayout]. + * The user can navigate through months, years, and decades within the calendar to select a specific date. + * + * Once a date is selected, the flyout closes, the selected date is displayed on the button, and the `onChoose` callback is invoked. + * + * The date displayed in the button will be shown in the format: "year/month/day". + * + * @param onChoose Callback invoked when a date is selected by the user. Receives the selected [CalendarDatePickerState.Day]. + * @param state The state of the calendar date picker, allowing customization of the displayed calendar. + */ +@OptIn(ExperimentalTime::class) +@Composable +@ExperimentalFluentApi +fun CalendarDatePicker( + onChoose: (CalendarDatePickerState.Day) -> Unit, + state: CalendarDatePickerState = remember { CalendarDatePickerState() } +) { + var day by remember { mutableStateOf(null) } + BasicFlyoutContainer( + flyout = { + BasicFlyout( + visible = isFlyoutVisible, + onDismissRequest = { isFlyoutVisible = false }, + contentPadding = PaddingValues() + ) { + CalendarViewLayout( + onChoose = { + day = it + onChoose(it) + isFlyoutVisible = false + }, + state = state + ) + } + }, + content = { + Button( + onClick = { + isFlyoutVisible = true + }, + content = { + Text( + day?.let { day -> + "${day.year}/${day.monthValue + 1}/${day.day}" + } ?: "Pick a date" + ) + FontIcon(type = FontIconPrimitive.Calendar, contentDescription = null) + } + ) + } + ) +} diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/CalendarView.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/CalendarView.kt similarity index 79% rename from fluent/src/commonMain/kotlin/com/konyaco/fluent/component/CalendarView.kt rename to fluent/src/commonMain/kotlin/io/github/composefluent/component/CalendarView.kt index 944dc559..093992c5 100644 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/CalendarView.kt +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/CalendarView.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.component +package io.github.composefluent.component import androidx.compose.animation.AnimatedContent import androidx.compose.animation.ContentTransform @@ -44,89 +44,108 @@ import androidx.compose.ui.text.font.FontWeight import androidx.compose.ui.text.style.TextAlign import androidx.compose.ui.unit.dp import androidx.compose.ui.unit.sp -import com.konyaco.fluent.ExperimentalFluentApi -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.LocalContentColor -import com.konyaco.fluent.animation.FluentDuration -import com.konyaco.fluent.animation.FluentEasing -import com.konyaco.fluent.background.BackgroundSizing -import com.konyaco.fluent.background.Layer -import com.konyaco.fluent.component.CalendarDatePickerState.ChooseType -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.filled.CaretDown -import com.konyaco.fluent.icons.filled.CaretUp -import com.konyaco.fluent.scheme.PentaVisualScheme -import com.konyaco.fluent.scheme.collectVisualState -import kotlinx.datetime.Clock +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.FluentTheme +import io.github.composefluent.LocalContentColor +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.background.BackgroundSizing +import io.github.composefluent.background.Layer +import io.github.composefluent.component.CalendarDatePickerState.ChooseType +import io.github.composefluent.scheme.PentaVisualScheme +import io.github.composefluent.scheme.collectVisualState import kotlinx.datetime.DatePeriod import kotlinx.datetime.LocalDate import kotlinx.datetime.TimeZone import kotlinx.datetime.isoDayNumber import kotlinx.datetime.minus +import kotlinx.datetime.number import kotlinx.datetime.plus import kotlinx.datetime.toLocalDateTime - +import kotlin.time.Clock +import kotlin.time.ExperimentalTime +import kotlin.time.Instant /** - * CalendarView shows a large view for showing and selecting dates. - * DatePicker by contrast has a compact view with inline selection. + * `CalendarView` provides a large, interactive calendar interface for displaying and selecting dates. + * It offers a more expansive view compared to `DatePicker`, which uses a compact, inline selection approach. + * + * The view supports navigation between years, months, and days, offering a comprehensive date selection experience. + * It also supports selecting a day with the callback parameter [onChoose]. + * + * Currently, the view offers these features: + * - Year, Month, Day view switch. + * - Paging among each views. + * * TODO: Add animations, scroll behaviors and refactor codes. Add selection mode (single, multiple, range) + * + * @param onChoose Callback invoked when a specific date is chosen. Provides the selected [CalendarDatePickerState.Day] object. + * @param state The [CalendarDatePickerState] managing the calendar's internal state (e.g., selected date, view mode). */ +@OptIn(ExperimentalTime::class) @Composable @ExperimentalFluentApi fun CalendarView( onChoose: (day: CalendarDatePickerState.Day) -> Unit, state: CalendarDatePickerState = remember { CalendarDatePickerState() } ) { - // TODO: Replace by flyout when it's in CalendarDatePicker Layer( Modifier.width(300.dp), color = FluentTheme.colors.background.acrylic.defaultFallback ) { - Column(Modifier.width(300.dp)) { - // Header - Row( - Modifier.padding(4.dp).height(40.dp), - verticalAlignment = Alignment.CenterVertically - ) { - CalendarHeader( - modifier = Modifier.weight(1f), - text = state.viewHeaderText.value, - onClick = { state.toggleChooseType() }, - disabled = state.currentChooseType.value == ChooseType.YEAR - ) - PaginationButton(up = true, onClick = { state.up() }) - PaginationButton(up = false, onClick = { state.down() }) - } - // Divider - Box( - Modifier.fillMaxWidth().height(1.dp) - .background(FluentTheme.colors.stroke.card.default) + CalendarViewLayout(onChoose, state) + } +} + +@OptIn(ExperimentalTime::class) +@Composable +internal fun CalendarViewLayout( + onChoose: (day: CalendarDatePickerState.Day) -> Unit, + state: CalendarDatePickerState = remember { CalendarDatePickerState() }, +) { + Column(Modifier.width(300.dp)) { + // Header + Row( + Modifier.padding(4.dp).height(40.dp), + verticalAlignment = Alignment.CenterVertically + ) { + CalendarHeader( + modifier = Modifier.weight(1f), + text = state.viewHeaderText.value, + onClick = { state.toggleChooseType() }, + disabled = state.currentChooseType.value == ChooseType.YEAR ) + PaginationButton(up = true, onClick = { state.up() }) + PaginationButton(up = false, onClick = { state.down() }) + } + // Divider + Box( + Modifier.fillMaxWidth().height(1.dp) + .background(FluentTheme.colors.stroke.card.default) + ) - // Content - Layer( - Modifier.fillMaxWidth().height(300.dp), - color = FluentTheme.colors.background.layer.default, - border = null - ) { - AnimatedContent( - modifier = Modifier.fillMaxSize(), - targetState = state.currentChooseType.value, - transitionSpec = { - if (targetState < initialState) { - zoomInTransition - } else { - zoomOutTransition - } - } - ) { - when (it) { - ChooseType.YEAR -> YearTable(state) - ChooseType.MONTH -> MonthTable(state) - ChooseType.DAY -> DateTable(state, onChoose = onChoose) + // Content + Layer( + Modifier.fillMaxWidth().height(300.dp), + color = FluentTheme.colors.background.layerOnAcrylic.default, + border = null + ) { + AnimatedContent( + modifier = Modifier.fillMaxSize(), + targetState = state.currentChooseType.value, + transitionSpec = { + if (targetState < initialState) { + zoomInTransition + } else { + zoomOutTransition } } + ) { + when (it) { + ChooseType.YEAR -> YearTable(state) + ChooseType.MONTH -> MonthTable(state) + ChooseType.DAY -> DateTable(state, onChoose = onChoose) + } } } } @@ -341,7 +360,11 @@ private fun CalendarHeader( disabled = disabled ) { Box(Modifier.fillMaxWidth().padding(horizontal = 8.dp)) { - Text(text = text, style = FluentTheme.typography.bodyStrong, textAlign = TextAlign.Start) + Text( + text = text, + style = FluentTheme.typography.bodyStrong, + textAlign = TextAlign.Start + ) // FIXME: The animation is only enabled when change choose type /*AnimatedContent( modifier = Modifier.fillMaxWidth(), @@ -365,16 +388,17 @@ private fun PaginationButton( ) { Box(Modifier.requiredSize(40.dp), Alignment.Center) { SubtleButton(modifier = Modifier.height(30.dp), onClick = onClick, iconOnly = true) { - if (up) Icon( - modifier = Modifier.size(12.dp), - imageVector = Icons.Filled.CaretUp, - contentDescription = "Up" - ) - else Icon( - modifier = Modifier.size(12.dp), - imageVector = Icons.Filled.CaretDown, - contentDescription = "Down" - ) + if (up) { + FontIconSolid8( + type = FontIconPrimitive.CaretUp, + contentDescription = "Up", + ) + } else { + FontIconSolid8( + type = FontIconPrimitive.CaretDown, + contentDescription = "Down", + ) + } } } } @@ -487,7 +511,35 @@ private fun Item( } } -class CalendarDatePickerState { +/** + * [CalendarDatePickerState] is the state holder for [CalendarView]. + * It holds the current choose type, header text, day of week names, month names, + * current day, view month, selected day, candidate years, candidate months, candidate days, + * and locale start day of week. + * + * The state holder also provides the functions for toggling the choose type, + * selecting year/month/day, going to previous/next year/month, + * and computing the header text. + * + * @param initialInstant The initial [Instant] to represent, defaults to the current system time. + * @param timeZone The [TimeZone] to use for date calculations, defaults to the current system default. + * @property currentChooseType The current choose type (YEAR, MONTH, DAY). + * @property viewHeaderText The header text to display in the view. + * @property dayOfWeekNames The names of the days of the week based on locale. + * @property monthNames The names of the months based on locale. + * @property currentDay The currently selected day. + * @property viewMonth The month currently being viewed. + * @property selectedDay The user's selected day. + * @property candidateYears The list of candidate years to display. + * @property candidateMonths The list of candidate months to display. + * @property candidateDays The list of candidate days to display. + * @property localeStartDayOfWeek The first day of the week based on locale. Sunday(1), Monday(2), ..., Saturday(7) + */ +@OptIn(ExperimentalTime::class) +class CalendarDatePickerState( + initialInstant: Instant = Clock.System.now(), + timeZone: TimeZone = TimeZone.currentSystemDefault() +) { val currentChooseType = mutableStateOf(ChooseType.DAY) val viewHeaderText = mutableStateOf("") @@ -495,6 +547,13 @@ class CalendarDatePickerState { val dayOfWeekNames = mutableStateOf(getLocalDayOfWeekNames()) val monthNames = mutableStateOf(getLocalMonthNames()) + /** + * Defines the type of view to be displayed in the calendar. + * + * - [YEAR]: Displays a grid of years for selection. + * - [MONTH]: Displays a grid of months for selection. + * - [DAY]: Displays a grid of days for selection. + */ enum class ChooseType { YEAR, MONTH, DAY } @@ -524,11 +583,10 @@ class CalendarDatePickerState { // val localeStartDayOfWeek = 2 init { - val now = Clock.System.now() - val dateTime = now.toLocalDateTime(TimeZone.currentSystemDefault()) + val dateTime = initialInstant.toLocalDateTime(timeZone) val year = dateTime.year - val monthValue = dateTime.monthNumber - 1 - val day = dateTime.dayOfMonth + val monthValue = dateTime.month.number - 1 + val day = dateTime.day // currentYear = mutableStateOf(Year(year)) // viewYear = mutableStateOf(Year(year)) // selectedYear = mutableStateOf(Year(year)) @@ -584,7 +642,8 @@ class CalendarDatePickerState { // e.g from 4-29 to 6-9 val daysToDisplay = 7 * 6 this.candidateDays.value = List(daysToDisplay) { i -> - startDay.plus(DatePeriod(days = i)).let { Day(it.year, it.monthNumber - 1, it.dayOfMonth) } + startDay.plus(DatePeriod(days = i)) + .let { Day(it.year, it.month.number - 1, it.day) } } } diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/CheckBox.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/CheckBox.kt new file mode 100644 index 00000000..88de2b47 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/CheckBox.kt @@ -0,0 +1,213 @@ +package io.github.composefluent.component + +import androidx.compose.animation.animateColorAsState +import androidx.compose.animation.core.tween +import androidx.compose.animation.expandHorizontally +import androidx.compose.animation.fadeOut +import androidx.compose.foundation.BorderStroke +import androidx.compose.foundation.clickable +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.Spacer +import androidx.compose.foundation.layout.defaultMinSize +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.foundation.layout.offset +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.layout.width +import androidx.compose.runtime.Composable +import androidx.compose.runtime.Immutable +import androidx.compose.runtime.Stable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.remember +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.semantics.Role +import androidx.compose.ui.unit.dp +import io.github.composefluent.FluentTheme +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.background.BackgroundSizing +import io.github.composefluent.background.Layer +import io.github.composefluent.scheme.PentaVisualScheme +import io.github.composefluent.scheme.VisualStateScheme +import io.github.composefluent.scheme.collectVisualState + +/** + * A composable function that renders a CheckBox with an optional label. + * + * @param checked Whether the checkbox is checked or not. + * @param label The optional label to display next to the checkbox. + * @param modifier Modifier to be applied to the row containing the checkbox and label. + * @param enabled Whether the checkbox is enabled or not. + * @param colors The color scheme to use for the checkbox. Defaults to `selectedCheckBoxColors` when checked, and `defaultCheckBoxColors` otherwise. + * @param onCheckStateChange Callback to be invoked when the checked state of the checkbox changes. + */ +@Composable +fun CheckBox( + checked: Boolean, + label: String? = null, + modifier: Modifier = Modifier, + enabled: Boolean = true, + colors: VisualStateScheme = if(checked) { + CheckBoxDefaults.selectedCheckBoxColors() + } else { + CheckBoxDefaults.defaultCheckBoxColors() + }, + onCheckStateChange: (checked: Boolean) -> Unit +) { + // TODO: Animation, TripleStateCheckbox + val interactionSource = remember { MutableInteractionSource() } + val color = colors.schemeFor(interactionSource.collectVisualState(!enabled)) + Row( + modifier = modifier.then( + if (label != null) Modifier.defaultMinSize(minWidth = 120.dp) + else Modifier + ).clickable( + role = Role.Checkbox, + indication = null, + interactionSource = interactionSource + ) { onCheckStateChange(!checked) }, + verticalAlignment = Alignment.CenterVertically + ) { + val fillColor by animateColorAsState(color.fillColor, + tween(FluentDuration.QuickDuration, easing = FluentEasing.FadeInFadeOutEasing) + ) + Layer( + modifier = Modifier.size(20.dp), + shape = FluentTheme.shapes.control, + color = fillColor, + contentColor = color.contentColor, + border = BorderStroke(1.dp, color.borderColor), + backgroundSizing = if (!checked) BackgroundSizing.InnerBorderEdge else BackgroundSizing.OuterBorderEdge + ) { + Box(contentAlignment = Alignment.CenterStart) { + androidx.compose.animation.AnimatedVisibility( + visible = checked, + enter = expandHorizontally( + expandFrom = Alignment.Start + ), exit = fadeOut( + tween(durationMillis = FluentDuration.QuickDuration, easing = FluentEasing.FadeInFadeOutEasing) + ) + ) { + Box(Modifier.fillMaxSize(), Alignment.Center) { + FontIcon( + type = FontIconPrimitive.Accept, + contentDescription = null, + size = FontIconSize.Small + ) + } + } + } + } + + label?.let { + Spacer(Modifier.width(8.dp)) + Text( + modifier = Modifier.offset(y = (-1).dp), + text = it, + style = FluentTheme.typography.body.copy(color = color.labelTextColor) + ) + } + } +} + +typealias CheckBoxColorScheme = PentaVisualScheme + +/** + * Represents the color scheme for a [CheckBox] in different states. + * + * @property fillColor The background color of the checkbox. + * @property contentColor The color of the content (like the checkmark) inside the checkbox. + * @property borderColor The color of the border around the checkbox. + * @property labelTextColor The color of the text label associated with the checkbox. + */ +@Immutable +data class CheckBoxColor( + val fillColor: Color, + val contentColor: Color, + val borderColor: Color, + val labelTextColor: Color +) + +/** + * Contains the default values used for [CheckBox]. + */ +object CheckBoxDefaults { + + /** + * Creates a [CheckBoxColorScheme] with the default colors for a standard checkbox. + * + * @param default The default colors for a selected checkbox. + * @param hovered The colors for a selected checkbox when it is hovered. + * @param pressed The colors for a selected checkbox when it is pressed. + * @param disabled The colors for a selected checkbox when it is disabled. + * @return A [CheckBoxColorScheme] containing the specified colors for the checkbox states. + */ + @Stable + @Composable + fun defaultCheckBoxColors( + default: CheckBoxColor = CheckBoxColor( + fillColor = FluentTheme.colors.controlAlt.secondary, + contentColor = FluentTheme.colors.text.onAccent.primary, + borderColor = FluentTheme.colors.controlStrong.default, + labelTextColor = FluentTheme.colors.text.text.primary + ), + hovered: CheckBoxColor = default.copy( + fillColor = FluentTheme.colors.controlAlt.tertiary, + ), + pressed: CheckBoxColor = default.copy( + fillColor = FluentTheme.colors.controlAlt.quaternary, + contentColor = FluentTheme.colors.text.onAccent.secondary + ), + disabled: CheckBoxColor = CheckBoxColor( + fillColor = FluentTheme.colors.controlAlt.disabled, + contentColor = FluentTheme.colors.text.onAccent.disabled, + borderColor = FluentTheme.colors.controlStrong.disabled, + labelTextColor = FluentTheme.colors.text.text.primary + ) + ) = CheckBoxColorScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) + + /** + * Creates a [CheckBoxColorScheme] for a selected [CheckBox]. + * + * @param default The default colors for a selected checkbox. + * @param hovered The colors for a selected checkbox when it is hovered. + * @param pressed The colors for a selected checkbox when it is pressed. + * @param disabled The colors for a selected checkbox when it is disabled. + */ + @Stable + @Composable + fun selectedCheckBoxColors( + default: CheckBoxColor = CheckBoxColor( + fillColor = FluentTheme.colors.fillAccent.default, + contentColor = FluentTheme.colors.text.onAccent.primary, + borderColor = Color.Transparent, + labelTextColor = FluentTheme.colors.text.text.primary + ), + hovered: CheckBoxColor = default.copy( + fillColor = FluentTheme.colors.fillAccent.secondary, + ), + pressed: CheckBoxColor = default.copy( + fillColor = FluentTheme.colors.fillAccent.tertiary, + contentColor = FluentTheme.colors.text.onAccent.secondary + ), + disabled: CheckBoxColor = CheckBoxColor( + fillColor = FluentTheme.colors.fillAccent.disabled, + contentColor = FluentTheme.colors.text.onAccent.disabled, + borderColor = FluentTheme.colors.fillAccent.disabled, + labelTextColor = FluentTheme.colors.text.text.primary + ) + ) = CheckBoxColorScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) +} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/ColorPicker.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/ColorPicker.kt similarity index 82% rename from fluent/src/commonMain/kotlin/com/konyaco/fluent/component/ColorPicker.kt rename to fluent/src/commonMain/kotlin/io/github/composefluent/component/ColorPicker.kt index c9d39f37..b718b093 100644 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/ColorPicker.kt +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/ColorPicker.kt @@ -1,5 +1,6 @@ -package com.konyaco.fluent.component +package io.github.composefluent.component +import androidx.compose.animation.core.MutableTransitionState import androidx.compose.foundation.background import androidx.compose.foundation.border import androidx.compose.foundation.clickable @@ -8,12 +9,12 @@ import androidx.compose.foundation.interaction.MutableInteractionSource import androidx.compose.foundation.interaction.PressInteraction import androidx.compose.foundation.layout.* import androidx.compose.foundation.shape.CircleShape -import androidx.compose.foundation.shape.RoundedCornerShape import androidx.compose.foundation.text.KeyboardOptions import androidx.compose.runtime.Composable import androidx.compose.runtime.CompositionLocalProvider import androidx.compose.runtime.LaunchedEffect import androidx.compose.runtime.Stable +import androidx.compose.runtime.State import androidx.compose.runtime.derivedStateOf import androidx.compose.runtime.getValue import androidx.compose.runtime.mutableStateOf @@ -42,18 +43,21 @@ import androidx.compose.ui.input.pointer.pointerInput import androidx.compose.ui.layout.boundsInParent import androidx.compose.ui.layout.onGloballyPositioned import androidx.compose.ui.layout.onSizeChanged +import androidx.compose.ui.platform.LocalDensity import androidx.compose.ui.text.input.KeyboardType import androidx.compose.ui.text.input.TextFieldValue import androidx.compose.ui.unit.IntOffset +import androidx.compose.ui.unit.IntRect import androidx.compose.ui.unit.IntSize +import androidx.compose.ui.unit.LayoutDirection import androidx.compose.ui.unit.dp -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.LocalContentColor -import com.konyaco.fluent.background.BackgroundSizing -import com.konyaco.fluent.background.Layer -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.regular.ChevronDown -import com.konyaco.fluent.icons.regular.ChevronUp +import androidx.compose.ui.window.PopupPositionProvider +import androidx.compose.ui.window.PopupProperties +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.FluentTheme +import io.github.composefluent.LocalContentColor +import io.github.composefluent.background.BackgroundSizing +import io.github.composefluent.background.Layer import kotlinx.coroutines.flow.collectLatest import kotlin.math.PI import kotlin.math.atan2 @@ -62,6 +66,21 @@ import kotlin.math.roundToInt import kotlin.math.sin import kotlin.math.sqrt +/** + * A composable function that provides a color picker UI. + * + * @param color The initial color selected in the picker. Defaults to [Color.White]. + * @param onSelectedColorChanged A callback function that is invoked when the selected color changes. + * It provides the new selected [Color]. + * @param modifier Modifier for styling and layout of the ColorPicker. + * @param dot A composable lambda that defines the visual appearance of the color selector dot. + * Defaults to [ColorPickerDefaults.dot]. + * @param label A composable lambda that defines the label for the color. + * Defaults to [ColorPickerDefaults.label]. + * @param colorSpectrum The type of color spectrum to display. Defaults to [ColorSpectrum.Square]. + * @param alphaEnabled Whether to enable alpha/opacity selection. Defaults to false. + * @param moreButtonVisible Whether to show a "More" button to expand advanced color settings. Defaults to false. + */ @Composable fun ColorPicker( color: Color = Color.White, @@ -104,13 +123,14 @@ fun ColorPicker( .wrapContentWidth(Alignment.End) .width(44.dp) .height(256.dp) - .alphaBackground(RoundedCornerShape(4.dp), alphaEnabled), + .alphaBackground(FluentTheme.shapes.control, alphaEnabled), backgroundSizing = BackgroundSizing.OuterBorderEdge, color = color ) {} } val (hug, saturation, _) = spectrumColor.value.hsv() - Slider( + BasicSlider( + modifier = Modifier.padding(top = 21.dp).width(312.dp).height(32.dp), value = value, onValueChange = { onSelectedColorChanged( @@ -138,19 +158,16 @@ fun ColorPicker( ) ) }, - track = { _, _ -> }, - thumb = { fraction, maxWidth, dragging -> - SliderDefaults.Thumb( - fraction = fraction, - maxWidth = maxWidth, - dragging = dragging, - color = FluentTheme.colors.text.text.primary - ) - }, - modifier = Modifier.padding(top = 21.dp).width(312.dp).height(32.dp) + track = { }, + thumb = { state -> + SliderDefaults.Thumb(state, color = FluentTheme.colors.text.text.primary, label = { + Text("Value ${(state.value * 100).roundToInt()}") + }) + } ) if (alphaEnabled) { - Slider( + BasicSlider( + modifier = Modifier.width(312.dp), value = alpha, onValueChange = { onSelectedColorChanged(color.copy(alpha = it)) @@ -160,7 +177,7 @@ fun ColorPicker( Spacer( modifier = Modifier .fillMaxWidth() - .height(12.dp) + .requiredHeight(12.dp) .alphaBackground(CircleShape) .background( Brush.horizontalGradient( @@ -170,16 +187,12 @@ fun ColorPicker( ) ) }, - track = { _, _ -> }, - thumb = { fraction, maxWidth, dragging -> - SliderDefaults.Thumb( - fraction = fraction, - maxWidth = maxWidth, - dragging = dragging, - color = FluentTheme.colors.text.text.primary - ) - }, - modifier = Modifier.width(312.dp).height(32.dp) + track = {}, + thumb = { state -> + SliderDefaults.Thumb(state, color = FluentTheme.colors.text.text.primary, label = { + Text("${(state.value * 100).roundToInt()}% Opacity") + }) + } ) } Spacer(modifier = Modifier.height(20.dp)) @@ -198,10 +211,15 @@ fun ColorPicker( verticalAlignment = Alignment.CenterVertically ) { Text(text = text) - Icon( - imageVector = if (!expanded) Icons.Default.ChevronDown else Icons.Default.ChevronUp, + FontIcon( + type = if (!expanded) { + FontIconPrimitive.ChevronDown + } else { + FontIconPrimitive.ChevronUp + + }, contentDescription = text, - modifier = Modifier.size(12.dp) + size = FontIconSize.Small ) } }, @@ -483,8 +501,21 @@ private fun Modifier.alphaBackground(shape: Shape = RectangleShape, enabled: Boo } +/** + * Contains the default values used by [ColorPicker]. + */ object ColorPickerDefaults { + /** + * A composable function that renders a small circular dot, indicating the currently selected color. + * + * The dot's size is fixed at 16.dp, and it has a border of 2.dp thickness. + * The border color is determined by the current [LocalContentColor], which will typically be + * either black or white, contrasting with the color it's indicating. + * + * This is often used as a visual indicator or marker within a UI to show the currently selected + * color on a color spectrum. + */ @Composable fun dot() { Spacer( @@ -493,12 +524,42 @@ object ColorPickerDefaults { ) } + /** + * Creates a tooltip label for a given [color]. + * + * The tooltip displays the hexadecimal representation of the color. + * + * @param color The color for which to display the tooltip label. + */ + @OptIn(ExperimentalFluentApi::class, ExperimentalStdlibApi::class) @Composable fun label(color: Color) { - //TODO Tooltip label + val hexFormat = remember { + HexFormat { + upperCase = true + number { + removeLeadingZeros = false + } + } + } + TooltipBoxDefaults.Tooltip( + visibleState = remember { MutableTransitionState(true) }, + content = { + Text("#${color.value.toHexString(hexFormat).substring(2, 8)}") + } + ) } } +/** + * A composable function that displays a square color spectrum. + * + * @param color The currently selected color. + * @param onSelectedColorChanged A callback function that is invoked when the user selects a new color. + * @param modifier The modifier to apply to this layout. + * @param dot The composable to draw as the indicator of the selected color. Defaults to [ColorPickerDefaults.dot]. + * @param label The composable to draw as the label of the selected color. Defaults to [ColorPickerDefaults.label]. + */ @Composable fun SquareColorSpectrum( color: Color, @@ -516,6 +577,18 @@ fun SquareColorSpectrum( ) } +/** + * A composable function that displays a round color spectrum. + * + * @param color The currently selected color. + * @param onSelectedColorChanged A callback function that is invoked when the selected color changes. + * It receives the new color as a parameter. + * @param modifier Modifier for the round color spectrum. + * @param dot A composable function to display the indicator dot on the color spectrum. + * Defaults to [ColorPickerDefaults.dot]. + * @param label A composable function to display the label of the selected color. + * Defaults to [ColorPickerDefaults.label]. + */ @Composable fun RoundColorSpectrum( color: Color, @@ -545,6 +618,38 @@ sealed class ColorSpectrum { companion object { val Default: ColorSpectrum get() = Square + + @Composable + internal fun LabelPopup( + offsetState: State, + label: @Composable () -> Unit + ) { + if (offsetState.value != null) { + val padding = with(LocalDensity.current) { 24.dp.toPx() } + Popup( + properties = PopupProperties(focusable = false), + popupPositionProvider = remember(offsetState) { + object : PopupPositionProvider { + override fun calculatePosition( + anchorBounds: IntRect, + windowSize: IntSize, + layoutDirection: LayoutDirection, + popupContentSize: IntSize + ): IntOffset { + var (offsetX, offsetY) = anchorBounds.topCenter + offsetX += - popupContentSize.width / 2 + offsetY += - popupContentSize.height + return IntOffset( + x = offsetX.coerceIn(0, windowSize.width - popupContentSize.width), + y = offsetY.minus(padding).roundToInt().coerceIn(0, windowSize.height - popupContentSize.height) + ) + } + } + }, + content = label + ) + } + } } data object Round : ColorSpectrum() { @@ -655,6 +760,12 @@ sealed class ColorSpectrum { } ) { dot() + LabelPopup( + offsetState = offset, + label = { + label(color) + } + ) } } @@ -699,6 +810,7 @@ sealed class ColorSpectrum { data object Square : ColorSpectrum() { + @OptIn(ExperimentalFluentApi::class) @Composable override fun content( modifier: Modifier, @@ -805,6 +917,7 @@ sealed class ColorSpectrum { } } + Box { Box( modifier = Modifier @@ -815,6 +928,7 @@ sealed class ColorSpectrum { } ) { dot() + LabelPopup(offsetState = offset, label = { label(color) }) } } } diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/ComboBox.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/ComboBox.kt similarity index 76% rename from fluent/src/commonMain/kotlin/com/konyaco/fluent/component/ComboBox.kt rename to fluent/src/commonMain/kotlin/io/github/composefluent/component/ComboBox.kt index 00277353..ab656061 100644 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/ComboBox.kt +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/ComboBox.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.component +package io.github.composefluent.component import androidx.compose.animation.animateColorAsState import androidx.compose.animation.core.animateDpAsState @@ -19,7 +19,6 @@ import androidx.compose.foundation.layout.padding import androidx.compose.foundation.layout.size import androidx.compose.foundation.layout.width import androidx.compose.foundation.shape.CircleShape -import androidx.compose.foundation.shape.RoundedCornerShape import androidx.compose.runtime.Composable import androidx.compose.runtime.getValue import androidx.compose.runtime.mutableStateOf @@ -34,13 +33,13 @@ import androidx.compose.ui.unit.DpOffset import androidx.compose.ui.unit.IntSize import androidx.compose.ui.unit.dp import androidx.compose.ui.util.fastForEachIndexed -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.animation.FluentDuration -import com.konyaco.fluent.animation.FluentEasing -import com.konyaco.fluent.background.BackgroundSizing -import com.konyaco.fluent.background.Layer -import com.konyaco.fluent.scheme.PentaVisualScheme -import com.konyaco.fluent.scheme.collectVisualState +import io.github.composefluent.FluentTheme +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.background.BackgroundSizing +import io.github.composefluent.background.Layer +import io.github.composefluent.scheme.PentaVisualScheme +import io.github.composefluent.scheme.collectVisualState /** * Use a combo box (also known as a drop-down list) to present a list of items that a user can select from. A combo box starts in a compact state and expands to show a list of selectable items. @@ -61,7 +60,17 @@ fun ComboBox( */ /** - * Use a combo box (also known as a drop-down list) to present a list of items that a user can select from. A combo box starts in a compact state and expands to show a list of selectable items. + * Use a combo box (also known as a drop-down list) to present a list of items that a user can select from. + * A combo box starts in a compact state, displaying either a selected item or a placeholder, and expands to show a list of selectable items when interacted with. + * + * @param modifier Modifier to apply to the component. + * @param header Optional header text to display above the combo box. + * @param placeholder Optional placeholder text to display when no item is selected. + * @param disabled Whether the combo box is disabled. + * @param items The list of items to display in the combo box. + * @param selected The index of the currently selected item, or null if no item is selected. + * @param onSelectionChange Callback function triggered when a new item is selected. Provides the index and the item's string value. + * * TODO: Editable ComboBox */ @Composable @@ -117,6 +126,12 @@ fun ComboBox( } } +/** + * Represents the colors used for an item in a ComboBox. + * + * @property fillColor The background color of the item. + * @property contentColor The color of the text or other content within the item. + */ data class ItemColor( val fillColor: Color, val contentColor: Color @@ -166,6 +181,13 @@ private val selectedItemColors: PentaVisualScheme ) +/** + * Composable function that represents a single item within a ComboBox dropdown. + * + * @param selected Indicates whether the item is currently selected. + * @param label The text label to display for the item. + * @param onClick Callback function invoked when the item is clicked. + */ @Composable fun ComboBoxItem( selected: Boolean, @@ -180,7 +202,7 @@ fun ComboBoxItem( Layer( modifier = Modifier.fillMaxWidth().height(36.dp) .clickable(interactionSource = interactionSource, indication = null, onClick = onClick), - shape = RoundedCornerShape(size = 4.dp), + shape = FluentTheme.shapes.control, color = animateColorAsState( color.fillColor, tween(FluentDuration.QuickDuration, easing = FluentEasing.FastInvokeEasing) @@ -203,7 +225,23 @@ fun ComboBoxItem( } } +/** + * Scope for the content of a ComboBox. + * + * This scope provides functions to define the items within a [ComboBox]. + */ interface ComboBoxScope { + /** + * Adds an item to the ComboBox. + * + * @param key A unique key to identify this item. This is not currently used, but may be used in the future for item management. + * @param content The composable content to display for this item. It receives the item as a parameter. + */ fun Item(key: String, content: @Composable (item: T) -> Unit) + /** + * A [ComboBoxScope] item representing a string. + * + * @param label The string to display for this item. + */ fun StringItem(label: String) } \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/CommandBar.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/CommandBar.kt new file mode 100644 index 00000000..0ad7f3b2 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/CommandBar.kt @@ -0,0 +1,364 @@ +package io.github.composefluent.component + +import androidx.compose.animation.animateColorAsState +import androidx.compose.animation.core.tween +import androidx.compose.foundation.BorderStroke +import androidx.compose.foundation.background +import androidx.compose.foundation.clickable +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.PaddingValues +import androidx.compose.foundation.layout.Spacer +import androidx.compose.foundation.layout.defaultMinSize +import androidx.compose.foundation.layout.fillMaxHeight +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.sizeIn +import androidx.compose.foundation.layout.width +import androidx.compose.runtime.Composable +import androidx.compose.runtime.SideEffect +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.unit.Dp +import androidx.compose.ui.unit.dp +import io.github.composefluent.FluentTheme +import io.github.composefluent.LocalContentColor +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.background.BackgroundSizing +import io.github.composefluent.background.Layer +import io.github.composefluent.layout.alignLast +import io.github.composefluent.layout.overflow.OverflowActionScope +import io.github.composefluent.layout.overflow.OverflowRow +import io.github.composefluent.layout.overflow.OverflowRowScope +import io.github.composefluent.layout.overflow.rememberOverflowRowState + +/** + * A standard command bar that can be expanded to show more options. + * + * @param expanded Whether the command bar is expanded. + * @param onExpandedChanged Callback to be invoked when the expanded state changes. + * @param modifier Modifier for the command bar. + * @param color The background color of the command bar. When not expanded, this color is transparent. + * @param border The border of the command bar. When not expanded, this is null. + * @param placement The placement of the expanded flyout relative to the command bar. + * @param secondary The secondary content of the expanded flyout. This is typically used for overflow actions. + * It receives a [MenuFlyoutScope] and a boolean indicating whether there are overflow items. + * @param spacing The spacing between items in the command bar. + * @param content The content of the command bar, using the [OverflowRowScope]. + */ +@Composable +fun CommandBar( + expanded: Boolean, + onExpandedChanged: (Boolean) -> Unit, + modifier: Modifier = Modifier, + color: Color = if (expanded) { + FluentTheme.colors.background.acrylic.default + } else { + FluentTheme.colors.background.acrylic.default.copy(0f) + }, + border: BorderStroke? = if (expanded) { + BorderStroke(1.dp, FluentTheme.colors.stroke.surface.flyout) + } else { + null + }, + placement: FlyoutPlacement = FlyoutPlacement.BottomAlignedEnd, + secondary: (@Composable MenuFlyoutScope.(hasOverFlowItem: Boolean) -> Unit)? = null, + spacing: Dp = 0.dp, + content: OverflowRowScope.() -> Unit +) { + BasicCommandBar( + expanded = expanded, + onExpandedChanged = onExpandedChanged, + modifier = modifier, + color = color, + border = border, + placement = placement, + secondary = secondary, + isLarge = false, + content = content, + spacing = spacing + ) +} + +/** + * A large command bar that can be expanded to show more options, typically used when more vertical space is available. + * + * @param expanded Whether the command bar is expanded. + * @param onExpandedChanged Callback to be invoked when the expanded state changes. + * @param modifier Modifier for the command bar. + * @param color The background color of the command bar. When not expanded, this color is transparent. + * @param border The border of the command bar. When not expanded, this is null. + * @param placement The placement of the expanded flyout relative to the command bar. + * @param secondary The secondary content of the expanded flyout. This is typically used for overflow actions. + * It receives a [MenuFlyoutScope] and a boolean indicating whether there are overflow items. + * @param spacing The spacing between items in the command bar. + * @param content The content of the command bar, using the [OverflowRowScope]. + */ +@Composable +fun LargeCommandBar( + expanded: Boolean, + onExpandedChanged: (Boolean) -> Unit, + modifier: Modifier = Modifier, + color: Color = if (expanded) { + FluentTheme.colors.background.acrylic.default + } else { + FluentTheme.colors.background.acrylic.default.copy(0f) + }, + border: BorderStroke? = if (expanded) { + BorderStroke(1.dp, FluentTheme.colors.stroke.surface.flyout) + } else { + null + }, + placement: FlyoutPlacement = FlyoutPlacement.BottomAlignedEnd, + secondary: (@Composable MenuFlyoutScope.(hasOverFlowItem: Boolean) -> Unit)? = null, + spacing: Dp = 0.dp, + content: OverflowRowScope.() -> Unit +) { + BasicCommandBar( + expanded = expanded, + onExpandedChanged = onExpandedChanged, + modifier = modifier, + color = color, + border = border, + placement = placement, + secondary = secondary, + isLarge = true, + content = content, + spacing = spacing + ) +} + +@Composable +private fun BasicCommandBar( + expanded: Boolean, + onExpandedChanged: (Boolean) -> Unit, + modifier: Modifier, + color: Color, + border: BorderStroke?, + placement: FlyoutPlacement, + isLarge: Boolean, + secondary: (@Composable MenuFlyoutScope.(hasOverFlowItem: Boolean) -> Unit)?, + spacing: Dp, + content: OverflowRowScope.() -> Unit +) { + val currentColor by animateColorAsState( + targetValue = color, + animationSpec = tween(FluentDuration.QuickDuration, easing = FluentEasing.FastInvokeEasing) + ) + val state = rememberOverflowRowState() + val scope = remember(content) { mutableStateOf(null) } + Layer( + backgroundSizing = BackgroundSizing.InnerBorderEdge, + modifier = modifier.height( + if (isLarge) { + CommandBarDefaults.CommandBarLargeHeight + } else { + CommandBarDefaults.CommandBarStandardHeight + } + ), + color = currentColor, + contentColor = LocalContentColor.current, + border = border + ) { + val arrangement = Arrangement.spacedBy(spacing, Alignment.Start) + OverflowRow( + state = state, + horizontalArrangement = if (!state.overflowRange.isEmpty() || secondary != null) { + Arrangement.alignLast(arrangement, Alignment.End) + } else { + arrangement + }, + overflowAction = { + CommandBarMoreButton(isLarge = isLarge) { + onExpandedChanged(true) + } + SideEffect { + scope.value = this@OverflowRow + } + }, + content = content, + alwaysShowOverflowAction = secondary != null, + contentPadding = PaddingValues(horizontal = 8.dp) + ) + MenuFlyout( + visible = expanded, + onDismissRequest = { + onExpandedChanged(false) + }, + positionProvider = rememberFlyoutPositionProvider( + initialPlacement = placement, + paddingToAnchor = PaddingValues() + ), + content = { + scope.value?.apply { + repeat(overflowItemCount) { + overflowItem(it) + } + } + secondary?.invoke(this, state.overflowRange.isEmpty().not()) + } + ) + } + +} + +/** + * A button within a command bar. + * + * @param onClick The callback to be invoked when the button is clicked. + * @param modifier Modifier for the button. + * @param buttonColors The colors to use for the button. + * @param outsideBorder Whether the button should have a border that extends beyond the button's bounds. + * @param enabled Whether the button is enabled. + * @param interactionSource The [MutableInteractionSource] representing the stream of [Interaction]s + * for this button. You can create and pass in your own remembered [MutableInteractionSource] if + * you want to observe [Interaction]s and customize the appearance / behavior of this button in + * different [Interaction]s. + * @param content The content of the button. Typically this is text and/or an icon. + */ +@Composable +fun CommandBarButton( + onClick: () -> Unit, + modifier: Modifier = Modifier, + buttonColors: ButtonColorScheme = ButtonDefaults.subtleButtonColors(), + outsideBorder: Boolean = false, + enabled: Boolean = true, + interactionSource: MutableInteractionSource? = null, + content: @Composable () -> Unit +) { + val targetInteractionSource = interactionSource ?: remember { MutableInteractionSource() } + ButtonLayer( + buttonColors = buttonColors, + disabled = !enabled, + modifier = modifier.defaultMinSize( + minHeight = CommandBarDefaults.CommandBarLargeButtonHeight, + minWidth = CommandBarDefaults.CommandBarButtonWidth + ), + accentButton = !outsideBorder, + shape = FluentTheme.shapes.control, + interaction = targetInteractionSource, + displayBorder = true, + content = { + Column( + verticalArrangement = Arrangement.spacedBy(4.dp, Alignment.CenterVertically), + horizontalAlignment = Alignment.CenterHorizontally, + modifier = Modifier.clickable( + interactionSource = targetInteractionSource, + indication = null, + onClick = onClick, + enabled = enabled + ) + ) { + content() + } + } + ) +} + +@Composable +internal fun CommandBarMoreButton(isLarge: Boolean, onClick: () -> Unit) { + Box(modifier = Modifier.fillMaxHeight(), contentAlignment = Alignment.CenterStart) { + SubtleButton( + onClick = onClick, + iconOnly = true, + content = { + FontIcon(type = FontIconPrimitive.More, contentDescription = null) + }, + modifier = if (isLarge) { + Modifier.sizeIn( + minHeight = CommandBarDefaults.CommandBarLargeButtonHeight, + minWidth = CommandBarDefaults.CommandBarIconButtonWidth + ) + } else { + Modifier.commandBarIconButtonSize() + } + ) + } +} + +/** + * A vertical separator for use in a [CommandBar]. + * + * @param modifier Modifier for the separator. + */ +@Composable +fun CommandBarSeparator(modifier: Modifier = Modifier) { + Spacer( + modifier = modifier + .fillMaxHeight() + .padding(start = 1.dp, end = 2.dp, top = 8.dp, bottom = 8.dp) + .width(1.dp) + .background(FluentTheme.colors.stroke.divider.default) + ) +} + +/** + * Applies the default size constraints for an icon button within a command bar. + * + * This modifier sets the minimum height and width for the icon button + * to match the standard dimensions defined by `CommandBarDefaults`. + * + * @return A [Modifier] with the size constraints applied. + */ +fun Modifier.commandBarIconButtonSize() = then( + Modifier.sizeIn( + minHeight = CommandBarDefaults.CommandBarButtonHeight, + minWidth = CommandBarDefaults.CommandBarIconButtonWidth + ) +) + +/** + * Applies the default size constraints for a standard command bar button. + * + * This modifier sets the minimum height and width of the button according to the + * [CommandBarDefaults.CommandBarButtonHeight] and [CommandBarDefaults.CommandBarButtonWidth] + * values. + * + * @see CommandBarDefaults.CommandBarButtonHeight + * @see CommandBarDefaults.CommandBarButtonWidth + */ +fun Modifier.commandBarButtonSize() = then( + Modifier.sizeIn( + minHeight = CommandBarDefaults.CommandBarButtonHeight, + minWidth = CommandBarDefaults.CommandBarButtonWidth + ) +) + +/** + * Default values for the [CommandBar] and [LargeCommandBar]. + */ +object CommandBarDefaults { + /** + * The default width for an icon-only button in the command bar. + */ + val CommandBarIconButtonWidth = 36.dp + /** + * The default width for a standard command bar button. + */ + val CommandBarButtonWidth = 64.dp + /** + * The height of a large button in the command bar. + */ + val CommandBarLargeButtonHeight = 52.dp + /** + * The default height for a standard command bar button. + */ + val CommandBarButtonHeight = 36.dp + + /** + * The standard height of the command bar. + */ + val CommandBarStandardHeight = 48.dp + + /** + * Container height for large command bars, intended for use with icon and text label combinations. + */ + val CommandBarLargeHeight = 64.dp +} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/CommandBarFlyout.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/CommandBarFlyout.kt new file mode 100644 index 00000000..3a986fd1 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/CommandBarFlyout.kt @@ -0,0 +1,193 @@ +package io.github.composefluent.component + +import androidx.compose.animation.AnimatedVisibility +import androidx.compose.animation.animateContentSize +import androidx.compose.animation.core.tween +import androidx.compose.animation.expandIn +import androidx.compose.animation.shrinkOut +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.PaddingValues +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.padding +import androidx.compose.runtime.Composable +import androidx.compose.runtime.SideEffect +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.unit.Dp +import androidx.compose.ui.unit.dp +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.layout.FixedWidthLayout +import io.github.composefluent.layout.alignLast +import io.github.composefluent.layout.overflow.OverflowActionScope +import io.github.composefluent.layout.overflow.OverflowRow +import io.github.composefluent.layout.overflow.OverflowRowScope +import io.github.composefluent.layout.overflow.rememberOverflowRowState + +/** + * A flyout that displays a command bar. + * + * @param visible Whether the flyout is visible. + * @param onDismissRequest Called when the user requests to dismiss the flyout. + * @param expanded Whether the flyout is expanded to show the secondary items. + * @param onExpandedChanged Called when the expanded state changes. + * @param modifier The modifier to apply to the flyout. + * @param secondary The content to display in the secondary area when the flyout is expanded. + * the parameter [hasOverFlowItem] is true when [content] has items that overflow. + * @param spacing The spacing between items in the command bar. + * @param positionProvider The position provider for the flyout. + * @param content The primary content to display in the command bar. + */ +@Composable +fun CommandBarFlyout( + visible: Boolean, + onDismissRequest: () -> Unit, + expanded: Boolean, + onExpandedChanged: (Boolean) -> Unit, + modifier: Modifier = Modifier, + secondary: (@Composable MenuFlyoutScope.(hasOverFlowItem: Boolean) -> Unit)? = null, + spacing: Dp = 4.dp, + positionProvider: FlyoutPositionProvider = rememberFlyoutPositionProvider(initialPlacement = FlyoutPlacement.BottomAlignedEnd), + content: OverflowRowScope.() -> Unit +) { + BasicCommandBarFlyout( + visible = visible, + onDismissRequest = onDismissRequest, + expanded = expanded, + onExpandedChanged = onExpandedChanged, + modifier = modifier, + secondary = secondary, + spacing = spacing, + positionProvider = positionProvider, + content = content, + isLarge = false + ) +} + +/** + * A large command bar flyout. + * + * @param visible Whether the flyout is visible. + * @param onDismissRequest Called when the user requests to dismiss the flyout. + * @param expanded Whether the secondary content of the flyout is expanded. + * @param onExpandedChanged Called when the expanded state changes. + * @param modifier The modifier to be applied to the flyout. + * @param secondary The secondary content to be displayed in the flyout. + * The lambda receives a boolean indicating if there's any overflow items. + * @param spacing The spacing between items in the flyout. + * @param positionProvider The position provider for the flyout. + * @param content The primary content of the flyout. + */ +@Composable +fun LargeCommandBarFlyout( + visible: Boolean, + onDismissRequest: () -> Unit, + expanded: Boolean, + onExpandedChanged: (Boolean) -> Unit, + modifier: Modifier = Modifier, + secondary: (@Composable MenuFlyoutScope.(hasOverFlowItem: Boolean) -> Unit)? = null, + spacing: Dp = 4.dp, + positionProvider: FlyoutPositionProvider = rememberFlyoutPositionProvider( + initialPlacement = FlyoutPlacement.BottomAlignedEnd + ), + content: OverflowRowScope.() -> Unit +) { + BasicCommandBarFlyout( + visible = visible, + onDismissRequest = onDismissRequest, + expanded = expanded, + onExpandedChanged = onExpandedChanged, + modifier = modifier, + secondary = secondary, + spacing = spacing, + positionProvider = positionProvider, + content = content, + isLarge = true + ) +} + +@Composable +private fun BasicCommandBarFlyout( + visible: Boolean, + onDismissRequest: () -> Unit, + expanded: Boolean, + onExpandedChanged: (Boolean) -> Unit, + modifier: Modifier, + secondary: (@Composable MenuFlyoutScope.(hasOverFlowItem: Boolean) -> Unit)? = null, + spacing: Dp , + positionProvider: FlyoutPositionProvider, + isLarge: Boolean, + content: OverflowRowScope.() -> Unit +) { + val state = rememberOverflowRowState() + val scope = remember(content) { mutableStateOf(null) } + BasicFlyout( + modifier = modifier, + visible = visible, + onDismissRequest = onDismissRequest, + positionProvider = positionProvider, + contentPadding = PaddingValues() + ) { + val menuFlyoutScope = remember { MenuFlyoutScopeImpl() } + val arrangement = Arrangement.spacedBy(spacing, Alignment.Start) + FixedWidthLayout( + header = { + OverflowRow( + state = state, + horizontalArrangement = if (!state.overflowRange.isEmpty() || secondary != null) { + Arrangement.alignLast(arrangement, Alignment.End) + } else { + arrangement + }, + overflowAction = { + CommandBarMoreButton(isLarge) { + onExpandedChanged(!expanded) + } + SideEffect { + scope.value = this@OverflowRow + } + }, + content = content, + alwaysShowOverflowAction = secondary != null, + contentPadding = PaddingValues(horizontal = 8.dp), + modifier = Modifier + .height( + if (isLarge) { + CommandBarDefaults.CommandBarLargeHeight + } else { + CommandBarDefaults.CommandBarStandardHeight + } + ) + .animateContentSize(expandSpec()) + ) + }, + content = { + AnimatedVisibility( + visible = expanded, + enter = expandIn(expandSpec()), + exit = shrinkOut(expandSpec()), + ) { + Column { + MenuFlyoutSeparator(modifier = Modifier.padding(horizontal = 1.dp)) + Column( + modifier = Modifier.padding(top = 0.dp, bottom = 3.dp) + ) { + scope.value?.apply { + repeat(overflowItemCount) { + overflowItem(it) + } + } + secondary?.invoke(menuFlyoutScope, state.overflowRange.isEmpty().not()) + } + } + } + } + ) + } +} + +private fun expandSpec() = + tween(FluentDuration.ShortDuration, easing = FluentEasing.FastInvokeEasing) \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/Dialog.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/Dialog.kt new file mode 100644 index 00000000..05d6c184 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/Dialog.kt @@ -0,0 +1,326 @@ +package io.github.composefluent.component + +import androidx.compose.animation.AnimatedVisibility +import androidx.compose.animation.animateColorAsState +import androidx.compose.animation.core.MutableTransitionState +import androidx.compose.animation.core.tween +import androidx.compose.animation.fadeIn +import androidx.compose.animation.fadeOut +import androidx.compose.animation.scaleIn +import androidx.compose.animation.scaleOut +import androidx.compose.foundation.BorderStroke +import androidx.compose.foundation.background +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.Spacer +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.widthIn +import androidx.compose.foundation.layout.wrapContentSize +import androidx.compose.runtime.Composable +import androidx.compose.runtime.CompositionLocalProvider +import androidx.compose.runtime.LaunchedEffect +import androidx.compose.runtime.Stable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import androidx.compose.runtime.staticCompositionLocalOf +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.draw.clip +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.input.pointer.pointerInput +import androidx.compose.ui.unit.Dp +import androidx.compose.ui.unit.dp +import androidx.compose.ui.window.Popup +import androidx.compose.ui.window.PopupPositionProvider +import androidx.compose.ui.window.PopupProperties +import io.github.composefluent.FluentTheme +import io.github.composefluent.LocalContentColor +import io.github.composefluent.LocalTextStyle +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.background.BackgroundSizing +import io.github.composefluent.background.Layer +import io.github.composefluent.background.Mica +import kotlinx.coroutines.CancellableContinuation +import kotlinx.coroutines.suspendCancellableCoroutine +import kotlinx.coroutines.sync.Mutex +import kotlinx.coroutines.sync.withLock +import kotlin.coroutines.resume + +internal expect val DialogPopupPositionProvider: PopupPositionProvider + +/** + * Represents the size constraints for a dialog. + * + * @property min The minimum width of the dialog. + * @property max The maximum width of the dialog. + * + * @constructor Creates a [DialogSize] with the specified minimum and maximum widths. + * + * @sample io.github.composefluent.component.DialogSize.Max + * @sample io.github.composefluent.component.DialogSize.Standard + * @sample io.github.composefluent.component.DialogSize.Min + */ +@Stable +class DialogSize( + val min: Dp, + val max: Dp +) { + companion object { + val Max = DialogSize(540.dp, 540.dp) + val Standard = DialogSize(448.dp, 448.dp) + val Min = DialogSize(320.dp, 320.dp) + } +} + +/** + * A dialog composable that displays content in a popup. + * + * @param visible Controls the visibility of the dialog. When `true`, the dialog is shown; otherwise, it's hidden. + * @param size The size of the dialog, defining its minimum and maximum width. Defaults to [DialogSize.Standard]. + * @param properties Additional properties for the dialog's popup, such as focusability. + * @param content The composable content to display within the dialog. + */ +@Composable +fun FluentDialog( + visible: Boolean, + size: DialogSize = DialogSize.Standard, + properties: PopupProperties = PopupProperties(focusable = true), + content: @Composable () -> Unit +) { + val visibleState = remember { MutableTransitionState(false) } + + LaunchedEffect(visible) { + visibleState.targetState = visible + } + + if (visibleState.currentState || visibleState.targetState) Popup( + properties = properties, + popupPositionProvider = DialogPopupPositionProvider + ) { + val scrim by animateColorAsState( + if (visible) Color.Black.copy(0.3f) else Color.Transparent, animationSpec = tween( + easing = FluentEasing.FastInvokeEasing, + durationMillis = FluentDuration.ShortDuration + ) + ) + val tween = tween( + easing = FluentEasing.FastInvokeEasing, + durationMillis = FluentDuration.ShortDuration + ) + Box( + Modifier.fillMaxSize() + .background(scrim) + .pointerInput(Unit) {}, + Alignment.Center + ) { + AnimatedVisibility( + visibleState = visibleState, + enter = fadeIn(tween) + scaleIn(tween, initialScale = 1.05f), + exit = fadeOut(tween) + scaleOut(tween, targetScale = 1.05f) + ) { + Mica(Modifier.wrapContentSize().clip(FluentTheme.shapes.overlay)) { + Layer( + Modifier.wrapContentSize().widthIn(size.min, size.max), + shape = FluentTheme.shapes.overlay, + border = BorderStroke(1.dp, FluentTheme.colors.stroke.surface.default), + backgroundSizing = BackgroundSizing.InnerBorderEdge, + color = FluentTheme.colors.background.solid.base, + contentColor = FluentTheme.colors.text.text.primary, + content = content + ) + } + } + } + } +} + +/** + * Represents the possible buttons in a [ContentDialog]. + * + * - **Primary:** The primary action button, usually represents the main or positive action. + * - **Secondary:** An optional secondary action button, often represents a less important or alternative action. + * - **Close:** An optional button to simply dismiss or close the dialog. + */ +enum class ContentDialogButton { + Primary, Secondary, Close +} + +/** + * A dialog that displays content and provides buttons for user interaction. + * + * @param title The title of the dialog. + * @param visible Whether the dialog is currently visible. + * @param content The composable content to display within the dialog. + * @param primaryButtonText The text for the primary button. + * @param secondaryButtonText The text for the secondary button, or null if no secondary button is needed. + * @param closeButtonText The text for the close button, or null if no close button is needed. + * @param onButtonClick A callback invoked when any of the buttons is clicked, providing the [ContentDialogButton] that was pressed. + * @param size The [DialogSize] to determine the size constraints of the dialog. + */ +@Composable +fun ContentDialog( + title: String, + visible: Boolean, + content: @Composable () -> Unit, + primaryButtonText: String, + secondaryButtonText: String? = null, + closeButtonText: String? = null, + onButtonClick: (ContentDialogButton) -> Unit, + size: DialogSize = DialogSize.Standard +) { + FluentDialog(visible, size) { + Column { + Column(Modifier.fillMaxWidth().background(FluentTheme.colors.background.layer.alt).padding(24.dp)) { + Text( + style = FluentTheme.typography.subtitle, + text = title, + ) + Spacer(Modifier.height(12.dp)) + CompositionLocalProvider( + LocalTextStyle provides FluentTheme.typography.body, + LocalContentColor provides FluentTheme.colors.text.text.primary + ) { + content() + } + } + // Divider + Box(Modifier.height(1.dp).background(FluentTheme.colors.stroke.surface.default)) + // Button Grid + Box(Modifier.height(80.dp).padding(horizontal = 25.dp), Alignment.CenterEnd) { + Row(horizontalArrangement = Arrangement.spacedBy(8.dp)) { + AccentButton( + modifier = Modifier.weight(1f), + onClick = { onButtonClick(ContentDialogButton.Primary) } + ) { + Text(primaryButtonText) + } + if (secondaryButtonText != null) Button( + modifier = Modifier.weight(1f), + onClick = { onButtonClick(ContentDialogButton.Secondary) } + ) { + Text(secondaryButtonText) + } + if (closeButtonText != null) Button( + modifier = Modifier.weight(1f), + onClick = { onButtonClick(ContentDialogButton.Close) } + ) { + Text(closeButtonText) + } + } + } + } + } +} + +/** + * A composable function that hosts a [ContentDialog] based on the state provided by [ContentDialogHostState]. + * + * It observes the [ContentDialogHostState] and displays a [ContentDialog] when the `currentData` is not null. + * The dialog's visibility, content, buttons, and actions are managed through the `data` provided by the state. + * + * @param state The [ContentDialogHostState] that holds the data for the current dialog to be displayed. + * + * @see ContentDialogHostState + * @see ContentDialog + */ +@Composable +fun ContentDialogHost(state: ContentDialogHostState) { + val data = state.currentData + + if (data != null) { + var visible by remember(data) { mutableStateOf(true) } + + ContentDialog( + title = data.title, + visible = visible, + size = data.size, + content = { Text(data.contentText) }, + primaryButtonText = data.primaryButtonText, + secondaryButtonText = data.secondaryButtonText, + closeButtonText = data.closeButtonText, + onButtonClick = { + visible = false + if (data.continuation.isActive) { + data.continuation.resume(it) + } + } + ) + } +} + +val LocalContentDialog = staticCompositionLocalOf { error("Not provided") } + +/** + * A state holder for managing the display of content dialogs. + * + * This class provides a mechanism to show and manage a content dialog with a title, content text, + * and optional primary, secondary, and close buttons. It ensures that only one dialog is displayed + * at a time using a mutex, and provides a suspending function to await the user's interaction with the dialog. + * + * The [show] function returns a [ContentDialogButton] representing which button was pressed by the user. + */ +class ContentDialogHostState { + private val mutex = Mutex() + + internal var currentData by mutableStateOf(null) + private set + + /** + * Shows a content dialog with the specified parameters. + * + * This function suspends until the dialog is dismissed and returns the button that was clicked. + * + * @param title The title of the dialog. + * @param contentText The main content text of the dialog. + * @param primaryButtonText The text of the primary action button. + * @param secondaryButtonText The text of the secondary action button, or null if no secondary button is needed. + * @param closeButtonText The text of the close button, or null if no close button is needed. + * @param size The size of the dialog. Defaults to [DialogSize.Standard]. + * @return The [ContentDialogButton] that was clicked to dismiss the dialog. + */ + suspend fun show( + title: String, + contentText: String, + primaryButtonText: String, + secondaryButtonText: String? = null, + closeButtonText: String? = null, + size: DialogSize = DialogSize.Standard, + ): ContentDialogButton { + mutex.withLock { + try { + return suspendCancellableCoroutine { cont -> + currentData = DialogData( + title, + contentText, + primaryButtonText, + secondaryButtonText, + closeButtonText, + size, + cont + ) + } + } finally { + // FIXME: If set null instantly, exit animation will be terminated +// currentData = null + } + } + } + + internal class DialogData( + val title: String, + val contentText: String, + val primaryButtonText: String, + val secondaryButtonText: String? = null, + val closeButtonText: String? = null, + val size: DialogSize = DialogSize.Standard, + val continuation: CancellableContinuation + ) +} diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/Dropdown.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/Dropdown.kt new file mode 100644 index 00000000..238aab35 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/Dropdown.kt @@ -0,0 +1,189 @@ +package io.github.composefluent.component + +import androidx.compose.animation.AnimatedVisibility +import androidx.compose.animation.core.MutableTransitionState +import androidx.compose.animation.core.tween +import androidx.compose.animation.expandVertically +import androidx.compose.animation.fadeOut +import androidx.compose.foundation.BorderStroke +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.ColumnScope +import androidx.compose.foundation.layout.IntrinsicSize +import androidx.compose.foundation.layout.PaddingValues +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.RowScope +import androidx.compose.foundation.layout.defaultMinSize +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.width +import androidx.compose.foundation.rememberScrollState +import androidx.compose.foundation.verticalScroll +import androidx.compose.runtime.Composable +import androidx.compose.runtime.remember +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.input.key.KeyEvent +import androidx.compose.ui.platform.LocalDensity +import androidx.compose.ui.unit.Density +import androidx.compose.ui.unit.DpOffset +import androidx.compose.ui.unit.IntOffset +import androidx.compose.ui.unit.IntRect +import androidx.compose.ui.unit.IntSize +import androidx.compose.ui.unit.LayoutDirection +import androidx.compose.ui.unit.dp +import androidx.compose.ui.window.PopupPositionProvider +import androidx.compose.ui.window.PopupProperties +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.FluentTheme +import io.github.composefluent.LocalAcrylicPopupEnabled +import io.github.composefluent.LocalWindowAcrylicContainer +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.background.MaterialDefaults +import io.github.composefluent.background.BackgroundSizing +import io.github.composefluent.background.ElevationDefaults +import io.github.composefluent.background.Layer + +/** + * A dropdown menu. + * + * A dropdown menu displays a list of actions. It is typically used in conjunction with a button + * or other control that triggers its display. + * + * @param expanded Whether the menu is currently expanded and visible. + * @param onDismissRequest Called when the user requests to dismiss the menu, such as by clicking + * outside the menu's bounds. + * @param modifier The modifier to be applied to the menu. + * @param onPreviewKeyEvent Called when a key event is received by the menu, before it is dispatched + * to the focusable content. Return true to consume the event. + * @param onKeyEvent Called when a key event is received by the menu, after it is dispatched to + * the focusable content. Return true to consume the event. + * @param offset The offset of the menu relative to the element that triggered its display. + * @param content The content of the menu, typically a [Column] of [DropdownMenuItem]s. + */ +@Composable +fun DropdownMenu( + expanded: Boolean, + onDismissRequest: () -> Unit, + modifier: Modifier = Modifier, + onPreviewKeyEvent: ((KeyEvent) -> Boolean) = { false }, + onKeyEvent: ((KeyEvent) -> Boolean) = { false }, + offset: DpOffset = DpOffset(0.dp, 0.dp), // TODO: Offset + content: @Composable ColumnScope.() -> Unit +) { + val expandedStates = remember { MutableTransitionState(false) } + expandedStates.targetState = expanded + + if (expandedStates.currentState || expandedStates.targetState) { + val density = LocalDensity.current + + val popupPositionProvider = DropdownMenuPositionProvider(density, offset) + + Popup( + properties = PopupProperties(focusable = true), + onDismissRequest = onDismissRequest, + onKeyEvent = onKeyEvent, + onPreviewKeyEvent = onPreviewKeyEvent, + popupPositionProvider = popupPositionProvider, + ) { + DropdownMenuContent( + expandedStates = expandedStates, + modifier = modifier, + content = content + ) + } + } +} + +internal class DropdownMenuPositionProvider(val density: Density, val offset: DpOffset) : PopupPositionProvider { + override fun calculatePosition( + anchorBounds: IntRect, + windowSize: IntSize, + layoutDirection: LayoutDirection, + popupContentSize: IntSize + ): IntOffset { + val xCenter = (anchorBounds.right + anchorBounds.left) / 2 + val x = xCenter - (popupContentSize.width / 2) + val gap = with(density) { 4.dp.roundToPx() } + + val topSpace = anchorBounds.top + val bottomSpace = windowSize.height - anchorBounds.bottom + val needSpace = popupContentSize.height + gap + + val popupToTop = bottomSpace < needSpace && topSpace > needSpace + + val y = if (popupToTop) { + anchorBounds.top - needSpace + } else { + anchorBounds.bottom + gap + } + with(density) { + offset.x.roundToPx() + offset.y.roundToPx() + return IntOffset(x + offset.x.roundToPx(), y + offset.y.roundToPx()) + } + } +} + +@OptIn(ExperimentalFluentApi::class) +@Composable +internal fun DropdownMenuContent( + expandedStates: MutableTransitionState, + modifier: Modifier = Modifier, + content: @Composable ColumnScope.() -> Unit +) { + AnimatedVisibility( + visibleState = expandedStates, + enter = expandVertically( + tween(FluentDuration.ShortDuration, easing = FluentEasing.FastInvokeEasing) + ), // TODO: If popup direction is upward, the expanding animation should be bottom-to-top. + exit = fadeOut(tween(FluentDuration.ShortDuration, easing = FluentEasing.FastDismissEasing)) + ) { + val shape = FluentTheme.shapes.overlay + val useAcrylic = LocalAcrylicPopupEnabled.current + Layer( + elevation = ElevationDefaults.flyout, + color = if (!useAcrylic) { + FluentTheme.colors.background.acrylic.default + } else { + Color.Transparent + }, + shape = shape, + border = BorderStroke(1.dp, FluentTheme.colors.stroke.surface.flyout), + backgroundSizing = BackgroundSizing.InnerBorderEdge + ) { + + with(LocalWindowAcrylicContainer.current) { + FlyoutContentLayout( + contentPadding = PaddingValues(horizontal = 4.dp, vertical = 4.dp), + material = MaterialDefaults.acrylicDefault(), + shape = shape, + content = { + Column( + modifier = modifier + .width(IntrinsicSize.Max) + .verticalScroll(rememberScrollState()), + verticalArrangement = Arrangement.spacedBy(4.dp), + content = content + ) + } + ) + } + } + } +} + +/** + * A single item within a [DropdownMenu]. + * + * @param onClick The callback to be invoked when this menu item is clicked. + * @param content The content of this menu item. This is a composable lambda that + * will be rendered inside a [Row]. + */ +@Composable +fun DropdownMenuItem(onClick: () -> Unit, content: @Composable RowScope.() -> Unit) { + SubtleButton(modifier = Modifier.defaultMinSize(minWidth = 100.dp), onClick = onClick, iconOnly = true, content = { + Row(modifier = Modifier.fillMaxWidth().padding(horizontal = 8.dp), content = content) + }) +} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/Expander.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/Expander.kt new file mode 100644 index 00000000..ecced300 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/Expander.kt @@ -0,0 +1,379 @@ +package io.github.composefluent.component + +import androidx.compose.animation.AnimatedVisibility +import androidx.compose.animation.core.animateFloatAsState +import androidx.compose.animation.core.tween +import androidx.compose.animation.expandVertically +import androidx.compose.animation.shrinkVertically +import androidx.compose.foundation.background +import androidx.compose.foundation.clickable +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.ColumnScope +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.Spacer +import androidx.compose.foundation.layout.defaultMinSize +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.heightIn +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.width +import androidx.compose.foundation.layout.widthIn +import androidx.compose.runtime.Composable +import androidx.compose.runtime.Stable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.remember +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.Shape +import androidx.compose.ui.graphics.SolidColor +import androidx.compose.ui.graphics.graphicsLayer +import androidx.compose.ui.unit.dp +import io.github.composefluent.FluentTheme +import io.github.composefluent.ProvideTextStyle +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.background.BackgroundSizing +import io.github.composefluent.background.Layer +import io.github.composefluent.scheme.PentaVisualScheme +import io.github.composefluent.scheme.VisualStateScheme +import io.github.composefluent.scheme.collectVisualState +import io.github.composefluent.surface.Card +import io.github.composefluent.surface.CardColor + +/** + * An expander is a component that allows the user to show and hide a region of content. + * + * @param expanded Whether the expander is expanded. + * @param onExpandedChanged The callback that is triggered when the expander's expanded state changes. + * @param heading The content displayed in the header of the expander. + * @param modifier Modifier for the expander. + * @param enabled Whether the expander is enabled. + * @param interactionSource The [MutableInteractionSource] representing the stream of [androidx.compose.foundation.interaction.Interaction]s for this Expander. + * @param shape The shape of the expander's container. + * @param icon The icon displayed in the header of the expander. + * @param caption The caption displayed below the heading in the header. + * @param trailing The content displayed at the trailing edge of the header. + * @param expandContent The content that is shown when the expander is expanded. + */ +@Composable +fun Expander( + expanded: Boolean, + onExpandedChanged: (Boolean) -> Unit, + heading: @Composable () -> Unit, + modifier: Modifier = Modifier, + enabled: Boolean = true, + interactionSource: MutableInteractionSource? = null, + shape: Shape = FluentTheme.shapes.control, + icon: (@Composable () -> Unit)? = {}, + caption: @Composable () -> Unit = {}, + trailing: @Composable () -> Unit = {}, + expandContent: (@Composable ColumnScope.() -> Unit) = {}, +) { + Layer( + backgroundSizing = BackgroundSizing.InnerBorderEdge, + modifier = modifier, + color = Color.Transparent, + shape = shape, + clipContent = true + ) { + Column { + val targetInteractionSource = + interactionSource ?: remember { MutableInteractionSource() } + + ExpanderItemContent( + icon = icon, + heading = heading, + caption = caption, + trailing = trailing, + dropdown = { + SubtleButton( + interaction = targetInteractionSource, + onClick = { onExpandedChanged(!expanded) }, + content = { + val degrees by animateFloatAsState(if (expanded) 180f else 0f) + FontIcon( + type = FontIconPrimitive.ChevronDown, + contentDescription = null, + modifier = Modifier.graphicsLayer { rotationZ = degrees } + ) + }, + iconOnly = true, + disabled = !enabled + ) + }, + modifier = Modifier.padding(top = 1.dp) + .heightIn(ExpanderHeaderHeight) + .background(FluentTheme.colors.background.card.default) + .clickable( + interactionSource = targetInteractionSource, + indication = null, + onClick = { onExpandedChanged(!expanded) }, + enabled = enabled + ) + ) + ExpanderItemSeparator(color = FluentTheme.colors.stroke.card.default) + AnimatedVisibility( + visible = expanded, + enter = expandVertically( + tween(FluentDuration.MediumDuration, 0, FluentEasing.FastInvokeEasing) + ), + exit = shrinkVertically( + tween(FluentDuration.QuickDuration, 0, FluentEasing.SoftDismissEasing) + ) + ) { + Column(modifier = Modifier.padding(bottom = 1.dp)) { + expandContent() + } + } + } + } +} + +/** + * A composable function that creates a single item within an expander component. + * + * @param heading The content to be displayed as the heading of the item. + * @param modifier Modifier for styling and layout of the item. + * @param color The background color of the item. Defaults to [FluentTheme.colors.background.card.secondary]. + * @param icon The optional icon to be displayed at the start of the item. If null, no icon is displayed. + * @param caption The optional caption content to be displayed below the heading. If null, no caption is displayed. + * @param trailing The optional content to be displayed at the end of the item. If null, no trailing content is displayed. + * @param dropdown The optional content to be displayed in a dropdown section at the end of the item, commonly used for expansion indicators or actions. If null, no dropdown is displayed. + */ +@Composable +fun ExpanderItem( + heading: @Composable () -> Unit, + modifier: Modifier = Modifier, + color: Color = FluentTheme.colors.background.card.secondary, + icon: (@Composable () -> Unit)? = {}, + caption: @Composable () -> Unit = {}, + trailing: @Composable () -> Unit = {}, + dropdown: (@Composable () -> Unit)? = {} +) { + ExpanderItemContent( + icon = icon, + heading = heading, + caption = caption, + trailing = trailing, + dropdown = dropdown, + modifier = modifier.background(color) + ) +} + +/** + * A card-like item for an expander list. + * + * @param onClick The callback to be invoked when this item is clicked. + * @param heading The content to be displayed as the item's heading. + * @param modifier The [Modifier] to be applied to this item. + * @param shape The shape of the card. + * @param enabled Controls the enabled state of the item. When `false`, this item will not be clickable and will appear visually disabled. + * @param colors The color scheme to use for the item's background and content based on its visual state. + * @param captionColors The color scheme to use for the item's caption based on its visual state. + * @param interactionSource The [MutableInteractionSource] representing the stream of [Interaction]s for this item. + * @param icon An optional icon to be displayed at the leading edge of the item. + * @param caption Optional supporting text to be displayed below the heading. + * @param trailing Optional content to be displayed at the trailing edge of the item. + * @param dropdown Optional content to be displayed as a dropdown indicator at the trailing edge. + */ +@Composable +fun CardExpanderItem( + onClick: () -> Unit, + heading: @Composable () -> Unit, + modifier: Modifier = Modifier, + shape: Shape = FluentTheme.shapes.control, + enabled: Boolean = true, + colors: VisualStateScheme = ExpanderDefaults.cardExpanderItemColors(), + captionColors: VisualStateScheme = PentaVisualScheme( + default = FluentTheme.colors.text.text.secondary, + hovered = FluentTheme.colors.text.text.secondary, + pressed = FluentTheme.colors.text.text.tertiary, + disabled = FluentTheme.colors.text.text.disabled + ), + interactionSource: MutableInteractionSource? = null, + icon: (@Composable () -> Unit)? = {}, + caption: @Composable () -> Unit = {}, + trailing: @Composable () -> Unit = {}, + dropdown: (@Composable () -> Unit)? = null, +) { + val targetInteractionSource = interactionSource ?: remember { MutableInteractionSource() } + val captionTextColor = captionColors.schemeFor(targetInteractionSource.collectVisualState(!enabled)) + Card( + onClick = onClick, + modifier = modifier, + disabled = !enabled, + cardColors = colors, + shape = shape, + interactionSource = targetInteractionSource + ) { + ExpanderItemContent( + icon = icon, + heading = heading, + caption = caption, + trailing = trailing, + dropdown = dropdown, + modifier = Modifier.heightIn(ExpanderHeaderHeight), + captionTextColor = captionTextColor + ) + } +} + +/** + * A card-like item for an expander list. + * This item provides a visually distinct header for an expander section, allowing for + * customization of the heading, optional icon, caption, trailing content, and dropdown. + * + * @param heading The composable function that renders the primary heading text or content. + * @param modifier Modifier to be applied to the underlying Layer. + * @param shape The shape of the card. Defaults to [FluentTheme.shapes.control]. + * @param color The background color of the card. Defaults to [FluentTheme.colors.background.card.default]. + * @param contentColor The preferred content color for text and icons within the card. Defaults to [FluentTheme.colors.text.text.primary]. + * @param captionTextColor The color of the caption text. Defaults to [FluentTheme.colors.text.text.secondary]. + * @param icon An optional composable function that renders an icon. If not provided, no icon is displayed. + * @param caption A composable function that renders a caption. If not provided, no caption is displayed. + * @param trailing A composable function that renders content to the right of the heading and caption, such as a button or indicator. + * @param dropdown An optional composable function to render a dropdown or expand/collapse indicator. + */ +@Composable +fun CardExpanderItem( + heading: @Composable () -> Unit, + modifier: Modifier = Modifier, + shape: Shape = FluentTheme.shapes.control, + color: Color = FluentTheme.colors.background.card.default, + contentColor: Color = FluentTheme.colors.text.text.primary, + captionTextColor: Color = FluentTheme.colors.text.text.secondary, + icon: (@Composable () -> Unit)? = {}, + caption: @Composable () -> Unit = {}, + trailing: @Composable () -> Unit = {}, + dropdown: (@Composable () -> Unit)? = null +) { + Layer( + modifier = modifier, + backgroundSizing = BackgroundSizing.InnerBorderEdge, + shape = shape, + color = color, + contentColor = contentColor + ) { + ExpanderItemContent( + icon = icon, + heading = heading, + caption = caption, + trailing = trailing, + dropdown = dropdown, + modifier = Modifier.heightIn(ExpanderHeaderHeight), + captionTextColor = captionTextColor + ) + } +} + +/** + * A separator line for [Expander] items. + * + * @param modifier Modifier to be applied to the separator. + * @param color The color of the separator line. Defaults to `FluentTheme.colors.stroke.divider.default`. + */ +@Composable +fun ExpanderItemSeparator( + modifier: Modifier = Modifier, + color: Color = FluentTheme.colors.stroke.divider.default +) { + Box( + modifier = modifier.fillMaxWidth().height(1.dp).background(color) + ) +} + +/** + * Contains the default values used by [CardExpanderItem]. + */ +object ExpanderDefaults { + + /** + * Creates a [PentaVisualScheme] for the colors of a card expander item. + * + * @param default The default colors of the card expander item. + * @param hovered The colors of the card expander item when hovered. + * @param pressed The colors of the card expander item when pressed. + * @param disabled The colors of the card expander item when disabled. + * + * @return A [PentaVisualScheme] containing the specified colors for the different states. + */ + @Stable + @Composable + fun cardExpanderItemColors( + default: CardColor = CardColor( + fillColor = FluentTheme.colors.background.card.default, + contentColor = FluentTheme.colors.text.text.primary, + borderBrush = SolidColor(FluentTheme.colors.stroke.card.default) + ), + hovered: CardColor = default.copy( + fillColor = FluentTheme.colors.control.secondary, + borderBrush = FluentTheme.colors.borders.control + ), + pressed: CardColor = CardColor( + fillColor = FluentTheme.colors.control.tertiary, + contentColor = FluentTheme.colors.text.text.secondary, + borderBrush = SolidColor(FluentTheme.colors.stroke.control.default) + ), + disabled: CardColor = pressed.copy( + fillColor = FluentTheme.colors.background.card.default, + contentColor = FluentTheme.colors.text.text.disabled, + borderBrush = SolidColor(FluentTheme.colors.stroke.card.default) + ) + ) = PentaVisualScheme(default, hovered, pressed, disabled) +} + +@Composable +internal fun ExpanderItemContent( + modifier: Modifier = Modifier, + captionTextColor: Color = FluentTheme.colors.text.text.secondary, + icon: (@Composable () -> Unit)? = {}, + heading: @Composable () -> Unit = {}, + caption: @Composable () -> Unit = {}, + trailing: @Composable () -> Unit = {}, + dropdown: (@Composable () -> Unit)? = {} +) { + Row( + modifier = Modifier.then(modifier) + .fillMaxWidth(), + verticalAlignment = Alignment.CenterVertically, + ) { + if (icon != null) { + Box( + modifier = Modifier.widthIn(48.dp).defaultMinSize(16.dp), + contentAlignment = Alignment.Center + ) { + icon() + } + } else { + Spacer(modifier = Modifier.width(16.dp)) + } + Column(modifier = Modifier.padding(vertical = 13.dp)) { + heading() + ProvideTextStyle(FluentTheme.typography.caption.copy(captionTextColor)) { + caption() + } + } + Spacer(modifier = Modifier.weight(1f).height(1.dp)) + Row( + verticalAlignment = Alignment.CenterVertically, + modifier = Modifier.padding(end = 8.dp) + ) { + trailing() + if (dropdown != null) { + Box( + modifier = Modifier.padding(start = 4.dp).defaultMinSize(32.dp), + contentAlignment = Alignment.Center + ) { + dropdown() + } + } else { + Spacer(modifier = Modifier.width(8.dp)) + } + } + } +} + +private val ExpanderHeaderHeight = 62.dp diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/FlipView.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/FlipView.kt new file mode 100644 index 00000000..1c2f95c7 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/FlipView.kt @@ -0,0 +1,491 @@ +package io.github.composefluent.component + +import androidx.compose.animation.core.animateFloatAsState +import androidx.compose.animation.core.tween +import androidx.compose.foundation.clickable +import androidx.compose.foundation.gestures.Orientation +import androidx.compose.foundation.gestures.TargetedFlingBehavior +import androidx.compose.foundation.gestures.snapping.SnapPosition +import androidx.compose.foundation.hoverable +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.interaction.collectIsHoveredAsState +import androidx.compose.foundation.interaction.collectIsPressedAsState +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.PaddingValues +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.pager.HorizontalPager +import androidx.compose.foundation.pager.PageSize +import androidx.compose.foundation.pager.PagerDefaults +import androidx.compose.foundation.pager.PagerScope +import androidx.compose.foundation.pager.PagerState +import androidx.compose.foundation.pager.VerticalPager +import androidx.compose.runtime.Composable +import androidx.compose.runtime.CompositionLocalProvider +import androidx.compose.runtime.Stable +import androidx.compose.runtime.derivedStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.rememberCoroutineScope +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.draw.clip +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.TransformOrigin +import androidx.compose.ui.graphics.graphicsLayer +import androidx.compose.ui.input.nestedscroll.NestedScrollConnection +import androidx.compose.ui.unit.Dp +import androidx.compose.ui.unit.DpSize +import androidx.compose.ui.unit.dp +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.FluentTheme +import io.github.composefluent.LocalContentAlpha +import io.github.composefluent.LocalContentColor +import io.github.composefluent.LocalTextStyle +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.background.Material +import io.github.composefluent.background.MaterialContainer +import io.github.composefluent.background.MaterialContainerScope +import io.github.composefluent.background.MaterialDefaults +import io.github.composefluent.scheme.PentaVisualScheme +import io.github.composefluent.scheme.VisualStateScheme +import io.github.composefluent.scheme.collectVisualState +import kotlinx.coroutines.launch + +/** + * A composable function that creates a horizontal flip view, allowing users to navigate through pages + * horizontally. It provides controls for moving to the next and previous pages, as well as customization + * options for styling and behavior. + * + * @param state The state object to be used to control or observe the list's state. + * @param modifier Modifier to be applied to the layout. + * @param enabled Whether the flip view is enabled or not. + * @param pageButtonColors Colors for the next and previous page buttons. + * @param contentPadding The padding to be applied to the page content. + * @param pageSize The size of the pages. + * @param beyondViewportPageCount The number of pages to be kept beyond the viewport. + * @param pageSpacing The spacing between pages. + * @param verticalAlignment The vertical alignment of pages within the viewport. + * @param flingBehavior The fling behavior for the page scrolling. + * @param userScrollEnabled Whether user scrolling is enabled. + * @param reverseLayout Whether to reverse the layout of the pages. + * @param key A factory of stable and unique keys representing the item. + * @param pageNestedScrollConnection A [NestedScrollConnection] that receives nested scroll events from the pages. + * @param snapPosition The snap position for the page. + * @param pageContent The content to be displayed on each page. + */ +@OptIn(ExperimentalFluentApi::class) +@Composable +fun HorizontalFlipView( + state: PagerState, + modifier: Modifier = Modifier, + enabled: Boolean = true, + pageButtonColors: VisualStateScheme = FlipViewDefaults.pageButtonColors(), + contentPadding: PaddingValues = PaddingValues(0.dp), + pageSize: PageSize = PageSize.Fill, + beyondViewportPageCount: Int = PagerDefaults.BeyondViewportPageCount, + pageSpacing: Dp = 0.dp, + verticalAlignment: Alignment.Vertical = Alignment.CenterVertically, + flingBehavior: TargetedFlingBehavior = PagerDefaults.flingBehavior(state = state), + userScrollEnabled: Boolean = true, + reverseLayout: Boolean = false, + key: ((index: Int) -> Any)? = null, + pageNestedScrollConnection: NestedScrollConnection = PagerDefaults.pageNestedScrollConnection( + state, + Orientation.Horizontal + ), + snapPosition: SnapPosition = SnapPosition.Start, + pageContent: @Composable PagerScope.(index: Int) -> Unit +) { + val scope = rememberCoroutineScope() + HorizontalFlipViewContainer( + nextPageVisible = remember(state) { derivedStateOf { state.currentPage < state.pageCount - 1 } }.value, + previousPageVisible = remember(state) { derivedStateOf { state.currentPage > 0 } }.value, + onNextPageClick = { + scope.launch { + state.animateScrollToPage( + page = state.currentPage + 1, + animationSpec = FlipViewDefaults.scrollAnimationSpec() + ) + } + }, + onPreviousPageClick = { + scope.launch { + state.animateScrollToPage( + page = state.currentPage - 1, + animationSpec = FlipViewDefaults.scrollAnimationSpec() + ) + } + }, + modifier = modifier, + enabled = enabled, + pageButtonColors = pageButtonColors + ) { + HorizontalPager( + state = state, + modifier = Modifier.fillMaxSize(), + contentPadding = contentPadding, + pageSize = pageSize, + beyondViewportPageCount = beyondViewportPageCount, + pageSpacing = pageSpacing, + verticalAlignment = verticalAlignment, + flingBehavior = flingBehavior, + userScrollEnabled = userScrollEnabled, + reverseLayout = reverseLayout, + key = key, + pageNestedScrollConnection = pageNestedScrollConnection, + snapPosition = snapPosition, + pageContent = pageContent + ) + } +} + +/** + * A composable function that creates a horizontal flip view, allowing users to navigate through pages + * horizontally. It provides controls for moving to the next and previous pages, as well as customization + * options for styling and behavior. + * + * @param state The [PagerState] to be used by the [VerticalPager]. This state + * object manages the current page index and scrolling behavior. + * @param modifier Modifier to be applied to the layout. + * @param enabled Controls whether the flip view is enabled for interaction. + * @param pageButtonColors A [VisualStateScheme] defining the colors for the next/previous page buttons. + * @param contentPadding The padding to be applied to the content area of the pager. + * @param pageSize The size of each page in the pager, defined as a [PageSize]. + * @param beyondViewportPageCount The number of pages to be composed beyond the viewport in each direction. + * @param pageSpacing The space between pages in the pager. + * @param horizontalAlignment The horizontal alignment of pages within the pager. + * @param flingBehavior The fling behavior to use for scrolling. + * @param userScrollEnabled Controls whether the user can scroll the pager manually. + * @param reverseLayout Whether to reverse the layout of the pages. + * @param key A function to provide a unique key for each page based on its index. + * @param pageNestedScrollConnection The [NestedScrollConnection] to be used for nested scrolling. + * @param snapPosition The position at which pages should snap to. + * @param pageContent The composable function to render the content of each page. It receives the page index as an argument. + */ +@OptIn(ExperimentalFluentApi::class) +@Composable +fun VerticalFlipView( + state: PagerState, + modifier: Modifier = Modifier, + enabled: Boolean = true, + pageButtonColors: VisualStateScheme = FlipViewDefaults.pageButtonColors(), + contentPadding: PaddingValues = PaddingValues(0.dp), + pageSize: PageSize = PageSize.Fill, + beyondViewportPageCount: Int = PagerDefaults.BeyondViewportPageCount, + pageSpacing: Dp = FlipViewDefaults.verticalPageSpacing, + horizontalAlignment: Alignment.Horizontal = Alignment.CenterHorizontally, + flingBehavior: TargetedFlingBehavior = PagerDefaults.flingBehavior(state = state), + userScrollEnabled: Boolean = true, + reverseLayout: Boolean = false, + key: ((index: Int) -> Any)? = null, + pageNestedScrollConnection: NestedScrollConnection = PagerDefaults.pageNestedScrollConnection( + state, + Orientation.Horizontal + ), + snapPosition: SnapPosition = SnapPosition.Start, + pageContent: @Composable PagerScope.(index: Int) -> Unit +) { + val scope = rememberCoroutineScope() + VerticalFlipViewContainer( + nextPageVisible = remember(state) { derivedStateOf { state.currentPage < state.pageCount - 1 } }.value, + previousPageVisible = remember(state) { derivedStateOf { state.currentPage > 0 } }.value, + onNextPageClick = { + scope.launch { + state.animateScrollToPage( + page = state.currentPage + 1, + animationSpec = FlipViewDefaults.scrollAnimationSpec() + ) + } + }, + onPreviousPageClick = { + scope.launch { + state.animateScrollToPage( + page = state.currentPage - 1, + animationSpec = FlipViewDefaults.scrollAnimationSpec() + ) + } + }, + modifier = modifier, + enabled = enabled, + pageButtonColors = pageButtonColors + ) { + VerticalPager( + state = state, + modifier = Modifier.fillMaxSize(), + contentPadding = contentPadding, + pageSize = pageSize, + beyondViewportPageCount = beyondViewportPageCount, + pageSpacing = pageSpacing, + horizontalAlignment = horizontalAlignment, + flingBehavior = flingBehavior, + userScrollEnabled = userScrollEnabled, + reverseLayout = reverseLayout, + key = key, + pageNestedScrollConnection = pageNestedScrollConnection, + snapPosition = snapPosition, + pageContent = pageContent + ) + } +} + +/** + * A composable function that creates a vertical flip view container. + * This container provides the layout and controls for navigating between pages vertically. + * + * @param onNextPageClick Callback function invoked when the next page button is clicked. + * @param onPreviousPageClick Callback function invoked when the previous page button is clicked. + * @param modifier Modifier to be applied to the layout. + * @param enabled Controls whether the flip view container is enabled for interaction. + * @param nextPageVisible Determines if the next page button is visible. + * @param previousPageVisible Determines if the previous page button is visible. + * @param pageButtonColors Colors for the next and previous page buttons. + * @param content The content to be displayed within the flip view container. + */ +@ExperimentalFluentApi +@Composable +fun VerticalFlipViewContainer( + onNextPageClick: () -> Unit, + onPreviousPageClick: () -> Unit, + modifier: Modifier = Modifier, + enabled: Boolean = true, + nextPageVisible: Boolean = true, + previousPageVisible: Boolean = true, + pageButtonColors: VisualStateScheme = FlipViewDefaults.pageButtonColors(), + content: @Composable () -> Unit +) { + FlipViewContainer( + onNextPageClick = onNextPageClick, + onPreviousPageClick = onPreviousPageClick, + modifier = modifier, + isVertical = true, + enabled = enabled, + nextPageVisible = nextPageVisible, + previousPageVisible = previousPageVisible, + pageButtonColors = pageButtonColors, + content = content + ) +} + +/** + * A composable function that provides a container for a horizontally oriented flip view. + * This container includes controls for navigating to the next and previous pages, which + * are displayed as buttons. The content displayed within the container is determined by + * the `content` parameter. + * + * @param onNextPageClick Callback invoked when the next page button is clicked. + * @param onPreviousPageClick Callback invoked when the previous page button is clicked. + * @param modifier Modifier for styling and layout of the container. + * @param enabled Controls whether the flip view's navigation is enabled. + * @param nextPageVisible Determines if the next page button should be visible. + * @param previousPageVisible Determines if the previous page button should be visible. + * @param pageButtonColors The colors used for the next and previous page buttons, defined by a [VisualStateScheme]. + * @param content The composable content to be displayed within the flip view container. + */ +@ExperimentalFluentApi +@Composable +fun HorizontalFlipViewContainer( + onNextPageClick: () -> Unit, + onPreviousPageClick: () -> Unit, + modifier: Modifier = Modifier, + enabled: Boolean = true, + nextPageVisible: Boolean = true, + previousPageVisible: Boolean = true, + pageButtonColors: VisualStateScheme = FlipViewDefaults.pageButtonColors(), + content: @Composable () -> Unit +) { + FlipViewContainer( + onNextPageClick = onNextPageClick, + onPreviousPageClick = onPreviousPageClick, + modifier = modifier, + isVertical = false, + enabled = enabled, + pageButtonColors = pageButtonColors, + nextPageVisible = nextPageVisible, + previousPageVisible = previousPageVisible, + content = content + ) +} + +@ExperimentalFluentApi +@Composable +private fun FlipViewContainer( + onNextPageClick: () -> Unit, + onPreviousPageClick: () -> Unit, + nextPageVisible: Boolean, + previousPageVisible: Boolean, + modifier: Modifier, + isVertical: Boolean, + enabled: Boolean, + pageButtonColors: VisualStateScheme, + content: @Composable () -> Unit +) { + MaterialContainer(modifier = modifier.clip(FluentTheme.shapes.overlay)) { + val interactionSource = remember { MutableInteractionSource() } + val isHovered = interactionSource.collectIsHoveredAsState() + Box( + propagateMinConstraints = true, + modifier = Modifier.behindMaterial() + .hoverable(interactionSource, enabled = enabled) + ) { + content() + } + if (isVertical) { + PageButton( + colors = pageButtonColors, + isVertical = true, + type = FontIconPrimitive.CaretDown, + onClick = onNextPageClick, + visible = nextPageVisible && isHovered.value, + modifier = Modifier + .align(Alignment.BottomCenter) + .padding(bottom = 1.dp) + .hoverable(interactionSource), + ) + PageButton( + colors = pageButtonColors, + isVertical = true, + type = FontIconPrimitive.CaretUp, + onClick = onPreviousPageClick, + visible = previousPageVisible && isHovered.value, + modifier = Modifier + .align(Alignment.TopCenter) + .padding(top = 1.dp) + .hoverable(interactionSource), + ) + } else { + PageButton( + colors = pageButtonColors, + isVertical = false, + type = FontIconPrimitive.CaretRight, + onClick = onNextPageClick, + visible = nextPageVisible && isHovered.value, + modifier = Modifier + .align(Alignment.CenterEnd) + .padding(end = 1.dp) + .hoverable(interactionSource), + ) + + PageButton( + colors = pageButtonColors, + isVertical = false, + type = FontIconPrimitive.CaretLeft, + onClick = onPreviousPageClick, + visible = previousPageVisible && isHovered.value, + modifier = Modifier + .align(Alignment.CenterStart) + .padding(start = 1.dp) + .hoverable(interactionSource), + ) + } + } +} + +@OptIn(ExperimentalFluentApi::class) +@Composable +private fun MaterialContainerScope.PageButton( + colors: VisualStateScheme, + modifier: Modifier = Modifier, + isVertical: Boolean, + visible: Boolean, + onClick: () -> Unit, + type: FontIconPrimitive, +) { + if (visible) { + val interactionSource = remember { MutableInteractionSource() } + val currentColor = colors.schemeFor(interactionSource.collectVisualState(false)) + Box( + contentAlignment = Alignment.Center, + modifier = modifier + .clip(FluentTheme.shapes.control) + .materialOverlay(currentColor.background) + .size(if (isVertical) VerticalButtonSize else HorizontalButtonSize) + .clickable( + indication = null, + interactionSource = interactionSource, + onClick = onClick + ) + ) { + CompositionLocalProvider( + LocalContentColor provides currentColor.contentColor, + LocalContentAlpha provides currentColor.contentColor.alpha, + LocalTextStyle provides LocalTextStyle.current.copy(color = currentColor.contentColor) + ) { + val isPressed = interactionSource.collectIsPressedAsState() + val scale = animateFloatAsState( + targetValue = if (isPressed.value) { 7/8f } else 1f, + animationSpec = tween(FluentDuration.ShortDuration, easing = FluentEasing.FastInvokeEasing) + ) + FontIconSolid8( + type = type, + contentDescription = null, + modifier = Modifier + .graphicsLayer { + scaleX = scale.value + scaleY = scale.value + transformOrigin = TransformOrigin(0.5f, 0.5f) + } + ) + } + } + } +} + +/** + * Represents the colors used for the page navigation buttons in the [FlipView]. + * + * @property background The background [Material] for the page button. + * @property contentColor The [Color] of the content (icon) within the page button. + */ +data class PageButtonColor( + val background: Material, + val contentColor: Color +) + +object FlipViewDefaults { + + /** + * The default spacing between pages in the [VerticalFlipView]. + */ + val verticalPageSpacing = 4.dp + + /** + * Creates a [PentaVisualScheme] for the page buttons, defining their colors for different states. + * + * @param default The default [PageButtonColor] for the page buttons. + * @param hovered The [PageButtonColor] for when the page buttons are hovered. + * @param pressed The [PageButtonColor] for when the page buttons are pressed. + * @return A [PentaVisualScheme] representing the visual scheme for the page buttons. + */ + @Composable + @Stable + fun pageButtonColors( + default: PageButtonColor = PageButtonColor( + background = MaterialDefaults.acrylicDefault(), + contentColor = FluentTheme.colors.controlStrong.default + ), + hovered: PageButtonColor = PageButtonColor( + background = MaterialDefaults.acrylicDefault(), + contentColor = FluentTheme.colors.text.text.secondary + ), + pressed: PageButtonColor = hovered, + ) = PentaVisualScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = default + ) + + /** + * Returns the default [AnimationSpec] used for scrolling between pages in the [FlipView]. + * This spec uses a tween animation with a long duration and a fast invoke easing. + * + * @return The default [AnimationSpec] for page scrolling. + */ + fun scrollAnimationSpec() = + tween(FluentDuration.LongDuration, easing = FluentEasing.FastInvokeEasing) +} + +private val VerticalButtonSize = DpSize(38.dp, 16.dp) +private val HorizontalButtonSize = DpSize(16.dp, 38.dp) \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/Flyout.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/Flyout.kt new file mode 100644 index 00000000..e45ae316 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/Flyout.kt @@ -0,0 +1,555 @@ +package io.github.composefluent.component + +import androidx.compose.animation.* +import androidx.compose.animation.core.MutableTransitionState +import androidx.compose.animation.core.tween +import androidx.compose.foundation.BorderStroke +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.PaddingValues +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.shape.CornerSize +import androidx.compose.foundation.shape.RoundedCornerShape +import androidx.compose.runtime.Composable +import androidx.compose.runtime.Immutable +import androidx.compose.runtime.MutableState +import androidx.compose.runtime.Stable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableIntStateOf +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import androidx.compose.ui.Modifier +import androidx.compose.ui.draw.alpha +import androidx.compose.ui.draw.clip +import androidx.compose.ui.geometry.Size +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.Shape +import androidx.compose.ui.input.key.KeyEvent +import androidx.compose.ui.layout.Layout +import androidx.compose.ui.layout.LayoutCoordinates +import androidx.compose.ui.layout.layout +import androidx.compose.ui.layout.layoutId +import androidx.compose.ui.layout.onGloballyPositioned +import androidx.compose.ui.platform.InspectableValue +import androidx.compose.ui.platform.LocalDensity +import androidx.compose.ui.unit.Constraints +import androidx.compose.ui.unit.Density +import androidx.compose.ui.unit.Dp +import androidx.compose.ui.unit.constrainHeight +import androidx.compose.ui.unit.constrainWidth +import androidx.compose.ui.unit.dp +import androidx.compose.ui.window.PopupProperties +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.FluentTheme +import io.github.composefluent.LocalAcrylicPopupEnabled +import io.github.composefluent.LocalWindowAcrylicContainer +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.background.MaterialContainerScope +import io.github.composefluent.background.MaterialDefaults +import io.github.composefluent.background.Material +import io.github.composefluent.background.BackgroundSizing +import io.github.composefluent.background.ElevationDefaults +import io.github.composefluent.background.Layer +import io.github.composefluent.background.calculateBorderPadding + +/** + * A container composable that displays a flyout and its content. + * + * The [FlyoutContainer] manages the visibility and placement of a flyout, while also providing a + * [FlyoutContainerScope] for defining the flyout and the main content. + * + * @param flyout A composable lambda representing the content of the flyout. + * It has access to the [FlyoutContainerScope]. + * @param modifier The modifier to be applied to the container. + * @param initialVisible The initial visibility state of the flyout. Defaults to `false`. + * @param placement The placement strategy for the flyout. Defaults to [FlyoutPlacement.Auto]. + * @param adaptivePlacement If `true`, the flyout will try to adapt to the available space. + * Defaults to `false`. + * @param onKeyEvent An optional callback invoked when a key event is dispatched to the flyout. + * If not null, it will be focusable. + * @param onPreviewKeyEvent An optional callback invoked when a key event is dispatched to the flyout + * before it is dispatched to any focused view. If not null, it will be + * focusable. + * @param focusable Determines whether the flyout is focusable. Setting to false allows user to interact + * with the outside area of the flyout. Defaults to `true`. + * @param content A composable lambda representing the main content within the container. + * It also has access to the [FlyoutContainerScope]. + */ +@Composable +fun FlyoutContainer( + flyout: @Composable FlyoutContainerScope.() -> Unit, + modifier: Modifier = Modifier, + initialVisible: Boolean = false, + placement: FlyoutPlacement = FlyoutPlacement.Auto, + adaptivePlacement: Boolean = false, + onKeyEvent: ((keyEvent: KeyEvent) -> Boolean)? = null, + onPreviewKeyEvent: ((keyEvent: KeyEvent) -> Boolean)? = null, + focusable: Boolean = true, + content: @Composable FlyoutContainerScope.() -> Unit +) { + BasicFlyoutContainer( + flyout = { + Flyout( + visible = isFlyoutVisible, + onDismissRequest = { isFlyoutVisible = false }, + placement = placement, + adaptivePlacement = adaptivePlacement, + onKeyEvent = onKeyEvent, + onPreviewKeyEvent = onPreviewKeyEvent, + focusable = focusable, + content = { flyout() } + ) + }, + content = content, + modifier = modifier, + initialVisible = initialVisible + ) +} + +@OptIn(ExperimentalFluentApi::class) +@Composable +internal fun BasicFlyoutContainer( + flyout: @Composable FlyoutContainerScope.() -> Unit, + modifier: Modifier = Modifier, + initialVisible: Boolean = false, + content: @Composable FlyoutContainerScope.() -> Unit +) { + val flyoutState = remember(initialVisible) { + mutableStateOf(initialVisible) + } + FlyoutAnchorScope { + val flyoutScope = remember(flyoutState, this) { + FlyoutContainerScopeImpl(flyoutState, this) + } + Box(modifier = modifier) { + flyoutScope.content() + flyoutScope.flyout() + } + } + +} + +/** + * Defines the possible placement positions of a flyout relative to its anchor. + * + * - **Auto**: The system automatically determines the best placement based on available space. + * - **Full**: The flyout will occupy the full available space. + * - **Start**: The flyout will be placed at the start side of the anchor. + * - **StartAlignedTop**: The flyout will be placed at the start side of the anchor, with its top edge aligned with the anchor's top edge. + * - **StartAlignedBottom**: The flyout will be placed at the start side of the anchor, with its bottom edge aligned with the anchor's bottom edge. + * - **Top**: The flyout will be placed above the anchor. + * - **TopAlignedStart**: The flyout will be placed above the anchor, with its start edge aligned with the anchor's start edge. + * - **TopAlignedEnd**: The flyout will be placed above the anchor, with its end edge aligned with the anchor's end edge. + * - **End**: The flyout will be placed at the end side of the anchor. + * - **EndAlignedTop**: The flyout will be placed at the end side of the anchor, with its top edge aligned with the anchor's top edge. + * - **EndAlignedBottom**: The flyout will be placed at the end side of the anchor, with its bottom edge aligned with the anchor's bottom edge. + * - **Bottom**: The flyout will be placed below the anchor. + * - **BottomAlignedStart**: The flyout will be placed below the anchor, with its start edge aligned with the anchor's start edge. + * - **BottomAlignedEnd**: The flyout will be placed below the anchor, with its end edge aligned with the anchor's end edge. + */ +enum class FlyoutPlacement { + Auto, + Full, + Start, + StartAlignedTop, + StartAlignedBottom, + Top, + TopAlignedStart, + TopAlignedEnd, + End, + EndAlignedTop, + EndAlignedBottom, + Bottom, + BottomAlignedStart, + BottomAlignedEnd +} + +/** + * A Flyout is a transient view that displays content that is either contextual to or provides additional + * information about a specific UI element. Flyouts are meant to be temporary and are dismissed when the + * user interacts outside of the flyout or when the parent UI element is hidden or removed. + * + * @param visible Whether the flyout is currently visible. + * @param onDismissRequest Callback invoked when the flyout should be dismissed. This typically happens + * when the user clicks outside the flyout or presses the back button. + * @param modifier Modifier to be applied to the flyout. + * @param placement The preferred placement of the flyout relative to its anchor. + * Defaults to [FlyoutPlacement.Auto]. + * @param adaptivePlacement If `true`, the flyout will automatically adjust its placement to ensure + * it remains within the bounds of the screen. If `false`, the flyout will stick to the specified + * placement, potentially overflowing the screen. Defaults to `false`. + * @param shape The shape of the flyout's background. Defaults to [FluentTheme.shapes.overlay]. + * @param onKeyEvent Optional callback to intercept and handle key events while the flyout is + * visible. Return `true` to consume the event, `false` to allow it to propagate. Defaults to `null`. + * @param onPreviewKeyEvent Optional callback to preview key events before they are dispatched to + * the flyout's content. Return `true` to consume the event, `false` to allow it to propagate. + * Defaults to `null`. + * @param focusable Determines whether the flyout is focusable. Setting to false allows user to interact + * with the outside area of the flyout. Defaults to `true`. + * @param content The content to be displayed within the flyout. + */ +@Composable +fun Flyout( + visible: Boolean, + onDismissRequest: () -> Unit, + modifier: Modifier = Modifier, + placement: FlyoutPlacement = FlyoutPlacement.Auto, + adaptivePlacement: Boolean = false, + shape: Shape = FluentTheme.shapes.overlay, + onKeyEvent: ((keyEvent: KeyEvent) -> Boolean)? = null, + onPreviewKeyEvent: ((keyEvent: KeyEvent) -> Boolean)? = null, + focusable: Boolean = true, + content: @Composable () -> Unit +) { + BasicFlyout( + visible = visible, + onDismissRequest = onDismissRequest, + modifier = modifier, + positionProvider = rememberFlyoutPositionProvider( + initialPlacement = placement, + adaptivePlacement = adaptivePlacement + ), + shape = shape, + onKeyEvent = onKeyEvent, + onPreviewKeyEvent = onPreviewKeyEvent, + focusable = focusable, + content = content + ) +} + +@Composable +internal fun BasicFlyout( + visible: Boolean, + onDismissRequest: () -> Unit, + modifier: Modifier = Modifier, + enterPlacementAnimation: (placement: FlyoutPlacement) -> EnterTransition = ::defaultFlyoutEnterPlacementAnimation, + shape: Shape = FluentTheme.shapes.overlay, + contentPadding: PaddingValues = PaddingValues(12.dp), + positionProvider: FlyoutPositionProvider = rememberFlyoutPositionProvider(), + onKeyEvent: ((keyEvent: KeyEvent) -> Boolean)? = null, + onPreviewKeyEvent: ((keyEvent: KeyEvent) -> Boolean)? = null, + focusable: Boolean = true, + content: @Composable () -> Unit +) { + val visibleState = remember { + MutableTransitionState(false) + } + visibleState.targetState = visible + if (visibleState.currentState || visibleState.targetState) { + Popup( + onDismissRequest = onDismissRequest, + properties = PopupProperties( + clippingEnabled = false, + focusable = focusable + ), + popupPositionProvider = positionProvider, + onKeyEvent = onKeyEvent, + onPreviewKeyEvent = onPreviewKeyEvent + ) { + if (positionProvider.applyAnimation) { + FlyoutContent( + modifier = modifier, + visibleState = visibleState, + placement = positionProvider.targetPlacement, + shape = shape, + content = content, + contentPadding = contentPadding, + enterPlacementAnimation = enterPlacementAnimation + ) + } else { + /* this is the workaround for placement animation */ + Box( + Modifier.alpha(0f) + .padding(contentPadding) + .padding(flyoutPopPaddingFixShadowRender) + ) { + content() + } + } + } + } +} + +@Composable +internal fun FlyoutContent( + visibleState: MutableTransitionState, + modifier: Modifier = Modifier, + placement: FlyoutPlacement = FlyoutPlacement.Auto, + enterPlacementAnimation: (placement: FlyoutPlacement) -> EnterTransition = ::defaultFlyoutEnterPlacementAnimation, + shape: Shape = FluentTheme.shapes.overlay, + contentPadding: PaddingValues = PaddingValues(12.dp), + content: @Composable () -> Unit +) { + AcrylicPopupContent( + visibleState = visibleState, + enterTransition = enterPlacementAnimation(placement), + exitTransition = fadeOut(flyoutExitSpec()), + content = content, + contentPadding = contentPadding, + elevation = ElevationDefaults.flyout, + shape = shape, + modifier = modifier + ) +} + +@OptIn(ExperimentalFluentApi::class) +@Composable +internal fun AcrylicPopupContent( + visibleState: MutableTransitionState, + enterTransition: EnterTransition, + exitTransition: ExitTransition, + modifier: Modifier = Modifier, + elevation: Dp, + shape: Shape, + contentPadding: PaddingValues, + content: @Composable () -> Unit +) { + with(LocalWindowAcrylicContainer.current) { + val useAcrylic = LocalAcrylicPopupEnabled.current + AnimatedVisibility( + visibleState = visibleState, + enter = enterTransition, + exit = exitTransition, + modifier = Modifier.then( + if (useAcrylic) { + Modifier.padding(flyoutPopPaddingFixShadowRender) + } else { + Modifier + } + ) + ) { + Layer( + backgroundSizing = BackgroundSizing.InnerBorderEdge, + border = BorderStroke(1.dp, FluentTheme.colors.stroke.surface.flyout), + shape = shape, + elevation = elevation, + color = if (useAcrylic) { + Color.Transparent + } else { + FluentTheme.colors.background.acrylic.default + }, + modifier = modifier + ) { + FlyoutContentLayout( + contentPadding = contentPadding, + material = MaterialDefaults.acrylicDefault(), + shape = shape, + content = content + ) + } + } + } +} + +//Workaround for acrylic PaddingBorder +@OptIn(ExperimentalFluentApi::class) +@Composable +internal fun MaterialContainerScope.FlyoutContentLayout( + material: Material, + shape: Shape, + contentPadding: PaddingValues, + content: @Composable () -> Unit +) { + Layout( + content = { + val acrylicShape = if (shape is RoundedCornerShape) { + with(LocalDensity.current) { + val borderPadding = shape.calculateBorderPadding(this).toDp() + RoundedCornerShape( + topStart = PaddingCornerSize(shape.topStart, borderPadding), + topEnd = PaddingCornerSize(shape.topEnd, borderPadding), + bottomEnd = PaddingCornerSize(shape.bottomEnd, borderPadding), + bottomStart = PaddingCornerSize(shape.bottomStart, borderPadding) + ) + } + } else { + shape + } + Box( + modifier = Modifier + .layoutId("placeholder") + .padding(1.dp) + .clip(acrylicShape) + .materialOverlay(material = material) + ) + Box(modifier = Modifier.padding(contentPadding).layoutId("content")) { content() } + } + ) { mesurables, constraints -> + val contentPlaceable = mesurables.first { it.layoutId == "content" }.measure(constraints) + val placeholder = mesurables.first { it.layoutId == "placeholder" }.measure( + Constraints.fixed(contentPlaceable.width, contentPlaceable.height) + ) + layout(contentPlaceable.width, contentPlaceable.height) { + placeholder.place(0, 0) + contentPlaceable.place(0, 0) + } + } +} + +@Immutable +internal data class PaddingCornerSize( + private val size: CornerSize, + private val padding: Dp +) : CornerSize, InspectableValue { + + override fun toPx(shapeSize: Size, density: Density) = + with(density) { (size.toPx(shapeSize, this) - padding.toPx()).coerceAtLeast(0f) } + + override fun toString(): String = size.toString() + + override val valueOverride: Dp + get() = padding +} + +@OptIn(ExperimentalFluentApi::class) +private class FlyoutContainerScopeImpl( + visibleState: MutableState, + scope: FlyoutAnchorScope, +) : FlyoutContainerScope, FlyoutAnchorScope by scope { + + override var isFlyoutVisible: Boolean by visibleState +} + +/** + * Scope for the content of a [FlyoutContainer]. + * + * This scope provides access to the [isFlyoutVisible] state, which determines whether the flyout is currently visible. + * You can use this scope to control the visibility of the flyout and interact with the anchor. + * + * The [isFlyoutVisible] property should be set to true to show the flyout and false to hide it. + * It's a two-way binding that updates the flyout's visibility and is updated when the flyout is dismissed. + * + * **Example:** + * + * ```kotlin + * FlyoutContainer( + * flyout = { + * Text("Flyout Content") + * } + * ) { + * Button(onClick = { isFlyoutVisible = true }) { + * Text("Show Flyout") + * } + * } + * ``` + * In this example, clicking the "Show Flyout" button will set `isFlyoutVisible` to true, causing the flyout to appear. + * Clicking outside of the flyout will set `isFlyoutVisible` to false, hiding the flyout. + */ +@OptIn(ExperimentalFluentApi::class) +interface FlyoutContainerScope : FlyoutAnchorScope { + + var isFlyoutVisible: Boolean + +} + +/** + * Scope for configuring the anchor and size of a flyout. + * + * This interface provides functions to define the flyout's anchoring point and control its size relative to the anchor. + */ +@ExperimentalFluentApi +interface FlyoutAnchorScope { + + fun Modifier.flyoutAnchor(): Modifier + + fun Modifier.flyoutSize(matchAnchorWidth: Boolean = false): Modifier +} + +/** + * Provides a scope for defining the anchor point and size constraints for a Flyout. + * + * This composable establishes a context where the anchor for a Flyout can be defined, + * allowing subsequent components within the scope to be positioned relative to this anchor. + * It also manages the padding around the anchor, ensuring proper spacing between the anchor + * and the flyout. + * + * @param anchorPadding The padding to be applied around the flyout anchor. + * Defaults to `flyoutPopPaddingFixShadowRender + flyoutDefaultPadding`, which + * considers adjustments for shadow rendering and a default padding value. + * @param content The composable content that defines the Flyout anchor and + * any additional components that should be part of the Flyout's context. + * This lambda receives a `FlyoutAnchorScope` instance, allowing the use of + * modifier functions like `flyoutAnchor()` and `flyoutSize()` within this context. + */ +@ExperimentalFluentApi +@Composable +fun FlyoutAnchorScope( + anchorPadding: Dp = flyoutPopPaddingFixShadowRender + flyoutDefaultPadding, + content: @Composable FlyoutAnchorScope.() -> Unit +) { + content(rememberFlyoutAnchorScope(anchorPadding)) +} + +@ExperimentalFluentApi +@Stable +@Composable +internal fun rememberFlyoutAnchorScope(padding: Dp = flyoutPopPaddingFixShadowRender + flyoutDefaultPadding): FlyoutAnchorScope { + val calculateMaxHeight = rememberFlyoutCalculateMaxHeight(padding) + return remember(calculateMaxHeight) { + FlyoutAnchorScopeImpl(calculateMaxHeight) + } +} + +@ExperimentalFluentApi +private class FlyoutAnchorScopeImpl( + private val calculateMaxHeight: (anchorCoordinates: LayoutCoordinates) -> Int +) : FlyoutAnchorScope { + private var anchorWidth by mutableIntStateOf(0) + private var flyoutMaxHeight by mutableIntStateOf(0) + + override fun Modifier.flyoutAnchor(): Modifier = this.onGloballyPositioned { + anchorWidth = it.size.width + flyoutMaxHeight = calculateMaxHeight(it) + } + + override fun Modifier.flyoutSize(matchAnchorWidth: Boolean): Modifier { + return this.layout { measurable, constraints -> + val flyoutWidth = constraints.constrainWidth(anchorWidth) + val flyoutConstraints = constraints.copy( + maxHeight = constraints.constrainHeight(flyoutMaxHeight), + minWidth = if (matchAnchorWidth) flyoutWidth else constraints.minWidth, + maxWidth = if (matchAnchorWidth) flyoutWidth else constraints.maxWidth, + ) + val placeable = measurable.measure(flyoutConstraints) + layout(placeable.width, placeable.height) { + placeable.place(0, 0) + } + } + } + +} + +@Composable +internal expect fun rememberFlyoutCalculateMaxHeight(padding: Dp): (anchorCoordinates: LayoutCoordinates) -> Int + +//TODO Remove when shadow can show with animated visibility +internal val flyoutPopPaddingFixShadowRender = 0.dp +internal val flyoutDefaultPadding = 8.dp + +internal fun flyoutEnterSpec() = + tween(FluentDuration.ShortDuration, easing = FluentEasing.FastInvokeEasing) + +internal fun flyoutExitSpec() = + tween(FluentDuration.ShortDuration, easing = FluentEasing.FastDismissEasing) + +internal fun defaultFlyoutEnterPlacementAnimation(placement: FlyoutPlacement): EnterTransition { + return fadeIn(flyoutEnterSpec()) + when (placement) { + FlyoutPlacement.Auto, FlyoutPlacement.Full -> scaleIn(flyoutEnterSpec()) + FlyoutPlacement.Top, FlyoutPlacement.TopAlignedEnd, FlyoutPlacement.TopAlignedStart -> slideInVertically( + flyoutEnterSpec() + ) { (it / 2f).toInt() } + + FlyoutPlacement.Bottom, FlyoutPlacement.BottomAlignedEnd, FlyoutPlacement.BottomAlignedStart -> slideInVertically( + flyoutEnterSpec() + ) + + FlyoutPlacement.Start, FlyoutPlacement.StartAlignedTop, FlyoutPlacement.StartAlignedBottom -> slideInHorizontally( + flyoutEnterSpec() + ) { (it / 2f).toInt() } + + FlyoutPlacement.End, FlyoutPlacement.EndAlignedTop, FlyoutPlacement.EndAlignedBottom -> slideInHorizontally( + flyoutEnterSpec() + ) + } +} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/FlyoutPositionProvider.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/FlyoutPositionProvider.kt similarity index 93% rename from fluent/src/commonMain/kotlin/com/konyaco/fluent/component/FlyoutPositionProvider.kt rename to fluent/src/commonMain/kotlin/io/github/composefluent/component/FlyoutPositionProvider.kt index 751cfffd..778466ce 100644 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/FlyoutPositionProvider.kt +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/FlyoutPositionProvider.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.component +package io.github.composefluent.component import androidx.compose.foundation.layout.PaddingValues import androidx.compose.runtime.* @@ -10,8 +10,18 @@ import androidx.compose.ui.unit.* import androidx.compose.ui.window.PopupPositionProvider import kotlin.jvm.JvmInline +/** + * Creates and remembers a [FlyoutPositionProvider] that can be used to position a flyout relative to an anchor. + * + * @param initialPlacement The initial placement of the flyout. Defaults to [FlyoutPlacement.Auto]. + * @param paddingToAnchor The padding between the flyout and its anchor. Defaults to [flyoutDefaultPadding]. + * @param adaptivePlacement Whether the flyout should adapt its placement based on available space. + * If `true`, the flyout will try to reposition itself to fit within the window bounds. + * If `false`, the flyout will strictly adhere to the [initialPlacement]. + * @return A remembered [FlyoutPositionProvider] instance. + */ @Composable -internal fun rememberFlyoutPositionProvider( +fun rememberFlyoutPositionProvider( initialPlacement: FlyoutPlacement = FlyoutPlacement.Auto, paddingToAnchor: PaddingValues = PaddingValues(flyoutDefaultPadding), adaptivePlacement: Boolean = false @@ -22,8 +32,18 @@ internal fun rememberFlyoutPositionProvider( } } +/** + * [FlyoutPositionProvider] is a [PopupPositionProvider] that calculates the position of a flyout + * popup relative to an anchor. It considers the available space in the window and the + * preferred placement of the flyout to determine the optimal position. + * + * @param density The density of the display. + * @param initialPlacement The initial placement preference of the flyout. Defaults to [FlyoutPlacement.Auto]. + * @param paddingToAnchor The padding between the flyout and the anchor. Defaults to [flyoutDefaultPadding]. + * @param adaptivePlacement Whether the placement should adapt based on available space. Defaults to false. + */ @Stable -internal open class FlyoutPositionProvider( +open class FlyoutPositionProvider( private val density: Density, private val initialPlacement: FlyoutPlacement = FlyoutPlacement.Auto, private val paddingToAnchor: PaddingValues = PaddingValues(flyoutDefaultPadding), diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/FontIcon.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/FontIcon.kt new file mode 100644 index 00000000..a4d98f06 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/FontIcon.kt @@ -0,0 +1,413 @@ +package io.github.composefluent.component + +import androidx.compose.animation.core.animateFloat +import androidx.compose.animation.core.animateFloatAsState +import androidx.compose.animation.core.snap +import androidx.compose.animation.core.tween +import androidx.compose.animation.core.updateTransition +import androidx.compose.foundation.interaction.InteractionSource +import androidx.compose.foundation.interaction.PressInteraction +import androidx.compose.foundation.interaction.collectIsPressedAsState +import androidx.compose.foundation.layout.height +import androidx.compose.runtime.Composable +import androidx.compose.runtime.Immutable +import androidx.compose.runtime.LaunchedEffect +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import androidx.compose.runtime.staticCompositionLocalOf +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.graphicsLayer +import androidx.compose.ui.graphics.vector.ImageVector +import androidx.compose.ui.layout.layout +import androidx.compose.ui.platform.LocalDensity +import androidx.compose.ui.text.font.FontFamily +import androidx.compose.ui.unit.Constraints +import androidx.compose.ui.unit.IntSize +import androidx.compose.ui.unit.TextUnit +import androidx.compose.ui.unit.dp +import androidx.compose.ui.unit.sp +import io.github.composefluent.LocalContentAlpha +import io.github.composefluent.LocalContentColor +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.filled.CaretDown +import io.github.composefluent.icons.filled.CaretLeft +import io.github.composefluent.icons.filled.CaretRight +import io.github.composefluent.icons.filled.CaretUp +import io.github.composefluent.icons.filled.Checkmark +import io.github.composefluent.icons.filled.ChevronRight +import io.github.composefluent.icons.filled.MoreHorizontal +import io.github.composefluent.icons.filled.Star +import io.github.composefluent.icons.regular.Add +import io.github.composefluent.icons.regular.ArrowLeft +import io.github.composefluent.icons.regular.ArrowRight +import io.github.composefluent.icons.regular.CalendarLtr +import io.github.composefluent.icons.regular.ChevronDown +import io.github.composefluent.icons.regular.ChevronUp +import io.github.composefluent.icons.regular.ClipboardPaste +import io.github.composefluent.icons.regular.Copy +import io.github.composefluent.icons.regular.Cut +import io.github.composefluent.icons.regular.Dismiss +import io.github.composefluent.icons.regular.Eye +import io.github.composefluent.icons.regular.Navigation +import io.github.composefluent.icons.regular.Search +import io.github.composefluent.icons.regular.Settings +import io.github.composefluent.icons.regular.Star +import io.github.composefluent.icons.regular.Subtract +import kotlin.jvm.JvmInline + +//TODO Public +@Composable +internal fun FontIcon( + glyph: Char, + modifier: Modifier = Modifier, + iconSize: TextUnit = FontIconSize.Standard.value.sp, + fallback: (@Composable () -> Unit)? = null, +) { + if (LocalFontIconFontFamily.current != null || fallback == null) { + Text( + text = glyph.toString(), + fontFamily = LocalFontIconFontFamily.current, + fontSize = iconSize, + color = LocalContentColor.current.copy(LocalContentAlpha.current), + modifier = Modifier.then(modifier) + .height(with(LocalDensity.current) { iconSize.toDp() }), + onTextLayout = { + } + ) + } else { + fallback() + } +} + +@Composable +internal fun FontIcon( + glyph: Char, + vector: (() -> ImageVector)?, + contentDescription: String?, + modifier: Modifier = Modifier, + iconSize: FontIconSize = FontIconSize.Standard, + fallbackSize: FontIconSize = iconSize +) { + FontIcon( + glyph = glyph, + modifier = modifier, + iconSize = iconSize.value.sp, + fallback = if (vector == null) { + null + } else { + { + Icon( + imageVector = vector(), + contentDescription = contentDescription, + modifier = modifier + .layout { measurable, constraints -> + val size = fallbackSize.value.dp.roundToPx() + val fontSize = iconSize.value.sp.roundToPx() + val placeable = measurable.measure(Constraints.fixed(size, size)) + layout(fontSize, fontSize) { + val offset = Alignment.Center.align( + IntSize(size, size), + IntSize(fontSize, fontSize), + layoutDirection + ) + placeable.place(offset) + } + } + ) + } + } + ) +} + +/** + * Font icon set that contains all icon from components. + * + * Each [FontIconPrimitive] represents a specific icon. It stores: + * - `glyph`: The character representing the icon in the font. + * - `vector`: A lambda function that lazily provides an [ImageVector] as a fallback + * when the font is not available or the icon cannot be rendered using the font. + * + * Usage: + * + * ```kotlin + * FontIcon(type = FontIconPrimitive.Add, contentDescription = "Add") + * ``` + * + * The Solid8 icons is used for small button action. + * + */ +enum class FontIconPrimitive( + internal val glyph: Char, + //Lazy create fallback icon + internal val vector: () -> ImageVector +) { + Accept('\uF78C', { Icons.Filled.Checkmark }), + Add('\uE710', { Icons.Default.Add }), + ArrowRight('\uE64D', { Icons.Default.ArrowRight }), + Cancel('\uE711', { Icons.Default.Dismiss }), + Calendar('\uE787', { Icons.Default.CalendarLtr }), + //Solid 8 + CaretDown('\uEDDC', { Icons.Filled.CaretDown }), + //Solid 8 + CaretLeft('\uEDD9', { Icons.Filled.CaretLeft }), + //Solid 8 + CaretRight('\uEDDA', { Icons.Filled.CaretRight }), + //Solid 8 + CaretUp('\uEDDB', { Icons.Filled.CaretUp }), + ChevronDown('\uE972', { Icons.Default.ChevronDown }), + ChevronRight('\uE974', { Icons.Filled.ChevronRight }), + ChevronUp('\uE70E', { Icons.Default.ChevronUp }), + ChromeBack('\uE830', { Icons.Default.ArrowLeft }), + Close('\uE624', { Icons.Default.Dismiss }), + Copy('\uE8C8', { Icons.Default.Copy }), + Cut('\uE8C6', { Icons.Default.Cut }), + Dash('\uE629', { Icons.Default.Subtract }), + FavoriteStarFull('\uE735', { Icons.Filled.Star }), + GlobalNavigation('\uE700', { Icons.Default.Navigation }), + More('\uE712', { Icons.Filled.MoreHorizontal }), + Paste('\uE77F', { Icons.Default.ClipboardPaste }), + RatingStar('\uE734', { Icons.Default.Star }), + RevealPassword('\uF78D', { Icons.Default.Eye }), + Search('\uF78B', { Icons.Default.Search }), + Settings('\uE713', { Icons.Default.Settings }) +} + +/** + * A composable function that displays a font icon based on the specified [FontIconPrimitive]. + * + * @param type The [FontIconPrimitive] representing the icon to be displayed. + * @param contentDescription Text used by accessibility services to describe what this icon represents. + * This should always be provided unless this icon is used for decorative purposes, + * and does not represent a meaningful action that a user can take. + * This text should be localized, such as by using [androidx.compose.ui.res.stringResource] or similar. + * @param modifier The [Modifier] to be applied to the icon. + * @param size The desired [FontIconSize] of the icon. Defaults to [FontIconSize.Standard]. + * @param fallbackSize The [FontIconSize] to use when displaying the fallback vector icon if the font is not loaded. + * Defaults to [FontIconSize] with 2f added to the value of [size]. + */ +@Composable +fun FontIcon( + type: FontIconPrimitive, + contentDescription: String?, + modifier: Modifier = Modifier, + size: FontIconSize = FontIconSize.Standard, + fallbackSize: FontIconSize = FontIconSize(size.value + 2f) +) { + FontIcon( + glyph = type.glyph, + vector = type.vector, + contentDescription = contentDescription, + iconSize = size, + fallbackSize = fallbackSize, + modifier = modifier + ) +} + + +/** + * A composable function that displays a font icon with a fixed size of 8. + * + * This function provides a convenient way to display icons with a pre-defined size, + * suitable for UI elements where consistency in icon size is desired. It uses a size of 8f + * for the icon by default, but allows you to specify the type, content description, + * modifier, and a fallback size. + * + * @param type The type of the font icon to display, selected from the [FontIconPrimitive] enum. + * @param contentDescription The content description for accessibility. + * @param modifier Modifier to apply to the icon. + * @param size The fixed size of the icon, defaults to 8f. + * @param fallbackSize The fallback size to use if the font icon cannot be displayed, defaults to size.value + 6f. + */ +@Composable +fun FontIconSolid8( + type: FontIconPrimitive, + contentDescription: String?, + modifier: Modifier = Modifier, + size: FontIconSize = FontIconSize(8f), + fallbackSize: FontIconSize = FontIconSize(size.value + 6f) +) { + FontIcon( + type = type, + contentDescription = contentDescription, + modifier = modifier, + size = size, + fallbackSize = fallbackSize + ) +} + +/** + * Contains the default values used for [FontIcon]. + */ +object FontIconDefaults { + + /** + * A composable function that creates a back icon with a press animation. + * + * @param interactionSource The [InteractionSource] that represents the stream of [Interaction]s + * for this component. + * @param size The size of the icon. Defaults to [FontIconSize.Standard]. + * @param contentDescription The content description for the icon, used for accessibility. + * Defaults to "Back". + * @param modifier The [Modifier] to be applied to the icon. + */ + @Composable + fun BackIcon( + interactionSource: InteractionSource, + size: FontIconSize = FontIconSize.Standard, + contentDescription: String? = "Back", + modifier: Modifier = Modifier, + ) { + val isPressed by interactionSource.collectIsPressedAsState() + val scaleX = animateFloatAsState( + targetValue = if (isPressed) 0.9f else 1f, + animationSpec = tween( + durationMillis = FluentDuration.ShortDuration, + easing = FluentEasing.FastInvokeEasing + ) + ) + FontIcon( + type = FontIconPrimitive.ChromeBack, + size = size, + contentDescription = contentDescription, + modifier = modifier.graphicsLayer { + this.scaleX = scaleX.value + translationX = (1f - scaleX.value) * 6.dp.toPx() + } + ) + } + + /** + * A composable function that displays a navigation icon. + * + * This function provides a visual representation of a navigation icon, typically used to + * indicate a menu or navigation drawer. It includes an interaction effect where the icon + * scales down slightly when pressed. + * + * @param interactionSource The [InteractionSource] to observe for user interactions. + * @param size The size of the icon, defaulting to [FontIconSize.Standard]. + * @param contentDescription The content description for the icon, used for accessibility. + * Defaults to "Navigation". + * @param modifier The modifier to apply to the icon. + */ + @Composable + fun NavigationIcon( + interactionSource: InteractionSource, + size: FontIconSize = FontIconSize.Standard, + contentDescription: String? = "Navigation", + modifier: Modifier = Modifier, + ) { + val isPressed by interactionSource.collectIsPressedAsState() + val scaleX = animateFloatAsState( + targetValue = if (isPressed) 0.6f else 1f, + animationSpec = tween( + durationMillis = FluentDuration.ShortDuration, + easing = FluentEasing.FastInvokeEasing + ) + ) + FontIcon( + type = FontIconPrimitive.GlobalNavigation, + size = size, + contentDescription = contentDescription, + modifier = modifier.graphicsLayer { + this.scaleX = scaleX.value + } + ) + } + + /** + * A composable function that displays a settings icon with a rotation animation on press. + * + * The icon rotates slightly (-30 degrees) when pressed and then performs a full rotation (360 degrees) + * upon release or cancellation of the press. The animation durations and easing are defined using + * `FluentDuration` and `FluentEasing`. + * + * @param interactionSource The [InteractionSource] that will be used to detect press interactions. + * @param size The size of the icon, defaulting to [FontIconSize.Standard]. + * @param contentDescription The content description for accessibility, defaulting to "Settings". + * @param modifier The modifier to be applied to the icon. + */ + @Composable + fun SettingIcon( + interactionSource: InteractionSource, + size: FontIconSize = FontIconSize.Standard, + contentDescription: String? = "Settings", + modifier: Modifier = Modifier, + ) { + var latestPress by remember { mutableStateOf(null) } + LaunchedEffect(interactionSource) { + interactionSource.interactions.collect { value -> + when (value) { + is PressInteraction.Press -> latestPress = value + is PressInteraction.Release -> latestPress = value + is PressInteraction.Cancel -> latestPress = value + } + } + } + val transition = updateTransition(latestPress) + val rotation = transition.animateFloat( + transitionSpec = { + when { + initialState == null && targetState is PressInteraction.Press -> + tween(durationMillis = FluentDuration.ShortDuration, easing = FluentEasing.FastInvokeEasing) + + (initialState is PressInteraction.Press && targetState is PressInteraction.Release) || + (initialState is PressInteraction.Press && targetState is PressInteraction.Cancel) -> + tween(durationMillis = FluentDuration.LongDuration, easing = FluentEasing.FastInvokeEasing) + + else -> snap() + } + } + ){ + when(it) { + null -> 0f + is PressInteraction.Press -> -30f + else -> 360f + } + } + LaunchedEffect(transition.currentState, transition.isRunning) { + if (!transition.isRunning) { + if (transition.currentState is PressInteraction.Release || transition.currentState is PressInteraction.Cancel) { + latestPress = null + } + } + } + FontIcon( + type = FontIconPrimitive.Settings, + size = size, + contentDescription = contentDescription, + modifier = modifier.graphicsLayer { + rotationZ = rotation.value + } + ) + + } +} + +/** + * Represents the size of a font icon. + * + * This class is a value class that wraps a [Float] representing the size. + * It provides a convenient way to define and manage icon sizes, ensuring type safety. + * + * @property value The size value of the font icon. + */ +@Immutable +@JvmInline +value class FontIconSize(val value: Float) { + companion object { + val Standard = FontIconSize(16f) + val Small = FontIconSize(12f) + } +} + +@Composable +internal expect fun ProvideFontIcon( + content: @Composable () -> Unit +) + +internal val LocalFontIconFontFamily = staticCompositionLocalOf { null } diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/GridViewItem.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/GridViewItem.kt new file mode 100644 index 00000000..22d4203c --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/GridViewItem.kt @@ -0,0 +1,336 @@ +package io.github.composefluent.component + +import androidx.compose.foundation.background +import androidx.compose.foundation.border +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.BoxScope +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.selection.selectable +import androidx.compose.foundation.shape.CornerBasedShape +import androidx.compose.runtime.Composable +import androidx.compose.runtime.Immutable +import androidx.compose.runtime.Stable +import androidx.compose.runtime.remember +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.draw.clip +import androidx.compose.ui.geometry.Size +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.Outline +import androidx.compose.ui.graphics.Shape +import androidx.compose.ui.unit.Density +import androidx.compose.ui.unit.LayoutDirection +import androidx.compose.ui.unit.dp +import io.github.composefluent.FluentTheme +import io.github.composefluent.background.LayerShapeHelper +import io.github.composefluent.background.calculateBorderPadding +import io.github.composefluent.scheme.PentaVisualScheme +import io.github.composefluent.scheme.VisualStateScheme +import io.github.composefluent.scheme.collectVisualState +import kotlin.jvm.JvmInline + +/** + * A composable that represents an item in a grid view with multi-selection capabilities. + * + * This item can be selected or deselected, and it displays a checkbox overlay to indicate its selection state. + * + * @param selected Whether this item is currently selected. + * @param onSelectedChange A callback that is invoked when the selection state of the item changes. + * It receives the new selection state (`true` for selected, `false` for deselected). + * @param modifier The modifier to be applied to the item. + * @param enabled Controls the enabled state of the item. When `false`, the item is not selectable and visually appears disabled. + * @param colors The [VisualStateScheme] that defines the colors for the grid view item in different interaction states (default, hovered, pressed, disabled). + * Defaults to [GridViewItemDefaults.selectedColors] if selected, otherwise [GridViewItemDefaults.defaultColors]. + * @param checkBoxColorScheme The [VisualStateScheme] that defines the colors for the checkbox overlay in different interaction states. + * Defaults to [GridViewItemDefaults.selectedCheckBoxColors] if selected, otherwise [GridViewItemDefaults.defaultCheckBoxColors]. + * @param interactionSource The [MutableInteractionSource] representing the stream of [androidx.compose.foundation.interaction.Interaction]s + * for this item. You can create and pass in your own remembered [MutableInteractionSource] if you want to observe + * [androidx.compose.foundation.interaction.Interaction]s and customize the item's appearance in different [androidx.compose.foundation.interaction.Interaction]s. + * @param content The content to be displayed within the grid view item. + */ +@Composable +fun MultiSelectGridViewItem( + selected: Boolean, + onSelectedChange: (Boolean) -> Unit, + modifier: Modifier = Modifier, + enabled: Boolean = true, + colors: VisualStateScheme = if (selected) { + GridViewItemDefaults.selectedColors() + } else { + GridViewItemDefaults.defaultColors() + }, + checkBoxColorScheme: VisualStateScheme = if (selected) { + GridViewItemDefaults.selectedCheckBoxColors() + } else { + GridViewItemDefaults.defaultCheckBoxColors() + }, + interactionSource: MutableInteractionSource? = null, + content: @Composable () -> Unit +) { + GridViewItem( + selected = selected, + onSelectedChange = onSelectedChange, + modifier = modifier, + enabled = enabled, + interactionSource = interactionSource, + colors = colors, + content = { content() }, + overlay = { + CheckBox( + checked = selected, + onCheckStateChange = onSelectedChange, + colors = checkBoxColorScheme, + enabled = enabled, + modifier = Modifier + .align(Alignment.TopEnd) + .padding(top = 4.dp, end = 4.dp) + ) + } + ) +} + +/** + * A composable that represents an item in a grid view. + * + * This composable provides a selectable item that can be used in a grid layout. + * It supports different states (default, hovered, pressed, disabled) and can be customized + * with different colors and interaction behaviors. + * + * @param selected `true` if the item is currently selected, `false` otherwise. + * @param onSelectedChange Callback function that is invoked when the selected state of the item changes. + * It receives the new selected state as a boolean parameter. + * @param modifier Modifier to apply to this item. + * @param enabled `true` if the item is enabled and interactive, `false` otherwise. + * @param interactionSource Optional [MutableInteractionSource] that will be used to dispatch + * [Interaction]s to indicate the item's state. If not provided, a [remembered][remember] + * instance will be used internally. + * @param colors [VisualStateScheme] that provides the colors for different states of the item. + * Defaults to [GridViewItemDefaults.selectedColors] when `selected` is true and + * [GridViewItemDefaults.defaultColors] otherwise. + * @param content The content to be displayed inside the grid view item. + */ +@Composable +fun GridViewItem( + selected: Boolean, + onSelectedChange: (Boolean) -> Unit, + modifier: Modifier = Modifier, + enabled: Boolean = true, + interactionSource: MutableInteractionSource? = null, + colors: VisualStateScheme = if (selected) { + GridViewItemDefaults.selectedColors() + } else { + GridViewItemDefaults.defaultColors() + }, + content: @Composable () -> Unit +) { + GridViewItem( + selected = selected, + onSelectedChange = onSelectedChange, + modifier = modifier, + enabled = enabled, + interactionSource = interactionSource, + colors = colors, + content = { content() }, + overlay = null + ) +} + +/** + * Represents the colors of a grid view item. + * + * @property borderColor The color of the border around the item. + * @property backgroundColor The background color of the item. + */ +@Stable +data class GridViewItemColor( + val borderColor: Color, + val backgroundColor: Color +) + +typealias GridViewItemColorScheme = PentaVisualScheme + +/** + * Contains the default values used for [GridViewItem]. + */ +object GridViewItemDefaults { + + /** + * The default spacing used for padding within the `GridViewItem` container. + * This spacing is applied around the content and between the content and the border, + * effectively creating a visual margin. + */ + val spacing = 4.dp + + /** + * Creates a [GridViewItemColorScheme] with the default colors for a [GridViewItem]. + * + * @param default The default colors for the GridViewItem. + * * `borderColor`: The color of the border when the item is in its default state. Defaults to transparent. + * * `backgroundColor`: The background color when the item is in its default state. Defaults to `subtleFill.transparent` from [FluentTheme.colors]. + * @param hovered The colors for the GridViewItem when hovered. + * * `borderColor`: The border color when the item is hovered. Defaults to `stroke.control.onAccentTertiary` from [FluentTheme.colors]. + * * `backgroundColor`: The background color when the item is hovered. Defaults to `subtleFill.secondary` from [FluentTheme.colors]. + * @param pressed The colors for the GridViewItem when pressed. + * * `borderColor`: The border color when the item is pressed. Defaults to transparent. + * * `backgroundColor`: The background color when the item is pressed. Defaults to `subtleFill.tertiary` from [FluentTheme.colors]. + * @param disabled The colors for the GridViewItem when disabled. Defaults to the same as `default`. + * @return A [GridViewItemColorScheme] containing the specified colors. + */ + @Stable + @Composable + fun defaultColors( + default: GridViewItemColor = GridViewItemColor( + borderColor = Color.Transparent, + backgroundColor = FluentTheme.colors.subtleFill.transparent + ), + hovered: GridViewItemColor = GridViewItemColor( + borderColor = FluentTheme.colors.stroke.control.onAccentTertiary, + backgroundColor = FluentTheme.colors.subtleFill.secondary + ), + pressed: GridViewItemColor = GridViewItemColor( + borderColor = Color.Transparent, + backgroundColor = FluentTheme.colors.subtleFill.tertiary + ), + disabled: GridViewItemColor = default, + ): GridViewItemColorScheme = PentaVisualScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) + + /** + * Creates a [GridViewItemColorScheme] with colors for a selected [GridViewItem] in different states. + * + * @param default The colors used when the [GridViewItem] is in its default selected state. + * By default, it uses a [FluentTheme.colors.fillAccent.default] border and a [FluentTheme.colors.subtleFill.tertiary] background. + * @param hovered The colors used when the [GridViewItem] is selected and hovered over. + * By default, it uses a [FluentTheme.colors.fillAccent.secondary] border and a [FluentTheme.colors.subtleFill.secondary] background. + * @param pressed The colors used when the [GridViewItem] is selected and pressed. + * By default, it uses a [FluentTheme.colors.fillAccent.tertiary] border and a [FluentTheme.colors.subtleFill.tertiary] background. + * @param disabled The colors used when the [GridViewItem] is selected and disabled. + * By default, it uses a [FluentTheme.colors.fillAccent.disabled] border and a [FluentTheme.colors.subtleFill.secondary] background. + * @return A [GridViewItemColorScheme] that defines the colors for a selected [GridViewItem] in various states. + */ + @Stable + @Composable + fun selectedColors( + default: GridViewItemColor = GridViewItemColor( + borderColor = FluentTheme.colors.fillAccent.default, + backgroundColor = FluentTheme.colors.subtleFill.tertiary + ), + hovered: GridViewItemColor = GridViewItemColor( + borderColor = FluentTheme.colors.fillAccent.secondary, + backgroundColor = FluentTheme.colors.subtleFill.secondary + ), + pressed: GridViewItemColor = GridViewItemColor( + borderColor = FluentTheme.colors.fillAccent.tertiary, + backgroundColor = FluentTheme.colors.subtleFill.tertiary + ), + disabled: GridViewItemColor = GridViewItemColor( + borderColor = FluentTheme.colors.fillAccent.disabled, + backgroundColor = FluentTheme.colors.subtleFill.secondary + ), + ): GridViewItemColorScheme = PentaVisualScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) + + //TODO ColorOnImage + @Stable + @Composable + fun defaultCheckBoxColors() = CheckBoxDefaults.defaultCheckBoxColors() + + //TODO ColorOnImage + @Stable + @Composable + fun selectedCheckBoxColors() = CheckBoxDefaults.selectedCheckBoxColors() +} + +@Composable +private fun GridViewItem( + selected: Boolean, + onSelectedChange: (Boolean) -> Unit, + modifier: Modifier, + enabled: Boolean, + colors: VisualStateScheme, + interactionSource: MutableInteractionSource?, + overlay: (@Composable BoxScope.() -> Unit)?, + content: @Composable BoxScope.() -> Unit +) { + val itemShape = FluentTheme.shapes.control + val targetInteractionSource = interactionSource ?: remember { MutableInteractionSource() } + val currentColor = colors.schemeFor(targetInteractionSource.collectVisualState(!enabled)) + Box( + propagateMinConstraints = true, + modifier = modifier + .clip(itemShape) + .selectable( + enabled = enabled, + selected = selected, + onClick = { onSelectedChange(!selected) }, + indication = null, + interactionSource = targetInteractionSource + ) + .border(SelectedItemBorderSize, currentColor.borderColor, shape = itemShape) + ) { + Box( + propagateMinConstraints = true, + modifier = if (selected) { + val innerShape = remember(itemShape) { + if (itemShape is CornerBasedShape) { + GridViewItemInnerShape(itemShape) + } else { + itemShape + } + } + Modifier + .clip(innerShape) + .background( + color = currentColor.backgroundColor, + shape = innerShape + ) + } else { + Modifier.background( + color = currentColor.backgroundColor, + shape = itemShape + ) + } + ) { + content() + } + if (overlay != null) { + Box( + content = overlay, + modifier = Modifier + .matchParentSize() + ) + } + + } +} + +@Stable +@Immutable +@JvmInline +private value class GridViewItemInnerShape(private val itemShape: CornerBasedShape): Shape { + override fun createOutline( + size: Size, + layoutDirection: LayoutDirection, + density: Density + ): Outline { + return LayerShapeHelper.createInnerOutline( + outsideShape = itemShape, + size = size, + density = density, + layoutDirection = layoutDirection, + paddingPx = itemShape.calculateBorderPadding(density, InnerPaddingSize) + ) + } +} + +private val SelectedItemBorderSize = 2.dp +private val InnerPaddingSize = 3.dp \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/Icon.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/Icon.kt new file mode 100644 index 00000000..0033f5c8 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/Icon.kt @@ -0,0 +1,104 @@ +package io.github.composefluent.component + +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.size +import androidx.compose.runtime.Composable +import androidx.compose.ui.Modifier +import androidx.compose.ui.draw.paint +import androidx.compose.ui.geometry.Size +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.ColorFilter +import androidx.compose.ui.graphics.painter.Painter +import androidx.compose.ui.graphics.toolingGraphicsLayer +import androidx.compose.ui.graphics.vector.ImageVector +import androidx.compose.ui.graphics.vector.rememberVectorPainter +import androidx.compose.ui.layout.ContentScale +import androidx.compose.ui.semantics.Role +import androidx.compose.ui.semantics.contentDescription +import androidx.compose.ui.semantics.role +import androidx.compose.ui.semantics.semantics +import androidx.compose.ui.unit.dp +import io.github.composefluent.LocalContentAlpha +import io.github.composefluent.LocalContentColor + + +/** + * A composable that draws an [ImageVector] as an icon. + * + * @param imageVector The [ImageVector] to draw. + * @param contentDescription Text used by accessibility services to describe what this icon + * represents. This should always be provided unless this icon is used for decorative purposes, + * and does not represent a meaningful action that a user can take. This text should be + * localized, such as by using [stringResource] or similar. + * @param modifier Modifier to apply to this icon. + * @param tint The tint to apply to the icon. If [Color.Unspecified] is provided, then no tint is + * applied. + */ +@Composable +fun Icon( + imageVector: ImageVector, + contentDescription: String?, + modifier: Modifier = Modifier, + tint: Color = LocalContentColor.current.copy(LocalContentAlpha.current) +) { + val painter = rememberVectorPainter(imageVector) + Icon(painter, tint, contentDescription, modifier) +} + +/** + * A composable that draws a [Painter] using the current theme's icon color and alpha. + * + * This function is useful for displaying icons that are provided as a [Painter] object. + * It automatically applies the correct color and alpha to the icon based on the current + * [LocalContentColor] and [LocalContentAlpha]. + * + * @param painter The [Painter] to draw. + * @param tint The color to apply to the [painter]. If [Color.Unspecified] is provided, then no tint is + * applied. + * @param contentDescription Text used by accessibility services to describe what this icon + * represents. This should always be provided unless this icon is used for decorative purposes, + * and does not represent a meaningful action that a user can take. + * @param modifier Optional [Modifier] to be applied to the icon. + */ +@Composable +fun Icon( + painter: Painter, + tint: Color = LocalContentColor.current.copy(LocalContentAlpha.current), + contentDescription: String?, + modifier: Modifier = Modifier +) { + // TODO: b/149735981 semantics for content description + val colorFilter = if (tint == Color.Unspecified) null else ColorFilter.tint(tint) + val semantics = if (contentDescription != null) { + Modifier.semantics { + this.contentDescription = contentDescription + this.role = Role.Image + } + } else { + Modifier + } + Box( + modifier.toolingGraphicsLayer() + .defaultSizeFor(painter) + .paint( + painter, + colorFilter = colorFilter, + contentScale = ContentScale.Fit + ) + .then(semantics) + ) +} + +private fun Modifier.defaultSizeFor(painter: Painter) = + this.then( + if (painter.intrinsicSize == Size.Unspecified || painter.intrinsicSize.isInfinite()) { + DefaultIconSizeModifier + } else { + Modifier + } + ) + +private fun Size.isInfinite() = width.isInfinite() && height.isInfinite() + +// Default icon size, for icons with no intrinsic size information +private val DefaultIconSizeModifier = Modifier.size(16.dp) diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/InfoBar.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/InfoBar.kt new file mode 100644 index 00000000..72d0c626 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/InfoBar.kt @@ -0,0 +1,693 @@ +package io.github.composefluent.component + +import androidx.compose.foundation.layout.defaultMinSize +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.sizeIn +import androidx.compose.foundation.layout.wrapContentHeight +import androidx.compose.runtime.Composable +import androidx.compose.runtime.CompositionLocalProvider +import androidx.compose.runtime.Stable +import androidx.compose.runtime.remember +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.layout.FirstBaseline +import androidx.compose.ui.layout.IntrinsicMeasurable +import androidx.compose.ui.layout.IntrinsicMeasureScope +import androidx.compose.ui.layout.LastBaseline +import androidx.compose.ui.layout.Layout +import androidx.compose.ui.layout.Measurable +import androidx.compose.ui.layout.MeasureResult +import androidx.compose.ui.layout.MeasureScope +import androidx.compose.ui.layout.MultiContentMeasurePolicy +import androidx.compose.ui.unit.Constraints +import androidx.compose.ui.unit.dp +import io.github.composefluent.FluentTheme +import io.github.composefluent.LocalContentAlpha +import io.github.composefluent.LocalContentColor +import io.github.composefluent.LocalTextStyle +import io.github.composefluent.background.BackgroundSizing +import io.github.composefluent.background.Layer +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.regular.Dismiss + +/** + * An InfoBar is a transient UI element that presents brief, relevant information to the user. + * + * @param title The title content of the InfoBar. Usually a short, bold summary of the message. + * @param message The main message content of the InfoBar. Provides more details related to the title. + * @param modifier Modifier to be applied to the layout of the InfoBar. + * @param colors The set of colors used for the InfoBar, such as background, content, and icon colors. + * Defaults to [InfoBarDefaults.informationalColors]. + * @param icon Optional icon content of the InfoBar. If null, no icon will be displayed. Defaults to a + * badge indicating informational severity. + * @param action Optional action content for the InfoBar, such as a button. + * @param closeAction Optional close action content for the InfoBar. + */ +@Composable +fun InfoBar( + title: @Composable () -> Unit, + message: @Composable () -> Unit, + modifier: Modifier = Modifier, + colors: InfoBarColors = InfoBarDefaults.informationalColors(), + icon: (@Composable () -> Unit)? = { InfoBarDefaults.Badge(severity = InfoBarSeverity.Informational) }, + action: (@Composable () -> Unit)? = null, + closeAction: (@Composable () -> Unit)? = null, +) { + val currentColor = colors + Layer( + color = currentColor.backgroundColor, + contentColor = currentColor.contentColor, + backgroundSizing = BackgroundSizing.InnerBorderEdge, + modifier = modifier + ) { + InfoBarLayout( + title = { + CompositionLocalProvider( + LocalTextStyle provides FluentTheme.typography.bodyStrong, + content = title + ) + }, + message = { + CompositionLocalProvider( + LocalTextStyle provides FluentTheme.typography.body, + content = message + ) + }, + action = action, + closeAction = closeAction, + icon = icon?.let { icon -> + { + CompositionLocalProvider( + LocalContentColor provides currentColor.iconColor, + LocalContentAlpha provides currentColor.iconColor.alpha, + content = icon + ) + } + }, + modifier = Modifier + .wrapContentHeight() + .sizeIn(minHeight = InfoBarMinHeight) + .padding(start = 16.dp) + ) + } +} + +/** + * An [InfoBar] component that displays a title, message, and optional icon, action, and close action. + * This overload provides a predefined severity level to quickly set up common InfoBar types. + * + * @param title The title of the InfoBar. + * @param message The message displayed within the InfoBar. + * @param severity The [InfoBarSeverity] level (e.g., Informational, Success, Warning, Critical). + * This determines the default colors and icon if not explicitly overridden. + * @param modifier Modifier for styling and layout of the InfoBar. + * @param colors The [InfoBarColors] to be used for this InfoBar. If not specified, + * it defaults to colors based on the provided [severity]. + * @param icon An optional composable to display an icon. If not specified, it defaults to a badge + * with an icon determined by the provided [severity]. + * @param action An optional composable to display an action button. + * @param closeAction An optional composable to display a close action button. + */ +@Composable +fun InfoBar( + title: @Composable () -> Unit, + message: @Composable () -> Unit, + severity: InfoBarSeverity, + modifier: Modifier = Modifier, + colors: InfoBarColors = InfoBarDefaults.colors(severity), + icon: (@Composable () -> Unit)? = { + InfoBarDefaults.Badge(severity = severity, backgroundColor = colors.iconColor) + }, + action: (@Composable () -> Unit)? = null, + closeAction: (@Composable () -> Unit)? = null, +) { + InfoBar( + title = title, + message = message, + modifier = modifier, + icon = icon, + colors = colors, + action = action, + closeAction = closeAction + ) +} + +/** + * Represents the color scheme for the [InfoBar] component. + * + * @param backgroundColor The background color of the InfoBar. + * @param contentColor The color of the text content within the InfoBar. + * @param iconColor The color of the icon within the InfoBar. + */ +data class InfoBarColors( + val backgroundColor: Color, + val contentColor: Color, + val iconColor: Color +) + +/** + * Contains the default values used for [InfoBar]. + */ +object InfoBarDefaults { + + /** + * A composable function that creates a close action button, typically used to dismiss + * an InfoBar. + * + * @param onClick The callback to be invoked when the button is clicked. + * @param modifier The modifier to be applied to the button. + * @param enabled Controls the enabled state of the button. When `false`, the button will be + * disabled and will not respond to user interactions. + */ + @Composable + fun CloseActionButton( + onClick: () -> Unit, + modifier: Modifier = Modifier, + enabled: Boolean = true, + ) { + SubtleButton( + iconOnly = true, + onClick = onClick, + content = { + Icon(Icons.Default.Dismiss, contentDescription = null) + }, + disabled = !enabled, + modifier = modifier.defaultMinSize(38.dp, 38.dp) + ) + } + + /** + * A badge to show the severity of the [InfoBar]. + * + * @param modifier The [Modifier] to be applied to this badge. + * @param severity The [InfoBarSeverity] that this badge will display. + * @param contentDescription The content description for the icon. + * Defaults to [InfoBarSeverity.name]. + * @param backgroundColor The background color of the badge. + * Defaults to color from [FluentTheme] based on the [severity]. + */ + @Composable + fun Badge( + modifier: Modifier = Modifier, + severity: InfoBarSeverity = InfoBarSeverity.Informational, + contentDescription: String? = severity.name, + backgroundColor: Color = when (severity) { + InfoBarSeverity.Success -> FluentTheme.colors.system.success + InfoBarSeverity.Warning -> FluentTheme.colors.system.caution + InfoBarSeverity.Critical -> FluentTheme.colors.system.critical + InfoBarSeverity.Informational -> FluentTheme.colors.system.attention + } + ) { + Badge( + content = { + BadgeDefaults.Icon( + imageVector = when (severity) { + InfoBarSeverity.Success -> BadgeDefaults.successIcon + InfoBarSeverity.Warning -> BadgeDefaults.cautionIcon + InfoBarSeverity.Critical -> BadgeDefaults.criticalIcon + InfoBarSeverity.Informational -> BadgeDefaults.informationIcon + }, + contentDescription = contentDescription + ) + }, + backgroundColor = backgroundColor, + modifier = modifier + ) + } + + /** + * Returns the [InfoBarColors] that match the provided [severity]. + * + * @param severity The [InfoBarSeverity] used to determine the colors. + * @return The [InfoBarColors] associated with the given [severity]. + */ + @Stable + @Composable + fun colors(severity: InfoBarSeverity = InfoBarSeverity.Informational): InfoBarColors { + return when (severity) { + InfoBarSeverity.Success -> successColors() + InfoBarSeverity.Warning -> warningColors() + InfoBarSeverity.Critical -> criticalColors() + InfoBarSeverity.Informational -> informationalColors() + } + } + + /** + * Creates a set of [InfoBarColors] that represent the informational color scheme of an InfoBar. + * + * @param backgroundColor The background color of the InfoBar. Defaults to `FluentTheme.colors.background.card.secondary`. + * @param contentColor The color of the text and other content in the InfoBar. Defaults to `FluentTheme.colors.text.text.primary`. + * @param iconColor The color of the icon in the InfoBar. Defaults to `FluentTheme.colors.system.attention`. + * @return An [InfoBarColors] object with the specified colors. + */ + @Stable + @Composable + fun informationalColors( + backgroundColor: Color = FluentTheme.colors.background.card.secondary, + contentColor: Color = FluentTheme.colors.text.text.primary, + iconColor: Color = FluentTheme.colors.system.attention + ): InfoBarColors = InfoBarColors( + backgroundColor = backgroundColor, + contentColor = contentColor, + iconColor = iconColor + ) + + /** + * Creates a set of [InfoBarColors] that represent the success color scheme of an InfoBar. + * + * @param backgroundColor The background color of the InfoBar. Defaults to `FluentTheme.colors.system.successBackground`. + * @param contentColor The color of the text and other content in the InfoBar. Defaults to `FluentTheme.colors.text.text.primary`. + * @param iconColor The color of the icon in the InfoBar. Defaults to `FluentTheme.colors.system.success`. + * @return An [InfoBarColors] object with the specified colors. + */ + @Stable + @Composable + fun successColors( + backgroundColor: Color = FluentTheme.colors.system.successBackground, + contentColor: Color = FluentTheme.colors.text.text.primary, + iconColor: Color = FluentTheme.colors.system.success + ) = InfoBarColors( + backgroundColor = backgroundColor, + contentColor = contentColor, + iconColor = iconColor + ) + + /** + * Creates a set of [InfoBarColors] that represent the warning color scheme of an InfoBar. + * + * @param backgroundColor The background color of the InfoBar. Defaults to `FluentTheme.colors.system.cautionBackground`. + * @param contentColor The color of the text and other content in the InfoBar. Defaults to `FluentTheme.colors.text.text.primary`. + * @param iconColor The color of the icon in the InfoBar. Defaults to `FluentTheme.colors.system.caution`. + * @return An [InfoBarColors] object with the specified colors. + */ + @Stable + @Composable + fun warningColors( + backgroundColor: Color = FluentTheme.colors.system.cautionBackground, + contentColor: Color = FluentTheme.colors.text.text.primary, + iconColor: Color = FluentTheme.colors.system.caution + ) = InfoBarColors( + backgroundColor = backgroundColor, + contentColor = contentColor, + iconColor = iconColor + ) + + /** + * Creates a set of [InfoBarColors] that represent the critical color scheme of an InfoBar. + * + * @param backgroundColor The background color of the InfoBar. Defaults to `FluentTheme.colors.system.criticalBackground`. + * @param contentColor The color of the text and other content in the InfoBar. Defaults to `FluentTheme.colors.text.text.primary`. + * @param iconColor The color of the icon in the InfoBar. Defaults to `FluentTheme.colors.system.critical`. + * @return An [InfoBarColors] object with the specified colors. + */ + @Stable + @Composable + fun criticalColors( + backgroundColor: Color = FluentTheme.colors.system.criticalBackground, + contentColor: Color = FluentTheme.colors.text.text.primary, + iconColor: Color = FluentTheme.colors.system.critical + ) = InfoBarColors( + backgroundColor = backgroundColor, + contentColor = contentColor, + iconColor = iconColor + ) +} + +/** + * Defines the severity levels for an [InfoBar]. + * Each severity level indicates the type of information being conveyed, such as informational, success, warning, or critical. + */ +enum class InfoBarSeverity { + Informational, + Success, + Warning, + Critical, +} + +@Composable +private fun InfoBarLayout( + title: @Composable () -> Unit, + message: @Composable () -> Unit, + action: (@Composable () -> Unit)?, + closeAction: (@Composable () -> Unit)?, + icon: (@Composable () -> Unit)?, + modifier: Modifier +) { + Layout( + contents = listOf( + title, + message, + action ?: {}, + closeAction ?: {}, + icon ?: {}, + ), + modifier = modifier, + measurePolicy = remember { InfoBarLayoutMeasurePolicy() } + ) +} + +private class InfoBarLayoutMeasurePolicy : MultiContentMeasurePolicy { + + override fun IntrinsicMeasureScope.minIntrinsicHeight( + measurables: List>, + width: Int + ): Int { + return 0 + } + + override fun IntrinsicMeasureScope.maxIntrinsicHeight( + measurables: List>, + width: Int + ): Int { + val (titleMeasurables, messageMeasurables, actionMeasurables, closeActionMeasurables, iconMeasurables) = measurables + val titleMeasurable = titleMeasurables.firstOrNull() + val messageMeasurable = messageMeasurables.firstOrNull() + val actionMeasurable = actionMeasurables.firstOrNull() + val closeActionMeasurable = closeActionMeasurables.firstOrNull() + val iconMeasurable = iconMeasurables.firstOrNull() + val isMultilineContent = isMultilineContent( + titleMeasurable, + messageMeasurable, + actionMeasurable, + closeActionMeasurable, + iconMeasurable, + width, + Constraints.Infinity + ) + + return if (isMultilineContent) { + val iconWidthWithSpacing = iconMeasurable?.minIntrinsicWidth(Constraints.Infinity) + ?.plus(IconEndSpacing.roundToPx()) ?: 0 + val closeActionWidthWithSpacing = + closeActionMeasurable?.minIntrinsicWidth(Constraints.Infinity) + ?.plus(CloseActionEndSpacing.roundToPx()) ?: 0 + val messageEndSpacing = MessageEndSpacing.roundToPx() + val contentWidth = + (width - iconWidthWithSpacing - messageEndSpacing - closeActionWidthWithSpacing).coerceAtLeast( + 0 + ) + maxOf( + InfoBarMinHeight.roundToPx(), + (MultiLineTopSpacing + MultiLineBottomSpacing).roundToPx() + + (titleMeasurable?.maxIntrinsicHeight(contentWidth) ?: 0) + + (messageMeasurable?.maxIntrinsicHeight(contentWidth) ?: 0) + + (actionMeasurable?.maxIntrinsicHeight(contentWidth) + ?.plus(MultiLineBottomSpacing.roundToPx()) ?: 0), + ) + } else { + InfoBarMinHeight.roundToPx() + } + } + + override fun MeasureScope.measure( + measurables: List>, + constraints: Constraints + ): MeasureResult { + val (titleMeasurables, messageMeasurables, actionMeasurables, closeActionMeasurables, iconMeasurables) = measurables + val titleMeasurable = titleMeasurables.firstOrNull() + val messageMeasurable = messageMeasurables.firstOrNull() + val actionMeasurable = actionMeasurables.firstOrNull() + val closeActionMeasurable = closeActionMeasurables.firstOrNull() + val iconMeasurable = iconMeasurables.firstOrNull() + + val isMultilineContent = isMultilineContent( + titleMeasurable, + messageMeasurable, + actionMeasurable, + closeActionMeasurable, + iconMeasurable, + constraints.maxWidth, + constraints.maxHeight + ) + val looseConstraints = constraints.copy(minWidth = 0, minHeight = 0) + val iconSpacing = IconEndSpacing.roundToPx() + val closeActionSpacing = CloseActionEndSpacing.roundToPx() + val actionSpacing = SingleLineActionEndSpacing.roundToPx() + val titleSpacing = SingleLineTitleEndSpacing.roundToPx() + val messageSpacing = MessageEndSpacing.roundToPx() + return if (!isMultilineContent) { + val iconPlaceables = iconMeasurable?.measure(looseConstraints) + val actionPlaceables = actionMeasurable?.measure(looseConstraints) + val closeActionPlaceables = + closeActionMeasurable?.measure(looseConstraints) + val iconWidthWithSpacing = iconPlaceables?.width?.plus(iconSpacing) ?: 0 + val closeActionWidthWithSpacing = + closeActionPlaceables?.width?.plus(closeActionSpacing) ?: 0 + val actionWidthWithSpacing = actionPlaceables?.width?.plus(actionSpacing) ?: 0 + + val titleConstraints = looseConstraints.copy( + maxWidth = constraints.maxWidth - iconWidthWithSpacing - closeActionWidthWithSpacing - + titleSpacing - messageSpacing - actionWidthWithSpacing + ) + val titlePlaceables = titleMeasurable?.measure(titleConstraints) + val contentPlaceables = messageMeasurable?.measure( + titleConstraints.copy( + maxWidth = titleConstraints.maxWidth - (titlePlaceables?.width ?: 0) + ) + ) + var width = 0 + var height = 0 + iconPlaceables?.let { placeable -> + width += placeable.width + iconSpacing + height = maxOf(height, placeable.height) + } + actionPlaceables?.let { placeable -> + width += placeable.width + height = maxOf(height, placeable.height) + } + closeActionPlaceables?.let { placeable -> + width += placeable.width + closeActionSpacing + height = maxOf(height, placeable.height) + } + titlePlaceables?.let { placeable -> + width += placeable.width + titleSpacing + height = maxOf(height, placeable.height) + } + contentPlaceables?.let { placeable -> + width += placeable.width + messageSpacing + height = maxOf(height, placeable.height) + } + val layoutWidth = if (constraints.hasFixedWidth) { + constraints.maxWidth + } else { + width + } + val layoutHeight = if (constraints.hasFixedHeight) { + constraints.maxHeight + } else { + height + } + val alignment = Alignment.CenterVertically + layout(layoutWidth, layoutHeight) { + var offset = 0 + iconPlaceables?.let { placeable -> + placeable.placeRelative(offset, alignment.align(placeable.height, layoutHeight)) + offset += placeable.width + iconSpacing + } + + titlePlaceables?.let { placeable -> + placeable.placeRelative(offset, alignment.align(placeable.height, layoutHeight)) + offset += placeable.width + titleSpacing + } + + contentPlaceables?.let { placeable -> + placeable.placeRelative(offset, alignment.align(placeable.height, layoutHeight)) + } + + offset = 0 + closeActionPlaceables?.let { placeable -> + offset += placeable.width + closeActionSpacing + placeable.placeRelative( + layoutWidth - offset, + alignment.align(placeable.height, layoutHeight) + ) + offset += actionSpacing + } + + actionPlaceables?.let { placeable -> + placeable.placeRelative( + layoutWidth - offset - placeable.width, + alignment.align(placeable.height, layoutHeight) + ) + } + + } + } else { + val topPadding = MultiLineTopSpacing.roundToPx() + val bottomPadding = MultiLineBottomSpacing.roundToPx() + val iconPlaceable = iconMeasurable?.measure(looseConstraints) + val closeActionPlaceable = closeActionMeasurable?.measure(looseConstraints) + val iconWidthWithSpacing = iconPlaceable?.width?.plus(iconSpacing) ?: 0 + val closeActionWidthWithSpacing = + closeActionPlaceable?.width?.plus(closeActionSpacing + messageSpacing) ?: 0 + val contentWidth = + (constraints.maxWidth - iconWidthWithSpacing - closeActionWidthWithSpacing) + .coerceAtLeast(0) + if (constraints.hasBoundedHeight) { + var verticalMaxHeight = looseConstraints.maxHeight - topPadding - bottomPadding + val actionButtonPlaceable = actionMeasurable + ?.measure( + looseConstraints.copy( + maxWidth = contentWidth, + maxHeight = (verticalMaxHeight - bottomPadding).coerceAtLeast(0) + ) + ) + val actionButtonHeightWithSpacing = + actionButtonPlaceable?.height?.plus(bottomPadding) ?: 0 + verticalMaxHeight -= actionButtonHeightWithSpacing + val titlePlaceable = titleMeasurable?.measure( + looseConstraints.copy( + maxWidth = contentWidth, + maxHeight = verticalMaxHeight.coerceAtLeast(0) + ) + ) + verticalMaxHeight -= (titlePlaceable?.height ?: 0) + val messagePlaceable = messageMeasurable?.measure( + looseConstraints.copy( + maxWidth = contentWidth, + maxHeight = verticalMaxHeight.coerceAtLeast(0) + ) + ) + val layoutHeight = maxOf( + a = constraints.minHeight, + b = (titlePlaceable?.height ?: 0) + + (messagePlaceable?.height ?: 0) + + actionButtonHeightWithSpacing + + topPadding + bottomPadding + ) + val layoutWidth = maxOf( + a = constraints.minWidth, + b = iconWidthWithSpacing + closeActionWidthWithSpacing + + maxOf( + a = titlePlaceable?.width ?: 0, + b = messagePlaceable?.width ?: 0, + c = actionButtonPlaceable?.width ?: 0 + ) + ) + layout(layoutWidth, layoutHeight) { + val alignment = Alignment.CenterVertically + iconPlaceable?.let { placeable -> + val iconY = alignment.align(placeable.height, constraints.minHeight) + placeable.placeRelative( + 0, + iconY + ) + } + closeActionPlaceable?.let { placeable -> + val closeActionY = alignment.align(placeable.height, constraints.minHeight) + placeable.placeRelative( + layoutWidth - placeable.width - closeActionSpacing, + closeActionY + ) + } + val startOffset = iconWidthWithSpacing + var offsetAcc = titlePlaceable?.let { + val firstBaseline = it[FirstBaseline] + val lastBaseline = it[LastBaseline] + alignment.align(it.height + firstBaseline - lastBaseline, constraints.minHeight) + } ?: topPadding + titlePlaceable?.let { placeable -> + placeable.placeRelative(startOffset, offsetAcc) + offsetAcc += placeable.height + } + messagePlaceable?.let { placeable -> + placeable.placeRelative(startOffset, offsetAcc) + offsetAcc += placeable.height + } + actionButtonPlaceable?.placeRelative(startOffset, offsetAcc + bottomPadding) + } + } else { + val contentConstraints = looseConstraints.copy(maxWidth = contentWidth) + val titlePlaceable = titleMeasurable?.measure(contentConstraints) + val messagePlaceable = messageMeasurable?.measure(contentConstraints) + val actionButtonPlaceable = actionMeasurable?.measure(contentConstraints) + val iconWidthWithSpacing = iconPlaceable?.width?.plus(iconSpacing) ?: 0 + val closeActionWidthWithSpacing = + closeActionPlaceable?.width?.plus(closeActionSpacing + messageSpacing) ?: 0 + val contentWidth = + iconWidthWithSpacing + closeActionWidthWithSpacing + + maxOf( + a = titlePlaceable?.width ?: 0, + b = messagePlaceable?.width ?: 0, + c = actionButtonPlaceable?.width ?: 0 + ) + val layoutWidth = if (constraints.hasBoundedWidth) { + maxOf(constraints.minWidth, contentWidth) + } else { + contentWidth + } + + val titleHeight = titlePlaceable?.height ?: 0 + val messageHeight = messagePlaceable?.height ?: 0 + val actionHeight = actionButtonPlaceable?.height?.plus(bottomPadding) ?: 0 + val contentHeight = + topPadding + bottomPadding + titleHeight + messageHeight + actionHeight + val layoutHeight = maxOf(constraints.minHeight, contentHeight) + + layout(layoutWidth, layoutHeight) { + iconPlaceable?.placeRelative(0, 0) + closeActionPlaceable?.placeRelative(layoutWidth - closeActionPlaceable.width, 0) + val startOffset = (iconWidthWithSpacing) + var offset = topPadding + titlePlaceable?.placeRelative(startOffset, 0) + messagePlaceable?.let { placeable -> + placeable.placeRelative(startOffset, titlePlaceable?.height ?: 0) + offset += placeable.height + } + actionButtonPlaceable?.placeRelative(startOffset, offset + bottomPadding) + } + } + } + } + + private fun IntrinsicMeasureScope.isMultilineContent( + titleMeasurables: IntrinsicMeasurable?, + messageMeasurables: IntrinsicMeasurable?, + actionMeasurables: IntrinsicMeasurable?, + closeActionMeasurables: IntrinsicMeasurable?, + iconMeasurables: IntrinsicMeasurable?, + width: Int, + height: Int, + ): Boolean { + val iconEndSpacing = IconEndSpacing.roundToPx() + val closeActionEndSpacing = CloseActionEndSpacing.roundToPx() + val titleEndSpacing = SingleLineTitleEndSpacing.roundToPx() + val messageEndSpacing = MessageEndSpacing.roundToPx() + val actionSpacing = SingleLineActionEndSpacing.roundToPx() + val iconIntrinsicWidth = + iconMeasurables?.minIntrinsicWidth(height)?.plus(iconEndSpacing) ?: 0 + val actionIntrinsicWidth = + actionMeasurables?.minIntrinsicWidth(height)?.plus(actionSpacing) ?: 0 + val closeActionIntrinsicWidth = closeActionMeasurables?.minIntrinsicWidth(height) + ?.plus(closeActionEndSpacing) ?: 0 + val titleIntrinsicWidth = + width - iconIntrinsicWidth - actionIntrinsicWidth - closeActionIntrinsicWidth - titleEndSpacing - messageEndSpacing + val titleIntrinsicHeight = + titleMeasurables?.maxIntrinsicHeight(titleIntrinsicWidth.coerceAtLeast(0)) ?: 0 + val singleLineHeight = 30.dp.roundToPx() + val isTitleMultiline = titleIntrinsicHeight > singleLineHeight + var isMultilineContent = isTitleMultiline + if (!isTitleMultiline) { + val titleWidth = titleMeasurables?.maxIntrinsicWidth(height) ?: 0 + val contentIntrinsicHeight = + messageMeasurables?.maxIntrinsicHeight( + (titleIntrinsicWidth - titleWidth).coerceAtLeast( + 0 + ) + ) ?: 0 + isMultilineContent = contentIntrinsicHeight > singleLineHeight + } + return isMultilineContent + } + +} + +private val InfoBarMinHeight = 48.dp +private val IconEndSpacing = 12.dp +private val MessageEndSpacing = 16.dp +private val CloseActionEndSpacing = 5.dp +private val SingleLineTitleEndSpacing = 12.dp +private val SingleLineActionEndSpacing = 8.dp +private val MultiLineTopSpacing = 14.dp +private val MultiLineBottomSpacing = 16.dp \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/ListItem.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/ListItem.kt new file mode 100644 index 00000000..98888fb2 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/ListItem.kt @@ -0,0 +1,467 @@ +package io.github.composefluent.component + +import androidx.compose.animation.animateColorAsState +import androidx.compose.animation.core.animateDp +import androidx.compose.animation.core.tween +import androidx.compose.animation.core.updateTransition +import androidx.compose.foundation.BorderStroke +import androidx.compose.foundation.background +import androidx.compose.foundation.clickable +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.defaultMinSize +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.layout.wrapContentSize +import androidx.compose.foundation.shape.CircleShape +import androidx.compose.runtime.Composable +import androidx.compose.runtime.CompositionLocalProvider +import androidx.compose.runtime.Immutable +import androidx.compose.runtime.Stable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.remember +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Brush +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.SolidColor +import androidx.compose.ui.text.font.FontWeight +import androidx.compose.ui.unit.dp +import io.github.composefluent.FluentTheme +import io.github.composefluent.LocalCompactMode +import io.github.composefluent.LocalContentAlpha +import io.github.composefluent.LocalContentColor +import io.github.composefluent.LocalTextStyle +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.background.BackgroundSizing +import io.github.composefluent.background.Layer +import io.github.composefluent.scheme.PentaVisualScheme +import io.github.composefluent.scheme.VisualStateScheme +import io.github.composefluent.scheme.collectVisualState + +/** + * A composable function that represents a list item. + * + * This function provides a customizable list item with support for selection, icons, trailing content, and different selection types. + * + * @param selected Whether the list item is currently selected. + * @param onSelectedChanged Callback invoked when the selected state changes. Provides the new selected state. + * @param text The main text content of the list item. + * @param modifier Modifier for styling and layout. + * @param selectionType The type of selection indicator to use. See [ListItemSelectionType]. Defaults to [ListItemSelectionType.Standard]. + * @param icon Optional leading icon for the list item. + * @param trailing Optional trailing content for the list item. + * @param interaction Optional [MutableInteractionSource] to handle interaction events. + * @param enabled Whether the list item is enabled for interaction. + * @param colors A [VisualStateScheme] to define the colors of the list item based on its state. + * Defaults to selected or default list item colors based on the [selected] parameter. + * + * Design guide: [WinUI 3 Figma design file](https://www.figma.com/community/file/1159947337437047524)/Primitives/ListItem + */ +@Composable +fun ListItem( + selected: Boolean, + onSelectedChanged: (Boolean) -> Unit, + text: @Composable () -> Unit, + modifier: Modifier = Modifier, + selectionType: ListItemSelectionType = ListItemSelectionType.Standard, + icon: (@Composable () -> Unit)? = null, + trailing: (@Composable () -> Unit)? = null, + interaction: MutableInteractionSource? = null, + enabled: Boolean = true, + colors: VisualStateScheme = if (selected) { + ListItemDefaults.selectedListItemColors() + } else { + ListItemDefaults.defaultListItemColors() + }, +) { + ListItem( + indicator = if (selectionType == ListItemSelectionType.Standard) { + { ListItemDefaults.Indicator(selected, enabled) } + } else { + null + }, + selectionIcon = when (selectionType) { + ListItemSelectionType.Standard -> null + ListItemSelectionType.Check -> { { + if (selected) { ListItemDefaults.CheckIcon() } + } } + ListItemSelectionType.Radio -> { { + if (selected) { ListItemDefaults.RadioIcon() } + } } + }, + text = text, + icon = icon, + trailing = trailing, + interaction = interaction, + enabled = enabled, + onClick = { onSelectedChanged(!selected) }, + colors = colors, + modifier = modifier + ) +} + +/** + * A composable function that represents a list item. + * + * This function displays a single item within a list. It supports various configurations, + * including an optional selection icon, indicator, icon, and trailing content. + * + * @param onClick The callback to be invoked when the list item is clicked. + * @param text The composable content representing the main text of the list item. + * @param modifier The modifier to be applied to the list item. + * @param selectionIcon An optional composable function to display a selection icon (e.g., a checkbox or radio button). + * @param indicator An optional composable function to display an indicator (e.g., a vertical bar to denote selection). + * @param icon An optional composable function to display an icon at the start of the list item. + * @param trailing An optional composable function to display trailing content (e.g., a chevron or additional text). + * @param interaction An optional [MutableInteractionSource] to handle item interactions. + * @param enabled Specifies whether the list item is enabled for interaction. Defaults to true. + * @param colors A [VisualStateScheme] of [ListItemColor] that defines the colors of the list item for different interaction states. + * Defaults to [ListItemDefaults.defaultListItemColors]. + * + * Design guide: [WinUI 3 Figma design file](https://www.figma.com/community/file/1159947337437047524)/Primitives/ListItem + */ +@Composable +fun ListItem( + onClick: () -> Unit, + text: @Composable () -> Unit, + modifier: Modifier = Modifier, + selectionIcon: (@Composable () -> Unit)? = null, + indicator: (@Composable () -> Unit)? = null, + icon: (@Composable () -> Unit)? = null, + trailing: (@Composable () -> Unit)? = null, + interaction: MutableInteractionSource? = null, + enabled: Boolean = true, + colors: VisualStateScheme = ListItemDefaults.defaultListItemColors(), +) { + val actualInteraction = interaction ?: remember { MutableInteractionSource() } + val color = colors.schemeFor(actualInteraction.collectVisualState(!enabled)) + + val fillColor by animateColorAsState( + color.fillColor, + animationSpec = tween(FluentDuration.QuickDuration, easing = FluentEasing.FastInvokeEasing) + ) + + val contentColor by animateColorAsState( + color.contentColor, + animationSpec = tween(FluentDuration.QuickDuration, easing = FluentEasing.FastInvokeEasing) + ) + Layer( + modifier = modifier + .defaultMinSize(minWidth = 108.dp, if (LocalCompactMode.current) ListItemCompactHeight else ListItemHeight) + .padding(horizontal = 5.dp, vertical = 2.dp) + .fillMaxWidth(), + shape = FluentTheme.shapes.control, + color = fillColor, + contentColor = contentColor, + border = BorderStroke(1.dp, color.borderBrush), + backgroundSizing = BackgroundSizing.OuterBorderEdge + ) { + Box( + contentAlignment = Alignment.CenterStart, + modifier = Modifier + ) { + indicator?.invoke() + Row( + modifier = Modifier + .clickable( + onClick = onClick, + interactionSource = actualInteraction, + indication = null, + enabled = enabled + ) + .padding(horizontal = 12.dp), + horizontalArrangement = Arrangement.spacedBy(12.dp, Alignment.Start), + verticalAlignment = Alignment.CenterVertically + ) { + if (selectionIcon != null && indicator == null) { + Box( + contentAlignment = Alignment.CenterStart, + modifier = Modifier.padding(horizontal = 2.dp).size(12.dp) + ) { + selectionIcon() + } + } + if (icon != null) { + Box( + modifier = Modifier.size(ListItemDefaults.iconSize), + contentAlignment = Alignment.Center + ) { + icon() + } + } + Box(modifier = Modifier.weight(1f), contentAlignment = Alignment.CenterStart) { + text() + } + CompositionLocalProvider( + LocalContentColor provides color.trailingColor, + LocalContentAlpha provides color.trailingColor.alpha, + LocalTextStyle provides FluentTheme.typography.caption.copy(fontWeight = FontWeight.Normal) + ) { + trailing?.invoke() + } + } + } + } +} + +/** + * A header for a list of items. + * + * @param content The composable content to display within the header. + * @param modifier The [Modifier] to be applied to the header. + * @param color The color of the text in the header. Defaults to `FluentTheme.colors.text.text.secondary`. + */ +@Composable +fun ListHeader( + content: @Composable () -> Unit, + modifier: Modifier = Modifier, + color: Color = FluentTheme.colors.text.text.secondary +) { + Box( + contentAlignment = Alignment.CenterStart, + modifier = modifier + .padding(horizontal = 16.dp) + .height( + height = if (LocalCompactMode.current) { + ListItemCompactHeight + } else { + ListItemHeight + } + ) + ) { + CompositionLocalProvider( + LocalTextStyle provides FluentTheme.typography.caption.copy(fontWeight = FontWeight.Normal), + LocalContentAlpha provides color.alpha, + LocalContentColor provides color, + content = content + ) + } +} + +/** + * A separator line for list items. + * + * This composable displays a horizontal line that can be used to separate items within a list. + * It uses the `divider` color from the current [FluentTheme.colors.stroke] for its background. + * + * @param modifier The [Modifier] to be applied to this separator. + */ +@Composable +fun ListItemSeparator(modifier: Modifier) { + Box( + Modifier + .then(modifier) + .padding(top = 1.dp, bottom = 2.dp) + .fillMaxWidth().height(1.dp) + .background(FluentTheme.colors.stroke.divider.default) + ) +} + +/** + * Contains the default values used for [ListItem]. + */ +object ListItemDefaults { + + /** + * The default size of the icon in the list item. + */ + val iconSize = 16.dp + + /** + * Represents a check icon for use in a list item. + * + * This composable displays a checkmark icon, typically used to indicate a selected state + * in a list item with a "check" selection type. + * + * The icon is a solid checkmark with the following properties: + * - `type`: `FontIconPrimitive.Accept` (checkmark) + * - `contentDescription`: "Check" for accessibility + * - `size`: `FontIconSize.Small` + * + * @see ListItem + * @see ListItemSelectionType + */ + @Composable + fun CheckIcon() { + FontIconSolid8( + type = FontIconPrimitive.Accept, + contentDescription = "Check", + size = FontIconSize.Small, + ) + } + + /** + * Represents a radio button icon for use in a list item. + * + * This composable draws a small circle, filled with the current content color, + * representing a selected radio button state. + * + * The icon has a fixed size of 12.dp and contains a smaller, 4.dp filled circle. + */ + @Composable + fun RadioIcon() { + Box(modifier = Modifier + .size(12.dp) + .wrapContentSize(Alignment.Center) + .size(4.dp) + .background(LocalContentColor.current.copy(LocalContentAlpha.current), CircleShape) + ) + } + + /** + * Represents an icon that indicates a cascading or hierarchical relationship. + * It displays a chevron-right icon. + */ + @Composable + fun CascadingIcon() { + FontIcon( + type = FontIconPrimitive.ChevronRight, + contentDescription = "cascading", + size = FontIconSize.Small, + ) + } + + /** + * The indicator for a list item. + * + * @param visible Whether the indicator is visible or not. Defaults to `true`. + * @param enabled Whether the indicator is enabled or not. Defaults to `true`. + * @param color The color of the indicator when it's enabled. Defaults to `FluentTheme.colors.fillAccent.default`. + * @param disabledColor The color of the indicator when it's disabled. Defaults to `FluentTheme.colors.fillAccent.disabled`. + */ + @Composable + fun Indicator( + visible: Boolean = true, + enabled: Boolean = true, + color: Color = FluentTheme.colors.fillAccent.default, + disabledColor: Color = FluentTheme.colors.fillAccent.disabled + ) { + val height by updateTransition(visible).animateDp(transitionSpec = { + if (targetState) tween(FluentDuration.ShortDuration, easing = FluentEasing.FastInvokeEasing) + else tween(FluentDuration.QuickDuration, easing = FluentEasing.SoftDismissEasing) + }, targetValueByState = { if (it) 16.dp else 0.dp }) + Box( + modifier = Modifier + .size(width = 3.dp, height = height) + .background( + color = if (enabled) { + color + } else { + disabledColor + }, + shape = CircleShape + ) + ) + + } + + /** + * Creates a [ListItemColorScheme] with the default colors for a list item. + * + * @param default The default colors for the list item. + * @param hovered The colors for the list item when it is hovered. + * @param pressed The colors for the list item when it is pressed. + * @param disabled The colors for the list item when it is disabled. + * @return A [ListItemColorScheme] with the specified colors. + */ + @Composable + @Stable + fun defaultListItemColors( + default: ListItemColor = ListItemColor( + fillColor = FluentTheme.colors.subtleFill.transparent, + contentColor = FluentTheme.colors.text.text.primary, + trailingColor = FluentTheme.colors.text.text.secondary, + borderBrush = SolidColor(Color.Transparent) + ), + hovered: ListItemColor = default.copy( + fillColor = FluentTheme.colors.subtleFill.secondary + ), + pressed: ListItemColor = default.copy( + fillColor = FluentTheme.colors.subtleFill.tertiary, + contentColor = FluentTheme.colors.text.text.secondary + ), + disabled: ListItemColor = default.copy( + fillColor = FluentTheme.colors.subtleFill.disabled, + contentColor = FluentTheme.colors.text.text.disabled, + trailingColor = FluentTheme.colors.text.text.disabled, + ) + ) = ListItemColorScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) + + /** + * Creates a [ListItemColorScheme] with colors for a selected list item. + * + * @param default The default colors for the list item. + * @param hovered The colors for the list item when it is hovered. + * @param pressed The colors for the list item when it is pressed. + * @param disabled The colors for the list item when it is disabled. + * @return A [ListItemColorScheme] with the specified colors. + */ + @Composable + @Stable + fun selectedListItemColors( + default: ListItemColor = ListItemColor( + fillColor = FluentTheme.colors.subtleFill.secondary, + contentColor = FluentTheme.colors.text.text.primary, + trailingColor = FluentTheme.colors.text.text.secondary, + borderBrush = SolidColor(Color.Transparent) + ), + hovered: ListItemColor = default.copy( + fillColor = FluentTheme.colors.subtleFill.tertiary + ), + pressed: ListItemColor = default.copy( + contentColor = FluentTheme.colors.text.text.secondary + ), + disabled: ListItemColor = default.copy( + contentColor = FluentTheme.colors.text.text.disabled, + trailingColor = FluentTheme.colors.text.text.disabled, + ) + ) = ListItemColorScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) +} + +/** + * Represents the selection type for a list item. + * + * - [Standard]: Indicates a standard list item with a simple indicator. + * - [Radio]: Indicates a list item with a radio button-like selection. + * - [Check]: Indicates a list item with a checkbox-like selection. + */ +enum class ListItemSelectionType { + Standard, Radio, Check +} + +/** + * Represents the color scheme for a list item in different states. + * + * @param fillColor The background color of the list item. + * @param contentColor The color of the primary content within the list item (e.g., text). + * @param trailingColor The color of the trailing content within the list item (e.g., icons or secondary text). + * @param borderBrush The brush used to draw the border around the list item. + */ +@Immutable +data class ListItemColor( + val fillColor: Color, + val contentColor: Color, + val trailingColor: Color, + val borderBrush: Brush +) + +typealias ListItemColorScheme = PentaVisualScheme + +private val ListItemHeight = 40.dp +private val ListItemCompactHeight = 32.dp \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/LiteFilter.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/LiteFilter.kt new file mode 100644 index 00000000..ed35d4fb --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/LiteFilter.kt @@ -0,0 +1,189 @@ +package io.github.composefluent.component + +import androidx.compose.animation.AnimatedVisibility +import androidx.compose.animation.core.tween +import androidx.compose.animation.fadeIn +import androidx.compose.animation.fadeOut +import androidx.compose.foundation.ExperimentalFoundationApi +import androidx.compose.foundation.ScrollState +import androidx.compose.foundation.gestures.animateScrollBy +import androidx.compose.foundation.horizontalScroll +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.RowScope +import androidx.compose.foundation.layout.heightIn +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.rememberScrollState +import androidx.compose.runtime.Composable +import androidx.compose.runtime.Stable +import androidx.compose.runtime.rememberCoroutineScope +import androidx.compose.runtime.snapshots.Snapshot +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.draw.clip +import androidx.compose.ui.geometry.Rect +import androidx.compose.ui.geometry.Size +import androidx.compose.ui.graphics.Outline +import androidx.compose.ui.graphics.Shape +import androidx.compose.ui.layout.LayoutCoordinates +import androidx.compose.ui.node.ModifierNodeElement +import androidx.compose.ui.node.requireLayoutCoordinates +import androidx.compose.ui.platform.LocalDensity +import androidx.compose.ui.relocation.BringIntoViewModifierNode +import androidx.compose.ui.relocation.bringIntoView +import androidx.compose.ui.unit.Density +import androidx.compose.ui.unit.Dp +import androidx.compose.ui.unit.LayoutDirection +import androidx.compose.ui.unit.dp +import io.github.composefluent.animation.FluentDuration +import kotlinx.coroutines.launch + +/** + * A composable function that creates a horizontal filter component with scrollable items. + * It displays navigation buttons (left and right arrows) to indicate scrollability. + * + * @param modifier Modifier for styling and layout of the filter. + * @param state The [ScrollState] to manage the horizontal scroll. + * @param content The composable content (items) within the filter row. + */ +@OptIn(ExperimentalFoundationApi::class) +@Composable +fun LiteFilter( + modifier: Modifier = Modifier, + state: ScrollState = rememberScrollState(), + content: @Composable RowScope.() -> Unit +) { + Box(modifier = modifier.heightIn(40.dp)) { + val isPreviousVisible = state.canScrollBackward + val isNextVisible = state.canScrollForward + val density = LocalDensity.current + Row( + horizontalArrangement = Arrangement.spacedBy(4.dp), + modifier = Modifier.clip( + PaddingShape( + clipStart = isPreviousVisible, + clipEnd = isNextVisible + ) + ) + .horizontalScroll(state) + .then(LiteFilterModifierNodeElement(state, density)) + .align(Alignment.CenterStart) + ) { + content() + } + + val scope = rememberCoroutineScope() + AnimatedVisibility( + visible = isPreviousVisible, + enter = fadeIn(animationSpec = tween(durationMillis = FluentDuration.ShortDuration)), + exit = fadeOut(animationSpec = tween(durationMillis = FluentDuration.ShortDuration)), + modifier = Modifier.padding(start = 2.dp).align(Alignment.CenterStart) + ) { + SubtleButton( + onClick = { scope.launch { state.animateScrollBy(-state.viewportSize / 3f) } }, + content = { + FontIconSolid8( + type = FontIconPrimitive.CaretLeft, + contentDescription = null + ) + }, + iconOnly = true + ) + } + + AnimatedVisibility( + visible = isNextVisible, + enter = fadeIn(animationSpec = tween(durationMillis = FluentDuration.ShortDuration)), + exit = fadeOut(animationSpec = tween(durationMillis = FluentDuration.ShortDuration)), + modifier = Modifier.padding(end = 2.dp).align(Alignment.CenterEnd) + ) { + SubtleButton( + onClick = { scope.launch { state.animateScrollBy(state.viewportSize / 3f) } }, + content = { + FontIconSolid8( + type = FontIconPrimitive.CaretRight, + contentDescription = null + ) + }, + iconOnly = true + ) + } + } +} + +private data class LiteFilterModifierNodeElement( + private val state: ScrollState, + private val density: Density, +) : ModifierNodeElement() { + override fun create(): LiteFilterBringIntoViewModifierNode { + return LiteFilterBringIntoViewModifierNode( + state = state, + density = density + ) + } + + override fun update(node: LiteFilterBringIntoViewModifierNode) { + node.state = state + node.density = density + } +} + +@OptIn(ExperimentalFoundationApi::class) +private class LiteFilterBringIntoViewModifierNode( + var state: ScrollState, + var density: Density, +) : Modifier.Node(), BringIntoViewModifierNode { + + override suspend fun bringIntoView( + childCoordinates: LayoutCoordinates, + boundsProvider: () -> Rect? + ) { + Snapshot.withoutReadObservation { + if (!childCoordinates.isAttached || !isAttached) return@withoutReadObservation + val localRect = requireLayoutCoordinates().localBoundingBoxOf(childCoordinates) + val startSize = with(density) { 44.dp.toPx() } + val endSize = startSize + val targetRect = when { + state.canScrollForward && state.viewportSize - localRect.right - state.value < endSize -> { + localRect.copy( + right = localRect.right + endSize + ) + } + + state.canScrollBackward && localRect.left < state.value + startSize -> { + localRect.copy( + left = localRect.left - startSize + ) + } + else -> localRect + } + bringIntoView { targetRect } + } + } +} + +@Stable +private class PaddingShape( + private val clipStart: Boolean, + private val clipEnd: Boolean, + private val startSize: Dp = 44.dp, + private val endSize: Dp = 44.dp +) : Shape { + override fun createOutline( + size: Size, + layoutDirection: LayoutDirection, + density: Density + ): Outline { + return with(density) { + Outline.Rectangle( + Rect( + left = if (clipStart) startSize.toPx() else 0f, + top = 0f, + right = size.width - if (clipEnd) endSize.toPx() else 0f, + bottom = size.height + ) + ) + } + } +} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/MenuBar.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/MenuBar.kt new file mode 100644 index 00000000..a2925b0f --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/MenuBar.kt @@ -0,0 +1,599 @@ +package io.github.composefluent.component + +import androidx.compose.foundation.interaction.InteractionSource +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.interaction.collectIsHoveredAsState +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.PaddingValues +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.RowScope +import androidx.compose.foundation.layout.height +import androidx.compose.runtime.Composable +import androidx.compose.runtime.DisposableEffect +import androidx.compose.runtime.Immutable +import androidx.compose.runtime.LaunchedEffect +import androidx.compose.runtime.Stable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.SolidColor +import androidx.compose.ui.platform.LocalDensity +import androidx.compose.ui.unit.dp +import io.github.composefluent.FluentTheme +import io.github.composefluent.layout.overflow.OverflowRow +import io.github.composefluent.layout.overflow.OverflowRowScope +import kotlin.jvm.JvmInline +import kotlin.uuid.ExperimentalUuidApi +import kotlin.uuid.Uuid + +/** + * A composable function that represents a menu bar. + * + * The `MenuBar` is a horizontal container that displays a set of [MenuBarItem]s. + * It is typically used at the top of an application window to provide access to + * various commands and functionalities. + * + * @param modifier The modifier to be applied to the menu bar. + * @param content The composable content of the menu bar, defined using a [MenuBarScope]. + * + * Example usage: + * ```kotlin + * MenuBar { + * MenuBarItem( + * items = { + * // Menu flyout items + * } + * ) { + * // Menu bar item content + * } + * // More MenuBarItem + * } + * ``` + */ +@Composable +fun MenuBar( + modifier: Modifier = Modifier, + content: @Composable MenuBarScope.() -> Unit +) { + val scope = remember { MenuBarItemScopeImpl() } + Row( + modifier = modifier.height(MenuBarHeight), + horizontalArrangement = Arrangement.spacedBy(MenuBarItemSpacing), + verticalAlignment = Alignment.CenterVertically, + content = { scope.content() } + ) +} + +/** + * Creates a menu bar item within a [MenuBar]. + * + * This function represents an individual item within a menu bar. It can be associated with a + * [MenuFlyout] that displays a dropdown of additional menu items when the item is clicked. + * + * @param items A composable lambda function defining the content of the [MenuFlyout] associated + * with this menu bar item. This lambda will receive a [MenuFlyoutContainerScope] instance. + * @param modifier The [Modifier] to be applied to the container of this menu bar item. + * @param content A composable lambda function defining the content of the menu bar item itself, + * typically a [Text] or an [Icon]. + */ +@Composable +fun MenuBarScope.MenuBarItem( + items: @Composable MenuFlyoutContainerScope.() -> Unit, + modifier: Modifier = Modifier, + content: @Composable () -> Unit, +) { + val interactionSource = remember { MutableInteractionSource() } + val item = registerMenuBarItem(interactionSource) + Box(modifier = modifier, propagateMinConstraints = true) { + val containerScope = rememberNavigationItemsFlyoutScope( + expanded = currentItem == item, + onExpandedChanged = { + if (it) { + currentItem = item + } else if (currentItem == item) { + currentItem = null + } + } + ) + MenuFlyout( + visible = containerScope.isFlyoutVisible, + onDismissRequest = { containerScope.isFlyoutVisible = false }, + positionProvider = rememberFlyoutPositionProvider( + initialPlacement = FlyoutPlacement.BottomAlignedStart, + adaptivePlacement = true, + paddingToAnchor = PaddingValues() + ), + content = { items(containerScope) } + ) + + MenuBarButton( + selected = currentItem == item, + onClick = { currentItem = item }, + interaction = interactionSource, + content = { content() } + ) + } +} + +/** + * Adds a menu bar item to an overflow menu bar. + * + * This composable represents a single item within a [OverflowMenuBar]. It displays content + * defined by the `content` parameter. When clicked, it shows a flyout menu containing + * items defined by the `items` parameter. The appearance and behavior of the item differ + * slightly depending on whether it is displayed as a normal item or within the overflow + * area. + * + * When displayed normally, the item is a button that triggers the flyout menu. + * When in the overflow area, it appears as a list item with a cascading icon and + * behaves similarly to a nested menu. + * + * @param items A composable lambda that defines the items within the flyout menu. + * These items are displayed when the menu bar item is clicked. + * It provides a [MenuFlyoutContainerScope] for managing the flyout. + * @param modifier Modifier to be applied to the menu bar item. + * @param content A composable lambda that defines the content of the menu bar item + * (e.g., text, icon). This content is displayed as a button or list + * item, depending on whether it is in the overflow area. + */ +@Composable +fun OverflowMenuBarItemScope.MenuBarItem( + items: @Composable MenuFlyoutContainerScope.() -> Unit, + modifier: Modifier = Modifier, + content: @Composable () -> Unit, +) { + val interactionSource = remember { MutableInteractionSource() } + val item = registerMenuBarItem(interactionSource) + Box(modifier = modifier, propagateMinConstraints = true) { + val containerScope = rememberNavigationItemsFlyoutScope( + expanded = currentItem == item, + onExpandedChanged = { + if (it) { + currentItem = item + } else if (currentItem == item) { + currentItem = null + } + } + ) + if (!isOverflow) { + MenuFlyout( + visible = containerScope.isFlyoutVisible, + onDismissRequest = { containerScope.isFlyoutVisible = false }, + positionProvider = rememberFlyoutPositionProvider( + initialPlacement = FlyoutPlacement.BottomAlignedStart, + adaptivePlacement = true, + paddingToAnchor = PaddingValues() + ), + content = { items(containerScope) } + ) + + MenuBarButton( + selected = currentItem == item, + onClick = { currentItem = item }, + interaction = interactionSource, + content = { content() } + ) + } else { + + Box(modifier = modifier, propagateMinConstraints = true) { + val containerScope = rememberNavigationItemsFlyoutScope( + expanded = currentItem == item, + onExpandedChanged = { + if (it) { + currentItem = item + } else if (currentItem == item) { + currentItem = null + } + } + ) + val paddingTop = with(LocalDensity.current) { flyoutPopPaddingFixShadowRender.roundToPx() } + MenuFlyout( + visible = containerScope.isFlyoutVisible, + onDismissRequest = { containerScope.isFlyoutVisible = false }, + positionProvider = rememberSubMenuFlyoutPositionProvider(), + enterPlacementAnimation = { + defaultMenuFlyoutEnterPlacementAnimation(it, paddingTop) + }, + content = { items(containerScope) } + ) + + ListItem( + onClick = { currentItem = item }, + trailing = { ListItemDefaults.CascadingIcon() }, + text = { content() }, + interaction = interactionSource, + colors = if (currentItem == item) { + ListItemDefaults.selectedListItemColors() + } else { + ListItemDefaults.defaultListItemColors() + } + ) + } + } + } +} + +/** + * A composable function that displays a menu bar with overflow functionality. + * + * This function creates a menu bar that can handle a variable number of menu items. + * When the available space is insufficient to display all items, it automatically + * moves the overflowing items into an overflow menu, accessible via a "More" button. + * + * @param modifier The modifier to apply to the menu bar. + * @param content The composable content to display within the menu bar. + * This lambda receives an [OverflowMenuBarScope] which provides + * functions to add menu items to the bar, including items that + * may be placed in the overflow menu. + */ +@Composable +fun OverflowMenuBar( + modifier: Modifier = Modifier, + content: OverflowMenuBarScope.() -> Unit +) { + val menuBarScope = remember { MenuBarItemScopeImpl() } + val overflowItems = remember { mutableListOf() } + OverflowRow( + modifier = modifier.height(MenuBarHeight), + verticalAlignment = Alignment.CenterVertically, + horizontalArrangement = Arrangement.spacedBy(MenuBarItemSpacing), + overflowAction = { + var expanded by remember { mutableStateOf(false) } + Box { + MenuFlyout( + visible = expanded, + onDismissRequest = { expanded = false }, + positionProvider = rememberFlyoutPositionProvider( + initialPlacement = FlyoutPlacement.BottomAlignedEnd, + adaptivePlacement = false, + paddingToAnchor = PaddingValues() + ), + content = { + repeat(overflowItemCount) { index -> + overflowItem(index) + } + } + ) + val interactionSource = remember { MutableInteractionSource() } + val item = menuBarScope.registerMenuBarItem(interactionSource) + DisposableEffect(item, overflowItems) { + overflowItems.add(item) + onDispose { + overflowItems.remove(item) + } + } + LaunchedEffect(menuBarScope.currentItem, overflowItems) { + if (menuBarScope.currentItem != null) { + expanded = menuBarScope.currentItem in overflowItems + } + } + MenuBarButton( + selected = expanded, + onClick = { menuBarScope.currentItem = item }, + interaction = interactionSource, + content = { + FontIcon( + type = FontIconPrimitive.More, + contentDescription = null, + ) + }, + ) + } + } + ) { + OverflowMenuBarScopeImpl(this, overflowItems, menuBarScope).content() + } +} + +/** + * A button for use within a [MenuBar]. + * + * @param selected whether the button is currently selected. This should be used in conjunction with the [onClick] + * to control when to change the selected state. + * @param onClick callback to be invoked when this button is clicked + * @param modifier the [Modifier] to be applied to this button + * @param interaction the [MutableInteractionSource] representing the stream of [androidx.compose.foundation.interaction.Interaction]s + * for this button. You can create and pass in your own remembered [MutableInteractionSource] if desired. + * @param buttonColors the [ButtonColorScheme] that will be used to resolve the background and content colors for this button in different states. + * See [MenuBarDefaults.selectedItemColors] and [MenuBarDefaults.defaultItemColors] for the default values. + * @param enabled controls the enabled state of this button. When `false`, this component will not respond to user input, and it will appear visually disabled and disabled to accessibility services. + * @param content the content of this button, such as a [Text] or [Icon] + */ +@Composable +fun MenuBarButton( + selected: Boolean, + onClick: () -> Unit, + modifier: Modifier = Modifier, + interaction: MutableInteractionSource = remember { MutableInteractionSource() }, + buttonColors: ButtonColorScheme = if (selected) { + MenuBarDefaults.selectedItemColors() + } else { + MenuBarDefaults.defaultItemColors() + }, + enabled: Boolean = true, + content: @Composable RowScope.() -> Unit, +) { + SubtleButton( + interaction = interaction, + buttonColors = buttonColors, + onClick = onClick, + content = { content() }, + disabled = !enabled, + modifier = modifier + ) +} + +/** + * Contains the default values used for [MenuBarButton]. + */ +object MenuBarDefaults { + + /** + * Creates a [ButtonColorScheme] with colors for a selected menu bar item. + * + * @param default The color to use in the default state. + * @param hovered The color to use when the button is hovered. + * @param pressed The color to use when the button is pressed. + * @param disabled The color to use when the button is disabled. + * @return A [ButtonColorScheme] containing the specified colors. + */ + @Stable + @Composable + fun selectedItemColors( + default: ButtonColor = ButtonColor( + fillColor = FluentTheme.colors.subtleFill.tertiary, + contentColor = FluentTheme.colors.text.text.primary, + borderBrush = SolidColor(Color.Transparent) + ), + hovered: ButtonColor = default.copy( + fillColor = FluentTheme.colors.subtleFill.secondary, + ), + pressed: ButtonColor = default.copy( + fillColor = FluentTheme.colors.subtleFill.tertiary, + contentColor = FluentTheme.colors.text.text.secondary + ), + disabled: ButtonColor = default.copy( + fillColor = FluentTheme.colors.subtleFill.disabled, + contentColor = FluentTheme.colors.text.text.disabled + ) + ) = ButtonColorScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled, + ) + + /** + * Creates a [ButtonColorScheme] with the default colors used for a [MenuBarButton] when it is not + * selected. + * + * @param default The color to use in the default state. + * @param hovered The color to use when the button is hovered. + * @param pressed The color to use when the button is pressed. + * @param disabled The color to use when the button is disabled. + * @return A [ButtonColorScheme] containing the specified colors. + */ + @Stable + @Composable + fun defaultItemColors( + default: ButtonColor = ButtonColor( + fillColor = FluentTheme.colors.subtleFill.transparent, + contentColor = FluentTheme.colors.text.text.primary, + borderBrush = SolidColor(Color.Transparent) + ), + hovered: ButtonColor = default.copy( + fillColor = FluentTheme.colors.subtleFill.secondary, + ), + pressed: ButtonColor = default.copy( + fillColor = FluentTheme.colors.subtleFill.tertiary, + contentColor = FluentTheme.colors.text.text.secondary + ), + disabled: ButtonColor = default.copy( + fillColor = FluentTheme.colors.subtleFill.disabled, + contentColor = FluentTheme.colors.text.text.disabled + ) + ) = ButtonColorScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled, + ) +} + +/** + * Scope for the content of a [MenuBar]. + * + * This scope is used within the `content` lambda of the [MenuBar] composable + * function to define the items that will appear in the menu bar. + * It provides the context needed to add [MenuBarItem]s to the bar. + */ +interface MenuBarScope : MenuBarItemScope + +/** + * Scope for adding items to an [OverflowMenuBar]. + * + * This scope provides the ability to add individual items using [item] and + * collections of items using [items]. These items will be displayed in the + * menu bar, and when there is not enough space, they will be moved to an + * overflow menu, accessible via a "More" button. + */ +interface OverflowMenuBarScope { + fun item( + key: Any? = null, + contentType: Any? = null, + content: @Composable OverflowMenuBarItemScope.() -> Unit + ) + + fun items( + count: Int, + key: ((index: Int) -> Any)? = null, + contentType: (index: Int) -> Any? = { null }, + itemContent: @Composable OverflowMenuBarItemScope.(index: Int) -> Unit + ) +} + +@Immutable +private class OverflowMenuBarScopeImpl( + private val rowScope: OverflowRowScope, + overflowItems: MutableList, + menuBarScope: MenuBarItemScope = MenuBarItemScopeImpl(), +) : OverflowMenuBarScope { + private val normalItemScope = NormalItemScope(menuBarScope) + private val overflowItemScope = OverflowItemScope(overflowItems, menuBarScope) + + override fun items( + count: Int, + key: ((Int) -> Any)?, + contentType: (Int) -> Any?, + itemContent: @Composable (OverflowMenuBarItemScope.(Int) -> Unit) + ) { + rowScope.items(count, key, contentType) { + if (isOverflow) { + overflowItemScope.itemContent(it) + } else { + normalItemScope.itemContent(it) + } + } + } + + override fun item( + key: Any?, + contentType: Any?, + content: @Composable OverflowMenuBarItemScope.() -> Unit + ) { + rowScope.item(key, contentType) { + if (isOverflow) { + overflowItemScope.content() + } else { + normalItemScope.content() + } + } + } + + class NormalItemScope( + private val itemScopeDelegate: MenuBarItemScope + ) : OverflowMenuBarItemScope, MenuBarItemScope by itemScopeDelegate { + override val isOverflow: Boolean + get() = false + } + + class OverflowItemScope( + private val items: MutableList, + private val itemScopeDelegate: MenuBarItemScope + ) : OverflowMenuBarItemScope, MenuBarItemScope by itemScopeDelegate { + override val isOverflow: Boolean + get() = true + + @Composable + override fun registerMenuBarItem(interactionSource: InteractionSource): MenuBarItem { + val item = itemScopeDelegate.registerMenuBarItem(interactionSource) + DisposableEffect(items, item) { + items.add(item) + onDispose { + items.remove(item) + } + } + return item + } + } +} + +/** + * Scope for items within an [OverflowMenuBar]. + * + * This scope provides information about whether the current item is within the overflow area. + * This is useful for customizing the appearance and behavior of [MenuBarItem]s depending on + * whether they are displayed directly in the menu bar or within the overflow dropdown. + * + * @property isOverflow `true` if the current item is in the overflow area, `false` otherwise. + */ +interface OverflowMenuBarItemScope : MenuBarItemScope { + val isOverflow: Boolean +} + +/** + * Scope for registering items within a [MenuBar]. + * + * This interface provides functions for managing the state of menu items in a menu bar. + * It allows for tracking the currently active item and registering new items. + * + * The [currentItem] property represents the currently selected or active menu bar item. + * + * The [registerMenuBarItem] function is used to create and register a new [MenuBarItem] + * within the scope of a menu bar. This function also takes an [InteractionSource] to + * handle user interactions with the menu bar item. + */ +interface MenuBarItemScope { + + /** + * The currently selected [MenuBarItem]. + * + * This property represents the [MenuBarItem] that is currently active or selected within the scope. + * It is used to determine which [MenuBarItem] should display its associated [MenuFlyout] or to + * highlight the currently selected item in the UI. + * + * Setting this to `null` means no item is currently selected. + */ + var currentItem: MenuBarItem? + + /** + * Registers a new menu bar item within this scope. + * + * This function is used internally to create and manage menu bar items. + * It associates an [InteractionSource] with a unique [MenuBarItem] instance. + * When the mouse hovers over a registered item while another is selected, it automatically + * switches the selected item to the hovered one. + * + * @param interactionSource The interaction source associated with the menu bar item. + * @return A unique [MenuBarItem] instance representing the registered item. + */ + @Composable + fun registerMenuBarItem( + interactionSource: InteractionSource, + ): MenuBarItem +} + +/** + * Represents a unique item within a [MenuBar]. + * + * This class is an inline value class that wraps a [Uuid] to uniquely identify + * each menu bar item. It is used internally to manage the state and behavior + * of menu items within a [MenuBar], such as tracking which item is currently + * selected or has an associated flyout expanded. + * + * Note: This class is primarily for internal use within the MenuBar implementation + * and should not typically be used directly by application code. + */ +@JvmInline +@OptIn(ExperimentalUuidApi::class) +value class MenuBarItem internal constructor(private val uuid: Uuid) + +@OptIn(ExperimentalUuidApi::class) +private class MenuBarItemScopeImpl() : MenuBarScope { + + override var currentItem: MenuBarItem? by mutableStateOf(null) + + @Composable + override fun registerMenuBarItem( + interactionSource: InteractionSource + ): MenuBarItem { + val isHovered by interactionSource.collectIsHoveredAsState() + val menuBarItem = remember { + MenuBarItem(Uuid.random()) + } + LaunchedEffect(isHovered, menuBarItem) { + if (currentItem != null && currentItem != menuBarItem && isHovered) { + currentItem = menuBarItem + } + } + return menuBarItem + } +} + +private val MenuBarItemSpacing = 8.dp +private val MenuBarHeight = 48.dp \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/MenuFlyout.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/MenuFlyout.kt new file mode 100644 index 00000000..ce9648cc --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/MenuFlyout.kt @@ -0,0 +1,498 @@ +package io.github.composefluent.component + +import androidx.compose.animation.EnterTransition +import androidx.compose.animation.core.tween +import androidx.compose.animation.expandVertically +import androidx.compose.animation.fadeIn +import androidx.compose.animation.scaleIn +import androidx.compose.animation.slideInVertically +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.interaction.collectIsHoveredAsState +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.IntrinsicSize +import androidx.compose.foundation.layout.PaddingValues +import androidx.compose.foundation.layout.width +import androidx.compose.foundation.rememberScrollState +import androidx.compose.foundation.verticalScroll +import androidx.compose.runtime.Composable +import androidx.compose.runtime.LaunchedEffect +import androidx.compose.runtime.Stable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.geometry.Size +import androidx.compose.ui.graphics.Shape +import androidx.compose.ui.input.key.KeyEvent +import androidx.compose.ui.platform.LocalDensity +import androidx.compose.ui.unit.Density +import androidx.compose.ui.unit.IntRect +import androidx.compose.ui.unit.IntSize +import androidx.compose.ui.unit.LayoutDirection +import androidx.compose.ui.unit.dp +import io.github.composefluent.FluentTheme +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.scheme.VisualStateScheme +import kotlinx.coroutines.delay +import kotlin.uuid.ExperimentalUuidApi +import kotlin.uuid.Uuid + +/** + * A container for a menu flyout that displays a flyout next to the content, allowing for + * interactive menu-like behavior. + * + * @param flyout The composable content to be displayed within the flyout. This content is + * scoped to a [MenuFlyoutContainerScope] for menu-specific features. + * @param modifier The modifier to be applied to the container. + * @param initialVisible Determines if the flyout is visible initially. Defaults to `false`. + * @param placement Specifies the desired placement of the flyout relative to its anchor. + * Defaults to `FlyoutPlacement.Auto`. + * @param adaptivePlacement If true, the placement of the flyout will be adjusted to fit within + * the available space. Defaults to `false`. + * @param onKeyEvent An optional callback for handling key events within the flyout. If not + * null, this callback will be invoked for key events, and if it returns `true`, the event + * will be considered consumed. + * @param onPreviewKeyEvent An optional callback for previewing key events within the flyout. + * If not null, this callback will be invoked before the key event is dispatched, and if it + * returns `true`, the event will be considered consumed. + * @param content The composable content that acts as the anchor for the flyout. This content + * is scoped to a [FlyoutContainerScope]. + */ +@Composable +fun MenuFlyoutContainer( + flyout: @Composable MenuFlyoutContainerScope.() -> Unit, + modifier: Modifier = Modifier, + initialVisible: Boolean = false, + placement: FlyoutPlacement = FlyoutPlacement.Auto, + adaptivePlacement: Boolean = false, + onKeyEvent: ((keyEvent: KeyEvent) -> Boolean)? = null, + onPreviewKeyEvent: ((keyEvent: KeyEvent) -> Boolean)? = null, + content: @Composable FlyoutContainerScope.() -> Unit +) { + BasicFlyoutContainer( + flyout = { + MenuFlyout( + visible = isFlyoutVisible, + onDismissRequest = { isFlyoutVisible = false }, + placement = placement, + adaptivePlacement = adaptivePlacement, + content = { + val containerScope = remember(this@BasicFlyoutContainer, this) { + MenuFlyoutContainerScopeImpl(this@BasicFlyoutContainer, this) + } + containerScope.flyout() + }, + onKeyEvent = onKeyEvent, + onPreviewKeyEvent = onPreviewKeyEvent + ) + }, + content = content, + modifier = modifier, + initialVisible = initialVisible + ) +} + +/** + * A composable function that creates a menu flyout. + * + * A menu flyout is a transient UI that can be used to display a list of commands or options. + * + * @param visible Whether the menu flyout is visible. + * @param onDismissRequest Called when the user attempts to dismiss the menu flyout. + * @param modifier The [Modifier] to be applied to the menu flyout. + * @param placement The preferred placement of the menu flyout relative to its anchor. Defaults to [FlyoutPlacement.Auto]. + * @param adaptivePlacement Whether the placement of the flyout should be adapted to fit within the available space. + * Defaults to false. + * @param shape The shape of the menu flyout. Defaults to [FluentTheme.shapes.overlay]. + * @param onKeyEvent Optional callback invoked when a key event is received by this flyout. + * Returns true if the event was handled, false otherwise. + * @param onPreviewKeyEvent Optional callback invoked when a key event is received by this flyout, before it is dispatched to + * children. Returns true if the event was handled, false otherwise. + * @param content The content of the menu flyout. + */ +@Composable +fun MenuFlyout( + visible: Boolean, + onDismissRequest: () -> Unit, + modifier: Modifier = Modifier, + placement: FlyoutPlacement = FlyoutPlacement.Auto, + adaptivePlacement: Boolean = false, + shape: Shape = FluentTheme.shapes.overlay, + onKeyEvent: ((keyEvent: KeyEvent) -> Boolean)? = null, + onPreviewKeyEvent: ((keyEvent: KeyEvent) -> Boolean)? = null, + content: @Composable MenuFlyoutScope.() -> Unit +) { + MenuFlyout( + visible = visible, + onDismissRequest = onDismissRequest, + modifier = modifier, + shape = shape, + positionProvider = rememberFlyoutPositionProvider( + placement, + adaptivePlacement = adaptivePlacement + ), + content = content, + onKeyEvent = onKeyEvent, + onPreviewKeyEvent = onPreviewKeyEvent + ) +} + +@Composable +internal fun MenuFlyout( + visible: Boolean, + onDismissRequest: () -> Unit, + modifier: Modifier = Modifier, + shape: Shape = FluentTheme.shapes.overlay, + positionProvider: FlyoutPositionProvider = rememberFlyoutPositionProvider(), + enterPlacementAnimation: (FlyoutPlacement) -> EnterTransition = ::defaultFlyoutEnterPlacementAnimation, + onKeyEvent: ((keyEvent: KeyEvent) -> Boolean)? = null, + onPreviewKeyEvent: ((keyEvent: KeyEvent) -> Boolean)? = null, + content: @Composable MenuFlyoutScope.() -> Unit +) { + BasicFlyout( + visible = visible, + onDismissRequest = onDismissRequest, + modifier = modifier, + enterPlacementAnimation = enterPlacementAnimation, + shape = shape, + positionProvider = positionProvider, + contentPadding = PaddingValues(vertical = 3.dp), + onKeyEvent = onKeyEvent, + onPreviewKeyEvent = onPreviewKeyEvent, + focusable = false + ) { + val state = rememberScrollState() + ScrollbarContainer( + adapter = rememberScrollbarAdapter(state) + ) { + Column( + modifier = Modifier.width(IntrinsicSize.Max) + .verticalScroll(state) + ) { + val scope = remember { MenuFlyoutScopeImpl() } + scope.content() + } + } + + } +} + +/** + * A separator for a [MenuFlyout]. + * + * Separators help group related menu items, making the menu easier to scan. + * + * @param modifier The [Modifier] to be applied to this separator. + */ +@Composable +fun MenuFlyoutSeparator(modifier: Modifier = Modifier) { + ListItemSeparator(modifier) +} + +/** + * Creates a selectable item within a [MenuFlyout]. + * + * This composable represents a single item in the menu that can be selected. + * It allows for customization of the item's appearance, including text, icon, + * trailing content, colors, and interaction behavior. + * + * @param selected Indicates whether the item is currently selected. + * @param onSelectedChanged Callback invoked when the selected state of the item changes. + * It receives the new selected state as a parameter. + * @param text The content of the menu item, typically a text label. + * @param modifier Modifier to be applied to the menu item. + * @param icon Optional icon to display alongside the text. + * @param trailing Optional content to display at the end of the item, after the text. + * @param interaction Optional [MutableInteractionSource] to observe and control the item's interactions. + * @param enabled Controls whether the item is enabled or disabled. + * @param selectionType The type of selection behavior for the item. + * See [ListItemSelectionType] for available options. + * @param colors The colors used to represent the different states of the item. + * Defaults to [ListItemDefaults.selectedListItemColors] when selected, + * or [ListItemDefaults.defaultListItemColors] otherwise. + */ +@Composable +fun MenuFlyoutScope.MenuFlyoutItem( + selected: Boolean, + onSelectedChanged: (Boolean) -> Unit, + text: @Composable () -> Unit, + modifier: Modifier = Modifier, + icon: (@Composable () -> Unit)? = null, + trailing: (@Composable () -> Unit)? = null, + interaction: MutableInteractionSource? = null, + enabled: Boolean = true, + selectionType: ListItemSelectionType = ListItemSelectionType.Standard, + colors: VisualStateScheme = if (selected) { + ListItemDefaults.selectedListItemColors() + } else { + ListItemDefaults.defaultListItemColors() + } +) { + val actualInteraction = interaction ?: remember { MutableInteractionSource() } + registerHoveredMenuItem(actualInteraction) {} + ListItem( + selected = selected, + selectionType = selectionType, + onSelectedChanged = onSelectedChanged, + icon = icon, + text = text, + modifier = modifier, + trailing = trailing, + interaction = interaction, + enabled = enabled, + colors = colors + ) +} + +/** + * Represents an item within a [MenuFlyout]. + * + * @param onClick The callback to be invoked when the item is clicked. + * @param text The composable function that provides the text content of the item. + * @param modifier The modifier to be applied to the item. + * @param icon The composable function that provides the leading icon of the item. + * @param trailing The composable function that provides the trailing content of the item. + * @param interaction The [MutableInteractionSource] representing the stream of interactions for this item. + * @param enabled Whether the item is enabled or not. + * @param colors The color scheme for this item, default is [ListItemDefaults.defaultListItemColors]. + */ +@Composable +fun MenuFlyoutScope.MenuFlyoutItem( + onClick: () -> Unit, + text: @Composable () -> Unit, + modifier: Modifier = Modifier, + icon: (@Composable () -> Unit)? = null, + trailing: (@Composable () -> Unit)? = null, + interaction: MutableInteractionSource? = null, + enabled: Boolean = true, + colors: VisualStateScheme = ListItemDefaults.defaultListItemColors() +) { + val actualInteraction = interaction ?: remember { MutableInteractionSource() } + registerHoveredMenuItem(actualInteraction) {} + ListItem( + onClick = onClick, + icon = icon, + text = text, + modifier = modifier, + trailing = trailing, + interaction = interaction, + enabled = enabled, + colors = colors + ) +} + +/** + * A menu flyout item that can expand to show a sub-menu. + * + * @param items The content of the sub-menu. + * @param text The text content of the menu item. + * @param modifier The modifier to apply to the menu item. + * @param icon The icon to display in the menu item. + * @param interaction The interaction source for the menu item. + * @param enabled Whether the menu item is enabled. + * @param colors The colors to use for the menu item. + */ +@Composable +fun MenuFlyoutScope.MenuFlyoutItem( + items: @Composable MenuFlyoutScope.() -> Unit, + text: @Composable () -> Unit, + modifier: Modifier = Modifier, + icon: (@Composable () -> Unit)? = null, + interaction: MutableInteractionSource? = null, + enabled: Boolean = true, + colors: VisualStateScheme = ListItemDefaults.defaultListItemColors(), +) { + val paddingTop = with(LocalDensity.current) { flyoutPopPaddingFixShadowRender.roundToPx() } + BasicFlyoutContainer( + flyout = { + MenuFlyout( + visible = isFlyoutVisible, + onDismissRequest = { isFlyoutVisible = false }, + positionProvider = rememberSubMenuFlyoutPositionProvider(), + enterPlacementAnimation = { + defaultMenuFlyoutEnterPlacementAnimation( + it, + paddingTop + ) + }, + content = items + ) + }, + initialVisible = false + ) { + val interactionSource = interaction ?: remember { MutableInteractionSource() } + MenuFlyoutItem( + onClick = { isFlyoutVisible = !isFlyoutVisible }, + icon = icon, + text = text, + trailing = { ListItemDefaults.CascadingIcon() }, + modifier = modifier, + interaction = interactionSource, + enabled = enabled, + colors = colors + ) + + registerHoveredMenuItem(interactionSource) { + isFlyoutVisible = it + } + } +} + +internal class MenuFlyoutScopeImpl : MenuFlyoutScope { + var latestHoveredItem: String? by mutableStateOf(null) + + @OptIn(ExperimentalUuidApi::class) + @Composable + override fun registerHoveredMenuItem( + interaction: MutableInteractionSource, + onDelayedHoveredChanged: (hovered: Boolean) -> Unit + ) { + val isHovered = interaction.collectIsHoveredAsState() + val uuid = remember { Uuid.random().toString() } + val delayHovered = remember { mutableStateOf(false) } + LaunchedEffect(isHovered.value) { + if (isHovered.value) { + latestHoveredItem = uuid + delay(250) + delayHovered.value = true + } + } + + LaunchedEffect(latestHoveredItem, delayHovered.value) { + if (latestHoveredItem != uuid) { + delayHovered.value = false + } + onDelayedHoveredChanged(latestHoveredItem == uuid && delayHovered.value) + } + } +} + +@Deprecated( + message = "use ListItemColorScheme instead", + replaceWith = ReplaceWith( + expression = "ListItemColorScheme", + imports = arrayOf("io.github.composefluent.component.ListItemColorScheme") + ) +) +typealias MenuColors = ListItemColorScheme + +@Deprecated( + message = "use ListItemColor instead", + replaceWith = ReplaceWith( + "ListItemColor", + imports = arrayOf("io.github.composefluent.component.ListItemColor") + ) +) +typealias MenuColor = ListItemColor + +/** + * Scope for the content of a [MenuFlyout]. + * + * This scope provides functions to register menu items that need to track their hover state, + * which is useful for managing the display of submenus or highlighting items. + */ +interface MenuFlyoutScope { + + /** + * Registers a menu item to track its hovered state with a delay. + * + * This function uses a [MutableInteractionSource] to monitor the hovered state of a menu item. + * It introduces a delay before considering the item as truly hovered to avoid flickering + * when the user's mouse briefly passes over the item. + * + * @param interaction The [MutableInteractionSource] associated with the menu item to track. + * @param onDelayedHoveredChanged A callback that is invoked when the delayed hovered state of the item changes. + * The `hovered` parameter indicates whether the item is considered hovered after the delay. + */ + @Composable + fun registerHoveredMenuItem( + interaction: MutableInteractionSource, + onDelayedHoveredChanged: (hovered: Boolean) -> Unit + ) +} + +/** + * Scope for the content of a [MenuFlyoutContainer]. + * + * Inherits from [MenuFlyoutScope] and [FlyoutContainerScope], providing functionalities + * for both menu items and container-level flyout operations. + */ +interface MenuFlyoutContainerScope : MenuFlyoutScope, FlyoutContainerScope + +private class MenuFlyoutContainerScopeImpl( + flyoutScope: FlyoutContainerScope, + menuFlyoutScope: MenuFlyoutScope +) : MenuFlyoutContainerScope, FlyoutContainerScope by flyoutScope, + MenuFlyoutScope by menuFlyoutScope + +internal fun defaultMenuFlyoutEnterPlacementAnimation( + placement: FlyoutPlacement, + paddingTop: Int +): EnterTransition { + return fadeIn(menuFlyoutEnterSpec()) + when (placement) { + FlyoutPlacement.Auto, FlyoutPlacement.Full -> scaleIn(menuFlyoutEnterSpec()) + + // slide from top + FlyoutPlacement.Start, + FlyoutPlacement.End, + FlyoutPlacement.Bottom, + FlyoutPlacement.BottomAlignedStart, + FlyoutPlacement.BottomAlignedEnd, + FlyoutPlacement.StartAlignedTop, + FlyoutPlacement.EndAlignedTop -> slideInVertically(menuFlyoutEnterSpec()) { -paddingTop } + + expandVertically( + animationSpec = menuFlyoutEnterSpec(), + expandFrom = Alignment.Top, + initialHeight = { it } + ) + + //slide from bottom + FlyoutPlacement.Top, + FlyoutPlacement.TopAlignedStart, + FlyoutPlacement.TopAlignedEnd, + FlyoutPlacement.StartAlignedBottom, + FlyoutPlacement.EndAlignedBottom -> slideInVertically(menuFlyoutEnterSpec()) { paddingTop } + + expandVertically( + animationSpec = menuFlyoutEnterSpec(), + initialHeight = { it } + ) + } +} + +@Composable +internal fun rememberSubMenuFlyoutPositionProvider( + initialPlacement: FlyoutPlacement = FlyoutPlacement.Auto, + paddingToAnchor: PaddingValues = PaddingValues(vertical = flyoutDefaultPadding) +): SubMenuFlyoutPositionProvider { + val density = LocalDensity.current + return remember(initialPlacement, density, paddingToAnchor) { + SubMenuFlyoutPositionProvider(density, initialPlacement, paddingToAnchor) + } +} + +@Stable +internal class SubMenuFlyoutPositionProvider( + density: Density, + initialPlacement: FlyoutPlacement, + paddingToAnchor: PaddingValues, +) : FlyoutPositionProvider(density, initialPlacement, paddingToAnchor) { + override fun Density.calculateTargetPlacement( + anchorBounds: IntRect, + windowSize: IntSize, + layoutDirection: LayoutDirection, + popupContentSize: Size + ): Pair { + return calculatePlacementByHorizontal( + anchorBounds, + windowSize, + layoutDirection, + popupContentSize + ) + } +} + +private fun menuFlyoutEnterSpec() = + tween(FluentDuration.ShortDuration, easing = FluentEasing.FastInvokeEasing) \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/NavigationView.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/NavigationView.kt new file mode 100644 index 00000000..65b5070a --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/NavigationView.kt @@ -0,0 +1,1836 @@ +@file:OptIn(ExperimentalFluentApi::class, ExperimentalFoundationApi::class) + +package io.github.composefluent.component + +import androidx.compose.animation.AnimatedVisibility +import androidx.compose.animation.core.MutableTransitionState +import androidx.compose.animation.core.animateDp +import androidx.compose.animation.core.animateFloat +import androidx.compose.animation.core.animateFloatAsState +import androidx.compose.animation.core.rememberTransition +import androidx.compose.animation.core.tween +import androidx.compose.animation.core.updateTransition +import androidx.compose.animation.expandHorizontally +import androidx.compose.animation.shrinkHorizontally +import androidx.compose.foundation.BorderStroke +import androidx.compose.foundation.ExperimentalFoundationApi +import androidx.compose.foundation.background +import androidx.compose.foundation.clickable +import androidx.compose.foundation.gestures.awaitEachGesture +import androidx.compose.foundation.gestures.awaitFirstDown +import androidx.compose.foundation.gestures.waitForUpOrCancellation +import androidx.compose.foundation.interaction.Interaction +import androidx.compose.foundation.interaction.InteractionSource +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.interaction.collectIsPressedAsState +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.PaddingValues +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.Spacer +import androidx.compose.foundation.layout.fillMaxHeight +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.layout.width +import androidx.compose.foundation.layout.wrapContentSize +import androidx.compose.foundation.lazy.layout.IntervalList +import androidx.compose.foundation.lazy.layout.LazyLayoutIntervalContent +import androidx.compose.foundation.lazy.layout.MutableIntervalList +import androidx.compose.foundation.shape.CircleShape +import androidx.compose.foundation.shape.RoundedCornerShape +import androidx.compose.runtime.Composable +import androidx.compose.runtime.Immutable +import androidx.compose.runtime.LaunchedEffect +import androidx.compose.runtime.Stable +import androidx.compose.runtime.compositionLocalOf +import androidx.compose.runtime.derivedStateOf +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.referentialEqualityPolicy +import androidx.compose.runtime.remember +import androidx.compose.runtime.rememberUpdatedState +import androidx.compose.runtime.setValue +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.geometry.Offset +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.Shape +import androidx.compose.ui.graphics.graphicsLayer +import androidx.compose.ui.input.pointer.PointerEventPass +import androidx.compose.ui.input.pointer.pointerInput +import androidx.compose.ui.layout.layout +import androidx.compose.ui.layout.onGloballyPositioned +import androidx.compose.ui.layout.onSizeChanged +import androidx.compose.ui.layout.positionInRoot +import androidx.compose.ui.platform.LocalDensity +import androidx.compose.ui.unit.Constraints +import androidx.compose.ui.unit.Dp +import androidx.compose.ui.unit.IntSize +import androidx.compose.ui.unit.dp +import androidx.compose.ui.unit.toSize +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.FluentTheme +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.background.BackgroundSizing +import io.github.composefluent.background.ElevationDefaults +import io.github.composefluent.background.Layer +import io.github.composefluent.background.MaterialContainer +import io.github.composefluent.background.MaterialDefaults +import io.github.composefluent.layout.overflow.OverflowRowScope +import io.github.composefluent.scheme.PentaVisualScheme +import io.github.composefluent.scheme.collectVisualState +import kotlin.math.roundToInt + +internal val LocalNavigationExpand = compositionLocalOf { false } +internal val LocalNavigationLevel = compositionLocalOf { 0 } +internal val LocalIndicatorState = compositionLocalOf { null } + +typealias NavigationItemColorScheme = PentaVisualScheme + +/** + * Represents the color scheme for a navigation item. + * + * @property fillColor The fill color of the navigation item. + * @property contentColor The color of the content (text, icons) within the navigation item. + * @property indicatorColor The color of the indicator associated with the navigation item. + * @property trailingColor The color of trailing elements in the navigation item. + */ +@Immutable +data class NavigationItemColor( + val fillColor: Color, + val contentColor: Color, + val indicatorColor: Color, + val trailingColor: Color +) + +/** + * Enumeration class for defining the display mode of the navigation view. + * + * - **Top**: The navigation menu is displayed at the top of the screen. + * - **Left**: The navigation menu is displayed on the left side of the screen. + * - **LeftCompact**: The navigation menu is displayed in a compact mode on the left side. + * - **LeftCollapsed**: The navigation menu is displayed in a collapsed mode on the left side. + */ +enum class NavigationDisplayMode { + Top, + Left, + LeftCompact, + LeftCollapsed +} + +/** + * Creates and remembers a [NavigationState] instance. + * + * This function is used to manage the state of a navigation component, including whether it is + * expanded and its current offset. + * + * @param initialExpanded The initial expanded state of the navigation. Defaults to `true`. + * @param initialOffset The initial offset of the navigation's indicator. Defaults to `Offset.Zero`. + * @return A [NavigationState] instance that is remembered across recompositions. + */ +@Composable +fun rememberNavigationState( + initialExpanded: Boolean = true, + initialOffset: Offset = Offset.Zero +): NavigationState { + return remember(initialExpanded, initialOffset) { + NavigationState(initialExpanded, initialOffset) + } +} + +/** + * Represents the state of the navigation view. + * + * @param initialExpanded The initial expanded state of the navigation view. + * @param initialOffset The initial offset of the indicator. + */ +class NavigationState( + initialExpanded: Boolean, + initialOffset: Offset +) { + var expanded by mutableStateOf(initialExpanded) + val indicatorState = IndicatorState(initialOffset) +} + +/** + * A composable function that creates a navigation view with different display modes. + * + * The navigation view can be displayed in four different modes: + * - [NavigationDisplayMode.Top]: A horizontal navigation bar at the top. + * - [NavigationDisplayMode.Left]: A vertical navigation pane on the left. + * - [NavigationDisplayMode.LeftCompact]: A compact vertical navigation pane on the left. + * - [NavigationDisplayMode.LeftCollapsed]: A collapsed vertical navigation pane on the left. + * + * @param menuItems A lambda that defines the menu items to be displayed in the navigation view. + * It uses a [NavigationMenuScope] to add items. + * @param modifier The modifier to be applied to the navigation view. + * @param displayMode The display mode of the navigation view. + * @param title A composable function that defines the title to be displayed in the navigation view. + * This is only applicable for [NavigationDisplayMode.Left], [NavigationDisplayMode.LeftCompact], and [NavigationDisplayMode.LeftCollapsed]. + * @param state The [NavigationState] that controls the state of the navigation view. + * Use [rememberNavigationState] to create and remember the state. + * @param expandedButton A composable function that defines the button to be used to expand or collapse the navigation view. + * This is only applicable for [NavigationDisplayMode.Left], [NavigationDisplayMode.LeftCompact], and [NavigationDisplayMode.LeftCollapsed]. + * @param backButton A composable function that defines the back button to be displayed in the navigation view. + * This is only applicable for [NavigationDisplayMode.Left], [NavigationDisplayMode.LeftCompact], and [NavigationDisplayMode.LeftCollapsed]. + * @param autoSuggestBox An optional composable function that defines the auto-suggest box to be displayed in the navigation view. + * It uses a [NavigationAutoSuggestBoxScope] to control the focus. + * @param footerItems A lambda that defines the footer items to be displayed in the navigation view. + * It uses a [NavigationMenuScope] to add items. + * @param contentPadding The padding to be applied to the content area of the navigation view. + * @param color The background color of the navigation view. + * @param border The border to be applied to the navigation view. + */ +@Composable +fun NavigationView( + menuItems: NavigationMenuScope.() -> Unit, + modifier: Modifier = Modifier, + displayMode: NavigationDisplayMode = NavigationDisplayMode.Left, + title: @Composable () -> Unit = {}, + state: NavigationState = rememberNavigationState( + initialExpanded = displayMode != NavigationDisplayMode.LeftCompact + ), + expandedButton: @Composable () -> Unit = { + NavigationDefaults.ExpandedButton( + onClick = { state.expanded = !state.expanded } + ) + }, + backButton: @Composable () -> Unit = {}, + autoSuggestBox: (@Composable NavigationAutoSuggestBoxScope.() -> Unit)? = null, + footerItems: NavigationMenuScope.() -> Unit = {}, + contentPadding: PaddingValues = PaddingValues(), + color: Color = FluentTheme.colors.background.layer.default, + border: BorderStroke? = BorderStroke(1.dp, FluentTheme.colors.stroke.card.default), + pane: @Composable () -> Unit +) { + val footerItemIntervals = rememberNavigationMenuInterval(footerItems) + when (displayMode) { + NavigationDisplayMode.Top -> { + TopLayout( + modifier = modifier, + autoSuggestBox = autoSuggestBox, + state = state, + footerItemIntervals = footerItemIntervals, + displayMode = displayMode, + menuItems = menuItems, + contentPadding = contentPadding, + pane = pane, + color = color, + border = border + ) + } + + NavigationDisplayMode.Left -> { + LeftLayout( + modifier = modifier, + autoSuggestBox = autoSuggestBox, + state = state, + footerItemIntervals = footerItemIntervals, + displayMode = displayMode, + menuItems = menuItems, + contentPadding = contentPadding, + pane = pane, + title = title, + backButton = backButton, + expandedButton = expandedButton, + color = color, + border = border + ) + } + + NavigationDisplayMode.LeftCompact -> { + LeftCompactLayout( + modifier = modifier, + autoSuggestBox = autoSuggestBox, + state = state, + footerItemIntervals = footerItemIntervals, + displayMode = displayMode, + menuItems = menuItems, + contentPadding = contentPadding, + pane = pane, + title = title, + backButton = backButton, + expandedButton = expandedButton, + color = color, + border = border + ) + } + + NavigationDisplayMode.LeftCollapsed -> { + LeftCollapsedLayout( + modifier = modifier, + autoSuggestBox = autoSuggestBox, + state = state, + footerItemIntervals = footerItemIntervals, + displayMode = displayMode, + menuItems = menuItems, + contentPadding = contentPadding, + pane = pane, + title = title, + backButton = backButton, + expandedButton = expandedButton, + color = color, + border = border + ) + } + } +} + +@Composable +private fun TopLayout( + modifier: Modifier, + autoSuggestBox: @Composable (NavigationAutoSuggestBoxScope.() -> Unit)?, + state: NavigationState, + footerItemIntervals: IntervalList, + displayMode: NavigationDisplayMode, + menuItems: NavigationMenuScope.() -> Unit, + contentPadding: PaddingValues, + color: Color, + border: BorderStroke?, + pane: @Composable () -> Unit +) { + Column( + content = { + val expandedState = remember { mutableStateOf(false) } + TopNav( + expanded = expandedState.value, + onExpandedChanged = { expandedState.value = it }, + autoSuggestBox = autoSuggestBox, + indicatorState = state.indicatorState, + footer = if (footerItemIntervals.size > 0) { + { + val scope = ValueNavigationMenuItemScope( + displayMode = displayMode, + isFooter = true, + onFlyoutDismissRequest = { expandedState.value = false } + ) + footerItemIntervals.forEachItem { item(scope, it) } + } + } else { + null + } + ) { + TopNavigationMenuScope( + overflowRowScope = this, + onFlyoutDismissRequest = { expandedState.value = false } + ).menuItems() + } + Layer( + modifier = Modifier.weight(1f).padding(contentPadding), + shape = FluentTheme.shapes.intersectionEdge, + color = color, + border = border, + content = pane + ) + }, + modifier = modifier + ) +} + +@Composable +private fun LeftLayout( + menuItems: NavigationMenuScope.() -> Unit, + modifier: Modifier, + autoSuggestBox: @Composable (NavigationAutoSuggestBoxScope.() -> Unit)?, + title: @Composable () -> Unit, + backButton: @Composable () -> Unit, + expandedButton: @Composable () -> Unit, + state: NavigationState, + footerItemIntervals: IntervalList, + displayMode: NavigationDisplayMode, + contentPadding: PaddingValues, + color: Color, + border: BorderStroke?, + pane: @Composable () -> Unit +) { + val menuItemIntervals = rememberNavigationMenuInterval(menuItems) + Row(modifier = modifier) { + SideNav( + autoSuggestionBox = autoSuggestBox, + header = { + SideNavHeaderArea( + title = title, + backButton = backButton, + expandButton = expandedButton + ) + }, + expanded = state.expanded, + onExpandStateChange = { state.expanded = it }, + indicatorState = state.indicatorState, + footer = if (footerItemIntervals.size > 0) { + { + val scope = ValueNavigationMenuItemScope( + displayMode = displayMode, + isFooter = true + ) + footerItemIntervals.forEachItem { item(scope, it) } + } + } else { + null + }, + modifier = Modifier.fillMaxHeight() + ) { + val scope = ValueNavigationMenuItemScope( + displayMode = displayMode, + isFooter = false + ) + menuItemIntervals.forEachItem { item(scope, it) } + } + Box( + content = { + Layer( + color = color, + border = border, + shape = RoundedCornerShape(topStart = FluentTheme.cornerRadius.overlay), + content = pane + ) + }, + modifier = Modifier.weight(1f).padding(contentPadding) + ) + } +} + +@Composable +private fun LeftCollapsedLayout( + modifier: Modifier, + state: NavigationState, + contentPadding: PaddingValues, + pane: @Composable () -> Unit, + autoSuggestBox: @Composable (NavigationAutoSuggestBoxScope.() -> Unit)?, + footerItemIntervals: IntervalList, + displayMode: NavigationDisplayMode, + menuItems: NavigationMenuScope.() -> Unit, + title: @Composable () -> Unit, + backButton: @Composable () -> Unit, + color: Color, + border: BorderStroke?, + expandedButton: @Composable () -> Unit +) { + MaterialContainer(modifier = modifier) { + Box( + content = { + Layer( + color = color, + border = border, + shape = FluentTheme.shapes.intersectionEdge, + content = pane + ) + }, + modifier = Modifier + .behindMaterial() + .then( + if (state.expanded) { + Modifier.pointerInput(Unit) { + awaitEachGesture { + awaitFirstDown(pass = PointerEventPass.Initial) + waitForUpOrCancellation(PointerEventPass.Initial)?.let { + it.consume() + state.expanded = false + } + } + } + } else { + Modifier + } + ).padding(contentPadding) + ) + val expandedTransition = updateTransition(state.expanded) + + var backButtonSize by remember { mutableStateOf(IntSize.Zero) } + var expandedButtonSize by remember { mutableStateOf(IntSize.Zero) } + AnimatedVisibility( + visible = state.expanded, + enter = expandHorizontally( + animationSpec = tween( + durationMillis = FluentDuration.ShortDuration, + easing = FluentEasing.FastInvokeEasing, + delayMillis = FluentDuration.QuickDuration + ) + ), + exit = shrinkHorizontally( + animationSpec = tween( + durationMillis = FluentDuration.ShortDuration, + easing = FluentEasing.FastDismissEasing, + delayMillis = FluentDuration.QuickDuration + ) + ) + ) { + Layer( + backgroundSizing = BackgroundSizing.InnerBorderEdge, + border = BorderStroke(1.dp, FluentTheme.colors.stroke.surface.flyout), + color = Color.Transparent, + shape = FluentTheme.shapes.overlay, + elevation = expandedTransition.animateDp( + targetValueByState = { if (it) ElevationDefaults.flyout else 0.dp }, + transitionSpec = { + tween( + durationMillis = FluentDuration.ShortDuration, + easing = FluentEasing.FadeInFadeOutEasing, + delayMillis = FluentDuration.QuickDuration + ) + } + ).value, + modifier = Modifier.clickable( + interactionSource = null, + onClick = {}, + indication = null + ) + ) { + FlyoutContentLayout( + shape = FluentTheme.shapes.overlay, + material = MaterialDefaults.acrylicDefault(), + contentPadding = PaddingValues() + ) { + SideNav( + expanded = true, + autoSuggestionBox = autoSuggestBox, + onExpandStateChange = { state.expanded = it }, + header = { + SideNavHeaderArea( + title = {}, + backButton = { + Spacer( + modifier = Modifier.size( + size = with(LocalDensity.current) { + backButtonSize.toSize().toDpSize() + } + ) + ) + }, + expandButton = { + Spacer( + modifier = Modifier.size( + size = with(LocalDensity.current) { + expandedButtonSize.toSize().toDpSize() + } + ) + ) + }, + displayMode = NavigationDisplayMode.LeftCollapsed + ) + }, + indicatorState = state.indicatorState, + footer = if (footerItemIntervals.size > 0) { + { + val scope = ValueNavigationMenuItemScope( + displayMode = displayMode, + isFooter = true, + onFlyoutDismissRequest = { state.expanded = false } + ) + footerItemIntervals.forEachItem { item(scope, it) } + } + } else { + null + }, + content = { + val menuItemIntervals = rememberNavigationMenuInterval(menuItems) + val scope = + ValueNavigationMenuItemScope( + displayMode = displayMode, + isFooter = true, + onFlyoutDismissRequest = { state.expanded = false } + ) + menuItemIntervals.forEachItem { item(scope, it) } + } + ) + } + } + } + SideNavHeaderArea( + title = title, + backButton = { + Box( + content = { backButton() }, + modifier = Modifier.onSizeChanged { backButtonSize = it } + ) + }, + expandButton = { + Box( + content = { expandedButton() }, + modifier = Modifier.onSizeChanged { expandedButtonSize = it } + ) + }, + modifier = Modifier.padding(top = 4.dp), + displayMode = NavigationDisplayMode.LeftCollapsed + ) + } +} + +@Composable +private fun LeftCompactLayout( + modifier: Modifier, + state: NavigationState, + contentPadding: PaddingValues, + pane: @Composable () -> Unit, + autoSuggestBox: @Composable (NavigationAutoSuggestBoxScope.() -> Unit)?, + title: @Composable () -> Unit, + backButton: @Composable () -> Unit, + expandedButton: @Composable () -> Unit, + footerItemIntervals: IntervalList, + displayMode: NavigationDisplayMode, + color: Color, + border: BorderStroke?, + menuItems: NavigationMenuScope.() -> Unit +) { + MaterialContainer(modifier = modifier) { + Box( + content = { + Layer( + color = color, + border = border, + shape = RoundedCornerShape(topStart = FluentTheme.cornerRadius.overlay), + content = pane + ) + }, + modifier = Modifier + .behindMaterial() + .then( + if (state.expanded) { + Modifier.pointerInput(Unit) { + awaitEachGesture { + awaitFirstDown(pass = PointerEventPass.Initial) + waitForUpOrCancellation(PointerEventPass.Initial)?.let { + it.consume() + state.expanded = false + } + } + } + } else { + Modifier + } + ) + .padding(start = 48.dp).padding(contentPadding) + ) + val expandedTransition = updateTransition(state.expanded) + val isCollapsed by remember { + derivedStateOf { + !expandedTransition.currentState && !expandedTransition.isRunning + } + } + Layer( + backgroundSizing = BackgroundSizing.InnerBorderEdge, + border = if (isCollapsed) { + null + } else { + BorderStroke(1.dp, FluentTheme.colors.stroke.surface.flyout) + }, + color = Color.Transparent, + shape = FluentTheme.shapes.overlay, + elevation = expandedTransition.animateDp( + transitionSpec = { + tween( + FluentDuration.ShortDuration, + easing = FluentEasing.FadeInFadeOutEasing, + delayMillis = FluentDuration.QuickDuration + ) + }, + targetValueByState = { if (it) ElevationDefaults.flyout else 0.dp } + ).value, + modifier = Modifier.clickable( + interactionSource = null, + onClick = {}, + indication = null + ) + ) { + FlyoutContentLayout( + shape = FluentTheme.shapes.overlay, + material = if (isCollapsed) { + MaterialDefaults.customAcrylic( + tint = Color.Transparent, + fallback = Color.Transparent, + backgroundColor = Color.Transparent, + lightLuminosityOpacity = 0f, + lightTintOpacity = 0f + ) + } else { + MaterialDefaults.acrylicDefault() + }, + contentPadding = PaddingValues() + ) { + SideNav( + expanded = state.expanded, + autoSuggestionBox = autoSuggestBox, + header = { + SideNavHeaderArea( + title = title, + backButton = backButton, + expandButton = expandedButton + ) + }, + onExpandStateChange = { state.expanded = it }, + indicatorState = state.indicatorState, + footer = if (footerItemIntervals.size > 0) { + { + val scope = ValueNavigationMenuItemScope( + displayMode = displayMode, + isFooter = true, + onFlyoutDismissRequest = { state.expanded = false } + ) + footerItemIntervals.forEachItem { item(scope, it) } + } + } else { + null + }, + content = { + val menuItemIntervals = rememberNavigationMenuInterval(menuItems) + val scope = ValueNavigationMenuItemScope( + displayMode = displayMode, + isFooter = true, + onFlyoutDismissRequest = { state.expanded = false } + ) + menuItemIntervals.forEachItem { item(scope, it) } + } + ) + } + } + } +} + +/** + * Scope for defining the content of a navigation menu item. + * + * This interface provides access to the current [displayMode] and [isFooter] status of the + * navigation menu item, along with a function to request the dismissal of a flyout. + * + * @property displayMode The [NavigationDisplayMode] of the navigation view. + * @property isFooter `true` if the item is part of the footer section; `false` otherwise. + */ +interface NavigationMenuItemScope { + + val displayMode: NavigationDisplayMode + + val isFooter: Boolean + + fun flyoutDismissRequest() {} +} + +/** + * Scope for building the content of a navigation menu. + * + * This interface provides methods to add individual items or multiple items to a + * navigation menu. It's used within the [NavigationView] composable to define the + * structure and content of the navigation menu items. + */ +interface NavigationMenuScope { + + /** + * Adds a single item to the navigation menu. + * + * This function allows you to define a single navigation item with a specific [content]. + * + * @param key An optional key to uniquely identify this item. Useful for tracking + * the item's position and identity across recompositions. If not provided, + * a default key will be used. + * @param contentType An optional type identifier for the item's content. This can be + * useful for optimization purposes, allowing the framework to + * recognize and potentially reuse content of the same type. + * If not provided, the content type is considered undefined. + * @param content A composable lambda function that defines the content of the navigation + * item. It provides a [NavigationMenuItemScope] receiver, which offers + * additional context and functions for configuring the item. + */ + fun item( + key: Any? = null, + contentType: Any? = null, + content: @Composable NavigationMenuItemScope.() -> Unit + ) + + /** + * Adds multiple items to the navigation menu. + * + * @param count The number of items to add. + * @param key An optional function to provide a unique key for each item. + * If null, the index will be used as the key. + * @param contentType A function to define the content type for each item. + * @param itemContent A composable function that defines the content of each item. + * It provides the [NavigationMenuItemScope] and the index of the item. + */ + fun items( + count: Int, + key: ((index: Int) -> Any)? = null, + contentType: (index: Int) -> Any? = { null }, + itemContent: @Composable NavigationMenuItemScope.(index: Int) -> Unit + ) +} + +/** + * Adds a menu item to the navigation menu. + * + * This function provides a way to add a single menu item to the navigation view. + * It allows you to define the item's behavior, appearance, and content. + * + * @param selected Indicates whether the menu item is currently selected. + * @param onClick A callback that is invoked when the menu item is clicked. It provides the updated + * `selected` state. + * @param text A composable function that defines the text to be displayed for the menu item. + * @param icon An optional composable function that defines the icon to be displayed for the menu + * item. + * @param badge An optional composable function that defines a badge to be displayed on the menu + * item. + * @param key An optional key to identify the menu item uniquely. + * @param contentType An optional content type to further distinguish the menu item. + * @param expandItems Indicates whether the menu item can expand to show sub-items. + * @param enabled Indicates whether the menu item is enabled. + * @param onExpandItemsChanged A callback that is invoked when the expansion state of sub-items + * changes. + * @param interactionSource An optional [MutableInteractionSource] to handle interactions with the + * menu item. + * @param items An optional composable lambda that defines the sub-items to be displayed when the + * menu item is expanded. It uses a [MenuFlyoutContainerScope]. + */ +fun NavigationMenuScope.menuItem( + selected: Boolean, + onClick: (selected: Boolean) -> Unit, + text: @Composable () -> Unit, + icon: (@Composable () -> Unit)?, + badge: (@Composable () -> Unit)? = null, + key: Any? = null, + contentType: Any? = null, + expandItems: Boolean = false, + enabled: Boolean = true, + onExpandItemsChanged: (Boolean) -> Unit = {}, + interactionSource: MutableInteractionSource? = null, + items: (@Composable MenuFlyoutContainerScope.() -> Unit)? = null +) { + item(key, contentType) { + MenuItem( + selected = selected, + onClick = onClick, + text = text, + icon = icon, + expandItems = expandItems, + onExpandItemsChanged = onExpandItemsChanged, + interactionSource = interactionSource, + items = items, + enabled = enabled, + badge = badge + ) + } +} + +/** + * A composable function that creates a menu item for navigation. + * + * This function is used to create a menu item within a [NavigationView]. It can be + * displayed in different display modes and has various customization options. + * + * @param selected Indicates whether the menu item is currently selected. + * @param onClick A callback function that is invoked when the menu item is clicked. + * It provides a boolean indicating the new selected state. + * @param text A composable function that defines the text to be displayed in the menu item. + * @param icon An optional composable function that defines the icon to be displayed in the menu item. + * @param expandItems A boolean indicating whether the menu item has expandable sub-items. + * Defaults to `false`. + * @param enabled A boolean indicating whether the menu item is enabled. Defaults to `true`. + * @param indicatorState The state of the indicator for the menu item. + * Defaults to the current [LocalIndicatorState]. + * @param onExpandItemsChanged A callback function that is invoked when the expandable state of the menu item changes. + * It provides a boolean indicating whether the items are expanded. Defaults to an empty function. + * @param interactionSource An optional [MutableInteractionSource] that can be used to track the interaction state of the menu item. + * Defaults to `null`. + * @param colors The color scheme for the menu item. It determines the colors for different states such as selected, hovered, and default. + * Defaults to different sets of colors based on the `displayMode` and `selected` state. + * @param indicator A composable function that defines the indicator to be displayed for the menu item. + * It takes an [IndicatorScope] and a [Color] as parameters. + * Defaults to either [NavigationDefaults.HorizontalIndicator] for [NavigationDisplayMode.Top] + * or [NavigationDefaults.VerticalIndicator] for other modes. + * @param badge An optional composable function that defines a badge to be displayed on the menu item. + * @param items An optional composable function that defines the sub-items (flyout) to be displayed when the menu item is expanded. + * It uses a [MenuFlyoutContainerScope] to add sub-items. + */ +@Composable +fun NavigationMenuItemScope.MenuItem( + selected: Boolean, + onClick: (selected: Boolean) -> Unit, + text: @Composable () -> Unit, + icon: (@Composable () -> Unit)?, + expandItems: Boolean = false, + enabled: Boolean = true, + indicatorState: IndicatorState? = LocalIndicatorState.current, + onExpandItemsChanged: (Boolean) -> Unit = {}, + interactionSource: MutableInteractionSource? = null, + colors: NavigationItemColorScheme = when { + displayMode == NavigationDisplayMode.Top && selected -> NavigationDefaults.selectedTopItemColors() + displayMode == NavigationDisplayMode.Top -> NavigationDefaults.defaultTopItemColors() + selected -> NavigationDefaults.selectedSideItemColors() + else -> NavigationDefaults.defaultSideItemColors() + }, + indicator: @Composable IndicatorScope.(color: Color) -> Unit = if (displayMode == NavigationDisplayMode.Top) { + { color -> + NavigationDefaults.HorizontalIndicator( + color = color, + modifier = Modifier.indicatorOffset { selected }) + } + } else { + { color -> + NavigationDefaults.VerticalIndicator( + color = color, + modifier = Modifier.indicatorOffset { selected }) + } + }, + badge: (@Composable () -> Unit)? = null, + items: (@Composable MenuFlyoutContainerScope.() -> Unit)? = null +) { + + if (displayMode == NavigationDisplayMode.Top) { + var flyoutVisible by remember { mutableStateOf(false) } + TooltipBox( + tooltip = text, + enabled = isFooter + ) { + TopNavItem( + selected = selected, + onClick = { + onClick(!selected) + flyoutVisible = !flyoutVisible + }, + text = if (isFooter) null else text, + icon = icon, + flyoutVisible = flyoutVisible, + onFlyoutVisibleChanged = { flyoutVisible = it }, + indicatorState = indicatorState, + items = items, + enabled = enabled, + interactionSource = interactionSource, + colors = colors, + indicator = indicator, + badge = badge + ) + } + } else { + val isExpanded = LocalNavigationExpand.current + var flyoutVisible by remember(isExpanded) { mutableStateOf(false) } + + SideNavItem( + selected = selected, + onSelectedChanged = { + onClick(!selected) + if (!isExpanded) { + flyoutVisible = !flyoutVisible + } + }, + text = { text() }, + indicatorState = indicatorState, + flyoutVisible = flyoutVisible && !isExpanded, + onFlyoutVisibleChanged = { flyoutVisible = it }, + icon = icon, + expandItems = expandItems, + onExpandItemsChanged = onExpandItemsChanged, + items = items, + enabled = enabled, + interactionSource = interactionSource, + colors = colors, + indicator = indicator, + badge = badge + ) + } +} + +/** + * A composable function that creates a menu item for navigation. + * + * This function is used to create a menu item within a [NavigationView]. It can be + * displayed in different display modes and has various customization options. + * + * @param selected Indicates whether the menu item is currently selected. + * @param onClick A callback function that is invoked when the menu item is clicked. + * It provides a boolean indicating the new selected state. + * @param text A composable function that defines the text to be displayed in the menu item. + * @param icon An optional composable function that defines the icon to be displayed in the menu item. + * @param header An optional composable function that defines the header to be displayed in the menu item. + * @param expandItems A boolean indicating whether the menu item has expandable sub-items. + * Defaults to `false`. + * @param enabled A boolean indicating whether the menu item is enabled. Defaults to `true`. + * @param separatorVisible A boolean indicating whether the separator is visible. Defaults to `false`. + * @param indicatorState The state of the indicator for the menu item. + * Defaults to the current [LocalIndicatorState]. + * @param onExpandItemsChanged A callback function that is invoked when the expandable state of the menu item changes. + * It provides a boolean indicating whether the items are expanded. Defaults to an empty function. + * @param interactionSource An optional [MutableInteractionSource] that can be used to track the interaction state of the menu item. + * Defaults to `null`. + * @param colors The color scheme for the menu item. It determines the colors for different states such as selected, hovered, and default. + * Defaults to different sets of colors based on the `displayMode` and `selected` state. + * @param indicator A composable function that defines the indicator to be displayed for the menu item. + * It takes an [IndicatorScope] and a [Color] as parameters. + * Defaults to either [NavigationDefaults.HorizontalIndicator] for [NavigationDisplayMode.Top] + * or [NavigationDefaults.VerticalIndicator] for other modes. + * @param badge An optional composable function that defines a badge to be displayed on the menu item. + */ +@Composable +fun NavigationMenuItemScope.MenuItem( + selected: Boolean, + onClick: (selected: Boolean) -> Unit, + text: @Composable () -> Unit, + icon: (@Composable () -> Unit)?, + header: (@Composable () -> Unit)?, + expandItems: Boolean = false, + enabled: Boolean = true, + separatorVisible: Boolean = false, + indicatorState: IndicatorState? = LocalIndicatorState.current, + onExpandItemsChanged: (Boolean) -> Unit = {}, + interactionSource: MutableInteractionSource? = null, + colors: NavigationItemColorScheme = when { + displayMode == NavigationDisplayMode.Top && selected -> NavigationDefaults.selectedTopItemColors() + displayMode == NavigationDisplayMode.Top -> NavigationDefaults.defaultTopItemColors() + selected -> NavigationDefaults.selectedSideItemColors() + else -> NavigationDefaults.defaultSideItemColors() + }, + indicator: @Composable IndicatorScope.(color: Color) -> Unit = if (displayMode == NavigationDisplayMode.Top) { + { color -> + NavigationDefaults.HorizontalIndicator( + color = color, + modifier = Modifier.indicatorOffset { selected }) + } + } else { + { color -> + NavigationDefaults.VerticalIndicator( + color = color, + modifier = Modifier.indicatorOffset { selected }) + } + }, + badge: (@Composable () -> Unit)? = null, + items: (@Composable MenuFlyoutContainerScope.() -> Unit)? = null +) { + if (displayMode == NavigationDisplayMode.Top) { + Row(verticalAlignment = Alignment.CenterVertically) { + header?.let { TopNavHeader(content = it) } + MenuItem( + selected = selected, + onClick = { onClick(!selected) }, + expandItems = expandItems, + onExpandItemsChanged = onExpandItemsChanged, + text = text, + icon = icon, + interactionSource = interactionSource, + enabled = enabled, + items = items, + indicatorState = indicatorState, + indicator = indicator, + colors = colors, + badge = badge + ) + if (separatorVisible) { + MenuItemSeparator() + } + } + } else { + Column { + header?.let { SideNavHeader(content = it) } + MenuItem( + selected = selected, + onClick = { onClick(!selected) }, + text = text, + icon = icon, + expandItems = expandItems, + enabled = enabled, + onExpandItemsChanged = onExpandItemsChanged, + items = items, + interactionSource = interactionSource, + indicatorState = indicatorState, + indicator = indicator, + colors = colors, + badge = badge + ) + if (separatorVisible) { + MenuItemSeparator() + } + } + } +} + +/** + * Adds a separator item to the navigation menu. + * + * This function allows you to add a visual separator between menu items in the + * navigation view. It uses the [MenuItemSeparator] composable to render the separator. + * + * @param key An optional key to uniquely identify this separator item. + * @param contentType An optional content type for this separator item. + */ +fun NavigationMenuScope.menuItemSeparator(key: Any? = null, contentType: Any? = null) { + item(key, contentType) { MenuItemSeparator() } +} + +/** + * Adds a separator to the navigation menu. + * + * This function adds a visual separator between menu items in the navigation view. + * The separator is displayed as a horizontal line in [NavigationDisplayMode.Top] mode and + * as a vertical line in other modes. + */ +@Composable +fun NavigationMenuItemScope.MenuItemSeparator() { + val isVertical = displayMode == NavigationDisplayMode.Top + NavigationItemSeparator(isVertical = isVertical) +} + +/** + * A collection of default values used by [NavigationView]. + * + * This object provides pre-defined color schemes and indicator components for navigation + * items. It also includes default buttons for common navigation tasks. + */ +object NavigationDefaults { + + /** + * Creates a default color scheme for a side navigation item. + * + * This function defines the default colors for a side navigation item in its various states: + * default, hovered, pressed, and disabled. It uses the Fluent theme's color palette + * for a consistent look and feel. + * + * @param default The color scheme for the default state of the item. + * @param hovered The color scheme when the item is hovered over. + * @param pressed The color scheme when the item is pressed. + * @param disabled The color scheme when the item is disabled. + * @return A [NavigationItemColorScheme] object containing the specified color schemes for each state. + */ + @Composable + @Stable + fun defaultSideItemColors( + default: NavigationItemColor = NavigationItemColor( + fillColor = FluentTheme.colors.subtleFill.transparent, + contentColor = FluentTheme.colors.text.text.primary, + trailingColor = FluentTheme.colors.text.text.secondary, + indicatorColor = FluentTheme.colors.fillAccent.default + ), + hovered: NavigationItemColor = NavigationItemColor( + fillColor = FluentTheme.colors.subtleFill.secondary, + contentColor = FluentTheme.colors.text.text.primary, + trailingColor = FluentTheme.colors.text.text.secondary, + indicatorColor = FluentTheme.colors.fillAccent.secondary + ), + pressed: NavigationItemColor = NavigationItemColor( + fillColor = FluentTheme.colors.subtleFill.tertiary, + contentColor = FluentTheme.colors.text.text.secondary, + trailingColor = FluentTheme.colors.text.text.tertiary, + indicatorColor = FluentTheme.colors.fillAccent.tertiary + ), + disabled: NavigationItemColor = NavigationItemColor( + fillColor = FluentTheme.colors.subtleFill.secondary, + contentColor = FluentTheme.colors.text.text.disabled, + trailingColor = FluentTheme.colors.text.text.disabled, + indicatorColor = FluentTheme.colors.fillAccent.disabled + ) + ) = NavigationItemColorScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) + + /** + * Creates a [NavigationItemColorScheme] with colors for a selected side navigation item. + * + * This function provides the color scheme for side navigation items when they are selected. + * It defines colors for various states such as default, hovered, pressed, and disabled. + * + * @param default The default [NavigationItemColor] for the selected item. + * @param hovered The [NavigationItemColor] for the hovered state of the selected item. + * @param pressed The [NavigationItemColor] for the pressed state of the selected item. + * @param disabled The [NavigationItemColor] for the disabled state of the selected item. + * @return A [NavigationItemColorScheme] containing the color definitions for the selected item. + */ + @Composable + @Stable + fun selectedSideItemColors( + default: NavigationItemColor = NavigationItemColor( + fillColor = FluentTheme.colors.subtleFill.secondary, + contentColor = FluentTheme.colors.text.text.primary, + trailingColor = FluentTheme.colors.text.text.secondary, + indicatorColor = FluentTheme.colors.fillAccent.default + ), + hovered: NavigationItemColor = NavigationItemColor( + fillColor = FluentTheme.colors.subtleFill.tertiary, + contentColor = FluentTheme.colors.text.text.primary, + trailingColor = FluentTheme.colors.text.text.secondary, + indicatorColor = FluentTheme.colors.fillAccent.secondary + ), + pressed: NavigationItemColor = NavigationItemColor( + fillColor = FluentTheme.colors.subtleFill.secondary, + contentColor = FluentTheme.colors.text.text.secondary, + trailingColor = FluentTheme.colors.text.text.tertiary, + indicatorColor = FluentTheme.colors.fillAccent.tertiary + ), + disabled: NavigationItemColor = NavigationItemColor( + fillColor = FluentTheme.colors.subtleFill.secondary, + contentColor = FluentTheme.colors.text.text.disabled, + trailingColor = FluentTheme.colors.text.text.disabled, + indicatorColor = FluentTheme.colors.fillAccent.disabled + ) + ) = NavigationItemColorScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) + + /** + * Creates a default color scheme for a top navigation item. + * + * This function defines the default colors for a top navigation item in its various states: + * default, hovered, pressed, and disabled. The colors are based on the Fluent theme. + * + * @param default The default color set for a selected top navigation item. + * @param hovered The color set for a selected top navigation item when hovered. + * @param pressed The color set for a selected top navigation item when pressed. + * @param disabled The color set for a selected top navigation item when disabled. + * @return A [NavigationItemColorScheme] instance that represents the color scheme for a top navigation item. + */ + @Composable + @Stable + fun defaultTopItemColors( + default: NavigationItemColor = NavigationItemColor( + fillColor = FluentTheme.colors.subtleFill.transparent, + contentColor = FluentTheme.colors.text.text.primary, + trailingColor = FluentTheme.colors.text.text.secondary, + indicatorColor = FluentTheme.colors.fillAccent.default + ), + hovered: NavigationItemColor = NavigationItemColor( + fillColor = FluentTheme.colors.subtleFill.transparent, + contentColor = FluentTheme.colors.text.text.secondary, + trailingColor = FluentTheme.colors.text.text.secondary, + indicatorColor = FluentTheme.colors.fillAccent.default + ), + pressed: NavigationItemColor = NavigationItemColor( + fillColor = FluentTheme.colors.subtleFill.transparent, + contentColor = FluentTheme.colors.text.text.tertiary, + trailingColor = FluentTheme.colors.text.text.tertiary, + indicatorColor = FluentTheme.colors.fillAccent.default + ), + disabled: NavigationItemColor = NavigationItemColor( + fillColor = FluentTheme.colors.subtleFill.transparent, + contentColor = FluentTheme.colors.text.text.disabled, + trailingColor = FluentTheme.colors.text.text.disabled, + indicatorColor = FluentTheme.colors.fillAccent.disabled + ) + ) = NavigationItemColorScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) + + /** + * Creates a color scheme for selected top navigation items. + * + * This function provides a set of colors for a top navigation item when it is in the selected state. + * It defines different color variations for default, hovered, pressed, and disabled states. + * + * @param default The default color set for a selected top navigation item. + * @param hovered The color set for a selected top navigation item when hovered. + * @param pressed The color set for a selected top navigation item when pressed. + * @param disabled The color set for a selected top navigation item when disabled. + * @return A [NavigationItemColorScheme] representing the color scheme for a selected top navigation item. + */ + @Composable + @Stable + fun selectedTopItemColors( + default: NavigationItemColor = NavigationItemColor( + fillColor = FluentTheme.colors.subtleFill.transparent, + contentColor = FluentTheme.colors.text.text.primary, + trailingColor = FluentTheme.colors.text.text.secondary, + indicatorColor = FluentTheme.colors.fillAccent.default + ), + hovered: NavigationItemColor = NavigationItemColor( + fillColor = FluentTheme.colors.subtleFill.transparent, + contentColor = FluentTheme.colors.text.text.secondary, + trailingColor = FluentTheme.colors.text.text.secondary, + indicatorColor = FluentTheme.colors.fillAccent.default + ), + pressed: NavigationItemColor = NavigationItemColor( + fillColor = FluentTheme.colors.subtleFill.transparent, + contentColor = FluentTheme.colors.text.text.tertiary, + trailingColor = FluentTheme.colors.text.text.tertiary, + indicatorColor = FluentTheme.colors.fillAccent.default + ), + disabled: NavigationItemColor = NavigationItemColor( + fillColor = FluentTheme.colors.subtleFill.transparent, + contentColor = FluentTheme.colors.text.text.disabled, + trailingColor = FluentTheme.colors.text.text.disabled, + indicatorColor = FluentTheme.colors.fillAccent.disabled + ) + ) = NavigationItemColorScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) + + /** + * A composable function that displays a vertical indicator. + * + * This function creates a vertical bar that can be used as an indicator for selected items, + * typically in a navigation menu. The indicator's appearance (color, shape, thickness) can be customized. + * + * @param modifier Modifier to be applied to the indicator. + * @param color The color of the indicator. Defaults to the default accent color from the Fluent theme. + * @param shape The shape of the indicator. Defaults to a circle shape. + * @param thickness The thickness of the indicator. Defaults to 3 density-independent pixels (dp). + */ + @Composable + fun VerticalIndicator( + modifier: Modifier = Modifier, + color: Color = FluentTheme.colors.fillAccent.default, + shape: Shape = CircleShape, + thickness: Dp = 3.dp + ) { + Box(modifier.width(thickness).background(color, shape)) + } + + /** + * A composable function that creates a horizontal indicator. + * + * This function is used to display a horizontal line or bar as an indicator, typically + * to show selection or focus in a horizontal layout. + * + * @param modifier The modifier to be applied to the indicator. + * @param color The color of the indicator. Defaults to the default accent color from the Fluent theme. + * @param shape The shape of the indicator. Defaults to a circle shape. + * @param thickness The thickness (height) of the indicator. Defaults to 3.dp. + */ + @Composable + fun HorizontalIndicator( + modifier: Modifier = Modifier, + color: Color = FluentTheme.colors.fillAccent.default, + shape: Shape = CircleShape, + thickness: Dp = 3.dp + ) { + Box(modifier.height(thickness).background(color, shape)) + } + + /** + * A composable function that creates an expanded button for navigation. + * + * This function creates a button that, when clicked, can be used to expand or collapse the + * navigation view. The button also displays a tooltip indicating its current state (open or close). + * + * @param onClick A lambda that is invoked when the button is clicked. It should handle the + * logic to expand or collapse the navigation. + * @param modifier Modifier to be applied to the button. + * @param disabled If `true`, the button will be disabled and not clickable. Defaults to `false`. + * @param buttonColors The color scheme for the button. Defaults to subtle button colors. + * @param interaction A [MutableInteractionSource] to handle interactions with the button, such as press, + * hover, and focus. + * @param expanded Indicates whether the navigation is currently expanded. Defaults to the value of + * [LocalNavigationExpand.current], which typically represents the current expanded + * state of the navigation. + * @param icon A composable lambda that defines the icon to be displayed on the button. + * Defaults to the navigation icon from [FontIconDefaults]. + */ + @Composable + fun ExpandedButton( + onClick: () -> Unit, + modifier: Modifier = Modifier, + disabled: Boolean = false, + buttonColors: ButtonColorScheme = ButtonDefaults.subtleButtonColors(), + interaction: MutableInteractionSource = remember { MutableInteractionSource() }, + expanded: Boolean = LocalNavigationExpand.current, + icon: @Composable (() -> Unit) = { FontIconDefaults.NavigationIcon(interaction) }, + ) { + TooltipBox( + tooltip = { + Text( + text = if (expanded) "Close Navigation" else "Open Navigation" + ) + }, + enabled = !disabled + ) { + Button( + onClick = onClick, + interaction = interaction, + icon = { icon() }, + modifier = modifier, + disabled = disabled, + buttonColors = buttonColors + ) + } + } + + /** + * A composable function that creates a button with an icon. + * + * This function creates a button that is designed to display only an icon, without any text. + * It's useful for creating compact buttons for actions like navigation, settings, or other + * icon-driven controls. + * + * @param onClick A lambda that is invoked when the button is clicked. + * @param icon A composable lambda that defines the icon to be displayed on the button. + * @param modifier The [Modifier] to be applied to the button. Defaults to an empty modifier. + * @param disabled A boolean that determines if the button is enabled or disabled. + * If `true`, the button will not respond to clicks and will appear visually + * disabled. Defaults to `false` (enabled). + * @param buttonColors The color scheme for the button, defining the colors for various states + * (e.g., default, pressed, disabled). Defaults to a subtle button color scheme + * provided by [ButtonDefaults.subtleButtonColors]. + * @param interaction The [MutableInteractionSource] for this button, used to track the + * interaction state of the button (e.g., pressed, hovered). Defaults to a + * newly remembered [MutableInteractionSource]. + */ + @Composable + fun Button( + onClick: () -> Unit, + icon: @Composable (() -> Unit), + modifier: Modifier = Modifier, + disabled: Boolean = false, + buttonColors: ButtonColorScheme = ButtonDefaults.subtleButtonColors(), + interaction: MutableInteractionSource = remember { MutableInteractionSource() } + ) { + Button( + onClick = onClick, + iconOnly = true, + interaction = interaction, + content = { icon() }, + modifier = modifier + .size(48.dp, 40.dp) + .padding(horizontal = 4.dp, vertical = 2.dp), + disabled = disabled, + buttonColors = buttonColors + ) + } + + /** + * A composable function that creates a back button for navigation. + * + * This function creates a back button that can be used to navigate back in the application. + * + * @param onClick A callback function that is invoked when the back button is clicked. + * @param modifier Modifier to be applied to the back button. + * @param disabled Indicates whether the back button is disabled. Defaults to `false`. + * @param buttonColors The color scheme for the back button. Defaults to [ButtonDefaults.subtleButtonColors]. + * @param interaction The [MutableInteractionSource] to handle interactions with the button. + * Defaults to a newly remembered [MutableInteractionSource]. + * @param icon A composable function that defines the icon to be displayed on the back button. + * Defaults to [FontIconDefaults.BackIcon] with a small size. + */ + @Composable + fun BackButton( + onClick: () -> Unit, + modifier: Modifier = Modifier, + disabled: Boolean = false, + buttonColors: ButtonColorScheme = ButtonDefaults.subtleButtonColors(), + interaction: MutableInteractionSource = remember { MutableInteractionSource() }, + icon: @Composable (() -> Unit) = { FontIconDefaults.BackIcon(interaction, size = FontIconSize.Small) }, + ) { + TooltipBox( + tooltip = { + Text(text = "Back") + }, + enabled = !disabled + ) { + Button( + onClick = onClick, + iconOnly = true, + interaction = interaction, + content = { icon() }, + modifier = modifier + .size(44.dp, 40.dp) + .padding(vertical = 2.dp) + .padding(start = 4.dp), + disabled = disabled, + buttonColors = buttonColors + ) + } + } + +} + +/** + * Creates and remembers an [IndicatorState] instance. + * + * This function is used to manage the state of an indicator, such as its position and + * whether it is currently active. The state is remembered across recompositions. + * + * @param initialOffset The initial offset of the indicator. Defaults to `Offset.Zero`. + * @return An [IndicatorState] instance that is remembered across recompositions. + */ +@Composable +fun rememberIndicatorState(initialOffset: Offset = Offset.Zero): IndicatorState { + return remember(initialOffset) { IndicatorState(initialOffset) } +} + +/** + * Represents the state of the indicator for a navigation item. + * + * This class manages the position of the indicator that highlights the currently + * selected item in a navigation view. It uses a [MutableTransitionState] to animate + * the indicator's movement between different positions. + * + * @property initialOffset The initial offset of the indicator. + */ +class IndicatorState(initialOffset: Offset) { + /** + * The state of the selected item indicator. + * + * This is a [MutableTransitionState] that holds the current offset of the selected item indicator. + * It is used to animate the position of the indicator when the selected item changes. + */ + val selectedItem: MutableTransitionState = MutableTransitionState(initialOffset) + + /** + * Updates the target state of the selected item's position. + * + * This function is responsible for setting the desired position of the indicator + * that highlights the currently selected item in the navigation. It takes an [Offset] + * representing the new target position and updates the `targetState` of the + * `selectedItem` transition. This effectively triggers an animation to move the indicator + * to the specified position. + * + * @param offset The new [Offset] to which the indicator should move. + */ + fun updateSelectedItem(offset: Offset) { + selectedItem.targetState = offset + } +} + +/** + * Scope for positioning the indicator. + * + * This scope provides a way to apply an offset to the indicator based on its visibility. + */ +interface IndicatorScope { + + /** + * Applies an offset to the indicator based on the visibility state. + * + * This function is used to position the indicator (e.g., a visual cue for + * selected items) relative to its associated item. The offset is applied + * only when the indicator is deemed visible based on the `visible` + * lambda. When the indicator is not visible, the offset will not be applied. + * + * @param visible A lambda function that returns `true` if the indicator + * should be visible and thus have the offset applied, `false` otherwise. + * @return A [Modifier] with the indicator offset applied. + */ + @Composable + fun Modifier.indicatorOffset(visible: () -> Boolean): Modifier +} + +/** + * Scope for providing custom behavior to the auto-suggest box within a [NavigationView]. + * + * This scope allows for defining modifiers that handle focus interactions for the auto-suggest box. + */ +interface NavigationAutoSuggestBoxScope { + fun Modifier.focusHandle(): Modifier +} + +@Composable +internal fun Modifier.indicatorRect(indicatorState: IndicatorState?, selected: Boolean): Modifier { + var currentPosition by remember { + mutableStateOf(Offset.Zero) + } + LaunchedEffect(selected, currentPosition, indicatorState) { + if (selected) { + indicatorState?.updateSelectedItem(currentPosition) + } + } + return then( + Modifier.onGloballyPositioned { currentPosition = it.positionInRoot() } + ) +} + +@Composable +internal fun Modifier.indicatorOffsetAnimation( + size: Dp, + indicatorState: MutableTransitionState, + selectedPosition: MutableTransitionState, + isVertical: Boolean = true +): Modifier { + val fraction by rememberTransition(indicatorState).animateFloat( + transitionSpec = { + tween(FluentDuration.VeryLongDuration, easing = FluentEasing.PointToPointEasing) + }, + targetValueByState = { if (it) 1f else 0f } + ) + //Delay set selected position + if (indicatorState.isIdle && indicatorState.targetState) { + rememberTransition(selectedPosition).animateFloat(transitionSpec = { + tween( + FluentDuration.QuickDuration, + easing = FluentEasing.FastInvokeEasing + ) + }) { if (isVertical) it.y else it.x } + } + return layout { measurable, constraints -> + val stickSize = size.toPx() + val containerSize = if (isVertical) { + constraints.maxHeight.toFloat() + } else { + constraints.maxWidth.toFloat() + } + val goBackward = if (isVertical) { + selectedPosition.currentState.y > selectedPosition.targetState.y + } else { + selectedPosition.currentState.x > selectedPosition.targetState.x + } + val contentPadding = ((containerSize - stickSize) / 2).coerceAtLeast(0f) + val extendSize = containerSize - contentPadding + val currentFraction = if (indicatorState.targetState) { + fraction + } else { + 1 - fraction + } + val segmentFraction = when { + currentFraction > 0.75 -> (currentFraction - 0.75f) * 4 + currentFraction > 0.5 -> (currentFraction - 0.5f) * 4 + currentFraction > 0.25 -> (currentFraction - 0.25f) * 4 + else -> currentFraction * 4 + } + val currentSize = if (!indicatorState.targetState) { + when { + currentFraction <= 0.25 -> androidx.compose.ui.util.lerp( + stickSize, + extendSize, + segmentFraction + ) + + currentFraction <= 0.5f -> androidx.compose.ui.util.lerp( + extendSize, + 0f, + segmentFraction + ) + + else -> 0f + } + } else { + when { + currentFraction > 0.75f -> androidx.compose.ui.util.lerp( + extendSize, + stickSize, + segmentFraction + ) + + currentFraction > 0.5f -> androidx.compose.ui.util.lerp( + 0f, + extendSize, + segmentFraction + ) + + else -> 0f + } + } + val sizeInt = currentSize.roundToInt().coerceAtLeast(0) + val placeable = if (isVertical) { + measurable.measure(Constraints.fixedHeight(sizeInt)) + } else { + measurable.measure(Constraints.fixedWidth(sizeInt)) + } + + layout( + width = if (isVertical) placeable.width else constraints.maxWidth, + height = if (isVertical) constraints.maxHeight else placeable.height + ) { + val offset = when { + goBackward && !indicatorState.targetState && currentFraction <= 0.25f -> extendSize - sizeInt + goBackward && !indicatorState.targetState -> 0f + !goBackward && !indicatorState.targetState && currentFraction <= 0.25f -> contentPadding + !goBackward && !indicatorState.targetState -> containerSize - sizeInt + goBackward && currentFraction > 0.75f -> contentPadding + goBackward && currentFraction > 0.5f -> containerSize - sizeInt + !goBackward && currentFraction > 0.75f -> extendSize - sizeInt + !goBackward && currentFraction > 0.5f -> 0f + else -> 0f + } + if (isVertical) { + placeable.place(0, offset.roundToInt()) + } else { + placeable.place(offset.roundToInt(), 0) + } + } + } +} + +/** + * A composable function that displays a separator line for navigation items. + * + * This function creates a horizontal or vertical line that can be used to visually separate + * navigation items in a [NavigationView]. The orientation of the separator (horizontal or + * vertical) can be controlled by the `isVertical` parameter. + * + * @param isVertical If `true`, a vertical separator is displayed; otherwise, a horizontal separator + * is shown. Defaults to `false` (horizontal). + * @param modifier Modifier to be applied to the separator. + * @param color The color of the separator. Defaults to the default divider color from the Fluent theme. + */ +@Composable +fun NavigationItemSeparator( + isVertical: Boolean = false, + modifier: Modifier = Modifier, + color: Color = FluentTheme.colors.stroke.divider.default +) { + val sizeModifier = if (!isVertical) { + Modifier + .fillMaxWidth() + .padding(top = 3.dp, bottom = 4.dp) + .height(1.dp) + } else { + Modifier + .size(8.dp, 32.dp) + .wrapContentSize(Alignment.Center) + .height(24.dp).width(1.dp) + } + Box( + modifier = Modifier + .then(modifier) + .then(sizeModifier) + .background(color) + ) +} + +@Immutable +private class TopNavigationMenuScope( + private val overflowRowScope: OverflowRowScope, + onFlyoutDismissRequest: () -> Unit = {} +) : NavigationMenuScope { + + private val overflowItemScope = + ValueNavigationMenuItemScope( + displayMode = NavigationDisplayMode.Left, + isFooter = false, + onFlyoutDismissRequest = onFlyoutDismissRequest + ) + + private val normalItemScope = ValueNavigationMenuItemScope( + displayMode = NavigationDisplayMode.Top, + isFooter = false + ) + + override fun item( + key: Any?, + contentType: Any?, + content: @Composable NavigationMenuItemScope.() -> Unit + ) { + overflowRowScope.item( + key = key, + contentType = contentType, + content = { + if (isOverflow) { + content(overflowItemScope) + } else { + content(normalItemScope) + } + } + ) + } + + override fun items( + count: Int, + key: ((index: Int) -> Any)?, + contentType: (index: Int) -> Any?, + itemContent: @Composable NavigationMenuItemScope.(index: Int) -> Unit + ) { + overflowRowScope.items( + count = count, + key = key, + contentType = contentType, + itemContent = { index -> + if (isOverflow) { + itemContent(overflowItemScope, index) + } else { + itemContent(normalItemScope, index) + } + } + ) + } +} + +private data class ValueNavigationMenuItemScope( + override val displayMode: NavigationDisplayMode, + override val isFooter: Boolean, + val onFlyoutDismissRequest: () -> Unit = {} +) : NavigationMenuItemScope { + override fun flyoutDismissRequest() { + onFlyoutDismissRequest() + } +} + +private inline fun IntervalList.forEachItem(action: T.(index: Int) -> Unit) { + repeat(size) { + val item = get(it) + action(item.value, it - item.startIndex) + } +} + +@Composable +private fun rememberNavigationMenuInterval( + content: NavigationMenuScope.() -> Unit +): IntervalList { + val contentState = rememberUpdatedState(content) + return remember { + derivedStateOf(referentialEqualityPolicy()) { + NavigationMenuScopeImpl(contentState.value).intervals + } + }.value +} + +private class NavigationMenuScopeImpl( + content: NavigationMenuScope.() -> Unit +) : NavigationMenuScope, LazyLayoutIntervalContent() { + + override val intervals = MutableIntervalList() + + init { + apply(content) + } + + override fun item( + key: Any?, + contentType: Any?, + content: @Composable NavigationMenuItemScope.() -> Unit + ) { + intervals.addInterval( + 1, + NavigationViewMenuInterval( + key = key?.let { { key } }, + type = { contentType }, + item = { content() } + ) + ) + } + + override fun items( + count: Int, + key: ((index: Int) -> Any)?, + contentType: (index: Int) -> Any?, + itemContent: @Composable NavigationMenuItemScope.(index: Int) -> Unit + ) { + intervals.addInterval( + count, + NavigationViewMenuInterval( + key = key, + type = contentType, + item = itemContent + ) + ) + } +} + +private class NavigationViewMenuInterval( + override val key: ((index: Int) -> Any)?, + override val type: ((index: Int) -> Any?), + val item: @Composable NavigationMenuItemScope.(Int) -> Unit +) : LazyLayoutIntervalContent.Interval + +@Composable +internal fun rememberNavigationItemsFlyoutScope( + expanded: Boolean, + onExpandedChanged: (Boolean) -> Unit +): MenuFlyoutContainerScope { + val expandedState = rememberUpdatedState(expanded) + val onExpandedChangedState = rememberUpdatedState(onExpandedChanged) + val anchorScope = rememberFlyoutAnchorScope() + return remember(anchorScope, expandedState, onExpandedChangedState) { + object : MenuFlyoutContainerScope, MenuFlyoutScope by MenuFlyoutScopeImpl(), + FlyoutAnchorScope by anchorScope { + override var isFlyoutVisible: Boolean + get() = expandedState.value + set(value) { + onExpandedChangedState.value.invoke(value) + } + } + } +} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/PipsPager.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/PipsPager.kt new file mode 100644 index 00000000..44a22ad9 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/PipsPager.kt @@ -0,0 +1,514 @@ +package io.github.composefluent.component + +import androidx.compose.animation.core.AnimationSpec +import androidx.compose.animation.core.animateDpAsState +import androidx.compose.animation.core.animateFloatAsState +import androidx.compose.animation.core.tween +import androidx.compose.foundation.ExperimentalFoundationApi +import androidx.compose.foundation.background +import androidx.compose.foundation.clickable +import androidx.compose.foundation.gestures.animateScrollBy +import androidx.compose.foundation.hoverable +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.interaction.collectIsHoveredAsState +import androidx.compose.foundation.interaction.collectIsPressedAsState +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.fillMaxHeight +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.layout.width +import androidx.compose.foundation.layout.wrapContentSize +import androidx.compose.foundation.lazy.LazyColumn +import androidx.compose.foundation.lazy.LazyRow +import androidx.compose.foundation.lazy.rememberLazyListState +import androidx.compose.foundation.pager.PagerState +import androidx.compose.foundation.relocation.BringIntoViewRequester +import androidx.compose.foundation.relocation.bringIntoViewRequester +import androidx.compose.foundation.selection.selectable +import androidx.compose.foundation.shape.CircleShape +import androidx.compose.runtime.Composable +import androidx.compose.runtime.CompositionLocalProvider +import androidx.compose.runtime.LaunchedEffect +import androidx.compose.runtime.Stable +import androidx.compose.runtime.remember +import androidx.compose.runtime.rememberCoroutineScope +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.TransformOrigin +import androidx.compose.ui.graphics.graphicsLayer +import androidx.compose.ui.unit.dp +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.FluentTheme +import io.github.composefluent.LocalContentAlpha +import io.github.composefluent.LocalContentColor +import io.github.composefluent.LocalTextStyle +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.scheme.PentaVisualScheme +import io.github.composefluent.scheme.VisualState +import io.github.composefluent.scheme.VisualStateScheme +import io.github.composefluent.scheme.collectVisualState +import kotlinx.coroutines.launch +import kotlin.math.abs + +/** + * A horizontal pager that displays a series of pips, allowing users to navigate between pages. + * + * This component provides a visual indicator of the current page and allows users to navigate + * through the pages by clicking on the pips or using the associated page buttons. + * + * @param state The state object to be used to control or observe the pager state. + * @param modifier The modifier to be applied to the pager. + * @param scrollAnimationSpec The animation specification for scrolling between pages. Defaults to [FlipViewDefaults.scrollAnimationSpec]. + * @param visibleCount The number of pips that are visible at any given time. + * @param enabled Controls the enabled state of the pips pager. When `false`, the pips and page + * buttons will be disabled. + * @param pageButtonVisibleStrategy The strategy to determine when the page buttons (e.g., arrows) should be visible. + * Defaults to [PageButtonVisibleStrategy.Never]. + * @param pipsColors The color scheme for the pips in different visual states (e.g., default, hovered, pressed). + * Defaults to [PipsPagerDefaults.pipsColors]. + */ +@Composable +fun HorizontalPipsPager( + state: PagerState, + modifier: Modifier = Modifier, + scrollAnimationSpec: AnimationSpec = FlipViewDefaults.scrollAnimationSpec(), + visibleCount: Int = 5, + enabled: Boolean = true, + pageButtonVisibleStrategy: PageButtonVisibleStrategy = PageButtonVisibleStrategy.Never, + pipsColors: VisualStateScheme = PipsPagerDefaults.pipsColors(), +) { + val scope = rememberCoroutineScope() + PipsPager( + selectedIndex = state.currentPage, + onSelectedIndexChange = { + scope.launch { + if (abs(state.currentPage - it) == 1) { + state.animateScrollToPage(it, animationSpec = scrollAnimationSpec) + } else { + state.scrollToPage(it) + } + } + }, + count = state.pageCount, + isVertical = false, + pipsColors = pipsColors, + visibleCount = visibleCount, + pageButtonVisibleStrategy = pageButtonVisibleStrategy, + enabled = enabled, + modifier = modifier + ) +} + +/** + * A vertical pips pager that displays a series of pips, allowing the user to navigate between pages. + * This is a wrapper for [PipsPager] and uses [PagerState] for the current page and the page count. + * + * @param state The [PagerState] that holds the current page and the number of pages. + * @param modifier Modifier to be applied to the pips pager. + * @param scrollAnimationSpec The animation spec used when scrolling between pages. Defaults to [FlipViewDefaults.scrollAnimationSpec]. + * @param visibleCount The maximum number of pips that should be visible at once. + * @param enabled Whether the pips pager is enabled. Defaults to `true`. + * @param pageButtonVisibleStrategy The strategy for showing/hiding the page buttons. Defaults to [PageButtonVisibleStrategy.Never]. + * @param pipsColors The color scheme for the pips. Defaults to [PipsPagerDefaults.pipsColors]. + */ +@Composable +fun VerticalPipsPager( + state: PagerState, + modifier: Modifier = Modifier, + scrollAnimationSpec: AnimationSpec = FlipViewDefaults.scrollAnimationSpec(), + visibleCount: Int = 5, + enabled: Boolean = true, + pageButtonVisibleStrategy: PageButtonVisibleStrategy = PageButtonVisibleStrategy.Never, + pipsColors: VisualStateScheme = PipsPagerDefaults.pipsColors(), +) { + val scope = rememberCoroutineScope() + PipsPager( + selectedIndex = state.currentPage, + onSelectedIndexChange = { + scope.launch { + if (abs(state.currentPage - it) == 1) { + state.animateScrollToPage(it, animationSpec = scrollAnimationSpec) + } else { + state.scrollToPage(it) + } + } + }, + count = state.pageCount, + isVertical = true, + pipsColors = pipsColors, + visibleCount = visibleCount, + pageButtonVisibleStrategy = pageButtonVisibleStrategy, + enabled = enabled, + modifier = modifier + ) +} + +/** + * A horizontal pager that displays a series of pips (dots) to represent pages. + * + * @param selectedIndex The index of the currently selected page. + * @param onSelectedIndexChange A callback that is invoked when the selected page changes. + * The parameter is the new selected index. + * @param count The total number of pages. + * @param modifier Modifier for styling and layout customization. + * @param visibleCount The number of pips that are visible at one time. The pager will + * scroll if the count exceeds this value. + * @param enabled Controls the enabled state of the pips pager. When `false`, the user + * cannot interact with the pager and it will be displayed in a disabled state. + * @param pageButtonVisibleStrategy Determines the visibility of the page navigation buttons. + * See [PageButtonVisibleStrategy] for available options. + * @param pipsColors A [VisualStateScheme] that provides the color for each visual state of the pips. + */ +@Composable +fun HorizontalPipsPager( + selectedIndex: Int, + onSelectedIndexChange: (Int) -> Unit, + count: Int, + modifier: Modifier = Modifier, + visibleCount: Int = 5, + enabled: Boolean = true, + pageButtonVisibleStrategy: PageButtonVisibleStrategy = PageButtonVisibleStrategy.Never, + pipsColors: VisualStateScheme = PipsPagerDefaults.pipsColors(), +) { + PipsPager( + selectedIndex = selectedIndex, + onSelectedIndexChange = onSelectedIndexChange, + count = count, + isVertical = false, + pipsColors = pipsColors, + visibleCount = visibleCount, + pageButtonVisibleStrategy = pageButtonVisibleStrategy, + enabled = enabled, + modifier = modifier + ) +} + +/** + * A vertical pager that displays a series of pips, allowing the user to navigate between + * different pages. + * + * @param selectedIndex The index of the currently selected page. + * @param onSelectedIndexChange A callback that is invoked when the selected page changes. + * It provides the new index. + * @param count The total number of pages. + * @param modifier The modifier to be applied to the pager. + * @param enabled Controls the enabled state of the pager. When `false`, the user cannot + * interact with the pager. + * @param pageButtonVisibleStrategy Determines when the page navigation buttons should be visible. + * See [PageButtonVisibleStrategy] for details. + * @param visibleCount The maximum number of pips to display at once. If the total number of pages + * exceeds this value, the pager will be scrollable. + * @param pipsColors The color scheme for the pips, determining their appearance in different states. + * See [PipsPagerDefaults.pipsColors] for details. + */ +@Composable +fun VerticalPipsPager( + selectedIndex: Int, + onSelectedIndexChange: (Int) -> Unit, + count: Int, + modifier: Modifier = Modifier, + enabled: Boolean = true, + pageButtonVisibleStrategy: PageButtonVisibleStrategy = PageButtonVisibleStrategy.Never, + visibleCount: Int = 5, + pipsColors: VisualStateScheme = PipsPagerDefaults.pipsColors(), +) { + PipsPager( + selectedIndex = selectedIndex, + onSelectedIndexChange = onSelectedIndexChange, + count = count, + isVertical = true, + pipsColors = pipsColors, + visibleCount = visibleCount, + pageButtonVisibleStrategy = pageButtonVisibleStrategy, + enabled = enabled, + modifier = modifier + ) +} + +@Composable +private fun PipsPager( + selectedIndex: Int, + onSelectedIndexChange: (Int) -> Unit, + count: Int, + isVertical: Boolean, + pipsColors: VisualStateScheme, + pageButtonVisibleStrategy: PageButtonVisibleStrategy, + enabled: Boolean, + visibleCount: Int, + modifier: Modifier, +) { + val size = PipsItemWidth * minOf(visibleCount, count) + val listState = rememberLazyListState() + val interactionSource = remember { MutableInteractionSource() } + val isHovered = interactionSource.collectIsHoveredAsState() + val pageButtonVisible = when (pageButtonVisibleStrategy) { + PageButtonVisibleStrategy.Always -> true + PageButtonVisibleStrategy.VisibleOnHovered -> isHovered.value + PageButtonVisibleStrategy.Never -> false + } + if (isVertical) { + Column(modifier = modifier.width(PipsPagerContainerHeight).hoverable(interactionSource)) { + + PageButton( + colors = pipsColors, + type = FontIconPrimitive.CaretUp, + onClick = { onSelectedIndexChange(selectedIndex - 1) }, + enabled = enabled && selectedIndex > 0, + visible = pageButtonVisible, + modifier = Modifier.hoverable(interactionSource) + ) + LazyColumn( + state = listState, + modifier = Modifier + .fillMaxWidth() + .height(size) + ) { + items(count) { index -> + Pips( + selected = index == selectedIndex, + onSelectedChange = { onSelectedIndexChange(index) }, + isVertical = isVertical, + colors = pipsColors, + enabled = enabled, + modifier = Modifier + ) + } + } + PageButton( + colors = pipsColors, + type = FontIconPrimitive.CaretDown, + onClick = { onSelectedIndexChange(selectedIndex + 1) }, + enabled = enabled && selectedIndex < count - 1, + visible = pageButtonVisible, + modifier = Modifier + ) + } + } else { + Row(modifier = modifier.height(PipsPagerContainerHeight).hoverable(interactionSource)) { + + PageButton( + colors = pipsColors, + type = FontIconPrimitive.CaretLeft, + onClick = { onSelectedIndexChange(selectedIndex - 1) }, + enabled = enabled && selectedIndex > 0, + visible = pageButtonVisible, + modifier = Modifier.hoverable(interactionSource) + ) + + LazyRow( + state = listState, + modifier = Modifier + .fillMaxHeight() + .width(size) + ) { + items(count) { index -> + Pips( + selected = index == selectedIndex, + onSelectedChange = { onSelectedIndexChange(index) }, + isVertical = isVertical, + colors = pipsColors, + enabled = enabled, + modifier = Modifier + ) + } + } + + PageButton( + colors = pipsColors, + type = FontIconPrimitive.CaretRight, + onClick = { onSelectedIndexChange(selectedIndex + 1) }, + enabled = enabled && selectedIndex < count - 1, + visible = pageButtonVisible, + modifier = Modifier.hoverable(interactionSource) + ) + } + } + LaunchedEffect(selectedIndex, listState.layoutInfo.visibleItemsInfo) { + val item = listState.layoutInfo.visibleItemsInfo.firstOrNull { it.index == selectedIndex } + if (item == null) { + listState.animateScrollToItem(selectedIndex) + } else { + val itemSize = item.size + val viewportSize = if (isVertical) { + listState.layoutInfo.viewportSize.height + } else { + listState.layoutInfo.viewportSize.width + } + val centerOffset = (viewportSize - itemSize) / 2f + val scrollOffset = item.offset - centerOffset + listState.animateScrollBy( + scrollOffset, + animationSpec = FlipViewDefaults.scrollAnimationSpec() + ) + } + } +} + +typealias PipsColorScheme = PentaVisualScheme + +/** + * Contains the default values used for [PipsPager]. + */ +object PipsPagerDefaults { + + /** + * Creates a [PipsColorScheme] with the specified colors. + * + * @param default The default color of the pips. + * @param hovered The color of the pips when hovered. + * @param pressed The color of the pips when pressed. + * @param disabled The color of the pips when disabled. + * @return A [PipsColorScheme] with the specified colors. + */ + @Stable + @Composable + fun pipsColors( + default: Color = FluentTheme.colors.controlStrong.default, + hovered: Color = FluentTheme.colors.text.text.secondary, + pressed: Color = FluentTheme.colors.text.text.secondary, + disabled: Color = FluentTheme.colors.controlStrong.disabled + ) = PipsColorScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) +} + +@OptIn(ExperimentalFoundationApi::class) +@Composable +private fun Pips( + selected: Boolean, + onSelectedChange: (Boolean) -> Unit, + isVertical: Boolean, + colors: VisualStateScheme, + enabled: Boolean, + modifier: Modifier +) { + val interactionSource = remember { MutableInteractionSource() } + val bringIntoViewRequester = remember { BringIntoViewRequester() } + val visualState = interactionSource.collectVisualState(!enabled) + val currentColor = colors.schemeFor(visualState) + val size = animateDpAsState( + targetValue = when (visualState) { + VisualState.Hovered -> 5.dp + VisualState.Pressed -> 3.dp + else -> 4.dp + } + if (selected) { + 2.dp + } else { + 0.dp + } + ) + LaunchedEffect(selected) { + if (selected) { + bringIntoViewRequester.bringIntoView() + } + } + Box( + modifier = modifier + .then( + if (isVertical) { + Modifier.fillMaxWidth() + .height(PipsItemWidth) + } else { + Modifier.fillMaxHeight() + .width(PipsItemWidth) + } + ) + .bringIntoViewRequester(bringIntoViewRequester) + .selectable( + selected = selected, + indication = null, + interactionSource = interactionSource, + enabled = enabled, + onClick = { onSelectedChange(!selected) } + ) + .wrapContentSize(Alignment.Center) + .size(size.value) + .background(currentColor, shape = CircleShape) + ) +} + +/** + * Defines the strategy for determining when the page buttons (e.g., previous/next arrows) + * should be visible in the [PipsPager]. + */ +enum class PageButtonVisibleStrategy { + /** + * Always show the page buttons. + */ + Always, + /** + * Page buttons are only visible when the pager is hovered. + */ + VisibleOnHovered, + /** + * The page button is never visible. + */ + Never +} + +@OptIn(ExperimentalFluentApi::class) +@Composable +private fun PageButton( + colors: VisualStateScheme, + modifier: Modifier = Modifier, + enabled: Boolean, + visible: Boolean = true, + type: FontIconPrimitive, + onClick: () -> Unit, +) { + if (visible) { + val interactionSource = remember { MutableInteractionSource() } + val currentColor = colors.schemeFor(interactionSource.collectVisualState(!enabled)) + Box( + contentAlignment = Alignment.Center, + modifier = modifier + .size(PipsPagerContainerHeight) + .clickable( + indication = null, + interactionSource = interactionSource, + onClick = onClick, + enabled = enabled + ) + ) { + CompositionLocalProvider( + LocalContentColor provides currentColor, + LocalContentAlpha provides currentColor.alpha, + LocalTextStyle provides LocalTextStyle.current.copy(color = currentColor) + ) { + val isPressed = interactionSource.collectIsPressedAsState() + val scale = animateFloatAsState( + targetValue = if (isPressed.value) { + 7 / 8f + } else 1f, + animationSpec = tween( + FluentDuration.ShortDuration, + easing = FluentEasing.FastInvokeEasing + ) + ) + FontIconSolid8( + contentDescription = null, + type = type, + modifier = Modifier + .graphicsLayer { + scaleX = scale.value + scaleY = scale.value + transformOrigin = TransformOrigin(0.5f, 0.5f) + } + ) + } + } + } else { + Box(modifier = modifier.size(PipsPagerContainerHeight)) + } +} + +private val PipsPagerContainerHeight = 20.dp +private val PipsItemWidth = 12.dp \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Popup.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/Popup.kt similarity index 93% rename from fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Popup.kt rename to fluent/src/commonMain/kotlin/io/github/composefluent/component/Popup.kt index b16b4453..901afe12 100644 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/Popup.kt +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/Popup.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.component +package io.github.composefluent.component import androidx.compose.runtime.Composable import androidx.compose.ui.input.key.KeyEvent diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/ProgressBar.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/ProgressBar.kt similarity index 83% rename from fluent/src/commonMain/kotlin/com/konyaco/fluent/component/ProgressBar.kt rename to fluent/src/commonMain/kotlin/io/github/composefluent/component/ProgressBar.kt index 9d3e84f4..7d2a3747 100644 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/ProgressBar.kt +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/ProgressBar.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.component +package io.github.composefluent.component import androidx.compose.animation.core.* import androidx.compose.foundation.Canvas @@ -17,13 +17,15 @@ import androidx.compose.ui.geometry.Offset import androidx.compose.ui.graphics.Color import androidx.compose.ui.graphics.StrokeCap import androidx.compose.ui.unit.dp -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.animation.FluentDuration +import io.github.composefluent.FluentTheme +import io.github.composefluent.animation.FluentDuration /** - * Progress bar - * @param progress `0f` to `1f` - * @param color Line color + * A determinate progress bar that displays progress from `0f` to `1f`. + * + * @param progress The current progress, a value between `0f` (0%) and `1f` (100%). + * @param modifier Modifier for styling and layout. + * @param color The color of the progress track. Defaults to the accent color of the current theme. */ @Composable fun ProgressBar( @@ -74,8 +76,13 @@ private val ShortWidth = 50.dp private val Easing = CubicBezierEasing(0.5f, 0f, 0.5f, 1.0f) /** - * Undetermined progress bar - * @param color Line color + * An indeterminate progress bar that displays a continuous, looping animation. + * This component indicates ongoing activity without specifying a completion percentage. + * + * The animation consists of two moving segments: a long bar and a short bar, which loop across the width of the component. + * + * @param modifier The modifier to apply to this layout. + * @param color The color of the moving segments. Defaults to `FluentTheme.colors.fillAccent.default`. */ @Composable fun ProgressBar( diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/ProgressRing.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/ProgressRing.kt new file mode 100644 index 00000000..c26688bd --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/ProgressRing.kt @@ -0,0 +1,134 @@ +package io.github.composefluent.component + +import androidx.compose.animation.core.* +import androidx.compose.foundation.Canvas +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.foundation.layout.size +import androidx.compose.runtime.Composable +import androidx.compose.runtime.derivedStateOf +import androidx.compose.runtime.getValue +import androidx.compose.runtime.remember +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.StrokeCap +import androidx.compose.ui.graphics.drawscope.Stroke +import androidx.compose.ui.platform.LocalDensity +import androidx.compose.ui.unit.Dp +import androidx.compose.ui.unit.dp +import io.github.composefluent.FluentTheme +import io.github.composefluent.animation.FluentDuration + +/** + * Defines the pre-defined sizes for the [ProgressRing]. + */ +object ProgressRingSize { + val Large = 64.dp + val Medium = 32.dp + val Small = 16.dp +} + +/** + * A composable function that creates a progress ring with a specified progress value. + * + * @param progress The progress value of the ring, ranging from 0.0 to 1.0. + * @param modifier The modifier to be applied to the progress ring. + * @param size The size of the progress ring. Defaults to [ProgressRingSize.Medium]. + * @param width The width of the progress ring's stroke. Defaults to 3/32 of the size. + * @param color The color of the progress ring. Defaults to the accent color in the Fluent theme. + */ +@Composable +fun ProgressRing( + progress: Float, + modifier: Modifier = Modifier, + size: Dp = ProgressRingSize.Medium, + width: Dp = size * 3 / 32, + color: Color = FluentTheme.colors.fillAccent.default +) { + ProgressRing( + modifier = modifier, + start = 0f, + length = progress * 360f, + width = width, + color = color, + size = size + ) +} + +/** + * An indeterminate [ProgressRing] that animates a ring to show progress. + * + * @param modifier The modifier to be applied to the ProgressRing. + * @param size The size of the ProgressRing. Default is [ProgressRingSize.Medium]. + * @param width The width of the ring stroke. Default is calculated based on the size. + * @param color The color of the ring. Default is [FluentTheme.colors.fillAccent.default]. + */ +@Composable +fun ProgressRing( + modifier: Modifier = Modifier, + size: Dp = ProgressRingSize.Medium, + width: Dp = size * 3 / 32, + color: Color = FluentTheme.colors.fillAccent.default +) { + val length by rememberInfiniteTransition().animateFloat( + initialValue = 0f, + targetValue = 180f, + infiniteRepeatable( + animation = tween( + easing = LinearEasing, + durationMillis = (FluentDuration.VeryLongDuration * 1.5f).toInt() + ), repeatMode = RepeatMode.Reverse + ) + ) + + val progress by rememberInfiniteTransition().animateFloat( + initialValue = 0f, + targetValue = 360f, + infiniteRepeatable( + animation = tween( + easing = LinearEasing, + durationMillis = FluentDuration.VeryLongDuration + ) + ) + ) + + val state by remember { + derivedStateOf { + (progress - length) to length + } + } + + ProgressRing( + modifier = modifier, + start = state.first, + length = state.second, + width = width, + size = size, + color = color + ) +} + +@Composable +private fun ProgressRing( + modifier: Modifier, + start: Float, + length: Float, + width: Dp, + size: Dp, + color: Color +) { + Box(modifier.size(size)) { + val density = LocalDensity.current + val widthPx by remember(density) { derivedStateOf { with(density) { width.toPx() } } } + Canvas(Modifier.fillMaxSize()) { + drawArc( + color = color, + startAngle = start - 90f, + sweepAngle = length, + useCenter = false, + size = this.size, + style = Stroke(widthPx, cap = StrokeCap.Round) + ) + } + } +} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/RadioButton.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/RadioButton.kt new file mode 100644 index 00000000..29a0f859 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/RadioButton.kt @@ -0,0 +1,255 @@ +package io.github.composefluent.component + +import androidx.compose.animation.animateColorAsState +import androidx.compose.animation.core.animateDpAsState +import androidx.compose.animation.core.tween +import androidx.compose.foundation.BorderStroke +import androidx.compose.foundation.clickable +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.Spacer +import androidx.compose.foundation.layout.defaultMinSize +import androidx.compose.foundation.layout.offset +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.layout.width +import androidx.compose.foundation.shape.CircleShape +import androidx.compose.runtime.Composable +import androidx.compose.runtime.Immutable +import androidx.compose.runtime.Stable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.remember +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Brush +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.unit.Dp +import androidx.compose.ui.unit.IntOffset +import androidx.compose.ui.unit.dp +import io.github.composefluent.FluentTheme +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.background.BackgroundSizing +import io.github.composefluent.background.Layer +import io.github.composefluent.scheme.PentaVisualScheme +import io.github.composefluent.scheme.VisualStateScheme +import io.github.composefluent.scheme.collectVisualState +import kotlin.math.roundToInt + +/** + * A composable function that represents a radio button. + * + * @param selected Indicates whether the radio button is selected. + * @param onClick The callback to be invoked when the radio button is clicked. If null, the radio button will not be clickable. + * @param modifier The modifier to be applied to the radio button. + * @param label The optional label to be displayed next to the radio button. + * @param enabled Indicates whether the radio button is enabled. + * @param styles The visual styles to be applied to the radio button based on its state. + * Defaults to [RadioButtonDefaults.selectedRadioButtonStyle] if selected is true, otherwise [RadioButtonDefaults.defaultRadioButtonStyle]. + * @param interactionSource The [MutableInteractionSource] representing the stream of [androidx.compose.foundation.interaction.Interaction]s + * for this RadioButton. You can create and pass in your own remembered instance to observe + * [androidx.compose.foundation.interaction.Interaction]s and customize the appearance / behavior of this RadioButton in different states. + */ +@Composable +fun RadioButton( + selected: Boolean, + onClick: (() -> Unit)?, + modifier: Modifier = Modifier, + label: String? = null, + enabled: Boolean = true, + styles: VisualStateScheme = if(selected) { + RadioButtonDefaults.selectedRadioButtonStyle() + } else { + RadioButtonDefaults.defaultRadioButtonStyle() + }, + interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }, +) { + // TODO: Extract same logic + val style = styles.schemeFor(interactionSource.collectVisualState( !enabled)) + Row(modifier.then( + if (label != null) Modifier.defaultMinSize(minWidth = 120.dp) + else Modifier + ).clickable(interactionSource, null) { + onClick?.invoke() + }) { + val fillColor by animateColorAsState( + style.fillColor, + tween(FluentDuration.QuickDuration, easing = FluentEasing.FastInvokeEasing) + ) + Layer( + modifier = Modifier.size(20.dp), + shape = CircleShape, + color = fillColor, + border = BorderStroke( + 1.dp, + style.borderColor + ), + backgroundSizing = BackgroundSizing.InnerBorderEdge + ) { + Box(contentAlignment = FixedCenterAlignment) { + // Bullet, Only displays when selected, or is pressed + + val size by animateDpAsState( + style.dotSize, + tween(FluentDuration.QuickDuration, easing = FluentEasing.FastInvokeEasing) + ) + // Inner + Layer( + modifier = Modifier.size(if (size == 0.dp || !selected) size else size + 2.dp), // TODO: Remove this 2dp if outside border is provided + shape = CircleShape, + color = style.dotColor, + border = if (selected) BorderStroke( + 1.dp, + style.dotBorderBrush + ) else null, + backgroundSizing = BackgroundSizing.InnerBorderEdge, + content = {} + ) + } + } + label?.let { + Spacer(Modifier.width(8.dp)) + Text( + modifier = Modifier.offset(y = (-1).dp).align(Alignment.CenterVertically), + text = it, + style = FluentTheme.typography.body.copy( + color = style.labelColor + ) + ) + } + } +} + +typealias RadioButtonStyleScheme = PentaVisualScheme + +/** + * Represents the styling configuration for a RadioButton. + * + * @property fillColor The fill color of the radio button. + * @property borderColor The border color of the radio button. + * @property labelColor The color of the label text associated with the radio button. + * @property dotSize The size of the inner dot that indicates selection. + * @property dotColor The color of the inner dot. + * @property dotBorderBrush The border brush of the inner dot. + */ +@Immutable +data class RadioButtonStyle( + val fillColor: Color, + val borderColor: Color, + val labelColor: Color, + val dotSize: Dp, + val dotColor: Color, + val dotBorderBrush: Brush +) + +/** + * Contains the default values used for [RadioButton]. + */ +object RadioButtonDefaults { + + /** + * Creates a [RadioButtonStyleScheme] with default styling for a RadioButton. + * + * This function provides a default appearance for a radio button, with different styles + * for its various states (default, hovered, pressed, and disabled). + * + * @param default The base [RadioButtonStyle] used when the radio button is in its normal state. + * Defaults to a style with: + * - `fillColor`: `FluentTheme.colors.controlAlt.secondary` + * - `borderColor`: `FluentTheme.colors.stroke.controlStrong.default` + * - `labelColor`: `FluentTheme.colors.text.text.primary` + * - `dotSize`: `0.dp` (no inner dot by default) + * - `dotColor`: `FluentTheme.colors.text.onAccent.primary` + * - `dotBorderBrush`: `FluentTheme.colors.borders.circle` + * @param hovered The [RadioButtonStyle] used when the radio button is hovered. + * Defaults to a style based on `default` but with `fillColor` set to `FluentTheme.colors.controlAlt.tertiary`. + * @param pressed The [RadioButtonStyle] used when the radio button is pressed. + * Defaults to a style based on `default` but with: + * - `fillColor`: `FluentTheme.colors.controlAlt.quaternary` + * - `borderColor`: `FluentTheme.colors.stroke.controlStrong.disabled` + * - `dotSize`: `10.dp` (a visible inner dot) + * @param disabled The [RadioButtonStyle] used when the radio button is disabled. + * Defaults to a style based on `default` but with: + * - `fillColor`: `FluentTheme.colors.controlAlt.disabled` + * - `borderColor`: `FluentTheme.colors.stroke.controlStrong.disabled` + * - `labelColor`: `FluentTheme.colors.text.text.disabled` + * + * @return A [RadioButtonStyleScheme] containing the specified styles for each state. + */ + @Stable + @Composable + fun defaultRadioButtonStyle( + default: RadioButtonStyle = RadioButtonStyle( + fillColor = FluentTheme.colors.controlAlt.secondary, + borderColor = FluentTheme.colors.stroke.controlStrong.default, + labelColor = FluentTheme.colors.text.text.primary, + dotSize = 0.dp, + dotColor = FluentTheme.colors.text.onAccent.primary, + dotBorderBrush = FluentTheme.colors.borders.circle + ), + hovered: RadioButtonStyle = default.copy( + fillColor = FluentTheme.colors.controlAlt.tertiary, + ), + pressed: RadioButtonStyle = default.copy( + fillColor = FluentTheme.colors.controlAlt.quaternary, + borderColor = FluentTheme.colors.stroke.controlStrong.disabled, + dotSize = 10.dp + ), + disabled: RadioButtonStyle = default.copy( + fillColor = FluentTheme.colors.controlAlt.disabled, + borderColor = FluentTheme.colors.stroke.controlStrong.disabled, + labelColor = FluentTheme.colors.text.text.disabled + ) + ) = RadioButtonStyleScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) + + /** + * Creates a [RadioButtonStyleScheme] for a selected radio button. + * + * @param default The default style of the selected radio button. + * @param hovered The style of the selected radio button when hovered. + * @param pressed The style of the selected radio button when pressed. + * @param disabled The style of the selected radio button when disabled. + * @return A [RadioButtonStyleScheme] representing the visual states of a selected radio button. + */ + @Stable + @Composable + fun selectedRadioButtonStyle( + default: RadioButtonStyle = RadioButtonStyle( + fillColor = FluentTheme.colors.fillAccent.default, + borderColor = FluentTheme.colors.fillAccent.default, + labelColor = FluentTheme.colors.text.text.primary, + dotSize = 8.dp, + dotColor = FluentTheme.colors.text.onAccent.primary, + dotBorderBrush = FluentTheme.colors.borders.circle + ), + hovered: RadioButtonStyle = default.copy( + fillColor = FluentTheme.colors.fillAccent.secondary, + dotSize = 10.dp, + ), + pressed: RadioButtonStyle = default.copy( + fillColor = FluentTheme.colors.fillAccent.tertiary, + dotSize = 6.dp + ), + disabled: RadioButtonStyle = default.copy( + fillColor = FluentTheme.colors.fillAccent.disabled, + borderColor = FluentTheme.colors.fillAccent.disabled, + labelColor = FluentTheme.colors.text.text.disabled + ) + ) = RadioButtonStyleScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) +} + +private val FixedCenterAlignment = Alignment { size, space, _ -> + val centerX = (space.width - size.width).toFloat() / 2f + val centerY = (space.height - size.height).toFloat() / 2f + IntOffset(x = centerX.toInt(), y = centerY.roundToInt()) +} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/RatingControl.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/RatingControl.kt similarity index 75% rename from fluent/src/commonMain/kotlin/com/konyaco/fluent/component/RatingControl.kt rename to fluent/src/commonMain/kotlin/io/github/composefluent/component/RatingControl.kt index 0ad573d8..8c21efb8 100644 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/component/RatingControl.kt +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/RatingControl.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.component +package io.github.composefluent.component import androidx.compose.foundation.clickable import androidx.compose.foundation.hoverable @@ -8,7 +8,6 @@ import androidx.compose.foundation.interaction.collectIsHoveredAsState import androidx.compose.foundation.layout.Arrangement import androidx.compose.foundation.layout.Box import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.size import androidx.compose.runtime.Composable import androidx.compose.runtime.CompositionLocalProvider import androidx.compose.runtime.Immutable @@ -34,33 +33,38 @@ import androidx.compose.ui.input.pointer.PointerEventType import androidx.compose.ui.input.pointer.pointerInput import androidx.compose.ui.layout.boundsInParent import androidx.compose.ui.layout.onGloballyPositioned -import androidx.compose.ui.text.font.FontWeight import androidx.compose.ui.unit.Density import androidx.compose.ui.unit.Dp import androidx.compose.ui.unit.LayoutDirection import androidx.compose.ui.unit.dp -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.LocalContentColor -import com.konyaco.fluent.ProvideTextStyle -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.filled.Star -import com.konyaco.fluent.icons.regular.Star -import com.konyaco.fluent.scheme.PentaVisualScheme -import com.konyaco.fluent.scheme.VisualStateScheme -import com.konyaco.fluent.scheme.collectVisualState +import io.github.composefluent.FluentTheme +import io.github.composefluent.LocalContentAlpha +import io.github.composefluent.LocalContentColor +import io.github.composefluent.ProvideTextStyle +import io.github.composefluent.scheme.PentaVisualScheme +import io.github.composefluent.scheme.VisualStateScheme +import io.github.composefluent.scheme.collectVisualState import kotlinx.coroutines.currentCoroutineContext import kotlinx.coroutines.flow.collectLatest import kotlinx.coroutines.flow.filterIsInstance import kotlinx.coroutines.isActive /** - * @param width: star width - * @param placeholderValue: the placeholder value will display when value is 0f - * @param maxRating: star count - * @param isClearEnabled: click same star value will clear value. - * @param caption: addition info for rating control - * @param stepValue: if true, [onValueChanged] will set value as int, otherwise [onValueChanged] will set value as float - * @param isReadOnly: if true, user can't set [value] by click. + * A composable function that creates a rating control, allowing users to select a rating from a set of stars. + * + * @param value The current rating value, ranging from 0f to [maxRating]. + * @param onValueChanged A callback function that is invoked when the rating value changes. It receives the new rating value as a parameter. + * @param modifier Modifier for styling and layout of the rating control. + * @param colors A [VisualStateScheme] that defines the colors used for different visual states of the rating control (e.g., default, hovered, pressed, disabled). + * @param width The width of each individual star in the rating control. + * @param interactionSource A [MutableInteractionSource] to handle user interactions with the rating control. + * @param placeholderValue A value to display as a placeholder when the [value] is 0f. This allows for showing a default rating (e.g., an average rating). + * @param maxRating The maximum rating value, which determines the number of stars displayed. + * @param caption A composable function that displays additional information or a label associated with the rating control. + * @param stepValue If true, the [onValueChanged] callback will provide integer rating values (e.g., 1, 2, 3). If false, it will provide floating-point values, allowing for fractional ratings (e.g., 1.5, 2.7). + * @param isReadOnly If true, the user cannot interact with the rating control to change the [value]. It will be displayed as a static rating. + * @param isClearEnabled If true, clicking on the currently selected star will clear the rating, setting the [value] to 0f. + * @param disabled If true, the rating control will be disabled, preventing user interaction and displaying it in a disabled state. */ @Composable fun RatingControl( @@ -68,7 +72,7 @@ fun RatingControl( onValueChanged: (Float) -> Unit, modifier: Modifier = Modifier, colors: VisualStateScheme = RatingControlDefaults.colors(), - width: Dp = 20.dp, + width: Dp = 16.dp, interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }, placeholderValue: Float = 0f, maxRating: Int = 5, @@ -198,6 +202,14 @@ fun RatingControl( typealias RatingControlColorScheme = PentaVisualScheme +/** + * Represents the color scheme for the [RatingControl] component. + * + * @param color The color of the rating star when it's not selected. + * @param selectedColor The color of the rating star when it's selected. + * @param captionColor The color of the caption text displayed next to the rating stars. + * @param placeholderColor The color of the rating star when it's used as a placeholder. + */ @Immutable data class RatingControlColor( val color: Color, @@ -206,8 +218,21 @@ data class RatingControlColor( val placeholderColor: Color ) +/** + * Contains the default values used for [RatingControl]. + */ object RatingControlDefaults { + /** + * Creates a [RatingControlColorScheme] with the default colors for a [RatingControl]. + * + * @param default The default [RatingControlColor] to use. + * @param hovered The [RatingControlColor] to use when the rating control is hovered. + * @param pressed The [RatingControlColor] to use when the rating control is pressed. + * @param disabled The [RatingControlColor] to use when the rating control is disabled. + * + * @return A [RatingControlColorScheme] that contains the specified colors. + */ @Composable @Stable fun colors( @@ -284,12 +309,12 @@ private fun drawStar( Row(horizontalArrangement = Arrangement.spacedBy(ratingSpacing), modifier = modifier) { val hasValue = value() != 0f val (icon, iconColor) = when { - selected -> Icons.Filled.Star to when { + selected -> FontIconPrimitive.FavoriteStarFull to when { (!hasValue && isHovered) || displayPlaceholder -> color.placeholderColor else -> color.selectedColor } - else -> Icons.Regular.Star to color.color + else -> FontIconPrimitive.RatingStar to color.color } repeat(maxRating) { index -> Box( @@ -297,21 +322,28 @@ private fun drawStar( onItemPositioned(index, it.boundsInParent()) } ) { - //TODO Update star icon - Icon( - imageVector = icon, - contentDescription = null, - tint = iconColor, - modifier = Modifier.size(width) - ) - if (isHovered && !hasValue && selected) { - Icon( - imageVector = Icons.Regular.Star, + CompositionLocalProvider( + LocalContentColor provides iconColor, + LocalContentAlpha provides iconColor.alpha + ) { + FontIcon( + type = icon, contentDescription = null, - tint = color.color, - modifier = Modifier.size(width) + size = FontIconSize(width.value) ) } + if (isHovered && !hasValue && selected) { + CompositionLocalProvider( + LocalContentColor provides color.color, + LocalContentAlpha provides color.color.alpha + ) { + FontIcon( + type = FontIconPrimitive.RatingStar, + contentDescription = null, + size = FontIconSize(width.value) + ) + } + } } diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/Scrollbar.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/Scrollbar.kt new file mode 100644 index 00000000..14bf5f88 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/Scrollbar.kt @@ -0,0 +1,397 @@ +package io.github.composefluent.component + +import androidx.compose.animation.core.animateFloatAsState +import androidx.compose.animation.core.tween +import androidx.compose.foundation.ScrollState +import androidx.compose.foundation.clickable +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.interaction.collectIsHoveredAsState +import androidx.compose.foundation.interaction.collectIsPressedAsState +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.lazy.LazyListState +import androidx.compose.foundation.lazy.grid.LazyGridState +import androidx.compose.foundation.shape.CircleShape +import androidx.compose.runtime.Composable +import androidx.compose.runtime.CompositionLocalProvider +import androidx.compose.runtime.Immutable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.remember +import androidx.compose.runtime.rememberCoroutineScope +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.graphicsLayer +import androidx.compose.ui.layout.Layout +import androidx.compose.ui.layout.layoutId +import androidx.compose.ui.platform.LocalDensity +import androidx.compose.ui.unit.Constraints +import androidx.compose.ui.unit.dp +import androidx.compose.ui.util.fastFirstOrNull +import io.github.composefluent.FluentTheme +import io.github.composefluent.LocalContentAlpha +import io.github.composefluent.LocalContentColor +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import kotlinx.coroutines.launch + +/* +* fork from Scrollbar.desktop + */ +expect interface ScrollbarAdapter { + + // We use `Double` values here in order to allow scrolling both very large (think LazyList with + // millions of items) and very small (think something whose natural coordinates are less than 1) + // content. + + /** + * Scroll offset of the content inside the scrollable component. + * + * For example, a value of `100` could mean the content is scrolled by 100 pixels from the + * start. + */ + val scrollOffset: Double + + /** + * The size of the scrollable content, on the scrollable axis. + */ + val contentSize: Double + + /** + * The size of the viewport, on the scrollable axis. + */ + val viewportSize: Double + + /** + * Instantly jump to [scrollOffset]. + * + * @param scrollOffset target offset to jump to, value will be coerced to the valid + * scroll range. + */ + suspend fun scrollTo(scrollOffset: Double) + +} + +/** + * A scrollbar that can be used to control the scrolling of a scrollable component. + * + * @param isVertical `true` if the scrollbar is vertical, `false` if horizontal. + * @param adapter The [ScrollbarAdapter] that provides the information about the scrollable + * component and allows to control its scrolling. + * @param modifier Modifier to be applied to the scrollbar. + * @param reverseLayout `true` if the scrollable component's layout is reversed, `false` + * otherwise. + * @param colors The [ScrollbarColors] that will be used to draw the scrollbar. + */ +@Composable +fun Scrollbar( + isVertical: Boolean, + adapter: ScrollbarAdapter, + modifier: Modifier = Modifier, + reverseLayout: Boolean = false, + colors: ScrollbarColors = ScrollbarDefaults.colors() +) { + PlatformScrollBar( + isVertical, + adapter, + modifier, + reverseLayout, + colors + ) +} + +@Composable +internal expect fun PlatformScrollBar( + isVertical: Boolean, + adapter: ScrollbarAdapter, + modifier: Modifier, + reverseLayout: Boolean, + colors: ScrollbarColors +) + +/** + * Creates and remembers a [ScrollbarAdapter] for the given [ScrollState]. + * + * @param state the [ScrollState] to create a [ScrollbarAdapter] for. + */ +@Composable +expect fun rememberScrollbarAdapter( + state: ScrollState +): ScrollbarAdapter + +/** + * Creates and remembers a [ScrollbarAdapter] for a [LazyListState]. + * + * @param state the [LazyListState] to be used with the [ScrollbarAdapter]. + * @return a [ScrollbarAdapter] that can be used with a scrollbar. + */ +@Composable +expect fun rememberScrollbarAdapter( + state: LazyListState +): ScrollbarAdapter + +/** + * Creates and remembers a [ScrollbarAdapter] for a [LazyGridState]. + * + * @param state The [LazyGridState] to observe. + * @return A [ScrollbarAdapter] that is coupled to the given [LazyGridState]. + */ +@Composable +expect fun rememberScrollbarAdapter( + state: LazyGridState +): ScrollbarAdapter + +/** + * Represents the color scheme for the scrollbar. + * + * @property contentColor The color of the scrollbar content (e.g., the thumb) in its default state. + * @property contentColorDisabled The color of the scrollbar content when it's disabled. + * @property contentColorHovered The color of the scrollbar content when the mouse is hovering over it. + * @property contentColorPressed The color of the scrollbar content when it's being pressed. + * @property backgroundColor The background color of the scrollbar track. + */ +@Immutable +data class ScrollbarColors( + val contentColor: Color, + val contentColorDisabled: Color, + val contentColorHovered: Color, + val contentColorPressed: Color, + val backgroundColor: Color +) + +/** + * Contains the default values used by [Scrollbar]. + */ +object ScrollbarDefaults { + /** + * The thickness of the scrollbar when it is highlighted (e.g., hovered or dragged). + */ + val thicknessHighlight = 6.dp + /** + * The default thickness of the scrollbar when it is not being hovered or pressed. + */ + val thickness = 2.dp + /** + + * The duration in milliseconds for the time to show the scrollbar highlight. + */ + const val hoverDurationMillis = 500 + /** + * The default shape of the scrollbar thumb. + */ + val shape = CircleShape + /** + * The scale factor applied to the scrollbar indicator when it is pressed. + */ + const val indicatorPressedScale = 0.875f + /** + * The offset for the scroll indicator, used to position the indicator away from the end or + * start of the scrollbar. + */ + val indicatorScrollOffset = 24.dp + + /** + * Creates a [ScrollbarColors] that represents the default colors used in a scrollbar. + * + * @param contentColor The color of the scrollbar thumb in its default state. + * @param contentColorDisabled The color of the scrollbar thumb when disabled. + * @param contentColorHovered The color of the scrollbar thumb when hovered. + * @param contentColorPressed The color of the scrollbar thumb when pressed. + * @param backgroundColor The background color of the scrollbar track. + * + * @return The resulting [ScrollbarColors] object. + */ + @Composable + fun colors( + contentColor: Color = FluentTheme.colors.controlStrong.default, + contentColorDisabled: Color = FluentTheme.colors.controlStrong.disabled, + contentColorHovered: Color = FluentTheme.colors.controlStrong.default, + contentColorPressed: Color = FluentTheme.colors.controlStrong.default, + backgroundColor: Color = FluentTheme.colors.background.acrylic.default + ) = ScrollbarColors( + contentColor = contentColor, + contentColorDisabled = contentColorDisabled, + contentColorHovered = contentColorHovered, + contentColorPressed = contentColorPressed, + backgroundColor = backgroundColor + ) +} + +/** + * A clickable indicator for scrolling, usually used alongside a [Scrollbar]. + * + * @param adapter The [ScrollbarAdapter] that provides information about the scroll state. + * @param isVertical `true` if the scrollbar is vertical, `false` if it's horizontal. + * @param modifier Modifier for styling and layout. + * @param visible `true` if the indicator should be visible, `false` otherwise. + * @param forward `true` if the indicator is for scrolling towards the start (e.g., up/left), `false` for scrolling towards the end (e.g., down/right). + * @param enabled `true` if the indicator should respond to clicks, `false` otherwise. + * @param colors The [ScrollbarColors] to use for the indicator. + */ +@Composable +fun ScrollbarIndicator( + adapter: ScrollbarAdapter, + isVertical: Boolean, + modifier: Modifier = Modifier, + visible: Boolean = false, + forward: Boolean = false, + enabled: Boolean = true, + colors: ScrollbarColors = ScrollbarDefaults.colors(), +) { + val interaction = remember { + MutableInteractionSource() + } + val hovered by interaction.collectIsHoveredAsState() + val pressed by interaction.collectIsPressedAsState() + val scrollScope = rememberCoroutineScope() + val offset = with(LocalDensity.current) { ScrollbarDefaults.indicatorScrollOffset.toPx() } + val animationFraction by animateFloatAsState( + targetValue = if (visible) { + 1f + } else { + 0f + }, + animationSpec = tween(FluentDuration.ShortDuration, easing = FluentEasing.FastInvokeEasing) + ) + val targetScale by animateFloatAsState( + if (pressed) { + ScrollbarDefaults.indicatorPressedScale + } else { + 1f + } + ) + val targetAlpha = animationFraction + val tint = when { + pressed -> colors.contentColorPressed + hovered -> colors.contentColorHovered + !enabled -> colors.contentColorDisabled + else -> colors.contentColor + } + Box( + contentAlignment = Alignment.Center, + modifier = Modifier + .then(modifier) + .then( + if (isVertical) { + Modifier.size(12.dp, 16.dp) + } else { + Modifier.size(16.dp, 12.dp) + } + ) + .clickable( + interactionSource = interaction, + indication = null, + enabled = enabled && visible + ) { + scrollScope.launch { + if (forward) { + adapter.scrollTo(-offset + adapter.scrollOffset) + } else { + adapter.scrollTo(offset + adapter.scrollOffset) + } + } + }.graphicsLayer { + scaleX = targetScale + scaleY = targetScale + alpha = targetAlpha + }) { + CompositionLocalProvider( + LocalContentColor provides tint, + LocalContentAlpha provides tint.alpha + ) { + FontIconSolid8( + type = when { + isVertical && forward -> FontIconPrimitive.CaretUp + isVertical -> FontIconPrimitive.CaretDown + forward -> FontIconPrimitive.CaretLeft + else -> FontIconPrimitive.CaretRight + }, + contentDescription = null + ) + } + } +} + +/** + * A container that displays a scrollbar alongside its content. + * + * This composable arranges a scrollbar and its associated content within a layout. The scrollbar's + * position is automatically calculated to be adjacent to the content, either vertically or + * horizontally, depending on the `isVertical` parameter. + * + * @param adapter The [ScrollbarAdapter] that provides scroll-related information and control. + * @param modifier The [Modifier] to be applied to the container. + * @param isVertical `true` if the scrollbar is vertical, `false` if horizontal. + * @param scrollbar A composable lambda that defines the appearance and behavior of the scrollbar. + * Defaults to a standard [Scrollbar] using the provided adapter. + * @param content A composable lambda that defines the content to be displayed alongside the + * scrollbar. + */ +@Composable +fun ScrollbarContainer( + adapter: ScrollbarAdapter, + modifier: Modifier = Modifier, + isVertical: Boolean = true, + scrollbar: @Composable () -> Unit = { Scrollbar(isVertical, adapter) }, + content: @Composable () -> Unit +) { + ScrollbarContainer( + modifier = modifier, + isVertical = isVertical, + scrollbar = scrollbar, + content = content + ) +} + +/** + * A composable that arranges a scrollbar and its content side by side. + * + * This function uses a custom [Layout] to position the scrollbar and content. + * It allows you to provide a custom [scrollbar] composable and [content] composable. + * The scrollbar is positioned on the right side if [isVertical] is true, or on the bottom side if false. + * + * @param modifier The modifier to be applied to the layout. + * @param isVertical Determines if the scrollbar is vertical (true) or horizontal (false). Defaults to true. + * @param scrollbar The composable to be used as the scrollbar. + * @param content The composable to be used as the scrollable content. + */ +@Composable +fun ScrollbarContainer( + modifier: Modifier = Modifier, + isVertical: Boolean = true, + scrollbar: @Composable () -> Unit, + content: @Composable () -> Unit +) { + Layout( + modifier = modifier, + content = { + Box(Modifier.layoutId("scrollbar")) { scrollbar() } + Box(Modifier.layoutId("content")) { content() } + } + ) { measurables, constraints -> + val contentMeasurable = + measurables.fastFirstOrNull { it.layoutId == "content" } + ?: return@Layout layout(0, 0) {} + val contentPlaceable = + contentMeasurable.measure(constraints.copy(minWidth = 0, minHeight = 0)) + val scrollbarMeasurable = + measurables.fastFirstOrNull { it.layoutId == "scrollbar" } ?: return@Layout layout( + contentPlaceable.width, + contentPlaceable.height + ) { contentPlaceable.place(0, 0) } + val scrollbarPlaceable = scrollbarMeasurable.measure( + if (isVertical) { + Constraints.fixedHeight(contentPlaceable.height) + } else { + Constraints.fixedWidth(contentPlaceable.width) + } + ) + layout(contentPlaceable.width, contentPlaceable.height) { + contentPlaceable.place(0, 0) + if (isVertical) { + scrollbarPlaceable.place(contentPlaceable.width - scrollbarPlaceable.width, 0) + } else { + scrollbarPlaceable.place(0, contentPlaceable.height - scrollbarPlaceable.height) + } + } + } +} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/SegmentedControl.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/SegmentedControl.kt new file mode 100644 index 00000000..46a6b293 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/SegmentedControl.kt @@ -0,0 +1,266 @@ +package io.github.composefluent.component + +import androidx.compose.animation.core.animateDp +import androidx.compose.animation.core.tween +import androidx.compose.animation.core.updateTransition +import androidx.compose.foundation.BorderStroke +import androidx.compose.foundation.background +import androidx.compose.foundation.clickable +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.PaddingValues +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.RowScope +import androidx.compose.foundation.layout.defaultMinSize +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.shape.CircleShape +import androidx.compose.foundation.shape.RoundedCornerShape +import androidx.compose.runtime.Composable +import androidx.compose.runtime.Stable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.remember +import androidx.compose.ui.Modifier +import androidx.compose.ui.geometry.Offset +import androidx.compose.ui.geometry.Size +import androidx.compose.ui.geometry.translate +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.Outline +import androidx.compose.ui.graphics.Shape +import androidx.compose.ui.unit.Density +import androidx.compose.ui.unit.Dp +import androidx.compose.ui.unit.LayoutDirection +import androidx.compose.ui.unit.dp +import io.github.composefluent.FluentTheme +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.background.BackgroundSizing +import io.github.composefluent.background.Layer +import io.github.composefluent.layout.HorizontalIndicatorContentLayout +import io.github.composefluent.scheme.VisualStateScheme +import io.github.composefluent.scheme.collectVisualState + +/** + * A segmented control is a linear set of two or more segments, each of which functions as a mutually exclusive button. + * + * Segmented controls allow users to switch between different views or modes. + * + * @param modifier The [Modifier] to be applied to this segmented control. + * @param color The background color of the segmented control. Defaults to [FluentTheme.colors.controlAlt.secondary]. + * @param borderStroke The border stroke of the segmented control. If null, no border is drawn. + * Defaults to a border with [buttonBorderStrokeWidth] and [FluentTheme.colors.stroke.control.default]. + * @param content The content of the segmented control. + * The content should be composed of [SegmentedButton]s, each representing a segment. + */ +@Composable +fun SegmentedControl( + modifier: Modifier = Modifier, + color: Color = FluentTheme.colors.controlAlt.secondary, + borderStroke: BorderStroke? = BorderStroke( + buttonBorderStrokeWidth, + FluentTheme.colors.stroke.control.default + ), + content: @Composable RowScope.() -> Unit, +) { + Layer( + color = color, + border = borderStroke, + shape = FluentTheme.shapes.control, + backgroundSizing = BackgroundSizing.OuterBorderEdge, + modifier = modifier + ) { + Row(content = content) + } +} + +/** + * A segmented button represents a single item within a [SegmentedControl]. + * + * @param checked Whether this item is currently selected. + * @param onCheckedChanged Callback to be invoked when this item's checked state changes. + * @param colors The color scheme to use for this button, based on the interaction state. If not provided, + * [ButtonDefaults.buttonColors] will be used when checked and [ButtonDefaults.subtleButtonColors] will be used when not checked. + * @param indicator The composable function that will draw an indicator to show the [checked] state. By default it will draw + * a [HorizontalIndicator]. + * @param modifier The modifier to apply to this item. + * @param enabled Controls the enabled state of the button. When `false`, this button will not be clickable and appears + * visually disabled to the user. + * @param position The position of the button within the segmented control. + * @param interactionSource The [MutableInteractionSource] representing the stream of [Interaction]s for this button. You can create and + * pass in your own remembered [MutableInteractionSource] if desired. + * @param icon The icon to display in the button. If `null`, no icon will be displayed. + * @param text The text to display in the button. If `null`, no text will be displayed. + */ +@Composable +fun SegmentedButton( + checked: Boolean, + onCheckedChanged: (Boolean) -> Unit, + colors: VisualStateScheme = if (checked) { + ButtonDefaults.buttonColors() + } else { + ButtonDefaults.subtleButtonColors() + }, + indicator: @Composable () -> Unit = { + HorizontalIndicator( + visible = checked, + modifier = Modifier.padding(bottom = buttonBorderStrokeWidth) + ) + }, + modifier: Modifier = Modifier, + enabled: Boolean = true, + position: SegmentedItemPosition = SegmentedItemPosition.Center, + interactionSource: MutableInteractionSource? = null, + icon: (@Composable () -> Unit)? = null, + text: (@Composable () -> Unit)? = null +) { + val targetInteractionSource = interactionSource ?: remember { MutableInteractionSource() } + val currentColors = colors.schemeFor(targetInteractionSource.collectVisualState(!enabled)) + val shape = if (checked) { + FluentTheme.shapes.control + } else { + val padding = when (position) { + SegmentedItemPosition.Start -> PaddingValues( + top = 3.dp, + bottom = 3.dp, + start = 3.dp, + end = 1.dp + ) + + SegmentedItemPosition.Center -> PaddingValues( + horizontal = 1.dp, + vertical = 3.dp + ) + + SegmentedItemPosition.End -> PaddingValues( + top = 3.dp, + bottom = 3.dp, + start = 1.dp, + end = 3.dp + ) + } + PaddingBackgroundShape(2.dp, padding) + } + Layer( + color = currentColors.fillColor, + contentColor = currentColors.contentColor, + border = BorderStroke(buttonBorderStrokeWidth, currentColors.borderBrush), + backgroundSizing = BackgroundSizing.OuterBorderEdge, + modifier = modifier.clickable( + enabled = enabled, + interactionSource = targetInteractionSource, + indication = null, + onClick = { onCheckedChanged(!checked) } + ), + shape = shape, + ) { + HorizontalIndicatorContentLayout( + indicator = indicator, + icon = icon, + text = text, + trailing = null, + modifier = Modifier.defaultMinSize(minHeight = buttonMinHeight) + ) + } +} + +/** + * Represents the position of a segmented item within a [SegmentedControl]. + * + * This enum is used to define the visual appearance and padding of a [SegmentedButton] + * when placed in a [SegmentedControl]. + * + * - **Start**: Indicates the item is the first in the [SegmentedControl] and should have + * padding on its right side to appear connected to the next item. + * - **Center**: Indicates the item is in the middle of the [SegmentedControl] and should + * have padding on both its left and right sides to appear connected to adjacent items. + * - **End**: Indicates the item is the last in the [SegmentedControl] and should have + * padding on its left side to appear connected to the previous item. + */ +enum class SegmentedItemPosition { Start, Center, End } + +/** + * A horizontal indicator that animates its width based on the [visible] state. + * + * @param modifier The modifier to be applied to the indicator. + * @param visible Whether the indicator should be visible. Animates its width between 0dp and 16dp. + * @param enabled Whether the indicator is enabled. Affects the color of the indicator. + * @param color The color of the indicator when enabled. Defaults to [FluentTheme.colors.fillAccent.default]. + * @param disabledColor The color of the indicator when disabled. Defaults to [FluentTheme.colors.fillAccent.disabled]. + */ +@Composable +fun HorizontalIndicator( + modifier: Modifier = Modifier, + visible: Boolean = true, + enabled: Boolean = true, + color: Color = FluentTheme.colors.fillAccent.default, + disabledColor: Color = FluentTheme.colors.fillAccent.disabled +) { + val width by updateTransition(visible).animateDp(transitionSpec = { + if (targetState) tween( + FluentDuration.QuickDuration, + easing = FluentEasing.FastInvokeEasing + ) + else tween(FluentDuration.QuickDuration, easing = FluentEasing.FastDismissEasing) + }, targetValueByState = { if (it) 16.dp else 0.dp }) + Box( + modifier = modifier + .size(width = width, height = 3.dp) + .background( + color = if (enabled) { + color + } else { + disabledColor + }, + shape = CircleShape + ) + ) +} + +@Stable +private class PaddingBackgroundShape(corner: Dp, private val padding: PaddingValues) : Shape { + private val shape = RoundedCornerShape(corner) + override fun createOutline( + size: Size, + layoutDirection: LayoutDirection, + density: Density + ): Outline { + return with(density) { + val leftPadding = padding.calculateLeftPadding(layoutDirection).toPx() + val topPadding = padding.calculateTopPadding().toPx() + val rightPadding = padding.calculateRightPadding(layoutDirection).toPx() + val bottomPadding = padding.calculateBottomPadding().toPx() + val paddingSize = Size( + size.width - leftPadding - rightPadding, + size.height - topPadding - bottomPadding + ) + when (val oldOutline = shape.createOutline(paddingSize, layoutDirection, density)) { + is Outline.Rectangle -> Outline.Rectangle( + oldOutline.rect.translate( + Offset( + leftPadding, + topPadding + ) + ) + ) + + is Outline.Rounded -> Outline.Rounded( + oldOutline.roundRect.translate( + Offset( + leftPadding, + topPadding + ) + ) + ) + + is Outline.Generic -> Outline.Generic(oldOutline.path.apply { + translate( + Offset( + leftPadding, + topPadding + ) + ) + }) + } + } + } +} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/SelectorBar.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/SelectorBar.kt new file mode 100644 index 00000000..12bb6337 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/SelectorBar.kt @@ -0,0 +1,204 @@ +package io.github.composefluent.component + +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.RowScope +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.heightIn +import androidx.compose.foundation.layout.widthIn +import androidx.compose.foundation.selection.selectable +import androidx.compose.runtime.Composable +import androidx.compose.runtime.Immutable +import androidx.compose.runtime.Stable +import androidx.compose.runtime.remember +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.unit.dp +import io.github.composefluent.FluentTheme +import io.github.composefluent.background.Layer +import io.github.composefluent.layout.HorizontalIndicatorContentLayout +import io.github.composefluent.scheme.PentaVisualScheme +import io.github.composefluent.scheme.VisualStateScheme +import io.github.composefluent.scheme.collectVisualState + +/** + * A composable function that represents a selector bar. + * + * The SelectorBar is a horizontal row that can be used to display and manage a list of selectable items. + * It is typically used as a navigation element or to filter content. + * + * @param modifier The [Modifier] to be applied to this selector bar. + * @param content The content lambda to render within the selector bar. + */ +@Composable +inline fun SelectorBar( + modifier: Modifier = Modifier, + content: @Composable RowScope.() -> Unit +) { + Row( + modifier = modifier, + horizontalArrangement = Arrangement.Start, + verticalAlignment = Alignment.CenterVertically, + content = content + ) +} + +/** + * A single item within a [SelectorBar]. + * + * @param selected Whether this item is currently selected. + * @param onSelectedChange The callback to be invoked when this item's selection state is changed. + * @param text The text content of this item. If null, only the [icon] will be displayed. + * @param modifier Modifier to be applied to the item. + * @param icon The icon content of this item. If null, only the [text] will be displayed. + * @param colors [VisualStateScheme] that provides the colors used for this item. + * @param enabled Whether this item is enabled. + * @param indicator The composable that indicates whether this item is selected. + * @param interactionSource The [MutableInteractionSource] representing the stream of [Interaction]s for this item. + */ +@Composable +fun SelectorBarItem( + selected: Boolean, + onSelectedChange: (Boolean) -> Unit, + text: (@Composable () -> Unit)?, + modifier: Modifier = Modifier, + icon: (@Composable () -> Unit)? = null, + colors: VisualStateScheme = if (selected) { + SelectorBarDefaults.selectedItemColors() + } else { + SelectorBarDefaults.defaultItemColors() + }, + enabled: Boolean = true, + indicator: @Composable (color: Color) -> Unit = { HorizontalIndicator(color = it, visible = selected) }, + interactionSource: MutableInteractionSource? = null, +) { + val iconOnly = icon != null && text == null + + val targetInteractionSource = interactionSource ?: remember { MutableInteractionSource() } + val currentColor = colors.schemeFor(targetInteractionSource.collectVisualState(!enabled)) + + Layer( + color = currentColor.fillColor, + contentColor = currentColor.contentColor, + border = null, + modifier = modifier.widthIn(if (iconOnly) 40.dp else 49.dp) + .heightIn(40.dp) + .selectable( + selected = selected, + enabled = enabled, + interactionSource = targetInteractionSource, + indication = null, + onClick = { onSelectedChange(!selected) } + ) + ) { + HorizontalIndicatorContentLayout( + modifier = Modifier.height(40.dp), + text = text, + icon = icon, + trailing = null, + indicator = { indicator(currentColor.indicatorColor) } + ) + } +} + +/** + * Contains the default values used for [SelectorBarItem]. + */ +object SelectorBarDefaults { + + /** + * Creates a [SelectorBarItemColorScheme] with the default colors for a [SelectorBarItem]. + * + * @param default The color scheme for the default state. + * @param hovered The color scheme for the hovered state. + * @param pressed The color scheme for the pressed state. + * @param disabled The color scheme for the disabled state. + * @return A [SelectorBarItemColorScheme] with the specified colors. + */ + @Composable + @Stable + fun defaultItemColors( + default: SelectorBarItemColor = SelectorBarItemColor( + fillColor = FluentTheme.colors.subtleFill.transparent, + contentColor = FluentTheme.colors.text.text.primary, + indicatorColor = FluentTheme.colors.fillAccent.default + ), + hovered: SelectorBarItemColor = SelectorBarItemColor( + fillColor = FluentTheme.colors.subtleFill.transparent, + contentColor = FluentTheme.colors.text.text.secondary, + indicatorColor = FluentTheme.colors.fillAccent.default + ), + pressed: SelectorBarItemColor = SelectorBarItemColor( + fillColor = FluentTheme.colors.subtleFill.transparent, + contentColor = FluentTheme.colors.text.text.tertiary, + indicatorColor = FluentTheme.colors.fillAccent.default + ), + disabled: SelectorBarItemColor = SelectorBarItemColor( + fillColor = FluentTheme.colors.subtleFill.transparent, + contentColor = FluentTheme.colors.text.text.disabled, + indicatorColor = FluentTheme.colors.fillAccent.disabled + ) + ) = SelectorBarItemColorScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) + + /** + * Creates a [SelectorBarItemColorScheme] with specified colors for different states of a selected item. + * + * @param default The color scheme for the default state. + * @param hovered The color scheme for the hovered state. + * @param pressed The color scheme for the pressed state. + * @param disabled The color scheme for the disabled state. + * @return A [SelectorBarItemColorScheme] with the specified colors. + */ + @Composable + @Stable + fun selectedItemColors( + default: SelectorBarItemColor = SelectorBarItemColor( + fillColor = FluentTheme.colors.subtleFill.transparent, + contentColor = FluentTheme.colors.text.text.primary, + indicatorColor = FluentTheme.colors.fillAccent.default + ), + hovered: SelectorBarItemColor = SelectorBarItemColor( + fillColor = FluentTheme.colors.subtleFill.transparent, + contentColor = FluentTheme.colors.text.text.secondary, + indicatorColor = FluentTheme.colors.fillAccent.default + ), + pressed: SelectorBarItemColor = SelectorBarItemColor( + fillColor = FluentTheme.colors.subtleFill.transparent, + contentColor = FluentTheme.colors.text.text.tertiary, + indicatorColor = FluentTheme.colors.fillAccent.default + ), + disabled: SelectorBarItemColor = SelectorBarItemColor( + fillColor = FluentTheme.colors.subtleFill.transparent, + contentColor = FluentTheme.colors.text.text.disabled, + indicatorColor = FluentTheme.colors.fillAccent.disabled + ) + ) = SelectorBarItemColorScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) +} + +/** + * Represents the color scheme for a single item in a [SelectorBar]. + * + * @property fillColor The background fill color of the item. + * @property contentColor The color of the text and icons within the item. + * @property indicatorColor The color of the indicator (e.g., a horizontal line) displayed when the item is selected. + */ +@Immutable +data class SelectorBarItemColor( + val fillColor: Color, + val contentColor: Color, + val indicatorColor: Color, +) + +typealias SelectorBarItemColorScheme = PentaVisualScheme \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/SideNav.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/SideNav.kt new file mode 100644 index 00000000..baf2dcb1 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/SideNav.kt @@ -0,0 +1,670 @@ +package io.github.composefluent.component + +import androidx.compose.animation.AnimatedVisibility +import androidx.compose.animation.animateColorAsState +import androidx.compose.animation.core.MutableTransitionState +import androidx.compose.animation.core.animateDp +import androidx.compose.animation.core.animateDpAsState +import androidx.compose.animation.core.animateFloatAsState +import androidx.compose.animation.core.tween +import androidx.compose.animation.core.updateTransition +import androidx.compose.animation.expandVertically +import androidx.compose.animation.fadeIn +import androidx.compose.animation.fadeOut +import androidx.compose.animation.shrinkVertically +import androidx.compose.foundation.ExperimentalFoundationApi +import androidx.compose.foundation.clickable +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.RowScope +import androidx.compose.foundation.layout.Spacer +import androidx.compose.foundation.layout.fillMaxHeight +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.layout.width +import androidx.compose.foundation.layout.widthIn +import androidx.compose.foundation.layout.wrapContentWidth +import androidx.compose.foundation.rememberScrollState +import androidx.compose.foundation.verticalScroll +import androidx.compose.runtime.Composable +import androidx.compose.runtime.CompositionLocalProvider +import androidx.compose.runtime.Immutable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.remember +import androidx.compose.runtime.rememberCoroutineScope +import androidx.compose.runtime.rememberUpdatedState +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.focus.FocusRequester +import androidx.compose.ui.focus.focusRequester +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.graphicsLayer +import androidx.compose.ui.unit.dp +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.FluentTheme +import io.github.composefluent.LocalTextStyle +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.background.BackgroundSizing +import io.github.composefluent.background.Layer +import io.github.composefluent.scheme.collectVisualState +import kotlinx.coroutines.delay +import kotlinx.coroutines.launch + +/** + * A composable function that renders a side navigation view. + * + * @param expanded Whether the side navigation is expanded. + * @param onExpandStateChange A callback that is invoked when the expand state changes. + * @param modifier The modifier to be applied to the side navigation. + * @param title A composable that renders the title of the side navigation. Defaults to an empty composable. + * @param autoSuggestionBox A composable that renders the auto-suggestion box. Defaults to null. + * @param footer A composable that renders the footer of the side navigation. Defaults to null. + * @param content A composable that renders the main content of the side navigation. + */ +@OptIn(ExperimentalFluentApi::class) +@Composable +fun SideNav( + expanded: Boolean, + onExpandStateChange: (Boolean) -> Unit, + modifier: Modifier = Modifier, + title: @Composable (() -> Unit) = {}, + autoSuggestionBox: (@Composable NavigationAutoSuggestBoxScope.() -> Unit)? = null, + footer: @Composable (() -> Unit)? = null, + content: @Composable () -> Unit +) { + SideNav( + indicatorState = rememberIndicatorState(), + expanded = expanded, + onExpandStateChange = onExpandStateChange, + modifier = modifier, + header = { + SideNavHeaderArea( + title = title, + backButton = {}, + expandButton = { + NavigationDefaults.ExpandedButton( + onClick = { onExpandStateChange(!expanded) } + ) + } + ) + }, + autoSuggestionBox = autoSuggestionBox, + footer = footer, + content = content + ) +} + +/** + * A composable function that represents a side navigation panel. + * + * This composable provides a flexible side navigation area that can be expanded or collapsed. + * It supports a header, footer, optional auto-suggestion box, and a main content area. + * + * @param indicatorState The state for managing the navigation indicator. + * @param expanded Controls whether the navigation is expanded or collapsed. + * @param onExpandStateChange Callback to notify when the expanded state changes. + * @param modifier Modifier for the root Column of the side navigation. + * @param autoSuggestionBox Optional composable to display a search or auto-suggestion box. + * The scope of this lambda is [NavigationAutoSuggestBoxScope]. + * @param header Optional composable for the header area of the navigation. + * @param flex Optional composable placed between the header and the main content. + * @param footer Optional composable for the footer area of the navigation. + * @param content Composable for the main content area of the navigation. + */ +@ExperimentalFluentApi +@Composable +fun SideNav( + indicatorState: IndicatorState, + expanded: Boolean, + onExpandStateChange: (Boolean) -> Unit, + modifier: Modifier = Modifier, + autoSuggestionBox: (@Composable NavigationAutoSuggestBoxScope.() -> Unit)? = null, + header: (@Composable () -> Unit)? = null, + flex: (@Composable () -> Unit)? = null, + footer: @Composable (() -> Unit)? = null, + content: @Composable () -> Unit +) { + val width by animateDpAsState( + targetValue = if (expanded) 320.dp else 48.dp, + animationSpec = tween( + durationMillis = FluentDuration.ShortDuration, + easing = FluentEasing.FastInvokeEasing + ) + ) + Column( + modifier = modifier.width(width) + ) { + Spacer(modifier = Modifier.height(4.dp)) + CompositionLocalProvider( + LocalNavigationExpand provides expanded, + LocalNavigationLevel provides 0, + LocalIndicatorState provides indicatorState, + ) { + header?.invoke() + flex?.invoke() + autoSuggestionBox?.let { + val focusRequester = remember { + FocusRequester() + } + val autoSuggestionBoxScope = remember(focusRequester) { + NavigationAutoSuggestBoxScopeImpl(focusRequester) + } + val expandedScope = rememberCoroutineScope() + if (expanded) { + Box( + content = { autoSuggestionBoxScope.it() }, + modifier = Modifier + .height(48.dp) + .padding(horizontal = 16.dp) + .padding(top = 4.dp) + ) + } else { + SideNavItem( + selected = false, + onClick = { + onExpandStateChange(true) + expandedScope.launch { + delay(FluentDuration.ShortDuration.toLong()) + focusRequester.requestFocus() + } + + }, + icon = { + FontIcon(type = FontIconPrimitive.Search, contentDescription = null) + }, + content = { Text("Click to search") } + ) + } + } + val scrollState = rememberScrollState() + ScrollbarContainer( + adapter = rememberScrollbarAdapter(scrollState), + modifier = Modifier.weight(1f), + content = { + Column( + content = { content() }, + modifier = Modifier + .fillMaxHeight() + .verticalScroll(scrollState) + .padding(bottom = 8.dp) + ) + } + ) + footer?.let { + // Divider + NavigationItemSeparator() + it() + Spacer(modifier = Modifier.height(4.dp)) + } + } + } +} + +/** + * A single item within a [SideNav]. + * + * @param selected `true` if this item is the currently selected item. + * @param onClick A callback that is invoked when the item is clicked. It provides the new + * selected state as a parameter. + * @param modifier Optional [Modifier] for styling. + * @param expand Whether the SideNav is currently expanded. Defaults to the current value of + * [LocalNavigationExpand]. + * @param expandItems `true` to expand the nested items if [items] are provided. + * @param onExpandItemsChanged A callback that is invoked when the expanded state of nested items + * changes. + * @param colors [NavigationItemColorScheme] to customize the colors of the item. Defaults to the + * selected or default colors based on [selected]. + * @param icon An optional icon to be displayed alongside the text. + * @param items Optional nested menu items. If provided, the item will show an expand/collapse + * indicator. + * @param enabled `true` if the item is enabled and can be clicked. + * @param indicator A composable that is drawn as an indicator when the item is selected. Defaults + * to [NavigationDefaults.VerticalIndicator]. + * @param content The main text content to display for the item. + */ +@OptIn(ExperimentalFluentApi::class) +@Composable +fun SideNavItem( + selected: Boolean, + onClick: (Boolean) -> Unit, + modifier: Modifier = Modifier, + expand: Boolean = LocalNavigationExpand.current, + expandItems: Boolean = false, + onExpandItemsChanged: (Boolean) -> Unit = {}, + colors: NavigationItemColorScheme = if (selected) { + NavigationDefaults.selectedSideItemColors() + } else { + NavigationDefaults.defaultSideItemColors() + }, + icon: @Composable (() -> Unit)? = null, + items: @Composable (MenuFlyoutContainerScope.() -> Unit)? = null, + enabled: Boolean = true, + indicator: @Composable IndicatorScope.(color: Color) -> Unit = { + NavigationDefaults.VerticalIndicator( + modifier = Modifier.indicatorOffset { selected }, + color = it + ) + }, + content: @Composable RowScope.() -> Unit +) { + SideNavItem( + selected = selected, + onSelectedChanged = onClick, + modifier = modifier, + expand = expand, + expandItems = expandItems, + onExpandItemsChanged = onExpandItemsChanged, + flyoutVisible = false, + onFlyoutVisibleChanged = {}, + colors = colors, + icon = icon, + items = items, + enabled = enabled, + indicator = indicator, + text = content, + indicatorState = LocalIndicatorState.current + ) +} + +/** + * A composable function that represents a single item in a side navigation menu. + * + * @param selected Whether the item is currently selected. + * @param onSelectedChanged Callback invoked when the selection state of the item changes. + * @param indicatorState The state of the indicator for this navigation item. + * @param modifier Modifier for styling and layout adjustments of the navigation item. + * @param expand Whether the navigation is in expanded mode. Defaults to the current state from [LocalNavigationExpand]. + * @param expandItems Whether to show the expanded sub-items. + * @param onExpandItemsChanged Callback invoked when the expanded state of the sub-items changes. + * @param flyoutVisible Whether the flyout menu for this item is visible. Default is true when `expandItems` is true and `expand` is false. + * @param onFlyoutVisibleChanged Callback invoked when the visibility of the flyout menu changes. Defaults to [onExpandItemsChanged]. + * @param colors Color scheme for the navigation item, changes based on whether it is selected. Defaults to [NavigationDefaults.selectedSideItemColors] when selected, otherwise [NavigationDefaults.defaultSideItemColors]. + * @param icon Optional icon to display on the navigation item. + * @param items Optional composable function to display a flyout of sub-items when this item is expanded. + * @param enabled Whether the navigation item is enabled. + * @param indicator Composable function to draw the selection indicator. Defaults to [NavigationDefaults.VerticalIndicator]. + * @param interactionSource Optional [MutableInteractionSource] to handle user interactions. + * @param badge Optional composable function to display a badge next to the navigation item. + * @param text Composable function to display the text label for the navigation item. + */ +@OptIn(ExperimentalFoundationApi::class) +@ExperimentalFluentApi +@Composable +fun SideNavItem( + selected: Boolean, + onSelectedChanged: (Boolean) -> Unit, + indicatorState: IndicatorState?, + modifier: Modifier = Modifier, + expand: Boolean = LocalNavigationExpand.current, + expandItems: Boolean = false, + onExpandItemsChanged: (Boolean) -> Unit = {}, + flyoutVisible: Boolean = expandItems && !expand, + onFlyoutVisibleChanged: (Boolean) -> Unit = onExpandItemsChanged, + colors: NavigationItemColorScheme = if (selected) { + NavigationDefaults.selectedSideItemColors() + } else { + NavigationDefaults.defaultSideItemColors() + }, + icon: @Composable (() -> Unit)? = null, + items: @Composable (MenuFlyoutContainerScope.() -> Unit)? = null, + enabled: Boolean = true, + indicator: @Composable IndicatorScope.(color: Color) -> Unit = { + NavigationDefaults.VerticalIndicator( + modifier = Modifier.indicatorOffset { selected }, + color = it + ) + }, + interactionSource: MutableInteractionSource? = null, + badge: (@Composable () -> Unit)? = null, + text: @Composable RowScope.() -> Unit +) { + val interaction = interactionSource ?: remember { MutableInteractionSource() } + + val color = colors.schemeFor(interaction.collectVisualState(!enabled)) + + TooltipBox( + tooltip = { + Row(content = text) + }, + enabled = !expand && enabled + ) { + Column( + modifier = modifier.indicatorRect(indicatorState, selected) + ) { + CompositionLocalProvider( + LocalNavigationLevel provides 0, + LocalNavigationExpand provides true + ) { + MenuFlyout( + visible = flyoutVisible, + onDismissRequest = { onFlyoutVisibleChanged(false) }, + placement = FlyoutPlacement.End + ) { + items?.invoke( + rememberNavigationItemsFlyoutScope(flyoutVisible, onFlyoutVisibleChanged) + ) + } + } + Box( + Modifier.height(40.dp) + .widthIn(48.dp) + .fillMaxWidth() + .padding(4.dp, 2.dp) + ) { + val navigationLevelPadding = 28.dp * LocalNavigationLevel.current + Layer( + modifier = Modifier.fillMaxWidth().height(36.dp), + shape = FluentTheme.shapes.control, + color = animateColorAsState( + targetValue = color.fillColor, + animationSpec = tween( + durationMillis = FluentDuration.QuickDuration, + easing = FluentEasing.FastInvokeEasing + ) + ).value, + contentColor = color.contentColor, + border = null, + backgroundSizing = BackgroundSizing.OuterBorderEdge + ) { + Box( + modifier = Modifier + .clickable( + onClick = { onSelectedChanged(!selected) }, + interactionSource = interaction, + indication = null, + enabled = enabled + ) + .padding(start = navigationLevelPadding), + contentAlignment = Alignment.CenterStart + ) { + Row(verticalAlignment = Alignment.CenterVertically) { + if (icon != null) { + Box( + modifier = Modifier.padding(start = 12.dp).size(16.dp), + contentAlignment = Alignment.Center, + content = { icon() } + ) + } + if (expand) { + Row( + modifier = Modifier + .weight(1f) + .wrapContentWidth(Alignment.Start) + .padding(start = 16.dp, end = 12.dp), + horizontalArrangement = Arrangement.spacedBy( + space = 8.dp, + alignment = Alignment.CenterHorizontally + ), + verticalAlignment = Alignment.CenterVertically, + content = text + ) + if (badge != null) { + Box( + contentAlignment = Alignment.Center, + modifier = Modifier.padding( + end = if (items != null) { + 4.dp + } else { + 12.dp + } + ) + ) { + badge() + } + } + if (items != null) { + val rotation by animateFloatAsState( + targetValue = if (expandItems) { + 180f + } else { + 00f + }, + animationSpec = tween( + durationMillis = FluentDuration.ShortDuration, + easing = FluentEasing.FastInvokeEasing + ) + ) + + val fraction by animateFloatAsState( + targetValue = if (expand) 1f else 0f, + animationSpec = tween( + durationMillis = FluentDuration.ShortDuration, + easing = FluentEasing.FastInvokeEasing + ) + ) + FontIcon( + type = FontIconPrimitive.ChevronDown, + size = FontIconSize.Small, + contentDescription = null, + modifier = Modifier + .padding(start = 2.dp, end = 14.dp) + .wrapContentWidth(Alignment.CenterHorizontally) + .graphicsLayer { + rotationZ = rotation + alpha = if (fraction == 1f) { + 1f + } else { + 0f + } + } + ) + } + } + } + + if (badge != null && !expand) { + Box( + modifier = Modifier.align(Alignment.TopEnd) + .padding(top = 2.dp, end = 2.dp) + ) { + badge() + } + } + }} + Box( + modifier = Modifier + .align(Alignment.CenterStart) + .padding(start = navigationLevelPadding), + content = { + SideNavigationIndicatorScope(indicatorState).indicator(color.indicatorColor) + } + ) + } + + if (items != null) { + AnimatedVisibility( + visible = expandItems && expand, + enter = fadeIn( + animationSpec = tween( + durationMillis = FluentDuration.ShortDuration, + easing = FluentEasing.FastInvokeEasing + ) + ) + expandVertically( + animationSpec = tween( + durationMillis = FluentDuration.ShortDuration, + easing = FluentEasing.FastInvokeEasing + ) + ), + exit = fadeOut( + animationSpec = tween( + durationMillis = FluentDuration.ShortDuration, + easing = FluentEasing.FastInvokeEasing + ) + ) + shrinkVertically( + animationSpec = tween( + durationMillis = FluentDuration.ShortDuration, + easing = FluentEasing.FastInvokeEasing + ) + ), + modifier = Modifier.fillMaxWidth() + ) { + CompositionLocalProvider( + value = LocalNavigationLevel provides LocalNavigationLevel.current + 1, + content = { + Column( + content = { + items(FakeMenuFlyoutContainerScope) + } + ) + } + ) + } + } + } + } + +} + +/** + * Composable function for rendering the header of a side navigation panel. + * + * This function displays a header within a side navigation panel, typically used for titles or important information. + * It only renders its content when the side navigation is expanded. + * + * @param modifier The [Modifier] to be applied to the header's container. + * @param visible Determines if the header should be visible. Defaults to [LocalNavigationExpand.current]. + * @param content The composable content to be displayed within the header. + */ +@Composable +fun SideNavHeader( + modifier: Modifier = Modifier, + visible: Boolean = LocalNavigationExpand.current, + content: @Composable () -> Unit +) { + if (visible) { + Box( + contentAlignment = Alignment.CenterStart, + modifier = modifier + .height(40.dp) + .padding(horizontal = 16.dp), + content = { + CompositionLocalProvider( + value = LocalTextStyle provides FluentTheme.typography.bodyStrong, + content = content + ) + } + ) + } +} + +/** + * Composable function that renders the header area of a side navigation component. + * + * This function arranges the title, back button, and expand button in the header + * based on the current [NavigationDisplayMode] and the expansion state. + * + * @param title The composable content for the header's title. + * @param backButton The composable content for the back button. + * @param expandButton The composable content for the expand/collapse button. + * @param modifier The [Modifier] to be applied to the header area. + * @param expand A boolean indicating whether the side navigation is expanded. + * Defaults to the value of [LocalNavigationExpand.current]. + * @param displayMode The [NavigationDisplayMode] determining how the header + * content is arranged. Defaults to [NavigationDisplayMode.Left]. + */ +@Composable +fun SideNavHeaderArea( + title: @Composable () -> Unit, + backButton: @Composable () -> Unit, + expandButton: @Composable () -> Unit, + modifier: Modifier = Modifier, + expand: Boolean = LocalNavigationExpand.current, + displayMode: NavigationDisplayMode = NavigationDisplayMode.Left +) { + val titleStyle = FluentTheme.typography.bodyStrong + when (displayMode) { + NavigationDisplayMode.LeftCollapsed -> { + Row( + modifier = modifier, + verticalAlignment = Alignment.CenterVertically + ) { + backButton() + expandButton() + CompositionLocalProvider( + value = LocalTextStyle provides titleStyle, + content = title + ) + } + } + + else -> { + Column(modifier = modifier) { + backButton() + Row( + verticalAlignment = Alignment.CenterVertically, + modifier = Modifier.height(40.dp) + ) { + expandButton() + if (expand) { + CompositionLocalProvider( + value = LocalTextStyle provides titleStyle, + content = title + ) + Spacer(modifier = Modifier.width(16.dp)) + } + } + } + } + } +} + +@Immutable +private class SideNavigationIndicatorScope(private val indicatorState: IndicatorState?) : + IndicatorScope { + + @Composable + override fun Modifier.indicatorOffset(visible: () -> Boolean): Modifier { + val display by rememberUpdatedState(visible) + val selectionState = indicatorState?.selectedItem + val indicatorState = remember { + MutableTransitionState(display()) + } + indicatorState.targetState = display() + val animationModifier = if (selectionState != null) { + Modifier.indicatorOffsetAnimation(16.dp, indicatorState, selectionState) + } else { + val height by updateTransition(display()).animateDp( + targetValueByState = { if (it) 16.dp else 0.dp }, + transitionSpec = { + if (targetState) { + tween( + durationMillis = FluentDuration.ShortDuration, + easing = FluentEasing.FastInvokeEasing + ) + } else { + tween( + durationMillis = FluentDuration.QuickDuration, + easing = FluentEasing.SoftDismissEasing + ) + } + }) + Modifier.height(height) + } + return then(animationModifier) + } +} + +internal class NavigationAutoSuggestBoxScopeImpl( + private val focusRequest: FocusRequester +) : NavigationAutoSuggestBoxScope { + override fun Modifier.focusHandle() = focusRequester(focusRequest) +} + +private object FakeMenuFlyoutContainerScope : MenuFlyoutContainerScope, + MenuFlyoutScope by MenuFlyoutScopeImpl() { + override var isFlyoutVisible: Boolean = false + + override fun Modifier.flyoutAnchor(): Modifier { + return this + } + + override fun Modifier.flyoutSize(matchAnchorWidth: Boolean): Modifier { + return this + } +} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/Slider.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/Slider.kt new file mode 100644 index 00000000..238643ee --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/Slider.kt @@ -0,0 +1,789 @@ +package io.github.composefluent.component + +import androidx.compose.animation.core.MutableTransitionState +import androidx.compose.animation.core.animateDpAsState +import androidx.compose.animation.core.tween +import androidx.compose.foundation.BorderStroke +import androidx.compose.foundation.Canvas +import androidx.compose.foundation.ExperimentalFoundationApi +import androidx.compose.foundation.background +import androidx.compose.foundation.gestures.awaitEachGesture +import androidx.compose.foundation.gestures.awaitFirstDown +import androidx.compose.foundation.gestures.awaitHorizontalDragOrCancellation +import androidx.compose.foundation.hoverable +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.interaction.PressInteraction +import androidx.compose.foundation.interaction.collectIsHoveredAsState +import androidx.compose.foundation.interaction.collectIsPressedAsState +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.Spacer +import androidx.compose.foundation.layout.defaultMinSize +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.requiredHeight +import androidx.compose.foundation.layout.requiredSize +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.shape.CircleShape +import androidx.compose.runtime.Composable +import androidx.compose.runtime.Stable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableFloatStateOf +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.rememberUpdatedState +import androidx.compose.runtime.setValue +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.geometry.Offset +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.Shape +import androidx.compose.ui.input.pointer.PointerInputChange +import androidx.compose.ui.input.pointer.pointerInput +import androidx.compose.ui.input.pointer.positionChange +import androidx.compose.ui.layout.layout +import androidx.compose.ui.platform.LocalDensity +import androidx.compose.ui.unit.Density +import androidx.compose.ui.unit.IntSize +import androidx.compose.ui.unit.dp +import androidx.compose.ui.util.lerp +import androidx.compose.ui.window.PopupProperties +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.FluentTheme +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.background.BackgroundSizing +import io.github.composefluent.background.Layer +import kotlin.math.abs +import kotlin.math.roundToInt + +/** + * A composable that displays a slider, allowing the user to select a value from a continuous range. + * + * This slider provides visual feedback through a rail, track, and thumb, and can also display tick marks + * for discrete steps. It supports snapping to these steps and displaying a tooltip with the selected + * value. + * + * @param value The current value of the slider. + * @param onValueChange Called when the value is changed by the user. + * @param modifier Modifier for the slider. + * @param enabled Whether the slider is enabled for user interaction. + * @param valueRange The range of values the slider can take. + * @param steps The number of discrete steps between the start and end of the value range. + * If 0, the slider is continuous. + * @param snap Whether the slider should snap to the nearest step value. Defaults to true if steps > 0. + * @param showTickMark Whether to display tick marks along the rail. Defaults to true if steps > 0. + * @param onValueChangeFinished Called when the user finishes interacting with the slider. + * It will receive the value of the slider when interaction ended. + * @param tooltipContent A composable function that provides the content for the tooltip. + * It receives a [SliderState] as a parameter. + * @param interactionSource The [MutableInteractionSource] representing the stream of interactions for this Slider. + */ +@Composable +fun Slider( + value: Float, + onValueChange: (Float) -> Unit, + modifier: Modifier = Modifier, + enabled: Boolean = true, + valueRange: ClosedFloatingPointRange = 0f..1f, + steps: Int = 0, + snap: Boolean = steps != 0, + showTickMark: Boolean = steps != 0, + onValueChangeFinished: ((Float) -> Unit)? = null, + tooltipContent: @Composable (SliderState) -> Unit = { SliderDefaults.Tooltip(it, snap = snap) }, + interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }, +) { + BasicSlider( + value = value, + onValueChange = onValueChange, + modifier = modifier, + enabled = enabled, + valueRange = valueRange, + steps = steps, + snap = snap, + onValueChangeFinished = onValueChangeFinished, + interactionSource = interactionSource, + rail = { state -> + SliderDefaults.Rail( + state = state, + enabled = enabled, + showTick = showTickMark + ) + }, + track = { state -> + SliderDefaults.Track(state, enabled = enabled) + }, + thumb = { state -> + SliderDefaults.Thumb(state, enabled = enabled, label = tooltipContent) + } + ) +} + +/** + * A composable function that displays a slider with a customizable state. + * + * @param state The state of the slider, including the current value, steps, snap behavior, and value range. + * @param modifier Modifier to be applied to the slider. + * @param enabled Whether the slider is enabled or disabled. + * @param showTickMark Whether to show tick marks along the slider rail. Defaults to true if steps are greater than 0. + * @param tooltipContent A composable function that defines the content of the tooltip that appears when dragging the thumb. + * It receives the current [SliderState] as a parameter. Defaults to a basic tooltip showing the current value. + * @param interactionSource The [MutableInteractionSource] representing the stream of [Interaction]s for this slider. + */ +@Composable +fun Slider( + state: SliderState, + modifier: Modifier = Modifier, + enabled: Boolean = true, + showTickMark: Boolean = state.steps != 0, + tooltipContent: @Composable (SliderState) -> Unit = { SliderDefaults.Tooltip(it, snap = state.snap) }, + interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }, +) { + BasicSlider( + state = state, + modifier = modifier, + enabled = enabled, + interactionSource = interactionSource, + rail = { state -> + SliderDefaults.Rail( + state = state, + enabled = enabled, + showTick = showTickMark + ) + }, + track = { state -> + SliderDefaults.Track(state, enabled = enabled) + }, + thumb = { state -> + SliderDefaults.Thumb(state, enabled = enabled, label = tooltipContent) + } + ) +} + +/** + * A basic slider component that allows users to select a value from a range. + * + * This slider provides a foundation for creating custom sliders with different styles and behaviors. + * It handles the core logic of value selection, snapping, and interaction, while allowing you to + * define the visual appearance of the slider rail, track, and thumb. + * + * @param value The current value of the slider. + * @param onValueChange Callback that is triggered when the slider's value changes. + * @param modifier Modifier for styling and layout customization of the slider. + * @param enabled Controls whether the slider is enabled or disabled. + * @param valueRange The range of values the slider can represent. + * @param steps The number of discrete steps in the slider's value range. A value of 0 means continuous range. + * @param snap Whether the slider should snap to the nearest step value when released. + * @param onValueChangeFinished Callback that is triggered when the user finishes interacting with the slider. + * @param interactionSource The [MutableInteractionSource] representing the stream of interactions for the slider. + * @param rail Composable function to draw the slider's rail. + * @param track Composable function to draw the slider's track (the portion indicating the selected value). + * @param thumb Composable function to draw the slider's thumb (the draggable element). + */ +@Composable +fun BasicSlider( + value: Float, + onValueChange: (Float) -> Unit, + modifier: Modifier = Modifier, + enabled: Boolean = true, + valueRange: ClosedFloatingPointRange = 0f..1f, + steps: Int = 0, + snap: Boolean = steps != 0, + onValueChangeFinished: ((Float) -> Unit)? = null, + interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }, + rail: @Composable (SliderState) -> Unit, + track: @Composable (SliderState) -> Unit, + thumb: @Composable (SliderState) -> Unit, +) { + val state = + remember(steps, valueRange) { SliderState(value, steps, snap, onValueChangeFinished, valueRange) } + state.value = value + state.onValueChangeFinished = onValueChangeFinished + state.onValueChange = onValueChange + + SliderImpl( + modifier = modifier, + state = state, + enabled = enabled, + interactionSource = interactionSource, + rail = rail, + track = track, + thumb = thumb + ) +} + +/** + * A basic slider without any default styling. + * + * This composable provides a foundational slider implementation, allowing for full customization + * of the rail, track, and thumb components. It is intended for cases where the default + * [Slider] does not meet specific design or functionality requirements. + * + * @param state The current state of the slider, which manages the value, steps, snapping, and + * drag behavior. + * @param modifier Modifier for the slider layout. + * @param enabled Whether the slider is enabled for interaction. + * @param interactionSource The [MutableInteractionSource] representing the stream of Interactions + * for this slider. You will usually create and pass in your own + * remembered instance. + * @param rail A composable function to render the slider's rail. It receives the [SliderState] as a parameter. + * @param track A composable function to render the slider's track (the filled portion). It receives the [SliderState] as a parameter. + * @param thumb A composable function to render the slider's thumb (the draggable element). It receives the [SliderState] as a parameter. + */ +@Composable +fun BasicSlider( + state: SliderState, + modifier: Modifier = Modifier, + enabled: Boolean = true, + interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }, + rail: @Composable (SliderState) -> Unit, + track: @Composable (SliderState) -> Unit, + thumb: @Composable (SliderState) -> Unit, +) { + SliderImpl( + modifier = modifier, + state = state, + enabled = enabled, + interactionSource = interactionSource, + rail = rail, + track = track, + thumb = thumb + ) +} + +@Composable +private fun SliderImpl( + state: SliderState, + modifier: Modifier = Modifier, + enabled: Boolean, + interactionSource: MutableInteractionSource, + rail: @Composable (SliderState) -> Unit, + track: @Composable (SliderState) -> Unit, + thumb: @Composable (SliderState) -> Unit, +) { + var widthPx by remember { mutableStateOf(0) } + val density by rememberUpdatedState(LocalDensity.current) + + Box( + content = { + rail(state) + track(state) + thumb(state) + }, + contentAlignment = Alignment.CenterStart, + propagateMinConstraints = true, + modifier = modifier + .height(32.dp) + .defaultMinSize(minWidth = 120.dp) + .layout { measurable, constraints -> + if (constraints.hasFixedWidth) { + val placeable = measurable.measure(constraints) + widthPx = placeable.width + layout(placeable.width, placeable.height) { + placeable.place(0, 0) + } + } else { + val placeable = + measurable.measure(constraints.copy(maxWidth = constraints.minWidth)) + widthPx = placeable.width + layout(placeable.width, placeable.height) { + placeable.place(0, 0) + } + } + } + // .semantics { } // TODO: Slider semantics + .pointerInput(enabled, state.onValueChange) { + if (enabled) awaitEachGesture { + val down = awaitFirstDown() + down.consume() + + val press = PressInteraction.Press(down.position) + interactionSource.tryEmit(press) + + // Fluent Behavior: Press will immediately change the value + state.startDragging(down.position, widthPx, density) + + var change: PointerInputChange? = down + + // We don't need touch slop + /*var change = awaitHorizontalTouchSlopOrCancellation(down.id) { change, overslop -> + val delta = change.positionChange() + change.consume() + println("Slop: ${delta} $overslop") + offset = Offset(x = offset.x + delta.x + overslop, y = offset.y) + currentOnFractionChange(calcFraction(offset)) + }*/ + + while (change != null && change.pressed) { + change = awaitHorizontalDragOrCancellation(down.id) + if (change != null) { + val delta = change.positionChange() + change.consume() + state.updateDelta(delta, widthPx, density) + } + } + // Notify change finished + interactionSource.tryEmit(PressInteraction.Release(press)) + state.stopDragging(widthPx, density) + } + } + ) +} + +/** + * [SliderState] holds the state of the [Slider] composable. + * + * @param value The initial value of the slider. + * @param steps The number of discrete steps in the slider. If 0, the slider is continuous. + * @param snap Whether the slider should snap to the nearest step when released. Defaults to `true` if `steps > 0`, `false` otherwise. + * @param onValueChangeFinished A callback to be invoked when the user finishes interacting with the slider. + * The callback receives the final value of the slider. + * @param valueRange The range of values that the slider can represent. + */ +class SliderState( + value: Float = 0f, + val steps: Int = 0, + val snap: Boolean = steps != 0, + var onValueChangeFinished: ((Float) -> Unit)? = null, + val valueRange: ClosedFloatingPointRange +) { + /** + * An array of fractions representing the positions of each step along the slider's track. + * The array includes the start (0.0f) and end (1.0f) positions, as well as the intermediate step positions. + * Used for snapping the slider's thumb to discrete values when steps are enabled. + */ + val stepFractions = getStepFractions(steps) + + private var valueState by mutableFloatStateOf(value) + internal var onValueChange: ((Float) -> Unit)? = null + + /** + * The current value of the slider. If the new value is outside of [valueRange], it will be + * coerced to the closest value inside the range. + * + * @throws IllegalArgumentException if the [valueRange] is empty. + */ + var value: Float + set(newVal) { + val coercedValue = newVal.coerceIn(valueRange.start, valueRange.endInclusive) + // We snap value at dragging ending instead of each dragging delta + /*val snappedValue = + snapValueToTick( + coercedValue, + tickFractions, + valueRange.start, + valueRange.endInclusive + )*/ + valueState = coercedValue + } + get() = valueState + + /** + * Whether the slider is currently being dragged. + */ + var isDragging by mutableStateOf(false) + private set + + /** + * The raw offset of the slider thumb, relative to the start of the slider track. + * This offset is used to accumulate the delta during dragging, it's not converted to user space yet. + * Relating to component size, for accumulating offset delta + */ + var rawOffset by mutableStateOf(Offset.Zero) + private set + + /** + * The current fraction of the slider's progress, without any scaling or consideration of + * the component's size. This is a value between 0.0 and 1.0, representing the relative + * position of the thumb along the track, regardless of the track's actual length. + */ + var rawFraction by mutableStateOf(valueToFraction(value, valueRange)) + private set + + private fun setRawOffset(offset: Offset, width: Int, density: Density) { + this.rawOffset = offset + this.rawFraction = offsetToFraction(offset, width, density) + } + + private fun setRawFraction(fraction: Float, width: Int, density: Density) { + this.rawFraction = fraction + this.rawOffset = + Offset(x = fractionToOffset(fraction, width, density), y = this.rawOffset.y) + } + + internal fun startDragging(downOffset: Offset, width: Int, density: Density) { + setRawOffset(downOffset, width, density) + + this.isDragging = true + + val fraction = offsetToFraction(downOffset, width, density) + this.value = scaleToUserValue(fraction, this.valueRange) + this.onValueChange?.invoke(this.value) + } + + internal fun updateDelta(delta: Offset, width: Int, density: Density) { + setRawOffset(Offset(x = this.rawOffset.x + delta.x, y = this.rawOffset.y), width, density) + + val fraction = offsetToFraction(this.rawOffset, width, density) + this.value = scaleToUserValue(fraction, this.valueRange) + this.onValueChange?.invoke(this.value) + } + + internal fun stopDragging(width: Int, density: Density) { + if (this.steps > 0) { + // Snap + // TODO: Add snap animation, maybe we should use anchoredDraggable? + val currentValue = this.value + if (this.snap) { + val nearestValue = snapToNearestTickValue(currentValue) + val fraction = valueToFraction(nearestValue, this.valueRange) + this.value = nearestValue + setRawFraction(fraction, width, density) + } else { + val fraction = valueToFraction(currentValue, this.valueRange) + setRawFraction(fraction, width, density) + } + } + + this.onValueChangeFinished?.invoke(this.value) + this.isDragging = false + } + + internal fun snapToNearestTickValue(value: Float): Float { + return this.stepFractions + .map { lerp(this.valueRange.start, this.valueRange.endInclusive, it) } + .minBy { abs(it - value) } + } + + /** + * Calculates the nearest value to the current [value] from the predefined step fractions. + * + * This function iterates through the [stepFractions], linearly interpolates the values within + * the [valueRange] based on these fractions, and then determines which of these interpolated + * values is closest to the current [value]. + * + * @return The nearest value to the current [value] based on the defined step fractions. + */ + fun nearestValue(): Float { + return this.stepFractions + .map { lerp(this.valueRange.start, this.valueRange.endInclusive, it) } + .minBy { abs(it - value) } + } +} + +private fun getStepFractions(steps: Int): FloatArray { + return FloatArray(steps + 2) { + it.toFloat() / (steps + 1) + } +} + +private fun fractionToOffset(fraction: Float, width: Int, density: Density): Float { + val thumbRadius = with(density) { (ThumbSizeWithBorder / 2).toPx() } + return lerp(thumbRadius, width - thumbRadius, fraction) +} + +@Stable +private fun offsetToFraction(offset: Offset, width: Int, density: Density): Float { + val thumbRadius = with(density) { (ThumbSizeWithBorder / 2).toPx() } + + return valueToFraction(offset.x, thumbRadius..(width - thumbRadius)).coerceIn(0f, 1f) +} + +@Stable +private fun scaleToUserValue(fraction: Float, range: ClosedFloatingPointRange): Float = + (range.endInclusive - range.start) * fraction + range.start + +@Stable +private fun valueToFraction( + value: Float, valueRange: ClosedFloatingPointRange +): Float = (value - valueRange.start) / (valueRange.endInclusive - valueRange.start) + +@Stable +private fun calcThumbOffset( + maxWidth: Int, thumbSize: Float, padding: Float, fraction: Float +): Float { + return (maxWidth - thumbSize) * fraction - padding +} + +/** + * Contains the default values used for the [Slider] and its components. + */ +object SliderDefaults { + + /** + * The track of the slider, which displays the progress of the slider. + * + * @param state The state of the slider. + * @param modifier The modifier to apply to this layout. + * @param enabled Controls the enabled state of the track. When `false`, the track will be displayed in a disabled state. + * @param color The color of the track when enabled. + * @param disabledColor The color of the track when disabled. + * @param shape The shape of the track. + */ + @Composable + fun Track( + state: SliderState, + modifier: Modifier = Modifier, + enabled: Boolean = true, + color: Color = FluentTheme.colors.fillAccent.default, + disabledColor: Color = FluentTheme.colors.fillAccent.disabled, + shape: Shape = CircleShape + ) { + Spacer( + modifier = modifier + .layout { measurable, constraints -> + val placeable = if (constraints.hasBoundedWidth) { + val maxWidth = + (ThumbRadiusWithBorder.toPx() + (state.rawFraction * (constraints.maxWidth - ThumbSizeWithBorder.toPx()))) + .roundToInt() + .coerceIn(0, constraints.maxWidth) + val newConstraints = constraints.copy( + minWidth = maxWidth, + maxWidth = maxWidth + ) + measurable.measure(newConstraints) + } else { + measurable.measure(constraints) + } + val width = maxOf(constraints.maxWidth, placeable.width) + val height = maxOf(constraints.maxHeight, placeable.height) + layout(width, height) { + val offset = Alignment.CenterStart.align( + size = IntSize(placeable.width, placeable.height), + space = IntSize(width, height), + layoutDirection = layoutDirection + ) + placeable.place(offset) + } + } + .requiredHeight(4.dp) + .background(if (enabled) color else disabledColor, shape) + ) + } + + private val TickThickness = 1.dp + private val TickHeight = 4.dp + private val TickY = 22.dp + private val TopTickY = 6.dp + + /** + * The rail of the slider, can be use alone, normally include tick mark on top of it. + * + * @param state the state of the slider. + * @param modifier the [Modifier] to be applied to this rail. + * @param enabled controls the enabled state of the slider. When `false`, this rail will + * be appear disabled, it won't respond to user input. + * @param showTick if true will show tick mark, default true when [SliderState.steps] > 0. + * @param showTopTick if true will show tick mark on the top, default true. + * @param color the color of this rail, default `controlStrong.default`. + * @param disabledColor the color of this rail when disabled, default `controlStrong.default`. + * @param border the border of this rail, default `controlStrong.default` in dark mode and light mode. + * @param shape the shape of this rail, default `CircleShape`. + */ + @Composable + fun Rail( + state: SliderState, + modifier: Modifier = Modifier, + enabled: Boolean = true, + showTick: Boolean = state.steps > 0, + showTopTick: Boolean = true, + color: Color = FluentTheme.colors.controlStrong.default, + disabledColor: Color = FluentTheme.colors.controlStrong.default, + border: BorderStroke? = BorderStroke( + 1.dp, if (FluentTheme.colors.darkMode) FluentTheme.colors.stroke.controlStrong.default + else FluentTheme.colors.controlStrong.default + ), + shape: Shape = CircleShape + ) { + Box(modifier, propagateMinConstraints = true) { + val color = if (enabled) color else disabledColor + + Layer( + modifier = Modifier.requiredHeight(4.dp), + shape = shape, + color = color, + border = border, + backgroundSizing = BackgroundSizing.InnerBorderEdge, + content = {} + ) + + if (showTick && state.steps > 0) Tick( + modifier = Modifier.matchParentSize(), + color = color, + state = state, + showTopTick = showTopTick + ) + } + } + + /** + * Draws tick marks on the slider rail. + * + * @param modifier The modifier to be applied to the tick marks. + * @param color The color of the tick marks. + * @param state The [SliderState] that holds the state of the slider. + * @param showTopTick Whether to show the ticks on the top side of the rail. + */ + @Composable + fun Tick(modifier: Modifier, color: Color, state: SliderState, showTopTick: Boolean) { + Canvas(modifier) { + // Start at center of the Thumb + val scaledWidth = + size.width - ThumbSize.toPx() // We don't need the start and end half Thumb + val startX = ThumbSize.toPx() / 2 + val tickY = TickY.toPx() + val topTickY = TopTickY.toPx() + val tickThickness = TickThickness.toPx() + val tickHeight = TickHeight.toPx() + + for (stepFraction in state.stepFractions) { + val x = scaledWidth * stepFraction + startX + drawLine( + color = color, + start = Offset(x = x, y = tickY), + end = Offset(x = x, y = tickY + tickHeight), + strokeWidth = tickThickness + ) + + if (showTopTick) { + drawLine( + color = color, + start = Offset(x = x, y = topTickY), + end = Offset(x = x, y = topTickY + tickHeight), + strokeWidth = tickThickness + ) + } + } + } + } + + /** + * The thumb used in [Slider]. + * + * @param state The [SliderState] of the slider. + * @param label The composable lambda to render the label of the thumb, it is visible when thumb is dragging. + * @param modifier The [Modifier] to be applied to the thumb. + * @param enabled Controls the enabled state of the thumb. When `false`, this thumb will not respond to user input, + * and it will appear visually disabled. + * @param interactionSource The [MutableInteractionSource] representing the stream of [Interaction]s + * for this thumb. You can create and pass in your own remembered [MutableInteractionSource] if + * you want to observe [Interaction]s and customize the appearance / behavior of this thumb in + * different [Interaction]s. + * @param shape The [Shape] of the thumb. + * @param border The [BorderStroke] of the thumb. If `null`, no border will be drawn. + * @param ringColor The color of the thumb's outer ring. + * @param color The default color of the inner thumb. + * @param draggingColor The color of the inner thumb when it is being dragged. + * @param disabledColor The color of the inner thumb when it is disabled. + */ + @OptIn(ExperimentalFluentApi::class, ExperimentalFoundationApi::class) + @Composable + fun Thumb( + state: SliderState, + label: @Composable (state: SliderState) -> Unit = { Tooltip(state) }, + modifier: Modifier = Modifier, + enabled: Boolean = true, + interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }, + shape: Shape = CircleShape, + border: BorderStroke? = BorderStroke(1.dp, FluentTheme.colors.borders.circle), + ringColor: Color = FluentTheme.colors.controlSolid.default, + color: Color = FluentTheme.colors.fillAccent.default, + draggingColor: Color = FluentTheme.colors.fillAccent.tertiary, + disabledColor: Color = FluentTheme.colors.fillAccent.disabled + ) { + val hovered by interactionSource.collectIsHoveredAsState() + val pressed by interactionSource.collectIsPressedAsState() + + FlyoutAnchorScope { + Layer( + modifier = modifier + .flyoutAnchor() + .layout { measurable, constraints -> + val placeable = measurable.measure(constraints.copy(minWidth = 0)) + val width = maxOf(constraints.maxWidth, placeable.width) + val height = maxOf(constraints.maxHeight, placeable.height) + layout(width, height) { + val offset = Alignment.CenterStart.align( + size = IntSize(placeable.width, placeable.height), + space = IntSize(width, height), + layoutDirection = layoutDirection + ) + placeable.place( + x = offset.x + calcThumbOffset( + maxWidth = width, + thumbSize = ThumbSize.toPx(), + padding = 1.dp.toPx(), + fraction = state.rawFraction + ).roundToInt(), + y = offset.y + 0 + ) + } + } + .requiredSize(ThumbSizeWithBorder) + .hoverable(interactionSource, enabled), + shape = shape, + color = ringColor, + border = border, + backgroundSizing = BackgroundSizing.InnerBorderEdge + ) { + Box(contentAlignment = Alignment.Center) { + // Inner Thumb + Box( + Modifier.size( + animateDpAsState( + when { + pressed || state.isDragging -> InnerThumbPressedSize + hovered -> InnerThumbHoverSize + else -> InnerThumbSize + }, + tween( + FluentDuration.QuickDuration, + easing = FluentEasing.FastInvokeEasing + ) + ).value + ).background( + when { + !enabled -> disabledColor + pressed || state.isDragging -> draggingColor + else -> color + }, shape + ) + ) + } + if (state.isDragging) { + Popup( + properties = PopupProperties(focusable = false), + popupPositionProvider = rememberTooltipPositionProvider(state = null), + content = { + TooltipBoxDefaults.Tooltip( + visibleState = remember { MutableTransitionState(true) }, + content = { label(state) }, + modifier = Modifier.flyoutAnchor() + ) + } + ) + } + } + } + } + + /** + * A composable function that displays a tooltip for a slider. + * + * @param state The [SliderState] object that holds the current state of the slider. + * @param snap Whether to snap the tooltip value to the nearest tick mark. If true, the tooltip + * will display the snapped value. Otherwise, it will display the current value. Defaults to the `snap` value in the [SliderState]. + */ + @Composable + fun Tooltip(state: SliderState, snap: Boolean = state.snap) { + Text( + if (snap) state.snapToNearestTickValue(state.value).toString() + else state.value.toString() + ) + } +} + +private val ThumbSize = 20.dp +private val ThumbSizeWithBorder = ThumbSize + 2.dp +private val ThumbRadiusWithBorder = ThumbSizeWithBorder / 2 +private val InnerThumbSize = 12.dp +private val InnerThumbHoverSize = 14.dp +private val InnerThumbPressedSize = 10.dp diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/Switcher.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/Switcher.kt new file mode 100644 index 00000000..f33b5601 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/Switcher.kt @@ -0,0 +1,279 @@ +package io.github.composefluent.component + +import androidx.compose.animation.animateColorAsState +import androidx.compose.animation.core.animateDp +import androidx.compose.animation.core.animateDpAsState +import androidx.compose.animation.core.tween +import androidx.compose.animation.core.updateTransition +import androidx.compose.foundation.background +import androidx.compose.foundation.border +import androidx.compose.foundation.clickable +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.Spacer +import androidx.compose.foundation.layout.offset +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.layout.width +import androidx.compose.foundation.shape.CircleShape +import androidx.compose.runtime.Composable +import androidx.compose.runtime.Stable +import androidx.compose.runtime.derivedStateOf +import androidx.compose.runtime.getValue +import androidx.compose.runtime.remember +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.draw.clip +import androidx.compose.ui.graphics.Brush +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.SolidColor +import androidx.compose.ui.graphics.TransformOrigin +import androidx.compose.ui.graphics.graphicsLayer +import androidx.compose.ui.platform.LocalDensity +import androidx.compose.ui.semantics.Role +import androidx.compose.ui.unit.DpSize +import androidx.compose.ui.unit.dp +import io.github.composefluent.FluentTheme +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.scheme.PentaVisualScheme +import io.github.composefluent.scheme.collectVisualState + +/** + * A composable function that renders a Switcher UI element. + * + * @param checked The current checked state of the Switcher. + * @param onCheckStateChange A callback function invoked when the checked state changes. + * It receives the new checked state as a parameter. + * @param text An optional text label to display alongside the Switcher. + * @param textBefore Whether to display the text label before the Switcher (true) or after (false). Defaults to false. + * @param enabled Whether the Switcher is enabled (true) or disabled (false). Defaults to true. + * @param styles The visual styles to apply to the Switcher, defined by [SwitcherStyleScheme]. + * Defaults to selected styles if [checked] is true, or default styles otherwise. + * @param interactionSource The [MutableInteractionSource] representing the stream of [androidx.compose.foundation.interaction.Interaction]s + * for this Switcher. You can create and pass in your own remembered [MutableInteractionSource] if you want to observe + * the Switcher's interactions in your custom UI. + */ +@Composable +fun Switcher( + checked: Boolean, + onCheckStateChange: (checked: Boolean) -> Unit, + text: String? = null, + textBefore: Boolean = false, + enabled: Boolean = true, + styles: SwitcherStyleScheme = if (checked) { + SwitcherDefaults.selectedSwitcherStyle() + } else { + SwitcherDefaults.defaultSwitcherStyle() + }, + interactionSource: MutableInteractionSource = remember { MutableInteractionSource() } +) { + // TODO: Draggable + // TODO: Extract same logic + val transition = updateTransition(checked) + val style = styles.schemeFor(interactionSource.collectVisualState(!enabled)) + Row( + modifier = Modifier.clickable( + indication = null, + interactionSource = interactionSource, + role = Role.Button, + enabled = enabled + ) { + onCheckStateChange(!checked) + }, + verticalAlignment = Alignment.CenterVertically + ) { + if (textBefore) { + text?.let { + Text( + modifier = Modifier.offset(y = (-1).dp), + text = it, + color = style.labelColor + ) + Spacer(Modifier.width(12.dp)) + } + } + + val fillColor by animateColorAsState( + style.fillColor, + tween(FluentDuration.QuickDuration, easing = FluentEasing.FastInvokeEasing) + ) + + Box( + modifier = Modifier.size(40.dp, 20.dp) + .border(1.dp, style.borderBrush, CircleShape) + .clip(CircleShape) + .background(fillColor) + .padding(horizontal = 4.dp), + contentAlignment = Alignment.CenterStart + ) { + val height by animateDpAsState( + style.controlSize.height, + tween(FluentDuration.QuickDuration, easing = FluentEasing.FastInvokeEasing) + ) + + val width by animateDpAsState( + style.controlSize.width, + tween(FluentDuration.QuickDuration, easing = FluentEasing.FastInvokeEasing) + ) + + val density = LocalDensity.current + val offset by transition.animateDp( + transitionSpec = { + tween(FluentDuration.QuickDuration, easing = FluentEasing.PointToPointEasing) + }, + targetValueByState = { + if (checked) 26.dp - (width / 2) else 0.dp + } + ) + + val offsetX by remember(density) { + derivedStateOf { with(density) { offset.toPx() } } + } + + // Control + Box( + Modifier.size(width, height) + .graphicsLayer { + translationX = offsetX + transformOrigin = TransformOrigin.Center + } + .clip(CircleShape) + .background( + if (checked) when { + !enabled -> FluentTheme.colors.text.onAccent.disabled + else -> FluentTheme.colors.text.onAccent.primary + } + else when { + !enabled -> FluentTheme.colors.text.text.disabled + else -> FluentTheme.colors.text.text.secondary + } + ) + ) + } + + if (!textBefore) { + text?.let { + Spacer(Modifier.width(12.dp)) + Text( + modifier = Modifier.offset(y = (-1).dp), + text = it, + style = FluentTheme.typography.body, + color = style.labelColor + ) + } + } + } +} + +/** + * Contains the default values used for [Switcher]. + */ +object SwitcherDefaults { + + /** + * Creates a default [SwitcherStyleScheme] for the [Switcher] component. + * + * This function defines the visual appearance of the [Switcher] in its different states: + * default, hovered, pressed, and disabled. It uses the [FluentTheme] for styling. + * + * @param default The [SwitcherStyle] for the default state. + * @param hovered The [SwitcherStyle] for the hovered state. + * @param pressed The [SwitcherStyle] for the pressed state. + * @param disabled The [SwitcherStyle] for the disabled state. + * @return A [SwitcherStyleScheme] containing the styles for each state. + */ + @Stable + @Composable + fun defaultSwitcherStyle( + default: SwitcherStyle = SwitcherStyle( + fillColor = FluentTheme.colors.controlAlt.secondary, + labelColor = FluentTheme.colors.text.text.primary, + controlColor = FluentTheme.colors.text.text.secondary, + controlSize = DpSize(width = 12.dp, height = 12.dp), + borderBrush = SolidColor(FluentTheme.colors.controlStrong.default) + ), + hovered: SwitcherStyle = default.copy( + fillColor = FluentTheme.colors.controlAlt.tertiary, + controlSize = DpSize(width = 14.dp, height = 14.dp) + ), + pressed: SwitcherStyle = default.copy( + fillColor = FluentTheme.colors.controlAlt.quaternary, + controlSize = DpSize(width = 17.dp, height = 14.dp) + ), + disabled: SwitcherStyle = default.copy( + fillColor = FluentTheme.colors.controlAlt.disabled, + borderBrush = SolidColor(FluentTheme.colors.controlStrong.disabled), + controlColor = FluentTheme.colors.text.text.disabled, + labelColor = FluentTheme.colors.text.text.disabled + ) + ) = SwitcherStyleScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) + + /** + * Creates a [SwitcherStyleScheme] for a selected state of the [Switcher]. + * + * This function defines the visual styles for the [Switcher] when it's in a selected state. + * It allows customization of the appearance based on different interaction states (default, hovered, pressed, disabled). + * + * @param default The default [SwitcherStyle] applied when no specific interaction is occurring. + * @param hovered The [SwitcherStyle] applied when the switcher is hovered over. + * @param pressed The [SwitcherStyle] applied when the switcher is pressed. + * @param disabled The [SwitcherStyle] applied when the switcher is disabled. + * @return A [SwitcherStyleScheme] containing the styles for each state. + */ + @Stable + @Composable + fun selectedSwitcherStyle( + default: SwitcherStyle = SwitcherStyle( + fillColor = FluentTheme.colors.fillAccent.default, + labelColor = FluentTheme.colors.text.text.primary, + controlColor = FluentTheme.colors.text.onAccent.primary, + controlSize = DpSize(width = 12.dp, height = 12.dp), + borderBrush = SolidColor(Color.Transparent) + ), + hovered: SwitcherStyle = default.copy( + fillColor = FluentTheme.colors.fillAccent.secondary, + controlSize = DpSize(width = 14.dp, height = 14.dp) + ), + pressed: SwitcherStyle = default.copy( + fillColor = FluentTheme.colors.fillAccent.tertiary, + controlSize = DpSize(width = 17.dp, height = 14.dp) + ), + disabled: SwitcherStyle = default.copy( + fillColor = FluentTheme.colors.fillAccent.disabled, + borderBrush = SolidColor(FluentTheme.colors.fillAccent.disabled), + controlColor = FluentTheme.colors.text.onAccent.disabled, + labelColor = FluentTheme.colors.text.text.disabled + ) + ) = SwitcherStyleScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) +} + +typealias SwitcherStyleScheme = PentaVisualScheme + +/** + * Represents the visual style of a [Switcher]. + * + * @property fillColor The fill color of the switcher's background. + * @property labelColor The color of the text label associated with the switcher. + * @property controlColor The color of the movable control within the switcher. + * @property controlSize The size of the movable control within the switcher. + * @property borderBrush The brush used to draw the border around the switcher's background. + */ +data class SwitcherStyle( + val fillColor: Color, + val labelColor: Color, + val controlColor: Color, + val controlSize: DpSize, + val borderBrush: Brush +) \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/TabView.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/TabView.kt new file mode 100644 index 00000000..5137e43c --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/TabView.kt @@ -0,0 +1,963 @@ +package io.github.composefluent.component + +import androidx.compose.animation.AnimatedVisibility +import androidx.compose.foundation.ExperimentalFoundationApi +import androidx.compose.foundation.background +import androidx.compose.foundation.clickable +import androidx.compose.foundation.gestures.animateScrollBy +import androidx.compose.foundation.interaction.InteractionSource +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.interaction.collectIsHoveredAsState +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.PaddingValues +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.defaultMinSize +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.heightIn +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.layout.widthIn +import androidx.compose.foundation.layout.wrapContentHeight +import androidx.compose.foundation.layout.wrapContentSize +import androidx.compose.foundation.layout.wrapContentWidth +import androidx.compose.foundation.lazy.LazyListItemInfo +import androidx.compose.foundation.lazy.LazyListScope +import androidx.compose.foundation.lazy.LazyListState +import androidx.compose.foundation.lazy.LazyRow +import androidx.compose.foundation.lazy.rememberLazyListState +import androidx.compose.foundation.shape.RoundedCornerShape +import androidx.compose.runtime.Composable +import androidx.compose.runtime.CompositionLocalProvider +import androidx.compose.runtime.DisposableEffect +import androidx.compose.runtime.Immutable +import androidx.compose.runtime.LaunchedEffect +import androidx.compose.runtime.Stable +import androidx.compose.runtime.derivedStateOf +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableIntStateOf +import androidx.compose.runtime.mutableStateMapOf +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.rememberCoroutineScope +import androidx.compose.runtime.setValue +import androidx.compose.runtime.snapshotFlow +import androidx.compose.runtime.snapshots.Snapshot +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.draw.clip +import androidx.compose.ui.draw.drawWithCache +import androidx.compose.ui.geometry.Offset +import androidx.compose.ui.geometry.Rect +import androidx.compose.ui.geometry.Size +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.Outline +import androidx.compose.ui.graphics.Path +import androidx.compose.ui.graphics.RectangleShape +import androidx.compose.ui.graphics.Shape +import androidx.compose.ui.graphics.SolidColor +import androidx.compose.ui.graphics.drawscope.Stroke +import androidx.compose.ui.layout.LayoutCoordinates +import androidx.compose.ui.layout.boundsInParent +import androidx.compose.ui.layout.onGloballyPositioned +import androidx.compose.ui.layout.onSizeChanged +import androidx.compose.ui.node.DelegatingNode +import androidx.compose.ui.node.ModifierNodeElement +import androidx.compose.ui.node.requireLayoutCoordinates +import androidx.compose.ui.platform.LocalDensity +import androidx.compose.ui.platform.LocalLayoutDirection +import androidx.compose.ui.relocation.BringIntoViewModifierNode +import androidx.compose.ui.relocation.bringIntoView +import androidx.compose.ui.unit.Density +import androidx.compose.ui.unit.Dp +import androidx.compose.ui.unit.DpSize +import androidx.compose.ui.unit.LayoutDirection +import androidx.compose.ui.unit.dp +import androidx.compose.ui.zIndex +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.FluentTheme +import io.github.composefluent.LocalContentAlpha +import io.github.composefluent.LocalContentColor +import io.github.composefluent.LocalTextStyle +import io.github.composefluent.scheme.PentaVisualScheme +import io.github.composefluent.scheme.VisualStateScheme +import io.github.composefluent.scheme.collectVisualState +import kotlinx.coroutines.flow.collectLatest +import kotlinx.coroutines.flow.combine +import kotlinx.coroutines.launch + +/** + * A composable function that creates a row of tabs with a dynamic underline indicator. + * + * This function provides a layout for a row of tabs with the following features: + * - **Selected Tab Underline:** Displays a dynamic underline that moves and resizes to match the currently selected tab. + * - **Scrolling:** Supports horizontal scrolling of tabs when they exceed the available space. + * - **Header and Footer:** Allows for adding custom composable content before and after the tab list. + * - **Scroll Actions:** Includes scroll action buttons (left/right arrows) to navigate the tabs when scrolling is needed. + * - **Customization:** Offers options to customize the border color and the visual style of the scroll action buttons. + * + * @param selectedKey A lambda that returns the key of the currently selected tab. This key should uniquely identify each tab item. + * @param modifier The [Modifier] to be applied to the root container of the TabRow. + * @param state The [LazyListState] for the underlying [LazyRow] used to display the tabs, allowing control over the scroll state. Defaults to a new [rememberLazyListState]. + * @param header A composable function that provides the header content to be placed before the tab list. Defaults to an empty composable. + * @param footer A composable function that provides the footer content to be placed after the tab list. Defaults to an empty composable. + * @param borderColor The color of the underline indicator displayed beneath the selected tab. Defaults to [TabViewDefaults.defaultBorderColor]. + * @param scrollActionButtonColors A [VisualStateScheme] that defines the colors of the scroll action buttons in different interaction states. Defaults to [TabViewDefaults.scrollActionColors]. + * @param content A [LazyListScope] lambda that defines the content of the tab items within the [LazyRow]. + */ +@Composable +fun TabRow( + selectedKey: () -> Any, + modifier: Modifier = Modifier, + state: LazyListState = rememberLazyListState(), + header: @Composable () -> Unit = {}, + footer: @Composable () -> Unit = {}, + borderColor: Color = TabViewDefaults.defaultBorderColor, + scrollActionButtonColors: VisualStateScheme = TabViewDefaults.scrollActionColors(), + content: LazyListScope.() -> Unit +) { + val rowRect = remember { mutableStateOf(Rect.Zero) } + val containerWidth = remember { mutableIntStateOf(0) } + Box( + contentAlignment = Alignment.BottomStart + ) { + val padding = 8.dp + Row( + verticalAlignment = Alignment.Bottom, + modifier = modifier + .zIndex(1f) + .clip(RectangleShape) + .onSizeChanged { containerWidth.value = it.width } + ) { + + val selectedItem = remember { + derivedStateOf { + val currentKey = selectedKey() + state.layoutInfo.visibleItemsInfo.firstOrNull { it.key == currentKey } + } + } + val selectedItemScrollOffset = remember(selectedItem, state) { + derivedStateOf { + val selectedItem = selectedItem.value ?: return@derivedStateOf 0 + selectedItem.offset + state.firstVisibleItemScrollOffset - state.firstVisibleItemScrollOffset + } + } + Box(modifier = Modifier + .zIndex(2f) + .height(2.dp) + .drawTabRowBorder( + bottomRadius = FluentTheme.cornerRadius.control, + borderColor = borderColor, + containerWidth = { containerWidth.value }, + rowRect = { rowRect.value }, + selectedItem = { selectedItem.value }, + selectedItemScrollOffset = { selectedItemScrollOffset.value } + ) + ) + Box(modifier = Modifier.widthIn(padding)) { + header() + } + val displayScrollController by remember { + derivedStateOf { state.canScrollForward || state.canScrollBackward } + } + val coroutineScope = rememberCoroutineScope() + AnimatedVisibility(displayScrollController) { + TabScrollActionButton( + onClick = { coroutineScope.launch { state.animateScrollBy(-state.layoutInfo.viewportSize.width / 3f) } }, + icon = FontIconPrimitive.CaretLeft, + enabled = state.canScrollBackward, + colors = scrollActionButtonColors, + modifier = Modifier.padding(end = 4.dp) + ) + } + LazyRow( + state = state, + content = content, + contentPadding = PaddingValues(horizontal = 4.dp), + modifier = Modifier + .onGloballyPositioned { rowRect.value = it.boundsInParent() } + .weight(1f) + .wrapContentWidth(Alignment.Start) + .height(TabViewHeight) + .zIndex(1f) + ) + AnimatedVisibility(displayScrollController) { + TabScrollActionButton( + onClick = { coroutineScope.launch { state.animateScrollBy(state.layoutInfo.viewportSize.width / 3f) } }, + icon = FontIconPrimitive.CaretRight, + enabled = state.canScrollForward, + colors = scrollActionButtonColors, + modifier = Modifier.padding(start = 4.dp) + ) + } + Box(modifier = Modifier.widthIn(padding)) { + footer() + } + } + } +} + +/** + * A composable function that represents a single item within a tab view. + * + * This function provides a customizable tab item with text, icon, and trailing content, + * along with visual feedback for selection and interaction states. + * + * @param selected Indicates whether the tab item is currently selected. + * @param onSelectedChanged A callback function triggered when the selection state of the tab item changes. + * It receives the new selection state as a boolean parameter. + * @param text A composable lambda that defines the text content to be displayed in the tab item. + * @param modifier A [Modifier] to customize the layout and appearance of the tab item. + * @param endDividerVisible Indicates whether a divider should be displayed at the end of the tab item. + * Defaults to `true` when the item is not selected. + * @param interactionSource An optional [MutableInteractionSource] to observe and control the interactions + * with the tab item. + * @param colors A [VisualStateScheme] that defines the colors to be used for different states of the tab item + * (e.g., selected, unselected, hovered). + * Defaults to `TabViewDefaults.selectedItemColors()` when the item is selected, + * and `TabViewDefaults.defaultItemColors()` otherwise. + * @param icon A composable lambda that defines the icon content to be displayed in the tab item. + * Defaults to an empty composable. + * @param trailing A composable lambda that defines the trailing content to be displayed in the tab item. + * Defaults to an empty composable. + */ +@Composable +fun TabItem( + selected: Boolean, + onSelectedChanged: (Boolean) -> Unit, + text: @Composable () -> Unit, + modifier: Modifier = Modifier, + endDividerVisible: Boolean = !selected, + interactionSource: MutableInteractionSource? = null, + colors: VisualStateScheme = if (selected) { + TabViewDefaults.selectedItemColors() + } else { + TabViewDefaults.defaultItemColors() + }, + icon: @Composable () -> Unit = {}, + trailing: @Composable () -> Unit = {} +) { + TabItem( + selected = selected, + onSelectedChanged = onSelectedChanged, + modifier = modifier, + endDividerVisible = endDividerVisible, + interactionSource = interactionSource, + colors = colors, + content = { + Row( + horizontalArrangement = TabItemContentArrangement, + verticalAlignment = Alignment.CenterVertically + ) { + icon() + text() + trailing() + } + } + ) +} + +/** + * A single item within a [TabRow]. + * + * @param selected Whether this item is currently selected. + * @param onSelectedChanged Called when the selected state of this item changes. + * @param modifier Modifier to be applied to the item. + * @param endDividerVisible Whether the divider on the end of the item should be visible. Defaults to `false` if `selected` is `true`, `true` otherwise. + * @param interactionSource The [MutableInteractionSource] representing the stream of [androidx.compose.foundation.interaction.Interaction]s for this item. + * @param colors The [VisualStateScheme] that defines the colors used for different interaction states. Defaults to [TabViewDefaults.selectedItemColors] when `selected` is true, [TabViewDefaults.defaultItemColors] otherwise. + * @param content The composable content of this item. + */ +@OptIn(ExperimentalFoundationApi::class) +@Composable +fun TabItem( + selected: Boolean, + onSelectedChanged: (Boolean) -> Unit, + modifier: Modifier = Modifier, + endDividerVisible: Boolean = !selected, + interactionSource: MutableInteractionSource? = null, + colors: VisualStateScheme = if (selected) { + TabViewDefaults.selectedItemColors() + } else { + TabViewDefaults.defaultItemColors() + }, + content: @Composable () -> Unit +) { + val targetInteractionSource = interactionSource ?: remember { MutableInteractionSource() } + + val direction = LocalLayoutDirection.current + val color = colors.schemeFor(targetInteractionSource.collectVisualState(false)) + val density = LocalDensity.current + val bottomRadius = FluentTheme.cornerRadius.control + val topRadius = FluentTheme.cornerRadius.overlay + Box( + contentAlignment = Alignment.CenterStart, + propagateMinConstraints = true, + modifier = modifier + .then( + if (selected) { + Modifier.drawTabViewItemBorder( + color = color.borderColor, + shape = TabViewSelectedShape( + isInner = false, + topRadius = topRadius, + bottomRadius = bottomRadius + ), + direction = direction + ) + } else { + Modifier + } + ) + .then(TabItemBringIntoViewModifierNodeElement( + density = density, + bottomRadius = bottomRadius + )) + .clickable( + indication = null, + interactionSource = targetInteractionSource + ) { onSelectedChanged(!selected) } + .background( + color = color.fillColor, + shape = if (selected) { + TabViewSelectedShape(isInner = true, topRadius, bottomRadius) + } else { + RoundedCornerShape(topStart = topRadius, topEnd = topRadius) + } + ) + .heightIn(TabViewHeight) + .zIndex(if (selected) 1f else 0f) + ) { + Box( + contentAlignment = Alignment.CenterStart, + propagateMinConstraints = true, + modifier = Modifier + .heightIn(TabViewHeight) + .padding(start = 8.dp, end = 4.dp) + ) { + CompositionLocalProvider( + LocalTextStyle provides if (selected) { + FluentTheme.typography.bodyStrong + } else { + FluentTheme.typography.body + }, + LocalContentColor provides color.contentColor, + LocalContentAlpha provides color.contentColor.alpha + ) { + content() + } + } + if (endDividerVisible) { + Box( + modifier = Modifier + .wrapContentSize(Alignment.CenterEnd) + .size(1.dp, 16.dp) + .background(color.endDividerColor) + ) + } + } + +} + +/** + * Represents the color scheme for a tab view item. + * + * @property borderColor The color of the border around the tab item. + * @property fillColor The fill color of the tab item's background. + * @property contentColor The color of the content (text, icons) within the tab item. + * @property endDividerColor The color of the divider displayed at the end of the tab item. + * Defaults to [Color.Transparent]. + */ +@Stable +data class TabViewItemColor( + val borderColor: Color, + val fillColor: Color, + val contentColor: Color, + val endDividerColor: Color = Color.Transparent +) + +/** + * Contains the default values used for [TabItem] and [TabRow]. + */ +object TabViewDefaults { + + /** + * The default border color used for the tab row and tab items. + * This color is derived from the Fluent theme's card stroke color. + */ + val defaultBorderColor: Color + @Composable + get() = FluentTheme.colors.stroke.card.default + + /** + * Creates a [VisualStateScheme] for the default colors of a [TabItem]. + * + * @param default The default [TabViewItemColor] to use when the [TabItem] is in its default state. + * @param hovered The [TabViewItemColor] to use when the [TabItem] is hovered. + * @param pressed The [TabViewItemColor] to use when the [TabItem] is pressed. + * @param disabled The [TabViewItemColor] to use when the [TabItem] is disabled. + * @return A [VisualStateScheme] that defines the color scheme for the [TabItem] in different states. + */ + @Stable + @Composable + fun defaultItemColors( + default: TabViewItemColor = TabViewItemColor( + borderColor = defaultBorderColor, + fillColor = Color.Transparent, + contentColor = FluentTheme.colors.text.text.secondary, + endDividerColor = FluentTheme.colors.stroke.divider.default + ), + hovered: TabViewItemColor = default.copy( + endDividerColor = Color.Transparent, + fillColor = FluentTheme.colors.background.layerOnMicaBaseAlt.secondary + ), + pressed: TabViewItemColor = default.copy( + endDividerColor = Color.Transparent, + fillColor = FluentTheme.colors.background.layerOnMicaBaseAlt.default, + contentColor = FluentTheme.colors.text.text.tertiary + ), + disabled: TabViewItemColor = default + ): VisualStateScheme = PentaVisualScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) + + /** + * Creates a [VisualStateScheme] for the colors of a selected [TabItem]. + * + * @param default The default color scheme for a selected tab item. + * @param hovered The color scheme for a selected tab item when hovered. + * @param pressed The color scheme for a selected tab item when pressed. + * @param disabled The color scheme for a selected tab item when disabled. + * @return A [VisualStateScheme] representing the color states of a selected tab item. + */ + @Stable + @Composable + fun selectedItemColors( + default: TabViewItemColor = TabViewItemColor( + borderColor = defaultBorderColor, + fillColor = FluentTheme.colors.background.solid.tertiary, + contentColor = FluentTheme.colors.text.text.primary, + endDividerColor = Color.Transparent + ), + hovered: TabViewItemColor = default, + pressed: TabViewItemColor = default, + disabled: TabViewItemColor = default + ): VisualStateScheme = PentaVisualScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) + + /** + * Creates a [VisualStateScheme] for the colors of a [TabItem] in a title bar style, where the item + * appears on a layered background. + * + * @param default The default [TabViewItemColor] for the item. + * @param hovered The [TabViewItemColor] for the item when it is hovered. + * @param pressed The [TabViewItemColor] for the item when it is pressed. + * @param disabled The [TabViewItemColor] for the item when it is disabled. + * @return A [VisualStateScheme] containing the specified colors for different interaction states. + */ + @Stable + @Composable + fun defaultItemTitleBarColors( + default: TabViewItemColor = TabViewItemColor( + borderColor = defaultBorderColor, + fillColor = FluentTheme.colors.background.layerOnMicaBaseAlt.transparent, + contentColor = FluentTheme.colors.text.text.secondary, + endDividerColor = FluentTheme.colors.stroke.divider.default + ), + hovered: TabViewItemColor = default.copy( + endDividerColor = Color.Transparent, + fillColor = FluentTheme.colors.background.layerOnMicaBaseAlt.secondary + ), + pressed: TabViewItemColor = default.copy( + endDividerColor = Color.Transparent, + fillColor = FluentTheme.colors.background.layerOnMicaBaseAlt.default, + contentColor = FluentTheme.colors.text.text.tertiary + ), + disabled: TabViewItemColor = default + ): VisualStateScheme = PentaVisualScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) + + /** + * Creates a [VisualStateScheme] for the colors of a selected TabView item in the title bar style. + * + * This function defines the visual appearance of a selected tab item when it is part of a title bar, + * providing different colors for default, hovered, pressed, and disabled states. + * + * @param default The default [TabViewItemColor] to use. + * @param hovered The [TabViewItemColor] to use when the tab is hovered over. + * @param pressed The [TabViewItemColor] to use when the tab is pressed. + * @param disabled The [TabViewItemColor] to use when the tab is disabled. + * @return A [VisualStateScheme] containing the colors for each visual state. + */ + @Stable + @Composable + fun selectedItemTitleBarColors( + default: TabViewItemColor = TabViewItemColor( + borderColor = FluentTheme.colors.stroke.card.default, + fillColor = FluentTheme.colors.background.layerOnMicaBaseAlt.default, + contentColor = FluentTheme.colors.text.text.primary, + endDividerColor = Color.Transparent + ), + hovered: TabViewItemColor = default, + pressed: TabViewItemColor = default, + disabled: TabViewItemColor = default + ): VisualStateScheme = PentaVisualScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) + + /** + * The default colors used for the scroll action buttons in a [TabRow]. + * + * @return A [VisualStateScheme] containing the default [ButtonColor] for the scroll action buttons. + */ + @Stable + @Composable + fun scrollActionColors() = ButtonDefaults.subtleButtonColors( + default = ButtonColor( + fillColor = FluentTheme.colors.subtleFill.transparent, + contentColor = FluentTheme.colors.text.text.secondary, + borderBrush = SolidColor(Color.Transparent) + ) + ) + + /** + * A button designed for closing tabs, typically used within a [TabRow]. + * + * @param onClick The callback to be invoked when the button is clicked. + * @param modifier Optional [Modifier] for styling the button. + * @param padding The padding to apply around the button. + * @param enabled Controls the enabled state of the button. If false, the button will be disabled and not interactable. + * @param colors The [VisualStateScheme] that defines the colors for the button in its various interaction states. + * Defaults to [ButtonDefaults.subtleButtonColors]. + */ + @Composable + fun TabCloseButton( + onClick: () -> Unit, + modifier: Modifier = Modifier, + padding: PaddingValues = PaddingValues(start = 4.dp), + enabled: Boolean = true, + colors: VisualStateScheme = ButtonDefaults.subtleButtonColors() + ) { + Button( + onClick = onClick, + content = { + FontIcon(type = FontIconPrimitive.Close, contentDescription = null) + }, + iconOnly = true, + buttonColors = colors, + disabled = !enabled, + modifier = modifier + .padding(padding) + .heightIn(TabViewHeight) + .wrapContentHeight(Alignment.CenterVertically) + .defaultMinSize(minWidth = TabButtonSize.width, minHeight = TabButtonSize.height), + ) + } + + /** + * A button that adds a new tab. + * + * @param onClick The callback to be invoked when this button is clicked. + * @param modifier The [Modifier] to be applied to this button. + * @param padding The padding to be applied around the button. Defaults to a start padding of 4.dp. + * @param enabled Controls the enabled state of the button. When `false`, this button will not be clickable and will appear in a disabled state. + * @param colors The color scheme for this button, by default [ButtonDefaults.subtleButtonColors]. + */ + @Composable + fun TabAddButton( + onClick: () -> Unit, + modifier: Modifier = Modifier, + padding: PaddingValues = PaddingValues(start = 4.dp), + enabled: Boolean = true, + colors: VisualStateScheme = ButtonDefaults.subtleButtonColors() + ) { + Button( + onClick = onClick, + content = { + FontIcon(type = FontIconPrimitive.Add, contentDescription = null) + }, + iconOnly = true, + buttonColors = colors, + disabled = !enabled, + modifier = modifier + .padding(padding) + .heightIn(TabViewHeight) + .wrapContentHeight(Alignment.CenterVertically) + .defaultMinSize(minWidth = TabButtonSize.width, minHeight = TabButtonSize.height), + ) + } + +} + +/** + * Remembers and returns a [TabItemEndDividerController] instance. + * + * This controller is responsible for managing the visibility of the end dividers in a tab row. + * It tracks hovered items and the selected item to determine which dividers should be hidden. + * + * @param state The [LazyListState] of the tab row. + * @param selectedKey A lambda that returns the key of the currently selected tab item. + * @return A [TabItemEndDividerController] instance. + */ +@ExperimentalFluentApi +@Composable +fun rememberTabItemEndDividerController( + state: LazyListState, + selectedKey: () -> Any +): TabItemEndDividerController { + val controller = remember(state, selectedKey) { + TabItemEndDividerController(state, selectedKey) + } + controller.collectState() + return controller +} + +/** + * [TabItemEndDividerController] is a controller that manages the visibility of end dividers + * for tab items in a [LazyRow]. + * + * It observes the hovered state of tab items and the currently selected tab item to determine + * which end dividers should be hidden. Specifically, it hides the end divider of the tab item + * immediately preceding a hovered item or the selected item. + * + * @param state The [LazyListState] of the [LazyRow] containing the tab items. + * @param selectedKey A lambda that returns the key of the currently selected tab item. + */ +@ExperimentalFluentApi +class TabItemEndDividerController( + private val state: LazyListState, + private val selectedKey: () -> Any, +) { + private val hoveredItems = mutableStateMapOf() + private var hideDividerItems by mutableStateOf(emptySet()) + + @Composable + internal fun collectState() { + LaunchedEffect(state) { + combine( + snapshotFlow { hoveredItems.toMap() }, + snapshotFlow { selectedKey() }, + snapshotFlow { state.layoutInfo.visibleItemsInfo } + ) { hoveredItems, selectedKey, itemsInfo -> + buildSet { + itemsInfo.forEachIndexed { index, lazyListItemInfo -> + if (lazyListItemInfo.key == selectedKey || hoveredItems.any { it.key == lazyListItemInfo.key }) { + val previousKey = itemsInfo.getOrNull(index - 1)?.key + previousKey?.let(this::add) + } + } + } + + }.collectLatest { + hideDividerItems = it + } + } + } + + /** + * Attaches a key and an [InteractionSource] to this controller to manage the visibility of the end divider for the item. + * + * This function does the following: + * 1. **Tracks Hover State:** It monitors the hover state of the provided [interactionSource]. + * 2. **Updates `hoveredItems`:** When the item is hovered, it adds the `key` to the `hoveredItems` map. When the item is no longer hovered, it removes the `key`. + * 3. **Cleans Up on Dispose:** When the composable is disposed, it ensures the `key` is removed from `hoveredItems` to prevent leaks. + * 4. **Determines Divider Visibility:** It checks whether the `key` is present in the `hideDividerItems` set, and returns `true` if the divider should be visible (i.e., the key is NOT in the set), and `false` otherwise. + * 5. **Reacts to `hideDividerItems` changes:** When `hideDividerItems` is updated, it updates the `state` ,and then the result of the function will change. + * + * @param key The unique key associated with the item. + * @param interactionSource The [InteractionSource] that provides interaction state information (like hover). + * @return `true` if the end divider should be visible for this item, `false` otherwise. + */ + @Composable + fun attach(key: Any, interactionSource: InteractionSource): Boolean { + val isHovered = interactionSource.collectIsHoveredAsState() + LaunchedEffect(interactionSource) { + snapshotFlow { + isHovered.value + }.collectLatest { hovered -> + if (hovered) { + hoveredItems[key] = 0 + } else { + hoveredItems.remove(key) + } + } + } + DisposableEffect(interactionSource) { + onDispose { + hoveredItems.remove(key) + } + } + val state = remember { mutableStateOf(true) } + LaunchedEffect(hideDividerItems) { + state.value = !hideDividerItems.contains(key) + } + return state.value + } +} + +@Composable +private fun TabScrollActionButton( + onClick: () -> Unit, + icon: FontIconPrimitive, + modifier: Modifier = Modifier, + enabled: Boolean = false, + colors: VisualStateScheme +) { + RepeatButton( + onClick = onClick, + content = { + FontIconSolid8( + type = icon, + contentDescription = null, + modifier = Modifier + ) + }, + iconOnly = true, + buttonColors = colors, + disabled = !enabled, + modifier = modifier + .heightIn(TabViewHeight) + .wrapContentHeight(Alignment.CenterVertically) + .defaultMinSize(minWidth = TabButtonSize.width, minHeight = TabButtonSize.height), + ) +} + +@Immutable +@Stable +private class TabViewSelectedShape(val isInner: Boolean, val topRadius: Dp, val bottomRadius: Dp) : Shape { + + override fun createOutline( + size: Size, + layoutDirection: LayoutDirection, + density: Density + ): Outline { + return with(density) { + Outline.Generic(Path().apply { + val strokePadding = StrokeSize.toPx() / 2f + val innerPadding = if (isInner) strokePadding else 0f + val bottomRadius = bottomRadius.toPx() - innerPadding + val topRadius = topRadius.toPx() - innerPadding + val topPadding = StrokeSize.toPx() + innerPadding + val horizontalOffset = bottomRadius - StrokeSize.toPx() / 2f - innerPadding + + moveTo(-horizontalOffset, size.height - strokePadding + innerPadding / 2) + cubicTo( + x1 = bottomRadius - horizontalOffset, + y1 = size.height - strokePadding, + x2 = bottomRadius - horizontalOffset, + y2 = size.height - bottomRadius - strokePadding, + x3 = bottomRadius - horizontalOffset, + y3 = size.height - bottomRadius - strokePadding + ) + lineTo(bottomRadius - horizontalOffset, topRadius + topPadding) + cubicTo( + x1 = bottomRadius - horizontalOffset, + y1 = topPadding, + x2 = bottomRadius - horizontalOffset + topRadius, + y2 = topPadding, + x3 = bottomRadius - horizontalOffset + topRadius, + y3 = topPadding + ) + lineTo(size.width - bottomRadius - topRadius + horizontalOffset, topPadding) + cubicTo( + x1 = size.width - bottomRadius + horizontalOffset, + y1 = topPadding, + x2 = size.width - bottomRadius + horizontalOffset, + y2 = topPadding + topRadius, + x3 = size.width - bottomRadius + horizontalOffset, + y3 = topRadius + topPadding + ) + lineTo(size.width - bottomRadius + horizontalOffset, size.height - bottomRadius - strokePadding) + cubicTo( + x1 = size.width - bottomRadius + horizontalOffset, + y1 = size.height - strokePadding + innerPadding / 2, + x2 = size.width + horizontalOffset, + y2 = size.height - strokePadding + innerPadding / 2, + x3 = size.width + horizontalOffset, + y3 = size.height - strokePadding + innerPadding / 2 + ) + lineTo(size.width + horizontalOffset, size.height + strokePadding * 2) + lineTo(0f - horizontalOffset, size.height + strokePadding * 2) + lineTo(0f - horizontalOffset, size.height) + close() + }) + } + } +} + + +@Stable +private fun Modifier.drawTabRowBorder( + bottomRadius: Dp, + borderColor: Color, + containerWidth: () -> Int, + rowRect: () -> Rect, + selectedItem: () -> LazyListItemInfo?, + selectedItemScrollOffset: () -> Int, +) = drawWithCache { + val path = Path() + val strokeSizePx = StrokeSize.toPx() + onDrawWithContent { + path.rewind() + path.apply { + moveTo(strokeSizePx / 2, size.height - strokeSizePx) + val currentItem = selectedItem() + val itemPadding = bottomRadius.toPx() + if (currentItem != null) { + val rowRectValue = rowRect() + val currentItemOffset = (rowRectValue.left + selectedItemScrollOffset()) + lineTo( + (currentItemOffset).coerceIn( + rowRectValue.left, + rowRectValue.right + ), + size.height - strokeSizePx / 2 + ) + moveTo( + (currentItemOffset + currentItem.size + 2 * itemPadding).coerceIn( + rowRectValue.left, + rowRectValue.right + ), + size.height - strokeSizePx / 2 + ) + lineTo( + containerWidth() - strokeSizePx / 2, + size.height - strokeSizePx / 2 + ) + + } else { + lineTo( + containerWidth() - strokeSizePx / 2, + size.height - strokeSizePx / 2 + ) + } + } + drawPath( + path = path, + color = borderColor, + style = Stroke(strokeSizePx) + ) + drawContent() + } +} + +@Stable +private fun Modifier.drawTabViewItemBorder( + color: Color, + shape: Shape, + direction: LayoutDirection, +) = drawWithCache { + onDrawWithContent { + drawContent() + val outline = shape.createOutline(size, direction, this) + val strokeSize = 1.dp.toPx() + when (outline) { + is Outline.Rectangle -> { + drawRect( + color = color, + style = Stroke(strokeSize), + size = outline.rect.size, + topLeft = outline.rect.topLeft + ) + } + + is Outline.Rounded -> { + drawRoundRect( + color = color, + topLeft = Offset(outline.roundRect.top, outline.roundRect.left), + size = Size( + width = outline.roundRect.width, + height = outline.roundRect.height + ), + cornerRadius = outline.roundRect.topLeftCornerRadius, + style = Stroke(strokeSize) + ) + } + + is Outline.Generic -> { + drawPath(outline.path, color, style = Stroke(strokeSize)) + } + } + } +} + +private data class TabItemBringIntoViewModifierNodeElement( + val density: Density, + val bottomRadius: Dp, +): ModifierNodeElement() { + override fun create(): TabItemBringIntoViewModifierNode { + return TabItemBringIntoViewModifierNode(density, bottomRadius) + } + + override fun update(node: TabItemBringIntoViewModifierNode) { + node.density = density + node.bottomRadius = bottomRadius + } +} + +@OptIn(ExperimentalFoundationApi::class) +@Stable +private class TabItemBringIntoViewModifierNode( + var density: Density, + var bottomRadius: Dp, +) : BringIntoViewModifierNode, DelegatingNode() { + + override suspend fun bringIntoView( + childCoordinates: LayoutCoordinates, + boundsProvider: () -> Rect? + ) { + Snapshot.withoutReadObservation { + if (!childCoordinates.isAttached || !isAttached) return@withoutReadObservation + val localRect = requireLayoutCoordinates().localBoundingBoxOf(childCoordinates) + val paddingSize = with(density) { bottomRadius.toPx() } + val targetRect = localRect.copy( + left = localRect.left - paddingSize, + right = localRect.right + paddingSize + ) + bringIntoView { targetRect } + } + } +} + +private val StrokeSize = 1.dp +private val TabButtonSize = DpSize(32.dp, 24.dp) + +//TODO combine TextBoxContentArrangement +@Stable +private object TabItemContentArrangement : Arrangement.Horizontal { + + override val spacing: Dp = 8.dp + + override fun Density.arrange( + totalSize: Int, + sizes: IntArray, + layoutDirection: LayoutDirection, + outPositions: IntArray + ) { + with(Arrangement.Start) { + arrange(totalSize, sizes, layoutDirection, outPositions) + } + if (sizes.size < 2) return + if (layoutDirection == LayoutDirection.Rtl) { + outPositions[outPositions.lastIndex] = 0 + } else { + outPositions[outPositions.lastIndex] = totalSize - sizes.last() + } + } +} + +private val TabViewHeight = 32.dp \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/Text.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/Text.kt new file mode 100644 index 00000000..49e73e97 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/Text.kt @@ -0,0 +1,175 @@ +package io.github.composefluent.component + +import androidx.compose.foundation.text.BasicText +import androidx.compose.foundation.text.InlineTextContent +import androidx.compose.runtime.Composable +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.takeOrElse +import androidx.compose.ui.text.AnnotatedString +import androidx.compose.ui.text.TextLayoutResult +import androidx.compose.ui.text.TextStyle +import androidx.compose.ui.text.font.FontFamily +import androidx.compose.ui.text.font.FontStyle +import androidx.compose.ui.text.font.FontWeight +import androidx.compose.ui.text.style.TextAlign +import androidx.compose.ui.text.style.TextDecoration +import androidx.compose.ui.text.style.TextOverflow +import androidx.compose.ui.unit.TextUnit +import io.github.composefluent.LocalContentAlpha +import io.github.composefluent.LocalContentColor +import io.github.composefluent.LocalTextStyle + +/** + * A composable that displays text. + * + * This composable provides a flexible way to display text with various styling options. + * It supports customization of color, font size, font style, font weight, font family, + * letter spacing, text decoration, text alignment, line height, overflow behavior, soft wrapping, + * maximum and minimum lines, and text layout callbacks. + * + * @param text The text to be displayed. + * @param modifier The [Modifier] to be applied to the text. + * @param color The color to apply to the text. If [Color.Unspecified], and no color is specified in the [style], + * this will be [LocalContentColor]. + * @param fontSize The size of the font. If [TextUnit.Unspecified], the font size from the [style] will + * be used. + * @param fontStyle The style of the font, such as italic or normal. + * @param fontWeight The weight of the font, such as bold or normal. + * @param fontFamily The family of the font. + * @param letterSpacing The spacing between letters. If [TextUnit.Unspecified], the letter spacing + * from the [style] will be used. + * @param textDecoration The decoration to apply to the text, such as underline or line-through. + * @param textAlign The alignment of the text within its container. + * @param lineHeight The height of each line of text. If [TextUnit.Unspecified], the line height from + * the [style] will be used. + * @param overflow How visual overflow should be handled. + * @param softWrap Whether the text should break at soft line breaks. If false, the glyphs in the text will be positioned as if there was unlimited horizontal space. If true, soft line breaks will be taken into account when laying out the text. + * @param maxLines The maximum number of lines to display. If the text exceeds this number, it will be truncated based on the [overflow] property. + * @param minLines The minimum number of lines to display. Defaults to 1. + * @param onTextLayout Callback that is executed when a new text layout is available. + * @param style The [TextStyle] to be applied to the text. + */ +@Composable +fun Text( + text: String, + modifier: Modifier = Modifier, + color: Color = Color.Unspecified, + fontSize: TextUnit = TextUnit.Unspecified, + fontStyle: FontStyle? = null, + fontWeight: FontWeight? = null, + fontFamily: FontFamily? = null, + letterSpacing: TextUnit = TextUnit.Unspecified, + textDecoration: TextDecoration? = null, + textAlign: TextAlign = TextAlign.Unspecified, + lineHeight: TextUnit = TextUnit.Unspecified, + overflow: TextOverflow = TextOverflow.Clip, + softWrap: Boolean = true, + maxLines: Int = Int.MAX_VALUE, + minLines: Int = 1, + onTextLayout: (TextLayoutResult) -> Unit = {}, + style: TextStyle = LocalTextStyle.current +) { + Text( + AnnotatedString(text), + modifier, + color, + fontSize, + fontStyle, + fontWeight, + fontFamily, + letterSpacing, + textDecoration, + textAlign, + lineHeight, + overflow, + softWrap, + maxLines, + minLines, + emptyMap(), + onTextLayout, + style + ) +} + +/** + * A composable that displays text. + * + * This composable provides a basic text element that can be customized with various styling options. + * It uses [BasicText] internally to render the text, and merges the provided style parameters with + * the [LocalTextStyle] to create the final text style. + * + * @param text The text to be displayed. It can be either a plain [String] or an [AnnotatedString]. + * @param modifier [Modifier] to apply to this layout node. + * @param color The color to apply to the text. If [Color.Unspecified], and no color is specified in the + * [style], the current [LocalContentColor] will be used. + * @param fontSize The size of the font for the text. If [TextUnit.Unspecified], the font size from + * [style] will be used. + * @param fontStyle The font style to use for the text, such as [FontStyle.Italic]. If `null`, no + * style will be applied. If not `null`, and no font style is specified in the [style], this font + * style will be used. + * @param fontWeight The font weight to use for the text, such as [FontWeight.Bold]. If `null`, no + * weight will be applied. If not `null`, and no font weight is specified in the [style], this + * font weight will be used. + * @param fontFamily The font family to use for the text. If `null`, no font family will be applied. + * If not `null`, and no font family is specified in the [style], this font family will be used. + * @param letterSpacing The amount of space to add between each letter in the text. If + * [TextUnit.Unspecified], the letter spacing from [style] will be used. + * @param textDecoration The text decoration to apply to the text, such as [TextDecoration.Underline]. + * If `null`, no decoration will be applied. If not `null`, and no text decoration is specified + * in the [style], this text decoration will be used. + * @param textAlign The alignment of the text within its container. If [TextAlign.Unspecified], the + * text alignment from [style] will be used. + */ +@Composable +fun Text( + text: AnnotatedString, + modifier: Modifier = Modifier, + color: Color = Color.Unspecified, + fontSize: TextUnit = TextUnit.Unspecified, + fontStyle: FontStyle? = null, + fontWeight: FontWeight? = null, + fontFamily: FontFamily? = null, + letterSpacing: TextUnit = TextUnit.Unspecified, + textDecoration: TextDecoration? = null, + textAlign: TextAlign = TextAlign.Unspecified, + lineHeight: TextUnit = TextUnit.Unspecified, + overflow: TextOverflow = TextOverflow.Clip, + softWrap: Boolean = true, + maxLines: Int = Int.MAX_VALUE, + minLines: Int = 1, + inlineContent: Map = mapOf(), + onTextLayout: (TextLayoutResult) -> Unit = {}, + style: TextStyle = LocalTextStyle.current +) { + val textColor = color.takeOrElse { + style.color.takeOrElse { + LocalContentColor.current.copy(alpha = LocalContentAlpha.current) + } + } + val mergedStyle = style.merge( + TextStyle( + color = textColor, + fontSize = fontSize, + fontWeight = fontWeight, + textAlign = textAlign, + lineHeight = lineHeight, + fontFamily = fontFamily, + textDecoration = textDecoration, + fontStyle = fontStyle, + letterSpacing = letterSpacing + ) + ) + BasicText( + text, + modifier, + mergedStyle, + onTextLayout, + overflow, + softWrap, + maxLines, + minLines, + inlineContent + ) +} + diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/TextBoxButton.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/TextBoxButton.kt new file mode 100644 index 00000000..4486b52c --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/TextBoxButton.kt @@ -0,0 +1,323 @@ +package io.github.composefluent.component + +import androidx.compose.foundation.ExperimentalFoundationApi +import androidx.compose.foundation.clickable +import androidx.compose.foundation.combinedClickable +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.interaction.collectIsPressedAsState +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.RowScope +import androidx.compose.foundation.layout.defaultMinSize +import androidx.compose.foundation.selection.selectable +import androidx.compose.runtime.Composable +import androidx.compose.runtime.remember +import androidx.compose.runtime.rememberCoroutineScope +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.focus.focusProperties +import androidx.compose.ui.input.pointer.PointerIcon +import androidx.compose.ui.input.pointer.pointerHoverIcon +import androidx.compose.ui.semantics.Role +import androidx.compose.ui.unit.dp +import io.github.composefluent.FluentTheme +import io.github.composefluent.scheme.VisualStateScheme +import kotlinx.coroutines.delay +import kotlinx.coroutines.launch + +/** + * A composable function that creates a text box button. + * + * @param modifier The modifier to be applied to the button. + * @param enabled Controls the enabled state of the button. When `false`, this button will not be clickable. + * @param onClick The callback to be invoked when this button is clicked. If `null`, the button will not be clickable. + * @param colors The colors to use for the button in different visual states. Defaults to [ButtonDefaults.subtleButtonColors]. + * @param outsideBorder Determines whether to display the border outside the button. Defaults to `false`. + * @param interactionSource The [MutableInteractionSource] representing the stream of Interactions for this button. + * @param focusable Whether the button should be focusable. + * @param content The content of the button. This is a composable function that takes a [RowScope] as its receiver. + */ +@Composable +fun TextBoxButton( + modifier: Modifier = Modifier, + enabled: Boolean = true, + onClick: (() -> Unit)? = null, + colors: VisualStateScheme = ButtonDefaults.subtleButtonColors(), + outsideBorder: Boolean = false, + interactionSource: MutableInteractionSource? = null, + focusable: Boolean = false, + content: @Composable RowScope.() -> Unit +) { + val interaction = interactionSource ?: remember { MutableInteractionSource() } + ButtonLayer( + shape = FluentTheme.shapes.control, + displayBorder = true, + buttonColors = colors, + interaction = interaction, + disabled = !enabled, + accentButton = !outsideBorder, + modifier = modifier.defaultMinSize(minWidth = 28.dp, minHeight = 24.dp) + ) { + Row( + Modifier + .then( + if (onClick != null) { + Modifier.focusProperties { canFocus = focusable } + .clickable( + onClick = onClick, + interactionSource = interaction, + indication = null, + enabled = enabled + ).pointerHoverIcon(PointerIcon.Default, !enabled) + + } else { + Modifier + } + ), + verticalAlignment = Alignment.CenterVertically, + horizontalArrangement = Arrangement.Center, + content = content + ) + } +} + +/** + * A toggle button that displays text and can be toggled on or off. + * + * @param checked Whether the button is currently checked. + * @param onCheckedChanged Callback that is triggered when the checked state changes. + * @param modifier Modifier to be applied to the button. + * @param enabled Controls the enabled state of the button. When `false`, this button will not be clickable. + * @param colors The colors to use for this button in different states. + * @param outsideBorder Whether the button should have an outside border when checked. + * @param interactionSource The [MutableInteractionSource] representing the stream of [Interaction]s for this button. + * @param focusable Whether this button should be focusable. + * @param content The content of the button, typically text. + */ +@Composable +fun ToggleTextButton( + checked: Boolean, + onCheckedChanged: ((Boolean) -> Unit), + modifier: Modifier = Modifier, + enabled: Boolean = true, + colors: VisualStateScheme = if (checked) { + ButtonDefaults.accentButtonColors() + } else { + ButtonDefaults.subtleButtonColors() + }, + outsideBorder: Boolean = checked, + interactionSource: MutableInteractionSource? = null, + focusable: Boolean = false, + content: @Composable RowScope.() -> Unit +) { + val interaction = interactionSource ?: remember { MutableInteractionSource() } + TextBoxButton( + enabled = enabled, + onClick = null, + colors = colors, + outsideBorder = outsideBorder, + interactionSource = interaction, + focusable = focusable, + content = content, + modifier = modifier + .focusProperties { canFocus = focusable } + .pointerHoverIcon(PointerIcon.Default, !enabled) + .selectable( + selected = checked, + onClick = { onCheckedChanged(!checked) }, + enabled = enabled, + role = Role.Checkbox, + interactionSource = interaction, + indication = null + ) + ) +} + +/** + * A button that repeats the [onClick] action when long-pressed. + * + * This button triggers the [onClick] action immediately when pressed, then again after a [delay], + * and then repeatedly at [interval] intervals as long as the button remains pressed. It also + * triggers the [onClick] twice when double-clicked. + * + * @param onClick The action to perform when the button is clicked, long-pressed, or double-clicked. + * @param modifier The modifier to apply to the button. + * @param enabled Controls the enabled state of the button. When `false`, this button will not be clickable. + * @param delay The initial delay (in milliseconds) before the repeat action starts after a long press. + * @param interval The interval (in milliseconds) between repeated actions after the initial [delay]. + * @param colors The color scheme for this button, defined by [VisualStateScheme]. + * @param outsideBorder Whether to display an outside border on the button. + * @param interactionSource The [MutableInteractionSource] representing the stream of [Interaction]s for this button. + * @param focusable Whether the button is focusable. + * @param content The content of the button. + */ +@OptIn(ExperimentalFoundationApi::class) +@Composable +fun RepeatTextBoxButton( + onClick: (() -> Unit), + modifier: Modifier = Modifier, + enabled: Boolean = true, + delay: Long = 200, + interval: Long = 50, + colors: VisualStateScheme = ButtonDefaults.subtleButtonColors(), + outsideBorder: Boolean = false, + interactionSource: MutableInteractionSource? = null, + focusable: Boolean = false, + content: @Composable RowScope.() -> Unit +) { + val interaction = interactionSource ?: remember { MutableInteractionSource() } + val pressed = interaction.collectIsPressedAsState() + val scope = rememberCoroutineScope() + + TextBoxButton( + modifier = modifier + .focusProperties { canFocus = focusable } + .pointerHoverIcon(PointerIcon.Default, !enabled) + .combinedClickable( + interactionSource = interaction, + indication = null, + enabled = enabled, + onClick = onClick, + onLongClick = { + onClick() + scope.launch { + delay(delay) + do { + onClick() + delay(interval) + } while (pressed.value) + } + }, + onDoubleClick = { + onClick() + onClick() + } + ), + interactionSource = interaction, + enabled = enabled, + colors = colors, + outsideBorder = outsideBorder, + onClick = null, + content = content + ) +} + +/** + * Contains the default values used for [TextBoxButton], [ToggleTextButton] and [RepeatTextBoxButton]. + */ +object TextBoxButtonDefaults { + + /** + * A composable function that displays a search icon. + * + * @param size The size of the icon. Defaults to [FontIconSize.Small]. + * @param modifier The modifier to be applied to the icon. + */ + @Composable + fun SearchIcon( + size: FontIconSize = FontIconSize.Small, + modifier: Modifier = Modifier, + ) { + FontIcon( + type = FontIconPrimitive.Search, + contentDescription = "Search", + size = size, + modifier = modifier + ) + } + + /** + * A composable function that displays a clear icon. + * + * @param size The size of the icon. Defaults to [FontIconSize.Small]. + * @param modifier The modifier to be applied to the icon. + */ + @Composable + fun ClearIcon( + size: FontIconSize = FontIconSize.Small, + modifier: Modifier = Modifier, + ) { + FontIcon( + type = FontIconPrimitive.Close, + contentDescription = "Clear", + size = size, + modifier = modifier + ) + } + + /** + * Displays an icon representing the "reveal password" action. + * + * @param size The size of the icon, defaults to [FontIconSize.Small]. + * @param modifier Modifier to apply to the icon. + */ + @Composable + fun RevealPasswordIcon( + size: FontIconSize = FontIconSize.Small, + modifier: Modifier = Modifier, + ) { + FontIcon( + type = FontIconPrimitive.RevealPassword, + contentDescription = "Reveal Password", + size = size, + modifier = modifier + ) + } + + /** + * Creates an icon that displays an arrow pointing to the right. + * + * @param size The size of the icon. Defaults to [FontIconSize.Small]. + * @param modifier Modifiers to be applied to the icon. + */ + @Composable + fun ArrowRightIcon( + size: FontIconSize = FontIconSize.Small, + modifier: Modifier = Modifier, + ) { + FontIcon( + type = FontIconPrimitive.ArrowRight, + contentDescription = "Arrow Right", + size = size, + modifier = modifier + ) + } + + /** + * A composable function that displays a Chevron Up icon. + * + * @param size The size of the icon, defaults to [FontIconSize.Small]. + * @param modifier The modifier to apply to the icon. + */ + @Composable + fun ChevronUpIcon( + size: FontIconSize = FontIconSize.Small, + modifier: Modifier = Modifier, + ) { + FontIcon( + type = FontIconPrimitive.ChevronUp, + contentDescription = "Chevron Up", + size = size, + modifier = modifier + ) + } + + /** + * A composable function that displays a chevron down icon. + * + * @param size The size of the icon, defaults to [FontIconSize.Small]. + * @param modifier The modifier to be applied to the icon. + */ + @Composable + fun ChevronDownIcon( + size: FontIconSize = FontIconSize.Small, + modifier: Modifier = Modifier, + ) { + FontIcon( + type = FontIconPrimitive.ChevronDown, + contentDescription = "Chevron Down", + size = size, + modifier = modifier + ) + } +} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/TextField.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/TextField.kt new file mode 100644 index 00000000..3205fd16 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/TextField.kt @@ -0,0 +1,792 @@ +package io.github.composefluent.component + +import androidx.compose.foundation.BorderStroke +import androidx.compose.foundation.ScrollState +import androidx.compose.foundation.hoverable +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.interaction.collectIsFocusedAsState +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.RowScope +import androidx.compose.foundation.layout.defaultMinSize +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.rememberScrollState +import androidx.compose.foundation.text.BasicSecureTextField +import androidx.compose.foundation.text.BasicTextField +import androidx.compose.foundation.text.KeyboardActions +import androidx.compose.foundation.text.KeyboardOptions +import androidx.compose.foundation.text.input.InputTransformation +import androidx.compose.foundation.text.input.KeyboardActionHandler +import androidx.compose.foundation.text.input.OutputTransformation +import androidx.compose.foundation.text.input.TextFieldBuffer +import androidx.compose.foundation.text.input.TextFieldDecorator +import androidx.compose.foundation.text.input.TextFieldLineLimits +import androidx.compose.foundation.text.input.TextFieldState +import androidx.compose.foundation.text.input.TextObfuscationMode +import androidx.compose.foundation.text.input.clearText +import androidx.compose.runtime.Composable +import androidx.compose.runtime.CompositionLocalProvider +import androidx.compose.runtime.Immutable +import androidx.compose.runtime.Stable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.remember +import androidx.compose.runtime.rememberUpdatedState +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.draw.clip +import androidx.compose.ui.draw.drawWithContent +import androidx.compose.ui.geometry.Offset +import androidx.compose.ui.geometry.Size +import androidx.compose.ui.graphics.Brush +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.Shape +import androidx.compose.ui.graphics.SolidColor +import androidx.compose.ui.layout.IntrinsicMeasurable +import androidx.compose.ui.layout.IntrinsicMeasureScope +import androidx.compose.ui.layout.Layout +import androidx.compose.ui.layout.Measurable +import androidx.compose.ui.layout.MeasurePolicy +import androidx.compose.ui.layout.MeasureResult +import androidx.compose.ui.layout.MeasureScope +import androidx.compose.ui.layout.layoutId +import androidx.compose.ui.platform.LocalDensity +import androidx.compose.ui.text.TextLayoutResult +import androidx.compose.ui.text.input.KeyboardType +import androidx.compose.ui.text.input.TextFieldValue +import androidx.compose.ui.text.input.VisualTransformation +import androidx.compose.ui.unit.Constraints +import androidx.compose.ui.unit.Density +import androidx.compose.ui.unit.dp +import androidx.compose.ui.util.fastForEach +import androidx.compose.ui.util.fastSumBy +import io.github.composefluent.FluentTheme +import io.github.composefluent.LocalContentAlpha +import io.github.composefluent.LocalContentColor +import io.github.composefluent.LocalTextStyle +import io.github.composefluent.background.BackgroundSizing +import io.github.composefluent.background.Layer +import io.github.composefluent.layout.alignLast +import io.github.composefluent.scheme.PentaVisualScheme +import io.github.composefluent.scheme.collectVisualState + +/** + * A composable function that creates a text field for user input. + * + * @param value The current value of the text field. + * @param onValueChange A callback function that is invoked when the text field's value changes. + * @param modifier Modifier to apply to the text field. + * @param enabled Controls the enabled state of the text field. When `false`, the text field will be neither editable nor focusable. + * @param readOnly Controls the editability of the text field. When `true`, the text field can not be modified, however, a user can copy text from it. + * @param singleLine When `true`, the text field will be limited to a single line. + * @param visualTransformation Transforms the visual representation of the input. + * @param keyboardOptions Software keyboard options that should be provided to the text field. + * @param keyboardActions When the input service emits an IME action, the corresponding callback is called. + * @param maxLines The maximum number of lines that the text field can display. + * @param header An optional composable lambda that will be displayed above the text field as a header. + * @param leadingIcon An optional composable lambda that will be displayed at the start of the text field. + * @param trailing An optional composable lambda that will be displayed at the end of the text field. + * @param placeholder An optional composable lambda that will be displayed when the text field is empty. + * @param isClearable When true, a clear icon will be displayed when the text field is focused and not empty. Clicking it will clear the content. + * @param interactionSource The MutableInteractionSource representing the stream of Interactions for this text field. + * @param colors Color scheme to use for the text field. + * @param shape The shape of the text field. + */ +@Composable +fun TextField( + value: TextFieldValue, + onValueChange: (TextFieldValue) -> Unit, + modifier: Modifier = Modifier, + enabled: Boolean = true, + readOnly: Boolean = false, + singleLine: Boolean = false, + visualTransformation: VisualTransformation = VisualTransformation.None, + keyboardOptions: KeyboardOptions = KeyboardOptions.Default, + keyboardActions: KeyboardActions = KeyboardActions(), + maxLines: Int = Int.MAX_VALUE, + header: (@Composable () -> Unit)? = null, + leadingIcon: (@Composable () -> Unit)? = null, + trailing: (@Composable RowScope.() -> Unit)? = null, + placeholder: (@Composable () -> Unit)? = null, + isClearable: Boolean = true, + interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }, + colors: TextFieldColorScheme = TextFieldDefaults.defaultTextFieldColors(), + shape: Shape = FluentTheme.shapes.control +) { + val color = colors.schemeFor(interactionSource.collectVisualState(!enabled, focusFirst = true)) + BasicTextField( + modifier = modifier, + value = value, + onValueChange = onValueChange, + textStyle = LocalTextStyle.current.copy(color = color.contentColor), + enabled = enabled, + readOnly = readOnly, + singleLine = singleLine, + visualTransformation = visualTransformation, + maxLines = maxLines, + keyboardActions = keyboardActions, + cursorBrush = color.cursorBrush, + keyboardOptions = keyboardOptions, + interactionSource = interactionSource, + decorationBox = { innerTextField -> + TextFieldDefaults.DecorationBox( + color = color, + interactionSource = interactionSource, + innerTextField = innerTextField, + value = value.text, + enabled = enabled, + placeholder = placeholder, + leadingIcon = leadingIcon, + onClearClick = if (isClearable) { + { onValueChange(TextFieldValue("")) } + } else { + null + }, + trailing = trailing, + header = header, + shape = shape + ) + } + ) +} + +/** + * A composable function that creates a text field for user input. + * + * @param value The current text value of the text field. + * @param onValueChange The callback that is triggered when the input text changes. + * @param modifier The [Modifier] to be applied to the text field. + * @param enabled Controls the enabled state of the text field. When `false`, the text field is not interactive. + * @param readOnly Controls the read-only state of the text field. When `true`, the user cannot edit the text. + * @param singleLine When `true`, the text field will be limited to a single line. + * @param visualTransformation The visual transformation that is applied to the text field. + * @param keyboardOptions The keyboard options to configure the type of keyboard that is shown. + * @param keyboardActions The keyboard actions that define the behavior of the keyboard actions. + * @param maxLines The maximum number of lines the text field can occupy. + * @param header An optional composable lambda that is placed above the text field. + * @param leadingIcon An optional composable lambda for a leading icon within the text field. + * @param trailing An optional composable lambda for trailing content within the text field. + * @param placeholder An optional composable lambda that is displayed when the text field is empty. + * @param isClearable When `true`, a clear button is shown when the text field is focused and has content. + * @param interactionSource The [MutableInteractionSource] for observing interactions with the text field. + * @param colors The [TextFieldColorScheme] that defines the colors of the text field. + * @param shape The [Shape] of the text field's background. + */ +@Composable +fun TextField( + value: String, + onValueChange: (String) -> Unit, + modifier: Modifier = Modifier, + enabled: Boolean = true, + readOnly: Boolean = false, + singleLine: Boolean = false, + visualTransformation: VisualTransformation = VisualTransformation.None, + keyboardOptions: KeyboardOptions = KeyboardOptions.Default, + keyboardActions: KeyboardActions = KeyboardActions(), + maxLines: Int = Int.MAX_VALUE, + header: (@Composable () -> Unit)? = null, + leadingIcon: (@Composable () -> Unit)? = null, + trailing: (@Composable RowScope.() -> Unit)? = null, + placeholder: (@Composable () -> Unit)? = null, + isClearable: Boolean = true, + interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }, + colors: TextFieldColorScheme = TextFieldDefaults.defaultTextFieldColors(), + shape: Shape = FluentTheme.shapes.control +) { + val color = colors.schemeFor(interactionSource.collectVisualState(!enabled, focusFirst = true)) + + BasicTextField( + modifier = modifier, + value = value, + onValueChange = onValueChange, + textStyle = LocalTextStyle.current.copy(color = color.contentColor), + enabled = enabled, + readOnly = readOnly, + singleLine = singleLine, + visualTransformation = visualTransformation, + maxLines = maxLines, + keyboardActions = keyboardActions, + cursorBrush = color.cursorBrush, + keyboardOptions = keyboardOptions, + interactionSource = interactionSource, + decorationBox = { innerTextField -> + TextFieldDefaults.DecorationBox( + color = color, + interactionSource = interactionSource, + innerTextField = innerTextField, + value = value, + enabled = enabled, + placeholder = placeholder, + leadingIcon = leadingIcon, + onClearClick = if (isClearable) { + { onValueChange("") } + } else { + null + }, + header = header, + trailing = trailing, + shape = shape + ) + } + ) +} + +@Composable +fun TextField( + state: TextFieldState, + modifier: Modifier = Modifier, + enabled: Boolean = true, + readOnly: Boolean = false, + keyboardOptions: KeyboardOptions = KeyboardOptions.Default, + onKeyboardAction: KeyboardActionHandler? = null, + inputTransformation: InputTransformation? = null, + outputTransformation: OutputTransformation? = null, + lineLimits: TextFieldLineLimits = TextFieldLineLimits.Default, + header: (@Composable () -> Unit)? = null, + leadingIcon: (@Composable () -> Unit)? = null, + trailing: (@Composable RowScope.() -> Unit)? = null, + placeholder: (@Composable () -> Unit)? = null, + isClearable: Boolean = true, + interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }, + colors: TextFieldColorScheme = TextFieldDefaults.defaultTextFieldColors(), + onTextLayout: (Density.(getResult: () -> TextLayoutResult?) -> Unit)? = null, + scrollState: ScrollState = rememberScrollState(), + shape: Shape = FluentTheme.shapes.control +) { + val color = colors.schemeFor(interactionSource.collectVisualState(!enabled, focusFirst = true)) + BasicTextField( + modifier = modifier, + state = state, + textStyle = LocalTextStyle.current.copy(color = color.contentColor), + enabled = enabled, + readOnly = readOnly, + onTextLayout = onTextLayout, + lineLimits = lineLimits, + onKeyboardAction = onKeyboardAction, + inputTransformation = inputTransformation, + outputTransformation = outputTransformation, + scrollState = scrollState, + cursorBrush = color.cursorBrush, + keyboardOptions = keyboardOptions, + interactionSource = interactionSource, + decorator = { innerTextField -> + TextFieldDefaults.DecorationBox( + state = state, + color = color, + interactionSource = interactionSource, + innerTextField = innerTextField, + enabled = enabled, + placeholder = placeholder, + leadingIcon = leadingIcon, + isClearable = isClearable, + outputTransformation = outputTransformation, + trailing = trailing, + shape = shape, + header = header + ) + } + ) +} + +@Composable +fun SecureTextField( + state: TextFieldState, + modifier: Modifier = Modifier, + enabled: Boolean = true, + keyboardOptions: KeyboardOptions = SecureTextFieldKeyboardOptions, + onKeyboardAction: KeyboardActionHandler? = null, + inputTransformation: InputTransformation? = null, + textObfuscationMode: TextObfuscationMode = TextObfuscationMode.RevealLastTyped, + textObfuscationCharacter: Char = DefaultObfuscationCharacter, + header: (@Composable () -> Unit)? = null, + leadingIcon: (@Composable () -> Unit)? = null, + trailing: (@Composable RowScope.() -> Unit)? = null, + placeholder: (@Composable () -> Unit)? = null, + isClearable: Boolean = true, + interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }, + colors: TextFieldColorScheme = TextFieldDefaults.defaultTextFieldColors(), + onTextLayout: (Density.(getResult: () -> TextLayoutResult?) -> Unit)? = null, + shape: Shape = FluentTheme.shapes.control +) { + val color = colors.schemeFor(interactionSource.collectVisualState(!enabled, focusFirst = true)) + BasicSecureTextField( + modifier = modifier, + state = state, + textStyle = LocalTextStyle.current.copy(color = color.contentColor), + enabled = enabled, + onTextLayout = onTextLayout, + onKeyboardAction = onKeyboardAction, + inputTransformation = inputTransformation, + textObfuscationMode = textObfuscationMode, + textObfuscationCharacter = textObfuscationCharacter, + cursorBrush = color.cursorBrush, + keyboardOptions = keyboardOptions, + interactionSource = interactionSource, + decorator = { innerTextField -> + TextFieldDefaults.DecorationBox( + state = state, + color = color, + interactionSource = interactionSource, + innerTextField = innerTextField, + enabled = enabled, + placeholder = placeholder, + leadingIcon = leadingIcon, + isClearable = isClearable, + outputTransformation = null, + trailing = trailing, + shape = shape, + header = header + ) + } + ) +} + +/** + * Contains the default values used for [TextField]. + */ +object TextFieldDefaults { + + /** + * Creates a [TextFieldColorScheme] with the default colors for a text field. + * + * @param default The colors used when the text field is in its default state. + * @param focused The colors used when the text field is focused. + * @param hovered The colors used when the text field is hovered over. + * @param pressed The colors used when the text field is pressed. + * @param disabled The colors used when the text field is disabled. + * + * @return A [TextFieldColorScheme] with the specified colors. + */ + @Stable + @Composable + fun defaultTextFieldColors( + default: TextFieldColor = TextFieldColor( + fillColor = FluentTheme.colors.control.default, + contentColor = FluentTheme.colors.text.text.primary, + placeholderColor = FluentTheme.colors.text.text.secondary, + bottomLineFillColor = FluentTheme.colors.stroke.controlStrong.default, + borderBrush = FluentTheme.colors.borders.textControl, + cursorBrush = SolidColor(FluentTheme.colors.text.text.primary) + ), + focused: TextFieldColor = default.copy( + fillColor = FluentTheme.colors.control.inputActive, + bottomLineFillColor = FluentTheme.colors.fillAccent.default, + borderBrush = SolidColor(FluentTheme.colors.stroke.control.default) + ), + hovered: TextFieldColor = default.copy( + fillColor = FluentTheme.colors.control.secondary + ), + pressed: TextFieldColor = default.copy( + fillColor = FluentTheme.colors.control.inputActive, + borderBrush = SolidColor(FluentTheme.colors.stroke.control.default) + ), + disabled: TextFieldColor = default.copy( + contentColor = FluentTheme.colors.text.text.disabled, + placeholderColor = FluentTheme.colors.text.text.disabled, + bottomLineFillColor = Color.Transparent, + ) + ) = TextFieldColorScheme( + default = default, + focused = focused, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) + + @Deprecated( + "Use DecorationBox instead", ReplaceWith( + "DecorationBox(" + + "value = value," + + "interactionSource = interactionSource," + + "enabled = enabled," + + "color = color," + + "modifier = modifier," + + "placeholder = placeholder," + + "innerTextField = innerTextField," + + "leadingIcon = null" + + ")" + ) + ) + @Composable + fun DecorationBox( + value: String, + interactionSource: MutableInteractionSource, + enabled: Boolean, + color: TextFieldColor, + modifier: Modifier = Modifier, + placeholder: (@Composable () -> Unit)?, + innerTextField: @Composable () -> Unit, + ) = DecorationBox( + value = value, + interactionSource = interactionSource, + enabled = enabled, + color = color, + modifier = modifier, + placeholder = placeholder, + innerTextField = innerTextField, + leadingIcon = null, + onClearClick = null, + trailing = null, + container = {}, + shape = FluentTheme.shapes.control, + header = null + ) + + /** + * Composable function that provides the visual decoration for a text field. + * + * This function wraps the inner text field with a styled layer, including optional + * leading and trailing icons, a clear button, and placeholder text. It also handles + * the visual states of the text field, such as hover, focus, and enabled/disabled. + * This overload is specifically for use with [TextFieldState]. + * + * @param state The [TextFieldState] managing the text and selection of the text field. + * @param isClearable Determines if a clear button should be shown when the text field is focused and not empty. + * @param outputTransformation An optional [OutputTransformation] to modify the visual representation of the text. + * @param interactionSource The [MutableInteractionSource] representing the stream of + * interactions for this text field. You can create and pass in your own remembered + * [MutableInteractionSource] if you want to observe interactions and customize the + * decoration based on them. + * @param enabled Controls the enabled state of the text field. When `false`, the text field + * will be visually disabled and will not respond to input. + * @param color The color scheme for the text field, including colors for the background, text, + * placeholder, and border. + * @param modifier Optional [Modifier] to be applied to the outer layer of the text field. + * @param shape The [Shape] of the text field's background layer. + * @param header Optional composable that will be displayed above the text field. + * @param placeholder Optional composable that will be displayed when the text field is empty + * and not focused. + * @param leadingIcon Optional composable that will be displayed at the start of the text field. + * @param trailing Optional composable that will be displayed at the end of the text field, such as an action button. + * @param container The [TextFieldDecorator] that defines the container for the text field. + * By default, it uses a [Container] with the provided shape, interaction source, color, and enabled state. + * @param innerTextField The composable that renders the actual text field content. + */ + @Composable + fun DecorationBox( + state: TextFieldState, + isClearable: Boolean, + outputTransformation: OutputTransformation?, + interactionSource: MutableInteractionSource, + enabled: Boolean, + color: TextFieldColor, + modifier: Modifier = Modifier, + shape: Shape, + header: (@Composable () -> Unit)?, + placeholder: (@Composable () -> Unit)?, + leadingIcon: (@Composable () -> Unit)?, + trailing: (@Composable RowScope.() -> Unit)?, + container: TextFieldDecorator = TextFieldDecorator { + Container( + shape = shape, + interactionSource = interactionSource, + color = color, + enabled = enabled, + content = it + ) + }, + innerTextField: @Composable () -> Unit, + ) { + val visualText = if (outputTransformation == null) state.text + else { + lateinit var buffer: TextFieldBuffer + state.edit { buffer = this } + with(outputTransformation) { buffer.transformOutput() } + buffer.asCharSequence() + } + DecorationBox( + color = color, + interactionSource = interactionSource, + innerTextField = innerTextField, + value = visualText, + enabled = enabled, + header = header, + placeholder = placeholder, + leadingIcon = leadingIcon, + onClearClick = if (isClearable) { + { state.clearText() } + } else { + null + }, + container = container, + trailing = trailing, + shape = shape, + modifier = modifier + ) + } + + /** + * Composable function that provides the visual decoration for a text field. + * + * This function wraps the inner text field with a styled layer, including optional + * leading and trailing icons, a clear button, and placeholder text. It also handles + * the visual states of the text field, such as hover, focus, and enabled/disabled. + * + * @param value The current text value of the text field. This could be the direct input or + * the result of an [OutputTransformation]. + * @param interactionSource The [MutableInteractionSource] representing the stream of + * interactions for this text field. You can create and pass in your own remembered + * [MutableInteractionSource] if you want to observe interactions and customize the + * decoration based on them. + * @param enabled Controls the enabled state of the text field. When `false`, the text field + * will be visually disabled and will not respond to input. + * @param color The color scheme for the text field, including colors for the background, text, + * placeholder, and border. + * @param modifier Optional [Modifier] to be applied to the outer layer of the text field. + * @param shape The [Shape] of the text field's background layer. + * @param onClearClick Optional callback that will be invoked when the clear button is clicked. + * If null, no clear button will be shown. + * @param header Optional composable that will be displayed above the text field. + * @param placeholder Optional composable that will be displayed when the text field is empty + * and not focused. + * @param leadingIcon Optional composable that will be displayed at the start of the text field. + * @param trailing Optional composable that will be displayed at the end of the text field, such as an action button. + * @param container The [TextFieldDecorator] that defines the container for the text field. + * By default, it uses a [Container] with the specified shape, interaction source, color, and enabled state. + * @param innerTextField The composable that renders the actual text field content. + */ + @Composable + fun DecorationBox( + value: CharSequence, + interactionSource: MutableInteractionSource, + enabled: Boolean, + color: TextFieldColor, + modifier: Modifier = Modifier, + shape: Shape, + onClearClick: (() -> Unit)? = null, + header: (@Composable () -> Unit)?, + placeholder: (@Composable () -> Unit)?, + leadingIcon: (@Composable () -> Unit)?, + trailing: (@Composable RowScope.() -> Unit)?, + container: TextFieldDecorator = TextFieldDecorator { + Container( + shape = shape, + interactionSource = interactionSource, + color = color, + enabled = enabled, + content = it + ) + }, + innerTextField: @Composable () -> Unit, + ) { + HeaderContainer(header = header, modifier = modifier) { + Box( + modifier = Modifier.textFieldModifier(shape).hoverable(interactionSource), + propagateMinConstraints = true + ) { + container.Decoration { + Row( + horizontalArrangement = TextFieldContentArrangement, + verticalAlignment = Alignment.CenterVertically, + modifier = Modifier.padding(top = 4.dp, bottom = 4.dp) + ) { + if (leadingIcon != null) { + Box(modifier = Modifier.padding(start = 16.dp)) { + leadingIcon() + } + } + Box( + modifier = Modifier.weight(1f, fill = false) + .padding(horizontal = 12.dp), + Alignment.CenterStart + ) { + innerTextField() + if (value.isEmpty() && placeholder != null) { + CompositionLocalProvider( + LocalContentColor provides color.placeholderColor, + LocalTextStyle provides LocalTextStyle.current.copy(color = color.placeholderColor) + ) { + placeholder() + } + } + } + val isFocused = interactionSource.collectIsFocusedAsState() + val hasClearButton = + onClearClick != null && isFocused.value && value.isNotEmpty() + if (trailing != null || hasClearButton) { + Row( + horizontalArrangement = Arrangement.spacedBy(4.dp), + modifier = Modifier.padding(end = 4.dp) + ) { + if (hasClearButton) { + TextBoxButton( + enabled = enabled, + onClick = onClearClick + ) { TextBoxButtonDefaults.ClearIcon() } + } + trailing?.invoke(this) + } + } + } + } + } + } + } + + /** + * A container composable function used within the TextField. + * It applies a [Layer] with specific styling for the text field, + * including a bottom line that changes based on focus and enabled state. + * + * @param modifier The modifier to be applied to the container. + * @param shape The shape of the container. + * @param interactionSource The interaction source to track focus state. + * @param color The color scheme for the text field. + * @param enabled A boolean indicating whether the text field is enabled. + * @param content The content to be displayed within the container. + */ + @Composable + fun Container( + modifier: Modifier = Modifier, + shape: Shape, + interactionSource: MutableInteractionSource, + color: TextFieldColor, + enabled: Boolean, + content: @Composable () -> Unit + ) { + Layer( + modifier = modifier.drawBottomLine( + color = color, + interactionSource = interactionSource, + enabled = enabled + ), + shape = shape, + color = color.fillColor, + border = BorderStroke(1.dp, color.borderBrush), + backgroundSizing = BackgroundSizing.OuterBorderEdge, + content = content + ) + } +} + +typealias TextFieldColorScheme = PentaVisualScheme + +/** + * Represents the color scheme for a TextField. + * + * @property fillColor The background fill color of the text field. + * @property contentColor The color of the text content within the text field. + * @property placeholderColor The color of the placeholder text when the text field is empty. + * @property bottomLineFillColor The color of the bottom line of the text field. + * @property borderBrush The brush used to draw the border around the text field. + * @property cursorBrush The brush used to draw the cursor within the text field. + */ +@Immutable +data class TextFieldColor( + val fillColor: Color, + val contentColor: Color, + val placeholderColor: Color, + val bottomLineFillColor: Color, + val borderBrush: Brush, + val cursorBrush: Brush +) + +@Composable +private fun HeaderContainer( + header: (@Composable () -> Unit)?, + modifier: Modifier = Modifier, + content: @Composable () -> Unit +) { + Layout( + content = { + if (header != null) { + Box(modifier = Modifier.layoutId("header").padding(bottom = 8.dp)) { + CompositionLocalProvider( + LocalTextStyle provides FluentTheme.typography.body, + LocalContentColor provides FluentTheme.colors.text.text.primary, + LocalContentAlpha provides FluentTheme.colors.text.text.primary.alpha + ) { + header() + } + } + } + Box(modifier = Modifier.layoutId("content"), propagateMinConstraints = true) { + content() + } + }, + modifier = modifier, + measurePolicy = remember { HeaderMeasurePolicy() } + ) +} + +private class HeaderMeasurePolicy() : MeasurePolicy { + override fun MeasureScope.measure( + measurables: List, + constraints: Constraints + ): MeasureResult { + var titleMeasurable: Measurable? = null + var contentMeasurable: Measurable? = null + measurables.fastForEach { + when (it.layoutId) { + "header" -> titleMeasurable = it + "content" -> contentMeasurable = it + } + } + val headerPlaceable = titleMeasurable?.measure(constraints.copy(minHeight = 0)) + val contentPlaceable = contentMeasurable?.measure( + constraints.copy( + minWidth = maxOf( + constraints.minWidth, + headerPlaceable?.width ?: 0 + ), minHeight = 0 + ) + ) + val layoutWidth = + maxOf(constraints.minWidth, headerPlaceable?.width ?: 0, contentPlaceable?.width ?: 0) + val headerHeight = headerPlaceable?.height ?: 0 + val contentHeight = contentPlaceable?.height ?: 0 + val layoutHeight = maxOf(constraints.minHeight, headerHeight + contentHeight) + return layout(layoutWidth, layoutHeight) { + headerPlaceable?.placeRelative(0, 0) + contentPlaceable?.placeRelative(0, headerHeight) + } + } + + override fun IntrinsicMeasureScope.maxIntrinsicHeight( + measurables: List, + width: Int + ): Int { + return measurables.fastSumBy { it.maxIntrinsicHeight(width) } + } + + override fun IntrinsicMeasureScope.minIntrinsicHeight( + measurables: List, + width: Int + ): Int { + return measurables.fastSumBy { it.minIntrinsicHeight(width) } + } +} + +@Composable +private fun Modifier.drawBottomLine( + enabled: Boolean, + color: TextFieldColor, + interactionSource: MutableInteractionSource +): Modifier { + val isFocused by interactionSource.collectIsFocusedAsState() + return if (enabled) { + val height by rememberUpdatedState(with(LocalDensity.current) { + (if (isFocused) 2.dp else 1.dp).toPx() + }) + val fillColor by rememberUpdatedState(color.bottomLineFillColor) + drawWithContent { + drawContent() + drawRect( + color = fillColor, + topLeft = Offset(0f, size.height - height), + size = Size(size.width, height) + ) + } + } else this +} + +@Stable +internal fun Modifier.textFieldModifier(shape: Shape) = + defaultMinSize(64.dp, 32.dp).clip(shape) + +private val TextFieldContentArrangement = Arrangement.alignLast(Arrangement.Start, Alignment.End) + +private val SecureTextFieldKeyboardOptions = + KeyboardOptions(autoCorrectEnabled = false, keyboardType = KeyboardType.Password) + +private const val DefaultObfuscationCharacter: Char = '\u2022' diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/TooltipBox.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/TooltipBox.kt new file mode 100644 index 00000000..12f154e5 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/TooltipBox.kt @@ -0,0 +1,379 @@ +package io.github.composefluent.component + +import androidx.compose.animation.core.MutableTransitionState +import androidx.compose.animation.core.tween +import androidx.compose.animation.fadeIn +import androidx.compose.animation.fadeOut +import androidx.compose.foundation.BasicTooltipBox +import androidx.compose.foundation.BasicTooltipDefaults +import androidx.compose.foundation.BasicTooltipState +import androidx.compose.foundation.ExperimentalFoundationApi +import androidx.compose.foundation.MutatePriority +import androidx.compose.foundation.MutatorMutex +import androidx.compose.foundation.gestures.awaitEachGesture +import androidx.compose.foundation.gestures.awaitFirstDown +import androidx.compose.foundation.gestures.waitForUpOrCancellation +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.PaddingValues +import androidx.compose.runtime.Composable +import androidx.compose.runtime.Stable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import androidx.compose.runtime.snapshots.Snapshot +import androidx.compose.ui.Modifier +import androidx.compose.ui.geometry.Offset +import androidx.compose.ui.geometry.center +import androidx.compose.ui.input.pointer.PointerEventPass +import androidx.compose.ui.input.pointer.PointerEventTimeoutCancellationException +import androidx.compose.ui.input.pointer.PointerEventType +import androidx.compose.ui.input.pointer.PointerType +import androidx.compose.ui.input.pointer.pointerInput +import androidx.compose.ui.platform.LocalDensity +import androidx.compose.ui.unit.Dp +import androidx.compose.ui.unit.IntOffset +import androidx.compose.ui.unit.IntRect +import androidx.compose.ui.unit.IntSize +import androidx.compose.ui.unit.LayoutDirection +import androidx.compose.ui.unit.dp +import androidx.compose.ui.unit.plus +import androidx.compose.ui.window.PopupPositionProvider +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.FluentTheme +import io.github.composefluent.ProvideTextStyle +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.background.ElevationDefaults +import kotlinx.coroutines.Job +import kotlinx.coroutines.coroutineScope +import kotlinx.coroutines.delay +import kotlinx.coroutines.launch +import kotlin.math.roundToInt + +/** + * A composable that displays a tooltip when the user hovers over or long-presses the content. + * + * @param tooltip The composable content of the tooltip. + * @param state The state of the tooltip, controlling its visibility and interaction. Defaults to a + * remembered [TooltipState]. + * @param modifier The modifier to be applied to the tooltip's container. + * @param positionProvider The provider for the tooltip's position relative to the content. Defaults + * to a remembered [PopupPositionProvider] using [rememberTooltipPositionProvider]. + * @param enabled Whether the tooltip is enabled. If false, the tooltip will not be shown. Defaults + * to true. + * @param content The composable content that triggers the tooltip. + */ +@OptIn(ExperimentalFoundationApi::class) +@ExperimentalFluentApi +@Composable +fun TooltipBox( + tooltip: @Composable () -> Unit, + state: TooltipState = rememberTooltipState(), + modifier: Modifier = Modifier, + positionProvider: PopupPositionProvider = rememberTooltipPositionProvider(state), + enabled: Boolean = true, + content: @Composable () -> Unit, +) { + FlyoutAnchorScope { + BasicTooltipBox( + state = state, + positionProvider = positionProvider, + enableUserInput = false, + tooltip = { + TooltipBoxDefaults.Tooltip( + visible = state.isVisible, + content = tooltip, + modifier = Modifier.flyoutSize() + ) + }, + modifier = modifier + ) { + Box( + modifier = Modifier + .flyoutAnchor() + .gestureHandle(enabled, state) + ) { + content() + } + } + } +} + +/** + * Creates and remembers a [TooltipState]. + * + * @param initialIsVisible the initial visibility state of the tooltip. + * @param isPersistent whether the tooltip should remain visible until explicitly hidden. + * @param mutatorMutex the [MutatorMutex] used to mutually exclude state changes. + * @return a [TooltipState] that can be used to control the tooltip's visibility. + */ +@OptIn(ExperimentalFoundationApi::class) +@ExperimentalFluentApi +@Composable +fun rememberTooltipState( + initialIsVisible: Boolean = false, + isPersistent: Boolean = true, + mutatorMutex: MutatorMutex = BasicTooltipDefaults.GlobalMutatorMutex, +): TooltipState { + return remember(initialIsVisible, isPersistent, mutatorMutex) { + TooltipState(initialIsVisible, isPersistent, mutatorMutex) + } +} + +@OptIn(ExperimentalFoundationApi::class) +private fun Modifier.gestureHandle( + enabled: Boolean, + state: TooltipState +): Modifier { + return if (enabled) { + + then(Modifier.pointerInput(state) { + coroutineScope { + awaitEachGesture { + val longPressTimeout = viewConfiguration.longPressTimeoutMillis + val pass = PointerEventPass.Initial + val change = awaitFirstDown(pass = pass) + val inputType = change.type + if (inputType == PointerType.Touch || inputType == PointerType.Stylus) { + try { + withTimeout(longPressTimeout) { + waitForUpOrCancellation(pass) + } + } catch (_: PointerEventTimeoutCancellationException) { + state.pointerPosition = change.position - if (inputType == PointerType.Touch) { + viewConfiguration.minimumTouchTargetSize.toSize().center + } else { + Offset.Zero + } + state.pointerType = inputType + launch { + state.show(MutatePriority.UserInput) + } + val changes = awaitPointerEvent(pass).changes + for (i in 0 until changes.size) { changes[i].consume() } + } + } + } + } + }.pointerInput(state) { + coroutineScope { + var hoveredJob: Job? = null + awaitEachGesture { + val event = awaitPointerEvent(PointerEventPass.Main) + val longPressTimeout = viewConfiguration.longPressTimeoutMillis + val change = event.changes[0] + if (change.type != PointerType.Mouse) return@awaitEachGesture + if (event.type == PointerEventType.Enter) { + hoveredJob?.cancel() + hoveredJob = launch { + delay(longPressTimeout) + state.show(mutatePriority = MutatePriority.UserInput) + } + } + if (!state.isVisible && event.type != PointerEventType.Exit) { + state.pointerType = change.type + state.pointerPosition = change.position + } else if (event.type == PointerEventType.Exit) { + state.pointerPosition = null + state.pointerType = null + hoveredJob?.cancel() + state.dismiss() + } + } + } + + }) + } else { + this + } +} + +/** + * Creates and remembers a [PopupPositionProvider] for a tooltip, based on the provided + * [state] and [anchorPadding]. + * + * This function calculates the position of the tooltip popup relative to its anchor or + * the mouse pointer, ensuring it remains within the screen bounds. + * + * @param state The [TooltipState] that controls the tooltip's visibility and provides + * information about the pointer position. + * @param anchorPadding Additional padding to apply around the anchor bounds when + * calculating the tooltip position. Defaults to 0.dp. + * @return A [PopupPositionProvider] that can be used to position the tooltip popup. + */ +@OptIn(ExperimentalFoundationApi::class) +@Composable +fun rememberTooltipPositionProvider( + state: TooltipState?, + anchorPadding: Dp = 0.dp +): PopupPositionProvider { + val anchorPadding = with(LocalDensity.current) { (anchorPadding + flyoutPopPaddingFixShadowRender + flyoutDefaultPadding).toPx().roundToInt() } + val mouseOverflowPadding = + with(LocalDensity.current) { defaultMousePadding.toPx().roundToInt() } + return remember(state, anchorPadding, mouseOverflowPadding) { + TooltipPopupPositionProvider(state, anchorPadding, mouseOverflowPadding) + } +} + +/** + * A state object that can be hoisted to control and observe tooltip box state. + * + * In most cases, this will be created via [rememberTooltipState]. + * + * @param initialIsVisible The initial visibility state of the tooltip. + * @param isPersistent Whether the tooltip should stay visible when clicked. + * @param mutatorMutex Mutex for managing mutual exclusion of visibility changes. + */ +@Stable +@ExperimentalFoundationApi +class TooltipState( + initialIsVisible: Boolean = false, + isPersistent: Boolean = true, + mutatorMutex: MutatorMutex = BasicTooltipDefaults.GlobalMutatorMutex, +) : BasicTooltipState by BasicTooltipState( + initialIsVisible = initialIsVisible, + isPersistent = isPersistent, + mutatorMutex = mutatorMutex +) { + var pointerPosition: Offset? by mutableStateOf(null) + internal set + var pointerType: PointerType? by mutableStateOf(null) + internal set +} + +/** + * Contains the default values used for [TooltipBox]. + */ +@ExperimentalFluentApi +object TooltipBoxDefaults { + + /** + * The spacing between the icon and the text in the tooltip. + */ + val iconSpacing = 8.dp + + /** + * Displays a tooltip with the given [content] when [visible] is true. + * + * This function provides a simple way to show a tooltip that appears and disappears based + * on the provided visibility state. It uses a [MutableTransitionState] internally to + * animate the visibility change. + * + * @param visible `true` if the tooltip should be visible, `false` otherwise. + * @param modifier Modifier to be applied to the tooltip. + * @param content The composable content of the tooltip. + */ + @Composable + fun Tooltip( + visible: Boolean, + modifier: Modifier = Modifier, + content: @Composable () -> Unit, + ) { + val visibleState = remember { + MutableTransitionState(false) + } + visibleState.targetState = visible + Tooltip( + visibleState = visibleState, + content = content, + modifier = modifier + ) + } + + /** + * Creates a tooltip with the specified [visibleState] to control its visibility. + * + * @param visibleState A [MutableTransitionState] to control the visibility of the tooltip. + * When `true`, the tooltip is shown. When `false`, the tooltip is hidden. + * @param modifier The [Modifier] to be applied to the tooltip. + * @param content The content to be displayed within the tooltip. + */ + @Composable + fun Tooltip( + visibleState: MutableTransitionState, + modifier: Modifier = Modifier, + content: @Composable () -> Unit, + ) { + + AcrylicPopupContent( + elevation = ElevationDefaults.tooltip, + visibleState = visibleState, + enterTransition = fadeIn( + tween( + FluentDuration.ShortDuration, + easing = FluentEasing.FastInvokeEasing + ) + ), + exitTransition = fadeOut( + tween( + FluentDuration.QuickDuration, + easing = FluentEasing.FastDismissEasing + ) + ), + shape = FluentTheme.shapes.control, + contentPadding = PaddingValues( + start = 8.dp, + end = 8.dp, + top = 6.dp, + bottom = 8.dp + ), + content = { + ProvideTextStyle( + value = FluentTheme.typography.caption, + content = content + ) + }, + modifier = modifier + ) + } +} + +@OptIn(ExperimentalFoundationApi::class) +internal class TooltipPopupPositionProvider( + private val state: TooltipState?, + private val anchorPadding: Int, + private val mouseOverflowPadding: Int, +) : PopupPositionProvider { + override fun calculatePosition( + anchorBounds: IntRect, + windowSize: IntSize, + layoutDirection: LayoutDirection, + popupContentSize: IntSize + ): IntOffset { + return Snapshot.withoutReadObservation { + val pointerPosition = state?.pointerPosition + val alignmentPosition = pointerPosition ?: Offset( + x = anchorBounds.width / 2f, + y = 0f + ) + var (offsetX, offsetY) = alignmentPosition + IntOffset( + x = anchorBounds.left - popupContentSize.width / 2, + y = anchorBounds.top - anchorPadding - popupContentSize.height + ) + val topOverflow = -offsetY + + if (topOverflow > 0) { + + if (pointerPosition != null) { + // Fixed pointer overflow dismiss + offsetY = pointerPosition.y + anchorPadding + mouseOverflowPadding + } else { + offsetY -= topOverflow + } + } + + val rightOverflow = offsetX + popupContentSize.width - windowSize.width + if (rightOverflow > 0) { + offsetX -= rightOverflow + } + + offsetX = offsetX.coerceAtLeast(0f) + offsetY = offsetY.coerceAtLeast(0f) + + return IntOffset(offsetX.roundToInt(), offsetY.roundToInt()) + } + } +} + +private val defaultMousePadding = 16.dp \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/component/TopNav.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/component/TopNav.kt new file mode 100644 index 00000000..7c08e00c --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/component/TopNav.kt @@ -0,0 +1,327 @@ +package io.github.composefluent.component + +import androidx.compose.animation.core.MutableTransitionState +import androidx.compose.animation.core.animateDp +import androidx.compose.animation.core.animateFloatAsState +import androidx.compose.animation.core.tween +import androidx.compose.animation.core.updateTransition +import androidx.compose.foundation.clickable +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.Spacer +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.heightIn +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.layout.width +import androidx.compose.foundation.layout.widthIn +import androidx.compose.runtime.Composable +import androidx.compose.runtime.CompositionLocalProvider +import androidx.compose.runtime.Immutable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.remember +import androidx.compose.runtime.rememberUpdatedState +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.focus.FocusRequester +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.graphicsLayer +import androidx.compose.ui.unit.dp +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.FluentTheme +import io.github.composefluent.LocalTextStyle +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.background.Layer +import io.github.composefluent.layout.HorizontalIndicatorContentLayout +import io.github.composefluent.layout.overflow.OverflowRow +import io.github.composefluent.layout.overflow.OverflowRowScope +import io.github.composefluent.layout.overflow.rememberOverflowRowState +import io.github.composefluent.scheme.collectVisualState + +/** + * The top navigation bar is used to display primary navigation destinations. + * + * This composable provides a flexible way to display a top-level navigation bar with: + * - An optional header section. + * - An optional title section. + * - An `OverflowRow` for navigation items, which handles overflowing content. + * - An optional footer section. + * - An optional auto-suggest box for search or filtering. + * + * The `OverflowRow` supports an overflow action that can be expanded or collapsed, usually presenting a flyout menu + * when expanded. + * + * @param expanded Controls the visibility of the overflow menu. + * @param onExpandedChanged Callback for changes to the overflow menu's expanded state. + * @param modifier Modifier to be applied to the top navigation bar. + * @param indicatorState The state object for managing the indicator. Defaults to `rememberIndicatorState()`. + * @param header Optional composable for a header section displayed before the title and navigation items. + * @param title Optional composable for a title section displayed after the header and before the navigation items. + * @param footer Optional composable for a footer section displayed after the navigation items. + * @param autoSuggestBox Optional composable for an auto-suggest box, which will be placed between navigation items and footer. + * @param content The navigation items within the `OverflowRow`. + */ +@ExperimentalFluentApi +@Composable +fun TopNav( + expanded: Boolean, + onExpandedChanged: (Boolean) -> Unit, + modifier: Modifier = Modifier, + indicatorState: IndicatorState? = rememberIndicatorState(), + header: (@Composable () -> Unit)? = null, + title: (@Composable () -> Unit)? = null, + footer: (@Composable () -> Unit)? = null, + autoSuggestBox: (@Composable NavigationAutoSuggestBoxScope.() -> Unit)? = null, + content: OverflowRowScope.() -> Unit +) { + CompositionLocalProvider( + LocalNavigationExpand provides true, + LocalNavigationLevel provides 0, + LocalIndicatorState provides indicatorState + ) { + val overflowRowState = rememberOverflowRowState() + Row( + verticalAlignment = Alignment.CenterVertically, + modifier = Modifier.padding(horizontal = 4.dp) + ) { + header?.invoke() + title?.let { TopNavHeader(content = it) } + OverflowRow( + state = overflowRowState, + modifier = modifier.weight(1f).height(48.dp), + horizontalArrangement = Arrangement.Start, + verticalAlignment = Alignment.CenterVertically, + overflowAction = { + FlyoutAnchorScope { + Box { + MenuFlyout( + visible = expanded, + onDismissRequest = { onExpandedChanged(false) }, + placement = FlyoutPlacement.Auto, + content = { + repeat(overflowItemCount) { index -> + overflowItem(index) + } + }, + modifier = Modifier.flyoutSize() + ) + TopNavItem( + selected = false, + icon = { + FontIcon( + type = FontIconPrimitive.More, + contentDescription = null + ) + }, + onClick = { onExpandedChanged(true) }, + modifier = Modifier.flyoutAnchor() + ) + } + } + }, + content = content + ) + if (footer != null || autoSuggestBox != null) { + Spacer(modifier = Modifier.width(48.dp)) + } + autoSuggestBox?.let { + Box( + propagateMinConstraints = true, + modifier = Modifier + .size(180.dp, 40.dp) + .padding(horizontal = 4.dp, vertical = 4.dp) + ) { + val focusRequester = remember { FocusRequester() } + val scope = NavigationAutoSuggestBoxScopeImpl(focusRequester) + scope.it() + } + } + footer?.invoke() + } + } +} + +/** + * A composable function that represents a single item in the top navigation bar. + * + * @param selected Indicates whether the item is currently selected. + * @param onClick Callback invoked when the item is clicked. It passes a boolean indicating the new selection state. + * @param modifier Modifier for the item's layout. + * @param flyoutVisible Indicates whether the associated flyout menu is visible. + * @param onFlyoutVisibleChanged Callback invoked when the flyout's visibility changes. + * @param enabled Controls whether the item is enabled or disabled. + * @param interactionSource The [MutableInteractionSource] representing the stream of Interactions for this item. + * @param colors [NavigationItemColorScheme] defining the colors of the item in different states. + * @param icon The icon composable to display within the item, it will be rendered in front of the text. + * @param items A composable function that defines the content of a flyout menu associated with the item. + * @param indicatorState The state holder for the indicator that represents the current selection or focus. + * @param indicator A composable function that defines the appearance of the indicator. It is passed a [Color] that represents the current indicator color. + * @param badge A composable function that defines an optional badge to be displayed on top of the item. + * @param text The text composable to display within the item. + */ +@ExperimentalFluentApi +@Composable +fun TopNavItem( + selected: Boolean, + onClick: (Boolean) -> Unit, + modifier: Modifier = Modifier, + flyoutVisible: Boolean = false, + onFlyoutVisibleChanged: (Boolean) -> Unit = {}, + enabled: Boolean = true, + interactionSource: MutableInteractionSource? = null, + colors: NavigationItemColorScheme = if (selected) { + NavigationDefaults.selectedTopItemColors() + } else { + NavigationDefaults.defaultTopItemColors() + }, + icon: @Composable (() -> Unit)? = null, + items: (@Composable MenuFlyoutContainerScope.() -> Unit)? = null, + indicatorState: IndicatorState? = LocalIndicatorState.current, + indicator: @Composable IndicatorScope.(color: Color) -> Unit = { + NavigationDefaults.HorizontalIndicator( + modifier = Modifier.indicatorOffset { selected }, + color = it + ) + }, + badge: (@Composable () -> Unit)? = null, + text: (@Composable () -> Unit)? = null +) { + val iconOnly = icon != null && text == null + + val targetInteractionSource = interactionSource ?: remember { MutableInteractionSource() } + val currentColor = colors.schemeFor(targetInteractionSource.collectVisualState(!enabled)) + + Layer( + color = currentColor.fillColor, + contentColor = currentColor.contentColor, + border = null, + modifier = modifier.widthIn(if (iconOnly) 40.dp else 49.dp) + .heightIn(40.dp) + .indicatorRect(indicatorState, selected) + .clickable( + enabled = enabled, + interactionSource = targetInteractionSource, + indication = null, + onClick = { + onClick(!selected) + } + ) + ) { + FlyoutAnchorScope { + Box { + MenuFlyout( + visible = flyoutVisible && items != null, + onDismissRequest = { + onFlyoutVisibleChanged(false) + }, + placement = FlyoutPlacement.Bottom, + modifier = Modifier.flyoutSize() + ) { + items?.invoke( + rememberNavigationItemsFlyoutScope( + flyoutVisible, + onFlyoutVisibleChanged + ) + ) + } + HorizontalIndicatorContentLayout( + modifier = Modifier.height(40.dp).flyoutAnchor(), + text = text, + icon = icon, + trailing = items?.let { + { + val rotation by animateFloatAsState( + if (flyoutVisible) { + 180f + } else { + 00f + } + ) + FontIcon( + type = FontIconPrimitive.ChevronDown, + size = FontIconSize.Small, + contentDescription = null, + modifier = Modifier + .graphicsLayer { + rotationZ = rotation + } + ) + } + }, + indicator = { + val scope = TopNavigationIndicatorScope(indicatorState = indicatorState) + scope.indicator(currentColor.indicatorColor) + } + ) + if (badge != null) { + Box( + contentAlignment = Alignment.TopEnd, + modifier = Modifier.matchParentSize() + .padding(top = 4.dp, end = if (iconOnly) 2.dp else 0.dp) + ) { + badge() + } + } + } + } + } + +} + +/** + * A header used within the Top Navigation component. + * + * This composable provides a styled container for header content in a Top Navigation layout. + * It ensures proper height and horizontal padding, as well as applying the `bodyStrong` text style. + * + * @param modifier The [Modifier] to be applied to the header container. + * @param content The content to be displayed within the header. + */ +@Composable +fun TopNavHeader(modifier: Modifier = Modifier, content: @Composable () -> Unit) { + Box( + contentAlignment = Alignment.CenterStart, + modifier = modifier + .height(TopNavItemHeight) + .padding(horizontal = 12.dp) + ) { + CompositionLocalProvider( + LocalTextStyle provides FluentTheme.typography.bodyStrong, + content = content + ) + } +} + +@Immutable +private class TopNavigationIndicatorScope( + private val indicatorState: IndicatorState? +) : IndicatorScope { + + @Composable + override fun Modifier.indicatorOffset(visible: () -> Boolean): Modifier { + val display by rememberUpdatedState(visible) + val selectionState = indicatorState?.selectedItem + val indicatorState = remember { + MutableTransitionState(display()) + } + indicatorState.targetState = display() + val animationModifier = if (selectionState != null) { + Modifier.indicatorOffsetAnimation(16.dp, indicatorState, selectionState, false) + } else { + val width by updateTransition(display()).animateDp(transitionSpec = { + if (targetState) tween( + FluentDuration.ShortDuration, + easing = FluentEasing.FastInvokeEasing + ) + else tween(FluentDuration.QuickDuration, easing = FluentEasing.SoftDismissEasing) + }, targetValueByState = { if (it) 16.dp else 0.dp }) + Modifier.width(width) + } + return then(animationModifier) + } +} + +private val TopNavItemHeight = 40.dp \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/layout/Arrangement.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/layout/Arrangement.kt new file mode 100644 index 00000000..02e14c4c --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/layout/Arrangement.kt @@ -0,0 +1,37 @@ +package io.github.composefluent.layout + +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.runtime.Immutable +import androidx.compose.ui.Alignment +import androidx.compose.ui.unit.Density +import androidx.compose.ui.unit.Dp +import androidx.compose.ui.unit.LayoutDirection + +internal fun Arrangement.alignLast( + arrangement: Arrangement.Horizontal, + alignment: Alignment.Horizontal +): Arrangement.Horizontal = AlignLastArrangement(arrangement, alignment) + +@Immutable +private data class AlignLastArrangement( + private val arrangement: Arrangement.Horizontal, + private val alignment: Alignment.Horizontal, +) : Arrangement.Horizontal { + override val spacing: Dp + get() = arrangement.spacing + + override fun Density.arrange( + totalSize: Int, + sizes: IntArray, + layoutDirection: LayoutDirection, + outPositions: IntArray + ) { + with(arrangement) { + arrange(totalSize, sizes, layoutDirection, outPositions) + } + if (sizes.size < 2) return + outPositions[outPositions.lastIndex] = + alignment.align(sizes.last(), totalSize, layoutDirection) + + } +} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/layout/FixedWidthLayout.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/layout/FixedWidthLayout.kt new file mode 100644 index 00000000..b54b7642 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/layout/FixedWidthLayout.kt @@ -0,0 +1,66 @@ +package io.github.composefluent.layout + +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.IntrinsicSize +import androidx.compose.runtime.Composable +import androidx.compose.ui.Modifier +import androidx.compose.ui.layout.Layout +import androidx.compose.ui.unit.Constraints +import androidx.compose.ui.util.fastMap +import androidx.compose.ui.util.fastMaxOfOrNull +import kotlin.collections.component1 +import kotlin.collections.component2 +import kotlin.math.roundToInt + +@Composable +internal fun FixedWidthLayout( + header: @Composable () -> Unit, + modifier: Modifier = Modifier, + verticalArrangement: Arrangement.Vertical = Arrangement.Top, + intrinsicSize: IntrinsicSize = IntrinsicSize.Max, + content: @Composable () -> Unit, +) { + Layout( + contents = listOf( + header, + content + ), + modifier = modifier + ) { (header, content), constraints -> + val isMax = intrinsicSize == IntrinsicSize.Max + val contentMinWidth = content.fastMaxOfOrNull { + if (isMax) { + it.maxIntrinsicWidth(constraints.maxHeight) + } else { + it.minIntrinsicWidth(constraints.maxHeight) + } + } ?: 0 + val headerConstraints = constraints.copy(minWidth = minOf(contentMinWidth, constraints.maxWidth)) + var headerWidth = 0 + var headerHeight = 0 + val headerPlaceables = header.fastMap { + it.measure(headerConstraints).apply { + headerWidth = maxOf(headerWidth, width) + headerHeight = maxOf(headerHeight, height) + } + } + val contentConstraints = Constraints.fixedWidth(headerWidth) + var sum = 0 + val contentPlaceables = content.fastMap { + it.measure(contentConstraints).apply { + sum += height + } + } + val spacing = verticalArrangement.spacing.toPx() + layout(headerWidth, (headerHeight + sum + contentPlaceables.size * spacing).roundToInt()) { + headerPlaceables.forEach { + it.place(0, 0) + } + var offset = headerHeight + spacing + contentPlaceables.forEach { + it.place(x = 0, y = offset.roundToInt()) + offset += it.height + spacing + } + } + } +} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/layout/HorizontalIndicatorContentLayout.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/layout/HorizontalIndicatorContentLayout.kt new file mode 100644 index 00000000..09f38344 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/layout/HorizontalIndicatorContentLayout.kt @@ -0,0 +1,41 @@ +package io.github.composefluent.layout + +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.padding +import androidx.compose.runtime.Composable +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.unit.dp + +@Composable +internal fun HorizontalIndicatorContentLayout( + modifier: Modifier = Modifier, + icon: @Composable (() -> Unit)?, + text: @Composable (() -> Unit)?, + trailing: @Composable (() -> Unit)?, + indicator: @Composable () -> Unit, +) { + Box( + modifier = modifier.padding(horizontal = 12.dp), + contentAlignment = Alignment.CenterStart + ) { + Row( + horizontalArrangement = Arrangement.spacedBy(8.dp), + verticalAlignment = Alignment.CenterVertically, + modifier = Modifier.align(Alignment.Center) + ) { + icon?.invoke() + text?.invoke() + trailing?.invoke() + } + Box( + contentAlignment = Alignment.BottomCenter, + modifier = Modifier + .matchParentSize() + ) { + indicator() + } + } +} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/layout/overflow/OverflowRow.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/layout/overflow/OverflowRow.kt new file mode 100644 index 00000000..9102a0d5 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/layout/overflow/OverflowRow.kt @@ -0,0 +1,601 @@ +package io.github.composefluent.layout.overflow + +import androidx.compose.foundation.ExperimentalFoundationApi +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.IntrinsicSize +import androidx.compose.foundation.layout.PaddingValues +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.width +import androidx.compose.foundation.layout.widthIn +import androidx.compose.foundation.lazy.LazyColumn +import androidx.compose.foundation.lazy.layout.LazyLayout +import androidx.compose.foundation.lazy.layout.LazyLayoutMeasureScope +import androidx.compose.foundation.lazy.layout.LazyLayoutPrefetchState +import androidx.compose.foundation.lazy.rememberLazyListState +import androidx.compose.foundation.rememberScrollState +import androidx.compose.foundation.verticalScroll +import androidx.compose.runtime.Composable +import androidx.compose.runtime.derivedStateOf +import androidx.compose.runtime.referentialEqualityPolicy +import androidx.compose.runtime.remember +import androidx.compose.runtime.rememberUpdatedState +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.layout.MeasureResult +import androidx.compose.ui.layout.Placeable +import androidx.compose.ui.unit.Constraints +import androidx.compose.ui.unit.dp +import androidx.compose.ui.util.fastForEachIndexed +import io.github.composefluent.component.BasicFlyout +import io.github.composefluent.component.BasicFlyoutContainer +import io.github.composefluent.component.FlyoutContainerScope +import io.github.composefluent.component.ScrollbarContainer +import kotlin.math.roundToInt + +/** + * Common row logic for TopNav, BreadcrumbBar, CommandBar, etc. + */ + +@OptIn(ExperimentalFoundationApi::class) +@Composable +internal fun OverflowRow( + modifier: Modifier = Modifier, + overflow: OverflowPosition = OverflowPosition.End, + state: OverflowRowState = rememberOverflowRowState(), + horizontalArrangement: Arrangement.Horizontal = Arrangement.Start, + verticalAlignment: Alignment.Vertical = Alignment.CenterVertically, + overflowAction: @Composable OverflowActionScope.() -> Unit = {}, + contentPadding: PaddingValues = PaddingValues(), + alwaysShowOverflowAction: Boolean = false, + content: OverflowRowScope.() -> Unit +) { + val contentState = rememberUpdatedState(content) + val itemProviderState = remember { + val intervalContentState = derivedStateOf(referentialEqualityPolicy()) { + OverflowRowIntervalContent(contentState.value) + } + val itemProviderState = derivedStateOf(referentialEqualityPolicy()) { + OverflowRowItemProvider(state, intervalContentState.value).apply { + val scope = OverflowActionScopeImpl({ this }, state) + intervalContentState.value.item("_overflow_action", "_overflow_action") { + scope.overflowAction() + } + } + } + itemProviderState::value + } + LazyLayout( + itemProvider = itemProviderState, + prefetchState = remember { LazyLayoutPrefetchState() }, + measurePolicy = rememberOverflowRowItemMeasurePolicy( + state, + itemProviderState, + overflow, + horizontalArrangement, + verticalAlignment, + contentPadding, + alwaysShowOverflowAction + ), + modifier = modifier + ) +} + +/** + * Determines the position of the overflow action within the [OverflowRow]. + * + * This enum defines where the overflow indicator (e.g., a three-dot button) should be + * positioned relative to the other items in the row when there is not enough space to display + * all items. + * + * - **Start**: The overflow action is placed at the start (left in LTR, right in RTL) of the row. + * Items that overflow will be hidden from the right. + * - **Center**: The overflow action is placed in the center of the row. Items that overflow will + * be hidden from both sides, equally. + * - **End**: The overflow action is placed at the end (right in LTR, left in RTL) of the row. + * Items that overflow will be hidden from the left. + */ +enum class OverflowPosition { + Start, + Center, + End +} + +/** + * Scope for the overflow action. + * + * This scope provides information about the items that are currently in the overflow and allows + * rendering them. + */ +interface OverflowActionScope { + + /** + * The number of items that are currently in the overflow. + */ + val overflowItemCount: Int + + /** + * Returns the key for the item at the specified [index] in the overflow menu. + * + * This key is used to uniquely identify the item when it's displayed in the + * overflow menu (e.g., in a [LazyColumn]). + * + * @param index The index of the item within the overflow menu. + * @return The unique key associated with the item at the given index. + */ + fun overflowItemKey(index: Int): Any + + /** + * Returns the content type for the item at the given [index] in the overflow area. + * This is used by [LazyColumn] to optimize item recycling. + * + * @param index The index of the item in the overflow area. + * @return The content type of the item, or `null` if there is no specific type. + */ + fun overflowItemContentType(index: Int): Any? + + /** + * Composable function to render an item within the overflow area. + * + * @param index The index of the item within the overflow area. This index is relative + * to the start of the overflow range, not the overall item list. + */ + @Composable + fun overflowItem(index: Int) +} + +/** + * A container for displaying overflow items in a flyout. + * + * This composable provides a flyout that appears when the overflow action button is clicked. + * It displays the overflow items within a scrollable column inside the flyout. + * + * @param actionButton The composable that represents the overflow action button. When clicked, + * it triggers the flyout to be shown. The content of the action button will be passed to the + * [BasicFlyoutContainer] `content` param. + */ +@Composable +fun OverflowActionScope.OverflowFlyoutContainer( + actionButton: @Composable FlyoutContainerScope.() -> Unit +) { + BasicFlyoutContainer( + flyout = { + BasicFlyout( + visible = isFlyoutVisible, + onDismissRequest = { isFlyoutVisible = false }, + contentPadding = PaddingValues(), + content = { + val scrollState = rememberScrollState() + ScrollbarContainer( + adapter = io.github.composefluent.component.rememberScrollbarAdapter(scrollState) + ) { + Column( + modifier = Modifier.verticalScroll(scrollState) + .width(IntrinsicSize.Max) + .padding(vertical = 3.dp) + ) { + repeat(overflowItemCount) { + overflowItem(it) + } + } + } + } + ) + }, + content = actionButton + ) +} + +/** + * A flyout container that displays the overflow items in a lazy column. + * + * This composable provides a container for overflow actions that are displayed within a flyout. + * It uses a [LazyColumn] to display the overflow items, which enables efficient rendering of a large number of items. + * The lazy column is scrollable and includes a scrollbar. + * + * @param actionButton The composable that triggers the display of the overflow flyout. + * This is typically a button or an icon that, when clicked, shows the overflow items. + */ +@Composable +fun OverflowActionScope.LazyOverflowFlyoutContainer( + actionButton: @Composable FlyoutContainerScope.() -> Unit +) { + BasicFlyoutContainer( + flyout = { + BasicFlyout( + visible = isFlyoutVisible, + onDismissRequest = { isFlyoutVisible = false }, + contentPadding = PaddingValues(), + content = { + val listState = rememberLazyListState() + ScrollbarContainer( + adapter = io.github.composefluent.component.rememberScrollbarAdapter(listState) + ) { + LazyColumn( + state = listState, + contentPadding = PaddingValues(vertical = 3.dp), + modifier = Modifier.widthIn(max = 120.dp) + ) { + items( + count = overflowItemCount, + key = ::overflowItemKey, + contentType = ::overflowItemContentType, + ) { + overflowItem(it) + } + } + } + } + ) + }, + content = actionButton + ) +} + +private class OverflowActionScopeImpl( + private val itemProviderLambda: () -> OverflowRowItemProvider, + private val state: OverflowRowState +) : OverflowActionScope { + + override val overflowItemCount: Int + get() = state.overflowRange.let { it.last - it.first + 1 } + + override fun overflowItemContentType(index: Int): Any? { + return itemProviderLambda().getContentType(state.overflowRange.first + index) + } + + @Composable + override fun overflowItem(index: Int) { + val targetIndex = state.overflowRange.first + index + return itemProviderLambda().Item( + targetIndex, + overflowItemKey(index), + OverflowRowItemScope.OnOverflow + ) + } + + override fun overflowItemKey(index: Int): Any { + return itemProviderLambda().getKey(state.overflowRange.first + index) + } +} + +@OptIn(ExperimentalFoundationApi::class) +@Composable +internal fun rememberOverflowRowItemMeasurePolicy( + state: OverflowRowState, + itemProviderLambda: () -> OverflowRowItemProvider, + overflow: OverflowPosition, + horizontalArrangement: Arrangement.Horizontal, + verticalAlignment: Alignment.Vertical, + contentPadding: PaddingValues, + alwaysShowOverflowAction: Boolean +) = remember MeasureResult>( + state, + itemProviderLambda, + horizontalArrangement, + verticalAlignment, + contentPadding, + alwaysShowOverflowAction +) { + block@ { constraints -> + val itemProvider = itemProviderLambda() + if (itemProvider.itemCount <= 1) { + return@block layout(0, 0) {} + } + val topPadding = contentPadding.calculateTopPadding().toPx() + val bottomPadding = contentPadding.calculateBottomPadding().toPx() + val leftPadding = contentPadding.calculateLeftPadding(layoutDirection).toPx() + val rightPadding = contentPadding.calculateRightPadding(layoutDirection).toPx() + val itemConstraints = constraints.copy( + minWidth = 0, + minHeight = 0, + maxWidth = (constraints.maxWidth - leftPadding - rightPadding).toInt(), + maxHeight = (constraints.maxHeight - topPadding - bottomPadding).toInt() + ) + val overflowPlaceable = measure(itemProvider.itemCount - 1, itemConstraints)[0] + + if (constraints.hasBoundedWidth) { + when (overflow) { + OverflowPosition.Start -> { + measureItemsEllipseStart( + constraints, + horizontalArrangement, + verticalAlignment, + state, + itemProvider.itemCount - 1, + overflowPlaceable, + alwaysShowOverflowAction, + itemConstraints, + leftPadding, + topPadding, + rightPadding, + bottomPadding + ) + } + + OverflowPosition.End -> { + measureItemsEllipseEnd( + constraints, + horizontalArrangement, + verticalAlignment, + state, + itemProvider.itemCount - 1, + overflowPlaceable, + alwaysShowOverflowAction, + itemConstraints, + leftPadding, + topPadding, + rightPadding, + bottomPadding + ) + } + + OverflowPosition.Center -> { + measureItemsEllipseCenter( + constraints, + horizontalArrangement, + verticalAlignment, + state, + itemProvider.itemCount - 1, + overflowPlaceable, + alwaysShowOverflowAction, + itemConstraints, + leftPadding, + topPadding, + rightPadding, + bottomPadding + ) + } + } + } else { + layout(0, 0) { + + } + } + } +} + +@OptIn(ExperimentalFoundationApi::class) +private fun LazyLayoutMeasureScope.measureItemsEllipseStart( + constraints: Constraints, + horizontalArrangement: Arrangement.Horizontal, + verticalAlignment: Alignment.Vertical, + state: OverflowRowState, + itemCount: Int, + overflowPlaceable: Placeable, + alwaysShowOverflowAction: Boolean, + itemConstraints: Constraints, + leftPadding: Float, + topPadding: Float, + rightPadding: Float, + bottomPadding: Float +): MeasureResult { + val spacingPx = horizontalArrangement.spacing.roundToPx() + val actionWidth = overflowPlaceable.width + var remainingLastIndex = itemCount + var width = constraints.maxWidth + var height = overflowPlaceable.height + val measuredItems = buildList { + do { + remainingLastIndex -= 1 + val item = measure(remainingLastIndex, itemConstraints)[0] + width -= item.width + if (remainingLastIndex == 0) 0 else spacingPx + add(0, item) + height = maxOf(height, item.height) + } while (remainingLastIndex > 0 && width > 0) + if (width < 0 || (alwaysShowOverflowAction && width < actionWidth + spacingPx)) { + do { + val removeItem = removeFirstOrNull() ?: break + remainingLastIndex += 1 + width += removeItem.width + if (remainingLastIndex == 1) 0 else spacingPx + } while (width < actionWidth + spacingPx) + } + } + val overflowRange = 0 until remainingLastIndex + state.overflowRange = overflowRange + val contentWidth = constraints.maxWidth - width + if (overflowRange.isEmpty().not() || alwaysShowOverflowAction) { + actionWidth + spacingPx + } else { + 0 + } + val layoutHeight = height + val layoutWidth = maxOf(constraints.minWidth, (contentWidth + leftPadding + rightPadding).roundToInt()) + return layout(layoutWidth, (layoutHeight + topPadding + bottomPadding).roundToInt()) { + with(horizontalArrangement) { + val hasOverflow = alwaysShowOverflowAction || overflowRange.isEmpty().not() + val offset = if (hasOverflow) 1 else 0 + val sizes = IntArray(measuredItems.size + offset) { + if (hasOverflow && it == 0) { + actionWidth + } else { + measuredItems[it - offset].width + } + } + val positions = IntArray(sizes.size) + arrange((layoutWidth - leftPadding - rightPadding).roundToInt(), sizes, layoutDirection, positions) + if (hasOverflow) { + overflowPlaceable.place( + x = (positions.first() + leftPadding).roundToInt(), + y = (verticalAlignment.align(overflowPlaceable.height, layoutHeight) + topPadding).roundToInt() + ) + } + measuredItems.fastForEachIndexed { index, placeable -> + placeable.place( + (positions[index + offset] + leftPadding).roundToInt(), + (verticalAlignment.align(placeable.height, layoutHeight) + topPadding).roundToInt() + ) + } + } + } +} + +@OptIn(ExperimentalFoundationApi::class) +private fun LazyLayoutMeasureScope.measureItemsEllipseEnd( + constraints: Constraints, + horizontalArrangement: Arrangement.Horizontal, + verticalAlignment: Alignment.Vertical, + state: OverflowRowState, + itemCount: Int, + overflowPlaceable: Placeable, + alwaysShowOverflowAction: Boolean, + itemConstraints: Constraints, + leftPadding: Float, + topPadding: Float, + rightPadding: Float, + bottomPadding: Float +): MeasureResult { + val spacingPx = horizontalArrangement.spacing.roundToPx() + val actionWidth = overflowPlaceable.width + var remainingLastIndex = -1 + var width = constraints.maxWidth + var height = overflowPlaceable.height + val measuredItems = buildList { + do { + remainingLastIndex += 1 + val item = measure(remainingLastIndex, itemConstraints)[0] + width -= item.width + if (remainingLastIndex == itemCount - 1) 0 else spacingPx + add(remainingLastIndex, item) + height = maxOf(height, item.height) + } while (remainingLastIndex < itemCount - 1 && width > 0) + if (width < 0 || (alwaysShowOverflowAction && width < actionWidth + spacingPx)) { + do { + val removeItem = removeLastOrNull() ?: break + remainingLastIndex -= 1 + width += removeItem.width + if (remainingLastIndex == itemCount - 2) 0 else spacingPx + } while (width < actionWidth + spacingPx) + } + } + val overflowRange = remainingLastIndex + 1 until itemCount + state.overflowRange = overflowRange + val contentWidth = constraints.maxWidth - width + if (overflowRange.isEmpty().not() || alwaysShowOverflowAction) { + actionWidth + spacingPx + } else { + 0 + } + val layoutHeight = height + val layoutWidth = maxOf(constraints.minWidth, (contentWidth + leftPadding + rightPadding).roundToInt()) + return layout(layoutWidth, (layoutHeight + topPadding + bottomPadding).roundToInt()) { + val hasOverflow = alwaysShowOverflowAction || overflowRange.isEmpty().not() + val sizes = IntArray(measuredItems.size + if (hasOverflow) 1 else 0) { + if (it < measuredItems.size) { + measuredItems[it].width + } else { + actionWidth + } + } + val positions = IntArray(sizes.size) + with(horizontalArrangement) { + arrange((layoutWidth - leftPadding - rightPadding).roundToInt(), sizes, layoutDirection, positions) + } + measuredItems.fastForEachIndexed { index, placeable -> + placeable.place( + (positions[index] + leftPadding).roundToInt(), + (verticalAlignment.align(placeable.height, layoutHeight) + topPadding).roundToInt() + ) + } + if (hasOverflow) { + overflowPlaceable.place( + (positions.lastOrNull() ?: 0) + leftPadding.roundToInt(), + (verticalAlignment.align(overflowPlaceable.height, layoutHeight) + topPadding).roundToInt() + ) + } + } +} + +@OptIn(ExperimentalFoundationApi::class) +private fun LazyLayoutMeasureScope.measureItemsEllipseCenter( + constraints: Constraints, + horizontalArrangement: Arrangement.Horizontal, + verticalAlignment: Alignment.Vertical, + state: OverflowRowState, + itemCount: Int, + overflowPlaceable: Placeable, + alwaysShowOverflowAction: Boolean, + itemConstraints: Constraints, + leftPadding: Float, + topPadding: Float, + rightPadding: Float, + bottomPadding: Float +): MeasureResult { + val spacingPx = horizontalArrangement.spacing.roundToPx() + val actionWidth = overflowPlaceable.width + var remainingLastStartIndex = -1 + var remainingLastEndIndex = itemCount + var width = constraints.maxWidth + spacingPx + var height = overflowPlaceable.height + val measuredEndItems = mutableListOf() + val measuredStartItems = mutableListOf() + do { + if (measuredStartItems.size == measuredEndItems.size) { + remainingLastStartIndex += 1 + val item = measure(remainingLastStartIndex, itemConstraints)[0] + width -= item.width + spacingPx + measuredStartItems.add(remainingLastStartIndex, item) + height = maxOf(height, item.height) + } else { + remainingLastEndIndex -= 1 + val item = measure(remainingLastEndIndex, itemConstraints)[0] + width -= item.width + spacingPx + measuredEndItems.add(0, item) + height = maxOf(height, item.height) + } + } while (remainingLastEndIndex - remainingLastStartIndex > 1 && width > 0) + if (width < 0 || (alwaysShowOverflowAction && width < actionWidth + spacingPx)) { + do { + val isStart = measuredStartItems.size > measuredEndItems.size + if (isStart) { + val removeItem = measuredStartItems.removeLastOrNull() ?: break + remainingLastStartIndex -= 1 + width += removeItem.width + spacingPx + } else { + val removeItem = measuredEndItems.removeFirstOrNull() ?: break + remainingLastEndIndex += 1 + width += removeItem.width + spacingPx + } + } while (width < actionWidth + spacingPx) + } + val overflowRange = remainingLastStartIndex + 1 until remainingLastEndIndex + state.overflowRange = overflowRange + val contentWidth = constraints.maxWidth - width + if (overflowRange.isEmpty().not() || alwaysShowOverflowAction) { + actionWidth + spacingPx + } else { + 0 + } + val layoutHeight = height + val layoutWidth = maxOf(constraints.minWidth, (contentWidth + leftPadding + rightPadding).roundToInt()) + return layout(layoutWidth, (layoutHeight + topPadding + bottomPadding).roundToInt()) { + val hasOverflow = alwaysShowOverflowAction || overflowRange.isEmpty().not() + val offset = if (hasOverflow) 1 else 0 + with(horizontalArrangement) { + val sizes = IntArray(measuredStartItems.size + measuredEndItems.size + offset) { + if (it < measuredStartItems.size) { + measuredStartItems[it].width + } else if (hasOverflow && it == measuredStartItems.size) { + actionWidth + } else { + measuredEndItems[it - measuredStartItems.size - offset].width + } + } + val positions = IntArray(sizes.size) + arrange((layoutWidth - leftPadding - rightPadding).roundToInt(), sizes, layoutDirection, positions) + measuredStartItems.fastForEachIndexed { index, placeable -> + placeable.place( + (positions[index] + leftPadding).roundToInt(), + (verticalAlignment.align(placeable.height, layoutHeight) + topPadding).roundToInt() + ) + } + measuredEndItems.fastForEachIndexed { index, placeable -> + placeable.place( + (positions[measuredStartItems.size + index + offset] + leftPadding).roundToInt(), + (verticalAlignment.align(placeable.height, layoutHeight) + topPadding).roundToInt() + ) + } + if (hasOverflow) { + overflowPlaceable.place( + (positions[measuredStartItems.size] + leftPadding).roundToInt(), + (verticalAlignment.align(overflowPlaceable.height, layoutHeight) + topPadding).roundToInt() + ) + } + } + } +} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/layout/overflow/OverflowRowIntervalContent.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/layout/overflow/OverflowRowIntervalContent.kt new file mode 100644 index 00000000..a3975aa1 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/layout/overflow/OverflowRowIntervalContent.kt @@ -0,0 +1,56 @@ +package io.github.composefluent.layout.overflow + +import androidx.compose.foundation.ExperimentalFoundationApi +import androidx.compose.foundation.lazy.layout.LazyLayoutIntervalContent +import androidx.compose.foundation.lazy.layout.MutableIntervalList +import androidx.compose.runtime.Composable + +@OptIn(ExperimentalFoundationApi::class) +internal class OverflowRowIntervalContent( + content: OverflowRowScope.() -> Unit +) : OverflowRowScope, LazyLayoutIntervalContent() { + + override val intervals = MutableIntervalList() + + init { + apply(content) + } + + override fun item( + key: Any?, + contentType: Any?, + content: @Composable OverflowRowItemScope.() -> Unit + ) { + intervals.addInterval( + 1, + OverflowRowInterval( + key = key?.let { { key } }, + type = { contentType }, + item = { content() } + ) + ) + } + + override fun items( + count: Int, + key: ((index: Int) -> Any)?, + contentType: (index: Int) -> Any?, + itemContent: @Composable OverflowRowItemScope.(index: Int) -> Unit + ) { + intervals.addInterval( + count, + OverflowRowInterval( + key = key, + type = contentType, + item = itemContent + ) + ) + } +} + +@OptIn(ExperimentalFoundationApi::class) +internal class OverflowRowInterval( + override val key: ((index: Int) -> Any)?, + override val type: ((index: Int) -> Any?), + val item: @Composable OverflowRowItemScope.(Int) -> Unit +) : LazyLayoutIntervalContent.Interval \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/layout/overflow/OverflowRowItemProvider.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/layout/overflow/OverflowRowItemProvider.kt new file mode 100644 index 00000000..d76f2977 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/layout/overflow/OverflowRowItemProvider.kt @@ -0,0 +1,34 @@ +package io.github.composefluent.layout.overflow + +import androidx.compose.foundation.ExperimentalFoundationApi +import androidx.compose.foundation.lazy.layout.LazyLayoutItemProvider +import androidx.compose.foundation.lazy.layout.LazyLayoutPinnableItem +import androidx.compose.runtime.Composable + +@OptIn(ExperimentalFoundationApi::class) +internal class OverflowRowItemProvider( + private val state: OverflowRowState, + private val intervalContent: OverflowRowIntervalContent +): LazyLayoutItemProvider { + + override val itemCount: Int + get() = intervalContent.itemCount + + override fun getKey(index: Int): Any = intervalContent.getKey(index) + + override fun getContentType(index: Int): Any? = intervalContent.getContentType(index) + + @Composable + override fun Item(index: Int, key: Any) { + Item(index, key, itemScope = OverflowRowItemScope.OnContent) + } + + @Composable + fun Item(index: Int, key: Any, itemScope: OverflowRowItemScope) { + LazyLayoutPinnableItem(key, index, state.pinnedItems) { + intervalContent.withInterval(index) { localIndex, content -> + content.item(itemScope, localIndex) + } + } + } +} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/layout/overflow/OverflowRowItemScope.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/layout/overflow/OverflowRowItemScope.kt new file mode 100644 index 00000000..9da594cd --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/layout/overflow/OverflowRowItemScope.kt @@ -0,0 +1,34 @@ +package io.github.composefluent.layout.overflow + +/** + * Scope for items within an [OverflowRow]. + * + * This sealed interface indicates whether an item is displayed within the main content area of the + * [OverflowRow] or in the overflow section (e.g., within a dropdown or similar). + * + * `isOverflow` property determines the placement: + * - `false`: The item is visible in the primary row content. + * - `true`: The item is in the overflow section. + * + * The two implementations are [OnContent] and [OnOverflow]: + * - [OnContent]: Represents an item that is displayed in the primary content area. + * - [OnOverflow]: Represents an item that is part of the overflow section. + */ +sealed interface OverflowRowItemScope { + + /** + * Indicates whether the item is part of the overflow content or not. + * + * If `true`, the item is displayed in the overflow area. + * If `false`, the item is part of the main content and is displayed normally. + */ + val isOverflow: Boolean + + data object OnContent: OverflowRowItemScope { + override val isOverflow: Boolean = false + } + + data object OnOverflow: OverflowRowItemScope { + override val isOverflow: Boolean = true + } +} diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/layout/overflow/OverflowRowScope.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/layout/overflow/OverflowRowScope.kt new file mode 100644 index 00000000..56a71d03 --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/layout/overflow/OverflowRowScope.kt @@ -0,0 +1,51 @@ +package io.github.composefluent.layout.overflow + +import androidx.compose.runtime.Composable + +/** + * Scope for the children of [OverflowRow]. + * + * Within this scope, you can use [item] or [items] to add items to the row. + * + * These functions will automatically handle the logic for overflowing items, + * which will be hidden when there is not enough space and can be accessed + * by clicking the overflow indicator, or by swiping. + */ +sealed interface OverflowRowScope { + + /** + * Add an item to the overflow row. + * + * @param key an optional unique keys representing the item. + * Using the same key for multiple items in the list is not allowed. + * Type of the key should be saveable via the [androidx.compose.runtime.saveable.Saver] mechanism. + * If null, the list index is used as the key. + * @param contentType the type of content for this item. If not `null` this will be used to + * determine if the item should be kept across recompositions or if it should be discarded. + * @param content the composable content to display for this item. + */ + fun item( + key: Any? = null, + contentType: Any? = null, + content: @Composable OverflowRowItemScope.() -> Unit + ) + + /** + * Adds [count] items to the row. + * + * @param count the count of items to add + * @param key an optional factory of stable and unique keys representing the item. + * Using the same key for multiple items in the list is not allowed. + * Type of the key should be saveable via the [androidx.compose.runtime.saveable.Saver] mechanism. + * If null, the list index is used as the key. + * @param contentType a factory of the content types for the item. The key, if provided, should + * be stable and represent the same semantic type for the same item in the list. + * @param itemContent the content of the item + */ + fun items( + count: Int, + key: ((index: Int) -> Any)? = null, + contentType: (index: Int) -> Any? = { null }, + itemContent: @Composable OverflowRowItemScope.(index: Int) -> Unit + ) +} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/layout/overflow/OverflowRowState.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/layout/overflow/OverflowRowState.kt new file mode 100644 index 00000000..3cf0b67c --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/layout/overflow/OverflowRowState.kt @@ -0,0 +1,22 @@ +package io.github.composefluent.layout.overflow + +import androidx.compose.foundation.ExperimentalFoundationApi +import androidx.compose.foundation.lazy.layout.LazyLayoutPinnedItemList +import androidx.compose.runtime.Composable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue + +@Composable +internal fun rememberOverflowRowState(): OverflowRowState { + return remember { OverflowRowState() } +} +internal class OverflowRowState() { + + @OptIn(ExperimentalFoundationApi::class) + internal val pinnedItems = LazyLayoutPinnedItemList() + + internal var overflowRange: IntRange by mutableStateOf(0..0) + +} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/scheme/VisualStateScheme.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/scheme/VisualStateScheme.kt new file mode 100644 index 00000000..4e0ee67f --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/scheme/VisualStateScheme.kt @@ -0,0 +1,168 @@ +package io.github.composefluent.scheme + +import androidx.compose.foundation.interaction.InteractionSource +import androidx.compose.foundation.interaction.collectIsFocusedAsState +import androidx.compose.foundation.interaction.collectIsHoveredAsState +import androidx.compose.foundation.interaction.collectIsPressedAsState +import androidx.compose.runtime.Composable +import androidx.compose.runtime.Immutable +import androidx.compose.runtime.getValue + +/** + * Collects the visual state of an [InteractionSource] based on its interactions. + * + * This function observes the pressed, hovered, and focused states of the provided [InteractionSource] + * and maps them to a [VisualState] enum value. + * + * @param disabled Indicates whether the component is in a disabled state. + * @param focusFirst Determines whether the focused state should take precedence over other states when computing the visual state. Defaults to `false`. + * @return The [VisualState] representing the current interaction state of the [InteractionSource]. + */ +@Composable +fun InteractionSource.collectVisualState(disabled: Boolean, focusFirst: Boolean = false): VisualState { + val pressed by collectIsPressedAsState() + val hovered by collectIsHoveredAsState() + val focused by collectIsFocusedAsState() + return if (focusFirst) VisualState.fromInteractionFocusFirst(pressed, hovered, disabled, focused) + else VisualState.fromInteraction(pressed, hovered, disabled, focused) +} + +/** + * Represents the visual state of a component. + * + * The possible states are: + * - [Default]: The component is in its normal, inactive state. + * - [Hovered]: The pointer is hovering over the component. + * - [Pressed]: The component is being pressed by the pointer. + * - [Disabled]: The component is disabled and cannot be interacted with. + * - [Focused]: The component has keyboard focus. + * + * This enum also provides factory methods to derive the visual state from + * interactions such as pressed, hovered, disabled, and focused. + * + * The order of precedence is: + * 1. Disabled + * 2. Pressed/Focused (depends on the factory method used) + * 3. Hovered + * 4. Default + * + * @see fromInteraction + * @see fromInteractionFocusFirst + */ +enum class VisualState { + Default, Hovered, Pressed, Disabled, Focused; + + companion object { + /** + * Maps boolean states of interaction to a [VisualState]. + * + * The order of precedence for visual states is as follows (from highest to lowest): + * 1. [VisualState.Disabled] + * 2. [VisualState.Pressed] + * 3. [VisualState.Hovered] + * 4. [VisualState.Focused] + * 5. [VisualState.Default] + * + * If multiple states are active, the one with higher precedence will be chosen. + * + * @param pressed Whether the component is currently being pressed. + * @param hovered Whether the component is currently being hovered over. + * @param disabled Whether the component is disabled. + * @param focused Whether the component currently has input focus. + * @return The corresponding [VisualState] for the given interaction state. + */ + fun fromInteraction( + pressed: Boolean, + hovered: Boolean, + disabled: Boolean, + focused: Boolean + ): VisualState { + return when { + disabled -> Disabled + pressed -> Pressed + hovered -> Hovered + focused -> Focused + else -> Default + } + } + + /** + * Determines the [VisualState] based on interaction states, prioritizing focus over hover and pressed. + * + * The priority order is: + * 1. [Disabled] + * 2. [Focused] + * 3. [Pressed] + * 4. [Hovered] + * 5. [Default] + * + * @param pressed `true` if the component is being pressed, `false` otherwise. + * @param hovered `true` if the component is being hovered, `false` otherwise. + * @param disabled `true` if the component is disabled, `false` otherwise. + * @param focused `true` if the component has focus, `false` otherwise. + * @return The corresponding [VisualState]. + */ + fun fromInteractionFocusFirst( + pressed: Boolean, + hovered: Boolean, + disabled: Boolean, + focused: Boolean + ): VisualState { + return when { + disabled -> Disabled + focused -> Focused + pressed -> Pressed + hovered -> Hovered + else -> Default + } + } + } +} + +/** + * A scheme that provides a value of type [T] based on the current [VisualState]. + * + * Implementations of this interface define how a visual property should change + * based on different interaction states like default, hovered, pressed, disabled, and focused. + * + * @param T The type of value provided by this scheme. + */ +fun interface VisualStateScheme { + + /** + * Returns the scheme associated with the given [state]. + * + * @param state The [VisualState] to retrieve the scheme for. + * @return The scheme corresponding to the provided [state]. + */ + fun schemeFor(state: VisualState): T +} + +/** + * A visual scheme that provides different values for five visual states: + * [VisualState.Default], [VisualState.Hovered], [VisualState.Pressed], + * [VisualState.Disabled], and [VisualState.Focused]. + * + * @param T The type of the value provided for each state. + * @property default The value for the [VisualState.Default] state. + * @property hovered The value for the [VisualState.Hovered] state. + * @property pressed The value for the [VisualState.Pressed] state. + * @property disabled The value for the [VisualState.Disabled] state. + * @property focused The value for the [VisualState.Focused] state. Defaults to [default]. + */ +@Immutable +data class PentaVisualScheme( + val default: T, + val hovered: T, + val pressed: T, + val disabled: T, + val focused: T = default +) : VisualStateScheme { + override fun schemeFor(state: VisualState): T = when (state) { + VisualState.Default -> default + VisualState.Hovered -> hovered + VisualState.Pressed -> pressed + VisualState.Disabled -> disabled + VisualState.Focused -> focused + } +} \ No newline at end of file diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/shape/FluentCornerSize.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/shape/FluentCornerSize.kt similarity index 99% rename from fluent/src/commonMain/kotlin/com/konyaco/fluent/shape/FluentCornerSize.kt rename to fluent/src/commonMain/kotlin/io/github/composefluent/shape/FluentCornerSize.kt index 776d376a..dfb53b7b 100644 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/shape/FluentCornerSize.kt +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/shape/FluentCornerSize.kt @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package com.konyaco.fluent.shape +package io.github.composefluent.shape import androidx.compose.foundation.shape.CornerSize import androidx.compose.foundation.shape.ZeroCornerSize diff --git a/fluent/src/commonMain/kotlin/com/konyaco/fluent/shape/FluentShape.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/shape/FluentShape.kt similarity index 99% rename from fluent/src/commonMain/kotlin/com/konyaco/fluent/shape/FluentShape.kt rename to fluent/src/commonMain/kotlin/io/github/composefluent/shape/FluentShape.kt index 005b8c95..70d20997 100644 --- a/fluent/src/commonMain/kotlin/com/konyaco/fluent/shape/FluentShape.kt +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/shape/FluentShape.kt @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package com.konyaco.fluent.shape +package io.github.composefluent.shape import androidx.compose.foundation.shape.* import androidx.compose.ui.graphics.Shape diff --git a/fluent/src/commonMain/kotlin/io/github/composefluent/surface/Card.kt b/fluent/src/commonMain/kotlin/io/github/composefluent/surface/Card.kt new file mode 100644 index 00000000..c0ee920b --- /dev/null +++ b/fluent/src/commonMain/kotlin/io/github/composefluent/surface/Card.kt @@ -0,0 +1,154 @@ +package io.github.composefluent.surface + +import androidx.compose.animation.animateColorAsState +import androidx.compose.animation.core.tween +import androidx.compose.foundation.BorderStroke +import androidx.compose.foundation.clickable +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.runtime.Composable +import androidx.compose.runtime.Stable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.remember +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Brush +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.Shape +import androidx.compose.ui.graphics.SolidColor +import androidx.compose.ui.unit.dp +import io.github.composefluent.FluentTheme +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.background.BackgroundSizing +import io.github.composefluent.background.Layer +import io.github.composefluent.scheme.PentaVisualScheme +import io.github.composefluent.scheme.VisualStateScheme +import io.github.composefluent.scheme.collectVisualState + +/** + * A basic card composable that provides a contained space for content with a defined shape. + * + * @param modifier The [Modifier] to be applied to the card. + * @param shape The [Shape] of the card's background. Defaults to `FluentTheme.shapes.overlay`. + * @param content The content to be displayed inside the card. + */ +@Composable +fun Card( + modifier: Modifier, + shape: Shape = FluentTheme.shapes.overlay, + content: @Composable () -> Unit +) { + Layer( + modifier = modifier, + shape = shape, + backgroundSizing = BackgroundSizing.InnerBorderEdge, + content = content + ) +} + +/** + * A composable that represents a clickable card. + * + * @param onClick The callback to be invoked when the card is clicked. + * @param modifier The [Modifier] to be applied to the card. + * @param shape The [Shape] of the card. Defaults to [FluentTheme.shapes.control]. + * @param disabled Whether the card is disabled or not. Defaults to `false`. + * @param cardColors The colors of the card in different states. Defaults to [CardDefaults.cardColors]. + * @param interactionSource The [MutableInteractionSource] representing the stream of interactions for the card. + * @param content The composable content of the card. + */ +@Composable +fun Card( + onClick: () -> Unit, + modifier: Modifier = Modifier, + shape: Shape = FluentTheme.shapes.control, + disabled: Boolean = false, + cardColors: VisualStateScheme = CardDefaults.cardColors(), + interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }, + content: @Composable () -> Unit +) { + val visualState = interactionSource.collectVisualState(disabled) + val colors = cardColors.schemeFor(visualState) + + val fillColor by animateColorAsState( + colors.fillColor, + animationSpec = tween(FluentDuration.QuickDuration, easing = FluentEasing.FastInvokeEasing) + ) + + val contentColor by animateColorAsState( + colors.contentColor, + animationSpec = tween(FluentDuration.QuickDuration, easing = FluentEasing.FastInvokeEasing) + ) + + Layer( + modifier = modifier.clickable( + enabled = !disabled, + onClick = onClick, + indication = null, + interactionSource = interactionSource + ), + shape = shape, + backgroundSizing = BackgroundSizing.InnerBorderEdge, + color = fillColor, + border = BorderStroke(1.dp, colors.borderBrush), + contentColor = contentColor, + content = content + ) +} + +/** + * Represents the color scheme for a [Card] in different states. + * + * @property fillColor The background color of the card. + * @property contentColor The color of the content (text, icons, etc.) inside the card. + * @property borderBrush The brush used to draw the border around the card. + */ +data class CardColor( + val fillColor: Color, + val contentColor: Color, + val borderBrush: Brush +) + +/** + * Contains the default values used for [Card]. + */ +object CardDefaults { + /** + * Creates a [PentaVisualScheme] that represents the color scheme for a card in different states. + * + * @param default The default [CardColor] used when the card is in its normal state. + * Defaults to a card with a default background layer, primary text color, and a default card border. + * @param hovered The [CardColor] used when the card is being hovered over. + * Defaults to a card based on the `default` configuration but with a secondary control background + * and a control border. + * @param pressed The [CardColor] used when the card is being pressed. + * Defaults to a card with a tertiary control background, secondary text color, and a default + * control border. + * @param disabled The [CardColor] used when the card is disabled. + * Defaults to a card based on the `pressed` configuration but with a default background layer, + * primary text color, and a default card border. + * @return A [PentaVisualScheme] containing the color schemes for the card in various states. + */ + @Stable + @Composable + fun cardColors( + default: CardColor = CardColor( + fillColor = FluentTheme.colors.background.layer.default, + contentColor = FluentTheme.colors.text.text.primary, + borderBrush = SolidColor(FluentTheme.colors.stroke.card.default) + ), + hovered: CardColor = default.copy( + fillColor = FluentTheme.colors.control.secondary, + borderBrush = FluentTheme.colors.borders.control + ), + pressed: CardColor = CardColor( + fillColor = FluentTheme.colors.control.tertiary, + contentColor = FluentTheme.colors.text.text.secondary, + borderBrush = SolidColor(FluentTheme.colors.stroke.control.default) + ), + disabled: CardColor = pressed.copy( + fillColor = FluentTheme.colors.background.layer.default, + contentColor = FluentTheme.colors.text.text.primary, + borderBrush = SolidColor(FluentTheme.colors.stroke.card.default) + ) + ) = PentaVisualScheme(default, hovered, pressed, disabled) +} \ No newline at end of file diff --git a/fluent/src/desktopMain/kotlin/com/konyaco/fluent/component/ContextMenu.desktop.kt b/fluent/src/desktopMain/kotlin/com/konyaco/fluent/component/ContextMenu.desktop.kt deleted file mode 100644 index 92ccd8dd..00000000 --- a/fluent/src/desktopMain/kotlin/com/konyaco/fluent/component/ContextMenu.desktop.kt +++ /dev/null @@ -1,228 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.animation.EnterTransition -import androidx.compose.animation.core.tween -import androidx.compose.animation.fadeIn -import androidx.compose.foundation.* -import androidx.compose.foundation.layout.* -import androidx.compose.foundation.text.TextContextMenu -import androidx.compose.runtime.* -import androidx.compose.ui.Modifier -import androidx.compose.ui.geometry.Rect -import androidx.compose.ui.graphics.vector.ImageVector -import androidx.compose.ui.input.key.* -import androidx.compose.ui.platform.LocalDensity -import androidx.compose.ui.platform.LocalLocalization -import androidx.compose.ui.unit.* -import com.konyaco.fluent.animation.FluentDuration -import com.konyaco.fluent.animation.FluentEasing -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.regular.Copy -import com.konyaco.fluent.icons.regular.Cut -import com.konyaco.fluent.icons.regular.ClipboardPaste - -internal object FluentContextMenuRepresentation : ContextMenuRepresentation { - @Composable - override fun Representation(state: ContextMenuState, items: () -> List) { - var rect by remember { - mutableStateOf(Rect.Zero) - } - var visible by remember { - mutableStateOf(false) - } - val status = state.status - LaunchedEffect(status) { - if (status is ContextMenuState.Status.Open) { - rect = status.rect - visible = true - } else { - visible = false - } - } - val density = LocalDensity.current - MenuFlyout( - visible = visible, - onDismissRequest = { state.status = ContextMenuState.Status.Closed }, - onKeyEvent = { keyEvent -> - items().firstOrNull { - val result = it is FluentContextMenuItem && - keyEvent.type == KeyEventType.KeyDown && - it.keyData != null && - it.keyData.isAltPressed == keyEvent.isAltPressed && - it.keyData.isCtrlPressed == keyEvent.isCtrlPressed && - it.keyData.isShiftPressed == keyEvent.isShiftPressed && - it.keyData.key == keyEvent.key - if (result) { - it.onClick() - state.status = ContextMenuState.Status.Closed - } - result - } != null - }, - positionProvider = remember(rect, density) { - ContextMenuFlyoutPositionProvider(rect, density) - }, - enterPlacementAnimation = { enterAnimation() } - ) { - val menuItems = items() - val shouldPaddingIcon = - menuItems.any { it is FluentContextMenuItem && (it.glyph != null || it.vector != null) } - menuItems.forEach { - if (it is FluentContextMenuItem) { - MenuFlyoutItem( - text = { - Text(it.label, modifier = Modifier) - }, - icon = if (shouldPaddingIcon) { - { - if (it.glyph != null && LocalFontIconFontFamily.current != null) { - FontIcon(it.glyph, modifier = Modifier) - } else if (it.vector != null) { - Icon( - it.vector, it.label, - modifier = Modifier.size(with(LocalDensity.current) { ((FontIconDefaults.fontSizeStandard.value + 2).sp).toDp() }) - ) - } - } - } else { - null - }, - training = { - it.keyData?.let { keyData -> - val keyString = remember(keyData) { - buildString { - if (keyData.isAltPressed) { - append("Alt+") - } - if (keyData.isCtrlPressed) { - append("Ctrl+") - } - if (keyData.isShiftPressed) { - append("Shift+") - } - append(keyData.key.toString().removePrefix("Key: ")) - } - } - Text( - text = keyString, - modifier = Modifier.padding(start = 16.dp, end = 8.dp) - ) - } - }, - onClick = { - it.onClick() - state.status = ContextMenuState.Status.Closed - } - ) - } else { - MenuFlyoutItem( - onClick = { - it.onClick() - state.status = ContextMenuState.Status.Closed - }, - text = { Text(it.label) }, - icon = if (shouldPaddingIcon) { {} } else { null }, - ) - } - } - } - } - - - private fun enterAnimation(): EnterTransition { - return fadeIn(defaultAnimationSpec()) - } - - private fun defaultAnimationSpec() = - tween(FluentDuration.ShortDuration, easing = FluentEasing.FastInvokeEasing) -} - -@OptIn(ExperimentalFoundationApi::class) -internal object FluentTextContextMenu : TextContextMenu { - - @Composable - override fun Area( - textManager: TextContextMenu.TextManager, - state: ContextMenuState, - content: @Composable () -> Unit - ) { - val localization = LocalLocalization.current - val items = { - listOfNotNull( - textManager.cut?.let { - FluentContextMenuItem( - label = localization.cut, - onClick = it, - glyph = '\uE8C6', - vector = Icons.Default.Cut, - keyData = FluentContextMenuItem.KeyData(Key.X, isCtrlPressed = true) - ) - }, - textManager.copy?.let { - FluentContextMenuItem( - label = localization.copy, - onClick = it, - glyph = '\uE8C8', - vector = Icons.Default.Copy, - keyData = FluentContextMenuItem.KeyData(Key.C, isCtrlPressed = true) - ) - }, - textManager.paste?.let { - FluentContextMenuItem( - label = localization.paste, - onClick = it, - glyph = '\uE77F', - vector = Icons.Default.ClipboardPaste, - keyData = FluentContextMenuItem.KeyData(Key.V, isCtrlPressed = true) - ) - }, - textManager.selectAll?.let { - FluentContextMenuItem( - label = localization.selectAll, - onClick = it, - keyData = FluentContextMenuItem.KeyData(Key.A, isCtrlPressed = true), - ) - }, - ) - } - ContextMenuArea(items, state, content = content) - } -} - -class FluentContextMenuItem( - label: String, - onClick: () -> Unit, - val vector: ImageVector? = null, - val keyData: KeyData? = null, - val glyph: Char? = null -) : ContextMenuItem(label, onClick) { - data class KeyData( - val key: Key, - val isAltPressed: Boolean = false, - val isCtrlPressed: Boolean = false, - val isShiftPressed: Boolean = false - ) -} - -private class ContextMenuFlyoutPositionProvider( - val rect: Rect, - density: Density, -) : FlyoutPositionProvider( - density = density, - adaptivePlacement = true, - initialPlacement = FlyoutPlacement.BottomAlignedStart -) { - - override fun calculatePosition( - anchorBounds: IntRect, - windowSize: IntSize, - layoutDirection: LayoutDirection, - popupContentSize: IntSize - ): IntOffset { - val targetAnchor = IntRect( - offset = rect.center.round() + anchorBounds.topLeft, - size = IntSize.Zero - ) - return super.calculatePosition(targetAnchor, windowSize, layoutDirection, popupContentSize) - } -} \ No newline at end of file diff --git a/fluent/src/desktopMain/kotlin/com/konyaco/fluent/component/PlatformScrollBar.desktop.kt b/fluent/src/desktopMain/kotlin/com/konyaco/fluent/component/PlatformScrollBar.desktop.kt deleted file mode 100644 index 773ae601..00000000 --- a/fluent/src/desktopMain/kotlin/com/konyaco/fluent/component/PlatformScrollBar.desktop.kt +++ /dev/null @@ -1,200 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.animation.core.animateFloatAsState -import androidx.compose.animation.core.tween -import androidx.compose.foundation.* -import androidx.compose.foundation.gestures.Orientation -import androidx.compose.foundation.gestures.rememberScrollableState -import androidx.compose.foundation.gestures.scrollable -import androidx.compose.foundation.interaction.* -import androidx.compose.foundation.layout.* -import androidx.compose.foundation.lazy.LazyListState -import androidx.compose.foundation.lazy.grid.LazyGridState -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.foundation.text.TextFieldScrollState -import androidx.compose.runtime.* -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.unit.dp -import com.konyaco.fluent.animation.FluentDuration -import com.konyaco.fluent.animation.FluentEasing -import kotlinx.coroutines.delay -import kotlinx.coroutines.launch - -actual typealias ScrollbarAdapter = androidx.compose.foundation.v2.ScrollbarAdapter - -@Composable -internal actual fun PlatformScrollBar( - isVertical: Boolean, - adapter: ScrollbarAdapter, - modifier: Modifier, - reverseLayout: Boolean, - colors: ScrollbarColors -) { - val interactionSource = remember { - MutableInteractionSource() - } - val containerInteraction = remember { - MutableInteractionSource() - } - val hovered by containerInteraction.collectIsHoveredAsState() - var delayedHovered by remember(containerInteraction) { - mutableStateOf(false) - } - LaunchedEffect(hovered) { - delay(ScrollbarDefaults.hoverDurationMillis.toLong()) - delayedHovered = hovered - } - val pressed by interactionSource.collectIsPressedAsState() - val focused by interactionSource.collectIsFocusedAsState() - val dragged by interactionSource.collectIsDraggedAsState() - val isThicknessHighLight by remember { - derivedStateOf { - (delayedHovered || pressed || focused || dragged) && adapter.contentSize > adapter.viewportSize - } - } - - val animationFraction by animateFloatAsState( - targetValue = if (isThicknessHighLight) { - 1f - } else { - 0f - }, - animationSpec = tween(FluentDuration.ShortDuration, easing = FluentEasing.FastInvokeEasing) - ) - val thickness = androidx.compose.ui.unit.lerp( - ScrollbarDefaults.thickness, - ScrollbarDefaults.thicknessHighlight, - animationFraction - ) - - val style = ScrollbarStyle( - thickness = thickness, - unhoverColor = colors.contentColor, - hoverColor = if (pressed || dragged || focused) { - colors.contentColorPressed - } else { - colors.contentColorHovered - }, - hoverDurationMillis = FluentDuration.ShortDuration, - shape = ScrollbarDefaults.shape, - minimalHeight = 16.dp - ) - - val scrollScope = rememberCoroutineScope() - val scrollbarScrollState = rememberScrollableState { - scrollScope.launch { - adapter.scrollTo(adapter.scrollOffset - it) - } - it - } - val trackColor = colors.backgroundColor.copy(animationFraction) - if (isVertical) { - Column( - horizontalAlignment = Alignment.CenterHorizontally, - modifier = Modifier.hoverable(containerInteraction) - .width(12.dp) - .background( - color = trackColor, - shape = CircleShape - ) - .scrollable( - state = scrollbarScrollState, - orientation = Orientation.Vertical, - reverseDirection = reverseLayout - ) - ) { - Spacer(Modifier.height(2.dp)) - ScrollbarIndicator( - adapter = adapter, - isVertical = true, - visible = isThicknessHighLight, - forward = true - ) - // TODO: Use Acrylic as scrollbar's track - VerticalScrollbar( - adapter = adapter, - modifier = modifier.width(ScrollbarDefaults.thicknessHighlight) - .wrapContentWidth(Alignment.End) - .weight(1f), - style = style, - reverseLayout = reverseLayout, - interactionSource = interactionSource - ) - ScrollbarIndicator( - adapter = adapter, - isVertical = true, - visible = isThicknessHighLight - ) - Spacer(Modifier.height(2.dp)) - } - } else { - Row( - verticalAlignment = Alignment.CenterVertically, - modifier = Modifier.hoverable(containerInteraction) - .height(12.dp) - .background( - color = trackColor, - shape = CircleShape - ) - .scrollable( - state = scrollbarScrollState, - orientation = Orientation.Horizontal, - reverseDirection = reverseLayout - ) - ) { - Spacer(Modifier.width(2.dp)) - ScrollbarIndicator( - adapter = adapter, - isVertical = false, - visible = isThicknessHighLight, - forward = true - ) - HorizontalScrollbar( - adapter = adapter, - modifier = modifier.height(ScrollbarDefaults.thicknessHighlight) - .wrapContentHeight(Alignment.Bottom) - .weight(1f), - style = style, - reverseLayout = reverseLayout, - interactionSource = interactionSource - ) - ScrollbarIndicator( - adapter = adapter, - isVertical = false, - visible = isThicknessHighLight - ) - Spacer(Modifier.width(2.dp)) - } - } -} - -@Composable -actual fun rememberScrollbarAdapter( - state: ScrollState -): ScrollbarAdapter { - return androidx.compose.foundation.rememberScrollbarAdapter(state) -} - -//TODO move to CommonMain -@OptIn(ExperimentalFoundationApi::class) -@Composable -fun rememberScrollbarAdapter( - state: TextFieldScrollState -): ScrollbarAdapter { - return androidx.compose.foundation.rememberScrollbarAdapter(state) -} - -@Composable -actual fun rememberScrollbarAdapter( - state: LazyListState -): ScrollbarAdapter { - return androidx.compose.foundation.rememberScrollbarAdapter(state) -} - -@Composable -actual fun rememberScrollbarAdapter( - state: LazyGridState -): ScrollbarAdapter { - return androidx.compose.foundation.rememberScrollbarAdapter(state) -} \ No newline at end of file diff --git a/fluent/src/desktopMain/kotlin/com/konyaco/fluent/component/Popup.desktop.kt b/fluent/src/desktopMain/kotlin/com/konyaco/fluent/component/Popup.desktop.kt deleted file mode 100644 index 01e4ca1f..00000000 --- a/fluent/src/desktopMain/kotlin/com/konyaco/fluent/component/Popup.desktop.kt +++ /dev/null @@ -1,16 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.runtime.Composable -import androidx.compose.ui.input.key.KeyEvent -import androidx.compose.ui.window.PopupPositionProvider -import androidx.compose.ui.window.PopupProperties - -@Composable -internal actual fun Popup( - popupPositionProvider: PopupPositionProvider, - onDismissRequest: (() -> Unit)?, - properties: PopupProperties, - onPreviewKeyEvent: ((KeyEvent) -> Boolean)?, - onKeyEvent: ((KeyEvent) -> Boolean)?, - content: @Composable () -> Unit -) = androidx.compose.ui.window.Popup(popupPositionProvider, onDismissRequest, properties, onPreviewKeyEvent, onKeyEvent, content) \ No newline at end of file diff --git a/fluent/src/desktopMain/kotlin/com/konyaco/fluent/PlatformCompositionLocalProvider.desktop.kt b/fluent/src/desktopMain/kotlin/io/github/composefluent/PlatformCompositionLocalProvider.desktop.kt similarity index 78% rename from fluent/src/desktopMain/kotlin/com/konyaco/fluent/PlatformCompositionLocalProvider.desktop.kt rename to fluent/src/desktopMain/kotlin/io/github/composefluent/PlatformCompositionLocalProvider.desktop.kt index 5a7bff46..191a1efa 100644 --- a/fluent/src/desktopMain/kotlin/com/konyaco/fluent/PlatformCompositionLocalProvider.desktop.kt +++ b/fluent/src/desktopMain/kotlin/io/github/composefluent/PlatformCompositionLocalProvider.desktop.kt @@ -1,12 +1,12 @@ -package com.konyaco.fluent +package io.github.composefluent import androidx.compose.foundation.ExperimentalFoundationApi import androidx.compose.foundation.LocalContextMenuRepresentation import androidx.compose.foundation.text.LocalTextContextMenu import androidx.compose.runtime.Composable import androidx.compose.runtime.CompositionLocalProvider -import com.konyaco.fluent.component.FluentContextMenuRepresentation -import com.konyaco.fluent.component.FluentTextContextMenu +import io.github.composefluent.component.FluentContextMenuRepresentation +import io.github.composefluent.component.FluentTextContextMenu @OptIn(ExperimentalFoundationApi::class) @Composable diff --git a/fluent/src/desktopMain/kotlin/com/konyaco/fluent/component/CalendarView.desktop.kt b/fluent/src/desktopMain/kotlin/io/github/composefluent/component/CalendarView.desktop.kt similarity index 95% rename from fluent/src/desktopMain/kotlin/com/konyaco/fluent/component/CalendarView.desktop.kt rename to fluent/src/desktopMain/kotlin/io/github/composefluent/component/CalendarView.desktop.kt index 500efb77..1409bc69 100644 --- a/fluent/src/desktopMain/kotlin/com/konyaco/fluent/component/CalendarView.desktop.kt +++ b/fluent/src/desktopMain/kotlin/io/github/composefluent/component/CalendarView.desktop.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.component +package io.github.composefluent.component import java.util.Calendar import java.util.Locale diff --git a/fluent/src/desktopMain/kotlin/io/github/composefluent/component/ContextMenu.desktop.kt b/fluent/src/desktopMain/kotlin/io/github/composefluent/component/ContextMenu.desktop.kt new file mode 100644 index 00000000..acf7bc00 --- /dev/null +++ b/fluent/src/desktopMain/kotlin/io/github/composefluent/component/ContextMenu.desktop.kt @@ -0,0 +1,282 @@ +package io.github.composefluent.component + +import androidx.compose.animation.EnterTransition +import androidx.compose.animation.core.tween +import androidx.compose.animation.fadeIn +import androidx.compose.foundation.ContextMenuArea +import androidx.compose.foundation.ContextMenuItem +import androidx.compose.foundation.ContextMenuRepresentation +import androidx.compose.foundation.ContextMenuState +import androidx.compose.foundation.ExperimentalFoundationApi +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.text.TextContextMenu +import androidx.compose.runtime.Composable +import androidx.compose.runtime.LaunchedEffect +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import androidx.compose.ui.Modifier +import androidx.compose.ui.geometry.Rect +import androidx.compose.ui.graphics.vector.ImageVector +import androidx.compose.ui.input.key.Key +import androidx.compose.ui.input.key.KeyEventType +import androidx.compose.ui.input.key.isAltPressed +import androidx.compose.ui.input.key.isCtrlPressed +import androidx.compose.ui.input.key.isMetaPressed +import androidx.compose.ui.input.key.isShiftPressed +import androidx.compose.ui.input.key.key +import androidx.compose.ui.input.key.type +import androidx.compose.ui.platform.LocalDensity +import androidx.compose.ui.platform.LocalLocalization +import androidx.compose.ui.unit.Density +import androidx.compose.ui.unit.IntOffset +import androidx.compose.ui.unit.IntRect +import androidx.compose.ui.unit.IntSize +import androidx.compose.ui.unit.LayoutDirection +import androidx.compose.ui.unit.dp +import androidx.compose.ui.unit.round +import androidx.compose.ui.unit.sp +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.component.FluentContextMenuItem.KeyData +import org.jetbrains.skiko.hostOs + +internal object FluentContextMenuRepresentation : ContextMenuRepresentation { + + @Composable + override fun Representation(state: ContextMenuState, items: () -> List) { + var rect by remember { + mutableStateOf(Rect.Zero) + } + var visible by remember { + mutableStateOf(false) + } + val status = state.status + LaunchedEffect(status) { + if (status is ContextMenuState.Status.Open) { + rect = status.rect + visible = true + } else { + visible = false + } + } + val density = LocalDensity.current + MenuFlyout( + visible = visible, + onDismissRequest = { state.status = ContextMenuState.Status.Closed }, + onKeyEvent = { keyEvent -> + items().firstOrNull { + val result = it is FluentContextMenuItem && + keyEvent.type == KeyEventType.KeyDown && + it.keyData != null && + it.keyData.isAltPressed == keyEvent.isAltPressed && + it.keyData.isCtrlPressed == (if (hostOs.isMacOS) keyEvent.isMetaPressed else keyEvent.isCtrlPressed) && + it.keyData.isShiftPressed == keyEvent.isShiftPressed && + it.keyData.key == keyEvent.key + if (result) { + it.onClick() + state.status = ContextMenuState.Status.Closed + } + result + } != null + }, + positionProvider = remember(rect, density) { + ContextMenuFlyoutPositionProvider(rect, density) + }, + enterPlacementAnimation = { enterAnimation() } + ) { + val menuItems = items() + val shouldPaddingIcon = + menuItems.any { it is FluentContextMenuItem && (it.glyph != null || it.vector != null) } + menuItems.forEach { + if (it is FluentContextMenuItem) { + MenuFlyoutItem( + text = { + Text(it.label, modifier = Modifier) + }, + icon = if (shouldPaddingIcon) { + { + + if (it.glyph != null && LocalFontIconFontFamily.current != null) { + FontIcon( + glyph = it.glyph, + vector = it.vector?.let { vector -> { vector } }, + contentDescription = it.label, + ) + } else if (it.vector != null) { + Icon( + it.vector, it.label, + modifier = Modifier.size(with(LocalDensity.current) { ((FontIconSize.Standard.value + 2).sp).toDp() }) + ) + } + } + } else { + null + }, + trailing = { + it.keyData?.let { keyData -> + val keyString = remember(keyData) { + buildString { + if (!hostOs.isMacOS) { + if (keyData.isAltPressed) { + append("Alt+") + } + if (keyData.isCtrlPressed) { + append("Ctrl+") + } + if (keyData.isShiftPressed) { + append("Shift+") + } + } else { + if (keyData.isAltPressed) { + append("⌥ ") + } + if (keyData.isCtrlPressed) { + append("⌘ ") + } + if (keyData.isShiftPressed) { + append("⇧ ") + } + } + append(keyData.key.toString().removePrefix("Key: ")) + } + } + Text( + text = keyString, + modifier = Modifier.padding(start = 16.dp, end = 8.dp) + ) + } + }, + onClick = { + it.onClick() + state.status = ContextMenuState.Status.Closed + } + ) + } else { + MenuFlyoutItem( + onClick = { + it.onClick() + state.status = ContextMenuState.Status.Closed + }, + text = { Text(it.label) }, + icon = if (shouldPaddingIcon) { {} } else { null }, + ) + } + } + } + } + + + private fun enterAnimation(): EnterTransition { + return fadeIn(defaultAnimationSpec()) + } + + private fun defaultAnimationSpec() = + tween(FluentDuration.ShortDuration, easing = FluentEasing.FastInvokeEasing) +} + +@OptIn(ExperimentalFoundationApi::class) +internal object FluentTextContextMenu : TextContextMenu { + + @Composable + override fun Area( + textManager: TextContextMenu.TextManager, + state: ContextMenuState, + content: @Composable () -> Unit + ) { + val localization = LocalLocalization.current + val items = { + listOfNotNull( + textManager.cut?.let { + FluentContextMenuItem( + label = localization.cut, + onClick = it, + icon = FontIconPrimitive.Cut, + keyData = KeyData(Key.X, isCtrlPressed = true) + ) + }, + textManager.copy?.let { + FluentContextMenuItem( + label = localization.copy, + onClick = it, + icon = FontIconPrimitive.Copy, + keyData = KeyData(Key.C, isCtrlPressed = true) + ) + }, + textManager.paste?.let { + FluentContextMenuItem( + label = localization.paste, + onClick = it, + icon = FontIconPrimitive.Paste, + keyData = KeyData(Key.V, isCtrlPressed = true) + ) + }, + textManager.selectAll?.let { + FluentContextMenuItem( + label = localization.selectAll, + onClick = it, + keyData = KeyData(Key.A, isCtrlPressed = true), + ) + }, + ) + } + ContextMenuArea(items, state, content = content) + } + +} + +fun FluentContextMenuItem( + label: String, + onClick: () -> Unit, + icon: FontIconPrimitive, + keyData: KeyData? = null, +) = FluentContextMenuItem( + label = label, + onClick = onClick, + glyph = icon.glyph, + vector = icon.vector(), + keyData = keyData +) + +class FluentContextMenuItem( + label: String, + onClick: () -> Unit, + val vector: ImageVector? = null, + val keyData: KeyData? = null, + val glyph: Char? = null +) : ContextMenuItem(label, onClick) { + data class KeyData( + val key: Key, + // option key in macOS, otherwise alt key + val isAltPressed: Boolean = false, + //command[modifier is meta] key in macOS, otherwise control key + val isCtrlPressed: Boolean = false, + // shift key + val isShiftPressed: Boolean = false + ) +} + +private class ContextMenuFlyoutPositionProvider( + val rect: Rect, + density: Density, +) : FlyoutPositionProvider( + density = density, + adaptivePlacement = true, + initialPlacement = FlyoutPlacement.BottomAlignedStart +) { + + override fun calculatePosition( + anchorBounds: IntRect, + windowSize: IntSize, + layoutDirection: LayoutDirection, + popupContentSize: IntSize + ): IntOffset { + val targetAnchor = IntRect( + offset = rect.center.round() + anchorBounds.topLeft, + size = IntSize.Zero + ) + return super.calculatePosition(targetAnchor, windowSize, layoutDirection, popupContentSize) + } +} \ No newline at end of file diff --git a/fluent/src/desktopMain/kotlin/com/konyaco/fluent/component/Dialog.desktop.kt b/fluent/src/desktopMain/kotlin/io/github/composefluent/component/Dialog.desktop.kt similarity index 91% rename from fluent/src/desktopMain/kotlin/com/konyaco/fluent/component/Dialog.desktop.kt rename to fluent/src/desktopMain/kotlin/io/github/composefluent/component/Dialog.desktop.kt index 494ec96c..640e9c51 100644 --- a/fluent/src/desktopMain/kotlin/com/konyaco/fluent/component/Dialog.desktop.kt +++ b/fluent/src/desktopMain/kotlin/io/github/composefluent/component/Dialog.desktop.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.component +package io.github.composefluent.component import androidx.compose.ui.ExperimentalComposeUiApi import androidx.compose.ui.geometry.Offset diff --git a/fluent/src/desktopMain/kotlin/com/konyaco/fluent/component/FontIcon.desktop.kt b/fluent/src/desktopMain/kotlin/io/github/composefluent/component/FontIcon.desktop.kt similarity index 96% rename from fluent/src/desktopMain/kotlin/com/konyaco/fluent/component/FontIcon.desktop.kt rename to fluent/src/desktopMain/kotlin/io/github/composefluent/component/FontIcon.desktop.kt index 7854d0e6..8b8d4175 100644 --- a/fluent/src/desktopMain/kotlin/com/konyaco/fluent/component/FontIcon.desktop.kt +++ b/fluent/src/desktopMain/kotlin/io/github/composefluent/component/FontIcon.desktop.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.component +package io.github.composefluent.component import androidx.compose.runtime.* import androidx.compose.ui.platform.LocalFontFamilyResolver diff --git a/fluent/src/desktopMain/kotlin/com/konyaco/fluent/defaultFontFamily.desktop.kt b/fluent/src/desktopMain/kotlin/io/github/composefluent/defaultFontFamily.desktop.kt similarity index 84% rename from fluent/src/desktopMain/kotlin/com/konyaco/fluent/defaultFontFamily.desktop.kt rename to fluent/src/desktopMain/kotlin/io/github/composefluent/defaultFontFamily.desktop.kt index d8df06b4..a2f4f6dd 100644 --- a/fluent/src/desktopMain/kotlin/com/konyaco/fluent/defaultFontFamily.desktop.kt +++ b/fluent/src/desktopMain/kotlin/io/github/composefluent/defaultFontFamily.desktop.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent +package io.github.composefluent import androidx.compose.runtime.Composable import androidx.compose.ui.text.font.FontFamily diff --git a/fluent/src/iosMain/kotlin/com/konyaco/fluent/DefaultFontFamily.ios.kt b/fluent/src/iosMain/kotlin/com/konyaco/fluent/DefaultFontFamily.ios.kt deleted file mode 100644 index d8df06b4..00000000 --- a/fluent/src/iosMain/kotlin/com/konyaco/fluent/DefaultFontFamily.ios.kt +++ /dev/null @@ -1,9 +0,0 @@ -package com.konyaco.fluent - -import androidx.compose.runtime.Composable -import androidx.compose.ui.text.font.FontFamily - -@Composable -actual fun defaultFontFamily(): FontFamily? { - return null -} \ No newline at end of file diff --git a/fluent/src/iosMain/kotlin/com/konyaco/fluent/PlatformCompositionLocalProvider.ios.kt b/fluent/src/iosMain/kotlin/com/konyaco/fluent/PlatformCompositionLocalProvider.ios.kt deleted file mode 100644 index dd9c8669..00000000 --- a/fluent/src/iosMain/kotlin/com/konyaco/fluent/PlatformCompositionLocalProvider.ios.kt +++ /dev/null @@ -1,9 +0,0 @@ -package com.konyaco.fluent - -import androidx.compose.runtime.Composable - -@Composable -actual fun PlatformCompositionLocalProvider(content: @Composable () -> Unit) { - content() -} - diff --git a/fluent/src/iosMain/kotlin/com/konyaco/fluent/component/CalendarView.ios.kt b/fluent/src/iosMain/kotlin/com/konyaco/fluent/component/CalendarView.ios.kt deleted file mode 100644 index 4387c279..00000000 --- a/fluent/src/iosMain/kotlin/com/konyaco/fluent/component/CalendarView.ios.kt +++ /dev/null @@ -1,16 +0,0 @@ -package com.konyaco.fluent.component - -import platform.Foundation.NSCalendar -import platform.Foundation.NSCalendarIdentifierGregorian -import platform.Foundation.NSDateFormatter - -internal actual fun getLocalDayOfWeekNames(): List { - return NSCalendar(NSCalendarIdentifierGregorian).weekdaySymbols.map { it.toString() } -} - -internal actual fun getLocalMonthNames(): List { - return NSDateFormatter().monthSymbols.map { it.toString().take(3) } //TODO -} - -//https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getWeekInfo -internal actual fun getLocalFirstDayOfWeek() = 2 //the same as jvm \ No newline at end of file diff --git a/fluent/src/iosMain/kotlin/com/konyaco/fluent/component/Dialog.ios.kt b/fluent/src/iosMain/kotlin/com/konyaco/fluent/component/Dialog.ios.kt deleted file mode 100644 index 0f495dd0..00000000 --- a/fluent/src/iosMain/kotlin/com/konyaco/fluent/component/Dialog.ios.kt +++ /dev/null @@ -1,20 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.ui.unit.IntOffset -import androidx.compose.ui.unit.IntRect -import androidx.compose.ui.unit.IntSize -import androidx.compose.ui.unit.LayoutDirection -import androidx.compose.ui.window.PopupPositionProvider - -internal actual val DialogPopupPositionProvider: PopupPositionProvider = DialogPopupPositionProviderImpl - -internal object DialogPopupPositionProviderImpl : PopupPositionProvider { - override fun calculatePosition( - anchorBounds: IntRect, - windowSize: IntSize, - layoutDirection: LayoutDirection, - popupContentSize: IntSize - ): IntOffset { - return IntOffset.Zero - } -} \ No newline at end of file diff --git a/fluent/src/iosMain/kotlin/com/konyaco/fluent/component/FontIcon.ios.kt b/fluent/src/iosMain/kotlin/com/konyaco/fluent/component/FontIcon.ios.kt deleted file mode 100644 index 62808826..00000000 --- a/fluent/src/iosMain/kotlin/com/konyaco/fluent/component/FontIcon.ios.kt +++ /dev/null @@ -1,8 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.runtime.Composable - -@Composable -internal actual fun ProvideFontIcon(content: @Composable () -> Unit) { - content() -} \ No newline at end of file diff --git a/fluent/src/iosMain/kotlin/com/konyaco/fluent/component/PlatformScrollBar.ios.kt b/fluent/src/iosMain/kotlin/com/konyaco/fluent/component/PlatformScrollBar.ios.kt deleted file mode 100644 index 0a68844b..00000000 --- a/fluent/src/iosMain/kotlin/com/konyaco/fluent/component/PlatformScrollBar.ios.kt +++ /dev/null @@ -1,82 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.foundation.ScrollState -import androidx.compose.foundation.lazy.LazyListState -import androidx.compose.foundation.lazy.grid.LazyGridState -import androidx.compose.runtime.Composable -import androidx.compose.ui.Modifier - -actual interface ScrollbarAdapter { - /** - * Scroll offset of the content inside the scrollable component. - * - * For example, a value of `100` could mean the content is scrolled by 100 pixels from the - * start. - */ - actual val scrollOffset: Double - - /** - * The size of the scrollable content, on the scrollable axis. - */ - actual val contentSize: Double - - /** - * The size of the viewport, on the scrollable axis. - */ - actual val viewportSize: Double - - /** - * Instantly jump to [scrollOffset]. - * - * @param scrollOffset target offset to jump to, value will be coerced to the valid - * scroll range. - */ - actual suspend fun scrollTo(scrollOffset: Double) - -} -@Composable -internal actual fun PlatformScrollBar( - isVertical: Boolean, - adapter: ScrollbarAdapter, - modifier: Modifier, - reverseLayout: Boolean, - colors: ScrollbarColors -) { - //TODO Scrollbar browser implementation -} - -@Composable -actual fun rememberScrollbarAdapter( - state: ScrollState -): ScrollbarAdapter { - return EmptyScrollbarAdapter -} - -@Composable -actual fun rememberScrollbarAdapter( - state: LazyListState -): ScrollbarAdapter { - return EmptyScrollbarAdapter -} - -@Composable -actual fun rememberScrollbarAdapter( - state: LazyGridState -): ScrollbarAdapter { - return EmptyScrollbarAdapter -} - -private object EmptyScrollbarAdapter: ScrollbarAdapter { - override val contentSize: Double - get() = 0.0 - - override val scrollOffset: Double - get() = 0.0 - - override val viewportSize: Double - get() = 0.0 - - override suspend fun scrollTo(scrollOffset: Double) { - - } -} \ No newline at end of file diff --git a/fluent/src/iosMain/kotlin/com/konyaco/fluent/component/Popup.ios.kt b/fluent/src/iosMain/kotlin/com/konyaco/fluent/component/Popup.ios.kt deleted file mode 100644 index 8079b839..00000000 --- a/fluent/src/iosMain/kotlin/com/konyaco/fluent/component/Popup.ios.kt +++ /dev/null @@ -1,58 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.runtime.* -import androidx.compose.ui.input.key.KeyEvent -import androidx.compose.ui.unit.IntOffset -import androidx.compose.ui.unit.IntRect -import androidx.compose.ui.unit.IntSize -import androidx.compose.ui.unit.LayoutDirection -import androidx.compose.ui.window.PopupPositionProvider -import androidx.compose.ui.window.PopupProperties - -@Composable -internal actual fun Popup( - popupPositionProvider: PopupPositionProvider, - onDismissRequest: (() -> Unit)?, - properties: PopupProperties, - onPreviewKeyEvent: ((KeyEvent) -> Boolean)?, - onKeyEvent: ((KeyEvent) -> Boolean)?, - content: @Composable () -> Unit -) { - val offset = LocalPopupOffset.current - val delegatePopupPositionProvider = remember(popupPositionProvider) { - DelegatePopupPositionProvider({ offset }, popupPositionProvider) - } - androidx.compose.ui.window.Popup(delegatePopupPositionProvider, onDismissRequest, properties) { - CompositionLocalProvider( - LocalPopupOffset provides delegatePopupPositionProvider.currentOffset, - content = content - ) - } -} - -// Workaround for android nested popup position calculate -private val LocalPopupOffset = staticCompositionLocalOf { IntOffset.Zero } - -private class DelegatePopupPositionProvider( - val offset: () -> IntOffset, - val positionProvider: PopupPositionProvider -): PopupPositionProvider { - - var currentOffset by mutableStateOf(IntOffset.Zero) - - override fun calculatePosition( - anchorBounds: IntRect, - windowSize: IntSize, - layoutDirection: LayoutDirection, - popupContentSize: IntSize - ): IntOffset { - return positionProvider.calculatePosition( - anchorBounds.translate(offset()), - windowSize, - layoutDirection, - popupContentSize - ).apply { - currentOffset = this - } - } -} \ No newline at end of file diff --git a/fluent/src/jsMain/kotlin/com/konyaco/fluent/DefaultFontFamily.js.kt b/fluent/src/jsMain/kotlin/com/konyaco/fluent/DefaultFontFamily.js.kt deleted file mode 100644 index d8df06b4..00000000 --- a/fluent/src/jsMain/kotlin/com/konyaco/fluent/DefaultFontFamily.js.kt +++ /dev/null @@ -1,9 +0,0 @@ -package com.konyaco.fluent - -import androidx.compose.runtime.Composable -import androidx.compose.ui.text.font.FontFamily - -@Composable -actual fun defaultFontFamily(): FontFamily? { - return null -} \ No newline at end of file diff --git a/fluent/src/jsMain/kotlin/com/konyaco/fluent/PlatformCompositionLocalProvider.js.kt b/fluent/src/jsMain/kotlin/com/konyaco/fluent/PlatformCompositionLocalProvider.js.kt deleted file mode 100644 index dd9c8669..00000000 --- a/fluent/src/jsMain/kotlin/com/konyaco/fluent/PlatformCompositionLocalProvider.js.kt +++ /dev/null @@ -1,9 +0,0 @@ -package com.konyaco.fluent - -import androidx.compose.runtime.Composable - -@Composable -actual fun PlatformCompositionLocalProvider(content: @Composable () -> Unit) { - content() -} - diff --git a/fluent/src/jsMain/kotlin/com/konyaco/fluent/component/CalendarView.js.kt b/fluent/src/jsMain/kotlin/com/konyaco/fluent/component/CalendarView.js.kt deleted file mode 100644 index 59878c8b..00000000 --- a/fluent/src/jsMain/kotlin/com/konyaco/fluent/component/CalendarView.js.kt +++ /dev/null @@ -1,164 +0,0 @@ -package com.konyaco.fluent.component - -internal actual fun getLocalDayOfWeekNames(): List { - val jsFun: String = js( - """ - var format = new Intl.DateTimeFormat(navigator.language, { weekday: 'short' }) - var baseDate = new Date(Date.UTC(2017, 0, 1)) // just a Sunday - var weekDays = [] - for (var day = 0; day < 7; day++) { - weekDays.push(format.format(baseDate)) - baseDate.setDate(baseDate.getDate() + 1) - } - weekDays.join(",") - """ - ) - - return jsFun.split(",") -} - -internal actual fun getLocalMonthNames(): List { - val jsFun: String = js( - """ - var format = new Intl.DateTimeFormat(navigator.language, { month: 'short' }) - var months = [] - for (var month = 0; month < 12; month++) { - var testDate = new Date(Date.UTC(2000, month, 1, 0, 0, 0)) - months.push(format.format(testDate)) - } - months.join(",") - """ - ) - - return jsFun.split(",") -} - -// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getWeekInfo -internal actual fun getLocalFirstDayOfWeek(): Int { - // zh-CN -> 1 -> Monday -> 2 - // en-US -> 7 -> Sunday -> 1 - val language = js("navigator.language") as String - val result = js(""" - var result = null - try { - var weekInfo = new Intl.Locale(navigator.language).getWeekInfo() - var firstDay = weekInfo.firstDay - result = firstDay % 7 + 1 - } catch(e) { } - result - """) as Int? ?: fallbackGetLocalFistDayOfWeek(language) - return result -} - -private val localeToFirstDayMap by lazy { - mapOf( - "en-US" to 0, // Sunday - "en-GB" to 1, // Monday - "zh-CN" to 1, // Monday - "fr-FR" to 1, // Monday - "de-DE" to 1, // Monday - "es-ES" to 1, // Monday - "it-IT" to 1, // Monday - "ja-JP" to 0, // Sunday - "ko-KR" to 0, // Sunday - "ru-RU" to 1, // Monday - "ar-SA" to 6, // Saturday - "he-IL" to 0, // Sunday - "af-ZA" to 0, // Sunday - "am-ET" to 1, // Monday - "as-IN" to 1, // Monday - "az-Cyrl" to 1, // Monday - "az-Latn" to 1, // Monday - "be-BY" to 1, // Monday - "bn-BD" to 1, // Monday - "bn-IN" to 1, // Monday - "bs-Cyrl" to 1, // Monday - "bs-Latn" to 1, // Monday - "ca-ES" to 1, // Monday - "ce-RU" to 1, // Monday - "cs-CZ" to 1, // Monday - "cy-GB" to 1, // Monday - "da-DK" to 1, // Monday - "de-AT" to 1, // Monday - "de-LI" to 1, // Monday - "de-LU" to 1, // Monday - "el-CY" to 1, // Monday - "el-GR" to 1, // Monday - "en-CA" to 0, // Sunday - "en-IN" to 0, // Sunday - "en-IE" to 1, // Monday - "es-MX" to 1, // Monday - "es-US" to 1, // Monday - "et-EE" to 1, // Monday - "eu-ES" to 1, // Monday - "fa-IR" to 6, // Saturday - "fi-FI" to 1, // Monday - "fr-CA" to 1, // Monday - "ga-IE" to 1, // Monday - "gd-GB" to 1, // Monday - "gl-ES" to 1, // Monday - "gu-IN" to 1, // Monday - "he-IL" to 0, // Sunday - "hi-IN" to 1, // Monday - "hr-HR" to 1, // Monday - "hu-HU" to 1, // Monday - "hy-AM" to 1, // Monday - "id-ID" to 1, // Monday - "is-IS" to 1, // Monday - "it-CH" to 1, // Monday - "iw-IL" to 0, // Sunday - "ja-JP" to 0, // Sunday - "ka-GE" to 1, // Monday - "kk-KZ" to 1, // Monday - "km-KH" to 1, // Monday - "kn-IN" to 1, // Monday - "ko-KR" to 0, // Sunday - "ky-KG" to 1, // Monday - "lo-LA" to 1, // Monday - "lt-LT" to 1, // Monday - "lv-LV" to 1, // Monday - "mk-MK" to 1, // Monday - "ml-IN" to 1, // Monday - "mn-MN" to 1, // Monday - "mr-IN" to 1, // Monday - "ms-MY" to 1, // Monday - "mt-MT" to 1, // Monday - "ne-NP" to 1, // Monday - "nl-BE" to 1, // Monday - "nl-NL" to 1, // Monday - "no-NO" to 1, // Monday - "pa-IN" to 1, // Monday - "pl-PL" to 1, // Monday - "pt-BR" to 1, // Monday - "pt-PT" to 1, // Monday - "ro-RO" to 1, // Monday - "ru-RU" to 1, // Monday - "si-LK" to 1, // Monday - "sk-SK" to 1, // Monday - "sl-SI" to 1, // Monday - "sq-AL" to 1, // Monday - "sr-Cyrl" to 1, // Monday - "sr-Latn" to 1, // Monday - "sv-SE" to 1, // Monday - "sw-KE" to 1, // Monday - "ta-IN" to 1, // Monday - "te-IN" to 1, // Monday - "th-TH" to 1, // Monday - "tr-TR" to 1, // Monday - "uk-UA" to 1, // Monday - "ur-PK" to 1, // Monday - "uz-Cyrl" to 1, // Monday - "vi-VN" to 1, // Monday - "zh-HK" to 1, // Monday - "zh-MO" to 1, // Monday - "zh-SG" to 1, // Monday - "zh-TW" to 1, // Monday - ) -} - -private const val defaultFirstDay = 1 - -// Workaround for Firefox -private fun fallbackGetLocalFistDayOfWeek(locale: String): Int { - return localeToFirstDayMap.getOrElse(locale) { defaultFirstDay } + 1 -} \ No newline at end of file diff --git a/fluent/src/jsMain/kotlin/com/konyaco/fluent/component/Dialog.js.kt b/fluent/src/jsMain/kotlin/com/konyaco/fluent/component/Dialog.js.kt deleted file mode 100644 index 0f495dd0..00000000 --- a/fluent/src/jsMain/kotlin/com/konyaco/fluent/component/Dialog.js.kt +++ /dev/null @@ -1,20 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.ui.unit.IntOffset -import androidx.compose.ui.unit.IntRect -import androidx.compose.ui.unit.IntSize -import androidx.compose.ui.unit.LayoutDirection -import androidx.compose.ui.window.PopupPositionProvider - -internal actual val DialogPopupPositionProvider: PopupPositionProvider = DialogPopupPositionProviderImpl - -internal object DialogPopupPositionProviderImpl : PopupPositionProvider { - override fun calculatePosition( - anchorBounds: IntRect, - windowSize: IntSize, - layoutDirection: LayoutDirection, - popupContentSize: IntSize - ): IntOffset { - return IntOffset.Zero - } -} \ No newline at end of file diff --git a/fluent/src/jsMain/kotlin/com/konyaco/fluent/component/FontIcon.js.kt b/fluent/src/jsMain/kotlin/com/konyaco/fluent/component/FontIcon.js.kt deleted file mode 100644 index 62808826..00000000 --- a/fluent/src/jsMain/kotlin/com/konyaco/fluent/component/FontIcon.js.kt +++ /dev/null @@ -1,8 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.runtime.Composable - -@Composable -internal actual fun ProvideFontIcon(content: @Composable () -> Unit) { - content() -} \ No newline at end of file diff --git a/fluent/src/jsMain/kotlin/com/konyaco/fluent/component/PlatformScrollBar.js.kt b/fluent/src/jsMain/kotlin/com/konyaco/fluent/component/PlatformScrollBar.js.kt deleted file mode 100644 index 0a68844b..00000000 --- a/fluent/src/jsMain/kotlin/com/konyaco/fluent/component/PlatformScrollBar.js.kt +++ /dev/null @@ -1,82 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.foundation.ScrollState -import androidx.compose.foundation.lazy.LazyListState -import androidx.compose.foundation.lazy.grid.LazyGridState -import androidx.compose.runtime.Composable -import androidx.compose.ui.Modifier - -actual interface ScrollbarAdapter { - /** - * Scroll offset of the content inside the scrollable component. - * - * For example, a value of `100` could mean the content is scrolled by 100 pixels from the - * start. - */ - actual val scrollOffset: Double - - /** - * The size of the scrollable content, on the scrollable axis. - */ - actual val contentSize: Double - - /** - * The size of the viewport, on the scrollable axis. - */ - actual val viewportSize: Double - - /** - * Instantly jump to [scrollOffset]. - * - * @param scrollOffset target offset to jump to, value will be coerced to the valid - * scroll range. - */ - actual suspend fun scrollTo(scrollOffset: Double) - -} -@Composable -internal actual fun PlatformScrollBar( - isVertical: Boolean, - adapter: ScrollbarAdapter, - modifier: Modifier, - reverseLayout: Boolean, - colors: ScrollbarColors -) { - //TODO Scrollbar browser implementation -} - -@Composable -actual fun rememberScrollbarAdapter( - state: ScrollState -): ScrollbarAdapter { - return EmptyScrollbarAdapter -} - -@Composable -actual fun rememberScrollbarAdapter( - state: LazyListState -): ScrollbarAdapter { - return EmptyScrollbarAdapter -} - -@Composable -actual fun rememberScrollbarAdapter( - state: LazyGridState -): ScrollbarAdapter { - return EmptyScrollbarAdapter -} - -private object EmptyScrollbarAdapter: ScrollbarAdapter { - override val contentSize: Double - get() = 0.0 - - override val scrollOffset: Double - get() = 0.0 - - override val viewportSize: Double - get() = 0.0 - - override suspend fun scrollTo(scrollOffset: Double) { - - } -} \ No newline at end of file diff --git a/fluent/src/jsMain/kotlin/com/konyaco/fluent/component/Popup.js.kt b/fluent/src/jsMain/kotlin/com/konyaco/fluent/component/Popup.js.kt deleted file mode 100644 index 8079b839..00000000 --- a/fluent/src/jsMain/kotlin/com/konyaco/fluent/component/Popup.js.kt +++ /dev/null @@ -1,58 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.runtime.* -import androidx.compose.ui.input.key.KeyEvent -import androidx.compose.ui.unit.IntOffset -import androidx.compose.ui.unit.IntRect -import androidx.compose.ui.unit.IntSize -import androidx.compose.ui.unit.LayoutDirection -import androidx.compose.ui.window.PopupPositionProvider -import androidx.compose.ui.window.PopupProperties - -@Composable -internal actual fun Popup( - popupPositionProvider: PopupPositionProvider, - onDismissRequest: (() -> Unit)?, - properties: PopupProperties, - onPreviewKeyEvent: ((KeyEvent) -> Boolean)?, - onKeyEvent: ((KeyEvent) -> Boolean)?, - content: @Composable () -> Unit -) { - val offset = LocalPopupOffset.current - val delegatePopupPositionProvider = remember(popupPositionProvider) { - DelegatePopupPositionProvider({ offset }, popupPositionProvider) - } - androidx.compose.ui.window.Popup(delegatePopupPositionProvider, onDismissRequest, properties) { - CompositionLocalProvider( - LocalPopupOffset provides delegatePopupPositionProvider.currentOffset, - content = content - ) - } -} - -// Workaround for android nested popup position calculate -private val LocalPopupOffset = staticCompositionLocalOf { IntOffset.Zero } - -private class DelegatePopupPositionProvider( - val offset: () -> IntOffset, - val positionProvider: PopupPositionProvider -): PopupPositionProvider { - - var currentOffset by mutableStateOf(IntOffset.Zero) - - override fun calculatePosition( - anchorBounds: IntRect, - windowSize: IntSize, - layoutDirection: LayoutDirection, - popupContentSize: IntSize - ): IntOffset { - return positionProvider.calculatePosition( - anchorBounds.translate(offset()), - windowSize, - layoutDirection, - popupContentSize - ).apply { - currentOffset = this - } - } -} \ No newline at end of file diff --git a/fluent/src/jsMain/kotlin/io/github/composefluent/component/CalendarView.js.kt b/fluent/src/jsMain/kotlin/io/github/composefluent/component/CalendarView.js.kt new file mode 100644 index 00000000..dac3ad52 --- /dev/null +++ b/fluent/src/jsMain/kotlin/io/github/composefluent/component/CalendarView.js.kt @@ -0,0 +1,51 @@ +package io.github.composefluent.component + +internal actual fun getLocalDayOfWeekNames(): List { + val jsFun: String = js( + """ + var format = new Intl.DateTimeFormat(navigator.language, { weekday: 'short' }) + var baseDate = new Date(Date.UTC(2017, 0, 1)) // just a Sunday + var weekDays = [] + for (var day = 0; day < 7; day++) { + weekDays.push(format.format(baseDate)) + baseDate.setDate(baseDate.getDate() + 1) + } + weekDays.join(",") + """ + ) + + return jsFun.split(",") +} + +internal actual fun getLocalMonthNames(): List { + val jsFun: String = js( + """ + var format = new Intl.DateTimeFormat(navigator.language, { month: 'short' }) + var months = [] + for (var month = 0; month < 12; month++) { + var testDate = new Date(Date.UTC(2000, month, 1, 0, 0, 0)) + months.push(format.format(testDate)) + } + months.join(",") + """ + ) + + return jsFun.split(",") +} + +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getWeekInfo +internal actual fun getLocalFirstDayOfWeek(): Int { + // zh-CN -> 1 -> Monday -> 2 + // en-US -> 7 -> Sunday -> 1 + val language = js("navigator.language") as String + val result = js(""" + var result = null + try { + var weekInfo = new Intl.Locale(navigator.language).getWeekInfo() + var firstDay = weekInfo.firstDay + result = firstDay % 7 + 1 + } catch(e) { } + result + """) as Int? ?: fallbackGetLocalFistDayOfWeek(language) + return result +} \ No newline at end of file diff --git a/fluent/src/skikoMain/kotlin/io/github/composefluent/background/Elevation.skiko.kt b/fluent/src/skikoMain/kotlin/io/github/composefluent/background/Elevation.skiko.kt new file mode 100644 index 00000000..7a9126eb --- /dev/null +++ b/fluent/src/skikoMain/kotlin/io/github/composefluent/background/Elevation.skiko.kt @@ -0,0 +1,17 @@ +package io.github.composefluent.background + +import androidx.compose.ui.graphics.BlurEffect +import androidx.compose.ui.graphics.Paint +import org.jetbrains.skia.FilterBlurMode +import org.jetbrains.skia.MaskFilter + +internal actual fun Paint.applyShadowMaskFilter(radius: Float) { + asFrameworkPaint().maskFilter = MaskFilter.makeBlur( + mode = FilterBlurMode.NORMAL, + sigma = BlurEffect.convertRadiusToSigma(radius) + ) +} + +internal actual fun supportFluentElevation(): Boolean { + return true +} \ No newline at end of file diff --git a/fluent/src/skikoMain/kotlin/io/github/composefluent/background/Material.skiko.kt b/fluent/src/skikoMain/kotlin/io/github/composefluent/background/Material.skiko.kt new file mode 100644 index 00000000..94b807f9 --- /dev/null +++ b/fluent/src/skikoMain/kotlin/io/github/composefluent/background/Material.skiko.kt @@ -0,0 +1,5 @@ +package io.github.composefluent.background + +internal actual fun supportMaterial(): Boolean { + return true +} \ No newline at end of file diff --git a/fluent/src/skikoMain/kotlin/io/github/composefluent/component/Flyout.skiko.kt b/fluent/src/skikoMain/kotlin/io/github/composefluent/component/Flyout.skiko.kt new file mode 100644 index 00000000..6c3090c5 --- /dev/null +++ b/fluent/src/skikoMain/kotlin/io/github/composefluent/component/Flyout.skiko.kt @@ -0,0 +1,29 @@ +package io.github.composefluent.component + +import androidx.compose.runtime.Composable +import androidx.compose.runtime.remember +import androidx.compose.ui.ExperimentalComposeUiApi +import androidx.compose.ui.layout.LayoutCoordinates +import androidx.compose.ui.layout.boundsInWindow +import androidx.compose.ui.platform.LocalDensity +import androidx.compose.ui.platform.LocalWindowInfo +import androidx.compose.ui.unit.Dp +import androidx.compose.ui.unit.toIntRect +import kotlin.math.max + +@OptIn(ExperimentalComposeUiApi::class) +@Composable +actual fun rememberFlyoutCalculateMaxHeight(padding: Dp): (anchorCoordinates: LayoutCoordinates) -> Int { + val windowInfo = LocalWindowInfo.current + val density = LocalDensity.current + val verticalMarginInPx = with(LocalDensity.current) { padding.roundToPx() } + return remember(windowInfo, density) { + { + val boundsInWindow = it.boundsInWindow() + val visibleWindowBounds = windowInfo.containerSize.toIntRect() + val heightAbove = boundsInWindow.top - visibleWindowBounds.top + val heightBelow = visibleWindowBounds.height - boundsInWindow.bottom + max(heightAbove, heightBelow).toInt() - verticalMarginInPx + } + } +} \ No newline at end of file diff --git a/fluent/src/skikoMain/kotlin/io/github/composefluent/component/PlatformScrollBar.skiko.kt b/fluent/src/skikoMain/kotlin/io/github/composefluent/component/PlatformScrollBar.skiko.kt new file mode 100644 index 00000000..7cac8a73 --- /dev/null +++ b/fluent/src/skikoMain/kotlin/io/github/composefluent/component/PlatformScrollBar.skiko.kt @@ -0,0 +1,213 @@ +package io.github.composefluent.component + +import androidx.compose.animation.core.animateFloatAsState +import androidx.compose.animation.core.tween +import androidx.compose.foundation.* +import androidx.compose.foundation.background +import androidx.compose.foundation.gestures.Orientation +import androidx.compose.foundation.gestures.rememberScrollableState +import androidx.compose.foundation.gestures.scrollable +import androidx.compose.foundation.hoverable +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.interaction.collectIsDraggedAsState +import androidx.compose.foundation.interaction.collectIsFocusedAsState +import androidx.compose.foundation.interaction.collectIsHoveredAsState +import androidx.compose.foundation.interaction.collectIsPressedAsState +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.Spacer +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.width +import androidx.compose.foundation.layout.wrapContentHeight +import androidx.compose.foundation.layout.wrapContentWidth +import androidx.compose.foundation.lazy.LazyListState +import androidx.compose.foundation.lazy.grid.LazyGridState +import androidx.compose.foundation.shape.CircleShape +import androidx.compose.foundation.text.TextFieldScrollState +import androidx.compose.runtime.* +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.unit.dp +import androidx.compose.ui.unit.lerp +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import kotlinx.coroutines.delay +import kotlinx.coroutines.launch + +actual typealias ScrollbarAdapter = androidx.compose.foundation.v2.ScrollbarAdapter + +@Composable +internal actual fun PlatformScrollBar( + isVertical: Boolean, + adapter: ScrollbarAdapter, + modifier: Modifier, + reverseLayout: Boolean, + colors: ScrollbarColors +) { + val interactionSource = remember { + MutableInteractionSource() + } + val containerInteraction = remember { + MutableInteractionSource() + } + val hovered by containerInteraction.collectIsHoveredAsState() + var delayedHovered by remember(containerInteraction) { + mutableStateOf(false) + } + LaunchedEffect(hovered) { + delay(ScrollbarDefaults.hoverDurationMillis.toLong()) + delayedHovered = hovered + } + val pressed by interactionSource.collectIsPressedAsState() + val focused by interactionSource.collectIsFocusedAsState() + val dragged by interactionSource.collectIsDraggedAsState() + val isThicknessHighLight by remember { + derivedStateOf { + (delayedHovered || pressed || focused || dragged) && adapter.contentSize > adapter.viewportSize + } + } + + val animationFraction by animateFloatAsState( + targetValue = if (isThicknessHighLight) { + 1f + } else { + 0f + }, + animationSpec = tween(FluentDuration.ShortDuration, easing = FluentEasing.FastInvokeEasing) + ) + val thickness = lerp( + ScrollbarDefaults.thickness, + ScrollbarDefaults.thicknessHighlight, + animationFraction + ) + + val style = ScrollbarStyle( + thickness = thickness, + unhoverColor = colors.contentColor, + hoverColor = if (pressed || dragged || focused) { + colors.contentColorPressed + } else { + colors.contentColorHovered + }, + hoverDurationMillis = FluentDuration.ShortDuration, + shape = ScrollbarDefaults.shape, + minimalHeight = 16.dp + ) + + val scrollScope = rememberCoroutineScope() + val scrollbarScrollState = rememberScrollableState { + scrollScope.launch { + adapter.scrollTo(adapter.scrollOffset - it) + } + it + } + val trackColor = colors.backgroundColor.copy(animationFraction) + if (isVertical) { + Column( + horizontalAlignment = Alignment.CenterHorizontally, + modifier = Modifier.hoverable(containerInteraction) + .width(12.dp) + .background( + color = trackColor, + shape = CircleShape + ) + .scrollable( + state = scrollbarScrollState, + orientation = Orientation.Vertical, + reverseDirection = reverseLayout + ) + ) { + Spacer(Modifier.height(2.dp)) + ScrollbarIndicator( + adapter = adapter, + isVertical = true, + visible = isThicknessHighLight, + forward = true + ) + // TODO: Use Acrylic as scrollbar's track + VerticalScrollbar( + adapter = adapter, + modifier = modifier.width(ScrollbarDefaults.thicknessHighlight) + .wrapContentWidth(Alignment.End) + .weight(1f), + style = style, + reverseLayout = reverseLayout, + interactionSource = interactionSource + ) + ScrollbarIndicator( + adapter = adapter, + isVertical = true, + visible = isThicknessHighLight + ) + Spacer(Modifier.height(2.dp)) + } + } else { + Row( + verticalAlignment = Alignment.CenterVertically, + modifier = Modifier.hoverable(containerInteraction) + .height(12.dp) + .background( + color = trackColor, + shape = CircleShape + ) + .scrollable( + state = scrollbarScrollState, + orientation = Orientation.Horizontal, + reverseDirection = reverseLayout + ) + ) { + Spacer(Modifier.width(2.dp)) + ScrollbarIndicator( + adapter = adapter, + isVertical = false, + visible = isThicknessHighLight, + forward = true + ) + HorizontalScrollbar( + adapter = adapter, + modifier = modifier.height(ScrollbarDefaults.thicknessHighlight) + .wrapContentHeight(Alignment.Bottom) + .weight(1f), + style = style, + reverseLayout = reverseLayout, + interactionSource = interactionSource + ) + ScrollbarIndicator( + adapter = adapter, + isVertical = false, + visible = isThicknessHighLight + ) + Spacer(Modifier.width(2.dp)) + } + } +} + +@Composable +actual fun rememberScrollbarAdapter( + state: ScrollState +): ScrollbarAdapter { + return androidx.compose.foundation.rememberScrollbarAdapter(state) +} + +//TODO move to CommonMain +@OptIn(ExperimentalFoundationApi::class) +@Composable +fun rememberScrollbarAdapter( + state: TextFieldScrollState +): ScrollbarAdapter { + return androidx.compose.foundation.rememberScrollbarAdapter(state) +} + +@Composable +actual fun rememberScrollbarAdapter( + state: LazyListState +): ScrollbarAdapter { + return androidx.compose.foundation.rememberScrollbarAdapter(state) +} + +@Composable +actual fun rememberScrollbarAdapter( + state: LazyGridState +): ScrollbarAdapter { + return androidx.compose.foundation.rememberScrollbarAdapter(state) +} \ No newline at end of file diff --git a/fluent/src/skikoMain/kotlin/io/github/composefluent/component/Popup.skiko.kt b/fluent/src/skikoMain/kotlin/io/github/composefluent/component/Popup.skiko.kt new file mode 100644 index 00000000..650864a8 --- /dev/null +++ b/fluent/src/skikoMain/kotlin/io/github/composefluent/component/Popup.skiko.kt @@ -0,0 +1,24 @@ +package io.github.composefluent.component + +import androidx.compose.runtime.Composable +import androidx.compose.ui.input.key.KeyEvent +import androidx.compose.ui.window.Popup +import androidx.compose.ui.window.PopupPositionProvider +import androidx.compose.ui.window.PopupProperties + +@Composable +internal actual fun Popup( + popupPositionProvider: PopupPositionProvider, + onDismissRequest: (() -> Unit)?, + properties: PopupProperties, + onPreviewKeyEvent: ((KeyEvent) -> Boolean)?, + onKeyEvent: ((KeyEvent) -> Boolean)?, + content: @Composable () -> Unit +) = Popup( + popupPositionProvider, + onDismissRequest, + properties, + onPreviewKeyEvent, + onKeyEvent, + content +) \ No newline at end of file diff --git a/fluent/src/wasmJsMain/kotlin/com/konyaco/fluent/DefaultFontFamily.wasmJs.kt b/fluent/src/wasmJsMain/kotlin/com/konyaco/fluent/DefaultFontFamily.wasmJs.kt deleted file mode 100644 index d8df06b4..00000000 --- a/fluent/src/wasmJsMain/kotlin/com/konyaco/fluent/DefaultFontFamily.wasmJs.kt +++ /dev/null @@ -1,9 +0,0 @@ -package com.konyaco.fluent - -import androidx.compose.runtime.Composable -import androidx.compose.ui.text.font.FontFamily - -@Composable -actual fun defaultFontFamily(): FontFamily? { - return null -} \ No newline at end of file diff --git a/fluent/src/wasmJsMain/kotlin/com/konyaco/fluent/PlatformCompositionLocalProvider.wasmJs.kt b/fluent/src/wasmJsMain/kotlin/com/konyaco/fluent/PlatformCompositionLocalProvider.wasmJs.kt deleted file mode 100644 index dd9c8669..00000000 --- a/fluent/src/wasmJsMain/kotlin/com/konyaco/fluent/PlatformCompositionLocalProvider.wasmJs.kt +++ /dev/null @@ -1,9 +0,0 @@ -package com.konyaco.fluent - -import androidx.compose.runtime.Composable - -@Composable -actual fun PlatformCompositionLocalProvider(content: @Composable () -> Unit) { - content() -} - diff --git a/fluent/src/wasmJsMain/kotlin/com/konyaco/fluent/component/CalendarView.wasmJs.kt b/fluent/src/wasmJsMain/kotlin/com/konyaco/fluent/component/CalendarView.wasmJs.kt deleted file mode 100644 index 130b9ca3..00000000 --- a/fluent/src/wasmJsMain/kotlin/com/konyaco/fluent/component/CalendarView.wasmJs.kt +++ /dev/null @@ -1,162 +0,0 @@ -package com.konyaco.fluent.component - -@JsFun("""(style) => { - var format = new Intl.DateTimeFormat(navigator.language, { weekday: style }) - var baseDate = new Date(Date.UTC(2017, 0, 1)) // just a Sunday - var weekDays = [] - for (var day = 0; day < 7; day++) { - weekDays.push(format.format(baseDate)) - baseDate.setDate(baseDate.getDate() + 1) - } - return weekDays.join(",") -}""") -private external fun getJsLocalDayOfWeekNames(format: String): String - -internal actual fun getLocalDayOfWeekNames() = - getJsLocalDayOfWeekNames("short").split(",") - -@JsFun("""(style) => { - var format = new Intl.DateTimeFormat(navigator.language, { month: style }) - var months = [] - for (var month = 0; month < 12; month++) { - var testDate = new Date(Date.UTC(2000, month, 1, 0, 0, 0)) - months.push(format.format(testDate)) - } - return months.join(",") -}""") -private external fun getJsLocalMonthNames(format: String): String - -internal actual fun getLocalMonthNames(): List = - getJsLocalMonthNames("short").split(",") - -// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getWeekInfo -internal actual fun getLocalFirstDayOfWeek(): Int { - return getJsLocalFirstDayOfWeek() ?: fallbackGetLocalFistDayOfWeek(getJsLanguage()) -} - -@JsFun("""() => { - var result = null - try { - var weekInfo = new Intl.Locale(navigator.language).getWeekInfo() - var firstDay = weekInfo.firstDay - result = firstDay % 7 + 1 - } catch(e) { } - return result -}""") -private external fun getJsLocalFirstDayOfWeek(): Int? - -@JsFun("""() => navigator.language""") -private external fun getJsLanguage(): String - -private val localeToFirstDayMap by lazy { - mapOf( - "en-US" to 0, // Sunday - "en-GB" to 1, // Monday - "zh-CN" to 1, // Monday - "fr-FR" to 1, // Monday - "de-DE" to 1, // Monday - "es-ES" to 1, // Monday - "it-IT" to 1, // Monday - "ja-JP" to 0, // Sunday - "ko-KR" to 0, // Sunday - "ru-RU" to 1, // Monday - "ar-SA" to 6, // Saturday - "he-IL" to 0, // Sunday - "af-ZA" to 0, // Sunday - "am-ET" to 1, // Monday - "as-IN" to 1, // Monday - "az-Cyrl" to 1, // Monday - "az-Latn" to 1, // Monday - "be-BY" to 1, // Monday - "bn-BD" to 1, // Monday - "bn-IN" to 1, // Monday - "bs-Cyrl" to 1, // Monday - "bs-Latn" to 1, // Monday - "ca-ES" to 1, // Monday - "ce-RU" to 1, // Monday - "cs-CZ" to 1, // Monday - "cy-GB" to 1, // Monday - "da-DK" to 1, // Monday - "de-AT" to 1, // Monday - "de-LI" to 1, // Monday - "de-LU" to 1, // Monday - "el-CY" to 1, // Monday - "el-GR" to 1, // Monday - "en-CA" to 0, // Sunday - "en-IN" to 0, // Sunday - "en-IE" to 1, // Monday - "es-MX" to 1, // Monday - "es-US" to 1, // Monday - "et-EE" to 1, // Monday - "eu-ES" to 1, // Monday - "fa-IR" to 6, // Saturday - "fi-FI" to 1, // Monday - "fr-CA" to 1, // Monday - "ga-IE" to 1, // Monday - "gd-GB" to 1, // Monday - "gl-ES" to 1, // Monday - "gu-IN" to 1, // Monday - "he-IL" to 0, // Sunday - "hi-IN" to 1, // Monday - "hr-HR" to 1, // Monday - "hu-HU" to 1, // Monday - "hy-AM" to 1, // Monday - "id-ID" to 1, // Monday - "is-IS" to 1, // Monday - "it-CH" to 1, // Monday - "iw-IL" to 0, // Sunday - "ja-JP" to 0, // Sunday - "ka-GE" to 1, // Monday - "kk-KZ" to 1, // Monday - "km-KH" to 1, // Monday - "kn-IN" to 1, // Monday - "ko-KR" to 0, // Sunday - "ky-KG" to 1, // Monday - "lo-LA" to 1, // Monday - "lt-LT" to 1, // Monday - "lv-LV" to 1, // Monday - "mk-MK" to 1, // Monday - "ml-IN" to 1, // Monday - "mn-MN" to 1, // Monday - "mr-IN" to 1, // Monday - "ms-MY" to 1, // Monday - "mt-MT" to 1, // Monday - "ne-NP" to 1, // Monday - "nl-BE" to 1, // Monday - "nl-NL" to 1, // Monday - "no-NO" to 1, // Monday - "pa-IN" to 1, // Monday - "pl-PL" to 1, // Monday - "pt-BR" to 1, // Monday - "pt-PT" to 1, // Monday - "ro-RO" to 1, // Monday - "ru-RU" to 1, // Monday - "si-LK" to 1, // Monday - "sk-SK" to 1, // Monday - "sl-SI" to 1, // Monday - "sq-AL" to 1, // Monday - "sr-Cyrl" to 1, // Monday - "sr-Latn" to 1, // Monday - "sv-SE" to 1, // Monday - "sw-KE" to 1, // Monday - "ta-IN" to 1, // Monday - "te-IN" to 1, // Monday - "th-TH" to 1, // Monday - "tr-TR" to 1, // Monday - "uk-UA" to 1, // Monday - "ur-PK" to 1, // Monday - "uz-Cyrl" to 1, // Monday - "vi-VN" to 1, // Monday - "zh-HK" to 1, // Monday - "zh-MO" to 1, // Monday - "zh-SG" to 1, // Monday - "zh-TW" to 1, // Monday - ) -} - -private const val defaultFirstDay = 1 - -// Workaround for Firefox -private fun fallbackGetLocalFistDayOfWeek(locale: String): Int { - return localeToFirstDayMap.getOrElse(locale) { defaultFirstDay } + 1 -} \ No newline at end of file diff --git a/fluent/src/wasmJsMain/kotlin/com/konyaco/fluent/component/Dialog.wasmJs.kt b/fluent/src/wasmJsMain/kotlin/com/konyaco/fluent/component/Dialog.wasmJs.kt deleted file mode 100644 index 0f495dd0..00000000 --- a/fluent/src/wasmJsMain/kotlin/com/konyaco/fluent/component/Dialog.wasmJs.kt +++ /dev/null @@ -1,20 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.ui.unit.IntOffset -import androidx.compose.ui.unit.IntRect -import androidx.compose.ui.unit.IntSize -import androidx.compose.ui.unit.LayoutDirection -import androidx.compose.ui.window.PopupPositionProvider - -internal actual val DialogPopupPositionProvider: PopupPositionProvider = DialogPopupPositionProviderImpl - -internal object DialogPopupPositionProviderImpl : PopupPositionProvider { - override fun calculatePosition( - anchorBounds: IntRect, - windowSize: IntSize, - layoutDirection: LayoutDirection, - popupContentSize: IntSize - ): IntOffset { - return IntOffset.Zero - } -} \ No newline at end of file diff --git a/fluent/src/wasmJsMain/kotlin/com/konyaco/fluent/component/FontIcon.wasmJs.kt b/fluent/src/wasmJsMain/kotlin/com/konyaco/fluent/component/FontIcon.wasmJs.kt deleted file mode 100644 index 62808826..00000000 --- a/fluent/src/wasmJsMain/kotlin/com/konyaco/fluent/component/FontIcon.wasmJs.kt +++ /dev/null @@ -1,8 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.runtime.Composable - -@Composable -internal actual fun ProvideFontIcon(content: @Composable () -> Unit) { - content() -} \ No newline at end of file diff --git a/fluent/src/wasmJsMain/kotlin/com/konyaco/fluent/component/PlatformScrollBar.wasmJs.kt b/fluent/src/wasmJsMain/kotlin/com/konyaco/fluent/component/PlatformScrollBar.wasmJs.kt deleted file mode 100644 index 0a68844b..00000000 --- a/fluent/src/wasmJsMain/kotlin/com/konyaco/fluent/component/PlatformScrollBar.wasmJs.kt +++ /dev/null @@ -1,82 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.foundation.ScrollState -import androidx.compose.foundation.lazy.LazyListState -import androidx.compose.foundation.lazy.grid.LazyGridState -import androidx.compose.runtime.Composable -import androidx.compose.ui.Modifier - -actual interface ScrollbarAdapter { - /** - * Scroll offset of the content inside the scrollable component. - * - * For example, a value of `100` could mean the content is scrolled by 100 pixels from the - * start. - */ - actual val scrollOffset: Double - - /** - * The size of the scrollable content, on the scrollable axis. - */ - actual val contentSize: Double - - /** - * The size of the viewport, on the scrollable axis. - */ - actual val viewportSize: Double - - /** - * Instantly jump to [scrollOffset]. - * - * @param scrollOffset target offset to jump to, value will be coerced to the valid - * scroll range. - */ - actual suspend fun scrollTo(scrollOffset: Double) - -} -@Composable -internal actual fun PlatformScrollBar( - isVertical: Boolean, - adapter: ScrollbarAdapter, - modifier: Modifier, - reverseLayout: Boolean, - colors: ScrollbarColors -) { - //TODO Scrollbar browser implementation -} - -@Composable -actual fun rememberScrollbarAdapter( - state: ScrollState -): ScrollbarAdapter { - return EmptyScrollbarAdapter -} - -@Composable -actual fun rememberScrollbarAdapter( - state: LazyListState -): ScrollbarAdapter { - return EmptyScrollbarAdapter -} - -@Composable -actual fun rememberScrollbarAdapter( - state: LazyGridState -): ScrollbarAdapter { - return EmptyScrollbarAdapter -} - -private object EmptyScrollbarAdapter: ScrollbarAdapter { - override val contentSize: Double - get() = 0.0 - - override val scrollOffset: Double - get() = 0.0 - - override val viewportSize: Double - get() = 0.0 - - override suspend fun scrollTo(scrollOffset: Double) { - - } -} \ No newline at end of file diff --git a/fluent/src/wasmJsMain/kotlin/com/konyaco/fluent/component/Popup.wasmJs.kt b/fluent/src/wasmJsMain/kotlin/com/konyaco/fluent/component/Popup.wasmJs.kt deleted file mode 100644 index 8079b839..00000000 --- a/fluent/src/wasmJsMain/kotlin/com/konyaco/fluent/component/Popup.wasmJs.kt +++ /dev/null @@ -1,58 +0,0 @@ -package com.konyaco.fluent.component - -import androidx.compose.runtime.* -import androidx.compose.ui.input.key.KeyEvent -import androidx.compose.ui.unit.IntOffset -import androidx.compose.ui.unit.IntRect -import androidx.compose.ui.unit.IntSize -import androidx.compose.ui.unit.LayoutDirection -import androidx.compose.ui.window.PopupPositionProvider -import androidx.compose.ui.window.PopupProperties - -@Composable -internal actual fun Popup( - popupPositionProvider: PopupPositionProvider, - onDismissRequest: (() -> Unit)?, - properties: PopupProperties, - onPreviewKeyEvent: ((KeyEvent) -> Boolean)?, - onKeyEvent: ((KeyEvent) -> Boolean)?, - content: @Composable () -> Unit -) { - val offset = LocalPopupOffset.current - val delegatePopupPositionProvider = remember(popupPositionProvider) { - DelegatePopupPositionProvider({ offset }, popupPositionProvider) - } - androidx.compose.ui.window.Popup(delegatePopupPositionProvider, onDismissRequest, properties) { - CompositionLocalProvider( - LocalPopupOffset provides delegatePopupPositionProvider.currentOffset, - content = content - ) - } -} - -// Workaround for android nested popup position calculate -private val LocalPopupOffset = staticCompositionLocalOf { IntOffset.Zero } - -private class DelegatePopupPositionProvider( - val offset: () -> IntOffset, - val positionProvider: PopupPositionProvider -): PopupPositionProvider { - - var currentOffset by mutableStateOf(IntOffset.Zero) - - override fun calculatePosition( - anchorBounds: IntRect, - windowSize: IntSize, - layoutDirection: LayoutDirection, - popupContentSize: IntSize - ): IntOffset { - return positionProvider.calculatePosition( - anchorBounds.translate(offset()), - windowSize, - layoutDirection, - popupContentSize - ).apply { - currentOffset = this - } - } -} \ No newline at end of file diff --git a/fluent/src/wasmJsMain/kotlin/io/github/composefluent/component/CalendarView.wasmJs.kt b/fluent/src/wasmJsMain/kotlin/io/github/composefluent/component/CalendarView.wasmJs.kt new file mode 100644 index 00000000..353c5714 --- /dev/null +++ b/fluent/src/wasmJsMain/kotlin/io/github/composefluent/component/CalendarView.wasmJs.kt @@ -0,0 +1,49 @@ +package io.github.composefluent.component + +@JsFun("""(style) => { + var format = new Intl.DateTimeFormat(navigator.language, { weekday: style }) + var baseDate = new Date(Date.UTC(2017, 0, 1)) // just a Sunday + var weekDays = [] + for (var day = 0; day < 7; day++) { + weekDays.push(format.format(baseDate)) + baseDate.setDate(baseDate.getDate() + 1) + } + return weekDays.join(",") +}""") +private external fun getJsLocalDayOfWeekNames(format: String): String + +internal actual fun getLocalDayOfWeekNames() = + getJsLocalDayOfWeekNames("short").split(",") + +@JsFun("""(style) => { + var format = new Intl.DateTimeFormat(navigator.language, { month: style }) + var months = [] + for (var month = 0; month < 12; month++) { + var testDate = new Date(Date.UTC(2000, month, 1, 0, 0, 0)) + months.push(format.format(testDate)) + } + return months.join(",") +}""") +private external fun getJsLocalMonthNames(format: String): String + +internal actual fun getLocalMonthNames(): List = + getJsLocalMonthNames("short").split(",") + +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getWeekInfo +internal actual fun getLocalFirstDayOfWeek(): Int { + return getJsLocalFirstDayOfWeek() ?: fallbackGetLocalFistDayOfWeek(getJsLanguage()) +} + +@JsFun("""() => { + var result = null + try { + var weekInfo = new Intl.Locale(navigator.language).getWeekInfo() + var firstDay = weekInfo.firstDay + result = firstDay % 7 + 1 + } catch(e) { } + return result +}""") +private external fun getJsLocalFirstDayOfWeek(): Int? + +@JsFun("""() => navigator.language""") +private external fun getJsLanguage(): String \ No newline at end of file diff --git a/fluent/src/webMain/kotlin/io/github/composefluent/DefaultFontFamily.web.kt b/fluent/src/webMain/kotlin/io/github/composefluent/DefaultFontFamily.web.kt new file mode 100644 index 00000000..a2f4f6dd --- /dev/null +++ b/fluent/src/webMain/kotlin/io/github/composefluent/DefaultFontFamily.web.kt @@ -0,0 +1,9 @@ +package io.github.composefluent + +import androidx.compose.runtime.Composable +import androidx.compose.ui.text.font.FontFamily + +@Composable +actual fun defaultFontFamily(): FontFamily? { + return null +} \ No newline at end of file diff --git a/fluent/src/webMain/kotlin/io/github/composefluent/PlatformCompositionLocalProvider.web.kt b/fluent/src/webMain/kotlin/io/github/composefluent/PlatformCompositionLocalProvider.web.kt new file mode 100644 index 00000000..aad9a1e4 --- /dev/null +++ b/fluent/src/webMain/kotlin/io/github/composefluent/PlatformCompositionLocalProvider.web.kt @@ -0,0 +1,9 @@ +package io.github.composefluent + +import androidx.compose.runtime.Composable + +@Composable +actual fun PlatformCompositionLocalProvider(content: @Composable () -> Unit) { + content() +} + diff --git a/fluent/src/webMain/kotlin/io/github/composefluent/component/CalendarView.web.kt b/fluent/src/webMain/kotlin/io/github/composefluent/component/CalendarView.web.kt new file mode 100644 index 00000000..43b85e1b --- /dev/null +++ b/fluent/src/webMain/kotlin/io/github/composefluent/component/CalendarView.web.kt @@ -0,0 +1,114 @@ +package io.github.composefluent.component + +private val localeToFirstDayMap by lazy { + mapOf( + "en-US" to 0, // Sunday + "en-GB" to 1, // Monday + "zh-CN" to 1, // Monday + "fr-FR" to 1, // Monday + "de-DE" to 1, // Monday + "es-ES" to 1, // Monday + "it-IT" to 1, // Monday + "ja-JP" to 0, // Sunday + "ko-KR" to 0, // Sunday + "ru-RU" to 1, // Monday + "ar-SA" to 6, // Saturday + "he-IL" to 0, // Sunday + "af-ZA" to 0, // Sunday + "am-ET" to 1, // Monday + "as-IN" to 1, // Monday + "az-Cyrl" to 1, // Monday + "az-Latn" to 1, // Monday + "be-BY" to 1, // Monday + "bn-BD" to 1, // Monday + "bn-IN" to 1, // Monday + "bs-Cyrl" to 1, // Monday + "bs-Latn" to 1, // Monday + "ca-ES" to 1, // Monday + "ce-RU" to 1, // Monday + "cs-CZ" to 1, // Monday + "cy-GB" to 1, // Monday + "da-DK" to 1, // Monday + "de-AT" to 1, // Monday + "de-LI" to 1, // Monday + "de-LU" to 1, // Monday + "el-CY" to 1, // Monday + "el-GR" to 1, // Monday + "en-CA" to 0, // Sunday + "en-IN" to 0, // Sunday + "en-IE" to 1, // Monday + "es-MX" to 1, // Monday + "es-US" to 1, // Monday + "et-EE" to 1, // Monday + "eu-ES" to 1, // Monday + "fa-IR" to 6, // Saturday + "fi-FI" to 1, // Monday + "fr-CA" to 1, // Monday + "ga-IE" to 1, // Monday + "gd-GB" to 1, // Monday + "gl-ES" to 1, // Monday + "gu-IN" to 1, // Monday + "he-IL" to 0, // Sunday + "hi-IN" to 1, // Monday + "hr-HR" to 1, // Monday + "hu-HU" to 1, // Monday + "hy-AM" to 1, // Monday + "id-ID" to 1, // Monday + "is-IS" to 1, // Monday + "it-CH" to 1, // Monday + "iw-IL" to 0, // Sunday + "ja-JP" to 0, // Sunday + "ka-GE" to 1, // Monday + "kk-KZ" to 1, // Monday + "km-KH" to 1, // Monday + "kn-IN" to 1, // Monday + "ko-KR" to 0, // Sunday + "ky-KG" to 1, // Monday + "lo-LA" to 1, // Monday + "lt-LT" to 1, // Monday + "lv-LV" to 1, // Monday + "mk-MK" to 1, // Monday + "ml-IN" to 1, // Monday + "mn-MN" to 1, // Monday + "mr-IN" to 1, // Monday + "ms-MY" to 1, // Monday + "mt-MT" to 1, // Monday + "ne-NP" to 1, // Monday + "nl-BE" to 1, // Monday + "nl-NL" to 1, // Monday + "no-NO" to 1, // Monday + "pa-IN" to 1, // Monday + "pl-PL" to 1, // Monday + "pt-BR" to 1, // Monday + "pt-PT" to 1, // Monday + "ro-RO" to 1, // Monday + "ru-RU" to 1, // Monday + "si-LK" to 1, // Monday + "sk-SK" to 1, // Monday + "sl-SI" to 1, // Monday + "sq-AL" to 1, // Monday + "sr-Cyrl" to 1, // Monday + "sr-Latn" to 1, // Monday + "sv-SE" to 1, // Monday + "sw-KE" to 1, // Monday + "ta-IN" to 1, // Monday + "te-IN" to 1, // Monday + "th-TH" to 1, // Monday + "tr-TR" to 1, // Monday + "uk-UA" to 1, // Monday + "ur-PK" to 1, // Monday + "uz-Cyrl" to 1, // Monday + "vi-VN" to 1, // Monday + "zh-HK" to 1, // Monday + "zh-MO" to 1, // Monday + "zh-SG" to 1, // Monday + "zh-TW" to 1, // Monday + ) +} + +private const val defaultFirstDay = 1 + +// Workaround for Firefox +internal fun fallbackGetLocalFistDayOfWeek(locale: String): Int { + return localeToFirstDayMap.getOrElse(locale) { defaultFirstDay } + 1 +} \ No newline at end of file diff --git a/fluent/src/webMain/kotlin/io/github/composefluent/component/Dialog.web.kt b/fluent/src/webMain/kotlin/io/github/composefluent/component/Dialog.web.kt new file mode 100644 index 00000000..a10b17c0 --- /dev/null +++ b/fluent/src/webMain/kotlin/io/github/composefluent/component/Dialog.web.kt @@ -0,0 +1,20 @@ +package io.github.composefluent.component + +import androidx.compose.ui.unit.IntOffset +import androidx.compose.ui.unit.IntRect +import androidx.compose.ui.unit.IntSize +import androidx.compose.ui.unit.LayoutDirection +import androidx.compose.ui.window.PopupPositionProvider + +internal actual val DialogPopupPositionProvider: PopupPositionProvider = DialogPopupPositionProviderImpl + +internal object DialogPopupPositionProviderImpl : PopupPositionProvider { + override fun calculatePosition( + anchorBounds: IntRect, + windowSize: IntSize, + layoutDirection: LayoutDirection, + popupContentSize: IntSize + ): IntOffset { + return IntOffset.Zero + } +} \ No newline at end of file diff --git a/fluent/src/webMain/kotlin/io/github/composefluent/component/FontIcon.web.kt b/fluent/src/webMain/kotlin/io/github/composefluent/component/FontIcon.web.kt new file mode 100644 index 00000000..49af43e5 --- /dev/null +++ b/fluent/src/webMain/kotlin/io/github/composefluent/component/FontIcon.web.kt @@ -0,0 +1,8 @@ +package io.github.composefluent.component + +import androidx.compose.runtime.Composable + +@Composable +internal actual fun ProvideFontIcon(content: @Composable () -> Unit) { + content() +} \ No newline at end of file diff --git a/gallery-processor/build.gradle.kts b/gallery-processor/build.gradle.kts index c638f9ae..80c91ac6 100644 --- a/gallery-processor/build.gradle.kts +++ b/gallery-processor/build.gradle.kts @@ -1,4 +1,4 @@ -import com.konyaco.fluent.plugin.build.BuildConfig +import io.github.composefluent.plugin.build.BuildConfig plugins { alias(libs.plugins.kotlin.multiplatform) @@ -11,13 +11,11 @@ kotlin { jvmToolchain(BuildConfig.Jvm.jvmToolchainVersion) jvm() sourceSets { - val jvmMain by getting { - dependencies { - implementation(libs.squareup.kotlinpoet) - implementation("com.google.devtools.ksp:symbol-processing-api:${libs.versions.ksp.get()}") - implementation("com.google.devtools.ksp:symbol-processing:${libs.versions.ksp.get()}") - implementation(kotlin("compiler")) - } + jvmMain.dependencies { + implementation(libs.squareup.kotlinpoet) + implementation("com.google.devtools.ksp:symbol-processing-api:${libs.versions.ksp.get()}") + implementation("com.google.devtools.ksp:symbol-processing-aa-embeddable:${libs.versions.ksp.get()}") + implementation(kotlin("compiler")) } } } \ No newline at end of file diff --git a/gallery-processor/src/jvmMain/kotlin/com/konyaco/fluent/gallery/processor/CommonProcessor.kt b/gallery-processor/src/jvmMain/kotlin/com/konyaco/fluent/gallery/processor/CommonProcessor.kt deleted file mode 100644 index abfa294b..00000000 --- a/gallery-processor/src/jvmMain/kotlin/com/konyaco/fluent/gallery/processor/CommonProcessor.kt +++ /dev/null @@ -1,46 +0,0 @@ -package com.konyaco.fluent.gallery.processor - -import com.google.devtools.ksp.processing.* -import com.google.devtools.ksp.symbol.KSAnnotated - -class CommonProcessor(logger: KSPLogger, codeGenerator: CodeGenerator): SymbolProcessor { - - private val visitor = Visitor( - onPropertyNode = { property -> - processors.forEach { it.onPropertyVisit(property) } - }, - onFunNode = { function -> - processors.forEach { it.onFunctionVisit(function) } - } - ) - - private val processors = listOf( - SampleCodeProcessor(logger, codeGenerator), - ComponentProcessor(logger, codeGenerator) - ) - - override fun process(resolver: Resolver): List { - resolver.getAllFiles().forEach { it.accept(visitor, Unit) } - return processors.flatMap { it.process(resolver) } - } - - override fun finish() { - super.finish() - processors.forEach { it.finish() } - } - - override fun onError() { - super.onError() - processors.forEach { it.onError() } - } - - companion object { - const val annotationPackage = "com.konyaco.fluent.gallery.annotation" - } -} - -class CommonProcessorProvider : SymbolProcessorProvider { - override fun create(environment: SymbolProcessorEnvironment): SymbolProcessor { - return CommonProcessor(environment.logger, environment.codeGenerator) - } -} \ No newline at end of file diff --git a/gallery-processor/src/jvmMain/kotlin/com/konyaco/fluent/gallery/processor/IProcessor.kt b/gallery-processor/src/jvmMain/kotlin/com/konyaco/fluent/gallery/processor/IProcessor.kt deleted file mode 100644 index 0a2d8bd8..00000000 --- a/gallery-processor/src/jvmMain/kotlin/com/konyaco/fluent/gallery/processor/IProcessor.kt +++ /dev/null @@ -1,22 +0,0 @@ -package com.konyaco.fluent.gallery.processor - -import com.google.devtools.ksp.processing.Resolver -import com.google.devtools.ksp.processing.SymbolProcessor -import com.google.devtools.ksp.symbol.KSAnnotated -import com.google.devtools.ksp.symbol.KSAnnotation -import com.google.devtools.ksp.symbol.KSFunctionDeclaration -import com.google.devtools.ksp.symbol.KSPropertyDeclaration - -interface IProcessor: SymbolProcessor { - fun onFunctionVisit(function: KSFunctionDeclaration) {} - - fun onPropertyVisit(property: KSPropertyDeclaration) {} - - override fun process(resolver: Resolver): List { - return emptyList() - } - - fun KSAnnotation.isTargetAnnotation(targetName: String): Boolean { - return shortName.asString() == targetName && annotationType.resolve().declaration.packageName.asString() == CommonProcessor.annotationPackage - } -} \ No newline at end of file diff --git a/gallery-processor/src/jvmMain/kotlin/com/konyaco/fluent/gallery/processor/SampleCodeProcessor.kt b/gallery-processor/src/jvmMain/kotlin/com/konyaco/fluent/gallery/processor/SampleCodeProcessor.kt deleted file mode 100644 index 3aba111c..00000000 --- a/gallery-processor/src/jvmMain/kotlin/com/konyaco/fluent/gallery/processor/SampleCodeProcessor.kt +++ /dev/null @@ -1,85 +0,0 @@ -package com.konyaco.fluent.gallery.processor - -import com.google.devtools.ksp.processing.* -import com.google.devtools.ksp.symbol.* -import com.google.devtools.ksp.symbol.impl.kotlin.KSFunctionDeclarationImpl -import com.squareup.kotlinpoet.FileSpec -import com.squareup.kotlinpoet.FunSpec -import com.squareup.kotlinpoet.KModifier -import com.squareup.kotlinpoet.PropertySpec -import java.io.OutputStreamWriter -import java.nio.charset.StandardCharsets - -class SampleCodeProcessor(private val logger: KSPLogger, private val codeGenerator: CodeGenerator) : IProcessor { - - private val sampleAnnotation = "Sample" - - private val sampleCodeFunctions = mutableMapOf>() - - override fun onFunctionVisit(function: KSFunctionDeclaration) { - super.onFunctionVisit(function) - function.annotations.forEach { - if (it.isTargetAnnotation(sampleAnnotation)) { - val list = sampleCodeFunctions[function.packageName.asString()] - ?: mutableListOf().apply { - sampleCodeFunctions[function.packageName.asString()] = this - } - list.add(function) - } - return - } - } - - override fun finish() { - super.finish() - generateSampleCode() - } - - private fun generateSampleCode() { - val fileName = "_SampleCodeString" - sampleCodeFunctions.forEach { (packageName, functions) -> - if (functions.isNotEmpty()) { - val sourceFile = FileSpec.builder(packageName, fileName) - val sourceFileList = mutableListOf() - functions.forEach { func -> - func.containingFile?.let { sourceFileList.add(it) } - if (func is KSFunctionDeclarationImpl) { - val funcName = func.simpleName.asString() - val bodyText = func.ktFunction.let { - it.bodyExpression - ?.text - ?.removePrefix("{") - ?.removeSuffix("}") - ?.trimIndent() ?: it.bodyBlockExpression - ?.statements - ?.joinToString(System.lineSeparator()) { statement -> statement.text } - ?.trimIndent() ?: it.text - } - sourceFile.addProperty( - PropertySpec.builder( - "sourceCodeOf${funcName.first().uppercase()}${funcName.substring(1)}", - String::class - ) - .addModifiers(KModifier.INTERNAL) - .getter( - FunSpec.getterBuilder() - .addStatement("return %S", bodyText) - .build() - ) - .build() - ) - } - } - val file = codeGenerator.createNewFile( - Dependencies(true, *(sourceFileList).toTypedArray()), - packageName, - fileName - ) - OutputStreamWriter(file, StandardCharsets.UTF_8).use(sourceFile.build()::writeTo) - - } - } - } - -} - diff --git a/gallery-processor/src/jvmMain/kotlin/io/github/composefluent/gallery/processor/CommonProcessor.kt b/gallery-processor/src/jvmMain/kotlin/io/github/composefluent/gallery/processor/CommonProcessor.kt new file mode 100644 index 00000000..0ccc1ed8 --- /dev/null +++ b/gallery-processor/src/jvmMain/kotlin/io/github/composefluent/gallery/processor/CommonProcessor.kt @@ -0,0 +1,51 @@ +package io.github.composefluent.gallery.processor + +import com.google.devtools.ksp.processing.CodeGenerator +import com.google.devtools.ksp.processing.KSPLogger +import com.google.devtools.ksp.processing.Resolver +import com.google.devtools.ksp.processing.SymbolProcessor +import com.google.devtools.ksp.processing.SymbolProcessorEnvironment +import com.google.devtools.ksp.processing.SymbolProcessorProvider +import com.google.devtools.ksp.symbol.KSAnnotated + +class CommonProcessor(logger: KSPLogger, codeGenerator: CodeGenerator): SymbolProcessor { + + private val visitor = Visitor( + onPropertyNode = { property -> + processors.forEach { it.onPropertyVisit(property) } + }, + onFunNode = { function -> + processors.forEach { it.onFunctionVisit(function) } + } + ) + + private val processors = listOf( + SampleCodeProcessor(logger, codeGenerator), + ComponentProcessor(logger, codeGenerator) + ) + + override fun process(resolver: Resolver): List { + resolver.getAllFiles().forEach { it.accept(visitor, Unit) } + return processors.flatMap { it.process(resolver) } + } + + override fun finish() { + super.finish() + processors.forEach { it.finish() } + } + + override fun onError() { + super.onError() + processors.forEach { it.onError() } + } + + companion object { + const val annotationPackage = "io.github.composefluent.gallery.annotation" + } +} + +class CommonProcessorProvider : SymbolProcessorProvider { + override fun create(environment: SymbolProcessorEnvironment): SymbolProcessor { + return CommonProcessor(environment.logger, environment.codeGenerator) + } +} \ No newline at end of file diff --git a/gallery-processor/src/jvmMain/kotlin/com/konyaco/fluent/gallery/processor/ComponentProcessor.kt b/gallery-processor/src/jvmMain/kotlin/io/github/composefluent/gallery/processor/ComponentProcessor.kt similarity index 86% rename from gallery-processor/src/jvmMain/kotlin/com/konyaco/fluent/gallery/processor/ComponentProcessor.kt rename to gallery-processor/src/jvmMain/kotlin/io/github/composefluent/gallery/processor/ComponentProcessor.kt index f716b2b7..ba350ff9 100644 --- a/gallery-processor/src/jvmMain/kotlin/com/konyaco/fluent/gallery/processor/ComponentProcessor.kt +++ b/gallery-processor/src/jvmMain/kotlin/io/github/composefluent/gallery/processor/ComponentProcessor.kt @@ -1,12 +1,24 @@ -package com.konyaco.fluent.gallery.processor +package io.github.composefluent.gallery.processor import com.google.devtools.ksp.processing.CodeGenerator import com.google.devtools.ksp.processing.Dependencies import com.google.devtools.ksp.processing.KSPLogger -import com.google.devtools.ksp.symbol.* -import com.google.devtools.ksp.symbol.impl.kotlin.KSPropertyDeclarationImpl -import com.squareup.kotlinpoet.* +import com.google.devtools.ksp.impl.symbol.kotlin.KSPropertyDeclarationImpl +import com.google.devtools.ksp.symbol.KSAnnotation +import com.google.devtools.ksp.symbol.KSFile +import com.google.devtools.ksp.symbol.KSFunctionDeclaration +import com.google.devtools.ksp.symbol.KSPropertyDeclaration +import com.google.devtools.ksp.symbol.KSValueArgument +import com.squareup.kotlinpoet.ClassName +import com.squareup.kotlinpoet.CodeBlock +import com.squareup.kotlinpoet.FileSpec +import com.squareup.kotlinpoet.KModifier import com.squareup.kotlinpoet.ParameterizedTypeName.Companion.parameterizedBy +import com.squareup.kotlinpoet.PropertySpec +import com.squareup.kotlinpoet.TypeSpec +import com.squareup.kotlinpoet.asTypeName +import com.squareup.kotlinpoet.withIndent +import ksp.org.jetbrains.kotlin.psi.KtProperty import org.jetbrains.kotlin.util.prefixIfNot import java.io.OutputStreamWriter import java.nio.charset.StandardCharsets @@ -16,14 +28,16 @@ class ComponentProcessor(private val logger: KSPLogger, private val codeGenerato private val componentAnnotation = "Component" private val componentGroupAnnotation = "ComponentGroup" - private val iconImportPrefix = "com.konyaco.fluent.icons.regular" - private val iconPrefix = "com.konyaco.fluent.icons.Icons.Regular" + private val iconImportPrefix = "io.github.composefluent.icons.regular" + private val iconPrefix = "io.github.composefluent.icons.Icons.Regular" private val componentFunctions = mutableMapOf>>() private val componentGroups = mutableMapOf>() private val componentPackageMap = mutableMapOf() + private val componentPackageProperty = mutableSetOf() + private val componentScreenFile = mutableSetOf() - private val componentPackage = "com.konyaco.fluent.gallery.component" + private val componentPackage = "io.github.composefluent.gallery.component" private val componentItemClass = ClassName(componentPackage, "ComponentItem") private val componentNameList = mutableListOf() @@ -41,19 +55,12 @@ class ComponentProcessor(private val logger: KSPLogger, private val codeGenerato private fun arrangeComponentGroup() { val mapPackage = componentFunctions.remove("/_Auto") ?: emptyList() mapPackage.forEach { pair -> - val group = componentPackageMap[pair.second.packageName.asString()] - if (!group.isNullOrEmpty()) { - val list = - componentFunctions[group] ?: mutableListOf>().apply { - componentFunctions[group] = this - } - list.add(pair) - } else { - val list = componentFunctions["/"] ?: mutableListOf>().apply { - componentFunctions["/"] = this - } - list.add(pair) + val group = componentPackageMap[pair.second.packageName.asString()].let { + if (it.isNullOrEmpty()) "/" else it } + componentFunctions + .getOrPut(group) { mutableListOf() } + .add(pair) } } @@ -68,11 +75,10 @@ class ComponentProcessor(private val logger: KSPLogger, private val codeGenerato } } val group = (groupArg?.value as? String)?.prefixIfNot("/") ?: return@forEach - val list = - componentFunctions[group] ?: mutableListOf>().apply { - componentFunctions[group] = this - } - list.add(annotation to function) + componentFunctions + .getOrPut(group) { mutableListOf() } + .add(annotation to function) + componentScreenFile.add(function.containingFile ?: return) return } } @@ -84,14 +90,17 @@ class ComponentProcessor(private val logger: KSPLogger, private val codeGenerato it.isTargetAnnotation(componentGroupAnnotation) } ?: return if (property is KSPropertyDeclarationImpl) { - val groupName = - property.ktProperty.initializer?.text?.removePrefix("\"")?.removeSuffix("\"")?.prefixIfNot("/") + val psi = property.ktDeclarationSymbol.psi + if (psi is KtProperty) { + val groupName = psi.initializer?.text?.removePrefix("\"")?.removeSuffix("\"")?.prefixIfNot("/") ?: return - componentGroups[groupName] = annotation to property - val packageNameValue = - annotation.arguments.firstOrNull { it.name?.asString() == "packageMap" }?.value as? String - val packageName = packageNameValue?.ifBlank { null } ?: return - componentPackageMap[packageName] = groupName + property.containingFile?.let { componentPackageProperty.add(it) } + componentGroups[groupName] = annotation to property + val packageNameValue = + annotation.arguments.firstOrNull { it.name?.asString() == "packageMap" }?.value as? String + val packageName = packageNameValue?.ifBlank { null } ?: return + componentPackageMap[packageName] = groupName + } } } @@ -187,7 +196,7 @@ class ComponentProcessor(private val logger: KSPLogger, private val codeGenerato .build() ) val file = codeGenerator.createNewFile( - Dependencies(true), + Dependencies(aggregating = true, sources = componentPackageProperty.toTypedArray()), fileSpecBuilder.packageName, fileSpecBuilder.name ) @@ -195,7 +204,7 @@ class ComponentProcessor(private val logger: KSPLogger, private val codeGenerato componentPackage, "ComponentPagePath" ).addType(componentPagePathType.build()).build() val pathFile = codeGenerator.createNewFile( - Dependencies(true), + Dependencies(true, sources = componentScreenFile.toTypedArray()), componentPackage, pathFileSpec.name ) diff --git a/gallery-processor/src/jvmMain/kotlin/io/github/composefluent/gallery/processor/IProcessor.kt b/gallery-processor/src/jvmMain/kotlin/io/github/composefluent/gallery/processor/IProcessor.kt new file mode 100644 index 00000000..28c665cc --- /dev/null +++ b/gallery-processor/src/jvmMain/kotlin/io/github/composefluent/gallery/processor/IProcessor.kt @@ -0,0 +1,22 @@ +package io.github.composefluent.gallery.processor + +import com.google.devtools.ksp.processing.Resolver +import com.google.devtools.ksp.processing.SymbolProcessor +import com.google.devtools.ksp.symbol.KSAnnotated +import com.google.devtools.ksp.symbol.KSAnnotation +import com.google.devtools.ksp.symbol.KSFunctionDeclaration +import com.google.devtools.ksp.symbol.KSPropertyDeclaration + +interface IProcessor: SymbolProcessor { + fun onFunctionVisit(function: KSFunctionDeclaration) {} + + fun onPropertyVisit(property: KSPropertyDeclaration) {} + + override fun process(resolver: Resolver): List { + return emptyList() + } + + fun KSAnnotation.isTargetAnnotation(targetName: String): Boolean { + return shortName.asString() == targetName && annotationType.resolve().declaration.packageName.asString() == CommonProcessor.annotationPackage + } +} \ No newline at end of file diff --git a/gallery-processor/src/jvmMain/kotlin/io/github/composefluent/gallery/processor/SampleCodeProcessor.kt b/gallery-processor/src/jvmMain/kotlin/io/github/composefluent/gallery/processor/SampleCodeProcessor.kt new file mode 100644 index 00000000..7c7d848a --- /dev/null +++ b/gallery-processor/src/jvmMain/kotlin/io/github/composefluent/gallery/processor/SampleCodeProcessor.kt @@ -0,0 +1,89 @@ +package io.github.composefluent.gallery.processor + +import com.google.devtools.ksp.impl.symbol.kotlin.KSFunctionDeclarationImpl +import com.google.devtools.ksp.processing.CodeGenerator +import com.google.devtools.ksp.processing.Dependencies +import com.google.devtools.ksp.processing.KSPLogger +import com.google.devtools.ksp.symbol.KSFile +import com.google.devtools.ksp.symbol.KSFunctionDeclaration +import com.squareup.kotlinpoet.FileSpec +import com.squareup.kotlinpoet.FunSpec +import com.squareup.kotlinpoet.KModifier +import com.squareup.kotlinpoet.PropertySpec +import ksp.org.jetbrains.kotlin.psi.KtDeclarationWithBody +import java.io.OutputStreamWriter +import java.nio.charset.StandardCharsets + +class SampleCodeProcessor(private val logger: KSPLogger, private val codeGenerator: CodeGenerator) : IProcessor { + + private val sampleAnnotation = "Sample" + + private val sampleCodeFunctions = mutableMapOf>() + + override fun onFunctionVisit(function: KSFunctionDeclaration) { + super.onFunctionVisit(function) + function.annotations.forEach { + if (it.isTargetAnnotation(sampleAnnotation)) { + sampleCodeFunctions + .getOrPut(function.packageName.asString()) { mutableListOf() } + .add(function) + } + return + } + } + + override fun finish() { + super.finish() + generateSampleCode() + } + + private fun generateSampleCode() { + val fileName = "_SampleCodeString" + sampleCodeFunctions.forEach { (packageName, functions) -> + if (functions.isNotEmpty()) { + val sourceFile = FileSpec.builder(packageName, fileName) + val sourceFileList = mutableListOf() + functions.forEach { func -> + func.containingFile?.let { sourceFileList.add(it) } + if (func is KSFunctionDeclarationImpl) { + val bodyText = when (val psi = func.ktDeclarationSymbol.psi) { + is KtDeclarationWithBody -> { + psi.bodyBlockExpression?.text + ?.removePrefix("{") + ?.removeSuffix("}") + ?.trimIndent() ?: psi.bodyBlockExpression + ?.statements + ?.joinToString(System.lineSeparator()) { statement -> statement.text } + ?.trimIndent() ?: psi.text + } + else -> psi?.text ?: "" + } + val funcName = func.simpleName.asString() + sourceFile.addProperty( + PropertySpec.builder( + "sourceCodeOf${funcName.first().uppercase()}${funcName.substring(1)}", + String::class + ) + .addModifiers(KModifier.INTERNAL) + .getter( + FunSpec.getterBuilder() + .addStatement("return %S", bodyText) + .build() + ) + .build() + ) + } + } + val file = codeGenerator.createNewFile( + Dependencies(true, *(sourceFileList).toTypedArray()), + packageName, + fileName + ) + OutputStreamWriter(file, StandardCharsets.UTF_8).use(sourceFile.build()::writeTo) + + } + } + } + +} + diff --git a/gallery-processor/src/jvmMain/kotlin/com/konyaco/fluent/gallery/processor/Visitor.kt b/gallery-processor/src/jvmMain/kotlin/io/github/composefluent/gallery/processor/Visitor.kt similarity index 95% rename from gallery-processor/src/jvmMain/kotlin/com/konyaco/fluent/gallery/processor/Visitor.kt rename to gallery-processor/src/jvmMain/kotlin/io/github/composefluent/gallery/processor/Visitor.kt index 8c93a1be..a53aff5b 100644 --- a/gallery-processor/src/jvmMain/kotlin/com/konyaco/fluent/gallery/processor/Visitor.kt +++ b/gallery-processor/src/jvmMain/kotlin/io/github/composefluent/gallery/processor/Visitor.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.gallery.processor +package io.github.composefluent.gallery.processor import com.google.devtools.ksp.getDeclaredFunctions import com.google.devtools.ksp.getDeclaredProperties diff --git a/gallery-processor/src/jvmMain/resources/META-INF/services/com.google.devtools.ksp.processing.SymbolProcessorProvider b/gallery-processor/src/jvmMain/resources/META-INF/services/com.google.devtools.ksp.processing.SymbolProcessorProvider index d229557c..cefaf832 100644 --- a/gallery-processor/src/jvmMain/resources/META-INF/services/com.google.devtools.ksp.processing.SymbolProcessorProvider +++ b/gallery-processor/src/jvmMain/resources/META-INF/services/com.google.devtools.ksp.processing.SymbolProcessorProvider @@ -1 +1 @@ -com.konyaco.fluent.gallery.processor.CommonProcessorProvider \ No newline at end of file +io.github.composefluent.gallery.processor.CommonProcessorProvider \ No newline at end of file diff --git a/gallery/build.gradle.kts b/gallery/build.gradle.kts index 615fa73a..0339a6fa 100644 --- a/gallery/build.gradle.kts +++ b/gallery/build.gradle.kts @@ -1,17 +1,22 @@ -import com.konyaco.fluent.plugin.build.BuildConfig -import com.konyaco.fluent.plugin.build.applyTargets +import com.android.build.api.variant.impl.VariantOutputImpl +import com.codingfeline.buildkonfig.compiler.FieldSpec +import io.github.composefluent.plugin.build.BuildConfig +import io.github.composefluent.plugin.build.applyTargets import org.jetbrains.compose.desktop.application.dsl.TargetFormat +import org.jetbrains.kotlin.gradle.tasks.KotlinCompilationTask plugins { alias(libs.plugins.kotlin.multiplatform) alias(libs.plugins.kotlin.compose) alias(libs.plugins.compose) + alias(libs.plugins.compose.hotReload) alias(libs.plugins.android.application) alias(libs.plugins.ksp) + alias(libs.plugins.build.konfig) } kotlin { - applyTargets(publish = false) + applyTargets() wasmJs { binaries.executable() } js { binaries.executable() } @@ -27,7 +32,7 @@ kotlin { } sourceSets { - val commonMain by getting { + commonMain { dependencies { implementation(compose.foundation) implementation(compose.components.resources) @@ -39,29 +44,22 @@ kotlin { } kotlin.srcDir("build/generated/ksp/metadata/commonMain/kotlin") } - val commonTest by getting { - dependencies { - implementation(kotlin("test")) - } + commonTest.dependencies { + implementation(kotlin("test")) } - val androidMain by getting { - dependencies { - implementation(libs.androidx.activity.compose) - } + androidMain.dependencies { + implementation(libs.androidx.activity.compose) } - val androidUnitTest by getting - val androidInstrumentedTest by getting { - dependencies { - implementation(libs.androidx.test.junit) - } + androidInstrumentedTest.dependencies { + implementation(libs.androidx.test.junit) } - val desktopMain by getting { - dependencies { - implementation(compose.preview) - implementation(libs.window.styler) - } + named("desktopMain").dependencies { + implementation(compose.desktop.currentOs) + implementation(compose.preview) + implementation(libs.window.styler) + implementation(libs.jna.platform) + implementation(libs.jna) } - val desktopTest by getting } } @@ -73,7 +71,7 @@ android { minSdk = BuildConfig.Android.minSdkVersion targetSdk = BuildConfig.Android.compileSdkVersion versionCode = 1 - versionName = "1.0" + versionName = BuildConfig.libraryVersion vectorDrawables { useSupportLibrary = true } @@ -83,7 +81,37 @@ android { buildTypes { release { isMinifyEnabled = true - proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.android.pro") + proguardFiles( + getDefaultProguardFile("proguard-android-optimize.txt"), + "proguard-rules.android.pro", + "proguard-rules.common.pro" + ) + val signFile = System.getenv("ANDROID_SIGNING_FILE") + signFile?.let { + val password = System.getenv("ANDROID_SIGNING_PASSWORD") + val keyAlias = System.getenv("ANDROID_SIGNING_KEY_ALIAS") + val keyPassword = System.getenv("ANDROID_SIGNING_KEY_PASSWORD") + signingConfig = signingConfigs.register("release") { + this.storeFile = file(signFile) + this.storePassword = password + this.keyAlias = keyAlias + this.keyPassword = keyPassword + }.get() + } + } + } + + androidComponents.onVariants { variant -> + variant.outputs.forEach { output -> + if (output is VariantOutputImpl) { + output.apply { + outputFileName.set( + "${variant.applicationId.get()}-" + + "${versionName.get()}-" + + "${variant.buildType}.apk" + ) + } + } } } @@ -96,16 +124,26 @@ android { compileOptions { sourceCompatibility = BuildConfig.Jvm.javaVersion targetCompatibility = BuildConfig.Jvm.javaVersion + isCoreLibraryDesugaringEnabled = true + } + dependencies { + coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.1.5") } } compose.desktop { application { mainClass = "${BuildConfig.packageName}.gallery.MainKt" + buildTypes.release.proguard { + configurationFiles.from( + project.file("proguard-rules.desktop.pro"), + project.file("proguard-rules.common.pro") + ) + } nativeDistributions { targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb) packageName = "Compose Fluent Design Gallery" - packageVersion = "1.0.0" + packageVersion = BuildConfig.integerVersionName macOS { iconFile.set(project.file("icons/icon.icns")) jvmArgs( @@ -114,6 +152,10 @@ compose.desktop { } windows { iconFile.set(project.file("icons/icon.ico")) + upgradeUuid = "a23572e1-c6fd-4b76-98ec-1e45953eb941" + shortcut = true + menu = true + perUserInstall = true } linux { iconFile.set(project.file("icons/icon.png")) @@ -122,6 +164,20 @@ compose.desktop { } } +buildkonfig { + packageName = "${BuildConfig.packageName}.build" + + defaultConfigs { + buildConfigField(FieldSpec.Type.STRING, "LIBRARY_VERSION", BuildConfig.libraryVersion, const = true) + buildConfigField(FieldSpec.Type.STRING, "GALLERY_VERSION", BuildConfig.integerVersionName, const = true) + buildConfigField(FieldSpec.Type.STRING, "COMPOSE_VERSION", libs.versions.compose.get(), const = true) + buildConfigField(FieldSpec.Type.STRING, "KOTLIN_VERSION", libs.versions.kotlin.get(), const = true) + buildConfigField(FieldSpec.Type.STRING, "HAZE_VERSION", libs.versions.haze.get(), const = true) + + buildConfigField(FieldSpec.Type.STRING, "CURRENT_BRANCH", BuildConfig.branch, const = true) + } +} + dependencies { val processor = project(":gallery-processor") add("kspCommonMainMetadata", processor) @@ -129,7 +185,7 @@ dependencies { // workaround for KSP only in Common Main. // https://github.com/google/ksp/issues/567 -tasks.withType>().all { +tasks.withType>().configureEach { if (name != "kspCommonMainKotlinMetadata") { dependsOn("kspCommonMainKotlinMetadata") } diff --git a/gallery/iosApp/iosApp.xcodeproj/project.pbxproj b/gallery/iosApp/iosApp.xcodeproj/project.pbxproj index f22c612d..9ec09548 100644 --- a/gallery/iosApp/iosApp.xcodeproj/project.pbxproj +++ b/gallery/iosApp/iosApp.xcodeproj/project.pbxproj @@ -300,7 +300,7 @@ "@executable_path/Frameworks", ); MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = com.konyaco.fluent.gallery.iosApp; + PRODUCT_BUNDLE_IDENTIFIER = io.github.composefluent.gallery.iosApp; PRODUCT_NAME = FluentDesign; SWIFT_EMIT_LOC_STRINGS = YES; SWIFT_VERSION = 5.0; @@ -327,7 +327,7 @@ "@executable_path/Frameworks", ); MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = com.konyaco.fluent.gallery.iosApp; + PRODUCT_BUNDLE_IDENTIFIER = io.github.composefluent.gallery.iosApp; PRODUCT_NAME = FluentDesign; SWIFT_EMIT_LOC_STRINGS = YES; SWIFT_VERSION = 5.0; diff --git a/gallery/proguard-rules.common.pro b/gallery/proguard-rules.common.pro new file mode 100644 index 00000000..de6300ee --- /dev/null +++ b/gallery/proguard-rules.common.pro @@ -0,0 +1,2 @@ +-dontwarn kotlinx.datetime.** +-keep class androidx.compose.foundation.text.** { *; } \ No newline at end of file diff --git a/gallery/proguard-rules.desktop.pro b/gallery/proguard-rules.desktop.pro new file mode 100644 index 00000000..69b910d0 --- /dev/null +++ b/gallery/proguard-rules.desktop.pro @@ -0,0 +1,26 @@ +-dontwarn com.sun.jna.internal.Cleaner +-keep class com.sun.jna.** { *; } +-keep class * implements com.sun.jna.** { *; } + +# LayoutHitTestOwner ProGuard rules +-keep class androidx.compose.foundation.HoverableNode { *; } +-keep class androidx.compose.foundation.gestures.ScrollableNode { *; } + +-keep class androidx.compose.ui.scene.PlatformLayersComposeSceneImpl { *; } +-keep class androidx.compose.ui.scene.CanvasLayersComposeSceneImpl { *; } +-keep class androidx.compose.ui.scene.CanvasLayersComposeSceneImpl$AttachedComposeSceneLayer { *; } + +-keepclassmembers class androidx.compose.ui.scene.PlatformLayersComposeSceneImpl { + private *** getMainOwner(); +} + +-keepclassmembers class androidx.compose.ui.scene.CanvasLayersComposeSceneImpl { + private *** mainOwner; + private *** _layersCopyCache; + private *** focusedLayer; +} + +-keepclassmembers class androidx.compose.ui.scene.CanvasLayersComposeSceneImpl$AttachedComposeSceneLayer { + private *** owner; + private *** isInBounds(...); +} \ No newline at end of file diff --git a/gallery/src/androidInstrumentedTest/kotlin/com/konyaco/fluent/gallery/GalleryInstrumentedTest.kt b/gallery/src/androidInstrumentedTest/kotlin/io/github/composefluent/gallery/GalleryInstrumentedTest.kt similarity index 82% rename from gallery/src/androidInstrumentedTest/kotlin/com/konyaco/fluent/gallery/GalleryInstrumentedTest.kt rename to gallery/src/androidInstrumentedTest/kotlin/io/github/composefluent/gallery/GalleryInstrumentedTest.kt index ff70887f..8225943b 100644 --- a/gallery/src/androidInstrumentedTest/kotlin/com/konyaco/fluent/gallery/GalleryInstrumentedTest.kt +++ b/gallery/src/androidInstrumentedTest/kotlin/io/github/composefluent/gallery/GalleryInstrumentedTest.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.gallery +package io.github.composefluent.gallery import androidx.test.platform.app.InstrumentationRegistry import androidx.test.ext.junit.runners.AndroidJUnit4 @@ -19,6 +19,6 @@ class GalleryInstrumentedTest { fun useAppContext() { // Context of the app under test. val appContext = InstrumentationRegistry.getInstrumentation().targetContext - assertEquals("com.konyaco.fluent.gallery", appContext.packageName) + assertEquals("io.github.composefluent.gallery", appContext.packageName) } } \ No newline at end of file diff --git a/gallery/src/androidMain/kotlin/com/konyaco/fluent/gallery/MainActivity.kt b/gallery/src/androidMain/kotlin/com/konyaco/fluent/gallery/MainActivity.kt deleted file mode 100644 index 24d0a973..00000000 --- a/gallery/src/androidMain/kotlin/com/konyaco/fluent/gallery/MainActivity.kt +++ /dev/null @@ -1,16 +0,0 @@ -package com.konyaco.fluent.gallery - -import android.os.Bundle -import androidx.activity.ComponentActivity -import androidx.activity.compose.setContent - -class MainActivity : ComponentActivity() { - override fun onCreate(savedInstanceState: Bundle?) { - super.onCreate(savedInstanceState) - setContent { - GalleryTheme { - App() - } - } - } -} \ No newline at end of file diff --git a/gallery/src/androidMain/kotlin/io/github/composefluent/gallery/MainActivity.kt b/gallery/src/androidMain/kotlin/io/github/composefluent/gallery/MainActivity.kt new file mode 100644 index 00000000..74fc6984 --- /dev/null +++ b/gallery/src/androidMain/kotlin/io/github/composefluent/gallery/MainActivity.kt @@ -0,0 +1,30 @@ +package io.github.composefluent.gallery + +import android.os.Bundle +import androidx.activity.ComponentActivity +import androidx.activity.compose.BackHandler +import androidx.activity.compose.setContent +import androidx.activity.enableEdgeToEdge +import androidx.compose.foundation.layout.WindowInsets +import androidx.compose.foundation.layout.systemBars +import io.github.composefluent.gallery.component.rememberComponentNavigator + +class MainActivity : ComponentActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + enableEdgeToEdge() + setContent { + val componentNavigator = rememberComponentNavigator() + BackHandler(componentNavigator.canNavigateUp) { + componentNavigator.navigateUp() + } + GalleryTheme { + App( + navigator = componentNavigator, + windowInset = WindowInsets.systemBars, + collapseWindowInset = WindowInsets.systemBars + ) + } + } + } +} \ No newline at end of file diff --git a/gallery/src/androidMain/kotlin/io/github/composefluent/gallery/screen/menus/MenuFlyoutScreen.android.kt b/gallery/src/androidMain/kotlin/io/github/composefluent/gallery/screen/menus/MenuFlyoutScreen.android.kt new file mode 100644 index 00000000..f6c37d00 --- /dev/null +++ b/gallery/src/androidMain/kotlin/io/github/composefluent/gallery/screen/menus/MenuFlyoutScreen.android.kt @@ -0,0 +1,3 @@ +package io.github.composefluent.gallery.screen.menus + +actual fun isMacOs(): Boolean = false \ No newline at end of file diff --git a/gallery/src/androidMain/kotlin/io/github/composefluent/gallery/screen/navigation/TabViewScreen.android.kt b/gallery/src/androidMain/kotlin/io/github/composefluent/gallery/screen/navigation/TabViewScreen.android.kt new file mode 100644 index 00000000..9af8dac2 --- /dev/null +++ b/gallery/src/androidMain/kotlin/io/github/composefluent/gallery/screen/navigation/TabViewScreen.android.kt @@ -0,0 +1,8 @@ +package io.github.composefluent.gallery.screen.navigation + +import androidx.compose.runtime.Composable +import io.github.composefluent.gallery.component.GalleryPageScope + +@Composable +internal actual fun GalleryPageScope.PlatformTabViewSection() { +} \ No newline at end of file diff --git a/gallery/src/androidUnitTest/kotlin/com/konyaco/fluent/gallery/GalleryUnitTest.kt b/gallery/src/androidUnitTest/kotlin/io/github/composefluent/gallery/GalleryUnitTest.kt similarity index 88% rename from gallery/src/androidUnitTest/kotlin/com/konyaco/fluent/gallery/GalleryUnitTest.kt rename to gallery/src/androidUnitTest/kotlin/io/github/composefluent/gallery/GalleryUnitTest.kt index bb21b60e..895ca7a7 100644 --- a/gallery/src/androidUnitTest/kotlin/com/konyaco/fluent/gallery/GalleryUnitTest.kt +++ b/gallery/src/androidUnitTest/kotlin/io/github/composefluent/gallery/GalleryUnitTest.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.gallery +package io.github.composefluent.gallery import org.junit.Test diff --git a/gallery/src/commonMain/composeResources/drawable/banner.png b/gallery/src/commonMain/composeResources/drawable/banner.png index e88b50df..074654b1 100644 Binary files a/gallery/src/commonMain/composeResources/drawable/banner.png and b/gallery/src/commonMain/composeResources/drawable/banner.png differ diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/App.kt b/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/App.kt deleted file mode 100644 index 2a9f8148..00000000 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/App.kt +++ /dev/null @@ -1,168 +0,0 @@ -package com.konyaco.fluent.gallery - -import androidx.compose.animation.AnimatedContent -import androidx.compose.animation.core.tween -import androidx.compose.animation.fadeIn -import androidx.compose.animation.fadeOut -import androidx.compose.animation.slideInVertically -import androidx.compose.animation.togetherWith -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.fillMaxHeight -import androidx.compose.foundation.layout.fillMaxSize -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.shape.RoundedCornerShape -import androidx.compose.runtime.Composable -import androidx.compose.runtime.LaunchedEffect -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Modifier -import androidx.compose.ui.text.input.TextFieldValue -import androidx.compose.ui.unit.Dp -import androidx.compose.ui.unit.dp -import com.konyaco.fluent.animation.FluentDuration -import com.konyaco.fluent.animation.FluentEasing -import com.konyaco.fluent.component.Icon -import com.konyaco.fluent.component.NavigationItemSeparator -import com.konyaco.fluent.component.SideNav -import com.konyaco.fluent.component.SideNavItem -import com.konyaco.fluent.component.Text -import com.konyaco.fluent.component.TextField -import com.konyaco.fluent.gallery.component.ComponentItem -import com.konyaco.fluent.gallery.component.ComponentNavigator -import com.konyaco.fluent.gallery.component.components -import com.konyaco.fluent.gallery.screen.settings.SettingsScreen -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.regular.Settings -import com.konyaco.fluent.surface.Card -import androidx.compose.ui.window.* - -@Composable -fun App(titleBarHeight: Dp) { - - Row(Modifier.fillMaxSize().padding(top = titleBarHeight)) { - var expanded by remember { mutableStateOf(true) } - val (selectedItem, setSelectedItem) = remember { - mutableStateOf(components.first()) - } - var selectedItemWithContent by remember { - mutableStateOf(selectedItem) - } - LaunchedEffect(selectedItem) { - if (selectedItem.content != null) { - selectedItemWithContent = selectedItem - } - } - var textFieldValue by remember { - mutableStateOf(TextFieldValue()) - } - val navigator = remember(setSelectedItem) { - ComponentNavigator(setSelectedItem) - } - SideNav( - modifier = Modifier.fillMaxHeight(), - expanded = expanded, - onExpandStateChange = { expanded = it }, - title = { Text("Controls") }, - autoSuggestionBox = { - TextField( - value = textFieldValue, - onValueChange = { textFieldValue = it }, - placeholder = { Text("Search") }, - modifier = Modifier.fillMaxWidth().focusHandle() - ) - }, - footer = { - NavigationItem(selectedItem, setSelectedItem, settingItem) - } - ) { - components.forEach { navItem -> - NavigationItem(selectedItem, setSelectedItem, navItem) - if (navItem.name == "All samples") { - NavigationItemSeparator(modifier = Modifier.padding(vertical = 2.dp)) - } - } - } - - Card( - modifier = Modifier.fillMaxHeight().weight(1f), - shape = RoundedCornerShape( - topStart = 8.dp, - topEnd = 0.dp, - bottomStart = 0.dp, - bottomEnd = 0.dp - ) - ) { - AnimatedContent(selectedItemWithContent, Modifier.fillMaxSize(), transitionSpec = { - (fadeIn( - tween( - FluentDuration.ShortDuration, - easing = FluentEasing.FadeInFadeOutEasing, - delayMillis = FluentDuration.QuickDuration - ) - ) + slideInVertically( - tween( - FluentDuration.MediumDuration, - easing = FluentEasing.FastInvokeEasing, - delayMillis = FluentDuration.QuickDuration - ) - ) { it / 5 }) togetherWith fadeOut( - tween( - FluentDuration.QuickDuration, - easing = FluentEasing.FadeInFadeOutEasing, - delayMillis = FluentDuration.QuickDuration - ) - ) - }) { - it.content?.invoke(it, navigator) - } - } - } -} - -@Composable -private fun NavigationItem( - selectedItem: ComponentItem, - onSelectedItemChanged: (ComponentItem) -> Unit, - navItem: ComponentItem -) { - val expandedItems = remember { - mutableStateOf(false) - } - LaunchedEffect(selectedItem) { - if (navItem != selectedItem) { - val navItemAsGroup = "${navItem.group}/${navItem.name}/" - if ((selectedItem.group + "/").startsWith(navItemAsGroup)) - expandedItems.value = true - } - } - SideNavItem( - selectedItem == navItem, - onClick = { - onSelectedItemChanged(navItem) - expandedItems.value = !expandedItems.value - }, - icon = navItem.icon?.let { { Icon(it, navItem.name) } }, - content = { Text(navItem.name) }, - expandItems = expandedItems.value, - items = navItem.items?.let { - if (it.isNotEmpty()) { - { - it.forEach { nestedItem -> - NavigationItem( - selectedItem = selectedItem, - onSelectedItemChanged = onSelectedItemChanged, - navItem = nestedItem - ) - } - } - } else { - null - } - } - ) -} - -private val settingItem = ComponentItem("Settings", group = "", description = "", icon = Icons.Default.Settings) { SettingsScreen() } \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/GalleryTheme.kt b/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/GalleryTheme.kt deleted file mode 100644 index f5c5bf90..00000000 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/GalleryTheme.kt +++ /dev/null @@ -1,63 +0,0 @@ -package com.konyaco.fluent.gallery - -import androidx.compose.foundation.isSystemInDarkTheme -import androidx.compose.foundation.layout.fillMaxSize -import androidx.compose.runtime.* -import androidx.compose.ui.Modifier -import com.konyaco.fluent.* -import com.konyaco.fluent.background.Mica - -val LocalStore = compositionLocalOf { error("Not provided") } - -class Store( - systemDarkMode: Boolean, - enabledAcrylicPopup: Boolean, - compactMode: Boolean -) { - var darkMode by mutableStateOf(systemDarkMode) - - var enabledAcrylicPopup by mutableStateOf(enabledAcrylicPopup) - - var compactMode by mutableStateOf(compactMode) -} - -@OptIn(ExperimentalFluentApi::class) -@Composable -fun GalleryTheme( - displayMicaLayer: Boolean = true, - content: @Composable () -> Unit -) { - val systemDarkMode = isSystemInDarkTheme() - - val store = remember { - Store( - systemDarkMode = systemDarkMode, - enabledAcrylicPopup = true, - compactMode = true - ) - } - - LaunchedEffect(systemDarkMode) { - store.darkMode = systemDarkMode - } - CompositionLocalProvider( - LocalStore provides store - ) { - FluentTheme( - colors = if (store.darkMode) darkColors() else lightColors(), - useAcrylicPopup = store.enabledAcrylicPopup, - compactMode = store.compactMode - ) { - if (displayMicaLayer) { - Mica(modifier = Modifier.fillMaxSize()) { - content() - } - } else { - CompositionLocalProvider( - LocalContentColor provides FluentTheme.colors.text.text.primary, - content = content - ) - } - } - } -} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/ProjectUrl.kt b/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/ProjectUrl.kt deleted file mode 100644 index 6219dc8b..00000000 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/ProjectUrl.kt +++ /dev/null @@ -1,28 +0,0 @@ -package com.konyaco.fluent.gallery - -object ProjectUrl { - - const val ROOT = "https://github.com/Konyaco/compose-fluent-ui" - - const val FRAMEWORK = "https://developer.android.com/develop/ui/compose" - - const val UI_DESIGN = "https://fluent2.microsoft.design/" - - const val FEED_BACK = "$ROOT/issues/new/choose" - - private const val BRANCH = "master" - - fun componentCodeOf(path: String): String { - return "$ROOT/tree/$BRANCH/$path" - } - - fun galleryCodeOf(path: String): String { - return "$ROOT/tree/$BRANCH/gallery/src/$path" - } - - //TODO documentation redirection - fun documentationOf(path: String): String { - return ROOT - } - -} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/annotation/Sample.kt b/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/annotation/Sample.kt deleted file mode 100644 index 14868117..00000000 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/annotation/Sample.kt +++ /dev/null @@ -1,4 +0,0 @@ -package com.konyaco.fluent.gallery.annotation - -@Target(AnnotationTarget.FUNCTION) -annotation class Sample() diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/ComponentNavigator.kt b/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/ComponentNavigator.kt deleted file mode 100644 index 0f8953c7..00000000 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/ComponentNavigator.kt +++ /dev/null @@ -1,6 +0,0 @@ -package com.konyaco.fluent.gallery.component - -fun interface ComponentNavigator { - fun navigate(componentItem: ComponentItem) - -} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/CopyButton.kt b/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/CopyButton.kt deleted file mode 100644 index b76d693f..00000000 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/CopyButton.kt +++ /dev/null @@ -1,50 +0,0 @@ -package com.konyaco.fluent.gallery.component - -import androidx.compose.animation.AnimatedContent -import androidx.compose.runtime.Composable -import androidx.compose.runtime.LaunchedEffect -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Modifier -import androidx.compose.ui.platform.LocalClipboardManager -import androidx.compose.ui.text.AnnotatedString -import com.konyaco.fluent.component.Button -import com.konyaco.fluent.component.Icon -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.regular.Checkmark -import com.konyaco.fluent.icons.regular.Copy -import kotlinx.coroutines.delay - -@Composable -fun CopyButton( - copyData: String, - modifier: Modifier = Modifier -) { - var isCopy by remember { mutableStateOf(false) } - LaunchedEffect(isCopy) { - if (isCopy) { - delay(1000) - isCopy = false - } - } - val clipboard = LocalClipboardManager.current - Button( - onClick = { - clipboard.setText(AnnotatedString(copyData)) - isCopy = true - }, - iconOnly = true, - content = { - AnimatedContent(isCopy) { target -> - if (target) { - Icon(Icons.Default.Checkmark, contentDescription = null) - } else { - Icon(Icons.Default.Copy, contentDescription = null) - } - } - }, - modifier = modifier - ) -} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/GalleryHeader.kt b/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/GalleryHeader.kt deleted file mode 100644 index 2e65da3d..00000000 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/GalleryHeader.kt +++ /dev/null @@ -1,216 +0,0 @@ -package com.konyaco.fluent.gallery.component - -import androidx.compose.foundation.ExperimentalFoundationApi -import androidx.compose.foundation.background -import androidx.compose.foundation.layout.Arrangement -import androidx.compose.foundation.layout.Column -import androidx.compose.foundation.layout.IntrinsicSize -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.Spacer -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.height -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.layout.size -import androidx.compose.foundation.layout.width -import androidx.compose.foundation.layout.widthIn -import androidx.compose.foundation.text.ClickableText -import androidx.compose.runtime.* -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.input.pointer.PointerIcon -import androidx.compose.ui.input.pointer.pointerHoverIcon -import androidx.compose.ui.platform.LocalUriHandler -import androidx.compose.ui.text.AnnotatedString -import androidx.compose.ui.text.ExperimentalTextApi -import androidx.compose.ui.unit.dp -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.LocalContentAlpha -import com.konyaco.fluent.LocalContentColor -import com.konyaco.fluent.LocalTextStyle -import com.konyaco.fluent.component.Button -import com.konyaco.fluent.component.DropDownButton -import com.konyaco.fluent.component.FlyoutPlacement -import com.konyaco.fluent.component.HyperlinkButton -import com.konyaco.fluent.component.Icon -import com.konyaco.fluent.component.MenuFlyoutContainer -import com.konyaco.fluent.component.Text -import com.konyaco.fluent.component.ToggleButton -import com.konyaco.fluent.gallery.ProjectUrl -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.filled.BrightnessHigh -import com.konyaco.fluent.icons.regular.Document -import com.konyaco.fluent.icons.regular.PersonFeedback -import fluentdesign.gallery.generated.resources.Res -import fluentdesign.gallery.generated.resources.github_logo -import org.jetbrains.compose.resources.ExperimentalResourceApi -import org.jetbrains.compose.resources.painterResource - -@Composable -fun GalleryHeader( - title: String, - description: String, - documentationPath: String? = null, - componentPath: String? = null, - galleryPath: String? = null, - controlVisible: Boolean = true, - themeButtonChecked: Boolean = false, - onThemeButtonChanged: (Boolean) -> Unit = {} -) { - GalleryHeader( - AnnotatedString(title), - AnnotatedString(description), - documentationPath, - componentPath, - galleryPath, - controlVisible, - themeButtonChecked, - onThemeButtonChanged - ) -} - -@OptIn(ExperimentalResourceApi::class) -@Composable -fun GalleryHeader( - title: AnnotatedString, - description: AnnotatedString, - documentPath: String? = null, - componentPath: String? = null, - galleryPath: String? = null, - themeButtonChecked: Boolean = false, - controlVisible: Boolean = true, - onThemeButtonChanged: (Boolean) -> Unit = {} -) { - Column(Modifier.padding(top = 32.dp, bottom = 24.dp, start = 32.dp, end = 32.dp)) { - val uriHandler = LocalUriHandler.current - Text( - text = title, - style = FluentTheme.typography.title - ) - - if (controlVisible || documentPath != null || componentPath != null || galleryPath != null) { - Row( - modifier = Modifier.padding(top = 12.dp).height(IntrinsicSize.Min), - horizontalArrangement = Arrangement.spacedBy(4.dp), - verticalAlignment = Alignment.CenterVertically - ) { - if (documentPath != null) { - Button( - onClick = { - uriHandler.openUri(ProjectUrl.documentationOf(documentPath)) - }, - content = { - Icon( - Icons.Default.Document, - contentDescription = null, - modifier = Modifier.size(18.dp) - ) - Text("Documentation") - } - ) - } - if (componentPath != null && galleryPath != null) { - MenuFlyoutContainer( - flyout = { - HyperlinkButton( - onClick = { - uriHandler.openUri( - ProjectUrl.componentCodeOf(componentPath) - ) - isFlyoutVisible = false - }, - content = { Text("Component") }, - modifier = Modifier.fillMaxWidth() - .padding(horizontal = 5.dp, vertical = 2.dp) - ) - HyperlinkButton( - onClick = { - uriHandler.openUri(ProjectUrl.galleryCodeOf(galleryPath)) - isFlyoutVisible = false - }, - content = { Text("Sample") }, - modifier = Modifier.fillMaxWidth() - .padding(horizontal = 5.dp, vertical = 2.dp) - ) - }, - content = { - DropDownButton( - onClick = { isFlyoutVisible = true }, - content = { - Icon( - painter = painterResource(Res.drawable.github_logo), - contentDescription = null, - modifier = Modifier.size(18.dp) - ) - Text("Source") - } - ) - }, - placement = FlyoutPlacement.Bottom, - adaptivePlacement = true - ) - } - Spacer(modifier = Modifier.weight(1f)) - if (controlVisible) { - ToggleButton( - checked = themeButtonChecked, - onCheckedChanged = onThemeButtonChanged, - content = { - Icon( - Icons.Filled.BrightnessHigh, - contentDescription = null, - modifier = Modifier.size(18.dp) - ) - }, - iconOnly = true, - modifier = Modifier.widthIn(40.dp) - ) - Spacer( - modifier = Modifier.padding(2.dp).height(16.dp).width(1.dp) - .background(FluentTheme.colors.stroke.divider.default) - ) - Button( - onClick = { uriHandler.openUri(ProjectUrl.FEED_BACK) }, - content = { - Icon( - Icons.Default.PersonFeedback, - contentDescription = null, - modifier = Modifier.size(18.dp) - ) - }, - iconOnly = true, - modifier = Modifier.widthIn(40.dp) - ) - } - } - } - - if (description.isNotBlank()) { - GalleryDescription(title, Modifier.padding(top = 24.dp)) - } - } -} - -@OptIn(ExperimentalFoundationApi::class, ExperimentalTextApi::class) -@Composable -fun GalleryDescription(description: AnnotatedString, modifier: Modifier = Modifier) { - var isOnHoverLink by remember { - mutableStateOf(false) - } - val uriHandler = LocalUriHandler.current - ClickableText( - text = description, - onHover = { - val index = it ?: return@ClickableText - isOnHoverLink = - description.getUrlAnnotations(index, index + 1).firstOrNull() != null - }, - style = LocalTextStyle.current.copy(LocalContentColor.current.copy(alpha = LocalContentAlpha.current)), - modifier = modifier.pointerHoverIcon( - icon = if (isOnHoverLink) PointerIcon.Hand else PointerIcon.Default - ) - ) { - description.getUrlAnnotations(it, it + 1).firstOrNull()?.let { urlAnnotation -> - uriHandler.openUri(urlAnnotation.item.url) - } - } -} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/GallerySection.kt b/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/GallerySection.kt deleted file mode 100644 index dff09b33..00000000 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/GallerySection.kt +++ /dev/null @@ -1,187 +0,0 @@ -package com.konyaco.fluent.gallery.component - -import androidx.compose.animation.AnimatedVisibility -import androidx.compose.animation.core.animateFloatAsState -import androidx.compose.animation.core.tween -import androidx.compose.animation.expandVertically -import androidx.compose.animation.shrinkVertically -import androidx.compose.foundation.background -import androidx.compose.foundation.clickable -import androidx.compose.foundation.horizontalScroll -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.foundation.layout.Arrangement -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.BoxScope -import androidx.compose.foundation.layout.Column -import androidx.compose.foundation.layout.ColumnScope -import androidx.compose.foundation.layout.IntrinsicSize -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.Spacer -import androidx.compose.foundation.layout.defaultMinSize -import androidx.compose.foundation.layout.fillMaxHeight -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.height -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.layout.width -import androidx.compose.foundation.layout.wrapContentHeight -import androidx.compose.foundation.rememberScrollState -import androidx.compose.foundation.shape.RoundedCornerShape -import androidx.compose.runtime.Composable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.draw.rotate -import androidx.compose.ui.unit.dp -import com.konyaco.fluent.Colors -import com.konyaco.fluent.ExperimentalFluentApi -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.FluentThemeConfiguration -import com.konyaco.fluent.animation.FluentDuration -import com.konyaco.fluent.animation.FluentEasing -import com.konyaco.fluent.background.BackgroundSizing -import com.konyaco.fluent.background.Layer -import com.konyaco.fluent.component.Icon -import com.konyaco.fluent.component.Scrollbar -import com.konyaco.fluent.component.SubtleButton -import com.konyaco.fluent.component.Text -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.regular.ChevronDown -import com.konyaco.fluent.surface.Card - -@OptIn(ExperimentalFluentApi::class) -@Composable -fun GallerySection( - modifier: Modifier, - title: String, - sourceCode: String, - colors: Colors = FluentTheme.colors, - output: (@Composable ColumnScope.() -> Unit)? = null, - options: (@Composable ColumnScope.() -> Unit)? = null, - content: @Composable BoxScope.() -> Unit, -) { - Column(modifier) { - Text(title, style = FluentTheme.typography.bodyStrong) - Spacer(Modifier.height(16.dp)) - FluentThemeConfiguration(colors = colors) { - Layer( - modifier = Modifier.fillMaxWidth().wrapContentHeight(), - shape = RoundedCornerShape( - topStart = 8.dp, topEnd = 8.dp - ), - color = FluentTheme.colors.background.solid.base, - backgroundSizing = BackgroundSizing.OuterBorderEdge - ) { - Row( - modifier = Modifier.height(IntrinsicSize.Max) - ) { - Box( - modifier = Modifier.weight(1f) - .defaultMinSize(minHeight = 100.dp) - .padding(16.dp), - contentAlignment = Alignment.CenterStart, - content = content - ) - if (output != null) { - Box( - modifier = Modifier.fillMaxHeight() - .padding(0.dp, 12.dp, 12.dp, 12.dp) - .padding(16.dp) - ) { - Column( - verticalArrangement = Arrangement.spacedBy(8.dp) - ) { - Text("Output:") - output() - } - } - } - if (options != null) { - Spacer( - modifier = Modifier.padding(vertical = 1.dp) - .fillMaxHeight() - .width(1.dp) - .background(FluentTheme.colors.stroke.divider.default) - ) - Column( - modifier = Modifier.fillMaxHeight() - .background(FluentTheme.colors.background.card.default) - .padding(16.dp) - .width(IntrinsicSize.Max), - verticalArrangement = Arrangement.spacedBy(8.dp) - ) { - options() - } - } - } - } - } - - var sourceCodeExpanded by remember { mutableStateOf(false) } - - val interactionSource = remember { MutableInteractionSource() } - Card( - modifier = Modifier.fillMaxWidth() - .clickable(interactionSource = interactionSource, indication = null, onClick = { - sourceCodeExpanded = !sourceCodeExpanded - }), - shape = RoundedCornerShape( - bottomEnd = if (sourceCodeExpanded) 0.dp else 8.dp, - bottomStart = if (sourceCodeExpanded) 0.dp else 8.dp - ) - ) { - Row(Modifier.padding(8.dp), verticalAlignment = Alignment.CenterVertically) { - Text(modifier = Modifier.padding(start = 8.dp).weight(1f), text = "Source Code") - SubtleButton( - onClick = { sourceCodeExpanded = !sourceCodeExpanded }, - interaction = interactionSource, - iconOnly = true - ) { - Icon( - modifier = Modifier.rotate( - animateFloatAsState( - if (sourceCodeExpanded) 180f else 0f, - ).value - ), - imageVector = Icons.Default.ChevronDown, - contentDescription = "Expand source code" - ) - } - } - } - AnimatedVisibility( - visible = sourceCodeExpanded, - enter = expandVertically( - tween(FluentDuration.MediumDuration, 0, FluentEasing.FastInvokeEasing) - ), - exit = shrinkVertically( - tween(FluentDuration.QuickDuration, 0, FluentEasing.SoftDismissEasing) - ) - ) { - Card( - modifier = Modifier.fillMaxWidth(), - shape = RoundedCornerShape( - bottomEnd = 8.dp, - bottomStart = 8.dp - ) - ) { - Column(Modifier.padding(16.dp, 12.dp)) { - Text("Kotlin", style = FluentTheme.typography.bodyStrong) - Spacer(Modifier.height(12.dp)) - val scrollState = rememberScrollState() - Box(Modifier.fillMaxWidth().wrapContentHeight()) { - SourceCode( - modifier = Modifier.horizontalScroll(scrollState), - code = sourceCode - ) - Box(Modifier.fillMaxWidth().align(Alignment.BottomCenter)) { - Scrollbar(modifier = Modifier.fillMaxWidth(), isVertical = false, adapter = com.konyaco.fluent.component.rememberScrollbarAdapter(scrollState)) - } - } - } - } - } - } -} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/AllSamplesScreen.kt b/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/AllSamplesScreen.kt deleted file mode 100644 index 2cec68ed..00000000 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/AllSamplesScreen.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.konyaco.fluent.gallery.screen - -import androidx.compose.runtime.* -import com.konyaco.fluent.gallery.annotation.Component -import com.konyaco.fluent.gallery.component.* -import com.konyaco.fluent.gallery.component._AllSamplesScreenComponent -import com.konyaco.fluent.gallery.component._HomeScreenComponent - -@Component(icon = "AppsList", index = 1, name = "All samples") -@Composable -fun AllSamplesScreen(navigator: ComponentNavigator) { - var allComponents by remember { - mutableStateOf?>(null) - } - LaunchedEffect(flatMapComponents) { - val excludeComponents = listOf( - _HomeScreenComponent, - _AllSamplesScreenComponent, - Design_guidance_TypographyScreenComponent, - Design_guidance_IconsScreenComponent - ) - allComponents = flatMapComponents.filter { it !in excludeComponents } - } - ComponentIndexScreen( - name = "All samples", - items = allComponents, - navigator - ) -} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/HomeScreen.kt.bak b/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/HomeScreen.kt.bak deleted file mode 100644 index 44576c48..00000000 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/HomeScreen.kt.bak +++ /dev/null @@ -1,410 +0,0 @@ -package com.konyaco.fluent.gallery.screen - -import androidx.compose.foundation.* -import androidx.compose.foundation.layout.* -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.foundation.shape.CutCornerShape -import androidx.compose.foundation.shape.RoundedCornerShape -import androidx.compose.runtime.* -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.draw.alpha -import androidx.compose.ui.platform.LocalDensity -import androidx.compose.ui.text.input.TextFieldValue -import androidx.compose.ui.unit.Density -import androidx.compose.ui.unit.dp -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.LocalContentColor -import com.konyaco.fluent.background.BackgroundSizing -import com.konyaco.fluent.background.Layer -import com.konyaco.fluent.component.* -import com.konyaco.fluent.component.rememberScrollbarAdapter -import com.konyaco.fluent.gallery.LocalStore -import com.konyaco.fluent.gallery.annotation.Component -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.regular.* -import com.konyaco.fluent.surface.Card - - -@Component(icon = "Home") -@Composable -fun HomeScreen() { - var displayDialog by remember { mutableStateOf(false) } - val density = LocalDensity.current - var scale by remember(density) { mutableStateOf(density.density) } - val store = LocalStore.current - - Column(Modifier.verticalScroll(rememberScrollState()).padding(16.dp), Arrangement.spacedBy(8.dp)) { - Controller(scale, { scale = it }, store.darkMode, { store.darkMode = it }) - - CompositionLocalProvider(LocalDensity provides Density(scale)) { - Content() - } - - AccentButton(onClick = { - displayDialog = true - }) { Text("Display Dialog") } - - Box { - var expanded by remember { mutableStateOf(false) } - - Button(onClick = { - expanded = true - }) { - Text("Show DropdownMenu") - } - - fun close() { - expanded = false - } - - DropdownMenu(expanded, ::close) { - DropdownMenuItem(::close) { Text("Option 1") } - DropdownMenuItem(::close) { Text("Option 2") } - DropdownMenuItem(::close) { Text("Option 3") } - } - } - var currentPlacement by remember { - mutableStateOf(FlyoutPlacement.Auto) - } - Row { - - FlyoutContainer( - flyout = { - Text("this is a flyout") - }, - placement = currentPlacement, - content = { - Button( - onClick = { isFlyoutVisible = true } - ) { - Text("Open Flyout") - } - } - ) - Spacer(Modifier.width(8.dp)) - Box { - var isFlyoutPlacementDropdownMenuOpened by remember { - mutableStateOf(false) - } - Button(onClick = { - isFlyoutPlacementDropdownMenuOpened = true - }) { - Text("Flyout placement") - } - val item = @Composable { placement: FlyoutPlacement -> - DropdownMenuItem({ - currentPlacement = placement - isFlyoutPlacementDropdownMenuOpened = false - }) { - Icon( - Icons.Default.Checkmark, - contentDescription = null, - modifier = Modifier.padding(end = 8.dp) - .alpha(if (placement == currentPlacement) 1f else 0f) - ) - Text(text = placement.toString()) - } - } - DropdownMenu( - isFlyoutPlacementDropdownMenuOpened, - { isFlyoutPlacementDropdownMenuOpened = false }) { - FlyoutPlacement.entries.forEach { item(it) } - } - } - } - - MenuFlyoutContainer( - placement = currentPlacement, - flyout = { - MenuFlyoutItem( - onClick = { - - }, - icon = { - Icon(Icons.Default.Delete, contentDescription = null) - }, - text = { - Text("Delete") - } - ) - MenuFlyoutSeparator() - MenuFlyoutItem( - onClick = { - - }, - icon = { - Icon(Icons.Default.Add, contentDescription = null) - }, - text = { - Text("Add") - } - ) - MenuFlyoutSeparator() - MenuFlyoutItem( - onClick = {}, - icon = {}, - paddingIcon = true, - text = { Text("test") } - ) - MenuFlyoutItem( - items = { - MenuFlyoutItem( - onClick = { - - }, - icon = { - Icon(Icons.Default.Add, contentDescription = null) - }, - text = { - Text("Add") - } - ) - }, - icon = { - Icon(Icons.Default.ClipboardMore, contentDescription = null) - }, - text = { - Text("More") - } - ) - }, - content = { - Button( - onClick = { isFlyoutVisible = !isFlyoutVisible } - ) { - Text("Open MenuFlyout") - } - } - ) - } - - Dialog( - title = "This is an example dialog", - visible = displayDialog, - cancelButtonText = "Cancel", - confirmButtonText = "Confirm", - onCancel = { - displayDialog = false - }, - onConfirm = { - displayDialog = false - }, - content = { - Text( - "This is body text. Windows 11 marks a visual evolution of the operating system. We have evolved our design language alongside with Fluent to create a design which is human, universal and truly feels like Windows. \n" + - "\n" + - "The design principles below have guided us throughout the journey of making Windows the best-in-class implementation of Fluent.\n", - color = LocalContentColor.current - ) - } - ) -} - - -@Composable -private fun Controller( - scale: Float, - onScaleChange: (Float) -> Unit, - darkMode: Boolean, - onDarkModeChange: (Boolean) -> Unit -) { - Row( - verticalAlignment = Alignment.CenterVertically, - horizontalArrangement = Arrangement.spacedBy(8.dp) - ) { - Text("Scale: %.2f".format(scale)) - val density = LocalDensity.current - Button(onClick = { onScaleChange(density.density) }) { Text("Reset") } - Switcher(darkMode, text = "Dark Mode", onCheckStateChange = { onDarkModeChange(it) }) - } - Slider( - modifier = Modifier.width(200.dp), - value = scale, - onValueChange = { onScaleChange(it) }, - valueRange = 1f..10f - ) -} - -@Composable -private fun Content() { - - var sliderValue by remember { mutableStateOf(0.5f) } - Slider( - modifier = Modifier.width(200.dp), - value = sliderValue, - onValueChange = { sliderValue = it }, - ) - Buttons() - - Controls() - - val layerScrollState = rememberScrollState() - ScrollbarContainer( - adapter = rememberScrollbarAdapter(layerScrollState), - isVertical = false - ) { - Row(modifier = Modifier.padding(bottom = 8.dp).horizontalScroll(layerScrollState)) { - Box { - Box(Modifier.size(32.dp).background(FluentTheme.colors.fillAccent.default)) - } - - Layer( - shape = RoundedCornerShape(4.dp), - color = FluentTheme.colors.fillAccent.default, - border = BorderStroke(1.dp, FluentTheme.colors.stroke.control.default), - content = { - Box(Modifier.size(32.dp)) - }, - backgroundSizing = BackgroundSizing.InnerBorderEdge - ) - Layer( - shape = RoundedCornerShape(4.dp), - color = FluentTheme.colors.fillAccent.default, - border = BorderStroke(1.dp, FluentTheme.colors.stroke.control.default), - content = { - Box(Modifier.size(32.dp)) - }, - backgroundSizing = BackgroundSizing.OuterBorderEdge - ) - - Layer( - shape = CutCornerShape(4.dp), - color = FluentTheme.colors.fillAccent.default, - border = BorderStroke(1.dp, FluentTheme.colors.stroke.control.default.copy(0.5f)), - content = { - Box(Modifier.size(32.dp)) - }, - backgroundSizing = BackgroundSizing.InnerBorderEdge - ) - Layer( - shape = CutCornerShape(4.dp), - color = FluentTheme.colors.fillAccent.default, - border = BorderStroke(1.dp, FluentTheme.colors.stroke.control.default.copy(0.5f)), - content = { - Box(Modifier.size(32.dp)) - }, - backgroundSizing = BackgroundSizing.OuterBorderEdge - ) - - Layer( - shape = CircleShape, - color = FluentTheme.colors.fillAccent.default, - border = BorderStroke(1.dp, FluentTheme.colors.stroke.control.default), - content = { - Box(Modifier.size(32.dp)) - }, - backgroundSizing = BackgroundSizing.InnerBorderEdge - ) - Layer( - shape = CircleShape, - color = FluentTheme.colors.fillAccent.default, - border = BorderStroke(1.dp, FluentTheme.colors.stroke.control.default), - content = { - Box(Modifier.size(32.dp)) - }, - backgroundSizing = BackgroundSizing.OuterBorderEdge - ) - - Card(Modifier) { - Box(Modifier.size(32.dp)) - } - } - } - var value by remember { mutableStateOf(TextFieldValue("Hello Fluent!")) } - TextField(value, onValueChange = { value = it }) - TextField( - value = value, onValueChange = { value = it }, enabled = false, - header = { Text("With Header") } - ) - - // ProgressRings - Row( - horizontalArrangement = Arrangement.spacedBy(32.dp), - verticalAlignment = Alignment.CenterVertically - ) { - ProgressRing(size = ProgressRingSize.Medium) - ProgressRing(progress = sliderValue) - AccentButton(onClick = {}) { - ProgressRing(size = ProgressRingSize.Small, color = LocalContentColor.current) - Text("Small") - } - } - - ProgressBar(sliderValue) - ProgressBar() - - Row(horizontalArrangement = Arrangement.spacedBy(8.dp)) { - for (imageVector in icons) { - Icon( - modifier = Modifier.size(18.dp), - imageVector = imageVector, contentDescription = null - ) - } - } -} - -@Composable -private fun Controls() { - var checked by remember { mutableStateOf(false) } - Switcher(checked, text = null, onCheckStateChange = { checked = it }) - - var checked2 by remember { mutableStateOf(true) } - Switcher(checked2, text = "With Label", onCheckStateChange = { checked2 = it }) - - var checked3 by remember { mutableStateOf(true) } - Switcher( - checked3, - text = "Before Label", - textBefore = true, - onCheckStateChange = { checked3 = it } - ) - - var checked4 by remember { mutableStateOf(false) } - CheckBox(checked4) { checked4 = it } - - var checked5 by remember { mutableStateOf(true) } - CheckBox(checked5, label = "With Label") { checked5 = it } - - var selectedRadio by remember { mutableStateOf(0) } - RadioButton(selectedRadio == 0, onClick = { selectedRadio = 0 }) - RadioButton(selectedRadio == 1, onClick = { selectedRadio = 1 }, label = "With Label") -} - -@Composable -private fun Buttons() { - var text by remember { mutableStateOf("Hello World") } - Row(horizontalArrangement = Arrangement.spacedBy(8.dp)) { - val onClick = { text = "Hello, Fluent Design!" } - Button(onClick) { Text(text) } - - AccentButton(onClick) { - Icon(Icons.Default.Checkmark, contentDescription = null) - Text(text) - } - - SubtleButton(onClick) { - Text("Text Button") - } - } - Row(horizontalArrangement = Arrangement.spacedBy(8.dp)) { - AccentButton({}, iconOnly = true) { - Icon(Icons.Default.Navigation, contentDescription = null) - } - Button({}, iconOnly = true) { - Icon(Icons.Default.Navigation, contentDescription = null) - } - SubtleButton({}, iconOnly = true) { - Icon(Icons.Default.Navigation, contentDescription = null) - } - } -} - -private val icons = arrayOf( - Icons.Default.Add, - Icons.Default.Delete, - Icons.Default.Dismiss, - Icons.Default.ArrowLeft, - Icons.Default.Navigation, - Icons.Default.List -) \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/ComboBoxScreen.kt b/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/ComboBoxScreen.kt deleted file mode 100644 index de659c5e..00000000 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/ComboBoxScreen.kt +++ /dev/null @@ -1,60 +0,0 @@ -package com.konyaco.fluent.gallery.screen.basicinput - -import androidx.compose.runtime.Composable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import com.konyaco.fluent.component.ComboBox -import com.konyaco.fluent.gallery.annotation.Component -import com.konyaco.fluent.gallery.annotation.Sample -import com.konyaco.fluent.gallery.component.ComponentPagePath -import com.konyaco.fluent.gallery.component.GalleryPage -import com.konyaco.fluent.gallery.component.TodoComponent - -@Component(index = 9, description = "A drop-down list of items a user can select from.") -@Composable -fun ComboBoxScreen() { - GalleryPage( - title = "ComboBox", - description = "Use a ComboBox when you need to conserve on-screen space and when users select only one option at a time. A ComboBox shows only the currently selected item.", - galleryPath = ComponentPagePath.ComboBoxScreen - ) { - Section( - title = "A ComboBox with its Items source set", - sourceCode = sourceCodeOfItemsSourceComboBoxSample - ) { - ItemsSourceComboBoxSample() - } - - Section( - title = "A ComboBox with items defined inline and its width set", - sourceCode = "" - ) { - TodoComponent() - } - - Section( - title = "An editable ComboBox", - sourceCode = "" - ) { - TodoComponent() - } - } -} - -private val itemsList = listOf("Red", "Green", "Yellow", "Blue", "Pink") - -@Sample -@Composable -private fun ItemsSourceComboBoxSample() { - var selected by remember { mutableStateOf(null) } - - ComboBox( - header = "Color", - placeholder = "Pick a color", - selected = selected, - items = itemsList, - onSelectionChange = { i, s -> selected = i } - ) -} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/SliderScreen.kt b/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/SliderScreen.kt deleted file mode 100644 index 9e251d35..00000000 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/SliderScreen.kt +++ /dev/null @@ -1,63 +0,0 @@ -package com.konyaco.fluent.gallery.screen.basicinput - -import androidx.compose.foundation.layout.height -import androidx.compose.foundation.layout.width -import androidx.compose.runtime.Composable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Modifier -import androidx.compose.ui.unit.dp -import com.konyaco.fluent.component.Slider -import com.konyaco.fluent.component.Text -import com.konyaco.fluent.gallery.annotation.Component -import com.konyaco.fluent.gallery.annotation.Sample -import com.konyaco.fluent.gallery.component.ComponentPagePath -import com.konyaco.fluent.gallery.component.GalleryPage -import com.konyaco.fluent.gallery.component.TodoComponent -import com.konyaco.fluent.source.generated.FluentSourceFile -import kotlin.math.roundToInt - -@Component( - index = 12, - description = "A control that lets the user select from a range of values by moving a Thumb control along a track." -) -@Composable -fun SliderScreen() { - GalleryPage( - title = "Slider", - description = "Use a Slider when you want your users to be able to set defined, contiguous values (such as volume or brightness) or a range of discrete values (such as screen resolution settings).", - componentPath = FluentSourceFile.Slider, - galleryPath = ComponentPagePath.SliderScreen - ) { - val (value, onValueChanged) = remember { mutableStateOf(0f) } - Section( - title = "A simple Slider.", - sourceCode = sourceCodeOfSliderSample, - content = { SliderSample(value, onValueChanged) }, - output = { - Text((value * 100).roundToInt().toString()) - } - ) - Section("A Slider with range and steps specified.", "") { - TodoComponent() - } - Section("A Slider with tick marks.", "") { - TodoComponent() - } - Section("A vertical slider with range and tick marks specified.", "") { - TodoComponent() - } - } -} - -@Sample -@Composable -private fun SliderSample(value: Float, onValueChanged: (Float) -> Unit) { - Slider( - modifier = Modifier.width(200.dp).height(32.dp), - value = value, - onValueChange = onValueChanged - ) -} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/ToggleSwitchScreen.kt b/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/ToggleSwitchScreen.kt deleted file mode 100644 index 5edf89b3..00000000 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/ToggleSwitchScreen.kt +++ /dev/null @@ -1,44 +0,0 @@ -package com.konyaco.fluent.gallery.screen.basicinput - -import androidx.compose.runtime.Composable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import com.konyaco.fluent.component.Switcher -import com.konyaco.fluent.gallery.annotation.Component -import com.konyaco.fluent.gallery.annotation.Sample -import com.konyaco.fluent.gallery.component.ComponentPagePath -import com.konyaco.fluent.gallery.component.GalleryPage -import com.konyaco.fluent.gallery.component.TodoComponent -import com.konyaco.fluent.source.generated.FluentSourceFile - -@Component(index = 13, description = "A switch that can be toggled between 2 states.") -@Composable -fun ToggleSwitchScreen() { - GalleryPage( - title = "ToggleSwitch", - description = "Use ToggleSwitch controls to present users with exactly two mutually exclusive options (like on/off), where choosing an option results in an immediate commit. A toggle switch should have a single label.", - componentPath = FluentSourceFile.Switcher, - galleryPath = ComponentPagePath.ToggleSwitchScreen - ) { - Section( - title = "A simple ToggleSwitch.", - sourceCode = sourceCodeOfToggleSwitchSample, - content = { ToggleSwitchSample() } - ) - Section( - title = "A ToggleSwitch with custom header and content.", - sourceCode = "" - ) { - TodoComponent() - } - } -} - -@Sample -@Composable -private fun ToggleSwitchSample() { - var checked by remember { mutableStateOf(false) } - Switcher(checked, { checked = it }, text = if (checked) "On" else "Off") -} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/datetime/DateTimeScreen.kt b/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/datetime/DateTimeScreen.kt deleted file mode 100644 index 985bffa5..00000000 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/datetime/DateTimeScreen.kt +++ /dev/null @@ -1,46 +0,0 @@ -@file:OptIn(ExperimentalFluentApi::class) - -package com.konyaco.fluent.gallery.screen.datetime - -import androidx.compose.runtime.Composable -import com.konyaco.fluent.ExperimentalFluentApi -import com.konyaco.fluent.component.CalendarDatePicker -import com.konyaco.fluent.component.CalendarView -import com.konyaco.fluent.gallery.annotation.Component -import com.konyaco.fluent.gallery.annotation.Sample -import com.konyaco.fluent.gallery.component.GalleryPage - -@Component -@Composable -fun DateTimeScreen() { - GalleryPage( - title = "DateTime", - description = "Lets users pick a date value using a calendar.", - ) { - Section( - title = "A CalendarDatePicker", - sourceCode = sourceCodeOfDatePickerSample - ) { - DatePickerSample() - } - - Section( - title = "CalendarView shows a large view for showing and selecting dates.", - sourceCode = sourceCodeOfCalendarViewSample - ) { - CalendarViewSample() - } - } -} - -@Sample -@Composable -private fun DatePickerSample() { - CalendarDatePicker(onChoose = {}) -} - -@Sample -@Composable -private fun CalendarViewSample() { - CalendarView(onChoose = {}) -} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/design/TypographyScreen.kt b/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/design/TypographyScreen.kt deleted file mode 100644 index 2fa2501f..00000000 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/design/TypographyScreen.kt +++ /dev/null @@ -1,204 +0,0 @@ -@file:OptIn(ExperimentalTextApi::class) - -package com.konyaco.fluent.gallery.screen.design - -import androidx.compose.foundation.background -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.Column -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.heightIn -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.layout.width -import androidx.compose.foundation.shape.RoundedCornerShape -import androidx.compose.runtime.Composable -import androidx.compose.runtime.Stable -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.text.AnnotatedString -import androidx.compose.ui.text.ExperimentalTextApi -import androidx.compose.ui.text.SpanStyle -import androidx.compose.ui.text.TextStyle -import androidx.compose.ui.text.UrlAnnotation -import androidx.compose.ui.text.buildAnnotatedString -import androidx.compose.ui.text.font.FontWeight -import androidx.compose.ui.text.style.TextDecoration -import androidx.compose.ui.text.withAnnotation -import androidx.compose.ui.unit.dp -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.component.Text -import com.konyaco.fluent.gallery.annotation.Component -import com.konyaco.fluent.gallery.annotation.Sample -import com.konyaco.fluent.gallery.component.ComponentPagePath -import com.konyaco.fluent.gallery.component.CopyButton -import com.konyaco.fluent.gallery.component.GalleryPage -import com.konyaco.fluent.source.generated.FluentSourceFile - -@Component(index = 1, icon = "TextFont") -@Composable -fun TypographyScreen() { - val linkTextColor = FluentTheme.colors.text.accent.primary - GalleryPage( - title = AnnotatedString("Typography"), - description = buildAnnotatedString { - append("Type helps provide structure and hierarchy to UI. ") - append("The default font for Windows is ") - withAnnotation(UrlAnnotation("https://learn.microsoft.com/zh-cn/windows/apps/design/downloads/#fonts")) { - append( - AnnotatedString( - "Segoe UI Variable", - spanStyle = SpanStyle( - color = linkTextColor, - textDecoration = TextDecoration.Underline - ) - ) - ) - } - append(". ") - append("Best practice is to use Regular weight for most text, use Semibold for titles. ") - append("The minimum values should be 12px Regular, 14px Semibold.") - }, - componentPath = FluentSourceFile.Typography, - galleryPath = ComponentPagePath.TypographyScreen - ) { - Section( - title = "Type ramp", - sourceCode = sourceCodeOfBasicTypographySample, - content = { - TypographySample() - } - ) - } -} - -@Sample -@Composable -private fun BasicTypographySample() { - Column { - Text("Caption", style = FluentTheme.typography.caption) - Text("Body", style = FluentTheme.typography.body) - Text("Body Strong", style = FluentTheme.typography.bodyStrong) - Text("Subtitle", style = FluentTheme.typography.subtitle) - Text("Title", style = FluentTheme.typography.title) - Text("Title Large", style = FluentTheme.typography.titleLarge) - Text("Display", style = FluentTheme.typography.display) - } -} - -@Composable -private fun TypographySample() { - Column { - HeaderItemRow() - typographyList().forEachIndexed { index, (name, style) -> - ItemRow( - text = { Text(text = name, style = style) }, - secondary = { - Text( - text = when (style.fontWeight) { - FontWeight.Normal -> "Regular" - FontWeight.SemiBold -> "Semibold" - else -> "" - }, - style = FluentTheme.typography.caption - ) - }, - third = { - Text( - text = "${style.fontSize.value.toInt()}/${style.lineHeight.value.toInt()} sp", - style = FluentTheme.typography.caption - ) - }, - fourth = { - val content = when (style) { - FluentTheme.typography.caption -> "FluentTheme.typography.caption" - FluentTheme.typography.body -> "FluentTheme.typography.body" - FluentTheme.typography.bodyStrong -> "FluentTheme.typography.bodyStrong" - FluentTheme.typography.subtitle -> "FluentTheme.typography.subtitle" - FluentTheme.typography.title -> "FluentTheme.typography.title" - FluentTheme.typography.titleLarge -> "FluentTheme.typography.titleLarge" - FluentTheme.typography.display -> "FluentTheme.typography.display" - else -> "" - } - Row(verticalAlignment = Alignment.CenterVertically) { - Text( - text = content, - modifier = Modifier.width(240.dp) - ) - CopyButton(content) - } - }, - index = index + 1 - ) - } - } -} - -@Composable -private fun ItemRow( - text: @Composable () -> Unit, - secondary: @Composable () -> Unit, - third: @Composable () -> Unit, - fourth: @Composable () -> Unit, - index: Int, - modifier: Modifier = Modifier -) { - Row( - verticalAlignment = Alignment.CenterVertically, - modifier = modifier.fillMaxWidth().heightIn(68.dp).then( - if (index.mod(2) == 1) { - Modifier.background( - FluentTheme.colors.background.card.default, - shape = RoundedCornerShape(4.dp) - ) - } else { - Modifier - } - ) - ) { - Box(modifier = Modifier.width(272.dp).padding(horizontal = 16.dp, vertical = 16.dp)) { - text() - } - Box(modifier = Modifier.width(136.dp)) { - secondary() - } - Box(modifier = Modifier.width(112.dp)) { - third() - } - fourth() - } -} - -@Composable -private fun HeaderItemRow() { - val headerStyle = - FluentTheme.typography.caption.copy(color = FluentTheme.colors.text.text.secondary) - ItemRow( - text = { - Text("Example", style = headerStyle) - }, - secondary = { - Text("Variable Font", style = headerStyle) - }, - third = { - Text("Size/Line height", style = headerStyle) - }, - fourth = { - Text("Style", style = headerStyle) - }, - index = 0 - ) -} - -@Stable -@Composable -private fun typographyList(): List> { - return listOf( - "Caption" to FluentTheme.typography.caption, - "Body" to FluentTheme.typography.body, - "Body Strong" to FluentTheme.typography.bodyStrong, - "Subtitle" to FluentTheme.typography.subtitle, - "Title" to FluentTheme.typography.title, - "Title Large" to FluentTheme.typography.titleLarge, - "Display" to FluentTheme.typography.display - ) -} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/settings/SettingsScreen.kt b/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/settings/SettingsScreen.kt deleted file mode 100644 index 62261b56..00000000 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/settings/SettingsScreen.kt +++ /dev/null @@ -1,459 +0,0 @@ -package com.konyaco.fluent.gallery.screen.settings - -import androidx.compose.foundation.BorderStroke -import androidx.compose.foundation.background -import androidx.compose.foundation.horizontalScroll -import androidx.compose.foundation.layout.Arrangement -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.Column -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.Spacer -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.layout.size -import androidx.compose.foundation.layout.width -import androidx.compose.foundation.rememberScrollState -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.foundation.shape.CutCornerShape -import androidx.compose.foundation.shape.RoundedCornerShape -import androidx.compose.foundation.verticalScroll -import androidx.compose.runtime.Composable -import androidx.compose.runtime.CompositionLocalProvider -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.draw.alpha -import androidx.compose.ui.platform.LocalDensity -import androidx.compose.ui.text.input.TextFieldValue -import androidx.compose.ui.unit.Density -import androidx.compose.ui.unit.dp -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.LocalContentColor -import com.konyaco.fluent.background.BackgroundSizing -import com.konyaco.fluent.background.Layer -import com.konyaco.fluent.component.AccentButton -import com.konyaco.fluent.component.Button -import com.konyaco.fluent.component.CheckBox -import com.konyaco.fluent.component.ContentDialog -import com.konyaco.fluent.component.DropdownMenu -import com.konyaco.fluent.component.DropdownMenuItem -import com.konyaco.fluent.component.FlyoutContainer -import com.konyaco.fluent.component.FlyoutPlacement -import com.konyaco.fluent.component.Icon -import com.konyaco.fluent.component.MenuFlyoutContainer -import com.konyaco.fluent.component.MenuFlyoutItem -import com.konyaco.fluent.component.MenuFlyoutSeparator -import com.konyaco.fluent.component.ProgressBar -import com.konyaco.fluent.component.ProgressRing -import com.konyaco.fluent.component.ProgressRingSize -import com.konyaco.fluent.component.RadioButton -import com.konyaco.fluent.component.ScrollbarContainer -import com.konyaco.fluent.component.Slider -import com.konyaco.fluent.component.SubtleButton -import com.konyaco.fluent.component.Switcher -import com.konyaco.fluent.component.Text -import com.konyaco.fluent.component.TextField -import com.konyaco.fluent.component.rememberScrollbarAdapter -import com.konyaco.fluent.gallery.LocalStore -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.regular.Add -import com.konyaco.fluent.icons.regular.ArrowLeft -import com.konyaco.fluent.icons.regular.Checkmark -import com.konyaco.fluent.icons.regular.ClipboardMore -import com.konyaco.fluent.icons.regular.Delete -import com.konyaco.fluent.icons.regular.Dismiss -import com.konyaco.fluent.icons.regular.List -import com.konyaco.fluent.icons.regular.Navigation -import com.konyaco.fluent.surface.Card - -@Composable -fun SettingsScreen() { - var displayDialog by remember { mutableStateOf(false) } - val density = LocalDensity.current - var scale by remember(density) { mutableStateOf(density.density) } - val store = LocalStore.current - - Column(Modifier.verticalScroll(rememberScrollState()).padding(16.dp), Arrangement.spacedBy(8.dp)) { - Controller( - scale = scale, - onScaleChange = { scale = it }, - darkMode = store.darkMode, - onDarkModeChange = { store.darkMode = it }, - acrylicPopupEnabled = store.enabledAcrylicPopup, - onAcrylicPopupChange = { store.enabledAcrylicPopup = it }, - compactModeEnabled = store.compactMode, - onCompactModeChange = { store.compactMode = it } - ) - - CompositionLocalProvider(LocalDensity provides Density(scale)) { - Content() - } - - AccentButton(onClick = { - displayDialog = true - }) { Text("Display Dialog") } - - Box { - var expanded by remember { mutableStateOf(false) } - - Button(onClick = { - expanded = true - }) { - Text("Show DropdownMenu") - } - - fun close() { - expanded = false - } - - DropdownMenu(expanded, ::close) { - DropdownMenuItem(::close) { Text("Option 1") } - DropdownMenuItem(::close) { Text("Option 2") } - DropdownMenuItem(::close) { Text("Option 3") } - } - } - var currentPlacement by remember { - mutableStateOf(FlyoutPlacement.Auto) - } - Row { - - FlyoutContainer( - flyout = { - Text("this is a flyout") - }, - placement = currentPlacement, - content = { - Button( - onClick = { isFlyoutVisible = true } - ) { - Text("Open Flyout") - } - } - ) - Spacer(Modifier.width(8.dp)) - Box { - var isFlyoutPlacementDropdownMenuOpened by remember { - mutableStateOf(false) - } - Button(onClick = { - isFlyoutPlacementDropdownMenuOpened = true - }) { - Text("Flyout placement") - } - val item = @Composable { placement: FlyoutPlacement -> - DropdownMenuItem({ - currentPlacement = placement - isFlyoutPlacementDropdownMenuOpened = false - }) { - Icon( - Icons.Default.Checkmark, - contentDescription = null, - modifier = Modifier.padding(end = 8.dp) - .alpha(if (placement == currentPlacement) 1f else 0f) - ) - Text(text = placement.toString()) - } - } - DropdownMenu( - isFlyoutPlacementDropdownMenuOpened, - { isFlyoutPlacementDropdownMenuOpened = false }) { - FlyoutPlacement.entries.forEach { item(it) } - } - } - } - - MenuFlyoutContainer( - placement = currentPlacement, - flyout = { - MenuFlyoutItem( - onClick = { - - }, - icon = { - Icon(Icons.Default.Delete, contentDescription = null) - }, - text = { - Text("Delete") - } - ) - MenuFlyoutSeparator() - MenuFlyoutItem( - onClick = { - - }, - icon = { - Icon(Icons.Default.Add, contentDescription = null) - }, - text = { - Text("Add") - } - ) - MenuFlyoutSeparator() - MenuFlyoutItem( - onClick = {}, - icon = {}, - text = { Text("Test") } - ) - MenuFlyoutItem( - items = { - MenuFlyoutItem( - onClick = { - - }, - icon = { - Icon(Icons.Default.Add, contentDescription = null) - }, - text = { - Text("Add") - } - ) - }, - icon = { - Icon(Icons.Default.ClipboardMore, contentDescription = null) - }, - text = { - Text("More") - } - ) - }, - content = { - Button( - onClick = { isFlyoutVisible = !isFlyoutVisible } - ) { - Text("Open MenuFlyout") - } - } - ) - } - - ContentDialog( - title = "This is an example dialog", - visible = displayDialog, - primaryButtonText = "Confirm", - closeButtonText = "Cancel", - onButtonClick = { displayDialog = false }, - content = { - Text( - "This is body text. Windows 11 marks a visual evolution of the operating system. We have evolved our design language alongside with Fluent to create a design which is human, universal and truly feels like Windows. \n" + - "\n" + - "The design principles below have guided us throughout the journey of making Windows the best-in-class implementation of Fluent.\n" - ) - } - ) -} - - -@Composable -private fun Controller( - scale: Float, - onScaleChange: (Float) -> Unit, - darkMode: Boolean, - onDarkModeChange: (Boolean) -> Unit, - acrylicPopupEnabled: Boolean, - onAcrylicPopupChange: (Boolean) -> Unit, - compactModeEnabled: Boolean, - onCompactModeChange: (Boolean) -> Unit -) { - Row( - verticalAlignment = Alignment.CenterVertically, - horizontalArrangement = Arrangement.spacedBy(8.dp) - ) { - Text("Scale: ${scale.toString().take(4)}") - val density = LocalDensity.current - Button(onClick = { onScaleChange(density.density) }) { Text("Reset") } - Switcher(darkMode, text = "Dark Mode", onCheckStateChange = { onDarkModeChange(it) }) - Switcher(acrylicPopupEnabled, text = "Acrylic Popup", onCheckStateChange = { onAcrylicPopupChange(it) }) - Switcher(compactModeEnabled, text = "Compact Mode", onCheckStateChange = { onCompactModeChange(it) }) - } - Slider( - modifier = Modifier.width(200.dp), - value = scale, - onValueChange = { onScaleChange(it) }, - valueRange = 1f..10f - ) -} - -@Composable -private fun Content() { - - var sliderValue by remember { mutableStateOf(0.5f) } - Slider( - modifier = Modifier.width(200.dp), - value = sliderValue, - onValueChange = { sliderValue = it }, - ) - Buttons() - - Controls() - - val layerScrollState = rememberScrollState() - ScrollbarContainer( - adapter = rememberScrollbarAdapter(layerScrollState), - isVertical = false - ) { - Row(modifier = Modifier.padding(bottom = 8.dp).horizontalScroll(layerScrollState)) { - Box { - Box(Modifier.size(32.dp).background(FluentTheme.colors.fillAccent.default)) - } - - Layer( - shape = RoundedCornerShape(4.dp), - color = FluentTheme.colors.fillAccent.default, - border = BorderStroke(1.dp, FluentTheme.colors.stroke.control.default), - content = { - Box(Modifier.size(32.dp)) - }, - backgroundSizing = BackgroundSizing.InnerBorderEdge - ) - Layer( - shape = RoundedCornerShape(4.dp), - color = FluentTheme.colors.fillAccent.default, - border = BorderStroke(1.dp, FluentTheme.colors.stroke.control.default), - content = { - Box(Modifier.size(32.dp)) - }, - backgroundSizing = BackgroundSizing.OuterBorderEdge - ) - - Layer( - shape = CutCornerShape(4.dp), - color = FluentTheme.colors.fillAccent.default, - border = BorderStroke(1.dp, FluentTheme.colors.stroke.control.default.copy(0.5f)), - content = { - Box(Modifier.size(32.dp)) - }, - backgroundSizing = BackgroundSizing.InnerBorderEdge - ) - Layer( - shape = CutCornerShape(4.dp), - color = FluentTheme.colors.fillAccent.default, - border = BorderStroke(1.dp, FluentTheme.colors.stroke.control.default.copy(0.5f)), - content = { - Box(Modifier.size(32.dp)) - }, - backgroundSizing = BackgroundSizing.OuterBorderEdge - ) - - Layer( - shape = CircleShape, - color = FluentTheme.colors.fillAccent.default, - border = BorderStroke(1.dp, FluentTheme.colors.stroke.control.default), - content = { - Box(Modifier.size(32.dp)) - }, - backgroundSizing = BackgroundSizing.InnerBorderEdge - ) - Layer( - shape = CircleShape, - color = FluentTheme.colors.fillAccent.default, - border = BorderStroke(1.dp, FluentTheme.colors.stroke.control.default), - content = { - Box(Modifier.size(32.dp)) - }, - backgroundSizing = BackgroundSizing.OuterBorderEdge - ) - - Card(Modifier) { - Box(Modifier.size(32.dp)) - } - } - } - var value by remember { mutableStateOf(TextFieldValue("Hello Fluent!")) } - TextField(value, onValueChange = { value = it }) - TextField( - value = value, onValueChange = { value = it }, enabled = false, - header = { Text("With Header") } - ) - - // ProgressRings - Row( - horizontalArrangement = Arrangement.spacedBy(32.dp), - verticalAlignment = Alignment.CenterVertically - ) { - ProgressRing(size = ProgressRingSize.Medium) - ProgressRing(progress = sliderValue) - AccentButton(onClick = {}) { - ProgressRing(size = ProgressRingSize.Small, color = LocalContentColor.current) - Text("Small") - } - } - - ProgressBar(sliderValue) - ProgressBar() - - Row(horizontalArrangement = Arrangement.spacedBy(8.dp)) { - for (imageVector in icons) { - Icon( - modifier = Modifier.size(18.dp), - imageVector = imageVector, contentDescription = null - ) - } - } -} - -@Composable -private fun Controls() { - var checked by remember { mutableStateOf(false) } - Switcher(checked, text = null, onCheckStateChange = { checked = it }) - - var checked2 by remember { mutableStateOf(true) } - Switcher(checked2, text = "With Label", onCheckStateChange = { checked2 = it }) - - var checked3 by remember { mutableStateOf(true) } - Switcher( - checked3, - text = "Before Label", - textBefore = true, - onCheckStateChange = { checked3 = it } - ) - - var checked4 by remember { mutableStateOf(false) } - CheckBox(checked4) { checked4 = it } - - var checked5 by remember { mutableStateOf(true) } - CheckBox(checked5, label = "With Label") { checked5 = it } - - var selectedRadio by remember { mutableStateOf(0) } - RadioButton(selectedRadio == 0, onClick = { selectedRadio = 0 }) - RadioButton(selectedRadio == 1, onClick = { selectedRadio = 1 }, label = "With Label") -} - -@Composable -private fun Buttons() { - var text by remember { mutableStateOf("Hello World") } - Row(horizontalArrangement = Arrangement.spacedBy(8.dp)) { - val onClick = { text = "Hello, Fluent Design!" } - Button(onClick) { Text(text) } - - AccentButton(onClick) { - Icon(Icons.Default.Checkmark, contentDescription = null) - Text(text) - } - - SubtleButton(onClick) { - Text("Text Button") - } - } - Row(horizontalArrangement = Arrangement.spacedBy(8.dp)) { - AccentButton({}, iconOnly = true) { - Icon(Icons.Default.Navigation, contentDescription = null) - } - Button({}, iconOnly = true) { - Icon(Icons.Default.Navigation, contentDescription = null) - } - SubtleButton({}, iconOnly = true) { - Icon(Icons.Default.Navigation, contentDescription = null) - } - } -} - -private val icons = arrayOf( - Icons.Default.Add, - Icons.Default.Delete, - Icons.Default.Dismiss, - Icons.Default.ArrowLeft, - Icons.Default.Navigation, - Icons.Default.List -) \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/styles/AcylicContainerScreen.kt b/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/styles/AcylicContainerScreen.kt deleted file mode 100644 index 3a27c14a..00000000 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/styles/AcylicContainerScreen.kt +++ /dev/null @@ -1,78 +0,0 @@ -@file:OptIn(ExperimentalFluentApi::class) - -package com.konyaco.fluent.gallery.screen.styles - -import androidx.compose.foundation.background -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.defaultMinSize -import androidx.compose.foundation.layout.height -import androidx.compose.foundation.layout.size -import androidx.compose.foundation.layout.width -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.text.AnnotatedString -import androidx.compose.ui.text.ExperimentalTextApi -import androidx.compose.ui.text.SpanStyle -import androidx.compose.ui.text.UrlAnnotation -import androidx.compose.ui.text.buildAnnotatedString -import androidx.compose.ui.text.withAnnotation -import androidx.compose.ui.unit.dp -import com.konyaco.fluent.ExperimentalFluentApi -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.background.Acrylic -import com.konyaco.fluent.background.AcrylicContainer -import com.konyaco.fluent.gallery.annotation.Component -import com.konyaco.fluent.gallery.annotation.Sample -import com.konyaco.fluent.gallery.component.ComponentPagePath -import com.konyaco.fluent.gallery.component.GalleryPage -import com.konyaco.fluent.source.generated.FluentSourceFile - -@OptIn(ExperimentalTextApi::class) -@Component( - index = 3, - description = "A translucent material recommended for panel backgrounds.", -) -@Composable -fun AcrylicContainerScreen() { - val linkTextColor = FluentTheme.colors.text.accent.primary - GalleryPage( - title = AnnotatedString("AcrylicContainer"), - description = buildAnnotatedString { - append("A translucent material recommended for panel backgrounds. ") - append("supported by ") - withAnnotation(UrlAnnotation("https://github.com/chrisbanes/haze")) { - append(AnnotatedString("haze", spanStyle = SpanStyle(color = linkTextColor))) - } - append(".") - }, - componentPath = FluentSourceFile.Acrylic, - galleryPath = ComponentPagePath.AcrylicContainerScreen - ) { - Section( - title = "A Basic Acrylic sample", - sourceCode = sourceCodeOfBasicAcrylicSample, - content = { BasicAcrylicSample() } - ) - } -} - -@Sample -@Composable -private fun BasicAcrylicSample() { - AcrylicContainer { - Box(modifier = Modifier.defaultMinSize(minWidth = 360.dp).height(250.dp).behindAcrylic()) { - Box(Modifier.align(Alignment.TopStart).size(100.dp, 200.dp).background(Color.Cyan)) - Box( - Modifier.align(Alignment.Center).size(152.dp) - .background(Color.Magenta, shape = CircleShape) - ) - Box(Modifier.align(Alignment.BottomEnd).size(80.dp, 100.dp).background(Color.Yellow)) - } - Acrylic(modifier = Modifier.align(Alignment.Center)) { - Box(Modifier.width(336.dp).height(226.dp)) - } - } -} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/text/TextBoxScreen.kt b/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/text/TextBoxScreen.kt deleted file mode 100644 index 6cde3e85..00000000 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/text/TextBoxScreen.kt +++ /dev/null @@ -1,60 +0,0 @@ -package com.konyaco.fluent.gallery.screen.text - -import androidx.compose.runtime.Composable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.text.input.TextFieldValue -import com.konyaco.fluent.component.Text -import com.konyaco.fluent.component.TextField -import com.konyaco.fluent.gallery.annotation.Component -import com.konyaco.fluent.gallery.annotation.Sample -import com.konyaco.fluent.gallery.component.ComponentPagePath -import com.konyaco.fluent.gallery.component.GalleryPage -import com.konyaco.fluent.source.generated.FluentSourceFile - -@Component( - index = 6, - description = "A single-line or multi-line plain text field." -) -@Composable -fun TextBoxScreen() { - GalleryPage( - title = "TextBox", - description = "Use a TextBox to let a user enter simple text input in your app. You can add a header and placeholder text to let the user know that the TextBox is for, and you can customize it in other ways.", - componentPath = FluentSourceFile.TextField, - galleryPath = ComponentPagePath.TextBoxScreen - ) { - Section( - title = "A simple TextBox.", - sourceCode = sourceCodeOfTextBoxSample, - content = { TextBoxSample() } - ) - Section( - title = "A TextBox with a header and placeholder text.", - sourceCode = sourceCodeOfTextBoxHeaderSample, - content = { TextBoxHeaderSample() } - ) - } -} - -@Sample -@Composable -private fun TextBoxSample() { - var value by remember { mutableStateOf(TextFieldValue()) } - TextField(value, onValueChange = { value = it }) -} - -@Sample -@Composable -private fun TextBoxHeaderSample() { - var value by remember { mutableStateOf(TextFieldValue()) } - TextField( - value = value, - onValueChange = { value = it }, - header = { Text("Enter your name:") }, - // placeholder = { Text("Name") }, - ) - // TODO: Support placeholder -} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/App.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/App.kt new file mode 100644 index 00000000..955f3344 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/App.kt @@ -0,0 +1,391 @@ +package io.github.composefluent.gallery + +import androidx.compose.animation.AnimatedContent +import androidx.compose.animation.core.tween +import androidx.compose.animation.fadeIn +import androidx.compose.animation.fadeOut +import androidx.compose.animation.slideInVertically +import androidx.compose.animation.togetherWith +import androidx.compose.foundation.Image +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.PaddingValues +import androidx.compose.foundation.layout.WindowInsets +import androidx.compose.foundation.layout.WindowInsetsSides +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.only +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.layout.windowInsetsPadding +import androidx.compose.foundation.lazy.items +import androidx.compose.runtime.Composable +import androidx.compose.runtime.LaunchedEffect +import androidx.compose.runtime.collectAsState +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import androidx.compose.runtime.snapshotFlow +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.painter.Painter +import androidx.compose.ui.text.input.TextFieldValue +import androidx.compose.ui.unit.dp +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.FluentTheme +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.component.AutoSuggestBoxDefaults +import io.github.composefluent.component.AutoSuggestionBox +import io.github.composefluent.component.Icon +import io.github.composefluent.component.ListItem +import io.github.composefluent.component.MenuItem +import io.github.composefluent.component.NavigationDefaults +import io.github.composefluent.component.NavigationView +import io.github.composefluent.component.NavigationDisplayMode +import io.github.composefluent.component.NavigationMenuItemScope +import io.github.composefluent.component.SideNavItem +import io.github.composefluent.component.Text +import io.github.composefluent.component.TextBoxButton +import io.github.composefluent.component.TextBoxButtonDefaults +import io.github.composefluent.component.TextField +import io.github.composefluent.component.rememberNavigationState +import io.github.composefluent.gallery.component.ComponentItem +import io.github.composefluent.gallery.component.ComponentNavigator +import io.github.composefluent.gallery.component.components +import io.github.composefluent.gallery.component.rememberComponentNavigator +import io.github.composefluent.gallery.component.flatMapComponents +import io.github.composefluent.gallery.screen.settings.SettingsScreen +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.regular.ArrowLeft +import io.github.composefluent.icons.regular.Settings +import kotlinx.coroutines.FlowPreview +import kotlinx.coroutines.flow.debounce +import kotlinx.coroutines.flow.map + +@OptIn(FlowPreview::class, ExperimentalFluentApi::class) +@Composable +fun App( + navigator: ComponentNavigator = rememberComponentNavigator(components.first()), + windowInset: WindowInsets = WindowInsets(0), + contentInset: WindowInsets = WindowInsets(0), + collapseWindowInset: WindowInsets = WindowInsets(0), + icon: Painter? = null, + title: String = "", +) { + + var selectedItemWithContent by remember { + mutableStateOf(navigator.latestBackEntry) + } + LaunchedEffect(navigator.latestBackEntry) { + val latestBackEntry = navigator.latestBackEntry + if (selectedItemWithContent == latestBackEntry) return@LaunchedEffect + if (latestBackEntry == null || latestBackEntry.content != null) { + selectedItemWithContent = latestBackEntry + } + } + var textFieldValue by remember { + mutableStateOf(TextFieldValue()) + } + + val settingItem = remember(navigator) { + ComponentItem( + "Settings", + group = "", + description = "", + icon = Icons.Default.Settings + ) { SettingsScreen(navigator) } + } + val store = LocalStore.current + val isCollapsed = store.navigationDisplayMode == NavigationDisplayMode.LeftCollapsed + NavigationView( + modifier = Modifier.windowInsetsPadding( + insets = if (isCollapsed) collapseWindowInset else windowInset + ), + state = rememberNavigationState(), + displayMode = store.navigationDisplayMode, + contentPadding = if (!isCollapsed) { + PaddingValues() + } else { + PaddingValues(top = 48.dp) + }, + menuItems = { + components.forEach { navItem -> + item { + MenuItem( + navigator.latestBackEntry, + navigator::navigate, + navItem, + navItem.name == "All samples" + ) + } + } + }, + footerItems = { + item { + MenuItem(navigator.latestBackEntry, navigator::navigate, settingItem) + } + }, + title = { + if (isCollapsed) { + if (icon != null) { + Image( + painter = icon, + contentDescription = null, + modifier = Modifier.padding(start = 12.dp).size(16.dp) + ) + } + if (title.isNotEmpty()) { + Text( + text = title, + style = FluentTheme.typography.caption, + modifier = Modifier.padding(start = 12.dp) + ) + } + } else { + Text("Controls") + } + }, + backButton = { + if (isCollapsed) { + NavigationDefaults.BackButton( + onClick = { + navigator.navigateUp() + }, + disabled = !navigator.canNavigateUp, + icon = { Icon(Icons.Default.ArrowLeft, contentDescription = null) }, + modifier = Modifier.windowInsetsPadding(contentInset.only(WindowInsetsSides.Start)) + ) + } + }, + autoSuggestBox = { + var expandedSuggestion by remember { mutableStateOf(false) } + AutoSuggestionBox( + expanded = expandedSuggestion, + onExpandedChange = { expandedSuggestion = it } + ) { + TextField( + value = textFieldValue, + onValueChange = { textFieldValue = it }, + placeholder = { Text("Search") }, + trailing = { + TextBoxButton(onClick = {}) { TextBoxButtonDefaults.SearchIcon() } + }, + isClearable = true, + shape = AutoSuggestBoxDefaults.textFieldShape(expandedSuggestion), + modifier = Modifier.fillMaxWidth().focusHandle().flyoutAnchor() + ) + val searchResult = remember(flatMapComponents) { + snapshotFlow { + textFieldValue.text + }.debounce { if (it.isBlank()) 0 else 200 } + .map { + flatMapComponents.filter { item -> + item.name.contains( + it, + ignoreCase = true + ) || item.description.contains(it, ignoreCase = true) + } + } + }.collectAsState(flatMapComponents) + AutoSuggestBoxDefaults.suggestFlyout( + expanded = expandedSuggestion, + onDismissRequest = { expandedSuggestion = false }, + modifier = Modifier.flyoutSize(matchAnchorWidth = true), + itemsContent = { + items( + items = searchResult.value, + contentType = { "Item" }, + key = { it.hashCode().toString() } + ) { + ListItem( + onClick = { + navigator.navigate(it) + expandedSuggestion = false + }, + text = { Text(it.name, maxLines = 1) }, + modifier = Modifier.fillMaxWidth() + ) + } + } + ) + } + }, + pane = { + AnimatedContent(selectedItemWithContent, Modifier.fillMaxSize(), transitionSpec = { + (fadeIn( + tween( + FluentDuration.ShortDuration, + easing = FluentEasing.FadeInFadeOutEasing, + delayMillis = FluentDuration.QuickDuration + ) + ) + slideInVertically( + tween( + FluentDuration.MediumDuration, + easing = FluentEasing.FastInvokeEasing, + delayMillis = FluentDuration.QuickDuration + ) + ) { it / 5 }) togetherWith fadeOut( + tween( + FluentDuration.QuickDuration, + easing = FluentEasing.FadeInFadeOutEasing, + delayMillis = FluentDuration.QuickDuration + ) + ) + }) { + if (it != null) { + it.content?.invoke(it, navigator) + } else { + Box(modifier = Modifier.fillMaxSize(), contentAlignment = Alignment.Center) { + Text("No content selected", style = FluentTheme.typography.bodyStrong) + } + } + } + } + ) +} + +@Composable +private fun NavigationMenuItemScope.MenuItem( + selectedItem: ComponentItem?, + onSelectedItemChanged: (ComponentItem) -> Unit, + navItem: ComponentItem, + hasSeparator: Boolean = false, +) { + val expandedItems = remember { + mutableStateOf(false) + } + LaunchedEffect(selectedItem) { + if (selectedItem == null) return@LaunchedEffect + if (navItem != selectedItem) { + val navItemAsGroup = "${navItem.group}/${navItem.name}/" + if ((selectedItem.group + "/").startsWith(navItemAsGroup)) + expandedItems.value = true + } + } + val flyoutVisible = remember { + mutableStateOf(false) + } + if (!hasSeparator) { + MenuItem( + selected = selectedItem == navItem, + onClick = { + onSelectedItemChanged(navItem) + expandedItems.value = !expandedItems.value + if (navItem.items.isNullOrEmpty()) { + flyoutDismissRequest() + } + }, + icon = navItem.icon?.let { { Icon(it, navItem.name) } }, + text = { Text(navItem.name) }, + expandItems = expandedItems.value || flyoutVisible.value, + onExpandItemsChanged = { flyoutVisible.value = it }, + items = navItem.items?.let { + if (it.isNotEmpty()) { + { + it.forEach { nestedItem -> + NavigationItem( + selectedItem = selectedItem, + onSelectedItemChanged = { + onSelectedItemChanged(nestedItem) + }, + navItem = nestedItem, + onFlyoutDismissRequest = { + isFlyoutVisible = false + flyoutDismissRequest() + } + ) + } + } + } else { + null + } + } + ) + } else { + MenuItem( + selected = selectedItem == navItem, + onClick = { + onSelectedItemChanged(navItem) + expandedItems.value = !expandedItems.value + }, + icon = navItem.icon?.let { { Icon(it, navItem.name) } }, + text = { Text(navItem.name) }, + expandItems = expandedItems.value || flyoutVisible.value, + onExpandItemsChanged = { flyoutVisible.value = it }, + items = navItem.items?.let { + if (it.isNotEmpty()) { + { + it.forEach { nestedItem -> + NavigationItem( + selectedItem = selectedItem, + onSelectedItemChanged = { + onSelectedItemChanged(nestedItem) + }, + navItem = nestedItem, + onFlyoutDismissRequest = { + isFlyoutVisible = false + flyoutDismissRequest() + } + ) + } + } + } else { + null + } + }, + header = null, + separatorVisible = true + ) + } +} + +@Composable +private fun NavigationItem( + selectedItem: ComponentItem?, + onSelectedItemChanged: (ComponentItem) -> Unit, + navItem: ComponentItem, + onFlyoutDismissRequest: () -> Unit = {}, +) { + val expandedItems = remember { + mutableStateOf(false) + } + LaunchedEffect(selectedItem) { + if (selectedItem == null) return@LaunchedEffect + if (navItem != selectedItem) { + val navItemAsGroup = "${navItem.group}/${navItem.name}/" + if ((selectedItem.group + "/").startsWith(navItemAsGroup)) + expandedItems.value = true + } + } + SideNavItem( + selectedItem == navItem, + onClick = { + onSelectedItemChanged(navItem) + if (navItem.items == null) { + onFlyoutDismissRequest() + } else { + expandedItems.value = !expandedItems.value + } + }, + icon = navItem.icon?.let { { Icon(it, navItem.name) } }, + content = { Text(navItem.name) }, + expandItems = expandedItems.value, + items = navItem.items?.let { + if (it.isNotEmpty()) { + { + it.forEach { nestedItem -> + NavigationItem( + selectedItem = selectedItem, + onSelectedItemChanged = onSelectedItemChanged, + navItem = nestedItem, + onFlyoutDismissRequest = onFlyoutDismissRequest + ) + } + } + } else { + null + } + } + ) +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/GalleryTheme.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/GalleryTheme.kt new file mode 100644 index 00000000..460b2080 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/GalleryTheme.kt @@ -0,0 +1,103 @@ +package io.github.composefluent.gallery + +import androidx.compose.foundation.Image +import androidx.compose.foundation.isSystemInDarkTheme +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.runtime.Composable +import androidx.compose.runtime.CompositionLocalProvider +import androidx.compose.runtime.LaunchedEffect +import androidx.compose.runtime.compositionLocalOf +import androidx.compose.runtime.getValue +import androidx.compose.runtime.setValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Brush +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.painter.BrushPainter +import androidx.compose.ui.layout.ContentScale +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.FluentTheme +import io.github.composefluent.LocalContentColor +import io.github.composefluent.background.Mica +import io.github.composefluent.component.NavigationDisplayMode +import io.github.composefluent.darkColors +import io.github.composefluent.lightColors + +val LocalStore = compositionLocalOf { error("Not provided") } + +class Store( + systemDarkMode: Boolean, + enabledAcrylicPopup: Boolean, + compactMode: Boolean +) { + var darkMode by mutableStateOf(systemDarkMode) + + var enabledAcrylicPopup by mutableStateOf(enabledAcrylicPopup) + + var compactMode by mutableStateOf(compactMode) + + var navigationDisplayMode by mutableStateOf(NavigationDisplayMode.Left) +} + +@OptIn(ExperimentalFluentApi::class) +@Composable +fun GalleryTheme( + displayMicaLayer: Boolean = true, + content: @Composable () -> Unit +) { + val systemDarkMode = isSystemInDarkTheme() + + val store = remember { + Store( + systemDarkMode = systemDarkMode, + enabledAcrylicPopup = true, + compactMode = true + ) + } + + LaunchedEffect(systemDarkMode) { + store.darkMode = systemDarkMode + } + CompositionLocalProvider( + LocalStore provides store + ) { + FluentTheme( + colors = if (store.darkMode) darkColors() else lightColors(), + useAcrylicPopup = store.enabledAcrylicPopup, + compactMode = store.compactMode + ) { + if (displayMicaLayer) { + val gradient = if (store.darkMode) { + listOf( + Color(0xff282C51), + Color(0xff2A344A), + ) + } else { + listOf( + Color(0xffB1D0ED), + Color(0xffDAE3EC), + ) + } + + Mica( + background = { + Image( + painter = BrushPainter(Brush.linearGradient(gradient)), + contentDescription = null, + contentScale = ContentScale.FillBounds + ) + }, + modifier = Modifier.fillMaxSize() + ) { + content() + } + } else { + CompositionLocalProvider( + LocalContentColor provides FluentTheme.colors.text.text.primary, + content = content + ) + } + } + } +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/ProjectUrl.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/ProjectUrl.kt new file mode 100644 index 00000000..ff7026f9 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/ProjectUrl.kt @@ -0,0 +1,30 @@ +package io.github.composefluent.gallery + +import io.github.composefluent.build.BuildKonfig + +object ProjectUrl { + + const val ROOT = "https://github.com/compose-fluent/compose-fluent-ui" + + const val FRAMEWORK = "https://developer.android.com/develop/ui/compose" + + const val UI_DESIGN = "https://fluent2.microsoft.design/" + + const val FEED_BACK = "$ROOT/issues/new/choose" + + private const val BRANCH = BuildKonfig.CURRENT_BRANCH + + fun componentCodeOf(path: String): String { + return "$ROOT/tree/$BRANCH/$path" + } + + fun galleryCodeOf(path: String): String { + return "$ROOT/tree/$BRANCH/gallery/src/$path" + } + + //TODO documentation redirection + fun documentationOf(path: String): String { + return ROOT + } + +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/annotation/Component.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/annotation/Component.kt similarity index 82% rename from gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/annotation/Component.kt rename to gallery/src/commonMain/kotlin/io/github/composefluent/gallery/annotation/Component.kt index 84a8e8ea..229ac939 100644 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/annotation/Component.kt +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/annotation/Component.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.gallery.annotation +package io.github.composefluent.gallery.annotation @Target(AnnotationTarget.FUNCTION) annotation class Component( diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/annotation/ComponentGroup.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/annotation/ComponentGroup.kt similarity index 79% rename from gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/annotation/ComponentGroup.kt rename to gallery/src/commonMain/kotlin/io/github/composefluent/gallery/annotation/ComponentGroup.kt index 4f845549..ee0c14b0 100644 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/annotation/ComponentGroup.kt +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/annotation/ComponentGroup.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.gallery.annotation +package io.github.composefluent.gallery.annotation @Target(AnnotationTarget.PROPERTY) annotation class ComponentGroup( diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/annotation/Sample.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/annotation/Sample.kt new file mode 100644 index 00000000..f6e8d883 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/annotation/Sample.kt @@ -0,0 +1,4 @@ +package io.github.composefluent.gallery.annotation + +@Target(AnnotationTarget.FUNCTION) +annotation class Sample() diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/ComponentGroupInfo.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/ComponentGroupInfo.kt similarity index 79% rename from gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/ComponentGroupInfo.kt rename to gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/ComponentGroupInfo.kt index 26c11743..d548b111 100644 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/ComponentGroupInfo.kt +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/ComponentGroupInfo.kt @@ -1,12 +1,12 @@ @file:Suppress -package com.konyaco.fluent.gallery.component +package io.github.composefluent.gallery.component -import com.konyaco.fluent.gallery.annotation.ComponentGroup +import io.github.composefluent.gallery.annotation.ComponentGroup object ComponentGroupInfo { - private const val screenPackage: String = "com.konyaco.fluent.gallery.screen" + private const val screenPackage: String = "io.github.composefluent.gallery.screen" @ComponentGroup("Ruler", index = 0, generateScreen = false, packageMap = "$screenPackage.design") const val DesignGuidance = "Design guidance" @@ -32,16 +32,16 @@ object ComponentGroupInfo { @ComponentGroup("VideoClip", index = 7) const val Media = "Media" - @ComponentGroup("Save", index = 8) + @ComponentGroup("Save", index = 8, packageMap = "$screenPackage.menus") const val MenusAndToolbars = "Menus & toolbars" @ComponentGroup("Flash", index = 9) const val Motion = "Motion" - @ComponentGroup("Navigation", index = 10) + @ComponentGroup("Navigation", index = 10, packageMap = "$screenPackage.navigation") const val Navigation = "Navigation" - @ComponentGroup("ArrowSort", index = 11) + @ComponentGroup("ArrowSort", index = 11, packageMap = "$screenPackage.scrolling") const val Scrolling = "Scrolling" @ComponentGroup("ChatMultiple", index = 12, packageMap = "$screenPackage.status") diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/ComponentIndexScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/ComponentIndexScreen.kt similarity index 92% rename from gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/ComponentIndexScreen.kt rename to gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/ComponentIndexScreen.kt index dbb757ac..78c342c0 100644 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/ComponentIndexScreen.kt +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/ComponentIndexScreen.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.gallery.component +package io.github.composefluent.gallery.component import androidx.compose.foundation.layout.Arrangement import androidx.compose.foundation.layout.Column @@ -13,9 +13,9 @@ import androidx.compose.runtime.Composable import androidx.compose.ui.Modifier import androidx.compose.ui.text.font.FontWeight import androidx.compose.ui.unit.dp -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.component.Text -import com.konyaco.fluent.surface.Card +import io.github.composefluent.FluentTheme +import io.github.composefluent.component.Text +import io.github.composefluent.surface.Card @Composable fun ComponentItem.ComponentIndexScreen(navigator: ComponentNavigator) { diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/ComponentItem.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/ComponentItem.kt similarity index 88% rename from gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/ComponentItem.kt rename to gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/ComponentItem.kt index 36e652d5..9610fdd8 100644 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/ComponentItem.kt +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/ComponentItem.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.gallery.component +package io.github.composefluent.gallery.component import androidx.compose.runtime.Composable import androidx.compose.ui.graphics.vector.ImageVector diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/ComponentNavigator.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/ComponentNavigator.kt new file mode 100644 index 00000000..ab96ab2f --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/ComponentNavigator.kt @@ -0,0 +1,53 @@ +package io.github.composefluent.gallery.component + +import androidx.compose.runtime.Composable +import androidx.compose.runtime.derivedStateOf +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateListOf +import androidx.compose.runtime.remember + +interface ComponentNavigator { + + fun navigate(componentItem: ComponentItem) + + fun navigateUp() + + val currentBackstack: List + + val latestBackEntry: ComponentItem? + + val canNavigateUp: Boolean + +} + +@Composable +fun rememberComponentNavigator(startItem: ComponentItem = components.first()): ComponentNavigator { + return remember { ComponentNavigatorImpl(startItem) } +} + +private class ComponentNavigatorImpl(startItem: ComponentItem) : ComponentNavigator { + + private val backstack = mutableStateListOf().apply { add(startItem) } + + override fun navigate(componentItem: ComponentItem) { + backstack.add(componentItem) + } + + override fun navigateUp() { + if (backstack.isNotEmpty()) { + do { + backstack.removeLast() + } while (backstack.lastOrNull().let { it != null && it.content == null }) + } + } + + override val canNavigateUp: Boolean by derivedStateOf { + backstack.count { it.content != null } > 1 + } + + override val currentBackstack: List + get() = backstack + + override val latestBackEntry: ComponentItem? + get() = backstack.lastOrNull() +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/CopyButton.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/CopyButton.kt new file mode 100644 index 00000000..995b0c90 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/CopyButton.kt @@ -0,0 +1,75 @@ +@file:Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE") +package io.github.composefluent.gallery.component + +import androidx.compose.animation.AnimatedContent +import androidx.compose.foundation.ExperimentalFoundationApi +import androidx.compose.foundation.internal.toClipEntry +import androidx.compose.foundation.layout.Box +import androidx.compose.runtime.Composable +import androidx.compose.runtime.LaunchedEffect +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.rememberCoroutineScope +import androidx.compose.runtime.setValue +import androidx.compose.ui.Modifier +import androidx.compose.ui.platform.LocalClipboard +import androidx.compose.ui.text.AnnotatedString +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.component.Button +import io.github.composefluent.component.ButtonColorScheme +import io.github.composefluent.component.ButtonDefaults +import io.github.composefluent.component.Text +import io.github.composefluent.component.TooltipBox +import io.github.composefluent.component.FontIcon +import io.github.composefluent.component.FontIconPrimitive +import kotlinx.coroutines.delay +import kotlinx.coroutines.launch + +@OptIn(ExperimentalFoundationApi::class, ExperimentalFluentApi::class) +@Composable +fun CopyButton( + copyData: String, + modifier: Modifier = Modifier, + colors: ButtonColorScheme = ButtonDefaults.buttonColors(), + tooltip: String = "Copy to clipboard" +) { + var isCopy by remember { mutableStateOf(false) } + LaunchedEffect(isCopy) { + if (isCopy) { + delay(1000) + isCopy = false + } + } + val clipboard = LocalClipboard.current + + Box(modifier = modifier, propagateMinConstraints = true) { + TooltipBox( + tooltip = { Text(tooltip) } + ) { + val coroutineScope = rememberCoroutineScope() + Button( + onClick = { + coroutineScope.launch { + clipboard.setClipEntry(AnnotatedString(copyData).toClipEntry()) + isCopy = true + } + }, + iconOnly = true, + content = { + AnimatedContent(isCopy) { target -> + FontIcon( + type = if (target) { + FontIconPrimitive.Accept + } else { + FontIconPrimitive.Copy + }, + contentDescription = null + ) + } + }, + buttonColors = colors + ) + } + } +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/GalleryHeader.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/GalleryHeader.kt new file mode 100644 index 00000000..9e071d3e --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/GalleryHeader.kt @@ -0,0 +1,212 @@ +@file:OptIn(ExperimentalFoundationApi::class, ExperimentalFluentApi::class) + +package io.github.composefluent.gallery.component + +import androidx.compose.foundation.ExperimentalFoundationApi +import androidx.compose.foundation.background +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.IntrinsicSize +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.Spacer +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.layout.width +import androidx.compose.foundation.layout.widthIn +import androidx.compose.runtime.Composable +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.platform.LocalUriHandler +import androidx.compose.ui.text.AnnotatedString +import androidx.compose.ui.text.ExperimentalTextApi +import androidx.compose.ui.unit.dp +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.FluentTheme +import io.github.composefluent.component.Button +import io.github.composefluent.component.DropDownButton +import io.github.composefluent.component.FlyoutPlacement +import io.github.composefluent.component.HyperlinkButton +import io.github.composefluent.component.Icon +import io.github.composefluent.component.MenuFlyoutContainer +import io.github.composefluent.component.Text +import io.github.composefluent.component.ToggleButton +import io.github.composefluent.component.TooltipBox +import io.github.composefluent.gallery.ProjectUrl +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.filled.BrightnessHigh +import io.github.composefluent.icons.regular.Document +import io.github.composefluent.icons.regular.PersonFeedback +import fluentdesign.gallery.generated.resources.Res +import fluentdesign.gallery.generated.resources.github_logo +import org.jetbrains.compose.resources.painterResource + +@Composable +fun GalleryHeader( + title: String, + description: String, + documentationPath: String? = null, + componentPath: String? = null, + galleryPath: String? = null, + controlVisible: Boolean = true, + themeButtonChecked: Boolean = false, + onThemeButtonChanged: (Boolean) -> Unit = {} +) { + GalleryHeader( + AnnotatedString(title), + AnnotatedString(description), + documentationPath, + componentPath, + galleryPath, + controlVisible, + themeButtonChecked, + onThemeButtonChanged + ) +} + +@Composable +fun GalleryHeader( + title: AnnotatedString, + description: AnnotatedString, + documentPath: String? = null, + componentPath: String? = null, + galleryPath: String? = null, + controlVisible: Boolean = true, + themeButtonChecked: Boolean = false, + onThemeButtonChanged: (Boolean) -> Unit = {} +) { + Column(Modifier.padding(top = 32.dp, bottom = 24.dp, start = 32.dp, end = 32.dp)) { + val uriHandler = LocalUriHandler.current + Text( + text = title, + style = FluentTheme.typography.title + ) + + if (controlVisible || documentPath != null || componentPath != null || galleryPath != null) { + Row( + modifier = Modifier.padding(top = 12.dp).height(IntrinsicSize.Min), + horizontalArrangement = Arrangement.spacedBy(4.dp), + verticalAlignment = Alignment.CenterVertically + ) { + if (documentPath != null) { + TooltipBox( + tooltip = { Text("Documentation") } + ){ + Button( + onClick = { + uriHandler.openUri(ProjectUrl.documentationOf(documentPath)) + }, + content = { + Icon( + Icons.Default.Document, + contentDescription = null, + modifier = Modifier.size(18.dp) + ) + Text("Documentation") + } + ) + } + } + if (componentPath != null && galleryPath != null) { + TooltipBox( + tooltip = { Text("Source code of this sample page") } + ){ + MenuFlyoutContainer( + flyout = { + HyperlinkButton( + onClick = { + uriHandler.openUri( + ProjectUrl.componentCodeOf(componentPath) + ) + isFlyoutVisible = false + }, + content = { Text("Component") }, + modifier = Modifier.fillMaxWidth() + .padding(horizontal = 5.dp, vertical = 2.dp) + ) + HyperlinkButton( + onClick = { + uriHandler.openUri(ProjectUrl.galleryCodeOf(galleryPath)) + isFlyoutVisible = false + }, + content = { Text("Sample") }, + modifier = Modifier.fillMaxWidth() + .padding(horizontal = 5.dp, vertical = 2.dp) + ) + }, + content = { + DropDownButton( + onClick = { isFlyoutVisible = true }, + content = { + Icon( + painter = painterResource(Res.drawable.github_logo), + contentDescription = null, + modifier = Modifier.size(18.dp) + ) + Text("Source") + } + ) + }, + placement = FlyoutPlacement.Bottom, + adaptivePlacement = true + ) + } + } + Spacer(modifier = Modifier.weight(1f)) + if (controlVisible) { + TooltipBox( + tooltip = { Text("Toggle theme") } + ){ + ToggleButton( + checked = themeButtonChecked, + onCheckedChanged = onThemeButtonChanged, + content = { + Icon( + Icons.Filled.BrightnessHigh, + contentDescription = null, + modifier = Modifier.size(18.dp) + ) + }, + iconOnly = true, + modifier = Modifier.widthIn(40.dp) + ) + } + Spacer( + modifier = Modifier.padding(2.dp).height(16.dp).width(1.dp) + .background(FluentTheme.colors.stroke.divider.default) + ) + TooltipBox( + tooltip = { Text("Feedback") } + ){ + Button( + onClick = { uriHandler.openUri(ProjectUrl.FEED_BACK) }, + content = { + Icon( + Icons.Default.PersonFeedback, + contentDescription = null, + modifier = Modifier.size(18.dp) + ) + }, + iconOnly = true, + modifier = Modifier.widthIn(40.dp) + ) + } + } + } + } + + if (description.isNotBlank()) { + GalleryDescription(description, Modifier.padding(top = 24.dp)) + } + } +} + +@OptIn(ExperimentalTextApi::class) +@Composable +fun GalleryDescription(description: AnnotatedString, modifier: Modifier = Modifier) { + Text( + text = description, + modifier = modifier + ) +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/GalleryPage.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/GalleryPage.kt similarity index 89% rename from gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/GalleryPage.kt rename to gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/GalleryPage.kt index f7ce6479..f77ef118 100644 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/GalleryPage.kt +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/GalleryPage.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.gallery.component +package io.github.composefluent.gallery.component import androidx.compose.foundation.layout.Arrangement import androidx.compose.foundation.layout.BoxScope @@ -15,13 +15,13 @@ import androidx.compose.runtime.remember import androidx.compose.ui.Modifier import androidx.compose.ui.text.AnnotatedString import androidx.compose.ui.unit.dp -import com.konyaco.fluent.Colors -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.component.ScrollbarContainer -import com.konyaco.fluent.component.rememberScrollbarAdapter -import com.konyaco.fluent.darkColors -import com.konyaco.fluent.gallery.LocalStore -import com.konyaco.fluent.lightColors +import io.github.composefluent.Colors +import io.github.composefluent.FluentTheme +import io.github.composefluent.component.ScrollbarContainer +import io.github.composefluent.component.rememberScrollbarAdapter +import io.github.composefluent.darkColors +import io.github.composefluent.gallery.LocalStore +import io.github.composefluent.lightColors @Composable fun GalleryPage( @@ -62,6 +62,7 @@ fun GalleryPage( documentPath, componentPath, galleryPath, + true, inverseTheme.value ) { inverseTheme.value = !inverseTheme.value } diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/GallerySection.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/GallerySection.kt new file mode 100644 index 00000000..65d49a3e --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/GallerySection.kt @@ -0,0 +1,207 @@ +package io.github.composefluent.gallery.component + +import androidx.compose.animation.AnimatedVisibility +import androidx.compose.animation.core.animateFloatAsState +import androidx.compose.animation.core.tween +import androidx.compose.animation.expandVertically +import androidx.compose.animation.shrinkVertically +import androidx.compose.foundation.background +import androidx.compose.foundation.clickable +import androidx.compose.foundation.horizontalScroll +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.BoxScope +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.ColumnScope +import androidx.compose.foundation.layout.IntrinsicSize +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.Spacer +import androidx.compose.foundation.layout.defaultMinSize +import androidx.compose.foundation.layout.fillMaxHeight +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.width +import androidx.compose.foundation.layout.wrapContentHeight +import androidx.compose.foundation.rememberScrollState +import androidx.compose.runtime.Composable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.draw.rotate +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.unit.dp +import io.github.composefluent.Colors +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.FluentTheme +import io.github.composefluent.FluentThemeConfiguration +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.background.BackgroundSizing +import io.github.composefluent.background.Layer +import io.github.composefluent.component.ExpanderItem +import io.github.composefluent.component.ExpanderItemSeparator +import io.github.composefluent.component.Icon +import io.github.composefluent.component.Scrollbar +import io.github.composefluent.component.SubtleButton +import io.github.composefluent.component.Text +import io.github.composefluent.component.rememberScrollbarAdapter +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.regular.ChevronDown + +@OptIn(ExperimentalFluentApi::class) +@Composable +fun GallerySection( + modifier: Modifier, + title: String, + sourceCode: String, + colors: Colors = FluentTheme.colors, + output: (@Composable ColumnScope.() -> Unit)? = null, + options: (@Composable ColumnScope.() -> Unit)? = null, + content: @Composable BoxScope.() -> Unit, +) { + Column(modifier) { + + Text(title, style = FluentTheme.typography.bodyStrong) + Spacer(Modifier.height(16.dp)) + + Layer( + modifier = Modifier.fillMaxWidth(), + backgroundSizing = BackgroundSizing.InnerBorderEdge, + shape = FluentTheme.shapes.overlay, + clipContent = true, + color = Color.Transparent + ) { + Column { + FluentThemeConfiguration(colors = colors) { + Layer( + shape = FluentTheme.shapes.intersectionEdge, + color = FluentTheme.colors.background.solid.base, + backgroundSizing = BackgroundSizing.OuterBorderEdge, + border = null, + modifier = Modifier + .fillMaxWidth() + .wrapContentHeight(), + ) { + Row( + modifier = Modifier.height(IntrinsicSize.Max) + ) { + Box( + modifier = Modifier.weight(1f) + .defaultMinSize(minHeight = 100.dp) + .padding(16.dp), + contentAlignment = Alignment.CenterStart, + content = content + ) + if (output != null) { + Box( + modifier = Modifier.fillMaxHeight() + .padding(0.dp, 12.dp, 12.dp, 12.dp) + .padding(16.dp) + ) { + Column( + verticalArrangement = Arrangement.spacedBy(8.dp) + ) { + Text("Output:") + output() + } + } + } + if (options != null) { + Spacer( + modifier = Modifier.padding(vertical = 1.dp) + .fillMaxHeight() + .width(1.dp) + .background(FluentTheme.colors.stroke.divider.default) + ) + Column( + modifier = Modifier.fillMaxHeight() + .background(FluentTheme.colors.background.card.default) + .padding(16.dp) + .width(IntrinsicSize.Max), + verticalArrangement = Arrangement.spacedBy(8.dp) + ) { + options() + } + } + } + } + } + ExpanderItemSeparator(color = FluentTheme.colors.stroke.card.default) + + var sourceCodeExpanded by remember { mutableStateOf(false) } + val interactionSource = remember { MutableInteractionSource() } + + ExpanderItem( + icon = null, + heading = { Text("Source Code") }, + dropdown = { + SubtleButton( + onClick = { sourceCodeExpanded = !sourceCodeExpanded }, + interaction = interactionSource, + iconOnly = true + ) { + Icon( + modifier = Modifier.rotate( + animateFloatAsState( + if (sourceCodeExpanded) 180f else 0f, + ).value + ), + imageVector = Icons.Default.ChevronDown, + contentDescription = "Expand source code" + ) + } + }, + color = FluentTheme.colors.background.card.default, + modifier = Modifier.clickable( + interactionSource = interactionSource, + indication = null, + onClick = { sourceCodeExpanded = !sourceCodeExpanded } + ) + ) + if (sourceCodeExpanded) { + ExpanderItemSeparator(color = FluentTheme.colors.stroke.card.default) + } + AnimatedVisibility( + visible = sourceCodeExpanded, + enter = expandVertically( + tween(FluentDuration.MediumDuration, 0, FluentEasing.FastInvokeEasing) + ), + exit = shrinkVertically( + tween(FluentDuration.QuickDuration, 0, FluentEasing.SoftDismissEasing) + ) + ) { + Column(Modifier.background(FluentTheme.colors.background.card.secondary).padding(bottom = 12.dp)) { + ExpanderItem( + icon = null, + heading = { Text("Kotlin", style = FluentTheme.typography.bodyStrong) }, + color = Color.Transparent, + trailing = { CopyButton(sourceCode, modifier = Modifier) }, + dropdown = null + ) + val scrollState = rememberScrollState() + Box(Modifier.padding(horizontal = 16.dp).fillMaxWidth().wrapContentHeight()) { + SourceCode( + modifier = Modifier.horizontalScroll(scrollState), + code = sourceCode + ) + Box(Modifier.fillMaxWidth().align(Alignment.BottomCenter)) { + Scrollbar( + modifier = Modifier.fillMaxWidth(), + isVertical = false, + adapter = rememberScrollbarAdapter( + scrollState + ) + ) + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/ItemRow.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/ItemRow.kt new file mode 100644 index 00000000..0a8f75a3 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/ItemRow.kt @@ -0,0 +1,87 @@ +package io.github.composefluent.gallery.component + +import androidx.compose.foundation.background +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.heightIn +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.width +import androidx.compose.runtime.Composable +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.unit.Dp +import androidx.compose.ui.unit.dp +import io.github.composefluent.FluentTheme +import io.github.composefluent.component.Text + +@Composable +internal fun ItemRow( + index: Int, + text: @Composable () -> Unit, + secondary: @Composable () -> Unit, + third: @Composable () -> Unit, + fourth: @Composable () -> Unit, + modifier: Modifier = Modifier, + textWidth: Dp = 272.dp, + secondaryWidth: Dp = 136.dp, + thirdWidth: Dp = 112.dp +) { + Row( + verticalAlignment = Alignment.CenterVertically, + modifier = modifier.fillMaxWidth().heightIn(68.dp).then( + if (index.mod(2) == 1) { + Modifier.background( + FluentTheme.colors.background.card.default, + shape = FluentTheme.shapes.control + ) + } else { + Modifier + } + ) + ) { + Box(modifier = Modifier.width(textWidth).padding(horizontal = 16.dp, vertical = 16.dp)) { + text() + } + Box(modifier = Modifier.width(secondaryWidth).padding(horizontal = 16.dp, vertical = 16.dp)) { + secondary() + } + Box(modifier = Modifier.width(thirdWidth).padding(horizontal = 16.dp, vertical = 16.dp)) { + third() + } + fourth() + } +} + +@Composable +internal fun HeaderItemRow( + text: String, + secondary: String, + third: String, + fourth: String, + modifier: Modifier = Modifier, + textWidth: Dp = 272.dp, + secondaryWidth: Dp = 136.dp, + thirdWidth: Dp = 112.dp +) { + val headerStyle = FluentTheme.typography.caption.copy(color = FluentTheme.colors.text.text.secondary) + ItemRow( + text = { + Text(text, style = headerStyle) + }, + secondary = { + Text(secondary, style = headerStyle) + }, + third = { + Text(third, style = headerStyle) + }, + fourth = { + Text(fourth, style = headerStyle) + }, + index = 0, + modifier = modifier, + textWidth = textWidth, + secondaryWidth = secondaryWidth, + thirdWidth = thirdWidth + ) +} diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/SourceCode.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/SourceCode.kt similarity index 93% rename from gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/SourceCode.kt rename to gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/SourceCode.kt index 8ef2d487..63be3e9a 100644 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/SourceCode.kt +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/SourceCode.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.gallery.component +package io.github.composefluent.gallery.component import androidx.compose.foundation.text.selection.SelectionContainer import androidx.compose.runtime.Composable @@ -10,8 +10,8 @@ import androidx.compose.ui.text.buildAnnotatedString import androidx.compose.ui.text.font.FontFamily import androidx.compose.ui.text.font.FontWeight import androidx.compose.ui.text.style.TextOverflow -import com.konyaco.fluent.component.Text -import com.konyaco.fluent.gallery.LocalStore +import io.github.composefluent.component.Text +import io.github.composefluent.gallery.LocalStore import dev.snipme.highlights.Highlights import dev.snipme.highlights.model.BoldHighlight import dev.snipme.highlights.model.ColorHighlight diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/TodoComponent.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/TodoComponent.kt similarity index 77% rename from gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/TodoComponent.kt rename to gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/TodoComponent.kt index d84bba7f..8dd6d158 100644 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/component/TodoComponent.kt +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/component/TodoComponent.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.gallery.component +package io.github.composefluent.gallery.component import androidx.compose.foundation.layout.Box import androidx.compose.foundation.layout.fillMaxWidth @@ -6,9 +6,9 @@ import androidx.compose.runtime.Composable import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier import androidx.compose.ui.platform.LocalUriHandler -import com.konyaco.fluent.component.Button -import com.konyaco.fluent.component.Text -import com.konyaco.fluent.gallery.ProjectUrl +import io.github.composefluent.component.Button +import io.github.composefluent.component.Text +import io.github.composefluent.gallery.ProjectUrl @Composable fun TodoComponent() { diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/AllSamplesScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/AllSamplesScreen.kt new file mode 100644 index 00000000..a828c7ef --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/AllSamplesScreen.kt @@ -0,0 +1,27 @@ +package io.github.composefluent.gallery.screen + +import androidx.compose.runtime.* +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.component.* +import io.github.composefluent.gallery.component._AllSamplesScreenComponent +import io.github.composefluent.gallery.component._HomeScreenComponent + +@Component(icon = "AppsList", index = 1, name = "All samples") +@Composable +fun AllSamplesScreen(navigator: ComponentNavigator) { + var allComponents by remember { + mutableStateOf?>(null) + } + LaunchedEffect(flatMapComponents) { + val excludeComponents = listOf( + _HomeScreenComponent, + _AllSamplesScreenComponent + ) + allComponents = flatMapComponents.filter { it !in excludeComponents && !it.group.startsWith("/" + _Design_guidanceComponents.name) } + } + ComponentIndexScreen( + name = "All samples", + items = allComponents, + navigator + ) +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/HomeScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/HomeScreen.kt similarity index 83% rename from gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/HomeScreen.kt rename to gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/HomeScreen.kt index c5b83286..5c2b5d48 100644 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/HomeScreen.kt +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/HomeScreen.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.gallery.screen +package io.github.composefluent.gallery.screen import androidx.compose.foundation.Image import androidx.compose.foundation.background @@ -13,7 +13,6 @@ import androidx.compose.foundation.layout.height import androidx.compose.foundation.layout.padding import androidx.compose.foundation.layout.size import androidx.compose.foundation.rememberScrollState -import androidx.compose.foundation.shape.RoundedCornerShape import androidx.compose.foundation.verticalScroll import androidx.compose.runtime.Composable import androidx.compose.ui.Alignment @@ -26,15 +25,16 @@ import androidx.compose.ui.graphics.Color import androidx.compose.ui.platform.LocalUriHandler import androidx.compose.ui.text.style.TextAlign import androidx.compose.ui.unit.dp -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.component.Icon -import com.konyaco.fluent.component.Text -import com.konyaco.fluent.gallery.LocalStore -import com.konyaco.fluent.gallery.ProjectUrl -import com.konyaco.fluent.gallery.annotation.Component -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.regular.Open -import com.konyaco.fluent.surface.Card +import io.github.composefluent.FluentTheme +import io.github.composefluent.build.BuildKonfig +import io.github.composefluent.component.Icon +import io.github.composefluent.component.Text +import io.github.composefluent.gallery.LocalStore +import io.github.composefluent.gallery.ProjectUrl +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.regular.Open +import io.github.composefluent.surface.Card import fluentdesign.gallery.generated.resources.Res import fluentdesign.gallery.generated.resources.banner import fluentdesign.gallery.generated.resources.fluent_logo @@ -78,8 +78,8 @@ fun HomeScreen() { modifier = Modifier .fillMaxWidth() .height(256.dp) - .border(1.dp, FluentTheme.colors.stroke.card.default, shape = RoundedCornerShape(4.dp)) - .clip(RoundedCornerShape(4.dp)) + .border(1.dp, FluentTheme.colors.stroke.card.default, shape = FluentTheme.shapes.control) + .clip(FluentTheme.shapes.control) .background(gradient) ) { Image( @@ -87,13 +87,25 @@ fun HomeScreen() { contentDescription = null, modifier = Modifier.scale(2.05f) ) - Text( - modifier = Modifier.align(Alignment.BottomEnd).padding(16.dp), - text = "Compose\nFluent Design", - style = FluentTheme.typography.titleLarge, - textAlign = TextAlign.End, - color = FluentTheme.colors.text.text.primary - ) + Column( + Modifier.padding(16.dp).align(Alignment.BottomEnd), + horizontalAlignment = Alignment.End + ) { + Text( + modifier = Modifier, + text = "Compose\nFluent Design", + style = FluentTheme.typography.title, + textAlign = TextAlign.End, + color = FluentTheme.colors.text.text.primary + ) + Spacer(modifier = Modifier.height(8.dp)) + Text( + text = BuildKonfig.LIBRARY_VERSION, + style = FluentTheme.typography.body, + textAlign = TextAlign.End, + color = FluentTheme.colors.text.text.secondary + ) + } } Card( diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/TodoScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/TodoScreen.kt similarity index 79% rename from gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/TodoScreen.kt rename to gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/TodoScreen.kt index 5012c83d..7c3ca5c0 100644 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/TodoScreen.kt +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/TodoScreen.kt @@ -1,11 +1,11 @@ -package com.konyaco.fluent.gallery.screen +package io.github.composefluent.gallery.screen import androidx.compose.foundation.layout.Box import androidx.compose.foundation.layout.fillMaxSize import androidx.compose.runtime.Composable import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier -import com.konyaco.fluent.component.Text +import io.github.composefluent.component.Text @Composable fun TodoScreen() { diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/ButtonScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/ButtonScreen.kt similarity index 81% rename from gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/ButtonScreen.kt rename to gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/ButtonScreen.kt index df4cf809..d2c72859 100644 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/ButtonScreen.kt +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/ButtonScreen.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.gallery.screen.basicinput +package io.github.composefluent.gallery.screen.basicinput import androidx.compose.foundation.layout.size import androidx.compose.runtime.Composable @@ -6,19 +6,19 @@ import androidx.compose.runtime.mutableStateOf import androidx.compose.runtime.remember import androidx.compose.ui.Modifier import androidx.compose.ui.unit.dp -import com.konyaco.fluent.component.AccentButton -import com.konyaco.fluent.component.Button -import com.konyaco.fluent.component.CheckBox -import com.konyaco.fluent.component.Icon -import com.konyaco.fluent.component.SubtleButton -import com.konyaco.fluent.component.Text -import com.konyaco.fluent.gallery.annotation.Component -import com.konyaco.fluent.gallery.annotation.Sample -import com.konyaco.fluent.gallery.component.ComponentPagePath -import com.konyaco.fluent.gallery.component.GalleryPage -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.regular.Home -import com.konyaco.fluent.source.generated.FluentSourceFile +import io.github.composefluent.component.AccentButton +import io.github.composefluent.component.Button +import io.github.composefluent.component.CheckBox +import io.github.composefluent.component.Icon +import io.github.composefluent.component.SubtleButton +import io.github.composefluent.component.Text +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.regular.Home +import io.github.composefluent.source.generated.FluentSourceFile @Component( index = 0, diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/CheckBoxScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/CheckBoxScreen.kt similarity index 79% rename from gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/CheckBoxScreen.kt rename to gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/CheckBoxScreen.kt index 0bcb4ca0..87bd4435 100644 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/CheckBoxScreen.kt +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/CheckBoxScreen.kt @@ -1,18 +1,18 @@ -package com.konyaco.fluent.gallery.screen.basicinput +package io.github.composefluent.gallery.screen.basicinput import androidx.compose.runtime.Composable import androidx.compose.runtime.getValue import androidx.compose.runtime.mutableStateOf import androidx.compose.runtime.remember import androidx.compose.runtime.setValue -import com.konyaco.fluent.component.CheckBox -import com.konyaco.fluent.component.Text -import com.konyaco.fluent.gallery.annotation.Component -import com.konyaco.fluent.gallery.annotation.Sample -import com.konyaco.fluent.gallery.component.ComponentPagePath -import com.konyaco.fluent.gallery.component.GalleryPage -import com.konyaco.fluent.gallery.component.TodoComponent -import com.konyaco.fluent.source.generated.FluentSourceFile +import io.github.composefluent.component.CheckBox +import io.github.composefluent.component.Text +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.gallery.component.TodoComponent +import io.github.composefluent.source.generated.FluentSourceFile @Component(index = 7, description = "A control that a user can select or clear.") @Composable diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/ColorPickerScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/ColorPickerScreen.kt similarity index 82% rename from gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/ColorPickerScreen.kt rename to gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/ColorPickerScreen.kt index 1a0878f8..0aff614c 100644 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/ColorPickerScreen.kt +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/ColorPickerScreen.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.gallery.screen.basicinput +package io.github.composefluent.gallery.screen.basicinput import androidx.compose.foundation.layout.Arrangement import androidx.compose.foundation.layout.Column @@ -9,16 +9,16 @@ import androidx.compose.runtime.remember import androidx.compose.ui.Modifier import androidx.compose.ui.graphics.Color import androidx.compose.ui.unit.dp -import com.konyaco.fluent.component.CheckBox -import com.konyaco.fluent.component.ColorPicker -import com.konyaco.fluent.component.ColorSpectrum -import com.konyaco.fluent.component.RadioButton -import com.konyaco.fluent.component.Text -import com.konyaco.fluent.gallery.annotation.Component -import com.konyaco.fluent.gallery.annotation.Sample -import com.konyaco.fluent.gallery.component.ComponentPagePath -import com.konyaco.fluent.gallery.component.GalleryPage -import com.konyaco.fluent.source.generated.FluentSourceFile +import io.github.composefluent.component.CheckBox +import io.github.composefluent.component.ColorPicker +import io.github.composefluent.component.ColorSpectrum +import io.github.composefluent.component.RadioButton +import io.github.composefluent.component.Text +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.source.generated.FluentSourceFile @Component(index = 8, description = "A control that displays a selectable color spectrum.") @Composable diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/ComboBoxScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/ComboBoxScreen.kt new file mode 100644 index 00000000..7565a391 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/ComboBoxScreen.kt @@ -0,0 +1,62 @@ +package io.github.composefluent.gallery.screen.basicinput + +import androidx.compose.runtime.Composable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import io.github.composefluent.component.ComboBox +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.gallery.component.TodoComponent +import io.github.composefluent.source.generated.FluentSourceFile + +@Component(index = 9, description = "A drop-down list of items a user can select from.") +@Composable +fun ComboBoxScreen() { + GalleryPage( + title = "ComboBox", + description = "Use a ComboBox when you need to conserve on-screen space and when users select only one option at a time. A ComboBox shows only the currently selected item.", + galleryPath = ComponentPagePath.ComboBoxScreen, + componentPath = FluentSourceFile.ComboBox + ) { + Section( + title = "A ComboBox with its Items source set", + sourceCode = sourceCodeOfItemsSourceComboBoxSample + ) { + ItemsSourceComboBoxSample() + } + + Section( + title = "A ComboBox with items defined inline and its width set", + sourceCode = "" + ) { + TodoComponent() + } + + Section( + title = "An editable ComboBox", + sourceCode = "" + ) { + TodoComponent() + } + } +} + +private val itemsList = listOf("Red", "Green", "Yellow", "Blue", "Pink") + +@Sample +@Composable +private fun ItemsSourceComboBoxSample() { + var selected by remember { mutableStateOf(null) } + + ComboBox( + header = "Color", + placeholder = "Pick a color", + selected = selected, + items = itemsList, + onSelectionChange = { i, s -> selected = i } + ) +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/DropDownButtonScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/DropDownButtonScreen.kt similarity index 81% rename from gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/DropDownButtonScreen.kt rename to gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/DropDownButtonScreen.kt index 0ed173d2..b6fc976d 100644 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/DropDownButtonScreen.kt +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/DropDownButtonScreen.kt @@ -1,19 +1,19 @@ -package com.konyaco.fluent.gallery.screen.basicinput +package io.github.composefluent.gallery.screen.basicinput import androidx.compose.foundation.layout.size import androidx.compose.runtime.Composable import androidx.compose.ui.Modifier import androidx.compose.ui.unit.dp -import com.konyaco.fluent.component.* -import com.konyaco.fluent.gallery.annotation.Component -import com.konyaco.fluent.gallery.annotation.Sample -import com.konyaco.fluent.gallery.component.ComponentPagePath -import com.konyaco.fluent.gallery.component.GalleryPage -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.filled.Send -import com.konyaco.fluent.icons.regular.Mail -import com.konyaco.fluent.icons.regular.MailArrowDoubleBack -import com.konyaco.fluent.source.generated.FluentSourceFile +import io.github.composefluent.component.* +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.filled.Send +import io.github.composefluent.icons.regular.Mail +import io.github.composefluent.icons.regular.MailArrowDoubleBack +import io.github.composefluent.source.generated.FluentSourceFile @Component(index = 1, description = "A button that displays a flyout of choices when clicked.") @Composable diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/HyperlinkButtonScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/HyperlinkButtonScreen.kt similarity index 79% rename from gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/HyperlinkButtonScreen.kt rename to gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/HyperlinkButtonScreen.kt index e30ea615..4e21646f 100644 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/HyperlinkButtonScreen.kt +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/HyperlinkButtonScreen.kt @@ -1,16 +1,16 @@ -package com.konyaco.fluent.gallery.screen.basicinput +package io.github.composefluent.gallery.screen.basicinput import androidx.compose.runtime.Composable import androidx.compose.runtime.mutableStateOf import androidx.compose.runtime.remember -import com.konyaco.fluent.component.CheckBox -import com.konyaco.fluent.component.HyperlinkButton -import com.konyaco.fluent.component.Text -import com.konyaco.fluent.gallery.annotation.Component -import com.konyaco.fluent.gallery.annotation.Sample -import com.konyaco.fluent.gallery.component.* -import com.konyaco.fluent.gallery.component.Basic_input_ToggleButtonScreenComponent -import com.konyaco.fluent.source.generated.FluentSourceFile +import io.github.composefluent.component.CheckBox +import io.github.composefluent.component.HyperlinkButton +import io.github.composefluent.component.Text +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.* +import io.github.composefluent.gallery.component.Basic_input_ToggleButtonScreenComponent +import io.github.composefluent.source.generated.FluentSourceFile @Component(index = 2, description = "A button that appears as hyperlink text, and can navigate to a URl or handle a Click event.") @Composable diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/LiteFilterScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/LiteFilterScreen.kt new file mode 100644 index 00000000..96e9dc35 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/LiteFilterScreen.kt @@ -0,0 +1,69 @@ +package io.github.composefluent.gallery.screen.basicinput + +import androidx.compose.runtime.Composable +import androidx.compose.runtime.Stable +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import io.github.composefluent.component.LiteFilter +import io.github.composefluent.component.PillButton +import io.github.composefluent.component.Text +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.source.generated.FluentSourceFile + +@Component(index = 17, description = "An filter container for displaying a list of items.") +@Composable +fun LiteFilterScreen() { + GalleryPage( + title = "LiteFilter", + description = "An filter container for displaying a list of items.", + componentPath = FluentSourceFile.LiteFilter, + galleryPath = ComponentPagePath.LiteFilterScreen + ) { + Section( + title = "LiteFilter", + sourceCode = sourceCodeOfLiteFilterSample, + content = { LiteFilterSample() } + ) + } +} + +@Sample +@Composable +private fun LiteFilterSample() { + val selectedItem = remember { mutableStateOf("") } + LiteFilter { + items().forEach { name -> + PillButton( + selected = selectedItem.value == name, + onSelectedChanged = { + if (selectedItem.value != name) { + selectedItem.value = name + } else { + selectedItem.value = "" + } + }, + ) { + Text(name) + } + } + } +} + +@Stable +private fun items() = listOf( + "All", + "Apps", + "Documents", + "Web", + "People", + "IMG", + "JPG", + "OneDrive", + "SkyDrive", + "Pictures", + "Songs", + "Videos", +) \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/PillButtonScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/PillButtonScreen.kt new file mode 100644 index 00000000..61b55468 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/PillButtonScreen.kt @@ -0,0 +1,78 @@ +package io.github.composefluent.gallery.screen.basicinput + +import androidx.compose.runtime.Composable +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import io.github.composefluent.component.CheckBox +import io.github.composefluent.component.Icon +import io.github.composefluent.component.PillButton +import io.github.composefluent.component.Text +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.regular.Power +import io.github.composefluent.source.generated.FluentSourceFile + +@Component(description = "represent content metadata to users. They can be used as static tags, links to genre pages, or content filtering experiences.", index = 14) +@Composable +fun PillButtonScreen() { + GalleryPage( + title = "PillButton", + description = "Pill buttons represent content metadata to users. They can be used as static" + + "tags, links to genre pages, or built into interactive components to create" + + " content filtering experiences.", + componentPath = FluentSourceFile.Button, + galleryPath = ComponentPagePath.PillButtonScreen + ) { + val enabled = remember { mutableStateOf(true) } + Section( + title = "PillButton", + sourceCode = sourceCodeOfPillButtonSample, + content = { + PillButtonSample(enabled.value) + }, + options = { + CheckBox( + checked = enabled.value, + onCheckStateChange = { enabled.value = !enabled.value }, + label = "Enabled" + ) + } + ) + Section( + title = "PillButton with Icon", + sourceCode = sourceCodeOfPillButtonWithIconSample, + content = { + PillButtonWithIconSample() + } + ) + } +} + +@Sample +@Composable +private fun PillButtonSample(enabled: Boolean) { + val selected = remember { mutableStateOf(false) } + PillButton( + selected = selected.value, + onSelectedChanged = { selected.value = !selected.value }, + content = { Text("Close") }, + disabled = !enabled + ) +} + +@Sample +@Composable +private fun PillButtonWithIconSample() { + val selected = remember { mutableStateOf(false) } + PillButton( + selected = selected.value, + onSelectedChanged = { selected.value = !selected.value }, + content = { + Icon(Icons.Default.Power, null) + Text("Close") + } + ) +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/RadioButtonScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/RadioButtonScreen.kt similarity index 79% rename from gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/RadioButtonScreen.kt rename to gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/RadioButtonScreen.kt index fc1b2b76..21f11415 100644 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/RadioButtonScreen.kt +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/RadioButtonScreen.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.gallery.screen.basicinput +package io.github.composefluent.gallery.screen.basicinput import androidx.compose.foundation.layout.Arrangement import androidx.compose.foundation.layout.Column @@ -8,13 +8,13 @@ import androidx.compose.runtime.mutableStateOf import androidx.compose.runtime.remember import androidx.compose.runtime.setValue import androidx.compose.ui.unit.dp -import com.konyaco.fluent.component.RadioButton -import com.konyaco.fluent.component.Text -import com.konyaco.fluent.gallery.annotation.Component -import com.konyaco.fluent.gallery.annotation.Sample -import com.konyaco.fluent.gallery.component.ComponentPagePath -import com.konyaco.fluent.gallery.component.GalleryPage -import com.konyaco.fluent.source.generated.FluentSourceFile +import io.github.composefluent.component.RadioButton +import io.github.composefluent.component.Text +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.source.generated.FluentSourceFile @Component( index = 10, diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/RatingControlScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/RatingControlScreen.kt similarity index 85% rename from gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/RatingControlScreen.kt rename to gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/RatingControlScreen.kt index 619bff4b..83136430 100644 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/RatingControlScreen.kt +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/RatingControlScreen.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.gallery.screen.basicinput +package io.github.composefluent.gallery.screen.basicinput import androidx.compose.foundation.layout.padding import androidx.compose.foundation.layout.size @@ -8,15 +8,15 @@ import androidx.compose.runtime.mutableStateOf import androidx.compose.runtime.remember import androidx.compose.ui.Modifier import androidx.compose.ui.unit.dp -import com.konyaco.fluent.component.CheckBox -import com.konyaco.fluent.component.RatingControl -import com.konyaco.fluent.component.Slider -import com.konyaco.fluent.component.Text -import com.konyaco.fluent.gallery.annotation.Component -import com.konyaco.fluent.gallery.annotation.Sample -import com.konyaco.fluent.gallery.component.ComponentPagePath -import com.konyaco.fluent.gallery.component.GalleryPage -import com.konyaco.fluent.source.generated.FluentSourceFile +import io.github.composefluent.component.CheckBox +import io.github.composefluent.component.RatingControl +import io.github.composefluent.component.Slider +import io.github.composefluent.component.Text +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.source.generated.FluentSourceFile import kotlin.math.roundToInt @Component(index = 11, description = "Rate something 1 to 5 stars.") diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/RepeatButtonScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/RepeatButtonScreen.kt similarity index 77% rename from gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/RepeatButtonScreen.kt rename to gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/RepeatButtonScreen.kt index b307e9e1..ecfbe1cc 100644 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/RepeatButtonScreen.kt +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/RepeatButtonScreen.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.gallery.screen.basicinput +package io.github.composefluent.gallery.screen.basicinput import androidx.compose.foundation.layout.Arrangement import androidx.compose.foundation.layout.Row @@ -8,14 +8,14 @@ import androidx.compose.runtime.mutableStateOf import androidx.compose.runtime.remember import androidx.compose.ui.Alignment import androidx.compose.ui.unit.dp -import com.konyaco.fluent.component.CheckBox -import com.konyaco.fluent.component.RepeatButton -import com.konyaco.fluent.component.Text -import com.konyaco.fluent.gallery.annotation.Component -import com.konyaco.fluent.gallery.annotation.Sample -import com.konyaco.fluent.gallery.component.ComponentPagePath -import com.konyaco.fluent.gallery.component.GalleryPage -import com.konyaco.fluent.source.generated.FluentSourceFile +import io.github.composefluent.component.CheckBox +import io.github.composefluent.component.RepeatButton +import io.github.composefluent.component.Text +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.source.generated.FluentSourceFile @Component(index = 3, description = "A button that raises its Click event repeatedly from the time it's pressed until it's released.") @Composable diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/SegmentedControlScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/SegmentedControlScreen.kt new file mode 100644 index 00000000..2b37fc0d --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/SegmentedControlScreen.kt @@ -0,0 +1,107 @@ +package io.github.composefluent.gallery.screen.basicinput + +import androidx.compose.runtime.Composable +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import io.github.composefluent.component.Icon +import io.github.composefluent.component.SegmentedButton +import io.github.composefluent.component.SegmentedControl +import io.github.composefluent.component.SegmentedItemPosition +import io.github.composefluent.component.Text +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.regular.Circle +import io.github.composefluent.source.generated.FluentSourceFile + +@Component(index = 15, description = "A common Ul control to configure a view or setting.") +@Composable +fun SegmentedControlScreen() { + GalleryPage( + title = "SegmentedControl", + description = "A common Ul control to configure a view or setting.", + componentPath = FluentSourceFile.SegmentedControl, + galleryPath = ComponentPagePath.SegmentedControlScreen + ) { + Section( + title = "SegmentedControl", + sourceCode = sourceCodeOfSegmentedControlSample, + content = { SegmentedControlSample() } + ) + Section( + title = "SegmentedControl with Icon", + sourceCode = sourceCodeOfSegmentedControlWithIconSample, + content = { SegmentedControlWithIconSample() } + ) + Section( + title = "SegmentedControl Icon Only", + sourceCode = sourceCodeOfSegmentedControlIconOnlySample, + content = { SegmentedControlIconOnlySample() } + ) + } +} + +@Sample +@Composable +private fun SegmentedControlSample() { + val checkedIndex = remember { mutableStateOf(0) } + SegmentedControl { + repeat(count) { index -> + SegmentedButton( + checked = index == checkedIndex.value, + onCheckedChanged = { checkedIndex.value = index }, + position = when (index) { + 0 -> SegmentedItemPosition.Start + count - 1 -> SegmentedItemPosition.End + else -> SegmentedItemPosition.Center + }, + text = { Text("Text") } + ) + } + } +} + +@Sample +@Composable +private fun SegmentedControlWithIconSample() { + val checkedIndex = remember { mutableStateOf(0) } + SegmentedControl { + repeat(count) { index -> + SegmentedButton( + checked = index == checkedIndex.value, + onCheckedChanged = { checkedIndex.value = index }, + position = when (index) { + 0 -> SegmentedItemPosition.Start + count - 1 -> SegmentedItemPosition.End + else -> SegmentedItemPosition.Center + }, + text = { Text("Text") }, + icon = { Icon(Icons.Default.Circle, null) } + ) + } + } +} + +@Sample +@Composable +private fun SegmentedControlIconOnlySample() { + val checkedIndex = remember { mutableStateOf(0) } + SegmentedControl { + repeat(count) { index -> + SegmentedButton( + checked = index == checkedIndex.value, + onCheckedChanged = { checkedIndex.value = index }, + position = when (index) { + 0 -> SegmentedItemPosition.Start + count - 1 -> SegmentedItemPosition.End + else -> SegmentedItemPosition.Center + }, + icon = { Icon(Icons.Default.Circle, null) } + ) + } + } +} + +private const val count = 5 \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/SliderScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/SliderScreen.kt new file mode 100644 index 00000000..003c5c51 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/SliderScreen.kt @@ -0,0 +1,147 @@ +package io.github.composefluent.gallery.screen.basicinput + +import androidx.compose.foundation.background +import androidx.compose.foundation.layout.* +import androidx.compose.foundation.shape.CircleShape +import androidx.compose.runtime.Composable +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.ui.Modifier +import androidx.compose.ui.draw.clip +import androidx.compose.ui.graphics.Brush +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.unit.dp +import io.github.composefluent.component.* +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.gallery.component.TodoComponent +import io.github.composefluent.source.generated.FluentSourceFile +import kotlin.math.roundToInt + +@Component( + index = 12, + description = "A control that lets the user select from a range of values by moving a Thumb control along a track." +) +@Composable +fun SliderScreen() { + GalleryPage( + title = "Slider", + description = "Use a Slider when you want your users to be able to set defined, contiguous values (such as volume or brightness) or a range of discrete values (such as screen resolution settings).", + componentPath = FluentSourceFile.Slider, + galleryPath = ComponentPagePath.SliderScreen + ) { + val (value, onValueChanged) = remember { mutableStateOf(0f) } + Section( + title = "A simple Slider.", + sourceCode = sourceCodeOfSliderSample, + content = { SliderSample(value, onValueChanged) }, + output = { + Text(value.toString()) + } + ) + + Section( + title = "A Slider with tick marks.", + sourceCode = sourceCodeOfSliderTickMarkSample, + content = { SliderTickMarkSample() } + ) + + val (confirmValue, setConfirmValue) = remember { mutableStateOf(0f) } + val stepsSliderState = remember { + SliderState( + value = 0f, + steps = 4, + snap = true, + onValueChangeFinished = setConfirmValue, + valueRange = 0f..100f + ) + } + + Section( + title = "A Slider with custom tooltip content and snaps to tickmark.", + sourceCode = sourceCodeOfSliderStepsSample, + content = { SliderStepsSample(stepsSliderState) }, + output = { + Text("value: ${stepsSliderState.value}") + Text("confirmValue: $confirmValue") + } + ) + + Section( + title = "Customize slider by using BasicSlider.", + sourceCode = sourceCodeOfBasicSliderSample, + content = { BasicSliderSample(remember { SliderState(valueRange = 0f..100f) }) }, + ) + + Section("A vertical slider with range and tick marks specified.", "") { + TodoComponent() + } + } +} + +@Sample +@Composable +private fun SliderSample(value: Float, onValueChanged: (Float) -> Unit) { + Slider( + modifier = Modifier.width(200.dp), + value = value, + onValueChange = onValueChanged + ) +} + +@Sample +@Composable +private fun SliderTickMarkSample() { + val (value, setValue) = remember { mutableStateOf(0f) } + Slider( + modifier = Modifier.width(200.dp), + valueRange = 0f..100f, + value = value, + steps = 5, + showTickMark = true, + snap = false, + onValueChange = setValue, + ) +} + +@Sample +@Composable +private fun SliderStepsSample(state: SliderState) { + Slider( + modifier = Modifier.width(200.dp), + state = state, + tooltipContent = { + Text(it.nearestValue().roundToInt().toString()) + }, + ) +} + +@Sample +@Composable +private fun BasicSliderSample(state: SliderState) { + BasicSlider( + modifier = Modifier.width(200.dp), + state = state, + rail = { + Box( + modifier = Modifier + .fillMaxWidth() + .requiredHeight(12.dp) + .clip(CircleShape) + .background( + Brush.horizontalGradient( + 0f to Color.White.copy(0f), + 1f to Color.Red.copy(1f) + ) + ) + ) + }, + track = { + }, + thumb = { + SliderDefaults.Thumb(state) + } + ) +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/SplitButtonScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/SplitButtonScreen.kt similarity index 92% rename from gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/SplitButtonScreen.kt rename to gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/SplitButtonScreen.kt index ec4f0728..8832a448 100644 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/SplitButtonScreen.kt +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/SplitButtonScreen.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.gallery.screen.basicinput +package io.github.composefluent.gallery.screen.basicinput import androidx.compose.foundation.background import androidx.compose.foundation.interaction.MutableInteractionSource @@ -13,12 +13,12 @@ import androidx.compose.ui.text.SpanStyle import androidx.compose.ui.text.buildAnnotatedString import androidx.compose.ui.text.input.TextFieldValue import androidx.compose.ui.unit.dp -import com.konyaco.fluent.component.* -import com.konyaco.fluent.gallery.annotation.Component -import com.konyaco.fluent.gallery.annotation.Sample -import com.konyaco.fluent.gallery.component.ComponentPagePath -import com.konyaco.fluent.gallery.component.GalleryPage -import com.konyaco.fluent.source.generated.FluentSourceFile +import io.github.composefluent.component.* +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.source.generated.FluentSourceFile @Component( index = 5, diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/ToggleButtonScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/ToggleButtonScreen.kt similarity index 76% rename from gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/ToggleButtonScreen.kt rename to gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/ToggleButtonScreen.kt index 248995aa..29936170 100644 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/ToggleButtonScreen.kt +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/ToggleButtonScreen.kt @@ -1,16 +1,16 @@ -package com.konyaco.fluent.gallery.screen.basicinput +package io.github.composefluent.gallery.screen.basicinput import androidx.compose.runtime.Composable import androidx.compose.runtime.mutableStateOf import androidx.compose.runtime.remember -import com.konyaco.fluent.component.CheckBox -import com.konyaco.fluent.component.Text -import com.konyaco.fluent.component.ToggleButton -import com.konyaco.fluent.gallery.annotation.Component -import com.konyaco.fluent.gallery.annotation.Sample -import com.konyaco.fluent.gallery.component.ComponentPagePath -import com.konyaco.fluent.gallery.component.GalleryPage -import com.konyaco.fluent.source.generated.FluentSourceFile +import io.github.composefluent.component.CheckBox +import io.github.composefluent.component.Text +import io.github.composefluent.component.ToggleButton +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.source.generated.FluentSourceFile @Component(index = 4, description = "A button that can be switched between two states like a CheckBox.") @Composable diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/ToggleSplitButtonScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/ToggleSplitButtonScreen.kt similarity index 79% rename from gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/ToggleSplitButtonScreen.kt rename to gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/ToggleSplitButtonScreen.kt index c87244a0..7f593442 100644 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/basicinput/ToggleSplitButtonScreen.kt +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/ToggleSplitButtonScreen.kt @@ -1,19 +1,19 @@ -package com.konyaco.fluent.gallery.screen.basicinput +package io.github.composefluent.gallery.screen.basicinput import androidx.compose.foundation.layout.* import androidx.compose.runtime.* import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier import androidx.compose.ui.unit.dp -import com.konyaco.fluent.component.* -import com.konyaco.fluent.gallery.annotation.Component -import com.konyaco.fluent.gallery.annotation.Sample -import com.konyaco.fluent.gallery.component.ComponentPagePath -import com.konyaco.fluent.gallery.component.GalleryPage -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.icons.regular.List -import com.konyaco.fluent.icons.regular.TextBulletListLtr -import com.konyaco.fluent.source.generated.FluentSourceFile +import io.github.composefluent.component.* +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.regular.List +import io.github.composefluent.icons.regular.TextBulletListLtr +import io.github.composefluent.source.generated.FluentSourceFile @Component(index = 6, description = "A version of the SplitButton where the activation target toggles on/off.") @Composable diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/ToggleSwitchScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/ToggleSwitchScreen.kt new file mode 100644 index 00000000..14570bb4 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/basicinput/ToggleSwitchScreen.kt @@ -0,0 +1,44 @@ +package io.github.composefluent.gallery.screen.basicinput + +import androidx.compose.runtime.Composable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import io.github.composefluent.component.Switcher +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.gallery.component.TodoComponent +import io.github.composefluent.source.generated.FluentSourceFile + +@Component(index = 13, description = "A switch that can be toggled between 2 states.") +@Composable +fun ToggleSwitchScreen() { + GalleryPage( + title = "ToggleSwitch", + description = "Use ToggleSwitch controls to present users with exactly two mutually exclusive options (like on/off), where choosing an option results in an immediate commit. A toggle switch should have a single label.", + componentPath = FluentSourceFile.Switcher, + galleryPath = ComponentPagePath.ToggleSwitchScreen + ) { + Section( + title = "A simple ToggleSwitch.", + sourceCode = sourceCodeOfToggleSwitchSample, + content = { ToggleSwitchSample() } + ) + Section( + title = "A ToggleSwitch with custom header and content.", + sourceCode = "" + ) { + TodoComponent() + } + } +} + +@Sample +@Composable +private fun ToggleSwitchSample() { + var checked by remember { mutableStateOf(false) } + Switcher(checked, { checked = it }, text = if (checked) "On" else "Off") +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/collections/ExpanderScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/collections/ExpanderScreen.kt new file mode 100644 index 00000000..341113b7 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/collections/ExpanderScreen.kt @@ -0,0 +1,154 @@ +package io.github.composefluent.gallery.screen.collections + +import androidx.compose.runtime.Composable +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import io.github.composefluent.component.CardExpanderItem +import io.github.composefluent.component.CheckBox +import io.github.composefluent.component.DropDownButton +import io.github.composefluent.component.Expander +import io.github.composefluent.component.ExpanderItem +import io.github.composefluent.component.ExpanderItemSeparator +import io.github.composefluent.component.Icon +import io.github.composefluent.component.Switcher +import io.github.composefluent.component.Text +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.regular.ChevronRight +import io.github.composefluent.icons.regular.Power +import io.github.composefluent.source.generated.FluentSourceFile + +@Component(description = "Control that displays a header and a collapsible content area.") +@Composable +fun ExpanderScreen() { + GalleryPage( + title = "Expander", + description = "An expander control that can be used to create Windows 11 style settings experiences.", + componentPath = FluentSourceFile.Expander, + galleryPath = ComponentPagePath.ExpanderScreen + ) { + Section( + title = "Basic Expander", + sourceCode = sourceCodeOfExpanderSample, + content = { ExpanderSample() } + ) + Section( + title = "Expander without icon", + sourceCode = sourceCodeOfExpanderSampleWithoutIcon, + content = { ExpanderSampleWithoutIcon() } + ) + Section( + title = "Card Expander Item", + sourceCode = sourceCodeOfCardExpanderItemSample, + content = { CardExpanderItemSample() } + ) + val enabled = remember { mutableStateOf(true) } + Section( + title = "Clickable Card Expander Item", + sourceCode = sourceCodeOfClickableCardExpanderItemSample, + content = { ClickableCardExpanderItemSample(enabled = enabled.value) }, + options = { + CheckBox( + checked = enabled.value, + onCheckStateChange = { enabled.value = it }, + label = "Enabled" + ) + } + ) + } +} + +@Sample +@Composable +private fun ExpanderSample() { + val expanded = remember { mutableStateOf(false) } + Expander( + expanded = expanded.value, + onExpandedChanged = { expanded.value = it }, + heading = { Text("Power button functionality") }, + caption = { Text("Adjust what yor power buttons control") }, + icon = { Icon(Icons.Default.Power, null) }, + trailing = { + val checked = remember { mutableStateOf(true) } + Switcher( + checked = checked.value, + { checked.value = it }, + textBefore = true, + text = if (checked.value) "On" else "Off" + ) + } + ) { + ExpanderItem( + heading = { Text("When I press the power button on battery") }, + trailing = { DropDownButton(onClick = {}, content = { Text("Sleep") }) } + ) + ExpanderItemSeparator() + ExpanderItem( + heading = { Text("When I press the power button when plugged in") }, + trailing = { DropDownButton(onClick = {}, content = { Text("Sleep") }) } + ) + } +} + +@Sample +@Composable +private fun ExpanderSampleWithoutIcon() { + val expanded = remember { mutableStateOf(false) } + Expander( + expanded = expanded.value, + onExpandedChanged = { expanded.value = it }, + heading = { Text("Power button functionality") }, + caption = { Text("Adjust what yor power buttons control") }, + icon = null, + trailing = { + val checked = remember { mutableStateOf(true) } + Switcher( + checked = checked.value, + { checked.value = it }, + textBefore = true, + text = if (checked.value) "On" else "Off" + ) + } + ) { + ExpanderItem( + heading = { Text("When I press the power button on battery") }, + trailing = { DropDownButton(onClick = {}, content = { Text("Sleep") }) }, + icon = null + ) + } +} + +@Sample +@Composable +private fun CardExpanderItemSample() { + CardExpanderItem( + heading = { Text("Power button functionality") }, + caption = { Text("Adjust what yor power buttons control") }, + icon = { Icon(Icons.Default.Power, null) }, + trailing = { + val checked = remember { mutableStateOf(true) } + Switcher( + checked = checked.value, + { checked.value = it }, + textBefore = true, + text = if (checked.value) "On" else "Off" + ) + } + ) +} + +@Sample +@Composable +private fun ClickableCardExpanderItemSample(enabled: Boolean = true) { + CardExpanderItem( + heading = { Text("Power button functionality") }, + caption = { Text("Adjust what yor power buttons control") }, + icon = { Icon(Icons.Default.Power, null) }, + dropdown = { Icon(Icons.Default.ChevronRight, null) }, + onClick = {}, + enabled = enabled + ) +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/collections/FlipViewScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/collections/FlipViewScreen.kt new file mode 100644 index 00000000..bd692d86 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/collections/FlipViewScreen.kt @@ -0,0 +1,72 @@ +package io.github.composefluent.gallery.screen.collections + +import androidx.compose.foundation.background +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.aspectRatio +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.widthIn +import androidx.compose.foundation.pager.rememberPagerState +import androidx.compose.runtime.Composable +import androidx.compose.ui.Modifier +import androidx.compose.ui.unit.dp +import io.github.composefluent.component.HorizontalFlipView +import io.github.composefluent.component.VerticalFlipView +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.source.generated.FluentSourceFile + +@Component(description = "Presents a collection of items that the user can flip through, one item at a time.") +@Composable +fun FlipViewScreen() { + GalleryPage( + title = "FlipView", + description = "The FlipView lets you flip through a collection of items, one at a time. " + + "It's great for displaying images from a gallery, pages of a magazine, or similar items.", + componentPath = FluentSourceFile.FlipView, + galleryPath = ComponentPagePath.FlipViewScreen + ) { + Section( + title = "HorizontalFlipView sample", + sourceCode = sourceCodeOfHorizontalFlipViewSample, + content = { HorizontalFlipViewSample() } + ) + + Section( + title = "VerticalFlipView sample", + sourceCode = sourceCodeOfVerticalFlipViewSample, + content = { VerticalFlipViewSample() } + ) + } +} + +@Sample +@Composable +private fun HorizontalFlipViewSample() { + val items = randomBrushItems() + HorizontalFlipView( + state = rememberPagerState { items.size }, + modifier = Modifier + .widthIn(max = 400.dp) + .height(180.dp) + ) { + Box(modifier = Modifier.fillMaxSize().background(items[it])) + } +} + +@Sample +@Composable +private fun VerticalFlipViewSample() { + val items = randomBrushItems() + VerticalFlipView( + state = rememberPagerState { items.size }, + modifier = Modifier + .widthIn(max = 400.dp) + .height(180.dp) + ) { + Box(modifier = Modifier.fillMaxSize().background(items[it])) + } +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/collections/GridViewItemScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/collections/GridViewItemScreen.kt new file mode 100644 index 00000000..6a586280 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/collections/GridViewItemScreen.kt @@ -0,0 +1,138 @@ +package io.github.composefluent.gallery.screen.collections + +import androidx.compose.foundation.background +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.PaddingValues +import androidx.compose.foundation.layout.aspectRatio +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.lazy.grid.GridCells +import androidx.compose.foundation.lazy.grid.LazyVerticalGrid +import androidx.compose.foundation.lazy.grid.itemsIndexed +import androidx.compose.runtime.Composable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateListOf +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Brush +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.unit.dp +import io.github.composefluent.component.GridViewItem +import io.github.composefluent.component.GridViewItemDefaults +import io.github.composefluent.component.MultiSelectGridViewItem +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.source.generated.FluentSourceFile +import kotlin.random.Random +import kotlin.uuid.ExperimentalUuidApi +import kotlin.uuid.Uuid + +@Component(description = "Selectable item template in grids.") +@Composable +fun GridViewItemScreen() { + GalleryPage( + title = "GridViewItem", + description = "Selectable item template in grids.", + componentPath = FluentSourceFile.GridViewItem, + galleryPath = ComponentPagePath.GridViewItemScreen + ) { + Section( + title = "Basic GridViewItem", + sourceCode = sourceCodeOfBasicGridViewItemSample, + content = { BasicGridViewItemSample() } + ) + + Section( + title = "MultiSelect GridViewItem", + sourceCode = sourceCodeOfMultiSelectGridViewItemSample, + content = { MultiSelectGridViewItemSample() } + ) + } +} + +@Sample +@Composable +private fun BasicGridViewItemSample() { + val items = randomBrushItems() + var selectedIndex by remember { mutableStateOf(-1) } + LazyVerticalGrid( + columns = GridCells.Adaptive(112.dp), + horizontalArrangement = Arrangement.spacedBy(GridViewItemDefaults.spacing), + verticalArrangement = Arrangement.spacedBy(GridViewItemDefaults.spacing), + contentPadding = PaddingValues(GridViewItemDefaults.spacing), + modifier = Modifier.height(300.dp) + ) { + itemsIndexed(items) { index, item -> + GridViewItem( + selected = index == selectedIndex, + onSelectedChange = { + selectedIndex = if (it) index else -1 + }, + content = { + Box(modifier = Modifier.background(item)) + }, + modifier = Modifier.fillMaxWidth() + .aspectRatio(1f) + ) + } + } +} + +@Sample +@Composable +private fun MultiSelectGridViewItemSample() { + val items = randomBrushItems() + val selectedIndices = remember { mutableStateListOf() } + LazyVerticalGrid( + columns = GridCells.Adaptive(112.dp), + horizontalArrangement = Arrangement.spacedBy(GridViewItemDefaults.spacing), + verticalArrangement = Arrangement.spacedBy(GridViewItemDefaults.spacing), + contentPadding = PaddingValues(GridViewItemDefaults.spacing), + modifier = Modifier.height(300.dp) + ) { + itemsIndexed(items) { index, item -> + MultiSelectGridViewItem( + selected = selectedIndices.contains(index), + onSelectedChange = { + if (it) { + selectedIndices.add(index) + } else { + selectedIndices.remove(index) + } + }, + content = { + Box(modifier = Modifier.background(item)) + }, + modifier = Modifier.fillMaxWidth() + .aspectRatio(1f) + ) + } + } +} + +@OptIn(ExperimentalUuidApi::class) +@Composable +internal fun randomBrushItems(): List { + val random = remember { Random(Uuid.random().toLongs { a, b -> a + b }) } + return List(12) { + Brush.linearGradient( + colors = randomColor(random) + ) + } +} + +private fun randomColor(random: Random): List { + val count = random.nextInt(2, 5) + return List(count) { + Color( + red = random.nextInt(0, 255), + green = random.nextInt(0, 255), + blue = random.nextInt(0, 255) + ) + } +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/collections/ListItemScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/collections/ListItemScreen.kt similarity index 85% rename from gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/collections/ListItemScreen.kt rename to gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/collections/ListItemScreen.kt index 8f0caf6e..be33acce 100644 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/collections/ListItemScreen.kt +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/collections/ListItemScreen.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.gallery.screen.collections +package io.github.composefluent.gallery.screen.collections import androidx.compose.foundation.ExperimentalFoundationApi import androidx.compose.foundation.layout.fillMaxWidth @@ -11,20 +11,20 @@ import androidx.compose.runtime.remember import androidx.compose.runtime.setValue import androidx.compose.ui.Modifier import androidx.compose.ui.unit.dp -import com.konyaco.fluent.CompactMode -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.component.ListHeader -import com.konyaco.fluent.component.ListItem -import com.konyaco.fluent.component.ListItemSelectionType -import com.konyaco.fluent.component.RadioButton -import com.konyaco.fluent.component.Switcher -import com.konyaco.fluent.component.Text -import com.konyaco.fluent.gallery.LocalStore -import com.konyaco.fluent.gallery.annotation.Component -import com.konyaco.fluent.gallery.annotation.Sample -import com.konyaco.fluent.gallery.component.ComponentPagePath -import com.konyaco.fluent.gallery.component.GalleryPage -import com.konyaco.fluent.source.generated.FluentSourceFile +import io.github.composefluent.CompactMode +import io.github.composefluent.FluentTheme +import io.github.composefluent.component.ListHeader +import io.github.composefluent.component.ListItem +import io.github.composefluent.component.ListItemSelectionType +import io.github.composefluent.component.RadioButton +import io.github.composefluent.component.Switcher +import io.github.composefluent.component.Text +import io.github.composefluent.gallery.LocalStore +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.source.generated.FluentSourceFile @Component(index = 0, description = "Basic list item templates for use in a variety of controls") @Composable diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/datetime/CalendarScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/datetime/CalendarScreen.kt new file mode 100644 index 00000000..0831f085 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/datetime/CalendarScreen.kt @@ -0,0 +1,51 @@ +@file:OptIn(ExperimentalFluentApi::class) + +package io.github.composefluent.gallery.screen.datetime + +import androidx.compose.runtime.Composable +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.component.CalendarDatePicker +import io.github.composefluent.component.CalendarView +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.source.generated.FluentSourceFile + +@Component(description = "A control that presents a calendar for a user to " + + "choose a date from.") +@Composable +fun CalendarScreen() { + GalleryPage( + title = "Calendar", + description = "Lets users pick a date value using a calendar.", + componentPath = FluentSourceFile.CalendarView, + galleryPath = ComponentPagePath.CalendarScreen + ) { + Section( + title = "A CalendarDatePicker", + sourceCode = sourceCodeOfCalendarDatePickerSample + ) { + CalendarDatePickerSample() + } + + Section( + title = "CalendarView shows a large view for showing and selecting dates.", + sourceCode = sourceCodeOfCalendarViewSample + ) { + CalendarViewSample() + } + } +} + +@Sample +@Composable +private fun CalendarDatePickerSample() { + CalendarDatePicker(onChoose = {}) +} + +@Sample +@Composable +private fun CalendarViewSample() { + CalendarView(onChoose = {}) +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/design/ColorScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/design/ColorScreen.kt new file mode 100644 index 00000000..2266a7e3 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/design/ColorScreen.kt @@ -0,0 +1,1734 @@ +package io.github.composefluent.gallery.screen.design + +import androidx.compose.animation.AnimatedContent +import androidx.compose.animation.core.tween +import androidx.compose.animation.fadeIn +import androidx.compose.animation.fadeOut +import androidx.compose.animation.slideInHorizontally +import androidx.compose.animation.togetherWith +import androidx.compose.foundation.BorderStroke +import androidx.compose.foundation.Image +import androidx.compose.foundation.background +import androidx.compose.foundation.border +import androidx.compose.foundation.horizontalScroll +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.ColumnScope +import androidx.compose.foundation.layout.IntrinsicSize +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.Spacer +import androidx.compose.foundation.layout.fillMaxHeight +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.layout.sizeIn +import androidx.compose.foundation.layout.width +import androidx.compose.foundation.layout.widthIn +import androidx.compose.foundation.layout.wrapContentWidth +import androidx.compose.foundation.rememberScrollState +import androidx.compose.foundation.shape.RoundedCornerShape +import androidx.compose.runtime.Composable +import androidx.compose.runtime.Stable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.setValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.draw.clip +import androidx.compose.ui.graphics.Brush +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.SolidColor +import androidx.compose.ui.unit.dp +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.FluentTheme +import io.github.composefluent.FluentThemeConfiguration +import io.github.composefluent.LocalContentColor +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.background.BackgroundSizing +import io.github.composefluent.background.ElevationDefaults +import io.github.composefluent.background.Layer +import io.github.composefluent.component.AccentButton +import io.github.composefluent.component.Button +import io.github.composefluent.component.ButtonColor +import io.github.composefluent.component.ButtonColorScheme +import io.github.composefluent.component.InfoBar +import io.github.composefluent.component.InfoBarSeverity +import io.github.composefluent.component.Scrollbar +import io.github.composefluent.component.ScrollbarContainer +import io.github.composefluent.component.Slider +import io.github.composefluent.component.Switcher +import io.github.composefluent.component.TabItem +import io.github.composefluent.component.TabViewDefaults +import io.github.composefluent.component.Text +import io.github.composefluent.component.TopNav +import io.github.composefluent.component.TopNavItem +import io.github.composefluent.component.rememberScrollbarAdapter +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.CopyButton +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.scheme.PentaVisualScheme +import io.github.composefluent.source.generated.FluentSourceFile +import io.github.composefluent.surface.Card +import fluentdesign.gallery.generated.resources.Res +import fluentdesign.gallery.generated.resources.banner +import org.jetbrains.compose.resources.painterResource + +@OptIn(ExperimentalFluentApi::class) +@Component(icon = "Color") +@Composable +fun ColorScreen() { + GalleryPage( + title = "Color", + description = "The colors below are part of Compose Fluent Design. " + + "You can reference them in your app", + galleryPath = ComponentPagePath.ColorScreen, + componentPath = FluentSourceFile.Colors + ) { + Section { + Column { + var selectedItem by remember { mutableStateOf(ColorPage.Text) } + var expanded by remember { mutableStateOf(false) } + TopNav( + expanded = expanded, + onExpandedChanged = { expanded = it } + ) { + items(ColorPage.entries.size) { index -> + val colorPage = ColorPage.entries[index] + TopNavItem( + selected = selectedItem == colorPage, + onClick = { selectedItem = colorPage }, + text = { + Text(colorPage.name) + } + ) + } + } + FluentThemeConfiguration(colors = it) { + AnimatedContent( + targetState = selectedItem, + transitionSpec = { + val isForward = targetState.ordinal > initialState.ordinal + + (fadeIn( + tween( + durationMillis = FluentDuration.QuickDuration, + easing = FluentEasing.FadeInFadeOutEasing, + delayMillis = FluentDuration.QuickDuration + ) + ) + slideInHorizontally( + tween( + durationMillis = FluentDuration.ShortDuration, + easing = FluentEasing.FastInvokeEasing, + delayMillis = FluentDuration.QuickDuration + ) + ) { + if (isForward) { + it / 5 + } else { + -it / 5 + } + }) togetherWith fadeOut( + tween( + durationMillis = FluentDuration.QuickDuration, + easing = FluentEasing.FadeInFadeOutEasing, + delayMillis = FluentDuration.QuickDuration + ) + ) + } + ) { page -> + ColorPage { + when (page) { + ColorPage.Text -> TextColorPage() + ColorPage.Fill -> FillColorPage() + ColorPage.Stroke -> StrokeColorPage() + ColorPage.Background -> BackgroundColorPage() + ColorPage.Signal -> SignalColorPage() + } + } + } + } + } + } + } +} + +@Composable +private fun TextColorPage() { + ColorSection( + section = "Text", + sample = { + Text( + text = "Aa", + style = FluentTheme.typography.titleLarge, + color = FluentTheme.colors.text.text.primary + ) + }, + description = "For UI labels and static text", + group = arrayOf( + ColorInfo( + color = FluentTheme.colors.text.text.primary, + contentColor = FluentTheme.colors.text.onAccent.primary, + name = "Primary", + explanation = "Rest or Hover", + usage = "text.text.primary", + showSeparator = false + ), + ColorInfo( + color = FluentTheme.colors.text.text.secondary, + contentColor = FluentTheme.colors.text.onAccent.primary, + name = "Secondary", + explanation = "Rest or Hover", + usage = "text.text.secondary", + showSeparator = false + ), + ColorInfo( + color = FluentTheme.colors.text.text.tertiary, + contentColor = FluentTheme.colors.text.text.primary, + name = "Tertiary", + explanation = "Pressed only (not accessible)", + usage = "text.text.tertiary", + showSeparator = false + ), + ColorInfo( + color = FluentTheme.colors.text.text.disabled, + contentColor = FluentTheme.colors.text.text.primary, + name = "Disabled", + explanation = "Disabled only (not accessible)", + usage = "text.text.disabled", + showSeparator = false + ) + ) + ) + ColorSection( + section = "Accent Text", + sample = { + Text( + text = "Aa", + style = FluentTheme.typography.titleLarge, + color = FluentTheme.colors.text.accent.primary + ) + }, + description = "Recommended for links", + group = arrayOf( + ColorInfo( + color = FluentTheme.colors.text.accent.primary, + contentColor = FluentTheme.colors.text.onAccent.primary, + name = "Primary", + explanation = "Rest or Hover", + usage = "text.accent.primary", + showSeparator = false + ), + ColorInfo( + color = FluentTheme.colors.text.accent.secondary, + contentColor = FluentTheme.colors.text.onAccent.primary, + name = "Secondary", + explanation = "Rest or Hover", + usage = "text.accent.secondary", + showSeparator = false + ), + ColorInfo( + color = FluentTheme.colors.text.accent.tertiary, + contentColor = FluentTheme.colors.text.onAccent.primary, + name = "Tertiary", + explanation = "Pressed only (not accessible)", + usage = "text.accent.tertiary", + showSeparator = false + ), + ColorInfo( + color = FluentTheme.colors.text.accent.disabled, + contentColor = FluentTheme.colors.text.text.primary, + name = "Disabled", + explanation = "Disabled only (not accessible)", + usage = "text.accent.disabled", + showSeparator = false + ) + ) + ) + ColorSection( + section = "Text on accent", + color = FluentTheme.colors.fillAccent.default, + contentColor = FluentTheme.colors.text.onAccent.primary, + sample = { + Text( + text = "Aa", + style = FluentTheme.typography.titleLarge, + color = FluentTheme.colors.text.onAccent.primary + ) + }, + description = "Used for text on accent colored controls or fills", + group = arrayOf( + ColorInfo( + color = FluentTheme.colors.text.onAccent.primary, + contentColor = FluentTheme.colors.text.text.primary, + name = "Primary", + explanation = "Rest or Hover", + usage = "text.onAccent.primary" + ), + ColorInfo( + color = FluentTheme.colors.text.onAccent.secondary, + contentColor = FluentTheme.colors.text.text.primary, + name = "Secondary", + explanation = "Pressed only (not accessible)", + usage = "text.onAccent.secondary" + ), + ColorInfo( + color = FluentTheme.colors.text.onAccent.disabled, + contentColor = FluentTheme.colors.text.text.primary, + name = "Disabled", + explanation = "Disabled only (not accessible)", + usage = "text.onAccent.disabled" + ), + ColorInfo( + color = FluentTheme.colors.text.onAccent.selectedText, + contentColor = Color.Black, + name = "Selected Text", + explanation = "For highlighted text in text entry experiences", + usage = "text.onAccent.selectedText" + ) + ) + ) +} + +@Composable +private fun FillColorPage() { + ColorSection( + section = "Control Fill", + header = "Control", + description = "Fill used for standard controls", + sample = { + Button( + onClick = {}, + content = { Text("Text") } + ) + }, + groups = arrayOf( + arrayOf( + ColorInfo( + color = FluentTheme.colors.control.default, + contentColor = FluentTheme.colors.text.text.primary, + name = "Default", + explanation = "Rest", + usage = "control.default" + ), + ColorInfo( + color = FluentTheme.colors.control.secondary, + contentColor = FluentTheme.colors.text.text.primary, + name = "Secondary", + explanation = "Hover", + usage = "control.secondary" + ), + ColorInfo( + color = FluentTheme.colors.control.tertiary, + contentColor = FluentTheme.colors.text.text.primary, + name = "Tertiary", + explanation = "Pressed", + usage = "control.tertiary" + ), + ColorInfo( + color = FluentTheme.colors.control.quaternary, + contentColor = FluentTheme.colors.text.text.primary, + name = "Quaternary", + explanation = "Rest (Pill Button control)", + usage = "control.quaternary" + ) + ), + arrayOf( + ColorInfo( + color = FluentTheme.colors.control.disabled, + contentColor = FluentTheme.colors.text.text.primary, + name = "Disabled", + explanation = "Disabled", + usage = "control.disabled" + ), + ColorInfo( + color = FluentTheme.colors.control.transparent, + contentColor = FluentTheme.colors.text.text.primary, + name = "Transparent", + explanation = "Rest", + usage = "control.transparent" + ), + ColorInfo( + color = FluentTheme.colors.control.inputActive, + contentColor = FluentTheme.colors.text.text.primary, + name = "Input Active", + explanation = "Active/focused text input fields", + usage = "control.inputActive" + ) + ) + ) + ) + + ColorSection( + section = "Control Alt Fill", + header = "Control Alt", + description = "Fill used for the 'off' states of toggle controls", + sample = { + var checked by remember { mutableStateOf(false) } + Switcher(checked = checked, onCheckStateChange = { checked = it }) + }, + groups = arrayOf( + arrayOf( + ColorInfo( + color = FluentTheme.colors.controlAlt.transparent, + contentColor = FluentTheme.colors.text.text.primary, + name = "Transparent", + explanation = "Rest", + usage = "controlAlt.transparent", + showSeparator = true + ), + ColorInfo( + color = FluentTheme.colors.controlAlt.secondary, + contentColor = FluentTheme.colors.text.text.primary, + name = "Secondary", + explanation = "Hover", + usage = "controlAlt.secondary", + showSeparator = true + ), + ColorInfo( + color = FluentTheme.colors.controlAlt.tertiary, + contentColor = FluentTheme.colors.text.text.primary, + name = "Tertiary", + explanation = "Pressed", + usage = "controlAlt.tertiary", + showSeparator = true + ) + ), + arrayOf( + ColorInfo( + color = FluentTheme.colors.controlAlt.quaternary, + contentColor = FluentTheme.colors.text.text.primary, + name = "Quaternary", + explanation = "Pressed", + usage = "controlAlt.quaternary", + showSeparator = true + ), + ColorInfo( + color = FluentTheme.colors.controlAlt.disabled, + contentColor = FluentTheme.colors.text.text.primary, + name = "Disabled", + explanation = "Disabled", + usage = "controlAlt.disabled", + showSeparator = true + ), + ) + ) + ) + + ColorSection( + section = "Control Solid", + description = "Fills used for Sliders thumb control to cover the track beneath it.", + sample = { + var value by remember { mutableStateOf(0.5f) } + Slider( + value = value, + onValueChange = { value = it }, + modifier = Modifier.height(32.dp).width(100.dp) + ) + }, + group = arrayOf( + ColorInfo( + color = FluentTheme.colors.controlSolid.default, + contentColor = FluentTheme.colors.text.text.primary, + name = "Default", + explanation = "Rest", + usage = "controlSolid.default" + ) + ) + ) + + ColorSection( + section = "Control Strong", + description = "Used for controls that must meet contrast ratio requirements of 3:1.", + sample = { + + val scrollState = rememberScrollState() + ScrollbarContainer( + isVertical = false, + scrollbar = { + Scrollbar( + isVertical = false, + adapter = rememberScrollbarAdapter(scrollState), + modifier = Modifier.fillMaxWidth() + ) + }, + modifier = Modifier.width(160.dp) + ) { + Box( + modifier = Modifier.fillMaxWidth().horizontalScroll(scrollState).height(28.dp) + ) { + Spacer(modifier = Modifier.height(1.dp).width(700.dp)) + } + } + }, + group = arrayOf( + ColorInfo( + color = FluentTheme.colors.controlStrong.default, + contentColor = FluentTheme.colors.text.onAccent.primary, + name = "Default", + explanation = "Rest or hover", + usage = "controlStrong.default", + showSeparator = false + ), + ColorInfo( + color = FluentTheme.colors.controlStrong.disabled, + contentColor = FluentTheme.colors.text.onAccent.primary, + name = "Disabled only (not accessible)", + explanation = "Disabled", + usage = "controlStrong.disabled" + ) + ) + ) + ColorSection( + section = "Subtle Fill", + header = "Subtle", + description = "Used for list items and fills that are transparent at rest and appear upon interaction.", + sample = { + Column { + Text( + text = "Rest", + modifier = Modifier.padding(8.dp) + ) + Layer( + color = FluentTheme.colors.subtleFill.secondary, + shape = FluentTheme.shapes.control, + contentColor = LocalContentColor.current, + border = null, + modifier = Modifier.widthIn(120.dp) + ) { + Text("Hover", modifier = Modifier.padding(12.dp)) + } + } + }, + group = arrayOf( + ColorInfo( + color = FluentTheme.colors.subtleFill.transparent, + contentColor = FluentTheme.colors.text.text.primary, + name = "Transparent", + explanation = "Rest", + usage = "subtleFill.transparent" + ), + ColorInfo( + color = FluentTheme.colors.subtleFill.secondary, + contentColor = FluentTheme.colors.text.text.primary, + name = "Secondary", + explanation = "Hover", + usage = "subtleFill.secondary" + ), + ColorInfo( + color = FluentTheme.colors.subtleFill.tertiary, + contentColor = FluentTheme.colors.text.text.primary, + name = "Tertiary", + explanation = "Pressed", + usage = "subtleFill.tertiary" + ), + ColorInfo( + color = FluentTheme.colors.subtleFill.disabled, + contentColor = FluentTheme.colors.text.text.primary, + name = "Disabled", + explanation = "Disabled only (not accessible)", + usage = "subtleFill.disabled" + ) + ) + ) + + ColorSection( + section = "Color On Image Fill", + description = "Used for controls living on top of imagery.", + header = "Color On Image", + sample = { + Box( + modifier = Modifier.clip(FluentTheme.shapes.control) + ) { + Image( + painter = painterResource(Res.drawable.banner), + contentDescription = null, + modifier = Modifier + .background(FluentTheme.colors.background.mica.base) + .size(112.dp) + ) + + Layer( + content = {}, + border = BorderStroke(1.dp, FluentTheme.colors.controlStrong.default), + color = FluentTheme.colors.controlOnImage.default, + backgroundSizing = BackgroundSizing.InnerBorderEdge, + clipContent = true, + modifier = Modifier.align(Alignment.TopEnd) + .padding(4.dp) + .size(20.dp) + ) + } + }, + group = arrayOf( + ColorInfo( + color = FluentTheme.colors.controlOnImage.default, + contentColor = FluentTheme.colors.text.text.primary, + name = "Default", + explanation = "Rest", + usage = "controlOnImage.default" + ), + ColorInfo( + color = FluentTheme.colors.controlOnImage.secondary, + contentColor = FluentTheme.colors.text.text.primary, + name = "Secondary", + explanation = "Hover", + usage = "controlOnImage.secondary" + ), + ColorInfo( + color = FluentTheme.colors.controlOnImage.tertiary, + contentColor = FluentTheme.colors.text.text.primary, + name = "Tertiary", + explanation = "Pressed", + usage = "controlOnImage.tertiary" + ), + ColorInfo( + color = FluentTheme.colors.controlOnImage.disabled, + contentColor = FluentTheme.colors.text.text.primary, + name = "Disabled only (not accessible)", + explanation = "Disabled", + usage = "controlOnImage.disabled" + ) + ) + ) + + ColorSection( + section = "Accent Fill", + header = "Accent", + description = "Used for accent fills on controls", + sample = { + AccentButton( + onClick = {}, + content = { + Text("Text") + } + ) + }, + groups = arrayOf( + arrayOf( + ColorInfo( + color = FluentTheme.colors.fillAccent.default, + contentColor = FluentTheme.colors.text.onAccent.primary, + name = "Default", + explanation = "Rest", + usage = "fillAccent.default", + showSeparator = false + ), + ColorInfo( + color = FluentTheme.colors.fillAccent.secondary, + contentColor = FluentTheme.colors.text.onAccent.primary, + name = "Secondary", + explanation = "Hover", + usage = "fillAccent.secondary", + showSeparator = false + ), + ColorInfo( + color = FluentTheme.colors.fillAccent.tertiary, + contentColor = FluentTheme.colors.text.onAccent.primary, + name = "Tertiary", + explanation = "Pressed", + usage = "fillAccent.tertiary", + showSeparator = false + ) + ), + arrayOf( + ColorInfo( + color = FluentTheme.colors.fillAccent.disabled, + contentColor = FluentTheme.colors.text.text.primary, + name = "Disabled", + explanation = "Disabled", + usage = "fillAccent.disabled", + showSeparator = false + ), + ColorInfo( + color = FluentTheme.colors.fillAccent.selectedTextBackground, + contentColor = FluentTheme.colors.text.onAccent.primary, + name = "Selected Text Background", + explanation = "Highlighted/selected text background", + usage = "fillAccent.selectedTextBackground", + showSeparator = false + ) + ) + ) + ) +} + +@Composable +private fun StrokeColorPage() { + ColorSection( + section = "Card Stroke", + description = "Used for card and layer colors.", + sample = { + Card( + content = {}, + modifier = Modifier.size(60.dp, 48.dp) + ) + }, + group = arrayOf( + ColorInfo( + color = FluentTheme.colors.stroke.card.default, + contentColor = FluentTheme.colors.text.text.primary, + name = "Default", + explanation = "Card layer and strokes", + usage = "stroke.card.default" + ), + ColorInfo( + color = FluentTheme.colors.stroke.card.defaultSolid, + contentColor = FluentTheme.colors.text.text.primary, + name = "Default Solid", + explanation = "Solid equivalent of Card Stroke / Default.\n" + + "Used in command bar for expanded states", + usage = "stroke.card.defaultSolid" + ) + ) + ) + + ColorSection( + section = "Control Elevation (gradient strokes)", + description = "Used for standard control strokes and stroke states.", + sample = { + Button( + onClick = {}, + content = { + Text("Text") + } + ) + }, + groups = arrayOf( + arrayOf( + ColorInfo( + color = Color.Transparent, + contentColor = FluentTheme.colors.text.text.primary, + backgroundBrush = FluentTheme.colors.borders.control, + name = "Border", + header = "Control", + explanation = "Rest", + usage = "borders.control", + colorValue = "Stop 1: Stroke/Control/Default\n" + + "Stop 2: Stroke/Control/Secondary" + ), + ColorInfo( + color = Color.Transparent, + contentColor = FluentTheme.colors.text.text.primary, + backgroundBrush = FluentTheme.colors.borders.circle, + name = "Border", + header = "Circle", + explanation = "Rest", + usage = "borders.circle", + colorValue = "Stop 1: Stroke/Control/Default\n" + + "Stop 2: Stroke/Control/Secondary" + ), + ColorInfo( + color = Color.Transparent, + contentColor = FluentTheme.colors.text.text.primary, + backgroundBrush = FluentTheme.colors.borders.textControl, + name = "Border", + header = "Text Control", + explanation = "Rest", + usage = "borders.textControl", + colorValue = "Stop 1: Stroke/Control/Default\n" + + "Stop 2: Stroke/Control Strong/Default" + ) + ), + arrayOf( + ColorInfo( + color = Color.Transparent, + contentColor = FluentTheme.colors.text.text.primary, + backgroundBrush = FluentTheme.colors.borders.textControlFocused, + name = "Border Focused", + header = "Text Control", + explanation = "Active text fields", + usage = "borders.textControlFocused", + colorValue = "Stop 1: Stroke/Control/Default\n" + + "Stop 2: Fill/Accent/Default" + ), + ColorInfo( + color = Color.Transparent, + contentColor = FluentTheme.colors.text.text.primary, + backgroundBrush = FluentTheme.colors.borders.accentControl, + name = "Border", + header = "Accent Control", + explanation = "Rest", + usage = "borders.accentControl", + colorValue = "Stop 1: Stroke/Control/On Accent Default\n" + + "Stop 2: Stroke/Control/On Accent Secondary" + ) + ) + ) + ) + + ColorSection( + section = "Control Stroke", + description = "Used for gradient stops in elevation borders, and for control states.", + sample = { + Button( + onClick = {}, + content = { + Text("Text") + } + ) + }, + groups = arrayOf( + arrayOf( + ColorInfo( + color = FluentTheme.colors.stroke.control.default, + contentColor = FluentTheme.colors.text.text.primary, + name = "Default", + explanation = "Used in Control Elevation Brushes.\n" + + "Pressed or Disabled", + usage = "stroke.control.default" + ), + ColorInfo( + color = FluentTheme.colors.stroke.control.secondary, + contentColor = FluentTheme.colors.text.text.primary, + name = "Secondary", + explanation = "Used in Control Elevation Brushes", + usage = "stroke.control.secondary" + ), + ColorInfo( + color = FluentTheme.colors.stroke.control.onAccentDefault, + contentColor = FluentTheme.colors.text.text.primary, + name = "On Accent Default", + explanation = "Used in Control Elevation Brushes. Pressed or Disabled", + usage = "stroke.control.onAccentDefault" + ), + ColorInfo( + color = FluentTheme.colors.stroke.control.onAccentSecondary, + contentColor = FluentTheme.colors.text.text.primary, + name = "On Accent Secondary", + explanation = "Used in Control Elevation Brushes", + usage = "stroke.control.onAccentSecondary" + ) + ), + arrayOf( + ColorInfo( + color = FluentTheme.colors.stroke.control.onAccentTertiary, + contentColor = FluentTheme.colors.text.text.primary, + name = "On Accent Tertiary", + explanation = "Linework on Accent controls, ie: dividers", + usage = "stroke.control.onAccentTertiary", + ), + ColorInfo( + color = FluentTheme.colors.stroke.control.onAccentDisabled, + contentColor = FluentTheme.colors.text.text.primary, + name = "On Accent Disabled", + explanation = "Disabled", + usage = "stroke.control.onAccentDisabled" + ), + ColorInfo( + color = FluentTheme.colors.stroke.control.forStrongFillWhenOnImage, + contentColor = FluentTheme.colors.text.text.primary, + name = "For Strong Fill When On Image", + explanation = "When used with a 'strong' fill color, ensures a 3:1 contrast on any background", + usage = "stroke.control.forStrongFillWhenOnImage" + ) + ) + ) + ) + + ColorSection( + section = "Control Strong Stroke", + description = "Used for controls that must meet contrast ratio requirements of 3:1.", + sample = { + var checked by remember { mutableStateOf(false) } + Switcher( + checked = checked, + onCheckStateChange = { checked = it } + ) + }, + group = arrayOf( + ColorInfo( + color = FluentTheme.colors.stroke.controlStrong.default, + contentColor = FluentTheme.colors.text.onAccent.primary, + name = "Default", + explanation = "3:1 control border", + usage = "stroke.controlStrong.default", + showSeparator = false + ), + ColorInfo( + color = FluentTheme.colors.stroke.controlStrong.disabled, + contentColor = FluentTheme.colors.text.text.primary, + name = "Disabled", + explanation = "Disabled", + usage = "stroke.controlStrong.disabled", + showSeparator = false + ) + ) + ) + + ColorSection( + section = "Surface Stroke", + description = "Used for strokes on background surfaces, ie: flyouts, windows, dialogs.", + sample = { + Layer( + content = {}, + color = FluentTheme.colors.background.acrylic.base, + border = BorderStroke(1.dp, FluentTheme.colors.stroke.surface.default), + shape = FluentTheme.shapes.overlay, + modifier = Modifier.sizeIn( + minWidth = 120.dp, + minHeight = 40.dp + ) + ) + }, + group = arrayOf( + ColorInfo( + color = FluentTheme.colors.stroke.surface.default, + contentColor = FluentTheme.colors.text.text.primary, + name = "Default", + explanation = "Window and dialog borders, theme inverse", + usage = "stroke.surface.default", + showSeparator = false + ), + ColorInfo( + color = FluentTheme.colors.stroke.surface.flyout, + contentColor = FluentTheme.colors.text.text.primary, + name = "Flyout", + explanation = "Control flyouts, always dark", + usage = "stroke.surface.flyout", + showSeparator = false + ) + ) + ) + + ColorSection( + section = "Divider Stroke", + description = "Used for divider and graphic lines. Theme inverse; dark in light theme and light in dark theme.", + sample = { + Layer( + content = { + Spacer( + modifier = Modifier.fillMaxSize() + .wrapContentWidth(Alignment.CenterHorizontally) + .width(1.dp) + .padding(vertical = 1.dp) + .background(FluentTheme.colors.stroke.divider.default) + ) + }, + color = FluentTheme.colors.background.acrylic.base, + border = BorderStroke(1.dp, FluentTheme.colors.stroke.surface.default), + shape = FluentTheme.shapes.overlay, + modifier = Modifier.size( + width = 120.dp, + height = 40.dp + ) + ) + }, + group = arrayOf( + ColorInfo( + color = FluentTheme.colors.stroke.divider.default, + contentColor = FluentTheme.colors.text.text.primary, + name = "Default", + explanation = "Content dividers", + usage = "stroke.divider.default", + showSeparator = false + ) + ) + ) + + ColorSection( + section = "Focus Stroke", + description = "Used for divider and graphic lines. Theme inverse; dark in light theme and light in dark theme..", + sample = { + //TODO Components Focus Border + Button( + onClick = {}, + content = { Text("Text") }, + modifier = Modifier + .border( + width = 2.dp, + color = FluentTheme.colors.stroke.focus.outer, + shape = RoundedCornerShape(FluentTheme.cornerRadius.control + 2.dp) + ) + .padding(2.dp) + .border( + width = 2.dp, + color = FluentTheme.colors.stroke.focus.inner, + shape = RoundedCornerShape(FluentTheme.cornerRadius.control + 1.dp) + ) + .padding(2.dp) + ) + }, + group = arrayOf( + ColorInfo( + color = FluentTheme.colors.stroke.focus.outer, + contentColor = FluentTheme.colors.text.onAccent.primary, + name = "Outer", + explanation = "Outer stroke color", + usage = "stroke.focus.outer", + showSeparator = false + ), + ColorInfo( + color = FluentTheme.colors.stroke.focus.inner, + contentColor = FluentTheme.colors.text.text.primary, + name = "Inner", + explanation = "Inner stroke color", + usage = "stroke.focus.inner", + showSeparator = false + ) + ) + ) + +} + +@Composable +private fun BackgroundColorPage() { + ColorSection( + section = "Card Background", + description = "Used to create 'cards' - content blocks that live on page and layer backgrounds", + sample = { + Layer( + content = {}, + color = FluentTheme.colors.background.card.default, + border = BorderStroke(1.dp, FluentTheme.colors.stroke.card.default), + shape = FluentTheme.shapes.overlay, + elevation = ElevationDefaults.cardRest, + modifier = Modifier.size(60.dp, 30.dp) + ) + }, + group = arrayOf( + ColorInfo( + color = FluentTheme.colors.background.card.default, + contentColor = FluentTheme.colors.text.text.primary, + name = "Default", + explanation = "Default card color", + usage = "background.card.default" + ), + ColorInfo( + color = FluentTheme.colors.background.card.secondary, + contentColor = FluentTheme.colors.text.text.primary, + name = "Secondary", + explanation = "Alternate card color: slightly darker", + usage = "background.card.secondary" + ), + ColorInfo( + color = FluentTheme.colors.background.card.tertiary, + contentColor = FluentTheme.colors.text.text.primary, + name = "Tertiary", + explanation = "Default card hover and pressed color", + usage = "background.card.tertiary" + ) + ) + ) + + ColorSection( + section = "Smoke Background", + color = FluentTheme.colors.background.smoke.default, + description = "Used over windows and desktop to block them out as inaccessible.", + sample = { + WindowLayer( + color = FluentTheme.colors.background.smoke.default + ) + }, + group = arrayOf( + ColorInfo( + color = FluentTheme.colors.background.smoke.default, + contentColor = FluentTheme.colors.text.text.primary, + name = "Default", + explanation = "Dims backgrounds behind dialogs", + usage = "background.smoke.default" + ) + ) + ) + + ColorSection( + section = "Layer", + description = "Used on background colors of any material to create layering", + sample = { + WindowLayer( + color = FluentTheme.colors.background.acrylic.base, + content = { + Row( + modifier = Modifier + .fillMaxWidth() + .wrapContentWidth(Alignment.End) + .fillMaxWidth(0.75f) + ) { + Spacer( + modifier = Modifier + .padding(vertical = 1.dp) + .fillMaxHeight() + .width(1.dp) + .background(FluentTheme.colors.stroke.card.default) + ) + Layer( + color = FluentTheme.colors.background.layer.default, + shape = FluentTheme.shapes.intersectionEdge, + border = null, + content = {}, + modifier = Modifier + .weight(1f) + .fillMaxHeight() + ) + } + } + ) + }, + group = arrayOf( + ColorInfo( + color = FluentTheme.colors.background.layer.default, + contentColor = FluentTheme.colors.text.text.primary, + name = "Default", + explanation = "Content layer color", + usage = "background.layer.default" + ), + ColorInfo( + color = FluentTheme.colors.background.layer.alt, + contentColor = FluentTheme.colors.text.text.primary, + name = "Alt", + explanation = "Alternate content layer color", + usage = "background.layer.alt" + ) + ) + ) + + ColorSection( + section = "Layer on Acrylic", + description = "Used on background colors of any material to create layering", + sample = { + WindowLayer( + color = FluentTheme.colors.background.acrylic.base, + content = { + Row( + modifier = Modifier + .fillMaxWidth() + .wrapContentWidth(Alignment.End) + .fillMaxWidth(0.75f) + ) { + Spacer( + modifier = Modifier + .padding(vertical = 1.dp) + .fillMaxHeight() + .width(1.dp) + .background(FluentTheme.colors.stroke.card.default) + ) + Layer( + color = FluentTheme.colors.background.layerOnAcrylic.default, + shape = FluentTheme.shapes.intersectionEdge, + border = null, + content = {}, + modifier = Modifier + .weight(1f) + .fillMaxHeight() + ) + } + } + ) + }, + group = arrayOf( + ColorInfo( + color = FluentTheme.colors.background.layerOnAcrylic.default, + contentColor = FluentTheme.colors.text.text.primary, + name = "Default", + explanation = "Content layer color on acrylic surfaces", + usage = "background.layerOnAcrylic.default" + ) + ) + ) + + ColorSection( + section = "Layer on Mica Base Alt", + description = "", + sample = { + var selected by remember { mutableStateOf(false) } + TabItem( + endDividerVisible = false, + selected = selected, + onSelectedChanged = { selected = it }, + text = { Text("Text") }, + trailing = { TabViewDefaults.TabCloseButton(onClick = {}) }, + colors = if (selected) { + TabViewDefaults.selectedItemTitleBarColors() + } else { + TabViewDefaults.defaultItemTitleBarColors() + } + ) + }, + groups = arrayOf( + arrayOf( + ColorInfo( + color = FluentTheme.colors.background.layerOnMicaBaseAlt.default, + contentColor = FluentTheme.colors.text.text.primary, + name = "Default", + explanation = "Active Tab Rest\n" + + "Content layer", + usage = "background.layerOnMicaBaseAlt.default" + ), + ColorInfo( + color = FluentTheme.colors.background.layerOnMicaBaseAlt.tertiary, + contentColor = FluentTheme.colors.text.text.primary, + name = "Tertiary", + explanation = "Active Tab Drag", + usage = "background.layerOnMicaBaseAlt.tertiary" + ) + ), + arrayOf( + ColorInfo( + color = FluentTheme.colors.background.layerOnMicaBaseAlt.transparent, + contentColor = FluentTheme.colors.text.text.primary, + name = "Transparent", + explanation = "Inactive Tab Rest", + usage = "background.layerOnMicaBaseAlt.transparent", + showSeparator = false, + ), + ColorInfo( + color = FluentTheme.colors.background.layerOnMicaBaseAlt.secondary, + contentColor = FluentTheme.colors.text.text.primary, + name = "Secondary", + explanation = "Inactive Tab Hover", + usage = "background.layerOnMicaBaseAlt.secondary", + showSeparator = false + ) + ) + ) + ) + + ColorSection( + section = "Solid Background", + description = "Solid background colors to place layers, cards or controls on.", + sample = { + WindowLayer( + color = FluentTheme.colors.background.solid.base + ) + }, + groups = arrayOf( + arrayOf( + ColorInfo( + color = FluentTheme.colors.background.solid.base, + contentColor = FluentTheme.colors.text.text.primary, + name = "Base", + explanation = "Used for the bottom most layer of an experience.", + usage = "background.solid.base" + ), + ColorInfo( + color = FluentTheme.colors.background.solid.baseAlt, + contentColor = FluentTheme.colors.text.text.primary, + name = "Base Alt", + explanation = "Used for the bottom most layer of an experience.", + usage = "background.solid.baseAlt" + ), + ColorInfo( + color = FluentTheme.colors.background.solid.secondary, + contentColor = FluentTheme.colors.text.text.primary, + name = "Secondary", + explanation = "Alternate base color for those who need a darker background color.", + usage = "background.solid.secondary" + ), + ColorInfo( + color = FluentTheme.colors.background.solid.tertiary, + contentColor = FluentTheme.colors.text.text.primary, + name = "Tertiary", + explanation = "Content layer color", + usage = "background.solid.tertiary" + ) + ), + arrayOf( + ColorInfo( + color = FluentTheme.colors.background.solid.quaternary, + contentColor = FluentTheme.colors.text.text.primary, + name = "Quaternary", + explanation = "Alt content layer color.", + usage = "background.solid.quaternary" + ), + ColorInfo( + color = FluentTheme.colors.background.solid.quinary, + contentColor = FluentTheme.colors.text.text.primary, + name = "Quinary", + explanation = "Used for solid default card colors.", + usage = "background.solid.quinary" + ), + ColorInfo( + color = FluentTheme.colors.background.solid.senary, + contentColor = FluentTheme.colors.text.text.primary, + name = "Senary", + explanation = "Used for solid default card color.", + usage = "background.solid.senary" + ) + ) + ) + ) + + ColorSection( + section = "Mica Background", + description = "Mica background colors to place layers, cards, or controls on.", + sample = { + WindowLayer( + color = FluentTheme.colors.background.mica.base + ) + }, + group = arrayOf( + ColorInfo( + color = FluentTheme.colors.background.mica.base, + contentColor = FluentTheme.colors.text.text.primary, + name = "Base", + explanation = "Used for the bottom most layer of an experience.", + usage = "background.mica.base" + ), + ColorInfo( + color = FluentTheme.colors.background.mica.baseAlt, + contentColor = FluentTheme.colors.text.text.primary, + name = "Base Alt", + explanation = "Default tab band background color.", + usage = "background.mica.baseAlt" + ) + ) + ) + + ColorSection( + section = "Acrylic Background", + description = "Acrylic background colors to place layers, cards, or controls on.", + sample = { + WindowLayer( + color = FluentTheme.colors.background.acrylic.base + ) + }, + group = arrayOf( + ColorInfo( + color = FluentTheme.colors.background.acrylic.base, + contentColor = FluentTheme.colors.text.text.primary, + name = "Base", + explanation = "Used for the bottom most layer of an acrylic surface only when the surface will use layers.", + usage = "background.acrylic.base" + ), + ColorInfo( + color = FluentTheme.colors.background.acrylic.default, + contentColor = FluentTheme.colors.text.text.primary, + name = "Default", + explanation = "Default acrylic recipe used for control flyouts and surfaces that live with in the context of an app.", + usage = "background.acrylic.default" + ) + ) + ) + + ColorSection( + section = "Accent Acrylic Background", + description = "Acrylic background colors to place layers, cards, or controls on.", + sample = { + WindowLayer( + color = FluentTheme.colors.background.accentAcrylic.default + ) + }, + group = arrayOf( + ColorInfo( + color = FluentTheme.colors.background.accentAcrylic.base, + contentColor = FluentTheme.colors.text.text.primary, + name = "Base", + explanation = "Used for the bottom most layer of an acrylic surface only when the surface will use layers.", + usage = "background.accentAcrylic.base" + ), + ColorInfo( + color = FluentTheme.colors.background.accentAcrylic.default, + contentColor = FluentTheme.colors.text.text.primary, + name = "Default", + explanation = "Default acrylic recipe used for control flyouts and surfaces that live with in the context of an app.", + usage = "background.accentAcrylic.default" + ) + ) + ) +} + +@Composable +private fun SignalColorPage() { + ColorSection( + section = "System", + description = "Used for accent fills on controls", + sample = { + InfoBar( + title = { Text("Title") }, + message = { Text("This is body text. Windows 11 is faster and more intuitive.") }, + severity = InfoBarSeverity.Critical + ) + }, + groups = arrayOf( + arrayOf( + ColorInfo( + color = FluentTheme.colors.system.success, + contentColor = FluentTheme.colors.text.onAccent.primary, + name = "Success", + explanation = "Badge", + usage = "system.success", + showSeparator = false + ), + ColorInfo( + color = FluentTheme.colors.system.caution, + contentColor = FluentTheme.colors.text.onAccent.primary, + name = "Caution", + explanation = "Badge", + usage = "system.caution", + showSeparator = false + ), + ColorInfo( + color = FluentTheme.colors.system.critical, + contentColor = FluentTheme.colors.text.onAccent.primary, + name = "Critical", + explanation = "Badge", + usage = "system.critical", + showSeparator = false + ) + ), + arrayOf( + ColorInfo( + color = FluentTheme.colors.system.successBackground, + contentColor = FluentTheme.colors.text.text.primary, + name = "Success Background", + explanation = "Infobar Background", + usage = "system.successBackground", + showSeparator = false + ), + ColorInfo( + color = FluentTheme.colors.system.cautionBackground, + contentColor = FluentTheme.colors.text.text.primary, + name = "Caution Background", + explanation = "Infobar Background", + usage = "system.cautionBackground", + showSeparator = false + ), + ColorInfo( + color = FluentTheme.colors.system.criticalBackground, + contentColor = FluentTheme.colors.text.text.primary, + name = "Critical Background", + explanation = "Infobar Background", + usage = "system.criticalBackground", + showSeparator = false + ) + ), + arrayOf( + ColorInfo( + color = FluentTheme.colors.system.attention, + contentColor = FluentTheme.colors.text.onAccent.primary, + name = "Attention", + explanation = "Badge", + usage = "system.attention", + showSeparator = false + ), + ColorInfo( + color = FluentTheme.colors.system.neutral, + contentColor = FluentTheme.colors.text.onAccent.primary, + name = "Neutral", + explanation = "Badge", + usage = "system.neutral" + ), + ColorInfo( + color = FluentTheme.colors.system.solidNeutral, + contentColor = FluentTheme.colors.text.onAccent.primary, + name = "Solid Neutral", + explanation = "Neutral badges over content", + usage = "system.solidNeutral" + ) + ), + arrayOf( + ColorInfo( + color = FluentTheme.colors.system.attentionBackground, + contentColor = FluentTheme.colors.text.text.primary, + name = "Attention Background", + explanation = "Infobar Background", + usage = "system.attentionBackground" + ), + ColorInfo( + color = FluentTheme.colors.system.neutralBackground, + contentColor = FluentTheme.colors.text.text.primary, + name = "Neutral Background", + explanation = "Infobar Background", + usage = "system.neutralBackground" + ), + ColorInfo( + color = FluentTheme.colors.system.solidNeutralBackground, + contentColor = FluentTheme.colors.text.text.primary, + name = "Solid Neutral Background", + explanation = "Neutral badges over content", + usage = "system.solidNeutralBackground" + ) + ), + arrayOf( + ColorInfo( + color = FluentTheme.colors.system.solidAttentionBackground, + contentColor = FluentTheme.colors.text.text.primary, + name = "Solid Attention Background", + explanation = "", + usage = "system.solidAttentionBackground", + showSeparator = false + ) + ) + ) + ) +} + +@Composable +private fun ColorPage(content: @Composable ColumnScope.() -> Unit) { + Column( + verticalArrangement = Arrangement.spacedBy(16.dp), + modifier = Modifier.fillMaxWidth(), + content = content + ) +} + +@Composable +private fun ColorSection( + section: String, + description: String, + sample: @Composable () -> Unit, + color: Color = FluentTheme.colors.background.solid.quaternary, + contentColor: Color = FluentTheme.colors.text.text.primary, + header: String = section, + group: Array, +) { + ColorSection( + section = section, + description = description, + sample = sample, + color = color, + contentColor = contentColor, + header = header, + groups = arrayOf(group) + ) +} + +@Composable +private fun ColorSection( + section: String, + description: String, + sample: @Composable () -> Unit, + color: Color = FluentTheme.colors.background.solid.quaternary, + contentColor: Color = FluentTheme.colors.text.text.primary, + header: String = section, + vararg groups: Array, +) { + Column( + verticalArrangement = Arrangement.spacedBy(12.dp), + ) { + ColorHeader( + section = section, + description = description, + color = color, + contentColor = contentColor, + sample = sample + ) + + groups.forEach { group -> + ColorGroup(header, group) + } + } +} + +@Composable +private fun ColorHeader( + section: String, + description: String, + color: Color, + contentColor: Color, + sample: @Composable () -> Unit +) { + Layer( + color = color, + contentColor = contentColor, + shape = FluentTheme.shapes.overlay, + backgroundSizing = BackgroundSizing.InnerBorderEdge, + modifier = Modifier.padding(top = 24.dp) + ) { + Column( + verticalArrangement = Arrangement.spacedBy(12.dp), + modifier = Modifier.padding(12.dp).fillMaxWidth() + ) { + Text( + text = section, + style = FluentTheme.typography.subtitle + ) + Text( + text = description, + style = FluentTheme.typography.caption + ) + Box(modifier = Modifier.align(Alignment.CenterHorizontally)) { + sample() + } + } + } +} + +@OptIn(ExperimentalStdlibApi::class) +@Composable +private fun ColorGroup(section: String, colorInfoItems: Array) { + + Layer( + color = FluentTheme.colors.background.solid.quaternary, + shape = FluentTheme.shapes.overlay, + clipContent = true, + backgroundSizing = BackgroundSizing.InnerBorderEdge + ) { + Row(modifier = Modifier.height(IntrinsicSize.Min)) { + colorInfoItems.forEachIndexed { index, colorInfo -> + val showSeparator = colorInfo.showSeparator && index < colorInfoItems.size - 1 + + Layer( + border = null, + shape = FluentTheme.shapes.intersectionEdge, + color = colorInfo.color, + contentColor = colorInfo.contentColor, + backgroundSizing = BackgroundSizing.InnerBorderEdge, + modifier = Modifier + .fillMaxHeight() + .weight(1f) + .then( + if (colorInfo.backgroundBrush != null) { + Modifier.background(colorInfo.backgroundBrush) + } else { + Modifier + } + ) + ) { + val usage = "FluentTheme.colors.${colorInfo.usage}" + Box(modifier = Modifier.padding(12.dp)) { + Column( + modifier = Modifier.fillMaxWidth() + ) { + Text( + text = "${colorInfo.header ?: section} / ${colorInfo.name}", + style = FluentTheme.typography.bodyStrong, + modifier = Modifier.padding(end = 48.dp, bottom = 4.dp) + ) + Text( + text = colorInfo.explanation, + style = FluentTheme.typography.caption + ) + Spacer(modifier = Modifier.height(42.dp)) + Spacer(modifier = Modifier.weight(1f)) + Text( + text = usage, + style = FluentTheme.typography.caption + ) + + val shades = FluentTheme.colors.shades + + val colorValue = + colorInfo.colorValue ?: remember(colorInfo.color, shades) { + val colorValueType = when (colorInfo.color.copy(1f)) { + shades.light1 -> "Light 1" + shades.light2 -> "Light 2" + shades.light3 -> "Light 3" + shades.dark1 -> "Dark 1" + shades.dark2 -> "Dark 2" + shades.dark3 -> "Dark 3" + shades.base -> "Accent Base" + else -> null + }?.plus(", ") ?: "" + val formatString = colorInfo.color.value.toHexString(hexFormat) + val alpha = formatString.take(2) + val color = formatString.drop(2).take(6) + val alphaPercent = + (colorInfo.color.alpha * 100f).toString().let { + val dotIndex = it.indexOf(".") + val result = it.take(dotIndex + 3) + if (result.endsWith(".0")) { + result.dropLast(2) + } else { + result + } + } + "$colorValueType#$color ($alpha, $alphaPercent%)" + } + Text( + text = colorValue, + style = FluentTheme.typography.caption + ) + } + + CopyButton( + copyData = usage, + modifier = Modifier.align(Alignment.TopEnd), + colors = CopyButtonColor(colorInfo.contentColor) + ) + } + } + if (showSeparator) { + Spacer( + modifier = Modifier + .fillMaxHeight() + .width(1.dp) + .background(FluentTheme.colors.stroke.card.default) + ) + } + } + } + } +} + +enum class ColorPage { + Text, + Fill, + Stroke, + Background, + Signal, + //TODO High Contrast +} + +data class ColorInfo( + val color: Color, + val contentColor: Color, + val name: String, + val explanation: String, + val usage: String, + val showSeparator: Boolean = true, + val backgroundBrush: Brush? = null, + val colorValue: String? = null, + val header: String? = null +) + +@OptIn(ExperimentalStdlibApi::class) +private val hexFormat by lazy { + HexFormat { + upperCase = true + number { + removeLeadingZeros = false + } + } +} + +@Composable +@Stable +private fun CopyButtonColor( + contentColor: Color +): ButtonColorScheme { + val default = ButtonColor( + fillColor = Color.White.copy(0f), + contentColor = contentColor, + borderBrush = SolidColor(Color.Transparent) + ) + val pressed = ButtonColor( + fillColor = FluentTheme.colors.control.tertiary, + contentColor = contentColor, + borderBrush = SolidColor(FluentTheme.colors.stroke.control.default) + ) + return PentaVisualScheme( + default = default, + hovered = default.copy( + fillColor = FluentTheme.colors.control.secondary, + borderBrush = FluentTheme.colors.borders.control + ), + pressed = pressed, + disabled = pressed.copy( + fillColor = FluentTheme.colors.control.disabled, + contentColor = FluentTheme.colors.text.text.disabled, + ) + ) +} + +@Composable +private fun WindowLayer( + color: Color, + content: @Composable () -> Unit = {} +) { + Layer( + color = color, + border = BorderStroke(1.dp, FluentTheme.colors.stroke.surface.default), + content = content, + modifier = Modifier.size(120.dp, 40.dp), + shape = FluentTheme.shapes.overlay, + clipContent = true, + backgroundSizing = BackgroundSizing.InnerBorderEdge, + elevation = 128.dp + ) +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/design/ElevationScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/design/ElevationScreen.kt new file mode 100644 index 00000000..bde35e44 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/design/ElevationScreen.kt @@ -0,0 +1,142 @@ +package io.github.composefluent.gallery.screen.design + +import androidx.compose.foundation.BorderStroke +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.layout.width +import androidx.compose.foundation.layout.wrapContentSize +import androidx.compose.foundation.layout.wrapContentWidth +import androidx.compose.foundation.shape.CircleShape +import androidx.compose.runtime.Composable +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.Shape +import androidx.compose.ui.text.style.TextAlign +import androidx.compose.ui.unit.Dp +import androidx.compose.ui.unit.dp +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.FluentTheme +import io.github.composefluent.FluentThemeConfiguration +import io.github.composefluent.background.BackgroundSizing +import io.github.composefluent.background.ElevationDefaults +import io.github.composefluent.background.Layer +import io.github.composefluent.component.Slider +import io.github.composefluent.component.Text +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.source.generated.FluentSourceFile + +@OptIn(ExperimentalFluentApi::class) +@Component(index = 0, icon = "Layer") +@Composable +fun ElevationScreen() { + GalleryPage( + title = "Elevation", + description = "Creating a visual hierarchy of elements in your UI makes the UI easy to scan and conveys what is important to focus on. " + + "Elevation, the act of bringing select elements of your UI forward, is often used to achieve hierarchy.", + componentPath = FluentSourceFile.Elevation, + galleryPath = ComponentPagePath.ElevationScreen, + ) { + Section { + Column(verticalArrangement = Arrangement.spacedBy(8.dp)) { + Text("Elevation types", style = FluentTheme.typography.bodyStrong) + FluentThemeConfiguration { + Layer( + border = null, + color = Color.Transparent, + backgroundSizing = BackgroundSizing.OuterBorderEdge, + ) { + Row( + horizontalArrangement = Arrangement.spacedBy(8.dp) + ) { + val items = listOf( + ElevationDefaults::layer.name to ElevationDefaults.layer, + ElevationDefaults::control.name to ElevationDefaults.control, + ElevationDefaults::cardRest.name to ElevationDefaults.cardRest, + ElevationDefaults::tooltip.name to ElevationDefaults.tooltip, + ElevationDefaults::flyout.name to ElevationDefaults.flyout, + ElevationDefaults::dialog.name to ElevationDefaults.dialog + ) + items.forEach { (name, elevation) -> + Column( + modifier = Modifier.weight(1f) + .wrapContentWidth(Alignment.Start), + horizontalAlignment = Alignment.CenterHorizontally + ) { + Text(name.replaceFirstChar { it.uppercase() }) + ElevationBoxSample( + elevation = elevation, + modifier = Modifier.padding(vertical = 8.dp) + .padding(bottom = 56.dp) + ) + } + } + + } + } + } + } + } + val elevation = remember { mutableStateOf(0) } + Section( + title = "Basic Elevation", + sourceCode = sourceCodeOfElevationBoxSample, + content = { + Box(modifier = Modifier.size(200.dp), contentAlignment = Alignment.Center) { + ElevationBoxSample(elevation.value.dp) + } + }, + options = { + Slider( + value = elevation.value.toFloat(), + onValueChange = { elevation.value = it.toInt() }, + valueRange = 0f..128f, + modifier = Modifier.height(32.dp).width(200.dp) + ) + } + ) + } +} + +@Sample +@Composable +private fun ElevationBoxSample( + elevation: Dp, + modifier: Modifier = Modifier, + shape: Shape = CircleShape +) { + Layer( + backgroundSizing = BackgroundSizing.InnerBorderEdge, + border = BorderStroke( + width = 1.dp, + color = when { + elevation.value > 2f -> FluentTheme.colors.stroke.surface.flyout + elevation.value in 0f..1f -> FluentTheme.colors.stroke.card.default + else -> Color.Transparent + } + ), + color = FluentTheme.colors.background.solid.quaternary, + shape = shape, + elevation = elevation, + modifier = modifier + ) { + Text( + text = "depth\n${elevation.value.toInt()}", + textAlign = TextAlign.Center, + color = FluentTheme.colors.text.text.secondary, + modifier = Modifier.size(boxSize).wrapContentSize(Alignment.Center) + ) + } +} + +private val boxSize = 80.dp \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/design/GeometryScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/design/GeometryScreen.kt new file mode 100644 index 00000000..57a12126 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/design/GeometryScreen.kt @@ -0,0 +1,208 @@ +package io.github.composefluent.gallery.screen.design + +import androidx.compose.foundation.background +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.shape.RoundedCornerShape +import androidx.compose.runtime.Composable +import androidx.compose.runtime.Stable +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Shape +import androidx.compose.ui.unit.Dp +import androidx.compose.ui.unit.dp +import io.github.composefluent.FluentTheme +import io.github.composefluent.LocalContentColor +import io.github.composefluent.component.Text +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.CopyButton +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.gallery.component.HeaderItemRow +import io.github.composefluent.gallery.component.ItemRow +import io.github.composefluent.source.generated.FluentSourceFile + +@Component(index = 1, icon = "Shapes") +@Composable +fun GeometryScreen() { + GalleryPage( + title = "Geometry", + description = "Geometry describes the shape, size and position of Ul elements on screen. " + + "These fundamental design elements help experiences feel coherent across the entire design system. " + + "Fluent Design System uses three levels of rounding depending on" + + "component is being rounded and how that component is aranged relative to neighboring elements.", + componentPath = FluentSourceFile.Geometry, + galleryPath = ComponentPagePath.GeometryScreen + ) { + + Section( + title = "Corner Radius", + sourceCode = sourceCodeOfCornerRadiusSample, + content = { CornerRadiusItems() } + ) + + Section( + title = "Shapes", + sourceCode = sourceCodeOfShapesSample, + content = { ShapesItems() } + ) + } +} + +@Sample +@Composable +private fun CornerRadiusSample() { + Column { + Box(shape = RoundedCornerShape(topStart = FluentTheme.cornerRadius.overlay)) + Box(shape = RoundedCornerShape(topStart = FluentTheme.cornerRadius.control)) + Box(shape = RoundedCornerShape(topStart = FluentTheme.cornerRadius.intersectionEdge)) + } +} + +@Sample +@Composable +private fun ShapesSample() { + Column { + Box(shape = FluentTheme.shapes.overlay) + Box(shape = FluentTheme.shapes.control) + Box(shape = FluentTheme.shapes.intersectionEdge) + } +} + +@Composable +private fun Box(shape: Shape) { + Box( + modifier = Modifier.size(20.dp).background( + color = FluentTheme.colors.fillAccent.default, + shape = shape + ) + ) +} + +@Composable +private fun CornerRadiusItems() { + Column { + HeaderItemRow( + text = "Corner Radius", + secondary = "Usage", + third = "Style", + fourth = "", + textWidth = textWidth, + secondaryWidth = secondaryWidth, + thirdWidth = thirdWidth + ) + CornerRadiusList().forEachIndexed { index, (property, value) -> + ItemRow( + text = { + Row(horizontalArrangement = Arrangement.spacedBy(12.dp)) { + Box(shape = RoundedCornerShape(topStart = value)) + Text("${value.value.toInt()}dp") + } + }, + secondary = { UsageText(value) }, + third = { + val content = "FluentTheme.cornerRadius.$property" + Row(verticalAlignment = Alignment.CenterVertically) { + Text( + text = content, + modifier = Modifier.weight(1f), + style = FluentTheme.typography.caption.copy(LocalContentColor.current) + ) + CopyButton(content) + } + }, + fourth = {}, + index = index + 1, + textWidth = textWidth, + secondaryWidth = secondaryWidth, + thirdWidth = thirdWidth + ) + } + } +} + +@Composable +fun ShapesItems() { + Column { + HeaderItemRow( + text = "Shape", + secondary = "Usage", + third = "Style", + fourth = "", + textWidth = textWidth, + secondaryWidth = secondaryWidth, + thirdWidth = thirdWidth + ) + ShapesList().forEachIndexed { index, (radius, property, value) -> + ItemRow( + text = { + Row(horizontalArrangement = Arrangement.spacedBy(12.dp)) { + Box(shape = value) + Text("${radius.value.toInt()}dp") + } + }, + secondary = { UsageText(radius) }, + third = { + val content = "FluentTheme.shapes.$property" + Row(verticalAlignment = Alignment.CenterVertically) { + Text( + text = content, + modifier = Modifier.weight(1f), + style = FluentTheme.typography.caption.copy(LocalContentColor.current) + ) + CopyButton(content) + } + }, + fourth = {}, + index = index + 1, + textWidth = textWidth, + secondaryWidth = secondaryWidth, + thirdWidth = thirdWidth + ) + } + } +} + +@Stable +@Composable +private fun CornerRadiusList(): List> { + val geometry = FluentTheme.cornerRadius + return listOf( + Pair( geometry::overlay.name, geometry.overlay), + Pair(geometry::control.name, geometry.control), + Pair(geometry::intersectionEdge.name, geometry.intersectionEdge) + ) +} + +@Stable +@Composable +private fun ShapesList(): List> { + val shapes = FluentTheme.shapes + val geometry = FluentTheme.cornerRadius + return listOf( + Triple(geometry.overlay, shapes::overlay.name, shapes.overlay), + Triple(geometry.control, shapes::control.name, shapes.control), + Triple(geometry.intersectionEdge, shapes::intersectionEdge.name, shapes.intersectionEdge) + ) +} + +@Composable +private fun UsageText(cornerRadius: Dp) { + Text( + text = when (cornerRadius) { + FluentTheme.cornerRadius.overlay -> "Top-level containers such as app windows, flyouts, cards and dialogs." + FluentTheme.cornerRadius.control -> "In-page elements such as controls and list backplates." + FluentTheme.cornerRadius.intersectionEdge -> "Straight edges that intersect with other straight edges." + else -> "" + }, + style = FluentTheme.typography.caption.copy(LocalContentColor.current) + ) +} + +private val textWidth = 120.dp +private val secondaryWidth = 400.dp +private val thirdWidth = 320.dp \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/design/IconsScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/design/IconsScreen.kt similarity index 80% rename from gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/design/IconsScreen.kt rename to gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/design/IconsScreen.kt index 370c1a0a..4c1da4f2 100644 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/design/IconsScreen.kt +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/design/IconsScreen.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.gallery.screen.design +package io.github.composefluent.gallery.screen.design import androidx.compose.foundation.ExperimentalFoundationApi import androidx.compose.foundation.background @@ -35,32 +35,32 @@ import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier import androidx.compose.ui.graphics.Color import androidx.compose.ui.graphics.RectangleShape -import androidx.compose.ui.graphics.SolidColor import androidx.compose.ui.graphics.vector.ImageVector import androidx.compose.ui.text.input.TextFieldValue import androidx.compose.ui.text.style.TextOverflow import androidx.compose.ui.unit.dp -import com.konyaco.fluent.ExperimentalFluentApi -import com.konyaco.fluent.FluentTheme -import com.konyaco.fluent.FluentThemeConfiguration -import com.konyaco.fluent.background.BackgroundSizing -import com.konyaco.fluent.background.Layer -import com.konyaco.fluent.component.Icon -import com.konyaco.fluent.component.RadioButton -import com.konyaco.fluent.component.ScrollbarContainer -import com.konyaco.fluent.component.Text -import com.konyaco.fluent.component.TextField -import com.konyaco.fluent.component.rememberScrollbarAdapter -import com.konyaco.fluent.gallery.annotation.Component -import com.konyaco.fluent.gallery.component.ComponentPagePath -import com.konyaco.fluent.gallery.component.CopyButton -import com.konyaco.fluent.gallery.component.GalleryPage -import com.konyaco.fluent.icons.Icons -import com.konyaco.fluent.source.generated.FluentSourceFile -import com.konyaco.fluent.source.generated.fluentIconCoreItems -import com.konyaco.fluent.source.generated.fluentIconExtendedItems -import com.konyaco.fluent.surface.Card -import com.konyaco.fluent.surface.CardDefaults +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.FluentTheme +import io.github.composefluent.FluentThemeConfiguration +import io.github.composefluent.background.BackgroundSizing +import io.github.composefluent.background.Layer +import io.github.composefluent.component.GridViewItem +import io.github.composefluent.component.GridViewItemColor +import io.github.composefluent.component.GridViewItemDefaults +import io.github.composefluent.component.Icon +import io.github.composefluent.component.RadioButton +import io.github.composefluent.component.ScrollbarContainer +import io.github.composefluent.component.Text +import io.github.composefluent.component.TextField +import io.github.composefluent.component.rememberScrollbarAdapter +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.CopyButton +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.icons.Icons +import io.github.composefluent.source.generated.FluentSourceFile +import io.github.composefluent.source.generated.fluentIconCoreItems +import io.github.composefluent.source.generated.fluentIconExtendedItems import kotlinx.coroutines.FlowPreview import kotlinx.coroutines.flow.combine import kotlinx.coroutines.flow.debounce @@ -144,21 +144,20 @@ fun IconsScreen() { adapter = adapter, modifier = Modifier.weight(1f).fillMaxHeight() ) { - val defaultColors = CardDefaults.cardColors() - val cardColors = defaultColors.copy( - default = defaultColors.default.copy( - borderBrush = SolidColor(Color.Transparent) - ), - hovered = defaultColors.hovered.copy( - borderBrush = SolidColor(Color.Transparent) - ), - pressed = defaultColors.pressed.copy( - borderBrush = SolidColor(Color.Transparent) - ), - focused = defaultColors.focused.copy( - borderBrush = defaultColors.default.borderBrush + + val selectedColors = GridViewItemDefaults.selectedColors( + default = GridViewItemColor( + borderColor = FluentTheme.colors.fillAccent.default, + backgroundColor = FluentTheme.colors.subtleFill.transparent ) ) + val defaultColors = GridViewItemDefaults.defaultColors( + hovered= GridViewItemColor( + borderColor = Color.Transparent, + backgroundColor = FluentTheme.colors.subtleFill.secondary + ), + ) + LazyVerticalGrid( state = listState, columns = GridCells.Adaptive(96.dp), @@ -173,20 +172,23 @@ fun IconsScreen() { key = { (name, _) -> name } ) { item -> val (name, icon) = item - val interactionSource = - remember { MutableInteractionSource() } - Card( - onClick = { - selectedItem.value = item - }, - cardColors = if (selectedItem.value == item) { - defaultColors + val interactionSource = remember { MutableInteractionSource() } + GridViewItem( + selected = selectedItem.value == item, + onSelectedChange = { selectedItem.value = item }, + interactionSource = interactionSource, + colors = if (selectedItem.value == item) { + selectedColors } else { - cardColors + defaultColors }, - interactionSource = interactionSource, - modifier = Modifier.fillMaxWidth() + modifier = Modifier + .fillMaxWidth() .aspectRatio(1f) + .background( + color = FluentTheme.colors.background.card.default, + shape = FluentTheme.shapes.control + ) ) { val isHovered by interactionSource.collectIsHoveredAsState() Box( @@ -216,7 +218,6 @@ fun IconsScreen() { ) ) } - } } } @@ -238,9 +239,9 @@ fun IconsScreen() { val item = selectedItem.value ?: return@board val isCore = iconCoreSet.value.contains(item) val packageName = if (isCore) { - "com.konyaco:fluent-icons-core" + "io.github.compose-fluent:fluent-icons-core" } else { - "com.konyaco:fluent-icons-extended" + "io.github.compose-fluent:fluent-icons-extended" } Column( verticalArrangement = Arrangement.spacedBy(12.dp), diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/design/TypographyScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/design/TypographyScreen.kt new file mode 100644 index 00000000..b802ab19 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/design/TypographyScreen.kt @@ -0,0 +1,142 @@ +@file:OptIn(ExperimentalTextApi::class) + +package io.github.composefluent.gallery.screen.design + +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.width +import androidx.compose.runtime.Composable +import androidx.compose.runtime.Stable +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.text.AnnotatedString +import androidx.compose.ui.text.ExperimentalTextApi +import androidx.compose.ui.text.LinkAnnotation +import androidx.compose.ui.text.SpanStyle +import androidx.compose.ui.text.TextStyle +import androidx.compose.ui.text.buildAnnotatedString +import androidx.compose.ui.text.font.FontWeight +import androidx.compose.ui.text.style.TextDecoration +import androidx.compose.ui.text.withLink +import androidx.compose.ui.unit.dp +import io.github.composefluent.FluentTheme +import io.github.composefluent.component.Text +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.CopyButton +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.gallery.component.HeaderItemRow +import io.github.composefluent.gallery.component.ItemRow +import io.github.composefluent.source.generated.FluentSourceFile + +@OptIn(ExperimentalTextApi::class) +@Component(index = 1, icon = "TextFont") +@Composable +fun TypographyScreen() { + val linkTextColor = FluentTheme.colors.text.accent.primary + GalleryPage( + title = AnnotatedString("Typography"), + description = buildAnnotatedString { + append("Type helps provide structure and hierarchy to UI. ") + append("The default font for Windows is ") + withLink(LinkAnnotation.Url("https://learn.microsoft.com/zh-cn/windows/apps/design/downloads/#fonts")) { + append( + AnnotatedString( + "Segoe UI Variable", + spanStyle = SpanStyle( + color = linkTextColor, + textDecoration = TextDecoration.Underline + ) + ) + ) + } + append(". ") + append("Best practice is to use Regular weight for most text, use Semibold for titles. ") + append("The minimum values should be 12px Regular, 14px Semibold.") + }, + componentPath = FluentSourceFile.Typography, + galleryPath = ComponentPagePath.TypographyScreen + ) { + Section( + title = "Type ramp", + sourceCode = sourceCodeOfBasicTypographySample, + content = { + TypographySample() + } + ) + } +} + +@Sample +@Composable +private fun BasicTypographySample() { + Column { + Text("Caption", style = FluentTheme.typography.caption) + Text("Body", style = FluentTheme.typography.body) + Text("Body Strong", style = FluentTheme.typography.bodyStrong) + Text("Subtitle", style = FluentTheme.typography.subtitle) + Text("Title", style = FluentTheme.typography.title) + Text("Title Large", style = FluentTheme.typography.titleLarge) + Text("Display", style = FluentTheme.typography.display) + } +} + +@Composable +private fun TypographySample() { + Column { + HeaderItemRow( + text = "Example", + secondary = "Variable Font", + third = "Size/Line height", + fourth = "Style" + ) + typographyList().forEachIndexed { index, (name, property, style) -> + ItemRow( + text = { Text(text = name, style = style) }, + secondary = { + Text( + text = when (style.fontWeight) { + FontWeight.Normal -> "Regular" + FontWeight.SemiBold -> "Semibold" + else -> "" + }, + style = FluentTheme.typography.caption + ) + }, + third = { + Text( + text = "${style.fontSize.value.toInt()}/${style.lineHeight.value.toInt()} sp", + style = FluentTheme.typography.caption + ) + }, + fourth = { + val content = "FluentTheme.typography.$property" + Row(verticalAlignment = Alignment.CenterVertically) { + Text( + text = content, + modifier = Modifier.width(240.dp) + ) + CopyButton(content) + } + }, + index = index + 1 + ) + } + } +} + +@Stable +@Composable +private fun typographyList(): List> { + val typography = FluentTheme.typography + return listOf( + Triple("Caption", typography::caption.name, typography.caption), + Triple("Body", typography::body.name, typography.body), + Triple("Body Strong", typography::bodyStrong.name, typography.bodyStrong), + Triple("Subtitle", typography::subtitle.name, typography.subtitle), + Triple("Title", typography::title.name, typography.title), + Triple("Title Large", typography::titleLarge.name, typography.titleLarge), + Triple("Display", typography::display.name, typography.display) + ) +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/dialogs/ContentDialogScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/dialogs/ContentDialogScreen.kt similarity index 82% rename from gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/dialogs/ContentDialogScreen.kt rename to gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/dialogs/ContentDialogScreen.kt index 6d6e4b8b..96ec48c3 100644 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/dialogs/ContentDialogScreen.kt +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/dialogs/ContentDialogScreen.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.gallery.screen.dialogs +package io.github.composefluent.gallery.screen.dialogs import androidx.compose.runtime.Composable import androidx.compose.runtime.getValue @@ -6,16 +6,16 @@ import androidx.compose.runtime.mutableStateOf import androidx.compose.runtime.remember import androidx.compose.runtime.rememberCoroutineScope import androidx.compose.runtime.setValue -import com.konyaco.fluent.component.Button -import com.konyaco.fluent.component.ContentDialog -import com.konyaco.fluent.component.DialogSize -import com.konyaco.fluent.component.LocalContentDialog -import com.konyaco.fluent.component.Text -import com.konyaco.fluent.gallery.annotation.Component -import com.konyaco.fluent.gallery.annotation.Sample -import com.konyaco.fluent.gallery.component.ComponentPagePath -import com.konyaco.fluent.gallery.component.GalleryPage -import com.konyaco.fluent.source.generated.FluentSourceFile +import io.github.composefluent.component.Button +import io.github.composefluent.component.ContentDialog +import io.github.composefluent.component.DialogSize +import io.github.composefluent.component.LocalContentDialog +import io.github.composefluent.component.Text +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.source.generated.FluentSourceFile import kotlinx.coroutines.launch @Component(index = 0, description = "A dialog box that can be customized to contain any content.") diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/dialogs/FlyoutScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/dialogs/FlyoutScreen.kt new file mode 100644 index 00000000..356f0b64 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/dialogs/FlyoutScreen.kt @@ -0,0 +1,65 @@ +package io.github.composefluent.gallery.screen.dialogs + +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.padding +import androidx.compose.runtime.Composable +import androidx.compose.ui.Modifier +import androidx.compose.ui.unit.dp +import io.github.composefluent.FluentTheme +import io.github.composefluent.component.Button +import io.github.composefluent.component.FlyoutContainer +import io.github.composefluent.component.Text +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.source.generated.FluentSourceFile + +@Component(description = "Shows contextual information and enables user interaction.") +@Composable +fun FlyoutScreen() { + GalleryPage( + title = "Flyout", + description = "A Flyout displays lightweight UI that is either information, " + + "or requires user interaction. Unlike a dialog, a Flyout can be light dismissed by clicking or tapping off of it. " + + "Use it to collect input from the user, show more details about an item, or ask the user to confirm an action.", + componentPath = FluentSourceFile.Flyout, + galleryPath = ComponentPagePath.FlyoutScreen + ) { + Section( + title = "A button with flyout", + sourceCode = sourceCodeOfBasicFlyoutSample, + content = { BasicFlyoutSample() } + ) + } +} + +@Sample +@Composable +private fun BasicFlyoutSample() { + FlyoutContainer( + flyout = { + Column { + Text( + text = "All items will be removed. Do you want to continue?", + style = FluentTheme.typography.bodyStrong, + modifier = Modifier.padding(bottom = 12.dp) + ) + Button( + onClick = { isFlyoutVisible = false }, + content = { + Text("Yes, empty my cart") + } + ) + } + }, + content = { + Button( + onClick = { isFlyoutVisible = !isFlyoutVisible }, + content = { + Text("Empty cart") + } + ) + } + ) +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/menus/CommandBarFlyoutScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/menus/CommandBarFlyoutScreen.kt new file mode 100644 index 00000000..478b8f53 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/menus/CommandBarFlyoutScreen.kt @@ -0,0 +1,229 @@ +package io.github.composefluent.gallery.screen.menus + +import androidx.compose.foundation.Image +import androidx.compose.foundation.clickable +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.size +import androidx.compose.runtime.Composable +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.ui.Modifier +import androidx.compose.ui.unit.dp +import io.github.composefluent.component.CommandBarFlyout +import io.github.composefluent.component.CommandBarButton +import io.github.composefluent.component.FlyoutPlacement +import io.github.composefluent.component.Icon +import io.github.composefluent.component.LargeCommandBarFlyout +import io.github.composefluent.component.ListItem +import io.github.composefluent.component.MenuFlyoutItem +import io.github.composefluent.component.MenuFlyoutScope +import io.github.composefluent.component.MenuFlyoutSeparator +import io.github.composefluent.component.SubtleButton +import io.github.composefluent.component.Text +import io.github.composefluent.component.commandBarIconButtonSize +import io.github.composefluent.component.rememberFlyoutPositionProvider +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.regular.ArrowMove +import io.github.composefluent.icons.regular.Delete +import io.github.composefluent.icons.regular.Resize +import io.github.composefluent.icons.regular.Save +import io.github.composefluent.icons.regular.Share +import io.github.composefluent.layout.overflow.OverflowRowScope +import io.github.composefluent.source.generated.FluentSourceFile +import fluentdesign.gallery.generated.resources.Res +import fluentdesign.gallery.generated.resources.banner +import org.jetbrains.compose.resources.painterResource + +@Component(description = "A mini-toolbar displaying proactive commands" + + "and an optional menu of commands.") +@Composable +fun CommandBarFlyoutScreen() { + GalleryPage( + title = "CommandBarFlyout", + description = "A mini-toolbar which displays a set of proactive commands, as well as a secondary menu of commands if desired.", + componentPath = FluentSourceFile.CommandBarFlyout, + galleryPath = ComponentPagePath.CommandBarFlyoutScreen + ) { + Section( + title = "Basic CommandBarFlyout", + sourceCode = sourceCodeOfBasicCommandBarFlyoutSample, + content = { BasicCommandBarFlyoutSample() } + ) + Section( + title = "Large CommandBarFlyout", + sourceCode = sourceCodeOfLargeCommandBarFlyoutSample, + content = { LargeCommandBarFlyoutSample() } + ) + } +} + +@Sample +@Composable +private fun BasicCommandBarFlyoutSample() { + val (visible, setVisible) = remember { mutableStateOf(false) } + val (expanded, setExpanded) = remember { mutableStateOf(false) } + Column { + Text("Click the image to open the flyout") + Image( + painter = painterResource(Res.drawable.banner), + contentDescription = null, + modifier = Modifier.size(100.dp) + .clickable( + onClick = { setVisible(true) }, + indication = null, + interactionSource = remember { MutableInteractionSource() } + ) + ) + } + CommandBarFlyout( + visible = visible, + onDismissRequest = { setVisible(false) }, + expanded = expanded, + onExpandedChanged = setExpanded, + positionProvider = rememberFlyoutPositionProvider(FlyoutPlacement.BottomAlignedStart), + secondary = { hasOverFlowItem -> + secondaryItems(hasOverFlowItem) { setExpanded(false) } + } + ) { + items( + isLarge = false, + onClick = { isOverflow, index -> + if (isOverflow) { + setExpanded(false) + } + } + ) + } +} + +@Sample +@Composable +private fun LargeCommandBarFlyoutSample() { + val (visible, setVisible) = remember { mutableStateOf(false) } + val (expanded, setExpanded) = remember { mutableStateOf(false) } + Column { + Text("Click the image to open the flyout") + Image( + painter = painterResource(Res.drawable.banner), + contentDescription = null, + modifier = Modifier.size(100.dp) + .clickable( + onClick = { setVisible(true) }, + indication = null, + interactionSource = remember { MutableInteractionSource() } + ) + ) + } + LargeCommandBarFlyout( + visible = visible, + onDismissRequest = { setVisible(false) }, + expanded = expanded, + onExpandedChanged = setExpanded, + positionProvider = rememberFlyoutPositionProvider(FlyoutPlacement.BottomAlignedStart), + secondary = { hasOverFlowItem -> + secondaryItems(hasOverFlowItem) { setExpanded(false) } + } + ) { + items( + isLarge = true, + onClick = { isOverflow, index -> + if (isOverflow) { + setExpanded(false) + } + } + ) + } + +} + +@Composable +private fun MenuFlyoutScope.secondaryItems(hasOverFlowItem: Boolean, onClick: () -> Unit) { + if (hasOverFlowItem) { + MenuFlyoutSeparator() + } + MenuFlyoutItem( + text = { Text("Resize") }, + icon = { Icon(imageVector = Icons.Default.Resize, contentDescription = null) }, + onClick = onClick + ) + MenuFlyoutItem( + text = { Text("Move") }, + icon = { Icon(imageVector = Icons.Default.ArrowMove, contentDescription = null) }, + onClick = onClick + ) +} + +private fun OverflowRowScope.items(isLarge: Boolean, onClick: (isOverflow: Boolean, index: Int) -> Unit) { + items(3) { + if (!isOverflow) { + if (isLarge) { + CommandBarButton( + onClick = { onClick(isOverflow, it) }, + content = { + Icon( + imageVector = when (it) { + 0 -> Icons.Default.Share + 1 -> Icons.Default.Save + else -> Icons.Default.Delete + }, + contentDescription = null + ) + Text( + text = when (it) { + 0 -> "Share" + 1 -> "Save" + else -> "Delete" + } + ) + } + ) + } else { + SubtleButton( + onClick = { onClick(isOverflow, it) }, + content = { + Icon( + imageVector = when (it) { + 0 -> Icons.Default.Share + 1 -> Icons.Default.Save + else -> Icons.Default.Delete + }, + contentDescription = null + ) + }, + iconOnly = true, + modifier = Modifier.commandBarIconButtonSize() + ) + } + } else { + ListItem( + onClick = { onClick(isOverflow, it) }, + text = { + + Text( + text = when (it) { + 0 -> "Share" + 1 -> "Save" + else -> "Delete" + } + ) + }, + icon = { + Icon( + imageVector = when (it) { + 0 -> Icons.Default.Share + 1 -> Icons.Default.Save + else -> Icons.Default.Delete + }, + contentDescription = null + ) + }, + trailing = {} + ) + } + } +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/menus/CommandBarScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/menus/CommandBarScreen.kt new file mode 100644 index 00000000..ed51e451 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/menus/CommandBarScreen.kt @@ -0,0 +1,215 @@ +package io.github.composefluent.gallery.screen.menus + +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.Row +import androidx.compose.runtime.Composable +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import io.github.composefluent.component.CommandBar +import io.github.composefluent.component.CommandBarSeparator +import io.github.composefluent.component.CommandBarButton +import io.github.composefluent.component.Icon +import io.github.composefluent.component.LargeCommandBar +import io.github.composefluent.component.ListItem +import io.github.composefluent.component.MenuFlyoutItem +import io.github.composefluent.component.MenuFlyoutSeparator +import io.github.composefluent.component.SubtleButton +import io.github.composefluent.component.Text +import io.github.composefluent.component.commandBarButtonSize +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.regular.Save +import io.github.composefluent.source.generated.FluentSourceFile + +@Component( + description = "A toolbar for displaying application-specific " + + "commands that handles layout and resizing of " + + "its contents." +) +@Composable +fun CommandBarScreen() { + GalleryPage( + title = "CommandBar", + description = "Command bars provide users with easy access to your app's most common tasks. " + + "Command bars can provide access to app-level or page-specific commands and can be used with any navigation pattern. " + + "By default, the command bar shows a row of icon buttons and an optional \"see more\" button, which is represented by an ellipsis [...].", + componentPath = FluentSourceFile.CommandBar, + galleryPath = ComponentPagePath.CommandBarScreen + ) { + Section( + title = "Basic CommandBar", + sourceCode = sourceCodeOfBasicCommandBarSample, + content = { BasicCommandBarSample() } + ) + + Section( + title = "Secondary CommandBar", + sourceCode = sourceCodeOfSecondaryCommandBarSample, + content = { SecondaryCommandBarSample() } + ) + + Section( + title = "Large CommandBar", + sourceCode = sourceCodeOfLargeCommandBarSample, + content = { LargeCommandBarSample() } + ) + } +} + +@Sample +@Composable +private fun BasicCommandBarSample() { + val (expanded, setExpanded) = remember { mutableStateOf(false) } + CommandBar( + expanded = expanded, + onExpandedChanged = setExpanded + ) { + items(8) { + if (isOverflow) { + Column { + ListItem( + onClick = { setExpanded(false) }, + text = { + Text("Item $it") + }, + icon = { + Icon(imageVector = Icons.Default.Save, contentDescription = null) + }, + trailing = { + Text("Ctrl + A") + } + ) + if (it == 3) { + MenuFlyoutSeparator() + } + } + } else { + Row(verticalAlignment = Alignment.CenterVertically) { + SubtleButton( + onClick = {}, + content = { + Icon(imageVector = Icons.Default.Save, contentDescription = null) + Text("Item $it") + }, + modifier = Modifier.commandBarButtonSize() + ) + if (it == 3) { + CommandBarSeparator() + } + } + } + } + } +} + +@Sample +@Composable +private fun SecondaryCommandBarSample() { + val (expanded, setExpanded) = remember { mutableStateOf(false) } + CommandBar( + expanded = expanded, + onExpandedChanged = setExpanded, + secondary = { hasOverFlowItem -> + if (hasOverFlowItem) { + MenuFlyoutSeparator() + } + repeat(3) { + MenuFlyoutItem( + onClick = { setExpanded(false) }, + text = { + Text("Secondary Item $it") + }, + icon = { + Icon(imageVector = Icons.Default.Save, contentDescription = null) + } + ) + } + } + ) { + items(4) { + if (isOverflow) { + ListItem( + onClick = { setExpanded(false) }, + text = { + Text("Item $it") + }, + icon = { + Icon(imageVector = Icons.Default.Save, contentDescription = null) + }, + trailing = { + Text("Ctrl + A") + } + ) + } else { + SubtleButton( + onClick = {}, + content = { + Icon(imageVector = Icons.Default.Save, contentDescription = null) + Text("Item $it") + }, + modifier = Modifier.commandBarButtonSize() + ) + } + } + } +} + +@Sample +@Composable +private fun LargeCommandBarSample() { + val (expanded, setExpanded) = remember { mutableStateOf(false) } + + LargeCommandBar( + expanded = expanded, + onExpandedChanged = setExpanded, + secondary = { hasOverFlowItem -> + if (hasOverFlowItem) { + MenuFlyoutSeparator() + } + + repeat(3) { + MenuFlyoutItem( + onClick = { setExpanded(false) }, + text = { + Text("Secondary Item $it") + + }, + icon = { + Icon(imageVector = Icons.Default.Save, contentDescription = null) + } + ) + } + }, + content = { + items(4) { + if (isOverflow) { + ListItem( + onClick = { setExpanded(false) }, + text = { + Text("Item $it") + }, + icon = { + Icon(imageVector = Icons.Default.Save, contentDescription = null) + }, + trailing = { + Text("Ctrl + A") + } + ) + } else { + CommandBarButton( + onClick = {}, + content = { + Icon(imageVector = Icons.Default.Save, contentDescription = null) + Text("Item $it") + } + ) + } + } + } + ) +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/menus/MenuBarScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/menus/MenuBarScreen.kt new file mode 100644 index 00000000..0e47e634 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/menus/MenuBarScreen.kt @@ -0,0 +1,258 @@ +package io.github.composefluent.gallery.screen.menus + +import androidx.compose.runtime.Composable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import io.github.composefluent.component.ListItemDefaults +import io.github.composefluent.component.ListItemSelectionType +import io.github.composefluent.component.MenuBar +import io.github.composefluent.component.MenuBarItem +import io.github.composefluent.component.MenuFlyoutItem +import io.github.composefluent.component.MenuFlyoutSeparator +import io.github.composefluent.component.OverflowMenuBar +import io.github.composefluent.component.Text +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.source.generated.FluentSourceFile + +@Component(description = "A classic menu, allowing the display of MenuItems containing MenuFlyoutItems") +@Composable +fun MenuBarScreen() { + GalleryPage( + title = "MenuBar", + description = "The MenuBar simplifies the creation of basic applications by providing a set of menus at the top of the app or window.", + componentPath = FluentSourceFile.MenuBar, + galleryPath = ComponentPagePath.MenuBarScreen, + ) { + Section( + title = "A simple MenuBar", + sourceCode = sourceCodeOfBasicMenuBarSample, + content = { BasicMenuBarSample() } + ) + + //TODO MenuBar with keyboard accelerator sample + + Section( + title = "A MenuBar with SubMenus, Separators and RadioItems", + sourceCode = sourceCodeOfMenuBarWithSubMenuSample, + content = { MenuBarWithSubMenuSample() } + ) + + Section( + title = "An Overflow MenuBar", + sourceCode = sourceCodeOfOverflowMenuBarSample, + content = { OverflowMenuBarSample() } + ) + } +} + +@Sample +@Composable +private fun BasicMenuBarSample() { + MenuBar { + MenuBarItem( + content = { Text("File") }, + items = { + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("New") } + ) + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("Open") } + ) + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("Save") } + ) + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("Exit") } + ) + }, + ) + + MenuBarItem( + content = { Text("Edit") }, + items = { + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("Undo") } + ) + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("Cut") } + ) + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("Copy") } + ) + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("Paste") } + ) + }, + ) + + MenuBarItem( + content = { Text("Help") }, + items = { + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("About") } + ) + } + ) + } +} + +@Sample +@Composable +private fun MenuBarWithSubMenuSample() { + MenuBar { + MenuBarItem( + content = { Text("File") }, + items = { + MenuFlyoutItem( + items = { + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("Plain Text Document") } + ) + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("Rich Text Document") } + ) + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("Other Formats") } + ) + }, + text = { Text("New") } + ) + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("Open") } + ) + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("Save") } + ) + MenuFlyoutSeparator() + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("Exit") } + ) + }, + ) + + MenuBarItem( + content = { Text("Edit") }, + items = { + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("Undo") } + ) + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("Cut") } + ) + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("Copy") } + ) + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("Paste") } + ) + }, + ) + var isLandscape by remember { mutableStateOf(false) } + + var iconIndex by remember { mutableStateOf(1) } + MenuBarItem( + content = { Text("View") }, + items = { + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("Output") }, + icon = {} + ) + MenuFlyoutSeparator() + + MenuFlyoutItem( + text = { Text("Landscape") }, + onSelectedChanged = { + isLandscape = true + isFlyoutVisible = false + }, + selected = isLandscape, + selectionType = ListItemSelectionType.Radio, + colors = ListItemDefaults.defaultListItemColors() + ) + MenuFlyoutItem( + text = { Text("Portrait") }, + onSelectedChanged = { + isLandscape = false + isFlyoutVisible = false + }, + selected = !isLandscape, + selectionType = ListItemSelectionType.Radio, + colors = ListItemDefaults.defaultListItemColors() + ) + MenuFlyoutSeparator() + repeat(3) { index -> + MenuFlyoutItem( + text = { + Text( + text = when(index) { + 0 -> "Small icons" + 1 -> "Medium icons" + else -> "Large icons" + } + ) + }, + selected = index == iconIndex, + onSelectedChanged = { iconIndex = index }, + selectionType = ListItemSelectionType.Radio, + colors = ListItemDefaults.defaultListItemColors() + ) + } + } + ) + + MenuBarItem( + content = { Text("Help") }, + items = { + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("About") } + ) + }, + ) + } +} + +@Sample +@Composable +private fun OverflowMenuBarSample() { + OverflowMenuBar { + items(16) { + MenuBarItem( + items = { + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("Menu Item 1") } + ) + }, + content = { + Text("Menu ${it + 1}") + } + ) + } + } +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/menus/MenuFlyoutScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/menus/MenuFlyoutScreen.kt new file mode 100644 index 00000000..6a48dbf1 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/menus/MenuFlyoutScreen.kt @@ -0,0 +1,335 @@ +package io.github.composefluent.gallery.screen.menus + +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.size +import androidx.compose.runtime.Composable +import androidx.compose.runtime.LaunchedEffect +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.input.key.Key +import androidx.compose.ui.input.key.isCtrlPressed +import androidx.compose.ui.input.key.isMetaPressed +import androidx.compose.ui.input.key.key +import androidx.compose.ui.unit.dp +import io.github.composefluent.component.Button +import io.github.composefluent.component.Icon +import io.github.composefluent.component.ListItemDefaults +import io.github.composefluent.component.ListItemSelectionType +import io.github.composefluent.component.MenuFlyoutContainer +import io.github.composefluent.component.MenuFlyoutItem +import io.github.composefluent.component.MenuFlyoutSeparator +import io.github.composefluent.component.SubtleButton +import io.github.composefluent.component.Text +import io.github.composefluent.component.commandBarButtonSize +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.regular.ArrowSort +import io.github.composefluent.icons.regular.ChevronRight +import io.github.composefluent.icons.regular.Copy +import io.github.composefluent.icons.regular.Delete +import io.github.composefluent.icons.regular.Share +import io.github.composefluent.source.generated.FluentSourceFile + +@Component(description = "Shows a contextual list of simple commands or options.") +@Composable +fun MenuFlyoutScreen() { + GalleryPage( + title = "MenuFlyout", + description = "A MenuFlyout displays lightweight UI that is light dismissed by clicking or tapping off of it. " + + "Use it to let the user choose from a contextual list of simple commands or options.", + componentPath = FluentSourceFile.MenuFlyout, + galleryPath = ComponentPagePath.MenuFlyoutScreen + ) { + Section( + title = "A CommandBarButton with MenuFlyout", + sourceCode = sourceCodeOfBasicMenuFlyoutSample, + content = { BasicMenuFlyoutSample() } + ) + + Section( + title = "A MenuFlyout with SelectableMenuFlyoutItems and MenuFlyoutSeparator", + sourceCode = sourceCodeOfSelectableMenuFlyoutSample, + content = { SelectableMenuFlyoutSample() } + ) + + Section( + title = "A MenuFlyout with Cascading menus.", + sourceCode = sourceCodeOfCascadingMenuFlyoutSample, + content = { CascadingMenuFlyoutSample() } + ) + + Section( + title = "A MenuFlyout with Icons.", + sourceCode = sourceCodeOfMenuFlyoutWithIconSample, + content = { MenuFlyoutWithIconSample() } + ) + + Section( + title = "A MenuFlyout with Keyboard Accelerators.", + sourceCode = sourceCodeOfMenuFlyoutWithKeyboardSample, + content = { MenuFlyoutWithKeyboardSample() } + ) + } +} + +@Sample +@Composable +private fun BasicMenuFlyoutSample() { + MenuFlyoutContainer( + flyout = { + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("By rating") } + ) + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("By match") } + ) + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("By distance") } + ) + }, + content = { + SubtleButton( + onClick = { isFlyoutVisible = !isFlyoutVisible }, + content = { + Row( + verticalAlignment = Alignment.CenterVertically, + horizontalArrangement = Arrangement.spacedBy(4.dp) + ) { + Icon(Icons.Default.ArrowSort, contentDescription = null) + Icon(Icons.Default.ChevronRight, contentDescription = null, modifier = Modifier.size(12.dp)) + } + }, + modifier = Modifier.commandBarButtonSize() + ) + } + + ) +} + +@Sample +@Composable +private fun SelectableMenuFlyoutSample() { + var resetKey by remember { mutableStateOf(0) } + val options = remember(resetKey) { + listOf( + "Repeat" to mutableStateOf(true), + "Shuffle" to mutableStateOf(true), + ) + } + MenuFlyoutContainer( + flyout = { + MenuFlyoutItem( + onClick = { + resetKey += 1 + isFlyoutVisible = false + }, + icon = { }, + text = { Text("Reset") } + ) + MenuFlyoutSeparator() + options.forEach { (name, state) -> + MenuFlyoutItem( + selected = state.value, + onSelectedChanged = { + state.value = it + isFlyoutVisible = false + }, + selectionType = ListItemSelectionType.Radio, + colors = ListItemDefaults.defaultListItemColors(), + text = { Text(name) } + ) + } + }, + content = { + Button( + onClick = { isFlyoutVisible = !isFlyoutVisible }, + content = { Text("Options") } + ) + } + ) +} + +@Sample +@Composable +private fun CascadingMenuFlyoutSample() { + MenuFlyoutContainer( + flyout = { + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("Open") }, + ) + MenuFlyoutItem( + text = { Text("Send to") }, + items = { + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("Bluetooth") } + ) + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("Desktop (shortcut)") } + ) + MenuFlyoutItem( + text = { Text("Compressed file") }, + items = { + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("Compress and email") } + ) + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("Compress to .7z") } + ) + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + text = { Text("Compress to .zip") } + ) + + } + ) + } + ) + }, + content = { + Button( + onClick = { isFlyoutVisible = !isFlyoutVisible }, + content = { Text("File Options") } + ) + } + ) +} + +@Sample +@Composable +private fun MenuFlyoutWithIconSample() { + MenuFlyoutContainer( + flyout = { + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + icon = { Icon(Icons.Default.Share, contentDescription = null) }, + text = { Text("Share") } + ) + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + icon = { Icon(Icons.Default.Copy, contentDescription = null) }, + text = { Text("Copy") } + ) + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + icon = { Icon(Icons.Default.Delete, contentDescription = null) }, + text = { Text("Delete") } + ) + MenuFlyoutSeparator() + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + icon = { }, + text = { Text("Rename") } + ) + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + icon = { }, + text = { Text("Select") } + ) + }, + content = { + Button( + onClick = { isFlyoutVisible = !isFlyoutVisible }, + content = { Text("Edit Options") } + ) + } + ) +} + +@Sample +@Composable +private fun MenuFlyoutWithKeyboardSample() { + val isMacOs = remember { isMacOs() } + var closeAction by remember { mutableStateOf({}) } + MenuFlyoutContainer( + onKeyEvent = { + val key = it.key + when(key) { + Key.C, Key.S, Key.Delete -> { + val accept = when { + Key.Delete == key -> true + isMacOs -> it.isMetaPressed + else -> it.isCtrlPressed + } + if (accept) { + closeAction() + true + } else { + false + } + } + + else -> false + } + }, + flyout = { + LaunchedEffect(this, closeAction) { + closeAction = { isFlyoutVisible = false } + } + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + icon = { Icon(Icons.Default.Share, contentDescription = null) }, + text = { Text("Share") }, + trailing = { + if (isMacOs) { + Text("⌘ S") + } else { + Text("Ctrl+S") + } + } + ) + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + icon = { Icon(Icons.Default.Copy, contentDescription = null) }, + text = { Text("Copy") }, + trailing = { + if (isMacOs) { + Text("⌘ C") + } else { + Text("Ctrl+C") + } + } + ) + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + icon = { Icon(Icons.Default.Delete, contentDescription = null) }, + text = { Text("Delete") }, + trailing = { Text("Delete") } + ) + MenuFlyoutSeparator() + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + icon = { }, + text = { Text("Rename") } + ) + MenuFlyoutItem( + onClick = { isFlyoutVisible = false }, + icon = { }, + text = { Text("Select") } + ) + }, + content = { + Button( + onClick = { isFlyoutVisible = !isFlyoutVisible }, + content = { Text("Edit Options") } + ) + } + ) +} + +expect fun isMacOs(): Boolean \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/navigation/BreadcrumbBarScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/navigation/BreadcrumbBarScreen.kt new file mode 100644 index 00000000..ad131c7d --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/navigation/BreadcrumbBarScreen.kt @@ -0,0 +1,120 @@ +package io.github.composefluent.gallery.screen.navigation + +import androidx.compose.foundation.layout.height +import androidx.compose.runtime.Composable +import androidx.compose.runtime.remember +import androidx.compose.ui.Modifier +import androidx.compose.ui.unit.dp +import io.github.composefluent.component.BreadcrumbBar +import io.github.composefluent.component.BreadcrumbBarDefaults +import io.github.composefluent.component.BreadcrumbBarItem +import io.github.composefluent.component.LargeBreadcrumbBarItem +import io.github.composefluent.component.OverflowBreadcrumbBarItem +import io.github.composefluent.component.Text +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.layout.overflow.OverflowFlyoutContainer +import io.github.composefluent.source.generated.FluentSourceFile + +@Component(description = "Shows the trail of navigation taken to the current location.") +@Composable +fun BreadcrumbBarScreen() { + GalleryPage( + title = "BreadcrumbBar", + description = "The BreadcrumbBar control provides a common horizontal layout " + + "to display the trail of navigation taken to the current location Resize " + + "to see the nodes crumble,starting at the root.", + componentPath = FluentSourceFile.BreadcrumbBar, + galleryPath = ComponentPagePath.BreadcrumbBarScreen + ) { + Section( + title = "Basic BreadcrumbBar", + sourceCode = sourceCodeOfBasicBreadcrumbBarSample, + content = { BasicBreadcrumbBarSample() } + ) + + Section( + title = "Large BreadcrumbBar", + sourceCode = sourceCodeOfLargeBreadcrumbBarSample, + content = { LargeBreadcrumbBarSample() } + ) + } +} + +@Sample +@Composable +private fun BasicBreadcrumbBarSample() { + val defaultItems = defaultItems() + BreadcrumbBar(modifier = Modifier.height(60.dp)) { + items(defaultItems.size) { + val item = defaultItems[it] + if (isOverflow) { + OverflowBreadcrumbBarItem( + onClick = { } + ) { + Text(item) + } + } else { + BreadcrumbBarItem( + onClick = {}, + content = { + Text(item) + }, + chevronVisible = it < defaultItems.size - 1, + ) + } + } + } +} + +@Sample +@Composable +private fun LargeBreadcrumbBarSample() { + val defaultItems = defaultItems() + BreadcrumbBar( + modifier = Modifier.height(60.dp), + overflowAction = { + OverflowFlyoutContainer { + BreadcrumbBarDefaults.LargeOverflowTag { isFlyoutVisible = true } + } + } + ) { + items(defaultItems.size) { + val item = defaultItems[it] + if (isOverflow) { + OverflowBreadcrumbBarItem( + onClick = { } + ) { + Text(item) + } + } else { + LargeBreadcrumbBarItem( + onClick = {}, + content = { + Text(item) + }, + chevronVisible = it < defaultItems.size - 1, + inactive = it != defaultItems.lastIndex + ) + } + } + } +} + +@Composable +private fun defaultItems(): List { + return remember { + listOf( + "Home", + "Documents", + "Design", + "Northwind", + "Images", + "Folder1", + "Folder2", + "Folder3" + ) + } +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/navigation/NavigationViewScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/navigation/NavigationViewScreen.kt new file mode 100644 index 00000000..1311da74 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/navigation/NavigationViewScreen.kt @@ -0,0 +1,264 @@ +@file:OptIn(ExperimentalFluentApi::class) + +package io.github.composefluent.gallery.screen.navigation + +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.height +import androidx.compose.runtime.Composable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import androidx.compose.ui.Modifier +import androidx.compose.ui.unit.dp +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.component.Icon +import io.github.composefluent.component.MenuItem +import io.github.composefluent.component.NavigationView +import io.github.composefluent.component.NavigationDisplayMode +import io.github.composefluent.component.RadioButton +import io.github.composefluent.component.SideNav +import io.github.composefluent.component.SideNavHeader +import io.github.composefluent.component.SideNavItem +import io.github.composefluent.component.Text +import io.github.composefluent.component.TopNav +import io.github.composefluent.component.TopNavHeader +import io.github.composefluent.component.TopNavItem +import io.github.composefluent.component.rememberNavigationState +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.gallery.component.components +import io.github.composefluent.gallery.component.rememberComponentNavigator +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.regular.Circle +import io.github.composefluent.source.generated.FluentSourceFile + +@Component( + description = "Common vertical layout for top-level areas of" + + " your app via a collapsible navigation menu." +) +@Composable +fun NavigationViewScreen() { + GalleryPage( + title = "NavigationView", + description = "The navigation view control provides a common vertical layout " + + "for top-level areas of your app via a collapsible navigation menu.", + componentPath = FluentSourceFile.NavigationView, + galleryPath = ComponentPagePath.NavigationViewScreen + ) { + Section( + title = "SideNav", + sourceCode = sourceCodeOfSideNavSample, + content = { SideNavSample() } + ) + + Section( + title = "TopNav", + sourceCode = sourceCodeOfTopNavSample, + content = { TopNavSample() } + ) + + var displayMode by remember { mutableStateOf(NavigationDisplayMode.Top) } + Section( + title = "NavigationView", + sourceCode = sourceCodeOfNavigationViewSample, + content = { NavigationViewSample(displayMode) }, + options = { + NavigationDisplayMode.entries.forEach { + RadioButton( + selected = displayMode == it, + onClick = { displayMode = it }, + label = it.name + ) + } + } + ) + } +} + +@Sample +@Composable +private fun SideNavSample() { + var expanded by remember { mutableStateOf(false) } + var selectedIndex by remember { mutableStateOf(0) } + SideNav( + expanded = expanded, + onExpandStateChange = { expanded = it }, + modifier = Modifier.height(300.dp) + ) { + repeat(6) { index -> + SideNavItem( + selected = selectedIndex == index, + onClick = { selectedIndex = index }, + content = { Text("Menu Item $index") }, + icon = { + Icon(imageVector = Icons.Default.Circle, contentDescription = null) + } + ) + } + } +} + +@Sample +@Composable +private fun TopNavSample() { + Column(modifier = Modifier.height(100.dp)) { + var selectedIndex by remember { mutableStateOf(0) } + var expanded by remember { mutableStateOf(false) } + TopNav( + header = { + TopNavHeader { + Text("Header") + } + }, + expanded = expanded, + onExpandedChanged = { expanded = it } + ) { + + items(6) { index -> + if (isOverflow) { + SideNavItem( + selected = index == selectedIndex, + onClick = { + selectedIndex = index + }, + content = { + Text(text = "Menu Item ${index + 1}") + + }, + icon = { + Icon(imageVector = Icons.Default.Circle, contentDescription = null) + } + ) + } else { + TopNavItem( + selected = index == selectedIndex, + onClick = { + selectedIndex = index + }, + text = { + Text(text = "Menu Item ${index + 1}") + }, + icon = { + Icon(imageVector = Icons.Default.Circle, contentDescription = null) + } + ) + } + } + item { + + if (isOverflow) { + Column { + SideNavHeader { + Text("Header") + } + SideNavItem( + selected = false, + onClick = {}, + content = { + Text(text = "Menu Item") + }, + icon = { + Icon(imageVector = Icons.Default.Circle, contentDescription = null) + } + ) + } + } else { + Row { + TopNavHeader { + Text("Header") + } + TopNavItem( + selected = false, + onClick = {}, + text = { + Text(text = "Menu Item") + }, + icon = { + Icon(imageVector = Icons.Default.Circle, contentDescription = null) + } + ) + } + } + } + } + } +} + +@Sample +@Composable +private fun NavigationViewSample(displayMode: NavigationDisplayMode) { + val navigator = rememberComponentNavigator() + val navigationState = rememberNavigationState() + NavigationView( + displayMode = displayMode, + state = navigationState, + menuItems = { + items(components.size) { index -> + val item = components[index] + var showItems by remember { mutableStateOf(false) } + MenuItem( + selected = item == navigator.latestBackEntry, + onClick = { + navigator.navigate(item) + if (item.items.isNullOrEmpty()) { + flyoutDismissRequest() + } else { + showItems = !showItems + } + }, + text = { + Text(text = item.name) + }, + icon = item.icon?.let { + { + Icon(imageVector = it, contentDescription = item.description) + } + }, + expandItems = showItems && item.items.isNullOrEmpty().not(), + onExpandItemsChanged = { showItems = it }, + items = { + item.items?.forEach { nestedItem -> + var expandedItem by remember { mutableStateOf(false) } + var flyoutVisible by remember { mutableStateOf(false) } + SideNavItem( + selected = nestedItem == navigator.latestBackEntry, + onSelectedChanged = { + navigator.navigate(nestedItem) + if (nestedItem.items.isNullOrEmpty()) { + isFlyoutVisible = false + flyoutDismissRequest() + } + }, + text = { + Text(text = nestedItem.name) + }, + onExpandItemsChanged = { expandedItem = it }, + flyoutVisible = flyoutVisible && nestedItem.items.isNullOrEmpty().not(), + onFlyoutVisibleChanged = { flyoutVisible = it }, + indicatorState = navigationState.indicatorState, + icon = nestedItem.icon?.let { icon -> + { + Icon( + imageVector = icon, + contentDescription = nestedItem.description + ) + } + } + + ) + } + } + ) + } + }, + modifier = Modifier.height(600.dp) + ) { + navigator.latestBackEntry?.let { + it.content?.invoke(it, navigator) + } + } +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/navigation/SelectorBarScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/navigation/SelectorBarScreen.kt new file mode 100644 index 00000000..14404d04 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/navigation/SelectorBarScreen.kt @@ -0,0 +1,65 @@ +package io.github.composefluent.gallery.screen.navigation + +import androidx.compose.runtime.Composable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableIntStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import io.github.composefluent.component.Icon +import io.github.composefluent.component.SelectorBar +import io.github.composefluent.component.SelectorBarItem +import io.github.composefluent.component.Text +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.regular.History +import io.github.composefluent.icons.regular.Share +import io.github.composefluent.icons.regular.Star +import io.github.composefluent.source.generated.FluentSourceFile + +@Component(description = "Presents information from a small set of different sources. The user can pick one of them.") +@Composable +fun SelectorBarScreen() { + GalleryPage( + title = "SelectorBar", + description = "SelectorBar is used to modify the content shown by allowing users to select and switch between a small, finite set of data.", + componentPath = FluentSourceFile.SelectorBar, + galleryPath = ComponentPagePath.SelectorBarScreen + ) { + Section( + title = "Basic SelectorBar sample", + sourceCode = sourceCodeOfBasicSelectorBarSample, + content = { BasicSelectorBarSample() } + ) + } +} + +@Sample +@Composable +private fun BasicSelectorBarSample() { + var selectedIndex by remember { mutableIntStateOf(-1) } + SelectorBar { + SelectorBarItem( + selected = selectedIndex == 0, + onSelectedChange = { selectedIndex = 0 }, + text = { Text("Recent") }, + icon = { Icon(Icons.Default.History, contentDescription = null) } + ) + + SelectorBarItem( + selected = selectedIndex == 1, + onSelectedChange = { selectedIndex = 1 }, + text = { Text("Shared") }, + icon = { Icon(Icons.Default.Share, contentDescription = null) } + ) + + SelectorBarItem( + selected = selectedIndex == 2, + onSelectedChange = { selectedIndex = 2 }, + text = { Text("Favorites") }, + icon = { Icon(Icons.Default.Star, contentDescription = null) } + ) + } +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/navigation/TabViewScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/navigation/TabViewScreen.kt new file mode 100644 index 00000000..2b46a3d0 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/navigation/TabViewScreen.kt @@ -0,0 +1,377 @@ +package io.github.composefluent.gallery.screen.navigation + +import androidx.compose.foundation.ExperimentalFoundationApi +import androidx.compose.foundation.background +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.interaction.collectIsHoveredAsState +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.WindowInsets +import androidx.compose.foundation.layout.fillMaxHeight +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.heightIn +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.layout.widthIn +import androidx.compose.foundation.layout.windowInsetsPadding +import androidx.compose.foundation.lazy.items +import androidx.compose.foundation.lazy.itemsIndexed +import androidx.compose.foundation.lazy.rememberLazyListState +import androidx.compose.foundation.relocation.BringIntoViewRequester +import androidx.compose.foundation.relocation.bringIntoViewRequester +import androidx.compose.runtime.Composable +import androidx.compose.runtime.Stable +import androidx.compose.runtime.mutableIntStateOf +import androidx.compose.runtime.mutableStateListOf +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.rememberCoroutineScope +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.RectangleShape +import androidx.compose.ui.graphics.SolidColor +import androidx.compose.ui.text.input.TextFieldValue +import androidx.compose.ui.unit.dp +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.FluentTheme +import io.github.composefluent.background.BackgroundSizing +import io.github.composefluent.background.Layer +import io.github.composefluent.component.Icon +import io.github.composefluent.component.SubtleButton +import io.github.composefluent.component.TabRow +import io.github.composefluent.component.TabItem +import io.github.composefluent.component.TabViewDefaults +import io.github.composefluent.component.Text +import io.github.composefluent.component.TextField +import io.github.composefluent.component.TextFieldColor +import io.github.composefluent.component.TextFieldColorScheme +import io.github.composefluent.component.rememberTabItemEndDividerController +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.gallery.component.GalleryPageScope +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.regular.ArrowClockwise +import io.github.composefluent.icons.regular.ArrowDownload +import io.github.composefluent.icons.regular.ArrowLeft +import io.github.composefluent.icons.regular.ArrowRight +import io.github.composefluent.icons.regular.History +import io.github.composefluent.icons.regular.Home +import io.github.composefluent.icons.regular.MoreHorizontal +import io.github.composefluent.icons.regular.StarLineHorizontal3 +import io.github.composefluent.source.generated.FluentSourceFile +import kotlinx.coroutines.delay +import kotlinx.coroutines.launch + +@Component(index = 1, description = "A control that displays a collection of tabs that can be used to display several documents.") +@Composable +fun TabViewScreen() { + GalleryPage( + title = "TabView", + description = "TabView provides the user with a collection of tabs that can be used to display several documents.", + componentPath = FluentSourceFile.TabView, + galleryPath = ComponentPagePath.TabViewScreen + ) { + Section( + title = "Basic TabView", + sourceCode = sourceCodeOfTabViewSample, + content = { TabViewSample() } + ) + PlatformTabViewSection() + } +} + +@Sample +@OptIn(ExperimentalFluentApi::class) +@Composable +private fun TabViewSample() { + val selectedKey = remember { mutableIntStateOf(0) } + val items = remember { mutableStateListOf(*Array(10) { it }) } + val state = rememberLazyListState() + val endDividerController = rememberTabItemEndDividerController( + selectedKey = { selectedKey.value }, + state = state + ) + TabRow( + state = state, + selectedKey = { selectedKey.value }, + modifier = Modifier.fillMaxWidth() + ) { + + itemsIndexed(items, key = { _, item -> item }) { index, item -> + val interactionSource = remember { MutableInteractionSource() } + TabItem( + selected = item == selectedKey.value, + onSelectedChanged = { selectedKey.value = item }, + endDividerVisible = endDividerController.attach(item, interactionSource), + interactionSource = interactionSource, + text = {Text("Item ${item + 1}")}, + trailing = { + val isHovered = interactionSource.collectIsHoveredAsState() + if (isHovered.value) { + TabViewDefaults.TabCloseButton( + onClick = { + val isSelected = selectedKey.value == item + items.remove(item) + if (isSelected) { + selectedKey.value = items.getOrNull(index) ?: items.getOrNull(index - 1) ?: 0 + } + } + ) + } + }, + modifier = Modifier.widthIn(160.dp).animateItem(), + ) + } + + item { + TabViewDefaults.TabAddButton( + onClick = { + items.add(items.lastOrNull()?.plus(1) ?: 0) + } + ) + } + } +} + +@Composable +internal expect fun GalleryPageScope.PlatformTabViewSection() + +@OptIn(ExperimentalFluentApi::class, ExperimentalFoundationApi::class) +@Composable +internal fun TabViewWindowContent( + paddingInsets: WindowInsets = WindowInsets(0), + header: @Composable () -> Unit = {}, + footer: @Composable () -> Unit = {} +) { + Column(modifier = Modifier.windowInsetsPadding(paddingInsets)) { + val selectedIndex = remember { mutableStateOf(1) } + val tabItems = remember { mutableStateListOf(*Array(6) { it + 1 }) } + val state = rememberLazyListState() + val endDividerController = rememberTabItemEndDividerController( + selectedKey = { selectedIndex.value }, + state = state + ) + val coroutineScope = rememberCoroutineScope() + TabRow( + selectedKey = { selectedIndex.value }, + state = state, + header = header, + footer = footer, + borderColor = FluentTheme.colors.stroke.card.default, + modifier = Modifier.weight(1f) + ) { + items(tabItems, key = { it }) { index -> + val interactionSource = remember { MutableInteractionSource() } + TabItem( + selected = selectedIndex.value == index, + onSelectedChanged = { selectedIndex.value = index }, + text = { + Text("Item ${index + 1}") + }, + trailing = { + val isHovered = interactionSource.collectIsHoveredAsState() + if (isHovered.value) { + TabViewDefaults.TabCloseButton( + onClick = { + val isSelected = selectedIndex.value == index + tabItems.remove(index) + if (isSelected) { + selectedIndex.value = + tabItems.firstOrNull() ?: 0 + } + } + ) + } + }, + colors = if (selectedIndex.value == index) { + TabViewDefaults.selectedItemTitleBarColors() + } else { + TabViewDefaults.defaultItemTitleBarColors() + }, + endDividerVisible = endDividerController.attach( + index, + interactionSource + ), + interactionSource = interactionSource, + modifier = Modifier.animateItem().widthIn(160.dp) + ) + } + item { + val bringIntoViewRequester = remember { BringIntoViewRequester() } + TabViewDefaults.TabAddButton( + onClick = { + tabItems.add(tabItems.lastOrNull()?.plus(1) ?: 0) + coroutineScope.launch { + delay(500) + bringIntoViewRequester.bringIntoView() + } + }, + modifier = Modifier.bringIntoViewRequester( + bringIntoViewRequester + ) + ) + } + + } + Layer( + border = null, + backgroundSizing = BackgroundSizing.OuterBorderEdge, + modifier = Modifier.weight(1f).fillMaxWidth(), + color = FluentTheme.colors.background.layerOnMicaBaseAlt.default, + shape = RectangleShape + ) { + Column( + modifier = Modifier.fillMaxWidth().fillMaxHeight() + ) { + Row( + verticalAlignment = Alignment.CenterVertically, + horizontalArrangement = Arrangement.spacedBy(8.dp), + modifier = Modifier + .heightIn(48.dp) + .padding(horizontal = 8.dp) + ) { + val iconSize = 18.dp + SubtleButton( + onClick = {}, + iconOnly = true + ) { + Icon( + Icons.Default.ArrowLeft, + contentDescription = null, + modifier = Modifier.size(iconSize) + ) + } + SubtleButton( + onClick = {}, + iconOnly = true + ) { + Icon( + Icons.Default.ArrowRight, + contentDescription = null, + modifier = Modifier.size(iconSize) + ) + } + + SubtleButton( + onClick = {}, + iconOnly = true + ) { + Icon( + Icons.Default.ArrowClockwise, + contentDescription = null, + modifier = Modifier.size(iconSize) + ) + } + + SubtleButton( + onClick = {}, + iconOnly = true + ) { + Icon( + Icons.Default.Home, + contentDescription = null, + modifier = Modifier.size(iconSize) + ) + } + + val value = remember { mutableStateOf(TextFieldValue()) } + TextField( + value = value.value, + onValueChange = { value.value = it }, + colors = defaultTextFieldColors(), + placeholder = { Text("Enter url or search keyword") }, + modifier = Modifier.padding(horizontal = 4.dp).weight(1f) + .fillMaxWidth().height(32.dp) + ) + SubtleButton( + onClick = {}, + iconOnly = true + ) { + Icon( + Icons.Default.History, + contentDescription = null, + modifier = Modifier.size(iconSize) + ) + } + + SubtleButton( + onClick = {}, + iconOnly = true + ) { + Icon( + Icons.Default.ArrowDownload, + contentDescription = null, + modifier = Modifier.size(iconSize) + ) + } + SubtleButton( + onClick = {}, + iconOnly = true + ) { + Icon( + Icons.Default.StarLineHorizontal3, + contentDescription = null, + modifier = Modifier.size(iconSize) + ) + } + SubtleButton( + onClick = {}, + iconOnly = true + ) { + Icon( + Icons.Default.MoreHorizontal, + contentDescription = null, + modifier = Modifier.size(iconSize) + ) + } + } + Box( + modifier = Modifier.fillMaxWidth().height(1.dp) + .background(FluentTheme.colors.stroke.divider.default) + ) + } + } + } +} + +@Stable +@Composable +fun defaultTextFieldColors( + default: TextFieldColor = TextFieldColor( + fillColor = FluentTheme.colors.control.default, + contentColor = FluentTheme.colors.text.text.primary, + placeholderColor = FluentTheme.colors.text.text.secondary, + bottomLineFillColor = Color.Transparent, + borderBrush = SolidColor(Color.Transparent), + cursorBrush = SolidColor(FluentTheme.colors.text.text.primary) + ), + focused: TextFieldColor = default.copy( + fillColor = FluentTheme.colors.control.inputActive, + bottomLineFillColor = FluentTheme.colors.fillAccent.default, + borderBrush = SolidColor(FluentTheme.colors.stroke.control.default) + ), + hovered: TextFieldColor = default.copy( + fillColor = FluentTheme.colors.control.secondary + ), + pressed: TextFieldColor = default.copy( + fillColor = FluentTheme.colors.control.inputActive, + borderBrush = SolidColor(FluentTheme.colors.stroke.control.default) + ), + disabled: TextFieldColor = default.copy( + contentColor = FluentTheme.colors.text.text.disabled, + placeholderColor = FluentTheme.colors.text.text.disabled, + bottomLineFillColor = Color.Transparent, + ) +) = TextFieldColorScheme( + default = default, + focused = focused, + hovered = hovered, + pressed = pressed, + disabled = disabled +) diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/scrolling/PipsPagerScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/scrolling/PipsPagerScreen.kt new file mode 100644 index 00000000..57a974e6 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/scrolling/PipsPagerScreen.kt @@ -0,0 +1,159 @@ +package io.github.composefluent.gallery.screen.scrolling + +import androidx.compose.foundation.background +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.widthIn +import androidx.compose.foundation.pager.rememberPagerState +import androidx.compose.runtime.Composable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableIntStateOf +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.unit.dp +import io.github.composefluent.component.DropDownButton +import io.github.composefluent.component.HorizontalFlipView +import io.github.composefluent.component.HorizontalPipsPager +import io.github.composefluent.component.MenuFlyoutContainer +import io.github.composefluent.component.MenuFlyoutItem +import io.github.composefluent.component.PageButtonVisibleStrategy +import io.github.composefluent.component.Text +import io.github.composefluent.component.VerticalPipsPager +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.gallery.screen.collections.randomBrushItems +import io.github.composefluent.source.generated.FluentSourceFile + +@Component(description = "A control to let the user navigate through a paginated collection when the page numbers do not need to be visually known.") +@Composable +fun PipsPagerScreen() { + GalleryPage( + title = "PipsPager", + description = "A PipsPager allows the user to navigate through a paginated collection and is independent of the content shown. " + + "Use this control when the content in the layout is not explicitly ordered by relevancy or you desire a glyph-based representation of numbered pages. " + + "PipsPagers are commonly used in photo viewers, app lists, carousels, and when display space is limited.", + componentPath = FluentSourceFile.PipsPager, + galleryPath = ComponentPagePath.PipsPagerScreen + ) { + Section( + title = "PipsPager integrated with FlipView sample", + sourceCode = sourceCodeOfPipsPagerIntegratedWithFlipViewSample, + content = { PipsPagerIntegratedWithFlipViewSample() } + ) + + var isVertical = remember { mutableStateOf(false) } + var pageButtonVisibleStrategy = remember { mutableStateOf(PageButtonVisibleStrategy.Never) } + Section( + title = "PipsPager with options", + sourceCode = sourceCodeOfPipsPagerWithOptions, + content = { + PipsPagerWithOptions( + isVertical = isVertical.value, + pageButtonVisibleStrategy = pageButtonVisibleStrategy.value + ) + }, + options = { + Text("Orientation") + MenuFlyoutContainer( + flyout = { + MenuFlyoutItem( + selected = isVertical.value, + onSelectedChanged = { + isVertical.value = true + isFlyoutVisible = false + }, + text = { Text("Vertical") }, + ) + MenuFlyoutItem( + selected = !isVertical.value, + onSelectedChanged = { + isVertical.value = false + isFlyoutVisible = false + }, + text = { Text("Horizontal") } + ) + }, + content = { + DropDownButton( + onClick = { isFlyoutVisible = true }, + content = { Text(if (isVertical.value) "Vertical" else "Horizontal") } + ) + } + ) + Text("Page button visibility") + MenuFlyoutContainer( + flyout = { + PageButtonVisibleStrategy.entries.forEach { item -> + MenuFlyoutItem( + selected = pageButtonVisibleStrategy.value == item, + onSelectedChanged = { + pageButtonVisibleStrategy.value = item + isFlyoutVisible = false + }, + text = { Text(item.name) } + ) + } + }, + content = { + DropDownButton( + onClick = { isFlyoutVisible = true }, + content = { Text(pageButtonVisibleStrategy.value.name) } + ) + } + ) + } + ) + } +} + +@Sample +@Composable +private fun PipsPagerIntegratedWithFlipViewSample() { + val items = randomBrushItems() + val pagerState = rememberPagerState { items.size } + Column( + horizontalAlignment = Alignment.CenterHorizontally + ) { + HorizontalFlipView( + state = pagerState, + modifier = Modifier + .widthIn(max = 400.dp) + .height(180.dp) + ) { + Box(modifier = Modifier.fillMaxSize().background(items[it])) + } + HorizontalPipsPager(state = pagerState) + } +} + +@Sample +@Composable +private fun PipsPagerWithOptions( + isVertical: Boolean, + pageButtonVisibleStrategy: PageButtonVisibleStrategy +) { + val count = 7 + var selectedIndex by remember { mutableIntStateOf(0) } + if (isVertical) { + VerticalPipsPager( + selectedIndex = selectedIndex, + onSelectedIndexChange = { selectedIndex = it }, + count = count, + pageButtonVisibleStrategy = pageButtonVisibleStrategy + ) + } else { + HorizontalPipsPager( + selectedIndex = selectedIndex, + onSelectedIndexChange = { selectedIndex = it }, + count = count, + pageButtonVisibleStrategy = pageButtonVisibleStrategy + ) + } +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/settings/SettingsScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/settings/SettingsScreen.kt new file mode 100644 index 00000000..8c367c05 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/settings/SettingsScreen.kt @@ -0,0 +1,331 @@ +package io.github.composefluent.gallery.screen.settings + +import androidx.compose.foundation.Image +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.ColumnScope +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.layout.widthIn +import androidx.compose.foundation.layout.wrapContentWidth +import androidx.compose.foundation.rememberScrollState +import androidx.compose.foundation.text.selection.SelectionContainer +import androidx.compose.foundation.verticalScroll +import androidx.compose.runtime.Composable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.saveable.rememberSaveable +import androidx.compose.runtime.setValue +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Shape +import androidx.compose.ui.unit.dp +import io.github.composefluent.FluentTheme +import io.github.composefluent.build.BuildKonfig +import io.github.composefluent.component.CardExpanderItem +import io.github.composefluent.component.DropDownButton +import io.github.composefluent.component.Expander +import io.github.composefluent.component.ExpanderItem +import io.github.composefluent.component.ExpanderItemSeparator +import io.github.composefluent.component.Icon +import io.github.composefluent.component.MenuFlyoutContainer +import io.github.composefluent.component.MenuFlyoutItem +import io.github.composefluent.component.NavigationDisplayMode +import io.github.composefluent.component.ScrollbarContainer +import io.github.composefluent.component.Switcher +import io.github.composefluent.component.Text +import io.github.composefluent.component.rememberScrollbarAdapter +import io.github.composefluent.gallery.LocalStore +import io.github.composefluent.gallery.ProjectUrl +import io.github.composefluent.gallery.component.ComponentItem +import io.github.composefluent.gallery.component.ComponentNavigator +import io.github.composefluent.gallery.screen.test.TestComponentScreen +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.regular.Blur +import io.github.composefluent.icons.regular.Bug +import io.github.composefluent.icons.regular.ChevronRight +import io.github.composefluent.icons.regular.Color +import io.github.composefluent.icons.regular.List +import io.github.composefluent.icons.regular.Navigation +import fluentdesign.gallery.generated.resources.Res +import fluentdesign.gallery.generated.resources.icon +import org.jetbrains.compose.resources.painterResource + +@Composable +fun SettingsScreen(componentNavigator: ComponentNavigator) { + val scrollState = rememberScrollState() + Column { + Text( + text = "Settings", + style = FluentTheme.typography.titleLarge, + modifier = Modifier.alignHorizontalSpace() + .padding(top = 36.dp) + ) + ScrollbarContainer( + adapter = rememberScrollbarAdapter(scrollState) + ) { + val store = LocalStore.current + Column( + verticalArrangement = Arrangement.spacedBy(4.dp), + modifier = Modifier + .verticalScroll(scrollState) + .alignHorizontalSpace() + .padding(top = 8.dp) + .padding(bottom = 24.dp) + ) { + Header("Appearance & behavior") + CardExpanderItem( + heading = { + Text("App Theme") + }, + icon = { + Icon(Icons.Regular.Color, contentDescription = null) + }, + caption = { + Text("Select which app theme to display") + }, + trailing = { + Switcher( + checked = store.darkMode, + text = if (store.darkMode) "Dark" else "Light", + textBefore = true, + onCheckStateChange = { store.darkMode = it } + ) + } + ) + CardExpanderItem( + heading = { + Text("Acrylic Flyout") + }, + icon = { + Icon( + imageVector = Icons.Regular.Blur, + contentDescription = "Blur" + ) + }, + caption = { + Text("Enable Acrylic effect on Flyout") + }, + trailing = { + Switcher( + checked = store.enabledAcrylicPopup, + text = if (store.enabledAcrylicPopup) "On" else "Off", + textBefore = true, + onCheckStateChange = { store.enabledAcrylicPopup = it } + ) + } + ) + CardExpanderItem( + heading = { + Text("Compact Mode") + }, + icon = { + Icon( + imageVector = Icons.Regular.List, + contentDescription = "List" + ) + }, + caption = { + Text("Adjust ListItem height") + }, + trailing = { + Switcher( + checked = store.compactMode, + text = if (store.compactMode) "Compact" else "Standard", + textBefore = true, + onCheckStateChange = { store.compactMode = it } + ) + } + ) + CardExpanderItem( + heading = { + Text("Navigation Style") + }, + icon = { + Icon( + imageVector = Icons.Regular.Navigation, + contentDescription = "List" + ) + }, + caption = { + Text("Choose the Navigation View Layout") + }, + trailing = { + MenuFlyoutContainer( + flyout = { + NavigationDisplayMode.entries.forEach { item -> + MenuFlyoutItem( + selected = item == store.navigationDisplayMode, + onSelectedChanged = { + store.navigationDisplayMode = item + isFlyoutVisible = false + }, + text = { + Text(item.name) + } + ) + } + }, + content = { + DropDownButton( + onClick = { + isFlyoutVisible = true + }, + content = { + Text(store.navigationDisplayMode.name) + } + ) + } + ) + } + ) + + // Hide this test component if gallery is release version. + if (!BuildKonfig.CURRENT_BRANCH.equals("master", false)) { + Header("Test") + CardExpanderItem( + heading = { + Text("Test Component") + }, + caption = { + Text("Test Component with some settings like scale fraction and dark theme") + }, + onClick = { + componentNavigator.navigate(testComponent) + }, + icon = { + Icon(Icons.Regular.Bug, contentDescription = null) + }, + dropdown = { + Icon(Icons.Regular.ChevronRight, null) + } + ) + } + Header("About") + Expander( + heading = { + Text("Compose Fluent Design Gallery") + }, + icon = { + Image( + painter = painterResource(Res.drawable.icon), + contentDescription = null, + modifier = Modifier.size(16.dp) + ) + }, + caption = {}, + trailing = { + Text(BuildKonfig.GALLERY_VERSION) + }, + expandContent = { + + ExpanderItem( + icon = {}, + heading = { + Text("To clone this repository") + }, + trailing = { + SelectionContainer { + Text("git clone ${ProjectUrl.ROOT}.git") + } + } + ) + + ExpanderItemSeparator() + + ExpanderItem( + heading = { + Text("Compose Fluent Design") + }, + trailing = { + Text(BuildKonfig.LIBRARY_VERSION) + } + ) + ExpanderItemSeparator() + ExpanderItem( + heading = { + Text("Kotlin") + }, + trailing = { + Text(BuildKonfig.KOTLIN_VERSION) + } + ) + ExpanderItemSeparator() + ExpanderItem( + heading = { + Text("Compose Multiplatform") + }, + trailing = { + Text(BuildKonfig.COMPOSE_VERSION) + } + ) + ExpanderItemSeparator() + ExpanderItem( + heading = { + Text("Haze") + }, + trailing = { + Text(BuildKonfig.HAZE_VERSION) + }, + ) + } + ) + } + } + } +} + +fun Modifier.alignHorizontalSpace() = then( + Modifier + .fillMaxWidth() + .wrapContentWidth(align = Alignment.CenterHorizontally) + .padding(horizontal = 32.dp) + .widthIn(max = 1000.dp) + .fillMaxWidth() +) + +@Composable +private fun Header(text: String) { + Text( + text = text, + style = FluentTheme.typography.bodyStrong, + modifier = Modifier.padding(top = 16.dp, bottom = 4.dp) + ) +} + +@Composable +private fun Expander( + heading: @Composable () -> Unit, + modifier: Modifier = Modifier, + enabled: Boolean = true, + interactionSource: MutableInteractionSource? = null, + shape: Shape = FluentTheme.shapes.control, + icon: (@Composable () -> Unit)? = {}, + caption: @Composable () -> Unit = {}, + trailing: @Composable () -> Unit = {}, + expandContent: (@Composable ColumnScope.() -> Unit) = {}, +) { + var expanded by rememberSaveable { mutableStateOf(false) } + Expander( + expanded = expanded, + onExpandedChanged = { expanded = it }, + heading = heading, + modifier = modifier, + enabled = enabled, + interactionSource = interactionSource, + shape = shape, + icon = icon, + caption = caption, + trailing = trailing, + expandContent = expandContent + ) +} + +private val testComponent = ComponentItem( + name = "Test Component", + description = "Test Component with some settings like scale fraction and dark theme", + group = "settings", + content = { TestComponentScreen() } +) \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/status/BadgeScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/status/BadgeScreen.kt new file mode 100644 index 00000000..75fe7cd2 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/status/BadgeScreen.kt @@ -0,0 +1,250 @@ +package io.github.composefluent.gallery.screen.status + +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.defaultMinSize +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.wrapContentWidth +import androidx.compose.runtime.Composable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.unit.dp +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.component.Badge +import io.github.composefluent.component.BadgeDefaults +import io.github.composefluent.component.BadgeStatus +import io.github.composefluent.component.Button +import io.github.composefluent.component.DropDownButton +import io.github.composefluent.component.Icon +import io.github.composefluent.component.MenuFlyoutContainer +import io.github.composefluent.component.MenuFlyoutItem +import io.github.composefluent.component.NavigationDefaults +import io.github.composefluent.component.NavigationDisplayMode +import io.github.composefluent.component.NavigationView +import io.github.composefluent.component.Switcher +import io.github.composefluent.component.Text +import io.github.composefluent.component.TextField +import io.github.composefluent.component.menuItem +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.filled.ArrowSync +import io.github.composefluent.icons.regular.Home +import io.github.composefluent.icons.regular.Mail +import io.github.composefluent.icons.regular.Person +import io.github.composefluent.icons.regular.Settings +import io.github.composefluent.source.generated.FluentSourceFile + +@Component(description = "An non-intrusive UI to display notifications or bring focus to an area.") +@Composable +fun BadgeScreen() { + GalleryPage( + title = "Badge", + description = "Badging is a non-intrusive and intuitive way to display notifications " + + "or bring focus to an area within an app - whether that be for notifications, " + + "indicating new content, or showing an alert.", + componentPath = FluentSourceFile.Badge, + galleryPath = ComponentPagePath.BadgeScreen + ) { + + var badgeVisible by remember { mutableStateOf(true) } + var displayMode by remember { mutableStateOf(NavigationDisplayMode.Left) } + Section( + title = "Badge embedded in NavigationView", + sourceCode = sourceCodeOfBadgeInsideNavigationViewSample, + content = { BadgeInsideNavigationViewSample(badgeVisible, displayMode) }, + options = { + Text("Badge Visible") + Switcher( + checked = badgeVisible, + onCheckStateChange = { badgeVisible = it } + ) + Text("Display Mode") + MenuFlyoutContainer( + flyout = { + NavigationDisplayMode.entries.forEach { item -> + MenuFlyoutItem( + selected = item == displayMode, + onSelectedChanged = { + displayMode = item + isFlyoutVisible = false + }, + text = { Text(item.name) } + ) + } + }, + content = { + DropDownButton( + onClick = { isFlyoutVisible = true }, + content = { Text(displayMode.name) } + ) + } + ) + } + ) + + var status by remember { mutableStateOf(BadgeStatus.Attention) } + Section( + title = "Different Badge Styles", + sourceCode = sourceCodeOfBadgeStatusSample, + content = { BadgeStatusSample(status) }, + options = { + Text("Status") + MenuFlyoutContainer( + flyout = { + BadgeStatus.entries.forEach { item -> + MenuFlyoutItem( + selected = item == status, + onSelectedChanged = { + status = item + isFlyoutVisible = false + }, + text = { Text(item.name) } + ) + } + }, + content = { + DropDownButton( + onClick = { isFlyoutVisible = true }, + content = { Text(status.name) } + ) + } + ) + } + ) + + Section( + title = "Placing an Badge Inside Another Control", + sourceCode = sourceCodeOfBadgeInsideComponentSample, + content = { BadgeInsideComponentSample() } + ) + + var badgeContent by remember { mutableStateOf("9") } + Section( + title = "Badge with content", + sourceCode = sourceCodeOfBadgeContentSample, + content = { BadgeContentSample(badgeContent) }, + options = { + TextField( + header = { Text("Content") }, + value = badgeContent, + onValueChange = { badgeContent = it } + ) + } + ) + + } +} + +@Sample +@OptIn(ExperimentalFluentApi::class) +@Composable +private fun BadgeInsideNavigationViewSample( + badgeVisible: Boolean = true, + displayMode: NavigationDisplayMode = NavigationDisplayMode.Left +) { + var selectedIndex by remember { mutableStateOf(0) } + NavigationView( + displayMode = displayMode, + backButton = { NavigationDefaults.BackButton(onClick = {}, disabled = true) }, + menuItems = { + menuItem( + selected = 0 == selectedIndex, + onClick = { selectedIndex = 0 }, + text = { Text("Home") }, + icon = { Icon(Icons.Default.Home, contentDescription = null) }, + ) + menuItem( + selected = 1 == selectedIndex, + onClick = { selectedIndex = 1 }, + text = { Text("Account") }, + icon = { Icon(Icons.Default.Person, contentDescription = null) }, + ) + menuItem( + selected = 2 == selectedIndex, + onClick = { selectedIndex = 2 }, + text = { Text("Inbox") }, + icon = { Icon(Icons.Default.Mail, contentDescription = null) }, + badge = if (badgeVisible) { + { Badge(status = BadgeStatus.Attention, content = { Text("5") }) } + } else { + null + } + ) + }, + footerItems = { + menuItem( + selected = 3 == selectedIndex, + onClick = { selectedIndex = 3 }, + text = { Text("Settings") }, + icon = { Icon(Icons.Default.Settings, contentDescription = null) }, + ) + }, + pane = {}, + modifier = Modifier.height(300.dp) + ) +} + +@Sample +@Composable +private fun BadgeStatusSample( + status: BadgeStatus +) { + Row( + verticalAlignment = Alignment.CenterVertically, + horizontalArrangement = Arrangement.spacedBy(16.dp, Alignment.CenterHorizontally), + modifier = Modifier.fillMaxWidth() + ) { + Badge( + status = status, + content = { BadgeDefaults.Icon(status = status) } + ) + Badge( + status = status, + content = { Text(text = "10") } + ) + Badge(status = status) + } +} + +@Sample +@Composable +private fun BadgeInsideComponentSample() { + Box( + modifier = Modifier.fillMaxWidth() + .wrapContentWidth(Alignment.CenterHorizontally) + ) { + Button( + onClick = {}, + content = { Icon(Icons.Filled.ArrowSync, contentDescription = null) }, + modifier = Modifier.defaultMinSize(120.dp, minHeight = 48.dp) + ) + Badge( + status = BadgeStatus.Critical, + content = { BadgeDefaults.Icon(status = BadgeStatus.Caution) }, + modifier = Modifier.align(Alignment.TopEnd) + ) + } +} + +@Sample +@Composable +private fun BadgeContentSample(content: String) { + Box( + contentAlignment = Alignment.Center, + modifier = Modifier.fillMaxWidth() + ) { + Badge( + status = BadgeStatus.Attention, + content = { Text(content) } + ) + } +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/status/InfoBarScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/status/InfoBarScreen.kt new file mode 100644 index 00000000..b11d9ddc --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/status/InfoBarScreen.kt @@ -0,0 +1,294 @@ +package io.github.composefluent.gallery.screen.status + +import androidx.compose.runtime.Composable +import androidx.compose.runtime.derivedStateOf +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import io.github.composefluent.component.Button +import io.github.composefluent.component.CheckBox +import io.github.composefluent.component.DropDownButton +import io.github.composefluent.component.HyperlinkButton +import io.github.composefluent.component.InfoBar +import io.github.composefluent.component.InfoBarDefaults +import io.github.composefluent.component.MenuFlyoutContainer +import io.github.composefluent.component.MenuFlyoutItem +import io.github.composefluent.component.InfoBarSeverity +import io.github.composefluent.component.Text +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.source.generated.FluentSourceFile + +@Component(description = "An inline message to display app-wide status change information.") +@Composable +fun InfoBarScreen() { + GalleryPage( + title = "InfoBar", + description = "Use an InfoBar control when a user should be informed of, acknowledge, " + + "or take action on a changed application state. " + + "By default the notification will remain in the content area until closed by the user" + + " but will not necessarily break user flow.", + componentPath = FluentSourceFile.InfoBar, + galleryPath = ComponentPagePath.InfoBarScreen + ) { + var basicSampleVisible by remember { mutableStateOf(true) } + var basicSampleSeverity by remember { mutableStateOf(InfoBarSeverity.Informational) } + Section( + title = "A closable InfoBar with options to change its Severity.", + sourceCode = sourceCodeOfBasicInfoBarSample, + content = { + BasicInfoBarSample( + severity = basicSampleSeverity, + visible = basicSampleVisible, + onDismiss = { basicSampleVisible = false } + ) + }, + options = { + CheckBox( + checked = basicSampleVisible, + onCheckStateChange = { basicSampleVisible = it }, + label = "Is Open" + ) + Text("Severity") + MenuFlyoutContainer( + flyout = { + InfoBarSeverity.entries.forEach { severity -> + MenuFlyoutItem( + selected = basicSampleSeverity == severity, + onSelectedChanged = { + basicSampleSeverity = severity + isFlyoutVisible = false + }, + text = { Text(severity.name) } + ) + } + }, + content = { + DropDownButton( + content = { Text(basicSampleSeverity.name) }, + onClick = { isFlyoutVisible = true }, + ) + } + ) + }, + ) + var secondarySampleVisible by remember { mutableStateOf(true) } + var secondarySampleMessageLong by remember { mutableStateOf(true) } + var secondarySampleActionHyperLink by remember { mutableStateOf(false) } + val secondarySampleMessage by remember { + derivedStateOf { + if (secondarySampleMessageLong) { + "A long essential app message for your users to be informed of, acknowledge, or take action on. " + + "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin dapibus dolor vitae justo rutrum," + + " ut lobortis nibh mattis. Aenean id elit commodo, semper felis nec." + } else { + "short essential app message." + } + } + } + Section( + title = "A closable InfoBar with a long or short message and various buttons", + sourceCode = sourceCodeOfInfoBarSampleWithMessageAndAction, + content = { + InfoBarSampleWithMessageAndAction( + visible = secondarySampleVisible, + onDismiss = { secondarySampleVisible = false }, + message = secondarySampleMessage, + isHyperLinkAction = secondarySampleActionHyperLink + ) + }, + options = { + CheckBox( + checked = secondarySampleVisible, + onCheckStateChange = { secondarySampleVisible = it }, + label = "Is Open" + ) + Text("Message Length") + MenuFlyoutContainer( + flyout = { + MenuFlyoutItem( + selected = secondarySampleMessageLong, + onSelectedChanged = { + secondarySampleMessageLong = true + isFlyoutVisible = false + }, + text = { Text("Long") } + ) + + MenuFlyoutItem( + selected = !secondarySampleMessageLong, + onSelectedChanged = { + secondarySampleMessageLong = false + isFlyoutVisible = false + }, + text = { Text("Short") } + ) + }, + content = { + DropDownButton( + content = { Text(if (secondarySampleMessageLong) "Long" else "Short") }, + onClick = { isFlyoutVisible = true }, + ) + } + ) + Text("Action Button") + MenuFlyoutContainer( + flyout = { + MenuFlyoutItem( + selected = secondarySampleActionHyperLink == null, + onSelectedChanged = { + secondarySampleActionHyperLink = null + isFlyoutVisible = false + }, + text = { Text("None") } + ) + MenuFlyoutItem( + selected = secondarySampleActionHyperLink == false, + onSelectedChanged = { + secondarySampleActionHyperLink = false + isFlyoutVisible = false + }, + text = { Text("Button") } + ) + MenuFlyoutItem( + selected = secondarySampleActionHyperLink == true, + onSelectedChanged = { + secondarySampleActionHyperLink = true + isFlyoutVisible = false + }, + text = { Text("Hyperlink") } + ) + }, + content = { + DropDownButton( + content = { + Text( + when (secondarySampleActionHyperLink) { + null -> "None" + true -> "Hyperlink" + false -> "Button" + } + ) + }, + onClick = { isFlyoutVisible = true }, + ) + } + ) + } + ) + + var tertiarySampleVisible by remember { mutableStateOf(true) } + var tertiarySampleIconVisible by remember { mutableStateOf(true) } + var tertiarySampleCloseVisible by remember { mutableStateOf(true) } + Section( + title = "A closable InfoBar with options to display the close button and icon", + sourceCode = sourceCodeOfInfoBarSampleWithOptions, + content = { + InfoBarSampleWithOptions( + visible = tertiarySampleVisible, + onDismiss = { tertiarySampleVisible = false }, + iconVisible = tertiarySampleIconVisible, + closeVisible = tertiarySampleCloseVisible + ) + }, + options = { + CheckBox( + checked = tertiarySampleVisible, + onCheckStateChange = { tertiarySampleVisible = it }, + label = "Is Open" + ) + CheckBox( + checked = tertiarySampleIconVisible, + onCheckStateChange = { tertiarySampleIconVisible = it }, + label = "Is Icon Visible" + ) + CheckBox( + checked = tertiarySampleCloseVisible, + onCheckStateChange = { tertiarySampleCloseVisible = it }, + label = "Is Closable" + ) + } + ) + } +} + +@Sample +@Composable +private fun BasicInfoBarSample( + severity: InfoBarSeverity = InfoBarSeverity.Informational, + visible: Boolean = true, + onDismiss: () -> Unit = {} +) { + if (visible) { + InfoBar( + title = { + Text("Title") + }, + message = { + Text( + text = "Essential app message for your users to be informed of, acknowledge, or take action on." + ) + }, + closeAction = { InfoBarDefaults.CloseActionButton(onClick = onDismiss) }, + severity = severity + ) + } +} + +@Sample +@Composable +private fun InfoBarSampleWithMessageAndAction( + visible: Boolean = true, + onDismiss: () -> Unit = {}, + message: String, + isHyperLinkAction: Boolean? +) { + if (visible) { + InfoBar( + title = { Text("Title") }, + message = { Text(text = message) }, + closeAction = { InfoBarDefaults.CloseActionButton(onClick = onDismiss) }, + action = when (isHyperLinkAction) { + null -> null + true -> { + { HyperlinkButton(onClick = {}, content = { Text("Action") }) } + } + + false -> { + { Button(onClick = {}, content = { Text("Action") }) } + } + } + ) + } +} + +@Sample +@Composable +private fun InfoBarSampleWithOptions( + visible: Boolean = true, + onDismiss: () -> Unit = {}, + iconVisible: Boolean, + closeVisible: Boolean +) { + val colors = InfoBarDefaults.colors() + if (visible) { + InfoBar( + title = { Text("Title") }, + message = { Text(text = "Essential app message for your users to be informed of, acknowledge, or take action on.") }, + colors = colors, + closeAction = if (closeVisible) { + { InfoBarDefaults.CloseActionButton(onClick = onDismiss) } + } else { + null + }, + icon = if (iconVisible) { + { InfoBarDefaults.Badge() } + } else { + null + } + ) + } +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/status/ProgressBarScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/status/ProgressBarScreen.kt similarity index 78% rename from gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/status/ProgressBarScreen.kt rename to gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/status/ProgressBarScreen.kt index da464f8c..9fae675b 100644 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/status/ProgressBarScreen.kt +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/status/ProgressBarScreen.kt @@ -1,16 +1,16 @@ -package com.konyaco.fluent.gallery.screen.status +package io.github.composefluent.gallery.screen.status import androidx.compose.runtime.Composable import androidx.compose.runtime.getValue import androidx.compose.runtime.mutableStateOf import androidx.compose.runtime.remember import androidx.compose.runtime.setValue -import com.konyaco.fluent.component.ProgressBar -import com.konyaco.fluent.gallery.annotation.Component -import com.konyaco.fluent.gallery.annotation.Sample -import com.konyaco.fluent.gallery.component.ComponentPagePath -import com.konyaco.fluent.gallery.component.GalleryPage -import com.konyaco.fluent.source.generated.FluentSourceFile +import io.github.composefluent.component.ProgressBar +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.source.generated.FluentSourceFile @Component( index = 2, diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/status/ProgressRingScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/status/ProgressRingScreen.kt similarity index 78% rename from gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/status/ProgressRingScreen.kt rename to gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/status/ProgressRingScreen.kt index 3e9a98ac..5cd6506c 100644 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/status/ProgressRingScreen.kt +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/status/ProgressRingScreen.kt @@ -1,16 +1,16 @@ -package com.konyaco.fluent.gallery.screen.status +package io.github.composefluent.gallery.screen.status import androidx.compose.runtime.Composable import androidx.compose.runtime.getValue import androidx.compose.runtime.mutableStateOf import androidx.compose.runtime.remember import androidx.compose.runtime.setValue -import com.konyaco.fluent.component.ProgressRing -import com.konyaco.fluent.gallery.annotation.Component -import com.konyaco.fluent.gallery.annotation.Sample -import com.konyaco.fluent.gallery.component.ComponentPagePath -import com.konyaco.fluent.gallery.component.GalleryPage -import com.konyaco.fluent.source.generated.FluentSourceFile +import io.github.composefluent.component.ProgressRing +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.source.generated.FluentSourceFile @Component( index = 2, diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/status/TooltipScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/status/TooltipScreen.kt new file mode 100644 index 00000000..4f21dc54 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/status/TooltipScreen.kt @@ -0,0 +1,72 @@ +@file:OptIn(ExperimentalFoundationApi::class, ExperimentalFluentApi::class) + +package io.github.composefluent.gallery.screen.status + +import androidx.compose.foundation.ExperimentalFoundationApi +import androidx.compose.runtime.Composable +import androidx.compose.ui.unit.dp +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.component.Button +import io.github.composefluent.component.Text +import io.github.composefluent.component.TooltipBox +import io.github.composefluent.component.rememberTooltipPositionProvider +import io.github.composefluent.component.rememberTooltipState +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.source.generated.FluentSourceFile + +@Component(description = "Displays information for an element in a pop-up window.") +@Composable +fun TooltipScreen() { + GalleryPage( + title = "Tooltip", + description = "A Tooltip shows more information about a UI element. " + + "You might show information about what the element does, or what the user should do. " + + "The ToolTip is shown when a user hovers over or presses and holds the Ul element.", + componentPath = FluentSourceFile.TooltipBox, + galleryPath = ComponentPagePath.TooltipScreen + ) { + Section( + title = "Basic TooltipBox", + sourceCode = sourceCodeOfBasicTooltipBoxSample, + content = { BasicTooltipBoxSample() } + ) + + Section( + title = "TooltipBox with anchor padding", + sourceCode = sourceCodeOfTooltipBoxWithAnchorPaddingSample, + content = { TooltipBoxWithAnchorPaddingSample() } + ) + } +} + +@Sample +@Composable +private fun BasicTooltipBoxSample() { + TooltipBox( + tooltip = { Text("Simple Tooltip") } + ) { + Button( + onClick = {}, + content = { Text("Button with a simple Tooltip") } + ) + } +} + +@Sample +@Composable +private fun TooltipBoxWithAnchorPaddingSample() { + val state = rememberTooltipState() + TooltipBox( + state = state, + tooltip = { Text("Offset Tooltip.") }, + positionProvider = rememberTooltipPositionProvider( + anchorPadding = (-80).dp, + state = state + ) + ) { + Text("TextBlock with an offset ToolTip.") + } +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/styles/MaterialContainerScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/styles/MaterialContainerScreen.kt new file mode 100644 index 00000000..25520223 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/styles/MaterialContainerScreen.kt @@ -0,0 +1,231 @@ +@file:OptIn(ExperimentalFluentApi::class) + +package io.github.composefluent.gallery.screen.styles + +import androidx.compose.foundation.background +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.defaultMinSize +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.layout.width +import androidx.compose.foundation.layout.widthIn +import androidx.compose.foundation.shape.CircleShape +import androidx.compose.runtime.Composable +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.text.AnnotatedString +import androidx.compose.ui.text.ExperimentalTextApi +import androidx.compose.ui.text.LinkAnnotation +import androidx.compose.ui.text.SpanStyle +import androidx.compose.ui.text.buildAnnotatedString +import androidx.compose.ui.text.withLink +import androidx.compose.ui.unit.dp +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.FluentTheme +import io.github.composefluent.background.Material +import io.github.composefluent.background.MaterialContainer +import io.github.composefluent.background.MaterialContainerScope +import io.github.composefluent.background.MaterialDefaults +import io.github.composefluent.component.ColorPicker +import io.github.composefluent.component.DropDownButton +import io.github.composefluent.component.FlyoutContainer +import io.github.composefluent.component.RadioButton +import io.github.composefluent.component.Slider +import io.github.composefluent.component.Text +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.source.generated.FluentSourceFile + +@OptIn(ExperimentalTextApi::class, ExperimentalStdlibApi::class) +@Component( + index = 3, + description = "A translucent material recommended for panel backgrounds.", +) +@Composable +fun MaterialContainerScreen() { + val linkTextColor = FluentTheme.colors.text.accent.primary + GalleryPage( + title = AnnotatedString("MaterialContainer"), + description = buildAnnotatedString { + append("A translucent material recommended for panel backgrounds. ") + append("supported by ") + withLink(LinkAnnotation.Url("https://github.com/chrisbanes/haze")) { + append(AnnotatedString("haze", spanStyle = SpanStyle(color = linkTextColor))) + } + append(".") + }, + componentPath = FluentSourceFile.Material, + galleryPath = ComponentPagePath.MaterialContainerScreen + ) { + Section( + title = "A Basic Acrylic sample", + sourceCode = sourceCodeOfBasicAcrylicSample, + content = { BasicAcrylicSample() } + ) + + val index = remember { mutableStateOf(2) } + + Section( + title = "Default Material", + sourceCode = sourceCodeOfDefaultMaterialSample, + content = { DefaultMaterialSample(index.value) }, + options = { + repeat(7) { + RadioButton( + selected = index.value == it, + onClick = { index.value = it }, + label = when (it) { + 0 -> "Thin Acrylic" + 1 -> "Acrylic Base" + 3 -> "Accent Acrylic Base" + 4 -> "Accent Acrylic Default" + 5 -> "Mica" + 6 -> "Mica Alt" + else -> "Acrylic Default" + } + ) + + } + } + ) + + val tintOpacity = remember { mutableStateOf(0.8f) } + val luminosityOpacity = remember { mutableStateOf(0.8f) } + val color = remember { mutableStateOf(Color.White) } + + Section( + title = "Custom Acrylic Material", + sourceCode = sourceCodeOfCustomMaterialSample, + content = { + CustomMaterialSample( + color = color.value, + tintOpacity = tintOpacity.value, + luminosityOpacity = luminosityOpacity.value + ) + }, + options = { + Text("Tint Color") + FlyoutContainer( + content = { + DropDownButton( + content = { + Box(modifier = Modifier.size(16.dp).background(color.value)) + val hexFormat = remember { + HexFormat { + number { + prefix = "#" + } + upperCase = true + } + } + Text( + color.value.value.toHexString(hexFormat).substring(0..8), + modifier = Modifier.widthIn(90.dp) + ) + }, + onClick = { + isFlyoutVisible = true + } + ) + }, + flyout = { + ColorPicker( + color = color.value, + onSelectedColorChanged = { + color.value = it + } + ) + } + ) + Text("Tint Opacity") + Slider(value = tintOpacity.value, onValueChange = { tintOpacity.value = it }, modifier = Modifier.width(200.dp).height(32.dp)) + Text("Luminosity Opacity") + Slider(value = luminosityOpacity.value, onValueChange = { luminosityOpacity.value = it }, modifier = Modifier.width(200.dp).height(32.dp)) + + } + ) + } +} + +@Sample +@Composable +private fun BasicAcrylicSample() { + SampleContainer { + Material( + material = MaterialDefaults.acrylicDefault(), + modifier = Modifier.align(Alignment.Center) + ) { + MaterialOverlayContent() + } + } +} + +@Sample +@Composable +private fun DefaultMaterialSample(index: Int) { + SampleContainer { + Material( + material = when (index) { + 0 -> MaterialDefaults.thinAcrylic() + 1 -> MaterialDefaults.acrylicBase() + 3 -> MaterialDefaults.accentAcrylicBase() + 4 -> MaterialDefaults.accentAcrylicDefault() + 5 -> MaterialDefaults.mica() + 6 -> MaterialDefaults.micaAlt() + else -> MaterialDefaults.acrylicDefault() + }, + modifier = Modifier.align(Alignment.Center) + ) { + MaterialOverlayContent() + } + } +} + +@Sample +@Composable +private fun CustomMaterialSample( + color: Color, + tintOpacity: Float, + luminosityOpacity: Float +) { + SampleContainer { + Material( + material = MaterialDefaults.customAcrylic( + isDark = FluentTheme.colors.darkMode, + tint = color, + lightTintOpacity = tintOpacity, + lightLuminosityOpacity = luminosityOpacity, + backgroundColor = FluentTheme.colors.background.acrylic.default + ), + modifier = Modifier.align(Alignment.Center) + ) { + MaterialOverlayContent() + } + } +} + +@Composable +private fun MaterialOverlayContent() { + Box(Modifier.width(336.dp).height(226.dp)) +} + +@Composable +private fun SampleContainer(content: @Composable MaterialContainerScope.() -> Unit) { + MaterialContainer { + Box(modifier = Modifier.defaultMinSize(minWidth = 360.dp).height(250.dp).behindMaterial()) { + Box(Modifier.align(Alignment.TopStart).size(100.dp, 200.dp).background(Color.Cyan)) + Box( + Modifier.align(Alignment.Center).size(152.dp) + .background(Color.Magenta, shape = CircleShape) + ) + Box(Modifier.align(Alignment.BottomEnd).size(80.dp, 100.dp).background(Color.Yellow)) + + } + content() + } +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/test/TestComponentScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/test/TestComponentScreen.kt new file mode 100644 index 00000000..2875c30a --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/test/TestComponentScreen.kt @@ -0,0 +1,500 @@ +package io.github.composefluent.gallery.screen.test + +import androidx.compose.foundation.BorderStroke +import androidx.compose.foundation.background +import androidx.compose.foundation.horizontalScroll +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.Spacer +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.layout.width +import androidx.compose.foundation.layout.widthIn +import androidx.compose.foundation.lazy.items +import androidx.compose.foundation.rememberScrollState +import androidx.compose.foundation.shape.CircleShape +import androidx.compose.foundation.shape.CutCornerShape +import androidx.compose.foundation.verticalScroll +import androidx.compose.runtime.Composable +import androidx.compose.runtime.CompositionLocalProvider +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateListOf +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.draw.alpha +import androidx.compose.ui.platform.LocalDensity +import androidx.compose.ui.text.input.TextFieldValue +import androidx.compose.ui.unit.Density +import androidx.compose.ui.unit.dp +import io.github.composefluent.FluentTheme +import io.github.composefluent.LocalContentColor +import io.github.composefluent.background.BackgroundSizing +import io.github.composefluent.background.Layer +import io.github.composefluent.component.AccentButton +import io.github.composefluent.component.Button +import io.github.composefluent.component.CheckBox +import io.github.composefluent.component.ContentDialog +import io.github.composefluent.component.DropdownMenu +import io.github.composefluent.component.DropdownMenuItem +import io.github.composefluent.component.FlyoutContainer +import io.github.composefluent.component.FlyoutPlacement +import io.github.composefluent.component.Icon +import io.github.composefluent.component.MenuFlyoutContainer +import io.github.composefluent.component.MenuFlyoutItem +import io.github.composefluent.component.MenuFlyoutSeparator +import io.github.composefluent.component.ProgressBar +import io.github.composefluent.component.ProgressRing +import io.github.composefluent.component.ProgressRingSize +import io.github.composefluent.component.RadioButton +import io.github.composefluent.component.ScrollbarContainer +import io.github.composefluent.component.Slider +import io.github.composefluent.component.SubtleButton +import io.github.composefluent.component.Switcher +import io.github.composefluent.component.TabItem +import io.github.composefluent.component.TabRow +import io.github.composefluent.component.TabViewDefaults +import io.github.composefluent.component.Text +import io.github.composefluent.component.TextField +import io.github.composefluent.component.rememberScrollbarAdapter +import io.github.composefluent.gallery.LocalStore +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.regular.Add +import io.github.composefluent.icons.regular.ArrowLeft +import io.github.composefluent.icons.regular.Checkmark +import io.github.composefluent.icons.regular.ClipboardMore +import io.github.composefluent.icons.regular.Delete +import io.github.composefluent.icons.regular.Dismiss +import io.github.composefluent.icons.regular.List +import io.github.composefluent.icons.regular.Navigation +import io.github.composefluent.surface.Card + +@Composable +fun TestComponentScreen() { + var displayDialog by remember { mutableStateOf(false) } + val density = LocalDensity.current + var scale by remember(density) { mutableStateOf(density.density) } + val store = LocalStore.current + + Column( + modifier = Modifier.verticalScroll(rememberScrollState()).padding(16.dp), + verticalArrangement = Arrangement.spacedBy(8.dp) + ) { + Controller( + scale = scale, + onScaleChange = { scale = it }, + darkMode = store.darkMode, + onDarkModeChange = { store.darkMode = it }, + acrylicPopupEnabled = store.enabledAcrylicPopup, + onAcrylicPopupChange = { store.enabledAcrylicPopup = it }, + compactModeEnabled = store.compactMode, + onCompactModeChange = { store.compactMode = it } + ) + + CompositionLocalProvider(LocalDensity provides Density(scale)) { + Content() + } + + AccentButton(onClick = { + displayDialog = true + }) { Text("Display Dialog") } + + Box { + var expanded by remember { mutableStateOf(false) } + + Button(onClick = { + expanded = true + }) { + Text("Show DropdownMenu") + } + + fun close() { + expanded = false + } + + DropdownMenu(expanded, ::close) { + DropdownMenuItem(::close) { Text("Option 1") } + DropdownMenuItem(::close) { Text("Option 2") } + DropdownMenuItem(::close) { Text("Option 3") } + } + } + var currentPlacement by remember { + mutableStateOf(FlyoutPlacement.Auto) + } + Row { + + FlyoutContainer( + flyout = { + Text("this is a flyout") + }, + placement = currentPlacement, + content = { + Button( + onClick = { isFlyoutVisible = true } + ) { + Text("Open Flyout") + } + } + ) + Spacer(Modifier.width(8.dp)) + Box { + var isFlyoutPlacementDropdownMenuOpened by remember { + mutableStateOf(false) + } + Button(onClick = { + isFlyoutPlacementDropdownMenuOpened = true + }) { + Text("Flyout placement") + } + val item = @Composable { placement: FlyoutPlacement -> + DropdownMenuItem({ + currentPlacement = placement + isFlyoutPlacementDropdownMenuOpened = false + }) { + Icon( + Icons.Default.Checkmark, + contentDescription = null, + modifier = Modifier.padding(end = 8.dp) + .alpha(if (placement == currentPlacement) 1f else 0f) + ) + Text(text = placement.toString()) + } + } + DropdownMenu( + isFlyoutPlacementDropdownMenuOpened, + { isFlyoutPlacementDropdownMenuOpened = false }) { + FlyoutPlacement.entries.forEach { item(it) } + } + } + } + + MenuFlyoutContainer( + placement = currentPlacement, + flyout = { + MenuFlyoutItem( + onClick = { + + }, + icon = { + Icon(Icons.Default.Delete, contentDescription = null) + }, + text = { + Text("Delete") + } + ) + MenuFlyoutSeparator() + MenuFlyoutItem( + onClick = { + + }, + icon = { + Icon(Icons.Default.Add, contentDescription = null) + }, + text = { + Text("Add") + } + ) + MenuFlyoutSeparator() + MenuFlyoutItem( + onClick = {}, + icon = {}, + text = { Text("Test") } + ) + MenuFlyoutItem( + items = { + MenuFlyoutItem( + onClick = { + + }, + icon = { + Icon(Icons.Default.Add, contentDescription = null) + }, + text = { + Text("Add") + } + ) + }, + icon = { + Icon(Icons.Default.ClipboardMore, contentDescription = null) + }, + text = { + Text("More") + } + ) + }, + content = { + Button( + onClick = { isFlyoutVisible = !isFlyoutVisible } + ) { + Text("Open MenuFlyout") + } + } + ) + } + + ContentDialog( + title = "This is an example dialog", + visible = displayDialog, + primaryButtonText = "Confirm", + closeButtonText = "Cancel", + onButtonClick = { displayDialog = false }, + content = { + Text( + "This is body text. Windows 11 marks a visual evolution of the operating system. We have evolved our design language alongside with Fluent to create a design which is human, universal and truly feels like Windows. \n" + + "\n" + + "The design principles below have guided us throughout the journey of making Windows the best-in-class implementation of Fluent.\n" + ) + } + ) +} + + +@Composable +private fun Controller( + scale: Float, + onScaleChange: (Float) -> Unit, + darkMode: Boolean, + onDarkModeChange: (Boolean) -> Unit, + acrylicPopupEnabled: Boolean, + onAcrylicPopupChange: (Boolean) -> Unit, + compactModeEnabled: Boolean, + onCompactModeChange: (Boolean) -> Unit +) { + Row( + verticalAlignment = Alignment.CenterVertically, + horizontalArrangement = Arrangement.spacedBy(8.dp) + ) { + Text("Scale: ${scale.toString().take(4)}") + val density = LocalDensity.current + Button(onClick = { onScaleChange(density.density) }) { Text("Reset") } + Switcher(darkMode, text = "Dark Mode", onCheckStateChange = { onDarkModeChange(it) }) + Switcher( + acrylicPopupEnabled, + text = "Acrylic Popup", + onCheckStateChange = { onAcrylicPopupChange(it) }) + Switcher( + compactModeEnabled, + text = "Compact Mode", + onCheckStateChange = { onCompactModeChange(it) }) + } + Slider( + modifier = Modifier.width(200.dp), + value = scale, + onValueChange = { onScaleChange(it) }, + valueRange = 1f..10f + ) +} + +@Composable +private fun Content() { + + var sliderValue by remember { mutableStateOf(0.5f) } + Slider( + modifier = Modifier.width(200.dp), + value = sliderValue, + onValueChange = { sliderValue = it }, + ) + Buttons() + + Controls() + + val layerScrollState = rememberScrollState() + ScrollbarContainer( + adapter = rememberScrollbarAdapter(layerScrollState), + isVertical = false + ) { + Row(modifier = Modifier.padding(bottom = 8.dp).horizontalScroll(layerScrollState)) { + Box { + Box(Modifier.size(32.dp).background(FluentTheme.colors.fillAccent.default)) + } + + Layer( + shape = FluentTheme.shapes.control, + color = FluentTheme.colors.fillAccent.default, + border = BorderStroke(1.dp, FluentTheme.colors.stroke.control.default), + content = { + Box(Modifier.size(32.dp)) + }, + backgroundSizing = BackgroundSizing.InnerBorderEdge + ) + Layer( + shape = FluentTheme.shapes.control, + color = FluentTheme.colors.fillAccent.default, + border = BorderStroke(1.dp, FluentTheme.colors.stroke.control.default), + content = { + Box(Modifier.size(32.dp)) + }, + backgroundSizing = BackgroundSizing.OuterBorderEdge + ) + + Layer( + shape = CutCornerShape(4.dp), + color = FluentTheme.colors.fillAccent.default, + border = BorderStroke(1.dp, FluentTheme.colors.stroke.control.default.copy(0.5f)), + content = { + Box(Modifier.size(32.dp)) + }, + backgroundSizing = BackgroundSizing.InnerBorderEdge + ) + Layer( + shape = CutCornerShape(4.dp), + color = FluentTheme.colors.fillAccent.default, + border = BorderStroke(1.dp, FluentTheme.colors.stroke.control.default.copy(0.5f)), + content = { + Box(Modifier.size(32.dp)) + }, + backgroundSizing = BackgroundSizing.OuterBorderEdge + ) + + Layer( + shape = CircleShape, + color = FluentTheme.colors.fillAccent.default, + border = BorderStroke(1.dp, FluentTheme.colors.stroke.control.default), + content = { + Box(Modifier.size(32.dp)) + }, + backgroundSizing = BackgroundSizing.InnerBorderEdge + ) + Layer( + shape = CircleShape, + color = FluentTheme.colors.fillAccent.default, + border = BorderStroke(1.dp, FluentTheme.colors.stroke.control.default), + content = { + Box(Modifier.size(32.dp)) + }, + backgroundSizing = BackgroundSizing.OuterBorderEdge + ) + + Card(Modifier) { + Box(Modifier.size(32.dp)) + } + } + } + var value by remember { mutableStateOf(TextFieldValue("Hello Fluent!")) } + TextField(value, onValueChange = { value = it }) + TextField( + value = value, onValueChange = { value = it }, enabled = false, + header = { Text("With Header") } + ) + + // ProgressRings + Row( + horizontalArrangement = Arrangement.spacedBy(32.dp), + verticalAlignment = Alignment.CenterVertically + ) { + ProgressRing(size = ProgressRingSize.Medium) + ProgressRing(progress = sliderValue) + AccentButton(onClick = {}) { + ProgressRing(size = ProgressRingSize.Small, color = LocalContentColor.current) + Text("Small") + } + } + + ProgressBar(sliderValue) + ProgressBar() + + Row(horizontalArrangement = Arrangement.spacedBy(8.dp)) { + for (imageVector in icons) { + Icon( + modifier = Modifier.size(18.dp), + imageVector = imageVector, contentDescription = null + ) + } + } + + val selectedKey = remember { mutableStateOf(0) } + val tabItems = remember { mutableStateListOf(0, 1, 2, 3, 4) } + TabRow( + selectedKey = { selectedKey.value }, + borderColor = FluentTheme.colors.stroke.card.default, + ) { + items(tabItems, key = { it }) { index -> + TabItem( + selected = index == selectedKey.value, + onSelectedChanged = { selectedKey.value = index }, + content = { Text(index.toString()) }, + colors = if (index == selectedKey.value) { + TabViewDefaults.selectedItemTitleBarColors() + } else { + TabViewDefaults.defaultItemTitleBarColors() + }, + endDividerVisible = index != selectedKey.value - 1, + modifier = Modifier.widthIn(60.dp) + ) + } + item { + TabViewDefaults.TabAddButton( + onClick = { tabItems.add(tabItems.size) } + ) + } + } +} + +@Composable +private fun Controls() { + var checked by remember { mutableStateOf(false) } + Switcher(checked, text = null, onCheckStateChange = { checked = it }) + + var checked2 by remember { mutableStateOf(true) } + Switcher(checked2, text = "With Label", onCheckStateChange = { checked2 = it }) + + var checked3 by remember { mutableStateOf(true) } + Switcher( + checked3, + text = "Before Label", + textBefore = true, + onCheckStateChange = { checked3 = it } + ) + + var checked4 by remember { mutableStateOf(false) } + CheckBox(checked4) { checked4 = it } + + var checked5 by remember { mutableStateOf(true) } + CheckBox(checked5, label = "With Label") { checked5 = it } + + var selectedRadio by remember { mutableStateOf(0) } + RadioButton(selectedRadio == 0, onClick = { selectedRadio = 0 }) + RadioButton(selectedRadio == 1, onClick = { selectedRadio = 1 }, label = "With Label") +} + +@Composable +private fun Buttons() { + var text by remember { mutableStateOf("Hello World") } + Row(horizontalArrangement = Arrangement.spacedBy(8.dp)) { + val onClick = { text = "Hello, Fluent Design!" } + Button(onClick) { Text(text) } + + AccentButton(onClick) { + Icon(Icons.Default.Checkmark, contentDescription = null) + Text(text) + } + + SubtleButton(onClick) { + Text("Text Button") + } + } + Row(horizontalArrangement = Arrangement.spacedBy(8.dp)) { + AccentButton({}, iconOnly = true) { + Icon(Icons.Default.Navigation, contentDescription = null) + } + Button({}, iconOnly = true) { + Icon(Icons.Default.Navigation, contentDescription = null) + } + SubtleButton({}, iconOnly = true) { + Icon(Icons.Default.Navigation, contentDescription = null) + } + } +} + +private val icons = arrayOf( + Icons.Default.Add, + Icons.Default.Delete, + Icons.Default.Dismiss, + Icons.Default.ArrowLeft, + Icons.Default.Navigation, + Icons.Default.List +) \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/text/AutoSuggestBoxScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/text/AutoSuggestBoxScreen.kt new file mode 100644 index 00000000..041493f4 --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/text/AutoSuggestBoxScreen.kt @@ -0,0 +1,90 @@ +package io.github.composefluent.gallery.screen.text + +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.widthIn +import androidx.compose.foundation.lazy.items +import androidx.compose.runtime.Composable +import androidx.compose.runtime.collectAsState +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import androidx.compose.runtime.snapshotFlow +import androidx.compose.ui.Modifier +import androidx.compose.ui.unit.dp +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.component.AutoSuggestBoxDefaults +import io.github.composefluent.component.AutoSuggestionBox +import io.github.composefluent.component.ListItem +import io.github.composefluent.component.Text +import io.github.composefluent.component.TextField +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.gallery.component.flatMapComponents +import io.github.composefluent.source.generated.FluentSourceFile +import kotlinx.coroutines.flow.map + +@Component(index = 0, description = "A control to provide suggestions as a user is typing.") +@Composable +fun AutoSuggestBoxScreen() { + GalleryPage( + title = "AutoSuggestBox", + description = "A text control that makes suggestions to users as they type. " + + "The app is notified when text has been changed by the user " + + "and is responsible for providing relevant suggestions for this control to display.", + componentPath = FluentSourceFile.AutoSuggestBox, + galleryPath = ComponentPagePath.AutoSuggestBoxScreen + ) { + Section( + title = "Basic AutoSuggestBox Sample", + sourceCode = sourceCodeOfBasicAutoSuggestBoxSample, + content = { BasicAutoSuggestBoxSample() } + ) + } +} + +@Sample +@OptIn(ExperimentalFluentApi::class) +@Composable +private fun BasicAutoSuggestBoxSample() { + var expanded by remember { mutableStateOf(false) } + var keyword by remember { mutableStateOf("") } + AutoSuggestionBox( + expanded = expanded, + onExpandedChange = { expanded = it } + ) { + TextField( + value = keyword, + onValueChange = { keyword = it }, + shape = AutoSuggestBoxDefaults.textFieldShape(expanded), + modifier = Modifier.widthIn(300.dp).flyoutAnchor() + ) + val searchResult = remember(flatMapComponents) { + snapshotFlow { keyword }.map { + flatMapComponents.filter { item -> + item.name.contains( + it, + ignoreCase = true + ) || item.description.contains(it, ignoreCase = true) + } + } + }.collectAsState(flatMapComponents) + + AutoSuggestBoxDefaults.suggestFlyout( + expanded = expanded, + onDismissRequest = { expanded = false }, + itemsContent = { + items(items = searchResult.value) { + ListItem( + onClick = { expanded = false }, + text = { Text(it.name, maxLines = 1) }, + modifier = Modifier.fillMaxWidth() + ) + } + }, + modifier = Modifier.flyoutSize(matchAnchorWidth = true) + ) + } +} \ No newline at end of file diff --git a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/text/TextBlockScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/text/TextBlockScreen.kt similarity index 76% rename from gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/text/TextBlockScreen.kt rename to gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/text/TextBlockScreen.kt index 127dcca5..11d9e422 100644 --- a/gallery/src/commonMain/kotlin/com/konyaco/fluent/gallery/screen/text/TextBlockScreen.kt +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/text/TextBlockScreen.kt @@ -1,13 +1,13 @@ -package com.konyaco.fluent.gallery.screen.text +package io.github.composefluent.gallery.screen.text import androidx.compose.runtime.Composable import androidx.compose.ui.text.font.FontFamily -import com.konyaco.fluent.component.Text -import com.konyaco.fluent.gallery.annotation.Component -import com.konyaco.fluent.gallery.annotation.Sample -import com.konyaco.fluent.gallery.component.ComponentPagePath -import com.konyaco.fluent.gallery.component.GalleryPage -import com.konyaco.fluent.source.generated.FluentSourceFile +import io.github.composefluent.component.Text +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.source.generated.FluentSourceFile @Component( index = 5, diff --git a/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/text/TextBoxScreen.kt b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/text/TextBoxScreen.kt new file mode 100644 index 00000000..eb5ba55f --- /dev/null +++ b/gallery/src/commonMain/kotlin/io/github/composefluent/gallery/screen/text/TextBoxScreen.kt @@ -0,0 +1,89 @@ +package io.github.composefluent.gallery.screen.text + +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.text.input.rememberTextFieldState +import androidx.compose.runtime.Composable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import androidx.compose.ui.text.input.TextFieldValue +import androidx.compose.ui.unit.dp +import io.github.composefluent.component.SecureTextField +import io.github.composefluent.component.Text +import io.github.composefluent.component.TextField +import io.github.composefluent.gallery.annotation.Component +import io.github.composefluent.gallery.annotation.Sample +import io.github.composefluent.gallery.component.ComponentPagePath +import io.github.composefluent.gallery.component.GalleryPage +import io.github.composefluent.source.generated.FluentSourceFile + +@Component( + index = 6, + description = "A single-line or multi-line plain text field." +) +@Composable +fun TextBoxScreen() { + GalleryPage( + title = "TextBox", + description = "Use a TextBox to let a user enter simple text input in your app. You can add a header and placeholder text to let the user know that the TextBox is for, and you can customize it in other ways.", + componentPath = FluentSourceFile.TextField, + galleryPath = ComponentPagePath.TextBoxScreen + ) { + Section( + title = "A simple TextBox.", + sourceCode = sourceCodeOfTextBoxSample, + content = { TextBoxSample() } + ) + Section( + title = "A TextBox with a header and placeholder text.", + sourceCode = sourceCodeOfTextBoxHeaderSample, + content = { TextBoxHeaderSample() } + ) + + Section( + title = "A SecureTextBox.", + sourceCode = sourceCodeOfSecureTextBoxSample, + content = { SecureTextBoxSample() } + ) + } +} + +@Sample +@Composable +private fun TextBoxSample() { + var value by remember { mutableStateOf(TextFieldValue()) } + TextField(value, onValueChange = { value = it }) +} + +@Sample +@Composable +private fun TextBoxHeaderSample() { + var value by remember { mutableStateOf(TextFieldValue()) } + TextField( + value = value, + onValueChange = { value = it }, + header = { Text("Enter your name:") }, + // placeholder = { Text("Name") }, + ) + // TODO: Support placeholder +} + +@Sample +@Composable +private fun SecureTextBoxSample() { + Column( + verticalArrangement = Arrangement.spacedBy(8.dp) + ) { + TextField( + state = rememberTextFieldState(), + header = { Text("Username") } + ) + SecureTextField( + state = rememberTextFieldState(), + header = { Text("Password") } + ) + } + +} \ No newline at end of file diff --git a/gallery/src/desktopMain/kotlin/com/konyaco/fluent/gallery/Main.kt b/gallery/src/desktopMain/kotlin/com/konyaco/fluent/gallery/Main.kt deleted file mode 100644 index 47812144..00000000 --- a/gallery/src/desktopMain/kotlin/com/konyaco/fluent/gallery/Main.kt +++ /dev/null @@ -1,45 +0,0 @@ -package com.konyaco.fluent.gallery - -import androidx.compose.runtime.remember -import androidx.compose.ui.Alignment -import androidx.compose.ui.unit.DpSize -import androidx.compose.ui.unit.dp -import androidx.compose.ui.window.* -import com.mayakapps.compose.windowstyler.WindowBackdrop -import com.mayakapps.compose.windowstyler.WindowStyle -import fluentdesign.gallery.generated.resources.Res -import fluentdesign.gallery.generated.resources.icon -import org.jetbrains.compose.resources.ExperimentalResourceApi -import org.jetbrains.compose.resources.painterResource -import org.jetbrains.skiko.hostOs - -@OptIn(ExperimentalResourceApi::class) -fun main() = application { - val windowState = rememberWindowState(position = WindowPosition(Alignment.Center), size = DpSize(1280.dp, 720.dp)) - Window( - onCloseRequest = ::exitApplication, - state = windowState, - title = "Compose Fluent Design Gallery", - icon = painterResource(Res.drawable.icon) - ) { - //TODO Get real macOS title bar height. - val isFullscreen = windowState.placement == WindowPlacement.Fullscreen - val isMacOS = remember { hostOs.isMacOS } - val titleBarHeight = if (!isFullscreen and isMacOS) { 28.dp } else { 0.dp } - - GalleryTheme { - //TODO Make Window transparent. - WindowStyle( - isDarkTheme = LocalStore.current.darkMode, - backdropType = WindowBackdrop.Mica - ) - App(titleBarHeight) - } - - window.rootPane.apply { - rootPane.putClientProperty("apple.awt.fullWindowContent", true) - rootPane.putClientProperty("apple.awt.transparentTitleBar", true) - rootPane.putClientProperty("apple.awt.windowTitleVisible", false) - }.takeIf { isMacOS } - } -} \ No newline at end of file diff --git a/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/Main.kt b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/Main.kt new file mode 100644 index 00000000..efb79aad --- /dev/null +++ b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/Main.kt @@ -0,0 +1,49 @@ +package io.github.composefluent.gallery + +import androidx.compose.ui.Alignment +import androidx.compose.ui.unit.DpSize +import androidx.compose.ui.unit.dp +import androidx.compose.ui.window.Window +import androidx.compose.ui.window.WindowPosition +import androidx.compose.ui.window.application +import androidx.compose.ui.window.rememberWindowState +import io.github.composefluent.gallery.component.rememberComponentNavigator +import io.github.composefluent.gallery.window.WindowFrame +import fluentdesign.gallery.generated.resources.Res +import fluentdesign.gallery.generated.resources.icon +import org.jetbrains.compose.resources.painterResource +import org.jetbrains.skiko.hostOs + +fun main() = application { + val state = rememberWindowState( + position = WindowPosition(Alignment.Center), + size = DpSize(1280.dp, 720.dp) + ) + val title = "Compose Fluent Design Gallery" + val icon = painterResource(Res.drawable.icon) + Window( + onCloseRequest = ::exitApplication, + state = state, + title = title, + icon = icon + ) { + val navigator = rememberComponentNavigator() + WindowFrame( + onCloseRequest = ::exitApplication, + icon = icon, + title = title, + state = state, + backButtonEnabled = navigator.canNavigateUp, + backButtonClick = { navigator.navigateUp() }, + backButtonVisible = hostOs.isWindows + ) { windowInset, contentInset -> + App( + windowInset = windowInset, + contentInset = contentInset, + navigator = navigator, + title = title, + icon = icon + ) + } + } +} diff --git a/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/jna/windows/ComposeWindowProcedure.kt b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/jna/windows/ComposeWindowProcedure.kt new file mode 100644 index 00000000..42b09489 --- /dev/null +++ b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/jna/windows/ComposeWindowProcedure.kt @@ -0,0 +1,354 @@ +package io.github.composefluent.gallery.jna.windows + +import androidx.compose.foundation.layout.WindowInsets +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.getValue +import androidx.compose.runtime.setValue +import androidx.compose.ui.awt.ComposeWindow +import androidx.compose.ui.graphics.Color +import io.github.composefluent.gallery.jna.windows.structure.MENUITEMINFO +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.HTBOTTOM +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.HTBOTTOMLEFT +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.HTBOTTOMRIGHT +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.HTCAPTION +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.HTLEFT +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.HTRIGHT +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.HTTOP +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.HTTOPLEFT +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.HTTOPRIGHT +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.MFT_STRING +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.MIIM_STATE +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.SC_CLOSE +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.SC_MOVE +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.SC_RESTORE +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.SC_SIZE +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.TPM_RETURNCMD +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.WA_INACTIVE +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.WINT_MAX +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.WM_ACTIVATE +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.WM_NCCALCSIZE +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.WM_NCHITTEST +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.WM_NCMOUSEMOVE +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.WM_NCRBUTTONUP +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.WM_SETTINGCHANGE +import io.github.composefluent.gallery.jna.windows.structure.WindowMargins +import io.github.composefluent.gallery.jna.windows.structure.isWindows11OrLater +import com.sun.jna.Native +import com.sun.jna.NativeLibrary +import com.sun.jna.Pointer +import com.sun.jna.platform.win32.Advapi32Util +import com.sun.jna.platform.win32.WinDef.HWND +import com.sun.jna.platform.win32.WinDef.UINT +import com.sun.jna.platform.win32.WinDef.LPARAM +import com.sun.jna.platform.win32.WinDef.WPARAM +import com.sun.jna.platform.win32.WinDef.LRESULT +import com.sun.jna.platform.win32.BaseTSD.LONG_PTR +import com.sun.jna.platform.win32.WinDef +import com.sun.jna.platform.win32.WinDef.HMENU +import com.sun.jna.platform.win32.WinNT +import com.sun.jna.platform.win32.WinReg +import com.sun.jna.platform.win32.WinUser +import com.sun.jna.platform.win32.WinUser.WM_DESTROY +import com.sun.jna.platform.win32.WinUser.WM_SIZE +import com.sun.jna.platform.win32.WinUser.WS_CAPTION +import com.sun.jna.platform.win32.WinUser.WS_SYSMENU +import com.sun.jna.ptr.IntByReference +import io.github.composefluent.gallery.window.findSkiaLayer +import org.jetbrains.skiko.currentSystemTheme +import java.awt.Window + +internal class ComposeWindowProcedure( + private val window: Window, + private val hitTest: (x: Float, y: Float) -> Int, + private val onWindowInsetUpdate: (WindowInsets) -> Unit +) : WindowProcedure { + private val windowPointer = (this.window as? ComposeWindow) + ?.windowHandle + ?.let(::Pointer) + ?: Native.getWindowPointer(this.window) + + val windowHandle = HWND(windowPointer) + + private var hitResult = 1 + + private val margins = WindowMargins( + leftBorderWidth = 0, + topBorderHeight = 0, + rightBorderWidth = -1, + bottomBorderHeight = -1 + ) + + // The default window procedure to call its methods when the default method behaviour is desired/sufficient + private var defaultWindowProcedure = User32Extend.instance?.setWindowLong(windowHandle, WinUser.GWL_WNDPROC, this) ?: LONG_PTR(-1) + + private var dpi = UINT(0) + private var width = 0 + private var height = 0 + private var frameX = 0 + private var frameY = 0 + private var edgeX = 0 + private var edgeY = 0 + private var padding = 0 + private var isMaximized = User32Extend.instance?.isWindowInMaximized(windowHandle) == true + + var isWindowFrameAccentColorEnabled by mutableStateOf(isAccentColorWindowFrame()) + + var windowFrameColor by mutableStateOf(currentAccentColor()) + + var windowTheme by mutableStateOf(currentSystemTheme) + + var isWindowActive by mutableStateOf(true) + + val skiaLayerProcedure = (window as? ComposeWindow)?.findSkiaLayer()?.let { + SkiaLayerWindowProcedure( + skiaLayer = it, + hitTest = { x, y -> + updateWindowInfo() + val horizontalPadding = frameX + val verticalPadding = frameY + // Hit test for resizer border + hitResult = when { + // skip resizer border hit test if window is maximized + isMaximized -> hitTest(x, y) + x <= horizontalPadding && y > verticalPadding && y < height - verticalPadding -> HTLEFT + x <= horizontalPadding && y <= verticalPadding -> HTTOPLEFT + x <= horizontalPadding -> HTBOTTOMLEFT + y <= verticalPadding && x > horizontalPadding && x < width - horizontalPadding -> HTTOP + y <= verticalPadding && x <= horizontalPadding -> HTTOPLEFT + y <= verticalPadding -> HTTOPRIGHT + x >= width - horizontalPadding && y > verticalPadding && y < height - verticalPadding -> HTRIGHT + x >= width - horizontalPadding && y <= verticalPadding -> HTTOPRIGHT + x >= width - horizontalPadding -> HTBOTTOMRIGHT + y >= height - verticalPadding && x > horizontalPadding && x < width - horizontalPadding -> HTBOTTOM + y >= height - verticalPadding && x <= horizontalPadding -> HTBOTTOMLEFT + y >= height - verticalPadding -> HTBOTTOMRIGHT + // else hit test by user + else -> hitTest(x, y) + } + hitResult + } + ) + } + + init { + enableResizability() + enableBorderAndShadow() + } + + override fun callback(hWnd: HWND, uMsg: Int, wParam: WPARAM, lParam: LPARAM): LRESULT { + return when (uMsg) { + // Returns 0 to make the window not draw the non-client area (title bar and border) + // thus effectively making all the window our client area + WM_NCCALCSIZE -> { + if (wParam.toInt() == 0) { + User32Extend.instance?.CallWindowProc(defaultWindowProcedure, hWnd, uMsg, wParam, lParam) ?: LRESULT(0) + } else { + val user32 = User32Extend.instance ?: return LRESULT(0) + dpi = user32.GetDpiForWindow(hWnd) + frameX = user32.GetSystemMetricsForDpi(WinUser.SM_CXFRAME, dpi) + frameY = user32.GetSystemMetricsForDpi(WinUser.SM_CYFRAME, dpi) + edgeX = user32.GetSystemMetricsForDpi(WinUser.SM_CXEDGE, dpi) + edgeY = user32.GetSystemMetricsForDpi(WinUser.SM_CYEDGE, dpi) + padding = user32.GetSystemMetricsForDpi(WinUser.SM_CXPADDEDBORDER, dpi) + isMaximized = user32.isWindowInMaximized(hWnd) + // Edge inset padding for non-client area + onWindowInsetUpdate( + WindowInsets( + left = if (isMaximized) { + frameX + padding + } else { + edgeX + }, + right = if (isMaximized) { + frameX + padding + } else { + edgeX + }, + top = if (isMaximized) { + frameY + padding + } else { + edgeY + }, + bottom = if (isMaximized) { + frameY + padding + } else { + edgeY + } + ) + ) + LRESULT(0) + } + + } + + WM_NCHITTEST -> { + // Hit test result return + return LRESULT(hitResult.toLong()) + } + + WM_DESTROY -> { + User32Extend.instance?.CallWindowProc(defaultWindowProcedure, hWnd, uMsg, wParam, lParam) ?: LRESULT(0) + } + + WM_SIZE -> { + width = lParam.toInt() and 0xFFFF + height = (lParam.toInt() shr 16) and 0xFFFF + User32Extend.instance?.CallWindowProc(defaultWindowProcedure, hWnd, uMsg, wParam, lParam) ?: LRESULT(0) + } + + WM_NCRBUTTONUP -> { + if (wParam.toInt() == HTCAPTION) { + val user32 = User32Extend.instance ?: return LRESULT(0) + val oldStyle = user32.GetWindowLong(hWnd, WinUser.GWL_STYLE) + user32.SetWindowLong(hWnd, WinUser.GWL_STYLE, oldStyle or WS_SYSMENU) + val menu = user32.GetSystemMenu(hWnd, false) + user32.SetWindowLong(hWnd, WinUser.GWL_STYLE, oldStyle) + isMaximized = user32.isWindowInMaximized(hWnd) + if (menu != null) { + // 更新菜单项状态 + val menuItemInfo = MENUITEMINFO().apply { + cbSize = this.size() + fMask = MIIM_STATE + fType = MFT_STRING + } + + updateMenuItemInfo(menu, menuItemInfo, SC_RESTORE, isMaximized) + updateMenuItemInfo(menu, menuItemInfo, SC_MOVE, !isMaximized) + updateMenuItemInfo(menu, menuItemInfo, SC_SIZE, !isMaximized) + updateMenuItemInfo(menu, menuItemInfo, WinUser.SC_MINIMIZE, true) + updateMenuItemInfo(menu, menuItemInfo, WinUser.SC_MAXIMIZE, !isMaximized) + updateMenuItemInfo(menu, menuItemInfo, SC_CLOSE, true) + + // 设置默认菜单项 + user32.SetMenuDefaultItem(menu, WINT_MAX, false) + + // 获取鼠标位置 + val lParamValue = lParam.toInt() + val x = lParamValue.lowWord + val y = lParamValue.highWord + + // 显示菜单并获取用户选择 + val ret = user32.TrackPopupMenu(menu, TPM_RETURNCMD, x, y, 0, hWnd, null) + if (ret != 0) { + // 发送系统命令 + user32.PostMessage( + hWnd, + WinUser.WM_SYSCOMMAND, + WPARAM(ret.toLong()), + LPARAM(0), + ) + } + } + } + User32Extend.instance?.CallWindowProc(defaultWindowProcedure, hWnd, uMsg, wParam, lParam) ?: LRESULT(0) + } + + WM_SETTINGCHANGE -> { + val changedKey = Pointer(lParam.toLong()).getWideString(0) + // theme changed for color and darkTheme + if (changedKey == "ImmersiveColorSet") { + windowTheme = currentSystemTheme + windowFrameColor = currentAccentColor() + isWindowFrameAccentColorEnabled = isAccentColorWindowFrame() + } + User32Extend.instance?.CallWindowProc(defaultWindowProcedure, hWnd, uMsg, wParam, lParam) ?: LRESULT(0) + } + + else -> { + if (uMsg == WM_ACTIVATE) { + isWindowActive = wParam.toInt() != WA_INACTIVE + } + if (uMsg == WM_NCMOUSEMOVE) { + skiaLayerProcedure?.let { + User32Extend.instance?.PostMessage(it.contentHandle, uMsg, wParam, lParam) + } + } + User32Extend.instance?.CallWindowProc(defaultWindowProcedure, hWnd, uMsg, wParam, lParam) ?: LRESULT(0) + } + } + } + + // Force update window info that resolve the hit test result is incorrect when user moving window to another monitor. + private fun updateWindowInfo() { + User32Extend.instance?.apply { + dpi = GetDpiForWindow(windowHandle) + frameX = GetSystemMetricsForDpi(WinUser.SM_CXFRAME, dpi) + frameY = GetSystemMetricsForDpi(WinUser.SM_CYFRAME, dpi) + + val rect = WinDef.RECT() + if (GetWindowRect(windowHandle, rect)) { + rect.read() + width = rect.right - rect.left + height = rect.bottom - rect.top + } + rect.clear() + } + } + + private fun updateMenuItemInfo(menu: HMENU, menuItemInfo: MENUITEMINFO, item: Int, enabled: Boolean) { + menuItemInfo.fState = if (enabled) WinUserConst.MFS_ENABLED else WinUserConst.MFS_DISABLED + User32Extend.instance?.SetMenuItemInfo(menu, item, false, menuItemInfo) + } + + fun currentAccentColor(): Color { + val value = Advapi32Util.registryGetIntValue( + WinReg.HKEY_CURRENT_USER, + "SOFTWARE\\Microsoft\\Windows\\DWM", + "AccentColor", + ).toLong() + val alpha = (value and 0xFF000000) + val green = (value and 0xFF).shl(16) + val blue = (value and 0xFF00) + val red = (value and 0xFF0000).shr(16) + return Color((alpha or green or blue or red).toInt()) + } + + fun isAccentColorWindowFrame(): Boolean { + return Advapi32Util.registryGetIntValue( + WinReg.HKEY_CURRENT_USER, + "SOFTWARE\\Microsoft\\Windows\\DWM", + "ColorPrevalence", + ) != 0 + } + + /** + * For this to take effect, also set `resizable` argument of Compose Window to `true`. + */ + private fun enableResizability() { + // Enable window resizing and remove standard caption bar + User32Extend.instance?.updateWindowStyle(windowHandle) { oldStyle -> + (oldStyle or WS_CAPTION) and WS_SYSMENU.inv() + } + } + + /** + * To disable window border and shadow, pass (0, 0, 0, 0) as window margins + * (or, simply, don't call this function). + */ + private fun enableBorderAndShadow() { + val dwmApi = "dwmapi" + .runCatching(NativeLibrary::getInstance) + .onFailure { println("Could not load dwmapi library") } + .getOrNull() + dwmApi + ?.runCatching { getFunction("DwmExtendFrameIntoClientArea") } + ?.onFailure { println("Could not enable window native decorations (border/shadow/rounded corners)") } + ?.getOrNull() + ?.invoke(arrayOf(windowHandle, margins)) + + if (isWindows11OrLater()) { + dwmApi?.getFunction("DwmSetWindowAttribute")?.apply { + invoke( + WinNT.HRESULT::class.java, + arrayOf(windowHandle, 35, IntByReference((0xFFFFFFFE).toInt()), 4) + ) + invoke( + WinNT.HRESULT::class.java, + arrayOf(windowHandle, 38, IntByReference(2), 4) + ) + } + } + } + +} \ No newline at end of file diff --git a/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/jna/windows/SkiaLayerWindowProcedure.kt b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/jna/windows/SkiaLayerWindowProcedure.kt new file mode 100644 index 00000000..7b9757f2 --- /dev/null +++ b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/jna/windows/SkiaLayerWindowProcedure.kt @@ -0,0 +1,85 @@ +package io.github.composefluent.gallery.jna.windows + +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.HTCLIENT +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.HTCLOSE +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.HTMAXBUTTON +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.HTMINBUTTON +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.HTTRANSPANRENT +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.WM_LBUTTONDOWN +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.WM_LBUTTONUP +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.WM_MOUSEMOVE +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.WM_NCHITTEST +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.WM_NCLBUTTONDOWN +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.WM_NCLBUTTONUP +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.WM_NCMOUSEMOVE +import com.sun.jna.Native +import com.sun.jna.Pointer +import com.sun.jna.platform.win32.BaseTSD +import com.sun.jna.platform.win32.WinDef +import com.sun.jna.platform.win32.WinDef.HWND +import com.sun.jna.platform.win32.WinDef.LRESULT +import com.sun.jna.platform.win32.WinDef.POINT +import com.sun.jna.platform.win32.WinUser +import org.jetbrains.skiko.SkiaLayer + +class SkiaLayerWindowProcedure( + skiaLayer: SkiaLayer, + private val hitTest: (x: Float, y: Float) -> Int +): WindowProcedure { + + private val windowHandle = HWND(Pointer(skiaLayer.windowHandle)) + internal val contentHandle = HWND(skiaLayer.canvas.let(Native::getComponentPointer)) + private val defaultWindowProcedure = User32Extend.instance?.setWindowLong(contentHandle, WinUser.GWL_WNDPROC, this) ?: BaseTSD.LONG_PTR(-1) + + private var hitResult = 1 + + override fun callback( + hwnd: HWND, + uMsg: Int, + wParam: WinDef.WPARAM, + lParam: WinDef.LPARAM + ): LRESULT { + + return when(uMsg) { + + WM_NCHITTEST -> { + hitResult = lParam.useMousePoint { x, y -> hitTest(x.toFloat(), y.toFloat()) } + when(hitResult) { + HTCLIENT, HTMAXBUTTON, HTMINBUTTON, HTCLOSE -> LRESULT(hitResult.toLong()) + else -> LRESULT(HTTRANSPANRENT.toLong()) + } + } + + WM_NCMOUSEMOVE -> { + User32Extend.instance?.SendMessage(contentHandle, WM_MOUSEMOVE, wParam, lParam) + LRESULT(0) + } + + WM_NCLBUTTONDOWN -> { + User32Extend.instance?.SendMessage(contentHandle, WM_LBUTTONDOWN, wParam, lParam) + LRESULT(0) + } + + WM_NCLBUTTONUP -> { + User32Extend.instance?.SendMessage(contentHandle, WM_LBUTTONUP, wParam, lParam) + return LRESULT(0) + } + + else -> { + User32Extend.instance?.CallWindowProc(defaultWindowProcedure, hwnd, uMsg, wParam, lParam) ?: LRESULT(0) + } + } + } + + internal inline fun WinDef.LPARAM.useMousePoint(crossinline block: (x: Int, y: Int) -> T): T { + val lParamValue = toInt() + val x = lParamValue.lowWord.toShort().toInt() + val y = lParamValue.highWord.toShort().toInt() + val point = POINT(x, y) + User32Extend.instance?.ScreenToClient(windowHandle, point) + point.read() + val result = block(point.x, point.y) + point.clear() + return result + } +} diff --git a/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/jna/windows/User32Extend.kt b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/jna/windows/User32Extend.kt new file mode 100644 index 00000000..4fe7c3ba --- /dev/null +++ b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/jna/windows/User32Extend.kt @@ -0,0 +1,91 @@ +package io.github.composefluent.gallery.jna.windows + +import io.github.composefluent.gallery.jna.windows.structure.MENUITEMINFO +import com.sun.jna.Native +import com.sun.jna.Platform +import com.sun.jna.platform.win32.User32 +import com.sun.jna.platform.win32.WinDef.HWND +import com.sun.jna.platform.win32.WinDef.WPARAM +import com.sun.jna.platform.win32.WinDef.LPARAM +import com.sun.jna.platform.win32.WinDef.LRESULT +import com.sun.jna.platform.win32.WinUser.WindowProc +import com.sun.jna.platform.win32.BaseTSD.LONG_PTR +import com.sun.jna.platform.win32.WinDef.HMENU +import com.sun.jna.platform.win32.WinDef.POINT +import com.sun.jna.platform.win32.WinDef.RECT +import com.sun.jna.platform.win32.WinDef.UINT +import com.sun.jna.platform.win32.WinUser +import com.sun.jna.win32.W32APIOptions + +@Suppress("FunctionName") +internal interface User32Extend : User32 { + + fun SetWindowLong(hWnd: HWND, nIndex: Int, wndProc: WindowProc): LONG_PTR + + fun SetWindowLongPtr(hWnd: HWND, nIndex: Int, wndProc: WindowProc): LONG_PTR + + fun CallWindowProc( + proc: LONG_PTR, + hWnd: HWND, + uMsg: Int, + uParam: WPARAM, + lParam: LPARAM + ): LRESULT + + fun GetSystemMetricsForDpi(nIndex: Int, dpi: UINT): Int + + fun GetDpiForWindow(hWnd: HWND): UINT + + fun ScreenToClient(hWnd: HWND, lpPoint: POINT): Boolean + + fun GetSystemMenu(hWnd: HWND, bRevert: Boolean): HMENU? + + fun SetMenuItemInfo(hMenu: HMENU, uItem: Int, fByPosition: Boolean, lpmii: MENUITEMINFO): Boolean + + fun TrackPopupMenu(hMenu: HMENU, uFlags: Int, x: Int, y: Int, nReserved: Int, hWnd: HWND, prcRect: RECT?): Int + + fun SetMenuDefaultItem(hMenu: HMENU, uItem: Int, fByPos: Boolean): Boolean + + + companion object { + + val instance by lazy { + runCatching { + Native.load( + "user32", + User32Extend::class.java, + W32APIOptions.DEFAULT_OPTIONS + ) + } + .onFailure { println("Could not load user32 library") } + .getOrNull() + } + } +} + +internal fun User32Extend.setWindowLong(hWnd: HWND, nIndex: Int, procedure: WindowProcedure): LONG_PTR { + return if (Platform.is64Bit()) { + SetWindowLongPtr(hWnd, nIndex, procedure) + } else { + SetWindowLong(hWnd, nIndex, procedure) + } +} + +internal fun User32.isWindowInMaximized(hWnd: HWND): Boolean { + val placement = WinUser.WINDOWPLACEMENT() + val result = GetWindowPlacement(hWnd, placement) + .booleanValue() && placement.showCmd == WinUser.SW_SHOWMAXIMIZED + placement.clear() + return result +} + +internal fun User32.updateWindowStyle(hWnd: HWND, styleBlock: (oldStyle: Int) -> Int) { + val oldStyle = GetWindowLong(hWnd, WinUser.GWL_STYLE) + SetWindowLong(hWnd, WinUser.GWL_STYLE, styleBlock(oldStyle)) +} + +internal val Int.lowWord: Int + get() = (this and 0xFFFF) + +internal val Int.highWord: Int + get() = (this shr 16) and 0xFFFF \ No newline at end of file diff --git a/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/jna/windows/WindowProcedure.kt b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/jna/windows/WindowProcedure.kt new file mode 100644 index 00000000..857f18bc --- /dev/null +++ b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/jna/windows/WindowProcedure.kt @@ -0,0 +1,5 @@ +package io.github.composefluent.gallery.jna.windows + +import com.sun.jna.platform.win32.WinUser.WindowProc + +typealias WindowProcedure = WindowProc \ No newline at end of file diff --git a/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/jna/windows/structure/MenuItemInfo.kt b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/jna/windows/structure/MenuItemInfo.kt new file mode 100644 index 00000000..cc9e3629 --- /dev/null +++ b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/jna/windows/structure/MenuItemInfo.kt @@ -0,0 +1,53 @@ +package io.github.composefluent.gallery.jna.windows.structure + +import com.sun.jna.Structure +import com.sun.jna.platform.win32.BaseTSD.ULONG_PTR +import com.sun.jna.platform.win32.WinDef.HBITMAP +import com.sun.jna.platform.win32.WinDef.HMENU + +// Contains information about a menu item. +@Suppress("SpellCheckingInspection", "unused") +class MENUITEMINFO : Structure() { + @JvmField + var cbSize: Int = 0 + + @JvmField + var fMask: Int = 0 + + @JvmField + var fType: Int = 0 + + @JvmField + var fState: Int = 0 + + @JvmField + var wID: Int = 0 + + @JvmField + var hSubMenu: HMENU? = null + + @JvmField + var hbmpChecked: HBITMAP? = null + + @JvmField + var hbmpUnchecked: HBITMAP? = null + + @JvmField + var dwItemData: ULONG_PTR = ULONG_PTR(0) + + @JvmField + var dwTypeData: String? = null + + @JvmField + var cch: Int = 0 + + @JvmField + var hbmpItem: HBITMAP? = null + + override fun getFieldOrder(): List { + return listOf( + "cbSize", "fMask", "fType", "fState", "wID", "hSubMenu", "hbmpChecked", "hbmpUnchecked", + "dwItemData", "dwTypeData", "cch", "hbmpItem", + ) + } +} \ No newline at end of file diff --git a/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/jna/windows/structure/VersionHelper.kt b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/jna/windows/structure/VersionHelper.kt new file mode 100644 index 00000000..75a8ccb8 --- /dev/null +++ b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/jna/windows/structure/VersionHelper.kt @@ -0,0 +1,14 @@ +package io.github.composefluent.gallery.jna.windows.structure + +import com.sun.jna.platform.win32.Kernel32 + +val windowsBuildNumber by lazy { + val buildNumber = Kernel32.INSTANCE.GetVersion().high.toInt() + buildNumber +} + +fun isWindows10OrLater() = windowsBuildNumber >= 10240 + +fun isWindows11OrLater() = windowsBuildNumber >= 22000 + +fun isWindows1122H2OrLater() = windowsBuildNumber >= 22621 \ No newline at end of file diff --git a/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/jna/windows/structure/WinUserConst.kt b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/jna/windows/structure/WinUserConst.kt new file mode 100644 index 00000000..52911133 --- /dev/null +++ b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/jna/windows/structure/WinUserConst.kt @@ -0,0 +1,77 @@ +package io.github.composefluent.gallery.jna.windows.structure + +object WinUserConst { + + //calculate non client area size message + val WM_NCCALCSIZE = 0x0083 + // non client area hit test message + val WM_NCHITTEST = 0x0084 + // mouse move message + val WM_MOUSEMOVE = 0x0200 + // left mouse button down message + val WM_LBUTTONDOWN = 0x0201 + // left mouse button up message + val WM_LBUTTONUP = 0x0202 + // non client area mouse move message + val WM_NCMOUSEMOVE = 0x00A0 + // non client area left mouse down message + val WM_NCLBUTTONDOWN = 0x00A1 + // non client area left mouse up message + val WM_NCLBUTTONUP = 0x00A2 + // non client area right mouse up message + val WM_NCRBUTTONUP: Int = 0x00A5 + + /** + * [WM_NCHITTEST] Mouse Position Codes + */ + // pass the hit test to parent window + internal val HTTRANSPANRENT = -1 + // no hit test + internal val HTNOWHERE = 0 + // client area + internal val HTCLIENT = 1 + // title bar + internal val HTCAPTION = 2 + // min button + internal val HTMINBUTTON = 8 + // max button + internal val HTMAXBUTTON = 9 + // close button + internal val HTCLOSE = 20 + // window edges + internal val HTLEFT = 10 + internal val HTRIGHT = 11 + internal val HTTOP = 12 + internal val HTTOPLEFT = 13 + internal val HTTOPRIGHT = 14 + internal val HTBOTTOM = 15 + internal val HTBOTTOMLEFT = 16 + internal val HTBOTTOMRIGHT = 17 + + // setting changed message + const val WM_SETTINGCHANGE: Int = 0x001A + + // window active event + const val WM_ACTIVATE: Int = 0x0006 + + // window is deactivated + const val WA_INACTIVE: Int = 0x00000000 + + const val SC_RESTORE: Int = 0x0000f120 + const val SC_MOVE: Int = 0xF010 + const val SC_SIZE: Int = 0xF000 + const val SC_CLOSE: Int = 0xF060 + + const val WINT_MAX: Int = 0xFFFF + + const val MIIM_STATE: Int = 0x00000001 // The `fState` member is valid. + + const val MFT_STRING: Int = 0x00000000 // The item is a text string.b + + const val TPM_RETURNCMD: Int = + 0x0100 // Returns the menu item identifier of the user's selection instead of sending a message. + + const val MFS_ENABLED: Int = 0x00000000 // The item is enabled. + + const val MFS_DISABLED: Int = 0x00000003 // The item is disabled. +} diff --git a/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/jna/windows/structure/WindowMargins.kt b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/jna/windows/structure/WindowMargins.kt new file mode 100644 index 00000000..a97ce1b5 --- /dev/null +++ b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/jna/windows/structure/WindowMargins.kt @@ -0,0 +1,17 @@ +package io.github.composefluent.gallery.jna.windows.structure + +import com.sun.jna.Structure + +// See https://stackoverflow.com/q/62240901 +@Structure.FieldOrder( + "leftBorderWidth", + "rightBorderWidth", + "topBorderHeight", + "bottomBorderHeight" +) +data class WindowMargins( + @JvmField var leftBorderWidth: Int, + @JvmField var rightBorderWidth: Int, + @JvmField var topBorderHeight: Int, + @JvmField var bottomBorderHeight: Int +) : Structure(), Structure.ByReference \ No newline at end of file diff --git a/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/screen/navigation/TabViewScreen.desktop.kt b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/screen/navigation/TabViewScreen.desktop.kt new file mode 100644 index 00000000..b5b225d4 --- /dev/null +++ b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/screen/navigation/TabViewScreen.desktop.kt @@ -0,0 +1,102 @@ +package io.github.composefluent.gallery.screen.navigation + +import androidx.compose.foundation.layout.Spacer +import androidx.compose.foundation.layout.WindowInsets +import androidx.compose.foundation.layout.WindowInsetsSides +import androidx.compose.foundation.layout.add +import androidx.compose.foundation.layout.heightIn +import androidx.compose.foundation.layout.only +import androidx.compose.foundation.layout.windowInsetsPadding +import androidx.compose.runtime.Composable +import androidx.compose.runtime.LaunchedEffect +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.ui.Modifier +import androidx.compose.ui.unit.dp +import androidx.compose.ui.window.Window +import androidx.compose.ui.window.rememberWindowState +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.FluentTheme +import io.github.composefluent.FluentThemeConfiguration +import io.github.composefluent.component.Button +import io.github.composefluent.component.Text +import io.github.composefluent.gallery.LocalStore +import io.github.composefluent.gallery.component.GalleryPageScope +import io.github.composefluent.gallery.window.WindowFrame +import fluentdesign.gallery.generated.resources.Res +import fluentdesign.gallery.generated.resources.icon +import org.jetbrains.compose.resources.painterResource +import org.jetbrains.skiko.hostOs + +@OptIn(ExperimentalFluentApi::class) +@Composable +internal actual fun GalleryPageScope.PlatformTabViewSection() { + Section( + title = "TabView Window", + sourceCode = "", + content = { + val windowVisible = remember { mutableStateOf(false) } + Button( + onClick = { + windowVisible.value = !windowVisible.value + }, + content = { + Text("Open Window") + } + ) + val windowState = rememberWindowState(width = 1600.dp, height = 1000.dp) + val store = LocalStore.current + Window( + visible = windowVisible.value, + onCloseRequest = { + windowVisible.value = false + }, + state = windowState, + title = "TabView Window", + icon = painterResource(Res.drawable.icon) + ) { + val colors = FluentTheme.colors + FluentThemeConfiguration( + useAcrylicPopup = store.enabledAcrylicPopup + ) { + WindowFrame( + onCloseRequest = { windowVisible.value = false }, + state = windowState, + backButtonVisible = false, + captionBarHeight = 40.dp, + ) { _, captionBarInset -> + val windowStore = LocalStore.current + LaunchedEffect(colors.darkMode) { + windowStore.darkMode = colors.darkMode + } + TabViewWindowContent( + paddingInsets = WindowInsets(0), + header = { + Spacer( + modifier = Modifier.heightIn( + 40.dp + ).windowInsetsPadding( + captionBarInset.only( + WindowInsetsSides.Left + ).add(WindowInsets(right = if (!hostOs.isMacOS ) 8.dp else 0.dp)) + ) + ) + }, + footer = { + Spacer( + modifier = Modifier.heightIn( + 40.dp + ).windowInsetsPadding( + captionBarInset.only( + WindowInsetsSides.Right + ).add(WindowInsets(right = 8.dp)) + ) + ) + } + ) + } + } + } + } + ) +} \ No newline at end of file diff --git a/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/window/LayoutHitTestOwner.kt b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/window/LayoutHitTestOwner.kt new file mode 100644 index 00000000..671127eb --- /dev/null +++ b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/window/LayoutHitTestOwner.kt @@ -0,0 +1,125 @@ +@file:Suppress("UNCHECKED_CAST", "INVISIBLE_MEMBER", "INVISIBLE_REFERENCE", "DEPRECATED") + +package io.github.composefluent.gallery.window + +import androidx.compose.runtime.Composable +import androidx.compose.runtime.remember +import androidx.compose.ui.InternalComposeUiApi +import androidx.compose.ui.geometry.Offset +import androidx.compose.ui.node.HitTestResult +import androidx.compose.ui.node.LayoutNode +import androidx.compose.ui.node.PointerInputModifierNode +import androidx.compose.ui.node.RootNodeOwner +import androidx.compose.ui.scene.ComposeScene +import androidx.compose.ui.scene.CopiedList +import androidx.compose.ui.scene.LocalComposeScene +import androidx.compose.ui.util.fastForEachReversed +import androidx.compose.ui.util.packFloats + +@OptIn(InternalComposeUiApi::class) +@Composable +fun rememberLayoutHitTestOwner(): LayoutHitTestOwner { + // TODO Remove LocalComposeScene + val scene = LocalComposeScene.current ?: error("no compose scene") + return remember(scene) { + when(scene::class.qualifiedName) { + "androidx.compose.ui.scene.CanvasLayersComposeSceneImpl" -> { + CanvasLayersLayoutHitTestOwner(scene) + } + "androidx.compose.ui.scene.PlatformLayersComposeSceneImpl" -> { + PlatformLayersLayoutHitTestOwner(scene) + } + else -> error("unsupported compose scene") + } + } +} + +interface LayoutHitTestOwner { + + fun hitTest(x: Float, y: Float): Boolean { + return false + } +} + +/* +* reflect implementation for compose 1.8 + */ +internal abstract class ReflectLayoutHitTestOwner: LayoutHitTestOwner { + + @OptIn(InternalComposeUiApi::class) + protected val classLoader = ComposeScene::class.java.classLoader!! + + protected fun getLayoutNode(rootNodeOwner: RootNodeOwner): LayoutNode { + return rootNodeOwner.owner.root + } + + protected fun LayoutNode.layoutNodeHitTest(x: Float, y: Float): Boolean { + try { + val result = HitTestResult() + this.hitTest(pointerPosition = Offset(x, y), hitTestResult = result) + val lastNode = result.lastOrNull() + return lastNode is PointerInputModifierNode + } catch (e: Exception) { + // If anything goes wrong, return false to be safe + return false + } + } +} + +@OptIn(InternalComposeUiApi::class) +internal class PlatformLayersLayoutHitTestOwner(scene: ComposeScene) : ReflectLayoutHitTestOwner() { + private val sceneClass = classLoader.loadClass("androidx.compose.ui.scene.PlatformLayersComposeSceneImpl") + + private val mainOwnerRef = sceneClass.getDeclaredMethod("getMainOwner").let { + it.trySetAccessible() + it.invoke(scene) as RootNodeOwner + } + + override fun hitTest(x: Float, y: Float): Boolean { + return mainOwnerRef.owner.root.layoutNodeHitTest(x, y) + } +} + +@OptIn(InternalComposeUiApi::class) +internal class CanvasLayersLayoutHitTestOwner(private val scene: ComposeScene) : ReflectLayoutHitTestOwner() { + private val sceneClass = classLoader.loadClass("androidx.compose.ui.scene.CanvasLayersComposeSceneImpl") + private val layerClass = sceneClass.declaredClasses.first { it.name == "androidx.compose.ui.scene.CanvasLayersComposeSceneImpl\$AttachedComposeSceneLayer" } + + private val mainOwnerRef = sceneClass.getDeclaredField("mainOwner").let { + it.trySetAccessible() + it.get(scene) as RootNodeOwner + } + + private val _layers = sceneClass.getDeclaredField("_layersCopyCache").let { + it.trySetAccessible() + it.get(scene) + } as CopiedList<*> + + private val focusedLayerField = sceneClass.getDeclaredField("focusedLayer").apply { + trySetAccessible() + } + + private val layerOwnerField = layerClass + .getDeclaredField("owner").apply { + trySetAccessible() + } + + private val layerIsInBoundMethod = layerClass + .declaredMethods.first { it.name.startsWith("isInBounds") }.apply { + trySetAccessible() + } + + override fun hitTest(x: Float, y: Float): Boolean { + _layers.withCopy { + it.fastForEachReversed { layer -> + if (layerIsInBoundMethod.invoke(layer, packFloats(x, y)) == true) { + return getLayoutNode(layerOwnerField.get(layer) as RootNodeOwner).layoutNodeHitTest(x, y) + } else if (layer == focusedLayerField.get(scene)) { + return false + } + } + } + return getLayoutNode(mainOwnerRef).layoutNodeHitTest(x, y) + } + +} diff --git a/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/window/MacOSWindowFrame.kt b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/window/MacOSWindowFrame.kt new file mode 100644 index 00000000..6d8eab6a --- /dev/null +++ b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/window/MacOSWindowFrame.kt @@ -0,0 +1,120 @@ +package io.github.composefluent.gallery.window + +import androidx.compose.animation.AnimatedContent +import androidx.compose.animation.ContentTransform +import androidx.compose.animation.SizeTransform +import androidx.compose.animation.core.tween +import androidx.compose.animation.expandHorizontally +import androidx.compose.animation.shrinkHorizontally +import androidx.compose.foundation.Image +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.Spacer +import androidx.compose.foundation.layout.WindowInsets +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.layout.width +import androidx.compose.foundation.layout.windowInsetsPadding +import androidx.compose.runtime.Composable +import androidx.compose.runtime.LaunchedEffect +import androidx.compose.runtime.derivedStateOf +import androidx.compose.runtime.getValue +import androidx.compose.runtime.remember +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.painter.Painter +import androidx.compose.ui.unit.Dp +import androidx.compose.ui.unit.dp +import androidx.compose.ui.window.FrameWindowScope +import androidx.compose.ui.window.WindowPlacement +import androidx.compose.ui.window.WindowState +import io.github.composefluent.FluentTheme +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.component.NavigationDefaults +import io.github.composefluent.component.Text +import org.jetbrains.skiko.disableTitleBar + +@Composable +fun FrameWindowScope.MacOSWindowFrame( + state: WindowState, + backButtonVisible: Boolean, + backButtonEnabled: Boolean, + title: String, + icon: Painter?, + captionBarHeight: Dp, + onBackButtonClick: () -> Unit, + content: @Composable (windowInset: WindowInsets, captionBarInset: WindowInsets) -> Unit +) { + val windowInset by remember(state) { + derivedStateOf { + if (state.placement != WindowPlacement.Fullscreen) { + WindowInsets(top = captionBarHeight) + } else { + WindowInsets(0) + } + } + } + LaunchedEffect(window, captionBarHeight) { + window.findSkiaLayer()?.disableTitleBar(captionBarHeight.value) + } + //TODO Get real macOS caption bar width. + Box { + val contentInset = WindowInsets(left = 80.dp) + content(windowInset, contentInset) + Row(modifier = Modifier.windowInsetsPadding(contentInset)) { + Row( + verticalAlignment = Alignment.CenterVertically, + modifier = Modifier.height(captionBarHeight) + ) { + AnimatedContent( + targetState = backButtonVisible, + transitionSpec = { + ContentTransform( + targetContentEnter = expandHorizontally(), + initialContentExit = shrinkHorizontally(), + sizeTransform = SizeTransform { _, _ -> + tween( + FluentDuration.ShortDuration, + easing = FluentEasing.FastInvokeEasing + ) + } + ) + } + ) { + if (it) { + NavigationDefaults.BackButton( + onClick = onBackButtonClick, + disabled = !backButtonEnabled, + ) + } else { + Spacer(modifier = Modifier.width(2.dp).height(36.dp)) + } + } + if (icon != null) { + Image( + painter = icon, + contentDescription = null, + modifier = Modifier.padding(start = 6.dp).size(16.dp) + ) + } + if (title.isNotEmpty()) { + Text( + text = title, + style = FluentTheme.typography.caption, + modifier = Modifier.padding(start = 16.dp) + ) + } + Spacer(modifier = Modifier.weight(1f)) + } + } + + } + + window.rootPane.apply { + rootPane.putClientProperty("apple.awt.fullWindowContent", true) + rootPane.putClientProperty("apple.awt.transparentTitleBar", true) + rootPane.putClientProperty("apple.awt.windowTitleVisible", false) + } +} \ No newline at end of file diff --git a/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/window/SkikoUtil.kt b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/window/SkikoUtil.kt new file mode 100644 index 00000000..84b3c76d --- /dev/null +++ b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/window/SkikoUtil.kt @@ -0,0 +1,22 @@ +package io.github.composefluent.gallery.window + +import androidx.compose.ui.awt.ComposeWindow +import org.jetbrains.skiko.SkiaLayer +import java.awt.Container +import javax.swing.JComponent + +internal fun findComponent( + container: Container, + klass: Class, +): T? { + val componentSequence = container.components.asSequence() + return componentSequence.filter { klass.isInstance(it) }.ifEmpty { + componentSequence.filterIsInstance() + .mapNotNull { findComponent(it, klass) } + }.map { klass.cast(it) }.firstOrNull() +} + +internal inline fun Container.findComponent() = + findComponent(this, T::class.java) + +internal fun ComposeWindow.findSkiaLayer(): SkiaLayer? = findComponent() \ No newline at end of file diff --git a/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/window/WindowFrame.kt b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/window/WindowFrame.kt new file mode 100644 index 00000000..7b212b7f --- /dev/null +++ b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/window/WindowFrame.kt @@ -0,0 +1,66 @@ +package io.github.composefluent.gallery.window + +import androidx.compose.foundation.layout.WindowInsets +import androidx.compose.runtime.Composable +import androidx.compose.ui.graphics.painter.Painter +import androidx.compose.ui.unit.Dp +import androidx.compose.ui.unit.dp +import androidx.compose.ui.window.FrameWindowScope +import androidx.compose.ui.window.WindowState +import io.github.composefluent.component.NavigationDisplayMode +import io.github.composefluent.gallery.GalleryTheme +import io.github.composefluent.gallery.LocalStore +import io.github.composefluent.gallery.jna.windows.structure.isWindows10OrLater +import io.github.composefluent.gallery.jna.windows.structure.isWindows11OrLater +import org.jetbrains.skiko.hostOs + +@Composable +fun FrameWindowScope.WindowFrame( + onCloseRequest: () -> Unit, + icon: Painter? = null, + title: String = "", + state: WindowState, + backButtonVisible: Boolean = true, + backButtonEnabled: Boolean = false, + backButtonClick: () -> Unit = {}, + captionBarHeight: Dp = 48.dp, + content: @Composable (windowInset: WindowInsets, captionBarInset: WindowInsets) -> Unit +) { + val supportBackdrop = hostOs.isWindows && isWindows11OrLater() + GalleryTheme(!supportBackdrop) { + val isCollapsed = LocalStore.current.navigationDisplayMode == NavigationDisplayMode.LeftCollapsed + when { + hostOs.isWindows && isWindows10OrLater() -> { + + WindowsWindowFrame( + onCloseRequest = onCloseRequest, + icon = if (isCollapsed) null else icon, + title = if (isCollapsed) "" else title, + content = content, + state = state, + backButtonVisible = backButtonVisible && !isCollapsed, + backButtonEnabled = backButtonEnabled, + backButtonClick = backButtonClick, + captionBarHeight = captionBarHeight + ) + } + + hostOs.isMacOS -> { + MacOSWindowFrame( + content = content, + backButtonVisible = backButtonVisible && !isCollapsed, + backButtonEnabled = backButtonEnabled, + onBackButtonClick = backButtonClick, + captionBarHeight = captionBarHeight, + icon = if (isCollapsed) null else icon, + title = if (isCollapsed) "" else title, + state = state + ) + } + + else -> { + content(WindowInsets(0), WindowInsets(0)) + } + } + } +} \ No newline at end of file diff --git a/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/window/WindowsWindowFrame.kt b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/window/WindowsWindowFrame.kt new file mode 100644 index 00000000..3d31b40b --- /dev/null +++ b/gallery/src/desktopMain/kotlin/io/github/composefluent/gallery/window/WindowsWindowFrame.kt @@ -0,0 +1,461 @@ +package io.github.composefluent.gallery.window + +import androidx.compose.animation.AnimatedContent +import androidx.compose.animation.ContentTransform +import androidx.compose.animation.SizeTransform +import androidx.compose.animation.core.tween +import androidx.compose.animation.expandHorizontally +import androidx.compose.animation.shrinkHorizontally +import androidx.compose.foundation.ExperimentalFoundationApi +import androidx.compose.foundation.Image +import androidx.compose.foundation.clickable +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.ExperimentalLayoutApi +import androidx.compose.foundation.layout.MutableWindowInsets +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.Spacer +import androidx.compose.foundation.layout.WindowInsets +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.layout.width +import androidx.compose.foundation.layout.windowInsetsPadding +import androidx.compose.foundation.layout.wrapContentSize +import androidx.compose.runtime.Composable +import androidx.compose.runtime.LaunchedEffect +import androidx.compose.runtime.Stable +import androidx.compose.runtime.State +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.geometry.Rect +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.RectangleShape +import androidx.compose.ui.graphics.painter.Painter +import androidx.compose.ui.graphics.vector.ImageVector +import androidx.compose.ui.layout.boundsInWindow +import androidx.compose.ui.layout.onGloballyPositioned +import androidx.compose.ui.layout.onSizeChanged +import androidx.compose.ui.platform.LocalFontFamilyResolver +import androidx.compose.ui.text.ExperimentalTextApi +import androidx.compose.ui.text.font.FontFamily +import androidx.compose.ui.text.platform.FontLoadResult +import androidx.compose.ui.text.style.TextAlign +import androidx.compose.ui.unit.Dp +import androidx.compose.ui.unit.dp +import androidx.compose.ui.unit.sp +import androidx.compose.ui.window.FrameWindowScope +import androidx.compose.ui.window.WindowPlacement +import androidx.compose.ui.window.WindowState +import androidx.compose.ui.zIndex +import io.github.composefluent.ExperimentalFluentApi +import io.github.composefluent.FluentTheme +import io.github.composefluent.animation.FluentDuration +import io.github.composefluent.animation.FluentEasing +import io.github.composefluent.background.BackgroundSizing +import io.github.composefluent.background.Layer +import io.github.composefluent.component.FontIconDefaults +import io.github.composefluent.component.FontIconSize +import io.github.composefluent.component.Icon +import io.github.composefluent.component.NavigationDefaults +import io.github.composefluent.component.Text +import io.github.composefluent.component.TooltipBox +import io.github.composefluent.gallery.jna.windows.ComposeWindowProcedure +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.HTCAPTION +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.HTCLIENT +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.HTCLOSE +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.HTMAXBUTTON +import io.github.composefluent.gallery.jna.windows.structure.WinUserConst.HTMINBUTTON +import io.github.composefluent.gallery.jna.windows.structure.isWindows11OrLater +import io.github.composefluent.icons.Icons +import io.github.composefluent.icons.regular.Dismiss +import io.github.composefluent.icons.regular.Square +import io.github.composefluent.icons.regular.SquareMultiple +import io.github.composefluent.icons.regular.Subtract +import io.github.composefluent.scheme.PentaVisualScheme +import io.github.composefluent.scheme.VisualStateScheme +import io.github.composefluent.scheme.collectVisualState +import com.mayakapps.compose.windowstyler.WindowBackdrop +import com.mayakapps.compose.windowstyler.WindowStyle +import com.sun.jna.platform.win32.User32 +import com.sun.jna.platform.win32.WinDef.HWND +import com.sun.jna.platform.win32.WinUser +import java.awt.Window + +@OptIn(ExperimentalLayoutApi::class) +@Composable +fun FrameWindowScope.WindowsWindowFrame( + onCloseRequest: () -> Unit, + icon: Painter? = null, + title: String = "", + state: WindowState, + backButtonVisible: Boolean = true, + backButtonEnabled: Boolean = false, + backButtonClick: () -> Unit = {}, + captionBarHeight: Dp = 48.dp, + content: @Composable (windowInset: WindowInsets, captionBarInset: WindowInsets) -> Unit +) { + LaunchedEffect(window) { + window.findSkiaLayer()?.transparency = true + } + WindowStyle( + isDarkTheme = FluentTheme.colors.darkMode, + backdropType = when { + isWindows11OrLater() -> WindowBackdrop.Mica + else -> WindowBackdrop.Solid(FluentTheme.colors.background.mica.baseAlt) + } + ) + + val paddingInset = remember { MutableWindowInsets() } + val maxButtonRect = remember { mutableStateOf(Rect.Zero) } + val minButtonRect = remember { mutableStateOf(Rect.Zero) } + val closeButtonRect = remember { mutableStateOf(Rect.Zero) } + val captionBarRect = remember { mutableStateOf(Rect.Zero) } + val layoutHitTestOwner = rememberLayoutHitTestOwner() + val contentPaddingInset = remember { MutableWindowInsets() } + val procedure = remember(window) { + ComposeWindowProcedure( + window = window, + hitTest = { x, y -> + when { + maxButtonRect.value.contains(x, y) -> HTMAXBUTTON + minButtonRect.value.contains(x, y) -> HTMINBUTTON + closeButtonRect.value.contains(x, y) -> HTCLOSE + captionBarRect.value.contains(x, y) && !layoutHitTestOwner.hitTest(x, y) -> HTCAPTION + + else -> HTCLIENT + } + }, + onWindowInsetUpdate = { paddingInset.insets = it } + ) + } + Box( + modifier = Modifier.windowInsetsPadding(paddingInset) + ) { + content(WindowInsets(top = captionBarHeight), contentPaddingInset) + Row( + verticalAlignment = Alignment.CenterVertically, + modifier = Modifier.height(captionBarHeight) + .zIndex(10f) + .onGloballyPositioned { captionBarRect.value = it.boundsInWindow() } + ) { + AnimatedContent( + targetState = backButtonVisible, + transitionSpec = { + ContentTransform( + targetContentEnter = expandHorizontally(), + initialContentExit = shrinkHorizontally(), + sizeTransform = SizeTransform { _, _ -> + tween( + FluentDuration.ShortDuration, + easing = FluentEasing.FastInvokeEasing + ) + } + ) + } + ) { + if (it) { + val interactionSource = remember { MutableInteractionSource() } + NavigationDefaults.BackButton( + onClick = backButtonClick, + disabled = !backButtonEnabled, + interaction = interactionSource, + icon = { FontIconDefaults.BackIcon(interactionSource, size = FontIconSize(10f)) } + ) + } else { + Spacer(modifier = Modifier.width(14.dp).height(36.dp)) + } + } + if (icon != null) { + Image( + painter = icon, + contentDescription = null, + modifier = Modifier.padding(start = 6.dp).size(16.dp) + ) + } + if (title.isNotEmpty()) { + Text( + text = title, + style = FluentTheme.typography.caption, + modifier = Modifier.padding(start = 16.dp) + ) + } + Spacer(modifier = Modifier.weight(1f)) + window.CaptionButtonRow( + windowHandle = procedure.windowHandle, + isMaximize = state.placement == WindowPlacement.Maximized, + onCloseRequest = onCloseRequest, + onMaximizeButtonRectUpdate = { + maxButtonRect.value = it + }, + onMinimizeButtonRectUpdate = { + minButtonRect.value = it + }, + onCloseButtonRectUpdate = { + closeButtonRect.value = it + }, + accentColor = procedure.windowFrameColor, + frameColorEnabled = procedure.isWindowFrameAccentColorEnabled, + isActive = procedure.isWindowActive, + modifier = Modifier.align(Alignment.Top).onSizeChanged { + contentPaddingInset.insets = WindowInsets(right = it.width, top = it.height) + } + ) + } + } +} + +@Composable +fun Window.CaptionButtonRow( + windowHandle: HWND, + isMaximize: Boolean, + isActive: Boolean, + accentColor: Color, + frameColorEnabled: Boolean, + onCloseRequest: () -> Unit, + modifier: Modifier = Modifier, + onMaximizeButtonRectUpdate: (Rect) -> Unit, + onMinimizeButtonRectUpdate: (Rect) -> Unit = {}, + onCloseButtonRectUpdate: (Rect) -> Unit = {} +) { + //Draw the caption button + Row( + modifier = modifier + .zIndex(1f) + ) { + val colors = if (frameColorEnabled && accentColor != Color.Unspecified) { + CaptionButtonDefaults.accentColors(accentColor) + } else { + CaptionButtonDefaults.defaultColors() + } + CaptionButton( + onClick = { + User32.INSTANCE.ShowWindow(windowHandle, WinUser.SW_MINIMIZE) + }, + icon = CaptionButtonIcon.Minimize, + isActive = isActive, + colors = colors, + modifier = Modifier.onGloballyPositioned { + onMinimizeButtonRectUpdate(it.boundsInWindow()) + } + ) + CaptionButton( + onClick = { + if (isMaximize) { + User32.INSTANCE.ShowWindow( + windowHandle, + WinUser.SW_RESTORE + ) + } else { + User32.INSTANCE.ShowWindow( + windowHandle, + WinUser.SW_MAXIMIZE + ) + } + }, + icon = if (isMaximize) { + CaptionButtonIcon.Restore + } else { + CaptionButtonIcon.Maximize + }, + isActive = isActive, + colors = colors, + modifier = Modifier.onGloballyPositioned { + onMaximizeButtonRectUpdate(it.boundsInWindow()) + } + ) + CaptionButton( + icon = CaptionButtonIcon.Close, + onClick = onCloseRequest, + isActive = isActive, + colors = CaptionButtonDefaults.closeColors(), + modifier = Modifier.onGloballyPositioned { + onCloseButtonRectUpdate(it.boundsInWindow()) + } + ) + } +} + +@OptIn(ExperimentalFoundationApi::class, ExperimentalFluentApi::class) +@Composable +fun CaptionButton( + onClick: () -> Unit, + icon: CaptionButtonIcon, + isActive: Boolean, + modifier: Modifier = Modifier, + colors: VisualStateScheme = CaptionButtonDefaults.defaultColors(), + interaction: MutableInteractionSource = remember { MutableInteractionSource() } +) { + val color = colors.schemeFor(interaction.collectVisualState(false)) + TooltipBox( + tooltip = { Text(icon.name) } + ) { + Layer( + backgroundSizing = BackgroundSizing.OuterBorderEdge, + border = null, + color = if (isActive) { + color.background + } else { + color.inactiveBackground + }, + contentColor = if (isActive) { + color.foreground + } else { + color.inactiveForeground + }, + modifier = modifier.size(46.dp, 32.dp).clickable( + onClick = onClick, + interactionSource = interaction, + indication = null + ), + shape = RectangleShape + ) { + val fontFamily by rememberFontIconFamily() + if (fontFamily != null) { + Text( + text = icon.glyph.toString(), + fontFamily = fontFamily, + textAlign = TextAlign.Center, + fontSize = 10.sp, + modifier = Modifier.fillMaxSize().wrapContentSize(Alignment.Center), + ) + } else { + Icon( + imageVector = icon.imageVector, + contentDescription = null, + modifier = Modifier.fillMaxSize().wrapContentSize(Alignment.Center).size(13.dp), + ) + } + } + } +} + +@OptIn(ExperimentalTextApi::class) +@Composable +private fun rememberFontIconFamily(): State { + val fontIconFamily = remember { mutableStateOf(null) } + // Get windows system font icon, if get failed fall back to fluent svg icon. + val fontFamilyResolver = LocalFontFamilyResolver.current + LaunchedEffect(fontFamilyResolver) { + fontIconFamily.value = sequenceOf("Segoe Fluent Icons", "Segoe MDL2 Assets") + .mapNotNull { + val fontFamily = FontFamily(it) + runCatching { + val result = fontFamilyResolver.resolve(fontFamily).value as FontLoadResult + if (result.typeface == null || result.typeface?.familyName != it) { + null + } else { + fontFamily + } + }.getOrNull() + } + .firstOrNull() + } + return fontIconFamily +} + +object CaptionButtonDefaults { + @Composable + @Stable + fun defaultColors( + default: CaptionButtonColor = CaptionButtonColor( + background = FluentTheme.colors.subtleFill.transparent, + foreground = FluentTheme.colors.text.text.primary, + inactiveBackground = FluentTheme.colors.subtleFill.transparent, + inactiveForeground = FluentTheme.colors.text.text.disabled + ), + hovered: CaptionButtonColor = default.copy( + background = FluentTheme.colors.subtleFill.secondary, + inactiveBackground = FluentTheme.colors.subtleFill.secondary, + inactiveForeground = FluentTheme.colors.text.text.primary + ), + pressed: CaptionButtonColor = default.copy( + background = FluentTheme.colors.subtleFill.tertiary, + foreground = FluentTheme.colors.text.text.secondary, + inactiveBackground = FluentTheme.colors.subtleFill.tertiary, + inactiveForeground = FluentTheme.colors.text.text.tertiary + ), + disabled: CaptionButtonColor = default.copy( + foreground = FluentTheme.colors.text.text.disabled, + ), + ) = PentaVisualScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) + + @Composable + @Stable + fun accentColors( + accentColor: Color, + default: CaptionButtonColor = CaptionButtonColor( + background = FluentTheme.colors.subtleFill.transparent, + foreground = FluentTheme.colors.text.text.primary, + inactiveBackground = FluentTheme.colors.subtleFill.transparent, + inactiveForeground = FluentTheme.colors.text.text.disabled + ), + hovered: CaptionButtonColor = default.copy( + background = accentColor, + foreground = Color.White, + inactiveBackground = accentColor, + inactiveForeground = Color.White + ), + pressed: CaptionButtonColor = default.copy( + background = accentColor.copy(0.9f), + foreground = Color.White.copy(0.7f), + inactiveBackground = accentColor.copy(0.9f), + inactiveForeground = Color.White.copy(0.7f) + ), + disabled: CaptionButtonColor = default.copy( + foreground = FluentTheme.colors.text.text.disabled, + ), + ) = PentaVisualScheme( + default = default, + hovered = hovered, + pressed = pressed, + disabled = disabled + ) + + @Composable + @Stable + fun closeColors() = accentColors(Color(0xFFC42B1C)) +} + +@Stable +data class CaptionButtonColor( + val background: Color, + val foreground: Color, + val inactiveBackground: Color, + val inactiveForeground: Color +) + +enum class CaptionButtonIcon( + val glyph: Char, + val imageVector: ImageVector +) { + Minimize( + glyph = '\uE921', + imageVector = Icons.Default.Subtract + ), + Maximize( + glyph = '\uE922', + imageVector = Icons.Default.Square + ), + Restore( + glyph = '\uE923', + imageVector = Icons.Default.SquareMultiple + ), + Close( + glyph = '\uE8BB', + imageVector = Icons.Default.Dismiss + ) +} + +fun Rect.contains(x: Float, y: Float): Boolean { + return x >= left && x < right && y >= top && y < bottom +} diff --git a/gallery/src/iosMain/kotlin/io/github/composefluent/gallery/screen/navigation/TabViewScreen.ios.kt b/gallery/src/iosMain/kotlin/io/github/composefluent/gallery/screen/navigation/TabViewScreen.ios.kt new file mode 100644 index 00000000..aa433a19 --- /dev/null +++ b/gallery/src/iosMain/kotlin/io/github/composefluent/gallery/screen/navigation/TabViewScreen.ios.kt @@ -0,0 +1,7 @@ +package io.github.composefluent.gallery.screen.navigation + +import androidx.compose.runtime.Composable +import io.github.composefluent.gallery.component.GalleryPageScope + +@Composable +internal actual fun GalleryPageScope.PlatformTabViewSection() {} \ No newline at end of file diff --git a/gallery/src/iosMain/kotlin/main.kt b/gallery/src/iosMain/kotlin/main.kt index 51013b73..e0e92225 100644 --- a/gallery/src/iosMain/kotlin/main.kt +++ b/gallery/src/iosMain/kotlin/main.kt @@ -1,17 +1,12 @@ -import androidx.compose.foundation.layout.Box import androidx.compose.foundation.layout.WindowInsets import androidx.compose.foundation.layout.safeContent -import androidx.compose.foundation.layout.windowInsetsPadding -import androidx.compose.ui.Modifier import androidx.compose.ui.window.ComposeUIViewController -import com.konyaco.fluent.gallery.App -import com.konyaco.fluent.gallery.GalleryTheme +import io.github.composefluent.gallery.App +import io.github.composefluent.gallery.GalleryTheme import platform.UIKit.UIViewController fun MainViewController(): UIViewController = ComposeUIViewController { - Box(Modifier.windowInsetsPadding(WindowInsets.safeContent)) { - GalleryTheme { - App() - } + GalleryTheme { + App(windowInset = WindowInsets.safeContent, collapseWindowInset = WindowInsets.safeContent) } } diff --git a/gallery/src/jsMain/kotlin/main.kt b/gallery/src/jsMain/kotlin/main.kt index 42c00d0c..7e1d8b9c 100644 --- a/gallery/src/jsMain/kotlin/main.kt +++ b/gallery/src/jsMain/kotlin/main.kt @@ -1,7 +1,7 @@ import androidx.compose.ui.ExperimentalComposeUiApi import androidx.compose.ui.window.ComposeViewport -import com.konyaco.fluent.gallery.App -import com.konyaco.fluent.gallery.GalleryTheme +import io.github.composefluent.gallery.App +import io.github.composefluent.gallery.GalleryTheme import kotlinx.browser.document import org.jetbrains.skiko.wasm.onWasmReady diff --git a/gallery/src/skikoMain/kotlin/io/github/composefluent/gallery/screen/menus/MenuFlyoutScreen.skiko.kt b/gallery/src/skikoMain/kotlin/io/github/composefluent/gallery/screen/menus/MenuFlyoutScreen.skiko.kt new file mode 100644 index 00000000..e647dd2d --- /dev/null +++ b/gallery/src/skikoMain/kotlin/io/github/composefluent/gallery/screen/menus/MenuFlyoutScreen.skiko.kt @@ -0,0 +1,7 @@ +package io.github.composefluent.gallery.screen.menus + +import org.jetbrains.skiko.hostOs + +actual fun isMacOs(): Boolean { + return hostOs.isMacOS +} \ No newline at end of file diff --git a/gallery/src/wasmJsMain/kotlin/main.kt b/gallery/src/wasmJsMain/kotlin/main.kt index c2a85593..743ea600 100644 --- a/gallery/src/wasmJsMain/kotlin/main.kt +++ b/gallery/src/wasmJsMain/kotlin/main.kt @@ -1,7 +1,7 @@ import androidx.compose.ui.ExperimentalComposeUiApi import androidx.compose.ui.window.CanvasBasedWindow -import com.konyaco.fluent.gallery.App -import com.konyaco.fluent.gallery.GalleryTheme +import io.github.composefluent.gallery.App +import io.github.composefluent.gallery.GalleryTheme @OptIn(ExperimentalComposeUiApi::class) fun main() { diff --git a/gallery/src/webMain/kotlin/io/github/composefluent/gallery/screen/navigation/TabViewScreen.web.kt b/gallery/src/webMain/kotlin/io/github/composefluent/gallery/screen/navigation/TabViewScreen.web.kt new file mode 100644 index 00000000..aa433a19 --- /dev/null +++ b/gallery/src/webMain/kotlin/io/github/composefluent/gallery/screen/navigation/TabViewScreen.web.kt @@ -0,0 +1,7 @@ +package io.github.composefluent.gallery.screen.navigation + +import androidx.compose.runtime.Composable +import io.github.composefluent.gallery.component.GalleryPageScope + +@Composable +internal actual fun GalleryPageScope.PlatformTabViewSection() {} \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index 0d3bb846..d9ec930e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -15,3 +15,6 @@ android.nonTransitiveRClass=true #Compose org.jetbrains.compose.experimental.jscanvas.enabled=true + +# https://youtrack.jetbrains.com/issue/KT-78504 +kotlin.js.yarn=false diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index dc7c2878..97efc16e 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,14 +1,18 @@ [versions] -activityCompose = "1.9.3" -haze = "0.7.3" -kotlin = "2.0.21" -ksp = "2.0.21-1.0.26" -compose = "1.7.0" -androidGradlePlugin = "8.3.2" +activityCompose = "1.10.1" +haze = "1.6.6" +kotlin = "2.2.0" +ksp = "2.2.0-2.0.2" +compose = "1.8.2" +androidGradlePlugin = "8.10.0" androidBuildTools = "31.7.2" windowStyler = "0.3.3-SNAPSHOT" -highlights = "0.9.3" -kotlinx-datetime = "0.6.1" +highlights = "1.0.0" +kotlinx-datetime = "0.7.1" +jna = "5.16.0" +buildKonfig = "0.17.1" +mavenPublish = "0.33.0" +hot-reload = "1.0.0-beta03" [libraries] androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "activityCompose" } @@ -20,11 +24,13 @@ kotlinx-datetime = { module = "org.jetbrains.kotlinx:kotlinx-datetime", version. ktor-client-java = "io.ktor:ktor-client-java:3.0.0" jsoup = "org.jsoup:jsoup:1.16.2" google-guava = "com.google.guava:guava:33.2.1-jre" -squareup-kotlinpoet = "com.squareup:kotlinpoet:1.18.1" +squareup-kotlinpoet = "com.squareup:kotlinpoet:2.1.0" android-tools-common = { module = "com.android.tools:common", version.ref = "androidBuildTools" } android-tools-sdk-common = { module = "com.android.tools:sdk-common", version.ref = "androidBuildTools" } window-styler = { module = "com.mayakapps.compose:window-styler", version.ref = "windowStyler" } highlights = { module = "dev.snipme:highlights", version.ref = "highlights" } +jna-platform = { module = "net.java.dev.jna:jna-platform-jpms", version.ref = "jna" } +jna = { module = "net.java.dev.jna:jna-jpms", version.ref = "jna" } [plugins] kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" } @@ -33,6 +39,10 @@ kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" } ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" } compose = { id = "org.jetbrains.compose", version.ref = "compose" } +compose-hotReload = { id = "org.jetbrains.compose.hot-reload", version.ref = "hot-reload" } android-application = { id = "com.android.application", version.ref = "androidGradlePlugin" } -android-library = { id = "com.android.library", version.ref = "androidGradlePlugin" } +android-kotlin-multiplatform-library = { id = "com.android.kotlin.multiplatform.library", version.ref = "androidGradlePlugin" } + +build-konfig = { id = "com.codingfeline.buildkonfig", version.ref = "buildKonfig" } +maven-publish = { id = "com.vanniktech.maven.publish", version.ref = "mavenPublish" } \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 1e2fbf0d..5c82cb03 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/source-generated-processor/build.gradle.kts b/source-generated-processor/build.gradle.kts index 7ace6414..9376aef7 100644 --- a/source-generated-processor/build.gradle.kts +++ b/source-generated-processor/build.gradle.kts @@ -1,4 +1,4 @@ -import com.konyaco.fluent.plugin.build.BuildConfig +import io.github.composefluent.plugin.build.BuildConfig plugins { alias(libs.plugins.kotlin.multiplatform) @@ -11,11 +11,9 @@ kotlin { jvmToolchain(BuildConfig.Jvm.jvmToolchainVersion) jvm() sourceSets { - val jvmMain by getting { - dependencies { - implementation(libs.squareup.kotlinpoet) - implementation("com.google.devtools.ksp:symbol-processing-api:${libs.versions.ksp.get()}") - } + jvmMain.dependencies { + implementation(libs.squareup.kotlinpoet) + implementation("com.google.devtools.ksp:symbol-processing-api:${libs.versions.ksp.get()}") } } } \ No newline at end of file diff --git a/source-generated-processor/src/jvmMain/kotlin/com/konyaco/fluent/generated/IProcessor.kt b/source-generated-processor/src/jvmMain/kotlin/com/konyaco/fluent/generated/IProcessor.kt deleted file mode 100644 index 96cd67b0..00000000 --- a/source-generated-processor/src/jvmMain/kotlin/com/konyaco/fluent/generated/IProcessor.kt +++ /dev/null @@ -1,5 +0,0 @@ -package com.konyaco.fluent.generated - -import com.google.devtools.ksp.processing.SymbolProcessor - -interface IProcessor : SymbolProcessor \ No newline at end of file diff --git a/source-generated-processor/src/jvmMain/kotlin/com/konyaco/fluent/generated/CommonProcessorProvider.kt b/source-generated-processor/src/jvmMain/kotlin/io/github/composefluent/gallery/generated/CommonProcessorProvider.kt similarity index 95% rename from source-generated-processor/src/jvmMain/kotlin/com/konyaco/fluent/generated/CommonProcessorProvider.kt rename to source-generated-processor/src/jvmMain/kotlin/io/github/composefluent/gallery/generated/CommonProcessorProvider.kt index a678fbce..5aa86e9b 100644 --- a/source-generated-processor/src/jvmMain/kotlin/com/konyaco/fluent/generated/CommonProcessorProvider.kt +++ b/source-generated-processor/src/jvmMain/kotlin/io/github/composefluent/gallery/generated/CommonProcessorProvider.kt @@ -1,4 +1,4 @@ -package com.konyaco.fluent.generated +package io.github.composefluent.gallery.generated import com.google.devtools.ksp.processing.Resolver import com.google.devtools.ksp.processing.SymbolProcessor diff --git a/source-generated-processor/src/jvmMain/kotlin/io/github/composefluent/gallery/generated/IProcessor.kt b/source-generated-processor/src/jvmMain/kotlin/io/github/composefluent/gallery/generated/IProcessor.kt new file mode 100644 index 00000000..1a8df9b6 --- /dev/null +++ b/source-generated-processor/src/jvmMain/kotlin/io/github/composefluent/gallery/generated/IProcessor.kt @@ -0,0 +1,5 @@ +package io.github.composefluent.gallery.generated + +import com.google.devtools.ksp.processing.SymbolProcessor + +interface IProcessor : SymbolProcessor \ No newline at end of file diff --git a/source-generated-processor/src/jvmMain/kotlin/com/konyaco/fluent/generated/IconSourceProcessor.kt b/source-generated-processor/src/jvmMain/kotlin/io/github/composefluent/gallery/generated/IconSourceProcessor.kt similarity index 80% rename from source-generated-processor/src/jvmMain/kotlin/com/konyaco/fluent/generated/IconSourceProcessor.kt rename to source-generated-processor/src/jvmMain/kotlin/io/github/composefluent/gallery/generated/IconSourceProcessor.kt index 19f41649..4a331d6e 100644 --- a/source-generated-processor/src/jvmMain/kotlin/com/konyaco/fluent/generated/IconSourceProcessor.kt +++ b/source-generated-processor/src/jvmMain/kotlin/io/github/composefluent/gallery/generated/IconSourceProcessor.kt @@ -1,8 +1,10 @@ -package com.konyaco.fluent.generated +package io.github.composefluent.gallery.generated +import com.google.devtools.ksp.processing.Dependencies import com.google.devtools.ksp.processing.Resolver import com.google.devtools.ksp.processing.SymbolProcessorEnvironment import com.google.devtools.ksp.symbol.KSAnnotated +import com.google.devtools.ksp.symbol.KSFile import com.google.devtools.ksp.symbol.KSPropertyDeclaration import com.google.devtools.ksp.symbol.Modifier import com.squareup.kotlinpoet.ClassName @@ -23,35 +25,43 @@ class IconSourceProcessor(environment: SymbolProcessorEnvironment) : IProcessor private val iconSourceEnabled = environment.options["source.generated.icon.enabled"]?.toBooleanStrictOrNull() ?: false - private val packageName = "com.konyaco.fluent.source.generated" + private val packageName = "io.github.composefluent.source.generated" private val packagePath = packageName.replace(".", "/") private val logger = environment.logger + private val codeGenerator = environment.codeGenerator private val icons = mutableListOf() private var rootPath = "" + private val sourceFiles = mutableListOf() + override fun process(resolver: Resolver): List { if (iconSourceEnabled.not() || componentName.isEmpty()) return emptyList() resolver.getAllFiles().forEach { file -> + var hasDeclaration = false file.declarations.forEach declaration@{ declaration -> if (!declaration.modifiers.contains(Modifier.PUBLIC)) return@declaration val declarationPackageName = declaration.packageName.asString() - if (declarationPackageName.startsWith("com.konyaco.fluent.icons") && declaration is KSPropertyDeclaration) { + if (declarationPackageName.startsWith("io.github.composefluent.icons") && declaration is KSPropertyDeclaration) { val typeDeclaration = declaration.type.resolve().declaration if (typeDeclaration.qualifiedName?.asString() == "androidx.compose.ui.graphics.vector.ImageVector") { val receiverType = declaration.extensionReceiver ?: return@declaration val receiverName = when(receiverType.toString()) { - "Regular" -> "com.konyaco.fluent.icons.Icons.Regular" - "Filled" -> "com.konyaco.fluent.icons.Icons.Filled" + "Regular" -> "io.github.composefluent.icons.Icons.Regular" + "Filled" -> "io.github.composefluent.icons.Icons.Filled" else -> "" } - if (receiverName.startsWith("com.konyaco.fluent.icons.Icons")) { + if (receiverName.startsWith("io.github.composefluent.icons.Icons")) { if (rootPath.isEmpty()) { val projectFile = File(file.filePath.substringBefore("/src/")) rootPath = projectFile.parentFile.path } + if (!hasDeclaration) { + hasDeclaration = true + sourceFiles.add(file) + } icons.add( IconNode( declarationPackageName, @@ -81,7 +91,7 @@ class IconSourceProcessor(environment: SymbolProcessorEnvironment) : IProcessor ) ) iconFile.addImport(vectorClass.packageName, vectorClass.simpleName) - iconFile.addImport("com.konyaco.fluent.icons", "Icons") + iconFile.addImport("io.github.composefluent.icons", "Icons") val receiverPackage = receiver.substringBeforeLast(".Icons.") val receiverName = receiver.substringAfter(receiverPackage).removePrefix(".") @@ -114,6 +124,11 @@ class IconSourceProcessor(environment: SymbolProcessorEnvironment) : IProcessor if (!targetDir.exists()) targetDir.mkdirs() val targetFile = File(targetDir, "${iconFile.name}.kt") if (!targetFile.exists()) targetFile.createNewFile() + codeGenerator.createNewFileByPath( + dependencies = Dependencies(aggregating = true, sources = sourceFiles.toTypedArray()), + path = File(packagePath, iconFile.name).path, + extensionName = "source" + ) OutputStreamWriter( targetFile.outputStream(), StandardCharsets.UTF_8 diff --git a/source-generated-processor/src/jvmMain/kotlin/com/konyaco/fluent/generated/SourceFilePathProcessor.kt b/source-generated-processor/src/jvmMain/kotlin/io/github/composefluent/gallery/generated/SourceFilePathProcessor.kt similarity index 81% rename from source-generated-processor/src/jvmMain/kotlin/com/konyaco/fluent/generated/SourceFilePathProcessor.kt rename to source-generated-processor/src/jvmMain/kotlin/io/github/composefluent/gallery/generated/SourceFilePathProcessor.kt index 8296ea4f..8f6890b3 100644 --- a/source-generated-processor/src/jvmMain/kotlin/com/konyaco/fluent/generated/SourceFilePathProcessor.kt +++ b/source-generated-processor/src/jvmMain/kotlin/io/github/composefluent/gallery/generated/SourceFilePathProcessor.kt @@ -1,8 +1,10 @@ -package com.konyaco.fluent.generated +package io.github.composefluent.gallery.generated +import com.google.devtools.ksp.processing.Dependencies import com.google.devtools.ksp.processing.Resolver import com.google.devtools.ksp.processing.SymbolProcessorEnvironment import com.google.devtools.ksp.symbol.KSAnnotated +import com.google.devtools.ksp.symbol.KSFile import com.google.devtools.ksp.symbol.Modifier import com.squareup.kotlinpoet.FileSpec import com.squareup.kotlinpoet.KModifier @@ -15,11 +17,11 @@ import java.util.Locale class SourceFilePathProcessor(environment: SymbolProcessorEnvironment): IProcessor { - private val packageName = "com.konyaco.fluent.source.generated" + private val packageName = "io.github.composefluent.source.generated" private val packagePath = packageName.replace(".", "/") private val componentName = environment.options["source.generated.module.name"] ?: "" - private val enabled = environment.options["source.generated.module.enabled"]?.toBooleanStrictOrNull() ?: true + private val enabled = environment.options["source.generated.module.enabled"]?.toBooleanStrictOrNull() != false private val objectName = "${componentName.replaceFirstChar { if (it.isLowerCase()) it.titlecase(Locale.getDefault()) else it.toString() }}SourceFile" private val sourceFileSpecBuilder = TypeSpec.objectBuilder(objectName) @@ -27,6 +29,9 @@ class SourceFilePathProcessor(environment: SymbolProcessorEnvironment): IProcess private val logger = environment.logger + private val codeGenerator = environment.codeGenerator + private val sourceFiles = mutableListOf() + override fun process(resolver: Resolver): List { if (!enabled) return emptyList() if (componentName.isEmpty()) { @@ -51,6 +56,7 @@ class SourceFilePathProcessor(environment: SymbolProcessorEnvironment): IProcess .initializer("\"${it.filePath.substringAfter(rootPath.replace("\\", "/")).removePrefix("/")}\"") .build() ) + sourceFiles.add(it) } } @@ -64,6 +70,11 @@ class SourceFilePathProcessor(environment: SymbolProcessorEnvironment): IProcess if (!targetDir.exists()) targetDir.mkdirs() val targetFile = File(targetDir, "$objectName.kt") if (!targetFile.exists()) targetFile.createNewFile() + codeGenerator.createNewFileByPath( + dependencies = Dependencies(aggregating = true, sources = sourceFiles.toTypedArray()), + path = File(packagePath, objectName).path, + extensionName = "source" + ) OutputStreamWriter(targetFile.outputStream(), StandardCharsets.UTF_8).use( FileSpec.builder( packageName, diff --git a/source-generated-processor/src/jvmMain/resources/META-INF/services/com.google.devtools.ksp.processing.SymbolProcessorProvider b/source-generated-processor/src/jvmMain/resources/META-INF/services/com.google.devtools.ksp.processing.SymbolProcessorProvider index 9edb68c9..dec34bc4 100644 --- a/source-generated-processor/src/jvmMain/resources/META-INF/services/com.google.devtools.ksp.processing.SymbolProcessorProvider +++ b/source-generated-processor/src/jvmMain/resources/META-INF/services/com.google.devtools.ksp.processing.SymbolProcessorProvider @@ -1 +1 @@ -com.konyaco.fluent.generated.CommonProcessorProvider \ No newline at end of file +io.github.composefluent.gallery.generated.CommonProcessorProvider \ No newline at end of file diff --git a/source-generated/build.gradle.kts b/source-generated/build.gradle.kts index 8d2183fa..cf6b7b19 100644 --- a/source-generated/build.gradle.kts +++ b/source-generated/build.gradle.kts @@ -1,40 +1,22 @@ -import com.konyaco.fluent.plugin.build.BuildConfig -import com.konyaco.fluent.plugin.build.applyTargets +import io.github.composefluent.plugin.build.applyTargets plugins { alias(libs.plugins.kotlin.multiplatform) alias(libs.plugins.kotlin.compose) alias(libs.plugins.compose) - alias(libs.plugins.android.library) + alias(libs.plugins.android.kotlin.multiplatform.library) } kotlin { - applyTargets(publish = false) + applyTargets(namespaceModule = ".generated") sourceSets { - commonMain { - dependencies { - implementation(project(":fluent-icons-core")) - implementation(project(":fluent-icons-extended")) - implementation(compose.ui) - } + commonMain.dependencies { + implementation(project(":fluent-icons-core")) + implementation(project(":fluent-icons-extended")) + implementation(compose.ui) } - val commonTest by getting { - dependencies { - implementation(kotlin("test")) - } + commonTest.dependencies { + implementation(kotlin("test")) } } -} - -android { - namespace = "${BuildConfig.packageName}.generated" - compileSdk = BuildConfig.Android.compileSdkVersion - namespace = BuildConfig.packageName - defaultConfig { - minSdk = BuildConfig.Android.minSdkVersion - } - compileOptions { - sourceCompatibility = BuildConfig.Jvm.javaVersion - targetCompatibility = BuildConfig.Jvm.javaVersion - } } \ No newline at end of file